1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* Copyright (c) The Exim maintainers 2019 - 2020 */
7 /* See the file NOTICE for conditions of use and distribution. */
9 /* Exim gets and frees all its store through these functions. In the original
10 implementation there was a lot of mallocing and freeing of small bits of store.
11 The philosophy has now changed to a scheme which includes the concept of
12 "stacking pools" of store. For the short-lived processes, there isn't any real
13 need to do any garbage collection, but the stack concept allows quick resetting
14 in places where this seems sensible.
16 Obviously the long-running processes (the daemon, the queue runner, and eximon)
17 must take care not to eat store.
19 The following different types of store are recognized:
21 . Long-lived, large blocks: This is implemented by retaining the original
22 malloc/free functions, and it used for permanent working buffers and for
23 getting blocks to cut up for the other types.
25 . Long-lived, small blocks: This is used for blocks that have to survive until
26 the process exits. It is implemented as a stacking pool (POOL_PERM). This is
27 functionally the same as store_malloc(), except that the store can't be
28 freed, but I expect it to be more efficient for handling small blocks.
30 . Short-lived, short blocks: Most of the dynamic store falls into this
31 category. It is implemented as a stacking pool (POOL_MAIN) which is reset
32 after accepting a message when multiple messages are received by a single
33 process. Resetting happens at some other times as well, usually fairly
34 locally after some specific processing that needs working store.
36 . There is a separate pool (POOL_SEARCH) that is used only for lookup storage.
37 This means it can be freed when search_tidyup() is called to close down all
40 - There is another pool (POOL_MESSAGE) used for medium-lifetime objects; within
41 a single message transaction but needed for longer than the use of the main
42 pool permits. Currently this means only receive-time DKIM information.
44 . Orthogonal to the three pool types, there are two classes of memory: untainted
45 and tainted. The latter is used for values derived from untrusted input, and
46 the string-expansion mechanism refuses to operate on such values (obviously,
47 it can expand an untainted value to return a tainted result). The classes
48 are implemented by duplicating the four pool types. Pool resets are requested
49 against the nontainted sibling and apply to both siblings.
51 Only memory blocks requested for tainted use are regarded as tainted; anything
52 else (including stack auto variables) is untainted. Care is needed when coding
53 to not copy untrusted data into untainted memory, as downstream taint-checks
56 Intermediate layers (eg. the string functions) can test for taint, and use this
57 for ensurinng that results have proper state. For example the
58 string_vformat_trc() routing supporting the string_sprintf() interface will
59 recopy a string being built into a tainted allocation if it meets a %s for a
60 tainted argument. Any intermediate-layer function that (can) return a new
61 allocation should behave this way; returning a tainted result if any tainted
62 content is used. Intermediate-layer functions (eg. Ustrncpy) that modify
63 existing allocations fail if tainted data is written into an untainted area.
64 Users of functions that modify existing allocations should check if a tainted
65 source and an untainted destination is used, and fail instead (sprintf() being
71 /* keep config.h before memcheck.h, for NVALGRIND */
78 /* We need to know how to align blocks of data for general use. I'm not sure
79 how to get an alignment factor in general. In the current world, a value of 8
80 is probably right, and this is sizeof(double) on some systems and sizeof(void
81 *) on others, so take the larger of those. Since everything in this expression
82 is a constant, the compiler should optimize it to a simple constant wherever it
83 appears (I checked that gcc does do this). */
86 (sizeof(void *) > sizeof(double) ? sizeof(void *) : sizeof(double))
88 /* store_reset() will not free the following block if the last used block has
89 less than this much left in it. */
91 #define STOREPOOL_MIN_SIZE 256
93 /* Structure describing the beginning of each big block. */
95 typedef struct storeblock {
96 struct storeblock *next;
100 /* Just in case we find ourselves on a system where the structure above has a
101 length that is not a multiple of the alignment, set up a macro for the padded
104 #define ALIGNED_SIZEOF_STOREBLOCK \
105 (((sizeof(storeblock) + alignment - 1) / alignment) * alignment)
107 /* Size of block to get from malloc to carve up into smaller ones. This
108 must be a multiple of the alignment. We assume that 4096 is going to be
109 suitably aligned. Double the size per-pool for every malloc, to mitigate
110 certain denial-of-service attacks. Don't bother to decrease on block frees.
111 We waste average half the current alloc size per pool. This could be several
112 hundred kB now, vs. 4kB with a constant-size block size. But the search time
113 for is_tainted(), linear in the number of blocks for the pool, is O(n log n)
115 A test of 2000 RCPTs and just accept ACL had 370kB in 21 blocks before,
116 504kB in 6 blocks now, for the untainted-main (largest) pool.
117 Builds for restricted-memory system can disable the expansion by
118 defining RESTRICTED_MEMORY */
119 /*XXX should we allow any for malloc's own overhead? But how much? */
121 /* #define RESTRICTED_MEMORY */
122 #define STORE_BLOCK_SIZE(order) ((1U << (order)) - ALIGNED_SIZEOF_STOREBLOCK)
124 /* Variables holding data for the local pools of store. The current pool number
125 is held in store_pool, which is global so that it can be changed from outside.
126 Setting the initial length values to -1 forces a malloc for the first call,
127 even if the length is zero (which is used for getting a point to reset to). */
129 int store_pool = POOL_MAIN;
131 static storeblock *chainbase[NPOOLS];
132 static storeblock *current_block[NPOOLS];
133 static void *next_yield[NPOOLS];
134 static int yield_length[NPOOLS];
135 static unsigned store_block_order[NPOOLS];
137 /* pool_malloc holds the amount of memory used by the store pools; this goes up
138 and down as store is reset or released. nonpool_malloc is the total got by
139 malloc from other calls; this doesn't go down because it is just freed by
142 static int pool_malloc;
143 static int nonpool_malloc;
145 /* This variable is set by store_get() to its yield, and by store_reset() to
146 NULL. This enables string_cat() to optimize its store handling for very long
147 strings. That's why the variable is global. */
149 void *store_last_get[NPOOLS];
151 /* These are purely for stats-gathering */
153 static int nbytes[NPOOLS]; /* current bytes allocated */
154 static int maxbytes[NPOOLS]; /* max number reached */
155 static int nblocks[NPOOLS]; /* current number of blocks allocated */
156 static int maxblocks[NPOOLS];
157 static unsigned maxorder[NPOOLS];
158 static int n_nonpool_blocks; /* current number of direct store_malloc() blocks */
159 static int max_nonpool_blocks;
160 static int max_pool_malloc; /* max value for pool_malloc */
161 static int max_nonpool_malloc; /* max value for nonpool_malloc */
164 #ifndef COMPILE_UTILITY
165 static const uschar * pooluse[NPOOLS] = {
166 [POOL_MAIN] = US"main",
167 [POOL_PERM] = US"perm",
168 [POOL_SEARCH] = US"search",
169 [POOL_MESSAGE] = US"message",
170 [POOL_TAINT_MAIN] = US"main",
171 [POOL_TAINT_PERM] = US"perm",
172 [POOL_TAINT_SEARCH] = US"search",
173 [POOL_TAINT_SEARCH] = US"search",
174 [POOL_TAINT_MESSAGE] = US"message",
176 static const uschar * poolclass[NPOOLS] = {
177 [POOL_MAIN] = US"untainted",
178 [POOL_PERM] = US"untainted",
179 [POOL_SEARCH] = US"untainted",
180 [POOL_MESSAGE] = US"untainted",
181 [POOL_TAINT_MAIN] = US"tainted",
182 [POOL_TAINT_PERM] = US"tainted",
183 [POOL_TAINT_SEARCH] = US"tainted",
184 [POOL_TAINT_MESSAGE] = US"tainted",
189 static void * internal_store_malloc(int, const char *, int);
190 static void internal_store_free(void *, const char *, int linenumber);
192 /******************************************************************************/
193 /* Initialisation, for things fragile with parameter channges when using
194 static initialisers. */
199 for (int i = 0; i < NPOOLS; i++)
201 yield_length[i] = -1;
202 store_block_order[i] = 12; /* log2(allocation_size) ie. 4kB */
206 /******************************************************************************/
208 /* Test if a pointer refers to tainted memory.
210 Slower version check, for use when platform intermixes malloc and mmap area
211 addresses. Test against the current-block of all tainted pools first, then all
212 blocks of all tainted pools.
214 Return: TRUE iff tainted
218 is_tainted_fn(const void * p)
222 for (int pool = POOL_TAINT_BASE; pool < nelem(chainbase); pool++)
223 if ((b = current_block[pool]))
225 uschar * bc = US b + ALIGNED_SIZEOF_STOREBLOCK;
226 if (US p >= bc && US p < bc + b->length) return TRUE;
229 for (int pool = POOL_TAINT_BASE; pool < nelem(chainbase); pool++)
230 for (b = chainbase[pool]; b; b = b->next)
232 uschar * bc = US b + ALIGNED_SIZEOF_STOREBLOCK;
233 if (US p >= bc && US p < bc + b->length) return TRUE;
240 die_tainted(const uschar * msg, const uschar * func, int line)
242 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Taint mismatch, %s: %s %d\n",
248 /*************************************************
249 * Get a block from the current pool *
250 *************************************************/
252 /* Running out of store is a total disaster. This function is called via the
253 macro store_get(). It passes back a block of store within the current big
254 block, getting a new one if necessary. The address is saved in
258 size amount wanted, bytes
259 tainted class: set to true for untrusted data (eg. from smtp input)
260 func function from which called
261 linenumber line number in source file
263 Returns: pointer to store (panic on malloc failure)
267 store_get_3(int size, BOOL tainted, const char *func, int linenumber)
269 int pool = tainted ? store_pool + POOL_TAINT_BASE : store_pool;
271 /* Ensure we've been asked to allocate memory.
272 A negative size is a sign of a security problem.
273 A zero size might be also suspect, but our internal usage deliberately
274 does this to return a current watermark value for a later release of
279 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
280 "bad memory allocation requested (%d bytes) at %s %d",
281 size, func, linenumber);
284 /* Round up the size to a multiple of the alignment. Although this looks a
285 messy statement, because "alignment" is a constant expression, the compiler can
286 do a reasonable job of optimizing, especially if the value of "alignment" is a
287 power of two. I checked this with -O2, and gcc did very well, compiling it to 4
288 instructions on a Sparc (alignment = 8). */
290 if (size % alignment != 0) size += alignment - (size % alignment);
292 /* If there isn't room in the current block, get a new one. The minimum
293 size is STORE_BLOCK_SIZE, and we would expect this to be the norm, since
294 these functions are mostly called for small amounts of store. */
296 if (size > yield_length[pool])
299 STORE_BLOCK_SIZE(store_block_order[pool]) - ALIGNED_SIZEOF_STOREBLOCK,
301 int mlength = length + ALIGNED_SIZEOF_STOREBLOCK;
302 storeblock * newblock;
304 /* Sometimes store_reset() may leave a block for us; check if we can use it */
306 if ( (newblock = current_block[pool])
307 && (newblock = newblock->next)
308 && newblock->length < length
311 /* Give up on this block, because it's too small */
313 internal_store_free(newblock, func, linenumber);
317 /* If there was no free block, get a new one */
321 if ((nbytes[pool] += mlength) > maxbytes[pool])
322 maxbytes[pool] = nbytes[pool];
323 if ((pool_malloc += mlength) > max_pool_malloc) /* Used in pools */
324 max_pool_malloc = pool_malloc;
325 nonpool_malloc -= mlength; /* Exclude from overall total */
326 if (++nblocks[pool] > maxblocks[pool])
327 maxblocks[pool] = nblocks[pool];
329 newblock = internal_store_malloc(mlength, func, linenumber);
330 newblock->next = NULL;
331 newblock->length = length;
332 #ifndef RESTRICTED_MEMORY
333 if (store_block_order[pool]++ > maxorder[pool])
334 maxorder[pool] = store_block_order[pool];
337 if (!chainbase[pool])
338 chainbase[pool] = newblock;
340 current_block[pool]->next = newblock;
343 current_block[pool] = newblock;
344 yield_length[pool] = newblock->length;
346 (void *)(CS current_block[pool] + ALIGNED_SIZEOF_STOREBLOCK);
347 (void) VALGRIND_MAKE_MEM_NOACCESS(next_yield[pool], yield_length[pool]);
350 /* There's (now) enough room in the current block; the yield is the next
353 store_last_get[pool] = next_yield[pool];
355 /* Cut out the debugging stuff for utilities, but stop picky compilers from
358 #ifndef COMPILE_UTILITY
360 debug_printf("---%d Get %6p %5d %-14s %4d\n", pool,
361 store_last_get[pool], size, func, linenumber);
362 #endif /* COMPILE_UTILITY */
364 (void) VALGRIND_MAKE_MEM_UNDEFINED(store_last_get[pool], size);
365 /* Update next pointer and number of bytes left in the current block. */
367 next_yield[pool] = (void *)(CS next_yield[pool] + size);
368 yield_length[pool] -= size;
369 return store_last_get[pool];
374 /*************************************************
375 * Get a block from the PERM pool *
376 *************************************************/
378 /* This is just a convenience function, useful when just a single block is to
383 func function from which called
384 linenumber line number in source file
386 Returns: pointer to store (panic on malloc failure)
390 store_get_perm_3(int size, BOOL tainted, const char *func, int linenumber)
393 int old_pool = store_pool;
394 store_pool = POOL_PERM;
395 yield = store_get_3(size, tainted, func, linenumber);
396 store_pool = old_pool;
402 /*************************************************
403 * Extend a block if it is at the top *
404 *************************************************/
406 /* While reading strings of unknown length, it is often the case that the
407 string is being read into the block at the top of the stack. If it needs to be
408 extended, it is more efficient just to extend within the top block rather than
409 allocate a new block and then have to copy the data. This function is provided
410 for the use of string_cat(), but of course can be used elsewhere too.
411 The block itself is not expanded; only the top allocation from it.
414 ptr pointer to store block
415 oldsize current size of the block, as requested by user
416 newsize new size required
417 func function from which called
418 linenumber line number in source file
420 Returns: TRUE if the block is at the top of the stack and has been
421 extended; FALSE if it isn't at the top of the stack, or cannot
426 store_extend_3(void *ptr, BOOL tainted, int oldsize, int newsize,
427 const char *func, int linenumber)
429 int pool = tainted ? store_pool + POOL_TAINT_BASE : store_pool;
430 int inc = newsize - oldsize;
431 int rounded_oldsize = oldsize;
435 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
436 "bad memory extension requested (%d -> %d bytes) at %s %d",
437 oldsize, newsize, func, linenumber);
440 /* Check that the block being extended was already of the required taint status;
441 refuse to extend if not. */
443 if (is_tainted(ptr) != tainted)
446 if (rounded_oldsize % alignment != 0)
447 rounded_oldsize += alignment - (rounded_oldsize % alignment);
449 if (CS ptr + rounded_oldsize != CS (next_yield[pool]) ||
450 inc > yield_length[pool] + rounded_oldsize - oldsize)
453 /* Cut out the debugging stuff for utilities, but stop picky compilers from
456 #ifndef COMPILE_UTILITY
458 debug_printf("---%d Ext %6p %5d %-14s %4d\n", pool, ptr, newsize,
460 #endif /* COMPILE_UTILITY */
462 if (newsize % alignment != 0) newsize += alignment - (newsize % alignment);
463 next_yield[pool] = CS ptr + newsize;
464 yield_length[pool] -= newsize - rounded_oldsize;
465 (void) VALGRIND_MAKE_MEM_UNDEFINED(ptr + oldsize, inc);
473 is_pwr2_size(int len)
476 return (x & (x - 1)) == 0;
480 /*************************************************
481 * Back up to a previous point on the stack *
482 *************************************************/
484 /* This function resets the next pointer, freeing any subsequent whole blocks
485 that are now unused. Call with a cookie obtained from store_mark() only; do
486 not call with a pointer returned by store_get(). Both the untainted and tainted
487 pools corresposding to store_pool are reset.
490 r place to back up to
491 func function from which called
492 linenumber line number in source file
498 internal_store_reset(void * ptr, int pool, const char *func, int linenumber)
501 storeblock * b = current_block[pool];
502 char * bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
503 int newlength, count;
504 #ifndef COMPILE_UTILITY
505 int oldmalloc = pool_malloc;
508 /* Last store operation was not a get */
510 store_last_get[pool] = NULL;
512 /* See if the place is in the current block - as it often will be. Otherwise,
513 search for the block in which it lies. */
515 if (CS ptr < bc || CS ptr > bc + b->length)
517 for (b = chainbase[pool]; b; b = b->next)
519 bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
520 if (CS ptr >= bc && CS ptr <= bc + b->length) break;
523 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "internal error: store_reset(%p) "
524 "failed: pool=%d %-14s %4d", ptr, pool, func, linenumber);
527 /* Back up, rounding to the alignment if necessary. When testing, flatten
528 the released memory. */
530 newlength = bc + b->length - CS ptr;
531 #ifndef COMPILE_UTILITY
534 assert_no_variables(ptr, newlength, func, linenumber);
535 if (f.running_in_test_harness)
537 (void) VALGRIND_MAKE_MEM_DEFINED(ptr, newlength);
538 memset(ptr, 0xF0, newlength);
542 (void) VALGRIND_MAKE_MEM_NOACCESS(ptr, newlength);
543 next_yield[pool] = CS ptr + (newlength % alignment);
544 count = yield_length[pool];
545 count = (yield_length[pool] = newlength - (newlength % alignment)) - count;
546 current_block[pool] = b;
548 /* Free any subsequent block. Do NOT free the first
549 successor, if our current block has less than 256 bytes left. This should
550 prevent us from flapping memory. However, keep this block only when it has
551 a power-of-two size so probably is not a custom inflated one. */
553 if ( yield_length[pool] < STOREPOOL_MIN_SIZE
555 && is_pwr2_size(b->next->length + ALIGNED_SIZEOF_STOREBLOCK))
558 #ifndef COMPILE_UTILITY
560 assert_no_variables(b, b->length + ALIGNED_SIZEOF_STOREBLOCK,
563 (void) VALGRIND_MAKE_MEM_NOACCESS(CS b + ALIGNED_SIZEOF_STOREBLOCK,
564 b->length - ALIGNED_SIZEOF_STOREBLOCK);
572 int siz = b->length + ALIGNED_SIZEOF_STOREBLOCK;
574 #ifndef COMPILE_UTILITY
576 assert_no_variables(b, b->length + ALIGNED_SIZEOF_STOREBLOCK,
583 internal_store_free(b, func, linenumber);
585 #ifndef RESTRICTED_MEMORY
586 if (store_block_order[pool] > 13) store_block_order[pool]--;
590 /* Cut out the debugging stuff for utilities, but stop picky compilers from
593 #ifndef COMPILE_UTILITY
595 debug_printf("---%d Rst %6p %5d %-14s %4d\tpool %d\n", pool, ptr,
596 count + oldmalloc - pool_malloc,
597 func, linenumber, pool_malloc);
598 #endif /* COMPILE_UTILITY */
603 store_reset_3(rmark r, const char *func, int linenumber)
607 if (store_pool >= POOL_TAINT_BASE)
608 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
609 "store_reset called for pool %d: %s %d\n", store_pool, func, linenumber);
611 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
612 "store_reset called with bad mark: %s %d\n", func, linenumber);
614 internal_store_reset(*ptr, store_pool + POOL_TAINT_BASE, func, linenumber);
615 internal_store_reset(ptr, store_pool, func, linenumber);
621 /* Free tail-end unused allocation. This lets us allocate a big chunk
622 early, for cases when we only discover later how much was really needed.
624 Can be called with a value from store_get(), or an offset after such. Only
625 the tainted or untainted pool that serviced the store_get() will be affected.
627 This is mostly a cut-down version of internal_store_reset().
628 XXX needs rationalising
632 store_release_above_3(void *ptr, const char *func, int linenumber)
634 /* Search all pools' "current" blocks. If it isn't one of those,
635 ignore it (it usually will be). */
637 for (int pool = 0; pool < nelem(current_block); pool++)
639 storeblock * b = current_block[pool];
641 int count, newlength;
646 bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
647 if (CS ptr < bc || CS ptr > bc + b->length)
650 /* Last store operation was not a get */
652 store_last_get[pool] = NULL;
654 /* Back up, rounding to the alignment if necessary. When testing, flatten
655 the released memory. */
657 newlength = bc + b->length - CS ptr;
658 #ifndef COMPILE_UTILITY
661 assert_no_variables(ptr, newlength, func, linenumber);
662 if (f.running_in_test_harness)
664 (void) VALGRIND_MAKE_MEM_DEFINED(ptr, newlength);
665 memset(ptr, 0xF0, newlength);
669 (void) VALGRIND_MAKE_MEM_NOACCESS(ptr, newlength);
670 next_yield[pool] = CS ptr + (newlength % alignment);
671 count = yield_length[pool];
672 count = (yield_length[pool] = newlength - (newlength % alignment)) - count;
674 /* Cut out the debugging stuff for utilities, but stop picky compilers from
677 #ifndef COMPILE_UTILITY
679 debug_printf("---%d Rel %6p %5d %-14s %4d\tpool %d\n", pool, ptr, count,
680 func, linenumber, pool_malloc);
684 #ifndef COMPILE_UTILITY
686 debug_printf("non-last memory release try: %s %d\n", func, linenumber);
693 store_mark_3(const char *func, int linenumber)
697 #ifndef COMPILE_UTILITY
699 debug_printf("---%d Mrk %-14s %4d\tpool %d\n",
700 store_pool, func, linenumber, pool_malloc);
701 #endif /* COMPILE_UTILITY */
703 if (store_pool >= POOL_TAINT_BASE)
704 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
705 "store_mark called for pool %d: %s %d\n", store_pool, func, linenumber);
707 /* Stash a mark for the tainted-twin release, in the untainted twin. Return
708 a cookie (actually the address in the untainted pool) to the caller.
709 Reset uses the cookie to recover the t-mark, winds back the tainted pool with it
710 and winds back the untainted pool with the cookie. */
712 p = store_get_3(sizeof(void *), FALSE, func, linenumber);
713 *p = store_get_3(0, TRUE, func, linenumber);
720 /************************************************
722 ************************************************/
724 /* This function checks that the pointer it is given is the first thing in a
725 block, and if so, releases that block.
728 block block of store to consider
729 func function from which called
730 linenumber line number in source file
736 store_release_3(void * block, int pool, const char * func, int linenumber)
738 /* It will never be the first block, so no need to check that. */
740 for (storeblock * b = chainbase[pool]; b; b = b->next)
742 storeblock * bb = b->next;
743 if (bb && CS block == CS bb + ALIGNED_SIZEOF_STOREBLOCK)
745 int siz = bb->length + ALIGNED_SIZEOF_STOREBLOCK;
751 /* Cut out the debugging stuff for utilities, but stop picky compilers
752 from giving warnings. */
754 #ifndef COMPILE_UTILITY
756 debug_printf("-Release %6p %-20s %4d %d\n", (void *)bb, func,
757 linenumber, pool_malloc);
759 if (f.running_in_test_harness)
760 memset(bb, 0xF0, bb->length+ALIGNED_SIZEOF_STOREBLOCK);
761 #endif /* COMPILE_UTILITY */
763 internal_store_free(bb, func, linenumber);
770 /************************************************
772 ************************************************/
774 /* Allocate a new block big enough to expend to the given size and
775 copy the current data into it. Free the old one if possible.
777 This function is specifically provided for use when reading very
778 long strings, e.g. header lines. When the string gets longer than a
779 complete block, it gets copied to a new block. It is helpful to free
780 the old block iff the previous copy of the string is at its start,
781 and therefore the only thing in it. Otherwise, for very long strings,
782 dead store can pile up somewhat disastrously. This function checks that
783 the pointer it is given is the first thing in a block, and that nothing
784 has been allocated since. If so, releases that block.
791 Returns: new location of data
795 store_newblock_3(void * block, BOOL tainted, int newsize, int len,
796 const char * func, int linenumber)
798 int pool = tainted ? store_pool + POOL_TAINT_BASE : store_pool;
799 BOOL release_ok = !tainted && store_last_get[pool] == block;
802 #if !defined(MACRO_PREDEF) && !defined(COMPILE_UTILITY)
803 if (is_tainted(block) != tainted)
804 die_tainted(US"store_newblock", CUS func, linenumber);
807 newtext = store_get(newsize, tainted);
808 memcpy(newtext, block, len);
809 if (release_ok) store_release_3(block, pool, func, linenumber);
810 return (void *)newtext;
816 /*************************************************
818 *************************************************/
820 /* Running out of store is a total disaster for exim. Some malloc functions
821 do not run happily on very small sizes, nor do they document this fact. This
822 function is called via the macro store_malloc().
825 size amount of store wanted
826 func function from which called
827 line line number in source file
829 Returns: pointer to gotten store (panic on failure)
833 internal_store_malloc(int size, const char *func, int line)
837 size += sizeof(int); /* space to store the size, used under debug */
838 if (size < 16) size = 16;
840 if (!(yield = malloc((size_t)size)))
841 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to malloc %d bytes of memory: "
842 "called from line %d in %s", size, line, func);
844 #ifndef COMPILE_UTILITY
845 DEBUG(D_any) *(int *)yield = size;
847 yield = US yield + sizeof(int);
849 if ((nonpool_malloc += size) > max_nonpool_malloc)
850 max_nonpool_malloc = nonpool_malloc;
852 /* Cut out the debugging stuff for utilities, but stop picky compilers from
855 #ifndef COMPILE_UTILITY
856 /* If running in test harness, spend time making sure all the new store
857 is not filled with zeros so as to catch problems. */
859 if (f.running_in_test_harness)
860 memset(yield, 0xF0, (size_t)size - sizeof(int));
861 DEBUG(D_memory) debug_printf("--Malloc %6p %5d bytes\t%-20s %4d\tpool %5d nonpool %5d\n",
862 yield, size, func, line, pool_malloc, nonpool_malloc);
863 #endif /* COMPILE_UTILITY */
869 store_malloc_3(int size, const char *func, int linenumber)
871 if (n_nonpool_blocks++ > max_nonpool_blocks)
872 max_nonpool_blocks = n_nonpool_blocks;
873 return internal_store_malloc(size, func, linenumber);
877 /************************************************
879 ************************************************/
881 /* This function is called by the macro store_free().
884 block block of store to free
885 func function from which called
886 linenumber line number in source file
892 internal_store_free(void * block, const char * func, int linenumber)
894 uschar * p = US block - sizeof(int);
895 #ifndef COMPILE_UTILITY
896 DEBUG(D_any) nonpool_malloc -= *(int *)p;
897 DEBUG(D_memory) debug_printf("----Free %6p %5d bytes\t%-20s %4d\n", block, *(int *)p, func, linenumber);
903 store_free_3(void * block, const char * func, int linenumber)
906 internal_store_free(block, func, linenumber);
909 /******************************************************************************/
910 /* Stats output on process exit */
914 #ifndef COMPILE_UTILITY
917 debug_printf("----Exit nonpool max: %3d kB in %d blocks\n",
918 (max_nonpool_malloc+1023)/1024, max_nonpool_blocks);
919 debug_printf("----Exit npools max: %3d kB\n", max_pool_malloc/1024);
920 for (int i = 0; i < NPOOLS; i++)
921 debug_printf("----Exit pool %d max: %3d kB in %d blocks at order %u\t%s %s\n",
922 i, (maxbytes[i]+1023)/1024, maxblocks[i], maxorder[i],
923 poolclass[i], pooluse[i]);
929 /******************************************************************************/
930 /* Per-message pool management */
932 static rmark message_reset_point = NULL;
937 int oldpool = store_pool;
938 store_pool = POOL_MESSAGE;
939 if (!message_reset_point) message_reset_point = store_mark();
940 store_pool = oldpool;
943 void message_tidyup(void)
946 if (!message_reset_point) return;
947 oldpool = store_pool;
948 store_pool = POOL_MESSAGE;
949 message_reset_point = store_reset(message_reset_point);
950 store_pool = oldpool;