1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2018 */
6 /* Copyright (c) The Exim maintainers 2019 */
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 . Orthogonal to the three pool types, there are two classes of memory: untainted
41 and tainted. The latter is used for values derived from untrusted input, and
42 the string-expansion mechanism refuses to operate on such values (obviously,
43 it can expand an untainted value to return a tainted result). The classes
44 are implemented by duplicating the three pool types. Pool resets are requested
45 against the nontainted sibling and apply to both siblings.
50 /* keep config.h before memcheck.h, for NVALGRIND */
57 /* We need to know how to align blocks of data for general use. I'm not sure
58 how to get an alignment factor in general. In the current world, a value of 8
59 is probably right, and this is sizeof(double) on some systems and sizeof(void
60 *) on others, so take the larger of those. Since everything in this expression
61 is a constant, the compiler should optimize it to a simple constant wherever it
62 appears (I checked that gcc does do this). */
65 (sizeof(void *) > sizeof(double) ? sizeof(void *) : sizeof(double))
67 /* store_reset() will not free the following block if the last used block has
68 less than this much left in it. */
70 #define STOREPOOL_MIN_SIZE 256
72 /* Structure describing the beginning of each big block. */
74 typedef struct storeblock {
75 struct storeblock *next;
79 /* Just in case we find ourselves on a system where the structure above has a
80 length that is not a multiple of the alignment, set up a macro for the padded
83 #define ALIGNED_SIZEOF_STOREBLOCK \
84 (((sizeof(storeblock) + alignment - 1) / alignment) * alignment)
86 /* Size of block to get from malloc to carve up into smaller ones. This
87 must be a multiple of the alignment. We assume that 8192 is going to be
90 #define STORE_BLOCK_SIZE (8192 - ALIGNED_SIZEOF_STOREBLOCK)
92 /* Variables holding data for the local pools of store. The current pool number
93 is held in store_pool, which is global so that it can be changed from outside.
94 Setting the initial length values to -1 forces a malloc for the first call,
95 even if the length is zero (which is used for getting a point to reset to). */
97 int store_pool = POOL_MAIN;
100 static storeblock *chainbase[NPOOLS];
101 static storeblock *current_block[NPOOLS];
102 static void *next_yield[NPOOLS];
103 static int yield_length[NPOOLS] = { -1, -1, -1, -1, -1, -1 };
105 /* The limits of the tainted pools. Tracking these on new allocations enables
106 a fast is_tainted implementation. We assume the kernel only allocates mmaps using
107 one side or the other of data+heap, not both. */
109 void * tainted_base = (void *)-1;
110 void * tainted_top = (void *)0;
112 /* pool_malloc holds the amount of memory used by the store pools; this goes up
113 and down as store is reset or released. nonpool_malloc is the total got by
114 malloc from other calls; this doesn't go down because it is just freed by
117 static int pool_malloc;
118 static int nonpool_malloc;
120 /* This variable is set by store_get() to its yield, and by store_reset() to
121 NULL. This enables string_cat() to optimize its store handling for very long
122 strings. That's why the variable is global. */
124 void *store_last_get[NPOOLS];
126 /* These are purely for stats-gathering */
128 static int nbytes[NPOOLS]; /* current bytes allocated */
129 static int maxbytes[NPOOLS]; /* max number reached */
130 static int nblocks[NPOOLS]; /* current number of blocks allocated */
131 static int maxblocks[NPOOLS];
132 static int n_nonpool_blocks; /* current number of direct store_malloc() blocks */
133 static int max_nonpool_blocks;
134 static int max_pool_malloc; /* max value for pool_malloc */
135 static int max_nonpool_malloc; /* max value for nonpool_malloc */
138 #ifndef COMPILE_UTILITY
139 static const uschar * pooluse[NPOOLS] = {
140 [POOL_MAIN] = US"main",
141 [POOL_PERM] = US"perm",
142 [POOL_SEARCH] = US"search",
143 [POOL_TAINT_MAIN] = US"main",
144 [POOL_TAINT_PERM] = US"perm",
145 [POOL_TAINT_SEARCH] = US"search",
147 static const uschar * poolclass[NPOOLS] = {
148 [POOL_MAIN] = US"untainted",
149 [POOL_PERM] = US"untainted",
150 [POOL_SEARCH] = US"untainted",
151 [POOL_TAINT_MAIN] = US"tainted",
152 [POOL_TAINT_PERM] = US"tainted",
153 [POOL_TAINT_SEARCH] = US"tainted",
158 static void * store_mmap(int, const char *, int);
159 static void * internal_store_malloc(int, const char *, int);
160 static void internal_untainted_free(void *, const char *, int linenumber);
161 static void internal_tainted_free(storeblock *, const char *, int linenumber);
163 /******************************************************************************/
165 /* Slower version check, for use when platform intermixes malloc and mmap area
169 is_tainted_fn(const void * p)
174 for (pool = 0; pool < nelem(chainbase); pool++)
175 if ((b = current_block[pool]))
177 char * bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
178 if (CS p >= bc && CS p <= bc + b->length) goto hit;
181 for (pool = 0; pool < nelem(chainbase); pool++)
182 for (b = chainbase[pool]; b; b = b->next)
184 char * bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
185 if (CS p >= bc && CS p <= bc + b->length) goto hit;
190 return pool >= POOL_TAINT_BASE;
195 die_tainted(const uschar * msg, const uschar * func, int line)
197 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "Taint mismatch, %s: %s %d\n",
202 /*************************************************
203 * Get a block from the current pool *
204 *************************************************/
206 /* Running out of store is a total disaster. This function is called via the
207 macro store_get(). It passes back a block of store within the current big
208 block, getting a new one if necessary. The address is saved in
213 func function from which called
214 linenumber line number in source file
216 Returns: pointer to store (panic on malloc failure)
220 store_get_3(int size, BOOL tainted, const char *func, int linenumber)
222 int pool = tainted ? store_pool + POOL_TAINT_BASE : store_pool;
224 /* Round up the size to a multiple of the alignment. Although this looks a
225 messy statement, because "alignment" is a constant expression, the compiler can
226 do a reasonable job of optimizing, especially if the value of "alignment" is a
227 power of two. I checked this with -O2, and gcc did very well, compiling it to 4
228 instructions on a Sparc (alignment = 8). */
230 if (size % alignment != 0) size += alignment - (size % alignment);
232 /* If there isn't room in the current block, get a new one. The minimum
233 size is STORE_BLOCK_SIZE, and we would expect this to be the norm, since
234 these functions are mostly called for small amounts of store. */
236 if (size > yield_length[pool])
238 int length = size <= STORE_BLOCK_SIZE ? STORE_BLOCK_SIZE : size;
239 int mlength = length + ALIGNED_SIZEOF_STOREBLOCK;
240 storeblock * newblock;
242 /* Sometimes store_reset() may leave a block for us; check if we can use it */
244 if ( (newblock = current_block[pool])
245 && (newblock = newblock->next)
246 && newblock->length < length
249 /* Give up on this block, because it's too small */
251 if (pool < POOL_TAINT_BASE)
252 internal_untainted_free(newblock, func, linenumber);
254 internal_tainted_free(newblock, func, linenumber);
258 /* If there was no free block, get a new one */
262 if ((nbytes[pool] += mlength) > maxbytes[pool])
263 maxbytes[pool] = nbytes[pool];
264 if ((pool_malloc += mlength) > max_pool_malloc) /* Used in pools */
265 max_pool_malloc = pool_malloc;
266 nonpool_malloc -= mlength; /* Exclude from overall total */
267 if (++nblocks[pool] > maxblocks[pool])
268 maxblocks[pool] = nblocks[pool];
271 ? store_mmap(mlength, func, linenumber)
272 : internal_store_malloc(mlength, func, linenumber);
273 newblock->next = NULL;
274 newblock->length = length;
276 if (!chainbase[pool])
277 chainbase[pool] = newblock;
279 current_block[pool]->next = newblock;
282 current_block[pool] = newblock;
283 yield_length[pool] = newblock->length;
285 (void *)(CS current_block[pool] + ALIGNED_SIZEOF_STOREBLOCK);
286 (void) VALGRIND_MAKE_MEM_NOACCESS(next_yield[pool], yield_length[pool]);
289 /* There's (now) enough room in the current block; the yield is the next
292 store_last_get[pool] = next_yield[pool];
294 /* Cut out the debugging stuff for utilities, but stop picky compilers from
297 #ifdef COMPILE_UTILITY
299 linenumber = linenumber;
302 debug_printf("---%d Get %6p %5d %-14s %4d\n", pool,
303 store_last_get[pool], size, func, linenumber);
304 #endif /* COMPILE_UTILITY */
306 (void) VALGRIND_MAKE_MEM_UNDEFINED(store_last_get[pool], size);
307 /* Update next pointer and number of bytes left in the current block. */
309 next_yield[pool] = (void *)(CS next_yield[pool] + size);
310 yield_length[pool] -= size;
311 return store_last_get[pool];
316 /*************************************************
317 * Get a block from the PERM pool *
318 *************************************************/
320 /* This is just a convenience function, useful when just a single block is to
325 func function from which called
326 linenumber line number in source file
328 Returns: pointer to store (panic on malloc failure)
332 store_get_perm_3(int size, BOOL tainted, const char *func, int linenumber)
335 int old_pool = store_pool;
336 store_pool = POOL_PERM;
337 yield = store_get_3(size, tainted, func, linenumber);
338 store_pool = old_pool;
344 /*************************************************
345 * Extend a block if it is at the top *
346 *************************************************/
348 /* While reading strings of unknown length, it is often the case that the
349 string is being read into the block at the top of the stack. If it needs to be
350 extended, it is more efficient just to extend within the top block rather than
351 allocate a new block and then have to copy the data. This function is provided
352 for the use of string_cat(), but of course can be used elsewhere too.
353 The block itself is not expanded; only the top allocation from it.
356 ptr pointer to store block
357 oldsize current size of the block, as requested by user
358 newsize new size required
359 func function from which called
360 linenumber line number in source file
362 Returns: TRUE if the block is at the top of the stack and has been
363 extended; FALSE if it isn't at the top of the stack, or cannot
368 store_extend_3(void *ptr, BOOL tainted, int oldsize, int newsize,
369 const char *func, int linenumber)
371 int pool = tainted ? store_pool + POOL_TAINT_BASE : store_pool;
372 int inc = newsize - oldsize;
373 int rounded_oldsize = oldsize;
375 /* Check that the block being extended was already of the required taint status;
376 refuse to extend if not. */
378 if (is_tainted(ptr) != tainted)
381 if (rounded_oldsize % alignment != 0)
382 rounded_oldsize += alignment - (rounded_oldsize % alignment);
384 if (CS ptr + rounded_oldsize != CS (next_yield[pool]) ||
385 inc > yield_length[pool] + rounded_oldsize - oldsize)
388 /* Cut out the debugging stuff for utilities, but stop picky compilers from
391 #ifdef COMPILE_UTILITY
393 linenumber = linenumber;
396 debug_printf("---%d Ext %6p %5d %-14s %4d\n", pool, ptr, newsize,
398 #endif /* COMPILE_UTILITY */
400 if (newsize % alignment != 0) newsize += alignment - (newsize % alignment);
401 next_yield[pool] = CS ptr + newsize;
402 yield_length[pool] -= newsize - rounded_oldsize;
403 (void) VALGRIND_MAKE_MEM_UNDEFINED(ptr + oldsize, inc);
410 /*************************************************
411 * Back up to a previous point on the stack *
412 *************************************************/
414 /* This function resets the next pointer, freeing any subsequent whole blocks
415 that are now unused. Call with a cookie obtained from store_mark() only; do
416 not call with a pointer returned by store_get(). Both the untainted and tainted
417 pools corresposding to store_pool are reset.
420 r place to back up to
421 func function from which called
422 linenumber line number in source file
428 internal_store_reset(void * ptr, int pool, const char *func, int linenumber)
431 storeblock * b = current_block[pool];
432 char * bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
433 int newlength, count;
434 #ifndef COMPILE_UTILITY
435 int oldmalloc = pool_malloc;
438 /* Last store operation was not a get */
440 store_last_get[pool] = NULL;
442 /* See if the place is in the current block - as it often will be. Otherwise,
443 search for the block in which it lies. */
445 if (CS ptr < bc || CS ptr > bc + b->length)
447 for (b = chainbase[pool]; b; b = b->next)
449 bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
450 if (CS ptr >= bc && CS ptr <= bc + b->length) break;
453 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "internal error: store_reset(%p) "
454 "failed: pool=%d %-14s %4d", ptr, pool, func, linenumber);
457 /* Back up, rounding to the alignment if necessary. When testing, flatten
458 the released memory. */
460 newlength = bc + b->length - CS ptr;
461 #ifndef COMPILE_UTILITY
464 assert_no_variables(ptr, newlength, func, linenumber);
465 if (f.running_in_test_harness)
467 (void) VALGRIND_MAKE_MEM_DEFINED(ptr, newlength);
468 memset(ptr, 0xF0, newlength);
472 (void) VALGRIND_MAKE_MEM_NOACCESS(ptr, newlength);
473 next_yield[pool] = CS ptr + (newlength % alignment);
474 count = yield_length[pool];
475 count = (yield_length[pool] = newlength - (newlength % alignment)) - count;
476 current_block[pool] = b;
478 /* Free any subsequent block. Do NOT free the first
479 successor, if our current block has less than 256 bytes left. This should
480 prevent us from flapping memory. However, keep this block only when it has
483 if ( yield_length[pool] < STOREPOOL_MIN_SIZE
485 && b->next->length == STORE_BLOCK_SIZE)
488 #ifndef COMPILE_UTILITY
490 assert_no_variables(b, b->length + ALIGNED_SIZEOF_STOREBLOCK,
493 (void) VALGRIND_MAKE_MEM_NOACCESS(CS b + ALIGNED_SIZEOF_STOREBLOCK,
494 b->length - ALIGNED_SIZEOF_STOREBLOCK);
502 int siz = b->length + ALIGNED_SIZEOF_STOREBLOCK;
503 #ifndef COMPILE_UTILITY
505 assert_no_variables(b, b->length + ALIGNED_SIZEOF_STOREBLOCK,
512 if (pool < POOL_TAINT_BASE)
513 internal_untainted_free(b, func, linenumber);
515 internal_tainted_free(b, func, linenumber);
518 /* Cut out the debugging stuff for utilities, but stop picky compilers from
521 #ifdef COMPILE_UTILITY
523 linenumber = linenumber;
526 debug_printf("---%d Rst %6p %5d %-14s %4d %d\n", pool, ptr,
527 count + oldmalloc - pool_malloc,
528 func, linenumber, pool_malloc);
529 #endif /* COMPILE_UTILITY */
534 store_reset_3(rmark r, int pool, const char *func, int linenumber)
538 if (pool >= POOL_TAINT_BASE)
539 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
540 "store_reset called for pool %d: %s %d\n", pool, func, linenumber);
542 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
543 "store_reset called with bad mark: %s %d\n", func, linenumber);
545 internal_store_reset(*ptr, pool + POOL_TAINT_BASE, func, linenumber);
546 internal_store_reset(ptr, pool, func, linenumber);
552 /* Free tail-end unused allocation. This lets us allocate a big chunk
553 early, for cases when we only discover later how much was really needed.
555 Can be called with a value from store_get(), or an offset after such. Only
556 the tainted or untainted pool that serviced the store_get() will be affected.
558 This is mostly a cut-down version of internal_store_reset().
559 XXX needs rationalising
563 store_release_above_3(void *ptr, const char *func, int linenumber)
565 /* Search all pools' "current" blocks. If it isn't one of those,
566 ignore it (it usually will be). */
568 for (int pool = 0; pool < nelem(current_block); pool++)
570 storeblock * b = current_block[pool];
572 int count, newlength;
577 bc = CS b + ALIGNED_SIZEOF_STOREBLOCK;
578 if (CS ptr < bc || CS ptr > bc + b->length)
581 /* Last store operation was not a get */
583 store_last_get[pool] = NULL;
585 /* Back up, rounding to the alignment if necessary. When testing, flatten
586 the released memory. */
588 newlength = bc + b->length - CS ptr;
589 #ifndef COMPILE_UTILITY
592 assert_no_variables(ptr, newlength, func, linenumber);
593 if (f.running_in_test_harness)
595 (void) VALGRIND_MAKE_MEM_DEFINED(ptr, newlength);
596 memset(ptr, 0xF0, newlength);
600 (void) VALGRIND_MAKE_MEM_NOACCESS(ptr, newlength);
601 next_yield[pool] = CS ptr + (newlength % alignment);
602 count = yield_length[pool];
603 count = (yield_length[pool] = newlength - (newlength % alignment)) - count;
605 /* Cut out the debugging stuff for utilities, but stop picky compilers from
608 #ifdef COMPILE_UTILITY
610 linenumber = linenumber;
613 debug_printf("---%d Rel %6p %5d %-14s %4d %d\n", pool, ptr, count,
614 func, linenumber, pool_malloc);
618 #ifndef COMPILE_UTILITY
620 debug_printf("non-last memory release try: %s %d\n", func, linenumber);
627 store_mark_3(const char *func, int linenumber)
631 if (store_pool >= POOL_TAINT_BASE)
632 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
633 "store_mark called for pool %d: %s %d\n", store_pool, func, linenumber);
635 /* Stash a mark for the tainted-twin release, in the untainted twin. Return
636 a cookie (actually the address in the untainted pool) to the caller.
637 Reset uses the cookie to recover the t-mark, winds back the tainted pool with it
638 and winds back the untainted pool with the cookie. */
640 p = store_get_3(sizeof(void *), FALSE, func, linenumber);
641 *p = store_get_3(0, TRUE, func, linenumber);
648 /************************************************
650 ************************************************/
652 /* This function checks that the pointer it is given is the first thing in a
653 block, and if so, releases that block.
656 block block of store to consider
657 func function from which called
658 linenumber line number in source file
664 store_release_3(void * block, int pool, const char * func, int linenumber)
666 /* It will never be the first block, so no need to check that. */
668 for (storeblock * b = chainbase[pool]; b; b = b->next)
670 storeblock * bb = b->next;
671 if (bb && CS block == CS bb + ALIGNED_SIZEOF_STOREBLOCK)
673 int siz = bb->length + ALIGNED_SIZEOF_STOREBLOCK;
679 /* Cut out the debugging stuff for utilities, but stop picky compilers
680 from giving warnings. */
682 #ifdef COMPILE_UTILITY
684 linenumber = linenumber;
687 debug_printf("-Release %6p %-20s %4d %d\n", (void *)bb, func,
688 linenumber, pool_malloc);
690 if (f.running_in_test_harness)
691 memset(bb, 0xF0, bb->length+ALIGNED_SIZEOF_STOREBLOCK);
692 #endif /* COMPILE_UTILITY */
701 /************************************************
703 ************************************************/
705 /* Allocate a new block big enough to expend to the given size and
706 copy the current data into it. Free the old one if possible.
708 This function is specifically provided for use when reading very
709 long strings, e.g. header lines. When the string gets longer than a
710 complete block, it gets copied to a new block. It is helpful to free
711 the old block iff the previous copy of the string is at its start,
712 and therefore the only thing in it. Otherwise, for very long strings,
713 dead store can pile up somewhat disastrously. This function checks that
714 the pointer it is given is the first thing in a block, and that nothing
715 has been allocated since. If so, releases that block.
722 Returns: new location of data
726 store_newblock_3(void * block, BOOL tainted, int newsize, int len,
727 const char * func, int linenumber)
729 int pool = tainted ? store_pool + POOL_TAINT_BASE : store_pool;
730 BOOL release_ok = !tainted && store_last_get[pool] == block;
734 if (is_tainted(block) != tainted)
735 die_tainted(US"store_newblock", CUS func, linenumber);
738 newtext = store_get(newsize, tainted);
739 memcpy(newtext, block, len);
740 if (release_ok) store_release_3(block, pool, func, linenumber);
741 return (void *)newtext;
747 /******************************************************************************/
749 store_alloc_tail(void * yield, int size, const char * func, int line,
752 if ((nonpool_malloc += size) > max_nonpool_malloc)
753 max_nonpool_malloc = nonpool_malloc;
755 /* Cut out the debugging stuff for utilities, but stop picky compilers from
758 #ifdef COMPILE_UTILITY
759 func = func; line = line; type = type;
762 /* If running in test harness, spend time making sure all the new store
763 is not filled with zeros so as to catch problems. */
765 if (f.running_in_test_harness)
766 memset(yield, 0xF0, (size_t)size);
767 DEBUG(D_memory) debug_printf("--%6s %6p %5d bytes\t%-14s %4d\tpool %5d nonpool %5d\n",
768 type, yield, size, func, line, pool_malloc, nonpool_malloc);
769 #endif /* COMPILE_UTILITY */
774 /*************************************************
776 *************************************************/
779 store_mmap(int size, const char * func, int line)
783 if (size < 16) size = 16;
785 if (!(yield = mmap(NULL, (size_t)size,
786 PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)))
787 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to mmap %d bytes of memory: "
788 "called from line %d of %s", size, line, func);
790 if (yield < tainted_base) tainted_base = yield;
791 if ((top = yield + size) > tainted_top) tainted_top = top;
793 return store_alloc_tail(yield, size, func, line, US"Mmap");
796 /*************************************************
798 *************************************************/
800 /* Running out of store is a total disaster for exim. Some malloc functions
801 do not run happily on very small sizes, nor do they document this fact. This
802 function is called via the macro store_malloc().
805 size amount of store wanted
806 func function from which called
807 linenumber line number in source file
809 Returns: pointer to gotten store (panic on failure)
813 internal_store_malloc(int size, const char *func, int linenumber)
817 if (size < 16) size = 16;
819 if (!(yield = malloc((size_t)size)))
820 log_write(0, LOG_MAIN|LOG_PANIC_DIE, "failed to malloc %d bytes of memory: "
821 "called from line %d in %s", size, linenumber, func);
823 return store_alloc_tail(yield, size, func, linenumber, US"Malloc");
827 store_malloc_3(int size, const char *func, int linenumber)
829 if (n_nonpool_blocks++ > max_nonpool_blocks)
830 max_nonpool_blocks = n_nonpool_blocks;
831 return internal_store_malloc(size, func, linenumber);
835 /************************************************
837 ************************************************/
839 /* This function is called by the macro store_free().
842 block block of store to free
843 func function from which called
844 linenumber line number in source file
850 internal_untainted_free(void * block, const char * func, int linenumber)
852 #ifdef COMPILE_UTILITY
854 linenumber = linenumber;
857 debug_printf("----Free %6p %-20s %4d\n", block, func, linenumber);
858 #endif /* COMPILE_UTILITY */
863 store_free_3(void * block, const char * func, int linenumber)
866 internal_untainted_free(block, func, linenumber);
869 /******************************************************************************/
871 internal_tainted_free(storeblock * block, const char * func, int linenumber)
873 #ifdef COMPILE_UTILITY
875 linenumber = linenumber;
878 debug_printf("---Unmap %6p %-20s %4d\n", block, func, linenumber);
880 munmap((void *)block, block->length + ALIGNED_SIZEOF_STOREBLOCK);
883 /******************************************************************************/
884 /* Stats output on process exit */
888 #ifndef COMPILE_UTILITY
891 debug_printf("----Exit nonpool max: %3d kB in %d blocks\n",
892 (max_nonpool_malloc+1023)/1024, max_nonpool_blocks);
893 debug_printf("----Exit npools max: %3d kB\n", max_pool_malloc/1024);
894 for (int i = 0; i < NPOOLS; i++)
895 debug_printf("----Exit pool %d max: %3d kB in %d blocks\t%s %s\n",
896 i, maxbytes[i]/1024, maxblocks[i], poolclass[i], pooluse[i]);