17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate * CDDL HEADER START
37c478bd9Sstevel@tonic-gate *
47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
545916cd2Sjpk * Common Development and Distribution License (the "License").
645916cd2Sjpk * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate *
87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate * and limitations under the License.
127c478bd9Sstevel@tonic-gate *
137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate *
197c478bd9Sstevel@tonic-gate * CDDL HEADER END
207c478bd9Sstevel@tonic-gate */
21d4204c85Sraf
227c478bd9Sstevel@tonic-gate /*
237af88ac7SKuriakose Kuruvilla * Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
247ac89421SRobert Mustacchi * Copyright (c) 2013, Joyent, Inc. All rights reserved.
257c478bd9Sstevel@tonic-gate */
267c478bd9Sstevel@tonic-gate
277c478bd9Sstevel@tonic-gate #include <sys/types.h>
287c478bd9Sstevel@tonic-gate #include <sys/param.h>
297c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
307c478bd9Sstevel@tonic-gate #include <sys/signal.h>
317c478bd9Sstevel@tonic-gate #include <sys/stack.h>
327c478bd9Sstevel@tonic-gate #include <sys/pcb.h>
337c478bd9Sstevel@tonic-gate #include <sys/user.h>
347c478bd9Sstevel@tonic-gate #include <sys/systm.h>
357c478bd9Sstevel@tonic-gate #include <sys/sysinfo.h>
367c478bd9Sstevel@tonic-gate #include <sys/errno.h>
377c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
387c478bd9Sstevel@tonic-gate #include <sys/cred.h>
397c478bd9Sstevel@tonic-gate #include <sys/resource.h>
407c478bd9Sstevel@tonic-gate #include <sys/task.h>
417c478bd9Sstevel@tonic-gate #include <sys/project.h>
427c478bd9Sstevel@tonic-gate #include <sys/proc.h>
437c478bd9Sstevel@tonic-gate #include <sys/debug.h>
447c478bd9Sstevel@tonic-gate #include <sys/disp.h>
457c478bd9Sstevel@tonic-gate #include <sys/class.h>
467c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h>
477c478bd9Sstevel@tonic-gate #include <vm/seg_kp.h>
487c478bd9Sstevel@tonic-gate #include <sys/machlock.h>
497c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
507c478bd9Sstevel@tonic-gate #include <sys/varargs.h>
517c478bd9Sstevel@tonic-gate #include <sys/turnstile.h>
527c478bd9Sstevel@tonic-gate #include <sys/poll.h>
537c478bd9Sstevel@tonic-gate #include <sys/vtrace.h>
547c478bd9Sstevel@tonic-gate #include <sys/callb.h>
557c478bd9Sstevel@tonic-gate #include <c2/audit.h>
567c478bd9Sstevel@tonic-gate #include <sys/tnf.h>
577c478bd9Sstevel@tonic-gate #include <sys/sobject.h>
587c478bd9Sstevel@tonic-gate #include <sys/cpupart.h>
597c478bd9Sstevel@tonic-gate #include <sys/pset.h>
607c478bd9Sstevel@tonic-gate #include <sys/door.h>
617c478bd9Sstevel@tonic-gate #include <sys/spl.h>
627c478bd9Sstevel@tonic-gate #include <sys/copyops.h>
637c478bd9Sstevel@tonic-gate #include <sys/rctl.h>
649acbbeafSnn35248 #include <sys/brand.h>
657c478bd9Sstevel@tonic-gate #include <sys/pool.h>
667c478bd9Sstevel@tonic-gate #include <sys/zone.h>
6745916cd2Sjpk #include <sys/tsol/label.h>
6845916cd2Sjpk #include <sys/tsol/tndb.h>
697c478bd9Sstevel@tonic-gate #include <sys/cpc_impl.h>
707c478bd9Sstevel@tonic-gate #include <sys/sdt.h>
717c478bd9Sstevel@tonic-gate #include <sys/reboot.h>
727c478bd9Sstevel@tonic-gate #include <sys/kdi.h>
73d4204c85Sraf #include <sys/schedctl.h>
74c97ad5cdSakolb #include <sys/waitq.h>
75c97ad5cdSakolb #include <sys/cpucaps.h>
76d14d7d31Sis #include <sys/kiconv.h>
777c478bd9Sstevel@tonic-gate
787c478bd9Sstevel@tonic-gate struct kmem_cache *thread_cache; /* cache of free threads */
797c478bd9Sstevel@tonic-gate struct kmem_cache *lwp_cache; /* cache of free lwps */
807c478bd9Sstevel@tonic-gate struct kmem_cache *turnstile_cache; /* cache of free turnstiles */
817c478bd9Sstevel@tonic-gate
827c478bd9Sstevel@tonic-gate /*
837c478bd9Sstevel@tonic-gate * allthreads is only for use by kmem_readers. All kernel loops can use
847c478bd9Sstevel@tonic-gate * the current thread as a start/end point.
857c478bd9Sstevel@tonic-gate */
86*7eb15eebSRichard Lowe kthread_t *allthreads = &t0; /* circular list of all threads */
877c478bd9Sstevel@tonic-gate
887c478bd9Sstevel@tonic-gate static kcondvar_t reaper_cv; /* synchronization var */
897c478bd9Sstevel@tonic-gate kthread_t *thread_deathrow; /* circular list of reapable threads */
907c478bd9Sstevel@tonic-gate kthread_t *lwp_deathrow; /* circular list of reapable threads */
917c478bd9Sstevel@tonic-gate kmutex_t reaplock; /* protects lwp and thread deathrows */
927c478bd9Sstevel@tonic-gate int thread_reapcnt = 0; /* number of threads on deathrow */
937c478bd9Sstevel@tonic-gate int lwp_reapcnt = 0; /* number of lwps on deathrow */
947c478bd9Sstevel@tonic-gate int reaplimit = 16; /* delay reaping until reaplimit */
957c478bd9Sstevel@tonic-gate
962850d85bSmv143129 thread_free_lock_t *thread_free_lock;
972850d85bSmv143129 /* protects tick thread from reaper */
982850d85bSmv143129
997c478bd9Sstevel@tonic-gate extern int nthread;
1007c478bd9Sstevel@tonic-gate
10135a5a358SJonathan Adams /* System Scheduling classes. */
1027c478bd9Sstevel@tonic-gate id_t syscid; /* system scheduling class ID */
10335a5a358SJonathan Adams id_t sysdccid = CLASS_UNUSED; /* reset when SDC loads */
10435a5a358SJonathan Adams
1057c478bd9Sstevel@tonic-gate void *segkp_thread; /* cookie for segkp pool */
1067c478bd9Sstevel@tonic-gate
1077c478bd9Sstevel@tonic-gate int lwp_cache_sz = 32;
1087c478bd9Sstevel@tonic-gate int t_cache_sz = 8;
1097c478bd9Sstevel@tonic-gate static kt_did_t next_t_id = 1;
1107c478bd9Sstevel@tonic-gate
1110b70c467Sakolb /* Default mode for thread binding to CPUs and processor sets */
1120b70c467Sakolb int default_binding_mode = TB_ALLHARD;
1130b70c467Sakolb
1147c478bd9Sstevel@tonic-gate /*
1157c478bd9Sstevel@tonic-gate * Min/Max stack sizes for stack size parameters
1167c478bd9Sstevel@tonic-gate */
1177c478bd9Sstevel@tonic-gate #define MAX_STKSIZE (32 * DEFAULTSTKSZ)
1187c478bd9Sstevel@tonic-gate #define MIN_STKSIZE DEFAULTSTKSZ
1197c478bd9Sstevel@tonic-gate
1207c478bd9Sstevel@tonic-gate /*
1217c478bd9Sstevel@tonic-gate * default_stksize overrides lwp_default_stksize if it is set.
1227c478bd9Sstevel@tonic-gate */
1237c478bd9Sstevel@tonic-gate int default_stksize;
1247c478bd9Sstevel@tonic-gate int lwp_default_stksize;
1257c478bd9Sstevel@tonic-gate
1267c478bd9Sstevel@tonic-gate static zone_key_t zone_thread_key;
1277c478bd9Sstevel@tonic-gate
128bff31d89SPhilippe Jung unsigned int kmem_stackinfo; /* stackinfo feature on-off */
129bff31d89SPhilippe Jung kmem_stkinfo_t *kmem_stkinfo_log; /* stackinfo circular log */
130bff31d89SPhilippe Jung static kmutex_t kmem_stkinfo_lock; /* protects kmem_stkinfo_log */
131bff31d89SPhilippe Jung
1327c478bd9Sstevel@tonic-gate /*
1337c478bd9Sstevel@tonic-gate * forward declarations for internal thread specific data (tsd)
1347c478bd9Sstevel@tonic-gate */
1357c478bd9Sstevel@tonic-gate static void *tsd_realloc(void *, size_t, size_t);
1367c478bd9Sstevel@tonic-gate
1375ce42f36Spraks void thread_reaper(void);
1385ce42f36Spraks
139bff31d89SPhilippe Jung /* forward declarations for stackinfo feature */
140bff31d89SPhilippe Jung static void stkinfo_begin(kthread_t *);
141bff31d89SPhilippe Jung static void stkinfo_end(kthread_t *);
142bff31d89SPhilippe Jung static size_t stkinfo_percent(caddr_t, caddr_t, caddr_t);
143bff31d89SPhilippe Jung
1447c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1457c478bd9Sstevel@tonic-gate static int
turnstile_constructor(void * buf,void * cdrarg,int kmflags)1467c478bd9Sstevel@tonic-gate turnstile_constructor(void *buf, void *cdrarg, int kmflags)
1477c478bd9Sstevel@tonic-gate {
1487c478bd9Sstevel@tonic-gate bzero(buf, sizeof (turnstile_t));
1497c478bd9Sstevel@tonic-gate return (0);
1507c478bd9Sstevel@tonic-gate }
1517c478bd9Sstevel@tonic-gate
1527c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1537c478bd9Sstevel@tonic-gate static void
turnstile_destructor(void * buf,void * cdrarg)1547c478bd9Sstevel@tonic-gate turnstile_destructor(void *buf, void *cdrarg)
1557c478bd9Sstevel@tonic-gate {
1567c478bd9Sstevel@tonic-gate turnstile_t *ts = buf;
1577c478bd9Sstevel@tonic-gate
1587c478bd9Sstevel@tonic-gate ASSERT(ts->ts_free == NULL);
1597c478bd9Sstevel@tonic-gate ASSERT(ts->ts_waiters == 0);
1607c478bd9Sstevel@tonic-gate ASSERT(ts->ts_inheritor == NULL);
1617c478bd9Sstevel@tonic-gate ASSERT(ts->ts_sleepq[0].sq_first == NULL);
1627c478bd9Sstevel@tonic-gate ASSERT(ts->ts_sleepq[1].sq_first == NULL);
1637c478bd9Sstevel@tonic-gate }
1647c478bd9Sstevel@tonic-gate
1657c478bd9Sstevel@tonic-gate void
thread_init(void)1667c478bd9Sstevel@tonic-gate thread_init(void)
1677c478bd9Sstevel@tonic-gate {
1687c478bd9Sstevel@tonic-gate kthread_t *tp;
1697c478bd9Sstevel@tonic-gate extern char sys_name[];
1707c478bd9Sstevel@tonic-gate extern void idle();
1717c478bd9Sstevel@tonic-gate struct cpu *cpu = CPU;
1722850d85bSmv143129 int i;
1732850d85bSmv143129 kmutex_t *lp;
1747c478bd9Sstevel@tonic-gate
1757c478bd9Sstevel@tonic-gate mutex_init(&reaplock, NULL, MUTEX_SPIN, (void *)ipltospl(DISP_LEVEL));
1762850d85bSmv143129 thread_free_lock =
1772850d85bSmv143129 kmem_alloc(sizeof (thread_free_lock_t) * THREAD_FREE_NUM, KM_SLEEP);
1782850d85bSmv143129 for (i = 0; i < THREAD_FREE_NUM; i++) {
1792850d85bSmv143129 lp = &thread_free_lock[i].tf_lock;
1802850d85bSmv143129 mutex_init(lp, NULL, MUTEX_DEFAULT, NULL);
1812850d85bSmv143129 }
1827c478bd9Sstevel@tonic-gate
1837c478bd9Sstevel@tonic-gate #if defined(__i386) || defined(__amd64)
1847c478bd9Sstevel@tonic-gate thread_cache = kmem_cache_create("thread_cache", sizeof (kthread_t),
1857c478bd9Sstevel@tonic-gate PTR24_ALIGN, NULL, NULL, NULL, NULL, NULL, 0);
1867c478bd9Sstevel@tonic-gate
1877c478bd9Sstevel@tonic-gate /*
1887c478bd9Sstevel@tonic-gate * "struct _klwp" includes a "struct pcb", which includes a
1897af88ac7SKuriakose Kuruvilla * "struct fpu", which needs to be 64-byte aligned on amd64
1907af88ac7SKuriakose Kuruvilla * (and even on i386) for xsave/xrstor.
1917c478bd9Sstevel@tonic-gate */
1927c478bd9Sstevel@tonic-gate lwp_cache = kmem_cache_create("lwp_cache", sizeof (klwp_t),
1937af88ac7SKuriakose Kuruvilla 64, NULL, NULL, NULL, NULL, NULL, 0);
1947c478bd9Sstevel@tonic-gate #else
1957c478bd9Sstevel@tonic-gate /*
1967c478bd9Sstevel@tonic-gate * Allocate thread structures from static_arena. This prevents
1977c478bd9Sstevel@tonic-gate * issues where a thread tries to relocate its own thread
1987c478bd9Sstevel@tonic-gate * structure and touches it after the mapping has been suspended.
1997c478bd9Sstevel@tonic-gate */
2007c478bd9Sstevel@tonic-gate thread_cache = kmem_cache_create("thread_cache", sizeof (kthread_t),
2017c478bd9Sstevel@tonic-gate PTR24_ALIGN, NULL, NULL, NULL, NULL, static_arena, 0);
2027c478bd9Sstevel@tonic-gate
203a8599265Selowe lwp_stk_cache_init();
204a8599265Selowe
2057c478bd9Sstevel@tonic-gate lwp_cache = kmem_cache_create("lwp_cache", sizeof (klwp_t),
2067c478bd9Sstevel@tonic-gate 0, NULL, NULL, NULL, NULL, NULL, 0);
2077c478bd9Sstevel@tonic-gate #endif
2087c478bd9Sstevel@tonic-gate
2097c478bd9Sstevel@tonic-gate turnstile_cache = kmem_cache_create("turnstile_cache",
2107c478bd9Sstevel@tonic-gate sizeof (turnstile_t), 0,
2117c478bd9Sstevel@tonic-gate turnstile_constructor, turnstile_destructor, NULL, NULL, NULL, 0);
2127c478bd9Sstevel@tonic-gate
21345916cd2Sjpk label_init();
2147c478bd9Sstevel@tonic-gate cred_init();
2157c478bd9Sstevel@tonic-gate
216c97ad5cdSakolb /*
217c97ad5cdSakolb * Initialize various resource management facilities.
218c97ad5cdSakolb */
2197c478bd9Sstevel@tonic-gate rctl_init();
220c97ad5cdSakolb cpucaps_init();
221c97ad5cdSakolb /*
222c97ad5cdSakolb * Zone_init() should be called before project_init() so that project ID
223c97ad5cdSakolb * for the first project is initialized correctly.
224c97ad5cdSakolb */
225c97ad5cdSakolb zone_init();
2267c478bd9Sstevel@tonic-gate project_init();
2279acbbeafSnn35248 brand_init();
228d14d7d31Sis kiconv_init();
2297c478bd9Sstevel@tonic-gate task_init();
23045916cd2Sjpk tcache_init();
2317c478bd9Sstevel@tonic-gate pool_init();
2327c478bd9Sstevel@tonic-gate
2337c478bd9Sstevel@tonic-gate curthread->t_ts = kmem_cache_alloc(turnstile_cache, KM_SLEEP);
2347c478bd9Sstevel@tonic-gate
2357c478bd9Sstevel@tonic-gate /*
2367c478bd9Sstevel@tonic-gate * Originally, we had two parameters to set default stack
2377c478bd9Sstevel@tonic-gate * size: one for lwp's (lwp_default_stksize), and one for
2387c478bd9Sstevel@tonic-gate * kernel-only threads (DEFAULTSTKSZ, a.k.a. _defaultstksz).
2397c478bd9Sstevel@tonic-gate * Now we have a third parameter that overrides both if it is
2407c478bd9Sstevel@tonic-gate * set to a legal stack size, called default_stksize.
2417c478bd9Sstevel@tonic-gate */
2427c478bd9Sstevel@tonic-gate
2437c478bd9Sstevel@tonic-gate if (default_stksize == 0) {
2447c478bd9Sstevel@tonic-gate default_stksize = DEFAULTSTKSZ;
2457c478bd9Sstevel@tonic-gate } else if (default_stksize % PAGESIZE != 0 ||
2467c478bd9Sstevel@tonic-gate default_stksize > MAX_STKSIZE ||
2477c478bd9Sstevel@tonic-gate default_stksize < MIN_STKSIZE) {
2487c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "Illegal stack size. Using %d",
2497c478bd9Sstevel@tonic-gate (int)DEFAULTSTKSZ);
2507c478bd9Sstevel@tonic-gate default_stksize = DEFAULTSTKSZ;
2517c478bd9Sstevel@tonic-gate } else {
2527c478bd9Sstevel@tonic-gate lwp_default_stksize = default_stksize;
2537c478bd9Sstevel@tonic-gate }
2547c478bd9Sstevel@tonic-gate
2557c478bd9Sstevel@tonic-gate if (lwp_default_stksize == 0) {
2567c478bd9Sstevel@tonic-gate lwp_default_stksize = default_stksize;
2577c478bd9Sstevel@tonic-gate } else if (lwp_default_stksize % PAGESIZE != 0 ||
2587c478bd9Sstevel@tonic-gate lwp_default_stksize > MAX_STKSIZE ||
2597c478bd9Sstevel@tonic-gate lwp_default_stksize < MIN_STKSIZE) {
2607c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "Illegal stack size. Using %d",
2617c478bd9Sstevel@tonic-gate default_stksize);
2627c478bd9Sstevel@tonic-gate lwp_default_stksize = default_stksize;
2637c478bd9Sstevel@tonic-gate }
2647c478bd9Sstevel@tonic-gate
2657c478bd9Sstevel@tonic-gate segkp_lwp = segkp_cache_init(segkp, lwp_cache_sz,
2667c478bd9Sstevel@tonic-gate lwp_default_stksize,
2677c478bd9Sstevel@tonic-gate (KPD_NOWAIT | KPD_HASREDZONE | KPD_LOCKED));
2687c478bd9Sstevel@tonic-gate
2697c478bd9Sstevel@tonic-gate segkp_thread = segkp_cache_init(segkp, t_cache_sz,
2707c478bd9Sstevel@tonic-gate default_stksize, KPD_HASREDZONE | KPD_LOCKED | KPD_NO_ANON);
2717c478bd9Sstevel@tonic-gate
2727c478bd9Sstevel@tonic-gate (void) getcid(sys_name, &syscid);
2737c478bd9Sstevel@tonic-gate curthread->t_cid = syscid; /* current thread is t0 */
2747c478bd9Sstevel@tonic-gate
2757c478bd9Sstevel@tonic-gate /*
2767c478bd9Sstevel@tonic-gate * Set up the first CPU's idle thread.
2777c478bd9Sstevel@tonic-gate * It runs whenever the CPU has nothing worthwhile to do.
2787c478bd9Sstevel@tonic-gate */
2797c478bd9Sstevel@tonic-gate tp = thread_create(NULL, 0, idle, NULL, 0, &p0, TS_STOPPED, -1);
2807c478bd9Sstevel@tonic-gate cpu->cpu_idle_thread = tp;
2817c478bd9Sstevel@tonic-gate tp->t_preempt = 1;
2827c478bd9Sstevel@tonic-gate tp->t_disp_queue = cpu->cpu_disp;
2837c478bd9Sstevel@tonic-gate ASSERT(tp->t_disp_queue != NULL);
2847c478bd9Sstevel@tonic-gate tp->t_bound_cpu = cpu;
2857c478bd9Sstevel@tonic-gate tp->t_affinitycnt = 1;
2867c478bd9Sstevel@tonic-gate
2877c478bd9Sstevel@tonic-gate /*
2887c478bd9Sstevel@tonic-gate * Registering a thread in the callback table is usually
2897c478bd9Sstevel@tonic-gate * done in the initialization code of the thread. In this
2907c478bd9Sstevel@tonic-gate * case, we do it right after thread creation to avoid
2917c478bd9Sstevel@tonic-gate * blocking idle thread while registering itself. It also
2927c478bd9Sstevel@tonic-gate * avoids the possibility of reregistration in case a CPU
2937c478bd9Sstevel@tonic-gate * restarts its idle thread.
2947c478bd9Sstevel@tonic-gate */
2957c478bd9Sstevel@tonic-gate CALLB_CPR_INIT_SAFE(tp, "idle");
2967c478bd9Sstevel@tonic-gate
2977c478bd9Sstevel@tonic-gate /*
2985ce42f36Spraks * Create the thread_reaper daemon. From this point on, exited
2995ce42f36Spraks * threads will get reaped.
3005ce42f36Spraks */
3015ce42f36Spraks (void) thread_create(NULL, 0, (void (*)())thread_reaper,
3025ce42f36Spraks NULL, 0, &p0, TS_RUN, minclsyspri);
3035ce42f36Spraks
3045ce42f36Spraks /*
3057c478bd9Sstevel@tonic-gate * Finish initializing the kernel memory allocator now that
3067c478bd9Sstevel@tonic-gate * thread_create() is available.
3077c478bd9Sstevel@tonic-gate */
3087c478bd9Sstevel@tonic-gate kmem_thread_init();
3097c478bd9Sstevel@tonic-gate
3107c478bd9Sstevel@tonic-gate if (boothowto & RB_DEBUG)
3117c478bd9Sstevel@tonic-gate kdi_dvec_thravail();
3127c478bd9Sstevel@tonic-gate }
3137c478bd9Sstevel@tonic-gate
3147c478bd9Sstevel@tonic-gate /*
3157c478bd9Sstevel@tonic-gate * Create a thread.
3167c478bd9Sstevel@tonic-gate *
3177c478bd9Sstevel@tonic-gate * thread_create() blocks for memory if necessary. It never fails.
3187c478bd9Sstevel@tonic-gate *
3197c478bd9Sstevel@tonic-gate * If stk is NULL, the thread is created at the base of the stack
3207c478bd9Sstevel@tonic-gate * and cannot be swapped.
3217c478bd9Sstevel@tonic-gate */
3227c478bd9Sstevel@tonic-gate kthread_t *
thread_create(caddr_t stk,size_t stksize,void (* proc)(),void * arg,size_t len,proc_t * pp,int state,pri_t pri)3237c478bd9Sstevel@tonic-gate thread_create(
3247c478bd9Sstevel@tonic-gate caddr_t stk,
3257c478bd9Sstevel@tonic-gate size_t stksize,
3267c478bd9Sstevel@tonic-gate void (*proc)(),
3277c478bd9Sstevel@tonic-gate void *arg,
3287c478bd9Sstevel@tonic-gate size_t len,
3297c478bd9Sstevel@tonic-gate proc_t *pp,
3307c478bd9Sstevel@tonic-gate int state,
3317c478bd9Sstevel@tonic-gate pri_t pri)
3327c478bd9Sstevel@tonic-gate {
3337c478bd9Sstevel@tonic-gate kthread_t *t;
3347c478bd9Sstevel@tonic-gate extern struct classfuncs sys_classfuncs;
3357c478bd9Sstevel@tonic-gate turnstile_t *ts;
3367c478bd9Sstevel@tonic-gate
3377c478bd9Sstevel@tonic-gate /*
3387c478bd9Sstevel@tonic-gate * Every thread keeps a turnstile around in case it needs to block.
3397c478bd9Sstevel@tonic-gate * The only reason the turnstile is not simply part of the thread
3407c478bd9Sstevel@tonic-gate * structure is that we may have to break the association whenever
3417c478bd9Sstevel@tonic-gate * more than one thread blocks on a given synchronization object.
3427c478bd9Sstevel@tonic-gate * From a memory-management standpoint, turnstiles are like the
3437c478bd9Sstevel@tonic-gate * "attached mblks" that hang off dblks in the streams allocator.
3447c478bd9Sstevel@tonic-gate */
3457c478bd9Sstevel@tonic-gate ts = kmem_cache_alloc(turnstile_cache, KM_SLEEP);
3467c478bd9Sstevel@tonic-gate
3477c478bd9Sstevel@tonic-gate if (stk == NULL) {
3487c478bd9Sstevel@tonic-gate /*
3497c478bd9Sstevel@tonic-gate * alloc both thread and stack in segkp chunk
3507c478bd9Sstevel@tonic-gate */
3517c478bd9Sstevel@tonic-gate
3527c478bd9Sstevel@tonic-gate if (stksize < default_stksize)
3537c478bd9Sstevel@tonic-gate stksize = default_stksize;
3547c478bd9Sstevel@tonic-gate
3557c478bd9Sstevel@tonic-gate if (stksize == default_stksize) {
3567c478bd9Sstevel@tonic-gate stk = (caddr_t)segkp_cache_get(segkp_thread);
3577c478bd9Sstevel@tonic-gate } else {
3587c478bd9Sstevel@tonic-gate stksize = roundup(stksize, PAGESIZE);
3597c478bd9Sstevel@tonic-gate stk = (caddr_t)segkp_get(segkp, stksize,
3607c478bd9Sstevel@tonic-gate (KPD_HASREDZONE | KPD_NO_ANON | KPD_LOCKED));
3617c478bd9Sstevel@tonic-gate }
3627c478bd9Sstevel@tonic-gate
3637c478bd9Sstevel@tonic-gate ASSERT(stk != NULL);
3647c478bd9Sstevel@tonic-gate
3657c478bd9Sstevel@tonic-gate /*
3667c478bd9Sstevel@tonic-gate * The machine-dependent mutex code may require that
3677c478bd9Sstevel@tonic-gate * thread pointers (since they may be used for mutex owner
3687c478bd9Sstevel@tonic-gate * fields) have certain alignment requirements.
3697c478bd9Sstevel@tonic-gate * PTR24_ALIGN is the size of the alignment quanta.
3707c478bd9Sstevel@tonic-gate * XXX - assumes stack grows toward low addresses.
3717c478bd9Sstevel@tonic-gate */
3727c478bd9Sstevel@tonic-gate if (stksize <= sizeof (kthread_t) + PTR24_ALIGN)
3737c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "thread_create: proposed stack size"
3747c478bd9Sstevel@tonic-gate " too small to hold thread.");
3757c478bd9Sstevel@tonic-gate #ifdef STACK_GROWTH_DOWN
3767c478bd9Sstevel@tonic-gate stksize -= SA(sizeof (kthread_t) + PTR24_ALIGN - 1);
3777c478bd9Sstevel@tonic-gate stksize &= -PTR24_ALIGN; /* make thread aligned */
3787c478bd9Sstevel@tonic-gate t = (kthread_t *)(stk + stksize);
3797c478bd9Sstevel@tonic-gate bzero(t, sizeof (kthread_t));
3807c478bd9Sstevel@tonic-gate if (audit_active)
3817c478bd9Sstevel@tonic-gate audit_thread_create(t);
3827c478bd9Sstevel@tonic-gate t->t_stk = stk + stksize;
3837c478bd9Sstevel@tonic-gate t->t_stkbase = stk;
3847c478bd9Sstevel@tonic-gate #else /* stack grows to larger addresses */
3857c478bd9Sstevel@tonic-gate stksize -= SA(sizeof (kthread_t));
3867c478bd9Sstevel@tonic-gate t = (kthread_t *)(stk);
3877c478bd9Sstevel@tonic-gate bzero(t, sizeof (kthread_t));
3887c478bd9Sstevel@tonic-gate t->t_stk = stk + sizeof (kthread_t);
3897c478bd9Sstevel@tonic-gate t->t_stkbase = stk + stksize + sizeof (kthread_t);
3907c478bd9Sstevel@tonic-gate #endif /* STACK_GROWTH_DOWN */
3917c478bd9Sstevel@tonic-gate t->t_flag |= T_TALLOCSTK;
3927c478bd9Sstevel@tonic-gate t->t_swap = stk;
3937c478bd9Sstevel@tonic-gate } else {
3947c478bd9Sstevel@tonic-gate t = kmem_cache_alloc(thread_cache, KM_SLEEP);
3957c478bd9Sstevel@tonic-gate bzero(t, sizeof (kthread_t));
3967c478bd9Sstevel@tonic-gate ASSERT(((uintptr_t)t & (PTR24_ALIGN - 1)) == 0);
3977c478bd9Sstevel@tonic-gate if (audit_active)
3987c478bd9Sstevel@tonic-gate audit_thread_create(t);
3997c478bd9Sstevel@tonic-gate /*
4007c478bd9Sstevel@tonic-gate * Initialize t_stk to the kernel stack pointer to use
4017c478bd9Sstevel@tonic-gate * upon entry to the kernel
4027c478bd9Sstevel@tonic-gate */
4037c478bd9Sstevel@tonic-gate #ifdef STACK_GROWTH_DOWN
4047c478bd9Sstevel@tonic-gate t->t_stk = stk + stksize;
4057c478bd9Sstevel@tonic-gate t->t_stkbase = stk;
4067c478bd9Sstevel@tonic-gate #else
4077c478bd9Sstevel@tonic-gate t->t_stk = stk; /* 3b2-like */
4087c478bd9Sstevel@tonic-gate t->t_stkbase = stk + stksize;
4097c478bd9Sstevel@tonic-gate #endif /* STACK_GROWTH_DOWN */
4107c478bd9Sstevel@tonic-gate }
4117c478bd9Sstevel@tonic-gate
412bff31d89SPhilippe Jung if (kmem_stackinfo != 0) {
413bff31d89SPhilippe Jung stkinfo_begin(t);
414bff31d89SPhilippe Jung }
415bff31d89SPhilippe Jung
4167c478bd9Sstevel@tonic-gate t->t_ts = ts;
4177c478bd9Sstevel@tonic-gate
4187c478bd9Sstevel@tonic-gate /*
4197c478bd9Sstevel@tonic-gate * p_cred could be NULL if it thread_create is called before cred_init
4207c478bd9Sstevel@tonic-gate * is called in main.
4217c478bd9Sstevel@tonic-gate */
4227c478bd9Sstevel@tonic-gate mutex_enter(&pp->p_crlock);
4237c478bd9Sstevel@tonic-gate if (pp->p_cred)
4247c478bd9Sstevel@tonic-gate crhold(t->t_cred = pp->p_cred);
4257c478bd9Sstevel@tonic-gate mutex_exit(&pp->p_crlock);
4267c478bd9Sstevel@tonic-gate t->t_start = gethrestime_sec();
4277c478bd9Sstevel@tonic-gate t->t_startpc = proc;
4287c478bd9Sstevel@tonic-gate t->t_procp = pp;
4297c478bd9Sstevel@tonic-gate t->t_clfuncs = &sys_classfuncs.thread;
4307c478bd9Sstevel@tonic-gate t->t_cid = syscid;
4317c478bd9Sstevel@tonic-gate t->t_pri = pri;
432d3d50737SRafael Vanoni t->t_stime = ddi_get_lbolt();
4337c478bd9Sstevel@tonic-gate t->t_schedflag = TS_LOAD | TS_DONT_SWAP;
4347c478bd9Sstevel@tonic-gate t->t_bind_cpu = PBIND_NONE;
4350b70c467Sakolb t->t_bindflag = (uchar_t)default_binding_mode;
4367c478bd9Sstevel@tonic-gate t->t_bind_pset = PS_NONE;
4377c478bd9Sstevel@tonic-gate t->t_plockp = &pp->p_lock;
4387c478bd9Sstevel@tonic-gate t->t_copyops = NULL;
4397c478bd9Sstevel@tonic-gate t->t_taskq = NULL;
4407c478bd9Sstevel@tonic-gate t->t_anttime = 0;
4417c478bd9Sstevel@tonic-gate t->t_hatdepth = 0;
4427c478bd9Sstevel@tonic-gate
4437c478bd9Sstevel@tonic-gate t->t_dtrace_vtime = 1; /* assure vtimestamp is always non-zero */
4447c478bd9Sstevel@tonic-gate
4457c478bd9Sstevel@tonic-gate CPU_STATS_ADDQ(CPU, sys, nthreads, 1);
4467c478bd9Sstevel@tonic-gate #ifndef NPROBE
4477c478bd9Sstevel@tonic-gate /* Kernel probe */
4487c478bd9Sstevel@tonic-gate tnf_thread_create(t);
4497c478bd9Sstevel@tonic-gate #endif /* NPROBE */
4507c478bd9Sstevel@tonic-gate LOCK_INIT_CLEAR(&t->t_lock);
4517c478bd9Sstevel@tonic-gate
4527c478bd9Sstevel@tonic-gate /*
4537c478bd9Sstevel@tonic-gate * Callers who give us a NULL proc must do their own
4547c478bd9Sstevel@tonic-gate * stack initialization. e.g. lwp_create()
4557c478bd9Sstevel@tonic-gate */
4567c478bd9Sstevel@tonic-gate if (proc != NULL) {
4577c478bd9Sstevel@tonic-gate t->t_stk = thread_stk_init(t->t_stk);
4587c478bd9Sstevel@tonic-gate thread_load(t, proc, arg, len);
4597c478bd9Sstevel@tonic-gate }
4607c478bd9Sstevel@tonic-gate
4617c478bd9Sstevel@tonic-gate /*
4627c478bd9Sstevel@tonic-gate * Put a hold on project0. If this thread is actually in a
4637c478bd9Sstevel@tonic-gate * different project, then t_proj will be changed later in
4647c478bd9Sstevel@tonic-gate * lwp_create(). All kernel-only threads must be in project 0.
4657c478bd9Sstevel@tonic-gate */
4667c478bd9Sstevel@tonic-gate t->t_proj = project_hold(proj0p);
4677c478bd9Sstevel@tonic-gate
4687c478bd9Sstevel@tonic-gate lgrp_affinity_init(&t->t_lgrp_affinity);
4697c478bd9Sstevel@tonic-gate
4707c478bd9Sstevel@tonic-gate mutex_enter(&pidlock);
4717c478bd9Sstevel@tonic-gate nthread++;
4727c478bd9Sstevel@tonic-gate t->t_did = next_t_id++;
4737c478bd9Sstevel@tonic-gate t->t_prev = curthread->t_prev;
4747c478bd9Sstevel@tonic-gate t->t_next = curthread;
4757c478bd9Sstevel@tonic-gate
4767c478bd9Sstevel@tonic-gate /*
4777c478bd9Sstevel@tonic-gate * Add the thread to the list of all threads, and initialize
4787c478bd9Sstevel@tonic-gate * its t_cpu pointer. We need to block preemption since
4797c478bd9Sstevel@tonic-gate * cpu_offline walks the thread list looking for threads
4807c478bd9Sstevel@tonic-gate * with t_cpu pointing to the CPU being offlined. We want
4817c478bd9Sstevel@tonic-gate * to make sure that the list is consistent and that if t_cpu
4827c478bd9Sstevel@tonic-gate * is set, the thread is on the list.
4837c478bd9Sstevel@tonic-gate */
4847c478bd9Sstevel@tonic-gate kpreempt_disable();
4857c478bd9Sstevel@tonic-gate curthread->t_prev->t_next = t;
4867c478bd9Sstevel@tonic-gate curthread->t_prev = t;
4877c478bd9Sstevel@tonic-gate
4887c478bd9Sstevel@tonic-gate /*
4897c478bd9Sstevel@tonic-gate * Threads should never have a NULL t_cpu pointer so assign it
4907c478bd9Sstevel@tonic-gate * here. If the thread is being created with state TS_RUN a
4917c478bd9Sstevel@tonic-gate * better CPU may be chosen when it is placed on the run queue.
4927c478bd9Sstevel@tonic-gate *
4937c478bd9Sstevel@tonic-gate * We need to keep kernel preemption disabled when setting all
4947c478bd9Sstevel@tonic-gate * three fields to keep them in sync. Also, always create in
4957c478bd9Sstevel@tonic-gate * the default partition since that's where kernel threads go
4967c478bd9Sstevel@tonic-gate * (if this isn't a kernel thread, t_cpupart will be changed
4977c478bd9Sstevel@tonic-gate * in lwp_create before setting the thread runnable).
4987c478bd9Sstevel@tonic-gate */
4997c478bd9Sstevel@tonic-gate t->t_cpupart = &cp_default;
5007c478bd9Sstevel@tonic-gate
5017c478bd9Sstevel@tonic-gate /*
5027c478bd9Sstevel@tonic-gate * For now, affiliate this thread with the root lgroup.
5037c478bd9Sstevel@tonic-gate * Since the kernel does not (presently) allocate its memory
5047c478bd9Sstevel@tonic-gate * in a locality aware fashion, the root is an appropriate home.
5057c478bd9Sstevel@tonic-gate * If this thread is later associated with an lwp, it will have
5067c478bd9Sstevel@tonic-gate * it's lgroup re-assigned at that time.
5077c478bd9Sstevel@tonic-gate */
5087c478bd9Sstevel@tonic-gate lgrp_move_thread(t, &cp_default.cp_lgrploads[LGRP_ROOTID], 1);
5097c478bd9Sstevel@tonic-gate
5107c478bd9Sstevel@tonic-gate /*
5117c478bd9Sstevel@tonic-gate * Inherit the current cpu. If this cpu isn't part of the chosen
5127c478bd9Sstevel@tonic-gate * lgroup, a new cpu will be chosen by cpu_choose when the thread
5137c478bd9Sstevel@tonic-gate * is ready to run.
5147c478bd9Sstevel@tonic-gate */
5157c478bd9Sstevel@tonic-gate if (CPU->cpu_part == &cp_default)
5167c478bd9Sstevel@tonic-gate t->t_cpu = CPU;
5177c478bd9Sstevel@tonic-gate else
5187c478bd9Sstevel@tonic-gate t->t_cpu = disp_lowpri_cpu(cp_default.cp_cpulist, t->t_lpl,
5197c478bd9Sstevel@tonic-gate t->t_pri, NULL);
5207c478bd9Sstevel@tonic-gate
5217c478bd9Sstevel@tonic-gate t->t_disp_queue = t->t_cpu->cpu_disp;
5227c478bd9Sstevel@tonic-gate kpreempt_enable();
5237c478bd9Sstevel@tonic-gate
5247c478bd9Sstevel@tonic-gate /*
5257c478bd9Sstevel@tonic-gate * Initialize thread state and the dispatcher lock pointer.
5267c478bd9Sstevel@tonic-gate * Need to hold onto pidlock to block allthreads walkers until
5277c478bd9Sstevel@tonic-gate * the state is set.
5287c478bd9Sstevel@tonic-gate */
5297c478bd9Sstevel@tonic-gate switch (state) {
5307c478bd9Sstevel@tonic-gate case TS_RUN:
5317c478bd9Sstevel@tonic-gate curthread->t_oldspl = splhigh(); /* get dispatcher spl */
5327c478bd9Sstevel@tonic-gate THREAD_SET_STATE(t, TS_STOPPED, &transition_lock);
5337c478bd9Sstevel@tonic-gate CL_SETRUN(t);
5347c478bd9Sstevel@tonic-gate thread_unlock(t);
5357c478bd9Sstevel@tonic-gate break;
5367c478bd9Sstevel@tonic-gate
5377c478bd9Sstevel@tonic-gate case TS_ONPROC:
5387c478bd9Sstevel@tonic-gate THREAD_ONPROC(t, t->t_cpu);
5397c478bd9Sstevel@tonic-gate break;
5407c478bd9Sstevel@tonic-gate
5417c478bd9Sstevel@tonic-gate case TS_FREE:
5427c478bd9Sstevel@tonic-gate /*
5437c478bd9Sstevel@tonic-gate * Free state will be used for intr threads.
5447c478bd9Sstevel@tonic-gate * The interrupt routine must set the thread dispatcher
5457c478bd9Sstevel@tonic-gate * lock pointer (t_lockp) if starting on a CPU
5467c478bd9Sstevel@tonic-gate * other than the current one.
5477c478bd9Sstevel@tonic-gate */
5487c478bd9Sstevel@tonic-gate THREAD_FREEINTR(t, CPU);
5497c478bd9Sstevel@tonic-gate break;
5507c478bd9Sstevel@tonic-gate
5517c478bd9Sstevel@tonic-gate case TS_STOPPED:
5527c478bd9Sstevel@tonic-gate THREAD_SET_STATE(t, TS_STOPPED, &stop_lock);
5537c478bd9Sstevel@tonic-gate break;
5547c478bd9Sstevel@tonic-gate
5557c478bd9Sstevel@tonic-gate default: /* TS_SLEEP, TS_ZOMB or TS_TRANS */
5567c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "thread_create: invalid state %d", state);
5577c478bd9Sstevel@tonic-gate }
5587c478bd9Sstevel@tonic-gate mutex_exit(&pidlock);
5597c478bd9Sstevel@tonic-gate return (t);
5607c478bd9Sstevel@tonic-gate }
5617c478bd9Sstevel@tonic-gate
5627c478bd9Sstevel@tonic-gate /*
5637c478bd9Sstevel@tonic-gate * Move thread to project0 and take care of project reference counters.
5647c478bd9Sstevel@tonic-gate */
5657c478bd9Sstevel@tonic-gate void
thread_rele(kthread_t * t)5667c478bd9Sstevel@tonic-gate thread_rele(kthread_t *t)
5677c478bd9Sstevel@tonic-gate {
5687c478bd9Sstevel@tonic-gate kproject_t *kpj;
5697c478bd9Sstevel@tonic-gate
5707c478bd9Sstevel@tonic-gate thread_lock(t);
5717c478bd9Sstevel@tonic-gate
5727c478bd9Sstevel@tonic-gate ASSERT(t == curthread || t->t_state == TS_FREE || t->t_procp == &p0);
5737c478bd9Sstevel@tonic-gate kpj = ttoproj(t);
5747c478bd9Sstevel@tonic-gate t->t_proj = proj0p;
5757c478bd9Sstevel@tonic-gate
5767c478bd9Sstevel@tonic-gate thread_unlock(t);
5777c478bd9Sstevel@tonic-gate
5787c478bd9Sstevel@tonic-gate if (kpj != proj0p) {
5797c478bd9Sstevel@tonic-gate project_rele(kpj);
5807c478bd9Sstevel@tonic-gate (void) project_hold(proj0p);
5817c478bd9Sstevel@tonic-gate }
5827c478bd9Sstevel@tonic-gate }
5837c478bd9Sstevel@tonic-gate
5847c478bd9Sstevel@tonic-gate void
thread_exit(void)5856a8288c7Scarlsonj thread_exit(void)
5867c478bd9Sstevel@tonic-gate {
5877c478bd9Sstevel@tonic-gate kthread_t *t = curthread;
5887c478bd9Sstevel@tonic-gate
5897c478bd9Sstevel@tonic-gate if ((t->t_proc_flag & TP_ZTHREAD) != 0)
5907c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "thread_exit: zthread_exit() not called");
5917c478bd9Sstevel@tonic-gate
5927c478bd9Sstevel@tonic-gate tsd_exit(); /* Clean up this thread's TSD */
5937c478bd9Sstevel@tonic-gate
5947c478bd9Sstevel@tonic-gate kcpc_passivate(); /* clean up performance counter state */
5957c478bd9Sstevel@tonic-gate
5967c478bd9Sstevel@tonic-gate /*
5977c478bd9Sstevel@tonic-gate * No kernel thread should have called poll() without arranging
5987c478bd9Sstevel@tonic-gate * calling pollcleanup() here.
5997c478bd9Sstevel@tonic-gate */
6007c478bd9Sstevel@tonic-gate ASSERT(t->t_pollstate == NULL);
6017c478bd9Sstevel@tonic-gate ASSERT(t->t_schedctl == NULL);
6027c478bd9Sstevel@tonic-gate if (t->t_door)
6037c478bd9Sstevel@tonic-gate door_slam(); /* in case thread did an upcall */
6047c478bd9Sstevel@tonic-gate
6057c478bd9Sstevel@tonic-gate #ifndef NPROBE
6067c478bd9Sstevel@tonic-gate /* Kernel probe */
6077c478bd9Sstevel@tonic-gate if (t->t_tnf_tpdp)
6087c478bd9Sstevel@tonic-gate tnf_thread_exit();
6097c478bd9Sstevel@tonic-gate #endif /* NPROBE */
6107c478bd9Sstevel@tonic-gate
6117c478bd9Sstevel@tonic-gate thread_rele(t);
6127c478bd9Sstevel@tonic-gate t->t_preempt++;
6137c478bd9Sstevel@tonic-gate
6147c478bd9Sstevel@tonic-gate /*
6157c478bd9Sstevel@tonic-gate * remove thread from the all threads list so that
6167c478bd9Sstevel@tonic-gate * death-row can use the same pointers.
6177c478bd9Sstevel@tonic-gate */
6187c478bd9Sstevel@tonic-gate mutex_enter(&pidlock);
6197c478bd9Sstevel@tonic-gate t->t_next->t_prev = t->t_prev;
6207c478bd9Sstevel@tonic-gate t->t_prev->t_next = t->t_next;
6217c478bd9Sstevel@tonic-gate ASSERT(allthreads != t); /* t0 never exits */
6227c478bd9Sstevel@tonic-gate cv_broadcast(&t->t_joincv); /* wake up anyone in thread_join */
6237c478bd9Sstevel@tonic-gate mutex_exit(&pidlock);
6247c478bd9Sstevel@tonic-gate
6257c478bd9Sstevel@tonic-gate if (t->t_ctx != NULL)
6267c478bd9Sstevel@tonic-gate exitctx(t);
6270baeff3dSrab if (t->t_procp->p_pctx != NULL)
6280baeff3dSrab exitpctx(t->t_procp);
6297c478bd9Sstevel@tonic-gate
630bff31d89SPhilippe Jung if (kmem_stackinfo != 0) {
631bff31d89SPhilippe Jung stkinfo_end(t);
632bff31d89SPhilippe Jung }
633bff31d89SPhilippe Jung
6347c478bd9Sstevel@tonic-gate t->t_state = TS_ZOMB; /* set zombie thread */
6357c478bd9Sstevel@tonic-gate
6367c478bd9Sstevel@tonic-gate swtch_from_zombie(); /* give up the CPU */
6377c478bd9Sstevel@tonic-gate /* NOTREACHED */
6387c478bd9Sstevel@tonic-gate }
6397c478bd9Sstevel@tonic-gate
6407c478bd9Sstevel@tonic-gate /*
6417c478bd9Sstevel@tonic-gate * Check to see if the specified thread is active (defined as being on
6427c478bd9Sstevel@tonic-gate * the thread list). This is certainly a slow way to do this; if there's
6437c478bd9Sstevel@tonic-gate * ever a reason to speed it up, we could maintain a hash table of active
6447c478bd9Sstevel@tonic-gate * threads indexed by their t_did.
6457c478bd9Sstevel@tonic-gate */
6467c478bd9Sstevel@tonic-gate static kthread_t *
did_to_thread(kt_did_t tid)6477c478bd9Sstevel@tonic-gate did_to_thread(kt_did_t tid)
6487c478bd9Sstevel@tonic-gate {
6497c478bd9Sstevel@tonic-gate kthread_t *t;
6507c478bd9Sstevel@tonic-gate
6517c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&pidlock));
6527c478bd9Sstevel@tonic-gate for (t = curthread->t_next; t != curthread; t = t->t_next) {
6537c478bd9Sstevel@tonic-gate if (t->t_did == tid)
6547c478bd9Sstevel@tonic-gate break;
6557c478bd9Sstevel@tonic-gate }
6567c478bd9Sstevel@tonic-gate if (t->t_did == tid)
6577c478bd9Sstevel@tonic-gate return (t);
6587c478bd9Sstevel@tonic-gate else
6597c478bd9Sstevel@tonic-gate return (NULL);
6607c478bd9Sstevel@tonic-gate }
6617c478bd9Sstevel@tonic-gate
6627c478bd9Sstevel@tonic-gate /*
6637c478bd9Sstevel@tonic-gate * Wait for specified thread to exit. Returns immediately if the thread
6647c478bd9Sstevel@tonic-gate * could not be found, meaning that it has either already exited or never
6657c478bd9Sstevel@tonic-gate * existed.
6667c478bd9Sstevel@tonic-gate */
6677c478bd9Sstevel@tonic-gate void
thread_join(kt_did_t tid)6687c478bd9Sstevel@tonic-gate thread_join(kt_did_t tid)
6697c478bd9Sstevel@tonic-gate {
6707c478bd9Sstevel@tonic-gate kthread_t *t;
6717c478bd9Sstevel@tonic-gate
6727c478bd9Sstevel@tonic-gate ASSERT(tid != curthread->t_did);
6737c478bd9Sstevel@tonic-gate ASSERT(tid != t0.t_did);
6747c478bd9Sstevel@tonic-gate
6757c478bd9Sstevel@tonic-gate mutex_enter(&pidlock);
6767c478bd9Sstevel@tonic-gate /*
6777c478bd9Sstevel@tonic-gate * Make sure we check that the thread is on the thread list
6787c478bd9Sstevel@tonic-gate * before blocking on it; otherwise we could end up blocking on
6797c478bd9Sstevel@tonic-gate * a cv that's already been freed. In other words, don't cache
6807c478bd9Sstevel@tonic-gate * the thread pointer across calls to cv_wait.
6817c478bd9Sstevel@tonic-gate *
6827c478bd9Sstevel@tonic-gate * The choice of loop invariant means that whenever a thread
6837c478bd9Sstevel@tonic-gate * is taken off the allthreads list, a cv_broadcast must be
6847c478bd9Sstevel@tonic-gate * performed on that thread's t_joincv to wake up any waiters.
6857c478bd9Sstevel@tonic-gate * The broadcast doesn't have to happen right away, but it
6867c478bd9Sstevel@tonic-gate * shouldn't be postponed indefinitely (e.g., by doing it in
6877c478bd9Sstevel@tonic-gate * thread_free which may only be executed when the deathrow
6887c478bd9Sstevel@tonic-gate * queue is processed.
6897c478bd9Sstevel@tonic-gate */
6907c478bd9Sstevel@tonic-gate while (t = did_to_thread(tid))
6917c478bd9Sstevel@tonic-gate cv_wait(&t->t_joincv, &pidlock);
6927c478bd9Sstevel@tonic-gate mutex_exit(&pidlock);
6937c478bd9Sstevel@tonic-gate }
6947c478bd9Sstevel@tonic-gate
6957c478bd9Sstevel@tonic-gate void
thread_free_prevent(kthread_t * t)6962850d85bSmv143129 thread_free_prevent(kthread_t *t)
6972850d85bSmv143129 {
6982850d85bSmv143129 kmutex_t *lp;
6992850d85bSmv143129
7002850d85bSmv143129 lp = &thread_free_lock[THREAD_FREE_HASH(t)].tf_lock;
7012850d85bSmv143129 mutex_enter(lp);
7022850d85bSmv143129 }
7032850d85bSmv143129
7042850d85bSmv143129 void
thread_free_allow(kthread_t * t)7052850d85bSmv143129 thread_free_allow(kthread_t *t)
7062850d85bSmv143129 {
7072850d85bSmv143129 kmutex_t *lp;
7082850d85bSmv143129
7092850d85bSmv143129 lp = &thread_free_lock[THREAD_FREE_HASH(t)].tf_lock;
7102850d85bSmv143129 mutex_exit(lp);
7112850d85bSmv143129 }
7122850d85bSmv143129
7132850d85bSmv143129 static void
thread_free_barrier(kthread_t * t)7142850d85bSmv143129 thread_free_barrier(kthread_t *t)
7152850d85bSmv143129 {
7162850d85bSmv143129 kmutex_t *lp;
7172850d85bSmv143129
7182850d85bSmv143129 lp = &thread_free_lock[THREAD_FREE_HASH(t)].tf_lock;
7192850d85bSmv143129 mutex_enter(lp);
7202850d85bSmv143129 mutex_exit(lp);
7212850d85bSmv143129 }
7222850d85bSmv143129
7232850d85bSmv143129 void
thread_free(kthread_t * t)7247c478bd9Sstevel@tonic-gate thread_free(kthread_t *t)
7257c478bd9Sstevel@tonic-gate {
726d32efdadSJonathan Adams boolean_t allocstk = (t->t_flag & T_TALLOCSTK);
727d32efdadSJonathan Adams klwp_t *lwp = t->t_lwp;
728d32efdadSJonathan Adams caddr_t swap = t->t_swap;
729d32efdadSJonathan Adams
7307c478bd9Sstevel@tonic-gate ASSERT(t != &t0 && t->t_state == TS_FREE);
7317c478bd9Sstevel@tonic-gate ASSERT(t->t_door == NULL);
7327c478bd9Sstevel@tonic-gate ASSERT(t->t_schedctl == NULL);
7337c478bd9Sstevel@tonic-gate ASSERT(t->t_pollstate == NULL);
7347c478bd9Sstevel@tonic-gate
7357c478bd9Sstevel@tonic-gate t->t_pri = 0;
7367c478bd9Sstevel@tonic-gate t->t_pc = 0;
7377c478bd9Sstevel@tonic-gate t->t_sp = 0;
7387c478bd9Sstevel@tonic-gate t->t_wchan0 = NULL;
7397c478bd9Sstevel@tonic-gate t->t_wchan = NULL;
7407c478bd9Sstevel@tonic-gate if (t->t_cred != NULL) {
7417c478bd9Sstevel@tonic-gate crfree(t->t_cred);
7427c478bd9Sstevel@tonic-gate t->t_cred = 0;
7437c478bd9Sstevel@tonic-gate }
7447c478bd9Sstevel@tonic-gate if (t->t_pdmsg) {
7457c478bd9Sstevel@tonic-gate kmem_free(t->t_pdmsg, strlen(t->t_pdmsg) + 1);
7467c478bd9Sstevel@tonic-gate t->t_pdmsg = NULL;
7477c478bd9Sstevel@tonic-gate }
7487c478bd9Sstevel@tonic-gate if (audit_active)
7497c478bd9Sstevel@tonic-gate audit_thread_free(t);
7507c478bd9Sstevel@tonic-gate #ifndef NPROBE
7517c478bd9Sstevel@tonic-gate if (t->t_tnf_tpdp)
7527c478bd9Sstevel@tonic-gate tnf_thread_free(t);
7537c478bd9Sstevel@tonic-gate #endif /* NPROBE */
7547c478bd9Sstevel@tonic-gate if (t->t_cldata) {
7557c478bd9Sstevel@tonic-gate CL_EXITCLASS(t->t_cid, (caddr_t *)t->t_cldata);
7567c478bd9Sstevel@tonic-gate }
7577c478bd9Sstevel@tonic-gate if (t->t_rprof != NULL) {
7587c478bd9Sstevel@tonic-gate kmem_free(t->t_rprof, sizeof (*t->t_rprof));
7597c478bd9Sstevel@tonic-gate t->t_rprof = NULL;
7607c478bd9Sstevel@tonic-gate }
7617c478bd9Sstevel@tonic-gate t->t_lockp = NULL; /* nothing should try to lock this thread now */
762d32efdadSJonathan Adams if (lwp)
763d32efdadSJonathan Adams lwp_freeregs(lwp, 0);
7647c478bd9Sstevel@tonic-gate if (t->t_ctx)
7657c478bd9Sstevel@tonic-gate freectx(t, 0);
7667c478bd9Sstevel@tonic-gate t->t_stk = NULL;
767d32efdadSJonathan Adams if (lwp)
768d32efdadSJonathan Adams lwp_stk_fini(lwp);
7697c478bd9Sstevel@tonic-gate lock_clear(&t->t_lock);
7707c478bd9Sstevel@tonic-gate
7717c478bd9Sstevel@tonic-gate if (t->t_ts->ts_waiters > 0)
7727c478bd9Sstevel@tonic-gate panic("thread_free: turnstile still active");
7737c478bd9Sstevel@tonic-gate
7747c478bd9Sstevel@tonic-gate kmem_cache_free(turnstile_cache, t->t_ts);
7757c478bd9Sstevel@tonic-gate
7767c478bd9Sstevel@tonic-gate free_afd(&t->t_activefd);
7777c478bd9Sstevel@tonic-gate
7787c478bd9Sstevel@tonic-gate /*
7792850d85bSmv143129 * Barrier for the tick accounting code. The tick accounting code
7802850d85bSmv143129 * holds this lock to keep the thread from going away while it's
7812850d85bSmv143129 * looking at it.
7827c478bd9Sstevel@tonic-gate */
7832850d85bSmv143129 thread_free_barrier(t);
7847c478bd9Sstevel@tonic-gate
7857c478bd9Sstevel@tonic-gate ASSERT(ttoproj(t) == proj0p);
7867c478bd9Sstevel@tonic-gate project_rele(ttoproj(t));
7877c478bd9Sstevel@tonic-gate
7887c478bd9Sstevel@tonic-gate lgrp_affinity_free(&t->t_lgrp_affinity);
7897c478bd9Sstevel@tonic-gate
790d32efdadSJonathan Adams mutex_enter(&pidlock);
791d32efdadSJonathan Adams nthread--;
792d32efdadSJonathan Adams mutex_exit(&pidlock);
793d32efdadSJonathan Adams
7947c478bd9Sstevel@tonic-gate /*
795d32efdadSJonathan Adams * Free thread, lwp and stack. This needs to be done carefully, since
796d32efdadSJonathan Adams * if T_TALLOCSTK is set, the thread is part of the stack.
7977c478bd9Sstevel@tonic-gate */
7987c478bd9Sstevel@tonic-gate t->t_lwp = NULL;
799d32efdadSJonathan Adams t->t_swap = NULL;
800d32efdadSJonathan Adams
801d32efdadSJonathan Adams if (swap) {
802d32efdadSJonathan Adams segkp_release(segkp, swap);
8037c478bd9Sstevel@tonic-gate }
804d32efdadSJonathan Adams if (lwp) {
805d32efdadSJonathan Adams kmem_cache_free(lwp_cache, lwp);
806d32efdadSJonathan Adams }
807d32efdadSJonathan Adams if (!allocstk) {
8087c478bd9Sstevel@tonic-gate kmem_cache_free(thread_cache, t);
8097c478bd9Sstevel@tonic-gate }
8107c478bd9Sstevel@tonic-gate }
8117c478bd9Sstevel@tonic-gate
8127c478bd9Sstevel@tonic-gate /*
8137c478bd9Sstevel@tonic-gate * Removes threads associated with the given zone from a deathrow queue.
8147c478bd9Sstevel@tonic-gate * tp is a pointer to the head of the deathrow queue, and countp is a
8157c478bd9Sstevel@tonic-gate * pointer to the current deathrow count. Returns a linked list of
8167c478bd9Sstevel@tonic-gate * threads removed from the list.
8177c478bd9Sstevel@tonic-gate */
8187c478bd9Sstevel@tonic-gate static kthread_t *
thread_zone_cleanup(kthread_t ** tp,int * countp,zoneid_t zoneid)8197c478bd9Sstevel@tonic-gate thread_zone_cleanup(kthread_t **tp, int *countp, zoneid_t zoneid)
8207c478bd9Sstevel@tonic-gate {
8217c478bd9Sstevel@tonic-gate kthread_t *tmp, *list = NULL;
8227c478bd9Sstevel@tonic-gate cred_t *cr;
8237c478bd9Sstevel@tonic-gate
8247c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&reaplock));
8257c478bd9Sstevel@tonic-gate while (*tp != NULL) {
8267c478bd9Sstevel@tonic-gate if ((cr = (*tp)->t_cred) != NULL && crgetzoneid(cr) == zoneid) {
8277c478bd9Sstevel@tonic-gate tmp = *tp;
8287c478bd9Sstevel@tonic-gate *tp = tmp->t_forw;
8297c478bd9Sstevel@tonic-gate tmp->t_forw = list;
8307c478bd9Sstevel@tonic-gate list = tmp;
8317c478bd9Sstevel@tonic-gate (*countp)--;
8327c478bd9Sstevel@tonic-gate } else {
8337c478bd9Sstevel@tonic-gate tp = &(*tp)->t_forw;
8347c478bd9Sstevel@tonic-gate }
8357c478bd9Sstevel@tonic-gate }
8367c478bd9Sstevel@tonic-gate return (list);
8377c478bd9Sstevel@tonic-gate }
8387c478bd9Sstevel@tonic-gate
8397c478bd9Sstevel@tonic-gate static void
thread_reap_list(kthread_t * t)8407c478bd9Sstevel@tonic-gate thread_reap_list(kthread_t *t)
8417c478bd9Sstevel@tonic-gate {
8427c478bd9Sstevel@tonic-gate kthread_t *next;
8437c478bd9Sstevel@tonic-gate
8447c478bd9Sstevel@tonic-gate while (t != NULL) {
8457c478bd9Sstevel@tonic-gate next = t->t_forw;
8467c478bd9Sstevel@tonic-gate thread_free(t);
8477c478bd9Sstevel@tonic-gate t = next;
8487c478bd9Sstevel@tonic-gate }
8497c478bd9Sstevel@tonic-gate }
8507c478bd9Sstevel@tonic-gate
8517c478bd9Sstevel@tonic-gate /* ARGSUSED */
8527c478bd9Sstevel@tonic-gate static void
thread_zone_destroy(zoneid_t zoneid,void * unused)8537c478bd9Sstevel@tonic-gate thread_zone_destroy(zoneid_t zoneid, void *unused)
8547c478bd9Sstevel@tonic-gate {
8557c478bd9Sstevel@tonic-gate kthread_t *t, *l;
8567c478bd9Sstevel@tonic-gate
8577c478bd9Sstevel@tonic-gate mutex_enter(&reaplock);
8587c478bd9Sstevel@tonic-gate /*
8597c478bd9Sstevel@tonic-gate * Pull threads and lwps associated with zone off deathrow lists.
8607c478bd9Sstevel@tonic-gate */
8617c478bd9Sstevel@tonic-gate t = thread_zone_cleanup(&thread_deathrow, &thread_reapcnt, zoneid);
8627c478bd9Sstevel@tonic-gate l = thread_zone_cleanup(&lwp_deathrow, &lwp_reapcnt, zoneid);
8637c478bd9Sstevel@tonic-gate mutex_exit(&reaplock);
8647c478bd9Sstevel@tonic-gate
8657c478bd9Sstevel@tonic-gate /*
866575a7426Spt157919 * Guard against race condition in mutex_owner_running:
867575a7426Spt157919 * thread=owner(mutex)
868575a7426Spt157919 * <interrupt>
869575a7426Spt157919 * thread exits mutex
870575a7426Spt157919 * thread exits
871575a7426Spt157919 * thread reaped
872575a7426Spt157919 * thread struct freed
873575a7426Spt157919 * cpu = thread->t_cpu <- BAD POINTER DEREFERENCE.
874575a7426Spt157919 * A cross call to all cpus will cause the interrupt handler
875575a7426Spt157919 * to reset the PC if it is in mutex_owner_running, refreshing
876575a7426Spt157919 * stale thread pointers.
877575a7426Spt157919 */
878575a7426Spt157919 mutex_sync(); /* sync with mutex code */
879575a7426Spt157919
880575a7426Spt157919 /*
8817c478bd9Sstevel@tonic-gate * Reap threads
8827c478bd9Sstevel@tonic-gate */
8837c478bd9Sstevel@tonic-gate thread_reap_list(t);
8847c478bd9Sstevel@tonic-gate
8857c478bd9Sstevel@tonic-gate /*
8867c478bd9Sstevel@tonic-gate * Reap lwps
8877c478bd9Sstevel@tonic-gate */
8887c478bd9Sstevel@tonic-gate thread_reap_list(l);
8897c478bd9Sstevel@tonic-gate }
8907c478bd9Sstevel@tonic-gate
8917c478bd9Sstevel@tonic-gate /*
8927c478bd9Sstevel@tonic-gate * cleanup zombie threads that are on deathrow.
8937c478bd9Sstevel@tonic-gate */
8947c478bd9Sstevel@tonic-gate void
thread_reaper()8957c478bd9Sstevel@tonic-gate thread_reaper()
8967c478bd9Sstevel@tonic-gate {
8977c478bd9Sstevel@tonic-gate kthread_t *t, *l;
8987c478bd9Sstevel@tonic-gate callb_cpr_t cprinfo;
8997c478bd9Sstevel@tonic-gate
9007c478bd9Sstevel@tonic-gate /*
9017c478bd9Sstevel@tonic-gate * Register callback to clean up threads when zone is destroyed.
9027c478bd9Sstevel@tonic-gate */
9037c478bd9Sstevel@tonic-gate zone_key_create(&zone_thread_key, NULL, NULL, thread_zone_destroy);
9047c478bd9Sstevel@tonic-gate
9057c478bd9Sstevel@tonic-gate CALLB_CPR_INIT(&cprinfo, &reaplock, callb_generic_cpr, "t_reaper");
9067c478bd9Sstevel@tonic-gate for (;;) {
9077c478bd9Sstevel@tonic-gate mutex_enter(&reaplock);
9087c478bd9Sstevel@tonic-gate while (thread_deathrow == NULL && lwp_deathrow == NULL) {
9097c478bd9Sstevel@tonic-gate CALLB_CPR_SAFE_BEGIN(&cprinfo);
9107c478bd9Sstevel@tonic-gate cv_wait(&reaper_cv, &reaplock);
9117c478bd9Sstevel@tonic-gate CALLB_CPR_SAFE_END(&cprinfo, &reaplock);
9127c478bd9Sstevel@tonic-gate }
913575a7426Spt157919 /*
914575a7426Spt157919 * mutex_sync() needs to be called when reaping, but
915575a7426Spt157919 * not too often. We limit reaping rate to once
916575a7426Spt157919 * per second. Reaplimit is max rate at which threads can
917575a7426Spt157919 * be freed. Does not impact thread destruction/creation.
918575a7426Spt157919 */
9197c478bd9Sstevel@tonic-gate t = thread_deathrow;
9207c478bd9Sstevel@tonic-gate l = lwp_deathrow;
9217c478bd9Sstevel@tonic-gate thread_deathrow = NULL;
9227c478bd9Sstevel@tonic-gate lwp_deathrow = NULL;
9237c478bd9Sstevel@tonic-gate thread_reapcnt = 0;
9247c478bd9Sstevel@tonic-gate lwp_reapcnt = 0;
9257c478bd9Sstevel@tonic-gate mutex_exit(&reaplock);
9267c478bd9Sstevel@tonic-gate
9277c478bd9Sstevel@tonic-gate /*
928575a7426Spt157919 * Guard against race condition in mutex_owner_running:
929575a7426Spt157919 * thread=owner(mutex)
930575a7426Spt157919 * <interrupt>
931575a7426Spt157919 * thread exits mutex
932575a7426Spt157919 * thread exits
933575a7426Spt157919 * thread reaped
934575a7426Spt157919 * thread struct freed
935575a7426Spt157919 * cpu = thread->t_cpu <- BAD POINTER DEREFERENCE.
936575a7426Spt157919 * A cross call to all cpus will cause the interrupt handler
937575a7426Spt157919 * to reset the PC if it is in mutex_owner_running, refreshing
938575a7426Spt157919 * stale thread pointers.
939575a7426Spt157919 */
940575a7426Spt157919 mutex_sync(); /* sync with mutex code */
941575a7426Spt157919 /*
9427c478bd9Sstevel@tonic-gate * Reap threads
9437c478bd9Sstevel@tonic-gate */
9447c478bd9Sstevel@tonic-gate thread_reap_list(t);
9457c478bd9Sstevel@tonic-gate
9467c478bd9Sstevel@tonic-gate /*
9477c478bd9Sstevel@tonic-gate * Reap lwps
9487c478bd9Sstevel@tonic-gate */
9497c478bd9Sstevel@tonic-gate thread_reap_list(l);
950575a7426Spt157919 delay(hz);
9517c478bd9Sstevel@tonic-gate }
9527c478bd9Sstevel@tonic-gate }
9537c478bd9Sstevel@tonic-gate
9547c478bd9Sstevel@tonic-gate /*
955575a7426Spt157919 * This is called by lwpcreate, etc.() to put a lwp_deathrow thread onto
956575a7426Spt157919 * thread_deathrow. The thread's state is changed already TS_FREE to indicate
957575a7426Spt157919 * that is reapable. The thread already holds the reaplock, and was already
958575a7426Spt157919 * freed.
959575a7426Spt157919 */
960575a7426Spt157919 void
reapq_move_lq_to_tq(kthread_t * t)961575a7426Spt157919 reapq_move_lq_to_tq(kthread_t *t)
962575a7426Spt157919 {
963575a7426Spt157919 ASSERT(t->t_state == TS_FREE);
964575a7426Spt157919 ASSERT(MUTEX_HELD(&reaplock));
965575a7426Spt157919 t->t_forw = thread_deathrow;
966575a7426Spt157919 thread_deathrow = t;
967575a7426Spt157919 thread_reapcnt++;
968575a7426Spt157919 if (lwp_reapcnt + thread_reapcnt > reaplimit)
969575a7426Spt157919 cv_signal(&reaper_cv); /* wake the reaper */
970575a7426Spt157919 }
971575a7426Spt157919
972575a7426Spt157919 /*
9737c478bd9Sstevel@tonic-gate * This is called by resume() to put a zombie thread onto deathrow.
9747c478bd9Sstevel@tonic-gate * The thread's state is changed to TS_FREE to indicate that is reapable.
975575a7426Spt157919 * This is called from the idle thread so it must not block - just spin.
9767c478bd9Sstevel@tonic-gate */
9777c478bd9Sstevel@tonic-gate void
reapq_add(kthread_t * t)9787c478bd9Sstevel@tonic-gate reapq_add(kthread_t *t)
9797c478bd9Sstevel@tonic-gate {
9807c478bd9Sstevel@tonic-gate mutex_enter(&reaplock);
9817c478bd9Sstevel@tonic-gate
9827c478bd9Sstevel@tonic-gate /*
983d32efdadSJonathan Adams * lwp_deathrow contains threads with lwp linkage and
984d32efdadSJonathan Adams * swappable thread stacks which have the default stacksize.
985d32efdadSJonathan Adams * These threads' lwps and stacks may be reused by lwp_create().
986d32efdadSJonathan Adams *
987d32efdadSJonathan Adams * Anything else goes on thread_deathrow(), where it will eventually
988d32efdadSJonathan Adams * be thread_free()d.
9897c478bd9Sstevel@tonic-gate */
990d32efdadSJonathan Adams if (t->t_flag & T_LWPREUSE) {
991d32efdadSJonathan Adams ASSERT(ttolwp(t) != NULL);
9927c478bd9Sstevel@tonic-gate t->t_forw = lwp_deathrow;
9937c478bd9Sstevel@tonic-gate lwp_deathrow = t;
9947c478bd9Sstevel@tonic-gate lwp_reapcnt++;
9957c478bd9Sstevel@tonic-gate } else {
9967c478bd9Sstevel@tonic-gate t->t_forw = thread_deathrow;
9977c478bd9Sstevel@tonic-gate thread_deathrow = t;
9987c478bd9Sstevel@tonic-gate thread_reapcnt++;
9997c478bd9Sstevel@tonic-gate }
10007c478bd9Sstevel@tonic-gate if (lwp_reapcnt + thread_reapcnt > reaplimit)
10017c478bd9Sstevel@tonic-gate cv_signal(&reaper_cv); /* wake the reaper */
10027c478bd9Sstevel@tonic-gate t->t_state = TS_FREE;
10037c478bd9Sstevel@tonic-gate lock_clear(&t->t_lock);
10042192a40fSqiao
10052192a40fSqiao /*
10062192a40fSqiao * Before we return, we need to grab and drop the thread lock for
10072192a40fSqiao * the dead thread. At this point, the current thread is the idle
10082192a40fSqiao * thread, and the dead thread's CPU lock points to the current
10092192a40fSqiao * CPU -- and we must grab and drop the lock to synchronize with
10102192a40fSqiao * a racing thread walking a blocking chain that the zombie thread
10112192a40fSqiao * was recently in. By this point, that blocking chain is (by
10122192a40fSqiao * definition) stale: the dead thread is not holding any locks, and
10132192a40fSqiao * is therefore not in any blocking chains -- but if we do not regrab
10142192a40fSqiao * our lock before freeing the dead thread's data structures, the
10152192a40fSqiao * thread walking the (stale) blocking chain will die on memory
10162192a40fSqiao * corruption when it attempts to drop the dead thread's lock. We
10172192a40fSqiao * only need do this once because there is no way for the dead thread
10182192a40fSqiao * to ever again be on a blocking chain: once we have grabbed and
10192192a40fSqiao * dropped the thread lock, we are guaranteed that anyone that could
10202192a40fSqiao * have seen this thread in a blocking chain can no longer see it.
10212192a40fSqiao */
10222192a40fSqiao thread_lock(t);
10232192a40fSqiao thread_unlock(t);
10242192a40fSqiao
10257c478bd9Sstevel@tonic-gate mutex_exit(&reaplock);
10267c478bd9Sstevel@tonic-gate }
10277c478bd9Sstevel@tonic-gate
10287c478bd9Sstevel@tonic-gate /*
10290baeff3dSrab * Install thread context ops for the current thread.
10307c478bd9Sstevel@tonic-gate */
10317c478bd9Sstevel@tonic-gate void
installctx(kthread_t * t,void * arg,void (* save)(void *),void (* restore)(void *),void (* fork)(void *,void *),void (* lwp_create)(void *,void *),void (* exit)(void *),void (* free)(void *,int))10327c478bd9Sstevel@tonic-gate installctx(
10337c478bd9Sstevel@tonic-gate kthread_t *t,
10347c478bd9Sstevel@tonic-gate void *arg,
10357c478bd9Sstevel@tonic-gate void (*save)(void *),
10367c478bd9Sstevel@tonic-gate void (*restore)(void *),
10377c478bd9Sstevel@tonic-gate void (*fork)(void *, void *),
10387c478bd9Sstevel@tonic-gate void (*lwp_create)(void *, void *),
10397c478bd9Sstevel@tonic-gate void (*exit)(void *),
10407c478bd9Sstevel@tonic-gate void (*free)(void *, int))
10417c478bd9Sstevel@tonic-gate {
10427c478bd9Sstevel@tonic-gate struct ctxop *ctx;
10437c478bd9Sstevel@tonic-gate
10447c478bd9Sstevel@tonic-gate ctx = kmem_alloc(sizeof (struct ctxop), KM_SLEEP);
10457c478bd9Sstevel@tonic-gate ctx->save_op = save;
10467c478bd9Sstevel@tonic-gate ctx->restore_op = restore;
10477c478bd9Sstevel@tonic-gate ctx->fork_op = fork;
10487c478bd9Sstevel@tonic-gate ctx->lwp_create_op = lwp_create;
10497c478bd9Sstevel@tonic-gate ctx->exit_op = exit;
10507c478bd9Sstevel@tonic-gate ctx->free_op = free;
10517c478bd9Sstevel@tonic-gate ctx->arg = arg;
10527c478bd9Sstevel@tonic-gate ctx->next = t->t_ctx;
10537c478bd9Sstevel@tonic-gate t->t_ctx = ctx;
10547c478bd9Sstevel@tonic-gate }
10557c478bd9Sstevel@tonic-gate
10567c478bd9Sstevel@tonic-gate /*
10575a64ecfaStrevtom * Remove the thread context ops from a thread.
10587c478bd9Sstevel@tonic-gate */
10597c478bd9Sstevel@tonic-gate int
removectx(kthread_t * t,void * arg,void (* save)(void *),void (* restore)(void *),void (* fork)(void *,void *),void (* lwp_create)(void *,void *),void (* exit)(void *),void (* free)(void *,int))10607c478bd9Sstevel@tonic-gate removectx(
10617c478bd9Sstevel@tonic-gate kthread_t *t,
10627c478bd9Sstevel@tonic-gate void *arg,
10637c478bd9Sstevel@tonic-gate void (*save)(void *),
10647c478bd9Sstevel@tonic-gate void (*restore)(void *),
10657c478bd9Sstevel@tonic-gate void (*fork)(void *, void *),
10667c478bd9Sstevel@tonic-gate void (*lwp_create)(void *, void *),
10677c478bd9Sstevel@tonic-gate void (*exit)(void *),
10687c478bd9Sstevel@tonic-gate void (*free)(void *, int))
10697c478bd9Sstevel@tonic-gate {
10707c478bd9Sstevel@tonic-gate struct ctxop *ctx, *prev_ctx;
10717c478bd9Sstevel@tonic-gate
10725a64ecfaStrevtom /*
10735a64ecfaStrevtom * The incoming kthread_t (which is the thread for which the
10745a64ecfaStrevtom * context ops will be removed) should be one of the following:
10755a64ecfaStrevtom *
10765a64ecfaStrevtom * a) the current thread,
10775a64ecfaStrevtom *
10785a64ecfaStrevtom * b) a thread of a process that's being forked (SIDL),
10795a64ecfaStrevtom *
10805a64ecfaStrevtom * c) a thread that belongs to the same process as the current
10815a64ecfaStrevtom * thread and for which the current thread is the agent thread,
10825a64ecfaStrevtom *
10835a64ecfaStrevtom * d) a thread that is TS_STOPPED which is indicative of it
10845a64ecfaStrevtom * being (if curthread is not an agent) a thread being created
10855a64ecfaStrevtom * as part of an lwp creation.
10865a64ecfaStrevtom */
10877c478bd9Sstevel@tonic-gate ASSERT(t == curthread || ttoproc(t)->p_stat == SIDL ||
10883cf60c08Sdm120769 ttoproc(t)->p_agenttp == curthread || t->t_state == TS_STOPPED);
10897c478bd9Sstevel@tonic-gate
10905a64ecfaStrevtom /*
10915a64ecfaStrevtom * Serialize modifications to t->t_ctx to prevent the agent thread
10925a64ecfaStrevtom * and the target thread from racing with each other during lwp exit.
10935a64ecfaStrevtom */
10945a64ecfaStrevtom mutex_enter(&t->t_ctx_lock);
10957c478bd9Sstevel@tonic-gate prev_ctx = NULL;
10967ac89421SRobert Mustacchi kpreempt_disable();
10977c478bd9Sstevel@tonic-gate for (ctx = t->t_ctx; ctx != NULL; ctx = ctx->next) {
10987c478bd9Sstevel@tonic-gate if (ctx->save_op == save && ctx->restore_op == restore &&
10997c478bd9Sstevel@tonic-gate ctx->fork_op == fork && ctx->lwp_create_op == lwp_create &&
11007c478bd9Sstevel@tonic-gate ctx->exit_op == exit && ctx->free_op == free &&
11017c478bd9Sstevel@tonic-gate ctx->arg == arg) {
11027c478bd9Sstevel@tonic-gate if (prev_ctx)
11037c478bd9Sstevel@tonic-gate prev_ctx->next = ctx->next;
11047c478bd9Sstevel@tonic-gate else
11057c478bd9Sstevel@tonic-gate t->t_ctx = ctx->next;
11065a64ecfaStrevtom mutex_exit(&t->t_ctx_lock);
11077c478bd9Sstevel@tonic-gate if (ctx->free_op != NULL)
11087c478bd9Sstevel@tonic-gate (ctx->free_op)(ctx->arg, 0);
11097c478bd9Sstevel@tonic-gate kmem_free(ctx, sizeof (struct ctxop));
11107ac89421SRobert Mustacchi kpreempt_enable();
11117c478bd9Sstevel@tonic-gate return (1);
11127c478bd9Sstevel@tonic-gate }
11137c478bd9Sstevel@tonic-gate prev_ctx = ctx;
11147c478bd9Sstevel@tonic-gate }
11155a64ecfaStrevtom mutex_exit(&t->t_ctx_lock);
11167ac89421SRobert Mustacchi kpreempt_enable();
11175a64ecfaStrevtom
11187c478bd9Sstevel@tonic-gate return (0);
11197c478bd9Sstevel@tonic-gate }
11207c478bd9Sstevel@tonic-gate
11217c478bd9Sstevel@tonic-gate void
savectx(kthread_t * t)11227c478bd9Sstevel@tonic-gate savectx(kthread_t *t)
11237c478bd9Sstevel@tonic-gate {
11247c478bd9Sstevel@tonic-gate struct ctxop *ctx;
11257c478bd9Sstevel@tonic-gate
11267c478bd9Sstevel@tonic-gate ASSERT(t == curthread);
11277c478bd9Sstevel@tonic-gate for (ctx = t->t_ctx; ctx != 0; ctx = ctx->next)
11287c478bd9Sstevel@tonic-gate if (ctx->save_op != NULL)
11297c478bd9Sstevel@tonic-gate (ctx->save_op)(ctx->arg);
11307c478bd9Sstevel@tonic-gate }
11317c478bd9Sstevel@tonic-gate
11327c478bd9Sstevel@tonic-gate void
restorectx(kthread_t * t)11337c478bd9Sstevel@tonic-gate restorectx(kthread_t *t)
11347c478bd9Sstevel@tonic-gate {
11357c478bd9Sstevel@tonic-gate struct ctxop *ctx;
11367c478bd9Sstevel@tonic-gate
11377c478bd9Sstevel@tonic-gate ASSERT(t == curthread);
11387c478bd9Sstevel@tonic-gate for (ctx = t->t_ctx; ctx != 0; ctx = ctx->next)
11397c478bd9Sstevel@tonic-gate if (ctx->restore_op != NULL)
11407c478bd9Sstevel@tonic-gate (ctx->restore_op)(ctx->arg);
11417c478bd9Sstevel@tonic-gate }
11427c478bd9Sstevel@tonic-gate
11437c478bd9Sstevel@tonic-gate void
forkctx(kthread_t * t,kthread_t * ct)11447c478bd9Sstevel@tonic-gate forkctx(kthread_t *t, kthread_t *ct)
11457c478bd9Sstevel@tonic-gate {
11467c478bd9Sstevel@tonic-gate struct ctxop *ctx;
11477c478bd9Sstevel@tonic-gate
11487c478bd9Sstevel@tonic-gate for (ctx = t->t_ctx; ctx != NULL; ctx = ctx->next)
11497c478bd9Sstevel@tonic-gate if (ctx->fork_op != NULL)
11507c478bd9Sstevel@tonic-gate (ctx->fork_op)(t, ct);
11517c478bd9Sstevel@tonic-gate }
11527c478bd9Sstevel@tonic-gate
11537c478bd9Sstevel@tonic-gate /*
11547c478bd9Sstevel@tonic-gate * Note that this operator is only invoked via the _lwp_create
11557c478bd9Sstevel@tonic-gate * system call. The system may have other reasons to create lwps
11567c478bd9Sstevel@tonic-gate * e.g. the agent lwp or the doors unreferenced lwp.
11577c478bd9Sstevel@tonic-gate */
11587c478bd9Sstevel@tonic-gate void
lwp_createctx(kthread_t * t,kthread_t * ct)11597c478bd9Sstevel@tonic-gate lwp_createctx(kthread_t *t, kthread_t *ct)
11607c478bd9Sstevel@tonic-gate {
11617c478bd9Sstevel@tonic-gate struct ctxop *ctx;
11627c478bd9Sstevel@tonic-gate
11637c478bd9Sstevel@tonic-gate for (ctx = t->t_ctx; ctx != NULL; ctx = ctx->next)
11647c478bd9Sstevel@tonic-gate if (ctx->lwp_create_op != NULL)
11657c478bd9Sstevel@tonic-gate (ctx->lwp_create_op)(t, ct);
11667c478bd9Sstevel@tonic-gate }
11677c478bd9Sstevel@tonic-gate
11687c478bd9Sstevel@tonic-gate /*
11697c478bd9Sstevel@tonic-gate * exitctx is called from thread_exit() and lwp_exit() to perform any actions
11707c478bd9Sstevel@tonic-gate * needed when the thread/LWP leaves the processor for the last time. This
11717c478bd9Sstevel@tonic-gate * routine is not intended to deal with freeing memory; freectx() is used for
11727c478bd9Sstevel@tonic-gate * that purpose during thread_free(). This routine is provided to allow for
11737c478bd9Sstevel@tonic-gate * clean-up that can't wait until thread_free().
11747c478bd9Sstevel@tonic-gate */
11757c478bd9Sstevel@tonic-gate void
exitctx(kthread_t * t)11767c478bd9Sstevel@tonic-gate exitctx(kthread_t *t)
11777c478bd9Sstevel@tonic-gate {
11787c478bd9Sstevel@tonic-gate struct ctxop *ctx;
11797c478bd9Sstevel@tonic-gate
11807c478bd9Sstevel@tonic-gate for (ctx = t->t_ctx; ctx != NULL; ctx = ctx->next)
11817c478bd9Sstevel@tonic-gate if (ctx->exit_op != NULL)
11827c478bd9Sstevel@tonic-gate (ctx->exit_op)(t);
11837c478bd9Sstevel@tonic-gate }
11847c478bd9Sstevel@tonic-gate
11857c478bd9Sstevel@tonic-gate /*
11867c478bd9Sstevel@tonic-gate * freectx is called from thread_free() and exec() to get
11870baeff3dSrab * rid of old thread context ops.
11887c478bd9Sstevel@tonic-gate */
11897c478bd9Sstevel@tonic-gate void
freectx(kthread_t * t,int isexec)11907c478bd9Sstevel@tonic-gate freectx(kthread_t *t, int isexec)
11917c478bd9Sstevel@tonic-gate {
11927c478bd9Sstevel@tonic-gate struct ctxop *ctx;
11937c478bd9Sstevel@tonic-gate
11947ac89421SRobert Mustacchi kpreempt_disable();
11957c478bd9Sstevel@tonic-gate while ((ctx = t->t_ctx) != NULL) {
11967c478bd9Sstevel@tonic-gate t->t_ctx = ctx->next;
11977c478bd9Sstevel@tonic-gate if (ctx->free_op != NULL)
11987c478bd9Sstevel@tonic-gate (ctx->free_op)(ctx->arg, isexec);
11997c478bd9Sstevel@tonic-gate kmem_free(ctx, sizeof (struct ctxop));
12007c478bd9Sstevel@tonic-gate }
12017ac89421SRobert Mustacchi kpreempt_enable();
12027c478bd9Sstevel@tonic-gate }
12037c478bd9Sstevel@tonic-gate
12047c478bd9Sstevel@tonic-gate /*
1205575a7426Spt157919 * freectx_ctx is called from lwp_create() when lwp is reused from
1206575a7426Spt157919 * lwp_deathrow and its thread structure is added to thread_deathrow.
1207575a7426Spt157919 * The thread structure to which this ctx was attached may be already
1208575a7426Spt157919 * freed by the thread reaper so free_op implementations shouldn't rely
1209575a7426Spt157919 * on thread structure to which this ctx was attached still being around.
1210575a7426Spt157919 */
1211575a7426Spt157919 void
freectx_ctx(struct ctxop * ctx)1212575a7426Spt157919 freectx_ctx(struct ctxop *ctx)
1213575a7426Spt157919 {
1214575a7426Spt157919 struct ctxop *nctx;
1215575a7426Spt157919
1216575a7426Spt157919 ASSERT(ctx != NULL);
1217575a7426Spt157919
12187ac89421SRobert Mustacchi kpreempt_disable();
1219575a7426Spt157919 do {
1220575a7426Spt157919 nctx = ctx->next;
1221575a7426Spt157919 if (ctx->free_op != NULL)
1222575a7426Spt157919 (ctx->free_op)(ctx->arg, 0);
1223575a7426Spt157919 kmem_free(ctx, sizeof (struct ctxop));
1224575a7426Spt157919 } while ((ctx = nctx) != NULL);
12257ac89421SRobert Mustacchi kpreempt_enable();
1226575a7426Spt157919 }
1227575a7426Spt157919
1228575a7426Spt157919 /*
12297c478bd9Sstevel@tonic-gate * Set the thread running; arrange for it to be swapped in if necessary.
12307c478bd9Sstevel@tonic-gate */
12317c478bd9Sstevel@tonic-gate void
setrun_locked(kthread_t * t)12327c478bd9Sstevel@tonic-gate setrun_locked(kthread_t *t)
12337c478bd9Sstevel@tonic-gate {
12347c478bd9Sstevel@tonic-gate ASSERT(THREAD_LOCK_HELD(t));
12357c478bd9Sstevel@tonic-gate if (t->t_state == TS_SLEEP) {
12367c478bd9Sstevel@tonic-gate /*
12377c478bd9Sstevel@tonic-gate * Take off sleep queue.
12387c478bd9Sstevel@tonic-gate */
12397c478bd9Sstevel@tonic-gate SOBJ_UNSLEEP(t->t_sobj_ops, t);
12407c478bd9Sstevel@tonic-gate } else if (t->t_state & (TS_RUN | TS_ONPROC)) {
12417c478bd9Sstevel@tonic-gate /*
12427c478bd9Sstevel@tonic-gate * Already on dispatcher queue.
12437c478bd9Sstevel@tonic-gate */
12447c478bd9Sstevel@tonic-gate return;
1245c97ad5cdSakolb } else if (t->t_state == TS_WAIT) {
1246c97ad5cdSakolb waitq_setrun(t);
12477c478bd9Sstevel@tonic-gate } else if (t->t_state == TS_STOPPED) {
12487c478bd9Sstevel@tonic-gate /*
12497c478bd9Sstevel@tonic-gate * All of the sending of SIGCONT (TC_XSTART) and /proc
12507c478bd9Sstevel@tonic-gate * (TC_PSTART) and lwp_continue() (TC_CSTART) must have
12517c478bd9Sstevel@tonic-gate * requested that the thread be run.
12527c478bd9Sstevel@tonic-gate * Just calling setrun() is not sufficient to set a stopped
12537c478bd9Sstevel@tonic-gate * thread running. TP_TXSTART is always set if the thread
12547c478bd9Sstevel@tonic-gate * is not stopped by a jobcontrol stop signal.
12557c478bd9Sstevel@tonic-gate * TP_TPSTART is always set if /proc is not controlling it.
12567c478bd9Sstevel@tonic-gate * TP_TCSTART is always set if lwp_suspend() didn't stop it.
12577c478bd9Sstevel@tonic-gate * The thread won't be stopped unless one of these
12587c478bd9Sstevel@tonic-gate * three mechanisms did it.
12597c478bd9Sstevel@tonic-gate *
12607c478bd9Sstevel@tonic-gate * These flags must be set before calling setrun_locked(t).
12617c478bd9Sstevel@tonic-gate * They can't be passed as arguments because the streams
12627c478bd9Sstevel@tonic-gate * code calls setrun() indirectly and the mechanism for
12637c478bd9Sstevel@tonic-gate * doing so admits only one argument. Note that the
12647c478bd9Sstevel@tonic-gate * thread must be locked in order to change t_schedflags.
12657c478bd9Sstevel@tonic-gate */
12667c478bd9Sstevel@tonic-gate if ((t->t_schedflag & TS_ALLSTART) != TS_ALLSTART)
12677c478bd9Sstevel@tonic-gate return;
12687c478bd9Sstevel@tonic-gate /*
12697c478bd9Sstevel@tonic-gate * Process is no longer stopped (a thread is running).
12707c478bd9Sstevel@tonic-gate */
12717c478bd9Sstevel@tonic-gate t->t_whystop = 0;
12727c478bd9Sstevel@tonic-gate t->t_whatstop = 0;
12737c478bd9Sstevel@tonic-gate /*
12747c478bd9Sstevel@tonic-gate * Strictly speaking, we do not have to clear these
12757c478bd9Sstevel@tonic-gate * flags here; they are cleared on entry to stop().
12767c478bd9Sstevel@tonic-gate * However, they are confusing when doing kernel
12777c478bd9Sstevel@tonic-gate * debugging or when they are revealed by ps(1).
12787c478bd9Sstevel@tonic-gate */
12797c478bd9Sstevel@tonic-gate t->t_schedflag &= ~TS_ALLSTART;
12807c478bd9Sstevel@tonic-gate THREAD_TRANSITION(t); /* drop stopped-thread lock */
12817c478bd9Sstevel@tonic-gate ASSERT(t->t_lockp == &transition_lock);
12827c478bd9Sstevel@tonic-gate ASSERT(t->t_wchan0 == NULL && t->t_wchan == NULL);
12837c478bd9Sstevel@tonic-gate /*
12847c478bd9Sstevel@tonic-gate * Let the class put the process on the dispatcher queue.
12857c478bd9Sstevel@tonic-gate */
12867c478bd9Sstevel@tonic-gate CL_SETRUN(t);
12877c478bd9Sstevel@tonic-gate }
12887c478bd9Sstevel@tonic-gate }
12897c478bd9Sstevel@tonic-gate
12907c478bd9Sstevel@tonic-gate void
setrun(kthread_t * t)12917c478bd9Sstevel@tonic-gate setrun(kthread_t *t)
12927c478bd9Sstevel@tonic-gate {
12937c478bd9Sstevel@tonic-gate thread_lock(t);
12947c478bd9Sstevel@tonic-gate setrun_locked(t);
12957c478bd9Sstevel@tonic-gate thread_unlock(t);
12967c478bd9Sstevel@tonic-gate }
12977c478bd9Sstevel@tonic-gate
12987c478bd9Sstevel@tonic-gate /*
12997c478bd9Sstevel@tonic-gate * Unpin an interrupted thread.
13007c478bd9Sstevel@tonic-gate * When an interrupt occurs, the interrupt is handled on the stack
13017c478bd9Sstevel@tonic-gate * of an interrupt thread, taken from a pool linked to the CPU structure.
13027c478bd9Sstevel@tonic-gate *
13037c478bd9Sstevel@tonic-gate * When swtch() is switching away from an interrupt thread because it
13047c478bd9Sstevel@tonic-gate * blocked or was preempted, this routine is called to complete the
13057c478bd9Sstevel@tonic-gate * saving of the interrupted thread state, and returns the interrupted
13067c478bd9Sstevel@tonic-gate * thread pointer so it may be resumed.
13077c478bd9Sstevel@tonic-gate *
13087c478bd9Sstevel@tonic-gate * Called by swtch() only at high spl.
13097c478bd9Sstevel@tonic-gate */
13107c478bd9Sstevel@tonic-gate kthread_t *
thread_unpin()13117c478bd9Sstevel@tonic-gate thread_unpin()
13127c478bd9Sstevel@tonic-gate {
13137c478bd9Sstevel@tonic-gate kthread_t *t = curthread; /* current thread */
13147c478bd9Sstevel@tonic-gate kthread_t *itp; /* interrupted thread */
13157c478bd9Sstevel@tonic-gate int i; /* interrupt level */
13167c478bd9Sstevel@tonic-gate extern int intr_passivate();
13177c478bd9Sstevel@tonic-gate
13187c478bd9Sstevel@tonic-gate ASSERT(t->t_intr != NULL);
13197c478bd9Sstevel@tonic-gate
13207c478bd9Sstevel@tonic-gate itp = t->t_intr; /* interrupted thread */
13217c478bd9Sstevel@tonic-gate t->t_intr = NULL; /* clear interrupt ptr */
13227c478bd9Sstevel@tonic-gate
13237c478bd9Sstevel@tonic-gate /*
13247c478bd9Sstevel@tonic-gate * Get state from interrupt thread for the one
13257c478bd9Sstevel@tonic-gate * it interrupted.
13267c478bd9Sstevel@tonic-gate */
13277c478bd9Sstevel@tonic-gate
13287c478bd9Sstevel@tonic-gate i = intr_passivate(t, itp);
13297c478bd9Sstevel@tonic-gate
13307c478bd9Sstevel@tonic-gate TRACE_5(TR_FAC_INTR, TR_INTR_PASSIVATE,
13317c478bd9Sstevel@tonic-gate "intr_passivate:level %d curthread %p (%T) ithread %p (%T)",
13327c478bd9Sstevel@tonic-gate i, t, t, itp, itp);
13337c478bd9Sstevel@tonic-gate
13347c478bd9Sstevel@tonic-gate /*
13357c478bd9Sstevel@tonic-gate * Dissociate the current thread from the interrupted thread's LWP.
13367c478bd9Sstevel@tonic-gate */
13377c478bd9Sstevel@tonic-gate t->t_lwp = NULL;
13387c478bd9Sstevel@tonic-gate
13397c478bd9Sstevel@tonic-gate /*
13407c478bd9Sstevel@tonic-gate * Interrupt handlers above the level that spinlocks block must
13417c478bd9Sstevel@tonic-gate * not block.
13427c478bd9Sstevel@tonic-gate */
13437c478bd9Sstevel@tonic-gate #if DEBUG
13447c478bd9Sstevel@tonic-gate if (i < 0 || i > LOCK_LEVEL)
13457c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "thread_unpin: ipl out of range %x", i);
13467c478bd9Sstevel@tonic-gate #endif
13477c478bd9Sstevel@tonic-gate
13487c478bd9Sstevel@tonic-gate /*
13497c478bd9Sstevel@tonic-gate * Compute the CPU's base interrupt level based on the active
13507c478bd9Sstevel@tonic-gate * interrupts.
13517c478bd9Sstevel@tonic-gate */
13527c478bd9Sstevel@tonic-gate ASSERT(CPU->cpu_intr_actv & (1 << i));
13537c478bd9Sstevel@tonic-gate set_base_spl();
13547c478bd9Sstevel@tonic-gate
13557c478bd9Sstevel@tonic-gate return (itp);
13567c478bd9Sstevel@tonic-gate }
13577c478bd9Sstevel@tonic-gate
13587c478bd9Sstevel@tonic-gate /*
13597c478bd9Sstevel@tonic-gate * Create and initialize an interrupt thread.
13607c478bd9Sstevel@tonic-gate * Returns non-zero on error.
13617c478bd9Sstevel@tonic-gate * Called at spl7() or better.
13627c478bd9Sstevel@tonic-gate */
13637c478bd9Sstevel@tonic-gate void
thread_create_intr(struct cpu * cp)13647c478bd9Sstevel@tonic-gate thread_create_intr(struct cpu *cp)
13657c478bd9Sstevel@tonic-gate {
13667c478bd9Sstevel@tonic-gate kthread_t *tp;
13677c478bd9Sstevel@tonic-gate
13687c478bd9Sstevel@tonic-gate tp = thread_create(NULL, 0,
13697c478bd9Sstevel@tonic-gate (void (*)())thread_create_intr, NULL, 0, &p0, TS_ONPROC, 0);
13707c478bd9Sstevel@tonic-gate
13717c478bd9Sstevel@tonic-gate /*
13727c478bd9Sstevel@tonic-gate * Set the thread in the TS_FREE state. The state will change
13737c478bd9Sstevel@tonic-gate * to TS_ONPROC only while the interrupt is active. Think of these
13747c478bd9Sstevel@tonic-gate * as being on a private free list for the CPU. Being TS_FREE keeps
13757c478bd9Sstevel@tonic-gate * inactive interrupt threads out of debugger thread lists.
13767c478bd9Sstevel@tonic-gate *
13777c478bd9Sstevel@tonic-gate * We cannot call thread_create with TS_FREE because of the current
13787c478bd9Sstevel@tonic-gate * checks there for ONPROC. Fix this when thread_create takes flags.
13797c478bd9Sstevel@tonic-gate */
13807c478bd9Sstevel@tonic-gate THREAD_FREEINTR(tp, cp);
13817c478bd9Sstevel@tonic-gate
13827c478bd9Sstevel@tonic-gate /*
13837c478bd9Sstevel@tonic-gate * Nobody should ever reference the credentials of an interrupt
13847c478bd9Sstevel@tonic-gate * thread so make it NULL to catch any such references.
13857c478bd9Sstevel@tonic-gate */
13867c478bd9Sstevel@tonic-gate tp->t_cred = NULL;
13877c478bd9Sstevel@tonic-gate tp->t_flag |= T_INTR_THREAD;
13887c478bd9Sstevel@tonic-gate tp->t_cpu = cp;
13897c478bd9Sstevel@tonic-gate tp->t_bound_cpu = cp;
13907c478bd9Sstevel@tonic-gate tp->t_disp_queue = cp->cpu_disp;
13917c478bd9Sstevel@tonic-gate tp->t_affinitycnt = 1;
13927c478bd9Sstevel@tonic-gate tp->t_preempt = 1;
13937c478bd9Sstevel@tonic-gate
13947c478bd9Sstevel@tonic-gate /*
13957c478bd9Sstevel@tonic-gate * Don't make a user-requested binding on this thread so that
13967c478bd9Sstevel@tonic-gate * the processor can be offlined.
13977c478bd9Sstevel@tonic-gate */
13987c478bd9Sstevel@tonic-gate tp->t_bind_cpu = PBIND_NONE; /* no USER-requested binding */
13997c478bd9Sstevel@tonic-gate tp->t_bind_pset = PS_NONE;
14007c478bd9Sstevel@tonic-gate
14017c478bd9Sstevel@tonic-gate #if defined(__i386) || defined(__amd64)
14027c478bd9Sstevel@tonic-gate tp->t_stk -= STACK_ALIGN;
14037c478bd9Sstevel@tonic-gate *(tp->t_stk) = 0; /* terminate intr thread stack */
14047c478bd9Sstevel@tonic-gate #endif
14057c478bd9Sstevel@tonic-gate
14067c478bd9Sstevel@tonic-gate /*
14077c478bd9Sstevel@tonic-gate * Link onto CPU's interrupt pool.
14087c478bd9Sstevel@tonic-gate */
14097c478bd9Sstevel@tonic-gate tp->t_link = cp->cpu_intr_thread;
14107c478bd9Sstevel@tonic-gate cp->cpu_intr_thread = tp;
14117c478bd9Sstevel@tonic-gate }
14127c478bd9Sstevel@tonic-gate
14137c478bd9Sstevel@tonic-gate /*
14147c478bd9Sstevel@tonic-gate * TSD -- THREAD SPECIFIC DATA
14157c478bd9Sstevel@tonic-gate */
14167c478bd9Sstevel@tonic-gate static kmutex_t tsd_mutex; /* linked list spin lock */
14177c478bd9Sstevel@tonic-gate static uint_t tsd_nkeys; /* size of destructor array */
14187c478bd9Sstevel@tonic-gate /* per-key destructor funcs */
14197c478bd9Sstevel@tonic-gate static void (**tsd_destructor)(void *);
14207c478bd9Sstevel@tonic-gate /* list of tsd_thread's */
14217c478bd9Sstevel@tonic-gate static struct tsd_thread *tsd_list;
14227c478bd9Sstevel@tonic-gate
14237c478bd9Sstevel@tonic-gate /*
14247c478bd9Sstevel@tonic-gate * Default destructor
14257c478bd9Sstevel@tonic-gate * Needed because NULL destructor means that the key is unused
14267c478bd9Sstevel@tonic-gate */
14277c478bd9Sstevel@tonic-gate /* ARGSUSED */
14287c478bd9Sstevel@tonic-gate void
tsd_defaultdestructor(void * value)14297c478bd9Sstevel@tonic-gate tsd_defaultdestructor(void *value)
14307c478bd9Sstevel@tonic-gate {}
14317c478bd9Sstevel@tonic-gate
14327c478bd9Sstevel@tonic-gate /*
14337c478bd9Sstevel@tonic-gate * Create a key (index into per thread array)
14347c478bd9Sstevel@tonic-gate * Locks out tsd_create, tsd_destroy, and tsd_exit
14357c478bd9Sstevel@tonic-gate * May allocate memory with lock held
14367c478bd9Sstevel@tonic-gate */
14377c478bd9Sstevel@tonic-gate void
tsd_create(uint_t * keyp,void (* destructor)(void *))14387c478bd9Sstevel@tonic-gate tsd_create(uint_t *keyp, void (*destructor)(void *))
14397c478bd9Sstevel@tonic-gate {
14407c478bd9Sstevel@tonic-gate int i;
14417c478bd9Sstevel@tonic-gate uint_t nkeys;
14427c478bd9Sstevel@tonic-gate
14437c478bd9Sstevel@tonic-gate /*
14447c478bd9Sstevel@tonic-gate * if key is allocated, do nothing
14457c478bd9Sstevel@tonic-gate */
14467c478bd9Sstevel@tonic-gate mutex_enter(&tsd_mutex);
14477c478bd9Sstevel@tonic-gate if (*keyp) {
14487c478bd9Sstevel@tonic-gate mutex_exit(&tsd_mutex);
14497c478bd9Sstevel@tonic-gate return;
14507c478bd9Sstevel@tonic-gate }
14517c478bd9Sstevel@tonic-gate /*
14527c478bd9Sstevel@tonic-gate * find an unused key
14537c478bd9Sstevel@tonic-gate */
14547c478bd9Sstevel@tonic-gate if (destructor == NULL)
14557c478bd9Sstevel@tonic-gate destructor = tsd_defaultdestructor;
14567c478bd9Sstevel@tonic-gate
14577c478bd9Sstevel@tonic-gate for (i = 0; i < tsd_nkeys; ++i)
14587c478bd9Sstevel@tonic-gate if (tsd_destructor[i] == NULL)
14597c478bd9Sstevel@tonic-gate break;
14607c478bd9Sstevel@tonic-gate
14617c478bd9Sstevel@tonic-gate /*
14627c478bd9Sstevel@tonic-gate * if no unused keys, increase the size of the destructor array
14637c478bd9Sstevel@tonic-gate */
14647c478bd9Sstevel@tonic-gate if (i == tsd_nkeys) {
14657c478bd9Sstevel@tonic-gate if ((nkeys = (tsd_nkeys << 1)) == 0)
14667c478bd9Sstevel@tonic-gate nkeys = 1;
14677c478bd9Sstevel@tonic-gate tsd_destructor =
14687c478bd9Sstevel@tonic-gate (void (**)(void *))tsd_realloc((void *)tsd_destructor,
14697c478bd9Sstevel@tonic-gate (size_t)(tsd_nkeys * sizeof (void (*)(void *))),
14707c478bd9Sstevel@tonic-gate (size_t)(nkeys * sizeof (void (*)(void *))));
14717c478bd9Sstevel@tonic-gate tsd_nkeys = nkeys;
14727c478bd9Sstevel@tonic-gate }
14737c478bd9Sstevel@tonic-gate
14747c478bd9Sstevel@tonic-gate /*
14757c478bd9Sstevel@tonic-gate * allocate the next available unused key
14767c478bd9Sstevel@tonic-gate */
14777c478bd9Sstevel@tonic-gate tsd_destructor[i] = destructor;
14787c478bd9Sstevel@tonic-gate *keyp = i + 1;
14797c478bd9Sstevel@tonic-gate mutex_exit(&tsd_mutex);
14807c478bd9Sstevel@tonic-gate }
14817c478bd9Sstevel@tonic-gate
14827c478bd9Sstevel@tonic-gate /*
14837c478bd9Sstevel@tonic-gate * Destroy a key -- this is for unloadable modules
14847c478bd9Sstevel@tonic-gate *
14857c478bd9Sstevel@tonic-gate * Assumes that the caller is preventing tsd_set and tsd_get
14867c478bd9Sstevel@tonic-gate * Locks out tsd_create, tsd_destroy, and tsd_exit
14877c478bd9Sstevel@tonic-gate * May free memory with lock held
14887c478bd9Sstevel@tonic-gate */
14897c478bd9Sstevel@tonic-gate void
tsd_destroy(uint_t * keyp)14907c478bd9Sstevel@tonic-gate tsd_destroy(uint_t *keyp)
14917c478bd9Sstevel@tonic-gate {
14927c478bd9Sstevel@tonic-gate uint_t key;
14937c478bd9Sstevel@tonic-gate struct tsd_thread *tsd;
14947c478bd9Sstevel@tonic-gate
14957c478bd9Sstevel@tonic-gate /*
14967c478bd9Sstevel@tonic-gate * protect the key namespace and our destructor lists
14977c478bd9Sstevel@tonic-gate */
14987c478bd9Sstevel@tonic-gate mutex_enter(&tsd_mutex);
14997c478bd9Sstevel@tonic-gate key = *keyp;
15007c478bd9Sstevel@tonic-gate *keyp = 0;
15017c478bd9Sstevel@tonic-gate
15027c478bd9Sstevel@tonic-gate ASSERT(key <= tsd_nkeys);
15037c478bd9Sstevel@tonic-gate
15047c478bd9Sstevel@tonic-gate /*
15057c478bd9Sstevel@tonic-gate * if the key is valid
15067c478bd9Sstevel@tonic-gate */
15077c478bd9Sstevel@tonic-gate if (key != 0) {
15087c478bd9Sstevel@tonic-gate uint_t k = key - 1;
15097c478bd9Sstevel@tonic-gate /*
15107c478bd9Sstevel@tonic-gate * for every thread with TSD, call key's destructor
15117c478bd9Sstevel@tonic-gate */
15127c478bd9Sstevel@tonic-gate for (tsd = tsd_list; tsd; tsd = tsd->ts_next) {
15137c478bd9Sstevel@tonic-gate /*
15147c478bd9Sstevel@tonic-gate * no TSD for key in this thread
15157c478bd9Sstevel@tonic-gate */
15167c478bd9Sstevel@tonic-gate if (key > tsd->ts_nkeys)
15177c478bd9Sstevel@tonic-gate continue;
15187c478bd9Sstevel@tonic-gate /*
15197c478bd9Sstevel@tonic-gate * call destructor for key
15207c478bd9Sstevel@tonic-gate */
15217c478bd9Sstevel@tonic-gate if (tsd->ts_value[k] && tsd_destructor[k])
15227c478bd9Sstevel@tonic-gate (*tsd_destructor[k])(tsd->ts_value[k]);
15237c478bd9Sstevel@tonic-gate /*
15247c478bd9Sstevel@tonic-gate * reset value for key
15257c478bd9Sstevel@tonic-gate */
15267c478bd9Sstevel@tonic-gate tsd->ts_value[k] = NULL;
15277c478bd9Sstevel@tonic-gate }
15287c478bd9Sstevel@tonic-gate /*
15297c478bd9Sstevel@tonic-gate * actually free the key (NULL destructor == unused)
15307c478bd9Sstevel@tonic-gate */
15317c478bd9Sstevel@tonic-gate tsd_destructor[k] = NULL;
15327c478bd9Sstevel@tonic-gate }
15337c478bd9Sstevel@tonic-gate
15347c478bd9Sstevel@tonic-gate mutex_exit(&tsd_mutex);
15357c478bd9Sstevel@tonic-gate }
15367c478bd9Sstevel@tonic-gate
15377c478bd9Sstevel@tonic-gate /*
15387c478bd9Sstevel@tonic-gate * Quickly return the per thread value that was stored with the specified key
15397c478bd9Sstevel@tonic-gate * Assumes the caller is protecting key from tsd_create and tsd_destroy
15407c478bd9Sstevel@tonic-gate */
15417c478bd9Sstevel@tonic-gate void *
tsd_get(uint_t key)15427c478bd9Sstevel@tonic-gate tsd_get(uint_t key)
15437c478bd9Sstevel@tonic-gate {
15447c478bd9Sstevel@tonic-gate return (tsd_agent_get(curthread, key));
15457c478bd9Sstevel@tonic-gate }
15467c478bd9Sstevel@tonic-gate
15477c478bd9Sstevel@tonic-gate /*
15487c478bd9Sstevel@tonic-gate * Set a per thread value indexed with the specified key
15497c478bd9Sstevel@tonic-gate */
15507c478bd9Sstevel@tonic-gate int
tsd_set(uint_t key,void * value)15517c478bd9Sstevel@tonic-gate tsd_set(uint_t key, void *value)
15527c478bd9Sstevel@tonic-gate {
15537c478bd9Sstevel@tonic-gate return (tsd_agent_set(curthread, key, value));
15547c478bd9Sstevel@tonic-gate }
15557c478bd9Sstevel@tonic-gate
15567c478bd9Sstevel@tonic-gate /*
15577c478bd9Sstevel@tonic-gate * Like tsd_get(), except that the agent lwp can get the tsd of
15587c478bd9Sstevel@tonic-gate * another thread in the same process (the agent thread only runs when the
15597c478bd9Sstevel@tonic-gate * process is completely stopped by /proc), or syslwp is creating a new lwp.
15607c478bd9Sstevel@tonic-gate */
15617c478bd9Sstevel@tonic-gate void *
tsd_agent_get(kthread_t * t,uint_t key)15627c478bd9Sstevel@tonic-gate tsd_agent_get(kthread_t *t, uint_t key)
15637c478bd9Sstevel@tonic-gate {
15647c478bd9Sstevel@tonic-gate struct tsd_thread *tsd = t->t_tsd;
15657c478bd9Sstevel@tonic-gate
15667c478bd9Sstevel@tonic-gate ASSERT(t == curthread ||
15677c478bd9Sstevel@tonic-gate ttoproc(t)->p_agenttp == curthread || t->t_state == TS_STOPPED);
15687c478bd9Sstevel@tonic-gate
15697c478bd9Sstevel@tonic-gate if (key && tsd != NULL && key <= tsd->ts_nkeys)
15707c478bd9Sstevel@tonic-gate return (tsd->ts_value[key - 1]);
15717c478bd9Sstevel@tonic-gate return (NULL);
15727c478bd9Sstevel@tonic-gate }
15737c478bd9Sstevel@tonic-gate
15747c478bd9Sstevel@tonic-gate /*
15757c478bd9Sstevel@tonic-gate * Like tsd_set(), except that the agent lwp can set the tsd of
15767c478bd9Sstevel@tonic-gate * another thread in the same process, or syslwp can set the tsd
15777c478bd9Sstevel@tonic-gate * of a thread it's in the middle of creating.
15787c478bd9Sstevel@tonic-gate *
15797c478bd9Sstevel@tonic-gate * Assumes the caller is protecting key from tsd_create and tsd_destroy
15807c478bd9Sstevel@tonic-gate * May lock out tsd_destroy (and tsd_create), may allocate memory with
15817c478bd9Sstevel@tonic-gate * lock held
15827c478bd9Sstevel@tonic-gate */
15837c478bd9Sstevel@tonic-gate int
tsd_agent_set(kthread_t * t,uint_t key,void * value)15847c478bd9Sstevel@tonic-gate tsd_agent_set(kthread_t *t, uint_t key, void *value)
15857c478bd9Sstevel@tonic-gate {
15867c478bd9Sstevel@tonic-gate struct tsd_thread *tsd = t->t_tsd;
15877c478bd9Sstevel@tonic-gate
15887c478bd9Sstevel@tonic-gate ASSERT(t == curthread ||
15897c478bd9Sstevel@tonic-gate ttoproc(t)->p_agenttp == curthread || t->t_state == TS_STOPPED);
15907c478bd9Sstevel@tonic-gate
15917c478bd9Sstevel@tonic-gate if (key == 0)
15927c478bd9Sstevel@tonic-gate return (EINVAL);
15937c478bd9Sstevel@tonic-gate if (tsd == NULL)
15947c478bd9Sstevel@tonic-gate tsd = t->t_tsd = kmem_zalloc(sizeof (*tsd), KM_SLEEP);
15957c478bd9Sstevel@tonic-gate if (key <= tsd->ts_nkeys) {
15967c478bd9Sstevel@tonic-gate tsd->ts_value[key - 1] = value;
15977c478bd9Sstevel@tonic-gate return (0);
15987c478bd9Sstevel@tonic-gate }
15997c478bd9Sstevel@tonic-gate
16007c478bd9Sstevel@tonic-gate ASSERT(key <= tsd_nkeys);
16017c478bd9Sstevel@tonic-gate
16027c478bd9Sstevel@tonic-gate /*
16037c478bd9Sstevel@tonic-gate * lock out tsd_destroy()
16047c478bd9Sstevel@tonic-gate */
16057c478bd9Sstevel@tonic-gate mutex_enter(&tsd_mutex);
16067c478bd9Sstevel@tonic-gate if (tsd->ts_nkeys == 0) {
16077c478bd9Sstevel@tonic-gate /*
16087c478bd9Sstevel@tonic-gate * Link onto list of threads with TSD
16097c478bd9Sstevel@tonic-gate */
16107c478bd9Sstevel@tonic-gate if ((tsd->ts_next = tsd_list) != NULL)
16117c478bd9Sstevel@tonic-gate tsd_list->ts_prev = tsd;
16127c478bd9Sstevel@tonic-gate tsd_list = tsd;
16137c478bd9Sstevel@tonic-gate }
16147c478bd9Sstevel@tonic-gate
16157c478bd9Sstevel@tonic-gate /*
16167c478bd9Sstevel@tonic-gate * Allocate thread local storage and set the value for key
16177c478bd9Sstevel@tonic-gate */
16187c478bd9Sstevel@tonic-gate tsd->ts_value = tsd_realloc(tsd->ts_value,
16197c478bd9Sstevel@tonic-gate tsd->ts_nkeys * sizeof (void *),
16207c478bd9Sstevel@tonic-gate key * sizeof (void *));
16217c478bd9Sstevel@tonic-gate tsd->ts_nkeys = key;
16227c478bd9Sstevel@tonic-gate tsd->ts_value[key - 1] = value;
16237c478bd9Sstevel@tonic-gate mutex_exit(&tsd_mutex);
16247c478bd9Sstevel@tonic-gate
16257c478bd9Sstevel@tonic-gate return (0);
16267c478bd9Sstevel@tonic-gate }
16277c478bd9Sstevel@tonic-gate
16287c478bd9Sstevel@tonic-gate
16297c478bd9Sstevel@tonic-gate /*
16307c478bd9Sstevel@tonic-gate * Return the per thread value that was stored with the specified key
16317c478bd9Sstevel@tonic-gate * If necessary, create the key and the value
16327c478bd9Sstevel@tonic-gate * Assumes the caller is protecting *keyp from tsd_destroy
16337c478bd9Sstevel@tonic-gate */
16347c478bd9Sstevel@tonic-gate void *
tsd_getcreate(uint_t * keyp,void (* destroy)(void *),void * (* allocate)(void))16357c478bd9Sstevel@tonic-gate tsd_getcreate(uint_t *keyp, void (*destroy)(void *), void *(*allocate)(void))
16367c478bd9Sstevel@tonic-gate {
16377c478bd9Sstevel@tonic-gate void *value;
16387c478bd9Sstevel@tonic-gate uint_t key = *keyp;
16397c478bd9Sstevel@tonic-gate struct tsd_thread *tsd = curthread->t_tsd;
16407c478bd9Sstevel@tonic-gate
16417c478bd9Sstevel@tonic-gate if (tsd == NULL)
16427c478bd9Sstevel@tonic-gate tsd = curthread->t_tsd = kmem_zalloc(sizeof (*tsd), KM_SLEEP);
16437c478bd9Sstevel@tonic-gate if (key && key <= tsd->ts_nkeys && (value = tsd->ts_value[key - 1]))
16447c478bd9Sstevel@tonic-gate return (value);
16457c478bd9Sstevel@tonic-gate if (key == 0)
16467c478bd9Sstevel@tonic-gate tsd_create(keyp, destroy);
16477c478bd9Sstevel@tonic-gate (void) tsd_set(*keyp, value = (*allocate)());
16487c478bd9Sstevel@tonic-gate
16497c478bd9Sstevel@tonic-gate return (value);
16507c478bd9Sstevel@tonic-gate }
16517c478bd9Sstevel@tonic-gate
16527c478bd9Sstevel@tonic-gate /*
16537c478bd9Sstevel@tonic-gate * Called from thread_exit() to run the destructor function for each tsd
16547c478bd9Sstevel@tonic-gate * Locks out tsd_create and tsd_destroy
16557c478bd9Sstevel@tonic-gate * Assumes that the destructor *DOES NOT* use tsd
16567c478bd9Sstevel@tonic-gate */
16577c478bd9Sstevel@tonic-gate void
tsd_exit(void)16587c478bd9Sstevel@tonic-gate tsd_exit(void)
16597c478bd9Sstevel@tonic-gate {
16607c478bd9Sstevel@tonic-gate int i;
16617c478bd9Sstevel@tonic-gate struct tsd_thread *tsd = curthread->t_tsd;
16627c478bd9Sstevel@tonic-gate
16637c478bd9Sstevel@tonic-gate if (tsd == NULL)
16647c478bd9Sstevel@tonic-gate return;
16657c478bd9Sstevel@tonic-gate
16667c478bd9Sstevel@tonic-gate if (tsd->ts_nkeys == 0) {
16677c478bd9Sstevel@tonic-gate kmem_free(tsd, sizeof (*tsd));
16687c478bd9Sstevel@tonic-gate curthread->t_tsd = NULL;
16697c478bd9Sstevel@tonic-gate return;
16707c478bd9Sstevel@tonic-gate }
16717c478bd9Sstevel@tonic-gate
16727c478bd9Sstevel@tonic-gate /*
16737c478bd9Sstevel@tonic-gate * lock out tsd_create and tsd_destroy, call
16747c478bd9Sstevel@tonic-gate * the destructor, and mark the value as destroyed.
16757c478bd9Sstevel@tonic-gate */
16767c478bd9Sstevel@tonic-gate mutex_enter(&tsd_mutex);
16777c478bd9Sstevel@tonic-gate
16787c478bd9Sstevel@tonic-gate for (i = 0; i < tsd->ts_nkeys; i++) {
16797c478bd9Sstevel@tonic-gate if (tsd->ts_value[i] && tsd_destructor[i])
16807c478bd9Sstevel@tonic-gate (*tsd_destructor[i])(tsd->ts_value[i]);
16817c478bd9Sstevel@tonic-gate tsd->ts_value[i] = NULL;
16827c478bd9Sstevel@tonic-gate }
16837c478bd9Sstevel@tonic-gate
16847c478bd9Sstevel@tonic-gate /*
16857c478bd9Sstevel@tonic-gate * remove from linked list of threads with TSD
16867c478bd9Sstevel@tonic-gate */
16877c478bd9Sstevel@tonic-gate if (tsd->ts_next)
16887c478bd9Sstevel@tonic-gate tsd->ts_next->ts_prev = tsd->ts_prev;
16897c478bd9Sstevel@tonic-gate if (tsd->ts_prev)
16907c478bd9Sstevel@tonic-gate tsd->ts_prev->ts_next = tsd->ts_next;
16917c478bd9Sstevel@tonic-gate if (tsd_list == tsd)
16927c478bd9Sstevel@tonic-gate tsd_list = tsd->ts_next;
16937c478bd9Sstevel@tonic-gate
16947c478bd9Sstevel@tonic-gate mutex_exit(&tsd_mutex);
16957c478bd9Sstevel@tonic-gate
16967c478bd9Sstevel@tonic-gate /*
16977c478bd9Sstevel@tonic-gate * free up the TSD
16987c478bd9Sstevel@tonic-gate */
16997c478bd9Sstevel@tonic-gate kmem_free(tsd->ts_value, tsd->ts_nkeys * sizeof (void *));
17007c478bd9Sstevel@tonic-gate kmem_free(tsd, sizeof (struct tsd_thread));
17017c478bd9Sstevel@tonic-gate curthread->t_tsd = NULL;
17027c478bd9Sstevel@tonic-gate }
17037c478bd9Sstevel@tonic-gate
17047c478bd9Sstevel@tonic-gate /*
17057c478bd9Sstevel@tonic-gate * realloc
17067c478bd9Sstevel@tonic-gate */
17077c478bd9Sstevel@tonic-gate static void *
tsd_realloc(void * old,size_t osize,size_t nsize)17087c478bd9Sstevel@tonic-gate tsd_realloc(void *old, size_t osize, size_t nsize)
17097c478bd9Sstevel@tonic-gate {
17107c478bd9Sstevel@tonic-gate void *new;
17117c478bd9Sstevel@tonic-gate
17127c478bd9Sstevel@tonic-gate new = kmem_zalloc(nsize, KM_SLEEP);
17137c478bd9Sstevel@tonic-gate if (old) {
17147c478bd9Sstevel@tonic-gate bcopy(old, new, osize);
17157c478bd9Sstevel@tonic-gate kmem_free(old, osize);
17167c478bd9Sstevel@tonic-gate }
17177c478bd9Sstevel@tonic-gate return (new);
17187c478bd9Sstevel@tonic-gate }
17197c478bd9Sstevel@tonic-gate
17207c478bd9Sstevel@tonic-gate /*
17217c478bd9Sstevel@tonic-gate * Return non-zero if an interrupt is being serviced.
17227c478bd9Sstevel@tonic-gate */
17237c478bd9Sstevel@tonic-gate int
servicing_interrupt()17247c478bd9Sstevel@tonic-gate servicing_interrupt()
17257c478bd9Sstevel@tonic-gate {
17269c6cb9fcSsudheer int onintr = 0;
17279c6cb9fcSsudheer
17289c6cb9fcSsudheer /* Are we an interrupt thread */
17299c6cb9fcSsudheer if (curthread->t_flag & T_INTR_THREAD)
17309c6cb9fcSsudheer return (1);
17319c6cb9fcSsudheer /* Are we servicing a high level interrupt? */
17329c6cb9fcSsudheer if (CPU_ON_INTR(CPU)) {
17339c6cb9fcSsudheer kpreempt_disable();
17349c6cb9fcSsudheer onintr = CPU_ON_INTR(CPU);
17359c6cb9fcSsudheer kpreempt_enable();
17369c6cb9fcSsudheer }
17379c6cb9fcSsudheer return (onintr);
17387c478bd9Sstevel@tonic-gate }
17397c478bd9Sstevel@tonic-gate
17407c478bd9Sstevel@tonic-gate
17417c478bd9Sstevel@tonic-gate /*
17427c478bd9Sstevel@tonic-gate * Change the dispatch priority of a thread in the system.
17437c478bd9Sstevel@tonic-gate * Used when raising or lowering a thread's priority.
17447c478bd9Sstevel@tonic-gate * (E.g., priority inheritance)
17457c478bd9Sstevel@tonic-gate *
17467c478bd9Sstevel@tonic-gate * Since threads are queued according to their priority, we
17477c478bd9Sstevel@tonic-gate * we must check the thread's state to determine whether it
17487c478bd9Sstevel@tonic-gate * is on a queue somewhere. If it is, we've got to:
17497c478bd9Sstevel@tonic-gate *
17507c478bd9Sstevel@tonic-gate * o Dequeue the thread.
17517c478bd9Sstevel@tonic-gate * o Change its effective priority.
17527c478bd9Sstevel@tonic-gate * o Enqueue the thread.
17537c478bd9Sstevel@tonic-gate *
17547c478bd9Sstevel@tonic-gate * Assumptions: The thread whose priority we wish to change
17557c478bd9Sstevel@tonic-gate * must be locked before we call thread_change_(e)pri().
17567c478bd9Sstevel@tonic-gate * The thread_change(e)pri() function doesn't drop the thread
17577c478bd9Sstevel@tonic-gate * lock--that must be done by its caller.
17587c478bd9Sstevel@tonic-gate */
17597c478bd9Sstevel@tonic-gate void
thread_change_epri(kthread_t * t,pri_t disp_pri)17607c478bd9Sstevel@tonic-gate thread_change_epri(kthread_t *t, pri_t disp_pri)
17617c478bd9Sstevel@tonic-gate {
17627c478bd9Sstevel@tonic-gate uint_t state;
17637c478bd9Sstevel@tonic-gate
17647c478bd9Sstevel@tonic-gate ASSERT(THREAD_LOCK_HELD(t));
17657c478bd9Sstevel@tonic-gate
17667c478bd9Sstevel@tonic-gate /*
17677c478bd9Sstevel@tonic-gate * If the inherited priority hasn't actually changed,
17687c478bd9Sstevel@tonic-gate * just return.
17697c478bd9Sstevel@tonic-gate */
17707c478bd9Sstevel@tonic-gate if (t->t_epri == disp_pri)
17717c478bd9Sstevel@tonic-gate return;
17727c478bd9Sstevel@tonic-gate
17737c478bd9Sstevel@tonic-gate state = t->t_state;
17747c478bd9Sstevel@tonic-gate
17757c478bd9Sstevel@tonic-gate /*
1776d4204c85Sraf * If it's not on a queue, change the priority with impunity.
17777c478bd9Sstevel@tonic-gate */
1778c97ad5cdSakolb if ((state & (TS_SLEEP | TS_RUN | TS_WAIT)) == 0) {
17797c478bd9Sstevel@tonic-gate t->t_epri = disp_pri;
17807c478bd9Sstevel@tonic-gate if (state == TS_ONPROC) {
17817c478bd9Sstevel@tonic-gate cpu_t *cp = t->t_disp_queue->disp_cpu;
17827c478bd9Sstevel@tonic-gate
17837c478bd9Sstevel@tonic-gate if (t == cp->cpu_dispthread)
17847c478bd9Sstevel@tonic-gate cp->cpu_dispatch_pri = DISP_PRIO(t);
17857c478bd9Sstevel@tonic-gate }
1786d4204c85Sraf } else if (state == TS_SLEEP) {
17877c478bd9Sstevel@tonic-gate /*
17887c478bd9Sstevel@tonic-gate * Take the thread out of its sleep queue.
17897c478bd9Sstevel@tonic-gate * Change the inherited priority.
17907c478bd9Sstevel@tonic-gate * Re-enqueue the thread.
17917c478bd9Sstevel@tonic-gate * Each synchronization object exports a function
17927c478bd9Sstevel@tonic-gate * to do this in an appropriate manner.
17937c478bd9Sstevel@tonic-gate */
17947c478bd9Sstevel@tonic-gate SOBJ_CHANGE_EPRI(t->t_sobj_ops, t, disp_pri);
1795c97ad5cdSakolb } else if (state == TS_WAIT) {
1796c97ad5cdSakolb /*
1797c97ad5cdSakolb * Re-enqueue a thread on the wait queue if its
1798c97ad5cdSakolb * effective priority needs to change.
1799c97ad5cdSakolb */
1800c97ad5cdSakolb if (disp_pri != t->t_epri)
1801c97ad5cdSakolb waitq_change_pri(t, disp_pri);
18027c478bd9Sstevel@tonic-gate } else {
18037c478bd9Sstevel@tonic-gate /*
18047c478bd9Sstevel@tonic-gate * The thread is on a run queue.
18057c478bd9Sstevel@tonic-gate * Note: setbackdq() may not put the thread
18067c478bd9Sstevel@tonic-gate * back on the same run queue where it originally
18077c478bd9Sstevel@tonic-gate * resided.
18087c478bd9Sstevel@tonic-gate */
18097c478bd9Sstevel@tonic-gate (void) dispdeq(t);
18107c478bd9Sstevel@tonic-gate t->t_epri = disp_pri;
18117c478bd9Sstevel@tonic-gate setbackdq(t);
18127c478bd9Sstevel@tonic-gate }
1813d4204c85Sraf schedctl_set_cidpri(t);
1814d4204c85Sraf }
18157c478bd9Sstevel@tonic-gate
18167c478bd9Sstevel@tonic-gate /*
18177c478bd9Sstevel@tonic-gate * Function: Change the t_pri field of a thread.
18187c478bd9Sstevel@tonic-gate * Side Effects: Adjust the thread ordering on a run queue
18197c478bd9Sstevel@tonic-gate * or sleep queue, if necessary.
18207c478bd9Sstevel@tonic-gate * Returns: 1 if the thread was on a run queue, else 0.
18217c478bd9Sstevel@tonic-gate */
18227c478bd9Sstevel@tonic-gate int
thread_change_pri(kthread_t * t,pri_t disp_pri,int front)18237c478bd9Sstevel@tonic-gate thread_change_pri(kthread_t *t, pri_t disp_pri, int front)
18247c478bd9Sstevel@tonic-gate {
18257c478bd9Sstevel@tonic-gate uint_t state;
18267c478bd9Sstevel@tonic-gate int on_rq = 0;
18277c478bd9Sstevel@tonic-gate
18287c478bd9Sstevel@tonic-gate ASSERT(THREAD_LOCK_HELD(t));
18297c478bd9Sstevel@tonic-gate
18307c478bd9Sstevel@tonic-gate state = t->t_state;
18317c478bd9Sstevel@tonic-gate THREAD_WILLCHANGE_PRI(t, disp_pri);
18327c478bd9Sstevel@tonic-gate
18337c478bd9Sstevel@tonic-gate /*
1834d4204c85Sraf * If it's not on a queue, change the priority with impunity.
18357c478bd9Sstevel@tonic-gate */
1836c97ad5cdSakolb if ((state & (TS_SLEEP | TS_RUN | TS_WAIT)) == 0) {
18377c478bd9Sstevel@tonic-gate t->t_pri = disp_pri;
18387c478bd9Sstevel@tonic-gate
18397c478bd9Sstevel@tonic-gate if (state == TS_ONPROC) {
18407c478bd9Sstevel@tonic-gate cpu_t *cp = t->t_disp_queue->disp_cpu;
18417c478bd9Sstevel@tonic-gate
18427c478bd9Sstevel@tonic-gate if (t == cp->cpu_dispthread)
18437c478bd9Sstevel@tonic-gate cp->cpu_dispatch_pri = DISP_PRIO(t);
18447c478bd9Sstevel@tonic-gate }
1845d4204c85Sraf } else if (state == TS_SLEEP) {
18467c478bd9Sstevel@tonic-gate /*
18477c478bd9Sstevel@tonic-gate * If the priority has changed, take the thread out of
18487c478bd9Sstevel@tonic-gate * its sleep queue and change the priority.
18497c478bd9Sstevel@tonic-gate * Re-enqueue the thread.
18507c478bd9Sstevel@tonic-gate * Each synchronization object exports a function
18517c478bd9Sstevel@tonic-gate * to do this in an appropriate manner.
18527c478bd9Sstevel@tonic-gate */
18537c478bd9Sstevel@tonic-gate if (disp_pri != t->t_pri)
18547c478bd9Sstevel@tonic-gate SOBJ_CHANGE_PRI(t->t_sobj_ops, t, disp_pri);
1855c97ad5cdSakolb } else if (state == TS_WAIT) {
1856c97ad5cdSakolb /*
1857c97ad5cdSakolb * Re-enqueue a thread on the wait queue if its
1858c97ad5cdSakolb * priority needs to change.
1859c97ad5cdSakolb */
1860c97ad5cdSakolb if (disp_pri != t->t_pri)
1861c97ad5cdSakolb waitq_change_pri(t, disp_pri);
18627c478bd9Sstevel@tonic-gate } else {
18637c478bd9Sstevel@tonic-gate /*
18647c478bd9Sstevel@tonic-gate * The thread is on a run queue.
18657c478bd9Sstevel@tonic-gate * Note: setbackdq() may not put the thread
18667c478bd9Sstevel@tonic-gate * back on the same run queue where it originally
18677c478bd9Sstevel@tonic-gate * resided.
18687c478bd9Sstevel@tonic-gate *
18697c478bd9Sstevel@tonic-gate * We still requeue the thread even if the priority
18707c478bd9Sstevel@tonic-gate * is unchanged to preserve round-robin (and other)
18717c478bd9Sstevel@tonic-gate * effects between threads of the same priority.
18727c478bd9Sstevel@tonic-gate */
18737c478bd9Sstevel@tonic-gate on_rq = dispdeq(t);
18747c478bd9Sstevel@tonic-gate ASSERT(on_rq);
18757c478bd9Sstevel@tonic-gate t->t_pri = disp_pri;
18767c478bd9Sstevel@tonic-gate if (front) {
18777c478bd9Sstevel@tonic-gate setfrontdq(t);
18787c478bd9Sstevel@tonic-gate } else {
18797c478bd9Sstevel@tonic-gate setbackdq(t);
18807c478bd9Sstevel@tonic-gate }
18817c478bd9Sstevel@tonic-gate }
1882d4204c85Sraf schedctl_set_cidpri(t);
18837c478bd9Sstevel@tonic-gate return (on_rq);
18847c478bd9Sstevel@tonic-gate }
1885bff31d89SPhilippe Jung
1886bff31d89SPhilippe Jung /*
1887bff31d89SPhilippe Jung * Tunable kmem_stackinfo is set, fill the kernel thread stack with a
1888bff31d89SPhilippe Jung * specific pattern.
1889bff31d89SPhilippe Jung */
1890bff31d89SPhilippe Jung static void
stkinfo_begin(kthread_t * t)1891bff31d89SPhilippe Jung stkinfo_begin(kthread_t *t)
1892bff31d89SPhilippe Jung {
1893bff31d89SPhilippe Jung caddr_t start; /* stack start */
1894bff31d89SPhilippe Jung caddr_t end; /* stack end */
1895bff31d89SPhilippe Jung uint64_t *ptr; /* pattern pointer */
1896bff31d89SPhilippe Jung
1897bff31d89SPhilippe Jung /*
1898bff31d89SPhilippe Jung * Stack grows up or down, see thread_create(),
1899bff31d89SPhilippe Jung * compute stack memory area start and end (start < end).
1900bff31d89SPhilippe Jung */
1901bff31d89SPhilippe Jung if (t->t_stk > t->t_stkbase) {
1902bff31d89SPhilippe Jung /* stack grows down */
1903bff31d89SPhilippe Jung start = t->t_stkbase;
1904bff31d89SPhilippe Jung end = t->t_stk;
1905bff31d89SPhilippe Jung } else {
1906bff31d89SPhilippe Jung /* stack grows up */
1907bff31d89SPhilippe Jung start = t->t_stk;
1908bff31d89SPhilippe Jung end = t->t_stkbase;
1909bff31d89SPhilippe Jung }
1910bff31d89SPhilippe Jung
1911bff31d89SPhilippe Jung /*
1912bff31d89SPhilippe Jung * Stackinfo pattern size is 8 bytes. Ensure proper 8 bytes
1913bff31d89SPhilippe Jung * alignement for start and end in stack area boundaries
1914bff31d89SPhilippe Jung * (protection against corrupt t_stkbase/t_stk data).
1915bff31d89SPhilippe Jung */
1916bff31d89SPhilippe Jung if ((((uintptr_t)start) & 0x7) != 0) {
1917bff31d89SPhilippe Jung start = (caddr_t)((((uintptr_t)start) & (~0x7)) + 8);
1918bff31d89SPhilippe Jung }
1919bff31d89SPhilippe Jung end = (caddr_t)(((uintptr_t)end) & (~0x7));
1920bff31d89SPhilippe Jung
1921bff31d89SPhilippe Jung if ((end <= start) || (end - start) > (1024 * 1024)) {
1922bff31d89SPhilippe Jung /* negative or stack size > 1 meg, assume bogus */
1923bff31d89SPhilippe Jung return;
1924bff31d89SPhilippe Jung }
1925bff31d89SPhilippe Jung
1926bff31d89SPhilippe Jung /* fill stack area with a pattern (instead of zeros) */
1927bff31d89SPhilippe Jung ptr = (uint64_t *)((void *)start);
1928bff31d89SPhilippe Jung while (ptr < (uint64_t *)((void *)end)) {
1929bff31d89SPhilippe Jung *ptr++ = KMEM_STKINFO_PATTERN;
1930bff31d89SPhilippe Jung }
1931bff31d89SPhilippe Jung }
1932bff31d89SPhilippe Jung
1933bff31d89SPhilippe Jung
1934bff31d89SPhilippe Jung /*
1935bff31d89SPhilippe Jung * Tunable kmem_stackinfo is set, create stackinfo log if doesn't already exist,
1936bff31d89SPhilippe Jung * compute the percentage of kernel stack really used, and set in the log
1937bff31d89SPhilippe Jung * if it's the latest highest percentage.
1938bff31d89SPhilippe Jung */
1939bff31d89SPhilippe Jung static void
stkinfo_end(kthread_t * t)1940bff31d89SPhilippe Jung stkinfo_end(kthread_t *t)
1941bff31d89SPhilippe Jung {
1942bff31d89SPhilippe Jung caddr_t start; /* stack start */
1943bff31d89SPhilippe Jung caddr_t end; /* stack end */
1944bff31d89SPhilippe Jung uint64_t *ptr; /* pattern pointer */
1945bff31d89SPhilippe Jung size_t stksz; /* stack size */
1946bff31d89SPhilippe Jung size_t smallest = 0;
1947bff31d89SPhilippe Jung size_t percent = 0;
1948bff31d89SPhilippe Jung uint_t index = 0;
1949bff31d89SPhilippe Jung uint_t i;
1950bff31d89SPhilippe Jung static size_t smallest_percent = (size_t)-1;
1951bff31d89SPhilippe Jung static uint_t full = 0;
1952bff31d89SPhilippe Jung
1953bff31d89SPhilippe Jung /* create the stackinfo log, if doesn't already exist */
1954bff31d89SPhilippe Jung mutex_enter(&kmem_stkinfo_lock);
1955bff31d89SPhilippe Jung if (kmem_stkinfo_log == NULL) {
1956bff31d89SPhilippe Jung kmem_stkinfo_log = (kmem_stkinfo_t *)
1957bff31d89SPhilippe Jung kmem_zalloc(KMEM_STKINFO_LOG_SIZE *
1958bff31d89SPhilippe Jung (sizeof (kmem_stkinfo_t)), KM_NOSLEEP);
1959bff31d89SPhilippe Jung if (kmem_stkinfo_log == NULL) {
1960bff31d89SPhilippe Jung mutex_exit(&kmem_stkinfo_lock);
1961bff31d89SPhilippe Jung return;
1962bff31d89SPhilippe Jung }
1963bff31d89SPhilippe Jung }
1964bff31d89SPhilippe Jung mutex_exit(&kmem_stkinfo_lock);
1965bff31d89SPhilippe Jung
1966bff31d89SPhilippe Jung /*
1967bff31d89SPhilippe Jung * Stack grows up or down, see thread_create(),
1968bff31d89SPhilippe Jung * compute stack memory area start and end (start < end).
1969bff31d89SPhilippe Jung */
1970bff31d89SPhilippe Jung if (t->t_stk > t->t_stkbase) {
1971bff31d89SPhilippe Jung /* stack grows down */
1972bff31d89SPhilippe Jung start = t->t_stkbase;
1973bff31d89SPhilippe Jung end = t->t_stk;
1974bff31d89SPhilippe Jung } else {
1975bff31d89SPhilippe Jung /* stack grows up */
1976bff31d89SPhilippe Jung start = t->t_stk;
1977bff31d89SPhilippe Jung end = t->t_stkbase;
1978bff31d89SPhilippe Jung }
1979bff31d89SPhilippe Jung
1980bff31d89SPhilippe Jung /* stack size as found in kthread_t */
1981bff31d89SPhilippe Jung stksz = end - start;
1982bff31d89SPhilippe Jung
1983bff31d89SPhilippe Jung /*
1984bff31d89SPhilippe Jung * Stackinfo pattern size is 8 bytes. Ensure proper 8 bytes
1985bff31d89SPhilippe Jung * alignement for start and end in stack area boundaries
1986bff31d89SPhilippe Jung * (protection against corrupt t_stkbase/t_stk data).
1987bff31d89SPhilippe Jung */
1988bff31d89SPhilippe Jung if ((((uintptr_t)start) & 0x7) != 0) {
1989bff31d89SPhilippe Jung start = (caddr_t)((((uintptr_t)start) & (~0x7)) + 8);
1990bff31d89SPhilippe Jung }
1991bff31d89SPhilippe Jung end = (caddr_t)(((uintptr_t)end) & (~0x7));
1992bff31d89SPhilippe Jung
1993bff31d89SPhilippe Jung if ((end <= start) || (end - start) > (1024 * 1024)) {
1994bff31d89SPhilippe Jung /* negative or stack size > 1 meg, assume bogus */
1995bff31d89SPhilippe Jung return;
1996bff31d89SPhilippe Jung }
1997bff31d89SPhilippe Jung
1998bff31d89SPhilippe Jung /* search until no pattern in the stack */
1999bff31d89SPhilippe Jung if (t->t_stk > t->t_stkbase) {
2000bff31d89SPhilippe Jung /* stack grows down */
2001bff31d89SPhilippe Jung #if defined(__i386) || defined(__amd64)
2002bff31d89SPhilippe Jung /*
2003bff31d89SPhilippe Jung * 6 longs are pushed on stack, see thread_load(). Skip
2004bff31d89SPhilippe Jung * them, so if kthread has never run, percent is zero.
2005bff31d89SPhilippe Jung * 8 bytes alignement is preserved for a 32 bit kernel,
2006bff31d89SPhilippe Jung * 6 x 4 = 24, 24 is a multiple of 8.
2007bff31d89SPhilippe Jung *
2008bff31d89SPhilippe Jung */
2009bff31d89SPhilippe Jung end -= (6 * sizeof (long));
2010bff31d89SPhilippe Jung #endif
2011bff31d89SPhilippe Jung ptr = (uint64_t *)((void *)start);
2012bff31d89SPhilippe Jung while (ptr < (uint64_t *)((void *)end)) {
2013bff31d89SPhilippe Jung if (*ptr != KMEM_STKINFO_PATTERN) {
2014bff31d89SPhilippe Jung percent = stkinfo_percent(end,
2015bff31d89SPhilippe Jung start, (caddr_t)ptr);
2016bff31d89SPhilippe Jung break;
2017bff31d89SPhilippe Jung }
2018bff31d89SPhilippe Jung ptr++;
2019bff31d89SPhilippe Jung }
2020bff31d89SPhilippe Jung } else {
2021bff31d89SPhilippe Jung /* stack grows up */
2022bff31d89SPhilippe Jung ptr = (uint64_t *)((void *)end);
2023bff31d89SPhilippe Jung ptr--;
2024bff31d89SPhilippe Jung while (ptr >= (uint64_t *)((void *)start)) {
2025bff31d89SPhilippe Jung if (*ptr != KMEM_STKINFO_PATTERN) {
2026bff31d89SPhilippe Jung percent = stkinfo_percent(start,
2027bff31d89SPhilippe Jung end, (caddr_t)ptr);
2028bff31d89SPhilippe Jung break;
2029bff31d89SPhilippe Jung }
2030bff31d89SPhilippe Jung ptr--;
2031bff31d89SPhilippe Jung }
2032bff31d89SPhilippe Jung }
2033bff31d89SPhilippe Jung
2034bff31d89SPhilippe Jung DTRACE_PROBE3(stack__usage, kthread_t *, t,
2035bff31d89SPhilippe Jung size_t, stksz, size_t, percent);
2036bff31d89SPhilippe Jung
2037bff31d89SPhilippe Jung if (percent == 0) {
2038bff31d89SPhilippe Jung return;
2039bff31d89SPhilippe Jung }
2040bff31d89SPhilippe Jung
2041bff31d89SPhilippe Jung mutex_enter(&kmem_stkinfo_lock);
2042bff31d89SPhilippe Jung if (full == KMEM_STKINFO_LOG_SIZE && percent < smallest_percent) {
2043bff31d89SPhilippe Jung /*
2044bff31d89SPhilippe Jung * The log is full and already contains the highest values
2045bff31d89SPhilippe Jung */
2046bff31d89SPhilippe Jung mutex_exit(&kmem_stkinfo_lock);
2047bff31d89SPhilippe Jung return;
2048bff31d89SPhilippe Jung }
2049bff31d89SPhilippe Jung
2050bff31d89SPhilippe Jung /* keep a log of the highest used stack */
2051bff31d89SPhilippe Jung for (i = 0; i < KMEM_STKINFO_LOG_SIZE; i++) {
2052bff31d89SPhilippe Jung if (kmem_stkinfo_log[i].percent == 0) {
2053bff31d89SPhilippe Jung index = i;
2054bff31d89SPhilippe Jung full++;
2055bff31d89SPhilippe Jung break;
2056bff31d89SPhilippe Jung }
2057bff31d89SPhilippe Jung if (smallest == 0) {
2058bff31d89SPhilippe Jung smallest = kmem_stkinfo_log[i].percent;
2059bff31d89SPhilippe Jung index = i;
2060bff31d89SPhilippe Jung continue;
2061bff31d89SPhilippe Jung }
2062bff31d89SPhilippe Jung if (kmem_stkinfo_log[i].percent < smallest) {
2063bff31d89SPhilippe Jung smallest = kmem_stkinfo_log[i].percent;
2064bff31d89SPhilippe Jung index = i;
2065bff31d89SPhilippe Jung }
2066bff31d89SPhilippe Jung }
2067bff31d89SPhilippe Jung
2068bff31d89SPhilippe Jung if (percent >= kmem_stkinfo_log[index].percent) {
2069bff31d89SPhilippe Jung kmem_stkinfo_log[index].kthread = (caddr_t)t;
2070bff31d89SPhilippe Jung kmem_stkinfo_log[index].t_startpc = (caddr_t)t->t_startpc;
2071bff31d89SPhilippe Jung kmem_stkinfo_log[index].start = start;
2072bff31d89SPhilippe Jung kmem_stkinfo_log[index].stksz = stksz;
2073bff31d89SPhilippe Jung kmem_stkinfo_log[index].percent = percent;
2074bff31d89SPhilippe Jung kmem_stkinfo_log[index].t_tid = t->t_tid;
2075bff31d89SPhilippe Jung kmem_stkinfo_log[index].cmd[0] = '\0';
2076bff31d89SPhilippe Jung if (t->t_tid != 0) {
2077bff31d89SPhilippe Jung stksz = strlen((t->t_procp)->p_user.u_comm);
2078bff31d89SPhilippe Jung if (stksz >= KMEM_STKINFO_STR_SIZE) {
2079bff31d89SPhilippe Jung stksz = KMEM_STKINFO_STR_SIZE - 1;
2080bff31d89SPhilippe Jung kmem_stkinfo_log[index].cmd[stksz] = '\0';
2081bff31d89SPhilippe Jung } else {
2082bff31d89SPhilippe Jung stksz += 1;
2083bff31d89SPhilippe Jung }
2084bff31d89SPhilippe Jung (void) memcpy(kmem_stkinfo_log[index].cmd,
2085bff31d89SPhilippe Jung (t->t_procp)->p_user.u_comm, stksz);
2086bff31d89SPhilippe Jung }
2087bff31d89SPhilippe Jung if (percent < smallest_percent) {
2088bff31d89SPhilippe Jung smallest_percent = percent;
2089bff31d89SPhilippe Jung }
2090bff31d89SPhilippe Jung }
2091bff31d89SPhilippe Jung mutex_exit(&kmem_stkinfo_lock);
2092bff31d89SPhilippe Jung }
2093bff31d89SPhilippe Jung
2094bff31d89SPhilippe Jung /*
2095bff31d89SPhilippe Jung * Tunable kmem_stackinfo is set, compute stack utilization percentage.
2096bff31d89SPhilippe Jung */
2097bff31d89SPhilippe Jung static size_t
stkinfo_percent(caddr_t t_stk,caddr_t t_stkbase,caddr_t sp)2098bff31d89SPhilippe Jung stkinfo_percent(caddr_t t_stk, caddr_t t_stkbase, caddr_t sp)
2099bff31d89SPhilippe Jung {
2100bff31d89SPhilippe Jung size_t percent;
2101bff31d89SPhilippe Jung size_t s;
2102bff31d89SPhilippe Jung
2103bff31d89SPhilippe Jung if (t_stk > t_stkbase) {
2104bff31d89SPhilippe Jung /* stack grows down */
2105bff31d89SPhilippe Jung if (sp > t_stk) {
2106bff31d89SPhilippe Jung return (0);
2107bff31d89SPhilippe Jung }
2108bff31d89SPhilippe Jung if (sp < t_stkbase) {
2109bff31d89SPhilippe Jung return (100);
2110bff31d89SPhilippe Jung }
2111bff31d89SPhilippe Jung percent = t_stk - sp + 1;
2112bff31d89SPhilippe Jung s = t_stk - t_stkbase + 1;
2113bff31d89SPhilippe Jung } else {
2114bff31d89SPhilippe Jung /* stack grows up */
2115bff31d89SPhilippe Jung if (sp < t_stk) {
2116bff31d89SPhilippe Jung return (0);
2117bff31d89SPhilippe Jung }
2118bff31d89SPhilippe Jung if (sp > t_stkbase) {
2119bff31d89SPhilippe Jung return (100);
2120bff31d89SPhilippe Jung }
2121bff31d89SPhilippe Jung percent = sp - t_stk + 1;
2122bff31d89SPhilippe Jung s = t_stkbase - t_stk + 1;
2123bff31d89SPhilippe Jung }
2124bff31d89SPhilippe Jung percent = ((100 * percent) / s) + 1;
2125bff31d89SPhilippe Jung if (percent > 100) {
2126bff31d89SPhilippe Jung percent = 100;
2127bff31d89SPhilippe Jung }
2128bff31d89SPhilippe Jung return (percent);
2129bff31d89SPhilippe Jung }
2130