trx0trx.c 46.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/******************************************************
The transaction

(c) 1996 Innobase Oy

Created 3/26/1996 Heikki Tuuri
*******************************************************/

#include "trx0trx.h"

#ifdef UNIV_NONINL
#include "trx0trx.ic"
#endif

#include "trx0undo.h"
#include "trx0rseg.h"
#include "log0log.h"
#include "que0que.h"
#include "lock0lock.h"
#include "trx0roll.h"
#include "usr0sess.h"
#include "read0read.h"
#include "srv0srv.h"
#include "thr0loc.h"
25
#include "btr0sea.h"
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
26
#include "os0proc.h"
27
#include "trx0xa.h"
28 29

/* Copy of the prototype for innobase_mysql_print_thd: this
30
copy MUST be equal to the one in mysql/sql/ha_innodb.cc ! */
31

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
32
void innobase_mysql_print_thd(
33
	FILE* f,
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
34
	void* thd);
35

36 37 38 39 40 41 42
/* Dummy session used currently in MySQL interface */
sess_t*		trx_dummy_sess = NULL;

/* Number of transactions currently allocated for MySQL: protected by
the kernel mutex */
ulint	trx_n_mysql_transactions = 0;

43 44 45 46 47 48 49 50 51 52 53
/*****************************************************************
Starts the transaction if it is not yet started. */

void
trx_start_if_not_started_noninline(
/*===============================*/
	trx_t*  trx) /* in: transaction */
{
        trx_start_if_not_started(trx);
}

54 55 56 57 58 59 60 61 62 63 64
/********************************************************************
Retrieves the error_info field from a trx. */

void*
trx_get_error_info(
/*===============*/
		     /* out: the error info */
	trx_t*  trx) /* in: trx object */
{
        return(trx->error_info);
}
65 66 67 68 69 70 71 72 73 74 75 76

/********************************************************************
Creates and initializes a transaction object. */

trx_t*
trx_create(
/*=======*/
			/* out, own: the transaction */
	sess_t*	sess)	/* in: session or NULL */
{
	trx_t*	trx;

77
#ifdef UNIV_SYNC_DEBUG
78
	ut_ad(mutex_own(&kernel_mutex));
79
#endif /* UNIV_SYNC_DEBUG */
80 81 82

	trx = mem_alloc(sizeof(trx_t));

heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
83 84
	trx->magic_n = TRX_MAGIC_N;

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
85
	trx->op_info = "";
86
	
87 88
	trx->type = TRX_USER;
	trx->conc_state = TRX_NOT_STARTED;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
89
	trx->start_time = time(NULL);
90

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
91
	trx->isolation_level = TRX_ISO_REPEATABLE_READ;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
92 93 94 95

	trx->id = ut_dulint_zero;
	trx->no = ut_dulint_max;

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
96 97 98
	trx->check_foreigns = TRUE;
	trx->check_unique_secondary = TRUE;

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
99 100
	trx->flush_log_later = FALSE;

101 102
	trx->dict_operation = FALSE;

103
	trx->mysql_thd = NULL;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
104
	trx->mysql_query_str = NULL;
105

106
	trx->n_mysql_tables_in_use = 0;
107
	trx->mysql_n_tables_locked = 0;
108

heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
109 110
	trx->mysql_log_file_name = NULL;
	trx->mysql_log_offset = 0;
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
111
	trx->mysql_master_log_file_name = "";
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
112
	trx->mysql_master_log_pos = 0;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
113 114 115

	trx->repl_wait_binlog_name = NULL;
	trx->repl_wait_binlog_pos = 0;
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
116
	
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
	mutex_create(&(trx->undo_mutex));
	mutex_set_level(&(trx->undo_mutex), SYNC_TRX_UNDO);

	trx->rseg = NULL;

	trx->undo_no = ut_dulint_zero;
	trx->last_sql_stat_start.least_undo_no = ut_dulint_zero;
	trx->insert_undo = NULL;
	trx->update_undo = NULL;
	trx->undo_no_arr = NULL;
	
	trx->error_state = DB_SUCCESS;

	trx->sess = sess;
	trx->que_state = TRX_QUE_RUNNING;
	trx->n_active_thrs = 0;

	trx->handling_signals = FALSE;

	UT_LIST_INIT(trx->signals);
	UT_LIST_INIT(trx->reply_signals);

	trx->graph = NULL;

	trx->wait_lock = NULL;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
142
	trx->was_chosen_as_deadlock_victim = FALSE;
143 144 145 146 147
	UT_LIST_INIT(trx->wait_thrs);

	trx->lock_heap = mem_heap_create_in_buffer(256);
	UT_LIST_INIT(trx->trx_locks);

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
148 149
	UT_LIST_INIT(trx->trx_savepoints);

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
150
	trx->dict_operation_lock_mode = 0;
151
	trx->has_search_latch = FALSE;
152
	trx->search_latch_timeout = BTR_SEA_TIMEOUT;
153

heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
154 155 156
	trx->declared_to_be_inside_innodb = FALSE;
	trx->n_tickets_to_enter_innodb = 0;

157
	trx->auto_inc_lock = NULL;
158
	trx->n_lock_table_exp = 0;
159
	trx->n_lock_table_transactional = 0;
160
	
161 162 163
	trx->read_view_heap = mem_heap_create(256);
	trx->read_view = NULL;

164
	/* Set X/Open XA transaction identification to NULL */
165
	memset(&trx->xid, 0, sizeof(trx->xid));
166 167
	trx->xid.formatID = -1;

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
	return(trx);
}

/************************************************************************
Creates a transaction object for MySQL. */

trx_t*
trx_allocate_for_mysql(void)
/*========================*/
				/* out, own: transaction object */
{
	trx_t*	trx;

	mutex_enter(&kernel_mutex);
	
	/* Open a dummy session */

	if (!trx_dummy_sess) {
186
		trx_dummy_sess = sess_open();
187 188 189 190 191 192
	}
	
	trx = trx_create(trx_dummy_sess);

	trx_n_mysql_transactions++;
	
193 194
	UT_LIST_ADD_FIRST(mysql_trx_list, trx_sys->mysql_trx_list, trx);
	
195 196 197
	mutex_exit(&kernel_mutex);

	trx->mysql_thread_id = os_thread_get_curr_id();
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
198 199

	trx->mysql_process_no = os_proc_get_number();
200 201 202 203
	
	return(trx);
}

heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
/************************************************************************
Creates a transaction object for background operations by the master thread. */

trx_t*
trx_allocate_for_background(void)
/*=============================*/
				/* out, own: transaction object */
{
	trx_t*	trx;

	mutex_enter(&kernel_mutex);
	
	/* Open a dummy session */

	if (!trx_dummy_sess) {
219
		trx_dummy_sess = sess_open();
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
220 221 222 223 224 225 226 227 228
	}
	
	trx = trx_create(trx_dummy_sess);

	mutex_exit(&kernel_mutex);
	
	return(trx);
}

229 230 231 232 233 234 235 236
/************************************************************************
Releases the search latch if trx has reserved it. */

void
trx_search_latch_release_if_reserved(
/*=================================*/
        trx_t*     trx) /* in: transaction */
{
237 238
  	if (trx->has_search_latch) {
    		rw_lock_s_unlock(&btr_search_latch);
239

240 241
    		trx->has_search_latch = FALSE;
  	}
242 243
}

244 245 246 247 248 249 250 251
/************************************************************************
Frees a transaction object. */

