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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. Transaction system
  3. (c) 1996 Innobase Oy
  4. Created 3/26/1996 Heikki Tuuri
  5. *******************************************************/
  6. #include "trx0sys.h"
  7. #ifdef UNIV_NONINL
  8. #include "trx0sys.ic"
  9. #endif
  10. #include "fsp0fsp.h"
  11. #include "mtr0mtr.h"
  12. #include "trx0trx.h"
  13. #include "trx0rseg.h"
  14. #include "trx0undo.h"
  15. #include "srv0srv.h"
  16. #include "trx0purge.h"
  17. #include "log0log.h"
  18. #include "os0file.h"
  19. /* The transaction system */
  20. trx_sys_t* trx_sys  = NULL;
  21. trx_doublewrite_t* trx_doublewrite = NULL;
  22. /* The following is set to TRUE when we are upgrading from the old format data
  23. files to the new >= 4.1.x format multiple tablespaces format data files */
  24. ibool trx_doublewrite_must_reset_space_ids = FALSE;
  25. /* The following is TRUE when we are using the database in the new format,
  26. i.e., we have successfully upgraded, or have created a new database
  27. installation */
  28. ibool trx_sys_multiple_tablespace_format = FALSE;
  29. /* In a MySQL replication slave, in crash recovery we store the master log
  30. file name and position here. We have successfully got the updates to InnoDB
  31. up to this position. If .._pos is -1, it means no crash recovery was needed,
  32. or there was no master log position info inside InnoDB. */
  33. char  trx_sys_mysql_master_log_name[TRX_SYS_MYSQL_LOG_NAME_LEN];
  34. ib_longlong trx_sys_mysql_master_log_pos = -1;
  35. /* If this MySQL server uses binary logging, after InnoDB has been inited
  36. and if it has done a crash recovery, we store the binlog file name and position
  37. here. If .._pos is -1, it means there was no binlog position info inside
  38. InnoDB. */
  39. char  trx_sys_mysql_bin_log_name[TRX_SYS_MYSQL_LOG_NAME_LEN];
  40. ib_longlong trx_sys_mysql_bin_log_pos = -1;
  41. /********************************************************************
  42. Determines if a page number is located inside the doublewrite buffer. */
  43. ibool
  44. trx_doublewrite_page_inside(
  45. /*========================*/
  46. /* out: TRUE if the location is inside
  47. the two blocks of the doublewrite buffer */
  48. ulint page_no) /* in: page number */
  49. {
  50. if (trx_doublewrite == NULL) {
  51. return(FALSE);
  52. }
  53. if (page_no >= trx_doublewrite->block1
  54.     && page_no < trx_doublewrite->block1
  55. + TRX_SYS_DOUBLEWRITE_BLOCK_SIZE) {
  56. return(TRUE);
  57. }
  58. if (page_no >= trx_doublewrite->block2
  59.     && page_no < trx_doublewrite->block2
  60. + TRX_SYS_DOUBLEWRITE_BLOCK_SIZE) {
  61. return(TRUE);
  62. }
  63. return(FALSE);
  64. }
  65. /********************************************************************
  66. Creates or initialializes the doublewrite buffer at a database start. */
  67. static
  68. void
  69. trx_doublewrite_init(
  70. /*=================*/
  71. byte* doublewrite) /* in: pointer to the doublewrite buf
  72. header on trx sys page */
  73. {
  74. trx_doublewrite = mem_alloc(sizeof(trx_doublewrite_t));
  75. /* Since we now start to use the doublewrite buffer, no need to call
  76. fsync() after every write to a data file */
  77. #ifdef UNIV_DO_FLUSH
  78. os_do_not_call_flush_at_each_write = TRUE;
  79. #endif /* UNIV_DO_FLUSH */
  80. mutex_create(&(trx_doublewrite->mutex));
  81. mutex_set_level(&(trx_doublewrite->mutex), SYNC_DOUBLEWRITE);
  82. trx_doublewrite->first_free = 0;
  83. trx_doublewrite->block1 = mach_read_from_4(
  84. doublewrite
  85. + TRX_SYS_DOUBLEWRITE_BLOCK1);
  86. trx_doublewrite->block2 = mach_read_from_4(
  87. doublewrite
  88. + TRX_SYS_DOUBLEWRITE_BLOCK2);
  89. trx_doublewrite->write_buf_unaligned = 
  90. ut_malloc(
  91. (1 + 2 * TRX_SYS_DOUBLEWRITE_BLOCK_SIZE)
  92. * UNIV_PAGE_SIZE);
  93. trx_doublewrite->write_buf = ut_align(
  94. trx_doublewrite->write_buf_unaligned,
  95. UNIV_PAGE_SIZE);
  96. trx_doublewrite->buf_block_arr = mem_alloc(
  97. 2 * TRX_SYS_DOUBLEWRITE_BLOCK_SIZE
  98. * sizeof(void*));
  99. }
  100. /********************************************************************
  101. Marks the trx sys header when we have successfully upgraded to the >= 4.1.x
  102. multiple tablespace format. */
  103. void
  104. trx_sys_mark_upgraded_to_multiple_tablespaces(void)
  105. /*===============================================*/
  106. {
  107. page_t* page;
  108. byte* doublewrite;
  109. mtr_t mtr;
  110. /* We upgraded to 4.1.x and reset the space id fields in the
  111. doublewrite buffer. Let us mark to the trx_sys header that the upgrade
  112. has been done. */
  113. mtr_start(&mtr);
  114. page = buf_page_get(TRX_SYS_SPACE, TRX_SYS_PAGE_NO, RW_X_LATCH, &mtr);
  115. #ifdef UNIV_SYNC_DEBUG
  116. buf_page_dbg_add_level(page, SYNC_NO_ORDER_CHECK);
  117. #endif /* UNIV_SYNC_DEBUG */
  118. doublewrite = page + TRX_SYS_DOUBLEWRITE;
  119. mlog_write_ulint(doublewrite + TRX_SYS_DOUBLEWRITE_SPACE_ID_STORED,
  120. TRX_SYS_DOUBLEWRITE_SPACE_ID_STORED_N,
  121. MLOG_4BYTES, &mtr);
  122. mtr_commit(&mtr);
  123. /* Flush the modified pages to disk and make a checkpoint */
  124. log_make_checkpoint_at(ut_dulint_max, TRUE);
  125. trx_sys_multiple_tablespace_format = TRUE;
  126. }
  127. /********************************************************************
  128. Creates the doublewrite buffer to a new InnoDB installation. The header of the
  129. doublewrite buffer is placed on the trx system header page. */
  130. void
  131. trx_sys_create_doublewrite_buf(void)
  132. /*================================*/
  133. {
  134. page_t* page;
  135. page_t* page2;
  136. page_t* new_page;
  137. byte* doublewrite;
  138. byte* fseg_header;
  139. ulint page_no;
  140. ulint prev_page_no;
  141. ulint i;
  142. mtr_t mtr;
  143. if (trx_doublewrite) {
  144. /* Already inited */
  145. return;
  146. }
  147. start_again:
  148. mtr_start(&mtr);
  149. page = buf_page_get(TRX_SYS_SPACE, TRX_SYS_PAGE_NO, RW_X_LATCH, &mtr);
  150. #ifdef UNIV_SYNC_DEBUG
  151. buf_page_dbg_add_level(page, SYNC_NO_ORDER_CHECK);
  152. #endif /* UNIV_SYNC_DEBUG */
  153. doublewrite = page + TRX_SYS_DOUBLEWRITE;
  154. if (mach_read_from_4(doublewrite + TRX_SYS_DOUBLEWRITE_MAGIC)
  155. == TRX_SYS_DOUBLEWRITE_MAGIC_N) {
  156. /* The doublewrite buffer has already been created:
  157. just read in some numbers */
  158. trx_doublewrite_init(doublewrite);
  159. mtr_commit(&mtr);
  160. } else {
  161. fprintf(stderr,
  162. "InnoDB: Doublewrite buffer not found: creating newn");
  163. if (buf_pool_get_curr_size() <
  164. (2 * TRX_SYS_DOUBLEWRITE_BLOCK_SIZE
  165. + FSP_EXTENT_SIZE / 2 + 100)
  166. * UNIV_PAGE_SIZE) {
  167. fprintf(stderr,
  168. "InnoDB: Cannot create doublewrite buffer: you mustn"
  169. "InnoDB: increase your buffer pool size.n"
  170. "InnoDB: Cannot continue operation.n");
  171. exit(1);
  172. }
  173. page2 = fseg_create(TRX_SYS_SPACE, TRX_SYS_PAGE_NO,
  174. TRX_SYS_DOUBLEWRITE + TRX_SYS_DOUBLEWRITE_FSEG, &mtr);
  175. /* fseg_create acquires a second latch on the page,
  176. therefore we must declare it: */
  177. #ifdef UNIV_SYNC_DEBUG
  178. buf_page_dbg_add_level(page2, SYNC_NO_ORDER_CHECK);
  179. #endif /* UNIV_SYNC_DEBUG */
  180. if (page2 == NULL) {
  181. fprintf(stderr,
  182. "InnoDB: Cannot create doublewrite buffer: you mustn"
  183. "InnoDB: increase your tablespace size.n"
  184. "InnoDB: Cannot continue operation.n");
  185. /* We exit without committing the mtr to prevent
  186. its modifications to the database getting to disk */
  187. exit(1);
  188. }
  189. fseg_header = page + TRX_SYS_DOUBLEWRITE
  190. + TRX_SYS_DOUBLEWRITE_FSEG;
  191. prev_page_no = 0;
  192. for (i = 0; i < 2 * TRX_SYS_DOUBLEWRITE_BLOCK_SIZE
  193. + FSP_EXTENT_SIZE / 2; i++) {
  194. page_no = fseg_alloc_free_page(fseg_header,
  195.   prev_page_no + 1,
  196. FSP_UP, &mtr);
  197. if (page_no == FIL_NULL) {
  198. fprintf(stderr,
  199. "InnoDB: Cannot create doublewrite buffer: you mustn"
  200. "InnoDB: increase your tablespace size.n"
  201. "InnoDB: Cannot continue operation.n");
  202. exit(1);
  203. }
  204. /* We read the allocated pages to the buffer pool;
  205. when they are written to disk in a flush, the space
  206. id and page number fields are also written to the
  207. pages. When we at database startup read pages
  208. from the doublewrite buffer, we know that if the
  209. space id and page number in them are the same as
  210. the page position in the tablespace, then the page
  211. has not been written to in doublewrite. */
  212. new_page = buf_page_get(TRX_SYS_SPACE, page_no,
  213. RW_X_LATCH, &mtr);
  214. #ifdef UNIV_SYNC_DEBUG
  215. buf_page_dbg_add_level(new_page, SYNC_NO_ORDER_CHECK);
  216. #endif /* UNIV_SYNC_DEBUG */
  217. /* Make a dummy change to the page to ensure it will
  218. be written to disk in a flush */
  219. mlog_write_ulint(new_page + FIL_PAGE_DATA,
  220. TRX_SYS_DOUBLEWRITE_MAGIC_N,
  221. MLOG_4BYTES, &mtr);
  222. if (i == FSP_EXTENT_SIZE / 2) {
  223. mlog_write_ulint(doublewrite
  224. + TRX_SYS_DOUBLEWRITE_BLOCK1,
  225. page_no, MLOG_4BYTES, &mtr);
  226. mlog_write_ulint(doublewrite
  227. + TRX_SYS_DOUBLEWRITE_REPEAT
  228. + TRX_SYS_DOUBLEWRITE_BLOCK1,
  229. page_no, MLOG_4BYTES, &mtr);
  230. } else if (i == FSP_EXTENT_SIZE / 2
  231. + TRX_SYS_DOUBLEWRITE_BLOCK_SIZE) {
  232. mlog_write_ulint(doublewrite
  233. + TRX_SYS_DOUBLEWRITE_BLOCK2,
  234. page_no, MLOG_4BYTES, &mtr);
  235. mlog_write_ulint(doublewrite
  236. + TRX_SYS_DOUBLEWRITE_REPEAT
  237. + TRX_SYS_DOUBLEWRITE_BLOCK2,
  238. page_no, MLOG_4BYTES, &mtr);
  239. } else if (i > FSP_EXTENT_SIZE / 2) {
  240. ut_a(page_no == prev_page_no + 1);
  241. }
  242. prev_page_no = page_no;
  243. }
  244. mlog_write_ulint(doublewrite + TRX_SYS_DOUBLEWRITE_MAGIC,
  245. TRX_SYS_DOUBLEWRITE_MAGIC_N, MLOG_4BYTES, &mtr);
  246. mlog_write_ulint(doublewrite + TRX_SYS_DOUBLEWRITE_MAGIC
  247. + TRX_SYS_DOUBLEWRITE_REPEAT,
  248. TRX_SYS_DOUBLEWRITE_MAGIC_N, MLOG_4BYTES, &mtr);
  249. mlog_write_ulint(doublewrite
  250. + TRX_SYS_DOUBLEWRITE_SPACE_ID_STORED,
  251. TRX_SYS_DOUBLEWRITE_SPACE_ID_STORED_N,
  252. MLOG_4BYTES, &mtr);
  253. mtr_commit(&mtr);
  254. /* Flush the modified pages to disk and make a checkpoint */
  255. log_make_checkpoint_at(ut_dulint_max, TRUE);
  256. fprintf(stderr, "InnoDB: Doublewrite buffer createdn");
  257. trx_sys_multiple_tablespace_format = TRUE;
  258. goto start_again;
  259. }
  260. }
  261. /********************************************************************
  262. At a database startup initializes the doublewrite buffer memory structure if
  263. we already have a doublewrite buffer created in the data files. If we are
  264. upgrading to an InnoDB version which supports multiple tablespaces, then this
  265. function performs the necessary update operations. If we are in a crash
  266. recovery, this function uses a possible doublewrite buffer to restore
  267. half-written pages in the data files. */
  268. void
  269. trx_sys_doublewrite_init_or_restore_pages(
  270. /*======================================*/
  271. ibool restore_corrupt_pages)
  272. {
  273. byte* buf;
  274. byte* read_buf;
  275. byte* unaligned_read_buf;
  276. ulint block1;
  277. ulint block2;
  278. ulint source_page_no;
  279. byte* page;
  280. byte* doublewrite;
  281. ulint space_id;
  282. ulint page_no;
  283. ulint i;
  284. /* We do the file i/o past the buffer pool */
  285. unaligned_read_buf = ut_malloc(2 * UNIV_PAGE_SIZE);
  286. read_buf = ut_align(unaligned_read_buf, UNIV_PAGE_SIZE);
  287. /* Read the trx sys header to check if we are using the doublewrite
  288. buffer */
  289. fil_io(OS_FILE_READ, TRUE, TRX_SYS_SPACE, TRX_SYS_PAGE_NO, 0,
  290. UNIV_PAGE_SIZE, read_buf, NULL);
  291. doublewrite = read_buf + TRX_SYS_DOUBLEWRITE;
  292. if (mach_read_from_4(doublewrite + TRX_SYS_DOUBLEWRITE_MAGIC)
  293. == TRX_SYS_DOUBLEWRITE_MAGIC_N) {
  294. /* The doublewrite buffer has been created */
  295. trx_doublewrite_init(doublewrite);
  296. block1 = trx_doublewrite->block1;
  297. block2 = trx_doublewrite->block2;
  298. buf = trx_doublewrite->write_buf;
  299. } else {
  300. goto leave_func;
  301. }
  302. if (mach_read_from_4(doublewrite + TRX_SYS_DOUBLEWRITE_SPACE_ID_STORED)
  303.     != TRX_SYS_DOUBLEWRITE_SPACE_ID_STORED_N) {
  304.         
  305.         /* We are upgrading from a version < 4.1.x to a version where
  306. multiple tablespaces are supported. We must reset the space id
  307. field in the pages in the doublewrite buffer because starting
  308. from this version the space id is stored to
  309. FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID. */
  310. trx_doublewrite_must_reset_space_ids = TRUE;
  311. fprintf(stderr,
  312. "InnoDB: Resetting space id's in the doublewrite buffern");
  313. } else {
  314. trx_sys_multiple_tablespace_format = TRUE;
  315. }
  316. /* Read the pages from the doublewrite buffer to memory */
  317. fil_io(OS_FILE_READ, TRUE, TRX_SYS_SPACE, block1, 0,
  318. TRX_SYS_DOUBLEWRITE_BLOCK_SIZE * UNIV_PAGE_SIZE,
  319. buf, NULL);
  320. fil_io(OS_FILE_READ, TRUE, TRX_SYS_SPACE, block2, 0,
  321. TRX_SYS_DOUBLEWRITE_BLOCK_SIZE * UNIV_PAGE_SIZE,
  322. buf + TRX_SYS_DOUBLEWRITE_BLOCK_SIZE * UNIV_PAGE_SIZE,
  323. NULL);
  324. /* Check if any of these pages is half-written in data files, in the
  325. intended position */
  326. page = buf;
  327. for (i = 0; i < TRX_SYS_DOUBLEWRITE_BLOCK_SIZE * 2; i++) {
  328. page_no = mach_read_from_4(page + FIL_PAGE_OFFSET);
  329. if (trx_doublewrite_must_reset_space_ids) {
  330.         space_id = 0;
  331. mach_write_to_4(page
  332. + FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID, 0);
  333. /* We do not need to calculate new checksums for the
  334. pages because the field .._SPACE_ID does not affect
  335. them. Write the page back to where we read it from. */
  336. if (i < TRX_SYS_DOUBLEWRITE_BLOCK_SIZE) {
  337.         source_page_no = block1 + i;
  338. } else {
  339. source_page_no = block2
  340. + i - TRX_SYS_DOUBLEWRITE_BLOCK_SIZE;
  341. }
  342. fil_io(OS_FILE_WRITE, TRUE, 0, source_page_no, 0,
  343.       UNIV_PAGE_SIZE, page, NULL);
  344. /* printf("Resetting space id in page %lun",
  345.    source_page_no); */
  346. } else {
  347.         space_id = mach_read_from_4(
  348. page + FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID);
  349. }
  350. if (!restore_corrupt_pages) {
  351. /* The database was shut down gracefully: no need to
  352. restore pages */
  353. } else if (!fil_tablespace_exists_in_mem(space_id)) {
  354. /* Maybe we have dropped the single-table tablespace
  355. and this page once belonged to it: do nothing */
  356. } else if (!fil_check_adress_in_tablespace(space_id,
  357. page_no)) {
  358.    fprintf(stderr,
  359. "InnoDB: Warning: a page in the doublewrite buffer is not within spacen"
  360. "InnoDB: bounds; space id %lu page number %lu, page %lu in doublewrite buf.n",
  361. (ulong) space_id, (ulong) page_no, (ulong) i);
  362. } else if (space_id == TRX_SYS_SPACE
  363.     && (  (page_no >= block1
  364.    && page_no
  365. < block1 + TRX_SYS_DOUBLEWRITE_BLOCK_SIZE)
  366.         || (page_no >= block2
  367.    && page_no
  368. < block2 + TRX_SYS_DOUBLEWRITE_BLOCK_SIZE))) {
  369. /* It is an unwritten doublewrite buffer page:
  370. do nothing */
  371. } else {
  372. /* Read in the actual page from the data files */
  373. fil_io(OS_FILE_READ, TRUE, space_id, page_no, 0,
  374. UNIV_PAGE_SIZE, read_buf, NULL);
  375. /* Check if the page is corrupt */
  376. if (buf_page_is_corrupted(read_buf)) {
  377.    fprintf(stderr,
  378. "InnoDB: Warning: database page corruption or a failedn"
  379. "InnoDB: file read of page %lu.n", (ulong) page_no);
  380.    fprintf(stderr,
  381. "InnoDB: Trying to recover it from the doublewrite buffer.n");
  382. if (buf_page_is_corrupted(page)) {
  383. fprintf(stderr,
  384. "InnoDB: Dump of the page:n");
  385. buf_page_print(read_buf);
  386. fprintf(stderr,
  387. "InnoDB: Dump of corresponding page in doublewrite buffer:n");
  388. buf_page_print(page);
  389.    fprintf(stderr,
  390. "InnoDB: Also the page in the doublewrite buffer is corrupt.n"
  391. "InnoDB: Cannot continue operation.n"
  392. "InnoDB: You can try to recover the database with the my.cnfn"
  393. "InnoDB: option:n"
  394. "InnoDB: set-variable=innodb_force_recovery=6n");
  395. exit(1);
  396. }
  397. /* Write the good page from the
  398. doublewrite buffer to the intended
  399. position */
  400. fil_io(OS_FILE_WRITE, TRUE, space_id,
  401. page_no, 0,
  402. UNIV_PAGE_SIZE, page, NULL);
  403.    fprintf(stderr,
  404. "InnoDB: Recovered the page from the doublewrite buffer.n");
  405. }
  406. }
  407. page += UNIV_PAGE_SIZE;
  408. }
  409. fil_flush_file_spaces(FIL_TABLESPACE);
  410. leave_func:
  411. ut_free(unaligned_read_buf);
  412. }
  413. /********************************************************************
  414. Checks that trx is in the trx list. */
  415. ibool
  416. trx_in_trx_list(
  417. /*============*/
  418. /* out: TRUE if is in */
  419. trx_t* in_trx) /* in: trx */
  420. {
  421. trx_t* trx;
  422. #ifdef UNIV_SYNC_DEBUG
  423. ut_ad(mutex_own(&(kernel_mutex)));
  424. #endif /* UNIV_SYNC_DEBUG */
  425. trx = UT_LIST_GET_FIRST(trx_sys->trx_list);
  426. while (trx != NULL) {
  427. if (trx == in_trx) {
  428. return(TRUE);
  429. }
  430. trx = UT_LIST_GET_NEXT(trx_list, trx);
  431. }
  432. return(FALSE);
  433. }
  434. /*********************************************************************
  435. Writes the value of max_trx_id to the file based trx system header. */
  436. void
  437. trx_sys_flush_max_trx_id(void)
  438. /*==========================*/
  439. {
  440. trx_sysf_t* sys_header;
  441. mtr_t mtr;
  442. #ifdef UNIV_SYNC_DEBUG
  443. ut_ad(mutex_own(&kernel_mutex));
  444. #endif /* UNIV_SYNC_DEBUG */
  445. mtr_start(&mtr);
  446. sys_header = trx_sysf_get(&mtr);
  447. mlog_write_dulint(sys_header + TRX_SYS_TRX_ID_STORE,
  448. trx_sys->max_trx_id, &mtr);
  449. mtr_commit(&mtr);
  450. }
  451. /*********************************************************************
  452. Updates the offset information about the end of the MySQL binlog entry
  453. which corresponds to the transaction just being committed. In a MySQL
  454. replication slave updates the latest master binlog position up to which
  455. replication has proceeded. */
  456. void
  457. trx_sys_update_mysql_binlog_offset(
  458. /*===============================*/
  459. const char* file_name,/* in: MySQL log file name */
  460. ib_longlong offset, /* in: position in that log file */
  461. ulint field, /* in: offset of the MySQL log info field in
  462. the trx sys header */
  463. mtr_t* mtr) /* in: mtr */
  464. {
  465. trx_sysf_t* sys_header;
  466. if (ut_strlen(file_name) >= TRX_SYS_MYSQL_LOG_NAME_LEN) {
  467. /* We cannot fit the name to the 512 bytes we have reserved */
  468. return;
  469. }
  470. sys_header = trx_sysf_get(mtr);
  471. if (mach_read_from_4(sys_header + field
  472. + TRX_SYS_MYSQL_LOG_MAGIC_N_FLD)
  473.    != TRX_SYS_MYSQL_LOG_MAGIC_N) {
  474.     mlog_write_ulint(sys_header + field
  475. + TRX_SYS_MYSQL_LOG_MAGIC_N_FLD,
  476. TRX_SYS_MYSQL_LOG_MAGIC_N,
  477. MLOG_4BYTES, mtr);
  478. }
  479. if (0 != strcmp((char*) (sys_header + field + TRX_SYS_MYSQL_LOG_NAME), file_name)) {
  480. mlog_write_string(sys_header + field
  481. + TRX_SYS_MYSQL_LOG_NAME,
  482. (byte*) file_name, 1 + ut_strlen(file_name), mtr);
  483. }
  484. if (mach_read_from_4(sys_header + field
  485. + TRX_SYS_MYSQL_LOG_OFFSET_HIGH) > 0
  486.    || (offset >> 32) > 0) {
  487. mlog_write_ulint(sys_header + field
  488. + TRX_SYS_MYSQL_LOG_OFFSET_HIGH,
  489. (ulint)(offset >> 32),
  490. MLOG_4BYTES, mtr);
  491. }
  492. mlog_write_ulint(sys_header + field
  493. + TRX_SYS_MYSQL_LOG_OFFSET_LOW,
  494. (ulint)(offset & 0xFFFFFFFFUL),
  495. MLOG_4BYTES, mtr);
  496. }
  497. /*********************************************************************
  498. Prints to stderr the MySQL binlog info in the system header if the
  499. magic number shows it valid. */
  500. void
  501. trx_sys_print_mysql_binlog_offset_from_page(
  502. /*========================================*/
  503. byte* page) /* in: buffer containing the trx system header page,
  504. i.e., page number TRX_SYS_PAGE_NO in the tablespace */
  505. {
  506. trx_sysf_t* sys_header;
  507. sys_header = page + TRX_SYS;
  508. if (mach_read_from_4(sys_header + TRX_SYS_MYSQL_LOG_INFO
  509. + TRX_SYS_MYSQL_LOG_MAGIC_N_FLD)
  510.    == TRX_SYS_MYSQL_LOG_MAGIC_N) {
  511. fprintf(stderr,
  512. "ibbackup: Last MySQL binlog file position %lu %lu, file name %sn",
  513. (ulong) mach_read_from_4(sys_header + TRX_SYS_MYSQL_LOG_INFO
  514. + TRX_SYS_MYSQL_LOG_OFFSET_HIGH),
  515. (ulong) mach_read_from_4(sys_header + TRX_SYS_MYSQL_LOG_INFO
  516. + TRX_SYS_MYSQL_LOG_OFFSET_LOW),
  517. sys_header + TRX_SYS_MYSQL_LOG_INFO + TRX_SYS_MYSQL_LOG_NAME);
  518. }
  519. }
  520. /*********************************************************************
  521. Stores the MySQL binlog offset info in the trx system header if
  522. the magic number shows it valid, and print the info to stderr */
  523. void
  524. trx_sys_print_mysql_binlog_offset(void)
  525. /*===================================*/
  526. {
  527. trx_sysf_t* sys_header;
  528. mtr_t mtr;
  529. ulint trx_sys_mysql_bin_log_pos_high;
  530. ulint trx_sys_mysql_bin_log_pos_low;
  531. mtr_start(&mtr);
  532. sys_header = trx_sysf_get(&mtr);
  533. if (mach_read_from_4(sys_header + TRX_SYS_MYSQL_LOG_INFO
  534. + TRX_SYS_MYSQL_LOG_MAGIC_N_FLD)
  535.    != TRX_SYS_MYSQL_LOG_MAGIC_N) {
  536. mtr_commit(&mtr);
  537. return;
  538. }
  539.         trx_sys_mysql_bin_log_pos_high = mach_read_from_4(sys_header + TRX_SYS_MYSQL_LOG_INFO
  540.                                                     + TRX_SYS_MYSQL_LOG_OFFSET_HIGH);
  541.         trx_sys_mysql_bin_log_pos_low  = mach_read_from_4(sys_header + TRX_SYS_MYSQL_LOG_INFO
  542.                                                     + TRX_SYS_MYSQL_LOG_OFFSET_LOW);
  543.         trx_sys_mysql_bin_log_pos      =  (((ib_longlong)trx_sys_mysql_bin_log_pos_high) << 32) +
  544.           (ib_longlong)trx_sys_mysql_bin_log_pos_low;
  545.         ut_memcpy(trx_sys_mysql_bin_log_name, sys_header + TRX_SYS_MYSQL_LOG_INFO +
  546.                   TRX_SYS_MYSQL_LOG_NAME, TRX_SYS_MYSQL_LOG_NAME_LEN);
  547.         fprintf(stderr,
  548.                 "InnoDB: Last MySQL binlog file position %lu %lu, file name %sn",
  549.                 trx_sys_mysql_bin_log_pos_high, trx_sys_mysql_bin_log_pos_low,
  550.                 trx_sys_mysql_bin_log_name);
  551.         
  552. mtr_commit(&mtr);
  553. }
  554. /*********************************************************************
  555. Prints to stderr the MySQL master log offset info in the trx system header if
  556. the magic number shows it valid. */
  557. void
  558. trx_sys_print_mysql_master_log_pos(void)
  559. /*====================================*/
  560. {
  561. trx_sysf_t* sys_header;
  562. mtr_t mtr;
  563. mtr_start(&mtr);
  564. sys_header = trx_sysf_get(&mtr);
  565. if (mach_read_from_4(sys_header + TRX_SYS_MYSQL_MASTER_LOG_INFO
  566. + TRX_SYS_MYSQL_LOG_MAGIC_N_FLD)
  567.    != TRX_SYS_MYSQL_LOG_MAGIC_N) {
  568. mtr_commit(&mtr);
  569. return;
  570. }
  571. fprintf(stderr,
  572. "InnoDB: In a MySQL replication slave the last master binlog filen"
  573. "InnoDB: position %lu %lu, file name %sn",
  574. (ulong) mach_read_from_4(sys_header + TRX_SYS_MYSQL_MASTER_LOG_INFO
  575. + TRX_SYS_MYSQL_LOG_OFFSET_HIGH),
  576. (ulong) mach_read_from_4(sys_header + TRX_SYS_MYSQL_MASTER_LOG_INFO
  577. + TRX_SYS_MYSQL_LOG_OFFSET_LOW),
  578. sys_header + TRX_SYS_MYSQL_MASTER_LOG_INFO
  579. + TRX_SYS_MYSQL_LOG_NAME);
  580. /* Copy the master log position info to global variables we can
  581. use in ha_innobase.cc to initialize glob_mi to right values */
  582. ut_memcpy(trx_sys_mysql_master_log_name,
  583. sys_header + TRX_SYS_MYSQL_MASTER_LOG_INFO
  584. + TRX_SYS_MYSQL_LOG_NAME,
  585. TRX_SYS_MYSQL_LOG_NAME_LEN);
  586. trx_sys_mysql_master_log_pos = 
  587. (((ib_longlong)mach_read_from_4(
  588. sys_header + TRX_SYS_MYSQL_MASTER_LOG_INFO
  589. + TRX_SYS_MYSQL_LOG_OFFSET_HIGH))
  590. << 32)
  591. + (ib_longlong)
  592. mach_read_from_4(sys_header + TRX_SYS_MYSQL_MASTER_LOG_INFO
  593. + TRX_SYS_MYSQL_LOG_OFFSET_LOW);
  594. mtr_commit(&mtr);
  595. }
  596. /********************************************************************
  597. Looks for a free slot for a rollback segment in the trx system file copy. */
  598. ulint
  599. trx_sysf_rseg_find_free(
  600. /*====================*/
  601. /* out: slot index or ULINT_UNDEFINED if not found */
  602. mtr_t* mtr) /* in: mtr */
  603. {
  604. trx_sysf_t* sys_header;
  605. ulint page_no;
  606. ulint i;
  607. #ifdef UNIV_SYNC_DEBUG
  608. ut_ad(mutex_own(&(kernel_mutex)));
  609. #endif /* UNIV_SYNC_DEBUG */
  610. sys_header = trx_sysf_get(mtr);
  611. for (i = 0; i < TRX_SYS_N_RSEGS; i++) {
  612. page_no = trx_sysf_rseg_get_page_no(sys_header, i, mtr);
  613. if (page_no == FIL_NULL) {
  614. return(i);
  615. }
  616. }
  617. return(ULINT_UNDEFINED);
  618. }
  619. /*********************************************************************
  620. Creates the file page for the transaction system. This function is called only
  621. at the database creation, before trx_sys_init. */
  622. static
  623. void
  624. trx_sysf_create(
  625. /*============*/
  626. mtr_t* mtr) /* in: mtr */
  627. {
  628. trx_sysf_t* sys_header;
  629. ulint slot_no;
  630. page_t* page;
  631. ulint page_no;
  632. ulint i;
  633. ut_ad(mtr);
  634. /* Note that below we first reserve the file space x-latch, and
  635. then enter the kernel: we must do it in this order to conform
  636. to the latching order rules. */
  637. mtr_x_lock(fil_space_get_latch(TRX_SYS_SPACE), mtr);
  638. mutex_enter(&kernel_mutex);
  639. /* Create the trx sys file block in a new allocated file segment */
  640. page = fseg_create(TRX_SYS_SPACE, 0, TRX_SYS + TRX_SYS_FSEG_HEADER,
  641.      mtr);
  642. ut_a(buf_frame_get_page_no(page) == TRX_SYS_PAGE_NO);
  643. #ifdef UNIV_SYNC_DEBUG
  644. buf_page_dbg_add_level(page, SYNC_TRX_SYS_HEADER);
  645. #endif /* UNIV_SYNC_DEBUG */
  646. sys_header = trx_sysf_get(mtr);
  647. /* Start counting transaction ids from number 1 up */
  648. mlog_write_dulint(sys_header + TRX_SYS_TRX_ID_STORE,
  649. ut_dulint_create(0, 1), mtr);
  650. /* Reset the rollback segment slots */
  651. for (i = 0; i < TRX_SYS_N_RSEGS; i++) {
  652. trx_sysf_rseg_set_page_no(sys_header, i, FIL_NULL, mtr);
  653. }
  654. /* Create the first rollback segment in the SYSTEM tablespace */
  655. page_no = trx_rseg_header_create(TRX_SYS_SPACE, ULINT_MAX, &slot_no,
  656. mtr);
  657. ut_a(slot_no == TRX_SYS_SYSTEM_RSEG_ID);
  658. ut_a(page_no != FIL_NULL);
  659. mutex_exit(&kernel_mutex);
  660. }
  661. /*********************************************************************
  662. Creates and initializes the central memory structures for the transaction
  663. system. This is called when the database is started. */
  664. void
  665. trx_sys_init_at_db_start(void)
  666. /*==========================*/
  667. {
  668. trx_sysf_t* sys_header;
  669. ib_longlong rows_to_undo = 0;
  670. const char* unit = "";
  671. trx_t* trx;
  672. mtr_t mtr;
  673. mtr_start(&mtr);
  674. ut_ad(trx_sys == NULL);
  675. mutex_enter(&kernel_mutex);
  676. trx_sys = mem_alloc(sizeof(trx_sys_t));
  677. sys_header = trx_sysf_get(&mtr);
  678. trx_rseg_list_and_array_init(sys_header, &mtr);
  679. trx_sys->latest_rseg = UT_LIST_GET_FIRST(trx_sys->rseg_list);
  680. /* VERY important: after the database is started, max_trx_id value is
  681. divisible by TRX_SYS_TRX_ID_WRITE_MARGIN, and the 'if' in
  682. trx_sys_get_new_trx_id will evaluate to TRUE when the function
  683. is first time called, and the value for trx id will be written
  684. to the disk-based header! Thus trx id values will not overlap when
  685. the database is repeatedly started! */
  686. trx_sys->max_trx_id = ut_dulint_add(
  687.        ut_dulint_align_up(
  688. mtr_read_dulint(sys_header
  689. + TRX_SYS_TRX_ID_STORE, &mtr),
  690. TRX_SYS_TRX_ID_WRITE_MARGIN),
  691. 2 * TRX_SYS_TRX_ID_WRITE_MARGIN);
  692. UT_LIST_INIT(trx_sys->mysql_trx_list);
  693. trx_lists_init_at_db_start();
  694. if (UT_LIST_GET_LEN(trx_sys->trx_list) > 0) {
  695. trx = UT_LIST_GET_FIRST(trx_sys->trx_list);
  696. for (;;) {
  697. rows_to_undo +=
  698. ut_conv_dulint_to_longlong(trx->undo_no);
  699. trx = UT_LIST_GET_NEXT(trx_list, trx);
  700. if (!trx) {
  701. break;
  702. }
  703. }
  704. if (rows_to_undo > 1000000000) {
  705. unit = "M";
  706. rows_to_undo = rows_to_undo / 1000000;
  707. }
  708. fprintf(stderr,
  709. "InnoDB: %lu transaction(s) which must be rolled back or cleaned upn"
  710. "InnoDB: in total %lu%s row operations to undon",
  711. (ulong) UT_LIST_GET_LEN(trx_sys->trx_list),
  712. (ulong) rows_to_undo, unit);
  713. fprintf(stderr, "InnoDB: Trx id counter is %lu %lun", 
  714. (ulong) ut_dulint_get_high(trx_sys->max_trx_id),
  715. (ulong) ut_dulint_get_low(trx_sys->max_trx_id));
  716. }
  717. UT_LIST_INIT(trx_sys->view_list);
  718. trx_purge_sys_create();
  719. mutex_exit(&kernel_mutex);
  720. mtr_commit(&mtr);
  721. }
  722. /*********************************************************************
  723. Creates and initializes the transaction system at the database creation. */
  724. void
  725. trx_sys_create(void)
  726. /*================*/
  727. {
  728. mtr_t mtr;
  729. mtr_start(&mtr);
  730. trx_sysf_create(&mtr);
  731. mtr_commit(&mtr);
  732. trx_sys_init_at_db_start();
  733. }