trx0roll.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:28k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Transaction rollback
  3. (c) 1996 Innobase Oy
  4. Created 3/26/1996 Heikki Tuuri
  5. *******************************************************/
  6. #include "trx0roll.h"
  7. #ifdef UNIV_NONINL
  8. #include "trx0roll.ic"
  9. #endif
  10. #include "fsp0fsp.h"
  11. #include "mach0data.h"
  12. #include "trx0rseg.h"
  13. #include "trx0trx.h"
  14. #include "trx0undo.h"
  15. #include "trx0rec.h"
  16. #include "que0que.h"
  17. #include "usr0sess.h"
  18. #include "srv0que.h"
  19. #include "srv0start.h"
  20. #include "row0undo.h"
  21. #include "row0mysql.h"
  22. #include "lock0lock.h"
  23. #include "pars0pars.h"
  24. /* This many pages must be undone before a truncate is tried within rollback */
  25. #define TRX_ROLL_TRUNC_THRESHOLD 1
  26. /* In crash recovery we set this to the undo n:o of the current trx to be
  27. rolled back. Then we can print how many % the rollback has progressed. */
  28. ib_longlong trx_roll_max_undo_no;
  29. /* Auxiliary variable which tells the previous progress % we printed */
  30. ulint trx_roll_progress_printed_pct;
  31. /***********************************************************************
  32. Rollback a transaction used in MySQL. */
  33. int
  34. trx_general_rollback_for_mysql(
  35. /*===========================*/
  36. /* out: error code or DB_SUCCESS */
  37. trx_t* trx, /* in: transaction handle */
  38. ibool partial,/* in: TRUE if partial rollback requested */
  39. trx_savept_t* savept) /* in: pointer to savepoint undo number, if
  40. partial rollback requested */
  41. {
  42. mem_heap_t* heap;
  43. que_thr_t* thr;
  44. roll_node_t* roll_node;
  45. /* Tell Innobase server that there might be work for
  46. utility threads: */
  47. srv_active_wake_master_thread();
  48. trx_start_if_not_started(trx);
  49. heap = mem_heap_create(512);
  50. roll_node = roll_node_create(heap);
  51. roll_node->partial = partial;
  52. if (partial) {
  53. roll_node->savept = *savept;
  54. }
  55. trx->error_state = DB_SUCCESS;
  56. thr = pars_complete_graph_for_exec(roll_node, trx, heap);
  57. ut_a(thr == que_fork_start_command(que_node_get_parent(thr)));
  58. que_run_threads(thr);
  59. mutex_enter(&kernel_mutex);
  60. while (trx->que_state != TRX_QUE_RUNNING) {
  61. mutex_exit(&kernel_mutex);
  62. os_thread_sleep(100000);
  63. mutex_enter(&kernel_mutex);
  64. }
  65. mutex_exit(&kernel_mutex);
  66.   mem_heap_free(heap);
  67.   ut_a(trx->error_state == DB_SUCCESS);
  68. /* Tell Innobase server that there might be work for
  69. utility threads: */
  70. srv_active_wake_master_thread();
  71. return((int) trx->error_state);
  72. }
  73. /***********************************************************************
  74. Rollback a transaction used in MySQL. */
  75. int
  76. trx_rollback_for_mysql(
  77. /*===================*/
  78. /* out: error code or DB_SUCCESS */
  79. trx_t* trx) /* in: transaction handle */
  80. {
  81. int err;
  82. if (trx->conc_state == TRX_NOT_STARTED) {
  83. return(DB_SUCCESS);
  84. }
  85. trx->op_info = "rollback";
  86. err = trx_general_rollback_for_mysql(trx, FALSE, NULL);
  87. trx->op_info = "";
  88. return(err);
  89. }
  90. /***********************************************************************
  91. Rollback the latest SQL statement for MySQL. */
  92. int
  93. trx_rollback_last_sql_stat_for_mysql(
  94. /*=================================*/
  95. /* out: error code or DB_SUCCESS */
  96. trx_t* trx) /* in: transaction handle */
  97. {
  98. int err;
  99. if (trx->conc_state == TRX_NOT_STARTED) {
  100. return(DB_SUCCESS);
  101. }
  102. trx->op_info = "rollback of SQL statement";
  103. err = trx_general_rollback_for_mysql(trx, TRUE,
  104. &(trx->last_sql_stat_start));
  105. /* The following call should not be needed, but we play safe: */
  106. trx_mark_sql_stat_end(trx);
  107. trx->op_info = "";
  108. return(err);
  109. }
  110. /***********************************************************************
  111. Frees savepoint structs. */
  112. void
  113. trx_roll_savepoints_free(
  114. /*=====================*/
  115. trx_t* trx, /* in: transaction handle */
  116. trx_named_savept_t* savep) /* in: free all savepoints > this one;
  117. if this is NULL, free all savepoints
  118. of trx */
  119. {
  120. trx_named_savept_t* next_savep;
  121. if (savep == NULL) {
  122.         savep = UT_LIST_GET_FIRST(trx->trx_savepoints);
  123. } else {
  124.         savep = UT_LIST_GET_NEXT(trx_savepoints, savep);
  125. }
  126. while (savep != NULL) {
  127.         next_savep = UT_LIST_GET_NEXT(trx_savepoints, savep);
  128. UT_LIST_REMOVE(trx_savepoints, trx->trx_savepoints, savep);
  129. mem_free(savep->name);
  130. mem_free(savep);
  131. savep = next_savep;
  132. }
  133. }
  134. /***********************************************************************
  135. Rolls back a transaction back to a named savepoint. Modifications after the
  136. savepoint are undone but InnoDB does NOT release the corresponding locks
  137. which are stored in memory. If a lock is 'implicit', that is, a new inserted
  138. row holds a lock where the lock information is carried by the trx id stored in 
  139. the row, these locks are naturally released in the rollback. Savepoints which
  140. were set after this savepoint are deleted. */
  141. ulint
  142. trx_rollback_to_savepoint_for_mysql(
  143. /*================================*/
  144. /* out: if no savepoint
  145. of the name found then
  146. DB_NO_SAVEPOINT,
  147. otherwise DB_SUCCESS */
  148. trx_t* trx, /* in: transaction handle */
  149. const char* savepoint_name, /* in: savepoint name */
  150. ib_longlong* mysql_binlog_cache_pos) /* out: the MySQL binlog cache
  151. position corresponding to this
  152. savepoint; MySQL needs this
  153. information to remove the
  154. binlog entries of the queries
  155. executed after the savepoint */
  156. {
  157. trx_named_savept_t* savep;
  158. ulint err;
  159. savep = UT_LIST_GET_FIRST(trx->trx_savepoints);
  160. while (savep != NULL) {
  161.         if (0 == ut_strcmp(savep->name, savepoint_name)) {
  162.         /* Found */
  163. break;
  164. }
  165.         savep = UT_LIST_GET_NEXT(trx_savepoints, savep);
  166. }
  167. if (savep == NULL) {
  168.         return(DB_NO_SAVEPOINT);
  169. }
  170. if (trx->conc_state == TRX_NOT_STARTED) {
  171. ut_print_timestamp(stderr);
  172. fputs("  InnoDB: Error: transaction has a savepoint ", stderr);
  173. ut_print_name(stderr, trx, savep->name);
  174. fputs(" though it is not startedn", stderr);
  175.         return(DB_ERROR);
  176. }
  177. /* We can now free all savepoints strictly later than this one */
  178. trx_roll_savepoints_free(trx, savep);
  179. *mysql_binlog_cache_pos = savep->mysql_binlog_cache_pos;
  180. trx->op_info = "rollback to a savepoint";
  181. err = trx_general_rollback_for_mysql(trx, TRUE, &(savep->savept));
  182. /* Store the current undo_no of the transaction so that we know where
  183. to roll back if we have to roll back the next SQL statement: */
  184. trx_mark_sql_stat_end(trx);
  185. trx->op_info = "";
  186. return(err);
  187. }
  188. /***********************************************************************
  189. Creates a named savepoint. If the transaction is not yet started, starts it.
  190. If there is already a savepoint of the same name, this call erases that old
  191. savepoint and replaces it with a new. Savepoints are deleted in a transaction
  192. commit or rollback. */
  193. ulint
  194. trx_savepoint_for_mysql(
  195. /*====================*/
  196. /* out: always DB_SUCCESS */
  197. trx_t* trx, /* in: transaction handle */
  198. const char* savepoint_name, /* in: savepoint name */
  199. ib_longlong binlog_cache_pos) /* in: MySQL binlog cache
  200. position corresponding to this
  201. connection at the time of the
  202. savepoint */
  203. {
  204. trx_named_savept_t* savep;
  205. ut_a(trx);
  206. ut_a(savepoint_name);
  207. trx_start_if_not_started(trx);
  208. savep = UT_LIST_GET_FIRST(trx->trx_savepoints);
  209. while (savep != NULL) {
  210.         if (0 == ut_strcmp(savep->name, savepoint_name)) {
  211.         /* Found */
  212. break;
  213. }
  214.         savep = UT_LIST_GET_NEXT(trx_savepoints, savep);
  215. }
  216. if (savep) {
  217.         /* There is a savepoint with the same name: free that */
  218. UT_LIST_REMOVE(trx_savepoints, trx->trx_savepoints, savep);
  219. mem_free(savep->name);
  220. mem_free(savep);
  221. }
  222. /* Create a new savepoint and add it as the last in the list */
  223. savep = mem_alloc(sizeof(trx_named_savept_t));
  224. savep->name = mem_strdup(savepoint_name);
  225. savep->savept = trx_savept_take(trx);
  226. savep->mysql_binlog_cache_pos = binlog_cache_pos;
  227. UT_LIST_ADD_LAST(trx_savepoints, trx->trx_savepoints, savep);
  228. return(DB_SUCCESS);
  229. }
  230. /***********************************************************************
  231. Returns a transaction savepoint taken at this point in time. */
  232. trx_savept_t
  233. trx_savept_take(
  234. /*============*/
  235. /* out: savepoint */
  236. trx_t* trx) /* in: transaction */
  237. {
  238. trx_savept_t savept;
  239. savept.least_undo_no = trx->undo_no;
  240. return(savept);
  241. }
  242. /***********************************************************************
  243. Rollback or clean up transactions which have no user session. If the
  244. transaction already was committed, then we clean up a possible insert
  245. undo log. If the transaction was not yet committed, then we roll it back. */
  246. void
  247. trx_rollback_or_clean_all_without_sess(void)
  248. /*========================================*/
  249. {
  250. mem_heap_t* heap;
  251. que_fork_t* fork;
  252. que_thr_t* thr;
  253. roll_node_t* roll_node;
  254. trx_t* trx;
  255. dict_table_t* table;
  256. ib_longlong rows_to_undo;
  257. const char* unit = "";
  258. int err;
  259. mutex_enter(&kernel_mutex);
  260. /* Open a dummy session */
  261. if (!trx_dummy_sess) {
  262. trx_dummy_sess = sess_open();
  263. }
  264. mutex_exit(&kernel_mutex);
  265. if (UT_LIST_GET_FIRST(trx_sys->trx_list)) {
  266. fprintf(stderr,
  267. "InnoDB: Starting rollback of uncommitted transactionsn");
  268. } else {
  269. return;
  270. }
  271. loop:
  272. heap = mem_heap_create(512);
  273. mutex_enter(&kernel_mutex);
  274. trx = UT_LIST_GET_FIRST(trx_sys->trx_list);
  275. while (trx && (trx->sess || (trx->conc_state == TRX_NOT_STARTED))) {
  276. trx = UT_LIST_GET_NEXT(trx_list, trx);
  277. }
  278. mutex_exit(&kernel_mutex);
  279. if (trx == NULL) {
  280. fprintf(stderr,
  281. "InnoDB: Rollback of uncommitted transactions completedn");
  282.   mem_heap_free(heap);
  283. return;
  284. }
  285. trx->sess = trx_dummy_sess;
  286. if (trx->conc_state == TRX_COMMITTED_IN_MEMORY) {
  287. fprintf(stderr, "InnoDB: Cleaning up trx with id %lu %lun",
  288. (ulong) ut_dulint_get_high(trx->id),
  289. (ulong) ut_dulint_get_low(trx->id));
  290. trx_cleanup_at_db_startup(trx);
  291. mem_heap_free(heap);
  292. goto loop;
  293. }
  294. fork = que_fork_create(NULL, NULL, QUE_FORK_RECOVERY, heap);
  295. fork->trx = trx;
  296. thr = que_thr_create(fork, heap);
  297. roll_node = roll_node_create(heap);
  298. thr->child = roll_node;
  299. roll_node->common.parent = thr;
  300. mutex_enter(&kernel_mutex);
  301. trx->graph = fork;
  302. ut_a(thr == que_fork_start_command(fork));
  303. trx_roll_max_undo_no = ut_conv_dulint_to_longlong(trx->undo_no);
  304. trx_roll_progress_printed_pct = 0;
  305. rows_to_undo = trx_roll_max_undo_no;
  306. if (rows_to_undo > 1000000000) {
  307. rows_to_undo = rows_to_undo / 1000000;
  308. unit = "M";
  309. }
  310. fprintf(stderr,
  311. "InnoDB: Rolling back trx with id %lu %lu, %lu%s rows to undo",
  312. (ulong) ut_dulint_get_high(trx->id),
  313. (ulong) ut_dulint_get_low(trx->id),
  314. (ulong) rows_to_undo, unit);
  315. mutex_exit(&kernel_mutex);
  316. if (trx->dict_operation) {
  317. row_mysql_lock_data_dictionary(trx);
  318. }
  319. que_run_threads(thr);
  320. mutex_enter(&kernel_mutex);
  321. while (trx->que_state != TRX_QUE_RUNNING) {
  322. mutex_exit(&kernel_mutex);
  323. fprintf(stderr,
  324. "InnoDB: Waiting for rollback of trx id %lu to endn",
  325. (ulong) ut_dulint_get_low(trx->id));
  326. os_thread_sleep(100000);
  327. mutex_enter(&kernel_mutex);
  328. }
  329. mutex_exit(&kernel_mutex);
  330. if (trx->dict_operation) {
  331. /* If the transaction was for a dictionary operation, we
  332. drop the relevant table, if it still exists */
  333. fprintf(stderr,
  334. "InnoDB: Dropping table with id %lu %lu in recovery if it existsn",
  335. (ulong) ut_dulint_get_high(trx->table_id),
  336. (ulong) ut_dulint_get_low(trx->table_id));
  337. table = dict_table_get_on_id_low(trx->table_id, trx);
  338. if (table) {
  339. fputs("InnoDB: Table found: dropping table ", stderr);
  340. ut_print_name(stderr, trx, table->name);
  341. fputs(" in recoveryn", stderr);
  342. err = row_drop_table_for_mysql(table->name, trx, TRUE);
  343. ut_a(err == (int) DB_SUCCESS);
  344. }
  345. }
  346. if (trx->dict_operation) {
  347. row_mysql_unlock_data_dictionary(trx);
  348. }
  349. fprintf(stderr, "nInnoDB: Rolling back of trx id %lu %lu completedn",
  350. (ulong) ut_dulint_get_high(trx->id),
  351. (ulong) ut_dulint_get_low(trx->id));
  352. mem_heap_free(heap);
  353. goto loop;
  354. }
  355. /***********************************************************************
  356. Creates an undo number array. */
  357. trx_undo_arr_t*
  358. trx_undo_arr_create(void)
  359. /*=====================*/
  360. {
  361. trx_undo_arr_t* arr;
  362. mem_heap_t* heap;
  363. ulint i;
  364. heap = mem_heap_create(1024);
  365. arr = mem_heap_alloc(heap, sizeof(trx_undo_arr_t));
  366. arr->infos = mem_heap_alloc(heap, sizeof(trx_undo_inf_t)
  367. * UNIV_MAX_PARALLELISM);
  368. arr->n_cells = UNIV_MAX_PARALLELISM;
  369. arr->n_used = 0;
  370. arr->heap = heap;
  371. for (i = 0; i < UNIV_MAX_PARALLELISM; i++) {
  372. (trx_undo_arr_get_nth_info(arr, i))->in_use = FALSE;
  373. }
  374. return(arr);
  375. }
  376. /***********************************************************************
  377. Frees an undo number array. */
  378. void
  379. trx_undo_arr_free(
  380. /*==============*/
  381. trx_undo_arr_t* arr) /* in: undo number array */
  382. {
  383. ut_ad(arr->n_used == 0);
  384. mem_heap_free(arr->heap);
  385. }
  386. /***********************************************************************
  387. Stores info of an undo log record to the array if it is not stored yet. */
  388. static
  389. ibool
  390. trx_undo_arr_store_info(
  391. /*====================*/
  392. /* out: FALSE if the record already existed in the
  393. array */
  394. trx_t* trx, /* in: transaction */
  395. dulint undo_no)/* in: undo number */
  396. {
  397. trx_undo_inf_t* cell;
  398. trx_undo_inf_t* stored_here;
  399. trx_undo_arr_t* arr;
  400. ulint n_used;
  401. ulint n;
  402. ulint i;
  403. n = 0;
  404. arr = trx->undo_no_arr;
  405. n_used = arr->n_used;
  406. stored_here = NULL;
  407. for (i = 0;; i++) {
  408. cell = trx_undo_arr_get_nth_info(arr, i);
  409. if (!cell->in_use) {
  410. if (!stored_here) {
  411. /* Not in use, we may store here */
  412. cell->undo_no = undo_no;
  413. cell->in_use = TRUE;
  414. arr->n_used++;
  415. stored_here = cell;
  416. }
  417. } else {
  418. n++;
  419. if (0 == ut_dulint_cmp(cell->undo_no, undo_no)) {
  420. if (stored_here) {
  421. stored_here->in_use = FALSE;
  422. ut_ad(arr->n_used > 0);
  423. arr->n_used--;
  424. }
  425. ut_ad(arr->n_used == n_used);
  426. return(FALSE);
  427. }
  428. }
  429. if (n == n_used && stored_here) {
  430. ut_ad(arr->n_used == 1 + n_used);
  431. return(TRUE);
  432. }
  433. }
  434. }
  435. /***********************************************************************
  436. Removes an undo number from the array. */
  437. static
  438. void
  439. trx_undo_arr_remove_info(
  440. /*=====================*/
  441. trx_undo_arr_t* arr, /* in: undo number array */
  442. dulint undo_no)/* in: undo number */
  443. {
  444. trx_undo_inf_t* cell;
  445. ulint n_used;
  446. ulint n;
  447. ulint i;
  448. n_used = arr->n_used;
  449. n = 0;
  450. for (i = 0;; i++) {
  451. cell = trx_undo_arr_get_nth_info(arr, i);
  452. if (cell->in_use
  453.      && 0 == ut_dulint_cmp(cell->undo_no, undo_no)) {
  454. cell->in_use = FALSE;
  455. ut_ad(arr->n_used > 0);
  456. arr->n_used--;
  457. return;
  458. }
  459. }
  460. }
  461. /***********************************************************************
  462. Gets the biggest undo number in an array. */
  463. static
  464. dulint
  465. trx_undo_arr_get_biggest(
  466. /*=====================*/
  467. /* out: biggest value, ut_dulint_zero if
  468. the array is empty */
  469. trx_undo_arr_t* arr) /* in: undo number array */
  470. {
  471. trx_undo_inf_t* cell;
  472. ulint n_used;
  473. dulint biggest;
  474. ulint n;
  475. ulint i;
  476. n = 0;
  477. n_used = arr->n_used;
  478. biggest = ut_dulint_zero;
  479. for (i = 0;; i++) {
  480. cell = trx_undo_arr_get_nth_info(arr, i);
  481. if (cell->in_use) {
  482. n++;
  483. if (ut_dulint_cmp(cell->undo_no, biggest) > 0) {
  484. biggest = cell->undo_no;
  485. }
  486. }
  487. if (n == n_used) {
  488. return(biggest);
  489. }
  490. }
  491. }
  492. /***************************************************************************
  493. Tries truncate the undo logs. */
  494. void
  495. trx_roll_try_truncate(
  496. /*==================*/
  497. trx_t* trx) /* in: transaction */
  498. {
  499. trx_undo_arr_t* arr;
  500. dulint limit;
  501. dulint biggest;
  502. #ifdef UNIV_SYNC_DEBUG
  503. ut_ad(mutex_own(&(trx->undo_mutex)));
  504. ut_ad(mutex_own(&((trx->rseg)->mutex)));
  505. #endif /* UNIV_SYNC_DEBUG */
  506. trx->pages_undone = 0;
  507. arr = trx->undo_no_arr;
  508. limit = trx->undo_no;
  509. if (arr->n_used > 0) {
  510. biggest = trx_undo_arr_get_biggest(arr);
  511.      if (ut_dulint_cmp(biggest, limit) >= 0) {
  512.      limit = ut_dulint_add(biggest, 1);
  513.      }
  514. }
  515. if (trx->insert_undo) {
  516. trx_undo_truncate_end(trx, trx->insert_undo, limit);
  517. }
  518. if (trx->update_undo) {
  519. trx_undo_truncate_end(trx, trx->update_undo, limit);
  520. }
  521. }
  522. /***************************************************************************
  523. Pops the topmost undo log record in a single undo log and updates the info
  524. about the topmost record in the undo log memory struct. */
  525. static
  526. trx_undo_rec_t*
  527. trx_roll_pop_top_rec(
  528. /*=================*/
  529. /* out: undo log record, the page s-latched */
  530. trx_t* trx, /* in: transaction */
  531. trx_undo_t* undo, /* in: undo log */
  532. mtr_t* mtr) /* in: mtr */
  533. {
  534. page_t*  undo_page;
  535. ulint offset;
  536. trx_undo_rec_t* prev_rec;
  537. page_t* prev_rec_page;
  538. #ifdef UNIV_SYNC_DEBUG
  539. ut_ad(mutex_own(&(trx->undo_mutex)));
  540. #endif /* UNIV_SYNC_DEBUG */
  541. undo_page = trx_undo_page_get_s_latched(undo->space,
  542. undo->top_page_no, mtr);
  543. offset = undo->top_offset;
  544. /* fprintf(stderr, "Thread %lu undoing trx %lu undo record %lun",
  545. os_thread_get_curr_id(), ut_dulint_get_low(trx->id),
  546. ut_dulint_get_low(undo->top_undo_no)); */
  547. prev_rec = trx_undo_get_prev_rec(undo_page + offset,
  548. undo->hdr_page_no, undo->hdr_offset,
  549. mtr);
  550. if (prev_rec == NULL) {
  551. undo->empty = TRUE;
  552. } else {
  553. prev_rec_page = buf_frame_align(prev_rec);
  554. if (prev_rec_page != undo_page) {
  555. trx->pages_undone++;
  556. }
  557. undo->top_page_no = buf_frame_get_page_no(prev_rec_page);
  558. undo->top_offset  = prev_rec - prev_rec_page;
  559. undo->top_undo_no = trx_undo_rec_get_undo_no(prev_rec);
  560. }
  561. return(undo_page + offset);
  562. }
  563. /************************************************************************
  564. Pops the topmost record when the two undo logs of a transaction are seen
  565. as a single stack of records ordered by their undo numbers. Inserts the
  566. undo number of the popped undo record to the array of currently processed
  567. undo numbers in the transaction. When the query thread finishes processing
  568. of this undo record, it must be released with trx_undo_rec_release. */
  569. trx_undo_rec_t*
  570. trx_roll_pop_top_rec_of_trx(
  571. /*========================*/
  572. /* out: undo log record copied to heap, NULL
  573. if none left, or if the undo number of the
  574. top record would be less than the limit */
  575. trx_t* trx, /* in: transaction */
  576. dulint limit, /* in: least undo number we need */
  577. dulint* roll_ptr,/* out: roll pointer to undo record */
  578. mem_heap_t* heap) /* in: memory heap where copied */
  579. {
  580. trx_undo_t* undo;
  581. trx_undo_t* ins_undo;
  582. trx_undo_t* upd_undo;
  583. trx_undo_rec_t* undo_rec;
  584. trx_undo_rec_t* undo_rec_copy;
  585. dulint undo_no;
  586. ibool is_insert;
  587. trx_rseg_t* rseg;
  588. ulint progress_pct;
  589. mtr_t mtr;
  590. rseg = trx->rseg;
  591. try_again:
  592. mutex_enter(&(trx->undo_mutex));
  593. if (trx->pages_undone >= TRX_ROLL_TRUNC_THRESHOLD) {
  594. mutex_enter(&(rseg->mutex));
  595. trx_roll_try_truncate(trx);
  596. mutex_exit(&(rseg->mutex));
  597. }
  598. ins_undo = trx->insert_undo;
  599. upd_undo = trx->update_undo;
  600. if (!ins_undo || ins_undo->empty) {
  601. undo = upd_undo;
  602. } else if (!upd_undo || upd_undo->empty) {
  603. undo = ins_undo;
  604. } else if (ut_dulint_cmp(upd_undo->top_undo_no,
  605.  ins_undo->top_undo_no) > 0) {
  606. undo = upd_undo;
  607. } else {
  608. undo = ins_undo;
  609. }
  610. if (!undo || undo->empty
  611. || (ut_dulint_cmp(limit, undo->top_undo_no) > 0)) {
  612.      if ((trx->undo_no_arr)->n_used == 0) {
  613. /* Rollback is ending */
  614. mutex_enter(&(rseg->mutex));
  615. trx_roll_try_truncate(trx);
  616. mutex_exit(&(rseg->mutex));
  617. }
  618. mutex_exit(&(trx->undo_mutex));
  619. return(NULL);
  620. }
  621. if (undo == ins_undo) {
  622. is_insert = TRUE;
  623. } else {
  624. is_insert = FALSE;
  625. }
  626. *roll_ptr = trx_undo_build_roll_ptr(is_insert, (undo->rseg)->id,
  627. undo->top_page_no, undo->top_offset);
  628. mtr_start(&mtr);
  629. undo_rec = trx_roll_pop_top_rec(trx, undo, &mtr);
  630. undo_no = trx_undo_rec_get_undo_no(undo_rec);
  631. ut_ad(ut_dulint_cmp(ut_dulint_add(undo_no, 1), trx->undo_no) == 0);
  632. /* We print rollback progress info if we are in a crash recovery
  633. and the transaction has at least 1000 row operations to undo */
  634. if (srv_is_being_started && trx_roll_max_undo_no > 1000) {
  635.   progress_pct = 100 - (ulint)
  636. ((ut_conv_dulint_to_longlong(undo_no) * 100)
  637. / trx_roll_max_undo_no);
  638. if (progress_pct != trx_roll_progress_printed_pct) {
  639. if (trx_roll_progress_printed_pct == 0) {
  640. fprintf(stderr,
  641. "nInnoDB: Progress in percents: %lu", (ulong) progress_pct);
  642. } else {
  643. fprintf(stderr,
  644. " %lu", (ulong) progress_pct);
  645. }
  646. fflush(stderr);
  647. trx_roll_progress_printed_pct = progress_pct;
  648. }
  649. }
  650. trx->undo_no = undo_no;
  651. if (!trx_undo_arr_store_info(trx, undo_no)) {
  652. /* A query thread is already processing this undo log record */
  653. mutex_exit(&(trx->undo_mutex));
  654. mtr_commit(&mtr);
  655. goto try_again;
  656. }
  657. undo_rec_copy = trx_undo_rec_copy(undo_rec, heap);
  658. mutex_exit(&(trx->undo_mutex));
  659. mtr_commit(&mtr);
  660. return(undo_rec_copy);
  661. }
  662. /************************************************************************
  663. Reserves an undo log record for a query thread to undo. This should be
  664. called if the query thread gets the undo log record not using the pop
  665. function above. */
  666. ibool
  667. trx_undo_rec_reserve(
  668. /*=================*/
  669. /* out: TRUE if succeeded */
  670. trx_t* trx, /* in: transaction */
  671. dulint undo_no)/* in: undo number of the record */
  672. {
  673. ibool ret;
  674. mutex_enter(&(trx->undo_mutex));
  675. ret = trx_undo_arr_store_info(trx, undo_no);
  676. mutex_exit(&(trx->undo_mutex));
  677. return(ret);
  678. }
  679. /***********************************************************************
  680. Releases a reserved undo record. */
  681. void
  682. trx_undo_rec_release(
  683. /*=================*/
  684. trx_t* trx, /* in: transaction */
  685. dulint undo_no)/* in: undo number */
  686. {
  687. trx_undo_arr_t* arr;
  688. mutex_enter(&(trx->undo_mutex));
  689. arr = trx->undo_no_arr;
  690. trx_undo_arr_remove_info(arr, undo_no);
  691. mutex_exit(&(trx->undo_mutex));
  692. }
  693. /*************************************************************************
  694. Starts a rollback operation. */
  695. void
  696. trx_rollback(
  697. /*=========*/
  698. trx_t* trx, /* in: transaction */
  699. trx_sig_t* sig, /* in: signal starting the rollback */
  700. que_thr_t** next_thr)/* in/out: next query thread to run;
  701. if the value which is passed in is
  702. a pointer to a NULL pointer, then the
  703. calling function can start running
  704. a new query thread; if the passed value is
  705. NULL, the parameter is ignored */
  706. {
  707. que_t* roll_graph;
  708. que_thr_t* thr;
  709. /* que_thr_t* thr2; */
  710. #ifdef UNIV_SYNC_DEBUG
  711. ut_ad(mutex_own(&kernel_mutex));
  712. #endif /* UNIV_SYNC_DEBUG */
  713. ut_ad((trx->undo_no_arr == NULL) || ((trx->undo_no_arr)->n_used == 0));
  714. /* Initialize the rollback field in the transaction */
  715. if (sig->type == TRX_SIG_TOTAL_ROLLBACK) {
  716. trx->roll_limit = ut_dulint_zero;
  717. } else if (sig->type == TRX_SIG_ROLLBACK_TO_SAVEPT) {
  718. trx->roll_limit = (sig->savept).least_undo_no;
  719. } else if (sig->type == TRX_SIG_ERROR_OCCURRED) {
  720. trx->roll_limit = trx->last_sql_stat_start.least_undo_no;
  721. } else {
  722. ut_error;
  723. }
  724. ut_a(ut_dulint_cmp(trx->roll_limit, trx->undo_no) <= 0);
  725. trx->pages_undone = 0;
  726. if (trx->undo_no_arr == NULL) {
  727. trx->undo_no_arr = trx_undo_arr_create();
  728. }
  729. /* Build a 'query' graph which will perform the undo operations */
  730. roll_graph = trx_roll_graph_build(trx);
  731. trx->graph = roll_graph;
  732. trx->que_state = TRX_QUE_ROLLING_BACK;
  733. thr = que_fork_start_command(roll_graph);
  734. ut_ad(thr);
  735. /* thr2 = que_fork_start_command(roll_graph);
  736. ut_ad(thr2); */
  737. if (next_thr && (*next_thr == NULL)) {
  738. *next_thr = thr;
  739. /* srv_que_task_enqueue_low(thr2); */
  740. } else {
  741. srv_que_task_enqueue_low(thr);
  742. /* srv_que_task_enqueue_low(thr2); */
  743. }
  744. }
  745. /********************************************************************
  746. Builds an undo 'query' graph for a transaction. The actual rollback is
  747. performed by executing this query graph like a query subprocedure call.
  748. The reply about the completion of the rollback will be sent by this
  749. graph. */
  750. que_t*
  751. trx_roll_graph_build(
  752. /*=================*/
  753. /* out, own: the query graph */
  754. trx_t* trx) /* in: trx handle */
  755. {
  756. mem_heap_t* heap;
  757. que_fork_t* fork;
  758. que_thr_t* thr;
  759. /* que_thr_t* thr2; */
  760. #ifdef UNIV_SYNC_DEBUG
  761. ut_ad(mutex_own(&kernel_mutex));
  762. #endif /* UNIV_SYNC_DEBUG */
  763. heap = mem_heap_create(512);
  764. fork = que_fork_create(NULL, NULL, QUE_FORK_ROLLBACK, heap);
  765. fork->trx = trx;
  766. thr = que_thr_create(fork, heap);
  767. /* thr2 = que_thr_create(fork, heap); */
  768. thr->child = row_undo_node_create(trx, thr, heap);  
  769. /* thr2->child = row_undo_node_create(trx, thr2, heap); */
  770. return(fork);
  771. }
  772. /*************************************************************************
  773. Finishes error processing after the necessary partial rollback has been
  774. done. */
  775. static
  776. void
  777. trx_finish_error_processing(
  778. /*========================*/
  779. trx_t* trx) /* in: transaction */
  780. {
  781. trx_sig_t* sig;
  782. trx_sig_t* next_sig;
  783. #ifdef UNIV_SYNC_DEBUG
  784. ut_ad(mutex_own(&kernel_mutex));
  785. #endif /* UNIV_SYNC_DEBUG */
  786. sig = UT_LIST_GET_FIRST(trx->signals);
  787. while (sig != NULL) {
  788. next_sig = UT_LIST_GET_NEXT(signals, sig);
  789. if (sig->type == TRX_SIG_ERROR_OCCURRED) {
  790. trx_sig_remove(trx, sig);
  791. }
  792. sig = next_sig;
  793. }
  794. trx->que_state = TRX_QUE_RUNNING;
  795. }
  796. /*************************************************************************
  797. Finishes a partial rollback operation. */
  798. static
  799. void
  800. trx_finish_partial_rollback_off_kernel(
  801. /*===================================*/
  802. trx_t* trx, /* in: transaction */
  803. que_thr_t** next_thr)/* in/out: next query thread to run;
  804. if the value which is passed in is a pointer
  805. to a NULL pointer, then the calling function
  806. can start running a new query thread; if this
  807. parameter is NULL, it is ignored */
  808. {
  809. trx_sig_t* sig;
  810. #ifdef UNIV_SYNC_DEBUG
  811. ut_ad(mutex_own(&kernel_mutex));
  812. #endif /* UNIV_SYNC_DEBUG */
  813. sig = UT_LIST_GET_FIRST(trx->signals);
  814. /* Remove the signal from the signal queue and send reply message
  815. to it */
  816. trx_sig_reply(sig, next_thr);
  817. trx_sig_remove(trx, sig);
  818. trx->que_state = TRX_QUE_RUNNING;
  819. }
  820. /********************************************************************
  821. Finishes a transaction rollback. */
  822. void
  823. trx_finish_rollback_off_kernel(
  824. /*===========================*/
  825. que_t* graph, /* in: undo graph which can now be freed */
  826. trx_t* trx, /* in: transaction */
  827. que_thr_t** next_thr)/* in/out: next query thread to run;
  828. if the value which is passed in is
  829. a pointer to a NULL pointer, then the
  830.     calling function can start running
  831. a new query thread; if this parameter is
  832. NULL, it is ignored */
  833. {
  834. trx_sig_t* sig;
  835. trx_sig_t* next_sig;
  836. #ifdef UNIV_SYNC_DEBUG
  837. ut_ad(mutex_own(&kernel_mutex));
  838. #endif /* UNIV_SYNC_DEBUG */
  839. ut_a(trx->undo_no_arr == NULL || trx->undo_no_arr->n_used == 0);
  840. /* Free the memory reserved by the undo graph */
  841. que_graph_free(graph);
  842. sig = UT_LIST_GET_FIRST(trx->signals);
  843. if (sig->type == TRX_SIG_ROLLBACK_TO_SAVEPT) {
  844. trx_finish_partial_rollback_off_kernel(trx, next_thr);
  845. return;
  846. } else if (sig->type == TRX_SIG_ERROR_OCCURRED) {
  847. trx_finish_error_processing(trx);
  848. return;
  849. }
  850. if (lock_print_waits) {
  851. fprintf(stderr, "Trx %lu rollback finishedn",
  852. (ulong) ut_dulint_get_low(trx->id));
  853. }
  854. trx_commit_off_kernel(trx);
  855. /* Remove all TRX_SIG_TOTAL_ROLLBACK signals from the signal queue and
  856. send reply messages to them */
  857. trx->que_state = TRX_QUE_RUNNING;
  858. while (sig != NULL) {
  859. next_sig = UT_LIST_GET_NEXT(signals, sig);
  860. if (sig->type == TRX_SIG_TOTAL_ROLLBACK) {
  861. trx_sig_reply(sig, next_thr);
  862. trx_sig_remove(trx, sig);
  863. }
  864. sig = next_sig;
  865. }
  866. }
  867. /*************************************************************************
  868. Creates a rollback command node struct. */
  869. roll_node_t*
  870. roll_node_create(
  871. /*=============*/
  872. /* out, own: rollback node struct */
  873. mem_heap_t* heap) /* in: mem heap where created */
  874. {
  875. roll_node_t* node;
  876. node = mem_heap_alloc(heap, sizeof(roll_node_t));
  877. node->common.type = QUE_NODE_ROLLBACK;
  878. node->state = ROLL_NODE_SEND;
  879. node->partial = FALSE;
  880. return(node);
  881. }
  882. /***************************************************************
  883. Performs an execution step for a rollback command node in a query graph. */
  884. que_thr_t*
  885. trx_rollback_step(
  886. /*==============*/
  887. /* out: query thread to run next, or NULL */
  888. que_thr_t* thr) /* in: query thread */
  889. {
  890. roll_node_t* node;
  891. ibool success;
  892. ulint sig_no;
  893. trx_savept_t* savept;
  894. node = thr->run_node;
  895. ut_ad(que_node_get_type(node) == QUE_NODE_ROLLBACK);
  896. if (thr->prev_node == que_node_get_parent(node)) {
  897. node->state = ROLL_NODE_SEND;
  898. }
  899. if (node->state == ROLL_NODE_SEND) {
  900. mutex_enter(&kernel_mutex);
  901. node->state = ROLL_NODE_WAIT;
  902. if (node->partial) {
  903. sig_no = TRX_SIG_ROLLBACK_TO_SAVEPT;
  904. savept = &(node->savept);
  905. } else {
  906. sig_no = TRX_SIG_TOTAL_ROLLBACK;
  907. savept = NULL;
  908. }
  909. /* Send a rollback signal to the transaction */
  910. success = trx_sig_send(thr_get_trx(thr),
  911. sig_no, TRX_SIG_SELF,
  912. thr, savept, NULL);
  913. thr->state = QUE_THR_SIG_REPLY_WAIT;
  914. mutex_exit(&kernel_mutex);
  915. if (!success) {
  916. /* Error in delivering the rollback signal */
  917. que_thr_handle_error(thr, DB_ERROR, NULL, 0);
  918. }
  919. return(NULL);
  920. }
  921. ut_ad(node->state == ROLL_NODE_WAIT);
  922. thr->run_node = que_node_get_parent(node);
  923. return(thr);
  924. }