void
trx_free(
/*=====*/
	trx_t*	trx)	/* in, own: trx object */
{
252
#ifdef UNIV_SYNC_DEBUG
253
	ut_ad(mutex_own(&kernel_mutex));
254
#endif /* UNIV_SYNC_DEBUG */
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
255

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
256 257
	if (trx->declared_to_be_inside_innodb) {
	        ut_print_timestamp(stderr);
258
		fputs(
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
259
"  InnoDB: Error: Freeing a trx which is declared to be processing\n"
260 261 262
"InnoDB: inside InnoDB.\n", stderr);
		trx_print(stderr, trx);
		putc('\n', stderr);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
263 264
	}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
265 266 267 268 269 270 271 272 273 274 275 276
	if (trx->n_mysql_tables_in_use != 0
	    || trx->mysql_n_tables_locked != 0) {

		ut_print_timestamp(stderr);
		fprintf(stderr,
"  InnoDB: Error: MySQL is freeing a thd\n"
"InnoDB: though trx->n_mysql_tables_in_use is %lu\n"
"InnoDB: and trx->mysql_n_tables_locked is %lu.\n",
			(ulong)trx->n_mysql_tables_in_use,
			(ulong)trx->mysql_n_tables_locked);

		trx_print(stderr, trx);		
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
277 278

		ut_print_buf(stderr, (byte*)trx, sizeof(trx_t));
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
279 280
	}

heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
281 282 283 284
	ut_a(trx->magic_n == TRX_MAGIC_N);

	trx->magic_n = 11112222;

285 286 287 288 289 290 291 292 293 294 295
	ut_a(trx->conc_state == TRX_NOT_STARTED);
	
	mutex_free(&(trx->undo_mutex));

	ut_a(trx->insert_undo == NULL); 
	ut_a(trx->update_undo == NULL); 
	
	if (trx->undo_no_arr) {
		trx_undo_arr_free(trx->undo_no_arr);
	}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
296 297 298 299 300
	if (trx->repl_wait_binlog_name != NULL) {

		mem_free(trx->repl_wait_binlog_name);
	}

301 302 303 304 305 306
	ut_a(UT_LIST_GET_LEN(trx->signals) == 0);
	ut_a(UT_LIST_GET_LEN(trx->reply_signals) == 0);

	ut_a(trx->wait_lock == NULL);
	ut_a(UT_LIST_GET_LEN(trx->wait_thrs) == 0);

307
	ut_a(!trx->has_search_latch);
308
	ut_a(!trx->auto_inc_lock);
309
	ut_a(!trx->n_lock_table_exp);
310
	ut_a(!trx->n_lock_table_transactional);
311

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
312 313
	ut_a(trx->dict_operation_lock_mode == 0);

314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
	if (trx->lock_heap) {
		mem_heap_free(trx->lock_heap);
	}

	ut_a(UT_LIST_GET_LEN(trx->trx_locks) == 0);

	if (trx->read_view_heap) {
		mem_heap_free(trx->read_view_heap);
	}

	ut_a(trx->read_view == NULL);
	
	mem_free(trx);
}

/************************************************************************
Frees a transaction object for MySQL. */

void
trx_free_for_mysql(
/*===============*/
	trx_t*	trx)	/* in, own: trx object */
{
	thr_local_free(trx->mysql_thread_id);

	mutex_enter(&kernel_mutex);
	
341 342
	UT_LIST_REMOVE(mysql_trx_list, trx_sys->mysql_trx_list, trx);

343 344 345 346 347 348 349 350 351
	trx_free(trx);

	ut_a(trx_n_mysql_transactions > 0);

	trx_n_mysql_transactions--;
	
	mutex_exit(&kernel_mutex);
}

heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
/************************************************************************
Frees a transaction object of a background operation of the master thread. */

void
trx_free_for_background(
/*====================*/
	trx_t*	trx)	/* in, own: trx object */
{
	mutex_enter(&kernel_mutex);
	
	trx_free(trx);
	
	mutex_exit(&kernel_mutex);
}

367 368 369 370 371 372 373 374 375 376 377 378 379
/********************************************************************
Inserts the trx handle in the trx system trx list in the right position.
The list is sorted on the trx id so that the biggest id is at the list
start. This function is used at the database startup to insert incomplete
transactions to the list. */
static
void
trx_list_insert_ordered(
/*====================*/
	trx_t*	trx)	/* in: trx handle */
{
	trx_t*	trx2;

380
#ifdef UNIV_SYNC_DEBUG
381
	ut_ad(mutex_own(&kernel_mutex));
382
#endif /* UNIV_SYNC_DEBUG */
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437

	trx2 = UT_LIST_GET_FIRST(trx_sys->trx_list);

	while (trx2 != NULL) {
		if (ut_dulint_cmp(trx->id, trx2->id) >= 0) {

			ut_ad(ut_dulint_cmp(trx->id, trx2->id) == 1);
			break;
		}
		trx2 = UT_LIST_GET_NEXT(trx_list, trx2);
	}

	if (trx2 != NULL) {
		trx2 = UT_LIST_GET_PREV(trx_list, trx2);

		if (trx2 == NULL) {
			UT_LIST_ADD_FIRST(trx_list, trx_sys->trx_list, trx);
		} else {
			UT_LIST_INSERT_AFTER(trx_list, trx_sys->trx_list,
								trx2, trx);
		}
	} else {
		UT_LIST_ADD_LAST(trx_list, trx_sys->trx_list, trx);
	}		
}

/********************************************************************
Creates trx objects for transactions and initializes the trx list of
trx_sys at database start. Rollback segment and undo log lists must
already exist when this function is called, because the lists of
transactions to be rolled back or cleaned up are built based on the
undo log lists. */

void
trx_lists_init_at_db_start(void)
/*============================*/
{
	trx_rseg_t*	rseg;
	trx_undo_t*	undo;
	trx_t*		trx;

	UT_LIST_INIT(trx_sys->trx_list);

	/* Look from the rollback segments if there exist undo logs for
	transactions */
	
	rseg = UT_LIST_GET_FIRST(trx_sys->rseg_list);

	while (rseg != NULL) {
		undo = UT_LIST_GET_FIRST(rseg->insert_undo_list);

		while (undo != NULL) {

			trx = trx_create(NULL); 

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
438
			trx->id = undo->trx_id;
439
			trx->xid = undo->xid;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
440 441 442
			trx->insert_undo = undo;
			trx->rseg = rseg;

443 444
			if (undo->state != TRX_UNDO_ACTIVE) {

445 446 447 448 449
				/* Prepared transactions are left in
				the prepared state waiting for a
				commit or abort decision from MySQL */

				if (undo->state == TRX_UNDO_PREPARED) {
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
450

451
 					fprintf(stderr,
452 453 454
"InnoDB: Transaction %lu %lu was in the XA prepared state.\n",
					ut_dulint_get_high(trx->id),
					ut_dulint_get_low(trx->id));
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
455

456 457 458
					trx->conc_state = TRX_ACTIVE;

					/* trx->conc_state = TRX_PREPARED;*/
459
				} else {
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
460
					trx->conc_state =
461 462
						TRX_COMMITTED_IN_MEMORY;
				}
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
463 464 465 466 467 468 469 470 471

				/* We give a dummy value for the trx no;
				this should have no relevance since purge
				is not interested in committed transaction
				numbers, unless they are in the history
				list, in which case it looks the number
				from the disk based undo log structure */

				trx->no = trx->id;
472 473 474
			} else {
				trx->conc_state = TRX_ACTIVE;

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
475 476 477 478 479
				/* A running transaction always has the number
				field inited to ut_dulint_max */

				trx->no = ut_dulint_max;
			}
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503

			if (undo->dict_operation) {
				trx->dict_operation = undo->dict_operation;
				trx->table_id = undo->table_id;
			}

			if (!undo->empty) {
				trx->undo_no = ut_dulint_add(undo->top_undo_no,
									1);
			}

			trx_list_insert_ordered(trx);

			undo = UT_LIST_GET_NEXT(undo_list, undo);
		}

		undo = UT_LIST_GET_FIRST(rseg->update_undo_list);

		while (undo != NULL) {
			trx = trx_get_on_id(undo->trx_id);

			if (NULL == trx) {
				trx = trx_create(NULL); 

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
504
				trx->id = undo->trx_id;
505
				trx->xid = undo->xid;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
506

507
				if (undo->state != TRX_UNDO_ACTIVE) {
508 509 510 511 512 513

					/* Prepared transactions are left in
					the prepared state waiting for a
					commit or abort decision from MySQL */

					if (undo->state == TRX_UNDO_PREPARED) {
514
 						fprintf(stderr,
515
"InnoDB: Transaction %lu %lu was in the XA prepared state.\n",
516 517
						ut_dulint_get_high(trx->id),
						ut_dulint_get_low(trx->id));
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
518

519
						trx->conc_state = TRX_ACTIVE;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
520

521 522
						/* trx->conc_state = 
							TRX_PREPARED; */
523 524
					} else {
						trx->conc_state =
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
525
						  TRX_COMMITTED_IN_MEMORY;
526 527
					}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
528 529 530 531
					/* We give a dummy value for the trx
					number */

					trx->no = trx->id;
532 533
				} else {
					trx->conc_state = TRX_ACTIVE;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
534 535 536 537 538 539

					/* A running transaction always has
					the number field inited to
					ut_dulint_max */

					trx->no = ut_dulint_max;
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
				}

				trx->rseg = rseg;
				trx_list_insert_ordered(trx);

				if (undo->dict_operation) {
					trx->dict_operation =
							undo->dict_operation;
					trx->table_id = undo->table_id;
				}
			}

			trx->update_undo = undo;

			if ((!undo->empty)
			    && (ut_dulint_cmp(undo->top_undo_no, trx->undo_no)
			        >= 0)) {

				trx->undo_no = ut_dulint_add(undo->top_undo_no,
									1);
			}
			
			undo = UT_LIST_GET_NEXT(undo_list, undo);
		}

		rseg = UT_LIST_GET_NEXT(rseg_list, rseg);
	}
}

