10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * CDDL HEADER START 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*1528Sjwadams * Common Development and Distribution License (the "License"). 6*1528Sjwadams * You may not use this file except in compliance with the License. 70Sstevel@tonic-gate * 80Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 90Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 100Sstevel@tonic-gate * See the License for the specific language governing permissions 110Sstevel@tonic-gate * and limitations under the License. 120Sstevel@tonic-gate * 130Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 140Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 150Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 160Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 170Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 180Sstevel@tonic-gate * 190Sstevel@tonic-gate * CDDL HEADER END 200Sstevel@tonic-gate */ 210Sstevel@tonic-gate /* 22*1528Sjwadams * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 230Sstevel@tonic-gate * Use is subject to license terms. 240Sstevel@tonic-gate */ 250Sstevel@tonic-gate 260Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 270Sstevel@tonic-gate 280Sstevel@tonic-gate #include <mdb/mdb_param.h> 290Sstevel@tonic-gate #include <mdb/mdb_modapi.h> 300Sstevel@tonic-gate #include <mdb/mdb_ctf.h> 310Sstevel@tonic-gate #include <sys/cpuvar.h> 320Sstevel@tonic-gate #include <sys/kmem_impl.h> 330Sstevel@tonic-gate #include <sys/vmem_impl.h> 340Sstevel@tonic-gate #include <sys/machelf.h> 350Sstevel@tonic-gate #include <sys/modctl.h> 360Sstevel@tonic-gate #include <sys/kobj.h> 370Sstevel@tonic-gate #include <sys/panic.h> 380Sstevel@tonic-gate #include <sys/stack.h> 390Sstevel@tonic-gate #include <sys/sysmacros.h> 400Sstevel@tonic-gate #include <vm/page.h> 410Sstevel@tonic-gate 420Sstevel@tonic-gate #include "kmem.h" 43*1528Sjwadams #include "leaky.h" 440Sstevel@tonic-gate 450Sstevel@tonic-gate #define dprintf(x) if (mdb_debug_level) { \ 460Sstevel@tonic-gate mdb_printf("kmem debug: "); \ 470Sstevel@tonic-gate /*CSTYLED*/\ 480Sstevel@tonic-gate mdb_printf x ;\ 490Sstevel@tonic-gate } 500Sstevel@tonic-gate 510Sstevel@tonic-gate #define KM_ALLOCATED 0x01 520Sstevel@tonic-gate #define KM_FREE 0x02 530Sstevel@tonic-gate #define KM_BUFCTL 0x04 540Sstevel@tonic-gate #define KM_CONSTRUCTED 0x08 /* only constructed free buffers */ 550Sstevel@tonic-gate #define KM_HASH 0x10 560Sstevel@tonic-gate 570Sstevel@tonic-gate static int mdb_debug_level = 0; 580Sstevel@tonic-gate 590Sstevel@tonic-gate /*ARGSUSED*/ 600Sstevel@tonic-gate static int 610Sstevel@tonic-gate kmem_init_walkers(uintptr_t addr, const kmem_cache_t *c, void *ignored) 620Sstevel@tonic-gate { 630Sstevel@tonic-gate mdb_walker_t w; 640Sstevel@tonic-gate char descr[64]; 650Sstevel@tonic-gate 660Sstevel@tonic-gate (void) mdb_snprintf(descr, sizeof (descr), 670Sstevel@tonic-gate "walk the %s cache", c->cache_name); 680Sstevel@tonic-gate 690Sstevel@tonic-gate w.walk_name = c->cache_name; 700Sstevel@tonic-gate w.walk_descr = descr; 710Sstevel@tonic-gate w.walk_init = kmem_walk_init; 720Sstevel@tonic-gate w.walk_step = kmem_walk_step; 730Sstevel@tonic-gate w.walk_fini = kmem_walk_fini; 740Sstevel@tonic-gate w.walk_init_arg = (void *)addr; 750Sstevel@tonic-gate 760Sstevel@tonic-gate if (mdb_add_walker(&w) == -1) 770Sstevel@tonic-gate mdb_warn("failed to add %s walker", c->cache_name); 780Sstevel@tonic-gate 790Sstevel@tonic-gate return (WALK_NEXT); 800Sstevel@tonic-gate } 810Sstevel@tonic-gate 820Sstevel@tonic-gate /*ARGSUSED*/ 830Sstevel@tonic-gate int 840Sstevel@tonic-gate kmem_debug(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 850Sstevel@tonic-gate { 860Sstevel@tonic-gate mdb_debug_level ^= 1; 870Sstevel@tonic-gate 880Sstevel@tonic-gate mdb_printf("kmem: debugging is now %s\n", 890Sstevel@tonic-gate mdb_debug_level ? "on" : "off"); 900Sstevel@tonic-gate 910Sstevel@tonic-gate return (DCMD_OK); 920Sstevel@tonic-gate } 930Sstevel@tonic-gate 940Sstevel@tonic-gate typedef struct { 950Sstevel@tonic-gate uintptr_t kcw_first; 960Sstevel@tonic-gate uintptr_t kcw_current; 970Sstevel@tonic-gate } kmem_cache_walk_t; 980Sstevel@tonic-gate 990Sstevel@tonic-gate int 1000Sstevel@tonic-gate kmem_cache_walk_init(mdb_walk_state_t *wsp) 1010Sstevel@tonic-gate { 1020Sstevel@tonic-gate kmem_cache_walk_t *kcw; 1030Sstevel@tonic-gate kmem_cache_t c; 1040Sstevel@tonic-gate uintptr_t cp; 1050Sstevel@tonic-gate GElf_Sym sym; 1060Sstevel@tonic-gate 1070Sstevel@tonic-gate if (mdb_lookup_by_name("kmem_null_cache", &sym) == -1) { 1080Sstevel@tonic-gate mdb_warn("couldn't find kmem_null_cache"); 1090Sstevel@tonic-gate return (WALK_ERR); 1100Sstevel@tonic-gate } 1110Sstevel@tonic-gate 1120Sstevel@tonic-gate cp = (uintptr_t)sym.st_value; 1130Sstevel@tonic-gate 1140Sstevel@tonic-gate if (mdb_vread(&c, sizeof (kmem_cache_t), cp) == -1) { 1150Sstevel@tonic-gate mdb_warn("couldn't read cache at %p", cp); 1160Sstevel@tonic-gate return (WALK_ERR); 1170Sstevel@tonic-gate } 1180Sstevel@tonic-gate 1190Sstevel@tonic-gate kcw = mdb_alloc(sizeof (kmem_cache_walk_t), UM_SLEEP); 1200Sstevel@tonic-gate 1210Sstevel@tonic-gate kcw->kcw_first = cp; 1220Sstevel@tonic-gate kcw->kcw_current = (uintptr_t)c.cache_next; 1230Sstevel@tonic-gate wsp->walk_data = kcw; 1240Sstevel@tonic-gate 1250Sstevel@tonic-gate return (WALK_NEXT); 1260Sstevel@tonic-gate } 1270Sstevel@tonic-gate 1280Sstevel@tonic-gate int 1290Sstevel@tonic-gate kmem_cache_walk_step(mdb_walk_state_t *wsp) 1300Sstevel@tonic-gate { 1310Sstevel@tonic-gate kmem_cache_walk_t *kcw = wsp->walk_data; 1320Sstevel@tonic-gate kmem_cache_t c; 1330Sstevel@tonic-gate int status; 1340Sstevel@tonic-gate 1350Sstevel@tonic-gate if (mdb_vread(&c, sizeof (kmem_cache_t), kcw->kcw_current) == -1) { 1360Sstevel@tonic-gate mdb_warn("couldn't read cache at %p", kcw->kcw_current); 1370Sstevel@tonic-gate return (WALK_DONE); 1380Sstevel@tonic-gate } 1390Sstevel@tonic-gate 1400Sstevel@tonic-gate status = wsp->walk_callback(kcw->kcw_current, &c, wsp->walk_cbdata); 1410Sstevel@tonic-gate 1420Sstevel@tonic-gate if ((kcw->kcw_current = (uintptr_t)c.cache_next) == kcw->kcw_first) 1430Sstevel@tonic-gate return (WALK_DONE); 1440Sstevel@tonic-gate 1450Sstevel@tonic-gate return (status); 1460Sstevel@tonic-gate } 1470Sstevel@tonic-gate 1480Sstevel@tonic-gate void 1490Sstevel@tonic-gate kmem_cache_walk_fini(mdb_walk_state_t *wsp) 1500Sstevel@tonic-gate { 1510Sstevel@tonic-gate kmem_cache_walk_t *kcw = wsp->walk_data; 1520Sstevel@tonic-gate mdb_free(kcw, sizeof (kmem_cache_walk_t)); 1530Sstevel@tonic-gate } 1540Sstevel@tonic-gate 1550Sstevel@tonic-gate int 1560Sstevel@tonic-gate kmem_cpu_cache_walk_init(mdb_walk_state_t *wsp) 1570Sstevel@tonic-gate { 1580Sstevel@tonic-gate if (wsp->walk_addr == NULL) { 1590Sstevel@tonic-gate mdb_warn("kmem_cpu_cache doesn't support global walks"); 1600Sstevel@tonic-gate return (WALK_ERR); 1610Sstevel@tonic-gate } 1620Sstevel@tonic-gate 1630Sstevel@tonic-gate if (mdb_layered_walk("cpu", wsp) == -1) { 1640Sstevel@tonic-gate mdb_warn("couldn't walk 'cpu'"); 1650Sstevel@tonic-gate return (WALK_ERR); 1660Sstevel@tonic-gate } 1670Sstevel@tonic-gate 1680Sstevel@tonic-gate wsp->walk_data = (void *)wsp->walk_addr; 1690Sstevel@tonic-gate 1700Sstevel@tonic-gate return (WALK_NEXT); 1710Sstevel@tonic-gate } 1720Sstevel@tonic-gate 1730Sstevel@tonic-gate int 1740Sstevel@tonic-gate kmem_cpu_cache_walk_step(mdb_walk_state_t *wsp) 1750Sstevel@tonic-gate { 1760Sstevel@tonic-gate uintptr_t caddr = (uintptr_t)wsp->walk_data; 1770Sstevel@tonic-gate const cpu_t *cpu = wsp->walk_layer; 1780Sstevel@tonic-gate kmem_cpu_cache_t cc; 1790Sstevel@tonic-gate 1800Sstevel@tonic-gate caddr += cpu->cpu_cache_offset; 1810Sstevel@tonic-gate 1820Sstevel@tonic-gate if (mdb_vread(&cc, sizeof (kmem_cpu_cache_t), caddr) == -1) { 1830Sstevel@tonic-gate mdb_warn("couldn't read kmem_cpu_cache at %p", caddr); 1840Sstevel@tonic-gate return (WALK_ERR); 1850Sstevel@tonic-gate } 1860Sstevel@tonic-gate 1870Sstevel@tonic-gate return (wsp->walk_callback(caddr, &cc, wsp->walk_cbdata)); 1880Sstevel@tonic-gate } 1890Sstevel@tonic-gate 1900Sstevel@tonic-gate int 1910Sstevel@tonic-gate kmem_slab_walk_init(mdb_walk_state_t *wsp) 1920Sstevel@tonic-gate { 1930Sstevel@tonic-gate uintptr_t caddr = wsp->walk_addr; 1940Sstevel@tonic-gate kmem_cache_t c; 1950Sstevel@tonic-gate 1960Sstevel@tonic-gate if (caddr == NULL) { 1970Sstevel@tonic-gate mdb_warn("kmem_slab doesn't support global walks\n"); 1980Sstevel@tonic-gate return (WALK_ERR); 1990Sstevel@tonic-gate } 2000Sstevel@tonic-gate 2010Sstevel@tonic-gate if (mdb_vread(&c, sizeof (c), caddr) == -1) { 2020Sstevel@tonic-gate mdb_warn("couldn't read kmem_cache at %p", caddr); 2030Sstevel@tonic-gate return (WALK_ERR); 2040Sstevel@tonic-gate } 2050Sstevel@tonic-gate 2060Sstevel@tonic-gate wsp->walk_data = 2070Sstevel@tonic-gate (void *)(caddr + offsetof(kmem_cache_t, cache_nullslab)); 2080Sstevel@tonic-gate wsp->walk_addr = (uintptr_t)c.cache_nullslab.slab_next; 2090Sstevel@tonic-gate 2100Sstevel@tonic-gate return (WALK_NEXT); 2110Sstevel@tonic-gate } 2120Sstevel@tonic-gate 2130Sstevel@tonic-gate int 2140Sstevel@tonic-gate kmem_slab_walk_partial_init(mdb_walk_state_t *wsp) 2150Sstevel@tonic-gate { 2160Sstevel@tonic-gate uintptr_t caddr = wsp->walk_addr; 2170Sstevel@tonic-gate kmem_cache_t c; 2180Sstevel@tonic-gate 2190Sstevel@tonic-gate if (caddr == NULL) { 2200Sstevel@tonic-gate mdb_warn("kmem_slab_partial doesn't support global walks\n"); 2210Sstevel@tonic-gate return (WALK_ERR); 2220Sstevel@tonic-gate } 2230Sstevel@tonic-gate 2240Sstevel@tonic-gate if (mdb_vread(&c, sizeof (c), caddr) == -1) { 2250Sstevel@tonic-gate mdb_warn("couldn't read kmem_cache at %p", caddr); 2260Sstevel@tonic-gate return (WALK_ERR); 2270Sstevel@tonic-gate } 2280Sstevel@tonic-gate 2290Sstevel@tonic-gate wsp->walk_data = 2300Sstevel@tonic-gate (void *)(caddr + offsetof(kmem_cache_t, cache_nullslab)); 2310Sstevel@tonic-gate wsp->walk_addr = (uintptr_t)c.cache_freelist; 2320Sstevel@tonic-gate 2330Sstevel@tonic-gate /* 2340Sstevel@tonic-gate * Some consumers (umem_walk_step(), in particular) require at 2350Sstevel@tonic-gate * least one callback if there are any buffers in the cache. So 2360Sstevel@tonic-gate * if there are *no* partial slabs, report the last full slab, if 2370Sstevel@tonic-gate * any. 2380Sstevel@tonic-gate * 2390Sstevel@tonic-gate * Yes, this is ugly, but it's cleaner than the other possibilities. 2400Sstevel@tonic-gate */ 2410Sstevel@tonic-gate if ((uintptr_t)wsp->walk_data == wsp->walk_addr) 2420Sstevel@tonic-gate wsp->walk_addr = (uintptr_t)c.cache_nullslab.slab_prev; 2430Sstevel@tonic-gate 2440Sstevel@tonic-gate return (WALK_NEXT); 2450Sstevel@tonic-gate } 2460Sstevel@tonic-gate 2470Sstevel@tonic-gate int 2480Sstevel@tonic-gate kmem_slab_walk_step(mdb_walk_state_t *wsp) 2490Sstevel@tonic-gate { 2500Sstevel@tonic-gate kmem_slab_t s; 2510Sstevel@tonic-gate uintptr_t addr = wsp->walk_addr; 2520Sstevel@tonic-gate uintptr_t saddr = (uintptr_t)wsp->walk_data; 2530Sstevel@tonic-gate uintptr_t caddr = saddr - offsetof(kmem_cache_t, cache_nullslab); 2540Sstevel@tonic-gate 2550Sstevel@tonic-gate if (addr == saddr) 2560Sstevel@tonic-gate return (WALK_DONE); 2570Sstevel@tonic-gate 2580Sstevel@tonic-gate if (mdb_vread(&s, sizeof (s), addr) == -1) { 2590Sstevel@tonic-gate mdb_warn("failed to read slab at %p", wsp->walk_addr); 2600Sstevel@tonic-gate return (WALK_ERR); 2610Sstevel@tonic-gate } 2620Sstevel@tonic-gate 2630Sstevel@tonic-gate if ((uintptr_t)s.slab_cache != caddr) { 2640Sstevel@tonic-gate mdb_warn("slab %p isn't in cache %p (in cache %p)\n", 2650Sstevel@tonic-gate addr, caddr, s.slab_cache); 2660Sstevel@tonic-gate return (WALK_ERR); 2670Sstevel@tonic-gate } 2680Sstevel@tonic-gate 2690Sstevel@tonic-gate wsp->walk_addr = (uintptr_t)s.slab_next; 2700Sstevel@tonic-gate 2710Sstevel@tonic-gate return (wsp->walk_callback(addr, &s, wsp->walk_cbdata)); 2720Sstevel@tonic-gate } 2730Sstevel@tonic-gate 2740Sstevel@tonic-gate int 2750Sstevel@tonic-gate kmem_cache(uintptr_t addr, uint_t flags, int ac, const mdb_arg_t *argv) 2760Sstevel@tonic-gate { 2770Sstevel@tonic-gate kmem_cache_t c; 2780Sstevel@tonic-gate 2790Sstevel@tonic-gate if (!(flags & DCMD_ADDRSPEC)) { 2800Sstevel@tonic-gate if (mdb_walk_dcmd("kmem_cache", "kmem_cache", ac, argv) == -1) { 2810Sstevel@tonic-gate mdb_warn("can't walk kmem_cache"); 2820Sstevel@tonic-gate return (DCMD_ERR); 2830Sstevel@tonic-gate } 2840Sstevel@tonic-gate return (DCMD_OK); 2850Sstevel@tonic-gate } 2860Sstevel@tonic-gate 2870Sstevel@tonic-gate if (DCMD_HDRSPEC(flags)) 2880Sstevel@tonic-gate mdb_printf("%-?s %-25s %4s %6s %8s %8s\n", "ADDR", "NAME", 2890Sstevel@tonic-gate "FLAG", "CFLAG", "BUFSIZE", "BUFTOTL"); 2900Sstevel@tonic-gate 2910Sstevel@tonic-gate if (mdb_vread(&c, sizeof (c), addr) == -1) { 2920Sstevel@tonic-gate mdb_warn("couldn't read kmem_cache at %p", addr); 2930Sstevel@tonic-gate return (DCMD_ERR); 2940Sstevel@tonic-gate } 2950Sstevel@tonic-gate 2960Sstevel@tonic-gate mdb_printf("%0?p %-25s %04x %06x %8ld %8lld\n", addr, c.cache_name, 2970Sstevel@tonic-gate c.cache_flags, c.cache_cflags, c.cache_bufsize, c.cache_buftotal); 2980Sstevel@tonic-gate 2990Sstevel@tonic-gate return (DCMD_OK); 3000Sstevel@tonic-gate } 3010Sstevel@tonic-gate 3020Sstevel@tonic-gate static int 3030Sstevel@tonic-gate addrcmp(const void *lhs, const void *rhs) 3040Sstevel@tonic-gate { 3050Sstevel@tonic-gate uintptr_t p1 = *((uintptr_t *)lhs); 3060Sstevel@tonic-gate uintptr_t p2 = *((uintptr_t *)rhs); 3070Sstevel@tonic-gate 3080Sstevel@tonic-gate if (p1 < p2) 3090Sstevel@tonic-gate return (-1); 3100Sstevel@tonic-gate if (p1 > p2) 3110Sstevel@tonic-gate return (1); 3120Sstevel@tonic-gate return (0); 3130Sstevel@tonic-gate } 3140Sstevel@tonic-gate 3150Sstevel@tonic-gate static int 3160Sstevel@tonic-gate bufctlcmp(const kmem_bufctl_audit_t **lhs, const kmem_bufctl_audit_t **rhs) 3170Sstevel@tonic-gate { 3180Sstevel@tonic-gate const kmem_bufctl_audit_t *bcp1 = *lhs; 3190Sstevel@tonic-gate const kmem_bufctl_audit_t *bcp2 = *rhs; 3200Sstevel@tonic-gate 3210Sstevel@tonic-gate if (bcp1->bc_timestamp > bcp2->bc_timestamp) 3220Sstevel@tonic-gate return (-1); 3230Sstevel@tonic-gate 3240Sstevel@tonic-gate if (bcp1->bc_timestamp < bcp2->bc_timestamp) 3250Sstevel@tonic-gate return (1); 3260Sstevel@tonic-gate 3270Sstevel@tonic-gate return (0); 3280Sstevel@tonic-gate } 3290Sstevel@tonic-gate 3300Sstevel@tonic-gate typedef struct kmem_hash_walk { 3310Sstevel@tonic-gate uintptr_t *kmhw_table; 3320Sstevel@tonic-gate size_t kmhw_nelems; 3330Sstevel@tonic-gate size_t kmhw_pos; 3340Sstevel@tonic-gate kmem_bufctl_t kmhw_cur; 3350Sstevel@tonic-gate } kmem_hash_walk_t; 3360Sstevel@tonic-gate 3370Sstevel@tonic-gate int 3380Sstevel@tonic-gate kmem_hash_walk_init(mdb_walk_state_t *wsp) 3390Sstevel@tonic-gate { 3400Sstevel@tonic-gate kmem_hash_walk_t *kmhw; 3410Sstevel@tonic-gate uintptr_t *hash; 3420Sstevel@tonic-gate kmem_cache_t c; 3430Sstevel@tonic-gate uintptr_t haddr, addr = wsp->walk_addr; 3440Sstevel@tonic-gate size_t nelems; 3450Sstevel@tonic-gate size_t hsize; 3460Sstevel@tonic-gate 3470Sstevel@tonic-gate if (addr == NULL) { 3480Sstevel@tonic-gate mdb_warn("kmem_hash doesn't support global walks\n"); 3490Sstevel@tonic-gate return (WALK_ERR); 3500Sstevel@tonic-gate } 3510Sstevel@tonic-gate 3520Sstevel@tonic-gate if (mdb_vread(&c, sizeof (c), addr) == -1) { 3530Sstevel@tonic-gate mdb_warn("couldn't read cache at addr %p", addr); 3540Sstevel@tonic-gate return (WALK_ERR); 3550Sstevel@tonic-gate } 3560Sstevel@tonic-gate 3570Sstevel@tonic-gate if (!(c.cache_flags & KMF_HASH)) { 3580Sstevel@tonic-gate mdb_warn("cache %p doesn't have a hash table\n", addr); 3590Sstevel@tonic-gate return (WALK_DONE); /* nothing to do */ 3600Sstevel@tonic-gate } 3610Sstevel@tonic-gate 3620Sstevel@tonic-gate kmhw = mdb_zalloc(sizeof (kmem_hash_walk_t), UM_SLEEP); 3630Sstevel@tonic-gate kmhw->kmhw_cur.bc_next = NULL; 3640Sstevel@tonic-gate kmhw->kmhw_pos = 0; 3650Sstevel@tonic-gate 3660Sstevel@tonic-gate kmhw->kmhw_nelems = nelems = c.cache_hash_mask + 1; 3670Sstevel@tonic-gate hsize = nelems * sizeof (uintptr_t); 3680Sstevel@tonic-gate haddr = (uintptr_t)c.cache_hash_table; 3690Sstevel@tonic-gate 3700Sstevel@tonic-gate kmhw->kmhw_table = hash = mdb_alloc(hsize, UM_SLEEP); 3710Sstevel@tonic-gate if (mdb_vread(hash, hsize, haddr) == -1) { 3720Sstevel@tonic-gate mdb_warn("failed to read hash table at %p", haddr); 3730Sstevel@tonic-gate mdb_free(hash, hsize); 3740Sstevel@tonic-gate mdb_free(kmhw, sizeof (kmem_hash_walk_t)); 3750Sstevel@tonic-gate return (WALK_ERR); 3760Sstevel@tonic-gate } 3770Sstevel@tonic-gate 3780Sstevel@tonic-gate wsp->walk_data = kmhw; 3790Sstevel@tonic-gate 3800Sstevel@tonic-gate return (WALK_NEXT); 3810Sstevel@tonic-gate } 3820Sstevel@tonic-gate 3830Sstevel@tonic-gate int 3840Sstevel@tonic-gate kmem_hash_walk_step(mdb_walk_state_t *wsp) 3850Sstevel@tonic-gate { 3860Sstevel@tonic-gate kmem_hash_walk_t *kmhw = wsp->walk_data; 3870Sstevel@tonic-gate uintptr_t addr = NULL; 3880Sstevel@tonic-gate 3890Sstevel@tonic-gate if ((addr = (uintptr_t)kmhw->kmhw_cur.bc_next) == NULL) { 3900Sstevel@tonic-gate while (kmhw->kmhw_pos < kmhw->kmhw_nelems) { 3910Sstevel@tonic-gate if ((addr = kmhw->kmhw_table[kmhw->kmhw_pos++]) != NULL) 3920Sstevel@tonic-gate break; 3930Sstevel@tonic-gate } 3940Sstevel@tonic-gate } 3950Sstevel@tonic-gate if (addr == NULL) 3960Sstevel@tonic-gate return (WALK_DONE); 3970Sstevel@tonic-gate 3980Sstevel@tonic-gate if (mdb_vread(&kmhw->kmhw_cur, sizeof (kmem_bufctl_t), addr) == -1) { 3990Sstevel@tonic-gate mdb_warn("couldn't read kmem_bufctl_t at addr %p", addr); 4000Sstevel@tonic-gate return (WALK_ERR); 4010Sstevel@tonic-gate } 4020Sstevel@tonic-gate 4030Sstevel@tonic-gate return (wsp->walk_callback(addr, &kmhw->kmhw_cur, wsp->walk_cbdata)); 4040Sstevel@tonic-gate } 4050Sstevel@tonic-gate 4060Sstevel@tonic-gate void 4070Sstevel@tonic-gate kmem_hash_walk_fini(mdb_walk_state_t *wsp) 4080Sstevel@tonic-gate { 4090Sstevel@tonic-gate kmem_hash_walk_t *kmhw = wsp->walk_data; 4100Sstevel@tonic-gate 4110Sstevel@tonic-gate if (kmhw == NULL) 4120Sstevel@tonic-gate return; 4130Sstevel@tonic-gate 4140Sstevel@tonic-gate mdb_free(kmhw->kmhw_table, kmhw->kmhw_nelems * sizeof (uintptr_t)); 4150Sstevel@tonic-gate mdb_free(kmhw, sizeof (kmem_hash_walk_t)); 4160Sstevel@tonic-gate } 4170Sstevel@tonic-gate 4180Sstevel@tonic-gate /* 4190Sstevel@tonic-gate * Find the address of the bufctl structure for the address 'buf' in cache 4200Sstevel@tonic-gate * 'cp', which is at address caddr, and place it in *out. 4210Sstevel@tonic-gate */ 4220Sstevel@tonic-gate static int 4230Sstevel@tonic-gate kmem_hash_lookup(kmem_cache_t *cp, uintptr_t caddr, void *buf, uintptr_t *out) 4240Sstevel@tonic-gate { 4250Sstevel@tonic-gate uintptr_t bucket = (uintptr_t)KMEM_HASH(cp, buf); 4260Sstevel@tonic-gate kmem_bufctl_t *bcp; 4270Sstevel@tonic-gate kmem_bufctl_t bc; 4280Sstevel@tonic-gate 4290Sstevel@tonic-gate if (mdb_vread(&bcp, sizeof (kmem_bufctl_t *), bucket) == -1) { 4300Sstevel@tonic-gate mdb_warn("unable to read hash bucket for %p in cache %p", 4310Sstevel@tonic-gate buf, caddr); 4320Sstevel@tonic-gate return (-1); 4330Sstevel@tonic-gate } 4340Sstevel@tonic-gate 4350Sstevel@tonic-gate while (bcp != NULL) { 4360Sstevel@tonic-gate if (mdb_vread(&bc, sizeof (kmem_bufctl_t), 4370Sstevel@tonic-gate (uintptr_t)bcp) == -1) { 4380Sstevel@tonic-gate mdb_warn("unable to read bufctl at %p", bcp); 4390Sstevel@tonic-gate return (-1); 4400Sstevel@tonic-gate } 4410Sstevel@tonic-gate if (bc.bc_addr == buf) { 4420Sstevel@tonic-gate *out = (uintptr_t)bcp; 4430Sstevel@tonic-gate return (0); 4440Sstevel@tonic-gate } 4450Sstevel@tonic-gate bcp = bc.bc_next; 4460Sstevel@tonic-gate } 4470Sstevel@tonic-gate 4480Sstevel@tonic-gate mdb_warn("unable to find bufctl for %p in cache %p\n", buf, caddr); 4490Sstevel@tonic-gate return (-1); 4500Sstevel@tonic-gate } 4510Sstevel@tonic-gate 4520Sstevel@tonic-gate int 4530Sstevel@tonic-gate kmem_get_magsize(const kmem_cache_t *cp) 4540Sstevel@tonic-gate { 4550Sstevel@tonic-gate uintptr_t addr = (uintptr_t)cp->cache_magtype; 4560Sstevel@tonic-gate GElf_Sym mt_sym; 4570Sstevel@tonic-gate kmem_magtype_t mt; 4580Sstevel@tonic-gate int res; 4590Sstevel@tonic-gate 4600Sstevel@tonic-gate /* 4610Sstevel@tonic-gate * if cpu 0 has a non-zero magsize, it must be correct. caches 4620Sstevel@tonic-gate * with KMF_NOMAGAZINE have disabled their magazine layers, so 4630Sstevel@tonic-gate * it is okay to return 0 for them. 4640Sstevel@tonic-gate */ 4650Sstevel@tonic-gate if ((res = cp->cache_cpu[0].cc_magsize) != 0 || 4660Sstevel@tonic-gate (cp->cache_flags & KMF_NOMAGAZINE)) 4670Sstevel@tonic-gate return (res); 4680Sstevel@tonic-gate 4690Sstevel@tonic-gate if (mdb_lookup_by_name("kmem_magtype", &mt_sym) == -1) { 4700Sstevel@tonic-gate mdb_warn("unable to read 'kmem_magtype'"); 4710Sstevel@tonic-gate } else if (addr < mt_sym.st_value || 4720Sstevel@tonic-gate addr + sizeof (mt) - 1 > mt_sym.st_value + mt_sym.st_size - 1 || 4730Sstevel@tonic-gate ((addr - mt_sym.st_value) % sizeof (mt)) != 0) { 4740Sstevel@tonic-gate mdb_warn("cache '%s' has invalid magtype pointer (%p)\n", 4750Sstevel@tonic-gate cp->cache_name, addr); 4760Sstevel@tonic-gate return (0); 4770Sstevel@tonic-gate } 4780Sstevel@tonic-gate if (mdb_vread(&mt, sizeof (mt), addr) == -1) { 4790Sstevel@tonic-gate mdb_warn("unable to read magtype at %a", addr); 4800Sstevel@tonic-gate return (0); 4810Sstevel@tonic-gate } 4820Sstevel@tonic-gate return (mt.mt_magsize); 4830Sstevel@tonic-gate } 4840Sstevel@tonic-gate 4850Sstevel@tonic-gate /*ARGSUSED*/ 4860Sstevel@tonic-gate static int 4870Sstevel@tonic-gate kmem_estimate_slab(uintptr_t addr, const kmem_slab_t *sp, size_t *est) 4880Sstevel@tonic-gate { 4890Sstevel@tonic-gate *est -= (sp->slab_chunks - sp->slab_refcnt); 4900Sstevel@tonic-gate 4910Sstevel@tonic-gate return (WALK_NEXT); 4920Sstevel@tonic-gate } 4930Sstevel@tonic-gate 4940Sstevel@tonic-gate /* 4950Sstevel@tonic-gate * Returns an upper bound on the number of allocated buffers in a given 4960Sstevel@tonic-gate * cache. 4970Sstevel@tonic-gate */ 4980Sstevel@tonic-gate size_t 4990Sstevel@tonic-gate kmem_estimate_allocated(uintptr_t addr, const kmem_cache_t *cp) 5000Sstevel@tonic-gate { 5010Sstevel@tonic-gate int magsize; 5020Sstevel@tonic-gate size_t cache_est; 5030Sstevel@tonic-gate 5040Sstevel@tonic-gate cache_est = cp->cache_buftotal; 5050Sstevel@tonic-gate 5060Sstevel@tonic-gate (void) mdb_pwalk("kmem_slab_partial", 5070Sstevel@tonic-gate (mdb_walk_cb_t)kmem_estimate_slab, &cache_est, addr); 5080Sstevel@tonic-gate 5090Sstevel@tonic-gate if ((magsize = kmem_get_magsize(cp)) != 0) { 5100Sstevel@tonic-gate size_t mag_est = cp->cache_full.ml_total * magsize; 5110Sstevel@tonic-gate 5120Sstevel@tonic-gate if (cache_est >= mag_est) { 5130Sstevel@tonic-gate cache_est -= mag_est; 5140Sstevel@tonic-gate } else { 5150Sstevel@tonic-gate mdb_warn("cache %p's magazine layer holds more buffers " 5160Sstevel@tonic-gate "than the slab layer.\n", addr); 5170Sstevel@tonic-gate } 5180Sstevel@tonic-gate } 5190Sstevel@tonic-gate return (cache_est); 5200Sstevel@tonic-gate } 5210Sstevel@tonic-gate 5220Sstevel@tonic-gate #define READMAG_ROUNDS(rounds) { \ 5230Sstevel@tonic-gate if (mdb_vread(mp, magbsize, (uintptr_t)kmp) == -1) { \ 5240Sstevel@tonic-gate mdb_warn("couldn't read magazine at %p", kmp); \ 5250Sstevel@tonic-gate goto fail; \ 5260Sstevel@tonic-gate } \ 5270Sstevel@tonic-gate for (i = 0; i < rounds; i++) { \ 5280Sstevel@tonic-gate maglist[magcnt++] = mp->mag_round[i]; \ 5290Sstevel@tonic-gate if (magcnt == magmax) { \ 5300Sstevel@tonic-gate mdb_warn("%d magazines exceeds fudge factor\n", \ 5310Sstevel@tonic-gate magcnt); \ 5320Sstevel@tonic-gate goto fail; \ 5330Sstevel@tonic-gate } \ 5340Sstevel@tonic-gate } \ 5350Sstevel@tonic-gate } 5360Sstevel@tonic-gate 5370Sstevel@tonic-gate int 5380Sstevel@tonic-gate kmem_read_magazines(kmem_cache_t *cp, uintptr_t addr, int ncpus, 5390Sstevel@tonic-gate void ***maglistp, size_t *magcntp, size_t *magmaxp, int alloc_flags) 5400Sstevel@tonic-gate { 5410Sstevel@tonic-gate kmem_magazine_t *kmp, *mp; 5420Sstevel@tonic-gate void **maglist = NULL; 5430Sstevel@tonic-gate int i, cpu; 5440Sstevel@tonic-gate size_t magsize, magmax, magbsize; 5450Sstevel@tonic-gate size_t magcnt = 0; 5460Sstevel@tonic-gate 5470Sstevel@tonic-gate /* 5480Sstevel@tonic-gate * Read the magtype out of the cache, after verifying the pointer's 5490Sstevel@tonic-gate * correctness. 5500Sstevel@tonic-gate */ 5510Sstevel@tonic-gate magsize = kmem_get_magsize(cp); 552*1528Sjwadams if (magsize == 0) { 553*1528Sjwadams *maglistp = NULL; 554*1528Sjwadams *magcntp = 0; 555*1528Sjwadams *magmaxp = 0; 556*1528Sjwadams return (WALK_NEXT); 557*1528Sjwadams } 5580Sstevel@tonic-gate 5590Sstevel@tonic-gate /* 5600Sstevel@tonic-gate * There are several places where we need to go buffer hunting: 5610Sstevel@tonic-gate * the per-CPU loaded magazine, the per-CPU spare full magazine, 5620Sstevel@tonic-gate * and the full magazine list in the depot. 5630Sstevel@tonic-gate * 5640Sstevel@tonic-gate * For an upper bound on the number of buffers in the magazine 5650Sstevel@tonic-gate * layer, we have the number of magazines on the cache_full 5660Sstevel@tonic-gate * list plus at most two magazines per CPU (the loaded and the 5670Sstevel@tonic-gate * spare). Toss in 100 magazines as a fudge factor in case this 5680Sstevel@tonic-gate * is live (the number "100" comes from the same fudge factor in 5690Sstevel@tonic-gate * crash(1M)). 5700Sstevel@tonic-gate */ 5710Sstevel@tonic-gate magmax = (cp->cache_full.ml_total + 2 * ncpus + 100) * magsize; 5720Sstevel@tonic-gate magbsize = offsetof(kmem_magazine_t, mag_round[magsize]); 5730Sstevel@tonic-gate 5740Sstevel@tonic-gate if (magbsize >= PAGESIZE / 2) { 5750Sstevel@tonic-gate mdb_warn("magazine size for cache %p unreasonable (%x)\n", 5760Sstevel@tonic-gate addr, magbsize); 577*1528Sjwadams return (WALK_ERR); 5780Sstevel@tonic-gate } 5790Sstevel@tonic-gate 5800Sstevel@tonic-gate maglist = mdb_alloc(magmax * sizeof (void *), alloc_flags); 5810Sstevel@tonic-gate mp = mdb_alloc(magbsize, alloc_flags); 5820Sstevel@tonic-gate if (mp == NULL || maglist == NULL) 5830Sstevel@tonic-gate goto fail; 5840Sstevel@tonic-gate 5850Sstevel@tonic-gate /* 5860Sstevel@tonic-gate * First up: the magazines in the depot (i.e. on the cache_full list). 5870Sstevel@tonic-gate */ 5880Sstevel@tonic-gate for (kmp = cp->cache_full.ml_list; kmp != NULL; ) { 5890Sstevel@tonic-gate READMAG_ROUNDS(magsize); 5900Sstevel@tonic-gate kmp = mp->mag_next; 5910Sstevel@tonic-gate 5920Sstevel@tonic-gate if (kmp == cp->cache_full.ml_list) 5930Sstevel@tonic-gate break; /* cache_full list loop detected */ 5940Sstevel@tonic-gate } 5950Sstevel@tonic-gate 5960Sstevel@tonic-gate dprintf(("cache_full list done\n")); 5970Sstevel@tonic-gate 5980Sstevel@tonic-gate /* 5990Sstevel@tonic-gate * Now whip through the CPUs, snagging the loaded magazines 6000Sstevel@tonic-gate * and full spares. 6010Sstevel@tonic-gate */ 6020Sstevel@tonic-gate for (cpu = 0; cpu < ncpus; cpu++) { 6030Sstevel@tonic-gate kmem_cpu_cache_t *ccp = &cp->cache_cpu[cpu]; 6040Sstevel@tonic-gate 6050Sstevel@tonic-gate dprintf(("reading cpu cache %p\n", 6060Sstevel@tonic-gate (uintptr_t)ccp - (uintptr_t)cp + addr)); 6070Sstevel@tonic-gate 6080Sstevel@tonic-gate if (ccp->cc_rounds > 0 && 6090Sstevel@tonic-gate (kmp = ccp->cc_loaded) != NULL) { 6100Sstevel@tonic-gate dprintf(("reading %d loaded rounds\n", ccp->cc_rounds)); 6110Sstevel@tonic-gate READMAG_ROUNDS(ccp->cc_rounds); 6120Sstevel@tonic-gate } 6130Sstevel@tonic-gate 6140Sstevel@tonic-gate if (ccp->cc_prounds > 0 && 6150Sstevel@tonic-gate (kmp = ccp->cc_ploaded) != NULL) { 6160Sstevel@tonic-gate dprintf(("reading %d previously loaded rounds\n", 6170Sstevel@tonic-gate ccp->cc_prounds)); 6180Sstevel@tonic-gate READMAG_ROUNDS(ccp->cc_prounds); 6190Sstevel@tonic-gate } 6200Sstevel@tonic-gate } 6210Sstevel@tonic-gate 6220Sstevel@tonic-gate dprintf(("magazine layer: %d buffers\n", magcnt)); 6230Sstevel@tonic-gate 6240Sstevel@tonic-gate if (!(alloc_flags & UM_GC)) 6250Sstevel@tonic-gate mdb_free(mp, magbsize); 6260Sstevel@tonic-gate 6270Sstevel@tonic-gate *maglistp = maglist; 6280Sstevel@tonic-gate *magcntp = magcnt; 6290Sstevel@tonic-gate *magmaxp = magmax; 6300Sstevel@tonic-gate 6310Sstevel@tonic-gate return (WALK_NEXT); 6320Sstevel@tonic-gate 6330Sstevel@tonic-gate fail: 6340Sstevel@tonic-gate if (!(alloc_flags & UM_GC)) { 6350Sstevel@tonic-gate if (mp) 6360Sstevel@tonic-gate mdb_free(mp, magbsize); 6370Sstevel@tonic-gate if (maglist) 6380Sstevel@tonic-gate mdb_free(maglist, magmax * sizeof (void *)); 6390Sstevel@tonic-gate } 6400Sstevel@tonic-gate return (WALK_ERR); 6410Sstevel@tonic-gate } 6420Sstevel@tonic-gate 6430Sstevel@tonic-gate static int 6440Sstevel@tonic-gate kmem_walk_callback(mdb_walk_state_t *wsp, uintptr_t buf) 6450Sstevel@tonic-gate { 6460Sstevel@tonic-gate return (wsp->walk_callback(buf, NULL, wsp->walk_cbdata)); 6470Sstevel@tonic-gate } 6480Sstevel@tonic-gate 6490Sstevel@tonic-gate static int 6500Sstevel@tonic-gate bufctl_walk_callback(kmem_cache_t *cp, mdb_walk_state_t *wsp, uintptr_t buf) 6510Sstevel@tonic-gate { 6520Sstevel@tonic-gate kmem_bufctl_audit_t b; 6530Sstevel@tonic-gate 6540Sstevel@tonic-gate /* 6550Sstevel@tonic-gate * if KMF_AUDIT is not set, we know that we're looking at a 6560Sstevel@tonic-gate * kmem_bufctl_t. 6570Sstevel@tonic-gate */ 6580Sstevel@tonic-gate if (!(cp->cache_flags & KMF_AUDIT) || 6590Sstevel@tonic-gate mdb_vread(&b, sizeof (kmem_bufctl_audit_t), buf) == -1) { 6600Sstevel@tonic-gate (void) memset(&b, 0, sizeof (b)); 6610Sstevel@tonic-gate if (mdb_vread(&b, sizeof (kmem_bufctl_t), buf) == -1) { 6620Sstevel@tonic-gate mdb_warn("unable to read bufctl at %p", buf); 6630Sstevel@tonic-gate return (WALK_ERR); 6640Sstevel@tonic-gate } 6650Sstevel@tonic-gate } 6660Sstevel@tonic-gate 6670Sstevel@tonic-gate return (wsp->walk_callback(buf, &b, wsp->walk_cbdata)); 6680Sstevel@tonic-gate } 6690Sstevel@tonic-gate 6700Sstevel@tonic-gate typedef struct kmem_walk { 6710Sstevel@tonic-gate int kmw_type; 6720Sstevel@tonic-gate 6730Sstevel@tonic-gate int kmw_addr; /* cache address */ 6740Sstevel@tonic-gate kmem_cache_t *kmw_cp; 6750Sstevel@tonic-gate size_t kmw_csize; 6760Sstevel@tonic-gate 6770Sstevel@tonic-gate /* 6780Sstevel@tonic-gate * magazine layer 6790Sstevel@tonic-gate */ 6800Sstevel@tonic-gate void **kmw_maglist; 6810Sstevel@tonic-gate size_t kmw_max; 6820Sstevel@tonic-gate size_t kmw_count; 6830Sstevel@tonic-gate size_t kmw_pos; 6840Sstevel@tonic-gate 6850Sstevel@tonic-gate /* 6860Sstevel@tonic-gate * slab layer 6870Sstevel@tonic-gate */ 6880Sstevel@tonic-gate char *kmw_valid; /* to keep track of freed buffers */ 6890Sstevel@tonic-gate char *kmw_ubase; /* buffer for slab data */ 6900Sstevel@tonic-gate } kmem_walk_t; 6910Sstevel@tonic-gate 6920Sstevel@tonic-gate static int 6930Sstevel@tonic-gate kmem_walk_init_common(mdb_walk_state_t *wsp, int type) 6940Sstevel@tonic-gate { 6950Sstevel@tonic-gate kmem_walk_t *kmw; 6960Sstevel@tonic-gate int ncpus, csize; 6970Sstevel@tonic-gate kmem_cache_t *cp; 698*1528Sjwadams size_t vm_quantum; 6990Sstevel@tonic-gate 7000Sstevel@tonic-gate size_t magmax, magcnt; 7010Sstevel@tonic-gate void **maglist = NULL; 7020Sstevel@tonic-gate uint_t chunksize, slabsize; 7030Sstevel@tonic-gate int status = WALK_ERR; 7040Sstevel@tonic-gate uintptr_t addr = wsp->walk_addr; 7050Sstevel@tonic-gate const char *layered; 7060Sstevel@tonic-gate 7070Sstevel@tonic-gate type &= ~KM_HASH; 7080Sstevel@tonic-gate 7090Sstevel@tonic-gate if (addr == NULL) { 7100Sstevel@tonic-gate mdb_warn("kmem walk doesn't support global walks\n"); 7110Sstevel@tonic-gate return (WALK_ERR); 7120Sstevel@tonic-gate } 7130Sstevel@tonic-gate 7140Sstevel@tonic-gate dprintf(("walking %p\n", addr)); 7150Sstevel@tonic-gate 7160Sstevel@tonic-gate /* 7170Sstevel@tonic-gate * First we need to figure out how many CPUs are configured in the 7180Sstevel@tonic-gate * system to know how much to slurp out. 7190Sstevel@tonic-gate */ 7200Sstevel@tonic-gate mdb_readvar(&ncpus, "max_ncpus"); 7210Sstevel@tonic-gate 7220Sstevel@tonic-gate csize = KMEM_CACHE_SIZE(ncpus); 7230Sstevel@tonic-gate cp = mdb_alloc(csize, UM_SLEEP); 7240Sstevel@tonic-gate 7250Sstevel@tonic-gate if (mdb_vread(cp, csize, addr) == -1) { 7260Sstevel@tonic-gate mdb_warn("couldn't read cache at addr %p", addr); 7270Sstevel@tonic-gate goto out2; 7280Sstevel@tonic-gate } 7290Sstevel@tonic-gate 730*1528Sjwadams /* 731*1528Sjwadams * It's easy for someone to hand us an invalid cache address. 732*1528Sjwadams * Unfortunately, it is hard for this walker to survive an 733*1528Sjwadams * invalid cache cleanly. So we make sure that: 734*1528Sjwadams * 735*1528Sjwadams * 1. the vmem arena for the cache is readable, 736*1528Sjwadams * 2. the vmem arena's quantum is a power of 2, 737*1528Sjwadams * 3. our slabsize is a multiple of the quantum, and 738*1528Sjwadams * 4. our chunksize is >0 and less than our slabsize. 739*1528Sjwadams */ 740*1528Sjwadams if (mdb_vread(&vm_quantum, sizeof (vm_quantum), 741*1528Sjwadams (uintptr_t)&cp->cache_arena->vm_quantum) == -1 || 742*1528Sjwadams vm_quantum == 0 || 743*1528Sjwadams (vm_quantum & (vm_quantum - 1)) != 0 || 744*1528Sjwadams cp->cache_slabsize < vm_quantum || 745*1528Sjwadams P2PHASE(cp->cache_slabsize, vm_quantum) != 0 || 746*1528Sjwadams cp->cache_chunksize == 0 || 747*1528Sjwadams cp->cache_chunksize > cp->cache_slabsize) { 748*1528Sjwadams mdb_warn("%p is not a valid kmem_cache_t\n", addr); 749*1528Sjwadams goto out2; 750*1528Sjwadams } 751*1528Sjwadams 7520Sstevel@tonic-gate dprintf(("buf total is %d\n", cp->cache_buftotal)); 7530Sstevel@tonic-gate 7540Sstevel@tonic-gate if (cp->cache_buftotal == 0) { 7550Sstevel@tonic-gate mdb_free(cp, csize); 7560Sstevel@tonic-gate return (WALK_DONE); 7570Sstevel@tonic-gate } 7580Sstevel@tonic-gate 7590Sstevel@tonic-gate /* 7600Sstevel@tonic-gate * If they ask for bufctls, but it's a small-slab cache, 7610Sstevel@tonic-gate * there is nothing to report. 7620Sstevel@tonic-gate */ 7630Sstevel@tonic-gate if ((type & KM_BUFCTL) && !(cp->cache_flags & KMF_HASH)) { 7640Sstevel@tonic-gate dprintf(("bufctl requested, not KMF_HASH (flags: %p)\n", 7650Sstevel@tonic-gate cp->cache_flags)); 7660Sstevel@tonic-gate mdb_free(cp, csize); 7670Sstevel@tonic-gate return (WALK_DONE); 7680Sstevel@tonic-gate } 7690Sstevel@tonic-gate 7700Sstevel@tonic-gate /* 7710Sstevel@tonic-gate * If they want constructed buffers, but there's no constructor or 7720Sstevel@tonic-gate * the cache has DEADBEEF checking enabled, there is nothing to report. 7730Sstevel@tonic-gate */ 7740Sstevel@tonic-gate if ((type & KM_CONSTRUCTED) && (!(type & KM_FREE) || 7750Sstevel@tonic-gate cp->cache_constructor == NULL || 7760Sstevel@tonic-gate (cp->cache_flags & (KMF_DEADBEEF | KMF_LITE)) == KMF_DEADBEEF)) { 7770Sstevel@tonic-gate mdb_free(cp, csize); 7780Sstevel@tonic-gate return (WALK_DONE); 7790Sstevel@tonic-gate } 7800Sstevel@tonic-gate 7810Sstevel@tonic-gate /* 7820Sstevel@tonic-gate * Read in the contents of the magazine layer 7830Sstevel@tonic-gate */ 7840Sstevel@tonic-gate if (kmem_read_magazines(cp, addr, ncpus, &maglist, &magcnt, 7850Sstevel@tonic-gate &magmax, UM_SLEEP) == WALK_ERR) 7860Sstevel@tonic-gate goto out2; 7870Sstevel@tonic-gate 7880Sstevel@tonic-gate /* 7890Sstevel@tonic-gate * We have all of the buffers from the magazines; if we are walking 7900Sstevel@tonic-gate * allocated buffers, sort them so we can bsearch them later. 7910Sstevel@tonic-gate */ 7920Sstevel@tonic-gate if (type & KM_ALLOCATED) 7930Sstevel@tonic-gate qsort(maglist, magcnt, sizeof (void *), addrcmp); 7940Sstevel@tonic-gate 7950Sstevel@tonic-gate wsp->walk_data = kmw = mdb_zalloc(sizeof (kmem_walk_t), UM_SLEEP); 7960Sstevel@tonic-gate 7970Sstevel@tonic-gate kmw->kmw_type = type; 7980Sstevel@tonic-gate kmw->kmw_addr = addr; 7990Sstevel@tonic-gate kmw->kmw_cp = cp; 8000Sstevel@tonic-gate kmw->kmw_csize = csize; 8010Sstevel@tonic-gate kmw->kmw_maglist = maglist; 8020Sstevel@tonic-gate kmw->kmw_max = magmax; 8030Sstevel@tonic-gate kmw->kmw_count = magcnt; 8040Sstevel@tonic-gate kmw->kmw_pos = 0; 8050Sstevel@tonic-gate 8060Sstevel@tonic-gate /* 8070Sstevel@tonic-gate * When walking allocated buffers in a KMF_HASH cache, we walk the 8080Sstevel@tonic-gate * hash table instead of the slab layer. 8090Sstevel@tonic-gate */ 8100Sstevel@tonic-gate if ((cp->cache_flags & KMF_HASH) && (type & KM_ALLOCATED)) { 8110Sstevel@tonic-gate layered = "kmem_hash"; 8120Sstevel@tonic-gate 8130Sstevel@tonic-gate kmw->kmw_type |= KM_HASH; 8140Sstevel@tonic-gate } else { 8150Sstevel@tonic-gate /* 8160Sstevel@tonic-gate * If we are walking freed buffers, we only need the 8170Sstevel@tonic-gate * magazine layer plus the partially allocated slabs. 8180Sstevel@tonic-gate * To walk allocated buffers, we need all of the slabs. 8190Sstevel@tonic-gate */ 8200Sstevel@tonic-gate if (type & KM_ALLOCATED) 8210Sstevel@tonic-gate layered = "kmem_slab"; 8220Sstevel@tonic-gate else 8230Sstevel@tonic-gate layered = "kmem_slab_partial"; 8240Sstevel@tonic-gate 8250Sstevel@tonic-gate /* 8260Sstevel@tonic-gate * for small-slab caches, we read in the entire slab. For 8270Sstevel@tonic-gate * freed buffers, we can just walk the freelist. For 8280Sstevel@tonic-gate * allocated buffers, we use a 'valid' array to track 8290Sstevel@tonic-gate * the freed buffers. 8300Sstevel@tonic-gate */ 8310Sstevel@tonic-gate if (!(cp->cache_flags & KMF_HASH)) { 8320Sstevel@tonic-gate chunksize = cp->cache_chunksize; 8330Sstevel@tonic-gate slabsize = cp->cache_slabsize; 8340Sstevel@tonic-gate 8350Sstevel@tonic-gate kmw->kmw_ubase = mdb_alloc(slabsize + 8360Sstevel@tonic-gate sizeof (kmem_bufctl_t), UM_SLEEP); 8370Sstevel@tonic-gate 8380Sstevel@tonic-gate if (type & KM_ALLOCATED) 8390Sstevel@tonic-gate kmw->kmw_valid = 8400Sstevel@tonic-gate mdb_alloc(slabsize / chunksize, UM_SLEEP); 8410Sstevel@tonic-gate } 8420Sstevel@tonic-gate } 8430Sstevel@tonic-gate 8440Sstevel@tonic-gate status = WALK_NEXT; 8450Sstevel@tonic-gate 8460Sstevel@tonic-gate if (mdb_layered_walk(layered, wsp) == -1) { 8470Sstevel@tonic-gate mdb_warn("unable to start layered '%s' walk", layered); 8480Sstevel@tonic-gate status = WALK_ERR; 8490Sstevel@tonic-gate } 8500Sstevel@tonic-gate 8510Sstevel@tonic-gate out1: 8520Sstevel@tonic-gate if (status == WALK_ERR) { 8530Sstevel@tonic-gate if (kmw->kmw_valid) 8540Sstevel@tonic-gate mdb_free(kmw->kmw_valid, slabsize / chunksize); 8550Sstevel@tonic-gate 8560Sstevel@tonic-gate if (kmw->kmw_ubase) 8570Sstevel@tonic-gate mdb_free(kmw->kmw_ubase, slabsize + 8580Sstevel@tonic-gate sizeof (kmem_bufctl_t)); 8590Sstevel@tonic-gate 860*1528Sjwadams if (kmw->kmw_maglist) 861*1528Sjwadams mdb_free(kmw->kmw_maglist, 862*1528Sjwadams kmw->kmw_max * sizeof (uintptr_t)); 863*1528Sjwadams 8640Sstevel@tonic-gate mdb_free(kmw, sizeof (kmem_walk_t)); 8650Sstevel@tonic-gate wsp->walk_data = NULL; 8660Sstevel@tonic-gate } 8670Sstevel@tonic-gate 8680Sstevel@tonic-gate out2: 8690Sstevel@tonic-gate if (status == WALK_ERR) 8700Sstevel@tonic-gate mdb_free(cp, csize); 8710Sstevel@tonic-gate 8720Sstevel@tonic-gate return (status); 8730Sstevel@tonic-gate } 8740Sstevel@tonic-gate 8750Sstevel@tonic-gate int 8760Sstevel@tonic-gate kmem_walk_step(mdb_walk_state_t *wsp) 8770Sstevel@tonic-gate { 8780Sstevel@tonic-gate kmem_walk_t *kmw = wsp->walk_data; 8790Sstevel@tonic-gate int type = kmw->kmw_type; 8800Sstevel@tonic-gate kmem_cache_t *cp = kmw->kmw_cp; 8810Sstevel@tonic-gate 8820Sstevel@tonic-gate void **maglist = kmw->kmw_maglist; 8830Sstevel@tonic-gate int magcnt = kmw->kmw_count; 8840Sstevel@tonic-gate 8850Sstevel@tonic-gate uintptr_t chunksize, slabsize; 8860Sstevel@tonic-gate uintptr_t addr; 8870Sstevel@tonic-gate const kmem_slab_t *sp; 8880Sstevel@tonic-gate const kmem_bufctl_t *bcp; 8890Sstevel@tonic-gate kmem_bufctl_t bc; 8900Sstevel@tonic-gate 8910Sstevel@tonic-gate int chunks; 8920Sstevel@tonic-gate char *kbase; 8930Sstevel@tonic-gate void *buf; 8940Sstevel@tonic-gate int i, ret; 8950Sstevel@tonic-gate 8960Sstevel@tonic-gate char *valid, *ubase; 8970Sstevel@tonic-gate 8980Sstevel@tonic-gate /* 8990Sstevel@tonic-gate * first, handle the 'kmem_hash' layered walk case 9000Sstevel@tonic-gate */ 9010Sstevel@tonic-gate if (type & KM_HASH) { 9020Sstevel@tonic-gate /* 9030Sstevel@tonic-gate * We have a buffer which has been allocated out of the 9040Sstevel@tonic-gate * global layer. We need to make sure that it's not 9050Sstevel@tonic-gate * actually sitting in a magazine before we report it as 9060Sstevel@tonic-gate * an allocated buffer. 9070Sstevel@tonic-gate */ 9080Sstevel@tonic-gate buf = ((const kmem_bufctl_t *)wsp->walk_layer)->bc_addr; 9090Sstevel@tonic-gate 9100Sstevel@tonic-gate if (magcnt > 0 && 9110Sstevel@tonic-gate bsearch(&buf, maglist, magcnt, sizeof (void *), 9120Sstevel@tonic-gate addrcmp) != NULL) 9130Sstevel@tonic-gate return (WALK_NEXT); 9140Sstevel@tonic-gate 9150Sstevel@tonic-gate if (type & KM_BUFCTL) 9160Sstevel@tonic-gate return (bufctl_walk_callback(cp, wsp, wsp->walk_addr)); 9170Sstevel@tonic-gate 9180Sstevel@tonic-gate return (kmem_walk_callback(wsp, (uintptr_t)buf)); 9190Sstevel@tonic-gate } 9200Sstevel@tonic-gate 9210Sstevel@tonic-gate ret = WALK_NEXT; 9220Sstevel@tonic-gate 9230Sstevel@tonic-gate addr = kmw->kmw_addr; 9240Sstevel@tonic-gate 9250Sstevel@tonic-gate /* 9260Sstevel@tonic-gate * If we're walking freed buffers, report everything in the 9270Sstevel@tonic-gate * magazine layer before processing the first slab. 9280Sstevel@tonic-gate */ 9290Sstevel@tonic-gate if ((type & KM_FREE) && magcnt != 0) { 9300Sstevel@tonic-gate kmw->kmw_count = 0; /* only do this once */ 9310Sstevel@tonic-gate for (i = 0; i < magcnt; i++) { 9320Sstevel@tonic-gate buf = maglist[i]; 9330Sstevel@tonic-gate 9340Sstevel@tonic-gate if (type & KM_BUFCTL) { 9350Sstevel@tonic-gate uintptr_t out; 9360Sstevel@tonic-gate 9370Sstevel@tonic-gate if (cp->cache_flags & KMF_BUFTAG) { 9380Sstevel@tonic-gate kmem_buftag_t *btp; 9390Sstevel@tonic-gate kmem_buftag_t tag; 9400Sstevel@tonic-gate 9410Sstevel@tonic-gate /* LINTED - alignment */ 9420Sstevel@tonic-gate btp = KMEM_BUFTAG(cp, buf); 9430Sstevel@tonic-gate if (mdb_vread(&tag, sizeof (tag), 9440Sstevel@tonic-gate (uintptr_t)btp) == -1) { 9450Sstevel@tonic-gate mdb_warn("reading buftag for " 9460Sstevel@tonic-gate "%p at %p", buf, btp); 9470Sstevel@tonic-gate continue; 9480Sstevel@tonic-gate } 9490Sstevel@tonic-gate out = (uintptr_t)tag.bt_bufctl; 9500Sstevel@tonic-gate } else { 9510Sstevel@tonic-gate if (kmem_hash_lookup(cp, addr, buf, 9520Sstevel@tonic-gate &out) == -1) 9530Sstevel@tonic-gate continue; 9540Sstevel@tonic-gate } 9550Sstevel@tonic-gate ret = bufctl_walk_callback(cp, wsp, out); 9560Sstevel@tonic-gate } else { 9570Sstevel@tonic-gate ret = kmem_walk_callback(wsp, (uintptr_t)buf); 9580Sstevel@tonic-gate } 9590Sstevel@tonic-gate 9600Sstevel@tonic-gate if (ret != WALK_NEXT) 9610Sstevel@tonic-gate return (ret); 9620Sstevel@tonic-gate } 9630Sstevel@tonic-gate } 9640Sstevel@tonic-gate 9650Sstevel@tonic-gate /* 9660Sstevel@tonic-gate * If they want constructed buffers, we're finished, since the 9670Sstevel@tonic-gate * magazine layer holds them all. 9680Sstevel@tonic-gate */ 9690Sstevel@tonic-gate if (type & KM_CONSTRUCTED) 9700Sstevel@tonic-gate return (WALK_DONE); 9710Sstevel@tonic-gate 9720Sstevel@tonic-gate /* 9730Sstevel@tonic-gate * Handle the buffers in the current slab 9740Sstevel@tonic-gate */ 9750Sstevel@tonic-gate chunksize = cp->cache_chunksize; 9760Sstevel@tonic-gate slabsize = cp->cache_slabsize; 9770Sstevel@tonic-gate 9780Sstevel@tonic-gate sp = wsp->walk_layer; 9790Sstevel@tonic-gate chunks = sp->slab_chunks; 9800Sstevel@tonic-gate kbase = sp->slab_base; 9810Sstevel@tonic-gate 9820Sstevel@tonic-gate dprintf(("kbase is %p\n", kbase)); 9830Sstevel@tonic-gate 9840Sstevel@tonic-gate if (!(cp->cache_flags & KMF_HASH)) { 9850Sstevel@tonic-gate valid = kmw->kmw_valid; 9860Sstevel@tonic-gate ubase = kmw->kmw_ubase; 9870Sstevel@tonic-gate 9880Sstevel@tonic-gate if (mdb_vread(ubase, chunks * chunksize, 9890Sstevel@tonic-gate (uintptr_t)kbase) == -1) { 9900Sstevel@tonic-gate mdb_warn("failed to read slab contents at %p", kbase); 9910Sstevel@tonic-gate return (WALK_ERR); 9920Sstevel@tonic-gate } 9930Sstevel@tonic-gate 9940Sstevel@tonic-gate /* 9950Sstevel@tonic-gate * Set up the valid map as fully allocated -- we'll punch 9960Sstevel@tonic-gate * out the freelist. 9970Sstevel@tonic-gate */ 9980Sstevel@tonic-gate if (type & KM_ALLOCATED) 9990Sstevel@tonic-gate (void) memset(valid, 1, chunks); 10000Sstevel@tonic-gate } else { 10010Sstevel@tonic-gate valid = NULL; 10020Sstevel@tonic-gate ubase = NULL; 10030Sstevel@tonic-gate } 10040Sstevel@tonic-gate 10050Sstevel@tonic-gate /* 10060Sstevel@tonic-gate * walk the slab's freelist 10070Sstevel@tonic-gate */ 10080Sstevel@tonic-gate bcp = sp->slab_head; 10090Sstevel@tonic-gate 10100Sstevel@tonic-gate dprintf(("refcnt is %d; chunks is %d\n", sp->slab_refcnt, chunks)); 10110Sstevel@tonic-gate 10120Sstevel@tonic-gate /* 10130Sstevel@tonic-gate * since we could be in the middle of allocating a buffer, 10140Sstevel@tonic-gate * our refcnt could be one higher than it aught. So we 10150Sstevel@tonic-gate * check one further on the freelist than the count allows. 10160Sstevel@tonic-gate */ 10170Sstevel@tonic-gate for (i = sp->slab_refcnt; i <= chunks; i++) { 10180Sstevel@tonic-gate uint_t ndx; 10190Sstevel@tonic-gate 10200Sstevel@tonic-gate dprintf(("bcp is %p\n", bcp)); 10210Sstevel@tonic-gate 10220Sstevel@tonic-gate if (bcp == NULL) { 10230Sstevel@tonic-gate if (i == chunks) 10240Sstevel@tonic-gate break; 10250Sstevel@tonic-gate mdb_warn( 10260Sstevel@tonic-gate "slab %p in cache %p freelist too short by %d\n", 10270Sstevel@tonic-gate sp, addr, chunks - i); 10280Sstevel@tonic-gate break; 10290Sstevel@tonic-gate } 10300Sstevel@tonic-gate 10310Sstevel@tonic-gate if (cp->cache_flags & KMF_HASH) { 10320Sstevel@tonic-gate if (mdb_vread(&bc, sizeof (bc), (uintptr_t)bcp) == -1) { 10330Sstevel@tonic-gate mdb_warn("failed to read bufctl ptr at %p", 10340Sstevel@tonic-gate bcp); 10350Sstevel@tonic-gate break; 10360Sstevel@tonic-gate } 10370Sstevel@tonic-gate buf = bc.bc_addr; 10380Sstevel@tonic-gate } else { 10390Sstevel@tonic-gate /* 10400Sstevel@tonic-gate * Otherwise the buffer is in the slab which 10410Sstevel@tonic-gate * we've read in; we just need to determine 10420Sstevel@tonic-gate * its offset in the slab to find the 10430Sstevel@tonic-gate * kmem_bufctl_t. 10440Sstevel@tonic-gate */ 10450Sstevel@tonic-gate bc = *((kmem_bufctl_t *) 10460Sstevel@tonic-gate ((uintptr_t)bcp - (uintptr_t)kbase + 10470Sstevel@tonic-gate (uintptr_t)ubase)); 10480Sstevel@tonic-gate 10490Sstevel@tonic-gate buf = KMEM_BUF(cp, bcp); 10500Sstevel@tonic-gate } 10510Sstevel@tonic-gate 10520Sstevel@tonic-gate ndx = ((uintptr_t)buf - (uintptr_t)kbase) / chunksize; 10530Sstevel@tonic-gate 10540Sstevel@tonic-gate if (ndx > slabsize / cp->cache_bufsize) { 10550Sstevel@tonic-gate /* 10560Sstevel@tonic-gate * This is very wrong; we have managed to find 10570Sstevel@tonic-gate * a buffer in the slab which shouldn't 10580Sstevel@tonic-gate * actually be here. Emit a warning, and 10590Sstevel@tonic-gate * try to continue. 10600Sstevel@tonic-gate */ 10610Sstevel@tonic-gate mdb_warn("buf %p is out of range for " 10620Sstevel@tonic-gate "slab %p, cache %p\n", buf, sp, addr); 10630Sstevel@tonic-gate } else if (type & KM_ALLOCATED) { 10640Sstevel@tonic-gate /* 10650Sstevel@tonic-gate * we have found a buffer on the slab's freelist; 10660Sstevel@tonic-gate * clear its entry 10670Sstevel@tonic-gate */ 10680Sstevel@tonic-gate valid[ndx] = 0; 10690Sstevel@tonic-gate } else { 10700Sstevel@tonic-gate /* 10710Sstevel@tonic-gate * Report this freed buffer 10720Sstevel@tonic-gate */ 10730Sstevel@tonic-gate if (type & KM_BUFCTL) { 10740Sstevel@tonic-gate ret = bufctl_walk_callback(cp, wsp, 10750Sstevel@tonic-gate (uintptr_t)bcp); 10760Sstevel@tonic-gate } else { 10770Sstevel@tonic-gate ret = kmem_walk_callback(wsp, (uintptr_t)buf); 10780Sstevel@tonic-gate } 10790Sstevel@tonic-gate if (ret != WALK_NEXT) 10800Sstevel@tonic-gate return (ret); 10810Sstevel@tonic-gate } 10820Sstevel@tonic-gate 10830Sstevel@tonic-gate bcp = bc.bc_next; 10840Sstevel@tonic-gate } 10850Sstevel@tonic-gate 10860Sstevel@tonic-gate if (bcp != NULL) { 10870Sstevel@tonic-gate dprintf(("slab %p in cache %p freelist too long (%p)\n", 10880Sstevel@tonic-gate sp, addr, bcp)); 10890Sstevel@tonic-gate } 10900Sstevel@tonic-gate 10910Sstevel@tonic-gate /* 10920Sstevel@tonic-gate * If we are walking freed buffers, the loop above handled reporting 10930Sstevel@tonic-gate * them. 10940Sstevel@tonic-gate */ 10950Sstevel@tonic-gate if (type & KM_FREE) 10960Sstevel@tonic-gate return (WALK_NEXT); 10970Sstevel@tonic-gate 10980Sstevel@tonic-gate if (type & KM_BUFCTL) { 10990Sstevel@tonic-gate mdb_warn("impossible situation: small-slab KM_BUFCTL walk for " 11000Sstevel@tonic-gate "cache %p\n", addr); 11010Sstevel@tonic-gate return (WALK_ERR); 11020Sstevel@tonic-gate } 11030Sstevel@tonic-gate 11040Sstevel@tonic-gate /* 11050Sstevel@tonic-gate * Report allocated buffers, skipping buffers in the magazine layer. 11060Sstevel@tonic-gate * We only get this far for small-slab caches. 11070Sstevel@tonic-gate */ 11080Sstevel@tonic-gate for (i = 0; ret == WALK_NEXT && i < chunks; i++) { 11090Sstevel@tonic-gate buf = (char *)kbase + i * chunksize; 11100Sstevel@tonic-gate 11110Sstevel@tonic-gate if (!valid[i]) 11120Sstevel@tonic-gate continue; /* on slab freelist */ 11130Sstevel@tonic-gate 11140Sstevel@tonic-gate if (magcnt > 0 && 11150Sstevel@tonic-gate bsearch(&buf, maglist, magcnt, sizeof (void *), 11160Sstevel@tonic-gate addrcmp) != NULL) 11170Sstevel@tonic-gate continue; /* in magazine layer */ 11180Sstevel@tonic-gate 11190Sstevel@tonic-gate ret = kmem_walk_callback(wsp, (uintptr_t)buf); 11200Sstevel@tonic-gate } 11210Sstevel@tonic-gate return (ret); 11220Sstevel@tonic-gate } 11230Sstevel@tonic-gate 11240Sstevel@tonic-gate void 11250Sstevel@tonic-gate kmem_walk_fini(mdb_walk_state_t *wsp) 11260Sstevel@tonic-gate { 11270Sstevel@tonic-gate kmem_walk_t *kmw = wsp->walk_data; 11280Sstevel@tonic-gate uintptr_t chunksize; 11290Sstevel@tonic-gate uintptr_t slabsize; 11300Sstevel@tonic-gate 11310Sstevel@tonic-gate if (kmw == NULL) 11320Sstevel@tonic-gate return; 11330Sstevel@tonic-gate 11340Sstevel@tonic-gate if (kmw->kmw_maglist != NULL) 11350Sstevel@tonic-gate mdb_free(kmw->kmw_maglist, kmw->kmw_max * sizeof (void *)); 11360Sstevel@tonic-gate 11370Sstevel@tonic-gate chunksize = kmw->kmw_cp->cache_chunksize; 11380Sstevel@tonic-gate slabsize = kmw->kmw_cp->cache_slabsize; 11390Sstevel@tonic-gate 11400Sstevel@tonic-gate if (kmw->kmw_valid != NULL) 11410Sstevel@tonic-gate mdb_free(kmw->kmw_valid, slabsize / chunksize); 11420Sstevel@tonic-gate if (kmw->kmw_ubase != NULL) 11430Sstevel@tonic-gate mdb_free(kmw->kmw_ubase, slabsize + sizeof (kmem_bufctl_t)); 11440Sstevel@tonic-gate 11450Sstevel@tonic-gate mdb_free(kmw->kmw_cp, kmw->kmw_csize); 11460Sstevel@tonic-gate mdb_free(kmw, sizeof (kmem_walk_t)); 11470Sstevel@tonic-gate } 11480Sstevel@tonic-gate 11490Sstevel@tonic-gate /*ARGSUSED*/ 11500Sstevel@tonic-gate static int 11510Sstevel@tonic-gate kmem_walk_all(uintptr_t addr, const kmem_cache_t *c, mdb_walk_state_t *wsp) 11520Sstevel@tonic-gate { 11530Sstevel@tonic-gate /* 11540Sstevel@tonic-gate * Buffers allocated from NOTOUCH caches can also show up as freed 11550Sstevel@tonic-gate * memory in other caches. This can be a little confusing, so we 11560Sstevel@tonic-gate * don't walk NOTOUCH caches when walking all caches (thereby assuring 11570Sstevel@tonic-gate * that "::walk kmem" and "::walk freemem" yield disjoint output). 11580Sstevel@tonic-gate */ 11590Sstevel@tonic-gate if (c->cache_cflags & KMC_NOTOUCH) 11600Sstevel@tonic-gate return (WALK_NEXT); 11610Sstevel@tonic-gate 11620Sstevel@tonic-gate if (mdb_pwalk(wsp->walk_data, wsp->walk_callback, 11630Sstevel@tonic-gate wsp->walk_cbdata, addr) == -1) 11640Sstevel@tonic-gate return (WALK_DONE); 11650Sstevel@tonic-gate 11660Sstevel@tonic-gate return (WALK_NEXT); 11670Sstevel@tonic-gate } 11680Sstevel@tonic-gate 11690Sstevel@tonic-gate #define KMEM_WALK_ALL(name, wsp) { \ 11700Sstevel@tonic-gate wsp->walk_data = (name); \ 11710Sstevel@tonic-gate if (mdb_walk("kmem_cache", (mdb_walk_cb_t)kmem_walk_all, wsp) == -1) \ 11720Sstevel@tonic-gate return (WALK_ERR); \ 11730Sstevel@tonic-gate return (WALK_DONE); \ 11740Sstevel@tonic-gate } 11750Sstevel@tonic-gate 11760Sstevel@tonic-gate int 11770Sstevel@tonic-gate kmem_walk_init(mdb_walk_state_t *wsp) 11780Sstevel@tonic-gate { 11790Sstevel@tonic-gate if (wsp->walk_arg != NULL) 11800Sstevel@tonic-gate wsp->walk_addr = (uintptr_t)wsp->walk_arg; 11810Sstevel@tonic-gate 11820Sstevel@tonic-gate if (wsp->walk_addr == NULL) 11830Sstevel@tonic-gate KMEM_WALK_ALL("kmem", wsp); 11840Sstevel@tonic-gate return (kmem_walk_init_common(wsp, KM_ALLOCATED)); 11850Sstevel@tonic-gate } 11860Sstevel@tonic-gate 11870Sstevel@tonic-gate int 11880Sstevel@tonic-gate bufctl_walk_init(mdb_walk_state_t *wsp) 11890Sstevel@tonic-gate { 11900Sstevel@tonic-gate if (wsp->walk_addr == NULL) 11910Sstevel@tonic-gate KMEM_WALK_ALL("bufctl", wsp); 11920Sstevel@tonic-gate return (kmem_walk_init_common(wsp, KM_ALLOCATED | KM_BUFCTL)); 11930Sstevel@tonic-gate } 11940Sstevel@tonic-gate 11950Sstevel@tonic-gate int 11960Sstevel@tonic-gate freemem_walk_init(mdb_walk_state_t *wsp) 11970Sstevel@tonic-gate { 11980Sstevel@tonic-gate if (wsp->walk_addr == NULL) 11990Sstevel@tonic-gate KMEM_WALK_ALL("freemem", wsp); 12000Sstevel@tonic-gate return (kmem_walk_init_common(wsp, KM_FREE)); 12010Sstevel@tonic-gate } 12020Sstevel@tonic-gate 12030Sstevel@tonic-gate int 12040Sstevel@tonic-gate freemem_constructed_walk_init(mdb_walk_state_t *wsp) 12050Sstevel@tonic-gate { 12060Sstevel@tonic-gate if (wsp->walk_addr == NULL) 12070Sstevel@tonic-gate KMEM_WALK_ALL("freemem_constructed", wsp); 12080Sstevel@tonic-gate return (kmem_walk_init_common(wsp, KM_FREE | KM_CONSTRUCTED)); 12090Sstevel@tonic-gate } 12100Sstevel@tonic-gate 12110Sstevel@tonic-gate int 12120Sstevel@tonic-gate freectl_walk_init(mdb_walk_state_t *wsp) 12130Sstevel@tonic-gate { 12140Sstevel@tonic-gate if (wsp->walk_addr == NULL) 12150Sstevel@tonic-gate KMEM_WALK_ALL("freectl", wsp); 12160Sstevel@tonic-gate return (kmem_walk_init_common(wsp, KM_FREE | KM_BUFCTL)); 12170Sstevel@tonic-gate } 12180Sstevel@tonic-gate 12190Sstevel@tonic-gate int 12200Sstevel@tonic-gate freectl_constructed_walk_init(mdb_walk_state_t *wsp) 12210Sstevel@tonic-gate { 12220Sstevel@tonic-gate if (wsp->walk_addr == NULL) 12230Sstevel@tonic-gate KMEM_WALK_ALL("freectl_constructed", wsp); 12240Sstevel@tonic-gate return (kmem_walk_init_common(wsp, 12250Sstevel@tonic-gate KM_FREE | KM_BUFCTL | KM_CONSTRUCTED)); 12260Sstevel@tonic-gate } 12270Sstevel@tonic-gate 12280Sstevel@tonic-gate typedef struct bufctl_history_walk { 12290Sstevel@tonic-gate void *bhw_next; 12300Sstevel@tonic-gate kmem_cache_t *bhw_cache; 12310Sstevel@tonic-gate kmem_slab_t *bhw_slab; 12320Sstevel@tonic-gate hrtime_t bhw_timestamp; 12330Sstevel@tonic-gate } bufctl_history_walk_t; 12340Sstevel@tonic-gate 12350Sstevel@tonic-gate int 12360Sstevel@tonic-gate bufctl_history_walk_init(mdb_walk_state_t *wsp) 12370Sstevel@tonic-gate { 12380Sstevel@tonic-gate bufctl_history_walk_t *bhw; 12390Sstevel@tonic-gate kmem_bufctl_audit_t bc; 12400Sstevel@tonic-gate kmem_bufctl_audit_t bcn; 12410Sstevel@tonic-gate 12420Sstevel@tonic-gate if (wsp->walk_addr == NULL) { 12430Sstevel@tonic-gate mdb_warn("bufctl_history walk doesn't support global walks\n"); 12440Sstevel@tonic-gate return (WALK_ERR); 12450Sstevel@tonic-gate } 12460Sstevel@tonic-gate 12470Sstevel@tonic-gate if (mdb_vread(&bc, sizeof (bc), wsp->walk_addr) == -1) { 12480Sstevel@tonic-gate mdb_warn("unable to read bufctl at %p", wsp->walk_addr); 12490Sstevel@tonic-gate return (WALK_ERR); 12500Sstevel@tonic-gate } 12510Sstevel@tonic-gate 12520Sstevel@tonic-gate bhw = mdb_zalloc(sizeof (*bhw), UM_SLEEP); 12530Sstevel@tonic-gate bhw->bhw_timestamp = 0; 12540Sstevel@tonic-gate bhw->bhw_cache = bc.bc_cache; 12550Sstevel@tonic-gate bhw->bhw_slab = bc.bc_slab; 12560Sstevel@tonic-gate 12570Sstevel@tonic-gate /* 12580Sstevel@tonic-gate * sometimes the first log entry matches the base bufctl; in that 12590Sstevel@tonic-gate * case, skip the base bufctl. 12600Sstevel@tonic-gate */ 12610Sstevel@tonic-gate if (bc.bc_lastlog != NULL && 12620Sstevel@tonic-gate mdb_vread(&bcn, sizeof (bcn), (uintptr_t)bc.bc_lastlog) != -1 && 12630Sstevel@tonic-gate bc.bc_addr == bcn.bc_addr && 12640Sstevel@tonic-gate bc.bc_cache == bcn.bc_cache && 12650Sstevel@tonic-gate bc.bc_slab == bcn.bc_slab && 12660Sstevel@tonic-gate bc.bc_timestamp == bcn.bc_timestamp && 12670Sstevel@tonic-gate bc.bc_thread == bcn.bc_thread) 12680Sstevel@tonic-gate bhw->bhw_next = bc.bc_lastlog; 12690Sstevel@tonic-gate else 12700Sstevel@tonic-gate bhw->bhw_next = (void *)wsp->walk_addr; 12710Sstevel@tonic-gate 12720Sstevel@tonic-gate wsp->walk_addr = (uintptr_t)bc.bc_addr; 12730Sstevel@tonic-gate wsp->walk_data = bhw; 12740Sstevel@tonic-gate 12750Sstevel@tonic-gate return (WALK_NEXT); 12760Sstevel@tonic-gate } 12770Sstevel@tonic-gate 12780Sstevel@tonic-gate int 12790Sstevel@tonic-gate bufctl_history_walk_step(mdb_walk_state_t *wsp) 12800Sstevel@tonic-gate { 12810Sstevel@tonic-gate bufctl_history_walk_t *bhw = wsp->walk_data; 12820Sstevel@tonic-gate uintptr_t addr = (uintptr_t)bhw->bhw_next; 12830Sstevel@tonic-gate uintptr_t baseaddr = wsp->walk_addr; 12840Sstevel@tonic-gate kmem_bufctl_audit_t bc; 12850Sstevel@tonic-gate 12860Sstevel@tonic-gate if (addr == NULL) 12870Sstevel@tonic-gate return (WALK_DONE); 12880Sstevel@tonic-gate 12890Sstevel@tonic-gate if (mdb_vread(&bc, sizeof (bc), addr) == -1) { 12900Sstevel@tonic-gate mdb_warn("unable to read bufctl at %p", bhw->bhw_next); 12910Sstevel@tonic-gate return (WALK_ERR); 12920Sstevel@tonic-gate } 12930Sstevel@tonic-gate 12940Sstevel@tonic-gate /* 12950Sstevel@tonic-gate * The bufctl is only valid if the address, cache, and slab are 12960Sstevel@tonic-gate * correct. We also check that the timestamp is decreasing, to 12970Sstevel@tonic-gate * prevent infinite loops. 12980Sstevel@tonic-gate */ 12990Sstevel@tonic-gate if ((uintptr_t)bc.bc_addr != baseaddr || 13000Sstevel@tonic-gate bc.bc_cache != bhw->bhw_cache || 13010Sstevel@tonic-gate bc.bc_slab != bhw->bhw_slab || 13020Sstevel@tonic-gate (bhw->bhw_timestamp != 0 && bc.bc_timestamp >= bhw->bhw_timestamp)) 13030Sstevel@tonic-gate return (WALK_DONE); 13040Sstevel@tonic-gate 13050Sstevel@tonic-gate bhw->bhw_next = bc.bc_lastlog; 13060Sstevel@tonic-gate bhw->bhw_timestamp = bc.bc_timestamp; 13070Sstevel@tonic-gate 13080Sstevel@tonic-gate return (wsp->walk_callback(addr, &bc, wsp->walk_cbdata)); 13090Sstevel@tonic-gate } 13100Sstevel@tonic-gate 13110Sstevel@tonic-gate void 13120Sstevel@tonic-gate bufctl_history_walk_fini(mdb_walk_state_t *wsp) 13130Sstevel@tonic-gate { 13140Sstevel@tonic-gate bufctl_history_walk_t *bhw = wsp->walk_data; 13150Sstevel@tonic-gate 13160Sstevel@tonic-gate mdb_free(bhw, sizeof (*bhw)); 13170Sstevel@tonic-gate } 13180Sstevel@tonic-gate 13190Sstevel@tonic-gate typedef struct kmem_log_walk { 13200Sstevel@tonic-gate kmem_bufctl_audit_t *klw_base; 13210Sstevel@tonic-gate kmem_bufctl_audit_t **klw_sorted; 13220Sstevel@tonic-gate kmem_log_header_t klw_lh; 13230Sstevel@tonic-gate size_t klw_size; 13240Sstevel@tonic-gate size_t klw_maxndx; 13250Sstevel@tonic-gate size_t klw_ndx; 13260Sstevel@tonic-gate } kmem_log_walk_t; 13270Sstevel@tonic-gate 13280Sstevel@tonic-gate int 13290Sstevel@tonic-gate kmem_log_walk_init(mdb_walk_state_t *wsp) 13300Sstevel@tonic-gate { 13310Sstevel@tonic-gate uintptr_t lp = wsp->walk_addr; 13320Sstevel@tonic-gate kmem_log_walk_t *klw; 13330Sstevel@tonic-gate kmem_log_header_t *lhp; 13340Sstevel@tonic-gate int maxndx, i, j, k; 13350Sstevel@tonic-gate 13360Sstevel@tonic-gate /* 13370Sstevel@tonic-gate * By default (global walk), walk the kmem_transaction_log. Otherwise 13380Sstevel@tonic-gate * read the log whose kmem_log_header_t is stored at walk_addr. 13390Sstevel@tonic-gate */ 13400Sstevel@tonic-gate if (lp == NULL && mdb_readvar(&lp, "kmem_transaction_log") == -1) { 13410Sstevel@tonic-gate mdb_warn("failed to read 'kmem_transaction_log'"); 13420Sstevel@tonic-gate return (WALK_ERR); 13430Sstevel@tonic-gate } 13440Sstevel@tonic-gate 13450Sstevel@tonic-gate if (lp == NULL) { 13460Sstevel@tonic-gate mdb_warn("log is disabled\n"); 13470Sstevel@tonic-gate return (WALK_ERR); 13480Sstevel@tonic-gate } 13490Sstevel@tonic-gate 13500Sstevel@tonic-gate klw = mdb_zalloc(sizeof (kmem_log_walk_t), UM_SLEEP); 13510Sstevel@tonic-gate lhp = &klw->klw_lh; 13520Sstevel@tonic-gate 13530Sstevel@tonic-gate if (mdb_vread(lhp, sizeof (kmem_log_header_t), lp) == -1) { 13540Sstevel@tonic-gate mdb_warn("failed to read log header at %p", lp); 13550Sstevel@tonic-gate mdb_free(klw, sizeof (kmem_log_walk_t)); 13560Sstevel@tonic-gate return (WALK_ERR); 13570Sstevel@tonic-gate } 13580Sstevel@tonic-gate 13590Sstevel@tonic-gate klw->klw_size = lhp->lh_chunksize * lhp->lh_nchunks; 13600Sstevel@tonic-gate klw->klw_base = mdb_alloc(klw->klw_size, UM_SLEEP); 13610Sstevel@tonic-gate maxndx = lhp->lh_chunksize / sizeof (kmem_bufctl_audit_t) - 1; 13620Sstevel@tonic-gate 13630Sstevel@tonic-gate if (mdb_vread(klw->klw_base, klw->klw_size, 13640Sstevel@tonic-gate (uintptr_t)lhp->lh_base) == -1) { 13650Sstevel@tonic-gate mdb_warn("failed to read log at base %p", lhp->lh_base); 13660Sstevel@tonic-gate mdb_free(klw->klw_base, klw->klw_size); 13670Sstevel@tonic-gate mdb_free(klw, sizeof (kmem_log_walk_t)); 13680Sstevel@tonic-gate return (WALK_ERR); 13690Sstevel@tonic-gate } 13700Sstevel@tonic-gate 13710Sstevel@tonic-gate klw->klw_sorted = mdb_alloc(maxndx * lhp->lh_nchunks * 13720Sstevel@tonic-gate sizeof (kmem_bufctl_audit_t *), UM_SLEEP); 13730Sstevel@tonic-gate 13740Sstevel@tonic-gate for (i = 0, k = 0; i < lhp->lh_nchunks; i++) { 13750Sstevel@tonic-gate kmem_bufctl_audit_t *chunk = (kmem_bufctl_audit_t *) 13760Sstevel@tonic-gate ((uintptr_t)klw->klw_base + i * lhp->lh_chunksize); 13770Sstevel@tonic-gate 13780Sstevel@tonic-gate for (j = 0; j < maxndx; j++) 13790Sstevel@tonic-gate klw->klw_sorted[k++] = &chunk[j]; 13800Sstevel@tonic-gate } 13810Sstevel@tonic-gate 13820Sstevel@tonic-gate qsort(klw->klw_sorted, k, sizeof (kmem_bufctl_audit_t *), 13830Sstevel@tonic-gate (int(*)(const void *, const void *))bufctlcmp); 13840Sstevel@tonic-gate 13850Sstevel@tonic-gate klw->klw_maxndx = k; 13860Sstevel@tonic-gate wsp->walk_data = klw; 13870Sstevel@tonic-gate 13880Sstevel@tonic-gate return (WALK_NEXT); 13890Sstevel@tonic-gate } 13900Sstevel@tonic-gate 13910Sstevel@tonic-gate int 13920Sstevel@tonic-gate kmem_log_walk_step(mdb_walk_state_t *wsp) 13930Sstevel@tonic-gate { 13940Sstevel@tonic-gate kmem_log_walk_t *klw = wsp->walk_data; 13950Sstevel@tonic-gate kmem_bufctl_audit_t *bcp; 13960Sstevel@tonic-gate 13970Sstevel@tonic-gate if (klw->klw_ndx == klw->klw_maxndx) 13980Sstevel@tonic-gate return (WALK_DONE); 13990Sstevel@tonic-gate 14000Sstevel@tonic-gate bcp = klw->klw_sorted[klw->klw_ndx++]; 14010Sstevel@tonic-gate 14020Sstevel@tonic-gate return (wsp->walk_callback((uintptr_t)bcp - (uintptr_t)klw->klw_base + 14030Sstevel@tonic-gate (uintptr_t)klw->klw_lh.lh_base, bcp, wsp->walk_cbdata)); 14040Sstevel@tonic-gate } 14050Sstevel@tonic-gate 14060Sstevel@tonic-gate void 14070Sstevel@tonic-gate kmem_log_walk_fini(mdb_walk_state_t *wsp) 14080Sstevel@tonic-gate { 14090Sstevel@tonic-gate kmem_log_walk_t *klw = wsp->walk_data; 14100Sstevel@tonic-gate 14110Sstevel@tonic-gate mdb_free(klw->klw_base, klw->klw_size); 14120Sstevel@tonic-gate mdb_free(klw->klw_sorted, klw->klw_maxndx * 14130Sstevel@tonic-gate sizeof (kmem_bufctl_audit_t *)); 14140Sstevel@tonic-gate mdb_free(klw, sizeof (kmem_log_walk_t)); 14150Sstevel@tonic-gate } 14160Sstevel@tonic-gate 14170Sstevel@tonic-gate typedef struct allocdby_bufctl { 14180Sstevel@tonic-gate uintptr_t abb_addr; 14190Sstevel@tonic-gate hrtime_t abb_ts; 14200Sstevel@tonic-gate } allocdby_bufctl_t; 14210Sstevel@tonic-gate 14220Sstevel@tonic-gate typedef struct allocdby_walk { 14230Sstevel@tonic-gate const char *abw_walk; 14240Sstevel@tonic-gate uintptr_t abw_thread; 14250Sstevel@tonic-gate size_t abw_nbufs; 14260Sstevel@tonic-gate size_t abw_size; 14270Sstevel@tonic-gate allocdby_bufctl_t *abw_buf; 14280Sstevel@tonic-gate size_t abw_ndx; 14290Sstevel@tonic-gate } allocdby_walk_t; 14300Sstevel@tonic-gate 14310Sstevel@tonic-gate int 14320Sstevel@tonic-gate allocdby_walk_bufctl(uintptr_t addr, const kmem_bufctl_audit_t *bcp, 14330Sstevel@tonic-gate allocdby_walk_t *abw) 14340Sstevel@tonic-gate { 14350Sstevel@tonic-gate if ((uintptr_t)bcp->bc_thread != abw->abw_thread) 14360Sstevel@tonic-gate return (WALK_NEXT); 14370Sstevel@tonic-gate 14380Sstevel@tonic-gate if (abw->abw_nbufs == abw->abw_size) { 14390Sstevel@tonic-gate allocdby_bufctl_t *buf; 14400Sstevel@tonic-gate size_t oldsize = sizeof (allocdby_bufctl_t) * abw->abw_size; 14410Sstevel@tonic-gate 14420Sstevel@tonic-gate buf = mdb_zalloc(oldsize << 1, UM_SLEEP); 14430Sstevel@tonic-gate 14440Sstevel@tonic-gate bcopy(abw->abw_buf, buf, oldsize); 14450Sstevel@tonic-gate mdb_free(abw->abw_buf, oldsize); 14460Sstevel@tonic-gate 14470Sstevel@tonic-gate abw->abw_size <<= 1; 14480Sstevel@tonic-gate abw->abw_buf = buf; 14490Sstevel@tonic-gate } 14500Sstevel@tonic-gate 14510Sstevel@tonic-gate abw->abw_buf[abw->abw_nbufs].abb_addr = addr; 14520Sstevel@tonic-gate abw->abw_buf[abw->abw_nbufs].abb_ts = bcp->bc_timestamp; 14530Sstevel@tonic-gate abw->abw_nbufs++; 14540Sstevel@tonic-gate 14550Sstevel@tonic-gate return (WALK_NEXT); 14560Sstevel@tonic-gate } 14570Sstevel@tonic-gate 14580Sstevel@tonic-gate /*ARGSUSED*/ 14590Sstevel@tonic-gate int 14600Sstevel@tonic-gate allocdby_walk_cache(uintptr_t addr, const kmem_cache_t *c, allocdby_walk_t *abw) 14610Sstevel@tonic-gate { 14620Sstevel@tonic-gate if (mdb_pwalk(abw->abw_walk, (mdb_walk_cb_t)allocdby_walk_bufctl, 14630Sstevel@tonic-gate abw, addr) == -1) { 14640Sstevel@tonic-gate mdb_warn("couldn't walk bufctl for cache %p", addr); 14650Sstevel@tonic-gate return (WALK_DONE); 14660Sstevel@tonic-gate } 14670Sstevel@tonic-gate 14680Sstevel@tonic-gate return (WALK_NEXT); 14690Sstevel@tonic-gate } 14700Sstevel@tonic-gate 14710Sstevel@tonic-gate static int 14720Sstevel@tonic-gate allocdby_cmp(const allocdby_bufctl_t *lhs, const allocdby_bufctl_t *rhs) 14730Sstevel@tonic-gate { 14740Sstevel@tonic-gate if (lhs->abb_ts < rhs->abb_ts) 14750Sstevel@tonic-gate return (1); 14760Sstevel@tonic-gate if (lhs->abb_ts > rhs->abb_ts) 14770Sstevel@tonic-gate return (-1); 14780Sstevel@tonic-gate return (0); 14790Sstevel@tonic-gate } 14800Sstevel@tonic-gate 14810Sstevel@tonic-gate static int 14820Sstevel@tonic-gate allocdby_walk_init_common(mdb_walk_state_t *wsp, const char *walk) 14830Sstevel@tonic-gate { 14840Sstevel@tonic-gate allocdby_walk_t *abw; 14850Sstevel@tonic-gate 14860Sstevel@tonic-gate if (wsp->walk_addr == NULL) { 14870Sstevel@tonic-gate mdb_warn("allocdby walk doesn't support global walks\n"); 14880Sstevel@tonic-gate return (WALK_ERR); 14890Sstevel@tonic-gate } 14900Sstevel@tonic-gate 14910Sstevel@tonic-gate abw = mdb_zalloc(sizeof (allocdby_walk_t), UM_SLEEP); 14920Sstevel@tonic-gate 14930Sstevel@tonic-gate abw->abw_thread = wsp->walk_addr; 14940Sstevel@tonic-gate abw->abw_walk = walk; 14950Sstevel@tonic-gate abw->abw_size = 128; /* something reasonable */ 14960Sstevel@tonic-gate abw->abw_buf = 14970Sstevel@tonic-gate mdb_zalloc(abw->abw_size * sizeof (allocdby_bufctl_t), UM_SLEEP); 14980Sstevel@tonic-gate 14990Sstevel@tonic-gate wsp->walk_data = abw; 15000Sstevel@tonic-gate 15010Sstevel@tonic-gate if (mdb_walk("kmem_cache", 15020Sstevel@tonic-gate (mdb_walk_cb_t)allocdby_walk_cache, abw) == -1) { 15030Sstevel@tonic-gate mdb_warn("couldn't walk kmem_cache"); 15040Sstevel@tonic-gate allocdby_walk_fini(wsp); 15050Sstevel@tonic-gate return (WALK_ERR); 15060Sstevel@tonic-gate } 15070Sstevel@tonic-gate 15080Sstevel@tonic-gate qsort(abw->abw_buf, abw->abw_nbufs, sizeof (allocdby_bufctl_t), 15090Sstevel@tonic-gate (int(*)(const void *, const void *))allocdby_cmp); 15100Sstevel@tonic-gate 15110Sstevel@tonic-gate return (WALK_NEXT); 15120Sstevel@tonic-gate } 15130Sstevel@tonic-gate 15140Sstevel@tonic-gate int 15150Sstevel@tonic-gate allocdby_walk_init(mdb_walk_state_t *wsp) 15160Sstevel@tonic-gate { 15170Sstevel@tonic-gate return (allocdby_walk_init_common(wsp, "bufctl")); 15180Sstevel@tonic-gate } 15190Sstevel@tonic-gate 15200Sstevel@tonic-gate int 15210Sstevel@tonic-gate freedby_walk_init(mdb_walk_state_t *wsp) 15220Sstevel@tonic-gate { 15230Sstevel@tonic-gate return (allocdby_walk_init_common(wsp, "freectl")); 15240Sstevel@tonic-gate } 15250Sstevel@tonic-gate 15260Sstevel@tonic-gate int 15270Sstevel@tonic-gate allocdby_walk_step(mdb_walk_state_t *wsp) 15280Sstevel@tonic-gate { 15290Sstevel@tonic-gate allocdby_walk_t *abw = wsp->walk_data; 15300Sstevel@tonic-gate kmem_bufctl_audit_t bc; 15310Sstevel@tonic-gate uintptr_t addr; 15320Sstevel@tonic-gate 15330Sstevel@tonic-gate if (abw->abw_ndx == abw->abw_nbufs) 15340Sstevel@tonic-gate return (WALK_DONE); 15350Sstevel@tonic-gate 15360Sstevel@tonic-gate addr = abw->abw_buf[abw->abw_ndx++].abb_addr; 15370Sstevel@tonic-gate 15380Sstevel@tonic-gate if (mdb_vread(&bc, sizeof (bc), addr) == -1) { 15390Sstevel@tonic-gate mdb_warn("couldn't read bufctl at %p", addr); 15400Sstevel@tonic-gate return (WALK_DONE); 15410Sstevel@tonic-gate } 15420Sstevel@tonic-gate 15430Sstevel@tonic-gate return (wsp->walk_callback(addr, &bc, wsp->walk_cbdata)); 15440Sstevel@tonic-gate } 15450Sstevel@tonic-gate 15460Sstevel@tonic-gate void 15470Sstevel@tonic-gate allocdby_walk_fini(mdb_walk_state_t *wsp) 15480Sstevel@tonic-gate { 15490Sstevel@tonic-gate allocdby_walk_t *abw = wsp->walk_data; 15500Sstevel@tonic-gate 15510Sstevel@tonic-gate mdb_free(abw->abw_buf, sizeof (allocdby_bufctl_t) * abw->abw_size); 15520Sstevel@tonic-gate mdb_free(abw, sizeof (allocdby_walk_t)); 15530Sstevel@tonic-gate } 15540Sstevel@tonic-gate 15550Sstevel@tonic-gate /*ARGSUSED*/ 15560Sstevel@tonic-gate int 15570Sstevel@tonic-gate allocdby_walk(uintptr_t addr, const kmem_bufctl_audit_t *bcp, void *ignored) 15580Sstevel@tonic-gate { 15590Sstevel@tonic-gate char c[MDB_SYM_NAMLEN]; 15600Sstevel@tonic-gate GElf_Sym sym; 15610Sstevel@tonic-gate int i; 15620Sstevel@tonic-gate 15630Sstevel@tonic-gate mdb_printf("%0?p %12llx ", addr, bcp->bc_timestamp); 15640Sstevel@tonic-gate for (i = 0; i < bcp->bc_depth; i++) { 15650Sstevel@tonic-gate if (mdb_lookup_by_addr(bcp->bc_stack[i], 15660Sstevel@tonic-gate MDB_SYM_FUZZY, c, sizeof (c), &sym) == -1) 15670Sstevel@tonic-gate continue; 15680Sstevel@tonic-gate if (strncmp(c, "kmem_", 5) == 0) 15690Sstevel@tonic-gate continue; 15700Sstevel@tonic-gate mdb_printf("%s+0x%lx", 15710Sstevel@tonic-gate c, bcp->bc_stack[i] - (uintptr_t)sym.st_value); 15720Sstevel@tonic-gate break; 15730Sstevel@tonic-gate } 15740Sstevel@tonic-gate mdb_printf("\n"); 15750Sstevel@tonic-gate 15760Sstevel@tonic-gate return (WALK_NEXT); 15770Sstevel@tonic-gate } 15780Sstevel@tonic-gate 15790Sstevel@tonic-gate static int 15800Sstevel@tonic-gate allocdby_common(uintptr_t addr, uint_t flags, const char *w) 15810Sstevel@tonic-gate { 15820Sstevel@tonic-gate if (!(flags & DCMD_ADDRSPEC)) 15830Sstevel@tonic-gate return (DCMD_USAGE); 15840Sstevel@tonic-gate 15850Sstevel@tonic-gate mdb_printf("%-?s %12s %s\n", "BUFCTL", "TIMESTAMP", "CALLER"); 15860Sstevel@tonic-gate 15870Sstevel@tonic-gate if (mdb_pwalk(w, (mdb_walk_cb_t)allocdby_walk, NULL, addr) == -1) { 15880Sstevel@tonic-gate mdb_warn("can't walk '%s' for %p", w, addr); 15890Sstevel@tonic-gate return (DCMD_ERR); 15900Sstevel@tonic-gate } 15910Sstevel@tonic-gate 15920Sstevel@tonic-gate return (DCMD_OK); 15930Sstevel@tonic-gate } 15940Sstevel@tonic-gate 15950Sstevel@tonic-gate /*ARGSUSED*/ 15960Sstevel@tonic-gate int 15970Sstevel@tonic-gate allocdby(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 15980Sstevel@tonic-gate { 15990Sstevel@tonic-gate return (allocdby_common(addr, flags, "allocdby")); 16000Sstevel@tonic-gate } 16010Sstevel@tonic-gate 16020Sstevel@tonic-gate /*ARGSUSED*/ 16030Sstevel@tonic-gate int 16040Sstevel@tonic-gate freedby(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 16050Sstevel@tonic-gate { 16060Sstevel@tonic-gate return (allocdby_common(addr, flags, "freedby")); 16070Sstevel@tonic-gate } 16080Sstevel@tonic-gate 16090Sstevel@tonic-gate /* 16100Sstevel@tonic-gate * Return a string describing the address in relation to the given thread's 16110Sstevel@tonic-gate * stack. 16120Sstevel@tonic-gate * 16130Sstevel@tonic-gate * - If the thread state is TS_FREE, return " (inactive interrupt thread)". 16140Sstevel@tonic-gate * 16150Sstevel@tonic-gate * - If the address is above the stack pointer, return an empty string 16160Sstevel@tonic-gate * signifying that the address is active. 16170Sstevel@tonic-gate * 16180Sstevel@tonic-gate * - If the address is below the stack pointer, and the thread is not on proc, 16190Sstevel@tonic-gate * return " (below sp)". 16200Sstevel@tonic-gate * 16210Sstevel@tonic-gate * - If the address is below the stack pointer, and the thread is on proc, 16220Sstevel@tonic-gate * return " (possibly below sp)". Depending on context, we may or may not 16230Sstevel@tonic-gate * have an accurate t_sp. 16240Sstevel@tonic-gate */ 16250Sstevel@tonic-gate static const char * 16260Sstevel@tonic-gate stack_active(const kthread_t *t, uintptr_t addr) 16270Sstevel@tonic-gate { 16280Sstevel@tonic-gate uintptr_t panicstk; 16290Sstevel@tonic-gate GElf_Sym sym; 16300Sstevel@tonic-gate 16310Sstevel@tonic-gate if (t->t_state == TS_FREE) 16320Sstevel@tonic-gate return (" (inactive interrupt thread)"); 16330Sstevel@tonic-gate 16340Sstevel@tonic-gate /* 16350Sstevel@tonic-gate * Check to see if we're on the panic stack. If so, ignore t_sp, as it 16360Sstevel@tonic-gate * no longer relates to the thread's real stack. 16370Sstevel@tonic-gate */ 16380Sstevel@tonic-gate if (mdb_lookup_by_name("panic_stack", &sym) == 0) { 16390Sstevel@tonic-gate panicstk = (uintptr_t)sym.st_value; 16400Sstevel@tonic-gate 16410Sstevel@tonic-gate if (t->t_sp >= panicstk && t->t_sp < panicstk + PANICSTKSIZE) 16420Sstevel@tonic-gate return (""); 16430Sstevel@tonic-gate } 16440Sstevel@tonic-gate 16450Sstevel@tonic-gate if (addr >= t->t_sp + STACK_BIAS) 16460Sstevel@tonic-gate return (""); 16470Sstevel@tonic-gate 16480Sstevel@tonic-gate if (t->t_state == TS_ONPROC) 16490Sstevel@tonic-gate return (" (possibly below sp)"); 16500Sstevel@tonic-gate 16510Sstevel@tonic-gate return (" (below sp)"); 16520Sstevel@tonic-gate } 16530Sstevel@tonic-gate 16540Sstevel@tonic-gate typedef struct whatis { 16550Sstevel@tonic-gate uintptr_t w_addr; 16560Sstevel@tonic-gate const kmem_cache_t *w_cache; 16570Sstevel@tonic-gate const vmem_t *w_vmem; 16580Sstevel@tonic-gate size_t w_slab_align; 16590Sstevel@tonic-gate int w_slab_found; 16600Sstevel@tonic-gate int w_found; 16610Sstevel@tonic-gate int w_kmem_lite_count; 16620Sstevel@tonic-gate uint_t w_verbose; 16630Sstevel@tonic-gate uint_t w_freemem; 16640Sstevel@tonic-gate uint_t w_all; 16650Sstevel@tonic-gate uint_t w_bufctl; 16660Sstevel@tonic-gate uint_t w_idspace; 16670Sstevel@tonic-gate } whatis_t; 16680Sstevel@tonic-gate 16690Sstevel@tonic-gate static void 16700Sstevel@tonic-gate whatis_print_kmem(uintptr_t addr, uintptr_t baddr, whatis_t *w) 16710Sstevel@tonic-gate { 16720Sstevel@tonic-gate /* LINTED pointer cast may result in improper alignment */ 16730Sstevel@tonic-gate uintptr_t btaddr = (uintptr_t)KMEM_BUFTAG(w->w_cache, addr); 16740Sstevel@tonic-gate intptr_t stat; 16750Sstevel@tonic-gate int count = 0; 16760Sstevel@tonic-gate int i; 16770Sstevel@tonic-gate pc_t callers[16]; 16780Sstevel@tonic-gate 16790Sstevel@tonic-gate if (w->w_cache->cache_flags & KMF_REDZONE) { 16800Sstevel@tonic-gate kmem_buftag_t bt; 16810Sstevel@tonic-gate 16820Sstevel@tonic-gate if (mdb_vread(&bt, sizeof (bt), btaddr) == -1) 16830Sstevel@tonic-gate goto done; 16840Sstevel@tonic-gate 16850Sstevel@tonic-gate stat = (intptr_t)bt.bt_bufctl ^ bt.bt_bxstat; 16860Sstevel@tonic-gate 16870Sstevel@tonic-gate if (stat != KMEM_BUFTAG_ALLOC && stat != KMEM_BUFTAG_FREE) 16880Sstevel@tonic-gate goto done; 16890Sstevel@tonic-gate 16900Sstevel@tonic-gate /* 16910Sstevel@tonic-gate * provide the bufctl ptr if it has useful information 16920Sstevel@tonic-gate */ 16930Sstevel@tonic-gate if (baddr == 0 && (w->w_cache->cache_flags & KMF_AUDIT)) 16940Sstevel@tonic-gate baddr = (uintptr_t)bt.bt_bufctl; 16950Sstevel@tonic-gate 16960Sstevel@tonic-gate if (w->w_cache->cache_flags & KMF_LITE) { 16970Sstevel@tonic-gate count = w->w_kmem_lite_count; 16980Sstevel@tonic-gate 16990Sstevel@tonic-gate if (count * sizeof (pc_t) > sizeof (callers)) 17000Sstevel@tonic-gate count = 0; 17010Sstevel@tonic-gate 17020Sstevel@tonic-gate if (count > 0 && 17030Sstevel@tonic-gate mdb_vread(callers, count * sizeof (pc_t), 17040Sstevel@tonic-gate btaddr + 17050Sstevel@tonic-gate offsetof(kmem_buftag_lite_t, bt_history)) == -1) 17060Sstevel@tonic-gate count = 0; 17070Sstevel@tonic-gate 17080Sstevel@tonic-gate /* 17090Sstevel@tonic-gate * skip unused callers 17100Sstevel@tonic-gate */ 17110Sstevel@tonic-gate while (count > 0 && callers[count - 1] == 17120Sstevel@tonic-gate (pc_t)KMEM_UNINITIALIZED_PATTERN) 17130Sstevel@tonic-gate count--; 17140Sstevel@tonic-gate } 17150Sstevel@tonic-gate } 17160Sstevel@tonic-gate 17170Sstevel@tonic-gate done: 17180Sstevel@tonic-gate if (baddr == 0) 17190Sstevel@tonic-gate mdb_printf("%p is %p+%p, %s from %s\n", 17200Sstevel@tonic-gate w->w_addr, addr, w->w_addr - addr, 17210Sstevel@tonic-gate w->w_freemem == FALSE ? "allocated" : "freed", 17220Sstevel@tonic-gate w->w_cache->cache_name); 17230Sstevel@tonic-gate else 17240Sstevel@tonic-gate mdb_printf("%p is %p+%p, bufctl %p %s from %s\n", 17250Sstevel@tonic-gate w->w_addr, addr, w->w_addr - addr, baddr, 17260Sstevel@tonic-gate w->w_freemem == FALSE ? "allocated" : "freed", 17270Sstevel@tonic-gate w->w_cache->cache_name); 17280Sstevel@tonic-gate 17290Sstevel@tonic-gate if (count > 0) { 17300Sstevel@tonic-gate mdb_inc_indent(8); 17310Sstevel@tonic-gate mdb_printf("recent caller%s: %a%s", (count != 1)? "s":"", 17320Sstevel@tonic-gate callers[0], (count != 1)? ", ":"\n"); 17330Sstevel@tonic-gate for (i = 1; i < count; i++) 17340Sstevel@tonic-gate mdb_printf("%a%s", callers[i], 17350Sstevel@tonic-gate (i + 1 < count)? ", ":"\n"); 17360Sstevel@tonic-gate mdb_dec_indent(8); 17370Sstevel@tonic-gate } 17380Sstevel@tonic-gate } 17390Sstevel@tonic-gate 17400Sstevel@tonic-gate /*ARGSUSED*/ 17410Sstevel@tonic-gate static int 17420Sstevel@tonic-gate whatis_walk_kmem(uintptr_t addr, void *ignored, whatis_t *w) 17430Sstevel@tonic-gate { 17440Sstevel@tonic-gate if (w->w_addr < addr || w->w_addr >= addr + w->w_cache->cache_bufsize) 17450Sstevel@tonic-gate return (WALK_NEXT); 17460Sstevel@tonic-gate 17470Sstevel@tonic-gate whatis_print_kmem(addr, 0, w); 17480Sstevel@tonic-gate w->w_found++; 17490Sstevel@tonic-gate return (w->w_all == TRUE ? WALK_NEXT : WALK_DONE); 17500Sstevel@tonic-gate } 17510Sstevel@tonic-gate 17520Sstevel@tonic-gate static int 17530Sstevel@tonic-gate whatis_walk_seg(uintptr_t addr, const vmem_seg_t *vs, whatis_t *w) 17540Sstevel@tonic-gate { 17550Sstevel@tonic-gate if (w->w_addr < vs->vs_start || w->w_addr >= vs->vs_end) 17560Sstevel@tonic-gate return (WALK_NEXT); 17570Sstevel@tonic-gate 17580Sstevel@tonic-gate mdb_printf("%p is %p+%p ", w->w_addr, 17590Sstevel@tonic-gate vs->vs_start, w->w_addr - vs->vs_start); 17600Sstevel@tonic-gate 17610Sstevel@tonic-gate /* 17620Sstevel@tonic-gate * Always provide the vmem_seg pointer if it has a stack trace. 17630Sstevel@tonic-gate */ 17640Sstevel@tonic-gate if (w->w_bufctl == TRUE || 17650Sstevel@tonic-gate (vs->vs_type == VMEM_ALLOC && vs->vs_depth != 0)) { 17660Sstevel@tonic-gate mdb_printf("(vmem_seg %p) ", addr); 17670Sstevel@tonic-gate } 17680Sstevel@tonic-gate 17690Sstevel@tonic-gate mdb_printf("%sfrom %s vmem arena\n", w->w_freemem == TRUE ? 17700Sstevel@tonic-gate "freed " : "", w->w_vmem->vm_name); 17710Sstevel@tonic-gate 17720Sstevel@tonic-gate w->w_found++; 17730Sstevel@tonic-gate return (w->w_all == TRUE ? WALK_NEXT : WALK_DONE); 17740Sstevel@tonic-gate } 17750Sstevel@tonic-gate 17760Sstevel@tonic-gate static int 17770Sstevel@tonic-gate whatis_walk_vmem(uintptr_t addr, const vmem_t *vmem, whatis_t *w) 17780Sstevel@tonic-gate { 17790Sstevel@tonic-gate const char *nm = vmem->vm_name; 17800Sstevel@tonic-gate w->w_vmem = vmem; 17810Sstevel@tonic-gate w->w_freemem = FALSE; 17820Sstevel@tonic-gate 17830Sstevel@tonic-gate if (((vmem->vm_cflags & VMC_IDENTIFIER) != 0) ^ w->w_idspace) 17840Sstevel@tonic-gate return (WALK_NEXT); 17850Sstevel@tonic-gate 17860Sstevel@tonic-gate if (w->w_verbose) 17870Sstevel@tonic-gate mdb_printf("Searching vmem arena %s...\n", nm); 17880Sstevel@tonic-gate 17890Sstevel@tonic-gate if (mdb_pwalk("vmem_alloc", 17900Sstevel@tonic-gate (mdb_walk_cb_t)whatis_walk_seg, w, addr) == -1) { 17910Sstevel@tonic-gate mdb_warn("can't walk vmem seg for %p", addr); 17920Sstevel@tonic-gate return (WALK_NEXT); 17930Sstevel@tonic-gate } 17940Sstevel@tonic-gate 17950Sstevel@tonic-gate if (w->w_found && w->w_all == FALSE) 17960Sstevel@tonic-gate return (WALK_DONE); 17970Sstevel@tonic-gate 17980Sstevel@tonic-gate if (w->w_verbose) 17990Sstevel@tonic-gate mdb_printf("Searching vmem arena %s for free virtual...\n", nm); 18000Sstevel@tonic-gate 18010Sstevel@tonic-gate w->w_freemem = TRUE; 18020Sstevel@tonic-gate 18030Sstevel@tonic-gate if (mdb_pwalk("vmem_free", 18040Sstevel@tonic-gate (mdb_walk_cb_t)whatis_walk_seg, w, addr) == -1) { 18050Sstevel@tonic-gate mdb_warn("can't walk vmem seg for %p", addr); 18060Sstevel@tonic-gate return (WALK_NEXT); 18070Sstevel@tonic-gate } 18080Sstevel@tonic-gate 18090Sstevel@tonic-gate return (w->w_found && w->w_all == FALSE ? WALK_DONE : WALK_NEXT); 18100Sstevel@tonic-gate } 18110Sstevel@tonic-gate 18120Sstevel@tonic-gate /*ARGSUSED*/ 18130Sstevel@tonic-gate static int 18140Sstevel@tonic-gate whatis_walk_bufctl(uintptr_t baddr, const kmem_bufctl_t *bcp, whatis_t *w) 18150Sstevel@tonic-gate { 18160Sstevel@tonic-gate uintptr_t addr; 18170Sstevel@tonic-gate 18180Sstevel@tonic-gate if (bcp == NULL) 18190Sstevel@tonic-gate return (WALK_NEXT); 18200Sstevel@tonic-gate 18210Sstevel@tonic-gate addr = (uintptr_t)bcp->bc_addr; 18220Sstevel@tonic-gate 18230Sstevel@tonic-gate if (w->w_addr < addr || w->w_addr >= addr + w->w_cache->cache_bufsize) 18240Sstevel@tonic-gate return (WALK_NEXT); 18250Sstevel@tonic-gate 18260Sstevel@tonic-gate whatis_print_kmem(addr, baddr, w); 18270Sstevel@tonic-gate w->w_found++; 18280Sstevel@tonic-gate return (w->w_all == TRUE ? WALK_NEXT : WALK_DONE); 18290Sstevel@tonic-gate } 18300Sstevel@tonic-gate 18310Sstevel@tonic-gate /*ARGSUSED*/ 18320Sstevel@tonic-gate static int 18330Sstevel@tonic-gate whatis_walk_slab(uintptr_t saddr, const kmem_slab_t *sp, whatis_t *w) 18340Sstevel@tonic-gate { 18350Sstevel@tonic-gate uintptr_t base = P2ALIGN((uintptr_t)sp->slab_base, w->w_slab_align); 18360Sstevel@tonic-gate 18370Sstevel@tonic-gate if ((w->w_addr - base) >= w->w_cache->cache_slabsize) 18380Sstevel@tonic-gate return (WALK_NEXT); 18390Sstevel@tonic-gate 18400Sstevel@tonic-gate w->w_slab_found++; 18410Sstevel@tonic-gate return (WALK_DONE); 18420Sstevel@tonic-gate } 18430Sstevel@tonic-gate 18440Sstevel@tonic-gate static int 18450Sstevel@tonic-gate whatis_walk_cache(uintptr_t addr, const kmem_cache_t *c, whatis_t *w) 18460Sstevel@tonic-gate { 18470Sstevel@tonic-gate char *walk, *freewalk; 18480Sstevel@tonic-gate mdb_walk_cb_t func; 18490Sstevel@tonic-gate vmem_t *vmp = c->cache_arena; 18500Sstevel@tonic-gate 18510Sstevel@tonic-gate if (((c->cache_flags & VMC_IDENTIFIER) != 0) ^ w->w_idspace) 18520Sstevel@tonic-gate return (WALK_NEXT); 18530Sstevel@tonic-gate 18540Sstevel@tonic-gate if (w->w_bufctl == FALSE) { 18550Sstevel@tonic-gate walk = "kmem"; 18560Sstevel@tonic-gate freewalk = "freemem"; 18570Sstevel@tonic-gate func = (mdb_walk_cb_t)whatis_walk_kmem; 18580Sstevel@tonic-gate } else { 18590Sstevel@tonic-gate walk = "bufctl"; 18600Sstevel@tonic-gate freewalk = "freectl"; 18610Sstevel@tonic-gate func = (mdb_walk_cb_t)whatis_walk_bufctl; 18620Sstevel@tonic-gate } 18630Sstevel@tonic-gate 18640Sstevel@tonic-gate w->w_cache = c; 18650Sstevel@tonic-gate 18660Sstevel@tonic-gate if (w->w_verbose) 18670Sstevel@tonic-gate mdb_printf("Searching %s's slabs...\n", c->cache_name); 18680Sstevel@tonic-gate 18690Sstevel@tonic-gate /* 18700Sstevel@tonic-gate * Verify that the address is in one of the cache's slabs. If not, 18710Sstevel@tonic-gate * we can skip the more expensive walkers. (this is purely a 18720Sstevel@tonic-gate * heuristic -- as long as there are no false-negatives, we'll be fine) 18730Sstevel@tonic-gate * 18740Sstevel@tonic-gate * We try to get the cache's arena's quantum, since to accurately 18750Sstevel@tonic-gate * get the base of a slab, you have to align it to the quantum. If 18760Sstevel@tonic-gate * it doesn't look sensible, we fall back to not aligning. 18770Sstevel@tonic-gate */ 18780Sstevel@tonic-gate if (mdb_vread(&w->w_slab_align, sizeof (w->w_slab_align), 18790Sstevel@tonic-gate (uintptr_t)&vmp->vm_quantum) == -1) { 18800Sstevel@tonic-gate mdb_warn("unable to read %p->cache_arena->vm_quantum", c); 18810Sstevel@tonic-gate w->w_slab_align = 1; 18820Sstevel@tonic-gate } 18830Sstevel@tonic-gate 18840Sstevel@tonic-gate if ((c->cache_slabsize < w->w_slab_align) || w->w_slab_align == 0 || 18850Sstevel@tonic-gate (w->w_slab_align & (w->w_slab_align - 1))) { 18860Sstevel@tonic-gate mdb_warn("%p's arena has invalid quantum (0x%p)\n", c, 18870Sstevel@tonic-gate w->w_slab_align); 18880Sstevel@tonic-gate w->w_slab_align = 1; 18890Sstevel@tonic-gate } 18900Sstevel@tonic-gate 18910Sstevel@tonic-gate w->w_slab_found = 0; 18920Sstevel@tonic-gate if (mdb_pwalk("kmem_slab", (mdb_walk_cb_t)whatis_walk_slab, w, 18930Sstevel@tonic-gate addr) == -1) { 18940Sstevel@tonic-gate mdb_warn("can't find kmem_slab walker"); 18950Sstevel@tonic-gate return (WALK_DONE); 18960Sstevel@tonic-gate } 18970Sstevel@tonic-gate if (w->w_slab_found == 0) 18980Sstevel@tonic-gate return (WALK_NEXT); 18990Sstevel@tonic-gate 19000Sstevel@tonic-gate if (c->cache_flags & KMF_LITE) { 19010Sstevel@tonic-gate if (mdb_readvar(&w->w_kmem_lite_count, 19020Sstevel@tonic-gate "kmem_lite_count") == -1 || w->w_kmem_lite_count > 16) 19030Sstevel@tonic-gate w->w_kmem_lite_count = 0; 19040Sstevel@tonic-gate } 19050Sstevel@tonic-gate 19060Sstevel@tonic-gate if (w->w_verbose) 19070Sstevel@tonic-gate mdb_printf("Searching %s...\n", c->cache_name); 19080Sstevel@tonic-gate 19090Sstevel@tonic-gate w->w_freemem = FALSE; 19100Sstevel@tonic-gate 19110Sstevel@tonic-gate if (mdb_pwalk(walk, func, w, addr) == -1) { 19120Sstevel@tonic-gate mdb_warn("can't find %s walker", walk); 19130Sstevel@tonic-gate return (WALK_DONE); 19140Sstevel@tonic-gate } 19150Sstevel@tonic-gate 19160Sstevel@tonic-gate if (w->w_found && w->w_all == FALSE) 19170Sstevel@tonic-gate return (WALK_DONE); 19180Sstevel@tonic-gate 19190Sstevel@tonic-gate /* 19200Sstevel@tonic-gate * We have searched for allocated memory; now search for freed memory. 19210Sstevel@tonic-gate */ 19220Sstevel@tonic-gate if (w->w_verbose) 19230Sstevel@tonic-gate mdb_printf("Searching %s for free memory...\n", c->cache_name); 19240Sstevel@tonic-gate 19250Sstevel@tonic-gate w->w_freemem = TRUE; 19260Sstevel@tonic-gate 19270Sstevel@tonic-gate if (mdb_pwalk(freewalk, func, w, addr) == -1) { 19280Sstevel@tonic-gate mdb_warn("can't find %s walker", freewalk); 19290Sstevel@tonic-gate return (WALK_DONE); 19300Sstevel@tonic-gate } 19310Sstevel@tonic-gate 19320Sstevel@tonic-gate return (w->w_found && w->w_all == FALSE ? WALK_DONE : WALK_NEXT); 19330Sstevel@tonic-gate } 19340Sstevel@tonic-gate 19350Sstevel@tonic-gate static int 19360Sstevel@tonic-gate whatis_walk_touch(uintptr_t addr, const kmem_cache_t *c, whatis_t *w) 19370Sstevel@tonic-gate { 19380Sstevel@tonic-gate if (c->cache_cflags & KMC_NOTOUCH) 19390Sstevel@tonic-gate return (WALK_NEXT); 19400Sstevel@tonic-gate 19410Sstevel@tonic-gate return (whatis_walk_cache(addr, c, w)); 19420Sstevel@tonic-gate } 19430Sstevel@tonic-gate 19440Sstevel@tonic-gate static int 19450Sstevel@tonic-gate whatis_walk_notouch(uintptr_t addr, const kmem_cache_t *c, whatis_t *w) 19460Sstevel@tonic-gate { 19470Sstevel@tonic-gate if (!(c->cache_cflags & KMC_NOTOUCH)) 19480Sstevel@tonic-gate return (WALK_NEXT); 19490Sstevel@tonic-gate 19500Sstevel@tonic-gate return (whatis_walk_cache(addr, c, w)); 19510Sstevel@tonic-gate } 19520Sstevel@tonic-gate 19530Sstevel@tonic-gate static int 19540Sstevel@tonic-gate whatis_walk_thread(uintptr_t addr, const kthread_t *t, whatis_t *w) 19550Sstevel@tonic-gate { 19560Sstevel@tonic-gate /* 19570Sstevel@tonic-gate * Often, one calls ::whatis on an address from a thread structure. 19580Sstevel@tonic-gate * We use this opportunity to short circuit this case... 19590Sstevel@tonic-gate */ 19600Sstevel@tonic-gate if (w->w_addr >= addr && w->w_addr < addr + sizeof (kthread_t)) { 19610Sstevel@tonic-gate mdb_printf("%p is %p+%p, allocated as a thread structure\n", 19620Sstevel@tonic-gate w->w_addr, addr, w->w_addr - addr); 19630Sstevel@tonic-gate w->w_found++; 19640Sstevel@tonic-gate return (w->w_all == TRUE ? WALK_NEXT : WALK_DONE); 19650Sstevel@tonic-gate } 19660Sstevel@tonic-gate 19670Sstevel@tonic-gate if (w->w_addr < (uintptr_t)t->t_stkbase || 19680Sstevel@tonic-gate w->w_addr > (uintptr_t)t->t_stk) 19690Sstevel@tonic-gate return (WALK_NEXT); 19700Sstevel@tonic-gate 19710Sstevel@tonic-gate if (t->t_stkbase == NULL) 19720Sstevel@tonic-gate return (WALK_NEXT); 19730Sstevel@tonic-gate 19740Sstevel@tonic-gate mdb_printf("%p is in thread %p's stack%s\n", w->w_addr, addr, 19750Sstevel@tonic-gate stack_active(t, w->w_addr)); 19760Sstevel@tonic-gate 19770Sstevel@tonic-gate w->w_found++; 19780Sstevel@tonic-gate return (w->w_all == TRUE ? WALK_NEXT : WALK_DONE); 19790Sstevel@tonic-gate } 19800Sstevel@tonic-gate 19810Sstevel@tonic-gate static int 19820Sstevel@tonic-gate whatis_walk_modctl(uintptr_t addr, const struct modctl *m, whatis_t *w) 19830Sstevel@tonic-gate { 19840Sstevel@tonic-gate struct module mod; 19850Sstevel@tonic-gate char name[MODMAXNAMELEN], *where; 19860Sstevel@tonic-gate char c[MDB_SYM_NAMLEN]; 19870Sstevel@tonic-gate Shdr shdr; 19880Sstevel@tonic-gate GElf_Sym sym; 19890Sstevel@tonic-gate 19900Sstevel@tonic-gate if (m->mod_mp == NULL) 19910Sstevel@tonic-gate return (WALK_NEXT); 19920Sstevel@tonic-gate 19930Sstevel@tonic-gate if (mdb_vread(&mod, sizeof (mod), (uintptr_t)m->mod_mp) == -1) { 19940Sstevel@tonic-gate mdb_warn("couldn't read modctl %p's module", addr); 19950Sstevel@tonic-gate return (WALK_NEXT); 19960Sstevel@tonic-gate } 19970Sstevel@tonic-gate 19980Sstevel@tonic-gate if (w->w_addr >= (uintptr_t)mod.text && 19990Sstevel@tonic-gate w->w_addr < (uintptr_t)mod.text + mod.text_size) { 20000Sstevel@tonic-gate where = "text segment"; 20010Sstevel@tonic-gate goto found; 20020Sstevel@tonic-gate } 20030Sstevel@tonic-gate 20040Sstevel@tonic-gate if (w->w_addr >= (uintptr_t)mod.data && 20050Sstevel@tonic-gate w->w_addr < (uintptr_t)mod.data + mod.data_size) { 20060Sstevel@tonic-gate where = "data segment"; 20070Sstevel@tonic-gate goto found; 20080Sstevel@tonic-gate } 20090Sstevel@tonic-gate 20100Sstevel@tonic-gate if (w->w_addr >= (uintptr_t)mod.bss && 20110Sstevel@tonic-gate w->w_addr < (uintptr_t)mod.bss + mod.bss_size) { 20120Sstevel@tonic-gate where = "bss"; 20130Sstevel@tonic-gate goto found; 20140Sstevel@tonic-gate } 20150Sstevel@tonic-gate 20160Sstevel@tonic-gate if (mdb_vread(&shdr, sizeof (shdr), (uintptr_t)mod.symhdr) == -1) { 20170Sstevel@tonic-gate mdb_warn("couldn't read symbol header for %p's module", addr); 20180Sstevel@tonic-gate return (WALK_NEXT); 20190Sstevel@tonic-gate } 20200Sstevel@tonic-gate 20210Sstevel@tonic-gate if (w->w_addr >= (uintptr_t)mod.symtbl && w->w_addr < 20220Sstevel@tonic-gate (uintptr_t)mod.symtbl + (uintptr_t)mod.nsyms * shdr.sh_entsize) { 20230Sstevel@tonic-gate where = "symtab"; 20240Sstevel@tonic-gate goto found; 20250Sstevel@tonic-gate } 20260Sstevel@tonic-gate 20270Sstevel@tonic-gate if (w->w_addr >= (uintptr_t)mod.symspace && 20280Sstevel@tonic-gate w->w_addr < (uintptr_t)mod.symspace + (uintptr_t)mod.symsize) { 20290Sstevel@tonic-gate where = "symspace"; 20300Sstevel@tonic-gate goto found; 20310Sstevel@tonic-gate } 20320Sstevel@tonic-gate 20330Sstevel@tonic-gate return (WALK_NEXT); 20340Sstevel@tonic-gate 20350Sstevel@tonic-gate found: 20360Sstevel@tonic-gate if (mdb_readstr(name, sizeof (name), (uintptr_t)m->mod_modname) == -1) 20370Sstevel@tonic-gate (void) mdb_snprintf(name, sizeof (name), "0x%p", addr); 20380Sstevel@tonic-gate 20390Sstevel@tonic-gate mdb_printf("%p is ", w->w_addr); 20400Sstevel@tonic-gate 20410Sstevel@tonic-gate /* 20420Sstevel@tonic-gate * If we found this address in a module, then there's a chance that 20430Sstevel@tonic-gate * it's actually a named symbol. Try the symbol lookup. 20440Sstevel@tonic-gate */ 20450Sstevel@tonic-gate if (mdb_lookup_by_addr(w->w_addr, MDB_SYM_FUZZY, c, sizeof (c), 20460Sstevel@tonic-gate &sym) != -1 && w->w_addr >= (uintptr_t)sym.st_value && 20470Sstevel@tonic-gate w->w_addr < (uintptr_t)sym.st_value + sym.st_size) { 20480Sstevel@tonic-gate mdb_printf("%s+%lx ", c, w->w_addr - (uintptr_t)sym.st_value); 20490Sstevel@tonic-gate } 20500Sstevel@tonic-gate 20510Sstevel@tonic-gate mdb_printf("in %s's %s\n", name, where); 20520Sstevel@tonic-gate 20530Sstevel@tonic-gate w->w_found++; 20540Sstevel@tonic-gate return (w->w_all == TRUE ? WALK_NEXT : WALK_DONE); 20550Sstevel@tonic-gate } 20560Sstevel@tonic-gate 20570Sstevel@tonic-gate /*ARGSUSED*/ 20580Sstevel@tonic-gate static int 20590Sstevel@tonic-gate whatis_walk_page(uintptr_t addr, const void *ignored, whatis_t *w) 20600Sstevel@tonic-gate { 20610Sstevel@tonic-gate static int machsize = 0; 20620Sstevel@tonic-gate mdb_ctf_id_t id; 20630Sstevel@tonic-gate 20640Sstevel@tonic-gate if (machsize == 0) { 20650Sstevel@tonic-gate if (mdb_ctf_lookup_by_name("unix`page_t", &id) == 0) 20660Sstevel@tonic-gate machsize = mdb_ctf_type_size(id); 20670Sstevel@tonic-gate else { 20680Sstevel@tonic-gate mdb_warn("could not get size of page_t"); 20690Sstevel@tonic-gate machsize = sizeof (page_t); 20700Sstevel@tonic-gate } 20710Sstevel@tonic-gate } 20720Sstevel@tonic-gate 20730Sstevel@tonic-gate if (w->w_addr < addr || w->w_addr >= addr + machsize) 20740Sstevel@tonic-gate return (WALK_NEXT); 20750Sstevel@tonic-gate 20760Sstevel@tonic-gate mdb_printf("%p is %p+%p, allocated as a page structure\n", 20770Sstevel@tonic-gate w->w_addr, addr, w->w_addr - addr); 20780Sstevel@tonic-gate 20790Sstevel@tonic-gate w->w_found++; 20800Sstevel@tonic-gate return (w->w_all == TRUE ? WALK_NEXT : WALK_DONE); 20810Sstevel@tonic-gate } 20820Sstevel@tonic-gate 20830Sstevel@tonic-gate int 20840Sstevel@tonic-gate whatis(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 20850Sstevel@tonic-gate { 20860Sstevel@tonic-gate whatis_t w; 20870Sstevel@tonic-gate 20880Sstevel@tonic-gate if (!(flags & DCMD_ADDRSPEC)) 20890Sstevel@tonic-gate return (DCMD_USAGE); 20900Sstevel@tonic-gate 20910Sstevel@tonic-gate w.w_verbose = FALSE; 20920Sstevel@tonic-gate w.w_bufctl = FALSE; 20930Sstevel@tonic-gate w.w_all = FALSE; 20940Sstevel@tonic-gate w.w_idspace = FALSE; 20950Sstevel@tonic-gate 20960Sstevel@tonic-gate if (mdb_getopts(argc, argv, 20970Sstevel@tonic-gate 'v', MDB_OPT_SETBITS, TRUE, &w.w_verbose, 20980Sstevel@tonic-gate 'a', MDB_OPT_SETBITS, TRUE, &w.w_all, 20990Sstevel@tonic-gate 'i', MDB_OPT_SETBITS, TRUE, &w.w_idspace, 21000Sstevel@tonic-gate 'b', MDB_OPT_SETBITS, TRUE, &w.w_bufctl, NULL) != argc) 21010Sstevel@tonic-gate return (DCMD_USAGE); 21020Sstevel@tonic-gate 21030Sstevel@tonic-gate w.w_addr = addr; 21040Sstevel@tonic-gate w.w_found = 0; 21050Sstevel@tonic-gate 21060Sstevel@tonic-gate if (w.w_verbose) 21070Sstevel@tonic-gate mdb_printf("Searching modules...\n"); 21080Sstevel@tonic-gate 21090Sstevel@tonic-gate if (!w.w_idspace) { 21100Sstevel@tonic-gate if (mdb_walk("modctl", (mdb_walk_cb_t)whatis_walk_modctl, &w) 21110Sstevel@tonic-gate == -1) { 21120Sstevel@tonic-gate mdb_warn("couldn't find modctl walker"); 21130Sstevel@tonic-gate return (DCMD_ERR); 21140Sstevel@tonic-gate } 21150Sstevel@tonic-gate 21160Sstevel@tonic-gate if (w.w_found && w.w_all == FALSE) 21170Sstevel@tonic-gate return (DCMD_OK); 21180Sstevel@tonic-gate 21190Sstevel@tonic-gate /* 21200Sstevel@tonic-gate * Now search all thread stacks. Yes, this is a little weak; we 21210Sstevel@tonic-gate * can save a lot of work by first checking to see if the 21220Sstevel@tonic-gate * address is in segkp vs. segkmem. But hey, computers are 21230Sstevel@tonic-gate * fast. 21240Sstevel@tonic-gate */ 21250Sstevel@tonic-gate if (w.w_verbose) 21260Sstevel@tonic-gate mdb_printf("Searching threads...\n"); 21270Sstevel@tonic-gate 21280Sstevel@tonic-gate if (mdb_walk("thread", (mdb_walk_cb_t)whatis_walk_thread, &w) 21290Sstevel@tonic-gate == -1) { 21300Sstevel@tonic-gate mdb_warn("couldn't find thread walker"); 21310Sstevel@tonic-gate return (DCMD_ERR); 21320Sstevel@tonic-gate } 21330Sstevel@tonic-gate 21340Sstevel@tonic-gate if (w.w_found && w.w_all == FALSE) 21350Sstevel@tonic-gate return (DCMD_OK); 21360Sstevel@tonic-gate 21370Sstevel@tonic-gate if (w.w_verbose) 21380Sstevel@tonic-gate mdb_printf("Searching page structures...\n"); 21390Sstevel@tonic-gate 21400Sstevel@tonic-gate if (mdb_walk("page", (mdb_walk_cb_t)whatis_walk_page, &w) 21410Sstevel@tonic-gate == -1) { 21420Sstevel@tonic-gate mdb_warn("couldn't find page walker"); 21430Sstevel@tonic-gate return (DCMD_ERR); 21440Sstevel@tonic-gate } 21450Sstevel@tonic-gate 21460Sstevel@tonic-gate if (w.w_found && w.w_all == FALSE) 21470Sstevel@tonic-gate return (DCMD_OK); 21480Sstevel@tonic-gate } 21490Sstevel@tonic-gate 21500Sstevel@tonic-gate if (mdb_walk("kmem_cache", 21510Sstevel@tonic-gate (mdb_walk_cb_t)whatis_walk_touch, &w) == -1) { 21520Sstevel@tonic-gate mdb_warn("couldn't find kmem_cache walker"); 21530Sstevel@tonic-gate return (DCMD_ERR); 21540Sstevel@tonic-gate } 21550Sstevel@tonic-gate 21560Sstevel@tonic-gate if (w.w_found && w.w_all == FALSE) 21570Sstevel@tonic-gate return (DCMD_OK); 21580Sstevel@tonic-gate 21590Sstevel@tonic-gate if (mdb_walk("kmem_cache", 21600Sstevel@tonic-gate (mdb_walk_cb_t)whatis_walk_notouch, &w) == -1) { 21610Sstevel@tonic-gate mdb_warn("couldn't find kmem_cache walker"); 21620Sstevel@tonic-gate return (DCMD_ERR); 21630Sstevel@tonic-gate } 21640Sstevel@tonic-gate 21650Sstevel@tonic-gate if (w.w_found && w.w_all == FALSE) 21660Sstevel@tonic-gate return (DCMD_OK); 21670Sstevel@tonic-gate 21680Sstevel@tonic-gate if (mdb_walk("vmem_postfix", 21690Sstevel@tonic-gate (mdb_walk_cb_t)whatis_walk_vmem, &w) == -1) { 21700Sstevel@tonic-gate mdb_warn("couldn't find vmem_postfix walker"); 21710Sstevel@tonic-gate return (DCMD_ERR); 21720Sstevel@tonic-gate } 21730Sstevel@tonic-gate 21740Sstevel@tonic-gate if (w.w_found == 0) 21750Sstevel@tonic-gate mdb_printf("%p is unknown\n", addr); 21760Sstevel@tonic-gate 21770Sstevel@tonic-gate return (DCMD_OK); 21780Sstevel@tonic-gate } 21790Sstevel@tonic-gate 21800Sstevel@tonic-gate void 21810Sstevel@tonic-gate whatis_help(void) 21820Sstevel@tonic-gate { 21830Sstevel@tonic-gate mdb_printf( 21840Sstevel@tonic-gate "Given a virtual address, attempt to determine where it came\n" 21850Sstevel@tonic-gate "from.\n" 21860Sstevel@tonic-gate "\n" 21870Sstevel@tonic-gate "\t-v\tVerbose output; display caches/arenas/etc as they are\n" 21880Sstevel@tonic-gate "\t\tsearched\n" 21890Sstevel@tonic-gate "\t-a\tFind all possible sources. Default behavior is to stop at\n" 21900Sstevel@tonic-gate "\t\tthe first (most specific) source.\n" 21910Sstevel@tonic-gate "\t-i\tSearch only identifier arenas and caches. By default\n" 21920Sstevel@tonic-gate "\t\tthese are ignored.\n" 21930Sstevel@tonic-gate "\t-b\tReport bufctls and vmem_segs for matches in kmem and vmem,\n" 21940Sstevel@tonic-gate "\t\trespectively. Warning: if the buffer exists, but does not\n" 21950Sstevel@tonic-gate "\t\thave a bufctl, it will not be reported.\n"); 21960Sstevel@tonic-gate } 21970Sstevel@tonic-gate 21980Sstevel@tonic-gate typedef struct kmem_log_cpu { 21990Sstevel@tonic-gate uintptr_t kmc_low; 22000Sstevel@tonic-gate uintptr_t kmc_high; 22010Sstevel@tonic-gate } kmem_log_cpu_t; 22020Sstevel@tonic-gate 22030Sstevel@tonic-gate typedef struct kmem_log_data { 22040Sstevel@tonic-gate uintptr_t kmd_addr; 22050Sstevel@tonic-gate kmem_log_cpu_t *kmd_cpu; 22060Sstevel@tonic-gate } kmem_log_data_t; 22070Sstevel@tonic-gate 22080Sstevel@tonic-gate int 22090Sstevel@tonic-gate kmem_log_walk(uintptr_t addr, const kmem_bufctl_audit_t *b, 22100Sstevel@tonic-gate kmem_log_data_t *kmd) 22110Sstevel@tonic-gate { 22120Sstevel@tonic-gate int i; 22130Sstevel@tonic-gate kmem_log_cpu_t *kmc = kmd->kmd_cpu; 22140Sstevel@tonic-gate size_t bufsize; 22150Sstevel@tonic-gate 22160Sstevel@tonic-gate for (i = 0; i < NCPU; i++) { 22170Sstevel@tonic-gate if (addr >= kmc[i].kmc_low && addr < kmc[i].kmc_high) 22180Sstevel@tonic-gate break; 22190Sstevel@tonic-gate } 22200Sstevel@tonic-gate 22210Sstevel@tonic-gate if (kmd->kmd_addr) { 22220Sstevel@tonic-gate if (b->bc_cache == NULL) 22230Sstevel@tonic-gate return (WALK_NEXT); 22240Sstevel@tonic-gate 22250Sstevel@tonic-gate if (mdb_vread(&bufsize, sizeof (bufsize), 22260Sstevel@tonic-gate (uintptr_t)&b->bc_cache->cache_bufsize) == -1) { 22270Sstevel@tonic-gate mdb_warn( 22280Sstevel@tonic-gate "failed to read cache_bufsize for cache at %p", 22290Sstevel@tonic-gate b->bc_cache); 22300Sstevel@tonic-gate return (WALK_ERR); 22310Sstevel@tonic-gate } 22320Sstevel@tonic-gate 22330Sstevel@tonic-gate if (kmd->kmd_addr < (uintptr_t)b->bc_addr || 22340Sstevel@tonic-gate kmd->kmd_addr >= (uintptr_t)b->bc_addr + bufsize) 22350Sstevel@tonic-gate return (WALK_NEXT); 22360Sstevel@tonic-gate } 22370Sstevel@tonic-gate 22380Sstevel@tonic-gate if (i == NCPU) 22390Sstevel@tonic-gate mdb_printf(" "); 22400Sstevel@tonic-gate else 22410Sstevel@tonic-gate mdb_printf("%3d", i); 22420Sstevel@tonic-gate 22430Sstevel@tonic-gate mdb_printf(" %0?p %0?p %16llx %0?p\n", addr, b->bc_addr, 22440Sstevel@tonic-gate b->bc_timestamp, b->bc_thread); 22450Sstevel@tonic-gate 22460Sstevel@tonic-gate return (WALK_NEXT); 22470Sstevel@tonic-gate } 22480Sstevel@tonic-gate 22490Sstevel@tonic-gate /*ARGSUSED*/ 22500Sstevel@tonic-gate int 22510Sstevel@tonic-gate kmem_log(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 22520Sstevel@tonic-gate { 22530Sstevel@tonic-gate kmem_log_header_t lh; 22540Sstevel@tonic-gate kmem_cpu_log_header_t clh; 22550Sstevel@tonic-gate uintptr_t lhp, clhp; 22560Sstevel@tonic-gate int ncpus; 22570Sstevel@tonic-gate uintptr_t *cpu; 22580Sstevel@tonic-gate GElf_Sym sym; 22590Sstevel@tonic-gate kmem_log_cpu_t *kmc; 22600Sstevel@tonic-gate int i; 22610Sstevel@tonic-gate kmem_log_data_t kmd; 22620Sstevel@tonic-gate uint_t opt_b = FALSE; 22630Sstevel@tonic-gate 22640Sstevel@tonic-gate if (mdb_getopts(argc, argv, 22650Sstevel@tonic-gate 'b', MDB_OPT_SETBITS, TRUE, &opt_b, NULL) != argc) 22660Sstevel@tonic-gate return (DCMD_USAGE); 22670Sstevel@tonic-gate 22680Sstevel@tonic-gate if (mdb_readvar(&lhp, "kmem_transaction_log") == -1) { 22690Sstevel@tonic-gate mdb_warn("failed to read 'kmem_transaction_log'"); 22700Sstevel@tonic-gate return (DCMD_ERR); 22710Sstevel@tonic-gate } 22720Sstevel@tonic-gate 22730Sstevel@tonic-gate if (lhp == NULL) { 22740Sstevel@tonic-gate mdb_warn("no kmem transaction log\n"); 22750Sstevel@tonic-gate return (DCMD_ERR); 22760Sstevel@tonic-gate } 22770Sstevel@tonic-gate 22780Sstevel@tonic-gate mdb_readvar(&ncpus, "ncpus"); 22790Sstevel@tonic-gate 22800Sstevel@tonic-gate if (mdb_vread(&lh, sizeof (kmem_log_header_t), lhp) == -1) { 22810Sstevel@tonic-gate mdb_warn("failed to read log header at %p", lhp); 22820Sstevel@tonic-gate return (DCMD_ERR); 22830Sstevel@tonic-gate } 22840Sstevel@tonic-gate 22850Sstevel@tonic-gate clhp = lhp + ((uintptr_t)&lh.lh_cpu[0] - (uintptr_t)&lh); 22860Sstevel@tonic-gate 22870Sstevel@tonic-gate cpu = mdb_alloc(sizeof (uintptr_t) * NCPU, UM_SLEEP | UM_GC); 22880Sstevel@tonic-gate 22890Sstevel@tonic-gate if (mdb_lookup_by_name("cpu", &sym) == -1) { 22900Sstevel@tonic-gate mdb_warn("couldn't find 'cpu' array"); 22910Sstevel@tonic-gate return (DCMD_ERR); 22920Sstevel@tonic-gate } 22930Sstevel@tonic-gate 22940Sstevel@tonic-gate if (sym.st_size != NCPU * sizeof (uintptr_t)) { 22950Sstevel@tonic-gate mdb_warn("expected 'cpu' to be of size %d; found %d\n", 22960Sstevel@tonic-gate NCPU * sizeof (uintptr_t), sym.st_size); 22970Sstevel@tonic-gate return (DCMD_ERR); 22980Sstevel@tonic-gate } 22990Sstevel@tonic-gate 23000Sstevel@tonic-gate if (mdb_vread(cpu, sym.st_size, (uintptr_t)sym.st_value) == -1) { 23010Sstevel@tonic-gate mdb_warn("failed to read cpu array at %p", sym.st_value); 23020Sstevel@tonic-gate return (DCMD_ERR); 23030Sstevel@tonic-gate } 23040Sstevel@tonic-gate 23050Sstevel@tonic-gate kmc = mdb_zalloc(sizeof (kmem_log_cpu_t) * NCPU, UM_SLEEP | UM_GC); 23060Sstevel@tonic-gate kmd.kmd_addr = NULL; 23070Sstevel@tonic-gate kmd.kmd_cpu = kmc; 23080Sstevel@tonic-gate 23090Sstevel@tonic-gate for (i = 0; i < NCPU; i++) { 23100Sstevel@tonic-gate 23110Sstevel@tonic-gate if (cpu[i] == NULL) 23120Sstevel@tonic-gate continue; 23130Sstevel@tonic-gate 23140Sstevel@tonic-gate if (mdb_vread(&clh, sizeof (clh), clhp) == -1) { 23150Sstevel@tonic-gate mdb_warn("cannot read cpu %d's log header at %p", 23160Sstevel@tonic-gate i, clhp); 23170Sstevel@tonic-gate return (DCMD_ERR); 23180Sstevel@tonic-gate } 23190Sstevel@tonic-gate 23200Sstevel@tonic-gate kmc[i].kmc_low = clh.clh_chunk * lh.lh_chunksize + 23210Sstevel@tonic-gate (uintptr_t)lh.lh_base; 23220Sstevel@tonic-gate kmc[i].kmc_high = (uintptr_t)clh.clh_current; 23230Sstevel@tonic-gate 23240Sstevel@tonic-gate clhp += sizeof (kmem_cpu_log_header_t); 23250Sstevel@tonic-gate } 23260Sstevel@tonic-gate 23270Sstevel@tonic-gate mdb_printf("%3s %-?s %-?s %16s %-?s\n", "CPU", "ADDR", "BUFADDR", 23280Sstevel@tonic-gate "TIMESTAMP", "THREAD"); 23290Sstevel@tonic-gate 23300Sstevel@tonic-gate /* 23310Sstevel@tonic-gate * If we have been passed an address, print out only log entries 23320Sstevel@tonic-gate * corresponding to that address. If opt_b is specified, then interpret 23330Sstevel@tonic-gate * the address as a bufctl. 23340Sstevel@tonic-gate */ 23350Sstevel@tonic-gate if (flags & DCMD_ADDRSPEC) { 23360Sstevel@tonic-gate kmem_bufctl_audit_t b; 23370Sstevel@tonic-gate 23380Sstevel@tonic-gate if (opt_b) { 23390Sstevel@tonic-gate kmd.kmd_addr = addr; 23400Sstevel@tonic-gate } else { 23410Sstevel@tonic-gate if (mdb_vread(&b, 23420Sstevel@tonic-gate sizeof (kmem_bufctl_audit_t), addr) == -1) { 23430Sstevel@tonic-gate mdb_warn("failed to read bufctl at %p", addr); 23440Sstevel@tonic-gate return (DCMD_ERR); 23450Sstevel@tonic-gate } 23460Sstevel@tonic-gate 23470Sstevel@tonic-gate (void) kmem_log_walk(addr, &b, &kmd); 23480Sstevel@tonic-gate 23490Sstevel@tonic-gate return (DCMD_OK); 23500Sstevel@tonic-gate } 23510Sstevel@tonic-gate } 23520Sstevel@tonic-gate 23530Sstevel@tonic-gate if (mdb_walk("kmem_log", (mdb_walk_cb_t)kmem_log_walk, &kmd) == -1) { 23540Sstevel@tonic-gate mdb_warn("can't find kmem log walker"); 23550Sstevel@tonic-gate return (DCMD_ERR); 23560Sstevel@tonic-gate } 23570Sstevel@tonic-gate 23580Sstevel@tonic-gate return (DCMD_OK); 23590Sstevel@tonic-gate } 23600Sstevel@tonic-gate 23610Sstevel@tonic-gate typedef struct bufctl_history_cb { 23620Sstevel@tonic-gate int bhc_flags; 23630Sstevel@tonic-gate int bhc_argc; 23640Sstevel@tonic-gate const mdb_arg_t *bhc_argv; 23650Sstevel@tonic-gate int bhc_ret; 23660Sstevel@tonic-gate } bufctl_history_cb_t; 23670Sstevel@tonic-gate 23680Sstevel@tonic-gate /*ARGSUSED*/ 23690Sstevel@tonic-gate static int 23700Sstevel@tonic-gate bufctl_history_callback(uintptr_t addr, const void *ign, void *arg) 23710Sstevel@tonic-gate { 23720Sstevel@tonic-gate bufctl_history_cb_t *bhc = arg; 23730Sstevel@tonic-gate 23740Sstevel@tonic-gate bhc->bhc_ret = 23750Sstevel@tonic-gate bufctl(addr, bhc->bhc_flags, bhc->bhc_argc, bhc->bhc_argv); 23760Sstevel@tonic-gate 23770Sstevel@tonic-gate bhc->bhc_flags &= ~DCMD_LOOPFIRST; 23780Sstevel@tonic-gate 23790Sstevel@tonic-gate return ((bhc->bhc_ret == DCMD_OK)? WALK_NEXT : WALK_DONE); 23800Sstevel@tonic-gate } 23810Sstevel@tonic-gate 23820Sstevel@tonic-gate void 23830Sstevel@tonic-gate bufctl_help(void) 23840Sstevel@tonic-gate { 23850Sstevel@tonic-gate mdb_printf("%s\n", 23860Sstevel@tonic-gate "Display the contents of kmem_bufctl_audit_ts, with optional filtering.\n"); 23870Sstevel@tonic-gate mdb_dec_indent(2); 23880Sstevel@tonic-gate mdb_printf("%<b>OPTIONS%</b>\n"); 23890Sstevel@tonic-gate mdb_inc_indent(2); 23900Sstevel@tonic-gate mdb_printf("%s", 23910Sstevel@tonic-gate " -v Display the full content of the bufctl, including its stack trace\n" 23920Sstevel@tonic-gate " -h retrieve the bufctl's transaction history, if available\n" 23930Sstevel@tonic-gate " -a addr\n" 23940Sstevel@tonic-gate " filter out bufctls not involving the buffer at addr\n" 23950Sstevel@tonic-gate " -c caller\n" 23960Sstevel@tonic-gate " filter out bufctls without the function/PC in their stack trace\n" 23970Sstevel@tonic-gate " -e earliest\n" 23980Sstevel@tonic-gate " filter out bufctls timestamped before earliest\n" 23990Sstevel@tonic-gate " -l latest\n" 24000Sstevel@tonic-gate " filter out bufctls timestamped after latest\n" 24010Sstevel@tonic-gate " -t thread\n" 24020Sstevel@tonic-gate " filter out bufctls not involving thread\n"); 24030Sstevel@tonic-gate } 24040Sstevel@tonic-gate 24050Sstevel@tonic-gate int 24060Sstevel@tonic-gate bufctl(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 24070Sstevel@tonic-gate { 24080Sstevel@tonic-gate kmem_bufctl_audit_t bc; 24090Sstevel@tonic-gate uint_t verbose = FALSE; 24100Sstevel@tonic-gate uint_t history = FALSE; 24110Sstevel@tonic-gate uint_t in_history = FALSE; 24120Sstevel@tonic-gate uintptr_t caller = NULL, thread = NULL; 24130Sstevel@tonic-gate uintptr_t laddr, haddr, baddr = NULL; 24140Sstevel@tonic-gate hrtime_t earliest = 0, latest = 0; 24150Sstevel@tonic-gate int i, depth; 24160Sstevel@tonic-gate char c[MDB_SYM_NAMLEN]; 24170Sstevel@tonic-gate GElf_Sym sym; 24180Sstevel@tonic-gate 24190Sstevel@tonic-gate if (mdb_getopts(argc, argv, 24200Sstevel@tonic-gate 'v', MDB_OPT_SETBITS, TRUE, &verbose, 24210Sstevel@tonic-gate 'h', MDB_OPT_SETBITS, TRUE, &history, 24220Sstevel@tonic-gate 'H', MDB_OPT_SETBITS, TRUE, &in_history, /* internal */ 24230Sstevel@tonic-gate 'c', MDB_OPT_UINTPTR, &caller, 24240Sstevel@tonic-gate 't', MDB_OPT_UINTPTR, &thread, 24250Sstevel@tonic-gate 'e', MDB_OPT_UINT64, &earliest, 24260Sstevel@tonic-gate 'l', MDB_OPT_UINT64, &latest, 24270Sstevel@tonic-gate 'a', MDB_OPT_UINTPTR, &baddr, NULL) != argc) 24280Sstevel@tonic-gate return (DCMD_USAGE); 24290Sstevel@tonic-gate 24300Sstevel@tonic-gate if (!(flags & DCMD_ADDRSPEC)) 24310Sstevel@tonic-gate return (DCMD_USAGE); 24320Sstevel@tonic-gate 24330Sstevel@tonic-gate if (in_history && !history) 24340Sstevel@tonic-gate return (DCMD_USAGE); 24350Sstevel@tonic-gate 24360Sstevel@tonic-gate if (history && !in_history) { 24370Sstevel@tonic-gate mdb_arg_t *nargv = mdb_zalloc(sizeof (*nargv) * (argc + 1), 24380Sstevel@tonic-gate UM_SLEEP | UM_GC); 24390Sstevel@tonic-gate bufctl_history_cb_t bhc; 24400Sstevel@tonic-gate 24410Sstevel@tonic-gate nargv[0].a_type = MDB_TYPE_STRING; 24420Sstevel@tonic-gate nargv[0].a_un.a_str = "-H"; /* prevent recursion */ 24430Sstevel@tonic-gate 24440Sstevel@tonic-gate for (i = 0; i < argc; i++) 24450Sstevel@tonic-gate nargv[i + 1] = argv[i]; 24460Sstevel@tonic-gate 24470Sstevel@tonic-gate /* 24480Sstevel@tonic-gate * When in history mode, we treat each element as if it 24490Sstevel@tonic-gate * were in a seperate loop, so that the headers group 24500Sstevel@tonic-gate * bufctls with similar histories. 24510Sstevel@tonic-gate */ 24520Sstevel@tonic-gate bhc.bhc_flags = flags | DCMD_LOOP | DCMD_LOOPFIRST; 24530Sstevel@tonic-gate bhc.bhc_argc = argc + 1; 24540Sstevel@tonic-gate bhc.bhc_argv = nargv; 24550Sstevel@tonic-gate bhc.bhc_ret = DCMD_OK; 24560Sstevel@tonic-gate 24570Sstevel@tonic-gate if (mdb_pwalk("bufctl_history", bufctl_history_callback, &bhc, 24580Sstevel@tonic-gate addr) == -1) { 24590Sstevel@tonic-gate mdb_warn("unable to walk bufctl_history"); 24600Sstevel@tonic-gate return (DCMD_ERR); 24610Sstevel@tonic-gate } 24620Sstevel@tonic-gate 24630Sstevel@tonic-gate if (bhc.bhc_ret == DCMD_OK && !(flags & DCMD_PIPE_OUT)) 24640Sstevel@tonic-gate mdb_printf("\n"); 24650Sstevel@tonic-gate 24660Sstevel@tonic-gate return (bhc.bhc_ret); 24670Sstevel@tonic-gate } 24680Sstevel@tonic-gate 24690Sstevel@tonic-gate if (DCMD_HDRSPEC(flags) && !(flags & DCMD_PIPE_OUT)) { 24700Sstevel@tonic-gate if (verbose) { 24710Sstevel@tonic-gate mdb_printf("%16s %16s %16s %16s\n" 24720Sstevel@tonic-gate "%<u>%16s %16s %16s %16s%</u>\n", 24730Sstevel@tonic-gate "ADDR", "BUFADDR", "TIMESTAMP", "THREAD", 24740Sstevel@tonic-gate "", "CACHE", "LASTLOG", "CONTENTS"); 24750Sstevel@tonic-gate } else { 24760Sstevel@tonic-gate mdb_printf("%<u>%-?s %-?s %-12s %-?s %s%</u>\n", 24770Sstevel@tonic-gate "ADDR", "BUFADDR", "TIMESTAMP", "THREAD", "CALLER"); 24780Sstevel@tonic-gate } 24790Sstevel@tonic-gate } 24800Sstevel@tonic-gate 24810Sstevel@tonic-gate if (mdb_vread(&bc, sizeof (bc), addr) == -1) { 24820Sstevel@tonic-gate mdb_warn("couldn't read bufctl at %p", addr); 24830Sstevel@tonic-gate return (DCMD_ERR); 24840Sstevel@tonic-gate } 24850Sstevel@tonic-gate 24860Sstevel@tonic-gate /* 24870Sstevel@tonic-gate * Guard against bogus bc_depth in case the bufctl is corrupt or 24880Sstevel@tonic-gate * the address does not really refer to a bufctl. 24890Sstevel@tonic-gate */ 24900Sstevel@tonic-gate depth = MIN(bc.bc_depth, KMEM_STACK_DEPTH); 24910Sstevel@tonic-gate 24920Sstevel@tonic-gate if (caller != NULL) { 24930Sstevel@tonic-gate laddr = caller; 24940Sstevel@tonic-gate haddr = caller + sizeof (caller); 24950Sstevel@tonic-gate 24960Sstevel@tonic-gate if (mdb_lookup_by_addr(caller, MDB_SYM_FUZZY, c, sizeof (c), 24970Sstevel@tonic-gate &sym) != -1 && caller == (uintptr_t)sym.st_value) { 24980Sstevel@tonic-gate /* 24990Sstevel@tonic-gate * We were provided an exact symbol value; any 25000Sstevel@tonic-gate * address in the function is valid. 25010Sstevel@tonic-gate */ 25020Sstevel@tonic-gate laddr = (uintptr_t)sym.st_value; 25030Sstevel@tonic-gate haddr = (uintptr_t)sym.st_value + sym.st_size; 25040Sstevel@tonic-gate } 25050Sstevel@tonic-gate 25060Sstevel@tonic-gate for (i = 0; i < depth; i++) 25070Sstevel@tonic-gate if (bc.bc_stack[i] >= laddr && bc.bc_stack[i] < haddr) 25080Sstevel@tonic-gate break; 25090Sstevel@tonic-gate 25100Sstevel@tonic-gate if (i == depth) 25110Sstevel@tonic-gate return (DCMD_OK); 25120Sstevel@tonic-gate } 25130Sstevel@tonic-gate 25140Sstevel@tonic-gate if (thread != NULL && (uintptr_t)bc.bc_thread != thread) 25150Sstevel@tonic-gate return (DCMD_OK); 25160Sstevel@tonic-gate 25170Sstevel@tonic-gate if (earliest != 0 && bc.bc_timestamp < earliest) 25180Sstevel@tonic-gate return (DCMD_OK); 25190Sstevel@tonic-gate 25200Sstevel@tonic-gate if (latest != 0 && bc.bc_timestamp > latest) 25210Sstevel@tonic-gate return (DCMD_OK); 25220Sstevel@tonic-gate 25230Sstevel@tonic-gate if (baddr != 0 && (uintptr_t)bc.bc_addr != baddr) 25240Sstevel@tonic-gate return (DCMD_OK); 25250Sstevel@tonic-gate 25260Sstevel@tonic-gate if (flags & DCMD_PIPE_OUT) { 25270Sstevel@tonic-gate mdb_printf("%#lr\n", addr); 25280Sstevel@tonic-gate return (DCMD_OK); 25290Sstevel@tonic-gate } 25300Sstevel@tonic-gate 25310Sstevel@tonic-gate if (verbose) { 25320Sstevel@tonic-gate mdb_printf( 25330Sstevel@tonic-gate "%<b>%16p%</b> %16p %16llx %16p\n" 25340Sstevel@tonic-gate "%16s %16p %16p %16p\n", 25350Sstevel@tonic-gate addr, bc.bc_addr, bc.bc_timestamp, bc.bc_thread, 25360Sstevel@tonic-gate "", bc.bc_cache, bc.bc_lastlog, bc.bc_contents); 25370Sstevel@tonic-gate 25380Sstevel@tonic-gate mdb_inc_indent(17); 25390Sstevel@tonic-gate for (i = 0; i < depth; i++) 25400Sstevel@tonic-gate mdb_printf("%a\n", bc.bc_stack[i]); 25410Sstevel@tonic-gate mdb_dec_indent(17); 25420Sstevel@tonic-gate mdb_printf("\n"); 25430Sstevel@tonic-gate } else { 25440Sstevel@tonic-gate mdb_printf("%0?p %0?p %12llx %0?p", addr, bc.bc_addr, 25450Sstevel@tonic-gate bc.bc_timestamp, bc.bc_thread); 25460Sstevel@tonic-gate 25470Sstevel@tonic-gate for (i = 0; i < depth; i++) { 25480Sstevel@tonic-gate if (mdb_lookup_by_addr(bc.bc_stack[i], 25490Sstevel@tonic-gate MDB_SYM_FUZZY, c, sizeof (c), &sym) == -1) 25500Sstevel@tonic-gate continue; 25510Sstevel@tonic-gate if (strncmp(c, "kmem_", 5) == 0) 25520Sstevel@tonic-gate continue; 25530Sstevel@tonic-gate mdb_printf(" %a\n", bc.bc_stack[i]); 25540Sstevel@tonic-gate break; 25550Sstevel@tonic-gate } 25560Sstevel@tonic-gate 25570Sstevel@tonic-gate if (i >= depth) 25580Sstevel@tonic-gate mdb_printf("\n"); 25590Sstevel@tonic-gate } 25600Sstevel@tonic-gate 25610Sstevel@tonic-gate return (DCMD_OK); 25620Sstevel@tonic-gate } 25630Sstevel@tonic-gate 25640Sstevel@tonic-gate typedef struct kmem_verify { 25650Sstevel@tonic-gate uint64_t *kmv_buf; /* buffer to read cache contents into */ 25660Sstevel@tonic-gate size_t kmv_size; /* number of bytes in kmv_buf */ 25670Sstevel@tonic-gate int kmv_corruption; /* > 0 if corruption found. */ 25680Sstevel@tonic-gate int kmv_besilent; /* report actual corruption sites */ 25690Sstevel@tonic-gate struct kmem_cache kmv_cache; /* the cache we're operating on */ 25700Sstevel@tonic-gate } kmem_verify_t; 25710Sstevel@tonic-gate 25720Sstevel@tonic-gate /* 25730Sstevel@tonic-gate * verify_pattern() 25740Sstevel@tonic-gate * verify that buf is filled with the pattern pat. 25750Sstevel@tonic-gate */ 25760Sstevel@tonic-gate static int64_t 25770Sstevel@tonic-gate verify_pattern(uint64_t *buf_arg, size_t size, uint64_t pat) 25780Sstevel@tonic-gate { 25790Sstevel@tonic-gate /*LINTED*/ 25800Sstevel@tonic-gate uint64_t *bufend = (uint64_t *)((char *)buf_arg + size); 25810Sstevel@tonic-gate uint64_t *buf; 25820Sstevel@tonic-gate 25830Sstevel@tonic-gate for (buf = buf_arg; buf < bufend; buf++) 25840Sstevel@tonic-gate if (*buf != pat) 25850Sstevel@tonic-gate return ((uintptr_t)buf - (uintptr_t)buf_arg); 25860Sstevel@tonic-gate return (-1); 25870Sstevel@tonic-gate } 25880Sstevel@tonic-gate 25890Sstevel@tonic-gate /* 25900Sstevel@tonic-gate * verify_buftag() 25910Sstevel@tonic-gate * verify that btp->bt_bxstat == (bcp ^ pat) 25920Sstevel@tonic-gate */ 25930Sstevel@tonic-gate static int 25940Sstevel@tonic-gate verify_buftag(kmem_buftag_t *btp, uintptr_t pat) 25950Sstevel@tonic-gate { 25960Sstevel@tonic-gate return (btp->bt_bxstat == ((intptr_t)btp->bt_bufctl ^ pat) ? 0 : -1); 25970Sstevel@tonic-gate } 25980Sstevel@tonic-gate 25990Sstevel@tonic-gate /* 26000Sstevel@tonic-gate * verify_free() 26010Sstevel@tonic-gate * verify the integrity of a free block of memory by checking 26020Sstevel@tonic-gate * that it is filled with 0xdeadbeef and that its buftag is sane. 26030Sstevel@tonic-gate */ 26040Sstevel@tonic-gate /*ARGSUSED1*/ 26050Sstevel@tonic-gate static int 26060Sstevel@tonic-gate verify_free(uintptr_t addr, const void *data, void *private) 26070Sstevel@tonic-gate { 26080Sstevel@tonic-gate kmem_verify_t *kmv = (kmem_verify_t *)private; 26090Sstevel@tonic-gate uint64_t *buf = kmv->kmv_buf; /* buf to validate */ 26100Sstevel@tonic-gate int64_t corrupt; /* corruption offset */ 26110Sstevel@tonic-gate kmem_buftag_t *buftagp; /* ptr to buftag */ 26120Sstevel@tonic-gate kmem_cache_t *cp = &kmv->kmv_cache; 26130Sstevel@tonic-gate int besilent = kmv->kmv_besilent; 26140Sstevel@tonic-gate 26150Sstevel@tonic-gate /*LINTED*/ 26160Sstevel@tonic-gate buftagp = KMEM_BUFTAG(cp, buf); 26170Sstevel@tonic-gate 26180Sstevel@tonic-gate /* 26190Sstevel@tonic-gate * Read the buffer to check. 26200Sstevel@tonic-gate */ 26210Sstevel@tonic-gate if (mdb_vread(buf, kmv->kmv_size, addr) == -1) { 26220Sstevel@tonic-gate if (!besilent) 26230Sstevel@tonic-gate mdb_warn("couldn't read %p", addr); 26240Sstevel@tonic-gate return (WALK_NEXT); 26250Sstevel@tonic-gate } 26260Sstevel@tonic-gate 26270Sstevel@tonic-gate if ((corrupt = verify_pattern(buf, cp->cache_verify, 26280Sstevel@tonic-gate KMEM_FREE_PATTERN)) >= 0) { 26290Sstevel@tonic-gate if (!besilent) 26300Sstevel@tonic-gate mdb_printf("buffer %p (free) seems corrupted, at %p\n", 26310Sstevel@tonic-gate addr, (uintptr_t)addr + corrupt); 26320Sstevel@tonic-gate goto corrupt; 26330Sstevel@tonic-gate } 26340Sstevel@tonic-gate /* 26350Sstevel@tonic-gate * When KMF_LITE is set, buftagp->bt_redzone is used to hold 26360Sstevel@tonic-gate * the first bytes of the buffer, hence we cannot check for red 26370Sstevel@tonic-gate * zone corruption. 26380Sstevel@tonic-gate */ 26390Sstevel@tonic-gate if ((cp->cache_flags & (KMF_HASH | KMF_LITE)) == KMF_HASH && 26400Sstevel@tonic-gate buftagp->bt_redzone != KMEM_REDZONE_PATTERN) { 26410Sstevel@tonic-gate if (!besilent) 26420Sstevel@tonic-gate mdb_printf("buffer %p (free) seems to " 26430Sstevel@tonic-gate "have a corrupt redzone pattern\n", addr); 26440Sstevel@tonic-gate goto corrupt; 26450Sstevel@tonic-gate } 26460Sstevel@tonic-gate 26470Sstevel@tonic-gate /* 26480Sstevel@tonic-gate * confirm bufctl pointer integrity. 26490Sstevel@tonic-gate */ 26500Sstevel@tonic-gate if (verify_buftag(buftagp, KMEM_BUFTAG_FREE) == -1) { 26510Sstevel@tonic-gate if (!besilent) 26520Sstevel@tonic-gate mdb_printf("buffer %p (free) has a corrupt " 26530Sstevel@tonic-gate "buftag\n", addr); 26540Sstevel@tonic-gate goto corrupt; 26550Sstevel@tonic-gate } 26560Sstevel@tonic-gate 26570Sstevel@tonic-gate return (WALK_NEXT); 26580Sstevel@tonic-gate corrupt: 26590Sstevel@tonic-gate kmv->kmv_corruption++; 26600Sstevel@tonic-gate return (WALK_NEXT); 26610Sstevel@tonic-gate } 26620Sstevel@tonic-gate 26630Sstevel@tonic-gate /* 26640Sstevel@tonic-gate * verify_alloc() 26650Sstevel@tonic-gate * Verify that the buftag of an allocated buffer makes sense with respect 26660Sstevel@tonic-gate * to the buffer. 26670Sstevel@tonic-gate */ 26680Sstevel@tonic-gate /*ARGSUSED1*/ 26690Sstevel@tonic-gate static int 26700Sstevel@tonic-gate verify_alloc(uintptr_t addr, const void *data, void *private) 26710Sstevel@tonic-gate { 26720Sstevel@tonic-gate kmem_verify_t *kmv = (kmem_verify_t *)private; 26730Sstevel@tonic-gate kmem_cache_t *cp = &kmv->kmv_cache; 26740Sstevel@tonic-gate uint64_t *buf = kmv->kmv_buf; /* buf to validate */ 26750Sstevel@tonic-gate /*LINTED*/ 26760Sstevel@tonic-gate kmem_buftag_t *buftagp = KMEM_BUFTAG(cp, buf); 26770Sstevel@tonic-gate uint32_t *ip = (uint32_t *)buftagp; 26780Sstevel@tonic-gate uint8_t *bp = (uint8_t *)buf; 26790Sstevel@tonic-gate int looks_ok = 0, size_ok = 1; /* flags for finding corruption */ 26800Sstevel@tonic-gate int besilent = kmv->kmv_besilent; 26810Sstevel@tonic-gate 26820Sstevel@tonic-gate /* 26830Sstevel@tonic-gate * Read the buffer to check. 26840Sstevel@tonic-gate */ 26850Sstevel@tonic-gate if (mdb_vread(buf, kmv->kmv_size, addr) == -1) { 26860Sstevel@tonic-gate if (!besilent) 26870Sstevel@tonic-gate mdb_warn("couldn't read %p", addr); 26880Sstevel@tonic-gate return (WALK_NEXT); 26890Sstevel@tonic-gate } 26900Sstevel@tonic-gate 26910Sstevel@tonic-gate /* 26920Sstevel@tonic-gate * There are two cases to handle: 26930Sstevel@tonic-gate * 1. If the buf was alloc'd using kmem_cache_alloc, it will have 26940Sstevel@tonic-gate * 0xfeedfacefeedface at the end of it 26950Sstevel@tonic-gate * 2. If the buf was alloc'd using kmem_alloc, it will have 26960Sstevel@tonic-gate * 0xbb just past the end of the region in use. At the buftag, 26970Sstevel@tonic-gate * it will have 0xfeedface (or, if the whole buffer is in use, 26980Sstevel@tonic-gate * 0xfeedface & bb000000 or 0xfeedfacf & 000000bb depending on 26990Sstevel@tonic-gate * endianness), followed by 32 bits containing the offset of the 27000Sstevel@tonic-gate * 0xbb byte in the buffer. 27010Sstevel@tonic-gate * 27020Sstevel@tonic-gate * Finally, the two 32-bit words that comprise the second half of the 27030Sstevel@tonic-gate * buftag should xor to KMEM_BUFTAG_ALLOC 27040Sstevel@tonic-gate */ 27050Sstevel@tonic-gate 27060Sstevel@tonic-gate if (buftagp->bt_redzone == KMEM_REDZONE_PATTERN) 27070Sstevel@tonic-gate looks_ok = 1; 27080Sstevel@tonic-gate else if (!KMEM_SIZE_VALID(ip[1])) 27090Sstevel@tonic-gate size_ok = 0; 27100Sstevel@tonic-gate else if (bp[KMEM_SIZE_DECODE(ip[1])] == KMEM_REDZONE_BYTE) 27110Sstevel@tonic-gate looks_ok = 1; 27120Sstevel@tonic-gate else 27130Sstevel@tonic-gate size_ok = 0; 27140Sstevel@tonic-gate 27150Sstevel@tonic-gate if (!size_ok) { 27160Sstevel@tonic-gate if (!besilent) 27170Sstevel@tonic-gate mdb_printf("buffer %p (allocated) has a corrupt " 27180Sstevel@tonic-gate "redzone size encoding\n", addr); 27190Sstevel@tonic-gate goto corrupt; 27200Sstevel@tonic-gate } 27210Sstevel@tonic-gate 27220Sstevel@tonic-gate if (!looks_ok) { 27230Sstevel@tonic-gate if (!besilent) 27240Sstevel@tonic-gate mdb_printf("buffer %p (allocated) has a corrupt " 27250Sstevel@tonic-gate "redzone signature\n", addr); 27260Sstevel@tonic-gate goto corrupt; 27270Sstevel@tonic-gate } 27280Sstevel@tonic-gate 27290Sstevel@tonic-gate if (verify_buftag(buftagp, KMEM_BUFTAG_ALLOC) == -1) { 27300Sstevel@tonic-gate if (!besilent) 27310Sstevel@tonic-gate mdb_printf("buffer %p (allocated) has a " 27320Sstevel@tonic-gate "corrupt buftag\n", addr); 27330Sstevel@tonic-gate goto corrupt; 27340Sstevel@tonic-gate } 27350Sstevel@tonic-gate 27360Sstevel@tonic-gate return (WALK_NEXT); 27370Sstevel@tonic-gate corrupt: 27380Sstevel@tonic-gate kmv->kmv_corruption++; 27390Sstevel@tonic-gate return (WALK_NEXT); 27400Sstevel@tonic-gate } 27410Sstevel@tonic-gate 27420Sstevel@tonic-gate /*ARGSUSED2*/ 27430Sstevel@tonic-gate int 27440Sstevel@tonic-gate kmem_verify(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 27450Sstevel@tonic-gate { 27460Sstevel@tonic-gate if (flags & DCMD_ADDRSPEC) { 27470Sstevel@tonic-gate int check_alloc = 0, check_free = 0; 27480Sstevel@tonic-gate kmem_verify_t kmv; 27490Sstevel@tonic-gate 27500Sstevel@tonic-gate if (mdb_vread(&kmv.kmv_cache, sizeof (kmv.kmv_cache), 27510Sstevel@tonic-gate addr) == -1) { 27520Sstevel@tonic-gate mdb_warn("couldn't read kmem_cache %p", addr); 27530Sstevel@tonic-gate return (DCMD_ERR); 27540Sstevel@tonic-gate } 27550Sstevel@tonic-gate 27560Sstevel@tonic-gate kmv.kmv_size = kmv.kmv_cache.cache_buftag + 27570Sstevel@tonic-gate sizeof (kmem_buftag_t); 27580Sstevel@tonic-gate kmv.kmv_buf = mdb_alloc(kmv.kmv_size, UM_SLEEP | UM_GC); 27590Sstevel@tonic-gate kmv.kmv_corruption = 0; 27600Sstevel@tonic-gate 27610Sstevel@tonic-gate if ((kmv.kmv_cache.cache_flags & KMF_REDZONE)) { 27620Sstevel@tonic-gate check_alloc = 1; 27630Sstevel@tonic-gate if (kmv.kmv_cache.cache_flags & KMF_DEADBEEF) 27640Sstevel@tonic-gate check_free = 1; 27650Sstevel@tonic-gate } else { 27660Sstevel@tonic-gate if (!(flags & DCMD_LOOP)) { 27670Sstevel@tonic-gate mdb_warn("cache %p (%s) does not have " 27680Sstevel@tonic-gate "redzone checking enabled\n", addr, 27690Sstevel@tonic-gate kmv.kmv_cache.cache_name); 27700Sstevel@tonic-gate } 27710Sstevel@tonic-gate return (DCMD_ERR); 27720Sstevel@tonic-gate } 27730Sstevel@tonic-gate 27740Sstevel@tonic-gate if (flags & DCMD_LOOP) { 27750Sstevel@tonic-gate /* 27760Sstevel@tonic-gate * table mode, don't print out every corrupt buffer 27770Sstevel@tonic-gate */ 27780Sstevel@tonic-gate kmv.kmv_besilent = 1; 27790Sstevel@tonic-gate } else { 27800Sstevel@tonic-gate mdb_printf("Summary for cache '%s'\n", 27810Sstevel@tonic-gate kmv.kmv_cache.cache_name); 27820Sstevel@tonic-gate mdb_inc_indent(2); 27830Sstevel@tonic-gate kmv.kmv_besilent = 0; 27840Sstevel@tonic-gate } 27850Sstevel@tonic-gate 27860Sstevel@tonic-gate if (check_alloc) 27870Sstevel@tonic-gate (void) mdb_pwalk("kmem", verify_alloc, &kmv, addr); 27880Sstevel@tonic-gate if (check_free) 27890Sstevel@tonic-gate (void) mdb_pwalk("freemem", verify_free, &kmv, addr); 27900Sstevel@tonic-gate 27910Sstevel@tonic-gate if (flags & DCMD_LOOP) { 27920Sstevel@tonic-gate if (kmv.kmv_corruption == 0) { 27930Sstevel@tonic-gate mdb_printf("%-*s %?p clean\n", 27940Sstevel@tonic-gate KMEM_CACHE_NAMELEN, 27950Sstevel@tonic-gate kmv.kmv_cache.cache_name, addr); 27960Sstevel@tonic-gate } else { 27970Sstevel@tonic-gate char *s = ""; /* optional s in "buffer[s]" */ 27980Sstevel@tonic-gate if (kmv.kmv_corruption > 1) 27990Sstevel@tonic-gate s = "s"; 28000Sstevel@tonic-gate 28010Sstevel@tonic-gate mdb_printf("%-*s %?p %d corrupt buffer%s\n", 28020Sstevel@tonic-gate KMEM_CACHE_NAMELEN, 28030Sstevel@tonic-gate kmv.kmv_cache.cache_name, addr, 28040Sstevel@tonic-gate kmv.kmv_corruption, s); 28050Sstevel@tonic-gate } 28060Sstevel@tonic-gate } else { 28070Sstevel@tonic-gate /* 28080Sstevel@tonic-gate * This is the more verbose mode, when the user has 28090Sstevel@tonic-gate * type addr::kmem_verify. If the cache was clean, 28100Sstevel@tonic-gate * nothing will have yet been printed. So say something. 28110Sstevel@tonic-gate */ 28120Sstevel@tonic-gate if (kmv.kmv_corruption == 0) 28130Sstevel@tonic-gate mdb_printf("clean\n"); 28140Sstevel@tonic-gate 28150Sstevel@tonic-gate mdb_dec_indent(2); 28160Sstevel@tonic-gate } 28170Sstevel@tonic-gate } else { 28180Sstevel@tonic-gate /* 28190Sstevel@tonic-gate * If the user didn't specify a cache to verify, we'll walk all 28200Sstevel@tonic-gate * kmem_cache's, specifying ourself as a callback for each... 28210Sstevel@tonic-gate * this is the equivalent of '::walk kmem_cache .::kmem_verify' 28220Sstevel@tonic-gate */ 28230Sstevel@tonic-gate mdb_printf("%<u>%-*s %-?s %-20s%</b>\n", KMEM_CACHE_NAMELEN, 28240Sstevel@tonic-gate "Cache Name", "Addr", "Cache Integrity"); 28250Sstevel@tonic-gate (void) (mdb_walk_dcmd("kmem_cache", "kmem_verify", 0, NULL)); 28260Sstevel@tonic-gate } 28270Sstevel@tonic-gate 28280Sstevel@tonic-gate return (DCMD_OK); 28290Sstevel@tonic-gate } 28300Sstevel@tonic-gate 28310Sstevel@tonic-gate typedef struct vmem_node { 28320Sstevel@tonic-gate struct vmem_node *vn_next; 28330Sstevel@tonic-gate struct vmem_node *vn_parent; 28340Sstevel@tonic-gate struct vmem_node *vn_sibling; 28350Sstevel@tonic-gate struct vmem_node *vn_children; 28360Sstevel@tonic-gate uintptr_t vn_addr; 28370Sstevel@tonic-gate int vn_marked; 28380Sstevel@tonic-gate vmem_t vn_vmem; 28390Sstevel@tonic-gate } vmem_node_t; 28400Sstevel@tonic-gate 28410Sstevel@tonic-gate typedef struct vmem_walk { 28420Sstevel@tonic-gate vmem_node_t *vw_root; 28430Sstevel@tonic-gate vmem_node_t *vw_current; 28440Sstevel@tonic-gate } vmem_walk_t; 28450Sstevel@tonic-gate 28460Sstevel@tonic-gate int 28470Sstevel@tonic-gate vmem_walk_init(mdb_walk_state_t *wsp) 28480Sstevel@tonic-gate { 28490Sstevel@tonic-gate uintptr_t vaddr, paddr; 28500Sstevel@tonic-gate vmem_node_t *head = NULL, *root = NULL, *current = NULL, *parent, *vp; 28510Sstevel@tonic-gate vmem_walk_t *vw; 28520Sstevel@tonic-gate 28530Sstevel@tonic-gate if (mdb_readvar(&vaddr, "vmem_list") == -1) { 28540Sstevel@tonic-gate mdb_warn("couldn't read 'vmem_list'"); 28550Sstevel@tonic-gate return (WALK_ERR); 28560Sstevel@tonic-gate } 28570Sstevel@tonic-gate 28580Sstevel@tonic-gate while (vaddr != NULL) { 28590Sstevel@tonic-gate vp = mdb_zalloc(sizeof (vmem_node_t), UM_SLEEP); 28600Sstevel@tonic-gate vp->vn_addr = vaddr; 28610Sstevel@tonic-gate vp->vn_next = head; 28620Sstevel@tonic-gate head = vp; 28630Sstevel@tonic-gate 28640Sstevel@tonic-gate if (vaddr == wsp->walk_addr) 28650Sstevel@tonic-gate current = vp; 28660Sstevel@tonic-gate 28670Sstevel@tonic-gate if (mdb_vread(&vp->vn_vmem, sizeof (vmem_t), vaddr) == -1) { 28680Sstevel@tonic-gate mdb_warn("couldn't read vmem_t at %p", vaddr); 28690Sstevel@tonic-gate goto err; 28700Sstevel@tonic-gate } 28710Sstevel@tonic-gate 28720Sstevel@tonic-gate vaddr = (uintptr_t)vp->vn_vmem.vm_next; 28730Sstevel@tonic-gate } 28740Sstevel@tonic-gate 28750Sstevel@tonic-gate for (vp = head; vp != NULL; vp = vp->vn_next) { 28760Sstevel@tonic-gate 28770Sstevel@tonic-gate if ((paddr = (uintptr_t)vp->vn_vmem.vm_source) == NULL) { 28780Sstevel@tonic-gate vp->vn_sibling = root; 28790Sstevel@tonic-gate root = vp; 28800Sstevel@tonic-gate continue; 28810Sstevel@tonic-gate } 28820Sstevel@tonic-gate 28830Sstevel@tonic-gate for (parent = head; parent != NULL; parent = parent->vn_next) { 28840Sstevel@tonic-gate if (parent->vn_addr != paddr) 28850Sstevel@tonic-gate continue; 28860Sstevel@tonic-gate vp->vn_sibling = parent->vn_children; 28870Sstevel@tonic-gate parent->vn_children = vp; 28880Sstevel@tonic-gate vp->vn_parent = parent; 28890Sstevel@tonic-gate break; 28900Sstevel@tonic-gate } 28910Sstevel@tonic-gate 28920Sstevel@tonic-gate if (parent == NULL) { 28930Sstevel@tonic-gate mdb_warn("couldn't find %p's parent (%p)\n", 28940Sstevel@tonic-gate vp->vn_addr, paddr); 28950Sstevel@tonic-gate goto err; 28960Sstevel@tonic-gate } 28970Sstevel@tonic-gate } 28980Sstevel@tonic-gate 28990Sstevel@tonic-gate vw = mdb_zalloc(sizeof (vmem_walk_t), UM_SLEEP); 29000Sstevel@tonic-gate vw->vw_root = root; 29010Sstevel@tonic-gate 29020Sstevel@tonic-gate if (current != NULL) 29030Sstevel@tonic-gate vw->vw_current = current; 29040Sstevel@tonic-gate else 29050Sstevel@tonic-gate vw->vw_current = root; 29060Sstevel@tonic-gate 29070Sstevel@tonic-gate wsp->walk_data = vw; 29080Sstevel@tonic-gate return (WALK_NEXT); 29090Sstevel@tonic-gate err: 29100Sstevel@tonic-gate for (vp = head; head != NULL; vp = head) { 29110Sstevel@tonic-gate head = vp->vn_next; 29120Sstevel@tonic-gate mdb_free(vp, sizeof (vmem_node_t)); 29130Sstevel@tonic-gate } 29140Sstevel@tonic-gate 29150Sstevel@tonic-gate return (WALK_ERR); 29160Sstevel@tonic-gate } 29170Sstevel@tonic-gate 29180Sstevel@tonic-gate int 29190Sstevel@tonic-gate vmem_walk_step(mdb_walk_state_t *wsp) 29200Sstevel@tonic-gate { 29210Sstevel@tonic-gate vmem_walk_t *vw = wsp->walk_data; 29220Sstevel@tonic-gate vmem_node_t *vp; 29230Sstevel@tonic-gate int rval; 29240Sstevel@tonic-gate 29250Sstevel@tonic-gate if ((vp = vw->vw_current) == NULL) 29260Sstevel@tonic-gate return (WALK_DONE); 29270Sstevel@tonic-gate 29280Sstevel@tonic-gate rval = wsp->walk_callback(vp->vn_addr, &vp->vn_vmem, wsp->walk_cbdata); 29290Sstevel@tonic-gate 29300Sstevel@tonic-gate if (vp->vn_children != NULL) { 29310Sstevel@tonic-gate vw->vw_current = vp->vn_children; 29320Sstevel@tonic-gate return (rval); 29330Sstevel@tonic-gate } 29340Sstevel@tonic-gate 29350Sstevel@tonic-gate do { 29360Sstevel@tonic-gate vw->vw_current = vp->vn_sibling; 29370Sstevel@tonic-gate vp = vp->vn_parent; 29380Sstevel@tonic-gate } while (vw->vw_current == NULL && vp != NULL); 29390Sstevel@tonic-gate 29400Sstevel@tonic-gate return (rval); 29410Sstevel@tonic-gate } 29420Sstevel@tonic-gate 29430Sstevel@tonic-gate /* 29440Sstevel@tonic-gate * The "vmem_postfix" walk walks the vmem arenas in post-fix order; all 29450Sstevel@tonic-gate * children are visited before their parent. We perform the postfix walk 29460Sstevel@tonic-gate * iteratively (rather than recursively) to allow mdb to regain control 29470Sstevel@tonic-gate * after each callback. 29480Sstevel@tonic-gate */ 29490Sstevel@tonic-gate int 29500Sstevel@tonic-gate vmem_postfix_walk_step(mdb_walk_state_t *wsp) 29510Sstevel@tonic-gate { 29520Sstevel@tonic-gate vmem_walk_t *vw = wsp->walk_data; 29530Sstevel@tonic-gate vmem_node_t *vp = vw->vw_current; 29540Sstevel@tonic-gate int rval; 29550Sstevel@tonic-gate 29560Sstevel@tonic-gate /* 29570Sstevel@tonic-gate * If this node is marked, then we know that we have already visited 29580Sstevel@tonic-gate * all of its children. If the node has any siblings, they need to 29590Sstevel@tonic-gate * be visited next; otherwise, we need to visit the parent. Note 29600Sstevel@tonic-gate * that vp->vn_marked will only be zero on the first invocation of 29610Sstevel@tonic-gate * the step function. 29620Sstevel@tonic-gate */ 29630Sstevel@tonic-gate if (vp->vn_marked) { 29640Sstevel@tonic-gate if (vp->vn_sibling != NULL) 29650Sstevel@tonic-gate vp = vp->vn_sibling; 29660Sstevel@tonic-gate else if (vp->vn_parent != NULL) 29670Sstevel@tonic-gate vp = vp->vn_parent; 29680Sstevel@tonic-gate else { 29690Sstevel@tonic-gate /* 29700Sstevel@tonic-gate * We have neither a parent, nor a sibling, and we 29710Sstevel@tonic-gate * have already been visited; we're done. 29720Sstevel@tonic-gate */ 29730Sstevel@tonic-gate return (WALK_DONE); 29740Sstevel@tonic-gate } 29750Sstevel@tonic-gate } 29760Sstevel@tonic-gate 29770Sstevel@tonic-gate /* 29780Sstevel@tonic-gate * Before we visit this node, visit its children. 29790Sstevel@tonic-gate */ 29800Sstevel@tonic-gate while (vp->vn_children != NULL && !vp->vn_children->vn_marked) 29810Sstevel@tonic-gate vp = vp->vn_children; 29820Sstevel@tonic-gate 29830Sstevel@tonic-gate vp->vn_marked = 1; 29840Sstevel@tonic-gate vw->vw_current = vp; 29850Sstevel@tonic-gate rval = wsp->walk_callback(vp->vn_addr, &vp->vn_vmem, wsp->walk_cbdata); 29860Sstevel@tonic-gate 29870Sstevel@tonic-gate return (rval); 29880Sstevel@tonic-gate } 29890Sstevel@tonic-gate 29900Sstevel@tonic-gate void 29910Sstevel@tonic-gate vmem_walk_fini(mdb_walk_state_t *wsp) 29920Sstevel@tonic-gate { 29930Sstevel@tonic-gate vmem_walk_t *vw = wsp->walk_data; 29940Sstevel@tonic-gate vmem_node_t *root = vw->vw_root; 29950Sstevel@tonic-gate int done; 29960Sstevel@tonic-gate 29970Sstevel@tonic-gate if (root == NULL) 29980Sstevel@tonic-gate return; 29990Sstevel@tonic-gate 30000Sstevel@tonic-gate if ((vw->vw_root = root->vn_children) != NULL) 30010Sstevel@tonic-gate vmem_walk_fini(wsp); 30020Sstevel@tonic-gate 30030Sstevel@tonic-gate vw->vw_root = root->vn_sibling; 30040Sstevel@tonic-gate done = (root->vn_sibling == NULL && root->vn_parent == NULL); 30050Sstevel@tonic-gate mdb_free(root, sizeof (vmem_node_t)); 30060Sstevel@tonic-gate 30070Sstevel@tonic-gate if (done) { 30080Sstevel@tonic-gate mdb_free(vw, sizeof (vmem_walk_t)); 30090Sstevel@tonic-gate } else { 30100Sstevel@tonic-gate vmem_walk_fini(wsp); 30110Sstevel@tonic-gate } 30120Sstevel@tonic-gate } 30130Sstevel@tonic-gate 30140Sstevel@tonic-gate typedef struct vmem_seg_walk { 30150Sstevel@tonic-gate uint8_t vsw_type; 30160Sstevel@tonic-gate uintptr_t vsw_start; 30170Sstevel@tonic-gate uintptr_t vsw_current; 30180Sstevel@tonic-gate } vmem_seg_walk_t; 30190Sstevel@tonic-gate 30200Sstevel@tonic-gate /*ARGSUSED*/ 30210Sstevel@tonic-gate int 30220Sstevel@tonic-gate vmem_seg_walk_common_init(mdb_walk_state_t *wsp, uint8_t type, char *name) 30230Sstevel@tonic-gate { 30240Sstevel@tonic-gate vmem_seg_walk_t *vsw; 30250Sstevel@tonic-gate 30260Sstevel@tonic-gate if (wsp->walk_addr == NULL) { 30270Sstevel@tonic-gate mdb_warn("vmem_%s does not support global walks\n", name); 30280Sstevel@tonic-gate return (WALK_ERR); 30290Sstevel@tonic-gate } 30300Sstevel@tonic-gate 30310Sstevel@tonic-gate wsp->walk_data = vsw = mdb_alloc(sizeof (vmem_seg_walk_t), UM_SLEEP); 30320Sstevel@tonic-gate 30330Sstevel@tonic-gate vsw->vsw_type = type; 30340Sstevel@tonic-gate vsw->vsw_start = wsp->walk_addr + offsetof(vmem_t, vm_seg0); 30350Sstevel@tonic-gate vsw->vsw_current = vsw->vsw_start; 30360Sstevel@tonic-gate 30370Sstevel@tonic-gate return (WALK_NEXT); 30380Sstevel@tonic-gate } 30390Sstevel@tonic-gate 30400Sstevel@tonic-gate /* 30410Sstevel@tonic-gate * vmem segments can't have type 0 (this should be added to vmem_impl.h). 30420Sstevel@tonic-gate */ 30430Sstevel@tonic-gate #define VMEM_NONE 0 30440Sstevel@tonic-gate 30450Sstevel@tonic-gate int 30460Sstevel@tonic-gate vmem_alloc_walk_init(mdb_walk_state_t *wsp) 30470Sstevel@tonic-gate { 30480Sstevel@tonic-gate return (vmem_seg_walk_common_init(wsp, VMEM_ALLOC, "alloc")); 30490Sstevel@tonic-gate } 30500Sstevel@tonic-gate 30510Sstevel@tonic-gate int 30520Sstevel@tonic-gate vmem_free_walk_init(mdb_walk_state_t *wsp) 30530Sstevel@tonic-gate { 30540Sstevel@tonic-gate return (vmem_seg_walk_common_init(wsp, VMEM_FREE, "free")); 30550Sstevel@tonic-gate } 30560Sstevel@tonic-gate 30570Sstevel@tonic-gate int 30580Sstevel@tonic-gate vmem_span_walk_init(mdb_walk_state_t *wsp) 30590Sstevel@tonic-gate { 30600Sstevel@tonic-gate return (vmem_seg_walk_common_init(wsp, VMEM_SPAN, "span")); 30610Sstevel@tonic-gate } 30620Sstevel@tonic-gate 30630Sstevel@tonic-gate int 30640Sstevel@tonic-gate vmem_seg_walk_init(mdb_walk_state_t *wsp) 30650Sstevel@tonic-gate { 30660Sstevel@tonic-gate return (vmem_seg_walk_common_init(wsp, VMEM_NONE, "seg")); 30670Sstevel@tonic-gate } 30680Sstevel@tonic-gate 30690Sstevel@tonic-gate int 30700Sstevel@tonic-gate vmem_seg_walk_step(mdb_walk_state_t *wsp) 30710Sstevel@tonic-gate { 30720Sstevel@tonic-gate vmem_seg_t seg; 30730Sstevel@tonic-gate vmem_seg_walk_t *vsw = wsp->walk_data; 30740Sstevel@tonic-gate uintptr_t addr = vsw->vsw_current; 30750Sstevel@tonic-gate static size_t seg_size = 0; 30760Sstevel@tonic-gate int rval; 30770Sstevel@tonic-gate 30780Sstevel@tonic-gate if (!seg_size) { 30790Sstevel@tonic-gate if (mdb_readvar(&seg_size, "vmem_seg_size") == -1) { 30800Sstevel@tonic-gate mdb_warn("failed to read 'vmem_seg_size'"); 30810Sstevel@tonic-gate seg_size = sizeof (vmem_seg_t); 30820Sstevel@tonic-gate } 30830Sstevel@tonic-gate } 30840Sstevel@tonic-gate 30850Sstevel@tonic-gate if (seg_size < sizeof (seg)) 30860Sstevel@tonic-gate bzero((caddr_t)&seg + seg_size, sizeof (seg) - seg_size); 30870Sstevel@tonic-gate 30880Sstevel@tonic-gate if (mdb_vread(&seg, seg_size, addr) == -1) { 30890Sstevel@tonic-gate mdb_warn("couldn't read vmem_seg at %p", addr); 30900Sstevel@tonic-gate return (WALK_ERR); 30910Sstevel@tonic-gate } 30920Sstevel@tonic-gate 30930Sstevel@tonic-gate vsw->vsw_current = (uintptr_t)seg.vs_anext; 30940Sstevel@tonic-gate if (vsw->vsw_type != VMEM_NONE && seg.vs_type != vsw->vsw_type) { 30950Sstevel@tonic-gate rval = WALK_NEXT; 30960Sstevel@tonic-gate } else { 30970Sstevel@tonic-gate rval = wsp->walk_callback(addr, &seg, wsp->walk_cbdata); 30980Sstevel@tonic-gate } 30990Sstevel@tonic-gate 31000Sstevel@tonic-gate if (vsw->vsw_current == vsw->vsw_start) 31010Sstevel@tonic-gate return (WALK_DONE); 31020Sstevel@tonic-gate 31030Sstevel@tonic-gate return (rval); 31040Sstevel@tonic-gate } 31050Sstevel@tonic-gate 31060Sstevel@tonic-gate void 31070Sstevel@tonic-gate vmem_seg_walk_fini(mdb_walk_state_t *wsp) 31080Sstevel@tonic-gate { 31090Sstevel@tonic-gate vmem_seg_walk_t *vsw = wsp->walk_data; 31100Sstevel@tonic-gate 31110Sstevel@tonic-gate mdb_free(vsw, sizeof (vmem_seg_walk_t)); 31120Sstevel@tonic-gate } 31130Sstevel@tonic-gate 31140Sstevel@tonic-gate #define VMEM_NAMEWIDTH 22 31150Sstevel@tonic-gate 31160Sstevel@tonic-gate int 31170Sstevel@tonic-gate vmem(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 31180Sstevel@tonic-gate { 31190Sstevel@tonic-gate vmem_t v, parent; 31200Sstevel@tonic-gate vmem_kstat_t *vkp = &v.vm_kstat; 31210Sstevel@tonic-gate uintptr_t paddr; 31220Sstevel@tonic-gate int ident = 0; 31230Sstevel@tonic-gate char c[VMEM_NAMEWIDTH]; 31240Sstevel@tonic-gate 31250Sstevel@tonic-gate if (!(flags & DCMD_ADDRSPEC)) { 31260Sstevel@tonic-gate if (mdb_walk_dcmd("vmem", "vmem", argc, argv) == -1) { 31270Sstevel@tonic-gate mdb_warn("can't walk vmem"); 31280Sstevel@tonic-gate return (DCMD_ERR); 31290Sstevel@tonic-gate } 31300Sstevel@tonic-gate return (DCMD_OK); 31310Sstevel@tonic-gate } 31320Sstevel@tonic-gate 31330Sstevel@tonic-gate if (DCMD_HDRSPEC(flags)) 31340Sstevel@tonic-gate mdb_printf("%-?s %-*s %10s %12s %9s %5s\n", 31350Sstevel@tonic-gate "ADDR", VMEM_NAMEWIDTH, "NAME", "INUSE", 31360Sstevel@tonic-gate "TOTAL", "SUCCEED", "FAIL"); 31370Sstevel@tonic-gate 31380Sstevel@tonic-gate if (mdb_vread(&v, sizeof (v), addr) == -1) { 31390Sstevel@tonic-gate mdb_warn("couldn't read vmem at %p", addr); 31400Sstevel@tonic-gate return (DCMD_ERR); 31410Sstevel@tonic-gate } 31420Sstevel@tonic-gate 31430Sstevel@tonic-gate for (paddr = (uintptr_t)v.vm_source; paddr != NULL; ident += 2) { 31440Sstevel@tonic-gate if (mdb_vread(&parent, sizeof (parent), paddr) == -1) { 31450Sstevel@tonic-gate mdb_warn("couldn't trace %p's ancestry", addr); 31460Sstevel@tonic-gate ident = 0; 31470Sstevel@tonic-gate break; 31480Sstevel@tonic-gate } 31490Sstevel@tonic-gate paddr = (uintptr_t)parent.vm_source; 31500Sstevel@tonic-gate } 31510Sstevel@tonic-gate 31520Sstevel@tonic-gate (void) mdb_snprintf(c, VMEM_NAMEWIDTH, "%*s%s", ident, "", v.vm_name); 31530Sstevel@tonic-gate 31540Sstevel@tonic-gate mdb_printf("%0?p %-*s %10llu %12llu %9llu %5llu\n", 31550Sstevel@tonic-gate addr, VMEM_NAMEWIDTH, c, 31560Sstevel@tonic-gate vkp->vk_mem_inuse.value.ui64, vkp->vk_mem_total.value.ui64, 31570Sstevel@tonic-gate vkp->vk_alloc.value.ui64, vkp->vk_fail.value.ui64); 31580Sstevel@tonic-gate 31590Sstevel@tonic-gate return (DCMD_OK); 31600Sstevel@tonic-gate } 31610Sstevel@tonic-gate 31620Sstevel@tonic-gate void 31630Sstevel@tonic-gate vmem_seg_help(void) 31640Sstevel@tonic-gate { 31650Sstevel@tonic-gate mdb_printf("%s\n", 31660Sstevel@tonic-gate "Display the contents of vmem_seg_ts, with optional filtering.\n" 31670Sstevel@tonic-gate "\n" 31680Sstevel@tonic-gate "A vmem_seg_t represents a range of addresses (or arbitrary numbers),\n" 31690Sstevel@tonic-gate "representing a single chunk of data. Only ALLOC segments have debugging\n" 31700Sstevel@tonic-gate "information.\n"); 31710Sstevel@tonic-gate mdb_dec_indent(2); 31720Sstevel@tonic-gate mdb_printf("%<b>OPTIONS%</b>\n"); 31730Sstevel@tonic-gate mdb_inc_indent(2); 31740Sstevel@tonic-gate mdb_printf("%s", 31750Sstevel@tonic-gate " -v Display the full content of the vmem_seg, including its stack trace\n" 31760Sstevel@tonic-gate " -s report the size of the segment, instead of the end address\n" 31770Sstevel@tonic-gate " -c caller\n" 31780Sstevel@tonic-gate " filter out segments without the function/PC in their stack trace\n" 31790Sstevel@tonic-gate " -e earliest\n" 31800Sstevel@tonic-gate " filter out segments timestamped before earliest\n" 31810Sstevel@tonic-gate " -l latest\n" 31820Sstevel@tonic-gate " filter out segments timestamped after latest\n" 31830Sstevel@tonic-gate " -m minsize\n" 31840Sstevel@tonic-gate " filer out segments smaller than minsize\n" 31850Sstevel@tonic-gate " -M maxsize\n" 31860Sstevel@tonic-gate " filer out segments larger than maxsize\n" 31870Sstevel@tonic-gate " -t thread\n" 31880Sstevel@tonic-gate " filter out segments not involving thread\n" 31890Sstevel@tonic-gate " -T type\n" 31900Sstevel@tonic-gate " filter out segments not of type 'type'\n" 31910Sstevel@tonic-gate " type is one of: ALLOC/FREE/SPAN/ROTOR/WALKER\n"); 31920Sstevel@tonic-gate } 31930Sstevel@tonic-gate 31940Sstevel@tonic-gate /*ARGSUSED*/ 31950Sstevel@tonic-gate int 31960Sstevel@tonic-gate vmem_seg(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 31970Sstevel@tonic-gate { 31980Sstevel@tonic-gate vmem_seg_t vs; 31990Sstevel@tonic-gate pc_t *stk = vs.vs_stack; 32000Sstevel@tonic-gate uintptr_t sz; 32010Sstevel@tonic-gate uint8_t t; 32020Sstevel@tonic-gate const char *type = NULL; 32030Sstevel@tonic-gate GElf_Sym sym; 32040Sstevel@tonic-gate char c[MDB_SYM_NAMLEN]; 32050Sstevel@tonic-gate int no_debug; 32060Sstevel@tonic-gate int i; 32070Sstevel@tonic-gate int depth; 32080Sstevel@tonic-gate uintptr_t laddr, haddr; 32090Sstevel@tonic-gate 32100Sstevel@tonic-gate uintptr_t caller = NULL, thread = NULL; 32110Sstevel@tonic-gate uintptr_t minsize = 0, maxsize = 0; 32120Sstevel@tonic-gate 32130Sstevel@tonic-gate hrtime_t earliest = 0, latest = 0; 32140Sstevel@tonic-gate 32150Sstevel@tonic-gate uint_t size = 0; 32160Sstevel@tonic-gate uint_t verbose = 0; 32170Sstevel@tonic-gate 32180Sstevel@tonic-gate if (!(flags & DCMD_ADDRSPEC)) 32190Sstevel@tonic-gate return (DCMD_USAGE); 32200Sstevel@tonic-gate 32210Sstevel@tonic-gate if (mdb_getopts(argc, argv, 32220Sstevel@tonic-gate 'c', MDB_OPT_UINTPTR, &caller, 32230Sstevel@tonic-gate 'e', MDB_OPT_UINT64, &earliest, 32240Sstevel@tonic-gate 'l', MDB_OPT_UINT64, &latest, 32250Sstevel@tonic-gate 's', MDB_OPT_SETBITS, TRUE, &size, 32260Sstevel@tonic-gate 'm', MDB_OPT_UINTPTR, &minsize, 32270Sstevel@tonic-gate 'M', MDB_OPT_UINTPTR, &maxsize, 32280Sstevel@tonic-gate 't', MDB_OPT_UINTPTR, &thread, 32290Sstevel@tonic-gate 'T', MDB_OPT_STR, &type, 32300Sstevel@tonic-gate 'v', MDB_OPT_SETBITS, TRUE, &verbose, 32310Sstevel@tonic-gate NULL) != argc) 32320Sstevel@tonic-gate return (DCMD_USAGE); 32330Sstevel@tonic-gate 32340Sstevel@tonic-gate if (DCMD_HDRSPEC(flags) && !(flags & DCMD_PIPE_OUT)) { 32350Sstevel@tonic-gate if (verbose) { 32360Sstevel@tonic-gate mdb_printf("%16s %4s %16s %16s %16s\n" 32370Sstevel@tonic-gate "%<u>%16s %4s %16s %16s %16s%</u>\n", 32380Sstevel@tonic-gate "ADDR", "TYPE", "START", "END", "SIZE", 32390Sstevel@tonic-gate "", "", "THREAD", "TIMESTAMP", ""); 32400Sstevel@tonic-gate } else { 32410Sstevel@tonic-gate mdb_printf("%?s %4s %?s %?s %s\n", "ADDR", "TYPE", 32420Sstevel@tonic-gate "START", size? "SIZE" : "END", "WHO"); 32430Sstevel@tonic-gate } 32440Sstevel@tonic-gate } 32450Sstevel@tonic-gate 32460Sstevel@tonic-gate if (mdb_vread(&vs, sizeof (vs), addr) == -1) { 32470Sstevel@tonic-gate mdb_warn("couldn't read vmem_seg at %p", addr); 32480Sstevel@tonic-gate return (DCMD_ERR); 32490Sstevel@tonic-gate } 32500Sstevel@tonic-gate 32510Sstevel@tonic-gate if (type != NULL) { 32520Sstevel@tonic-gate if (strcmp(type, "ALLC") == 0 || strcmp(type, "ALLOC") == 0) 32530Sstevel@tonic-gate t = VMEM_ALLOC; 32540Sstevel@tonic-gate else if (strcmp(type, "FREE") == 0) 32550Sstevel@tonic-gate t = VMEM_FREE; 32560Sstevel@tonic-gate else if (strcmp(type, "SPAN") == 0) 32570Sstevel@tonic-gate t = VMEM_SPAN; 32580Sstevel@tonic-gate else if (strcmp(type, "ROTR") == 0 || 32590Sstevel@tonic-gate strcmp(type, "ROTOR") == 0) 32600Sstevel@tonic-gate t = VMEM_ROTOR; 32610Sstevel@tonic-gate else if (strcmp(type, "WLKR") == 0 || 32620Sstevel@tonic-gate strcmp(type, "WALKER") == 0) 32630Sstevel@tonic-gate t = VMEM_WALKER; 32640Sstevel@tonic-gate else { 32650Sstevel@tonic-gate mdb_warn("\"%s\" is not a recognized vmem_seg type\n", 32660Sstevel@tonic-gate type); 32670Sstevel@tonic-gate return (DCMD_ERR); 32680Sstevel@tonic-gate } 32690Sstevel@tonic-gate 32700Sstevel@tonic-gate if (vs.vs_type != t) 32710Sstevel@tonic-gate return (DCMD_OK); 32720Sstevel@tonic-gate } 32730Sstevel@tonic-gate 32740Sstevel@tonic-gate sz = vs.vs_end - vs.vs_start; 32750Sstevel@tonic-gate 32760Sstevel@tonic-gate if (minsize != 0 && sz < minsize) 32770Sstevel@tonic-gate return (DCMD_OK); 32780Sstevel@tonic-gate 32790Sstevel@tonic-gate if (maxsize != 0 && sz > maxsize) 32800Sstevel@tonic-gate return (DCMD_OK); 32810Sstevel@tonic-gate 32820Sstevel@tonic-gate t = vs.vs_type; 32830Sstevel@tonic-gate depth = vs.vs_depth; 32840Sstevel@tonic-gate 32850Sstevel@tonic-gate /* 32860Sstevel@tonic-gate * debug info, when present, is only accurate for VMEM_ALLOC segments 32870Sstevel@tonic-gate */ 32880Sstevel@tonic-gate no_debug = (t != VMEM_ALLOC) || 32890Sstevel@tonic-gate (depth == 0 || depth > VMEM_STACK_DEPTH); 32900Sstevel@tonic-gate 32910Sstevel@tonic-gate if (no_debug) { 32920Sstevel@tonic-gate if (caller != NULL || thread != NULL || earliest != 0 || 32930Sstevel@tonic-gate latest != 0) 32940Sstevel@tonic-gate return (DCMD_OK); /* not enough info */ 32950Sstevel@tonic-gate } else { 32960Sstevel@tonic-gate if (caller != NULL) { 32970Sstevel@tonic-gate laddr = caller; 32980Sstevel@tonic-gate haddr = caller + sizeof (caller); 32990Sstevel@tonic-gate 33000Sstevel@tonic-gate if (mdb_lookup_by_addr(caller, MDB_SYM_FUZZY, c, 33010Sstevel@tonic-gate sizeof (c), &sym) != -1 && 33020Sstevel@tonic-gate caller == (uintptr_t)sym.st_value) { 33030Sstevel@tonic-gate /* 33040Sstevel@tonic-gate * We were provided an exact symbol value; any 33050Sstevel@tonic-gate * address in the function is valid. 33060Sstevel@tonic-gate */ 33070Sstevel@tonic-gate laddr = (uintptr_t)sym.st_value; 33080Sstevel@tonic-gate haddr = (uintptr_t)sym.st_value + sym.st_size; 33090Sstevel@tonic-gate } 33100Sstevel@tonic-gate 33110Sstevel@tonic-gate for (i = 0; i < depth; i++) 33120Sstevel@tonic-gate if (vs.vs_stack[i] >= laddr && 33130Sstevel@tonic-gate vs.vs_stack[i] < haddr) 33140Sstevel@tonic-gate break; 33150Sstevel@tonic-gate 33160Sstevel@tonic-gate if (i == depth) 33170Sstevel@tonic-gate return (DCMD_OK); 33180Sstevel@tonic-gate } 33190Sstevel@tonic-gate 33200Sstevel@tonic-gate if (thread != NULL && (uintptr_t)vs.vs_thread != thread) 33210Sstevel@tonic-gate return (DCMD_OK); 33220Sstevel@tonic-gate 33230Sstevel@tonic-gate if (earliest != 0 && vs.vs_timestamp < earliest) 33240Sstevel@tonic-gate return (DCMD_OK); 33250Sstevel@tonic-gate 33260Sstevel@tonic-gate if (latest != 0 && vs.vs_timestamp > latest) 33270Sstevel@tonic-gate return (DCMD_OK); 33280Sstevel@tonic-gate } 33290Sstevel@tonic-gate 33300Sstevel@tonic-gate type = (t == VMEM_ALLOC ? "ALLC" : 33310Sstevel@tonic-gate t == VMEM_FREE ? "FREE" : 33320Sstevel@tonic-gate t == VMEM_SPAN ? "SPAN" : 33330Sstevel@tonic-gate t == VMEM_ROTOR ? "ROTR" : 33340Sstevel@tonic-gate t == VMEM_WALKER ? "WLKR" : 33350Sstevel@tonic-gate "????"); 33360Sstevel@tonic-gate 33370Sstevel@tonic-gate if (flags & DCMD_PIPE_OUT) { 33380Sstevel@tonic-gate mdb_printf("%#lr\n", addr); 33390Sstevel@tonic-gate return (DCMD_OK); 33400Sstevel@tonic-gate } 33410Sstevel@tonic-gate 33420Sstevel@tonic-gate if (verbose) { 33430Sstevel@tonic-gate mdb_printf("%<b>%16p%</b> %4s %16p %16p %16d\n", 33440Sstevel@tonic-gate addr, type, vs.vs_start, vs.vs_end, sz); 33450Sstevel@tonic-gate 33460Sstevel@tonic-gate if (no_debug) 33470Sstevel@tonic-gate return (DCMD_OK); 33480Sstevel@tonic-gate 33490Sstevel@tonic-gate mdb_printf("%16s %4s %16p %16llx\n", 33500Sstevel@tonic-gate "", "", vs.vs_thread, vs.vs_timestamp); 33510Sstevel@tonic-gate 33520Sstevel@tonic-gate mdb_inc_indent(17); 33530Sstevel@tonic-gate for (i = 0; i < depth; i++) { 33540Sstevel@tonic-gate mdb_printf("%a\n", stk[i]); 33550Sstevel@tonic-gate } 33560Sstevel@tonic-gate mdb_dec_indent(17); 33570Sstevel@tonic-gate mdb_printf("\n"); 33580Sstevel@tonic-gate } else { 33590Sstevel@tonic-gate mdb_printf("%0?p %4s %0?p %0?p", addr, type, 33600Sstevel@tonic-gate vs.vs_start, size? sz : vs.vs_end); 33610Sstevel@tonic-gate 33620Sstevel@tonic-gate if (no_debug) { 33630Sstevel@tonic-gate mdb_printf("\n"); 33640Sstevel@tonic-gate return (DCMD_OK); 33650Sstevel@tonic-gate } 33660Sstevel@tonic-gate 33670Sstevel@tonic-gate for (i = 0; i < depth; i++) { 33680Sstevel@tonic-gate if (mdb_lookup_by_addr(stk[i], MDB_SYM_FUZZY, 33690Sstevel@tonic-gate c, sizeof (c), &sym) == -1) 33700Sstevel@tonic-gate continue; 33710Sstevel@tonic-gate if (strncmp(c, "vmem_", 5) == 0) 33720Sstevel@tonic-gate continue; 33730Sstevel@tonic-gate break; 33740Sstevel@tonic-gate } 33750Sstevel@tonic-gate mdb_printf(" %a\n", stk[i]); 33760Sstevel@tonic-gate } 33770Sstevel@tonic-gate return (DCMD_OK); 33780Sstevel@tonic-gate } 33790Sstevel@tonic-gate 33800Sstevel@tonic-gate typedef struct kmalog_data { 33810Sstevel@tonic-gate uintptr_t kma_addr; 33820Sstevel@tonic-gate hrtime_t kma_newest; 33830Sstevel@tonic-gate } kmalog_data_t; 33840Sstevel@tonic-gate 33850Sstevel@tonic-gate /*ARGSUSED*/ 33860Sstevel@tonic-gate static int 33870Sstevel@tonic-gate showbc(uintptr_t addr, const kmem_bufctl_audit_t *bcp, kmalog_data_t *kma) 33880Sstevel@tonic-gate { 33890Sstevel@tonic-gate char name[KMEM_CACHE_NAMELEN + 1]; 33900Sstevel@tonic-gate hrtime_t delta; 33910Sstevel@tonic-gate int i, depth; 33920Sstevel@tonic-gate size_t bufsize; 33930Sstevel@tonic-gate 33940Sstevel@tonic-gate if (bcp->bc_timestamp == 0) 33950Sstevel@tonic-gate return (WALK_DONE); 33960Sstevel@tonic-gate 33970Sstevel@tonic-gate if (kma->kma_newest == 0) 33980Sstevel@tonic-gate kma->kma_newest = bcp->bc_timestamp; 33990Sstevel@tonic-gate 34000Sstevel@tonic-gate if (kma->kma_addr) { 34010Sstevel@tonic-gate if (mdb_vread(&bufsize, sizeof (bufsize), 34020Sstevel@tonic-gate (uintptr_t)&bcp->bc_cache->cache_bufsize) == -1) { 34030Sstevel@tonic-gate mdb_warn( 34040Sstevel@tonic-gate "failed to read cache_bufsize for cache at %p", 34050Sstevel@tonic-gate bcp->bc_cache); 34060Sstevel@tonic-gate return (WALK_ERR); 34070Sstevel@tonic-gate } 34080Sstevel@tonic-gate 34090Sstevel@tonic-gate if (kma->kma_addr < (uintptr_t)bcp->bc_addr || 34100Sstevel@tonic-gate kma->kma_addr >= (uintptr_t)bcp->bc_addr + bufsize) 34110Sstevel@tonic-gate return (WALK_NEXT); 34120Sstevel@tonic-gate } 34130Sstevel@tonic-gate 34140Sstevel@tonic-gate delta = kma->kma_newest - bcp->bc_timestamp; 34150Sstevel@tonic-gate depth = MIN(bcp->bc_depth, KMEM_STACK_DEPTH); 34160Sstevel@tonic-gate 34170Sstevel@tonic-gate if (mdb_readstr(name, sizeof (name), (uintptr_t) 34180Sstevel@tonic-gate &bcp->bc_cache->cache_name) <= 0) 34190Sstevel@tonic-gate (void) mdb_snprintf(name, sizeof (name), "%a", bcp->bc_cache); 34200Sstevel@tonic-gate 34210Sstevel@tonic-gate mdb_printf("\nT-%lld.%09lld addr=%p %s\n", 34220Sstevel@tonic-gate delta / NANOSEC, delta % NANOSEC, bcp->bc_addr, name); 34230Sstevel@tonic-gate 34240Sstevel@tonic-gate for (i = 0; i < depth; i++) 34250Sstevel@tonic-gate mdb_printf("\t %a\n", bcp->bc_stack[i]); 34260Sstevel@tonic-gate 34270Sstevel@tonic-gate return (WALK_NEXT); 34280Sstevel@tonic-gate } 34290Sstevel@tonic-gate 34300Sstevel@tonic-gate int 34310Sstevel@tonic-gate kmalog(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 34320Sstevel@tonic-gate { 34330Sstevel@tonic-gate const char *logname = "kmem_transaction_log"; 34340Sstevel@tonic-gate kmalog_data_t kma; 34350Sstevel@tonic-gate 34360Sstevel@tonic-gate if (argc > 1) 34370Sstevel@tonic-gate return (DCMD_USAGE); 34380Sstevel@tonic-gate 34390Sstevel@tonic-gate kma.kma_newest = 0; 34400Sstevel@tonic-gate if (flags & DCMD_ADDRSPEC) 34410Sstevel@tonic-gate kma.kma_addr = addr; 34420Sstevel@tonic-gate else 34430Sstevel@tonic-gate kma.kma_addr = NULL; 34440Sstevel@tonic-gate 34450Sstevel@tonic-gate if (argc > 0) { 34460Sstevel@tonic-gate if (argv->a_type != MDB_TYPE_STRING) 34470Sstevel@tonic-gate return (DCMD_USAGE); 34480Sstevel@tonic-gate if (strcmp(argv->a_un.a_str, "fail") == 0) 34490Sstevel@tonic-gate logname = "kmem_failure_log"; 34500Sstevel@tonic-gate else if (strcmp(argv->a_un.a_str, "slab") == 0) 34510Sstevel@tonic-gate logname = "kmem_slab_log"; 34520Sstevel@tonic-gate else 34530Sstevel@tonic-gate return (DCMD_USAGE); 34540Sstevel@tonic-gate } 34550Sstevel@tonic-gate 34560Sstevel@tonic-gate if (mdb_readvar(&addr, logname) == -1) { 34570Sstevel@tonic-gate mdb_warn("failed to read %s log header pointer"); 34580Sstevel@tonic-gate return (DCMD_ERR); 34590Sstevel@tonic-gate } 34600Sstevel@tonic-gate 34610Sstevel@tonic-gate if (mdb_pwalk("kmem_log", (mdb_walk_cb_t)showbc, &kma, addr) == -1) { 34620Sstevel@tonic-gate mdb_warn("failed to walk kmem log"); 34630Sstevel@tonic-gate return (DCMD_ERR); 34640Sstevel@tonic-gate } 34650Sstevel@tonic-gate 34660Sstevel@tonic-gate return (DCMD_OK); 34670Sstevel@tonic-gate } 34680Sstevel@tonic-gate 34690Sstevel@tonic-gate /* 34700Sstevel@tonic-gate * As the final lure for die-hard crash(1M) users, we provide ::kmausers here. 34710Sstevel@tonic-gate * The first piece is a structure which we use to accumulate kmem_cache_t 34720Sstevel@tonic-gate * addresses of interest. The kmc_add is used as a callback for the kmem_cache 34730Sstevel@tonic-gate * walker; we either add all caches, or ones named explicitly as arguments. 34740Sstevel@tonic-gate */ 34750Sstevel@tonic-gate 34760Sstevel@tonic-gate typedef struct kmclist { 34770Sstevel@tonic-gate const char *kmc_name; /* Name to match (or NULL) */ 34780Sstevel@tonic-gate uintptr_t *kmc_caches; /* List of kmem_cache_t addrs */ 34790Sstevel@tonic-gate int kmc_nelems; /* Num entries in kmc_caches */ 34800Sstevel@tonic-gate int kmc_size; /* Size of kmc_caches array */ 34810Sstevel@tonic-gate } kmclist_t; 34820Sstevel@tonic-gate 34830Sstevel@tonic-gate static int 34840Sstevel@tonic-gate kmc_add(uintptr_t addr, const kmem_cache_t *cp, kmclist_t *kmc) 34850Sstevel@tonic-gate { 34860Sstevel@tonic-gate void *p; 34870Sstevel@tonic-gate int s; 34880Sstevel@tonic-gate 34890Sstevel@tonic-gate if (kmc->kmc_name == NULL || 34900Sstevel@tonic-gate strcmp(cp->cache_name, kmc->kmc_name) == 0) { 34910Sstevel@tonic-gate /* 34920Sstevel@tonic-gate * If we have a match, grow our array (if necessary), and then 34930Sstevel@tonic-gate * add the virtual address of the matching cache to our list. 34940Sstevel@tonic-gate */ 34950Sstevel@tonic-gate if (kmc->kmc_nelems >= kmc->kmc_size) { 34960Sstevel@tonic-gate s = kmc->kmc_size ? kmc->kmc_size * 2 : 256; 34970Sstevel@tonic-gate p = mdb_alloc(sizeof (uintptr_t) * s, UM_SLEEP | UM_GC); 34980Sstevel@tonic-gate 34990Sstevel@tonic-gate bcopy(kmc->kmc_caches, p, 35000Sstevel@tonic-gate sizeof (uintptr_t) * kmc->kmc_size); 35010Sstevel@tonic-gate 35020Sstevel@tonic-gate kmc->kmc_caches = p; 35030Sstevel@tonic-gate kmc->kmc_size = s; 35040Sstevel@tonic-gate } 35050Sstevel@tonic-gate 35060Sstevel@tonic-gate kmc->kmc_caches[kmc->kmc_nelems++] = addr; 35070Sstevel@tonic-gate return (kmc->kmc_name ? WALK_DONE : WALK_NEXT); 35080Sstevel@tonic-gate } 35090Sstevel@tonic-gate 35100Sstevel@tonic-gate return (WALK_NEXT); 35110Sstevel@tonic-gate } 35120Sstevel@tonic-gate 35130Sstevel@tonic-gate /* 35140Sstevel@tonic-gate * The second piece of ::kmausers is a hash table of allocations. Each 35150Sstevel@tonic-gate * allocation owner is identified by its stack trace and data_size. We then 35160Sstevel@tonic-gate * track the total bytes of all such allocations, and the number of allocations 35170Sstevel@tonic-gate * to report at the end. Once we have a list of caches, we walk through the 35180Sstevel@tonic-gate * allocated bufctls of each, and update our hash table accordingly. 35190Sstevel@tonic-gate */ 35200Sstevel@tonic-gate 35210Sstevel@tonic-gate typedef struct kmowner { 35220Sstevel@tonic-gate struct kmowner *kmo_head; /* First hash elt in bucket */ 35230Sstevel@tonic-gate struct kmowner *kmo_next; /* Next hash elt in chain */ 35240Sstevel@tonic-gate size_t kmo_signature; /* Hash table signature */ 35250Sstevel@tonic-gate uint_t kmo_num; /* Number of allocations */ 35260Sstevel@tonic-gate size_t kmo_data_size; /* Size of each allocation */ 35270Sstevel@tonic-gate size_t kmo_total_size; /* Total bytes of allocation */ 35280Sstevel@tonic-gate int kmo_depth; /* Depth of stack trace */ 35290Sstevel@tonic-gate uintptr_t kmo_stack[KMEM_STACK_DEPTH]; /* Stack trace */ 35300Sstevel@tonic-gate } kmowner_t; 35310Sstevel@tonic-gate 35320Sstevel@tonic-gate typedef struct kmusers { 35330Sstevel@tonic-gate uintptr_t kmu_addr; /* address of interest */ 35340Sstevel@tonic-gate const kmem_cache_t *kmu_cache; /* Current kmem cache */ 35350Sstevel@tonic-gate kmowner_t *kmu_hash; /* Hash table of owners */ 35360Sstevel@tonic-gate int kmu_nelems; /* Number of entries in use */ 35370Sstevel@tonic-gate int kmu_size; /* Total number of entries */ 35380Sstevel@tonic-gate } kmusers_t; 35390Sstevel@tonic-gate 35400Sstevel@tonic-gate static void 35410Sstevel@tonic-gate kmu_add(kmusers_t *kmu, const kmem_bufctl_audit_t *bcp, 35420Sstevel@tonic-gate size_t size, size_t data_size) 35430Sstevel@tonic-gate { 35440Sstevel@tonic-gate int i, depth = MIN(bcp->bc_depth, KMEM_STACK_DEPTH); 35450Sstevel@tonic-gate size_t bucket, signature = data_size; 35460Sstevel@tonic-gate kmowner_t *kmo, *kmoend; 35470Sstevel@tonic-gate 35480Sstevel@tonic-gate /* 35490Sstevel@tonic-gate * If the hash table is full, double its size and rehash everything. 35500Sstevel@tonic-gate */ 35510Sstevel@tonic-gate if (kmu->kmu_nelems >= kmu->kmu_size) { 35520Sstevel@tonic-gate int s = kmu->kmu_size ? kmu->kmu_size * 2 : 1024; 35530Sstevel@tonic-gate 35540Sstevel@tonic-gate kmo = mdb_alloc(sizeof (kmowner_t) * s, UM_SLEEP | UM_GC); 35550Sstevel@tonic-gate bcopy(kmu->kmu_hash, kmo, sizeof (kmowner_t) * kmu->kmu_size); 35560Sstevel@tonic-gate kmu->kmu_hash = kmo; 35570Sstevel@tonic-gate kmu->kmu_size = s; 35580Sstevel@tonic-gate 35590Sstevel@tonic-gate kmoend = kmu->kmu_hash + kmu->kmu_size; 35600Sstevel@tonic-gate for (kmo = kmu->kmu_hash; kmo < kmoend; kmo++) 35610Sstevel@tonic-gate kmo->kmo_head = NULL; 35620Sstevel@tonic-gate 35630Sstevel@tonic-gate kmoend = kmu->kmu_hash + kmu->kmu_nelems; 35640Sstevel@tonic-gate for (kmo = kmu->kmu_hash; kmo < kmoend; kmo++) { 35650Sstevel@tonic-gate bucket = kmo->kmo_signature & (kmu->kmu_size - 1); 35660Sstevel@tonic-gate kmo->kmo_next = kmu->kmu_hash[bucket].kmo_head; 35670Sstevel@tonic-gate kmu->kmu_hash[bucket].kmo_head = kmo; 35680Sstevel@tonic-gate } 35690Sstevel@tonic-gate } 35700Sstevel@tonic-gate 35710Sstevel@tonic-gate /* 35720Sstevel@tonic-gate * Finish computing the hash signature from the stack trace, and then 35730Sstevel@tonic-gate * see if the owner is in the hash table. If so, update our stats. 35740Sstevel@tonic-gate */ 35750Sstevel@tonic-gate for (i = 0; i < depth; i++) 35760Sstevel@tonic-gate signature += bcp->bc_stack[i]; 35770Sstevel@tonic-gate 35780Sstevel@tonic-gate bucket = signature & (kmu->kmu_size - 1); 35790Sstevel@tonic-gate 35800Sstevel@tonic-gate for (kmo = kmu->kmu_hash[bucket].kmo_head; kmo; kmo = kmo->kmo_next) { 35810Sstevel@tonic-gate if (kmo->kmo_signature == signature) { 35820Sstevel@tonic-gate size_t difference = 0; 35830Sstevel@tonic-gate 35840Sstevel@tonic-gate difference |= kmo->kmo_data_size - data_size; 35850Sstevel@tonic-gate difference |= kmo->kmo_depth - depth; 35860Sstevel@tonic-gate 35870Sstevel@tonic-gate for (i = 0; i < depth; i++) { 35880Sstevel@tonic-gate difference |= kmo->kmo_stack[i] - 35890Sstevel@tonic-gate bcp->bc_stack[i]; 35900Sstevel@tonic-gate } 35910Sstevel@tonic-gate 35920Sstevel@tonic-gate if (difference == 0) { 35930Sstevel@tonic-gate kmo->kmo_total_size += size; 35940Sstevel@tonic-gate kmo->kmo_num++; 35950Sstevel@tonic-gate return; 35960Sstevel@tonic-gate } 35970Sstevel@tonic-gate } 35980Sstevel@tonic-gate } 35990Sstevel@tonic-gate 36000Sstevel@tonic-gate /* 36010Sstevel@tonic-gate * If the owner is not yet hashed, grab the next element and fill it 36020Sstevel@tonic-gate * in based on the allocation information. 36030Sstevel@tonic-gate */ 36040Sstevel@tonic-gate kmo = &kmu->kmu_hash[kmu->kmu_nelems++]; 36050Sstevel@tonic-gate kmo->kmo_next = kmu->kmu_hash[bucket].kmo_head; 36060Sstevel@tonic-gate kmu->kmu_hash[bucket].kmo_head = kmo; 36070Sstevel@tonic-gate 36080Sstevel@tonic-gate kmo->kmo_signature = signature; 36090Sstevel@tonic-gate kmo->kmo_num = 1; 36100Sstevel@tonic-gate kmo->kmo_data_size = data_size; 36110Sstevel@tonic-gate kmo->kmo_total_size = size; 36120Sstevel@tonic-gate kmo->kmo_depth = depth; 36130Sstevel@tonic-gate 36140Sstevel@tonic-gate for (i = 0; i < depth; i++) 36150Sstevel@tonic-gate kmo->kmo_stack[i] = bcp->bc_stack[i]; 36160Sstevel@tonic-gate } 36170Sstevel@tonic-gate 36180Sstevel@tonic-gate /* 36190Sstevel@tonic-gate * When ::kmausers is invoked without the -f flag, we simply update our hash 36200Sstevel@tonic-gate * table with the information from each allocated bufctl. 36210Sstevel@tonic-gate */ 36220Sstevel@tonic-gate /*ARGSUSED*/ 36230Sstevel@tonic-gate static int 36240Sstevel@tonic-gate kmause1(uintptr_t addr, const kmem_bufctl_audit_t *bcp, kmusers_t *kmu) 36250Sstevel@tonic-gate { 36260Sstevel@tonic-gate const kmem_cache_t *cp = kmu->kmu_cache; 36270Sstevel@tonic-gate 36280Sstevel@tonic-gate kmu_add(kmu, bcp, cp->cache_bufsize, cp->cache_bufsize); 36290Sstevel@tonic-gate return (WALK_NEXT); 36300Sstevel@tonic-gate } 36310Sstevel@tonic-gate 36320Sstevel@tonic-gate /* 36330Sstevel@tonic-gate * When ::kmausers is invoked with the -f flag, we print out the information 36340Sstevel@tonic-gate * for each bufctl as well as updating the hash table. 36350Sstevel@tonic-gate */ 36360Sstevel@tonic-gate static int 36370Sstevel@tonic-gate kmause2(uintptr_t addr, const kmem_bufctl_audit_t *bcp, kmusers_t *kmu) 36380Sstevel@tonic-gate { 36390Sstevel@tonic-gate int i, depth = MIN(bcp->bc_depth, KMEM_STACK_DEPTH); 36400Sstevel@tonic-gate const kmem_cache_t *cp = kmu->kmu_cache; 36410Sstevel@tonic-gate kmem_bufctl_t bufctl; 36420Sstevel@tonic-gate 36430Sstevel@tonic-gate if (kmu->kmu_addr) { 36440Sstevel@tonic-gate if (mdb_vread(&bufctl, sizeof (bufctl), addr) == -1) 36450Sstevel@tonic-gate mdb_warn("couldn't read bufctl at %p", addr); 36460Sstevel@tonic-gate else if (kmu->kmu_addr < (uintptr_t)bufctl.bc_addr || 36470Sstevel@tonic-gate kmu->kmu_addr >= (uintptr_t)bufctl.bc_addr + 36480Sstevel@tonic-gate cp->cache_bufsize) 36490Sstevel@tonic-gate return (WALK_NEXT); 36500Sstevel@tonic-gate } 36510Sstevel@tonic-gate 36520Sstevel@tonic-gate mdb_printf("size %d, addr %p, thread %p, cache %s\n", 36530Sstevel@tonic-gate cp->cache_bufsize, addr, bcp->bc_thread, cp->cache_name); 36540Sstevel@tonic-gate 36550Sstevel@tonic-gate for (i = 0; i < depth; i++) 36560Sstevel@tonic-gate mdb_printf("\t %a\n", bcp->bc_stack[i]); 36570Sstevel@tonic-gate 36580Sstevel@tonic-gate kmu_add(kmu, bcp, cp->cache_bufsize, cp->cache_bufsize); 36590Sstevel@tonic-gate return (WALK_NEXT); 36600Sstevel@tonic-gate } 36610Sstevel@tonic-gate 36620Sstevel@tonic-gate /* 36630Sstevel@tonic-gate * We sort our results by allocation size before printing them. 36640Sstevel@tonic-gate */ 36650Sstevel@tonic-gate static int 36660Sstevel@tonic-gate kmownercmp(const void *lp, const void *rp) 36670Sstevel@tonic-gate { 36680Sstevel@tonic-gate const kmowner_t *lhs = lp; 36690Sstevel@tonic-gate const kmowner_t *rhs = rp; 36700Sstevel@tonic-gate 36710Sstevel@tonic-gate return (rhs->kmo_total_size - lhs->kmo_total_size); 36720Sstevel@tonic-gate } 36730Sstevel@tonic-gate 36740Sstevel@tonic-gate /* 36750Sstevel@tonic-gate * The main engine of ::kmausers is relatively straightforward: First we 36760Sstevel@tonic-gate * accumulate our list of kmem_cache_t addresses into the kmclist_t. Next we 36770Sstevel@tonic-gate * iterate over the allocated bufctls of each cache in the list. Finally, 36780Sstevel@tonic-gate * we sort and print our results. 36790Sstevel@tonic-gate */ 36800Sstevel@tonic-gate /*ARGSUSED*/ 36810Sstevel@tonic-gate int 36820Sstevel@tonic-gate kmausers(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 36830Sstevel@tonic-gate { 36840Sstevel@tonic-gate int mem_threshold = 8192; /* Minimum # bytes for printing */ 36850Sstevel@tonic-gate int cnt_threshold = 100; /* Minimum # blocks for printing */ 36860Sstevel@tonic-gate int audited_caches = 0; /* Number of KMF_AUDIT caches found */ 36870Sstevel@tonic-gate int do_all_caches = 1; /* Do all caches (no arguments) */ 36880Sstevel@tonic-gate int opt_e = FALSE; /* Include "small" users */ 36890Sstevel@tonic-gate int opt_f = FALSE; /* Print stack traces */ 36900Sstevel@tonic-gate 36910Sstevel@tonic-gate mdb_walk_cb_t callback = (mdb_walk_cb_t)kmause1; 36920Sstevel@tonic-gate kmowner_t *kmo, *kmoend; 36930Sstevel@tonic-gate int i, oelems; 36940Sstevel@tonic-gate 36950Sstevel@tonic-gate kmclist_t kmc; 36960Sstevel@tonic-gate kmusers_t kmu; 36970Sstevel@tonic-gate 36980Sstevel@tonic-gate bzero(&kmc, sizeof (kmc)); 36990Sstevel@tonic-gate bzero(&kmu, sizeof (kmu)); 37000Sstevel@tonic-gate 37010Sstevel@tonic-gate while ((i = mdb_getopts(argc, argv, 37020Sstevel@tonic-gate 'e', MDB_OPT_SETBITS, TRUE, &opt_e, 37030Sstevel@tonic-gate 'f', MDB_OPT_SETBITS, TRUE, &opt_f, NULL)) != argc) { 37040Sstevel@tonic-gate 37050Sstevel@tonic-gate argv += i; /* skip past options we just processed */ 37060Sstevel@tonic-gate argc -= i; /* adjust argc */ 37070Sstevel@tonic-gate 37080Sstevel@tonic-gate if (argv->a_type != MDB_TYPE_STRING || *argv->a_un.a_str == '-') 37090Sstevel@tonic-gate return (DCMD_USAGE); 37100Sstevel@tonic-gate 37110Sstevel@tonic-gate oelems = kmc.kmc_nelems; 37120Sstevel@tonic-gate kmc.kmc_name = argv->a_un.a_str; 37130Sstevel@tonic-gate (void) mdb_walk("kmem_cache", (mdb_walk_cb_t)kmc_add, &kmc); 37140Sstevel@tonic-gate 37150Sstevel@tonic-gate if (kmc.kmc_nelems == oelems) { 37160Sstevel@tonic-gate mdb_warn("unknown kmem cache: %s\n", kmc.kmc_name); 37170Sstevel@tonic-gate return (DCMD_ERR); 37180Sstevel@tonic-gate } 37190Sstevel@tonic-gate 37200Sstevel@tonic-gate do_all_caches = 0; 37210Sstevel@tonic-gate argv++; 37220Sstevel@tonic-gate argc--; 37230Sstevel@tonic-gate } 37240Sstevel@tonic-gate 37250Sstevel@tonic-gate if (flags & DCMD_ADDRSPEC) { 37260Sstevel@tonic-gate opt_f = TRUE; 37270Sstevel@tonic-gate kmu.kmu_addr = addr; 37280Sstevel@tonic-gate } else { 37290Sstevel@tonic-gate kmu.kmu_addr = NULL; 37300Sstevel@tonic-gate } 37310Sstevel@tonic-gate 37320Sstevel@tonic-gate if (opt_e) 37330Sstevel@tonic-gate mem_threshold = cnt_threshold = 0; 37340Sstevel@tonic-gate 37350Sstevel@tonic-gate if (opt_f) 37360Sstevel@tonic-gate callback = (mdb_walk_cb_t)kmause2; 37370Sstevel@tonic-gate 37380Sstevel@tonic-gate if (do_all_caches) { 37390Sstevel@tonic-gate kmc.kmc_name = NULL; /* match all cache names */ 37400Sstevel@tonic-gate (void) mdb_walk("kmem_cache", (mdb_walk_cb_t)kmc_add, &kmc); 37410Sstevel@tonic-gate } 37420Sstevel@tonic-gate 37430Sstevel@tonic-gate for (i = 0; i < kmc.kmc_nelems; i++) { 37440Sstevel@tonic-gate uintptr_t cp = kmc.kmc_caches[i]; 37450Sstevel@tonic-gate kmem_cache_t c; 37460Sstevel@tonic-gate 37470Sstevel@tonic-gate if (mdb_vread(&c, sizeof (c), cp) == -1) { 37480Sstevel@tonic-gate mdb_warn("failed to read cache at %p", cp); 37490Sstevel@tonic-gate continue; 37500Sstevel@tonic-gate } 37510Sstevel@tonic-gate 37520Sstevel@tonic-gate if (!(c.cache_flags & KMF_AUDIT)) { 37530Sstevel@tonic-gate if (!do_all_caches) { 37540Sstevel@tonic-gate mdb_warn("KMF_AUDIT is not enabled for %s\n", 37550Sstevel@tonic-gate c.cache_name); 37560Sstevel@tonic-gate } 37570Sstevel@tonic-gate continue; 37580Sstevel@tonic-gate } 37590Sstevel@tonic-gate 37600Sstevel@tonic-gate kmu.kmu_cache = &c; 37610Sstevel@tonic-gate (void) mdb_pwalk("bufctl", callback, &kmu, cp); 37620Sstevel@tonic-gate audited_caches++; 37630Sstevel@tonic-gate } 37640Sstevel@tonic-gate 37650Sstevel@tonic-gate if (audited_caches == 0 && do_all_caches) { 37660Sstevel@tonic-gate mdb_warn("KMF_AUDIT is not enabled for any caches\n"); 37670Sstevel@tonic-gate return (DCMD_ERR); 37680Sstevel@tonic-gate } 37690Sstevel@tonic-gate 37700Sstevel@tonic-gate qsort(kmu.kmu_hash, kmu.kmu_nelems, sizeof (kmowner_t), kmownercmp); 37710Sstevel@tonic-gate kmoend = kmu.kmu_hash + kmu.kmu_nelems; 37720Sstevel@tonic-gate 37730Sstevel@tonic-gate for (kmo = kmu.kmu_hash; kmo < kmoend; kmo++) { 37740Sstevel@tonic-gate if (kmo->kmo_total_size < mem_threshold && 37750Sstevel@tonic-gate kmo->kmo_num < cnt_threshold) 37760Sstevel@tonic-gate continue; 37770Sstevel@tonic-gate mdb_printf("%lu bytes for %u allocations with data size %lu:\n", 37780Sstevel@tonic-gate kmo->kmo_total_size, kmo->kmo_num, kmo->kmo_data_size); 37790Sstevel@tonic-gate for (i = 0; i < kmo->kmo_depth; i++) 37800Sstevel@tonic-gate mdb_printf("\t %a\n", kmo->kmo_stack[i]); 37810Sstevel@tonic-gate } 37820Sstevel@tonic-gate 37830Sstevel@tonic-gate return (DCMD_OK); 37840Sstevel@tonic-gate } 37850Sstevel@tonic-gate 37860Sstevel@tonic-gate void 37870Sstevel@tonic-gate kmausers_help(void) 37880Sstevel@tonic-gate { 37890Sstevel@tonic-gate mdb_printf( 37900Sstevel@tonic-gate "Displays the largest users of the kmem allocator, sorted by \n" 37910Sstevel@tonic-gate "trace. If one or more caches is specified, only those caches\n" 37920Sstevel@tonic-gate "will be searched. By default, all caches are searched. If an\n" 37930Sstevel@tonic-gate "address is specified, then only those allocations which include\n" 37940Sstevel@tonic-gate "the given address are displayed. Specifying an address implies\n" 37950Sstevel@tonic-gate "-f.\n" 37960Sstevel@tonic-gate "\n" 37970Sstevel@tonic-gate "\t-e\tInclude all users, not just the largest\n" 37980Sstevel@tonic-gate "\t-f\tDisplay individual allocations. By default, users are\n" 37990Sstevel@tonic-gate "\t\tgrouped by stack\n"); 38000Sstevel@tonic-gate } 38010Sstevel@tonic-gate 38020Sstevel@tonic-gate static int 38030Sstevel@tonic-gate kmem_ready_check(void) 38040Sstevel@tonic-gate { 38050Sstevel@tonic-gate int ready; 38060Sstevel@tonic-gate 38070Sstevel@tonic-gate if (mdb_readvar(&ready, "kmem_ready") < 0) 38080Sstevel@tonic-gate return (-1); /* errno is set for us */ 38090Sstevel@tonic-gate 38100Sstevel@tonic-gate return (ready); 38110Sstevel@tonic-gate } 38120Sstevel@tonic-gate 38130Sstevel@tonic-gate /*ARGSUSED*/ 38140Sstevel@tonic-gate static void 3815*1528Sjwadams kmem_statechange_cb(void *arg) 38160Sstevel@tonic-gate { 3817*1528Sjwadams static int been_ready = 0; 3818*1528Sjwadams 3819*1528Sjwadams leaky_cleanup(1); /* state changes invalidate leaky state */ 3820*1528Sjwadams 3821*1528Sjwadams if (been_ready) 3822*1528Sjwadams return; 3823*1528Sjwadams 38240Sstevel@tonic-gate if (kmem_ready_check() <= 0) 38250Sstevel@tonic-gate return; 38260Sstevel@tonic-gate 3827*1528Sjwadams been_ready = 1; 38280Sstevel@tonic-gate (void) mdb_walk("kmem_cache", (mdb_walk_cb_t)kmem_init_walkers, NULL); 38290Sstevel@tonic-gate } 38300Sstevel@tonic-gate 38310Sstevel@tonic-gate void 38320Sstevel@tonic-gate kmem_init(void) 38330Sstevel@tonic-gate { 38340Sstevel@tonic-gate mdb_walker_t w = { 38350Sstevel@tonic-gate "kmem_cache", "walk list of kmem caches", kmem_cache_walk_init, 38360Sstevel@tonic-gate kmem_cache_walk_step, kmem_cache_walk_fini 38370Sstevel@tonic-gate }; 38380Sstevel@tonic-gate 38390Sstevel@tonic-gate /* 38400Sstevel@tonic-gate * If kmem is ready, we'll need to invoke the kmem_cache walker 38410Sstevel@tonic-gate * immediately. Walkers in the linkage structure won't be ready until 38420Sstevel@tonic-gate * _mdb_init returns, so we'll need to add this one manually. If kmem 38430Sstevel@tonic-gate * is ready, we'll use the walker to initialize the caches. If kmem 38440Sstevel@tonic-gate * isn't ready, we'll register a callback that will allow us to defer 38450Sstevel@tonic-gate * cache walking until it is. 38460Sstevel@tonic-gate */ 38470Sstevel@tonic-gate if (mdb_add_walker(&w) != 0) { 38480Sstevel@tonic-gate mdb_warn("failed to add kmem_cache walker"); 38490Sstevel@tonic-gate return; 38500Sstevel@tonic-gate } 38510Sstevel@tonic-gate 3852*1528Sjwadams (void) mdb_callback_add(MDB_CALLBACK_STCHG, kmem_statechange_cb, NULL); 3853*1528Sjwadams kmem_statechange_cb(NULL); 38540Sstevel@tonic-gate } 38550Sstevel@tonic-gate 38560Sstevel@tonic-gate typedef struct whatthread { 38570Sstevel@tonic-gate uintptr_t wt_target; 38580Sstevel@tonic-gate int wt_verbose; 38590Sstevel@tonic-gate } whatthread_t; 38600Sstevel@tonic-gate 38610Sstevel@tonic-gate static int 38620Sstevel@tonic-gate whatthread_walk_thread(uintptr_t addr, const kthread_t *t, whatthread_t *w) 38630Sstevel@tonic-gate { 38640Sstevel@tonic-gate uintptr_t current, data; 38650Sstevel@tonic-gate 38660Sstevel@tonic-gate if (t->t_stkbase == NULL) 38670Sstevel@tonic-gate return (WALK_NEXT); 38680Sstevel@tonic-gate 38690Sstevel@tonic-gate /* 38700Sstevel@tonic-gate * Warn about swapped out threads, but drive on anyway 38710Sstevel@tonic-gate */ 38720Sstevel@tonic-gate if (!(t->t_schedflag & TS_LOAD)) { 38730Sstevel@tonic-gate mdb_warn("thread %p's stack swapped out\n", addr); 38740Sstevel@tonic-gate return (WALK_NEXT); 38750Sstevel@tonic-gate } 38760Sstevel@tonic-gate 38770Sstevel@tonic-gate /* 38780Sstevel@tonic-gate * Search the thread's stack for the given pointer. Note that it would 38790Sstevel@tonic-gate * be more efficient to follow ::kgrep's lead and read in page-sized 38800Sstevel@tonic-gate * chunks, but this routine is already fast and simple. 38810Sstevel@tonic-gate */ 38820Sstevel@tonic-gate for (current = (uintptr_t)t->t_stkbase; current < (uintptr_t)t->t_stk; 38830Sstevel@tonic-gate current += sizeof (uintptr_t)) { 38840Sstevel@tonic-gate if (mdb_vread(&data, sizeof (data), current) == -1) { 38850Sstevel@tonic-gate mdb_warn("couldn't read thread %p's stack at %p", 38860Sstevel@tonic-gate addr, current); 38870Sstevel@tonic-gate return (WALK_ERR); 38880Sstevel@tonic-gate } 38890Sstevel@tonic-gate 38900Sstevel@tonic-gate if (data == w->wt_target) { 38910Sstevel@tonic-gate if (w->wt_verbose) { 38920Sstevel@tonic-gate mdb_printf("%p in thread %p's stack%s\n", 38930Sstevel@tonic-gate current, addr, stack_active(t, current)); 38940Sstevel@tonic-gate } else { 38950Sstevel@tonic-gate mdb_printf("%#lr\n", addr); 38960Sstevel@tonic-gate return (WALK_NEXT); 38970Sstevel@tonic-gate } 38980Sstevel@tonic-gate } 38990Sstevel@tonic-gate } 39000Sstevel@tonic-gate 39010Sstevel@tonic-gate return (WALK_NEXT); 39020Sstevel@tonic-gate } 39030Sstevel@tonic-gate 39040Sstevel@tonic-gate int 39050Sstevel@tonic-gate whatthread(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) 39060Sstevel@tonic-gate { 39070Sstevel@tonic-gate whatthread_t w; 39080Sstevel@tonic-gate 39090Sstevel@tonic-gate if (!(flags & DCMD_ADDRSPEC)) 39100Sstevel@tonic-gate return (DCMD_USAGE); 39110Sstevel@tonic-gate 39120Sstevel@tonic-gate w.wt_verbose = FALSE; 39130Sstevel@tonic-gate w.wt_target = addr; 39140Sstevel@tonic-gate 39150Sstevel@tonic-gate if (mdb_getopts(argc, argv, 39160Sstevel@tonic-gate 'v', MDB_OPT_SETBITS, TRUE, &w.wt_verbose, NULL) != argc) 39170Sstevel@tonic-gate return (DCMD_USAGE); 39180Sstevel@tonic-gate 39190Sstevel@tonic-gate if (mdb_walk("thread", (mdb_walk_cb_t)whatthread_walk_thread, &w) 39200Sstevel@tonic-gate == -1) { 39210Sstevel@tonic-gate mdb_warn("couldn't walk threads"); 39220Sstevel@tonic-gate return (DCMD_ERR); 39230Sstevel@tonic-gate } 39240Sstevel@tonic-gate 39250Sstevel@tonic-gate return (DCMD_OK); 39260Sstevel@tonic-gate } 3927