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

MySQL数据库

开发平台:

Visual C++

  1. /************************************************************************
  2. The lowest-level memory management
  3. (c) 1997 Innobase Oy
  4. Created 5/12/1997 Heikki Tuuri
  5. *************************************************************************/
  6. #include "mem0pool.h"
  7. #ifdef UNIV_NONINL
  8. #include "mem0pool.ic"
  9. #endif
  10. #include "sync0sync.h"
  11. #include "ut0mem.h"
  12. #include "ut0lst.h"
  13. #include "ut0byte.h"
  14. #include "mem0mem.h"
  15. /* We would like to use also the buffer frames to allocate memory. This
  16. would be desirable, because then the memory consumption of the database
  17. would be fixed, and we might even lock the buffer pool to the main memory.
  18. The problem here is that the buffer management routines can themselves call
  19. memory allocation, while the buffer pool mutex is reserved.
  20. The main components of the memory consumption are:
  21. 1. buffer pool,
  22. 2. parsed and optimized SQL statements,
  23. 3. data dictionary cache,
  24. 4. log buffer,
  25. 5. locks for each transaction,
  26. 6. hash table for the adaptive index,
  27. 7. state and buffers for each SQL query currently being executed,
  28. 8. session for each user, and
  29. 9. stack for each OS thread.
  30. Items 1-3 are managed by an LRU algorithm. Items 5 and 6 can potentially
  31. consume very much memory. Items 7 and 8 should consume quite little memory,
  32. and the OS should take care of item 9, which too should consume little memory.
  33. A solution to the memory management:
  34. 1. the buffer pool size is set separately;
  35. 2. log buffer size is set separately;
  36. 3. the common pool size for all the other entries, except 8, is set separately.
  37. Problems: we may waste memory if the common pool is set too big. Another
  38. problem is the locks, which may take very much space in big transactions.
  39. Then the shared pool size should be set very big. We can allow locks to take
  40. space from the buffer pool, but the SQL optimizer is then unaware of the
  41. usable size of the buffer pool. We could also combine the objects in the
  42. common pool and the buffers in the buffer pool into a single LRU list and
  43. manage it uniformly, but this approach does not take into account the parsing
  44. and other costs unique to SQL statements.
  45. So, let the SQL statements and the data dictionary entries form one single
  46. LRU list, let us call it the dictionary LRU list. The locks for a transaction
  47. can be seen as a part of the state of the transaction. Hence, they should be
  48. stored in the common pool. We still have the problem of a very big update
  49. transaction, for example, which will set very many x-locks on rows, and the
  50. locks will consume a lot of memory, say, half of the buffer pool size.
  51. Another problem is what to do if we are not able to malloc a requested
  52. block of memory from the common pool. Then we can truncate the LRU list of
  53. the dictionary cache. If it does not help, a system error results.
  54. Because 5 and 6 may potentially consume very much memory, we let them grow
  55. into the buffer pool. We may let the locks of a transaction take frames
  56. from the buffer pool, when the corresponding memory heap block has grown to
  57. the size of a buffer frame. Similarly for the hash node cells of the locks,
  58. and for the adaptive index. Thus, for each individual transaction, its locks
  59. can occupy at most about the size of the buffer frame of memory in the common
  60. pool, and after that its locks will grow into the buffer pool. */
  61. /* Mask used to extract the free bit from area->size */
  62. #define MEM_AREA_FREE 1
  63. /* The smallest memory area total size */
  64. #define MEM_AREA_MIN_SIZE (2 * MEM_AREA_EXTRA_SIZE)
  65. /* Data structure for a memory pool. The space is allocated using the buddy
  66. algorithm, where free list i contains areas of size 2 to power i. */
  67. struct mem_pool_struct{
  68. byte* buf; /* memory pool */
  69. ulint size; /* memory common pool size */
  70. ulint reserved; /* amount of currently allocated
  71. memory */
  72. mutex_t mutex; /* mutex protecting this struct */
  73. UT_LIST_BASE_NODE_T(mem_area_t)
  74. free_list[64]; /* lists of free memory areas: an
  75. area is put to the list whose number
  76. is the 2-logarithm of the area size */
  77. };
  78. /* The common memory pool */
  79. mem_pool_t* mem_comm_pool = NULL;
  80. /* We use this counter to check that the mem pool mutex does not leak;
  81. this is to track a strange assertion failure reported at
  82. mysql@lists.mysql.com */
  83. ulint mem_n_threads_inside = 0;
  84. /************************************************************************
  85. Reserves the mem pool mutex. */
  86. void
  87. mem_pool_mutex_enter(void)
  88. /*======================*/
  89. {
  90. mutex_enter(&(mem_comm_pool->mutex));
  91. }
  92. /************************************************************************
  93. Releases the mem pool mutex. */
  94. void
  95. mem_pool_mutex_exit(void)
  96. /*=====================*/
  97. {
  98. mutex_exit(&(mem_comm_pool->mutex));
  99. }
  100. /************************************************************************
  101. Returns memory area size. */
  102. UNIV_INLINE
  103. ulint
  104. mem_area_get_size(
  105. /*==============*/
  106. /* out: size */
  107. mem_area_t* area) /* in: area */
  108. {
  109. return(area->size_and_free & ~MEM_AREA_FREE);
  110. }
  111. /************************************************************************
  112. Sets memory area size. */
  113. UNIV_INLINE
  114. void
  115. mem_area_set_size(
  116. /*==============*/
  117. mem_area_t* area, /* in: area */
  118. ulint size) /* in: size */
  119. {
  120. area->size_and_free = (area->size_and_free & MEM_AREA_FREE)
  121. | size;
  122. }
  123. /************************************************************************
  124. Returns memory area free bit. */
  125. UNIV_INLINE
  126. ibool
  127. mem_area_get_free(
  128. /*==============*/
  129. /* out: TRUE if free */
  130. mem_area_t* area) /* in: area */
  131. {
  132. ut_ad(TRUE == MEM_AREA_FREE);
  133. return(area->size_and_free & MEM_AREA_FREE);
  134. }
  135. /************************************************************************
  136. Sets memory area free bit. */
  137. UNIV_INLINE
  138. void
  139. mem_area_set_free(
  140. /*==============*/
  141. mem_area_t* area, /* in: area */
  142. ibool free) /* in: free bit value */
  143. {
  144. ut_ad(TRUE == MEM_AREA_FREE);
  145. area->size_and_free = (area->size_and_free & ~MEM_AREA_FREE)
  146. | free;
  147. }
  148. /************************************************************************
  149. Creates a memory pool. */
  150. mem_pool_t*
  151. mem_pool_create(
  152. /*============*/
  153. /* out: memory pool */
  154. ulint size) /* in: pool size in bytes */
  155. {
  156. mem_pool_t* pool;
  157. mem_area_t* area;
  158. ulint i;
  159. ulint used;
  160. ut_a(size > 10000);
  161. pool = ut_malloc(sizeof(mem_pool_t));
  162. /* We do not set the memory to zero (FALSE) in the pool,
  163. but only when allocated at a higher level in mem0mem.c.
  164. This is to avoid masking useful Purify warnings. */
  165. pool->buf = ut_malloc_low(size, FALSE, TRUE);
  166. pool->size = size;
  167. mutex_create(&(pool->mutex));
  168. mutex_set_level(&(pool->mutex), SYNC_MEM_POOL);
  169. /* Initialize the free lists */
  170. for (i = 0; i < 64; i++) {
  171. UT_LIST_INIT(pool->free_list[i]);
  172. }
  173. used = 0;
  174. while (size - used >= MEM_AREA_MIN_SIZE) {
  175. i = ut_2_log(size - used);
  176. if (ut_2_exp(i) > size - used) {
  177. /* ut_2_log rounds upward */
  178. i--;
  179. }
  180. area = (mem_area_t*)(pool->buf + used);
  181. mem_area_set_size(area, ut_2_exp(i));
  182. mem_area_set_free(area, TRUE);
  183. UT_LIST_ADD_FIRST(free_list, pool->free_list[i], area);
  184. used = used + ut_2_exp(i);
  185. }
  186. ut_ad(size >= used);
  187. pool->reserved = 0;
  188. return(pool);
  189. }
  190. /************************************************************************
  191. Fills the specified free list. */
  192. static
  193. ibool
  194. mem_pool_fill_free_list(
  195. /*====================*/
  196. /* out: TRUE if we were able to insert a
  197. block to the free list */
  198. ulint i, /* in: free list index */
  199. mem_pool_t* pool) /* in: memory pool */
  200. {
  201. mem_area_t* area;
  202. mem_area_t* area2;
  203. ibool ret;
  204. #ifdef UNIV_SYNC_DEBUG
  205. ut_ad(mutex_own(&(pool->mutex)));
  206. #endif /* UNIV_SYNC_DEBUG */
  207. if (i >= 63) {
  208. /* We come here when we have run out of space in the
  209. memory pool: */
  210.      
  211. return(FALSE);
  212. }
  213. area = UT_LIST_GET_FIRST(pool->free_list[i + 1]);
  214. if (area == NULL) {
  215.         if (UT_LIST_GET_LEN(pool->free_list[i + 1]) > 0) {
  216.      ut_print_timestamp(stderr);
  217.                 fprintf(stderr,
  218. "  InnoDB: Error: mem pool free list %lu length is %lun"
  219. "InnoDB: though the list is empty!n",
  220. (ulong) i + 1,
  221. (ulong) UT_LIST_GET_LEN(pool->free_list[i + 1]));
  222. }
  223. ret = mem_pool_fill_free_list(i + 1, pool);
  224. if (ret == FALSE) {
  225. return(FALSE);
  226. }
  227. area = UT_LIST_GET_FIRST(pool->free_list[i + 1]);
  228. }
  229. if (UT_LIST_GET_LEN(pool->free_list[i + 1]) == 0) {
  230.         mem_analyze_corruption((byte*)area);
  231. ut_error;
  232. }
  233. UT_LIST_REMOVE(free_list, pool->free_list[i + 1], area);
  234. area2 = (mem_area_t*)(((byte*)area) + ut_2_exp(i));
  235. mem_area_set_size(area2, ut_2_exp(i));
  236. mem_area_set_free(area2, TRUE);
  237. UT_LIST_ADD_FIRST(free_list, pool->free_list[i], area2);
  238. mem_area_set_size(area, ut_2_exp(i));
  239. UT_LIST_ADD_FIRST(free_list, pool->free_list[i], area);
  240. return(TRUE);
  241. }
  242. /************************************************************************
  243. Allocates memory from a pool. NOTE: This low-level function should only be
  244. used in mem0mem.*! */
  245. void*
  246. mem_area_alloc(
  247. /*===========*/
  248. /* out, own: allocated memory buffer */
  249. ulint size, /* in: allocated size in bytes; for optimum
  250. space usage, the size should be a power of 2
  251. minus MEM_AREA_EXTRA_SIZE */
  252. mem_pool_t* pool) /* in: memory pool */
  253. {
  254. mem_area_t* area;
  255. ulint n;
  256. ibool ret;
  257. n = ut_2_log(ut_max(size + MEM_AREA_EXTRA_SIZE, MEM_AREA_MIN_SIZE));
  258. mutex_enter(&(pool->mutex));
  259. mem_n_threads_inside++;
  260. ut_a(mem_n_threads_inside == 1);
  261. area = UT_LIST_GET_FIRST(pool->free_list[n]);
  262. if (area == NULL) {
  263. ret = mem_pool_fill_free_list(n, pool);
  264. if (ret == FALSE) {
  265. /* Out of memory in memory pool: we try to allocate
  266. from the operating system with the regular malloc: */
  267. mem_n_threads_inside--;
  268. mutex_exit(&(pool->mutex));
  269. return(ut_malloc(size));
  270. }
  271. area = UT_LIST_GET_FIRST(pool->free_list[n]);
  272. }
  273. if (!mem_area_get_free(area)) {
  274.         fprintf(stderr,
  275. "InnoDB: Error: Removing element from mem pool free list %lu though then"
  276. "InnoDB: element is not marked free!n",
  277. (ulong) n);
  278. mem_analyze_corruption((byte*)area);
  279. /* Try to analyze a strange assertion failure reported at
  280. mysql@lists.mysql.com where the free bit IS 1 in the
  281. hex dump above */
  282. if (mem_area_get_free(area)) {
  283.         fprintf(stderr,
  284. "InnoDB: Probably a race condition because now the area is marked free!n");
  285. }
  286. ut_error;
  287. }
  288. if (UT_LIST_GET_LEN(pool->free_list[n]) == 0) {
  289.         fprintf(stderr,
  290. "InnoDB: Error: Removing element from mem pool free list %lun"
  291. "InnoDB: though the list length is 0!n",
  292. (ulong) n);
  293. mem_analyze_corruption((byte*)area);
  294. ut_error;
  295. }
  296. ut_ad(mem_area_get_size(area) == ut_2_exp(n));
  297. mem_area_set_free(area, FALSE);
  298. UT_LIST_REMOVE(free_list, pool->free_list[n], area);
  299. pool->reserved += mem_area_get_size(area);
  300. mem_n_threads_inside--;
  301. mutex_exit(&(pool->mutex));
  302. ut_ad(mem_pool_validate(pool));
  303. return((void*)(MEM_AREA_EXTRA_SIZE + ((byte*)area))); 
  304. }
  305. /************************************************************************
  306. Gets the buddy of an area, if it exists in pool. */
  307. UNIV_INLINE
  308. mem_area_t*
  309. mem_area_get_buddy(
  310. /*===============*/
  311. /* out: the buddy, NULL if no buddy in pool */
  312. mem_area_t* area, /* in: memory area */
  313. ulint size, /* in: memory area size */
  314. mem_pool_t* pool) /* in: memory pool */
  315. {
  316. mem_area_t* buddy;
  317. ut_ad(size != 0);
  318. if (((((byte*)area) - pool->buf) % (2 * size)) == 0) {
  319. /* The buddy is in a higher address */
  320. buddy = (mem_area_t*)(((byte*)area) + size);
  321. if ((((byte*)buddy) - pool->buf) + size > pool->size) {
  322. /* The buddy is not wholly contained in the pool:
  323. there is no buddy */
  324. buddy = NULL;
  325. }
  326. } else {
  327. /* The buddy is in a lower address; NOTE that area cannot
  328. be at the pool lower end, because then we would end up to
  329. the upper branch in this if-clause: the remainder would be
  330. 0 */
  331. buddy = (mem_area_t*)(((byte*)area) - size);
  332. }
  333. return(buddy);
  334. }
  335. /************************************************************************
  336. Frees memory to a pool. */
  337. void
  338. mem_area_free(
  339. /*==========*/
  340. void* ptr, /* in, own: pointer to allocated memory
  341. buffer */
  342. mem_pool_t* pool) /* in: memory pool */
  343. {
  344. mem_area_t* area;
  345. mem_area_t* buddy;
  346. void* new_ptr;
  347. ulint size;
  348. ulint n;
  349. /* It may be that the area was really allocated from the OS with
  350. regular malloc: check if ptr points within our memory pool */
  351. if ((byte*)ptr < pool->buf || (byte*)ptr >= pool->buf + pool->size) {
  352. ut_free(ptr);
  353. return;
  354. }
  355. area = (mem_area_t*) (((byte*)ptr) - MEM_AREA_EXTRA_SIZE);
  356.         if (mem_area_get_free(area)) {
  357.         fprintf(stderr,
  358. "InnoDB: Error: Freeing element to mem pool free list though then"
  359. "InnoDB: element is marked free!n");
  360. mem_analyze_corruption((byte*)area);
  361. ut_error;
  362. }
  363. size = mem_area_get_size(area);
  364.         if (size == 0) {
  365.         fprintf(stderr,
  366. "InnoDB: Error: Mem area size is 0. Possibly a memory overrun of then"
  367. "InnoDB: previous allocated area!n");
  368. mem_analyze_corruption((byte*)area);
  369. ut_error;
  370. }
  371. #ifdef UNIV_LIGHT_MEM_DEBUG
  372. if (((byte*)area) + size < pool->buf + pool->size) {
  373. ulint next_size;
  374. next_size = mem_area_get_size(
  375. (mem_area_t*)(((byte*)area) + size));
  376. if (ut_2_power_up(next_size) != next_size) {
  377.         fprintf(stderr,
  378. "InnoDB: Error: Memory area size %lu, next area size %lu not a power of 2!n"
  379. "InnoDB: Possibly a memory overrun of the buffer being freed here.n",
  380.   (ulong) size, (ulong) next_size);
  381. mem_analyze_corruption((byte*)area);
  382. ut_error;
  383. }
  384. }
  385. #endif
  386. buddy = mem_area_get_buddy(area, size, pool);
  387. n = ut_2_log(size);
  388. mutex_enter(&(pool->mutex));
  389. mem_n_threads_inside++;
  390. ut_a(mem_n_threads_inside == 1);
  391. if (buddy && mem_area_get_free(buddy)
  392. && (size == mem_area_get_size(buddy))) {
  393. /* The buddy is in a free list */
  394. if ((byte*)buddy < (byte*)area) {
  395. new_ptr = ((byte*)buddy) + MEM_AREA_EXTRA_SIZE;
  396. mem_area_set_size(buddy, 2 * size);
  397. mem_area_set_free(buddy, FALSE);
  398. } else {
  399. new_ptr = ptr;
  400. mem_area_set_size(area, 2 * size);
  401. }
  402. /* Remove the buddy from its free list and merge it to area */
  403. UT_LIST_REMOVE(free_list, pool->free_list[n], buddy);
  404. pool->reserved += ut_2_exp(n);
  405. mem_n_threads_inside--;
  406. mutex_exit(&(pool->mutex));
  407. mem_area_free(new_ptr, pool);
  408. return;
  409. } else {
  410. UT_LIST_ADD_FIRST(free_list, pool->free_list[n], area);
  411. mem_area_set_free(area, TRUE);
  412. ut_ad(pool->reserved >= size);
  413. pool->reserved -= size;
  414. }
  415. mem_n_threads_inside--;
  416. mutex_exit(&(pool->mutex));
  417. ut_ad(mem_pool_validate(pool));
  418. }
  419. /************************************************************************
  420. Validates a memory pool. */
  421. ibool
  422. mem_pool_validate(
  423. /*==============*/
  424. /* out: TRUE if ok */
  425. mem_pool_t* pool) /* in: memory pool */
  426. {
  427. mem_area_t* area;
  428. mem_area_t* buddy;
  429. ulint free;
  430. ulint i;
  431. mutex_enter(&(pool->mutex));
  432. free = 0;
  433. for (i = 0; i < 64; i++) {
  434. UT_LIST_VALIDATE(free_list, mem_area_t, pool->free_list[i]);
  435. area = UT_LIST_GET_FIRST(pool->free_list[i]);
  436. while (area != NULL) {
  437. ut_a(mem_area_get_free(area));
  438. ut_a(mem_area_get_size(area) == ut_2_exp(i));
  439. buddy = mem_area_get_buddy(area, ut_2_exp(i), pool);
  440. ut_a(!buddy || !mem_area_get_free(buddy)
  441.           || (ut_2_exp(i) != mem_area_get_size(buddy)));
  442. area = UT_LIST_GET_NEXT(free_list, area);
  443. free += ut_2_exp(i);
  444. }
  445. }
  446. ut_a(free + pool->reserved == pool->size);
  447. mutex_exit(&(pool->mutex));
  448. return(TRUE);
  449. }
  450. /************************************************************************
  451. Prints info of a memory pool. */
  452. void
  453. mem_pool_print_info(
  454. /*================*/
  455. FILE*         outfile,/* in: output file to write to */
  456. mem_pool_t* pool) /* in: memory pool */
  457. {
  458. ulint i;
  459. mem_pool_validate(pool);
  460. fprintf(outfile, "INFO OF A MEMORY POOLn");
  461. mutex_enter(&(pool->mutex));
  462. for (i = 0; i < 64; i++) {
  463. if (UT_LIST_GET_LEN(pool->free_list[i]) > 0) {
  464. fprintf(outfile,
  465.   "Free list length %lu for blocks of size %lun",
  466.   (ulong) UT_LIST_GET_LEN(pool->free_list[i]),
  467.   (ulong) ut_2_exp(i));
  468. }
  469. }
  470. fprintf(outfile, "Pool size %lu, reserved %lu.n", (ulong) pool->size,
  471.        (ulong) pool->reserved);
  472. mutex_exit(&(pool->mutex));
  473. }
  474. /************************************************************************
  475. Returns the amount of reserved memory. */
  476. ulint
  477. mem_pool_get_reserved(
  478. /*==================*/
  479. /* out: reserved memory in bytes */
  480. mem_pool_t* pool) /* in: memory pool */
  481. {
  482. ulint reserved;
  483. mutex_enter(&(pool->mutex));
  484. reserved = pool->reserved;
  485. mutex_exit(&(pool->mutex));
  486. return(reserved);
  487. }