/**********************************************************************
Assigns a rollback segment to a transaction in a round-robin fashion.
Skips the SYSTEM rollback segment if another is available. */
UNIV_INLINE
ulint
trx_assign_rseg(void)
/*=================*/
			/* out: assigned rollback segment id */
{
	trx_rseg_t*	rseg	= trx_sys->latest_rseg;

580
#ifdef UNIV_SYNC_DEBUG
581
	ut_ad(mutex_own(&kernel_mutex));
582
#endif /* UNIV_SYNC_DEBUG */
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
loop:
	/* Get next rseg in a round-robin fashion */

	rseg = UT_LIST_GET_NEXT(rseg_list, rseg);

	if (rseg == NULL) {
		rseg = UT_LIST_GET_FIRST(trx_sys->rseg_list);
	}

	/* If it is the SYSTEM rollback segment, and there exist others, skip
	it */

	if ((rseg->id == TRX_SYS_SYSTEM_RSEG_ID) 
			&& (UT_LIST_GET_LEN(trx_sys->rseg_list) > 1)) {
		goto loop;
	}			

	trx_sys->latest_rseg = rseg;

	return(rseg->id);
}

/********************************************************************
Starts a new transaction. */

ibool
trx_start_low(
/*==========*/
			/* out: TRUE */
	trx_t* 	trx,	/* in: transaction */
	ulint	rseg_id)/* in: rollback segment id; if ULINT_UNDEFINED
			is passed, the system chooses the rollback segment
			automatically in a round-robin fashion */
{
	trx_rseg_t*	rseg;

619
#ifdef UNIV_SYNC_DEBUG
620
	ut_ad(mutex_own(&kernel_mutex));
621
#endif /* UNIV_SYNC_DEBUG */
622 623 624 625 626
	ut_ad(trx->rseg == NULL);

	if (trx->type == TRX_PURGE) {
		trx->id = ut_dulint_zero;
		trx->conc_state = TRX_ACTIVE;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
627
		trx->start_time = time(NULL);
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650

		return(TRUE);
	}

	ut_ad(trx->conc_state != TRX_ACTIVE);
	
	if (rseg_id == ULINT_UNDEFINED) {

		rseg_id = trx_assign_rseg();
	}

	rseg = trx_sys_get_nth_rseg(trx_sys, rseg_id);

	trx->id = trx_sys_get_new_trx_id();

	/* The initial value for trx->no: ut_dulint_max is used in
	read_view_open_now: */

	trx->no = ut_dulint_max;

	trx->rseg = rseg;

	trx->conc_state = TRX_ACTIVE;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
651
	trx->start_time = time(NULL);
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695

	UT_LIST_ADD_FIRST(trx_list, trx_sys->trx_list, trx);

	return(TRUE);
}

/********************************************************************
Starts a new transaction. */

ibool
trx_start(
/*======*/
			/* out: TRUE */
	trx_t* 	trx,	/* in: transaction */
	ulint	rseg_id)/* in: rollback segment id; if ULINT_UNDEFINED
			is passed, the system chooses the rollback segment
			automatically in a round-robin fashion */
{
	ibool	ret;
	
	mutex_enter(&kernel_mutex);

	ret = trx_start_low(trx, rseg_id);

	mutex_exit(&kernel_mutex);

	return(ret);
}

/********************************************************************
Commits a transaction. */

