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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Transaction undo log
  3. (c) 1996 Innobase Oy
  4. Created 3/26/1996 Heikki Tuuri
  5. *******************************************************/
  6. #include "trx0undo.h"
  7. #ifdef UNIV_NONINL
  8. #include "trx0undo.ic"
  9. #endif
  10. #include "fsp0fsp.h"
  11. #include "mach0data.h"
  12. #include "trx0rseg.h"
  13. #include "trx0trx.h"
  14. #include "srv0srv.h"
  15. #include "trx0rec.h"
  16. #include "trx0purge.h"
  17. /* How should the old versions in the history list be managed?
  18.    ----------------------------------------------------------
  19. If each transaction is given a whole page for its update undo log, file
  20. space consumption can be 10 times higher than necessary. Therefore,
  21. partly filled update undo log pages should be reusable. But then there
  22. is no way individual pages can be ordered so that the ordering agrees
  23. with the serialization numbers of the transactions on the pages. Thus,
  24. the history list must be formed of undo logs, not their header pages as
  25. it was in the old implementation.
  26. However, on a single header page the transactions are placed in
  27. the order of their serialization numbers. As old versions are purged, we
  28. may free the page when the last transaction on the page has been purged.
  29. A problem is that the purge has to go through the transactions
  30. in the serialization order. This means that we have to look through all
  31. rollback segments for the one that has the smallest transaction number
  32. in its history list.
  33. When should we do a purge? A purge is necessary when space is
  34. running out in any of the rollback segments. Then we may have to purge
  35. also old version which might be needed by some consistent read. How do
  36. we trigger the start of a purge? When a transaction writes to an undo log,
  37. it may notice that the space is running out. When a read view is closed,
  38. it may make some history superfluous. The server can have an utility which
  39. periodically checks if it can purge some history.
  40. In a parallellized purge we have the problem that a query thread
  41. can remove a delete marked clustered index record before another query
  42. thread has processed an earlier version of the record, which cannot then
  43. be done because the row cannot be constructed from the clustered index
  44. record. To avoid this problem, we will store in the update and delete mark
  45. undo record also the columns necessary to construct the secondary index
  46. entries which are modified.
  47. We can latch the stack of versions of a single clustered index record
  48. by taking a latch on the clustered index page. As long as the latch is held,
  49. no new versions can be added and no versions removed by undo. But, a purge
  50. can still remove old versions from the bottom of the stack. */
  51. /* How to protect rollback segments, undo logs, and history lists with
  52.    -------------------------------------------------------------------
  53. latches?
  54. -------
  55. The contention of the kernel mutex should be minimized. When a transaction
  56. does its first insert or modify in an index, an undo log is assigned for it.
  57. Then we must have an x-latch to the rollback segment header.
  58. When the transaction does more modifys or rolls back, the undo log is
  59. protected with undo_mutex in the transaction.
  60. When the transaction commits, its insert undo log is either reset and
  61. cached for a fast reuse, or freed. In these cases we must have an x-latch on
  62. the rollback segment page. The update undo log is put to the history list. If
  63. it is not suitable for reuse, its slot in the rollback segment is reset. In
  64. both cases, an x-latch must be acquired on the rollback segment.
  65. The purge operation steps through the history list without modifying
  66. it until a truncate operation occurs, which can remove undo logs from the end
  67. of the list and release undo log segments. In stepping through the list,
  68. s-latches on the undo log pages are enough, but in a truncate, x-latches must
  69. be obtained on the rollback segment and individual pages. */
  70. /************************************************************************
  71. Initializes the fields in an undo log segment page. */
  72. static
  73. void
  74. trx_undo_page_init(
  75. /*================*/
  76. page_t* undo_page, /* in: undo log segment page */
  77. ulint type, /* in: undo log segment type */
  78. mtr_t* mtr); /* in: mtr */
  79. /************************************************************************
  80. Creates and initializes an undo log memory object. */
  81. static
  82. trx_undo_t*
  83. trx_undo_mem_create(
  84. /*================*/
  85. /* out, own: the undo log memory object */
  86. trx_rseg_t* rseg, /* in: rollback segment memory object */
  87. ulint id, /* in: slot index within rseg */
  88. ulint type, /* in: type of the log: TRX_UNDO_INSERT or
  89. TRX_UNDO_UPDATE */
  90. dulint trx_id, /* in: id of the trx for which the undo log
  91. is created */
  92. ulint page_no,/* in: undo log header page number */
  93. ulint offset); /* in: undo log header byte offset on page */
  94. /*******************************************************************
  95. Initializes a cached insert undo log header page for new use. */
  96. static
  97. ulint
  98. trx_undo_insert_header_reuse(
  99. /*=========================*/
  100. /* out: undo log header byte offset on page */
  101. page_t* undo_page, /* in: insert undo log segment header page,
  102. x-latched */
  103. dulint trx_id, /* in: transaction id */
  104. mtr_t* mtr); /* in: mtr */
  105. /**************************************************************************
  106. If an update undo log can be discarded immediately, this function frees the
  107. space, resetting the page to the proper state for caching. */
  108. static
  109. void
  110. trx_undo_discard_latest_update_undo(
  111. /*================================*/
  112. page_t* undo_page, /* in: header page of an undo log of size 1 */
  113. mtr_t* mtr); /* in: mtr */
  114. /***************************************************************************
  115. Gets the previous record in an undo log from the previous page. */
  116. static
  117. trx_undo_rec_t*
  118. trx_undo_get_prev_rec_from_prev_page(
  119. /*=================================*/
  120. /* out: undo log record, the page s-latched,
  121. NULL if none */
  122. trx_undo_rec_t* rec, /* in: undo record */
  123. ulint page_no,/* in: undo log header page number */
  124. ulint offset, /* in: undo log header offset on page */
  125. mtr_t* mtr) /* in: mtr */
  126. {
  127. ulint prev_page_no;
  128. page_t* prev_page;
  129. page_t* undo_page;
  130. undo_page = buf_frame_align(rec);
  131. prev_page_no = flst_get_prev_addr(undo_page + TRX_UNDO_PAGE_HDR
  132. + TRX_UNDO_PAGE_NODE, mtr)
  133. .page;
  134. if (prev_page_no == FIL_NULL) {
  135. return(NULL);
  136. }
  137. prev_page = trx_undo_page_get_s_latched(
  138. buf_frame_get_space_id(undo_page),
  139. prev_page_no, mtr);
  140. return(trx_undo_page_get_last_rec(prev_page, page_no, offset));
  141. }
  142. /***************************************************************************
  143. Gets the previous record in an undo log. */
  144. trx_undo_rec_t*
  145. trx_undo_get_prev_rec(
  146. /*==================*/
  147. /* out: undo log record, the page s-latched,
  148. NULL if none */
  149. trx_undo_rec_t* rec, /* in: undo record */
  150. ulint page_no,/* in: undo log header page number */
  151. ulint offset, /* in: undo log header offset on page */
  152. mtr_t* mtr) /* in: mtr */
  153. {
  154. trx_undo_rec_t* prev_rec;
  155. prev_rec = trx_undo_page_get_prev_rec(rec, page_no, offset);
  156. if (prev_rec) {
  157. return(prev_rec);
  158. }
  159. /* We have to go to the previous undo log page to look for the
  160. previous record */
  161. return(trx_undo_get_prev_rec_from_prev_page(rec, page_no, offset, mtr));
  162. }
  163. /***************************************************************************
  164. Gets the next record in an undo log from the next page. */
  165. static
  166. trx_undo_rec_t*
  167. trx_undo_get_next_rec_from_next_page(
  168. /*=================================*/
  169. /* out: undo log record, the page latched, NULL if
  170. none */
  171. page_t* undo_page, /* in: undo log page */
  172. ulint page_no,/* in: undo log header page number */
  173. ulint offset, /* in: undo log header offset on page */
  174. ulint mode, /* in: latch mode: RW_S_LATCH or RW_X_LATCH */
  175. mtr_t* mtr) /* in: mtr */
  176. {
  177. trx_ulogf_t* log_hdr;
  178. ulint next_page_no;
  179. page_t*  next_page;
  180. ulint space;
  181. ulint next;
  182. if (page_no == buf_frame_get_page_no(undo_page)) {
  183. log_hdr = undo_page + offset;
  184. next = mach_read_from_2(log_hdr + TRX_UNDO_NEXT_LOG);
  185. if (next != 0) {
  186. return(NULL);
  187. }
  188. }
  189. space = buf_frame_get_space_id(undo_page);
  190. next_page_no = flst_get_next_addr(undo_page + TRX_UNDO_PAGE_HDR
  191. + TRX_UNDO_PAGE_NODE, mtr)
  192. .page;
  193. if (next_page_no == FIL_NULL) {
  194. return(NULL);
  195. }
  196. if (mode == RW_S_LATCH) {
  197. next_page = trx_undo_page_get_s_latched(space, next_page_no,
  198. mtr);
  199. } else {
  200. ut_ad(mode == RW_X_LATCH);
  201. next_page = trx_undo_page_get(space, next_page_no, mtr);
  202. }
  203. return(trx_undo_page_get_first_rec(next_page, page_no, offset));
  204. }
  205. /***************************************************************************
  206. Gets the next record in an undo log. */
  207. trx_undo_rec_t*
  208. trx_undo_get_next_rec(
  209. /*==================*/
  210. /* out: undo log record, the page s-latched,
  211. NULL if none */
  212. trx_undo_rec_t* rec, /* in: undo record */
  213. ulint page_no,/* in: undo log header page number */
  214. ulint offset, /* in: undo log header offset on page */
  215. mtr_t* mtr) /* in: mtr */
  216. {
  217. trx_undo_rec_t* next_rec;
  218. next_rec = trx_undo_page_get_next_rec(rec, page_no, offset);
  219. if (next_rec) {
  220. return(next_rec);
  221. }
  222. return(trx_undo_get_next_rec_from_next_page(buf_frame_align(rec),
  223. page_no, offset,
  224. RW_S_LATCH, mtr));
  225. }
  226. /***************************************************************************
  227. Gets the first record in an undo log. */
  228. trx_undo_rec_t*
  229. trx_undo_get_first_rec(
  230. /*===================*/
  231. /* out: undo log record, the page latched, NULL if
  232. none */
  233. ulint space, /* in: undo log header space */
  234. ulint page_no,/* in: undo log header page number */
  235. ulint offset, /* in: undo log header offset on page */
  236. ulint mode, /* in: latching mode: RW_S_LATCH or RW_X_LATCH */
  237. mtr_t* mtr) /* in: mtr */
  238. {
  239. page_t* undo_page;
  240. trx_undo_rec_t* rec;
  241. if (mode == RW_S_LATCH) {
  242. undo_page = trx_undo_page_get_s_latched(space, page_no, mtr);
  243. } else {
  244. undo_page = trx_undo_page_get(space, page_no, mtr);
  245. }
  246. rec = trx_undo_page_get_first_rec(undo_page, page_no, offset);
  247. if (rec) {
  248. return(rec);
  249. }
  250. return(trx_undo_get_next_rec_from_next_page(undo_page, page_no, offset,
  251. mode, mtr));
  252. }
  253. /*============== UNDO LOG FILE COPY CREATION AND FREEING ==================*/
  254. /**************************************************************************
  255. Writes the mtr log entry of an undo log page initialization. */
  256. UNIV_INLINE
  257. void
  258. trx_undo_page_init_log(
  259. /*====================*/
  260. page_t* undo_page, /* in: undo log page */
  261. ulint type, /* in: undo log type */
  262. mtr_t* mtr) /* in: mtr */
  263. {
  264. mlog_write_initial_log_record(undo_page, MLOG_UNDO_INIT, mtr);
  265. mlog_catenate_ulint_compressed(mtr, type);
  266. }
  267. /***************************************************************
  268. Parses the redo log entry of an undo log page initialization. */
  269. byte*
  270. trx_undo_parse_page_init(
  271. /*======================*/
  272. /* out: end of log record or NULL */
  273. byte* ptr, /* in: buffer */
  274. byte* end_ptr,/* in: buffer end */
  275. page_t* page, /* in: page or NULL */
  276. mtr_t* mtr) /* in: mtr or NULL */
  277. {
  278. ulint type;
  279. ptr = mach_parse_compressed(ptr, end_ptr, &type);
  280. if (ptr == NULL) {
  281. return(NULL);
  282. }
  283. if (page) {
  284. trx_undo_page_init(page, type, mtr);
  285. }
  286. return(ptr);
  287. }
  288. /************************************************************************
  289. Initializes the fields in an undo log segment page. */
  290. static
  291. void
  292. trx_undo_page_init(
  293. /*================*/
  294. page_t* undo_page, /* in: undo log segment page */
  295. ulint type, /* in: undo log segment type */
  296. mtr_t* mtr) /* in: mtr */
  297. {
  298. trx_upagef_t* page_hdr;
  299. page_hdr = undo_page + TRX_UNDO_PAGE_HDR;
  300.     
  301. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_TYPE, type);
  302. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_START,
  303. TRX_UNDO_PAGE_HDR + TRX_UNDO_PAGE_HDR_SIZE);
  304. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_FREE,
  305. TRX_UNDO_PAGE_HDR + TRX_UNDO_PAGE_HDR_SIZE);
  306. fil_page_set_type(undo_page, FIL_PAGE_UNDO_LOG);
  307. trx_undo_page_init_log(undo_page, type, mtr);
  308. }
  309. /*******************************************************************
  310. Creates a new undo log segment in file. */
  311. static
  312. page_t*
  313. trx_undo_seg_create(
  314. /*================*/
  315. /* out: segment header page x-latched, NULL
  316. if no space left */
  317. trx_rseg_t* rseg __attribute__((unused)),/* in: rollback segment */
  318. trx_rsegf_t* rseg_hdr,/* in: rollback segment header, page
  319. x-latched */
  320. ulint type, /* in: type of the segment: TRX_UNDO_INSERT or
  321. TRX_UNDO_UPDATE */
  322. ulint* id, /* out: slot index within rseg header */
  323. mtr_t* mtr) /* in: mtr */
  324. {
  325. ulint slot_no;
  326. ulint space;
  327. page_t*  undo_page;
  328. trx_upagef_t* page_hdr;
  329. trx_usegf_t* seg_hdr;
  330. ulint n_reserved;
  331. ibool success;
  332. ut_ad(mtr && id && rseg_hdr);
  333. #ifdef UNIV_SYNC_DEBUG
  334. ut_ad(mutex_own(&(rseg->mutex)));
  335. #endif /* UNIV_SYNC_DEBUG */
  336. /* fputs(type == TRX_UNDO_INSERT
  337. ? "Creating insert undo log segmentn"
  338. : "Creating update undo log segmentn", stderr); */
  339. slot_no = trx_rsegf_undo_find_free(rseg_hdr, mtr);
  340. if (slot_no == ULINT_UNDEFINED) {
  341.         ut_print_timestamp(stderr);
  342.         fprintf(stderr,
  343. "InnoDB: Warning: cannot find a free slot for an undo log. Do you have toon"
  344. "InnoDB: many active transactions running concurrently?n");
  345. return(NULL);
  346. }
  347. space = buf_frame_get_space_id(rseg_hdr);
  348. success = fsp_reserve_free_extents(&n_reserved, space, 2, FSP_UNDO,
  349. mtr);
  350. if (!success) {
  351. return(NULL);
  352. }
  353. /* Allocate a new file segment for the undo log */
  354. undo_page = fseg_create_general(space, 0,
  355. TRX_UNDO_SEG_HDR + TRX_UNDO_FSEG_HEADER, TRUE, mtr);
  356. fil_space_release_free_extents(space, n_reserved);
  357. if (undo_page == NULL) {
  358. /* No space left */
  359. return(NULL);
  360. }
  361. #ifdef UNIV_SYNC_DEBUG
  362. buf_page_dbg_add_level(undo_page, SYNC_TRX_UNDO_PAGE);
  363. #endif /* UNIV_SYNC_DEBUG */
  364. page_hdr = undo_page + TRX_UNDO_PAGE_HDR;
  365. seg_hdr = undo_page + TRX_UNDO_SEG_HDR;
  366. trx_undo_page_init(undo_page, type, mtr);
  367. mlog_write_ulint(page_hdr + TRX_UNDO_PAGE_FREE,
  368. TRX_UNDO_SEG_HDR + TRX_UNDO_SEG_HDR_SIZE,
  369. MLOG_2BYTES, mtr);
  370. mlog_write_ulint(seg_hdr + TRX_UNDO_LAST_LOG, 0, MLOG_2BYTES, mtr);
  371. flst_init(seg_hdr + TRX_UNDO_PAGE_LIST, mtr);
  372. flst_add_last(seg_hdr + TRX_UNDO_PAGE_LIST,
  373. page_hdr + TRX_UNDO_PAGE_NODE, mtr);
  374. trx_rsegf_set_nth_undo(rseg_hdr, slot_no,
  375. buf_frame_get_page_no(undo_page), mtr);
  376. *id = slot_no;
  377. return(undo_page);
  378. }
  379. /**************************************************************************
  380. Writes the mtr log entry of an undo log header initialization. */
  381. UNIV_INLINE
  382. void
  383. trx_undo_header_create_log(
  384. /*=======================*/
  385. page_t* undo_page, /* in: undo log header page */
  386. dulint trx_id, /* in: transaction id */
  387. mtr_t* mtr) /* in: mtr */
  388. {
  389. mlog_write_initial_log_record(undo_page, MLOG_UNDO_HDR_CREATE, mtr);
  390. mlog_catenate_dulint_compressed(mtr, trx_id);
  391. }
  392. /*******************************************************************
  393. Creates a new undo log header in file. */
  394. static
  395. ulint
  396. trx_undo_header_create(
  397. /*===================*/
  398. /* out: header byte offset on page */
  399. page_t* undo_page, /* in: undo log segment header page,
  400. x-latched; it is assumed that there is
  401. TRX_UNDO_LOG_HDR_SIZE bytes free space
  402. on it */
  403. dulint trx_id, /* in: transaction id */
  404. mtr_t* mtr) /* in: mtr */
  405. {
  406. trx_upagef_t* page_hdr;
  407. trx_usegf_t* seg_hdr;
  408. trx_ulogf_t* log_hdr;
  409. trx_ulogf_t* prev_log_hdr;
  410. ulint prev_log;
  411. ulint free;
  412. ulint new_free;
  413. ut_ad(mtr && undo_page);
  414. page_hdr = undo_page + TRX_UNDO_PAGE_HDR;
  415. seg_hdr = undo_page + TRX_UNDO_SEG_HDR;
  416. free = mach_read_from_2(page_hdr + TRX_UNDO_PAGE_FREE);
  417. log_hdr = undo_page + free;
  418. new_free = free + TRX_UNDO_LOG_HDR_SIZE;
  419. ut_ad(new_free <= UNIV_PAGE_SIZE);
  420. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_START, new_free);
  421. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_FREE, new_free);
  422. mach_write_to_2(seg_hdr + TRX_UNDO_STATE, TRX_UNDO_ACTIVE);
  423. prev_log = mach_read_from_2(seg_hdr + TRX_UNDO_LAST_LOG);
  424. if (prev_log != 0) {
  425. prev_log_hdr = undo_page + prev_log;
  426. mach_write_to_2(prev_log_hdr + TRX_UNDO_NEXT_LOG, free);
  427. }
  428. mach_write_to_2(seg_hdr + TRX_UNDO_LAST_LOG, free);
  429. log_hdr = undo_page + free;
  430. mach_write_to_2(log_hdr + TRX_UNDO_DEL_MARKS, TRUE);
  431. mach_write_to_8(log_hdr + TRX_UNDO_TRX_ID, trx_id);
  432. mach_write_to_2(log_hdr + TRX_UNDO_LOG_START, new_free);
  433. mach_write_to_2(log_hdr + TRX_UNDO_DICT_OPERATION, FALSE);
  434. mach_write_to_2(log_hdr + TRX_UNDO_NEXT_LOG, 0);
  435. mach_write_to_2(log_hdr + TRX_UNDO_PREV_LOG, prev_log);
  436. trx_undo_header_create_log(undo_page, trx_id, mtr);
  437. return(free);
  438. }
  439. /**************************************************************************
  440. Writes the mtr log entry of an undo log header reuse. */
  441. UNIV_INLINE
  442. void
  443. trx_undo_insert_header_reuse_log(
  444. /*=============================*/
  445. page_t* undo_page, /* in: undo log header page */
  446. dulint trx_id, /* in: transaction id */
  447. mtr_t* mtr) /* in: mtr */
  448. {
  449. mlog_write_initial_log_record(undo_page, MLOG_UNDO_HDR_REUSE, mtr);
  450. mlog_catenate_dulint_compressed(mtr, trx_id);
  451. }
  452. /***************************************************************
  453. Parses the redo log entry of an undo log page header create or reuse. */
  454. byte*
  455. trx_undo_parse_page_header(
  456. /*=======================*/
  457. /* out: end of log record or NULL */
  458. ulint type, /* in: MLOG_UNDO_HDR_CREATE or MLOG_UNDO_HDR_REUSE */
  459. byte* ptr, /* in: buffer */
  460. byte* end_ptr,/* in: buffer end */
  461. page_t* page, /* in: page or NULL */
  462. mtr_t* mtr) /* in: mtr or NULL */
  463. {
  464. dulint trx_id;
  465. ptr = mach_dulint_parse_compressed(ptr, end_ptr, &trx_id);
  466. if (ptr == NULL) {
  467. return(NULL);
  468. }
  469. if (page) {
  470. if (type == MLOG_UNDO_HDR_CREATE) {
  471. trx_undo_header_create(page, trx_id, mtr);
  472. } else {
  473. ut_ad(type == MLOG_UNDO_HDR_REUSE);
  474. trx_undo_insert_header_reuse(page, trx_id, mtr);
  475. }
  476. }
  477. return(ptr);
  478. }
  479. /*******************************************************************
  480. Initializes a cached insert undo log header page for new use. */
  481. static
  482. ulint
  483. trx_undo_insert_header_reuse(
  484. /*=========================*/
  485. /* out: undo log header byte offset on page */
  486. page_t* undo_page, /* in: insert undo log segment header page,
  487. x-latched */
  488. dulint trx_id, /* in: transaction id */
  489. mtr_t* mtr) /* in: mtr */
  490. {
  491. trx_upagef_t* page_hdr;
  492. trx_usegf_t* seg_hdr;
  493. trx_ulogf_t* log_hdr;
  494. ulint free;
  495. ulint new_free;
  496. ut_ad(mtr && undo_page);
  497. page_hdr = undo_page + TRX_UNDO_PAGE_HDR;
  498. seg_hdr = undo_page + TRX_UNDO_SEG_HDR;
  499. free = TRX_UNDO_SEG_HDR + TRX_UNDO_SEG_HDR_SIZE;
  500. log_hdr = undo_page + free;
  501. new_free = free + TRX_UNDO_LOG_HDR_SIZE;
  502. /* Insert undo data is not needed after commit: we may free all
  503. the space on the page */
  504. ut_a(mach_read_from_2(undo_page + TRX_UNDO_PAGE_HDR
  505. + TRX_UNDO_PAGE_TYPE)
  506. == TRX_UNDO_INSERT);
  507. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_START, new_free);
  508. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_FREE, new_free);
  509. mach_write_to_2(seg_hdr + TRX_UNDO_STATE, TRX_UNDO_ACTIVE);
  510. log_hdr = undo_page + free;
  511. mach_write_to_8(log_hdr + TRX_UNDO_TRX_ID, trx_id);
  512. mach_write_to_2(log_hdr + TRX_UNDO_LOG_START, new_free);
  513. mach_write_to_2(log_hdr + TRX_UNDO_DICT_OPERATION, FALSE);
  514. trx_undo_insert_header_reuse_log(undo_page, trx_id, mtr);
  515. return(free);
  516. }
  517. /**************************************************************************
  518. Writes the redo log entry of an update undo log header discard. */
  519. UNIV_INLINE
  520. void
  521. trx_undo_discard_latest_log(
  522. /*========================*/
  523. page_t* undo_page, /* in: undo log header page */
  524. mtr_t* mtr) /* in: mtr */
  525. {
  526. mlog_write_initial_log_record(undo_page, MLOG_UNDO_HDR_DISCARD, mtr);
  527. }
  528. /***************************************************************
  529. Parses the redo log entry of an undo log page header discard. */
  530. byte*
  531. trx_undo_parse_discard_latest(
  532. /*==========================*/
  533. /* out: end of log record or NULL */
  534. byte* ptr, /* in: buffer */
  535. byte* end_ptr __attribute__((unused)), /* in: buffer end */
  536. page_t* page, /* in: page or NULL */
  537. mtr_t* mtr) /* in: mtr or NULL */
  538. {
  539. ut_ad(end_ptr);
  540. if (page) {
  541. trx_undo_discard_latest_update_undo(page, mtr);
  542. }
  543. return(ptr);
  544. }
  545. /**************************************************************************
  546. If an update undo log can be discarded immediately, this function frees the
  547. space, resetting the page to the proper state for caching. */
  548. static
  549. void
  550. trx_undo_discard_latest_update_undo(
  551. /*================================*/
  552. page_t* undo_page, /* in: header page of an undo log of size 1 */
  553. mtr_t* mtr) /* in: mtr */
  554. {
  555. trx_usegf_t* seg_hdr;
  556. trx_upagef_t* page_hdr;
  557. trx_ulogf_t* log_hdr;
  558. trx_ulogf_t* prev_log_hdr;
  559. ulint free;
  560. ulint prev_hdr_offset;
  561. seg_hdr = undo_page + TRX_UNDO_SEG_HDR;
  562. page_hdr = undo_page + TRX_UNDO_PAGE_HDR;
  563. free = mach_read_from_2(seg_hdr + TRX_UNDO_LAST_LOG);
  564. log_hdr = undo_page + free;
  565. prev_hdr_offset = mach_read_from_2(log_hdr + TRX_UNDO_PREV_LOG);
  566. if (prev_hdr_offset != 0) {
  567. prev_log_hdr = undo_page + prev_hdr_offset;
  568. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_START,
  569. mach_read_from_2(prev_log_hdr + TRX_UNDO_LOG_START));
  570. mach_write_to_2(prev_log_hdr + TRX_UNDO_NEXT_LOG, 0);
  571. }
  572. mach_write_to_2(page_hdr + TRX_UNDO_PAGE_FREE, free);
  573. mach_write_to_2(seg_hdr + TRX_UNDO_STATE, TRX_UNDO_CACHED);
  574. mach_write_to_2(seg_hdr + TRX_UNDO_LAST_LOG, prev_hdr_offset);
  575. trx_undo_discard_latest_log(undo_page, mtr);
  576. }
  577. /************************************************************************
  578. Tries to add a page to the undo log segment where the undo log is placed. */
  579. ulint
  580. trx_undo_add_page(
  581. /*==============*/
  582. /* out: page number if success, else
  583. FIL_NULL */
  584. trx_t* trx, /* in: transaction */
  585. trx_undo_t* undo, /* in: undo log memory object */
  586. mtr_t* mtr) /* in: mtr which does not have a latch to any
  587. undo log page; the caller must have reserved
  588. the rollback segment mutex */
  589. {
  590. page_t* header_page;
  591. page_t* new_page;
  592. trx_rseg_t* rseg;
  593. ulint page_no;
  594. ulint n_reserved;
  595. ibool success;
  596. #ifdef UNIV_SYNC_DEBUG
  597. ut_ad(mutex_own(&(trx->undo_mutex)));
  598. ut_ad(!mutex_own(&kernel_mutex));
  599. ut_ad(mutex_own(&(trx->rseg->mutex)));
  600. #endif /* UNIV_SYNC_DEBUG */
  601. rseg = trx->rseg;
  602. if (rseg->curr_size == rseg->max_size) {
  603. return(FIL_NULL);
  604. }
  605. header_page = trx_undo_page_get(undo->space, undo->hdr_page_no, mtr);
  606. success = fsp_reserve_free_extents(&n_reserved, undo->space, 1,
  607. FSP_UNDO, mtr);
  608. if (!success) {
  609. return(FIL_NULL);
  610. }
  611. page_no = fseg_alloc_free_page_general(header_page + TRX_UNDO_SEG_HDR
  612. + TRX_UNDO_FSEG_HEADER,
  613. undo->top_page_no + 1, FSP_UP,
  614. TRUE, mtr);
  615. fil_space_release_free_extents(undo->space, n_reserved);
  616. if (page_no == FIL_NULL) {
  617. /* No space left */
  618. return(FIL_NULL);
  619. }
  620. undo->last_page_no = page_no;
  621. new_page = trx_undo_page_get(undo->space, page_no, mtr);
  622. trx_undo_page_init(new_page, undo->type, mtr);
  623. flst_add_last(header_page + TRX_UNDO_SEG_HDR + TRX_UNDO_PAGE_LIST,
  624.       new_page + TRX_UNDO_PAGE_HDR + TRX_UNDO_PAGE_NODE, mtr);
  625. undo->size++;
  626. rseg->curr_size++;
  627. return(page_no);
  628. }
  629. /************************************************************************
  630. Frees an undo log page that is not the header page. */
  631. static
  632. ulint
  633. trx_undo_free_page(
  634. /*===============*/
  635. /* out: last page number in remaining log */
  636. trx_rseg_t* rseg, /* in: rollback segment */
  637. ibool in_history, /* in: TRUE if the undo log is in the history
  638. list */
  639. ulint space, /* in: space */
  640. ulint hdr_page_no, /* in: header page number */
  641. ulint hdr_offset, /* in: header offset */
  642. ulint page_no, /* in: page number to free: must not be the
  643. header page */
  644. mtr_t* mtr) /* in: mtr which does not have a latch to any
  645. undo log page; the caller must have reserved
  646. the rollback segment mutex */
  647. {
  648. page_t* header_page;
  649. page_t* undo_page;
  650. fil_addr_t last_addr;
  651. trx_rsegf_t* rseg_header;
  652. ulint hist_size;
  653. UT_NOT_USED(hdr_offset);
  654. ut_a(hdr_page_no != page_no);
  655. #ifdef UNIV_SYNC_DEBUG
  656. ut_ad(!mutex_own(&kernel_mutex));
  657. ut_ad(mutex_own(&(rseg->mutex)));
  658. #endif /* UNIV_SYNC_DEBUG */
  659. undo_page = trx_undo_page_get(space, page_no, mtr);
  660. header_page = trx_undo_page_get(space, hdr_page_no, mtr);
  661. flst_remove(header_page + TRX_UNDO_SEG_HDR + TRX_UNDO_PAGE_LIST,
  662.     undo_page + TRX_UNDO_PAGE_HDR + TRX_UNDO_PAGE_NODE, mtr);
  663. fseg_free_page(header_page + TRX_UNDO_SEG_HDR + TRX_UNDO_FSEG_HEADER,
  664. space, page_no, mtr);
  665. last_addr = flst_get_last(header_page + TRX_UNDO_SEG_HDR
  666. + TRX_UNDO_PAGE_LIST, mtr);
  667. rseg->curr_size--;
  668. if (in_history) {
  669. rseg_header = trx_rsegf_get(space, rseg->page_no, mtr);
  670. hist_size = mtr_read_ulint(rseg_header + TRX_RSEG_HISTORY_SIZE,
  671. MLOG_4BYTES, mtr);
  672. ut_ad(hist_size > 0);
  673. mlog_write_ulint(rseg_header + TRX_RSEG_HISTORY_SIZE,
  674. hist_size - 1, MLOG_4BYTES, mtr);
  675. }
  676. return(last_addr.page);
  677. }
  678. /************************************************************************
  679. Frees an undo log page when there is also the memory object for the undo
  680. log. */
  681. static
  682. void
  683. trx_undo_free_page_in_rollback(
  684. /*===========================*/
  685. trx_t* trx __attribute__((unused)), /* in: transaction */
  686. trx_undo_t* undo, /* in: undo log memory copy */
  687. ulint page_no,/* in: page number to free: must not be the
  688. header page */
  689. mtr_t* mtr) /* in: mtr which does not have a latch to any
  690. undo log page; the caller must have reserved
  691. the rollback segment mutex */
  692. {
  693. ulint last_page_no;
  694. ut_ad(undo->hdr_page_no != page_no);
  695. #ifdef UNIV_SYNC_DEBUG
  696. ut_ad(mutex_own(&(trx->undo_mutex)));
  697. #endif /* UNIV_SYNC_DEBUG */
  698. last_page_no = trx_undo_free_page(undo->rseg, FALSE, undo->space,
  699. undo->hdr_page_no, undo->hdr_offset,
  700. page_no, mtr);
  701. undo->last_page_no = last_page_no;
  702. undo->size--;
  703. }
  704. /************************************************************************
  705. Empties an undo log header page of undo records for that undo log. Other
  706. undo logs may still have records on that page, if it is an update undo log. */
  707. static
  708. void
  709. trx_undo_empty_header_page(
  710. /*=======================*/
  711. ulint space, /* in: space */
  712. ulint hdr_page_no, /* in: header page number */
  713. ulint hdr_offset, /* in: header offset */
  714. mtr_t* mtr) /* in: mtr */
  715. {
  716. page_t* header_page;
  717. trx_ulogf_t* log_hdr;
  718. ulint end;
  719. header_page = trx_undo_page_get(space, hdr_page_no, mtr);
  720. log_hdr = header_page + hdr_offset;
  721. end = trx_undo_page_get_end(header_page, hdr_page_no, hdr_offset);
  722. mlog_write_ulint(log_hdr + TRX_UNDO_LOG_START, end, MLOG_2BYTES, mtr);
  723. }
  724. /***************************************************************************
  725. Truncates an undo log from the end. This function is used during a rollback
  726. to free space from an undo log. */
  727. void
  728. trx_undo_truncate_end(
  729. /*==================*/
  730. trx_t* trx, /* in: transaction whose undo log it is */
  731. trx_undo_t* undo, /* in: undo log */
  732. dulint limit) /* in: all undo records with undo number
  733. >= this value should be truncated */
  734. {
  735. page_t* undo_page;
  736. ulint last_page_no;
  737. trx_undo_rec_t* rec;
  738. trx_undo_rec_t* trunc_here;
  739. trx_rseg_t* rseg;
  740. mtr_t mtr;
  741. #ifdef UNIV_SYNC_DEBUG
  742. ut_ad(mutex_own(&(trx->undo_mutex)));
  743. ut_ad(mutex_own(&(trx->rseg->mutex)));
  744. #endif /* UNIV_SYNC_DEBUG */
  745. rseg = trx->rseg;
  746.   for (;;) {
  747. mtr_start(&mtr);
  748. trunc_here = NULL;
  749. last_page_no = undo->last_page_no;
  750. undo_page = trx_undo_page_get(undo->space, last_page_no, &mtr);
  751. rec = trx_undo_page_get_last_rec(undo_page, undo->hdr_page_no,
  752. undo->hdr_offset);
  753. for (;;) {
  754. if (rec == NULL) {
  755. if (last_page_no == undo->hdr_page_no) {
  756. goto function_exit;
  757. }
  758. trx_undo_free_page_in_rollback(trx, undo,
  759. last_page_no, &mtr);
  760. break;
  761. }
  762. if (ut_dulint_cmp(trx_undo_rec_get_undo_no(rec), limit)
  763.     >= 0) {
  764.      /* Truncate at least this record off, maybe
  765.      more */
  766.      trunc_here = rec;
  767. } else {
  768. goto function_exit;
  769. }
  770. rec = trx_undo_page_get_prev_rec(rec,
  771. undo->hdr_page_no,
  772. undo->hdr_offset);
  773. }
  774. mtr_commit(&mtr);
  775. }
  776. function_exit:
  777. if (trunc_here) {
  778. mlog_write_ulint(undo_page + TRX_UNDO_PAGE_HDR
  779. + TRX_UNDO_PAGE_FREE,
  780. trunc_here - undo_page, MLOG_2BYTES, &mtr);
  781. }
  782. mtr_commit(&mtr);
  783. }
  784. /***************************************************************************
  785. Truncates an undo log from the start. This function is used during a purge
  786. operation. */
  787. void
  788. trx_undo_truncate_start(
  789. /*====================*/
  790. trx_rseg_t* rseg, /* in: rollback segment */
  791. ulint space, /* in: space id of the log */
  792. ulint hdr_page_no, /* in: header page number */
  793. ulint hdr_offset, /* in: header offset on the page */
  794. dulint limit) /* in: all undo pages with undo numbers <
  795. this value should be truncated; NOTE that
  796. the function only frees whole pages; the
  797. header page is not freed, but emptied, if
  798. all the records there are < limit */
  799. {
  800. page_t*  undo_page;
  801. trx_undo_rec_t* rec;
  802. trx_undo_rec_t* last_rec;
  803. ulint page_no;
  804. mtr_t mtr;
  805. #ifdef UNIV_SYNC_DEBUG
  806. ut_ad(mutex_own(&(rseg->mutex)));
  807. #endif /* UNIV_SYNC_DEBUG */
  808. if (0 == ut_dulint_cmp(limit, ut_dulint_zero)) {
  809. return;
  810. }
  811. loop:
  812. mtr_start(&mtr);
  813. rec = trx_undo_get_first_rec(space, hdr_page_no, hdr_offset,
  814. RW_X_LATCH, &mtr);
  815. if (rec == NULL) {
  816. /* Already empty */
  817. mtr_commit(&mtr);
  818. return;
  819. }
  820. undo_page = buf_frame_align(rec);
  821. last_rec = trx_undo_page_get_last_rec(undo_page, hdr_page_no,
  822. hdr_offset);
  823. if (ut_dulint_cmp(trx_undo_rec_get_undo_no(last_rec), limit) >= 0) {
  824. mtr_commit(&mtr);
  825. return;
  826. }
  827. page_no = buf_frame_get_page_no(undo_page);
  828. if (page_no == hdr_page_no) {
  829. trx_undo_empty_header_page(space, hdr_page_no, hdr_offset,
  830. &mtr);
  831. } else {
  832. trx_undo_free_page(rseg, TRUE, space, hdr_page_no, hdr_offset,
  833. page_no, &mtr);
  834. }
  835. mtr_commit(&mtr);
  836. goto loop;
  837. }
  838. /**************************************************************************
  839. Frees an undo log segment which is not in the history list. */
  840. static
  841. void
  842. trx_undo_seg_free(
  843. /*==============*/
  844. trx_undo_t* undo) /* in: undo log */
  845. {
  846. trx_rseg_t* rseg;
  847. fseg_header_t* file_seg;
  848. trx_rsegf_t* rseg_header;
  849. trx_usegf_t* seg_header;
  850. ibool finished;
  851. mtr_t mtr;
  852. finished = FALSE;
  853. rseg = undo->rseg;
  854. while (!finished) {
  855. mtr_start(&mtr);
  856. #ifdef UNIV_SYNC_DEBUG
  857. ut_ad(!mutex_own(&kernel_mutex));
  858. #endif /* UNIV_SYNC_DEBUG */
  859. mutex_enter(&(rseg->mutex));
  860. seg_header = trx_undo_page_get(undo->space, undo->hdr_page_no,
  861. &mtr)
  862.      + TRX_UNDO_SEG_HDR;
  863. file_seg = seg_header + TRX_UNDO_FSEG_HEADER;
  864. finished = fseg_free_step(file_seg, &mtr);
  865. if (finished) {
  866. /* Update the rseg header */
  867. rseg_header = trx_rsegf_get(rseg->space, rseg->page_no,
  868. &mtr);
  869. trx_rsegf_set_nth_undo(rseg_header, undo->id, FIL_NULL,
  870. &mtr);
  871. }
  872. mutex_exit(&(rseg->mutex));
  873. mtr_commit(&mtr);
  874. }
  875. }
  876. /*========== UNDO LOG MEMORY COPY INITIALIZATION =====================*/
  877. /************************************************************************
  878. Creates and initializes an undo log memory object according to the values
  879. in the header in file, when the database is started. The memory object is
  880. inserted in the appropriate list of rseg. */
  881. static
  882. trx_undo_t*
  883. trx_undo_mem_create_at_db_start(
  884. /*============================*/
  885. /* out, own: the undo log memory object */
  886. trx_rseg_t* rseg, /* in: rollback segment memory object */
  887. ulint id, /* in: slot index within rseg */
  888. ulint page_no,/* in: undo log segment page number */
  889. mtr_t* mtr) /* in: mtr */
  890. {
  891. page_t* undo_page;
  892. trx_upagef_t* page_header;
  893. trx_usegf_t* seg_header;
  894. trx_ulogf_t* undo_header;
  895. trx_undo_t* undo;
  896. ulint type;
  897. ulint state;
  898. dulint trx_id;
  899. ulint offset;
  900. fil_addr_t last_addr;
  901. page_t* last_page;
  902. trx_undo_rec_t* rec;
  903. if (id >= TRX_RSEG_N_SLOTS) {
  904. fprintf(stderr,
  905. "InnoDB: Error: undo->id is %lun", (ulong) id);
  906. ut_error;
  907. }
  908. undo_page = trx_undo_page_get(rseg->space, page_no, mtr);
  909. page_header = undo_page + TRX_UNDO_PAGE_HDR;
  910. type = mtr_read_ulint(page_header + TRX_UNDO_PAGE_TYPE, MLOG_2BYTES,
  911. mtr);
  912. seg_header = undo_page + TRX_UNDO_SEG_HDR;
  913. state = mach_read_from_2(seg_header + TRX_UNDO_STATE); 
  914. offset = mach_read_from_2(seg_header + TRX_UNDO_LAST_LOG);
  915. undo_header = undo_page + offset;
  916. trx_id = mtr_read_dulint(undo_header + TRX_UNDO_TRX_ID, mtr);
  917. mutex_enter(&(rseg->mutex));
  918. undo = trx_undo_mem_create(rseg, id, type, trx_id, page_no, offset);
  919. mutex_exit(&(rseg->mutex));
  920. undo->dict_operation = mtr_read_ulint(
  921. undo_header + TRX_UNDO_DICT_OPERATION,
  922. MLOG_2BYTES, mtr);
  923. undo->table_id = mtr_read_dulint(undo_header + TRX_UNDO_TABLE_ID, mtr);
  924. undo->state = state;
  925. undo->size = flst_get_len(seg_header + TRX_UNDO_PAGE_LIST, mtr);
  926. /* If the log segment is being freed, the page list is inconsistent! */
  927. if (state == TRX_UNDO_TO_FREE) {
  928. goto add_to_list;
  929. }
  930. last_addr = flst_get_last(seg_header + TRX_UNDO_PAGE_LIST, mtr);
  931. undo->last_page_no = last_addr.page;
  932. undo->top_page_no = last_addr.page;
  933. last_page = trx_undo_page_get(rseg->space, undo->last_page_no, mtr);
  934. rec = trx_undo_page_get_last_rec(last_page, page_no, offset);
  935. if (rec == NULL) {
  936. undo->empty = TRUE;
  937. } else {
  938. undo->empty = FALSE;
  939. undo->top_offset = rec - last_page;
  940. undo->top_undo_no = trx_undo_rec_get_undo_no(rec);
  941. }
  942. add_to_list:
  943. if (type == TRX_UNDO_INSERT) {
  944. if (state != TRX_UNDO_CACHED) {
  945. UT_LIST_ADD_LAST(undo_list, rseg->insert_undo_list,
  946. undo);
  947. } else {
  948. UT_LIST_ADD_LAST(undo_list, rseg->insert_undo_cached,
  949. undo);
  950. }
  951. } else {
  952. ut_ad(type == TRX_UNDO_UPDATE);
  953. if (state != TRX_UNDO_CACHED) {
  954. UT_LIST_ADD_LAST(undo_list, rseg->update_undo_list,
  955. undo);
  956. } else {
  957. UT_LIST_ADD_LAST(undo_list, rseg->update_undo_cached,
  958. undo);
  959. }
  960. }
  961. return(undo);
  962. }
  963. /************************************************************************
  964. Initializes the undo log lists for a rollback segment memory copy. This
  965. function is only called when the database is started or a new rollback
  966. segment is created. */
  967. ulint
  968. trx_undo_lists_init(
  969. /*================*/
  970. /* out: the combined size of undo log segments
  971. in pages */
  972. trx_rseg_t* rseg) /* in: rollback segment memory object */
  973. {
  974. ulint page_no;
  975. trx_undo_t* undo;
  976. ulint size = 0;
  977. trx_rsegf_t* rseg_header;
  978. ulint i;
  979. mtr_t mtr;
  980. UT_LIST_INIT(rseg->update_undo_list);
  981. UT_LIST_INIT(rseg->update_undo_cached);
  982. UT_LIST_INIT(rseg->insert_undo_list);
  983. UT_LIST_INIT(rseg->insert_undo_cached);
  984. mtr_start(&mtr);
  985. rseg_header = trx_rsegf_get_new(rseg->space, rseg->page_no, &mtr);
  986. for (i = 0; i < TRX_RSEG_N_SLOTS; i++) {
  987. page_no = trx_rsegf_get_nth_undo(rseg_header, i, &mtr);
  988. /* In forced recovery: try to avoid operations which look
  989. at database pages; undo logs are rapidly changing data, and
  990. the probability that they are in an inconsistent state is
  991. high */
  992. if (page_no != FIL_NULL
  993.     && srv_force_recovery < SRV_FORCE_NO_UNDO_LOG_SCAN) {
  994. undo = trx_undo_mem_create_at_db_start(rseg, i,
  995. page_no, &mtr);
  996. size += undo->size;
  997. mtr_commit(&mtr);
  998. mtr_start(&mtr);
  999. rseg_header = trx_rsegf_get(rseg->space,
  1000. rseg->page_no, &mtr);
  1001. }
  1002. }
  1003. mtr_commit(&mtr);
  1004. return(size);
  1005. }
  1006. /************************************************************************
  1007. Creates and initializes an undo log memory object. */
  1008. static
  1009. trx_undo_t*
  1010. trx_undo_mem_create(
  1011. /*================*/
  1012. /* out, own: the undo log memory object */
  1013. trx_rseg_t* rseg, /* in: rollback segment memory object */
  1014. ulint id, /* in: slot index within rseg */
  1015. ulint type, /* in: type of the log: TRX_UNDO_INSERT or
  1016. TRX_UNDO_UPDATE */
  1017. dulint trx_id, /* in: id of the trx for which the undo log
  1018. is created */
  1019. ulint page_no,/* in: undo log header page number */
  1020. ulint offset) /* in: undo log header byte offset on page */
  1021. {
  1022. trx_undo_t* undo;
  1023. #ifdef UNIV_SYNC_DEBUG
  1024. ut_ad(mutex_own(&(rseg->mutex)));
  1025. #endif /* UNIV_SYNC_DEBUG */
  1026. if (id >= TRX_RSEG_N_SLOTS) {
  1027. fprintf(stderr,
  1028. "InnoDB: Error: undo->id is %lun", (ulong) id);
  1029. ut_error;
  1030. }
  1031. undo = mem_alloc(sizeof(trx_undo_t));
  1032. undo->id = id;
  1033. undo->type = type;
  1034. undo->state = TRX_UNDO_ACTIVE;
  1035. undo->del_marks = FALSE;
  1036. undo->trx_id = trx_id;
  1037. undo->dict_operation = FALSE;
  1038. undo->rseg = rseg;
  1039. undo->space = rseg->space;
  1040. undo->hdr_page_no = page_no;
  1041. undo->hdr_offset = offset;
  1042. undo->last_page_no = page_no;
  1043. undo->size = 1;
  1044. undo->empty = TRUE;
  1045. undo->top_page_no = page_no;
  1046. undo->guess_page = NULL;
  1047. return(undo);
  1048. }
  1049. /************************************************************************
  1050. Initializes a cached undo log object for new use. */
  1051. static
  1052. void
  1053. trx_undo_mem_init_for_reuse(
  1054. /*========================*/
  1055. trx_undo_t* undo, /* in: undo log to init */
  1056. dulint trx_id, /* in: id of the trx for which the undo log
  1057. is created */
  1058. ulint offset) /* in: undo log header byte offset on page */
  1059. {
  1060. #ifdef UNIV_SYNC_DEBUG
  1061. ut_ad(mutex_own(&((undo->rseg)->mutex)));
  1062. #endif /* UNIV_SYNC_DEBUG */
  1063.   if (undo->id >= TRX_RSEG_N_SLOTS) {
  1064. fprintf(stderr, "InnoDB: Error: undo->id is %lun",
  1065. (ulong) undo->id);
  1066. mem_analyze_corruption((byte*)undo);
  1067. ut_error;
  1068. }
  1069. undo->state = TRX_UNDO_ACTIVE;
  1070. undo->del_marks = FALSE;
  1071. undo->trx_id = trx_id;
  1072. undo->dict_operation = FALSE;
  1073. undo->hdr_offset = offset;
  1074. undo->empty = TRUE;
  1075. }
  1076. /************************************************************************
  1077. Frees an undo log memory copy. */
  1078. static
  1079. void
  1080. trx_undo_mem_free(
  1081. /*==============*/
  1082. trx_undo_t* undo) /* in: the undo object to be freed */
  1083. {
  1084. if (undo->id >= TRX_RSEG_N_SLOTS) {
  1085. fprintf(stderr,
  1086. "InnoDB: Error: undo->id is %lun", (ulong) undo->id);
  1087. ut_error;
  1088. }
  1089. mem_free(undo);
  1090. }
  1091. /**************************************************************************
  1092. Creates a new undo log. */
  1093. static
  1094. trx_undo_t*
  1095. trx_undo_create(
  1096. /*============*/
  1097. /* out: undo log object, NULL if did not
  1098. succeed: out of space */
  1099. trx_rseg_t* rseg, /* in: rollback segment memory copy */
  1100. ulint type, /* in: type of the log: TRX_UNDO_INSERT or
  1101. TRX_UNDO_UPDATE */
  1102. dulint trx_id, /* in: id of the trx for which the undo log
  1103. is created */ 
  1104. mtr_t* mtr) /* in: mtr */
  1105. {
  1106. trx_rsegf_t* rseg_header;
  1107. ulint page_no;
  1108. ulint offset;
  1109. ulint id;
  1110. trx_undo_t* undo;
  1111. page_t* undo_page;
  1112. #ifdef UNIV_SYNC_DEBUG
  1113. ut_ad(mutex_own(&(rseg->mutex)));
  1114. #endif /* UNIV_SYNC_DEBUG */
  1115. if (rseg->curr_size == rseg->max_size) {
  1116. return(NULL);
  1117. }
  1118. rseg->curr_size++;
  1119. rseg_header = trx_rsegf_get(rseg->space, rseg->page_no, mtr);
  1120. undo_page = trx_undo_seg_create(rseg, rseg_header, type, &id, mtr);
  1121. if (undo_page == NULL) {
  1122. /* Did not succeed */
  1123. rseg->curr_size--;
  1124. return(NULL);
  1125. }
  1126. page_no = buf_frame_get_page_no(undo_page);
  1127. offset = trx_undo_header_create(undo_page, trx_id, mtr);
  1128. undo = trx_undo_mem_create(rseg, id, type, trx_id, page_no, offset);
  1129. return(undo);
  1130. }
  1131. /*================ UNDO LOG ASSIGNMENT AND CLEANUP =====================*/
  1132. /************************************************************************
  1133. Reuses a cached undo log. */
  1134. static
  1135. trx_undo_t*
  1136. trx_undo_reuse_cached(
  1137. /*==================*/
  1138. /* out: the undo log memory object, NULL if
  1139. none cached */
  1140. trx_rseg_t* rseg, /* in: rollback segment memory object */
  1141. ulint type, /* in: type of the log: TRX_UNDO_INSERT or
  1142. TRX_UNDO_UPDATE */
  1143. dulint trx_id, /* in: id of the trx for which the undo log
  1144. is used */
  1145. mtr_t* mtr) /* in: mtr */
  1146. {
  1147. trx_undo_t* undo;
  1148. page_t* undo_page;
  1149. ulint offset;
  1150. #ifdef UNIV_SYNC_DEBUG
  1151. ut_ad(mutex_own(&(rseg->mutex)));
  1152. #endif /* UNIV_SYNC_DEBUG */
  1153. if (type == TRX_UNDO_INSERT) {
  1154. undo = UT_LIST_GET_FIRST(rseg->insert_undo_cached);
  1155. if (undo == NULL) {
  1156. return(NULL);
  1157. }
  1158. UT_LIST_REMOVE(undo_list, rseg->insert_undo_cached, undo);
  1159. } else {
  1160. ut_ad(type == TRX_UNDO_UPDATE);
  1161. undo = UT_LIST_GET_FIRST(rseg->update_undo_cached);
  1162. if (undo == NULL) {
  1163. return(NULL);
  1164. }
  1165. UT_LIST_REMOVE(undo_list, rseg->update_undo_cached, undo);
  1166. }
  1167. ut_ad(undo->size == 1);
  1168. if (undo->id >= TRX_RSEG_N_SLOTS) {
  1169. fprintf(stderr, "InnoDB: Error: undo->id is %lun",
  1170. (ulong) undo->id);
  1171. mem_analyze_corruption((byte*)undo);
  1172. ut_error;
  1173. }
  1174. undo_page = trx_undo_page_get(undo->space, undo->hdr_page_no, mtr);
  1175. if (type == TRX_UNDO_INSERT) {
  1176. offset = trx_undo_insert_header_reuse(undo_page, trx_id, mtr);
  1177. } else {
  1178. ut_a(mach_read_from_2(undo_page + TRX_UNDO_PAGE_HDR
  1179. + TRX_UNDO_PAGE_TYPE)
  1180. == TRX_UNDO_UPDATE);
  1181. offset = trx_undo_header_create(undo_page, trx_id, mtr);
  1182. }
  1183. trx_undo_mem_init_for_reuse(undo, trx_id, offset);
  1184. return(undo);
  1185. }
  1186. /**************************************************************************
  1187. Marks an undo log header as a header of a data dictionary operation
  1188. transaction. */
  1189. static
  1190. void
  1191. trx_undo_mark_as_dict_operation(
  1192. /*============================*/
  1193. trx_t* trx, /* in: dict op transaction */
  1194. trx_undo_t* undo, /* in: assigned undo log */
  1195. mtr_t* mtr) /* in: mtr */
  1196. {
  1197. page_t* hdr_page;
  1198. ut_a(trx->dict_operation);
  1199. hdr_page = trx_undo_page_get(undo->space, undo->hdr_page_no, mtr);
  1200. mlog_write_ulint(hdr_page + undo->hdr_offset + TRX_UNDO_DICT_OPERATION,
  1201. trx->dict_operation, MLOG_2BYTES, mtr);
  1202. mlog_write_dulint(hdr_page + undo->hdr_offset + TRX_UNDO_TABLE_ID,
  1203. trx->table_id, mtr);
  1204. undo->dict_operation = trx->dict_operation;
  1205. undo->table_id = trx->table_id;
  1206. }
  1207. /**************************************************************************
  1208. Assigns an undo log for a transaction. A new undo log is created or a cached
  1209. undo log reused. */
  1210. trx_undo_t*
  1211. trx_undo_assign_undo(
  1212. /*=================*/
  1213. /* out: the undo log, NULL if did not succeed: out of
  1214. space */
  1215. trx_t* trx, /* in: transaction */
  1216. ulint type) /* in: TRX_UNDO_INSERT or TRX_UNDO_UPDATE */
  1217. {
  1218. trx_rseg_t* rseg;
  1219. trx_undo_t* undo;
  1220. mtr_t mtr;
  1221. ut_ad(trx);
  1222. ut_ad(trx->rseg);
  1223. rseg = trx->rseg;
  1224. #ifdef UNIV_SYNC_DEBUG
  1225. ut_ad(mutex_own(&(trx->undo_mutex)));
  1226. #endif /* UNIV_SYNC_DEBUG */
  1227. mtr_start(&mtr);
  1228. #ifdef UNIV_SYNC_DEBUG
  1229. ut_ad(!mutex_own(&kernel_mutex));
  1230. #endif /* UNIV_SYNC_DEBUG */
  1231. mutex_enter(&(rseg->mutex));
  1232. undo = trx_undo_reuse_cached(rseg, type, trx->id, &mtr);
  1233. if (undo == NULL) {
  1234. undo = trx_undo_create(rseg, type, trx->id, &mtr);
  1235. if (undo == NULL) {
  1236. /* Did not succeed */
  1237. mutex_exit(&(rseg->mutex));
  1238. mtr_commit(&mtr);
  1239. return(NULL);
  1240. }
  1241. }
  1242. if (type == TRX_UNDO_INSERT) {
  1243. UT_LIST_ADD_FIRST(undo_list, rseg->insert_undo_list, undo);
  1244. ut_ad(trx->insert_undo == NULL);
  1245. trx->insert_undo = undo;
  1246. } else {
  1247. UT_LIST_ADD_FIRST(undo_list, rseg->update_undo_list, undo);
  1248. ut_ad(trx->update_undo == NULL);
  1249. trx->update_undo = undo;
  1250. }
  1251. if (trx->dict_operation) {
  1252. trx_undo_mark_as_dict_operation(trx, undo, &mtr);
  1253. }
  1254. mutex_exit(&(rseg->mutex));
  1255. mtr_commit(&mtr);
  1256. return(undo);
  1257. }
  1258. /**********************************************************************
  1259. Sets the state of the undo log segment at a transaction finish. */
  1260. page_t*
  1261. trx_undo_set_state_at_finish(
  1262. /*=========================*/
  1263. /* out: undo log segment header page,
  1264. x-latched */
  1265. trx_t* trx __attribute__((unused)), /* in: transaction */
  1266. trx_undo_t* undo, /* in: undo log memory copy */
  1267. mtr_t* mtr) /* in: mtr */
  1268. {
  1269. trx_usegf_t* seg_hdr;
  1270. trx_upagef_t* page_hdr;
  1271. page_t* undo_page;
  1272. ulint state;
  1273. ut_ad(trx && undo && mtr);
  1274. if (undo->id >= TRX_RSEG_N_SLOTS) {
  1275. fprintf(stderr, "InnoDB: Error: undo->id is %lun",
  1276. (ulong) undo->id);
  1277. mem_analyze_corruption((byte*)undo);
  1278. ut_error;
  1279. }
  1280. undo_page = trx_undo_page_get(undo->space, undo->hdr_page_no, mtr);
  1281. seg_hdr = undo_page + TRX_UNDO_SEG_HDR;
  1282. page_hdr = undo_page + TRX_UNDO_PAGE_HDR;
  1283. if (undo->size == 1 && mach_read_from_2(page_hdr + TRX_UNDO_PAGE_FREE)
  1284. < TRX_UNDO_PAGE_REUSE_LIMIT) {
  1285. state = TRX_UNDO_CACHED;
  1286. } else if (undo->type == TRX_UNDO_INSERT) {
  1287. state = TRX_UNDO_TO_FREE;
  1288. } else {
  1289. state = TRX_UNDO_TO_PURGE;
  1290. }
  1291. undo->state = state;
  1292.    
  1293. mlog_write_ulint(seg_hdr + TRX_UNDO_STATE, state, MLOG_2BYTES, mtr);
  1294. return(undo_page);
  1295. }
  1296. /**************************************************************************
  1297. Adds the update undo log header as the first in the history list, and
  1298. frees the memory object, or puts it to the list of cached update undo log
  1299. segments. */
  1300. void
  1301. trx_undo_update_cleanup(
  1302. /*====================*/
  1303. trx_t* trx, /* in: trx owning the update undo log */
  1304. page_t* undo_page, /* in: update undo log header page,
  1305. x-latched */
  1306. mtr_t* mtr) /* in: mtr */
  1307. {
  1308. trx_rseg_t* rseg;
  1309. trx_undo_t* undo;
  1310. undo = trx->update_undo;
  1311. rseg = trx->rseg;
  1312. #ifdef UNIV_SYNC_DEBUG
  1313. ut_ad(mutex_own(&(rseg->mutex)));
  1314. #endif /* UNIV_SYNC_DEBUG */
  1315. trx_purge_add_update_undo_to_history(trx, undo_page, mtr);
  1316. UT_LIST_REMOVE(undo_list, rseg->update_undo_list, undo);
  1317. trx->update_undo = NULL;
  1318. if (undo->state == TRX_UNDO_CACHED) {
  1319. UT_LIST_ADD_FIRST(undo_list, rseg->update_undo_cached, undo);
  1320. } else {
  1321. ut_ad(undo->state == TRX_UNDO_TO_PURGE);
  1322. trx_undo_mem_free(undo);
  1323. }
  1324. }
  1325. /**********************************************************************
  1326. Frees or caches an insert undo log after a transaction commit or rollback.
  1327. Knowledge of inserts is not needed after a commit or rollback, therefore
  1328. the data can be discarded. */
  1329. void
  1330. trx_undo_insert_cleanup(
  1331. /*====================*/
  1332. trx_t* trx) /* in: transaction handle */
  1333. {
  1334. trx_undo_t* undo;
  1335. trx_rseg_t* rseg;
  1336. undo = trx->insert_undo;
  1337. ut_ad(undo);
  1338. rseg = trx->rseg;
  1339. mutex_enter(&(rseg->mutex));
  1340. UT_LIST_REMOVE(undo_list, rseg->insert_undo_list, undo);
  1341. trx->insert_undo = NULL;
  1342. if (undo->state == TRX_UNDO_CACHED) {
  1343. UT_LIST_ADD_FIRST(undo_list, rseg->insert_undo_cached, undo);
  1344. } else {
  1345. ut_ad(undo->state == TRX_UNDO_TO_FREE);
  1346. /* Delete first the undo log segment in the file */
  1347. mutex_exit(&(rseg->mutex));
  1348. trx_undo_seg_free(undo);
  1349. mutex_enter(&(rseg->mutex));
  1350. ut_ad(rseg->curr_size > undo->size);
  1351. rseg->curr_size -= undo->size;
  1352. trx_undo_mem_free(undo);
  1353. }
  1354. mutex_exit(&(rseg->mutex));
  1355. }