Merge from vendor branch OPENSSH:
[dragonfly.git] / contrib / bind-9.3 / lib / isc / mem.c
1 /*
2  * Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1997-2003  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: mem.c,v 1.98.2.7.2.7 2005/03/17 03:58:32 marka Exp $ */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <stddef.h>
25
26 #include <limits.h>
27
28 #include <isc/magic.h>
29 #include <isc/mem.h>
30 #include <isc/msgs.h>
31 #include <isc/ondestroy.h>
32 #include <isc/string.h>
33
34 #include <isc/mutex.h>
35 #include <isc/util.h>
36
37 #ifndef ISC_MEM_DEBUGGING
38 #define ISC_MEM_DEBUGGING 0
39 #endif
40 LIBISC_EXTERNAL_DATA unsigned int isc_mem_debugging = ISC_MEM_DEBUGGING;
41
42 /*
43  * Define ISC_MEM_USE_INTERNAL_MALLOC=1 to use the internal malloc()
44  * implementation in preference to the system one.  The internal malloc()
45  * is very space-efficient, and quite fast on uniprocessor systems.  It
46  * performs poorly on multiprocessor machines.
47  */
48 #ifndef ISC_MEM_USE_INTERNAL_MALLOC
49 #define ISC_MEM_USE_INTERNAL_MALLOC 0
50 #endif
51
52 /*
53  * Constants.
54  */
55
56 #define DEF_MAX_SIZE            1100
57 #define DEF_MEM_TARGET          4096
58 #define ALIGNMENT_SIZE          8               /* must be a power of 2 */
59 #define NUM_BASIC_BLOCKS        64              /* must be > 1 */
60 #define TABLE_INCREMENT         1024
61 #define DEBUGLIST_COUNT         1024
62
63 /*
64  * Types.
65  */
66 #if ISC_MEM_TRACKLINES
67 typedef struct debuglink debuglink_t;
68 struct debuglink {
69         ISC_LINK(debuglink_t)   link;
70         const void             *ptr[DEBUGLIST_COUNT];
71         unsigned int            size[DEBUGLIST_COUNT];
72         const char             *file[DEBUGLIST_COUNT];
73         unsigned int            line[DEBUGLIST_COUNT];
74         unsigned int            count;
75 };
76
77 #define FLARG_PASS      , file, line
78 #define FLARG           , const char *file, int line
79 #else
80 #define FLARG_PASS
81 #define FLARG
82 #endif
83
84 typedef struct element element;
85 struct element {
86         element *               next;
87 };
88
89 typedef struct {
90         /*
91          * This structure must be ALIGNMENT_SIZE bytes.
92          */
93         union {
94                 size_t          size;
95                 char            bytes[ALIGNMENT_SIZE];
96         } u;
97 } size_info;
98
99 struct stats {
100         unsigned long           gets;
101         unsigned long           totalgets;
102 #if ISC_MEM_USE_INTERNAL_MALLOC
103         unsigned long           blocks;
104         unsigned long           freefrags;
105 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
106 };
107
108 #define MEM_MAGIC               ISC_MAGIC('M', 'e', 'm', 'C')
109 #define VALID_CONTEXT(c)        ISC_MAGIC_VALID(c, MEM_MAGIC)
110
111 #if ISC_MEM_TRACKLINES
112 typedef ISC_LIST(debuglink_t)   debuglist_t;
113 #endif
114
115 struct isc_mem {
116         unsigned int            magic;
117         isc_ondestroy_t         ondestroy;
118         isc_mutex_t             lock;
119         isc_memalloc_t          memalloc;
120         isc_memfree_t           memfree;
121         void *                  arg;
122         size_t                  max_size;
123         isc_boolean_t           checkfree;
124         struct stats *          stats;
125         unsigned int            references;
126         size_t                  quota;
127         size_t                  total;
128         size_t                  inuse;
129         size_t                  maxinuse;
130         size_t                  hi_water;
131         size_t                  lo_water;
132         isc_boolean_t           hi_called;
133         isc_mem_water_t         water;
134         void *                  water_arg;
135         ISC_LIST(isc_mempool_t) pools;
136
137 #if ISC_MEM_USE_INTERNAL_MALLOC
138         size_t                  mem_target;
139         element **              freelists;
140         element *               basic_blocks;
141         unsigned char **        basic_table;
142         unsigned int            basic_table_count;
143         unsigned int            basic_table_size;
144         unsigned char *         lowest;
145         unsigned char *         highest;
146 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
147
148 #if ISC_MEM_TRACKLINES
149         debuglist_t *           debuglist;
150 #endif
151
152         unsigned int            memalloc_failures;
153 };
154
155 #define MEMPOOL_MAGIC           ISC_MAGIC('M', 'E', 'M', 'p')
156 #define VALID_MEMPOOL(c)        ISC_MAGIC_VALID(c, MEMPOOL_MAGIC)
157
158 struct isc_mempool {
159         /* always unlocked */
160         unsigned int    magic;          /* magic number */
161         isc_mutex_t    *lock;           /* optional lock */
162         isc_mem_t      *mctx;           /* our memory context */
163         /* locked via the memory context's lock */
164         ISC_LINK(isc_mempool_t) link;   /* next pool in this mem context */
165         /* optionally locked from here down */
166         element        *items;          /* low water item list */
167         size_t          size;           /* size of each item on this pool */
168         unsigned int    maxalloc;       /* max number of items allowed */
169         unsigned int    allocated;      /* # of items currently given out */
170         unsigned int    freecount;      /* # of items on reserved list */
171         unsigned int    freemax;        /* # of items allowed on free list */
172         unsigned int    fillcount;      /* # of items to fetch on each fill */
173         /* Stats only. */
174         unsigned int    gets;           /* # of requests to this pool */
175         /* Debugging only. */
176 #if ISC_MEMPOOL_NAMES
177         char            name[16];       /* printed name in stats reports */
178 #endif
179 };
180
181 /*
182  * Private Inline-able.
183  */
184
185 #if ! ISC_MEM_TRACKLINES
186 #define ADD_TRACE(a, b, c, d, e)
187 #define DELETE_TRACE(a, b, c, d, e)
188 #else
189 #define ADD_TRACE(a, b, c, d, e) \
190         do { \
191                 if ((isc_mem_debugging & (ISC_MEM_DEBUGTRACE | \
192                                           ISC_MEM_DEBUGRECORD)) != 0 && \
193                      b != NULL) \
194                          add_trace_entry(a, b, c, d, e); \
195         } while (0)
196 #define DELETE_TRACE(a, b, c, d, e)     delete_trace_entry(a, b, c, d, e)
197
198 static void
199 print_active(isc_mem_t *ctx, FILE *out);
200
201 /*
202  * mctx must be locked.
203  */
204 static inline void
205 add_trace_entry(isc_mem_t *mctx, const void *ptr, unsigned int size
206                 FLARG)
207 {
208         debuglink_t *dl;
209         unsigned int i;
210
211         if ((isc_mem_debugging & ISC_MEM_DEBUGTRACE) != 0)
212                 fprintf(stderr, isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
213                                                ISC_MSG_ADDTRACE,
214                                                "add %p size %u "
215                                                "file %s line %u mctx %p\n"),
216                         ptr, size, file, line, mctx);
217
218         if (mctx->debuglist == NULL)
219                 return;
220
221         if (size > mctx->max_size)
222                 size = mctx->max_size;
223
224         dl = ISC_LIST_HEAD(mctx->debuglist[size]);
225         while (dl != NULL) {
226                 if (dl->count == DEBUGLIST_COUNT)
227                         goto next;
228                 for (i = 0; i < DEBUGLIST_COUNT; i++) {
229                         if (dl->ptr[i] == NULL) {
230                                 dl->ptr[i] = ptr;
231                                 dl->size[i] = size;
232                                 dl->file[i] = file;
233                                 dl->line[i] = line;
234                                 dl->count++;
235                                 return;
236                         }
237                 }
238         next:
239                 dl = ISC_LIST_NEXT(dl, link);
240         }
241
242         dl = malloc(sizeof(debuglink_t));
243         INSIST(dl != NULL);
244
245         ISC_LINK_INIT(dl, link);
246         for (i = 1; i < DEBUGLIST_COUNT; i++) {
247                 dl->ptr[i] = NULL;
248                 dl->size[i] = 0;
249                 dl->file[i] = NULL;
250                 dl->line[i] = 0;
251         }
252
253         dl->ptr[0] = ptr;
254         dl->size[0] = size;
255         dl->file[0] = file;
256         dl->line[0] = line;
257         dl->count = 1;
258
259         ISC_LIST_PREPEND(mctx->debuglist[size], dl, link);
260 }
261
262 static inline void
263 delete_trace_entry(isc_mem_t *mctx, const void *ptr, unsigned int size,
264                    const char *file, unsigned int line)
265 {
266         debuglink_t *dl;
267         unsigned int i;
268
269         if ((isc_mem_debugging & ISC_MEM_DEBUGTRACE) != 0)
270                 fprintf(stderr, isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
271                                                ISC_MSG_DELTRACE,
272                                                "del %p size %u "
273                                                "file %s line %u mctx %p\n"),
274                         ptr, size, file, line, mctx);
275
276         if (mctx->debuglist == NULL)
277                 return;
278
279         if (size > mctx->max_size)
280                 size = mctx->max_size;
281
282         dl = ISC_LIST_HEAD(mctx->debuglist[size]);
283         while (dl != NULL) {
284                 for (i = 0; i < DEBUGLIST_COUNT; i++) {
285                         if (dl->ptr[i] == ptr) {
286                                 dl->ptr[i] = NULL;
287                                 dl->size[i] = 0;
288                                 dl->file[i] = NULL;
289                                 dl->line[i] = 0;
290
291                                 INSIST(dl->count > 0);
292                                 dl->count--;
293                                 if (dl->count == 0) {
294                                         ISC_LIST_UNLINK(mctx->debuglist[size],
295                                                         dl, link);
296                                         free(dl);
297                                 }
298                                 return;
299                         }
300                 }
301                 dl = ISC_LIST_NEXT(dl, link);
302         }
303
304         /*
305          * If we get here, we didn't find the item on the list.  We're
306          * screwed.
307          */
308         INSIST(dl != NULL);
309 }
310 #endif /* ISC_MEM_TRACKLINES */
311
312 #if ISC_MEM_USE_INTERNAL_MALLOC
313 static inline size_t
314 rmsize(size_t size) {
315         /*
316          * round down to ALIGNMENT_SIZE
317          */
318         return (size & (~(ALIGNMENT_SIZE - 1)));
319 }
320
321 static inline size_t
322 quantize(size_t size) {
323         /*
324          * Round up the result in order to get a size big
325          * enough to satisfy the request and be aligned on ALIGNMENT_SIZE
326          * byte boundaries.
327          */
328
329         if (size == 0)
330                 return (ALIGNMENT_SIZE);
331         return ((size + ALIGNMENT_SIZE - 1) & (~(ALIGNMENT_SIZE - 1)));
332 }
333
334 static inline isc_boolean_t
335 more_basic_blocks(isc_mem_t *ctx) {
336         void *new;
337         unsigned char *curr, *next;
338         unsigned char *first, *last;
339         unsigned char **table;
340         unsigned int table_size;
341         size_t increment;
342         int i;
343
344         /* Require: we hold the context lock. */
345
346         /*
347          * Did we hit the quota for this context?
348          */
349         increment = NUM_BASIC_BLOCKS * ctx->mem_target;
350         if (ctx->quota != 0 && ctx->total + increment > ctx->quota)
351                 return (ISC_FALSE);
352
353         INSIST(ctx->basic_table_count <= ctx->basic_table_size);
354         if (ctx->basic_table_count == ctx->basic_table_size) {
355                 table_size = ctx->basic_table_size + TABLE_INCREMENT;
356                 table = (ctx->memalloc)(ctx->arg,
357                                         table_size * sizeof(unsigned char *));
358                 if (table == NULL) {
359                         ctx->memalloc_failures++;
360                         return (ISC_FALSE);
361                 }
362                 if (ctx->basic_table_size != 0) {
363                         memcpy(table, ctx->basic_table,
364                                ctx->basic_table_size *
365                                sizeof(unsigned char *));
366                         (ctx->memfree)(ctx->arg, ctx->basic_table);
367                 }
368                 ctx->basic_table = table;
369                 ctx->basic_table_size = table_size;
370         }
371
372         new = (ctx->memalloc)(ctx->arg, NUM_BASIC_BLOCKS * ctx->mem_target);
373         if (new == NULL) {
374                 ctx->memalloc_failures++;
375                 return (ISC_FALSE);
376         }
377         ctx->total += increment;
378         ctx->basic_table[ctx->basic_table_count] = new;
379         ctx->basic_table_count++;
380
381         curr = new;
382         next = curr + ctx->mem_target;
383         for (i = 0; i < (NUM_BASIC_BLOCKS - 1); i++) {
384                 ((element *)curr)->next = (element *)next;
385                 curr = next;
386                 next += ctx->mem_target;
387         }
388         /*
389          * curr is now pointing at the last block in the
390          * array.
391          */
392         ((element *)curr)->next = NULL;
393         first = new;
394         last = first + NUM_BASIC_BLOCKS * ctx->mem_target - 1;
395         if (first < ctx->lowest || ctx->lowest == NULL)
396                 ctx->lowest = first;
397         if (last > ctx->highest)
398                 ctx->highest = last;
399         ctx->basic_blocks = new;
400
401         return (ISC_TRUE);
402 }
403
404 static inline isc_boolean_t
405 more_frags(isc_mem_t *ctx, size_t new_size) {
406         int i, frags;
407         size_t total_size;
408         void *new;
409         unsigned char *curr, *next;
410
411         /*
412          * Try to get more fragments by chopping up a basic block.
413          */
414
415         if (ctx->basic_blocks == NULL) {
416                 if (!more_basic_blocks(ctx)) {
417                         /*
418                          * We can't get more memory from the OS, or we've
419                          * hit the quota for this context.
420                          */
421                         /*
422                          * XXXRTH  "At quota" notification here.
423                          */
424                         return (ISC_FALSE);
425                 }
426         }
427
428         total_size = ctx->mem_target;
429         new = ctx->basic_blocks;
430         ctx->basic_blocks = ctx->basic_blocks->next;
431         frags = total_size / new_size;
432         ctx->stats[new_size].blocks++;
433         ctx->stats[new_size].freefrags += frags;
434         /*
435          * Set up a linked-list of blocks of size
436          * "new_size".
437          */
438         curr = new;
439         next = curr + new_size;
440         total_size -= new_size;
441         for (i = 0; i < (frags - 1); i++) {
442                 ((element *)curr)->next = (element *)next;
443                 curr = next;
444                 next += new_size;
445                 total_size -= new_size;
446         }
447         /*
448          * Add the remaining fragment of the basic block to a free list.
449          */
450         total_size = rmsize(total_size);
451         if (total_size > 0) {
452                 ((element *)next)->next = ctx->freelists[total_size];
453                 ctx->freelists[total_size] = (element *)next;
454                 ctx->stats[total_size].freefrags++;
455         }
456         /*
457          * curr is now pointing at the last block in the
458          * array.
459          */
460         ((element *)curr)->next = NULL;
461         ctx->freelists[new_size] = new;
462
463         return (ISC_TRUE);
464 }
465
466 static inline void *
467 mem_getunlocked(isc_mem_t *ctx, size_t size) {
468         size_t new_size = quantize(size);
469         void *ret;
470
471         if (size >= ctx->max_size || new_size >= ctx->max_size) {
472                 /*
473                  * memget() was called on something beyond our upper limit.
474                  */
475                 if (ctx->quota != 0 && ctx->total + size > ctx->quota) {
476                         ret = NULL;
477                         goto done;
478                 }
479                 ret = (ctx->memalloc)(ctx->arg, size);
480                 if (ret == NULL) {
481                         ctx->memalloc_failures++;
482                         goto done;
483                 }
484                 ctx->total += size;
485                 ctx->inuse += size;
486                 ctx->stats[ctx->max_size].gets++;
487                 ctx->stats[ctx->max_size].totalgets++;
488                 /*
489                  * If we don't set new_size to size, then the
490                  * ISC_MEM_FILL code might write over bytes we
491                  * don't own.
492                  */
493                 new_size = size;
494                 goto done;
495         }
496
497         /*
498          * If there are no blocks in the free list for this size, get a chunk
499          * of memory and then break it up into "new_size"-sized blocks, adding
500          * them to the free list.
501          */
502         if (ctx->freelists[new_size] == NULL && !more_frags(ctx, new_size))
503                 return (NULL);
504
505         /*
506          * The free list uses the "rounded-up" size "new_size".
507          */
508         ret = ctx->freelists[new_size];
509         ctx->freelists[new_size] = ctx->freelists[new_size]->next;
510
511         /*
512          * The stats[] uses the _actual_ "size" requested by the
513          * caller, with the caveat (in the code above) that "size" >= the
514          * max. size (max_size) ends up getting recorded as a call to
515          * max_size.
516          */
517         ctx->stats[size].gets++;
518         ctx->stats[size].totalgets++;
519         ctx->stats[new_size].freefrags--;
520         ctx->inuse += new_size;
521
522  done:
523
524 #if ISC_MEM_FILL
525         if (ret != NULL)
526                 memset(ret, 0xbe, new_size); /* Mnemonic for "beef". */
527 #endif
528
529         return (ret);
530 }
531
532 #if ISC_MEM_FILL && ISC_MEM_CHECKOVERRUN
533 static inline void
534 check_overrun(void *mem, size_t size, size_t new_size) {
535         unsigned char *cp;
536
537         cp = (unsigned char *)mem;
538         cp += size;
539         while (size < new_size) {
540                 INSIST(*cp == 0xbe);
541                 cp++;
542                 size++;
543         }
544 }
545 #endif
546
547 static inline void
548 mem_putunlocked(isc_mem_t *ctx, void *mem, size_t size) {
549         size_t new_size = quantize(size);
550
551         if (size == ctx->max_size || new_size >= ctx->max_size) {
552                 /*
553                  * memput() called on something beyond our upper limit.
554                  */
555 #if ISC_MEM_FILL
556                 memset(mem, 0xde, size); /* Mnemonic for "dead". */
557 #endif
558                 (ctx->memfree)(ctx->arg, mem);
559                 INSIST(ctx->stats[ctx->max_size].gets != 0);
560                 ctx->stats[ctx->max_size].gets--;
561                 INSIST(size <= ctx->total);
562                 ctx->inuse -= size;
563                 ctx->total -= size;
564                 return;
565         }
566
567 #if ISC_MEM_FILL
568 #if ISC_MEM_CHECKOVERRUN
569         check_overrun(mem, size, new_size);
570 #endif
571         memset(mem, 0xde, new_size); /* Mnemonic for "dead". */
572 #endif
573
574         /*
575          * The free list uses the "rounded-up" size "new_size".
576          */
577         ((element *)mem)->next = ctx->freelists[new_size];
578         ctx->freelists[new_size] = (element *)mem;
579
580         /*
581          * The stats[] uses the _actual_ "size" requested by the
582          * caller, with the caveat (in the code above) that "size" >= the
583          * max. size (max_size) ends up getting recorded as a call to
584          * max_size.
585          */
586         INSIST(ctx->stats[size].gets != 0);
587         ctx->stats[size].gets--;
588         ctx->stats[new_size].freefrags++;
589         ctx->inuse -= new_size;
590 }
591
592 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
593
594 /*
595  * Perform a malloc, doing memory filling and overrun detection as necessary.
596  */
597 static inline void *
598 mem_get(isc_mem_t *ctx, size_t size) {
599         char *ret;
600
601 #if ISC_MEM_CHECKOVERRUN
602         size += 1;
603 #endif
604
605         ret = (ctx->memalloc)(ctx->arg, size);
606         if (ret == NULL)
607                 ctx->memalloc_failures++;       
608
609 #if ISC_MEM_FILL
610         if (ret != NULL)
611                 memset(ret, 0xbe, size); /* Mnemonic for "beef". */
612 #else
613 #  if ISC_MEM_CHECKOVERRUN
614         if (ret != NULL)
615                 ret[size-1] = 0xbe;
616 #  endif
617 #endif
618
619         return (ret);
620 }
621
622 /*
623  * Perform a free, doing memory filling and overrun detection as necessary.
624  */
625 static inline void
626 mem_put(isc_mem_t *ctx, void *mem, size_t size) {
627 #if ISC_MEM_CHECKOVERRUN
628         INSIST(((unsigned char *)mem)[size] == 0xbe);
629 #endif
630 #if ISC_MEM_FILL
631         memset(mem, 0xde, size); /* Mnemonic for "dead". */
632 #else
633         UNUSED(size);
634 #endif
635         (ctx->memfree)(ctx->arg, mem);
636 }
637
638 /*
639  * Update internal counters after a memory get.
640  */
641 static inline void
642 mem_getstats(isc_mem_t *ctx, size_t size) {
643         ctx->total += size;
644         ctx->inuse += size;
645
646         if (size > ctx->max_size) {
647                 ctx->stats[ctx->max_size].gets++;
648                 ctx->stats[ctx->max_size].totalgets++;
649         } else {
650                 ctx->stats[size].gets++;
651                 ctx->stats[size].totalgets++;
652         }
653 }
654
655 /*
656  * Update internal counters after a memory put.
657  */
658 static inline void
659 mem_putstats(isc_mem_t *ctx, void *ptr, size_t size) {
660         UNUSED(ptr);
661
662         INSIST(ctx->inuse >= size);
663         ctx->inuse -= size;
664
665         if (size > ctx->max_size) {
666                 INSIST(ctx->stats[ctx->max_size].gets > 0U);
667                 ctx->stats[ctx->max_size].gets--;
668         } else {
669                 INSIST(ctx->stats[size].gets > 0U);
670                 ctx->stats[size].gets--;
671         }
672 }
673
674 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
675
676 /*
677  * Private.
678  */
679
680 static void *
681 default_memalloc(void *arg, size_t size) {
682         UNUSED(arg);
683         if (size == 0U)
684                 size = 1;
685         return (malloc(size));
686 }
687
688 static void
689 default_memfree(void *arg, void *ptr) {
690         UNUSED(arg);
691         free(ptr);
692 }
693
694 /*
695  * Public.
696  */
697
698 isc_result_t
699 isc_mem_createx(size_t init_max_size, size_t target_size,
700                 isc_memalloc_t memalloc, isc_memfree_t memfree, void *arg,
701                 isc_mem_t **ctxp)
702 {
703         isc_mem_t *ctx;
704         isc_result_t result;
705
706         REQUIRE(ctxp != NULL && *ctxp == NULL);
707         REQUIRE(memalloc != NULL);
708         REQUIRE(memfree != NULL);
709
710         INSIST((ALIGNMENT_SIZE & (ALIGNMENT_SIZE - 1)) == 0);
711
712 #if !ISC_MEM_USE_INTERNAL_MALLOC
713         UNUSED(target_size);
714 #endif
715
716         ctx = (memalloc)(arg, sizeof(*ctx));
717         if (ctx == NULL)
718                 return (ISC_R_NOMEMORY);
719
720         if (isc_mutex_init(&ctx->lock) != ISC_R_SUCCESS) {
721                 UNEXPECTED_ERROR(__FILE__, __LINE__,
722                                  "isc_mutex_init() %s",
723                                  isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL,
724                                                 ISC_MSG_FAILED, "failed"));
725                 (memfree)(arg, ctx);
726                 return (ISC_R_UNEXPECTED);
727         }
728
729         if (init_max_size == 0U)
730                 ctx->max_size = DEF_MAX_SIZE;
731         else
732                 ctx->max_size = init_max_size;
733         ctx->references = 1;
734         ctx->quota = 0;
735         ctx->total = 0;
736         ctx->inuse = 0;
737         ctx->maxinuse = 0;
738         ctx->hi_water = 0;
739         ctx->lo_water = 0;
740         ctx->hi_called = ISC_FALSE;
741         ctx->water = NULL;
742         ctx->water_arg = NULL;
743         ctx->magic = MEM_MAGIC;
744         isc_ondestroy_init(&ctx->ondestroy);
745         ctx->memalloc = memalloc;
746         ctx->memfree = memfree;
747         ctx->arg = arg;
748         ctx->stats = NULL;
749         ctx->checkfree = ISC_TRUE;
750 #if ISC_MEM_TRACKLINES
751         ctx->debuglist = NULL;
752 #endif
753         ISC_LIST_INIT(ctx->pools);
754
755 #if ISC_MEM_USE_INTERNAL_MALLOC
756         ctx->freelists = NULL;
757 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
758
759         ctx->stats = (memalloc)(arg,
760                                 (ctx->max_size+1) * sizeof(struct stats));
761         if (ctx->stats == NULL) {
762                 result = ISC_R_NOMEMORY;
763                 goto error;
764         }
765         memset(ctx->stats, 0, (ctx->max_size + 1) * sizeof(struct stats));
766
767 #if ISC_MEM_USE_INTERNAL_MALLOC
768         if (target_size == 0)
769                 ctx->mem_target = DEF_MEM_TARGET;
770         else
771                 ctx->mem_target = target_size;
772         ctx->freelists = (memalloc)(arg, ctx->max_size * sizeof(element *));
773         if (ctx->freelists == NULL) {
774                 result = ISC_R_NOMEMORY;
775                 goto error;
776         }
777         memset(ctx->freelists, 0,
778                ctx->max_size * sizeof(element *));
779         ctx->basic_blocks = NULL;
780         ctx->basic_table = NULL;
781         ctx->basic_table_count = 0;
782         ctx->basic_table_size = 0;
783         ctx->lowest = NULL;
784         ctx->highest = NULL;
785 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
786
787 #if ISC_MEM_TRACKLINES
788         if ((isc_mem_debugging & ISC_MEM_DEBUGRECORD) != 0) {
789                 unsigned int i;
790
791                 ctx->debuglist = (memalloc)(arg,
792                                       (ctx->max_size+1) * sizeof(debuglist_t));
793                 if (ctx->debuglist == NULL) {
794                         result = ISC_R_NOMEMORY;
795                         goto error;
796                 }
797                 for (i = 0; i <= ctx->max_size; i++)
798                         ISC_LIST_INIT(ctx->debuglist[i]);
799         }
800 #endif
801
802         ctx->memalloc_failures = 0;
803
804         *ctxp = ctx;
805         return (ISC_R_SUCCESS);
806
807   error:
808         if (ctx != NULL) {
809                 if (ctx->stats != NULL)
810                         (memfree)(arg, ctx->stats);
811 #if ISC_MEM_USE_INTERNAL_MALLOC
812                 if (ctx->freelists != NULL)
813                         (memfree)(arg, ctx->freelists);
814 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
815 #if ISC_MEM_TRACKLINES
816                 if (ctx->debuglist != NULL)
817                         (ctx->memfree)(ctx->arg, ctx->debuglist);
818 #endif /* ISC_MEM_TRACKLINES */
819                 DESTROYLOCK(&ctx->lock);
820                 (memfree)(arg, ctx);
821         }
822
823         return (result);
824 }
825
826 isc_result_t
827 isc_mem_create(size_t init_max_size, size_t target_size,
828                isc_mem_t **ctxp)
829 {
830         return (isc_mem_createx(init_max_size, target_size,
831                                 default_memalloc, default_memfree, NULL,
832                                 ctxp));
833 }
834
835 static void
836 destroy(isc_mem_t *ctx) {
837         unsigned int i;
838         isc_ondestroy_t ondest;
839
840         ctx->magic = 0;
841
842 #if ISC_MEM_USE_INTERNAL_MALLOC
843         INSIST(ISC_LIST_EMPTY(ctx->pools));
844 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
845
846 #if ISC_MEM_TRACKLINES
847         if (ctx->debuglist != NULL) {
848                 if (ctx->checkfree) {
849                         for (i = 0; i <= ctx->max_size; i++) {
850                                 if (!ISC_LIST_EMPTY(ctx->debuglist[i]))
851                                         print_active(ctx, stderr);
852                                 INSIST(ISC_LIST_EMPTY(ctx->debuglist[i]));
853                         }
854                 } else {
855                         debuglink_t *dl;
856
857                         for (i = 0; i <= ctx->max_size; i++)
858                                 for (dl = ISC_LIST_HEAD(ctx->debuglist[i]);
859                                      dl != NULL;
860                                      dl = ISC_LIST_HEAD(ctx->debuglist[i])) {
861                                         ISC_LIST_UNLINK(ctx->debuglist[i],
862                                                         dl, link);
863                                         free(dl);
864                                 }
865                 }
866                 (ctx->memfree)(ctx->arg, ctx->debuglist);
867         }
868 #endif
869         INSIST(ctx->references == 0);
870
871         if (ctx->checkfree) {
872                 for (i = 0; i <= ctx->max_size; i++) {
873 #if ISC_MEM_TRACKLINES
874                         if (ctx->stats[i].gets != 0U)
875                                 print_active(ctx, stderr);
876 #endif
877                         INSIST(ctx->stats[i].gets == 0U);
878                 }
879         }
880
881         (ctx->memfree)(ctx->arg, ctx->stats);
882
883 #if ISC_MEM_USE_INTERNAL_MALLOC
884         for (i = 0; i < ctx->basic_table_count; i++)
885                 (ctx->memfree)(ctx->arg, ctx->basic_table[i]);
886         (ctx->memfree)(ctx->arg, ctx->freelists);
887         (ctx->memfree)(ctx->arg, ctx->basic_table);
888 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
889
890         ondest = ctx->ondestroy;
891
892         DESTROYLOCK(&ctx->lock);
893         (ctx->memfree)(ctx->arg, ctx);
894
895         isc_ondestroy_notify(&ondest, ctx);
896 }
897
898 void
899 isc_mem_attach(isc_mem_t *source, isc_mem_t **targetp) {
900         REQUIRE(VALID_CONTEXT(source));
901         REQUIRE(targetp != NULL && *targetp == NULL);
902
903         LOCK(&source->lock);
904         source->references++;
905         UNLOCK(&source->lock);
906
907         *targetp = source;
908 }
909
910 void
911 isc_mem_detach(isc_mem_t **ctxp) {
912         isc_mem_t *ctx;
913         isc_boolean_t want_destroy = ISC_FALSE;
914
915         REQUIRE(ctxp != NULL);
916         ctx = *ctxp;
917         REQUIRE(VALID_CONTEXT(ctx));
918
919         LOCK(&ctx->lock);
920         INSIST(ctx->references > 0);
921         ctx->references--;
922         if (ctx->references == 0)
923                 want_destroy = ISC_TRUE;
924         UNLOCK(&ctx->lock);
925
926         if (want_destroy)
927                 destroy(ctx);
928
929         *ctxp = NULL;
930 }
931
932 /*
933  * isc_mem_putanddetach() is the equivalent of:
934  *
935  * mctx = NULL;
936  * isc_mem_attach(ptr->mctx, &mctx);
937  * isc_mem_detach(&ptr->mctx);
938  * isc_mem_put(mctx, ptr, sizeof(*ptr);
939  * isc_mem_detach(&mctx);
940  */
941
942 void
943 isc__mem_putanddetach(isc_mem_t **ctxp, void *ptr, size_t size FLARG) {
944         isc_mem_t *ctx;
945         isc_boolean_t want_destroy = ISC_FALSE;
946
947         REQUIRE(ctxp != NULL);
948         ctx = *ctxp;
949         REQUIRE(VALID_CONTEXT(ctx));
950         REQUIRE(ptr != NULL);
951
952         /*
953          * Must be before mem_putunlocked() as ctxp is usually within
954          * [ptr..ptr+size).
955          */
956         *ctxp = NULL;
957
958 #if ISC_MEM_USE_INTERNAL_MALLOC
959         LOCK(&ctx->lock);
960         mem_putunlocked(ctx, ptr, size);
961 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
962         mem_put(ctx, ptr, size);
963         LOCK(&ctx->lock);
964         mem_putstats(ctx, ptr, size);
965 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
966
967         DELETE_TRACE(ctx, ptr, size, file, line);
968         INSIST(ctx->references > 0);
969         ctx->references--;
970         if (ctx->references == 0)
971                 want_destroy = ISC_TRUE;
972
973         UNLOCK(&ctx->lock);
974
975         if (want_destroy)
976                 destroy(ctx);
977 }
978
979 void
980 isc_mem_destroy(isc_mem_t **ctxp) {
981         isc_mem_t *ctx;
982
983         /*
984          * This routine provides legacy support for callers who use mctxs
985          * without attaching/detaching.
986          */
987
988         REQUIRE(ctxp != NULL);
989         ctx = *ctxp;
990         REQUIRE(VALID_CONTEXT(ctx));
991
992         LOCK(&ctx->lock);
993 #if ISC_MEM_TRACKLINES
994         if (ctx->references != 1)
995                 print_active(ctx, stderr);
996 #endif
997         REQUIRE(ctx->references == 1);
998         ctx->references--;
999         UNLOCK(&ctx->lock);
1000
1001         destroy(ctx);
1002
1003         *ctxp = NULL;
1004 }
1005
1006 isc_result_t
1007 isc_mem_ondestroy(isc_mem_t *ctx, isc_task_t *task, isc_event_t **event) {
1008         isc_result_t res;
1009
1010         LOCK(&ctx->lock);
1011         res = isc_ondestroy_register(&ctx->ondestroy, task, event);
1012         UNLOCK(&ctx->lock);
1013
1014         return (res);
1015 }
1016
1017
1018 void *
1019 isc__mem_get(isc_mem_t *ctx, size_t size FLARG) {
1020         void *ptr;
1021         isc_boolean_t call_water = ISC_FALSE;
1022
1023         REQUIRE(VALID_CONTEXT(ctx));
1024
1025 #if ISC_MEM_USE_INTERNAL_MALLOC
1026         LOCK(&ctx->lock);
1027         ptr = mem_getunlocked(ctx, size);
1028 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1029         ptr = mem_get(ctx, size);
1030         LOCK(&ctx->lock);
1031         if (ptr != NULL)
1032                 mem_getstats(ctx, size);
1033 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1034
1035         ADD_TRACE(ctx, ptr, size, file, line);
1036         if (ctx->hi_water != 0U && !ctx->hi_called &&
1037             ctx->inuse > ctx->hi_water) {
1038                 ctx->hi_called = ISC_TRUE;
1039                 call_water = ISC_TRUE;
1040         }
1041         if (ctx->inuse > ctx->maxinuse) {
1042                 ctx->maxinuse = ctx->inuse;
1043                 if (ctx->hi_water != 0U && ctx->inuse > ctx->hi_water &&
1044                     (isc_mem_debugging & ISC_MEM_DEBUGUSAGE) != 0)
1045                         fprintf(stderr, "maxinuse = %lu\n",
1046                                 (unsigned long)ctx->inuse);
1047         }
1048         UNLOCK(&ctx->lock);
1049
1050         if (call_water)
1051                 (ctx->water)(ctx->water_arg, ISC_MEM_HIWATER);
1052
1053         return (ptr);
1054 }
1055
1056 void
1057 isc__mem_put(isc_mem_t *ctx, void *ptr, size_t size FLARG)
1058 {
1059         isc_boolean_t call_water = ISC_FALSE;
1060
1061         REQUIRE(VALID_CONTEXT(ctx));
1062         REQUIRE(ptr != NULL);
1063
1064 #if ISC_MEM_USE_INTERNAL_MALLOC
1065         LOCK(&ctx->lock);
1066         mem_putunlocked(ctx, ptr, size);
1067 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1068         mem_put(ctx, ptr, size);
1069         LOCK(&ctx->lock);
1070         mem_putstats(ctx, ptr, size);
1071 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1072
1073         DELETE_TRACE(ctx, ptr, size, file, line);
1074
1075         /*
1076          * The check against ctx->lo_water == 0 is for the condition
1077          * when the context was pushed over hi_water but then had
1078          * isc_mem_setwater() called with 0 for hi_water and lo_water.
1079          */
1080         if (ctx->hi_called && 
1081             (ctx->inuse < ctx->lo_water || ctx->lo_water == 0U)) {
1082                 ctx->hi_called = ISC_FALSE;
1083
1084                 if (ctx->water != NULL)
1085                         call_water = ISC_TRUE;
1086         }
1087         UNLOCK(&ctx->lock);
1088
1089         if (call_water)
1090                 (ctx->water)(ctx->water_arg, ISC_MEM_LOWATER);
1091 }
1092
1093 #if ISC_MEM_TRACKLINES
1094 static void
1095 print_active(isc_mem_t *mctx, FILE *out) {
1096         if (mctx->debuglist != NULL) {
1097                 debuglink_t *dl;
1098                 unsigned int i, j;
1099                 const char *format;
1100                 isc_boolean_t found;
1101
1102                 fprintf(out, isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1103                                             ISC_MSG_DUMPALLOC,
1104                                             "Dump of all outstanding "
1105                                             "memory allocations:\n"));
1106                 found = ISC_FALSE;
1107                 format = isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1108                                         ISC_MSG_PTRFILELINE,
1109                                         "\tptr %p size %u file %s line %u\n");
1110                 for (i = 0; i <= mctx->max_size; i++) {
1111                         dl = ISC_LIST_HEAD(mctx->debuglist[i]);
1112                         
1113                         if (dl != NULL)
1114                                 found = ISC_TRUE;
1115
1116                         while (dl != NULL) {
1117                                 for (j = 0; j < DEBUGLIST_COUNT; j++)
1118                                         if (dl->ptr[j] != NULL)
1119                                                 fprintf(out, format,
1120                                                         dl->ptr[j],
1121                                                         dl->size[j],
1122                                                         dl->file[j],
1123                                                         dl->line[j]);
1124                                 dl = ISC_LIST_NEXT(dl, link);
1125                         }
1126                 }
1127                 if (!found)
1128                         fprintf(out, isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1129                                                     ISC_MSG_NONE, "\tNone.\n"));
1130         }
1131 }
1132 #endif
1133
1134 /*
1135  * Print the stats[] on the stream "out" with suitable formatting.
1136  */
1137 void
1138 isc_mem_stats(isc_mem_t *ctx, FILE *out) {
1139         size_t i;
1140         const struct stats *s;
1141         const isc_mempool_t *pool;
1142
1143         REQUIRE(VALID_CONTEXT(ctx));
1144         LOCK(&ctx->lock);
1145
1146         for (i = 0; i <= ctx->max_size; i++) {
1147                 s = &ctx->stats[i];
1148
1149                 if (s->totalgets == 0U && s->gets == 0U)
1150                         continue;
1151                 fprintf(out, "%s%5lu: %11lu gets, %11lu rem",
1152                         (i == ctx->max_size) ? ">=" : "  ",
1153                         (unsigned long) i, s->totalgets, s->gets);
1154 #if ISC_MEM_USE_INTERNAL_MALLOC
1155                 if (s->blocks != 0 || s->freefrags != 0)
1156                         fprintf(out, " (%lu bl, %lu ff)",
1157                                 s->blocks, s->freefrags);
1158 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1159                 fputc('\n', out);
1160         }
1161
1162         /*
1163          * Note that since a pool can be locked now, these stats might be
1164          * somewhat off if the pool is in active use at the time the stats
1165          * are dumped.  The link fields are protected by the isc_mem_t's
1166          * lock, however, so walking this list and extracting integers from
1167          * stats fields is always safe.
1168          */
1169         pool = ISC_LIST_HEAD(ctx->pools);
1170         if (pool != NULL) {
1171                 fprintf(out, isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1172                                             ISC_MSG_POOLSTATS,
1173                                             "[Pool statistics]\n"));
1174                 fprintf(out, "%15s %10s %10s %10s %10s %10s %10s %10s %1s\n",
1175                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1176                                        ISC_MSG_POOLNAME, "name"),
1177                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1178                                        ISC_MSG_POOLSIZE, "size"),
1179                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1180                                        ISC_MSG_POOLMAXALLOC, "maxalloc"),
1181                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1182                                        ISC_MSG_POOLALLOCATED, "allocated"),
1183                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1184                                        ISC_MSG_POOLFREECOUNT, "freecount"),
1185                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1186                                        ISC_MSG_POOLFREEMAX, "freemax"),
1187                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1188                                        ISC_MSG_POOLFILLCOUNT, "fillcount"),
1189                         isc_msgcat_get(isc_msgcat, ISC_MSGSET_MEM,
1190                                        ISC_MSG_POOLGETS, "gets"),
1191                         "L");
1192         }
1193         while (pool != NULL) {
1194                 fprintf(out, "%15s %10lu %10u %10u %10u %10u %10u %10u %s\n",
1195                         pool->name, (unsigned long) pool->size, pool->maxalloc,
1196                         pool->allocated, pool->freecount, pool->freemax,
1197                         pool->fillcount, pool->gets,
1198                         (pool->lock == NULL ? "N" : "Y"));
1199                 pool = ISC_LIST_NEXT(pool, link);
1200         }
1201
1202 #if ISC_MEM_TRACKLINES
1203         print_active(ctx, out);
1204 #endif
1205
1206         UNLOCK(&ctx->lock);
1207 }
1208
1209 /*
1210  * Replacements for malloc() and free() -- they implicitly remember the
1211  * size of the object allocated (with some additional overhead).
1212  */
1213
1214 static void *
1215 isc__mem_allocateunlocked(isc_mem_t *ctx, size_t size) {
1216         size_info *si;
1217
1218         size += ALIGNMENT_SIZE;
1219 #if ISC_MEM_USE_INTERNAL_MALLOC
1220         si = mem_getunlocked(ctx, size);
1221 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1222         si = mem_get(ctx, size);
1223 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1224         if (si == NULL)
1225                 return (NULL);
1226         si->u.size = size;
1227         return (&si[1]);
1228 }
1229
1230 void *
1231 isc__mem_allocate(isc_mem_t *ctx, size_t size FLARG) {
1232         size_info *si;
1233
1234         REQUIRE(VALID_CONTEXT(ctx));
1235
1236 #if ISC_MEM_USE_INTERNAL_MALLOC
1237         LOCK(&ctx->lock);
1238         si = isc__mem_allocateunlocked(ctx, size);
1239 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1240         si = isc__mem_allocateunlocked(ctx, size);
1241         LOCK(&ctx->lock);
1242         if (si != NULL)
1243                 mem_getstats(ctx, si[-1].u.size);
1244 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1245
1246 #if ISC_MEM_TRACKLINES
1247         ADD_TRACE(ctx, si, si[-1].u.size, file, line);
1248 #endif
1249
1250         UNLOCK(&ctx->lock);
1251
1252         return (si);
1253 }
1254
1255 void
1256 isc__mem_free(isc_mem_t *ctx, void *ptr FLARG) {
1257         size_info *si;
1258         size_t size;
1259
1260         REQUIRE(VALID_CONTEXT(ctx));
1261         REQUIRE(ptr != NULL);
1262
1263         si = &(((size_info *)ptr)[-1]);
1264         size = si->u.size;
1265
1266 #if ISC_MEM_USE_INTERNAL_MALLOC
1267         LOCK(&ctx->lock);
1268         mem_putunlocked(ctx, si, size);
1269 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1270         mem_put(ctx, si, size);
1271         LOCK(&ctx->lock);
1272         mem_putstats(ctx, si, size);
1273 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1274
1275         DELETE_TRACE(ctx, ptr, size, file, line);
1276
1277         UNLOCK(&ctx->lock);
1278 }
1279
1280
1281 /*
1282  * Other useful things.
1283  */
1284
1285 char *
1286 isc__mem_strdup(isc_mem_t *mctx, const char *s FLARG) {
1287         size_t len;
1288         char *ns;
1289
1290         REQUIRE(VALID_CONTEXT(mctx));
1291         REQUIRE(s != NULL);
1292
1293         len = strlen(s);
1294
1295         ns = isc__mem_allocate(mctx, len + 1 FLARG_PASS);
1296
1297         if (ns != NULL)
1298                 strncpy(ns, s, len + 1);
1299
1300         return (ns);
1301 }
1302
1303 void
1304 isc_mem_setdestroycheck(isc_mem_t *ctx, isc_boolean_t flag) {
1305         REQUIRE(VALID_CONTEXT(ctx));
1306         LOCK(&ctx->lock);
1307
1308         ctx->checkfree = flag;
1309
1310         UNLOCK(&ctx->lock);
1311 }
1312
1313 /*
1314  * Quotas
1315  */
1316
1317 void
1318 isc_mem_setquota(isc_mem_t *ctx, size_t quota) {
1319         REQUIRE(VALID_CONTEXT(ctx));
1320         LOCK(&ctx->lock);
1321
1322         ctx->quota = quota;
1323
1324         UNLOCK(&ctx->lock);
1325 }
1326
1327 size_t
1328 isc_mem_getquota(isc_mem_t *ctx) {
1329         size_t quota;
1330
1331         REQUIRE(VALID_CONTEXT(ctx));
1332         LOCK(&ctx->lock);
1333
1334         quota = ctx->quota;
1335
1336         UNLOCK(&ctx->lock);
1337
1338         return (quota);
1339 }
1340
1341 size_t
1342 isc_mem_inuse(isc_mem_t *ctx) {
1343         size_t inuse;
1344
1345         REQUIRE(VALID_CONTEXT(ctx));
1346         LOCK(&ctx->lock);
1347
1348         inuse = ctx->inuse;
1349
1350         UNLOCK(&ctx->lock);
1351
1352         return (inuse);
1353 }
1354
1355 void
1356 isc_mem_setwater(isc_mem_t *ctx, isc_mem_water_t water, void *water_arg,
1357                  size_t hiwater, size_t lowater)
1358 {
1359         REQUIRE(VALID_CONTEXT(ctx));
1360         REQUIRE(hiwater >= lowater);
1361
1362         LOCK(&ctx->lock);
1363         if (water == NULL) {
1364                 ctx->water = NULL;
1365                 ctx->water_arg = NULL;
1366                 ctx->hi_water = 0;
1367                 ctx->lo_water = 0;
1368                 ctx->hi_called = ISC_FALSE;
1369         } else {
1370                 ctx->water = water;
1371                 ctx->water_arg = water_arg;
1372                 ctx->hi_water = hiwater;
1373                 ctx->lo_water = lowater;
1374                 ctx->hi_called = ISC_FALSE;
1375         }
1376         UNLOCK(&ctx->lock);
1377 }
1378
1379 /*
1380  * Memory pool stuff
1381  */
1382
1383 isc_result_t
1384 isc_mempool_create(isc_mem_t *mctx, size_t size, isc_mempool_t **mpctxp) {
1385         isc_mempool_t *mpctx;
1386
1387         REQUIRE(VALID_CONTEXT(mctx));
1388         REQUIRE(size > 0U);
1389         REQUIRE(mpctxp != NULL && *mpctxp == NULL);
1390
1391         /*
1392          * Allocate space for this pool, initialize values, and if all works
1393          * well, attach to the memory context.
1394          */
1395         mpctx = isc_mem_get(mctx, sizeof(isc_mempool_t));
1396         if (mpctx == NULL)
1397                 return (ISC_R_NOMEMORY);
1398
1399         mpctx->magic = MEMPOOL_MAGIC;
1400         mpctx->lock = NULL;
1401         mpctx->mctx = mctx;
1402         mpctx->size = size;
1403         mpctx->maxalloc = UINT_MAX;
1404         mpctx->allocated = 0;
1405         mpctx->freecount = 0;
1406         mpctx->freemax = 1;
1407         mpctx->fillcount = 1;
1408         mpctx->gets = 0;
1409 #if ISC_MEMPOOL_NAMES
1410         mpctx->name[0] = 0;
1411 #endif
1412         mpctx->items = NULL;
1413
1414         *mpctxp = mpctx;
1415
1416         LOCK(&mctx->lock);
1417         ISC_LIST_INITANDAPPEND(mctx->pools, mpctx, link);
1418         UNLOCK(&mctx->lock);
1419
1420         return (ISC_R_SUCCESS);
1421 }
1422
1423 void
1424 isc_mempool_setname(isc_mempool_t *mpctx, const char *name) {
1425         REQUIRE(name != NULL);
1426
1427 #if ISC_MEMPOOL_NAMES
1428         if (mpctx->lock != NULL)
1429                 LOCK(mpctx->lock);
1430
1431         strncpy(mpctx->name, name, sizeof(mpctx->name) - 1);
1432         mpctx->name[sizeof(mpctx->name) - 1] = '\0';
1433
1434         if (mpctx->lock != NULL)
1435                 UNLOCK(mpctx->lock);
1436 #else
1437         UNUSED(mpctx);
1438         UNUSED(name);
1439 #endif
1440 }
1441
1442 void
1443 isc_mempool_destroy(isc_mempool_t **mpctxp) {
1444         isc_mempool_t *mpctx;
1445         isc_mem_t *mctx;
1446         isc_mutex_t *lock;
1447         element *item;
1448
1449         REQUIRE(mpctxp != NULL);
1450         mpctx = *mpctxp;
1451         REQUIRE(VALID_MEMPOOL(mpctx));
1452 #if ISC_MEMPOOL_NAMES
1453         if (mpctx->allocated > 0)
1454                 UNEXPECTED_ERROR(__FILE__, __LINE__,
1455                                  "isc_mempool_destroy(): mempool %s "
1456                                  "leaked memory",
1457                                  mpctx->name);
1458 #endif
1459         REQUIRE(mpctx->allocated == 0);
1460
1461         mctx = mpctx->mctx;
1462
1463         lock = mpctx->lock;
1464
1465         if (lock != NULL)
1466                 LOCK(lock);
1467
1468         /*
1469          * Return any items on the free list
1470          */
1471         LOCK(&mctx->lock);
1472         while (mpctx->items != NULL) {
1473                 INSIST(mpctx->freecount > 0);
1474                 mpctx->freecount--;
1475                 item = mpctx->items;
1476                 mpctx->items = item->next;
1477
1478 #if ISC_MEM_USE_INTERNAL_MALLOC
1479                 mem_putunlocked(mctx, item, mpctx->size);
1480 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1481                 mem_put(mctx, item, mpctx->size);
1482                 mem_putstats(mctx, item, mpctx->size);
1483 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1484         }
1485         UNLOCK(&mctx->lock);
1486
1487         /*
1488          * Remove our linked list entry from the memory context.
1489          */
1490         LOCK(&mctx->lock);
1491         ISC_LIST_UNLINK(mctx->pools, mpctx, link);
1492         UNLOCK(&mctx->lock);
1493
1494         mpctx->magic = 0;
1495
1496         isc_mem_put(mpctx->mctx, mpctx, sizeof(isc_mempool_t));
1497
1498         if (lock != NULL)
1499                 UNLOCK(lock);
1500
1501         *mpctxp = NULL;
1502 }
1503
1504 void
1505 isc_mempool_associatelock(isc_mempool_t *mpctx, isc_mutex_t *lock) {
1506         REQUIRE(VALID_MEMPOOL(mpctx));
1507         REQUIRE(mpctx->lock == NULL);
1508         REQUIRE(lock != NULL);
1509
1510         mpctx->lock = lock;
1511 }
1512
1513 void *
1514 isc__mempool_get(isc_mempool_t *mpctx FLARG) {
1515         element *item;
1516         isc_mem_t *mctx;
1517         unsigned int i;
1518
1519         REQUIRE(VALID_MEMPOOL(mpctx));
1520
1521         mctx = mpctx->mctx;
1522
1523         if (mpctx->lock != NULL)
1524                 LOCK(mpctx->lock);
1525
1526         /*
1527          * Don't let the caller go over quota
1528          */
1529         if (mpctx->allocated >= mpctx->maxalloc) {
1530                 item = NULL;
1531                 goto out;
1532         }
1533
1534         /*
1535          * if we have a free list item, return the first here
1536          */
1537         item = mpctx->items;
1538         if (item != NULL) {
1539                 mpctx->items = item->next;
1540                 INSIST(mpctx->freecount > 0);
1541                 mpctx->freecount--;
1542                 mpctx->gets++;
1543                 mpctx->allocated++;
1544                 goto out;
1545         }
1546
1547         /*
1548          * We need to dip into the well.  Lock the memory context here and
1549          * fill up our free list.
1550          */
1551         LOCK(&mctx->lock);
1552         for (i = 0; i < mpctx->fillcount; i++) {
1553 #if ISC_MEM_USE_INTERNAL_MALLOC
1554                 item = mem_getunlocked(mctx, mpctx->size);
1555 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1556                 item = mem_get(mctx, mpctx->size);
1557                 if (item != NULL)
1558                         mem_getstats(mctx, mpctx->size);
1559 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1560                 if (item == NULL)
1561                         break;
1562                 item->next = mpctx->items;
1563                 mpctx->items = item;
1564                 mpctx->freecount++;
1565         }
1566         UNLOCK(&mctx->lock);
1567
1568         /*
1569          * If we didn't get any items, return NULL.
1570          */
1571         item = mpctx->items;
1572         if (item == NULL)
1573                 goto out;
1574
1575         mpctx->items = item->next;
1576         mpctx->freecount--;
1577         mpctx->gets++;
1578         mpctx->allocated++;
1579
1580  out:
1581         if (mpctx->lock != NULL)
1582                 UNLOCK(mpctx->lock);
1583
1584 #if ISC_MEM_TRACKLINES
1585         if (item != NULL) {
1586                 LOCK(&mctx->lock);
1587                 ADD_TRACE(mctx, item, mpctx->size, file, line);
1588                 UNLOCK(&mctx->lock);
1589         }
1590 #endif /* ISC_MEM_TRACKLINES */
1591
1592         return (item);
1593 }
1594
1595 void
1596 isc__mempool_put(isc_mempool_t *mpctx, void *mem FLARG) {
1597         isc_mem_t *mctx;
1598         element *item;
1599
1600         REQUIRE(VALID_MEMPOOL(mpctx));
1601         REQUIRE(mem != NULL);
1602
1603         mctx = mpctx->mctx;
1604
1605         if (mpctx->lock != NULL)
1606                 LOCK(mpctx->lock);
1607
1608         INSIST(mpctx->allocated > 0);
1609         mpctx->allocated--;
1610
1611 #if ISC_MEM_TRACKLINES
1612         LOCK(&mctx->lock);
1613         DELETE_TRACE(mctx, mem, mpctx->size, file, line);
1614         UNLOCK(&mctx->lock);
1615 #endif /* ISC_MEM_TRACKLINES */
1616
1617         /*
1618          * If our free list is full, return this to the mctx directly.
1619          */
1620         if (mpctx->freecount >= mpctx->freemax) {
1621 #if ISC_MEM_USE_INTERNAL_MALLOC
1622                 LOCK(&mctx->lock);
1623                 mem_putunlocked(mctx, mem, mpctx->size);
1624                 UNLOCK(&mctx->lock);
1625 #else /* ISC_MEM_USE_INTERNAL_MALLOC */
1626                 mem_put(mctx, mem, mpctx->size);
1627                 LOCK(&mctx->lock);
1628                 mem_putstats(mctx, mem, mpctx->size);
1629                 UNLOCK(&mctx->lock);
1630 #endif /* ISC_MEM_USE_INTERNAL_MALLOC */
1631                 if (mpctx->lock != NULL)
1632                         UNLOCK(mpctx->lock);
1633                 return;
1634         }
1635
1636         /*
1637          * Otherwise, attach it to our free list and bump the counter.
1638          */
1639         mpctx->freecount++;
1640         item = (element *)mem;
1641         item->next = mpctx->items;
1642         mpctx->items = item;
1643
1644         if (mpctx->lock != NULL)
1645                 UNLOCK(mpctx->lock);
1646 }
1647
1648 /*
1649  * Quotas
1650  */
1651
1652 void
1653 isc_mempool_setfreemax(isc_mempool_t *mpctx, unsigned int limit) {
1654         REQUIRE(VALID_MEMPOOL(mpctx));
1655
1656         if (mpctx->lock != NULL)
1657                 LOCK(mpctx->lock);
1658
1659         mpctx->freemax = limit;
1660
1661         if (mpctx->lock != NULL)
1662                 UNLOCK(mpctx->lock);
1663 }
1664
1665 unsigned int
1666 isc_mempool_getfreemax(isc_mempool_t *mpctx) {
1667         unsigned int freemax;
1668
1669         REQUIRE(VALID_MEMPOOL(mpctx));
1670
1671         if (mpctx->lock != NULL)
1672                 LOCK(mpctx->lock);
1673
1674         freemax = mpctx->freemax;
1675
1676         if (mpctx->lock != NULL)
1677                 UNLOCK(mpctx->lock);
1678
1679         return (freemax);
1680 }
1681
1682 unsigned int
1683 isc_mempool_getfreecount(isc_mempool_t *mpctx) {
1684         unsigned int freecount;
1685
1686         REQUIRE(VALID_MEMPOOL(mpctx));
1687
1688         if (mpctx->lock != NULL)
1689                 LOCK(mpctx->lock);
1690
1691         freecount = mpctx->freecount;
1692
1693         if (mpctx->lock != NULL)
1694                 UNLOCK(mpctx->lock);
1695
1696         return (freecount);
1697 }
1698
1699 void
1700 isc_mempool_setmaxalloc(isc_mempool_t *mpctx, unsigned int limit) {
1701         REQUIRE(limit > 0);
1702
1703         REQUIRE(VALID_MEMPOOL(mpctx));
1704
1705         if (mpctx->lock != NULL)
1706                 LOCK(mpctx->lock);
1707
1708         mpctx->maxalloc = limit;
1709
1710         if (mpctx->lock != NULL)
1711                 UNLOCK(mpctx->lock);
1712 }
1713
1714 unsigned int
1715 isc_mempool_getmaxalloc(isc_mempool_t *mpctx) {
1716         unsigned int maxalloc;
1717
1718         REQUIRE(VALID_MEMPOOL(mpctx));
1719
1720         if (mpctx->lock != NULL)
1721                 LOCK(mpctx->lock);
1722
1723         maxalloc = mpctx->maxalloc;
1724
1725         if (mpctx->lock != NULL)
1726                 UNLOCK(mpctx->lock);
1727
1728         return (maxalloc);
1729 }
1730
1731 unsigned int
1732 isc_mempool_getallocated(isc_mempool_t *mpctx) {
1733         unsigned int allocated;
1734
1735         REQUIRE(VALID_MEMPOOL(mpctx));
1736
1737         if (mpctx->lock != NULL)
1738                 LOCK(mpctx->lock);
1739
1740         allocated = mpctx->allocated;
1741
1742         if (mpctx->lock != NULL)
1743                 UNLOCK(mpctx->lock);
1744
1745         return (allocated);
1746 }
1747
1748 void
1749 isc_mempool_setfillcount(isc_mempool_t *mpctx, unsigned int limit) {
1750         REQUIRE(limit > 0);
1751         REQUIRE(VALID_MEMPOOL(mpctx));
1752
1753         if (mpctx->lock != NULL)
1754                 LOCK(mpctx->lock);
1755
1756         mpctx->fillcount = limit;
1757
1758         if (mpctx->lock != NULL)
1759                 UNLOCK(mpctx->lock);
1760 }
1761
1762 unsigned int
1763 isc_mempool_getfillcount(isc_mempool_t *mpctx) {
1764         unsigned int fillcount;
1765
1766         REQUIRE(VALID_MEMPOOL(mpctx));
1767
1768         if (mpctx->lock != NULL)
1769                 LOCK(mpctx->lock);
1770
1771         fillcount = mpctx->fillcount;
1772
1773         if (mpctx->lock != NULL)
1774                 UNLOCK(mpctx->lock);
1775
1776         return (fillcount);
1777 }