void
trx_commit_off_kernel(
/*==================*/
	trx_t*	trx)	/* in: transaction */
{
	page_t*		update_hdr_page;
	dulint		lsn;
	trx_rseg_t*	rseg;
	trx_undo_t*	undo;
	ibool		must_flush_log	= FALSE;
	mtr_t		mtr;
	
696
#ifdef UNIV_SYNC_DEBUG
697
	ut_ad(mutex_own(&kernel_mutex));
698
#endif /* UNIV_SYNC_DEBUG */
699 700 701

	rseg = trx->rseg;
	
monty@donna.mysql.fi's avatar
Merge  
monty@donna.mysql.fi committed
702
	if (trx->insert_undo != NULL || trx->update_undo != NULL) {
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747

		mutex_exit(&kernel_mutex);

		mtr_start(&mtr);
		
		must_flush_log = TRUE;

		/* Change the undo log segment states from TRX_UNDO_ACTIVE
		to some other state: these modifications to the file data
		structure define the transaction as committed in the file
		based world, at the serialization point of the log sequence
		number lsn obtained below. */

		mutex_enter(&(rseg->mutex));
			
		if (trx->insert_undo != NULL) {
			trx_undo_set_state_at_finish(trx, trx->insert_undo,
									&mtr);
		}

		undo = trx->update_undo;

		if (undo) {
			mutex_enter(&kernel_mutex);
			trx->no = trx_sys_get_new_trx_no();
			
			mutex_exit(&kernel_mutex);

			/* It is not necessary to obtain trx->undo_mutex here
			because only a single OS thread is allowed to do the
			transaction commit for this transaction. */
					
			update_hdr_page = trx_undo_set_state_at_finish(trx,
								undo, &mtr);

			/* We have to do the cleanup for the update log while
			holding the rseg mutex because update log headers
			have to be put to the history list in the order of
			the trx number. */

			trx_undo_update_cleanup(trx, update_hdr_page, &mtr);
		}

		mutex_exit(&(rseg->mutex));

heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
748
		/* Update the latest MySQL binlog name and offset info
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
749 750
		in trx sys header if MySQL binlogging is on or the database
		server is a MySQL replication slave */
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
751 752

		if (trx->mysql_log_file_name) {
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
753 754 755 756 757
			trx_sys_update_mysql_binlog_offset(
					trx->mysql_log_file_name,
					trx->mysql_log_offset,
					TRX_SYS_MYSQL_LOG_INFO, &mtr);
			trx->mysql_log_file_name = NULL;
heikki@donna.mysql.fi's avatar
heikki@donna.mysql.fi committed
758
		}
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
759 760 761 762 763 764 765 766 767

		if (trx->mysql_master_log_file_name[0] != '\0') {
			/* This database server is a MySQL replication slave */ 
			trx_sys_update_mysql_binlog_offset(
				trx->mysql_master_log_file_name,
				trx->mysql_master_log_pos,
				TRX_SYS_MYSQL_MASTER_LOG_INFO, &mtr);
		}
				
768 769 770 771 772 773 774
		/* The following call commits the mini-transaction, making the
		whole transaction committed in the file-based world, at this
		log sequence number. The transaction becomes 'durable' when
		we write the log to disk, but in the logical sense the commit
		in the file-based data structures (undo logs etc.) happens
		here.

775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
		NOTE that transaction numbers, which are assigned only to
		transactions with an update undo log, do not necessarily come
		in exactly the same order as commit lsn's, if the transactions
		have different rollback segments. To get exactly the same
		order we should hold the kernel mutex up to this point,
		adding to to the contention of the kernel mutex. However, if
		a transaction T2 is able to see modifications made by
		a transaction T1, T2 will always get a bigger transaction
		number and a bigger commit lsn than T1. */

		/*--------------*/
 		mtr_commit(&mtr);
 		/*--------------*/
 		lsn = mtr.end_lsn;

		mutex_enter(&kernel_mutex);
	}
monty@donna.mysql.fi's avatar
Merge  
monty@donna.mysql.fi committed
792

793 794
	ut_ad(trx->conc_state == TRX_ACTIVE
					|| trx->conc_state == TRX_PREPARED);
795
#ifdef UNIV_SYNC_DEBUG
796
	ut_ad(mutex_own(&kernel_mutex));
797
#endif /* UNIV_SYNC_DEBUG */
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
	
	/* The following assignment makes the transaction committed in memory
	and makes its changes to data visible to other transactions.
	NOTE that there is a small discrepancy from the strict formal
	visibility rules here: a human user of the database can see
	modifications made by another transaction T even before the necessary
	log segment has been flushed to the disk. If the database happens to
	crash before the flush, the user has seen modifications from T which
	will never be a committed transaction. However, any transaction T2
	which sees the modifications of the committing transaction T, and
	which also itself makes modifications to the database, will get an lsn
	larger than the committing transaction T. In the case where the log
	flush fails, and T never gets committed, also T2 will never get
	committed. */

	/*--------------------------------------*/
	trx->conc_state = TRX_COMMITTED_IN_MEMORY;
	/*--------------------------------------*/

	lock_release_off_kernel(trx);

	if (trx->read_view) {
		read_view_close(trx->read_view);

		mem_heap_empty(trx->read_view_heap);
		trx->read_view = NULL;
	}

826 827
/*	fprintf(stderr, "Trx %lu commit finished\n",
		ut_dulint_get_low(trx->id)); */
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843

	if (must_flush_log) {

		mutex_exit(&kernel_mutex);
	
		if (trx->insert_undo != NULL) {

			trx_undo_insert_cleanup(trx);
		}

		/* NOTE that we could possibly make a group commit more
		efficient here: call os_thread_yield here to allow also other
		trxs to come to commit! */

		/*-------------------------------------*/

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
                /* Depending on the my.cnf options, we may now write the log
                buffer to the log files, making the transaction durable if
                the OS does not crash. We may also flush the log files to
                disk, making the transaction durable also at an OS crash or a
                power outage.

                The idea in InnoDB's group commit is that a group of
                transactions gather behind a trx doing a physical disk write
                to log files, and when that physical write has been completed,
                one of those transactions does a write which commits the whole
                group. Note that this group commit will only bring benefit if
                there are > 2 users in the database. Then at least 2 users can
                gather behind one doing the physical log write to disk.

                If we are calling trx_commit() under MySQL's binlog mutex, we
                will delay possible log write and flush to a separate function
                trx_commit_complete_for_mysql(), which is only called when the
                thread has released the binlog mutex. This is to make the
                group commit algorithm to work. Otherwise, the MySQL binlog
                mutex would serialize all commits and prevent a group of
                transactions from gathering. */

                if (trx->flush_log_later) {
                        /* Do nothing yet */
                } else if (srv_flush_log_at_trx_commit == 0) {
                        /* Do nothing */
                } else if (srv_flush_log_at_trx_commit == 1) {
                        if (srv_unix_file_flush_method == SRV_UNIX_NOSYNC) {
                               /* Write the log but do not flush it to disk */

                               log_write_up_to(lsn, LOG_WAIT_ONE_GROUP, FALSE);
                        } else {
                               /* Write the log to the log files AND flush
                               them to disk */

                               log_write_up_to(lsn, LOG_WAIT_ONE_GROUP, TRUE);
                        }
                } else if (srv_flush_log_at_trx_commit == 2) {

                        /* Write the log but do not flush it to disk */

                        log_write_up_to(lsn, LOG_WAIT_ONE_GROUP, FALSE);
                } else {
887
                        ut_error;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
888
                }
889

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
890 891
		trx->commit_lsn = lsn;
		
892 893 894 895 896
		/*-------------------------------------*/
	
		mutex_enter(&kernel_mutex);
	}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
897 898 899
	/* Free savepoints */
	trx_roll_savepoints_free(trx, NULL);

900 901 902 903 904 905 906 907
	trx->conc_state = TRX_NOT_STARTED;
	trx->rseg = NULL;
	trx->undo_no = ut_dulint_zero;
	trx->last_sql_stat_start.least_undo_no = ut_dulint_zero;

	ut_ad(UT_LIST_GET_LEN(trx->wait_thrs) == 0);
	ut_ad(UT_LIST_GET_LEN(trx->trx_locks) == 0);

908
	UT_LIST_REMOVE(trx_list, trx_sys->trx_list, trx);
909 910
}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
/********************************************************************
Cleans up a transaction at database startup. The cleanup is needed if
the transaction already got to the middle of a commit when the database
crashed, andf we cannot roll it back. */

void
trx_cleanup_at_db_startup(
/*======================*/
	trx_t*	trx)	/* in: transaction */
{
	if (trx->insert_undo != NULL) {

		trx_undo_insert_cleanup(trx);
	}

	trx->conc_state = TRX_NOT_STARTED;
	trx->rseg = NULL;
	trx->undo_no = ut_dulint_zero;
	trx->last_sql_stat_start.least_undo_no = ut_dulint_zero;

	UT_LIST_REMOVE(trx_list, trx_sys->trx_list, trx);
}

934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
/************************************************************************
Assigns a read view for a consistent read query. All the consistent reads
within the same transaction will get the same read view, which is created
when this function is first called for a new started transaction. */

read_view_t*
trx_assign_read_view(
/*=================*/
			/* out: consistent read view */
	trx_t*	trx)	/* in: active transaction */
{
	ut_ad(trx->conc_state == TRX_ACTIVE);

	if (trx->read_view) {
		return(trx->read_view);
	}
	
	mutex_enter(&kernel_mutex);

	if (!trx->read_view) {
		trx->read_view = read_view_open_now(trx, trx->read_view_heap);
	}

	mutex_exit(&kernel_mutex);
	
	return(trx->read_view);
}

/********************************************************************
Commits a transaction. NOTE that the kernel mutex is temporarily released. */
static
965
void
966 967
trx_handle_commit_sig_off_kernel(
/*=============================*/
968 969 970 971 972 973
	trx_t*		trx,		/* in: transaction */
	que_thr_t**	next_thr)	/* in/out: next query thread to run;
					if the value which is passed in is
					a pointer to a NULL pointer, then the
					calling function can start running
					a new query thread */
974 975 976 977
{
	trx_sig_t*	sig;
	trx_sig_t*	next_sig;
	
978
#ifdef UNIV_SYNC_DEBUG
979
	ut_ad(mutex_own(&kernel_mutex));
980
#endif /* UNIV_SYNC_DEBUG */
981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997

	trx->que_state = TRX_QUE_COMMITTING;

	trx_commit_off_kernel(trx);

	ut_ad(UT_LIST_GET_LEN(trx->wait_thrs) == 0);

	/* Remove all TRX_SIG_COMMIT signals from the signal queue and send
	reply messages to them */

	sig = UT_LIST_GET_FIRST(trx->signals);

	while (sig != NULL) {
		next_sig = UT_LIST_GET_NEXT(signals, sig);

		if (sig->type == TRX_SIG_COMMIT) {

998
			trx_sig_reply(sig, next_thr);
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
			trx_sig_remove(trx, sig);
		}

		sig = next_sig;
	}

	trx->que_state = TRX_QUE_RUNNING;
}

