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

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The tablespace memory cache
  3. (c) 1995 Innobase Oy
  4. Created 10/25/1995 Heikki Tuuri
  5. *******************************************************/
  6. #include "fil0fil.h"
  7. #include "mem0mem.h"
  8. #include "sync0sync.h"
  9. #include "hash0hash.h"
  10. #include "os0file.h"
  11. #include "os0sync.h"
  12. #include "mach0data.h"
  13. #include "ibuf0ibuf.h"
  14. #include "buf0buf.h"
  15. #include "buf0flu.h"
  16. #include "buf0lru.h"
  17. #include "log0log.h"
  18. #include "log0recv.h"
  19. #include "fsp0fsp.h"
  20. #include "srv0srv.h"
  21. #include "srv0start.h"
  22. #include "mtr0mtr.h"
  23. #include "mtr0log.h"
  24. #include "dict0dict.h"
  25.  
  26. /*
  27. IMPLEMENTATION OF THE TABLESPACE MEMORY CACHE
  28. =============================================
  29. The tablespace cache is responsible for providing fast read/write access to
  30. tablespaces and logs of the database. File creation and deletion is done
  31. in other modules which know more of the logic of the operation, however.
  32. A tablespace consists of a chain of files. The size of the files does not
  33. have to be divisible by the database block size, because we may just leave
  34. the last incomplete block unused. When a new file is appended to the
  35. tablespace, the maximum size of the file is also specified. At the moment,
  36. we think that it is best to extend the file to its maximum size already at
  37. the creation of the file, because then we can avoid dynamically extending
  38. the file when more space is needed for the tablespace.
  39. A block's position in the tablespace is specified with a 32-bit unsigned
  40. integer. The files in the chain are thought to be catenated, and the block
  41. corresponding to an address n is the nth block in the catenated file (where
  42. the first block is named the 0th block, and the incomplete block fragments
  43. at the end of files are not taken into account). A tablespace can be extended
  44. by appending a new file at the end of the chain.
  45. Our tablespace concept is similar to the one of Oracle.
  46. To acquire more speed in disk transfers, a technique called disk striping is
  47. sometimes used. This means that logical block addresses are divided in a
  48. round-robin fashion across several disks. Windows NT supports disk striping,
  49. so there we do not need to support it in the database. Disk striping is
  50. implemented in hardware in RAID disks. We conclude that it is not necessary
  51. to implement it in the database. Oracle 7 does not support disk striping,
  52. either.
  53. Another trick used at some database sites is replacing tablespace files by
  54. raw disks, that is, the whole physical disk drive, or a partition of it, is
  55. opened as a single file, and it is accessed through byte offsets calculated
  56. from the start of the disk or the partition. This is recommended in some
  57. books on database tuning to achieve more speed in i/o. Using raw disk
  58. certainly prevents the OS from fragmenting disk space, but it is not clear
  59. if it really adds speed. We measured on the Pentium 100 MHz + NT + NTFS file
  60. system + EIDE Conner disk only a negligible difference in speed when reading
  61. from a file, versus reading from a raw disk. 
  62. To have fast access to a tablespace or a log file, we put the data structures
  63. to a hash table. Each tablespace and log file is given an unique 32-bit
  64. identifier.
  65. Some operating systems do not support many open files at the same time,
  66. though NT seems to tolerate at least 900 open files. Therefore, we put the
  67. open files in an LRU-list. If we need to open another file, we may close the
  68. file at the end of the LRU-list. When an i/o-operation is pending on a file,
  69. the file cannot be closed. We take the file nodes with pending i/o-operations
  70. out of the LRU-list and keep a count of pending operations. When an operation
  71. completes, we decrement the count and return the file node to the LRU-list if
  72. the count drops to zero. */
  73. /* When mysqld is run, the default directory "." is the mysqld datadir,
  74. but in the MySQL Embedded Server Library and ibbackup it is not the default
  75. directory, and we must set the base file path explicitly */
  76. const char* fil_path_to_mysql_datadir = ".";
  77. ulint fil_n_pending_log_flushes = 0;
  78. ulint fil_n_pending_tablespace_flushes = 0;
  79. /* Null file address */
  80. fil_addr_t fil_addr_null = {FIL_NULL, 0};
  81. /* File node of a tablespace or the log data space */
  82. typedef struct fil_node_struct fil_node_t;
  83. struct fil_node_struct {
  84. fil_space_t* space; /* backpointer to the space where this node
  85. belongs */
  86. char* name; /* path to the file */
  87. ibool open; /* TRUE if file open */
  88. os_file_t handle; /* OS handle to the file, if file open */
  89. ibool is_raw_disk;/* TRUE if the 'file' is actually a raw
  90. device or a raw disk partition */
  91. ulint size; /* size of the file in database pages, 0 if
  92. not known yet; the possible last incomplete
  93. megabyte may be ignored if space == 0 */
  94. ulint n_pending;
  95. /* count of pending i/o's on this file;
  96. closing of the file is not allowed if
  97. this is > 0 */
  98. ulint n_pending_flushes;
  99. /* count of pending flushes on this file;
  100. closing of the file is not allowed if
  101. this is > 0 */
  102. ib_longlong modification_counter;/* when we write to the file we
  103. increment this by one */
  104. ib_longlong flush_counter;/* up to what modification_counter value
  105. we have flushed the modifications to disk */
  106. UT_LIST_NODE_T(fil_node_t) chain;
  107. /* link field for the file chain */
  108. UT_LIST_NODE_T(fil_node_t) LRU;
  109. /* link field for the LRU list */
  110. ulint magic_n;
  111. };
  112. #define FIL_NODE_MAGIC_N 89389
  113. /* Tablespace or log data space: let us call them by a common name space */
  114. struct fil_space_struct {
  115. char* name; /* space name = the path to the first file in
  116. it */
  117. ulint id; /* space id */
  118. ib_longlong tablespace_version;
  119. /* in DISCARD/IMPORT this timestamp is used to
  120. check if we should ignore an insert buffer
  121. merge request for a page because it actually
  122. was for the previous incarnation of the
  123. space */
  124. ibool mark; /* this is set to TRUE at database startup if
  125. the space corresponds to a table in the InnoDB
  126. data dictionary; so we can print a warning of
  127. orphaned tablespaces */
  128. ibool stop_ios;/* TRUE if we want to rename the .ibd file of
  129. tablespace and want to stop temporarily
  130. posting of new i/o requests on the file */
  131. ibool stop_ibuf_merges;
  132. /* we set this TRUE when we start deleting a
  133. single-table tablespace */
  134. ibool is_being_deleted;
  135. /* this is set to TRUE when we start
  136. deleting a single-table tablespace and its
  137. file; when this flag is set no further i/o
  138. or flush requests can be placed on this space,
  139. though there may be such requests still being
  140. processed on this space */
  141. ulint purpose;/* FIL_TABLESPACE, FIL_LOG, or FIL_ARCH_LOG */
  142. UT_LIST_BASE_NODE_T(fil_node_t) chain;
  143. /* base node for the file chain */
  144. ulint size; /* space size in pages; 0 if a single-table
  145. tablespace whose size we do not know yet;
  146. last incomplete megabytes in data files may be
  147. ignored if space == 0 */ 
  148. ulint n_reserved_extents;
  149. /* number of reserved free extents for
  150. ongoing operations like B-tree page split */
  151. ulint n_pending_flushes; /* this is > 0 when flushing
  152. the tablespace to disk; dropping of the
  153. tablespace is forbidden if this is > 0 */
  154. ulint n_pending_ibuf_merges;/* this is > 0 when merging
  155. insert buffer entries to a page so that we
  156. may need to access the ibuf bitmap page in the
  157. tablespade: dropping of the tablespace is
  158. forbidden if this is > 0 */
  159. hash_node_t hash;  /* hash chain node */
  160. hash_node_t name_hash;/* hash chain the name_hash table */
  161. rw_lock_t latch; /* latch protecting the file space storage
  162. allocation */
  163. UT_LIST_NODE_T(fil_space_t) space_list;
  164. /* list of all spaces */
  165. ibuf_data_t* ibuf_data;
  166. /* insert buffer data */
  167. ulint magic_n;
  168. };
  169. #define FIL_SPACE_MAGIC_N 89472
  170. /* The tablespace memory cache; also the totality of logs = the log data space,
  171. is stored here; below we talk about tablespaces, but also the ib_logfiles
  172. form a 'space' and it is handled here */
  173. typedef struct fil_system_struct fil_system_t;
  174. struct fil_system_struct {
  175. mutex_t mutex; /* The mutex protecting the cache */
  176. hash_table_t* spaces; /* The hash table of spaces in the
  177. system; they are hashed on the space
  178. id */
  179. hash_table_t* name_hash; /* hash table based on the space
  180. name */
  181. UT_LIST_BASE_NODE_T(fil_node_t) LRU;
  182. /* base node for the LRU list of the
  183. most recently used open files with no
  184. pending i/o's; if we start an i/o on
  185. the file, we first remove it from this
  186. list, and return it to the start of
  187. the list when the i/o ends;
  188. log files and the system tablespace are
  189. not put to this list: they are opened
  190. after the startup, and kept open until
  191. shutdown */
  192. ulint n_open; /* number of files currently open */
  193. ulint max_n_open; /* n_open is not allowed to exceed
  194. this */
  195. ib_longlong modification_counter;/* when we write to a file we
  196. increment this by one */
  197. ulint max_assigned_id;/* maximum space id in the existing
  198. tables, or assigned during the time
  199. mysqld has been up; at an InnoDB
  200. startup we scan the data dictionary
  201. and set here the maximum of the
  202. space id's of the tables there */
  203. ib_longlong tablespace_version;
  204. /* a counter which is incremented for
  205. every space object memory creation;
  206. every space mem object gets a
  207. 'timestamp' from this; in DISCARD/
  208. IMPORT this is used to check if we
  209. should ignore an insert buffer merge
  210. request */
  211. UT_LIST_BASE_NODE_T(fil_space_t) space_list;
  212. /* list of all file spaces */
  213. };
  214. /* The tablespace memory cache. This variable is NULL before the module is
  215. initialized. */
  216. fil_system_t* fil_system = NULL;
  217. /* The tablespace memory cache hash table size */
  218. #define FIL_SYSTEM_HASH_SIZE 50 /* TODO: make bigger! */
  219. /************************************************************************
  220. NOTE: you must call fil_mutex_enter_and_prepare_for_io() first!
  221. Prepares a file node for i/o. Opens the file if it is closed. Updates the
  222. pending i/o's field in the node and the system appropriately. Takes the node
  223. off the LRU list if it is in the LRU list. The caller must hold the fil_sys
  224. mutex. */
  225. static
  226. void
  227. fil_node_prepare_for_io(
  228. /*====================*/
  229. fil_node_t* node, /* in: file node */
  230. fil_system_t* system, /* in: tablespace memory cache */
  231. fil_space_t* space); /* in: space */
  232. /************************************************************************
  233. Updates the data structures when an i/o operation finishes. Updates the
  234. pending i/o's field in the node appropriately. */
  235. static
  236. void
  237. fil_node_complete_io(
  238. /*=================*/
  239. fil_node_t* node, /* in: file node */
  240. fil_system_t* system, /* in: tablespace memory cache */
  241. ulint type); /* in: OS_FILE_WRITE or OS_FILE_READ; marks
  242. the node as modified if
  243. type == OS_FILE_WRITE */
  244. /***********************************************************************
  245. Checks if a single-table tablespace for a given table name exists in the
  246. tablespace memory cache. */
  247. static
  248. ulint
  249. fil_get_space_id_for_table(
  250. /*=======================*/
  251. /* out: space id, ULINT_UNDEFINED if not
  252. found */
  253. const char* name); /* in: table name in the standard
  254. 'databasename/tablename' format */
  255. /***********************************************************************
  256. Returns the version number of a tablespace, -1 if not found. */
  257. ib_longlong
  258. fil_space_get_version(
  259. /*==================*/
  260. /* out: version number, -1 if the tablespace does not
  261. exist in the memory cache */
  262. ulint id) /* in: space id */
  263. {
  264. fil_system_t* system = fil_system;
  265. fil_space_t* space;
  266. ib_longlong version = -1;
  267. ut_ad(system);
  268. mutex_enter(&(system->mutex));
  269. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  270. if (space) {
  271. version = space->tablespace_version;
  272. }
  273. mutex_exit(&(system->mutex));
  274. return(version);
  275. }
  276. /***********************************************************************
  277. Returns the latch of a file space. */
  278. rw_lock_t*
  279. fil_space_get_latch(
  280. /*================*/
  281. /* out: latch protecting storage allocation */
  282. ulint id) /* in: space id */
  283. {
  284. fil_system_t* system = fil_system;
  285. fil_space_t* space;
  286. ut_ad(system);
  287. mutex_enter(&(system->mutex));
  288. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  289. ut_a(space);
  290. mutex_exit(&(system->mutex));
  291. return(&(space->latch));
  292. }
  293. /***********************************************************************
  294. Returns the type of a file space. */
  295. ulint
  296. fil_space_get_type(
  297. /*===============*/
  298. /* out: FIL_TABLESPACE or FIL_LOG */
  299. ulint id) /* in: space id */
  300. {
  301. fil_system_t* system = fil_system;
  302. fil_space_t* space;
  303. ut_ad(system);
  304. mutex_enter(&(system->mutex));
  305. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  306. ut_a(space);
  307. mutex_exit(&(system->mutex));
  308. return(space->purpose);
  309. }
  310. /***********************************************************************
  311. Returns the ibuf data of a file space. */
  312. ibuf_data_t*
  313. fil_space_get_ibuf_data(
  314. /*====================*/
  315. /* out: ibuf data for this space */
  316. ulint id) /* in: space id */
  317. {
  318. fil_system_t* system = fil_system;
  319. fil_space_t* space;
  320. ut_ad(system);
  321. ut_a(id == 0);
  322. mutex_enter(&(system->mutex));
  323. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  324. mutex_exit(&(system->mutex));
  325. ut_a(space);
  326. return(space->ibuf_data);
  327. }
  328. /***********************************************************************
  329. Appends a new file to the chain of files of a space. File must be closed. */
  330. void
  331. fil_node_create(
  332. /*============*/
  333. const char* name, /* in: file name (file must be closed) */
  334. ulint size, /* in: file size in database blocks, rounded
  335. downwards to an integer */
  336. ulint id, /* in: space id where to append */
  337. ibool is_raw) /* in: TRUE if a raw device or
  338. a raw disk partition */
  339. {
  340. fil_system_t* system = fil_system;
  341. fil_node_t* node;
  342. fil_space_t* space;
  343. ut_a(system);
  344. ut_a(name);
  345. mutex_enter(&(system->mutex));
  346. node = mem_alloc(sizeof(fil_node_t));
  347. node->name = mem_strdup(name);
  348. node->open = FALSE;
  349. ut_a(!is_raw || srv_start_raw_disk_in_use);
  350. node->is_raw_disk = is_raw;
  351. node->size = size;
  352. node->magic_n = FIL_NODE_MAGIC_N;
  353. node->n_pending = 0;
  354. node->n_pending_flushes = 0;
  355. node->modification_counter = 0;
  356. node->flush_counter = 0;
  357. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  358. if (!space) {
  359. ut_print_timestamp(stderr);
  360. fprintf(stderr,
  361. "  InnoDB: Error: Could not find tablespace %lu forn"
  362. "InnoDB: file ", (ulong) id);
  363. ut_print_filename(stderr, name);
  364. fputs(" in the tablespace memory cache.n", stderr);
  365. mem_free(node->name);
  366. mem_free(node);
  367. mutex_exit(&(system->mutex));
  368. return;
  369. }
  370. space->size += size;
  371. node->space = space;
  372. UT_LIST_ADD_LAST(chain, space->chain, node);
  373. mutex_exit(&(system->mutex));
  374. }
  375. /************************************************************************
  376. Opens a the file of a node of a tablespace. The caller must own the fil_system
  377. mutex. */
  378. static
  379. void
  380. fil_node_open_file(
  381. /*===============*/
  382. fil_node_t* node, /* in: file node */
  383. fil_system_t* system, /* in: tablespace memory cache */
  384. fil_space_t* space) /* in: space */
  385. {
  386. ib_longlong size_bytes;
  387. ulint size_low;
  388. ulint size_high;
  389. ibool ret;
  390. byte* buf2;
  391. byte* page;
  392. ibool success;
  393. ulint space_id;
  394. #ifdef UNIV_SYNC_DEBUG
  395. ut_ad(mutex_own(&(system->mutex)));
  396. #endif /* UNIV_SYNC_DEBUG */
  397. ut_a(node->n_pending == 0);
  398. ut_a(node->open == FALSE);
  399. if (node->size == 0) {
  400. /* It must be a single-table tablespace and we do not know the
  401. size of the file yet. First we open the file in the normal
  402. mode, no async I/O here, for simplicity. Then do some checks,
  403. and close the file again.
  404. NOTE that we could not use the simple file read function
  405. os_file_read() in Windows to read from a file opened for
  406. async I/O! */
  407. node->handle = os_file_create_simple_no_error_handling(
  408. node->name, OS_FILE_OPEN,
  409. OS_FILE_READ_ONLY, &success);
  410. if (!success) {
  411. /* The following call prints an error message */
  412. os_file_get_last_error(TRUE);
  413. ut_print_timestamp(stderr);
  414. fprintf(stderr,
  415. "  InnoDB: Fatal error: cannot open %sn."
  416. "InnoDB: Have you deleted .ibd files under a running mysqld server?n",
  417. node->name);
  418. ut_a(0);
  419. }
  420. ut_a(space->purpose != FIL_LOG);
  421. ut_a(space->id != 0);
  422. os_file_get_size(node->handle, &size_low, &size_high);
  423. size_bytes = (((ib_longlong)size_high) << 32)
  424.       + (ib_longlong)size_low;
  425. #ifdef UNIV_HOTBACKUP
  426. node->size = (ulint) (size_bytes / UNIV_PAGE_SIZE);
  427. #else
  428. if (size_bytes < FIL_IBD_FILE_INITIAL_SIZE * UNIV_PAGE_SIZE) {
  429.          fprintf(stderr,
  430. "InnoDB: Error: the size of single-table tablespace file %sn"
  431. "InnoDB: is only %lu %lu, should be at least %lu!", node->name,
  432. (ulong) size_high,
  433. (ulong) size_low, (ulong) (4 * UNIV_PAGE_SIZE));
  434. ut_a(0);
  435. }
  436. /* Read the first page of the tablespace */
  437. buf2 = ut_malloc(2 * UNIV_PAGE_SIZE);
  438. /* Align the memory for file i/o if we might have O_DIRECT
  439. set */
  440. page = ut_align(buf2, UNIV_PAGE_SIZE);
  441. success = os_file_read(node->handle, page, 0, 0,
  442. UNIV_PAGE_SIZE);
  443. space_id = fsp_header_get_space_id(page);
  444. ut_free(buf2);
  445. /* Close the file now that we have read the space id from it */
  446. os_file_close(node->handle);
  447. if (space_id == ULINT_UNDEFINED || space_id == 0) {
  448.          fprintf(stderr,
  449. "InnoDB: Error: tablespace id %lu in file %s is not sensiblen",
  450. (ulong) space_id,
  451. node->name);
  452. ut_a(0);
  453. }
  454. if (space_id != space->id) {
  455.          fprintf(stderr,
  456. "InnoDB: Error: tablespace id is %lu in the data dictionaryn"
  457. "InnoDB: but in file %s it is %lu!n", space->id, node->name, space_id);
  458. ut_a(0);
  459. }
  460. if (size_bytes >= FSP_EXTENT_SIZE * UNIV_PAGE_SIZE) {
  461. node->size = (ulint) ((size_bytes / (1024 * 1024))
  462.    * ((1024 * 1024) / UNIV_PAGE_SIZE));
  463. } else {
  464. node->size = (ulint) (size_bytes / UNIV_PAGE_SIZE);
  465. }
  466. #endif
  467. space->size += node->size;
  468. }
  469. /* printf("Opening file %sn", node->name); */
  470. /* Open the file for reading and writing, in Windows normally in the
  471. unbuffered async I/O mode, though global variables may make
  472. os_file_create() to fall back to the normal file I/O mode. */
  473. if (space->purpose == FIL_LOG) {
  474. node->handle = os_file_create(node->name, OS_FILE_OPEN,
  475. OS_FILE_AIO, OS_LOG_FILE, &ret);
  476. } else if (node->is_raw_disk) {
  477. node->handle = os_file_create(node->name,
  478.         OS_FILE_OPEN_RAW,
  479. OS_FILE_AIO, OS_DATA_FILE, &ret);
  480. } else {
  481. node->handle = os_file_create(node->name, OS_FILE_OPEN,
  482. OS_FILE_AIO, OS_DATA_FILE, &ret);
  483. }
  484. ut_a(ret);
  485. node->open = TRUE;
  486. system->n_open++;
  487. if (space->purpose == FIL_TABLESPACE && space->id != 0) {
  488. /* Put the node to the LRU list */
  489. UT_LIST_ADD_FIRST(LRU, system->LRU, node);
  490. }
  491. }
  492. /**************************************************************************
  493. Closes a file. */
  494. static
  495. void
  496. fil_node_close_file(
  497. /*================*/
  498. fil_node_t* node, /* in: file node */
  499. fil_system_t* system) /* in: tablespace memory cache */
  500. {
  501. ibool ret;
  502. ut_ad(node && system);
  503. #ifdef UNIV_SYNC_DEBUG
  504. ut_ad(mutex_own(&(system->mutex)));
  505. #endif /* UNIV_SYNC_DEBUG */
  506. ut_a(node->open);
  507. ut_a(node->n_pending == 0);
  508. ut_a(node->n_pending_flushes == 0);
  509. ut_a(node->modification_counter == node->flush_counter);
  510. ret = os_file_close(node->handle);
  511. ut_a(ret);
  512. /* printf("Closing file %sn", node->name); */
  513. node->open = FALSE;
  514. ut_a(system->n_open > 0);
  515. system->n_open--;
  516. if (node->space->purpose == FIL_TABLESPACE && node->space->id != 0) {
  517. ut_a(UT_LIST_GET_LEN(system->LRU) > 0);
  518. /* The node is in the LRU list, remove it */
  519. UT_LIST_REMOVE(LRU, system->LRU, node);
  520. }
  521. }
  522. /************************************************************************
  523. Tries to close a file in the LRU list. The caller must hold the fil_sys
  524. mutex. */
  525. static
  526. ibool
  527. fil_try_to_close_file_in_LRU(
  528. /*=========================*/
  529. /* out: TRUE if success, FALSE if should retry
  530. later; since i/o's generally complete in < 
  531. 100 ms, and as InnoDB writes at most 128 pages
  532. from the buffer pool in a batch, and then
  533. immediately flushes the files, there is a good
  534. chance that the next time we find a suitable
  535. node from the LRU list */
  536. ibool print_info) /* in: if TRUE, prints information why it
  537. cannot close a file */
  538. {
  539. fil_system_t* system = fil_system;
  540. fil_node_t* node;
  541. #ifdef UNIV_SYNC_DEBUG
  542. ut_ad(mutex_own(&(system->mutex)));
  543. #endif /* UNIV_SYNC_DEBUG */
  544. node = UT_LIST_GET_LAST(system->LRU);
  545. if (print_info) {
  546. fprintf(stderr,
  547. "InnoDB: fil_sys open file LRU len %lun", (ulong) UT_LIST_GET_LEN(system->LRU));
  548. }
  549. while (node != NULL) {
  550. if (node->modification_counter == node->flush_counter
  551.     && node->n_pending_flushes == 0) {
  552. fil_node_close_file(node, system);
  553. return(TRUE);
  554. }
  555. if (print_info && node->n_pending_flushes > 0) {
  556. fputs("InnoDB: cannot close file ", stderr);
  557. ut_print_filename(stderr, node->name);
  558. fprintf(stderr, ", because n_pending_flushes %lun",
  559.        (ulong) node->n_pending_flushes);
  560. }
  561. if (print_info
  562.     && node->modification_counter != node->flush_counter) {
  563. fputs("InnoDB: cannot close file ", stderr);
  564. ut_print_filename(stderr, node->name);
  565. fprintf(stderr,
  566. ", because mod_count %ld != fl_count %ldn",
  567. (ulong) node->modification_counter,
  568. (ulong) node->flush_counter);
  569. }
  570. node = UT_LIST_GET_PREV(LRU, node);
  571. }
  572. return(FALSE);
  573. }
  574. /***********************************************************************
  575. Reserves the fil_system mutex and tries to make sure we can open at least one
  576. file while holding it. This should be called before calling
  577. fil_node_prepare_for_io(), because that function may need to open a file. */
  578. static
  579. void
  580. fil_mutex_enter_and_prepare_for_io(
  581. /*===============================*/
  582. ulint space_id) /* in: space id */
  583. {
  584. fil_system_t* system = fil_system;
  585. fil_space_t* space;
  586. ibool success;
  587. ibool print_info = FALSE;
  588. ulint count = 0;
  589. ulint count2 = 0;
  590. #ifdef UNIV_SYNC_DEBUG
  591. ut_ad(!mutex_own(&(system->mutex)));
  592. #endif /* UNIV_SYNC_DEBUG */
  593. retry:
  594. mutex_enter(&(system->mutex));
  595. if (space_id == 0 || space_id >= SRV_LOG_SPACE_FIRST_ID) {
  596. /* We keep log files and system tablespace files always open;
  597. this is important in preventing deadlocks in this module, as
  598. a page read completion often performs another read from the
  599. insert buffer. The insert buffer is in tablespace 0, and we
  600. cannot end up waiting in this function. */
  601. return;
  602. }
  603. if (system->n_open < system->max_n_open) {
  604. return;
  605. }
  606. HASH_SEARCH(hash, system->spaces, space_id, space,
  607. space->id == space_id);
  608. if (space != NULL && space->stop_ios) {
  609. /* We are going to do a rename file and want to stop new i/o's
  610. for a while */
  611. if (count2 > 20000) {
  612. fputs("InnoDB: Warning: tablespace ", stderr);
  613. ut_print_filename(stderr, space->name);
  614. fprintf(stderr,
  615. " has i/o ops stopped for a long time %lun",
  616. (ulong) count2);
  617. }
  618. mutex_exit(&(system->mutex));
  619. os_thread_sleep(20000);
  620. count2++;
  621. goto retry;
  622. }
  623. /* If the file is already open, no need to do anything; if the space
  624. does not exist, we handle the situation in the function which called
  625. this function */
  626. if (!space || UT_LIST_GET_FIRST(space->chain)->open) {
  627. return;
  628. }
  629. if (count > 1) {
  630. print_info = TRUE;
  631. }
  632. /* Too many files are open, try to close some */
  633. close_more:
  634. success = fil_try_to_close_file_in_LRU(print_info);
  635. if (success && system->n_open >= system->max_n_open) {
  636. goto close_more;
  637. }
  638. if (system->n_open < system->max_n_open) {
  639. /* Ok */
  640. return;
  641. }
  642. if (count >= 2) {
  643. ut_print_timestamp(stderr);
  644. fprintf(stderr,
  645. "  InnoDB: Warning: too many (%lu) files stay open while the maximumn"
  646. "InnoDB: allowed value would be %lu.n"
  647. "InnoDB: You may need to raise the value of innodb_max_files_open inn"
  648. "InnoDB: my.cnf.n", (ulong) system->n_open, (ulong) system->max_n_open);
  649. return;
  650. }
  651. mutex_exit(&(system->mutex));
  652. #ifndef UNIV_HOTBACKUP
  653. /* Wake the i/o-handler threads to make sure pending i/o's are
  654. performed */
  655. os_aio_simulated_wake_handler_threads();
  656. os_thread_sleep(20000);
  657. #endif
  658. /* Flush tablespaces so that we can close modified files in the LRU
  659. list */
  660. fil_flush_file_spaces(FIL_TABLESPACE);
  661. count++;
  662. goto retry;
  663. }
  664. /***********************************************************************
  665. Frees a file node object from a tablespace memory cache. */
  666. static
  667. void
  668. fil_node_free(
  669. /*==========*/
  670. fil_node_t* node, /* in, own: file node */
  671. fil_system_t* system, /* in: tablespace memory cache */
  672. fil_space_t* space) /* in: space where the file node is chained */
  673. {
  674. ut_ad(node && system && space);
  675. #ifdef UNIV_SYNC_DEBUG
  676. ut_ad(mutex_own(&(system->mutex)));
  677. #endif /* UNIV_SYNC_DEBUG */
  678. ut_a(node->magic_n == FIL_NODE_MAGIC_N);
  679. ut_a(node->n_pending == 0);
  680. if (node->open) {
  681. /* We fool the assertion in fil_node_close_file() to think
  682. there are no unflushed modifications in the file */
  683. node->modification_counter = node->flush_counter;
  684. fil_node_close_file(node, system);
  685. }
  686. space->size -= node->size;
  687. UT_LIST_REMOVE(chain, space->chain, node);
  688. mem_free(node->name);
  689. mem_free(node);
  690. }
  691. /********************************************************************
  692. Drops files from the start of a file space, so that its size is cut by
  693. the amount given. */
  694. void
  695. fil_space_truncate_start(
  696. /*=====================*/
  697. ulint id, /* in: space id */
  698. ulint trunc_len) /* in: truncate by this much; it is an error
  699. if this does not equal to the combined size of
  700. some initial files in the space */
  701. {
  702. fil_system_t* system = fil_system;
  703. fil_node_t* node;
  704. fil_space_t* space;
  705. mutex_enter(&(system->mutex));
  706. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  707. ut_a(space);
  708. while (trunc_len > 0) {
  709. node = UT_LIST_GET_FIRST(space->chain);
  710. ut_a(node->size * UNIV_PAGE_SIZE >= trunc_len);
  711. trunc_len -= node->size * UNIV_PAGE_SIZE;
  712. fil_node_free(node, system, space);
  713. }
  714. mutex_exit(&(system->mutex));
  715. }
  716. /***********************************************************************
  717. Creates a space memory object and puts it to the tablespace memory cache. If
  718. there is an error, prints an error message to the .err log. */
  719. ibool
  720. fil_space_create(
  721. /*=============*/
  722. /* out: TRUE if success */
  723. const char* name, /* in: space name */
  724. ulint id, /* in: space id */
  725. ulint purpose)/* in: FIL_TABLESPACE, or FIL_LOG if log */
  726. {
  727. fil_system_t* system = fil_system;
  728. fil_space_t* space;
  729. ulint namesake_id;
  730. try_again:
  731. /*printf(
  732. "InnoDB: Adding tablespace %lu of name %s, purpose %lun", id, name,
  733.   purpose);*/
  734. ut_a(system);
  735. ut_a(name);
  736. mutex_enter(&(system->mutex));
  737. HASH_SEARCH(name_hash, system->name_hash, ut_fold_string(name), space,
  738. 0 == strcmp(name, space->name));
  739. if (space != NULL) {
  740. ut_print_timestamp(stderr);
  741. fprintf(stderr,
  742. "  InnoDB: Warning: trying to init to the tablespace memory cachen"
  743. "InnoDB: a tablespace %lu of name ", (ulong) id);
  744. ut_print_filename(stderr, name);
  745. fprintf(stderr, ",n"
  746. "InnoDB: but a tablespace %lu of the same namen"
  747. "InnoDB: already exists in the tablespace memory cache!n",
  748. (ulong) space->id);
  749. if (id == 0 || purpose != FIL_TABLESPACE) {
  750. mutex_exit(&(system->mutex));
  751. return(FALSE);
  752. }
  753. fprintf(stderr,
  754. "InnoDB: We assume that InnoDB did a crash recovery, and you hadn"
  755. "InnoDB: an .ibd file for which the table did not exist in then"
  756. "InnoDB: InnoDB internal data dictionary in the ibdata files.n"
  757. "InnoDB: We assume that you later removed the .ibd and .frm files,n"
  758. "InnoDB: and are now trying to recreate the table. We now remove then"
  759. "InnoDB: conflicting tablespace object from the memory cache and tryn"
  760. "InnoDB: the init again.n");
  761. namesake_id = space->id;
  762. mutex_exit(&(system->mutex));
  763. fil_space_free(namesake_id);
  764. goto try_again;
  765. }
  766. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  767. if (space != NULL) {
  768. fprintf(stderr,
  769. "InnoDB: Error: trying to add tablespace %lu of name ", (ulong) id);
  770. ut_print_filename(stderr, name);
  771. fprintf(stderr, "n"
  772. "InnoDB: to the tablespace memory cache, but tablespacen"
  773. "InnoDB: %lu of name ", (ulong) space->id);
  774. ut_print_filename(stderr, space->name);
  775. fputs(" already exists in the tablespacen"
  776. "InnoDB: memory cache!n", stderr);
  777. mutex_exit(&(system->mutex));
  778. return(FALSE);
  779. }
  780. space = mem_alloc(sizeof(fil_space_t));
  781. space->name = mem_strdup(name);
  782. space->id = id;
  783. system->tablespace_version++;
  784. space->tablespace_version = system->tablespace_version;
  785. space->mark = FALSE;
  786. if (purpose == FIL_TABLESPACE && id > system->max_assigned_id) {
  787. system->max_assigned_id = id;
  788. }
  789. space->stop_ios = FALSE;
  790. space->stop_ibuf_merges = FALSE;
  791. space->is_being_deleted = FALSE;
  792. space->purpose = purpose;
  793. space->size = 0;
  794. space->n_reserved_extents = 0;
  795. space->n_pending_flushes = 0;
  796. space->n_pending_ibuf_merges = 0;
  797. UT_LIST_INIT(space->chain);
  798. space->magic_n = FIL_SPACE_MAGIC_N;
  799. space->ibuf_data = NULL;
  800. rw_lock_create(&(space->latch));
  801. rw_lock_set_level(&(space->latch), SYNC_FSP);
  802. HASH_INSERT(fil_space_t, hash, system->spaces, id, space);
  803. HASH_INSERT(fil_space_t, name_hash, system->name_hash,
  804. ut_fold_string(name), space);
  805. UT_LIST_ADD_LAST(space_list, system->space_list, space);
  806. mutex_exit(&(system->mutex));
  807. return(TRUE);
  808. }
  809. /***********************************************************************
  810. Assigns a new space id for a new single-table tablespace. This works simply by
  811. incrementing the global counter. If 4 billion id's is not enough, we may need
  812. to recycle id's. */
  813. static
  814. ulint
  815. fil_assign_new_space_id(void)
  816. /*=========================*/
  817. /* out: new tablespace id; ULINT_UNDEFINED if could
  818. not assign an id */
  819. {
  820. fil_system_t* system = fil_system;
  821. ulint id;
  822. mutex_enter(&(system->mutex));
  823. system->max_assigned_id++;
  824. id = system->max_assigned_id;
  825. if (id > (SRV_LOG_SPACE_FIRST_ID / 2) && (id % 1000000UL == 0)) {
  826.         ut_print_timestamp(stderr);
  827.         fprintf(stderr,
  828. "InnoDB: Warning: you are running out of new single-table tablespace id's.n"
  829. "InnoDB: Current counter is %lu and it must not exceed %lu!n"
  830. "InnoDB: To reset the counter to zero you have to dump all your tables andn"
  831. "InnoDB: recreate the whole InnoDB installation.n", (ulong) id,
  832. (ulong) SRV_LOG_SPACE_FIRST_ID);
  833. }
  834. if (id >= SRV_LOG_SPACE_FIRST_ID) {
  835.         ut_print_timestamp(stderr);
  836.         fprintf(stderr,
  837. "InnoDB: You have run out of single-table tablespace id's!n"
  838. "InnoDB: Current counter is %lu.n"
  839. "InnoDB: To reset the counter to zero you have to dump all your tables andn"
  840. "InnoDB: recreate the whole InnoDB installation.n", (ulong) id);
  841. system->max_assigned_id--;
  842. id = ULINT_UNDEFINED;
  843. }
  844. mutex_exit(&(system->mutex));
  845. return(id);
  846. }
  847. /***********************************************************************
  848. Frees a space object from the tablespace memory cache. Closes the files in
  849. the chain but does not delete them. There must not be any pending i/o's or
  850. flushes on the files. */
  851. ibool
  852. fil_space_free(
  853. /*===========*/
  854. /* out: TRUE if success */
  855. ulint id) /* in: space id */
  856. {
  857. fil_system_t* system = fil_system;
  858. fil_space_t* space;
  859. fil_space_t* namespace;
  860. fil_node_t* fil_node;
  861. mutex_enter(&(system->mutex));
  862. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  863. if (!space) {
  864. ut_print_timestamp(stderr);
  865. fprintf(stderr,
  866. "  InnoDB: Error: trying to remove tablespace %lu from the cache butn"
  867. "InnoDB: it is not there.n", (ulong) id);
  868. mutex_exit(&(system->mutex));
  869. return(FALSE);
  870. }
  871. HASH_DELETE(fil_space_t, hash, system->spaces, id, space);
  872. HASH_SEARCH(name_hash, system->name_hash, ut_fold_string(space->name),
  873.     namespace, 0 == strcmp(space->name, namespace->name));
  874. ut_a(namespace);
  875. ut_a(space == namespace);
  876. HASH_DELETE(fil_space_t, name_hash, system->name_hash,
  877.    ut_fold_string(space->name), space);
  878. UT_LIST_REMOVE(space_list, system->space_list, space);
  879. ut_a(space->magic_n == FIL_SPACE_MAGIC_N);
  880. ut_a(0 == space->n_pending_flushes);
  881. fil_node = UT_LIST_GET_FIRST(space->chain);
  882. while (fil_node != NULL) {
  883. fil_node_free(fil_node, system, space);
  884. fil_node = UT_LIST_GET_FIRST(space->chain);
  885. }
  886. ut_a(0 == UT_LIST_GET_LEN(space->chain));
  887. mutex_exit(&(system->mutex));
  888. rw_lock_free(&(space->latch));
  889. mem_free(space->name);
  890. mem_free(space);
  891. return(TRUE);
  892. }
  893. #ifdef UNIV_HOTBACKUP
  894. /***********************************************************************
  895. Returns the tablespace object for a given id, or NULL if not found from the
  896. tablespace memory cache. */
  897. static
  898. fil_space_t*
  899. fil_get_space_for_id_low(
  900. /*=====================*/
  901. /* out: tablespace object or NULL; NOTE that you must
  902. own &(fil_system->mutex) to call this function! */
  903. ulint id) /* in: space id */
  904. {
  905. fil_system_t* system = fil_system;
  906. fil_space_t* space;
  907. ut_ad(system);
  908. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  909. return(space);
  910. }
  911. #endif
  912. /***********************************************************************
  913. Returns the size of the space in pages. The tablespace must be cached in the
  914. memory cache. */
  915. ulint
  916. fil_space_get_size(
  917. /*===============*/
  918. /* out: space size, 0 if space not found */
  919. ulint id) /* in: space id */
  920. {
  921. fil_system_t* system  = fil_system;
  922. fil_node_t* node;
  923. fil_space_t* space;
  924. ulint size;
  925. ut_ad(system);
  926. fil_mutex_enter_and_prepare_for_io(id);
  927. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  928. if (space == NULL) {
  929. mutex_exit(&(system->mutex));
  930. return(0);
  931. }
  932. if (space->size == 0 && space->purpose == FIL_TABLESPACE) {
  933. ut_a(id != 0);
  934. ut_a(1 == UT_LIST_GET_LEN(space->chain));
  935. node = UT_LIST_GET_FIRST(space->chain);
  936. /* It must be a single-table tablespace and we have not opened
  937. the file yet; the following calls will open it and update the
  938. size fields */
  939. fil_node_prepare_for_io(node, system, space);
  940. fil_node_complete_io(node, system, OS_FILE_READ);
  941. }
  942. size = space->size;
  943. mutex_exit(&(system->mutex));
  944. return(size);
  945. }
  946. /***********************************************************************
  947. Checks if the pair space, page_no refers to an existing page in a tablespace
  948. file space. The tablespace must be cached in the memory cache. */
  949. ibool
  950. fil_check_adress_in_tablespace(
  951. /*===========================*/
  952. /* out: TRUE if the address is meaningful */
  953. ulint id, /* in: space id */
  954. ulint page_no)/* in: page number */
  955. {
  956. if (fil_space_get_size(id) > page_no) {
  957. return(TRUE);
  958. }
  959. return(FALSE);
  960. }
  961. /********************************************************************
  962. Creates a the tablespace memory cache. */
  963. static
  964. fil_system_t*
  965. fil_system_create(
  966. /*==============*/
  967. /* out, own: tablespace memory cache */
  968. ulint hash_size, /* in: hash table size */
  969. ulint max_n_open) /* in: maximum number of open files; must be
  970. > 10 */
  971. {
  972. fil_system_t* system;
  973. ut_a(hash_size > 0);
  974. ut_a(max_n_open > 0);
  975. system = mem_alloc(sizeof(fil_system_t));
  976. mutex_create(&(system->mutex));
  977. mutex_set_level(&(system->mutex), SYNC_ANY_LATCH);
  978. system->spaces = hash_create(hash_size);
  979. system->name_hash = hash_create(hash_size);
  980. UT_LIST_INIT(system->LRU);
  981. system->n_open = 0;
  982. system->max_n_open = max_n_open;
  983. system->modification_counter = 0;
  984. system->max_assigned_id = 0;
  985. system->tablespace_version = 0;
  986. UT_LIST_INIT(system->space_list);
  987. return(system);
  988. }
  989. /********************************************************************
  990. Initializes the tablespace memory cache. */
  991. void
  992. fil_init(
  993. /*=====*/
  994. ulint max_n_open) /* in: max number of open files */
  995. {
  996. ut_a(fil_system == NULL);
  997. /*printf("Initializing the tablespace cache with max %lu open filesn",
  998.        max_n_open); */
  999. fil_system = fil_system_create(FIL_SYSTEM_HASH_SIZE, max_n_open);
  1000. }
  1001. /***********************************************************************
  1002. Opens all log files and system tablespace data files. They stay open until the
  1003. database server shutdown. This should be called at a server startup after the
  1004. space objects for the log and the system tablespace have been created. The
  1005. purpose of this operation is to make sure we never run out of file descriptors
  1006. if we need to read from the insert buffer or to write to the log. */
  1007. void
  1008. fil_open_log_and_system_tablespace_files(void)
  1009. /*==========================================*/
  1010. {
  1011. fil_system_t* system = fil_system;
  1012. fil_space_t* space;
  1013. fil_node_t* node;
  1014. mutex_enter(&(system->mutex));
  1015. space = UT_LIST_GET_FIRST(system->space_list);
  1016. while (space != NULL) {
  1017. if (space->purpose != FIL_TABLESPACE || space->id == 0) {
  1018. node = UT_LIST_GET_FIRST(space->chain);
  1019. while (node != NULL) {
  1020. if (!node->open) {
  1021. fil_node_open_file(node, system,
  1022. space);
  1023. }
  1024. if (system->max_n_open < 10 + system->n_open) {
  1025. fprintf(stderr,
  1026. "InnoDB: Warning: you must raise the value of innodb_max_open_files inn"
  1027. "InnoDB: my.cnf! Remember that InnoDB keeps all log files and all systemn"
  1028. "InnoDB: tablespace files open for the whole time mysqld is running, andn"
  1029. "InnoDB: needs to open also some .ibd files if the file-per-table storagen"
  1030. "InnoDB: model is used. Current open files %lu, max allowed open files %lu.n",
  1031.      (ulong) system->n_open,
  1032.      (ulong) system->max_n_open);
  1033. }
  1034. node = UT_LIST_GET_NEXT(chain, node);
  1035. }
  1036. }
  1037. space = UT_LIST_GET_NEXT(space_list, space);
  1038. }
  1039. mutex_exit(&(system->mutex));
  1040. }
  1041. /***********************************************************************
  1042. Closes all open files. There must not be any pending i/o's or not flushed
  1043. modifications in the files. */
  1044. void
  1045. fil_close_all_files(void)
  1046. /*=====================*/
  1047. {
  1048. fil_system_t* system = fil_system;
  1049. fil_space_t* space;
  1050. fil_node_t* node;
  1051. mutex_enter(&(system->mutex));
  1052. space = UT_LIST_GET_FIRST(system->space_list);
  1053. while (space != NULL) {
  1054. node = UT_LIST_GET_FIRST(space->chain);
  1055. while (node != NULL) {
  1056. if (node->open) {
  1057. fil_node_close_file(node, system);
  1058. }
  1059. node = UT_LIST_GET_NEXT(chain, node);
  1060. }
  1061. space = UT_LIST_GET_NEXT(space_list, space);
  1062. }
  1063. mutex_exit(&(system->mutex));
  1064. }
  1065. /***********************************************************************
  1066. Sets the max tablespace id counter if the given number is bigger than the
  1067. previous value. */
  1068. void
  1069. fil_set_max_space_id_if_bigger(
  1070. /*===========================*/
  1071. ulint max_id) /* in: maximum known id */
  1072. {
  1073. fil_system_t* system = fil_system;
  1074. if (max_id >= SRV_LOG_SPACE_FIRST_ID) {
  1075. fprintf(stderr,
  1076. "InnoDB: Fatal error: max tablespace id is too high, %lun", (ulong) max_id);
  1077. ut_a(0);
  1078. }
  1079. mutex_enter(&(system->mutex));
  1080. if (system->max_assigned_id < max_id) {
  1081. system->max_assigned_id = max_id;
  1082. }
  1083. mutex_exit(&(system->mutex));
  1084. }
  1085. /********************************************************************
  1086. Initializes the ibuf data structure for space 0 == the system tablespace.
  1087. This can be called after the file space headers have been created and the
  1088. dictionary system has been initialized. */
  1089. void
  1090. fil_ibuf_init_at_db_start(void)
  1091. /*===========================*/
  1092. {
  1093. fil_space_t* space;
  1094. space = UT_LIST_GET_FIRST(fil_system->space_list);
  1095. ut_a(space);
  1096.         ut_a(space->purpose == FIL_TABLESPACE);
  1097. space->ibuf_data = ibuf_data_init_for_space(space->id);
  1098. }
  1099. /********************************************************************
  1100. Writes the flushed lsn and the latest archived log number to the page header
  1101. of the first page of a data file. */
  1102. static
  1103. ulint
  1104. fil_write_lsn_and_arch_no_to_file(
  1105. /*==============================*/
  1106. ulint space_id, /* in: space number */
  1107. ulint sum_of_sizes, /* in: combined size of previous files in
  1108. space, in database pages */
  1109. dulint lsn, /* in: lsn to write */
  1110. ulint arch_log_no /* in: archived log number to write */
  1111. __attribute__((unused)))
  1112. {
  1113. byte* buf1;
  1114. byte* buf;
  1115. buf1 = mem_alloc(2 * UNIV_PAGE_SIZE);
  1116. buf = ut_align(buf1, UNIV_PAGE_SIZE);
  1117. fil_read(TRUE, space_id, sum_of_sizes, 0, UNIV_PAGE_SIZE, buf, NULL);
  1118. mach_write_to_8(buf + FIL_PAGE_FILE_FLUSH_LSN, lsn);
  1119. fil_write(TRUE, space_id, sum_of_sizes, 0, UNIV_PAGE_SIZE, buf, NULL);
  1120. return(DB_SUCCESS);
  1121. }
  1122. /********************************************************************
  1123. Writes the flushed lsn and the latest archived log number to the page
  1124. header of the first page of each data file in the system tablespace. */
  1125. ulint
  1126. fil_write_flushed_lsn_to_data_files(
  1127. /*================================*/
  1128. /* out: DB_SUCCESS or error number */
  1129. dulint lsn, /* in: lsn to write */
  1130. ulint arch_log_no) /* in: latest archived log file number */
  1131. {
  1132. fil_space_t* space;
  1133. fil_node_t* node;
  1134. ulint sum_of_sizes;
  1135. ulint err;
  1136. mutex_enter(&(fil_system->mutex));
  1137. space = UT_LIST_GET_FIRST(fil_system->space_list);
  1138. while (space) {
  1139. /* We only write the lsn to all existing data files which have
  1140. been open during the lifetime of the mysqld process; they are
  1141. represented by the space objects in the tablespace memory
  1142. cache. Note that all data files in the system tablespace 0 are
  1143. always open. */
  1144. if (space->purpose == FIL_TABLESPACE
  1145.     && space->id == 0) {
  1146. sum_of_sizes = 0;
  1147. node = UT_LIST_GET_FIRST(space->chain);
  1148. while (node) {
  1149. mutex_exit(&(fil_system->mutex));
  1150. err = fil_write_lsn_and_arch_no_to_file(
  1151. space->id, sum_of_sizes,
  1152. lsn, arch_log_no);
  1153. if (err != DB_SUCCESS) {
  1154. return(err);
  1155. }
  1156. mutex_enter(&(fil_system->mutex));
  1157. sum_of_sizes += node->size;
  1158. node = UT_LIST_GET_NEXT(chain, node);
  1159. }
  1160. }
  1161. space = UT_LIST_GET_NEXT(space_list, space);
  1162. }
  1163. mutex_exit(&(fil_system->mutex));
  1164. return(DB_SUCCESS);
  1165. }
  1166. /***********************************************************************
  1167. Reads the flushed lsn and arch no fields from a data file at database
  1168. startup. */
  1169. void
  1170. fil_read_flushed_lsn_and_arch_log_no(
  1171. /*=================================*/
  1172. os_file_t data_file, /* in: open data file */
  1173. ibool one_read_already, /* in: TRUE if min and max parameters
  1174. below already contain sensible data */
  1175. #ifdef UNIV_LOG_ARCHIVE
  1176. ulint* min_arch_log_no, /* in/out: */
  1177. ulint* max_arch_log_no, /* in/out: */
  1178. #endif /* UNIV_LOG_ARCHIVE */
  1179. dulint* min_flushed_lsn, /* in/out: */
  1180. dulint* max_flushed_lsn) /* in/out: */
  1181. {
  1182. byte* buf;
  1183. byte* buf2;
  1184. dulint flushed_lsn;
  1185. buf2 = ut_malloc(2 * UNIV_PAGE_SIZE);
  1186. /* Align the memory for a possible read from a raw device */
  1187. buf = ut_align(buf2, UNIV_PAGE_SIZE);
  1188. os_file_read(data_file, buf, 0, 0, UNIV_PAGE_SIZE);
  1189. flushed_lsn = mach_read_from_8(buf + FIL_PAGE_FILE_FLUSH_LSN);
  1190. ut_free(buf2);
  1191. if (!one_read_already) {
  1192. *min_flushed_lsn = flushed_lsn;
  1193. *max_flushed_lsn = flushed_lsn;
  1194. #ifdef UNIV_LOG_ARCHIVE
  1195. *min_arch_log_no = arch_log_no;
  1196. *max_arch_log_no = arch_log_no;
  1197. #endif /* UNIV_LOG_ARCHIVE */
  1198. return;
  1199. }
  1200. if (ut_dulint_cmp(*min_flushed_lsn, flushed_lsn) > 0) {
  1201. *min_flushed_lsn = flushed_lsn;
  1202. }
  1203. if (ut_dulint_cmp(*max_flushed_lsn, flushed_lsn) < 0) {
  1204. *max_flushed_lsn = flushed_lsn;
  1205. }
  1206. #ifdef UNIV_LOG_ARCHIVE
  1207. if (*min_arch_log_no > arch_log_no) {
  1208. *min_arch_log_no = arch_log_no;
  1209. }
  1210. if (*max_arch_log_no < arch_log_no) {
  1211. *max_arch_log_no = arch_log_no;
  1212. }
  1213. #endif /* UNIV_LOG_ARCHIVE */
  1214. }
  1215. /*================ SINGLE-TABLE TABLESPACES ==========================*/
  1216. /***********************************************************************
  1217. Increments the count of pending insert buffer page merges, if space is not
  1218. being deleted. */
  1219. ibool
  1220. fil_inc_pending_ibuf_merges(
  1221. /*========================*/
  1222. /* out: TRUE if being deleted, and ibuf merges should
  1223. be skipped */
  1224. ulint id) /* in: space id */
  1225. {
  1226. fil_system_t* system = fil_system;
  1227. fil_space_t* space;
  1228. mutex_enter(&(system->mutex));
  1229. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  1230. if (space == NULL) {
  1231. fprintf(stderr,
  1232. "InnoDB: Error: trying to do ibuf merge to a dropped tablespace %lun",
  1233. (ulong) id);
  1234. }
  1235. if (space == NULL || space->stop_ibuf_merges) {
  1236. mutex_exit(&(system->mutex));
  1237. return(TRUE);
  1238. }
  1239. space->n_pending_ibuf_merges++;
  1240. mutex_exit(&(system->mutex));
  1241. return(FALSE);
  1242. }
  1243. /***********************************************************************
  1244. Decrements the count of pending insert buffer page merges. */
  1245. void
  1246. fil_decr_pending_ibuf_merges(
  1247. /*========================*/
  1248. ulint id) /* in: space id */
  1249. {
  1250. fil_system_t* system = fil_system;
  1251. fil_space_t* space;
  1252. mutex_enter(&(system->mutex));
  1253. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  1254. if (space == NULL) {
  1255. fprintf(stderr,
  1256. "InnoDB: Error: decrementing ibuf merge of a dropped tablespace %lun",
  1257. (ulong) id);
  1258. }
  1259. if (space != NULL) {
  1260. space->n_pending_ibuf_merges--;
  1261. }
  1262. mutex_exit(&(system->mutex));
  1263. }
  1264. /************************************************************
  1265. Creates the database directory for a table if it does not exist yet. */
  1266. static
  1267. void
  1268. fil_create_directory_for_tablename(
  1269. /*===============================*/
  1270. const char* name) /* in: name in the standard
  1271. 'databasename/tablename' format */
  1272. {
  1273. const char* namend;
  1274. char* path;
  1275. ulint len;
  1276. len = strlen(fil_path_to_mysql_datadir);
  1277. namend = strchr(name, '/');
  1278. ut_a(namend);
  1279. path = mem_alloc(len + (namend - name) + 2);
  1280. memcpy(path, fil_path_to_mysql_datadir, len);
  1281. path[len] = '/';
  1282. memcpy(path + len + 1, name, namend - name);
  1283. path[len + (namend - name) + 1] = 0;
  1284. srv_normalize_path_for_win(path);
  1285. ut_a(os_file_create_directory(path, FALSE));
  1286. mem_free(path);
  1287. }
  1288. #ifndef UNIV_HOTBACKUP
  1289. /************************************************************
  1290. Writes a log record about an .ibd file create/rename/delete. */
  1291. static
  1292. void
  1293. fil_op_write_log(
  1294. /*=============*/
  1295. ulint type, /* in: MLOG_FILE_CREATE,
  1296. MLOG_FILE_DELETE, or
  1297. MLOG_FILE_RENAME */
  1298. ulint space_id, /* in: space id */
  1299. const char* name, /* in: table name in the familiar
  1300. 'databasename/tablename' format, or
  1301. the file path in the case of
  1302. MLOG_FILE_DELETE */ 
  1303. const char* new_name, /* in: if type is MLOG_FILE_RENAME,
  1304. the new table name in the
  1305. 'databasename/tablename' format */
  1306. mtr_t* mtr) /* in: mini-transaction handle */
  1307. {
  1308. byte* log_ptr;
  1309. log_ptr = mlog_open(mtr, 30);
  1310. log_ptr = mlog_write_initial_log_record_for_file_op(type, space_id, 0,
  1311. log_ptr, mtr);
  1312. /* Let us store the strings as null-terminated for easier readability
  1313. and handling */
  1314. mach_write_to_2(log_ptr, ut_strlen(name) + 1);
  1315. log_ptr += 2;
  1316. mlog_close(mtr, log_ptr);
  1317. mlog_catenate_string(mtr, (byte*) name, ut_strlen(name) + 1);
  1318. if (type == MLOG_FILE_RENAME) {
  1319. log_ptr = mlog_open(mtr, 30);
  1320. mach_write_to_2(log_ptr, ut_strlen(new_name) + 1);
  1321. log_ptr += 2;
  1322. mlog_close(mtr, log_ptr);
  1323. mlog_catenate_string(mtr, (byte*) new_name,
  1324. ut_strlen(new_name) + 1);
  1325. }
  1326. }
  1327. #endif
  1328. /***********************************************************************
  1329. Parses the body of a log record written about an .ibd file operation. That is,
  1330. the log record part after the standard (type, space id, page no) header of the
  1331. log record.
  1332. If desired, also replays the delete or rename operation if the .ibd file
  1333. exists and the space id in it matches. Replays the create operation if a file
  1334. at that path does not exist yet. If the database directory for the file to be
  1335. created does not exist, then we create the directory, too.
  1336. Note that ibbackup --apply-log sets fil_path_to_mysql_datadir to point to the
  1337. datadir that we should use in replaying the file operations. */
  1338. byte*
  1339. fil_op_log_parse_or_replay(
  1340. /*=======================*/
  1341.                          /* out: end of log record, or NULL if the
  1342. record was not completely contained between
  1343. ptr and end_ptr */
  1344.         byte*   ptr,     /* in: buffer containing the log record body,
  1345. or an initial segment of it, if the record does
  1346. not fir completely between ptr and end_ptr */
  1347.         byte*   end_ptr, /* in: buffer end */
  1348. ulint type, /* in: the type of this log record */
  1349. ibool do_replay, /* in: TRUE if we want to replay the
  1350. operation, and not just parse the log record */
  1351. ulint space_id) /* in: if do_replay is TRUE, the space id of
  1352. the tablespace in question; otherwise
  1353. ignored */
  1354. {
  1355. ulint name_len;
  1356. ulint new_name_len;
  1357. const char* name;
  1358. const char* new_name = NULL;
  1359. if (end_ptr < ptr + 2) {
  1360. return(NULL);
  1361. }
  1362. name_len = mach_read_from_2(ptr);
  1363. ptr += 2;
  1364. if (end_ptr < ptr + name_len) {
  1365. return(NULL);
  1366. }
  1367. name = (const char*) ptr;
  1368. ptr += name_len;
  1369. if (type == MLOG_FILE_RENAME) {
  1370. if (end_ptr < ptr + 2) {
  1371. return(NULL);
  1372. }
  1373. new_name_len = mach_read_from_2(ptr);
  1374. ptr += 2;
  1375. if (end_ptr < ptr + new_name_len) {
  1376. return(NULL);
  1377. }
  1378. new_name = (const char*) ptr;
  1379. ptr += new_name_len;
  1380. }
  1381. /* We managed to parse a full log record body */
  1382. /*
  1383. printf("Parsed log rec of type %lu space %lun"
  1384. "name %sn", type, space_id, name);
  1385. if (type == MLOG_FILE_RENAME) {
  1386. printf("new name %sn", new_name);
  1387. }
  1388. */
  1389. if (do_replay == FALSE) {
  1390. return(ptr);
  1391. }
  1392. /* Let us try to perform the file operation, if sensible. Note that
  1393. ibbackup has at this stage already read in all space id info to the
  1394. fil0fil.c data structures.
  1395. NOTE that our algorithm is not guaranteed to work correctly if there
  1396. were renames of tables during the backup. See ibbackup code for more
  1397. on the problem. */
  1398. if (type == MLOG_FILE_DELETE) {
  1399. if (fil_tablespace_exists_in_mem(space_id)) {
  1400. ut_a(fil_delete_tablespace(space_id));
  1401. }
  1402. } else if (type == MLOG_FILE_RENAME) {
  1403. /* We do the rename based on space id, not old file name;
  1404. this should guarantee that after the log replay each .ibd file
  1405. has the correct name for the latest log sequence number; the
  1406. proof is left as an exercise :) */
  1407. if (fil_tablespace_exists_in_mem(space_id)) {
  1408. /* Create the database directory for the new name, if
  1409. it does not exist yet */
  1410. fil_create_directory_for_tablename(new_name);
  1411. /* Rename the table if there is not yet a tablespace
  1412. with the same name */
  1413. if (fil_get_space_id_for_table(new_name)
  1414.     == ULINT_UNDEFINED) {
  1415. /* We do not care of the old name, that is
  1416. why we pass NULL as the first argument */
  1417. ut_a(fil_rename_tablespace(NULL, space_id,
  1418. new_name));
  1419. }
  1420. }
  1421. } else {
  1422. ut_a(type == MLOG_FILE_CREATE);
  1423. if (fil_tablespace_exists_in_mem(space_id)) {
  1424. /* Do nothing */
  1425. } else if (fil_get_space_id_for_table(name) !=
  1426. ULINT_UNDEFINED) {
  1427. /* Do nothing */
  1428. } else {
  1429. /* Create the database directory for name, if it does
  1430. not exist yet */
  1431. fil_create_directory_for_tablename(name);
  1432. ut_a(space_id != 0);
  1433. ut_a(DB_SUCCESS == 
  1434. fil_create_new_single_table_tablespace(
  1435. &space_id, name, FALSE,
  1436. FIL_IBD_FILE_INITIAL_SIZE));
  1437. }
  1438. }
  1439. return(ptr);
  1440. }
  1441. /***********************************************************************
  1442. Deletes a single-table tablespace. The tablespace must be cached in the
  1443. memory cache. */
  1444. ibool
  1445. fil_delete_tablespace(
  1446. /*==================*/
  1447. /* out: TRUE if success */
  1448. ulint id) /* in: space id */
  1449. {
  1450. fil_system_t* system = fil_system;
  1451. ibool success;
  1452. fil_space_t* space;
  1453. fil_node_t* node;
  1454. ulint count = 0;
  1455. char* path;
  1456. ut_a(id != 0);
  1457. stop_ibuf_merges:
  1458. mutex_enter(&(system->mutex));
  1459. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  1460. if (space != NULL) {
  1461. space->stop_ibuf_merges = TRUE;
  1462. if (space->n_pending_ibuf_merges == 0) {
  1463. mutex_exit(&(system->mutex));
  1464. count = 0;
  1465. goto try_again;
  1466. } else {
  1467. if (count > 5000) {
  1468.    ut_print_timestamp(stderr);
  1469.    fputs(
  1470. "  InnoDB: Warning: trying to delete tablespace ", stderr);
  1471.    ut_print_filename(stderr, space->name);
  1472.    fprintf(stderr, ",n"
  1473. "InnoDB: but there are %lu pending ibuf merges on it.n"
  1474. "InnoDB: Loop %lu.n", (ulong) space->n_pending_ibuf_merges,
  1475.    (ulong) count);
  1476. }
  1477. mutex_exit(&(system->mutex));
  1478. os_thread_sleep(20000);
  1479. count++;
  1480. goto stop_ibuf_merges;
  1481. }
  1482. }
  1483. mutex_exit(&(system->mutex));
  1484. count = 0;
  1485. try_again:
  1486. mutex_enter(&(system->mutex));
  1487. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  1488. if (space == NULL) {
  1489. ut_print_timestamp(stderr);
  1490. fprintf(stderr,
  1491. "  InnoDB: Error: cannot delete tablespace %lun"
  1492. "InnoDB: because it is not found in the tablespace memory cache.n",
  1493. (ulong) id);
  1494. mutex_exit(&(system->mutex));
  1495. return(FALSE);
  1496. }
  1497. ut_a(space);
  1498. ut_a(space->n_pending_ibuf_merges == 0);
  1499. space->is_being_deleted = TRUE;
  1500. ut_a(UT_LIST_GET_LEN(space->chain) == 1);
  1501. node = UT_LIST_GET_FIRST(space->chain);
  1502. if (space->n_pending_flushes > 0 || node->n_pending > 0) {
  1503. if (count > 1000) {
  1504. ut_print_timestamp(stderr);
  1505. fputs(
  1506. "  InnoDB: Warning: trying to delete tablespace ", stderr);
  1507. ut_print_filename(stderr, space->name);
  1508. fprintf(stderr, ",n"
  1509. "InnoDB: but there are %lu flushes and %lu pending i/o's on itn"
  1510. "InnoDB: Loop %lu.n", (ulong) space->n_pending_flushes,
  1511. (ulong) node->n_pending,
  1512. (ulong) count);
  1513. }
  1514. mutex_exit(&(system->mutex));
  1515. os_thread_sleep(20000);
  1516. count++;
  1517. goto try_again;
  1518. }
  1519. path = mem_strdup(space->name);
  1520. mutex_exit(&(system->mutex));
  1521. #ifndef UNIV_HOTBACKUP
  1522. /* Invalidate in the buffer pool all pages belonging to the
  1523. tablespace. Since we have set space->is_being_deleted = TRUE, readahead
  1524. or ibuf merge can no longer read more pages of this tablespace to the
  1525. buffer pool. Thus we can clean the tablespace out of the buffer pool
  1526. completely and permanently. The flag is_being_deleted also prevents
  1527. fil_flush() from being applied to this tablespace. */
  1528. buf_LRU_invalidate_tablespace(id);
  1529. #endif
  1530. /* printf("Deleting tablespace %s id %lun", space->name, id); */
  1531. success = fil_space_free(id);
  1532. if (success) {
  1533. success = os_file_delete(path);
  1534. if (!success) {
  1535. success = os_file_delete_if_exists(path);
  1536. }
  1537. }
  1538. if (success) {
  1539. #ifndef UNIV_HOTBACKUP
  1540. /* Write a log record about the deletion of the .ibd
  1541. file, so that ibbackup can replay it in the
  1542. --apply-log phase. We use a dummy mtr and the familiar
  1543. log write mechanism. */
  1544. mtr_t mtr;
  1545. /* When replaying the operation in ibbackup, do not try
  1546. to write any log record */
  1547. mtr_start(&mtr);
  1548. fil_op_write_log(MLOG_FILE_DELETE, id, path, NULL, &mtr);
  1549. mtr_commit(&mtr);
  1550. #endif
  1551. mem_free(path);
  1552. return(TRUE);
  1553. }
  1554. mem_free(path);
  1555. return(FALSE);
  1556. }
  1557. /***********************************************************************
  1558. Discards a single-table tablespace. The tablespace must be cached in the
  1559. memory cache. Discarding is like deleting a tablespace, but
  1560. 1) we do not drop the table from the data dictionary;
  1561. 2) we remove all insert buffer entries for the tablespace immediately; in DROP
  1562. TABLE they are only removed gradually in the background;
  1563. 3) when the user does IMPORT TABLESPACE, the tablespace will have the same id
  1564. as it originally had. */
  1565. ibool
  1566. fil_discard_tablespace(
  1567. /*===================*/
  1568. /* out: TRUE if success */
  1569. ulint id) /* in: space id */
  1570. {
  1571. ibool success;
  1572. success = fil_delete_tablespace(id);
  1573. if (!success) {
  1574. fprintf(stderr,
  1575. "InnoDB: Warning: cannot delete tablespace %lu in DISCARD TABLESPACE.n"
  1576. "InnoDB: But let us remove the insert buffer entries for this tablespace.n",
  1577. (ulong) id); 
  1578. }
  1579. /* Remove all insert buffer entries for the tablespace */
  1580. ibuf_delete_for_discarded_space(id);
  1581. return(TRUE);
  1582. }
  1583. /***********************************************************************
  1584. Renames the memory cache structures of a single-table tablespace. */
  1585. static
  1586. ibool
  1587. fil_rename_tablespace_in_mem(
  1588. /*=========================*/
  1589. /* out: TRUE if success */
  1590. fil_space_t* space, /* in: tablespace memory object */
  1591. fil_node_t* node, /* in: file node of that tablespace */
  1592. const char* path) /* in: new name */
  1593. {
  1594. fil_system_t* system = fil_system;
  1595. fil_space_t* space2;
  1596. const char* old_name = space->name;
  1597. HASH_SEARCH(name_hash, system->name_hash, ut_fold_string(old_name),
  1598.        space2, 0 == strcmp(old_name, space2->name));
  1599. if (space != space2) {
  1600. fputs("InnoDB: Error: cannot find ", stderr);
  1601. ut_print_filename(stderr, old_name);
  1602. fputs(" in tablespace memory cachen", stderr);
  1603. return(FALSE);
  1604. }
  1605. HASH_SEARCH(name_hash, system->name_hash, ut_fold_string(path),
  1606.        space2, 0 == strcmp(path, space2->name));
  1607. if (space2 != NULL) {
  1608. fputs("InnoDB: Error: ", stderr);
  1609. ut_print_filename(stderr, path);
  1610. fputs(" is already in tablespace memory cachen", stderr);
  1611. return(FALSE);
  1612. }
  1613. HASH_DELETE(fil_space_t, name_hash, system->name_hash,
  1614.    ut_fold_string(space->name), space);
  1615. mem_free(space->name);
  1616. mem_free(node->name);
  1617. space->name = mem_strdup(path);
  1618. node->name = mem_strdup(path);
  1619. HASH_INSERT(fil_space_t, name_hash, system->name_hash,
  1620. ut_fold_string(path), space);
  1621. return(TRUE);
  1622. }
  1623. /***********************************************************************
  1624. Allocates a file name for a single-table tablespace. The string must be freed
  1625. by caller with mem_free(). */
  1626. static
  1627. char*
  1628. fil_make_ibd_name(
  1629. /*==============*/
  1630. /* out, own: file name */
  1631. const char* name, /* in: table name or a dir path of a
  1632. TEMPORARY table */
  1633. ibool is_temp) /* in: TRUE if it is a dir path */
  1634. {
  1635. ulint namelen = strlen(name);
  1636. ulint dirlen = strlen(fil_path_to_mysql_datadir);
  1637. char* filename = mem_alloc(namelen + dirlen + sizeof "/.ibd");
  1638. if (is_temp) {
  1639. memcpy(filename, name, namelen);
  1640. memcpy(filename + namelen, ".ibd", sizeof ".ibd");
  1641. } else {
  1642. memcpy(filename, fil_path_to_mysql_datadir, dirlen);
  1643. filename[dirlen] = '/';
  1644. memcpy(filename + dirlen + 1, name, namelen);
  1645. memcpy(filename + dirlen + namelen + 1, ".ibd", sizeof ".ibd");
  1646. }
  1647. srv_normalize_path_for_win(filename);
  1648. return(filename);
  1649. }
  1650. /***********************************************************************
  1651. Renames a single-table tablespace. The tablespace must be cached in the
  1652. tablespace memory cache. */
  1653. ibool
  1654. fil_rename_tablespace(
  1655. /*==================*/
  1656. /* out: TRUE if success */
  1657. const char* old_name, /* in: old table name in the standard
  1658. databasename/tablename format of
  1659. InnoDB, or NULL if we do the rename
  1660. based on the space id only */
  1661. ulint id, /* in: space id */
  1662. const char* new_name) /* in: new table name in the standard
  1663. databasename/tablename format
  1664. of InnoDB */
  1665. {
  1666. fil_system_t* system = fil_system;
  1667. ibool success;
  1668. fil_space_t* space;
  1669. fil_node_t* node;
  1670. ulint count = 0;
  1671. char* path;
  1672. ibool old_name_was_specified  = TRUE;
  1673. char* old_path;
  1674. ut_a(id != 0);
  1675. if (old_name == NULL) {
  1676. old_name = "(name not specified)";
  1677. old_name_was_specified = FALSE;
  1678. }
  1679. retry:
  1680. count++;
  1681. if (count > 1000) {
  1682. ut_print_timestamp(stderr);
  1683. fputs("  InnoDB: Warning: problems renaming ", stderr);
  1684. ut_print_filename(stderr, old_name);
  1685. fputs(" to ", stderr);
  1686. ut_print_filename(stderr, new_name);
  1687. fprintf(stderr, ", %lu iterationsn", (ulong) count);
  1688. }
  1689. mutex_enter(&(system->mutex));
  1690. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  1691. if (space == NULL) {
  1692. fprintf(stderr,
  1693. "InnoDB: Error: cannot find space id %lu from the tablespace memory cachen"
  1694. "InnoDB: though the table ", (ulong) id);
  1695. ut_print_filename(stderr, old_name);
  1696. fputs(" in a rename operation should have that idn", stderr);
  1697. mutex_exit(&(system->mutex));
  1698. return(FALSE);
  1699. }
  1700. if (count > 25000) {
  1701. space->stop_ios = FALSE;
  1702. mutex_exit(&(system->mutex));
  1703. return(FALSE);
  1704. }
  1705. /* We temporarily close the .ibd file because we do not trust that
  1706. operating systems can rename an open file. For the closing we have to
  1707. wait until there are no pending i/o's or flushes on the file. */
  1708. space->stop_ios = TRUE;
  1709. ut_a(UT_LIST_GET_LEN(space->chain) == 1);
  1710. node = UT_LIST_GET_FIRST(space->chain);
  1711. if (node->n_pending > 0 || node->n_pending_flushes > 0) {
  1712. /* There are pending i/o's or flushes, sleep for a while and
  1713. retry */
  1714. mutex_exit(&(system->mutex));
  1715. os_thread_sleep(20000);
  1716. goto retry;
  1717. } else if (node->modification_counter > node->flush_counter) {
  1718. /* Flush the space */
  1719. mutex_exit(&(system->mutex));
  1720. os_thread_sleep(20000);
  1721. fil_flush(id);
  1722. goto retry;
  1723. } else if (node->open) {
  1724. /* Close the file */
  1725. fil_node_close_file(node, system);
  1726. }
  1727. /* Check that the old name in the space is right */
  1728. if (old_name_was_specified) {
  1729. old_path = fil_make_ibd_name(old_name, FALSE);
  1730. ut_a(strcmp(space->name, old_path) == 0);
  1731. ut_a(strcmp(node->name, old_path) == 0);
  1732. } else {
  1733. old_path = mem_strdup(space->name);
  1734. }
  1735. /* Rename the tablespace and the node in the memory cache */
  1736. path = fil_make_ibd_name(new_name, FALSE);
  1737. success = fil_rename_tablespace_in_mem(space, node, path);
  1738. if (success) {
  1739. success = os_file_rename(old_path, path);
  1740. if (!success) {
  1741. /* We have to revert the changes we made
  1742. to the tablespace memory cache */
  1743. ut_a(fil_rename_tablespace_in_mem(space, node,
  1744. old_path));
  1745. }
  1746. }
  1747. mem_free(path);
  1748. mem_free(old_path);
  1749. space->stop_ios = FALSE;
  1750. mutex_exit(&(system->mutex));
  1751. #ifndef UNIV_HOTBACKUP
  1752. if (success) {
  1753. mtr_t mtr;
  1754. mtr_start(&mtr);
  1755. fil_op_write_log(MLOG_FILE_RENAME, id, old_name, new_name,
  1756. &mtr);
  1757. mtr_commit(&mtr);
  1758. }
  1759. #endif
  1760. return(success);
  1761. }
  1762. /***********************************************************************
  1763. Creates a new single-table tablespace to a database directory of MySQL.
  1764. Database directories are under the 'datadir' of MySQL. The datadir is the
  1765. directory of a running mysqld program. We can refer to it by simply the
  1766. path '.'. Tables created with CREATE TEMPORARY TABLE we place in the temp
  1767. dir of the mysqld server. */
  1768. ulint
  1769. fil_create_new_single_table_tablespace(
  1770. /*===================================*/
  1771. /* out: DB_SUCCESS or error code */
  1772. ulint* space_id, /* in/out: space id; if this is != 0,
  1773. then this is an input parameter,
  1774. otherwise output */
  1775. const char* tablename, /* in: the table name in the usual
  1776. databasename/tablename format
  1777. of InnoDB, or a dir path to a temp
  1778. table */
  1779. ibool is_temp, /* in: TRUE if a table created with
  1780. CREATE TEMPORARY TABLE */
  1781. ulint size) /* in: the initial size of the
  1782. tablespace file in pages,
  1783. must be >= FIL_IBD_FILE_INITIAL_SIZE */
  1784. {
  1785. os_file_t       file;
  1786. ibool ret;
  1787. ulint err;
  1788. byte* buf2;
  1789. byte* page;
  1790. ibool success;
  1791. char* path;
  1792. ut_a(size >= FIL_IBD_FILE_INITIAL_SIZE);
  1793. path = fil_make_ibd_name(tablename, is_temp);
  1794. file = os_file_create(path, OS_FILE_CREATE, OS_FILE_NORMAL,
  1795.     OS_DATA_FILE, &ret);
  1796. if (ret == FALSE) {
  1797. ut_print_timestamp(stderr);
  1798. fputs("  InnoDB: Error creating file ", stderr);
  1799. ut_print_filename(stderr, path);
  1800. fputs(".n", stderr);
  1801. /* The following call will print an error message */
  1802.  
  1803. err = os_file_get_last_error(TRUE);
  1804. if (err == OS_FILE_ALREADY_EXISTS) {
  1805.         fputs(
  1806. "InnoDB: The file already exists though the corresponding table did notn"
  1807. "InnoDB: exist in the InnoDB data dictionary. Have you moved InnoDBn"
  1808. "InnoDB: .ibd files around without using the SQL commandsn"
  1809. "InnoDB: DISCARD TABLESPACE and IMPORT TABLESPACE, or didn"
  1810. "InnoDB: mysqld crash in the middle of CREATE TABLE? You cann"
  1811. "InnoDB: resolve the problem by removing the file ", stderr);
  1812. ut_print_filename(stderr, path);
  1813. fputs("n"
  1814. "InnoDB: under the 'datadir' of MySQL.n", stderr);
  1815. mem_free(path);
  1816. return(DB_TABLESPACE_ALREADY_EXISTS);
  1817. }
  1818. if (err == OS_FILE_DISK_FULL) {
  1819. mem_free(path);
  1820. return(DB_OUT_OF_FILE_SPACE);
  1821. }
  1822. mem_free(path);
  1823. return(DB_ERROR);
  1824. }
  1825. buf2 = ut_malloc(2 * UNIV_PAGE_SIZE);
  1826. /* Align the memory for file i/o if we might have O_DIRECT set */
  1827. page = ut_align(buf2, UNIV_PAGE_SIZE);
  1828. ret = os_file_set_size(path, file, size * UNIV_PAGE_SIZE, 0);
  1829. if (!ret) {
  1830. ut_free(buf2);
  1831. os_file_close(file);
  1832. os_file_delete(path);
  1833. mem_free(path);
  1834. return(DB_OUT_OF_FILE_SPACE);
  1835. }
  1836. if (*space_id == 0) {
  1837. *space_id = fil_assign_new_space_id();
  1838. }
  1839. /* printf("Creating tablespace %s id %lun", path, *space_id); */
  1840. if (*space_id == ULINT_UNDEFINED) {
  1841. ut_free(buf2);
  1842. error_exit:
  1843. os_file_close(file);
  1844. error_exit2:
  1845. os_file_delete(path);
  1846. mem_free(path);
  1847. return(DB_ERROR);
  1848. }
  1849. /* We have to write the space id to the file immediately and flush the
  1850. file to disk. This is because in crash recovery we must be aware what
  1851. tablespaces exist and what are their space id's, so that we can apply
  1852. the log records to the right file. It may take quite a while until
  1853. buffer pool flush algorithms write anything to the file and flush it to
  1854. disk. If we would not write here anything, the file would be filled
  1855. with zeros from the call of os_file_set_size(), until a buffer pool
  1856. flush would write to it. */
  1857. memset(page, '', UNIV_PAGE_SIZE);
  1858. fsp_header_write_space_id(page, *space_id);
  1859. buf_flush_init_for_writing(page, ut_dulint_zero, *space_id, 0);
  1860. ret = os_file_write(path, file, page, 0, 0, UNIV_PAGE_SIZE);
  1861. ut_free(buf2);
  1862. if (!ret) {
  1863. fputs(
  1864. "InnoDB: Error: could not write the first page to tablespace ", stderr);
  1865. ut_print_filename(stderr, path);
  1866. putc('n', stderr);
  1867. goto error_exit;
  1868. }
  1869. ret = os_file_flush(file);
  1870. if (!ret) {
  1871. fputs(
  1872. "InnoDB: Error: file flush of tablespace ", stderr);
  1873. ut_print_filename(stderr, path);
  1874. fputs(" failedn", stderr);
  1875. goto error_exit;
  1876. }
  1877. os_file_close(file);
  1878. if (*space_id == ULINT_UNDEFINED) {
  1879. goto error_exit2;
  1880. }
  1881. success = fil_space_create(path, *space_id, FIL_TABLESPACE);
  1882. if (!success) {
  1883. goto error_exit2;
  1884. }
  1885. fil_node_create(path, size, *space_id, FALSE);
  1886. #ifndef UNIV_HOTBACKUP
  1887. {
  1888. mtr_t mtr;
  1889. mtr_start(&mtr);
  1890. fil_op_write_log(MLOG_FILE_CREATE, *space_id, tablename, NULL, &mtr);
  1891. mtr_commit(&mtr);
  1892. }
  1893. #endif
  1894. mem_free(path);
  1895. return(DB_SUCCESS);
  1896. }
  1897. /************************************************************************
  1898. It is possible, though very improbable, that the lsn's in the tablespace to be
  1899. imported have risen above the current system lsn, if a lengthy purge, ibuf
  1900. merge, or rollback was performed on a backup taken with ibbackup. If that is
  1901. the case, reset page lsn's in the file. We assume that mysqld was shut down
  1902. after it performed these cleanup operations on the .ibd file, so that it at
  1903. the shutdown stamped the latest lsn to the FIL_PAGE_FILE_FLUSH_LSN in the
  1904. first page of the .ibd file, and we can determine whether we need to reset the
  1905. lsn's just by looking at that flush lsn. */
  1906. ibool
  1907. fil_reset_too_high_lsns(
  1908. /*====================*/
  1909. /* out: TRUE if success */
  1910. const char* name, /* in: table name in the
  1911. databasename/tablename format */
  1912. dulint current_lsn) /* in: reset lsn's if the lsn stamped
  1913. to FIL_PAGE_FILE_FLUSH_LSN in the
  1914. first page is too high */
  1915. {
  1916. os_file_t file;
  1917. char* filepath;
  1918. byte* page;
  1919. byte* buf2;
  1920. dulint flush_lsn;
  1921. ulint space_id;
  1922. ib_longlong file_size;
  1923. ib_longlong offset;
  1924. ulint page_no;
  1925. ibool success;
  1926. filepath = fil_make_ibd_name(name, FALSE);
  1927. file = os_file_create_simple_no_error_handling(filepath, OS_FILE_OPEN,
  1928. OS_FILE_READ_WRITE, &success);
  1929. if (!success) {
  1930. /* The following call prints an error message */
  1931. os_file_get_last_error(TRUE);
  1932. ut_print_timestamp(stderr);
  1933.         fputs(
  1934. "  InnoDB: Error: trying to open a table, but could notn"
  1935. "InnoDB: open the tablespace file ", stderr);
  1936. ut_print_filename(stderr, filepath);
  1937. fputs("!n", stderr);
  1938. mem_free(filepath);
  1939. return(FALSE);
  1940. }
  1941. /* Read the first page of the tablespace */
  1942. buf2 = ut_malloc(2 * UNIV_PAGE_SIZE);
  1943. /* Align the memory for file i/o if we might have O_DIRECT set */
  1944. page = ut_align(buf2, UNIV_PAGE_SIZE);
  1945. success = os_file_read(file, page, 0, 0, UNIV_PAGE_SIZE);
  1946. if (!success) {
  1947. goto func_exit;
  1948. }
  1949. /* We have to read the file flush lsn from the header of the file */
  1950. flush_lsn = mach_read_from_8(page + FIL_PAGE_FILE_FLUSH_LSN);
  1951. if (ut_dulint_cmp(current_lsn, flush_lsn) >= 0) {
  1952. /* Ok */
  1953. success = TRUE;
  1954. goto func_exit;
  1955. }
  1956. space_id = fsp_header_get_space_id(page);
  1957. ut_print_timestamp(stderr);
  1958. fprintf(stderr,
  1959. " InnoDB: Flush lsn in the tablespace file %lu to be importedn"
  1960. "InnoDB: is %lu %lu, which exceeds current system lsn %lu %lu.n"
  1961. "InnoDB: We reset the lsn's in the file ",
  1962.     (ulong) space_id,
  1963.     (ulong) ut_dulint_get_high(flush_lsn),
  1964.     (ulong) ut_dulint_get_low(flush_lsn),
  1965.     (ulong) ut_dulint_get_high(current_lsn),
  1966.     (ulong) ut_dulint_get_low(current_lsn));
  1967. ut_print_filename(stderr, filepath);
  1968. fputs(".n", stderr);
  1969. /* Loop through all the pages in the tablespace and reset the lsn and
  1970. the page checksum if necessary */
  1971. file_size = os_file_get_size_as_iblonglong(file);
  1972. for (offset = 0; offset < file_size; offset += UNIV_PAGE_SIZE) {
  1973. success = os_file_read(file, page,
  1974. (ulint)(offset & 0xFFFFFFFFUL),
  1975. (ulint)(offset >> 32), UNIV_PAGE_SIZE);
  1976. if (!success) {
  1977. goto func_exit;
  1978. }
  1979. if (ut_dulint_cmp(mach_read_from_8(page + FIL_PAGE_LSN),
  1980.   current_lsn) > 0) {
  1981. /* We have to reset the lsn */
  1982. space_id = mach_read_from_4(page
  1983. + FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID);
  1984. page_no = mach_read_from_4(page + FIL_PAGE_OFFSET);
  1985. buf_flush_init_for_writing(page, current_lsn, space_id,
  1986.       page_no);
  1987. success = os_file_write(filepath, file, page,
  1988. (ulint)(offset & 0xFFFFFFFFUL),
  1989. (ulint)(offset >> 32), UNIV_PAGE_SIZE);
  1990. if (!success) {
  1991. goto func_exit;
  1992. }
  1993. }
  1994. }
  1995. success = os_file_flush(file);
  1996. if (!success) {
  1997. goto func_exit;
  1998. }
  1999. /* We now update the flush_lsn stamp at the start of the file */
  2000. success = os_file_read(file, page, 0, 0, UNIV_PAGE_SIZE);
  2001. if (!success) {
  2002. goto func_exit;
  2003. }
  2004. mach_write_to_8(page + FIL_PAGE_FILE_FLUSH_LSN, current_lsn);
  2005. success = os_file_write(filepath, file, page, 0, 0, UNIV_PAGE_SIZE);
  2006. if (!success) {
  2007. goto func_exit;
  2008. }
  2009. success = os_file_flush(file);
  2010. func_exit:
  2011. os_file_close(file);
  2012. ut_free(buf2);
  2013. mem_free(filepath);
  2014. return(success);
  2015. }
  2016. /************************************************************************
  2017. Tries to open a single-table tablespace and optionally checks the space id is
  2018. right in it. If does not succeed, prints an error message to the .err log. This
  2019. function is used to open a tablespace when we start up mysqld, and also in
  2020. IMPORT TABLESPACE.
  2021. NOTE that we assume this operation is used either at the database startup
  2022. or under the protection of the dictionary mutex, so that two users cannot
  2023. race here. This operation does not leave the file associated with the
  2024. tablespace open, but closes it after we have looked at the space id in it. */
  2025. ibool
  2026. fil_open_single_table_tablespace(
  2027. /*=============================*/
  2028. /* out: TRUE if success */
  2029. ibool check_space_id, /* in: should we check that the space
  2030. id in the file is right; we assume
  2031. that this function runs much faster
  2032. if no check is made, since accessing
  2033. the file inode probably is much
  2034. faster (the OS caches them) than
  2035. accessing the first page of the file */
  2036. ulint id, /* in: space id */
  2037. const char* name) /* in: table name in the
  2038. databasename/tablename format */
  2039. {
  2040. os_file_t file;
  2041. char* filepath;
  2042. ibool success;
  2043. byte* buf2;
  2044. byte* page;
  2045. ulint space_id;
  2046. ibool ret = TRUE;
  2047. filepath = fil_make_ibd_name(name, FALSE);
  2048. file = os_file_create_simple_no_error_handling(filepath, OS_FILE_OPEN,
  2049. OS_FILE_READ_ONLY, &success);
  2050. if (!success) {
  2051. /* The following call prints an error message */
  2052. os_file_get_last_error(TRUE);
  2053. ut_print_timestamp(stderr);
  2054.         fputs(
  2055. "  InnoDB: Error: trying to open a table, but could notn"
  2056. "InnoDB: open the tablespace file ", stderr);
  2057. ut_print_filename(stderr, filepath);
  2058. fputs("!n"
  2059. "InnoDB: Have you moved InnoDB .ibd files around without using then"
  2060. "InnoDB: commands DISCARD TABLESPACE and IMPORT TABLESPACE?n"
  2061. "InnoDB: It is also possible that this is a table created withn"
  2062. "InnoDB: CREATE TEMPORARY TABLE, and MySQL removed the .ibd file for this.n"
  2063. "InnoDB: Please refer ton"
  2064. "InnoDB:"
  2065. " http://dev.mysql.com/doc/mysql/en/InnoDB_troubleshooting_datadict.htmln"
  2066. "InnoDB: how to resolve the issue.n", stderr);
  2067. mem_free(filepath);
  2068. return(FALSE);
  2069. }
  2070. if (!check_space_id) {
  2071. space_id = id;
  2072. goto skip_check;
  2073. }
  2074. /* Read the first page of the tablespace */
  2075. buf2 = ut_malloc(2 * UNIV_PAGE_SIZE);
  2076. /* Align the memory for file i/o if we might have O_DIRECT set */
  2077. page = ut_align(buf2, UNIV_PAGE_SIZE);
  2078. success = os_file_read(file, page, 0, 0, UNIV_PAGE_SIZE);
  2079. /* We have to read the tablespace id from the file */
  2080. space_id = fsp_header_get_space_id(page);
  2081. ut_free(buf2);
  2082. if (space_id != id) {
  2083. ut_print_timestamp(stderr);
  2084.         fputs(
  2085. "  InnoDB: Error: tablespace id in file ", stderr);
  2086. ut_print_filename(stderr, filepath);
  2087. fprintf(stderr, " is %lu, but in the InnoDBn"
  2088. "InnoDB: data dictionary it is %lu.n"
  2089. "InnoDB: Have you moved InnoDB .ibd files around without using then"
  2090. "InnoDB: commands DISCARD TABLESPACE and IMPORT TABLESPACE?n"
  2091. "InnoDB: Please refer ton"
  2092. "InnoDB:"
  2093. " http://dev.mysql.com/doc/mysql/en/InnoDB_troubleshooting_datadict.htmln"
  2094. "InnoDB: how to resolve the issue.n", (ulong) space_id, (ulong) id);
  2095. ret = FALSE;
  2096. goto func_exit;
  2097. }
  2098. skip_check:
  2099. success = fil_space_create(filepath, space_id, FIL_TABLESPACE);
  2100. if (!success) {
  2101. goto func_exit;
  2102. }
  2103. /* We do not measure the size of the file, that is why we pass the 0
  2104. below */
  2105. fil_node_create(filepath, 0, space_id, FALSE);
  2106. func_exit:
  2107. os_file_close(file);
  2108. mem_free(filepath);
  2109. return(ret);
  2110. }
  2111. #ifdef UNIV_HOTBACKUP
  2112. /***********************************************************************
  2113. Allocates a file name for an old version of a single-table tablespace.
  2114. The string must be freed by caller with mem_free()! */
  2115. static
  2116. char*
  2117. fil_make_ibbackup_old_name(
  2118. /*=======================*/
  2119. /* out, own: file name */
  2120. const char* name) /* in: original file name */
  2121. {
  2122. static const char suffix[] = "_ibbackup_old_vers_";
  2123. ulint len = strlen(name);
  2124. char* path = mem_alloc(len + (15 + sizeof suffix));
  2125. memcpy(path, name, len);
  2126. memcpy(path + len, suffix, (sizeof suffix) - 1);
  2127. ut_sprintf_timestamp_without_extra_chars(path + len + sizeof suffix);
  2128. return(path);
  2129. }
  2130. #endif /* UNIV_HOTBACKUP */
  2131. /************************************************************************
  2132. Opens an .ibd file and adds the associated single-table tablespace to the
  2133. InnoDB fil0fil.c data structures. */
  2134. static
  2135. void
  2136. fil_load_single_table_tablespace(
  2137. /*=============================*/
  2138. const char* dbname, /* in: database name */
  2139. const char* filename) /* in: file name (not a path),
  2140. including the .ibd extension */
  2141. {
  2142. os_file_t file;
  2143. char* filepath;
  2144. ibool success;
  2145. byte* buf2;
  2146. byte* page;
  2147. ulint space_id;
  2148. ulint size_low;
  2149. ulint size_high;
  2150. ib_longlong size;
  2151. #ifdef UNIV_HOTBACKUP
  2152. fil_space_t* space;
  2153. #endif
  2154. filepath = mem_alloc(strlen(dbname) + strlen(filename) 
  2155. + strlen(fil_path_to_mysql_datadir) + 3);
  2156. sprintf(filepath, "%s/%s/%s", fil_path_to_mysql_datadir, dbname,
  2157. filename);
  2158. srv_normalize_path_for_win(filepath);
  2159. #ifdef __WIN__
  2160. /* If lower_case_table_names is 0 or 2, then MySQL allows database
  2161. directory names with upper case letters. On Windows, all table and
  2162. database names in InnoDB are internally always in lower case. Put the
  2163. file path to lower case, so that we are consistent with InnoDB's
  2164. internal data dictionary. */
  2165. dict_casedn_str(filepath);
  2166. #endif
  2167. file = os_file_create_simple_no_error_handling(filepath, OS_FILE_OPEN,
  2168. OS_FILE_READ_ONLY, &success);
  2169. if (!success) {
  2170. /* The following call prints an error message */
  2171. os_file_get_last_error(TRUE);
  2172.         fprintf(stderr,
  2173. "InnoDB: Error: could not open single-table tablespace filen"
  2174. "InnoDB: %s!n"
  2175. "InnoDB: We do not continue the crash recovery, because the table may becomen"
  2176. "InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it.n"
  2177. "InnoDB: To fix the problem and start mysqld:n"
  2178. "InnoDB: 1) If there is a permission problem in the file and mysqld cannotn"
  2179. "InnoDB: open the file, you should modify the permissions.n"
  2180. "InnoDB: 2) If the table is not needed, or you can restore it from a backup,n"
  2181. "InnoDB: then you can remove the .ibd file, and InnoDB will do a normaln"
  2182. "InnoDB: crash recovery and ignore that table.n"
  2183. "InnoDB: 3) If the file system or the disk is broken, and you cannot removen"
  2184. "InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnfn"
  2185. "InnoDB: and force InnoDB to continue crash recovery here.n", filepath);
  2186. mem_free(filepath);
  2187. if (srv_force_recovery > 0) {
  2188. fprintf(stderr,
  2189. "InnoDB: innodb_force_recovery was set to %lu. Continuing crash recoveryn"
  2190. "InnoDB: even though we cannot access the .ibd file of this table.n",
  2191. srv_force_recovery);
  2192. return;
  2193. }
  2194. exit(1);
  2195. }
  2196. success = os_file_get_size(file, &size_low, &size_high);
  2197. if (!success) {
  2198. /* The following call prints an error message */
  2199. os_file_get_last_error(TRUE);
  2200.         fprintf(stderr,
  2201. "InnoDB: Error: could not measure the size of single-table tablespace filen"
  2202. "InnoDB: %s!n"
  2203. "InnoDB: We do not continue crash recovery, because the table will becomen"
  2204. "InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it.n"
  2205. "InnoDB: To fix the problem and start mysqld:n"
  2206. "InnoDB: 1) If there is a permission problem in the file and mysqld cannotn"
  2207. "InnoDB: access the file, you should modify the permissions.n"
  2208. "InnoDB: 2) If the table is not needed, or you can restore it from a backup,n"
  2209. "InnoDB: then you can remove the .ibd file, and InnoDB will do a normaln"
  2210. "InnoDB: crash recovery and ignore that table.n"
  2211. "InnoDB: 3) If the file system or the disk is broken, and you cannot removen"
  2212. "InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnfn"
  2213. "InnoDB: and force InnoDB to continue crash recovery here.n", filepath);
  2214. os_file_close(file);
  2215. mem_free(filepath);
  2216. if (srv_force_recovery > 0) {
  2217. fprintf(stderr,
  2218. "InnoDB: innodb_force_recovery was set to %lu. Continuing crash recoveryn"
  2219. "InnoDB: even though we cannot access the .ibd file of this table.n",
  2220. srv_force_recovery);
  2221. return;
  2222. }
  2223. exit(1);
  2224. }
  2225. /* TODO: What to do in other cases where we cannot access an .ibd
  2226. file during a crash recovery? */
  2227. /* Every .ibd file is created >= 4 pages in size. Smaller files
  2228. cannot be ok. */
  2229. size = (((ib_longlong)size_high) << 32) + (ib_longlong)size_low;
  2230. #ifndef UNIV_HOTBACKUP
  2231. if (size < FIL_IBD_FILE_INITIAL_SIZE * UNIV_PAGE_SIZE) {
  2232.         fprintf(stderr,
  2233. "InnoDB: Error: the size of single-table tablespace file %sn"
  2234. "InnoDB: is only %lu %lu, should be at least %lu!", filepath,
  2235. (ulong) size_high,
  2236. (ulong) size_low, (ulong) (4 * UNIV_PAGE_SIZE));
  2237. os_file_close(file);
  2238. mem_free(filepath);
  2239. return;
  2240. }
  2241. #endif
  2242. /* Read the first page of the tablespace if the size big enough */
  2243. buf2 = ut_malloc(2 * UNIV_PAGE_SIZE);
  2244. /* Align the memory for file i/o if we might have O_DIRECT set */
  2245. page = ut_align(buf2, UNIV_PAGE_SIZE);
  2246. if (size >= FIL_IBD_FILE_INITIAL_SIZE * UNIV_PAGE_SIZE) {
  2247. success = os_file_read(file, page, 0, 0, UNIV_PAGE_SIZE);
  2248. /* We have to read the tablespace id from the file */
  2249. space_id = fsp_header_get_space_id(page);
  2250. } else {
  2251. space_id = ULINT_UNDEFINED;
  2252. }
  2253. #ifndef UNIV_HOTBACKUP
  2254. if (space_id == ULINT_UNDEFINED || space_id == 0) {
  2255.         fprintf(stderr,
  2256. "InnoDB: Error: tablespace id %lu in file %s is not sensiblen",
  2257. (ulong) space_id,
  2258. filepath);
  2259. goto func_exit;
  2260. }
  2261. #else
  2262. if (space_id == ULINT_UNDEFINED || space_id == 0) {
  2263. char* new_path;
  2264. fprintf(stderr,
  2265. "InnoDB: Renaming tablespace %s of id %lu,n"
  2266. "InnoDB: to %s_ibbackup_old_vers_<timestamp>n"
  2267. "InnoDB: because its size %lld is too small (< 4 pages 16 kB each),n"
  2268. "InnoDB: or the space id in the file header is not sensible.n"
  2269. "InnoDB: This can happen in an ibbackup run, and is not dangerous.n",
  2270. filepath, space_id, filepath, size);
  2271. os_file_close(file);
  2272. new_path = fil_make_ibbackup_old_name(filepath);
  2273. ut_a(os_file_rename(filepath, new_path));
  2274. ut_free(buf2);
  2275. mem_free(filepath);
  2276. mem_free(new_path);
  2277. return;
  2278. }
  2279. /* A backup may contain the same space several times, if the space got
  2280. renamed at a sensitive time. Since it is enough to have one version of
  2281. the space, we rename the file if a space with the same space id
  2282. already exists in the tablespace memory cache. We rather rename the
  2283. file than delete it, because if there is a bug, we do not want to
  2284. destroy valuable data. */
  2285. mutex_enter(&(fil_system->mutex));
  2286. space = fil_get_space_for_id_low(space_id);
  2287. if (space) {
  2288. char* new_path;
  2289. fprintf(stderr,
  2290. "InnoDB: Renaming tablespace %s of id %lu,n"
  2291. "InnoDB: to %s_ibbackup_old_vers_<timestamp>n"
  2292. "InnoDB: because space %s with the same idn"
  2293. "InnoDB: was scanned earlier. This can happen if you have renamed tablesn"
  2294. "InnoDB: during an ibbackup run.n", filepath, space_id, filepath,
  2295. space->name);
  2296. os_file_close(file);
  2297. new_path = fil_make_ibbackup_old_name(filepath);
  2298. mutex_exit(&(fil_system->mutex));
  2299. ut_a(os_file_rename(filepath, new_path));
  2300. ut_free(buf2);
  2301. mem_free(filepath);
  2302. mem_free(new_path);
  2303. return;
  2304. }
  2305. mutex_exit(&(fil_system->mutex));
  2306. #endif
  2307. success = fil_space_create(filepath, space_id, FIL_TABLESPACE);
  2308. if (!success) {
  2309. goto func_exit;
  2310. }
  2311. /* We do not use the size information we have about the file, because
  2312. the rounding formula for extents and pages is somewhat complex; we
  2313. let fil_node_open() do that task. */
  2314. fil_node_create(filepath, 0, space_id, FALSE);
  2315. func_exit:
  2316. os_file_close(file);
  2317. ut_free(buf2);
  2318. mem_free(filepath);
  2319. }
  2320. /***************************************************************************
  2321. A fault-tolerant function that tries to read the next file name in the
  2322. directory. We retry 100 times if os_file_readdir_next_file() returns -1. The
  2323. idea is to read as much good data as we can and jump over bad data. */
  2324. static
  2325. int
  2326. fil_file_readdir_next_file(
  2327. /*=======================*/
  2328. /* out: 0 if ok, -1 if error even after the
  2329. retries, 1 if at the end of the directory */
  2330. ulint* err, /* out: this is set to DB_ERROR if an error
  2331. was encountered, otherwise not changed */
  2332. const char* dirname,/* in: directory name or path */
  2333. os_file_dir_t dir, /* in: directory stream */
  2334. os_file_stat_t* info) /* in/out: buffer where the info is returned */
  2335. {
  2336. ulint i;
  2337. int ret;
  2338. for (i = 0; i < 100; i++) {
  2339. ret = os_file_readdir_next_file(dirname, dir, info);
  2340. if (ret != -1) {
  2341. return(ret);
  2342. }
  2343. fprintf(stderr,
  2344. "InnoDB: Error: os_file_readdir_next_file() returned -1 inn"
  2345. "InnoDB: directory %sn"
  2346. "InnoDB: Crash recovery may have failed for some .ibd files!n", dirname);
  2347. *err = DB_ERROR;
  2348. }
  2349. return(-1);
  2350. }
  2351. /************************************************************************
  2352. At the server startup, if we need crash recovery, scans the database
  2353. directories under the MySQL datadir, looking for .ibd files. Those files are
  2354. single-table tablespaces. We need to know the space id in each of them so that
  2355. we know into which file we should look to check the contents of a page stored
  2356. in the doublewrite buffer, also to know where to apply log records where the
  2357. space id is != 0. */
  2358. ulint
  2359. fil_load_single_table_tablespaces(void)
  2360. /*===================================*/
  2361. /* out: DB_SUCCESS or error number */
  2362. {
  2363. int ret;
  2364. char* dbpath = NULL;
  2365. ulint dbpath_len = 100;
  2366. os_file_dir_t dir;
  2367. os_file_dir_t dbdir;
  2368. os_file_stat_t dbinfo;
  2369. os_file_stat_t fileinfo;
  2370. ulint err  = DB_SUCCESS;
  2371. /* The datadir of MySQL is always the default directory of mysqld */
  2372. dir = os_file_opendir(fil_path_to_mysql_datadir, TRUE);
  2373. if (dir == NULL) {
  2374. return(DB_ERROR);
  2375. }
  2376. dbpath = mem_alloc(dbpath_len);
  2377. /* Scan all directories under the datadir. They are the database
  2378. directories of MySQL. */
  2379. ret = fil_file_readdir_next_file(&err, fil_path_to_mysql_datadir, dir,
  2380. &dbinfo);
  2381. while (ret == 0) {
  2382. ulint len;
  2383. /* printf("Looking at %s in datadirn", dbinfo.name); */
  2384. if (dbinfo.type == OS_FILE_TYPE_FILE
  2385.     || dbinfo.type == OS_FILE_TYPE_UNKNOWN) {
  2386.         goto next_datadir_item;
  2387. }
  2388. /* We found a symlink or a directory; try opening it to see
  2389. if a symlink is a directory */
  2390. len = strlen(fil_path_to_mysql_datadir)
  2391. + strlen (dbinfo.name) + 2;
  2392. if (len > dbpath_len) {
  2393. dbpath_len = len;
  2394. if (dbpath) {
  2395. mem_free(dbpath);
  2396. }
  2397. dbpath = mem_alloc(dbpath_len);
  2398. }
  2399. sprintf(dbpath, "%s/%s", fil_path_to_mysql_datadir,
  2400. dbinfo.name);
  2401. srv_normalize_path_for_win(dbpath);
  2402. dbdir = os_file_opendir(dbpath, FALSE);
  2403. if (dbdir != NULL) {
  2404. /* printf("Opened dir %sn", dbinfo.name); */
  2405. /* We found a database directory; loop through it,
  2406. looking for possible .ibd files in it */
  2407. ret = fil_file_readdir_next_file(&err, dbpath, dbdir,
  2408. &fileinfo);
  2409. while (ret == 0) {
  2410. /* printf(
  2411. "     Looking at file %sn", fileinfo.name); */
  2412.         if (fileinfo.type == OS_FILE_TYPE_DIR) {
  2413.         goto next_file_item;
  2414. }
  2415. /* We found a symlink or a file */
  2416. if (strlen(fileinfo.name) > 4
  2417.     && 0 == strcmp(fileinfo.name + 
  2418. strlen(fileinfo.name) - 4,
  2419. ".ibd")) {
  2420.         /* The name ends in .ibd; try opening
  2421. the file */
  2422. fil_load_single_table_tablespace(
  2423. dbinfo.name, fileinfo.name);
  2424. }
  2425. next_file_item:
  2426. ret = fil_file_readdir_next_file(&err,
  2427. dbpath, dbdir,
  2428. &fileinfo);
  2429. }
  2430. if (0 != os_file_closedir(dbdir)) {
  2431. fputs(
  2432. "InnoDB: Warning: could not close database directory ", stderr);
  2433. ut_print_filename(stderr, dbpath);
  2434. putc('n', stderr);
  2435. err = DB_ERROR;
  2436. }
  2437. }
  2438. next_datadir_item:
  2439. ret = fil_file_readdir_next_file(&err,
  2440. fil_path_to_mysql_datadir,
  2441. dir, &dbinfo);
  2442. }
  2443. mem_free(dbpath);
  2444. if (0 != os_file_closedir(dir)) {
  2445. fprintf(stderr,
  2446. "InnoDB: Error: could not close MySQL datadirn");
  2447. return(DB_ERROR);
  2448. }
  2449. return(err);
  2450. }
  2451. /************************************************************************
  2452. If we need crash recovery, and we have called
  2453. fil_load_single_table_tablespaces() and dict_load_single_table_tablespaces(),
  2454. we can call this function to print an error message of orphaned .ibd files
  2455. for which there is not a data dictionary entry with a matching table name
  2456. and space id. */
  2457. void
  2458. fil_print_orphaned_tablespaces(void)
  2459. /*================================*/
  2460. {
  2461. fil_system_t* system  = fil_system;
  2462. fil_space_t* space;
  2463. mutex_enter(&(system->mutex));
  2464. space = UT_LIST_GET_FIRST(system->space_list);
  2465. while (space) {
  2466.         if (space->purpose == FIL_TABLESPACE && space->id != 0
  2467.   && !space->mark) {
  2468. fputs("InnoDB: Warning: tablespace ", stderr);
  2469. ut_print_filename(stderr, space->name);
  2470. fprintf(stderr, " of id %lu has no matching table inn"
  2471. "InnoDB: the InnoDB data dictionary.n", (ulong) space->id);
  2472. }
  2473. space = UT_LIST_GET_NEXT(space_list, space);
  2474. }
  2475. mutex_exit(&(system->mutex));
  2476. }
  2477. /***********************************************************************
  2478. Returns TRUE if a single-table tablespace does not exist in the memory cache,
  2479. or is being deleted there. */
  2480. ibool
  2481. fil_tablespace_deleted_or_being_deleted_in_mem(
  2482. /*===========================================*/
  2483. /* out: TRUE if does not exist or is being
  2484. deleted */
  2485. ulint id, /* in: space id */
  2486. ib_longlong version)/* in: tablespace_version should be this; if
  2487. you pass -1 as the value of this, then this
  2488. parameter is ignored */
  2489. {
  2490. fil_system_t* system = fil_system;
  2491. fil_space_t* space;
  2492. ut_ad(system);
  2493. mutex_enter(&(system->mutex));
  2494. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  2495. if (space == NULL || space->is_being_deleted) {
  2496. mutex_exit(&(system->mutex));
  2497. return(TRUE);
  2498. }
  2499. if (version != ((ib_longlong)-1)
  2500. && space->tablespace_version != version) {
  2501. mutex_exit(&(system->mutex));
  2502. return(TRUE);
  2503. }
  2504. mutex_exit(&(system->mutex));
  2505. return(FALSE);
  2506. }
  2507. /***********************************************************************
  2508. Returns TRUE if a single-table tablespace exists in the memory cache. */
  2509. ibool
  2510. fil_tablespace_exists_in_mem(
  2511. /*=========================*/
  2512. /* out: TRUE if exists */
  2513. ulint id) /* in: space id */
  2514. {
  2515. fil_system_t* system = fil_system;
  2516. fil_space_t* space;
  2517. ut_ad(system);
  2518. mutex_enter(&(system->mutex));
  2519. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  2520. if (space == NULL) {
  2521. mutex_exit(&(system->mutex));
  2522. return(FALSE);
  2523. }
  2524. mutex_exit(&(system->mutex));
  2525. return(TRUE);
  2526. }
  2527. /***********************************************************************
  2528. Returns TRUE if a matching tablespace exists in the InnoDB tablespace memory
  2529. cache. Note that if we have not done a crash recovery at the database startup,
  2530. there may be many tablespaces which are not yet in the memory cache. */
  2531. ibool
  2532. fil_space_for_table_exists_in_mem(
  2533. /*==============================*/
  2534. /* out: TRUE if a matching tablespace
  2535. exists in the memory cache */
  2536. ulint id, /* in: space id */
  2537. const char* name, /* in: table name in the standard
  2538. 'databasename/tablename' format or
  2539. the dir path to a temp table */
  2540. ibool is_temp, /* in: TRUE if created with CREATE
  2541. TEMPORARY TABLE */
  2542. ibool mark_space, /* in: in crash recovery, at database
  2543. startup we mark all spaces which have
  2544. an associated table in the InnoDB
  2545. data dictionary, so that
  2546. we can print a warning about orphaned
  2547. tablespaces */
  2548. ibool print_error_if_does_not_exist)
  2549. /* in: print detailed error
  2550. information to the .err log if a
  2551. matching tablespace is not found from
  2552. memory */
  2553. {
  2554. fil_system_t* system = fil_system;
  2555. fil_space_t* namespace;
  2556. fil_space_t* space;
  2557. char* path;
  2558. ut_ad(system);
  2559. mutex_enter(&(system->mutex));
  2560. path = fil_make_ibd_name(name, is_temp);
  2561. /* Look if there is a space with the same id */
  2562. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  2563. /* Look if there is a space with the same name; the name is the
  2564. directory path from the datadir to the file */
  2565. HASH_SEARCH(name_hash, system->name_hash,
  2566. ut_fold_string(path), namespace,
  2567. 0 == strcmp(namespace->name, path));
  2568. if (space && space == namespace) {
  2569. /* Found */
  2570. if (mark_space) {
  2571. space->mark = TRUE;
  2572. }
  2573. mem_free(path);
  2574. mutex_exit(&(system->mutex));
  2575. return(TRUE);
  2576. }
  2577. if (!print_error_if_does_not_exist) {
  2578. mem_free(path);
  2579. mutex_exit(&(system->mutex));
  2580. return(FALSE);
  2581. }
  2582. if (space == NULL) {
  2583. if (namespace == NULL) {
  2584.         ut_print_timestamp(stderr);
  2585. fputs("  InnoDB: Error: table ", stderr);
  2586. ut_print_filename(stderr, name);
  2587. fprintf(stderr, "n"
  2588. "InnoDB: in InnoDB data dictionary has tablespace id %lu,n"
  2589. "InnoDB: but tablespace with that id or name does not exist. Haven"
  2590. "InnoDB: you deleted or moved .ibd files?n"
  2591. "InnoDB: This may also be a table created with CREATE TEMPORARY TABLEn"
  2592. "InnoDB: whose .ibd and .frm files MySQL automatically removed, but then"
  2593. "InnoDB: table still exists in the InnoDB internal data dictionary.n",
  2594. (ulong) id);
  2595. } else {
  2596.         ut_print_timestamp(stderr);
  2597. fputs("  InnoDB: Error: table ", stderr);
  2598. ut_print_filename(stderr, name);
  2599. fprintf(stderr, "n"
  2600. "InnoDB: in InnoDB data dictionary has tablespace id %lu,n"
  2601. "InnoDB: but tablespace with that id does not exist. There isn"
  2602. "InnoDB: a tablespace of name %s and id %lu, though. Haven"
  2603. "InnoDB: you deleted or moved .ibd files?n",
  2604. (ulong) id, namespace->name,
  2605. (ulong) namespace->id);
  2606. }
  2607. error_exit:
  2608. fputs(
  2609. "InnoDB: Please refer ton"
  2610. "InnoDB:"
  2611. " http://dev.mysql.com/doc/mysql/en/InnoDB_troubleshooting_datadict.htmln"
  2612. "InnoDB: how to resolve the issue.n", stderr);
  2613. mem_free(path);
  2614. mutex_exit(&(system->mutex));
  2615. return(FALSE);
  2616. }
  2617. if (0 != strcmp(space->name, path)) {
  2618. ut_print_timestamp(stderr);
  2619. fputs("  InnoDB: Error: table ", stderr);
  2620. ut_print_filename(stderr, name);
  2621. fprintf(stderr, "n"
  2622. "InnoDB: in InnoDB data dictionary has tablespace id %lu,n"
  2623. "InnoDB: but tablespace with that id has name %s.n"
  2624. "InnoDB: Have you deleted or moved .ibd files?n", (ulong) id, space->name);
  2625. if (namespace != NULL) {
  2626. fputs(
  2627. "InnoDB: There is a tablespace with the right namen"
  2628. "InnoDB: ", stderr);
  2629. ut_print_filename(stderr, namespace->name);
  2630. fprintf(stderr, ", but its id is %lu.n",
  2631. (ulong) namespace->id);
  2632. }
  2633. goto error_exit;
  2634. }
  2635. mem_free(path);
  2636. mutex_exit(&(system->mutex));
  2637. return(FALSE);
  2638. }
  2639. /***********************************************************************
  2640. Checks if a single-table tablespace for a given table name exists in the
  2641. tablespace memory cache. */
  2642. static
  2643. ulint
  2644. fil_get_space_id_for_table(
  2645. /*=======================*/
  2646. /* out: space id, ULINT_UNDEFINED if not
  2647. found */
  2648. const char* name) /* in: table name in the standard
  2649. 'databasename/tablename' format */
  2650. {
  2651. fil_system_t* system = fil_system;
  2652. fil_space_t* namespace;
  2653. ulint id = ULINT_UNDEFINED;
  2654. char* path;
  2655. ut_ad(system);
  2656. mutex_enter(&(system->mutex));
  2657. path = fil_make_ibd_name(name, FALSE);
  2658. /* Look if there is a space with the same name; the name is the
  2659. directory path to the file */
  2660. HASH_SEARCH(name_hash, system->name_hash,
  2661. ut_fold_string(path), namespace,
  2662. 0 == strcmp(namespace->name, path));
  2663. if (namespace) {
  2664. id = namespace->id;
  2665. }
  2666. mem_free(path);
  2667. mutex_exit(&(system->mutex));
  2668. return(id);
  2669. }
  2670. /**************************************************************************
  2671. Tries to extend a data file so that it would accommodate the number of pages
  2672. given. The tablespace must be cached in the memory cache. If the space is big
  2673. enough already, does nothing. */
  2674. ibool
  2675. fil_extend_space_to_desired_size(
  2676. /*=============================*/
  2677. /* out: TRUE if success */
  2678. ulint* actual_size, /* out: size of the space after extension;
  2679. if we ran out of disk space this may be lower
  2680. than the desired size */
  2681. ulint space_id, /* in: space id */
  2682. ulint size_after_extend)/* in: desired size in pages after the
  2683. extension; if the current space size is bigger
  2684. than this already, the function does nothing */
  2685. {
  2686. fil_system_t* system = fil_system;
  2687. fil_node_t* node;
  2688. fil_space_t* space;
  2689. byte* buf2;
  2690. byte* buf;
  2691. ulint buf_size;
  2692. ulint start_page_no;
  2693. ulint file_start_page_no;
  2694. ulint offset_high;
  2695. ulint offset_low;
  2696. ibool success = TRUE;
  2697. fil_mutex_enter_and_prepare_for_io(space_id);
  2698. HASH_SEARCH(hash, system->spaces, space_id, space,
  2699. space->id == space_id);
  2700. ut_a(space);
  2701. if (space->size >= size_after_extend) {
  2702. /* Space already big enough */
  2703. *actual_size = space->size;
  2704. mutex_exit(&(system->mutex));
  2705. return(TRUE);
  2706. }
  2707. node = UT_LIST_GET_LAST(space->chain);
  2708. fil_node_prepare_for_io(node, system, space);
  2709. start_page_no = space->size;
  2710. file_start_page_no = space->size - node->size;
  2711. /* Extend at most 64 pages at a time */
  2712. buf_size = ut_min(64, size_after_extend - start_page_no)
  2713. * UNIV_PAGE_SIZE;
  2714. buf2 = mem_alloc(buf_size + UNIV_PAGE_SIZE);
  2715. buf = ut_align(buf2, UNIV_PAGE_SIZE);
  2716. memset(buf, 0, buf_size);
  2717. while (start_page_no < size_after_extend) {
  2718. ulint n_pages = ut_min(buf_size / UNIV_PAGE_SIZE,
  2719. size_after_extend - start_page_no);
  2720. offset_high = (start_page_no - file_start_page_no)
  2721. / (4096 * ((1024 * 1024) / UNIV_PAGE_SIZE));
  2722. offset_low  = ((start_page_no - file_start_page_no)
  2723. % (4096 * ((1024 * 1024) / UNIV_PAGE_SIZE)))
  2724.       * UNIV_PAGE_SIZE;
  2725. #ifdef UNIV_HOTBACKUP
  2726. success = os_file_write(node->name, node->handle, buf,
  2727. offset_low, offset_high,
  2728. UNIV_PAGE_SIZE * n_pages);
  2729. #else
  2730. success = os_aio(OS_FILE_WRITE, OS_AIO_SYNC,
  2731. node->name, node->handle, buf,
  2732. offset_low, offset_high,
  2733. UNIV_PAGE_SIZE * n_pages,
  2734. NULL, NULL);
  2735. #endif
  2736. if (success) {
  2737. node->size += n_pages;
  2738. space->size += n_pages;
  2739. os_has_said_disk_full = FALSE;
  2740. } else {
  2741. /* Let us measure the size of the file to determine
  2742. how much we were able to extend it */
  2743. n_pages = ((ulint)
  2744. (os_file_get_size_as_iblonglong(node->handle)
  2745. / UNIV_PAGE_SIZE)) - node->size;
  2746. node->size += n_pages;
  2747. space->size += n_pages;
  2748. break;
  2749. }
  2750. start_page_no += n_pages;
  2751. }
  2752. mem_free(buf2);
  2753. fil_node_complete_io(node, system, OS_FILE_WRITE);
  2754. *actual_size = space->size;
  2755. if (space_id == 0) {
  2756. ulint pages_per_mb = (1024 * 1024) / UNIV_PAGE_SIZE;
  2757. /* Keep the last data file size info up to date, rounded to
  2758. full megabytes */
  2759. srv_data_file_sizes[srv_n_data_files - 1] =
  2760. (node->size / pages_per_mb) * pages_per_mb;
  2761. }
  2762. /*
  2763.         printf("Extended %s to %lu, actual size %lu pagesn", space->name,
  2764.                                         size_after_extend, *actual_size); */
  2765. mutex_exit(&(system->mutex));
  2766. fil_flush(space_id);
  2767. return(success);
  2768. }
  2769. #ifdef UNIV_HOTBACKUP
  2770. /************************************************************************
  2771. Extends all tablespaces to the size stored in the space header. During the
  2772. ibbackup --apply-log phase we extended the spaces on-demand so that log records
  2773. could be applied, but that may have left spaces still too small compared to
  2774. the size stored in the space header. */
  2775. void
  2776. fil_extend_tablespaces_to_stored_len(void)
  2777. /*======================================*/
  2778. {
  2779. fil_system_t* system  = fil_system;
  2780. fil_space_t* space;
  2781. byte* buf;
  2782. ulint actual_size;
  2783. ulint size_in_header;
  2784. ulint error;
  2785. ibool success;
  2786. buf = mem_alloc(UNIV_PAGE_SIZE);
  2787. mutex_enter(&(system->mutex));
  2788. space = UT_LIST_GET_FIRST(system->space_list);
  2789. while (space) {
  2790.         ut_a(space->purpose == FIL_TABLESPACE);
  2791. mutex_exit(&(system->mutex)); /* no need to protect with a
  2792.       mutex, because this is a single-
  2793.       threaded operation */
  2794. error = fil_read(TRUE, space->id, 0, 0, UNIV_PAGE_SIZE, buf,
  2795. NULL);
  2796. ut_a(error == DB_SUCCESS);
  2797. size_in_header = fsp_get_size_low(buf);
  2798. success = fil_extend_space_to_desired_size(&actual_size,
  2799. space->id, size_in_header);
  2800. if (!success) {
  2801. fprintf(stderr,
  2802. "InnoDB: Error: could not extend the tablespace of %sn"
  2803. "InnoDB: to the size stored in header, %lu pages;n"
  2804. "InnoDB: size after extension %lu pagesn"
  2805. "InnoDB: Check that you have free disk space and retry!n", space->name,
  2806. size_in_header, actual_size);
  2807. exit(1);
  2808. }
  2809. mutex_enter(&(system->mutex));
  2810. space = UT_LIST_GET_NEXT(space_list, space);
  2811. }
  2812. mutex_exit(&(system->mutex));
  2813. mem_free(buf);
  2814. }
  2815. #endif
  2816. /*========== RESERVE FREE EXTENTS (for a B-tree split, for example) ===*/
  2817. /***********************************************************************
  2818. Tries to reserve free extents in a file space. */
  2819. ibool
  2820. fil_space_reserve_free_extents(
  2821. /*===========================*/
  2822. /* out: TRUE if succeed */
  2823. ulint id, /* in: space id */
  2824. ulint n_free_now, /* in: number of free extents now */
  2825. ulint n_to_reserve) /* in: how many one wants to reserve */
  2826. {
  2827. fil_system_t* system = fil_system;
  2828. fil_space_t* space;
  2829. ibool success;
  2830. ut_ad(system);
  2831. mutex_enter(&(system->mutex));
  2832. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  2833. ut_a(space);
  2834. if (space->n_reserved_extents + n_to_reserve > n_free_now) {
  2835. success = FALSE;
  2836. } else {
  2837. space->n_reserved_extents += n_to_reserve;
  2838. success = TRUE;
  2839. }
  2840. mutex_exit(&(system->mutex));
  2841. return(success);
  2842. }
  2843. /***********************************************************************
  2844. Releases free extents in a file space. */
  2845. void
  2846. fil_space_release_free_extents(
  2847. /*===========================*/
  2848. ulint id, /* in: space id */
  2849. ulint n_reserved) /* in: how many one reserved */
  2850. {
  2851. fil_system_t* system = fil_system;
  2852. fil_space_t* space;
  2853. ut_ad(system);
  2854. mutex_enter(&(system->mutex));
  2855. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  2856. ut_a(space);
  2857. ut_a(space->n_reserved_extents >= n_reserved);
  2858. space->n_reserved_extents -= n_reserved;
  2859. mutex_exit(&(system->mutex));
  2860. }
  2861. /***********************************************************************
  2862. Gets the number of reserved extents. If the database is silent, this number
  2863. should be zero. */
  2864. ulint
  2865. fil_space_get_n_reserved_extents(
  2866. /*=============================*/
  2867. ulint id) /* in: space id */
  2868. {
  2869. fil_system_t* system = fil_system;
  2870. fil_space_t* space;
  2871. ulint n;
  2872. ut_ad(system);
  2873. mutex_enter(&(system->mutex));
  2874. HASH_SEARCH(hash, system->spaces, id, space, space->id == id);
  2875. ut_a(space);
  2876. n = space->n_reserved_extents;
  2877. mutex_exit(&(system->mutex));
  2878. return(n);
  2879. }
  2880. /*============================ FILE I/O ================================*/
  2881. /************************************************************************
  2882. NOTE: you must call fil_mutex_enter_and_prepare_for_io() first!
  2883. Prepares a file node for i/o. Opens the file if it is closed. Updates the
  2884. pending i/o's field in the node and the system appropriately. Takes the node
  2885. off the LRU list if it is in the LRU list. The caller must hold the fil_sys
  2886. mutex. */
  2887. static
  2888. void
  2889. fil_node_prepare_for_io(
  2890. /*====================*/
  2891. fil_node_t* node, /* in: file node */
  2892. fil_system_t* system, /* in: tablespace memory cache */
  2893. fil_space_t* space) /* in: space */
  2894. {
  2895. ut_ad(node && system && space);
  2896. #ifdef UNIV_SYNC_DEBUG
  2897. ut_ad(mutex_own(&(system->mutex)));
  2898. #endif /* UNIV_SYNC_DEBUG */
  2899. if (system->n_open > system->max_n_open + 5) {
  2900. ut_print_timestamp(stderr);
  2901. fprintf(stderr,
  2902. "  InnoDB: Warning: open files %lu exceeds the limit %lun",
  2903. (ulong) system->n_open,
  2904. (ulong) system->max_n_open);
  2905. }
  2906. if (node->open == FALSE) {
  2907. /* File is closed: open it */
  2908. ut_a(node->n_pending == 0);
  2909. fil_node_open_file(node, system, space);
  2910. }
  2911. if (node->n_pending == 0 && space->purpose == FIL_TABLESPACE
  2912.       && space->id != 0) {
  2913. /* The node is in the LRU list, remove it */
  2914. ut_a(UT_LIST_GET_LEN(system->LRU) > 0);
  2915. UT_LIST_REMOVE(LRU, system->LRU, node);
  2916. }
  2917. node->n_pending++;
  2918. }
  2919. /************************************************************************
  2920. Updates the data structures when an i/o operation finishes. Updates the
  2921. pending i/o's field in the node appropriately. */
  2922. static
  2923. void
  2924. fil_node_complete_io(
  2925. /*=================*/
  2926. fil_node_t* node, /* in: file node */
  2927. fil_system_t* system, /* in: tablespace memory cache */
  2928. ulint type) /* in: OS_FILE_WRITE or OS_FILE_READ; marks
  2929. the node as modified if
  2930. type == OS_FILE_WRITE */
  2931. {
  2932. ut_ad(node);
  2933. ut_ad(system);
  2934. #ifdef UNIV_SYNC_DEBUG
  2935. ut_ad(mutex_own(&(system->mutex)));
  2936. #endif /* UNIV_SYNC_DEBUG */
  2937. ut_a(node->n_pending > 0);
  2938. node->n_pending--;
  2939. if (type == OS_FILE_WRITE) {
  2940. system->modification_counter++;
  2941. node->modification_counter = system->modification_counter;
  2942. }
  2943. if (node->n_pending == 0 && node->space->purpose == FIL_TABLESPACE
  2944. && node->space->id != 0) {
  2945. /* The node must be put back to the LRU list */
  2946. UT_LIST_ADD_FIRST(LRU, system->LRU, node);
  2947. }
  2948. }
  2949. /************************************************************************
  2950. Reads or writes data. This operation is asynchronous (aio). */
  2951. ulint
  2952. fil_io(
  2953. /*===*/
  2954. /* out: DB_SUCCESS, or DB_TABLESPACE_DELETED
  2955. if we are trying to do i/o on a tablespace
  2956. which does not exist */
  2957. ulint type, /* in: OS_FILE_READ or OS_FILE_WRITE,
  2958. ORed to OS_FILE_LOG, if a log i/o
  2959. and ORed to OS_AIO_SIMULATED_WAKE_LATER
  2960. if simulated aio and we want to post a
  2961. batch of i/os; NOTE that a simulated batch
  2962. may introduce hidden chances of deadlocks,
  2963. because i/os are not actually handled until
  2964. all have been posted: use with great
  2965. caution! */
  2966. ibool sync, /* in: TRUE if synchronous aio is desired */
  2967. ulint space_id, /* in: space id */
  2968. ulint block_offset, /* in: offset in number of blocks */
  2969. ulint byte_offset, /* in: remainder of offset in bytes; in
  2970. aio this must be divisible by the OS block
  2971. size */
  2972. ulint len, /* in: how many bytes to read or write; this
  2973. must not cross a file boundary; in aio this
  2974. must be a block size multiple */
  2975. void* buf, /* in/out: buffer where to store read data
  2976. or from where to write; in aio this must be
  2977. appropriately aligned */
  2978. void* message) /* in: message for aio handler if non-sync
  2979. aio used, else ignored */
  2980. {
  2981. fil_system_t* system = fil_system;
  2982. ulint mode;
  2983. fil_space_t* space;
  2984. fil_node_t* node;
  2985. ulint offset_high;
  2986. ulint offset_low;
  2987. ibool ret;
  2988. ulint is_log;
  2989. ulint wake_later;
  2990. is_log = type & OS_FILE_LOG;
  2991. type = type & ~OS_FILE_LOG;
  2992. wake_later = type & OS_AIO_SIMULATED_WAKE_LATER;
  2993. type = type & ~OS_AIO_SIMULATED_WAKE_LATER;
  2994. ut_ad(byte_offset < UNIV_PAGE_SIZE);
  2995. ut_ad(buf);
  2996. ut_ad(len > 0);
  2997. ut_a((1 << UNIV_PAGE_SIZE_SHIFT) == UNIV_PAGE_SIZE);
  2998. ut_ad(fil_validate());
  2999. #ifndef UNIV_LOG_DEBUG
  3000. /* ibuf bitmap pages must be read in the sync aio mode: */
  3001. ut_ad(recv_no_ibuf_operations || (type == OS_FILE_WRITE)
  3002. || !ibuf_bitmap_page(block_offset) || sync || is_log);
  3003. #ifdef UNIV_SYNC_DEBUG
  3004. ut_ad(!ibuf_inside() || is_log || (type == OS_FILE_WRITE)
  3005. || ibuf_page(space_id, block_offset));
  3006. #endif
  3007. #endif
  3008. if (sync) {
  3009. mode = OS_AIO_SYNC;
  3010. } else if (type == OS_FILE_READ && !is_log
  3011. && ibuf_page(space_id, block_offset)) {
  3012. mode = OS_AIO_IBUF;
  3013. } else if (is_log) {
  3014. mode = OS_AIO_LOG;
  3015. } else {
  3016. mode = OS_AIO_NORMAL;
  3017. }
  3018. /* Reserve the fil_system mutex and make sure that we can open at
  3019. least one file while holding it, if the file is not already open */
  3020. fil_mutex_enter_and_prepare_for_io(space_id);
  3021. HASH_SEARCH(hash, system->spaces, space_id, space,
  3022. space->id == space_id);
  3023. if (!space) {
  3024. mutex_exit(&(system->mutex));
  3025. ut_print_timestamp(stderr);
  3026. fprintf(stderr,
  3027. "  InnoDB: Error: trying to do i/o to a tablespace which does not exist.n"
  3028. "InnoDB: i/o type %lu, space id %lu, page no. %lu, i/o length %lu bytesn",
  3029. (ulong) type, (ulong) space_id, (ulong) block_offset,
  3030. (ulong) len);
  3031. return(DB_TABLESPACE_DELETED);
  3032. }
  3033. ut_ad((mode != OS_AIO_IBUF) || (space->purpose == FIL_TABLESPACE));
  3034. node = UT_LIST_GET_FIRST(space->chain);
  3035. for (;;) {
  3036. if (node == NULL) {
  3037. fprintf(stderr,
  3038. "InnoDB: Error: trying to access page number %lu in space %lu,n"
  3039. "InnoDB: space name %s,n"
  3040. "InnoDB: which is outside the tablespace bounds.n"
  3041. "InnoDB: Byte offset %lu, len %lu, i/o type %lun", 
  3042.   (ulong) block_offset, (ulong) space_id,
  3043. space->name, (ulong) byte_offset, (ulong) len,
  3044. (ulong) type);
  3045.  
  3046. ut_error;
  3047. }
  3048. if (space->id != 0 && node->size == 0) {
  3049. /* We do not know the size of a single-table tablespace
  3050. before we open the file */
  3051. break;
  3052. }
  3053. if (node->size > block_offset) {
  3054. /* Found! */
  3055. break;
  3056. } else {
  3057. block_offset -= node->size;
  3058. node = UT_LIST_GET_NEXT(chain, node);
  3059. }
  3060. }
  3061. /* Open file if closed */
  3062. fil_node_prepare_for_io(node, system, space);
  3063. /* Check that at least the start offset is within the bounds of a
  3064. single-table tablespace */
  3065. if (space->purpose == FIL_TABLESPACE && space->id != 0
  3066.     && node->size <= block_offset) {
  3067.         fprintf(stderr,
  3068. "InnoDB: Error: trying to access page number %lu in space %lu,n"
  3069. "InnoDB: space name %s,n"
  3070. "InnoDB: which is outside the tablespace bounds.n"
  3071. "InnoDB: Byte offset %lu, len %lu, i/o type %lun", 
  3072.   (ulong) block_offset, (ulong) space_id,
  3073. space->name, (ulong) byte_offset, (ulong) len,
  3074. (ulong) type);
  3075.   ut_a(0);
  3076. }
  3077. /* Now we have made the changes in the data structures of system */
  3078. mutex_exit(&(system->mutex));
  3079. /* Calculate the low 32 bits and the high 32 bits of the file offset */
  3080. offset_high = (block_offset >> (32 - UNIV_PAGE_SIZE_SHIFT));
  3081. offset_low  = ((block_offset << UNIV_PAGE_SIZE_SHIFT) & 0xFFFFFFFFUL)
  3082. + byte_offset;
  3083. ut_a(node->size - block_offset >=
  3084.   (byte_offset + len + (UNIV_PAGE_SIZE - 1)) / UNIV_PAGE_SIZE);
  3085. /* Do aio */
  3086. ut_a(byte_offset % OS_FILE_LOG_BLOCK_SIZE == 0);
  3087. ut_a((len % OS_FILE_LOG_BLOCK_SIZE) == 0);
  3088. #ifdef UNIV_HOTBACKUP
  3089. /* In ibbackup do normal i/o, not aio */
  3090. if (type == OS_FILE_READ) {
  3091. ret = os_file_read(node->handle, buf, offset_low, offset_high,
  3092. len);
  3093. } else {
  3094. ret = os_file_write(node->name, node->handle, buf,
  3095. offset_low, offset_high, len);
  3096. }
  3097. #else
  3098. /* Queue the aio request */
  3099. ret = os_aio(type, mode | wake_later, node->name, node->handle, buf,
  3100. offset_low, offset_high, len, node, message);
  3101. #endif
  3102. ut_a(ret);
  3103. if (mode == OS_AIO_SYNC) {
  3104. /* The i/o operation is already completed when we return from
  3105. os_aio: */
  3106. mutex_enter(&(system->mutex));
  3107. fil_node_complete_io(node, system, type);
  3108. mutex_exit(&(system->mutex));
  3109. ut_ad(fil_validate());
  3110. }
  3111. return(DB_SUCCESS);
  3112. }
  3113. /************************************************************************
  3114. Reads data from a space to a buffer. Remember that the possible incomplete
  3115. blocks at the end of file are ignored: they are not taken into account when
  3116. calculating the byte offset within a space. */
  3117. ulint
  3118. fil_read(
  3119. /*=====*/
  3120. /* out: DB_SUCCESS, or DB_TABLESPACE_DELETED
  3121. if we are trying to do i/o on a tablespace
  3122. which does not exist */
  3123. ibool sync, /* in: TRUE if synchronous aio is desired */
  3124. ulint space_id, /* in: space id */
  3125. ulint block_offset, /* in: offset in number of blocks */
  3126. ulint byte_offset, /* in: remainder of offset in bytes; in aio
  3127. this must be divisible by the OS block size */
  3128. ulint len, /* in: how many bytes to read; this must not
  3129. cross a file boundary; in aio this must be a
  3130. block size multiple */
  3131. void* buf, /* in/out: buffer where to store data read;
  3132. in aio this must be appropriately aligned */
  3133. void* message) /* in: message for aio handler if non-sync
  3134. aio used, else ignored */
  3135. {
  3136. return(fil_io(OS_FILE_READ, sync, space_id, block_offset,
  3137.   byte_offset, len, buf, message));
  3138. }
  3139. /************************************************************************
  3140. Writes data to a space from a buffer. Remember that the possible incomplete
  3141. blocks at the end of file are ignored: they are not taken into account when
  3142. calculating the byte offset within a space. */
  3143. ulint
  3144. fil_write(
  3145. /*======*/
  3146. /* out: DB_SUCCESS, or DB_TABLESPACE_DELETED
  3147. if we are trying to do i/o on a tablespace
  3148. which does not exist */
  3149. ibool sync, /* in: TRUE if synchronous aio is desired */
  3150. ulint space_id, /* in: space id */
  3151. ulint block_offset, /* in: offset in number of blocks */
  3152. ulint byte_offset, /* in: remainder of offset in bytes; in aio
  3153. this must be divisible by the OS block size */
  3154. ulint len, /* in: how many bytes to write; this must
  3155. not cross a file boundary; in aio this must
  3156. be a block size multiple */
  3157. void* buf, /* in: buffer from which to write; in aio
  3158. this must be appropriately aligned */
  3159. void* message) /* in: message for aio handler if non-sync
  3160. aio used, else ignored */
  3161. {
  3162. return(fil_io(OS_FILE_WRITE, sync, space_id, block_offset,
  3163.    byte_offset, len, buf, message));
  3164. }
  3165. /**************************************************************************
  3166. Waits for an aio operation to complete. This function is used to write the
  3167. handler for completed requests. The aio array of pending requests is divided
  3168. into segments (see os0file.c for more info). The thread specifies which
  3169. segment it wants to wait for. */
  3170. void
  3171. fil_aio_wait(
  3172. /*=========*/
  3173. ulint segment) /* in: the number of the segment in the aio
  3174. array to wait for */ 
  3175. {
  3176. fil_system_t* system = fil_system;
  3177. ibool ret;
  3178. fil_node_t* fil_node;
  3179. void* message;
  3180. ulint type;
  3181. ut_ad(fil_validate());
  3182. if (os_aio_use_native_aio) {
  3183. srv_set_io_thread_op_info(segment, "native aio handle");
  3184. #ifdef WIN_ASYNC_IO
  3185. ret = os_aio_windows_handle(segment, 0, (void**) &fil_node,
  3186.     &message, &type);
  3187. #elif defined(POSIX_ASYNC_IO)
  3188. ret = os_aio_posix_handle(segment, &fil_node, &message);
  3189. #else
  3190. ret = 0; /* Eliminate compiler warning */
  3191. ut_error;
  3192. #endif
  3193. } else {
  3194. srv_set_io_thread_op_info(segment, "simulated aio handle");
  3195. ret = os_aio_simulated_handle(segment, (void**) &fil_node,
  3196.                                                &message, &type);
  3197. }
  3198. ut_a(ret);
  3199. srv_set_io_thread_op_info(segment, "complete io for fil node");
  3200. mutex_enter(&(system->mutex));
  3201. fil_node_complete_io(fil_node, fil_system, type);
  3202. mutex_exit(&(system->mutex));
  3203. ut_ad(fil_validate());
  3204. /* Do the i/o handling */
  3205. /* IMPORTANT: since i/o handling for reads will read also the insert
  3206. buffer in tablespace 0, you have to be very careful not to introduce
  3207. deadlocks in the i/o system. We keep tablespace 0 data files always
  3208. open, and use a special i/o thread to serve insert buffer requests. */
  3209. if (buf_pool_is_block(message)) {
  3210. srv_set_io_thread_op_info(segment, "complete io for buf page");
  3211. buf_page_io_complete(message);
  3212. } else {
  3213. srv_set_io_thread_op_info(segment, "complete io for log");
  3214. log_io_complete(message);
  3215. }
  3216. }
  3217. /**************************************************************************
  3218. Flushes to disk possible writes cached by the OS. If the space does not exist
  3219. or is being dropped, does not do anything. */
  3220. void
  3221. fil_flush(
  3222. /*======*/
  3223. ulint space_id) /* in: file space id (this can be a group of
  3224. log files or a tablespace of the database) */
  3225. {
  3226. fil_system_t* system = fil_system;
  3227. fil_space_t* space;
  3228. fil_node_t* node;
  3229. os_file_t file;
  3230. ib_longlong old_mod_counter;
  3231. mutex_enter(&(system->mutex));
  3232. HASH_SEARCH(hash, system->spaces, space_id, space,
  3233. space->id == space_id);
  3234. if (!space || space->is_being_deleted) {
  3235. mutex_exit(&(system->mutex));
  3236. return;
  3237. }
  3238. space->n_pending_flushes++; /* prevent dropping of the space while
  3239. we are flushing */
  3240. node = UT_LIST_GET_FIRST(space->chain);
  3241. while (node) {
  3242. if (node->modification_counter > node->flush_counter) {
  3243. ut_a(node->open);
  3244. /* We want to flush the changes at least up to
  3245. old_mod_counter */
  3246. old_mod_counter = node->modification_counter;
  3247. if (space->purpose == FIL_TABLESPACE) {
  3248. fil_n_pending_tablespace_flushes++;
  3249. } else {
  3250. fil_n_pending_log_flushes++;
  3251. }
  3252. #ifdef __WIN__
  3253. if (node->is_raw_disk) {
  3254. goto skip_flush;
  3255. }
  3256. #endif
  3257. retry:
  3258. if (node->n_pending_flushes > 0) {
  3259. /* We want to avoid calling os_file_flush() on
  3260. the file twice at the same time, because we do
  3261. not know what bugs OS's may contain in file
  3262. i/o; sleep for a while */
  3263. mutex_exit(&(system->mutex));
  3264. os_thread_sleep(20000);
  3265. mutex_enter(&(system->mutex));
  3266. if (node->flush_counter >= old_mod_counter) {
  3267. goto skip_flush;
  3268. }
  3269. goto retry;
  3270. }
  3271. ut_a(node->open);
  3272. file = node->handle;
  3273. node->n_pending_flushes++;
  3274. mutex_exit(&(system->mutex));
  3275. /* fprintf(stderr, "Flushing to file %sn",
  3276. node->name); */
  3277. os_file_flush(file);
  3278. mutex_enter(&(system->mutex));
  3279. node->n_pending_flushes--;
  3280. skip_flush:
  3281. if (node->flush_counter < old_mod_counter) {
  3282. node->flush_counter = old_mod_counter;
  3283. }
  3284. if (space->purpose == FIL_TABLESPACE) {
  3285. fil_n_pending_tablespace_flushes--;
  3286. } else {
  3287. fil_n_pending_log_flushes--;
  3288. }
  3289. }
  3290. node = UT_LIST_GET_NEXT(chain, node);
  3291. }
  3292. space->n_pending_flushes--;
  3293. mutex_exit(&(system->mutex));
  3294. }
  3295. /**************************************************************************
  3296. Flushes to disk the writes in file spaces of the given type possibly cached by
  3297. the OS. */
  3298. void
  3299. fil_flush_file_spaces(
  3300. /*==================*/
  3301. ulint purpose) /* in: FIL_TABLESPACE, FIL_LOG */
  3302. {
  3303. fil_system_t* system = fil_system;
  3304. fil_space_t* space;
  3305. mutex_enter(&(system->mutex));
  3306. space = UT_LIST_GET_FIRST(system->space_list);
  3307. while (space) {
  3308. if (space->purpose == purpose && !space->is_being_deleted) {
  3309. space->n_pending_flushes++; /* prevent dropping of the
  3310.     space while we are
  3311.     flushing */
  3312. mutex_exit(&(system->mutex));
  3313. fil_flush(space->id);
  3314. mutex_enter(&(system->mutex));
  3315. space->n_pending_flushes--;
  3316. }
  3317. space = UT_LIST_GET_NEXT(space_list, space);
  3318. }
  3319. mutex_exit(&(system->mutex));
  3320. }
  3321. /**********************************************************************
  3322. Checks the consistency of the tablespace cache. */
  3323. ibool
  3324. fil_validate(void)
  3325. /*==============*/
  3326. /* out: TRUE if ok */
  3327. {
  3328. fil_system_t* system = fil_system;
  3329. fil_space_t* space;
  3330. fil_node_t* fil_node;
  3331. ulint n_open = 0;
  3332. ulint i;
  3333. mutex_enter(&(system->mutex));
  3334. /* Look for spaces in the hash table */
  3335. for (i = 0; i < hash_get_n_cells(system->spaces); i++) {
  3336. space = HASH_GET_FIRST(system->spaces, i);
  3337. while (space != NULL) {
  3338. UT_LIST_VALIDATE(chain, fil_node_t, space->chain); 
  3339. fil_node = UT_LIST_GET_FIRST(space->chain);
  3340. while (fil_node != NULL) {
  3341. if (fil_node->n_pending > 0) {
  3342. ut_a(fil_node->open);
  3343. }
  3344. if (fil_node->open) {
  3345. n_open++;
  3346. }
  3347. fil_node = UT_LIST_GET_NEXT(chain, fil_node);
  3348. }
  3349. space = HASH_GET_NEXT(hash, space);
  3350. }
  3351. }
  3352. ut_a(system->n_open == n_open);
  3353. UT_LIST_VALIDATE(LRU, fil_node_t, system->LRU);
  3354. fil_node = UT_LIST_GET_FIRST(system->LRU);
  3355. while (fil_node != NULL) {
  3356. ut_a(fil_node->n_pending == 0);
  3357. ut_a(fil_node->open);
  3358. ut_a(fil_node->space->purpose == FIL_TABLESPACE);
  3359. ut_a(fil_node->space->id != 0);
  3360. fil_node = UT_LIST_GET_NEXT(LRU, fil_node);
  3361. }
  3362. mutex_exit(&(system->mutex));
  3363. return(TRUE);
  3364. }
  3365. /************************************************************************
  3366. Returns TRUE if file address is undefined. */
  3367. ibool
  3368. fil_addr_is_null(
  3369. /*=============*/
  3370. /* out: TRUE if undefined */
  3371. fil_addr_t addr) /* in: address */
  3372. {
  3373. if (addr.page == FIL_NULL) {
  3374. return(TRUE);
  3375. }
  3376. return(FALSE);
  3377. }
  3378. /************************************************************************
  3379. Accessor functions for a file page */
  3380. ulint
  3381. fil_page_get_prev(byte* page)
  3382. {
  3383. return(mach_read_from_4(page + FIL_PAGE_PREV));
  3384. }
  3385. ulint
  3386. fil_page_get_next(byte* page)
  3387. {
  3388. return(mach_read_from_4(page + FIL_PAGE_NEXT));
  3389. }
  3390. /*************************************************************************
  3391. Sets the file page type. */
  3392. void
  3393. fil_page_set_type(
  3394. /*==============*/
  3395. byte*  page, /* in: file page */
  3396. ulint type) /* in: type */
  3397. {
  3398. ut_ad(page);
  3399. mach_write_to_2(page + FIL_PAGE_TYPE, type);
  3400. }
  3401. /*************************************************************************
  3402. Gets the file page type. */
  3403. ulint
  3404. fil_page_get_type(
  3405. /*==============*/
  3406. /* out: type; NOTE that if the type has not been
  3407. written to page, the return value not defined */
  3408. byte*  page) /* in: file page */
  3409. {
  3410. ut_ad(page);
  3411. return(mach_read_from_2(page + FIL_PAGE_TYPE));
  3412. }