]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_malloc.c
zfs: merge openzfs/zfs@7d9f3ef0e (zfs-2.1-release) into stable/13
[FreeBSD/FreeBSD.git] / sys / kern / kern_malloc.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1987, 1991, 1993
5  *      The Regents of the University of California.
6  * Copyright (c) 2005-2009 Robert N. M. Watson
7  * Copyright (c) 2008 Otto Moerbeek <otto@drijf.net> (mallocarray)
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)kern_malloc.c       8.3 (Berkeley) 1/4/94
35  */
36
37 /*
38  * Kernel malloc(9) implementation -- general purpose kernel memory allocator
39  * based on memory types.  Back end is implemented using the UMA(9) zone
40  * allocator.  A set of fixed-size buckets are used for smaller allocations,
41  * and a special UMA allocation interface is used for larger allocations.
42  * Callers declare memory types, and statistics are maintained independently
43  * for each memory type.  Statistics are maintained per-CPU for performance
44  * reasons.  See malloc(9) and comments in malloc.h for a detailed
45  * description.
46  */
47
48 #include <sys/cdefs.h>
49 __FBSDID("$FreeBSD$");
50
51 #include "opt_ddb.h"
52 #include "opt_vm.h"
53
54 #include <sys/param.h>
55 #include <sys/systm.h>
56 #include <sys/kdb.h>
57 #include <sys/kernel.h>
58 #include <sys/lock.h>
59 #include <sys/malloc.h>
60 #include <sys/mutex.h>
61 #include <sys/vmmeter.h>
62 #include <sys/proc.h>
63 #include <sys/queue.h>
64 #include <sys/sbuf.h>
65 #include <sys/smp.h>
66 #include <sys/sysctl.h>
67 #include <sys/time.h>
68 #include <sys/vmem.h>
69 #ifdef EPOCH_TRACE
70 #include <sys/epoch.h>
71 #endif
72
73 #include <vm/vm.h>
74 #include <vm/pmap.h>
75 #include <vm/vm_domainset.h>
76 #include <vm/vm_pageout.h>
77 #include <vm/vm_param.h>
78 #include <vm/vm_kern.h>
79 #include <vm/vm_extern.h>
80 #include <vm/vm_map.h>
81 #include <vm/vm_page.h>
82 #include <vm/vm_phys.h>
83 #include <vm/vm_pagequeue.h>
84 #include <vm/uma.h>
85 #include <vm/uma_int.h>
86 #include <vm/uma_dbg.h>
87
88 #ifdef DEBUG_MEMGUARD
89 #include <vm/memguard.h>
90 #endif
91 #ifdef DEBUG_REDZONE
92 #include <vm/redzone.h>
93 #endif
94
95 #if defined(INVARIANTS) && defined(__i386__)
96 #include <machine/cpu.h>
97 #endif
98
99 #include <ddb/ddb.h>
100
101 #ifdef KDTRACE_HOOKS
102 #include <sys/dtrace_bsd.h>
103
104 bool    __read_frequently                       dtrace_malloc_enabled;
105 dtrace_malloc_probe_func_t __read_mostly        dtrace_malloc_probe;
106 #endif
107
108 #if defined(INVARIANTS) || defined(MALLOC_MAKE_FAILURES) ||             \
109     defined(DEBUG_MEMGUARD) || defined(DEBUG_REDZONE)
110 #define MALLOC_DEBUG    1
111 #endif
112
113 #ifdef DEBUG_REDZONE
114 #define DEBUG_REDZONE_ARG_DEF   , unsigned long osize
115 #define DEBUG_REDZONE_ARG       , osize
116 #else
117 #define DEBUG_REDZONE_ARG_DEF
118 #define DEBUG_REDZONE_ARG
119 #endif
120
121 /*
122  * When realloc() is called, if the new size is sufficiently smaller than
123  * the old size, realloc() will allocate a new, smaller block to avoid
124  * wasting memory. 'Sufficiently smaller' is defined as: newsize <=
125  * oldsize / 2^n, where REALLOC_FRACTION defines the value of 'n'.
126  */
127 #ifndef REALLOC_FRACTION
128 #define REALLOC_FRACTION        1       /* new block if <= half the size */
129 #endif
130
131 /*
132  * Centrally define some common malloc types.
133  */
134 MALLOC_DEFINE(M_CACHE, "cache", "Various Dynamically allocated caches");
135 MALLOC_DEFINE(M_DEVBUF, "devbuf", "device driver memory");
136 MALLOC_DEFINE(M_TEMP, "temp", "misc temporary data buffers");
137
138 static struct malloc_type *kmemstatistics;
139 static int kmemcount;
140
141 #define KMEM_ZSHIFT     4
142 #define KMEM_ZBASE      16
143 #define KMEM_ZMASK      (KMEM_ZBASE - 1)
144
145 #define KMEM_ZMAX       65536
146 #define KMEM_ZSIZE      (KMEM_ZMAX >> KMEM_ZSHIFT)
147 static uint8_t kmemsize[KMEM_ZSIZE + 1];
148
149 #ifndef MALLOC_DEBUG_MAXZONES
150 #define MALLOC_DEBUG_MAXZONES   1
151 #endif
152 static int numzones = MALLOC_DEBUG_MAXZONES;
153
154 /*
155  * Small malloc(9) memory allocations are allocated from a set of UMA buckets
156  * of various sizes.
157  *
158  * Warning: the layout of the struct is duplicated in libmemstat for KVM support.
159  *
160  * XXX: The comment here used to read "These won't be powers of two for
161  * long."  It's possible that a significant amount of wasted memory could be
162  * recovered by tuning the sizes of these buckets.
163  */
164 struct {
165         int kz_size;
166         const char *kz_name;
167         uma_zone_t kz_zone[MALLOC_DEBUG_MAXZONES];
168 } kmemzones[] = {
169         {16, "malloc-16", },
170         {32, "malloc-32", },
171         {64, "malloc-64", },
172         {128, "malloc-128", },
173         {256, "malloc-256", },
174         {384, "malloc-384", },
175         {512, "malloc-512", },
176         {1024, "malloc-1024", },
177         {2048, "malloc-2048", },
178         {4096, "malloc-4096", },
179         {8192, "malloc-8192", },
180         {16384, "malloc-16384", },
181         {32768, "malloc-32768", },
182         {65536, "malloc-65536", },
183         {0, NULL},
184 };
185
186 u_long vm_kmem_size;
187 SYSCTL_ULONG(_vm, OID_AUTO, kmem_size, CTLFLAG_RDTUN, &vm_kmem_size, 0,
188     "Size of kernel memory");
189
190 static u_long kmem_zmax = KMEM_ZMAX;
191 SYSCTL_ULONG(_vm, OID_AUTO, kmem_zmax, CTLFLAG_RDTUN, &kmem_zmax, 0,
192     "Maximum allocation size that malloc(9) would use UMA as backend");
193
194 static u_long vm_kmem_size_min;
195 SYSCTL_ULONG(_vm, OID_AUTO, kmem_size_min, CTLFLAG_RDTUN, &vm_kmem_size_min, 0,
196     "Minimum size of kernel memory");
197
198 static u_long vm_kmem_size_max;
199 SYSCTL_ULONG(_vm, OID_AUTO, kmem_size_max, CTLFLAG_RDTUN, &vm_kmem_size_max, 0,
200     "Maximum size of kernel memory");
201
202 static u_int vm_kmem_size_scale;
203 SYSCTL_UINT(_vm, OID_AUTO, kmem_size_scale, CTLFLAG_RDTUN, &vm_kmem_size_scale, 0,
204     "Scale factor for kernel memory size");
205
206 static int sysctl_kmem_map_size(SYSCTL_HANDLER_ARGS);
207 SYSCTL_PROC(_vm, OID_AUTO, kmem_map_size,
208     CTLFLAG_RD | CTLTYPE_ULONG | CTLFLAG_MPSAFE, NULL, 0,
209     sysctl_kmem_map_size, "LU", "Current kmem allocation size");
210
211 static int sysctl_kmem_map_free(SYSCTL_HANDLER_ARGS);
212 SYSCTL_PROC(_vm, OID_AUTO, kmem_map_free,
213     CTLFLAG_RD | CTLTYPE_ULONG | CTLFLAG_MPSAFE, NULL, 0,
214     sysctl_kmem_map_free, "LU", "Free space in kmem");
215
216 static SYSCTL_NODE(_vm, OID_AUTO, malloc, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
217     "Malloc information");
218
219 static u_int vm_malloc_zone_count = nitems(kmemzones);
220 SYSCTL_UINT(_vm_malloc, OID_AUTO, zone_count,
221     CTLFLAG_RD, &vm_malloc_zone_count, 0,
222     "Number of malloc zones");
223
224 static int sysctl_vm_malloc_zone_sizes(SYSCTL_HANDLER_ARGS);
225 SYSCTL_PROC(_vm_malloc, OID_AUTO, zone_sizes,
226     CTLFLAG_RD | CTLTYPE_OPAQUE | CTLFLAG_MPSAFE, NULL, 0,
227     sysctl_vm_malloc_zone_sizes, "S", "Zone sizes used by malloc");
228
229 /*
230  * The malloc_mtx protects the kmemstatistics linked list.
231  */
232 struct mtx malloc_mtx;
233
234 static int sysctl_kern_malloc_stats(SYSCTL_HANDLER_ARGS);
235
236 #if defined(MALLOC_MAKE_FAILURES) || (MALLOC_DEBUG_MAXZONES > 1)
237 static SYSCTL_NODE(_debug, OID_AUTO, malloc, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
238     "Kernel malloc debugging options");
239 #endif
240
241 /*
242  * malloc(9) fault injection -- cause malloc failures every (n) mallocs when
243  * the caller specifies M_NOWAIT.  If set to 0, no failures are caused.
244  */
245 #ifdef MALLOC_MAKE_FAILURES
246 static int malloc_failure_rate;
247 static int malloc_nowait_count;
248 static int malloc_failure_count;
249 SYSCTL_INT(_debug_malloc, OID_AUTO, failure_rate, CTLFLAG_RWTUN,
250     &malloc_failure_rate, 0, "Every (n) mallocs with M_NOWAIT will fail");
251 SYSCTL_INT(_debug_malloc, OID_AUTO, failure_count, CTLFLAG_RD,
252     &malloc_failure_count, 0, "Number of imposed M_NOWAIT malloc failures");
253 #endif
254
255 static int
256 sysctl_kmem_map_size(SYSCTL_HANDLER_ARGS)
257 {
258         u_long size;
259
260         size = uma_size();
261         return (sysctl_handle_long(oidp, &size, 0, req));
262 }
263
264 static int
265 sysctl_kmem_map_free(SYSCTL_HANDLER_ARGS)
266 {
267         u_long size, limit;
268
269         /* The sysctl is unsigned, implement as a saturation value. */
270         size = uma_size();
271         limit = uma_limit();
272         if (size > limit)
273                 size = 0;
274         else
275                 size = limit - size;
276         return (sysctl_handle_long(oidp, &size, 0, req));
277 }
278
279 static int
280 sysctl_vm_malloc_zone_sizes(SYSCTL_HANDLER_ARGS)
281 {
282         int sizes[nitems(kmemzones)];
283         int i;
284
285         for (i = 0; i < nitems(kmemzones); i++) {
286                 sizes[i] = kmemzones[i].kz_size;
287         }
288
289         return (SYSCTL_OUT(req, &sizes, sizeof(sizes)));
290 }
291
292 /*
293  * malloc(9) uma zone separation -- sub-page buffer overruns in one
294  * malloc type will affect only a subset of other malloc types.
295  */
296 #if MALLOC_DEBUG_MAXZONES > 1
297 static void
298 tunable_set_numzones(void)
299 {
300
301         TUNABLE_INT_FETCH("debug.malloc.numzones",
302             &numzones);
303
304         /* Sanity check the number of malloc uma zones. */
305         if (numzones <= 0)
306                 numzones = 1;
307         if (numzones > MALLOC_DEBUG_MAXZONES)
308                 numzones = MALLOC_DEBUG_MAXZONES;
309 }
310 SYSINIT(numzones, SI_SUB_TUNABLES, SI_ORDER_ANY, tunable_set_numzones, NULL);
311 SYSCTL_INT(_debug_malloc, OID_AUTO, numzones, CTLFLAG_RDTUN | CTLFLAG_NOFETCH,
312     &numzones, 0, "Number of malloc uma subzones");
313
314 /*
315  * Any number that changes regularly is an okay choice for the
316  * offset.  Build numbers are pretty good of you have them.
317  */
318 static u_int zone_offset = __FreeBSD_version;
319 TUNABLE_INT("debug.malloc.zone_offset", &zone_offset);
320 SYSCTL_UINT(_debug_malloc, OID_AUTO, zone_offset, CTLFLAG_RDTUN,
321     &zone_offset, 0, "Separate malloc types by examining the "
322     "Nth character in the malloc type short description.");
323
324 static void
325 mtp_set_subzone(struct malloc_type *mtp)
326 {
327         struct malloc_type_internal *mtip;
328         const char *desc;
329         size_t len;
330         u_int val;
331
332         mtip = &mtp->ks_mti;
333         desc = mtp->ks_shortdesc;
334         if (desc == NULL || (len = strlen(desc)) == 0)
335                 val = 0;
336         else
337                 val = desc[zone_offset % len];
338         mtip->mti_zone = (val % numzones);
339 }
340
341 static inline u_int
342 mtp_get_subzone(struct malloc_type *mtp)
343 {
344         struct malloc_type_internal *mtip;
345
346         mtip = &mtp->ks_mti;
347
348         KASSERT(mtip->mti_zone < numzones,
349             ("mti_zone %u out of range %d",
350             mtip->mti_zone, numzones));
351         return (mtip->mti_zone);
352 }
353 #elif MALLOC_DEBUG_MAXZONES == 0
354 #error "MALLOC_DEBUG_MAXZONES must be positive."
355 #else
356 static void
357 mtp_set_subzone(struct malloc_type *mtp)
358 {
359         struct malloc_type_internal *mtip;
360
361         mtip = &mtp->ks_mti;
362         mtip->mti_zone = 0;
363 }
364
365 static inline u_int
366 mtp_get_subzone(struct malloc_type *mtp)
367 {
368
369         return (0);
370 }
371 #endif /* MALLOC_DEBUG_MAXZONES > 1 */
372
373 /*
374  * An allocation has succeeded -- update malloc type statistics for the
375  * amount of bucket size.  Occurs within a critical section so that the
376  * thread isn't preempted and doesn't migrate while updating per-PCU
377  * statistics.
378  */
379 static void
380 malloc_type_zone_allocated(struct malloc_type *mtp, unsigned long size,
381     int zindx)
382 {
383         struct malloc_type_internal *mtip;
384         struct malloc_type_stats *mtsp;
385
386         critical_enter();
387         mtip = &mtp->ks_mti;
388         mtsp = zpcpu_get(mtip->mti_stats);
389         if (size > 0) {
390                 mtsp->mts_memalloced += size;
391                 mtsp->mts_numallocs++;
392         }
393         if (zindx != -1)
394                 mtsp->mts_size |= 1 << zindx;
395
396 #ifdef KDTRACE_HOOKS
397         if (__predict_false(dtrace_malloc_enabled)) {
398                 uint32_t probe_id = mtip->mti_probes[DTMALLOC_PROBE_MALLOC];
399                 if (probe_id != 0)
400                         (dtrace_malloc_probe)(probe_id,
401                             (uintptr_t) mtp, (uintptr_t) mtip,
402                             (uintptr_t) mtsp, size, zindx);
403         }
404 #endif
405
406         critical_exit();
407 }
408
409 void
410 malloc_type_allocated(struct malloc_type *mtp, unsigned long size)
411 {
412
413         if (size > 0)
414                 malloc_type_zone_allocated(mtp, size, -1);
415 }
416
417 /*
418  * A free operation has occurred -- update malloc type statistics for the
419  * amount of the bucket size.  Occurs within a critical section so that the
420  * thread isn't preempted and doesn't migrate while updating per-CPU
421  * statistics.
422  */
423 void
424 malloc_type_freed(struct malloc_type *mtp, unsigned long size)
425 {
426         struct malloc_type_internal *mtip;
427         struct malloc_type_stats *mtsp;
428
429         critical_enter();
430         mtip = &mtp->ks_mti;
431         mtsp = zpcpu_get(mtip->mti_stats);
432         mtsp->mts_memfreed += size;
433         mtsp->mts_numfrees++;
434
435 #ifdef KDTRACE_HOOKS
436         if (__predict_false(dtrace_malloc_enabled)) {
437                 uint32_t probe_id = mtip->mti_probes[DTMALLOC_PROBE_FREE];
438                 if (probe_id != 0)
439                         (dtrace_malloc_probe)(probe_id,
440                             (uintptr_t) mtp, (uintptr_t) mtip,
441                             (uintptr_t) mtsp, size, 0);
442         }
443 #endif
444
445         critical_exit();
446 }
447
448 /*
449  *      contigmalloc:
450  *
451  *      Allocate a block of physically contiguous memory.
452  *
453  *      If M_NOWAIT is set, this routine will not block and return NULL if
454  *      the allocation fails.
455  */
456 void *
457 contigmalloc(unsigned long size, struct malloc_type *type, int flags,
458     vm_paddr_t low, vm_paddr_t high, unsigned long alignment,
459     vm_paddr_t boundary)
460 {
461         void *ret;
462
463         ret = (void *)kmem_alloc_contig(size, flags, low, high, alignment,
464             boundary, VM_MEMATTR_DEFAULT);
465         if (ret != NULL)
466                 malloc_type_allocated(type, round_page(size));
467         return (ret);
468 }
469
470 void *
471 contigmalloc_domainset(unsigned long size, struct malloc_type *type,
472     struct domainset *ds, int flags, vm_paddr_t low, vm_paddr_t high,
473     unsigned long alignment, vm_paddr_t boundary)
474 {
475         void *ret;
476
477         ret = (void *)kmem_alloc_contig_domainset(ds, size, flags, low, high,
478             alignment, boundary, VM_MEMATTR_DEFAULT);
479         if (ret != NULL)
480                 malloc_type_allocated(type, round_page(size));
481         return (ret);
482 }
483
484 /*
485  *      contigfree:
486  *
487  *      Free a block of memory allocated by contigmalloc.
488  *
489  *      This routine may not block.
490  */
491 void
492 contigfree(void *addr, unsigned long size, struct malloc_type *type)
493 {
494
495         kmem_free((vm_offset_t)addr, size);
496         malloc_type_freed(type, round_page(size));
497 }
498
499 #ifdef MALLOC_DEBUG
500 static int
501 malloc_dbg(caddr_t *vap, size_t *sizep, struct malloc_type *mtp,
502     int flags)
503 {
504 #ifdef INVARIANTS
505         int indx;
506
507         KASSERT(mtp->ks_version == M_VERSION, ("malloc: bad malloc type version"));
508         /*
509          * Check that exactly one of M_WAITOK or M_NOWAIT is specified.
510          */
511         indx = flags & (M_WAITOK | M_NOWAIT);
512         if (indx != M_NOWAIT && indx != M_WAITOK) {
513                 static  struct timeval lasterr;
514                 static  int curerr, once;
515                 if (once == 0 && ppsratecheck(&lasterr, &curerr, 1)) {
516                         printf("Bad malloc flags: %x\n", indx);
517                         kdb_backtrace();
518                         flags |= M_WAITOK;
519                         once++;
520                 }
521         }
522 #endif
523 #ifdef MALLOC_MAKE_FAILURES
524         if ((flags & M_NOWAIT) && (malloc_failure_rate != 0)) {
525                 atomic_add_int(&malloc_nowait_count, 1);
526                 if ((malloc_nowait_count % malloc_failure_rate) == 0) {
527                         atomic_add_int(&malloc_failure_count, 1);
528                         *vap = NULL;
529                         return (EJUSTRETURN);
530                 }
531         }
532 #endif
533         if (flags & M_WAITOK) {
534                 KASSERT(curthread->td_intr_nesting_level == 0,
535                    ("malloc(M_WAITOK) in interrupt context"));
536                 if (__predict_false(!THREAD_CAN_SLEEP())) {
537 #ifdef EPOCH_TRACE
538                         epoch_trace_list(curthread);
539 #endif
540                         KASSERT(1, 
541                             ("malloc(M_WAITOK) with sleeping prohibited"));
542                 }
543         }
544         KASSERT(curthread->td_critnest == 0 || SCHEDULER_STOPPED(),
545             ("malloc: called with spinlock or critical section held"));
546
547 #ifdef DEBUG_MEMGUARD
548         if (memguard_cmp_mtp(mtp, *sizep)) {
549                 *vap = memguard_alloc(*sizep, flags);
550                 if (*vap != NULL)
551                         return (EJUSTRETURN);
552                 /* This is unfortunate but should not be fatal. */
553         }
554 #endif
555
556 #ifdef DEBUG_REDZONE
557         *sizep = redzone_size_ntor(*sizep);
558 #endif
559
560         return (0);
561 }
562 #endif
563
564 /*
565  * Handle large allocations and frees by using kmem_malloc directly.
566  */
567 static inline bool
568 malloc_large_slab(uma_slab_t slab)
569 {
570         uintptr_t va;
571
572         va = (uintptr_t)slab;
573         return ((va & 1) != 0);
574 }
575
576 static inline size_t
577 malloc_large_size(uma_slab_t slab)
578 {
579         uintptr_t va;
580
581         va = (uintptr_t)slab;
582         return (va >> 1);
583 }
584
585 static caddr_t __noinline
586 malloc_large(size_t *size, struct malloc_type *mtp, struct domainset *policy,
587     int flags DEBUG_REDZONE_ARG_DEF)
588 {
589         vm_offset_t kva;
590         caddr_t va;
591         size_t sz;
592
593         sz = roundup(*size, PAGE_SIZE);
594         kva = kmem_malloc_domainset(policy, sz, flags);
595         if (kva != 0) {
596                 /* The low bit is unused for slab pointers. */
597                 vsetzoneslab(kva, NULL, (void *)((sz << 1) | 1));
598                 uma_total_inc(sz);
599                 *size = sz;
600         }
601         va = (caddr_t)kva;
602         malloc_type_allocated(mtp, va == NULL ? 0 : sz);
603         if (__predict_false(va == NULL)) {
604                 KASSERT((flags & M_WAITOK) == 0,
605                     ("malloc(M_WAITOK) returned NULL"));
606         }
607 #ifdef DEBUG_REDZONE
608         if (va != NULL)
609                 va = redzone_setup(va, osize);
610 #endif
611         return (va);
612 }
613
614 static void
615 free_large(void *addr, size_t size)
616 {
617
618         kmem_free((vm_offset_t)addr, size);
619         uma_total_dec(size);
620 }
621
622 /*
623  *      malloc:
624  *
625  *      Allocate a block of memory.
626  *
627  *      If M_NOWAIT is set, this routine will not block and return NULL if
628  *      the allocation fails.
629  */
630 void *
631 (malloc)(size_t size, struct malloc_type *mtp, int flags)
632 {
633         int indx;
634         caddr_t va;
635         uma_zone_t zone;
636 #ifdef DEBUG_REDZONE
637         unsigned long osize = size;
638 #endif
639
640         MPASS((flags & M_EXEC) == 0);
641
642 #ifdef MALLOC_DEBUG
643         va = NULL;
644         if (malloc_dbg(&va, &size, mtp, flags) != 0)
645                 return (va);
646 #endif
647
648         if (__predict_false(size > kmem_zmax))
649                 return (malloc_large(&size, mtp, DOMAINSET_RR(), flags
650                     DEBUG_REDZONE_ARG));
651
652         if (size & KMEM_ZMASK)
653                 size = (size & ~KMEM_ZMASK) + KMEM_ZBASE;
654         indx = kmemsize[size >> KMEM_ZSHIFT];
655         zone = kmemzones[indx].kz_zone[mtp_get_subzone(mtp)];
656         va = uma_zalloc(zone, flags);
657         if (va != NULL)
658                 size = zone->uz_size;
659         malloc_type_zone_allocated(mtp, va == NULL ? 0 : size, indx);
660         if (__predict_false(va == NULL)) {
661                 KASSERT((flags & M_WAITOK) == 0,
662                     ("malloc(M_WAITOK) returned NULL"));
663         }
664 #ifdef DEBUG_REDZONE
665         if (va != NULL)
666                 va = redzone_setup(va, osize);
667 #endif
668         return ((void *) va);
669 }
670
671 static void *
672 malloc_domain(size_t *sizep, int *indxp, struct malloc_type *mtp, int domain,
673     int flags)
674 {
675         uma_zone_t zone;
676         caddr_t va;
677         size_t size;
678         int indx;
679
680         size = *sizep;
681         KASSERT(size <= kmem_zmax && (flags & M_EXEC) == 0,
682             ("malloc_domain: Called with bad flag / size combination."));
683         if (size & KMEM_ZMASK)
684                 size = (size & ~KMEM_ZMASK) + KMEM_ZBASE;
685         indx = kmemsize[size >> KMEM_ZSHIFT];
686         zone = kmemzones[indx].kz_zone[mtp_get_subzone(mtp)];
687         va = uma_zalloc_domain(zone, NULL, domain, flags);
688         if (va != NULL)
689                 *sizep = zone->uz_size;
690         *indxp = indx;
691         return ((void *)va);
692 }
693
694 void *
695 malloc_domainset(size_t size, struct malloc_type *mtp, struct domainset *ds,
696     int flags)
697 {
698         struct vm_domainset_iter di;
699         caddr_t va;
700         int domain;
701         int indx;
702 #ifdef DEBUG_REDZONE
703         unsigned long osize = size;
704 #endif
705
706         MPASS((flags & M_EXEC) == 0);
707
708 #ifdef MALLOC_DEBUG
709         va = NULL;
710         if (malloc_dbg(&va, &size, mtp, flags) != 0)
711                 return (va);
712 #endif
713
714         if (__predict_false(size > kmem_zmax))
715                 return (malloc_large(&size, mtp, DOMAINSET_RR(), flags
716                     DEBUG_REDZONE_ARG));
717
718         vm_domainset_iter_policy_init(&di, ds, &domain, &flags);
719         do {
720                 va = malloc_domain(&size, &indx, mtp, domain, flags);
721         } while (va == NULL && vm_domainset_iter_policy(&di, &domain) == 0);
722         malloc_type_zone_allocated(mtp, va == NULL ? 0 : size, indx);
723         if (__predict_false(va == NULL)) {
724                 KASSERT((flags & M_WAITOK) == 0,
725                     ("malloc(M_WAITOK) returned NULL"));
726         }
727 #ifdef DEBUG_REDZONE
728         if (va != NULL)
729                 va = redzone_setup(va, osize);
730 #endif
731         return (va);
732 }
733
734 /*
735  * Allocate an executable area.
736  */
737 void *
738 malloc_exec(size_t size, struct malloc_type *mtp, int flags)
739 {
740
741         return (malloc_domainset_exec(size, mtp, DOMAINSET_RR(), flags));
742 }
743
744 void *
745 malloc_domainset_exec(size_t size, struct malloc_type *mtp, struct domainset *ds,
746     int flags)
747 {
748 #ifdef DEBUG_REDZONE
749         unsigned long osize = size;
750 #endif
751 #ifdef MALLOC_DEBUG
752         caddr_t va;
753 #endif
754
755         flags |= M_EXEC;
756
757 #ifdef MALLOC_DEBUG
758         va = NULL;
759         if (malloc_dbg(&va, &size, mtp, flags) != 0)
760                 return (va);
761 #endif
762
763         return (malloc_large(&size, mtp, ds, flags DEBUG_REDZONE_ARG));
764 }
765
766 void *
767 malloc_domainset_aligned(size_t size, size_t align,
768     struct malloc_type *mtp, struct domainset *ds, int flags)
769 {
770         void *res;
771         size_t asize;
772
773         KASSERT(align != 0 && powerof2(align),
774             ("malloc_domainset_aligned: wrong align %#zx size %#zx",
775             align, size));
776         KASSERT(align <= PAGE_SIZE,
777             ("malloc_domainset_aligned: align %#zx (size %#zx) too large",
778             align, size));
779
780         /*
781          * Round the allocation size up to the next power of 2,
782          * because we can only guarantee alignment for
783          * power-of-2-sized allocations.  Further increase the
784          * allocation size to align if the rounded size is less than
785          * align, since malloc zones provide alignment equal to their
786          * size.
787          */
788         asize = size <= align ? align : 1UL << flsl(size - 1);
789
790         res = malloc_domainset(asize, mtp, ds, flags);
791         KASSERT(res == NULL || ((uintptr_t)res & (align - 1)) == 0,
792             ("malloc_domainset_aligned: result not aligned %p size %#zx "
793             "allocsize %#zx align %#zx", res, size, asize, align));
794         return (res);
795 }
796
797 void *
798 mallocarray(size_t nmemb, size_t size, struct malloc_type *type, int flags)
799 {
800
801         if (WOULD_OVERFLOW(nmemb, size))
802                 panic("mallocarray: %zu * %zu overflowed", nmemb, size);
803
804         return (malloc(size * nmemb, type, flags));
805 }
806
807 void *
808 mallocarray_domainset(size_t nmemb, size_t size, struct malloc_type *type,
809     struct domainset *ds, int flags)
810 {
811
812         if (WOULD_OVERFLOW(nmemb, size))
813                 panic("mallocarray_domainset: %zu * %zu overflowed", nmemb, size);
814
815         return (malloc_domainset(size * nmemb, type, ds, flags));
816 }
817
818 #ifdef INVARIANTS
819 static void
820 free_save_type(void *addr, struct malloc_type *mtp, u_long size)
821 {
822         struct malloc_type **mtpp = addr;
823
824         /*
825          * Cache a pointer to the malloc_type that most recently freed
826          * this memory here.  This way we know who is most likely to
827          * have stepped on it later.
828          *
829          * This code assumes that size is a multiple of 8 bytes for
830          * 64 bit machines
831          */
832         mtpp = (struct malloc_type **) ((unsigned long)mtpp & ~UMA_ALIGN_PTR);
833         mtpp += (size - sizeof(struct malloc_type *)) /
834             sizeof(struct malloc_type *);
835         *mtpp = mtp;
836 }
837 #endif
838
839 #ifdef MALLOC_DEBUG
840 static int
841 free_dbg(void **addrp, struct malloc_type *mtp)
842 {
843         void *addr;
844
845         addr = *addrp;
846         KASSERT(mtp->ks_version == M_VERSION, ("free: bad malloc type version"));
847         KASSERT(curthread->td_critnest == 0 || SCHEDULER_STOPPED(),
848             ("free: called with spinlock or critical section held"));
849
850         /* free(NULL, ...) does nothing */
851         if (addr == NULL)
852                 return (EJUSTRETURN);
853
854 #ifdef DEBUG_MEMGUARD
855         if (is_memguard_addr(addr)) {
856                 memguard_free(addr);
857                 return (EJUSTRETURN);
858         }
859 #endif
860
861 #ifdef DEBUG_REDZONE
862         redzone_check(addr);
863         *addrp = redzone_addr_ntor(addr);
864 #endif
865
866         return (0);
867 }
868 #endif
869
870 /*
871  *      free:
872  *
873  *      Free a block of memory allocated by malloc.
874  *
875  *      This routine may not block.
876  */
877 void
878 free(void *addr, struct malloc_type *mtp)
879 {
880         uma_zone_t zone;
881         uma_slab_t slab;
882         u_long size;
883
884 #ifdef MALLOC_DEBUG
885         if (free_dbg(&addr, mtp) != 0)
886                 return;
887 #endif
888         /* free(NULL, ...) does nothing */
889         if (addr == NULL)
890                 return;
891
892         vtozoneslab((vm_offset_t)addr & (~UMA_SLAB_MASK), &zone, &slab);
893         if (slab == NULL)
894                 panic("free: address %p(%p) has not been allocated.\n",
895                     addr, (void *)((u_long)addr & (~UMA_SLAB_MASK)));
896
897         if (__predict_true(!malloc_large_slab(slab))) {
898                 size = zone->uz_size;
899 #ifdef INVARIANTS
900                 free_save_type(addr, mtp, size);
901 #endif
902                 uma_zfree_arg(zone, addr, slab);
903         } else {
904                 size = malloc_large_size(slab);
905                 free_large(addr, size);
906         }
907         malloc_type_freed(mtp, size);
908 }
909
910 /*
911  *      zfree:
912  *
913  *      Zero then free a block of memory allocated by malloc.
914  *
915  *      This routine may not block.
916  */
917 void
918 zfree(void *addr, struct malloc_type *mtp)
919 {
920         uma_zone_t zone;
921         uma_slab_t slab;
922         u_long size;
923
924 #ifdef MALLOC_DEBUG
925         if (free_dbg(&addr, mtp) != 0)
926                 return;
927 #endif
928         /* free(NULL, ...) does nothing */
929         if (addr == NULL)
930                 return;
931
932         vtozoneslab((vm_offset_t)addr & (~UMA_SLAB_MASK), &zone, &slab);
933         if (slab == NULL)
934                 panic("free: address %p(%p) has not been allocated.\n",
935                     addr, (void *)((u_long)addr & (~UMA_SLAB_MASK)));
936
937         if (__predict_true(!malloc_large_slab(slab))) {
938                 size = zone->uz_size;
939 #ifdef INVARIANTS
940                 free_save_type(addr, mtp, size);
941 #endif
942                 explicit_bzero(addr, size);
943                 uma_zfree_arg(zone, addr, slab);
944         } else {
945                 size = malloc_large_size(slab);
946                 explicit_bzero(addr, size);
947                 free_large(addr, size);
948         }
949         malloc_type_freed(mtp, size);
950 }
951
952 /*
953  *      realloc: change the size of a memory block
954  */
955 void *
956 realloc(void *addr, size_t size, struct malloc_type *mtp, int flags)
957 {
958         uma_zone_t zone;
959         uma_slab_t slab;
960         unsigned long alloc;
961         void *newaddr;
962
963         KASSERT(mtp->ks_version == M_VERSION,
964             ("realloc: bad malloc type version"));
965         KASSERT(curthread->td_critnest == 0 || SCHEDULER_STOPPED(),
966             ("realloc: called with spinlock or critical section held"));
967
968         /* realloc(NULL, ...) is equivalent to malloc(...) */
969         if (addr == NULL)
970                 return (malloc(size, mtp, flags));
971
972         /*
973          * XXX: Should report free of old memory and alloc of new memory to
974          * per-CPU stats.
975          */
976
977 #ifdef DEBUG_MEMGUARD
978         if (is_memguard_addr(addr))
979                 return (memguard_realloc(addr, size, mtp, flags));
980 #endif
981
982 #ifdef DEBUG_REDZONE
983         slab = NULL;
984         zone = NULL;
985         alloc = redzone_get_size(addr);
986 #else
987         vtozoneslab((vm_offset_t)addr & (~UMA_SLAB_MASK), &zone, &slab);
988
989         /* Sanity check */
990         KASSERT(slab != NULL,
991             ("realloc: address %p out of range", (void *)addr));
992
993         /* Get the size of the original block */
994         if (!malloc_large_slab(slab))
995                 alloc = zone->uz_size;
996         else
997                 alloc = malloc_large_size(slab);
998
999         /* Reuse the original block if appropriate */
1000         if (size <= alloc
1001             && (size > (alloc >> REALLOC_FRACTION) || alloc == MINALLOCSIZE))
1002                 return (addr);
1003 #endif /* !DEBUG_REDZONE */
1004
1005         /* Allocate a new, bigger (or smaller) block */
1006         if ((newaddr = malloc(size, mtp, flags)) == NULL)
1007                 return (NULL);
1008
1009         /* Copy over original contents */
1010         bcopy(addr, newaddr, min(size, alloc));
1011         free(addr, mtp);
1012         return (newaddr);
1013 }
1014
1015 /*
1016  *      reallocf: same as realloc() but free memory on failure.
1017  */
1018 void *
1019 reallocf(void *addr, size_t size, struct malloc_type *mtp, int flags)
1020 {
1021         void *mem;
1022
1023         if ((mem = realloc(addr, size, mtp, flags)) == NULL)
1024                 free(addr, mtp);
1025         return (mem);
1026 }
1027
1028 /*
1029  *      malloc_size: returns the number of bytes allocated for a request of the
1030  *                   specified size
1031  */
1032 size_t
1033 malloc_size(size_t size)
1034 {
1035         int indx;
1036
1037         if (size > kmem_zmax)
1038                 return (0);
1039         if (size & KMEM_ZMASK)
1040                 size = (size & ~KMEM_ZMASK) + KMEM_ZBASE;
1041         indx = kmemsize[size >> KMEM_ZSHIFT];
1042         return (kmemzones[indx].kz_size);
1043 }
1044
1045 /*
1046  *      malloc_usable_size: returns the usable size of the allocation.
1047  */
1048 size_t
1049 malloc_usable_size(const void *addr)
1050 {
1051 #ifndef DEBUG_REDZONE
1052         uma_zone_t zone;
1053         uma_slab_t slab;
1054 #endif
1055         u_long size;
1056
1057         if (addr == NULL)
1058                 return (0);
1059
1060 #ifdef DEBUG_MEMGUARD
1061         if (is_memguard_addr(__DECONST(void *, addr)))
1062                 return (memguard_get_req_size(addr));
1063 #endif
1064
1065 #ifdef DEBUG_REDZONE
1066         size = redzone_get_size(__DECONST(void *, addr));
1067 #else
1068         vtozoneslab((vm_offset_t)addr & (~UMA_SLAB_MASK), &zone, &slab);
1069         if (slab == NULL)
1070                 panic("malloc_usable_size: address %p(%p) is not allocated.\n",
1071                     addr, (void *)((u_long)addr & (~UMA_SLAB_MASK)));
1072
1073         if (!malloc_large_slab(slab))
1074                 size = zone->uz_size;
1075         else
1076                 size = malloc_large_size(slab);
1077 #endif
1078         return (size);
1079 }
1080
1081 CTASSERT(VM_KMEM_SIZE_SCALE >= 1);
1082
1083 /*
1084  * Initialize the kernel memory (kmem) arena.
1085  */
1086 void
1087 kmeminit(void)
1088 {
1089         u_long mem_size;
1090         u_long tmp;
1091
1092 #ifdef VM_KMEM_SIZE
1093         if (vm_kmem_size == 0)
1094                 vm_kmem_size = VM_KMEM_SIZE;
1095 #endif
1096 #ifdef VM_KMEM_SIZE_MIN
1097         if (vm_kmem_size_min == 0)
1098                 vm_kmem_size_min = VM_KMEM_SIZE_MIN;
1099 #endif
1100 #ifdef VM_KMEM_SIZE_MAX
1101         if (vm_kmem_size_max == 0)
1102                 vm_kmem_size_max = VM_KMEM_SIZE_MAX;
1103 #endif
1104         /*
1105          * Calculate the amount of kernel virtual address (KVA) space that is
1106          * preallocated to the kmem arena.  In order to support a wide range
1107          * of machines, it is a function of the physical memory size,
1108          * specifically,
1109          *
1110          *      min(max(physical memory size / VM_KMEM_SIZE_SCALE,
1111          *          VM_KMEM_SIZE_MIN), VM_KMEM_SIZE_MAX)
1112          *
1113          * Every architecture must define an integral value for
1114          * VM_KMEM_SIZE_SCALE.  However, the definitions of VM_KMEM_SIZE_MIN
1115          * and VM_KMEM_SIZE_MAX, which represent respectively the floor and
1116          * ceiling on this preallocation, are optional.  Typically,
1117          * VM_KMEM_SIZE_MAX is itself a function of the available KVA space on
1118          * a given architecture.
1119          */
1120         mem_size = vm_cnt.v_page_count;
1121         if (mem_size <= 32768) /* delphij XXX 128MB */
1122                 kmem_zmax = PAGE_SIZE;
1123
1124         if (vm_kmem_size_scale < 1)
1125                 vm_kmem_size_scale = VM_KMEM_SIZE_SCALE;
1126
1127         /*
1128          * Check if we should use defaults for the "vm_kmem_size"
1129          * variable:
1130          */
1131         if (vm_kmem_size == 0) {
1132                 vm_kmem_size = mem_size / vm_kmem_size_scale;
1133                 vm_kmem_size = vm_kmem_size * PAGE_SIZE < vm_kmem_size ?
1134                     vm_kmem_size_max : vm_kmem_size * PAGE_SIZE;
1135                 if (vm_kmem_size_min > 0 && vm_kmem_size < vm_kmem_size_min)
1136                         vm_kmem_size = vm_kmem_size_min;
1137                 if (vm_kmem_size_max > 0 && vm_kmem_size >= vm_kmem_size_max)
1138                         vm_kmem_size = vm_kmem_size_max;
1139         }
1140         if (vm_kmem_size == 0)
1141                 panic("Tune VM_KMEM_SIZE_* for the platform");
1142
1143         /*
1144          * The amount of KVA space that is preallocated to the
1145          * kmem arena can be set statically at compile-time or manually
1146          * through the kernel environment.  However, it is still limited to
1147          * twice the physical memory size, which has been sufficient to handle
1148          * the most severe cases of external fragmentation in the kmem arena. 
1149          */
1150         if (vm_kmem_size / 2 / PAGE_SIZE > mem_size)
1151                 vm_kmem_size = 2 * mem_size * PAGE_SIZE;
1152
1153         vm_kmem_size = round_page(vm_kmem_size);
1154 #ifdef DEBUG_MEMGUARD
1155         tmp = memguard_fudge(vm_kmem_size, kernel_map);
1156 #else
1157         tmp = vm_kmem_size;
1158 #endif
1159         uma_set_limit(tmp);
1160
1161 #ifdef DEBUG_MEMGUARD
1162         /*
1163          * Initialize MemGuard if support compiled in.  MemGuard is a
1164          * replacement allocator used for detecting tamper-after-free
1165          * scenarios as they occur.  It is only used for debugging.
1166          */
1167         memguard_init(kernel_arena);
1168 #endif
1169 }
1170
1171 /*
1172  * Initialize the kernel memory allocator
1173  */
1174 /* ARGSUSED*/
1175 static void
1176 mallocinit(void *dummy)
1177 {
1178         int i;
1179         uint8_t indx;
1180
1181         mtx_init(&malloc_mtx, "malloc", NULL, MTX_DEF);
1182
1183         kmeminit();
1184
1185         if (kmem_zmax < PAGE_SIZE || kmem_zmax > KMEM_ZMAX)
1186                 kmem_zmax = KMEM_ZMAX;
1187
1188         for (i = 0, indx = 0; kmemzones[indx].kz_size != 0; indx++) {
1189                 int size = kmemzones[indx].kz_size;
1190                 const char *name = kmemzones[indx].kz_name;
1191                 size_t align;
1192                 int subzone;
1193
1194                 align = UMA_ALIGN_PTR;
1195                 if (powerof2(size) && size > sizeof(void *))
1196                         align = MIN(size, PAGE_SIZE) - 1;
1197                 for (subzone = 0; subzone < numzones; subzone++) {
1198                         kmemzones[indx].kz_zone[subzone] =
1199                             uma_zcreate(name, size,
1200 #ifdef INVARIANTS
1201                             mtrash_ctor, mtrash_dtor, mtrash_init, mtrash_fini,
1202 #else
1203                             NULL, NULL, NULL, NULL,
1204 #endif
1205                             align, UMA_ZONE_MALLOC);
1206                 }
1207                 for (;i <= size; i+= KMEM_ZBASE)
1208                         kmemsize[i >> KMEM_ZSHIFT] = indx;
1209         }
1210 }
1211 SYSINIT(kmem, SI_SUB_KMEM, SI_ORDER_SECOND, mallocinit, NULL);
1212
1213 void
1214 malloc_init(void *data)
1215 {
1216         struct malloc_type_internal *mtip;
1217         struct malloc_type *mtp;
1218
1219         KASSERT(vm_cnt.v_page_count != 0, ("malloc_register before vm_init"));
1220
1221         mtp = data;
1222         if (mtp->ks_version != M_VERSION)
1223                 panic("malloc_init: type %s with unsupported version %lu",
1224                     mtp->ks_shortdesc, mtp->ks_version);
1225
1226         mtip = &mtp->ks_mti;
1227         mtip->mti_stats = uma_zalloc_pcpu(pcpu_zone_64, M_WAITOK | M_ZERO);
1228         mtp_set_subzone(mtp);
1229
1230         mtx_lock(&malloc_mtx);
1231         mtp->ks_next = kmemstatistics;
1232         kmemstatistics = mtp;
1233         kmemcount++;
1234         mtx_unlock(&malloc_mtx);
1235 }
1236
1237 void
1238 malloc_uninit(void *data)
1239 {
1240         struct malloc_type_internal *mtip;
1241         struct malloc_type_stats *mtsp;
1242         struct malloc_type *mtp, *temp;
1243         long temp_allocs, temp_bytes;
1244         int i;
1245
1246         mtp = data;
1247         KASSERT(mtp->ks_version == M_VERSION,
1248             ("malloc_uninit: bad malloc type version"));
1249
1250         mtx_lock(&malloc_mtx);
1251         mtip = &mtp->ks_mti;
1252         if (mtp != kmemstatistics) {
1253                 for (temp = kmemstatistics; temp != NULL;
1254                     temp = temp->ks_next) {
1255                         if (temp->ks_next == mtp) {
1256                                 temp->ks_next = mtp->ks_next;
1257                                 break;
1258                         }
1259                 }
1260                 KASSERT(temp,
1261                     ("malloc_uninit: type '%s' not found", mtp->ks_shortdesc));
1262         } else
1263                 kmemstatistics = mtp->ks_next;
1264         kmemcount--;
1265         mtx_unlock(&malloc_mtx);
1266
1267         /*
1268          * Look for memory leaks.
1269          */
1270         temp_allocs = temp_bytes = 0;
1271         for (i = 0; i <= mp_maxid; i++) {
1272                 mtsp = zpcpu_get_cpu(mtip->mti_stats, i);
1273                 temp_allocs += mtsp->mts_numallocs;
1274                 temp_allocs -= mtsp->mts_numfrees;
1275                 temp_bytes += mtsp->mts_memalloced;
1276                 temp_bytes -= mtsp->mts_memfreed;
1277         }
1278         if (temp_allocs > 0 || temp_bytes > 0) {
1279                 printf("Warning: memory type %s leaked memory on destroy "
1280                     "(%ld allocations, %ld bytes leaked).\n", mtp->ks_shortdesc,
1281                     temp_allocs, temp_bytes);
1282         }
1283
1284         uma_zfree_pcpu(pcpu_zone_64, mtip->mti_stats);
1285 }
1286
1287 struct malloc_type *
1288 malloc_desc2type(const char *desc)
1289 {
1290         struct malloc_type *mtp;
1291
1292         mtx_assert(&malloc_mtx, MA_OWNED);
1293         for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
1294                 if (strcmp(mtp->ks_shortdesc, desc) == 0)
1295                         return (mtp);
1296         }
1297         return (NULL);
1298 }
1299
1300 static int
1301 sysctl_kern_malloc_stats(SYSCTL_HANDLER_ARGS)
1302 {
1303         struct malloc_type_stream_header mtsh;
1304         struct malloc_type_internal *mtip;
1305         struct malloc_type_stats *mtsp, zeromts;
1306         struct malloc_type_header mth;
1307         struct malloc_type *mtp;
1308         int error, i;
1309         struct sbuf sbuf;
1310
1311         error = sysctl_wire_old_buffer(req, 0);
1312         if (error != 0)
1313                 return (error);
1314         sbuf_new_for_sysctl(&sbuf, NULL, 128, req);
1315         sbuf_clear_flags(&sbuf, SBUF_INCLUDENUL);
1316         mtx_lock(&malloc_mtx);
1317
1318         bzero(&zeromts, sizeof(zeromts));
1319
1320         /*
1321          * Insert stream header.
1322          */
1323         bzero(&mtsh, sizeof(mtsh));
1324         mtsh.mtsh_version = MALLOC_TYPE_STREAM_VERSION;
1325         mtsh.mtsh_maxcpus = MAXCPU;
1326         mtsh.mtsh_count = kmemcount;
1327         (void)sbuf_bcat(&sbuf, &mtsh, sizeof(mtsh));
1328
1329         /*
1330          * Insert alternating sequence of type headers and type statistics.
1331          */
1332         for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
1333                 mtip = &mtp->ks_mti;
1334
1335                 /*
1336                  * Insert type header.
1337                  */
1338                 bzero(&mth, sizeof(mth));
1339                 strlcpy(mth.mth_name, mtp->ks_shortdesc, MALLOC_MAX_NAME);
1340                 (void)sbuf_bcat(&sbuf, &mth, sizeof(mth));
1341
1342                 /*
1343                  * Insert type statistics for each CPU.
1344                  */
1345                 for (i = 0; i <= mp_maxid; i++) {
1346                         mtsp = zpcpu_get_cpu(mtip->mti_stats, i);
1347                         (void)sbuf_bcat(&sbuf, mtsp, sizeof(*mtsp));
1348                 }
1349                 /*
1350                  * Fill in the missing CPUs.
1351                  */
1352                 for (; i < MAXCPU; i++) {
1353                         (void)sbuf_bcat(&sbuf, &zeromts, sizeof(zeromts));
1354                 }
1355         }
1356         mtx_unlock(&malloc_mtx);
1357         error = sbuf_finish(&sbuf);
1358         sbuf_delete(&sbuf);
1359         return (error);
1360 }
1361
1362 SYSCTL_PROC(_kern, OID_AUTO, malloc_stats,
1363     CTLFLAG_RD | CTLTYPE_STRUCT | CTLFLAG_MPSAFE, 0, 0,
1364     sysctl_kern_malloc_stats, "s,malloc_type_ustats",
1365     "Return malloc types");
1366
1367 SYSCTL_INT(_kern, OID_AUTO, malloc_count, CTLFLAG_RD, &kmemcount, 0,
1368     "Count of kernel malloc types");
1369
1370 void
1371 malloc_type_list(malloc_type_list_func_t *func, void *arg)
1372 {
1373         struct malloc_type *mtp, **bufmtp;
1374         int count, i;
1375         size_t buflen;
1376
1377         mtx_lock(&malloc_mtx);
1378 restart:
1379         mtx_assert(&malloc_mtx, MA_OWNED);
1380         count = kmemcount;
1381         mtx_unlock(&malloc_mtx);
1382
1383         buflen = sizeof(struct malloc_type *) * count;
1384         bufmtp = malloc(buflen, M_TEMP, M_WAITOK);
1385
1386         mtx_lock(&malloc_mtx);
1387
1388         if (count < kmemcount) {
1389                 free(bufmtp, M_TEMP);
1390                 goto restart;
1391         }
1392
1393         for (mtp = kmemstatistics, i = 0; mtp != NULL; mtp = mtp->ks_next, i++)
1394                 bufmtp[i] = mtp;
1395
1396         mtx_unlock(&malloc_mtx);
1397
1398         for (i = 0; i < count; i++)
1399                 (func)(bufmtp[i], arg);
1400
1401         free(bufmtp, M_TEMP);
1402 }
1403
1404 #ifdef DDB
1405 static int64_t
1406 get_malloc_stats(const struct malloc_type_internal *mtip, uint64_t *allocs,
1407     uint64_t *inuse)
1408 {
1409         const struct malloc_type_stats *mtsp;
1410         uint64_t frees, alloced, freed;
1411         int i;
1412
1413         *allocs = 0;
1414         frees = 0;
1415         alloced = 0;
1416         freed = 0;
1417         for (i = 0; i <= mp_maxid; i++) {
1418                 mtsp = zpcpu_get_cpu(mtip->mti_stats, i);
1419
1420                 *allocs += mtsp->mts_numallocs;
1421                 frees += mtsp->mts_numfrees;
1422                 alloced += mtsp->mts_memalloced;
1423                 freed += mtsp->mts_memfreed;
1424         }
1425         *inuse = *allocs - frees;
1426         return (alloced - freed);
1427 }
1428
1429 DB_SHOW_COMMAND(malloc, db_show_malloc)
1430 {
1431         const char *fmt_hdr, *fmt_entry;
1432         struct malloc_type *mtp;
1433         uint64_t allocs, inuse;
1434         int64_t size;
1435         /* variables for sorting */
1436         struct malloc_type *last_mtype, *cur_mtype;
1437         int64_t cur_size, last_size;
1438         int ties;
1439
1440         if (modif[0] == 'i') {
1441                 fmt_hdr = "%s,%s,%s,%s\n";
1442                 fmt_entry = "\"%s\",%ju,%jdK,%ju\n";
1443         } else {
1444                 fmt_hdr = "%18s %12s  %12s %12s\n";
1445                 fmt_entry = "%18s %12ju %12jdK %12ju\n";
1446         }
1447
1448         db_printf(fmt_hdr, "Type", "InUse", "MemUse", "Requests");
1449
1450         /* Select sort, largest size first. */
1451         last_mtype = NULL;
1452         last_size = INT64_MAX;
1453         for (;;) {
1454                 cur_mtype = NULL;
1455                 cur_size = -1;
1456                 ties = 0;
1457
1458                 for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
1459                         /*
1460                          * In the case of size ties, print out mtypes
1461                          * in the order they are encountered.  That is,
1462                          * when we encounter the most recently output
1463                          * mtype, we have already printed all preceding
1464                          * ties, and we must print all following ties.
1465                          */
1466                         if (mtp == last_mtype) {
1467                                 ties = 1;
1468                                 continue;
1469                         }
1470                         size = get_malloc_stats(&mtp->ks_mti, &allocs,
1471                             &inuse);
1472                         if (size > cur_size && size < last_size + ties) {
1473                                 cur_size = size;
1474                                 cur_mtype = mtp;
1475                         }
1476                 }
1477                 if (cur_mtype == NULL)
1478                         break;
1479
1480                 size = get_malloc_stats(&cur_mtype->ks_mti, &allocs, &inuse);
1481                 db_printf(fmt_entry, cur_mtype->ks_shortdesc, inuse,
1482                     howmany(size, 1024), allocs);
1483
1484                 if (db_pager_quit)
1485                         break;
1486
1487                 last_mtype = cur_mtype;
1488                 last_size = cur_size;
1489         }
1490 }
1491
1492 #if MALLOC_DEBUG_MAXZONES > 1
1493 DB_SHOW_COMMAND(multizone_matches, db_show_multizone_matches)
1494 {
1495         struct malloc_type_internal *mtip;
1496         struct malloc_type *mtp;
1497         u_int subzone;
1498
1499         if (!have_addr) {
1500                 db_printf("Usage: show multizone_matches <malloc type/addr>\n");
1501                 return;
1502         }
1503         mtp = (void *)addr;
1504         if (mtp->ks_version != M_VERSION) {
1505                 db_printf("Version %lx does not match expected %x\n",
1506                     mtp->ks_version, M_VERSION);
1507                 return;
1508         }
1509
1510         mtip = &mtp->ks_mti;
1511         subzone = mtip->mti_zone;
1512
1513         for (mtp = kmemstatistics; mtp != NULL; mtp = mtp->ks_next) {
1514                 mtip = &mtp->ks_mti;
1515                 if (mtip->mti_zone != subzone)
1516                         continue;
1517                 db_printf("%s\n", mtp->ks_shortdesc);
1518                 if (db_pager_quit)
1519                         break;
1520         }
1521 }
1522 #endif /* MALLOC_DEBUG_MAXZONES > 1 */
1523 #endif /* DDB */