/***************************************************************
The transaction must be in the TRX_QUE_LOCK_WAIT state. Puts it to
the TRX_QUE_RUNNING state and releases query threads which were
waiting for a lock in the wait_thrs list. */

void
trx_end_lock_wait(
/*==============*/
	trx_t*	trx)	/* in: transaction */
{
	que_thr_t*	thr;

1020
#ifdef UNIV_SYNC_DEBUG
1021
	ut_ad(mutex_own(&kernel_mutex));
1022
#endif /* UNIV_SYNC_DEBUG */
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
	ut_ad(trx->que_state == TRX_QUE_LOCK_WAIT);
	
	thr = UT_LIST_GET_FIRST(trx->wait_thrs);

	while (thr != NULL) {
		que_thr_end_wait_no_next_thr(thr);

		UT_LIST_REMOVE(trx_thrs, trx->wait_thrs, thr);
			
		thr = UT_LIST_GET_FIRST(trx->wait_thrs);
	}

	trx->que_state = TRX_QUE_RUNNING;
}

/***************************************************************
Moves the query threads in the lock wait list to the SUSPENDED state and puts
the transaction to the TRX_QUE_RUNNING state. */
static
void
trx_lock_wait_to_suspended(
/*=======================*/
	trx_t*	trx)	/* in: transaction in the TRX_QUE_LOCK_WAIT state */
{
	que_thr_t*	thr;

1049
#ifdef UNIV_SYNC_DEBUG
1050
	ut_ad(mutex_own(&kernel_mutex));
1051
#endif /* UNIV_SYNC_DEBUG */
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
	ut_ad(trx->que_state == TRX_QUE_LOCK_WAIT);
	
	thr = UT_LIST_GET_FIRST(trx->wait_thrs);

	while (thr != NULL) {
		thr->state = QUE_THR_SUSPENDED;
	
		UT_LIST_REMOVE(trx_thrs, trx->wait_thrs, thr);
			
		thr = UT_LIST_GET_FIRST(trx->wait_thrs);
	}

	trx->que_state = TRX_QUE_RUNNING;
}

1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
/***************************************************************
Moves the query threads in the sig reply wait list of trx to the SUSPENDED
state. */
static
void
trx_sig_reply_wait_to_suspended(
/*============================*/
	trx_t*	trx)	/* in: transaction */
{
	trx_sig_t*	sig;
	que_thr_t*	thr;

#ifdef UNIV_SYNC_DEBUG
	ut_ad(mutex_own(&kernel_mutex));
#endif /* UNIV_SYNC_DEBUG */
	
	sig = UT_LIST_GET_FIRST(trx->reply_signals);

	while (sig != NULL) {
		thr = sig->receiver;

		ut_ad(thr->state == QUE_THR_SIG_REPLY_WAIT);
		
		thr->state = QUE_THR_SUSPENDED;

		sig->receiver = NULL;
	
		UT_LIST_REMOVE(reply_signals, trx->reply_signals, sig);
			
		sig = UT_LIST_GET_FIRST(trx->reply_signals);
	}
}

1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
/*********************************************************************
Checks the compatibility of a new signal with the other signals in the
queue. */
static
ibool
trx_sig_is_compatible(
/*==================*/
			/* out: TRUE if the signal can be queued */
	trx_t*	trx,	/* in: trx handle */
	ulint	type,	/* in: signal type */
	ulint	sender)	/* in: TRX_SIG_SELF or TRX_SIG_OTHER_SESS */
{
	trx_sig_t*	sig;

1114
#ifdef UNIV_SYNC_DEBUG
1115
	ut_ad(mutex_own(&kernel_mutex));
1116
#endif /* UNIV_SYNC_DEBUG */
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178

	if (UT_LIST_GET_LEN(trx->signals) == 0) {

		return(TRUE);
	}
	
	if (sender == TRX_SIG_SELF) {
		if (type == TRX_SIG_ERROR_OCCURRED) {

			return(TRUE);

		} else if (type == TRX_SIG_BREAK_EXECUTION) {

			return(TRUE);
		} else {
			return(FALSE);
		}
	}

	ut_ad(sender == TRX_SIG_OTHER_SESS);

	sig = UT_LIST_GET_FIRST(trx->signals);

	if (type == TRX_SIG_COMMIT) {
		while (sig != NULL) {

			if (sig->type == TRX_SIG_TOTAL_ROLLBACK) {

				return(FALSE);
			}

			sig = UT_LIST_GET_NEXT(signals, sig);
		}

 		return(TRUE);

	} else if (type == TRX_SIG_TOTAL_ROLLBACK) {
		while (sig != NULL) {

			if (sig->type == TRX_SIG_COMMIT) {

				return(FALSE);
			}

			sig = UT_LIST_GET_NEXT(signals, sig);
		}

		return(TRUE);

	} else if (type == TRX_SIG_BREAK_EXECUTION) {

		return(TRUE);		
	} else {
		ut_error;

		return(FALSE);
	}
}

/********************************************************************
Sends a signal to a trx object. */

1179
ibool
1180 1181
trx_sig_send(
/*=========*/
1182 1183
					/* out: TRUE if the signal was
					successfully delivered */
1184 1185 1186 1187 1188
	trx_t*		trx,		/* in: trx handle */
	ulint		type,		/* in: signal type */
	ulint		sender,		/* in: TRX_SIG_SELF or
					TRX_SIG_OTHER_SESS */
	que_thr_t*	receiver_thr,	/* in: query thread which wants the
1189 1190
					reply, or NULL; if type is
					TRX_SIG_END_WAIT, this must be NULL */
1191
	trx_savept_t* 	savept,		/* in: possible rollback savepoint, or
1192
					NULL */
1193 1194 1195 1196 1197 1198
	que_thr_t**	next_thr)	/* in/out: next query thread to run;
					if the value which is passed in is
					a pointer to a NULL pointer, then the
					calling function can start running
					a new query thread; if the parameter
					is NULL, it is ignored */
1199 1200 1201 1202 1203
{
	trx_sig_t*	sig;
	trx_t*		receiver_trx;

	ut_ad(trx);
1204
#ifdef UNIV_SYNC_DEBUG
1205
	ut_ad(mutex_own(&kernel_mutex));
1206
#endif /* UNIV_SYNC_DEBUG */
1207

1208 1209 1210 1211 1212 1213 1214 1215
	if (!trx_sig_is_compatible(trx, type, sender)) {
		/* The signal is not compatible with the other signals in
		the queue: do nothing */

		ut_error;
		
		return(FALSE);
	}
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248

	/* Queue the signal object */

	if (UT_LIST_GET_LEN(trx->signals) == 0) {

		/* The signal list is empty: the 'sig' slot must be unused
		(we improve performance a bit by avoiding mem_alloc) */
		sig = &(trx->sig);		
 	} else {
		/* It might be that the 'sig' slot is unused also in this
		case, but we choose the easy way of using mem_alloc */
		 
		sig = mem_alloc(sizeof(trx_sig_t));
	}

	UT_LIST_ADD_LAST(signals, trx->signals, sig);

	sig->type = type;
	sig->state = TRX_SIG_WAITING;
	sig->sender = sender;
	sig->receiver = receiver_thr;

	if (savept) {
		sig->savept = *savept;
	}

	if (receiver_thr) {
		receiver_trx = thr_get_trx(receiver_thr);

		UT_LIST_ADD_LAST(reply_signals, receiver_trx->reply_signals,
									sig);
	}

1249 1250 1251 1252 1253
	if (trx->sess->state == SESS_ERROR) {
	
		trx_sig_reply_wait_to_suspended(trx);
	}

1254 1255 1256 1257 1258 1259
	if ((sender != TRX_SIG_SELF) || (type == TRX_SIG_BREAK_EXECUTION)) {

		/* The following call will add a TRX_SIG_ERROR_OCCURRED
		signal to the end of the queue, if the session is not yet
		in the error state: */

1260
		ut_error;
1261 1262 1263 1264 1265 1266 1267
	}

	/* If there were no other signals ahead in the queue, try to start
	handling of the signal */

	if (UT_LIST_GET_FIRST(trx->signals) == sig) {
	
1268
		trx_sig_start_handle(trx, next_thr);
1269 1270
	}

1271
	return(TRUE);
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
}

/********************************************************************
Ends signal handling. If the session is in the error state, and
trx->graph_before_signal_handling != NULL, then returns control to the error
handling routine of the graph (currently just returns the control to the
graph root which then will send an error message to the client). */

void
trx_end_signal_handling(
/*====================*/
	trx_t*	trx)	/* in: trx */
{
1285
#ifdef UNIV_SYNC_DEBUG
1286
	ut_ad(mutex_own(&kernel_mutex));
1287
#endif /* UNIV_SYNC_DEBUG */
1288 1289 1290 1291 1292
	ut_ad(trx->handling_signals == TRUE);

	trx->handling_signals = FALSE;

	trx->graph = trx->graph_before_signal_handling;
1293 1294 1295 1296 1297

	if (trx->graph && (trx->sess->state == SESS_ERROR)) {
			
		que_fork_error_handle(trx, trx->graph);
	}
1298 1299 1300 1301 1302
}

/********************************************************************
Starts handling of a trx signal. */

1303
void
1304 1305
trx_sig_start_handle(
/*=================*/
1306 1307 1308 1309 1310 1311 1312
	trx_t*		trx,		/* in: trx handle */
	que_thr_t**	next_thr)	/* in/out: next query thread to run;
					if the value which is passed in is
					a pointer to a NULL pointer, then the
					calling function can start running
					a new query thread; if the parameter
					is NULL, it is ignored */
1313 1314 1315 1316 1317 1318 1319 1320
{
	trx_sig_t*	sig;
	ulint		type;
loop:
	/* We loop in this function body as long as there are queued signals
	we can process immediately */

	ut_ad(trx);
1321
#ifdef UNIV_SYNC_DEBUG
1322
	ut_ad(mutex_own(&kernel_mutex));
1323
#endif /* UNIV_SYNC_DEBUG */
1324 1325 1326 1327 1328

	if (trx->handling_signals && (UT_LIST_GET_LEN(trx->signals) == 0)) {

		trx_end_signal_handling(trx);
	
1329
		return;
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
	}

	if (trx->conc_state == TRX_NOT_STARTED) {

		trx_start_low(trx, ULINT_UNDEFINED);
	}

	/* If the trx is in a lock wait state, moves the waiting query threads
	to the suspended state */

	if (trx->que_state == TRX_QUE_LOCK_WAIT) {
	
		trx_lock_wait_to_suspended(trx);
	}

1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
	/* If the session is in the error state and this trx has threads
	waiting for reply from signals, moves these threads to the suspended
	state, canceling wait reservations; note that if the transaction has
	sent a commit or rollback signal to itself, and its session is not in
	the error state, then nothing is done here. */

	if (trx->sess->state == SESS_ERROR) {
		trx_sig_reply_wait_to_suspended(trx);
	}
	
1355 1356 1357 1358 1359 1360
	/* If there are no running query threads, we can start processing of a
	signal, otherwise we have to wait until all query threads of this
	transaction are aware of the arrival of the signal. */

	if (trx->n_active_thrs > 0) {

1361
		return;
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
	}

	if (trx->handling_signals == FALSE) {
		trx->graph_before_signal_handling = trx->graph;

		trx->handling_signals = TRUE;
	}

	sig = UT_LIST_GET_FIRST(trx->signals);
	type = sig->type;

	if (type == TRX_SIG_COMMIT) {

1375
		trx_handle_commit_sig_off_kernel(trx, next_thr);
1376 1377

	} else if ((type == TRX_SIG_TOTAL_ROLLBACK)
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390
				|| (type == TRX_SIG_ROLLBACK_TO_SAVEPT)) { 

		trx_rollback(trx, sig, next_thr);

		/* No further signals can be handled until the rollback
		completes, therefore we return */

		return;

	} else if (type == TRX_SIG_ERROR_OCCURRED) {

		trx_rollback(trx, sig, next_thr);

1391 1392 1393
		/* No further signals can be handled until the rollback
		completes, therefore we return */

1394
		return;
1395 1396 1397

	} else if (type == TRX_SIG_BREAK_EXECUTION) {

1398
		trx_sig_reply(sig, next_thr);
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
		trx_sig_remove(trx, sig);
	} else {
		ut_error;
	}

	goto loop;
}			

/********************************************************************
Send the reply message when a signal in the queue of the trx has been
handled. */

1411
void
1412 1413
trx_sig_reply(
/*==========*/
1414 1415 1416 1417 1418 1419
	trx_sig_t*	sig,		/* in: signal */
	que_thr_t**	next_thr)	/* in/out: next query thread to run;
					if the value which is passed in is
					a pointer to a NULL pointer, then the
					calling function can start running
					a new query thread */
1420
{
1421
	trx_t*	receiver_trx;
1422

1423
	ut_ad(sig);
1424
#ifdef UNIV_SYNC_DEBUG
1425
	ut_ad(mutex_own(&kernel_mutex));
1426
#endif /* UNIV_SYNC_DEBUG */
1427

1428
	if (sig->receiver != NULL) {
1429 1430 1431 1432 1433 1434
		ut_ad((sig->receiver)->state == QUE_THR_SIG_REPLY_WAIT);

		receiver_trx = thr_get_trx(sig->receiver);

		UT_LIST_REMOVE(reply_signals, receiver_trx->reply_signals,
									sig);
1435 1436 1437
		ut_ad(receiver_trx->sess->state != SESS_ERROR);
									
		que_thr_end_wait(sig->receiver, next_thr);
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453

		sig->receiver = NULL;

	}
}

/********************************************************************
Removes a signal object from the trx signal queue. */

void
trx_sig_remove(
/*===========*/
	trx_t*		trx,	/* in: trx handle */
	trx_sig_t*	sig)	/* in, own: signal */
{
	ut_ad(trx && sig);
1454
#ifdef UNIV_SYNC_DEBUG
1455
	ut_ad(mutex_own(&kernel_mutex));
1456
#endif /* UNIV_SYNC_DEBUG */
1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496

	ut_ad(sig->receiver == NULL);

	UT_LIST_REMOVE(signals, trx->signals, sig);
	sig->type = 0;	/* reset the field to catch possible bugs */

	if (sig != &(trx->sig)) {
		mem_free(sig);
	}
}

/*************************************************************************
Creates a commit command node struct. */

commit_node_t*
commit_node_create(
/*===============*/
				/* out, own: commit node struct */
	mem_heap_t*	heap)	/* in: mem heap where created */
{
	commit_node_t*	node;

	node = mem_heap_alloc(heap, sizeof(commit_node_t));
	node->common.type  = QUE_NODE_COMMIT;
	node->state = COMMIT_NODE_SEND;
	
	return(node);
}

/***************************************************************
Performs an execution step for a commit type node in a query graph. */

que_thr_t*
trx_commit_step(
/*============*/
				/* out: query thread to run next, or NULL */
	que_thr_t*	thr)	/* in: query thread */
{
	commit_node_t*	node;
	que_thr_t*	next_thr;
1497
	ibool		success;
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
	
	node = thr->run_node;

	ut_ad(que_node_get_type(node) == QUE_NODE_COMMIT);

	if (thr->prev_node == que_node_get_parent(node)) {
		node->state = COMMIT_NODE_SEND;
	}

	if (node->state == COMMIT_NODE_SEND) {
		mutex_enter(&kernel_mutex);

		node->state = COMMIT_NODE_WAIT;

1512 1513
		next_thr = NULL;
		
1514 1515 1516 1517
		thr->state = QUE_THR_SIG_REPLY_WAIT;

		/* Send the commit signal to the transaction */
		
1518 1519 1520
		success = trx_sig_send(thr_get_trx(thr), TRX_SIG_COMMIT,
					TRX_SIG_SELF, thr, NULL, &next_thr);
		
1521
		mutex_exit(&kernel_mutex);
1522

1523 1524 1525 1526 1527
		if (!success) {
			/* Error in delivering the commit signal */
			que_thr_handle_error(thr, DB_ERROR, NULL, 0);
		}

1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
		return(next_thr);
	}

	ut_ad(node->state == COMMIT_NODE_WAIT);
		
	node->state = COMMIT_NODE_SEND;
	
	thr->run_node = que_node_get_parent(node);

	return(thr);
}

/**************************************************************************
Does the transaction commit for MySQL. */

ulint
trx_commit_for_mysql(
/*=================*/
			/* out: 0 or error number */
	trx_t*	trx)	/* in: trx handle */
{
	/* Because we do not do the commit by sending an Innobase
	sig to the transaction, we must here make sure that trx has been
	started. */

monty@donna.mysql.fi's avatar
Merge  
monty@donna.mysql.fi committed
1553 1554
	ut_a(trx);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1555
	trx->op_info = "committing";
1556
	
1557 1558 1559 1560 1561 1562 1563 1564
	trx_start_if_not_started(trx);

	mutex_enter(&kernel_mutex);

	trx_commit_off_kernel(trx);

	mutex_exit(&kernel_mutex);

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1565
	trx->op_info = "";
1566
	
1567 1568 1569
	return(0);
}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
/**************************************************************************
If required, flushes the log to disk if we called trx_commit_for_mysql()
with trx->flush_log_later == TRUE. */

ulint
trx_commit_complete_for_mysql(
/*==========================*/
			/* out: 0 or error number */
	trx_t*	trx)	/* in: trx handle */
{
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1580
        dulint  lsn     = trx->commit_lsn;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1581

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1582
        ut_a(trx);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1583
	
marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1584
	trx->op_info = "flushing log";
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1585

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1586 1587 1588 1589 1590
        if (srv_flush_log_at_trx_commit == 0) {
                /* Do nothing */
        } else if (srv_flush_log_at_trx_commit == 1) {
                if (srv_unix_file_flush_method == SRV_UNIX_NOSYNC) {
                        /* Write the log but do not flush it to disk */
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1591

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1592 1593 1594 1595
                        log_write_up_to(lsn, LOG_WAIT_ONE_GROUP, FALSE);
                } else {
                        /* Write the log to the log files AND flush them to
                        disk */
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1596

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1597 1598 1599
                        log_write_up_to(lsn, LOG_WAIT_ONE_GROUP, TRUE);
                }
        } else if (srv_flush_log_at_trx_commit == 2) {
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1600

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1601
                /* Write the log but do not flush it to disk */
1602

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1603 1604
                log_write_up_to(lsn, LOG_WAIT_ONE_GROUP, FALSE);
        } else {
1605
                ut_error;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1606 1607
        }

marko@hundin.mysql.fi's avatar
marko@hundin.mysql.fi committed
1608
	trx->op_info = "";
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1609

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1610
        return(0);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1611 1612
}

1613 1614 1615 1616 1617 1618 1619 1620
/**************************************************************************
Marks the latest SQL statement ended. */

void
trx_mark_sql_stat_end(
/*==================*/
	trx_t*	trx)	/* in: trx handle */
{
monty@donna.mysql.fi's avatar
Merge  
monty@donna.mysql.fi committed
1621
	ut_a(trx);
1622

monty@donna.mysql.fi's avatar
Merge  
monty@donna.mysql.fi committed
1623 1624 1625
	if (trx->conc_state == TRX_NOT_STARTED) {
		trx->undo_no = ut_dulint_zero;
	}
1626 1627 1628 1629 1630 1631

	trx->last_sql_stat_start.least_undo_no = trx->undo_no;
}

/**************************************************************************
Prints info about a transaction to the standard output. The caller must
1632 1633 1634
own the kernel mutex and must have called
innobase_mysql_prepare_print_arbitrary_thd(), unless he knows that MySQL or
InnoDB cannot meanwhile change the info printed here. */
1635 1636 1637 1638

void
trx_print(
/*======*/
1639
	FILE*	f,	/* in: output stream */
1640 1641
	trx_t*	trx)	/* in: transaction */
{
1642
	ibool	newline;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1643

1644
	fprintf(f, "TRANSACTION %lu %lu",
1645 1646
		(ulong) ut_dulint_get_high(trx->id),
		 (ulong) ut_dulint_get_low(trx->id));
1647

1648
        switch (trx->conc_state) {
1649 1650 1651 1652 1653
		case TRX_NOT_STARTED:
			fputs(", not started", f);
			break;
		case TRX_ACTIVE:
			fprintf(f, ", ACTIVE %lu sec",
monty@mishka.local's avatar
monty@mishka.local committed
1654
				(ulong)difftime(time(NULL), trx->start_time));
1655
                        break;
1656 1657 1658 1659
		case TRX_PREPARED:
			fprintf(f, ", ACTIVE (PREPARED) %lu sec",
				(ulong)difftime(time(NULL), trx->start_time));
                        break;
1660 1661 1662 1663
		case TRX_COMMITTED_IN_MEMORY:
			fputs(", COMMITTED IN MEMORY", f);
			break;
		default:
monty@mishka.local's avatar
monty@mishka.local committed
1664
			fprintf(f, " state %lu", (ulong) trx->conc_state);
1665
        }
1666

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1667
#ifdef UNIV_LINUX
1668
	fprintf(f, ", process no %lu", trx->mysql_process_no);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1669
#endif
1670
	fprintf(f, ", OS thread id %lu",
1671
		       (ulong) os_thread_pf(trx->mysql_thread_id));
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1672

1673 1674 1675
	if (*trx->op_info) {
		putc(' ', f);
		fputs(trx->op_info, f);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1676 1677 1678
	}
	
  	if (trx->type != TRX_USER) {
1679
		fputs(" purge trx", f);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1680 1681
  	}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1682
	if (trx->declared_to_be_inside_innodb) {
1683
		fprintf(f, ", thread declared inside InnoDB %lu",
1684
			       (ulong) trx->n_tickets_to_enter_innodb);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1685 1686
	}

1687
	putc('\n', f);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1688 1689
  	
        if (trx->n_mysql_tables_in_use > 0 || trx->mysql_n_tables_locked > 0) {
1690 1691 1692 1693
		fprintf(f, "mysql tables in use %lu, locked %lu\n",
					(ulong) trx->n_mysql_tables_in_use,
					(ulong) trx->mysql_n_tables_locked);
	}
1694

1695 1696 1697 1698
	if (trx->n_lock_table_transactional > 0 || trx->n_lock_table_exp > 0) {
fprintf(f, "mysql explicit table locks %lu, transactional table locks %lu\n",
				(ulong) trx->n_lock_table_exp,
				(ulong) trx->n_lock_table_transactional);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1699
        }
1700

1701
	newline = TRUE;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1702

1703
  	switch (trx->que_state) {
1704 1705 1706 1707 1708 1709 1710 1711 1712
		case TRX_QUE_RUNNING:
			newline = FALSE; break;
		case TRX_QUE_LOCK_WAIT:
			fputs("LOCK WAIT ", f); break;
		case TRX_QUE_ROLLING_BACK:
			fputs("ROLLING BACK ", f); break;
		case TRX_QUE_COMMITTING:
			fputs("COMMITTING ", f); break;
		default:
monty@mishka.local's avatar
monty@mishka.local committed
1713
			fprintf(f, "que state %lu ", (ulong) trx->que_state);
1714 1715
  	}

heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1716 1717
  	if (0 < UT_LIST_GET_LEN(trx->trx_locks) ||
	    mem_heap_get_size(trx->lock_heap) > 400) {
1718
		newline = TRUE;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1719

1720
		fprintf(f, "%lu lock struct(s), heap size %lu",
1721 1722
			       (ulong) UT_LIST_GET_LEN(trx->trx_locks),
			       (ulong) mem_heap_get_size(trx->lock_heap));
1723 1724 1725
	}

  	if (trx->has_search_latch) {
1726 1727
		newline = TRUE;
		fputs(", holds adaptive hash latch", f);
1728 1729 1730
  	}

	if (ut_dulint_cmp(trx->undo_no, ut_dulint_zero) != 0) {
1731 1732
		newline = TRUE;
		fprintf(f, ", undo log entries %lu",
1733
			(ulong) ut_dulint_get_low(trx->undo_no));
1734 1735
	}
	
1736 1737
	if (newline) {
		putc('\n', f);
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1738
	}
1739 1740

  	if (trx->mysql_thd != NULL) {
1741
		innobase_mysql_print_thd(f, trx->mysql_thd);
1742 1743
  	}  
}
1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756

/********************************************************************
Prepares a transaction. */

void
trx_prepare_off_kernel(
/*==================*/
	trx_t*	trx)	/* in: transaction */
{
	page_t*		update_hdr_page;
	trx_rseg_t*	rseg;
	trx_undo_t*	undo;
	ibool		must_flush_log	= FALSE;
1757
	dulint		lsn;
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
	mtr_t		mtr;
	
#ifdef UNIV_SYNC_DEBUG
	ut_ad(mutex_own(&kernel_mutex));
#endif /* UNIV_SYNC_DEBUG */

	rseg = trx->rseg;
	
	if (trx->insert_undo != NULL || trx->update_undo != NULL) {

		mutex_exit(&kernel_mutex);

		mtr_start(&mtr);
		
		must_flush_log = TRUE;

		/* Change the undo log segment states from TRX_UNDO_ACTIVE
1775 1776 1777
		to TRX_UNDO_PREPARED: these modifications to the file data
		structure define the transaction as prepared in the
		file-based world, at the serialization point of lsn. */
1778 1779 1780 1781 1782

		mutex_enter(&(rseg->mutex));
			
		if (trx->insert_undo != NULL) {
			trx_undo_set_state_at_prepare(trx, trx->insert_undo,
1783
							  		&mtr);
1784 1785 1786 1787 1788 1789 1790 1791 1792
		}

		undo = trx->update_undo;

		if (undo) {
			/* It is not necessary to obtain trx->undo_mutex here
			because only a single OS thread is allowed to do the
			transaction prepare for this transaction. */
					
1793 1794
			update_hdr_page = trx_undo_set_state_at_prepare(trx,
								undo, &mtr);
1795 1796 1797 1798 1799
		}

		mutex_exit(&(rseg->mutex));

		/*--------------*/
1800 1801 1802
		mtr_commit(&mtr);	/* This mtr commit makes the
					transaction prepared in the file-based
					world */
1803
		/*--------------*/
1804
 		lsn = mtr.end_lsn;
1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837

		mutex_enter(&kernel_mutex);
	}

#ifdef UNIV_SYNC_DEBUG
	ut_ad(mutex_own(&kernel_mutex));
#endif /* UNIV_SYNC_DEBUG */

	/*--------------------------------------*/
	trx->conc_state = TRX_PREPARED;
	/*--------------------------------------*/

	if (must_flush_log) {

		mutex_exit(&kernel_mutex);
	
		/* Write the log to the log files AND flush them to disk */

		/*-------------------------------------*/

		log_write_up_to(lsn, LOG_WAIT_ONE_GROUP, TRUE);

		/*-------------------------------------*/
	
		mutex_enter(&kernel_mutex);
	}
}

/**************************************************************************
Does the transaction prepare for MySQL. */

ulint
trx_prepare_for_mysql(
1838
/*====-=============*/
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
			/* out: 0 or error number */
	trx_t*	trx)	/* in: trx handle */
{
	/* Because we do not do the prepare by sending an Innobase
	sig to the transaction, we must here make sure that trx has been
	started. */

	ut_a(trx);

	trx->op_info = "preparing";
	
	trx_start_if_not_started(trx);

	mutex_enter(&kernel_mutex);

	trx_prepare_off_kernel(trx);

	mutex_exit(&kernel_mutex);

	trx->op_info = "";
	
	return(0);
}

/**************************************************************************
This function is used to find number of prepared transactions and
their transaction objects for a recovery. */

int
trx_recover_for_mysql(
/*==================*/
				/* out: number of prepared transactions 
				stored in xid_list */
	XID*    xid_list, 	/* in/out: prepared transactions */
1873
	ulint	len)		/* in: number of slots in xid_list */
1874 1875
{
	trx_t*	trx;
1876
	int	count = 0;
1877 1878 1879 1880

	ut_ad(xid_list);
	ut_ad(len);

1881
	ut_print_timestamp(stderr);
1882
	fprintf(stderr,
1883
		"  InnoDB: Starting recovery for XA transactions...\n");
1884

1885 1886
	/* We should set those transactions which are in the prepared state
	to the xid_list */
1887 1888 1889 1890 1891 1892 1893

	mutex_enter(&kernel_mutex);

	trx = UT_LIST_GET_FIRST(trx_sys->trx_list);

	while (trx) {
		if (trx->conc_state == TRX_PREPARED) {
1894
			xid_list[count] = trx->xid;
1895 1896

			ut_print_timestamp(stderr);
1897
			fprintf(stderr,
1898
"  InnoDB: Transaction %lu %lu in prepared state after recovery\n",
1899 1900 1901
				(ulong) ut_dulint_get_high(trx->id),
				(ulong) ut_dulint_get_low(trx->id));

1902
			ut_print_timestamp(stderr);
1903
			fprintf(stderr,
1904
"  InnoDB: Transaction contains changes to %lu rows\n",
1905 1906
			(ulong)ut_conv_dulint_to_longlong(trx->undo_no));

1907
			count++;
1908
		
1909
			if ((uint)count == len ) {
1910 1911 1912 1913 1914 1915 1916 1917 1918
				break;
			}
		}

		trx = UT_LIST_GET_NEXT(trx_list, trx);
	}

	mutex_exit(&kernel_mutex);

1919
	ut_print_timestamp(stderr);
1920
	fprintf(stderr,
1921
"  InnoDB: %d transactions in prepare state after recovery\n",
1922
		count);
1923

1924
	return (count);			
1925 1926 1927 1928 1929 1930
}

/***********************************************************************
This function is used to find one X/Open XA distributed transaction
which is in the prepared state */

1931
trx_t*
1932 1933 1934
trx_get_trx_by_xid(
/*===============*/
			/* out: trx or NULL */
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1935
	XID*	xid)	/* in: X/Open XA transaction identification */
1936 1937 1938 1939
{
	trx_t*	trx;

	if (xid == NULL) {
1940

1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955
		return (NULL);
	}
 
	mutex_enter(&kernel_mutex);

	trx = UT_LIST_GET_FIRST(trx_sys->trx_list);

	while (trx) {
		/* Compare two X/Open XA transaction id's: their
		length should be the same and binary comparison
		of gtrid_lenght+bqual_length bytes should be
		the same */

		if (xid->gtrid_length == trx->xid.gtrid_length &&
		    xid->bqual_length == trx->xid.bqual_length &&
1956
		    memcmp(xid->data, trx->xid.data, 
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
				xid->gtrid_length + 
				xid->bqual_length) == 0) {
			break;
		}

		trx = UT_LIST_GET_NEXT(trx_list, trx);
	}

	mutex_exit(&kernel_mutex);

	if (trx) {
		if (trx->conc_state != TRX_PREPARED) {
1969

1970 1971 1972 1973 1974 1975 1976 1977
			return(NULL);
		}

		return(trx);
	} else {
		return(NULL);
	}
}