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 53f2f09c1Sdp * Common Development and Distribution License (the "License"). 63f2f09c1Sdp * 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 */ 2197eda132Sraf 227c478bd9Sstevel@tonic-gate /* 23ff19e029SMenno Lageman * Copyright (c) 1988, 2010, Oracle and/or its affiliates. All rights reserved. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate #include <sys/types.h> 297c478bd9Sstevel@tonic-gate #include <sys/param.h> 307c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h> 317c478bd9Sstevel@tonic-gate #include <sys/systm.h> 327c478bd9Sstevel@tonic-gate #include <sys/cred.h> 337c478bd9Sstevel@tonic-gate #include <sys/user.h> 347c478bd9Sstevel@tonic-gate #include <sys/errno.h> 357c478bd9Sstevel@tonic-gate #include <sys/proc.h> 367c478bd9Sstevel@tonic-gate #include <sys/ucontext.h> 377c478bd9Sstevel@tonic-gate #include <sys/procfs.h> 387c478bd9Sstevel@tonic-gate #include <sys/vnode.h> 397c478bd9Sstevel@tonic-gate #include <sys/acct.h> 407c478bd9Sstevel@tonic-gate #include <sys/var.h> 417c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 427c478bd9Sstevel@tonic-gate #include <sys/debug.h> 437c478bd9Sstevel@tonic-gate #include <sys/wait.h> 447c478bd9Sstevel@tonic-gate #include <sys/siginfo.h> 457c478bd9Sstevel@tonic-gate #include <sys/procset.h> 467c478bd9Sstevel@tonic-gate #include <sys/class.h> 477c478bd9Sstevel@tonic-gate #include <sys/file.h> 487c478bd9Sstevel@tonic-gate #include <sys/session.h> 497c478bd9Sstevel@tonic-gate #include <sys/kmem.h> 507c478bd9Sstevel@tonic-gate #include <sys/vtrace.h> 517c478bd9Sstevel@tonic-gate #include <sys/prsystm.h> 527c478bd9Sstevel@tonic-gate #include <sys/ipc.h> 537c478bd9Sstevel@tonic-gate #include <sys/sem_impl.h> 547c478bd9Sstevel@tonic-gate #include <c2/audit.h> 557c478bd9Sstevel@tonic-gate #include <sys/aio_impl.h> 567c478bd9Sstevel@tonic-gate #include <vm/as.h> 577c478bd9Sstevel@tonic-gate #include <sys/poll.h> 587c478bd9Sstevel@tonic-gate #include <sys/door.h> 597c478bd9Sstevel@tonic-gate #include <sys/lwpchan_impl.h> 607c478bd9Sstevel@tonic-gate #include <sys/utrap.h> 617c478bd9Sstevel@tonic-gate #include <sys/task.h> 627c478bd9Sstevel@tonic-gate #include <sys/exacct.h> 637c478bd9Sstevel@tonic-gate #include <sys/cyclic.h> 647c478bd9Sstevel@tonic-gate #include <sys/schedctl.h> 657c478bd9Sstevel@tonic-gate #include <sys/rctl.h> 667c478bd9Sstevel@tonic-gate #include <sys/contract_impl.h> 677c478bd9Sstevel@tonic-gate #include <sys/contract/process_impl.h> 687c478bd9Sstevel@tonic-gate #include <sys/list.h> 697c478bd9Sstevel@tonic-gate #include <sys/dtrace.h> 707c478bd9Sstevel@tonic-gate #include <sys/pool.h> 717c478bd9Sstevel@tonic-gate #include <sys/sdt.h> 727c478bd9Sstevel@tonic-gate #include <sys/corectl.h> 739acbbeafSnn35248 #include <sys/brand.h> 748ceba33eSraf #include <sys/libc_kernel.h> 757c478bd9Sstevel@tonic-gate 767c478bd9Sstevel@tonic-gate /* 777c478bd9Sstevel@tonic-gate * convert code/data pair into old style wait status 787c478bd9Sstevel@tonic-gate */ 797c478bd9Sstevel@tonic-gate int 807c478bd9Sstevel@tonic-gate wstat(int code, int data) 817c478bd9Sstevel@tonic-gate { 827c478bd9Sstevel@tonic-gate int stat = (data & 0377); 837c478bd9Sstevel@tonic-gate 847c478bd9Sstevel@tonic-gate switch (code) { 857c478bd9Sstevel@tonic-gate case CLD_EXITED: 867c478bd9Sstevel@tonic-gate stat <<= 8; 877c478bd9Sstevel@tonic-gate break; 887c478bd9Sstevel@tonic-gate case CLD_DUMPED: 897c478bd9Sstevel@tonic-gate stat |= WCOREFLG; 907c478bd9Sstevel@tonic-gate break; 917c478bd9Sstevel@tonic-gate case CLD_KILLED: 927c478bd9Sstevel@tonic-gate break; 937c478bd9Sstevel@tonic-gate case CLD_TRAPPED: 947c478bd9Sstevel@tonic-gate case CLD_STOPPED: 957c478bd9Sstevel@tonic-gate stat <<= 8; 967c478bd9Sstevel@tonic-gate stat |= WSTOPFLG; 977c478bd9Sstevel@tonic-gate break; 987c478bd9Sstevel@tonic-gate case CLD_CONTINUED: 997c478bd9Sstevel@tonic-gate stat = WCONTFLG; 1007c478bd9Sstevel@tonic-gate break; 1017c478bd9Sstevel@tonic-gate default: 1027c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "wstat: bad code"); 1037c478bd9Sstevel@tonic-gate /* NOTREACHED */ 1047c478bd9Sstevel@tonic-gate } 1057c478bd9Sstevel@tonic-gate return (stat); 1067c478bd9Sstevel@tonic-gate } 1077c478bd9Sstevel@tonic-gate 1087c478bd9Sstevel@tonic-gate static char * 1097c478bd9Sstevel@tonic-gate exit_reason(char *buf, size_t bufsz, int what, int why) 1107c478bd9Sstevel@tonic-gate { 1117c478bd9Sstevel@tonic-gate switch (why) { 1127c478bd9Sstevel@tonic-gate case CLD_EXITED: 1137c478bd9Sstevel@tonic-gate (void) snprintf(buf, bufsz, "exited with status %d", what); 1147c478bd9Sstevel@tonic-gate break; 1157c478bd9Sstevel@tonic-gate case CLD_KILLED: 1167c478bd9Sstevel@tonic-gate (void) snprintf(buf, bufsz, "exited on fatal signal %d", what); 1177c478bd9Sstevel@tonic-gate break; 1187c478bd9Sstevel@tonic-gate case CLD_DUMPED: 1197c478bd9Sstevel@tonic-gate (void) snprintf(buf, bufsz, "core dumped on signal %d", what); 1207c478bd9Sstevel@tonic-gate break; 1217c478bd9Sstevel@tonic-gate default: 1227c478bd9Sstevel@tonic-gate (void) snprintf(buf, bufsz, "encountered unknown error " 1237c478bd9Sstevel@tonic-gate "(%d, %d)", why, what); 1247c478bd9Sstevel@tonic-gate break; 1257c478bd9Sstevel@tonic-gate } 1267c478bd9Sstevel@tonic-gate 1277c478bd9Sstevel@tonic-gate return (buf); 1287c478bd9Sstevel@tonic-gate } 1297c478bd9Sstevel@tonic-gate 1307c478bd9Sstevel@tonic-gate /* 1317c478bd9Sstevel@tonic-gate * exit system call: pass back caller's arg. 1327c478bd9Sstevel@tonic-gate */ 1337c478bd9Sstevel@tonic-gate void 1347c478bd9Sstevel@tonic-gate rexit(int rval) 1357c478bd9Sstevel@tonic-gate { 1367c478bd9Sstevel@tonic-gate exit(CLD_EXITED, rval); 1377c478bd9Sstevel@tonic-gate } 1387c478bd9Sstevel@tonic-gate 1397c478bd9Sstevel@tonic-gate /* 1407c478bd9Sstevel@tonic-gate * Called by proc_exit() when a zone's init exits, presumably because 1417c478bd9Sstevel@tonic-gate * it failed. As long as the given zone is still in the "running" 1427c478bd9Sstevel@tonic-gate * state, we will re-exec() init, but first we need to reset things 1437c478bd9Sstevel@tonic-gate * which are usually inherited across exec() but will break init's 1447c478bd9Sstevel@tonic-gate * assumption that it is being exec()'d from a virgin process. Most 1457c478bd9Sstevel@tonic-gate * importantly this includes closing all file descriptors (exec only 1467c478bd9Sstevel@tonic-gate * closes those marked close-on-exec) and resetting signals (exec only 1477c478bd9Sstevel@tonic-gate * resets handled signals, and we need to clear any signals which 1487c478bd9Sstevel@tonic-gate * killed init). Anything else that exec(2) says would be inherited, 1497c478bd9Sstevel@tonic-gate * but would affect the execution of init, needs to be reset. 1507c478bd9Sstevel@tonic-gate */ 1517c478bd9Sstevel@tonic-gate static int 1527c478bd9Sstevel@tonic-gate restart_init(int what, int why) 1537c478bd9Sstevel@tonic-gate { 1547c478bd9Sstevel@tonic-gate kthread_t *t = curthread; 1557c478bd9Sstevel@tonic-gate klwp_t *lwp = ttolwp(t); 1567c478bd9Sstevel@tonic-gate proc_t *p = ttoproc(t); 1577c478bd9Sstevel@tonic-gate user_t *up = PTOU(p); 1587c478bd9Sstevel@tonic-gate 1597c478bd9Sstevel@tonic-gate vnode_t *oldcd, *oldrd; 1607c478bd9Sstevel@tonic-gate int i, err; 1617c478bd9Sstevel@tonic-gate char reason_buf[64]; 1627c478bd9Sstevel@tonic-gate 1637c478bd9Sstevel@tonic-gate /* 1647c478bd9Sstevel@tonic-gate * Let zone admin (and global zone admin if this is for a non-global 1657c478bd9Sstevel@tonic-gate * zone) know that init has failed and will be restarted. 1667c478bd9Sstevel@tonic-gate */ 1677c478bd9Sstevel@tonic-gate zcmn_err(p->p_zone->zone_id, CE_WARN, 1687c478bd9Sstevel@tonic-gate "init(1M) %s: restarting automatically", 1697c478bd9Sstevel@tonic-gate exit_reason(reason_buf, sizeof (reason_buf), what, why)); 1707c478bd9Sstevel@tonic-gate 1717c478bd9Sstevel@tonic-gate if (!INGLOBALZONE(p)) { 1727c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "init(1M) for zone %s (pid %d) %s: " 1737c478bd9Sstevel@tonic-gate "restarting automatically", 1747c478bd9Sstevel@tonic-gate p->p_zone->zone_name, p->p_pid, reason_buf); 1757c478bd9Sstevel@tonic-gate } 1767c478bd9Sstevel@tonic-gate 1777c478bd9Sstevel@tonic-gate /* 1787c478bd9Sstevel@tonic-gate * Remove any fpollinfo_t's for this (last) thread from our file 1797c478bd9Sstevel@tonic-gate * descriptors so closeall() can ASSERT() that they're all gone. 1807c478bd9Sstevel@tonic-gate * Then close all open file descriptors in the process. 1817c478bd9Sstevel@tonic-gate */ 1827c478bd9Sstevel@tonic-gate pollcleanup(); 1837c478bd9Sstevel@tonic-gate closeall(P_FINFO(p)); 1847c478bd9Sstevel@tonic-gate 1857c478bd9Sstevel@tonic-gate /* 1867c478bd9Sstevel@tonic-gate * Grab p_lock and begin clearing miscellaneous global process 1877c478bd9Sstevel@tonic-gate * state that needs to be reset before we exec the new init(1M). 1887c478bd9Sstevel@tonic-gate */ 1897c478bd9Sstevel@tonic-gate 1907c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 19197eda132Sraf prbarrier(p); 1927c478bd9Sstevel@tonic-gate 19397eda132Sraf p->p_flag &= ~(SKILLED | SEXTKILLED | SEXITING | SDOCORE); 1947c478bd9Sstevel@tonic-gate up->u_cmask = CMASK; 1957c478bd9Sstevel@tonic-gate 1967c478bd9Sstevel@tonic-gate sigemptyset(&t->t_hold); 1977c478bd9Sstevel@tonic-gate sigemptyset(&t->t_sig); 1987c478bd9Sstevel@tonic-gate sigemptyset(&t->t_extsig); 1997c478bd9Sstevel@tonic-gate 2007c478bd9Sstevel@tonic-gate sigemptyset(&p->p_sig); 2017c478bd9Sstevel@tonic-gate sigemptyset(&p->p_extsig); 2027c478bd9Sstevel@tonic-gate 2037c478bd9Sstevel@tonic-gate sigdelq(p, t, 0); 2047c478bd9Sstevel@tonic-gate sigdelq(p, NULL, 0); 2057c478bd9Sstevel@tonic-gate 2067c478bd9Sstevel@tonic-gate if (p->p_killsqp) { 2077c478bd9Sstevel@tonic-gate siginfofree(p->p_killsqp); 2087c478bd9Sstevel@tonic-gate p->p_killsqp = NULL; 2097c478bd9Sstevel@tonic-gate } 2107c478bd9Sstevel@tonic-gate 2117c478bd9Sstevel@tonic-gate /* 2127c478bd9Sstevel@tonic-gate * Reset any signals that are ignored back to the default disposition. 2137c478bd9Sstevel@tonic-gate * Other u_signal members will be cleared when exec calls sigdefault(). 2147c478bd9Sstevel@tonic-gate */ 2157c478bd9Sstevel@tonic-gate for (i = 1; i < NSIG; i++) { 2167c478bd9Sstevel@tonic-gate if (up->u_signal[i - 1] == SIG_IGN) { 2177c478bd9Sstevel@tonic-gate up->u_signal[i - 1] = SIG_DFL; 2187c478bd9Sstevel@tonic-gate sigemptyset(&up->u_sigmask[i - 1]); 2197c478bd9Sstevel@tonic-gate } 2207c478bd9Sstevel@tonic-gate } 2217c478bd9Sstevel@tonic-gate 2227c478bd9Sstevel@tonic-gate /* 2237c478bd9Sstevel@tonic-gate * Clear the current signal, any signal info associated with it, and 2247c478bd9Sstevel@tonic-gate * any signal information from contracts and/or contract templates. 2257c478bd9Sstevel@tonic-gate */ 2267c478bd9Sstevel@tonic-gate lwp->lwp_cursig = 0; 2277c478bd9Sstevel@tonic-gate lwp->lwp_extsig = 0; 2287c478bd9Sstevel@tonic-gate if (lwp->lwp_curinfo != NULL) { 2297c478bd9Sstevel@tonic-gate siginfofree(lwp->lwp_curinfo); 2307c478bd9Sstevel@tonic-gate lwp->lwp_curinfo = NULL; 2317c478bd9Sstevel@tonic-gate } 2327c478bd9Sstevel@tonic-gate lwp_ctmpl_clear(lwp); 2337c478bd9Sstevel@tonic-gate 2347c478bd9Sstevel@tonic-gate /* 2357c478bd9Sstevel@tonic-gate * Reset both the process root directory and the current working 2367c478bd9Sstevel@tonic-gate * directory to the root of the zone just as we do during boot. 2377c478bd9Sstevel@tonic-gate */ 2387c478bd9Sstevel@tonic-gate VN_HOLD(p->p_zone->zone_rootvp); 2397c478bd9Sstevel@tonic-gate oldrd = up->u_rdir; 2407c478bd9Sstevel@tonic-gate up->u_rdir = p->p_zone->zone_rootvp; 2417c478bd9Sstevel@tonic-gate 2427c478bd9Sstevel@tonic-gate VN_HOLD(p->p_zone->zone_rootvp); 2437c478bd9Sstevel@tonic-gate oldcd = up->u_cdir; 2447c478bd9Sstevel@tonic-gate up->u_cdir = p->p_zone->zone_rootvp; 2457c478bd9Sstevel@tonic-gate 2467c478bd9Sstevel@tonic-gate if (up->u_cwd != NULL) { 2477c478bd9Sstevel@tonic-gate refstr_rele(up->u_cwd); 2487c478bd9Sstevel@tonic-gate up->u_cwd = NULL; 2497c478bd9Sstevel@tonic-gate } 2507c478bd9Sstevel@tonic-gate 2517c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 2527c478bd9Sstevel@tonic-gate 2537c478bd9Sstevel@tonic-gate if (oldrd != NULL) 2547c478bd9Sstevel@tonic-gate VN_RELE(oldrd); 2557c478bd9Sstevel@tonic-gate if (oldcd != NULL) 2567c478bd9Sstevel@tonic-gate VN_RELE(oldcd); 2577c478bd9Sstevel@tonic-gate 2589acbbeafSnn35248 /* Free the controlling tty. (freectty() always assumes curproc.) */ 2599acbbeafSnn35248 ASSERT(p == curproc); 2609acbbeafSnn35248 (void) freectty(B_TRUE); 2617c478bd9Sstevel@tonic-gate 2627c478bd9Sstevel@tonic-gate /* 2637c478bd9Sstevel@tonic-gate * Now exec() the new init(1M) on top of the current process. If we 2647c478bd9Sstevel@tonic-gate * succeed, the caller will treat this like a successful system call. 2657c478bd9Sstevel@tonic-gate * If we fail, we issue messages and the caller will proceed with exit. 2667c478bd9Sstevel@tonic-gate */ 2673f2f09c1Sdp err = exec_init(p->p_zone->zone_initname, NULL); 2687c478bd9Sstevel@tonic-gate 2697c478bd9Sstevel@tonic-gate if (err == 0) 2707c478bd9Sstevel@tonic-gate return (0); 2717c478bd9Sstevel@tonic-gate 2727c478bd9Sstevel@tonic-gate zcmn_err(p->p_zone->zone_id, CE_WARN, 2737c478bd9Sstevel@tonic-gate "failed to restart init(1M) (err=%d): system reboot required", err); 2747c478bd9Sstevel@tonic-gate 2757c478bd9Sstevel@tonic-gate if (!INGLOBALZONE(p)) { 2767c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "failed to restart init(1M) for zone %s " 2777c478bd9Sstevel@tonic-gate "(pid %d, err=%d): zoneadm(1M) boot required", 2787c478bd9Sstevel@tonic-gate p->p_zone->zone_name, p->p_pid, err); 2797c478bd9Sstevel@tonic-gate } 2807c478bd9Sstevel@tonic-gate 2817c478bd9Sstevel@tonic-gate return (-1); 2827c478bd9Sstevel@tonic-gate } 2837c478bd9Sstevel@tonic-gate 2847c478bd9Sstevel@tonic-gate /* 2857c478bd9Sstevel@tonic-gate * Release resources. 2867c478bd9Sstevel@tonic-gate * Enter zombie state. 2877c478bd9Sstevel@tonic-gate * Wake up parent and init processes, 2887c478bd9Sstevel@tonic-gate * and dispose of children. 2897c478bd9Sstevel@tonic-gate */ 2907c478bd9Sstevel@tonic-gate void 2917c478bd9Sstevel@tonic-gate exit(int why, int what) 2927c478bd9Sstevel@tonic-gate { 2937c478bd9Sstevel@tonic-gate /* 2947c478bd9Sstevel@tonic-gate * If proc_exit() fails, then some other lwp in the process 2957c478bd9Sstevel@tonic-gate * got there first. We just have to call lwp_exit() to allow 2967c478bd9Sstevel@tonic-gate * the other lwp to finish exiting the process. Otherwise we're 2977c478bd9Sstevel@tonic-gate * restarting init, and should return. 2987c478bd9Sstevel@tonic-gate */ 2997c478bd9Sstevel@tonic-gate if (proc_exit(why, what) != 0) { 3007c478bd9Sstevel@tonic-gate mutex_enter(&curproc->p_lock); 3017c478bd9Sstevel@tonic-gate ASSERT(curproc->p_flag & SEXITLWPS); 3027c478bd9Sstevel@tonic-gate lwp_exit(); 3037c478bd9Sstevel@tonic-gate /* NOTREACHED */ 3047c478bd9Sstevel@tonic-gate } 3057c478bd9Sstevel@tonic-gate } 3067c478bd9Sstevel@tonic-gate 3077c478bd9Sstevel@tonic-gate /* 30897eda132Sraf * Set the SEXITING flag on the process, after making sure /proc does 30997eda132Sraf * not have it locked. This is done in more places than proc_exit(), 31097eda132Sraf * so it is a separate function. 31197eda132Sraf */ 31297eda132Sraf void 31397eda132Sraf proc_is_exiting(proc_t *p) 31497eda132Sraf { 31597eda132Sraf mutex_enter(&p->p_lock); 31697eda132Sraf prbarrier(p); 31797eda132Sraf p->p_flag |= SEXITING; 31897eda132Sraf mutex_exit(&p->p_lock); 31997eda132Sraf } 32097eda132Sraf 32197eda132Sraf /* 3227c478bd9Sstevel@tonic-gate * Return value: 3237c478bd9Sstevel@tonic-gate * 1 - exitlwps() failed, call (or continue) lwp_exit() 3247c478bd9Sstevel@tonic-gate * 0 - restarting init. Return through system call path 3257c478bd9Sstevel@tonic-gate */ 3267c478bd9Sstevel@tonic-gate int 3277c478bd9Sstevel@tonic-gate proc_exit(int why, int what) 3287c478bd9Sstevel@tonic-gate { 3297c478bd9Sstevel@tonic-gate kthread_t *t = curthread; 3307c478bd9Sstevel@tonic-gate klwp_t *lwp = ttolwp(t); 3317c478bd9Sstevel@tonic-gate proc_t *p = ttoproc(t); 3327c478bd9Sstevel@tonic-gate zone_t *z = p->p_zone; 3337c478bd9Sstevel@tonic-gate timeout_id_t tmp_id; 3347c478bd9Sstevel@tonic-gate int rv; 3357c478bd9Sstevel@tonic-gate proc_t *q; 3367c478bd9Sstevel@tonic-gate task_t *tk; 3377c478bd9Sstevel@tonic-gate vnode_t *exec_vp, *execdir_vp, *cdir, *rdir; 3387c478bd9Sstevel@tonic-gate sigqueue_t *sqp; 3397c478bd9Sstevel@tonic-gate lwpdir_t *lwpdir; 3407c478bd9Sstevel@tonic-gate uint_t lwpdir_sz; 3416eb30ec3SRoger A. Faulkner tidhash_t *tidhash; 3427c478bd9Sstevel@tonic-gate uint_t tidhash_sz; 3436eb30ec3SRoger A. Faulkner ret_tidhash_t *ret_tidhash; 3447c478bd9Sstevel@tonic-gate refstr_t *cwd; 3457c478bd9Sstevel@tonic-gate hrtime_t hrutime, hrstime; 3468ceba33eSraf int evaporate; 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gate /* 3497c478bd9Sstevel@tonic-gate * Stop and discard the process's lwps except for the current one, 3507c478bd9Sstevel@tonic-gate * unless some other lwp beat us to it. If exitlwps() fails then 3517c478bd9Sstevel@tonic-gate * return and the calling lwp will call (or continue in) lwp_exit(). 3527c478bd9Sstevel@tonic-gate */ 35397eda132Sraf proc_is_exiting(p); 3547c478bd9Sstevel@tonic-gate if (exitlwps(0) != 0) 3557c478bd9Sstevel@tonic-gate return (1); 3567c478bd9Sstevel@tonic-gate 3572850d85bSmv143129 mutex_enter(&p->p_lock); 3582850d85bSmv143129 if (p->p_ttime > 0) { 3592850d85bSmv143129 /* 3602850d85bSmv143129 * Account any remaining ticks charged to this process 3612850d85bSmv143129 * on its way out. 3622850d85bSmv143129 */ 3632850d85bSmv143129 (void) task_cpu_time_incr(p->p_task, p->p_ttime); 3642850d85bSmv143129 p->p_ttime = 0; 3652850d85bSmv143129 } 3662850d85bSmv143129 mutex_exit(&p->p_lock); 3672850d85bSmv143129 3687c478bd9Sstevel@tonic-gate DTRACE_PROC(lwp__exit); 3697c478bd9Sstevel@tonic-gate DTRACE_PROC1(exit, int, why); 3707c478bd9Sstevel@tonic-gate 3717c478bd9Sstevel@tonic-gate /* 3729acbbeafSnn35248 * Will perform any brand specific proc exit processing, since this 3739acbbeafSnn35248 * is always the last lwp, will also perform lwp_exit and free brand 3749acbbeafSnn35248 * data 3759acbbeafSnn35248 */ 376fd9e7635Sedp if (PROC_IS_BRANDED(p)) { 377fd9e7635Sedp lwp_detach_brand_hdlrs(lwp); 378fd9e7635Sedp brand_clearbrand(p); 379fd9e7635Sedp } 3809acbbeafSnn35248 3819acbbeafSnn35248 /* 3823f2f09c1Sdp * Don't let init exit unless zone_start_init() failed its exec, or 3837c478bd9Sstevel@tonic-gate * we are shutting down the zone or the machine. 3847c478bd9Sstevel@tonic-gate * 3857c478bd9Sstevel@tonic-gate * Since we are single threaded, we don't need to lock the 3867c478bd9Sstevel@tonic-gate * following accesses to zone_proc_initpid. 3877c478bd9Sstevel@tonic-gate */ 3887c478bd9Sstevel@tonic-gate if (p->p_pid == z->zone_proc_initpid) { 3897c478bd9Sstevel@tonic-gate if (z->zone_boot_err == 0 && 3907c478bd9Sstevel@tonic-gate zone_status_get(z) < ZONE_IS_SHUTTING_DOWN && 3917c478bd9Sstevel@tonic-gate zone_status_get(global_zone) < ZONE_IS_SHUTTING_DOWN && 3929acbbeafSnn35248 z->zone_restart_init == B_TRUE && 3937c478bd9Sstevel@tonic-gate restart_init(what, why) == 0) 3947c478bd9Sstevel@tonic-gate return (0); 3957c478bd9Sstevel@tonic-gate /* 3967c478bd9Sstevel@tonic-gate * Since we didn't or couldn't restart init, we clear 3977c478bd9Sstevel@tonic-gate * the zone's init state and proceed with exit 3987c478bd9Sstevel@tonic-gate * processing. 3997c478bd9Sstevel@tonic-gate */ 4007c478bd9Sstevel@tonic-gate z->zone_proc_initpid = -1; 4017c478bd9Sstevel@tonic-gate } 4027c478bd9Sstevel@tonic-gate 403061d7437SJakub Jermar lwp_pcb_exit(); 404061d7437SJakub Jermar 4057c478bd9Sstevel@tonic-gate /* 4067c478bd9Sstevel@tonic-gate * Allocate a sigqueue now, before we grab locks. 4077c478bd9Sstevel@tonic-gate * It will be given to sigcld(), below. 4088ceba33eSraf * Special case: If we will be making the process disappear 40935a5a358SJonathan Adams * without a trace because it is either: 41035a5a358SJonathan Adams * * an exiting SSYS process, or 41135a5a358SJonathan Adams * * a posix_spawn() vfork child who requests it, 41235a5a358SJonathan Adams * we don't bother to allocate a useless sigqueue. 4137c478bd9Sstevel@tonic-gate */ 41435a5a358SJonathan Adams evaporate = (p->p_flag & SSYS) || ((p->p_flag & SVFORK) && 4158ceba33eSraf why == CLD_EXITED && what == _EVAPORATE); 4168ceba33eSraf if (!evaporate) 4177c478bd9Sstevel@tonic-gate sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP); 4187c478bd9Sstevel@tonic-gate 4197c478bd9Sstevel@tonic-gate /* 4207c478bd9Sstevel@tonic-gate * revoke any doors created by the process. 4217c478bd9Sstevel@tonic-gate */ 4227c478bd9Sstevel@tonic-gate if (p->p_door_list) 4237c478bd9Sstevel@tonic-gate door_exit(); 4247c478bd9Sstevel@tonic-gate 4257c478bd9Sstevel@tonic-gate /* 4267c478bd9Sstevel@tonic-gate * Release schedctl data structures. 4277c478bd9Sstevel@tonic-gate */ 4287c478bd9Sstevel@tonic-gate if (p->p_pagep) 4297c478bd9Sstevel@tonic-gate schedctl_proc_cleanup(); 4307c478bd9Sstevel@tonic-gate 4317c478bd9Sstevel@tonic-gate /* 4327c478bd9Sstevel@tonic-gate * make sure all pending kaio has completed. 4337c478bd9Sstevel@tonic-gate */ 4347c478bd9Sstevel@tonic-gate if (p->p_aio) 4357c478bd9Sstevel@tonic-gate aio_cleanup_exit(); 4367c478bd9Sstevel@tonic-gate 4377c478bd9Sstevel@tonic-gate /* 4387c478bd9Sstevel@tonic-gate * discard the lwpchan cache. 4397c478bd9Sstevel@tonic-gate */ 4407c478bd9Sstevel@tonic-gate if (p->p_lcp != NULL) 4417c478bd9Sstevel@tonic-gate lwpchan_destroy_cache(0); 4427c478bd9Sstevel@tonic-gate 4437c478bd9Sstevel@tonic-gate /* 4447c478bd9Sstevel@tonic-gate * Clean up any DTrace helper actions or probes for the process. 4457c478bd9Sstevel@tonic-gate */ 4467c478bd9Sstevel@tonic-gate if (p->p_dtrace_helpers != NULL) { 4477c478bd9Sstevel@tonic-gate ASSERT(dtrace_helpers_cleanup != NULL); 4487c478bd9Sstevel@tonic-gate (*dtrace_helpers_cleanup)(); 4497c478bd9Sstevel@tonic-gate } 4507c478bd9Sstevel@tonic-gate 4517c478bd9Sstevel@tonic-gate /* untimeout the realtime timers */ 4527c478bd9Sstevel@tonic-gate if (p->p_itimer != NULL) 4537c478bd9Sstevel@tonic-gate timer_exit(); 4547c478bd9Sstevel@tonic-gate 4557c478bd9Sstevel@tonic-gate if ((tmp_id = p->p_alarmid) != 0) { 4567c478bd9Sstevel@tonic-gate p->p_alarmid = 0; 4577c478bd9Sstevel@tonic-gate (void) untimeout(tmp_id); 4587c478bd9Sstevel@tonic-gate } 4597c478bd9Sstevel@tonic-gate 4607c478bd9Sstevel@tonic-gate /* 4617c478bd9Sstevel@tonic-gate * Remove any fpollinfo_t's for this (last) thread from our file 4627c478bd9Sstevel@tonic-gate * descriptors so closeall() can ASSERT() that they're all gone. 4637c478bd9Sstevel@tonic-gate */ 4647c478bd9Sstevel@tonic-gate pollcleanup(); 4657c478bd9Sstevel@tonic-gate 4667c478bd9Sstevel@tonic-gate if (p->p_rprof_cyclic != CYCLIC_NONE) { 4677c478bd9Sstevel@tonic-gate mutex_enter(&cpu_lock); 4687c478bd9Sstevel@tonic-gate cyclic_remove(p->p_rprof_cyclic); 4697c478bd9Sstevel@tonic-gate mutex_exit(&cpu_lock); 4707c478bd9Sstevel@tonic-gate } 4717c478bd9Sstevel@tonic-gate 4727c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 4737c478bd9Sstevel@tonic-gate 4747c478bd9Sstevel@tonic-gate /* 4757c478bd9Sstevel@tonic-gate * Clean up any DTrace probes associated with this process. 4767c478bd9Sstevel@tonic-gate */ 4777c478bd9Sstevel@tonic-gate if (p->p_dtrace_probes) { 4787c478bd9Sstevel@tonic-gate ASSERT(dtrace_fasttrap_exit_ptr != NULL); 4797c478bd9Sstevel@tonic-gate dtrace_fasttrap_exit_ptr(p); 4807c478bd9Sstevel@tonic-gate } 4817c478bd9Sstevel@tonic-gate 4827c478bd9Sstevel@tonic-gate while ((tmp_id = p->p_itimerid) != 0) { 4837c478bd9Sstevel@tonic-gate p->p_itimerid = 0; 4847c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 4857c478bd9Sstevel@tonic-gate (void) untimeout(tmp_id); 4867c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 4877c478bd9Sstevel@tonic-gate } 4887c478bd9Sstevel@tonic-gate 4897c478bd9Sstevel@tonic-gate lwp_cleanup(); 4907c478bd9Sstevel@tonic-gate 4917c478bd9Sstevel@tonic-gate /* 4927c478bd9Sstevel@tonic-gate * We are about to exit; prevent our resource associations from 4937c478bd9Sstevel@tonic-gate * being changed. 4947c478bd9Sstevel@tonic-gate */ 4957c478bd9Sstevel@tonic-gate pool_barrier_enter(); 4967c478bd9Sstevel@tonic-gate 4977c478bd9Sstevel@tonic-gate /* 4987c478bd9Sstevel@tonic-gate * Block the process against /proc now that we have really 4997c478bd9Sstevel@tonic-gate * acquired p->p_lock (to manipulate p_tlist at least). 5007c478bd9Sstevel@tonic-gate */ 5017c478bd9Sstevel@tonic-gate prbarrier(p); 5027c478bd9Sstevel@tonic-gate 5037c478bd9Sstevel@tonic-gate sigfillset(&p->p_ignore); 5047c478bd9Sstevel@tonic-gate sigemptyset(&p->p_siginfo); 5057c478bd9Sstevel@tonic-gate sigemptyset(&p->p_sig); 5067c478bd9Sstevel@tonic-gate sigemptyset(&p->p_extsig); 5077c478bd9Sstevel@tonic-gate sigemptyset(&t->t_sig); 5087c478bd9Sstevel@tonic-gate sigemptyset(&t->t_extsig); 5097c478bd9Sstevel@tonic-gate sigemptyset(&p->p_sigmask); 5107c478bd9Sstevel@tonic-gate sigdelq(p, t, 0); 5117c478bd9Sstevel@tonic-gate lwp->lwp_cursig = 0; 5127c478bd9Sstevel@tonic-gate lwp->lwp_extsig = 0; 5137c478bd9Sstevel@tonic-gate p->p_flag &= ~(SKILLED | SEXTKILLED); 5147c478bd9Sstevel@tonic-gate if (lwp->lwp_curinfo) { 5157c478bd9Sstevel@tonic-gate siginfofree(lwp->lwp_curinfo); 5167c478bd9Sstevel@tonic-gate lwp->lwp_curinfo = NULL; 5177c478bd9Sstevel@tonic-gate } 5187c478bd9Sstevel@tonic-gate 5197c478bd9Sstevel@tonic-gate t->t_proc_flag |= TP_LWPEXIT; 5207c478bd9Sstevel@tonic-gate ASSERT(p->p_lwpcnt == 1 && p->p_zombcnt == 0); 5217c478bd9Sstevel@tonic-gate prlwpexit(t); /* notify /proc */ 5227c478bd9Sstevel@tonic-gate lwp_hash_out(p, t->t_tid); 5237c478bd9Sstevel@tonic-gate prexit(p); 5247c478bd9Sstevel@tonic-gate 5257c478bd9Sstevel@tonic-gate p->p_lwpcnt = 0; 5267c478bd9Sstevel@tonic-gate p->p_tlist = NULL; 5277c478bd9Sstevel@tonic-gate sigqfree(p); 5287c478bd9Sstevel@tonic-gate term_mstate(t); 5297c478bd9Sstevel@tonic-gate p->p_mterm = gethrtime(); 5307c478bd9Sstevel@tonic-gate 5317c478bd9Sstevel@tonic-gate exec_vp = p->p_exec; 5327c478bd9Sstevel@tonic-gate execdir_vp = p->p_execdir; 5337c478bd9Sstevel@tonic-gate p->p_exec = NULLVP; 5347c478bd9Sstevel@tonic-gate p->p_execdir = NULLVP; 5357c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 5367c478bd9Sstevel@tonic-gate 5377c478bd9Sstevel@tonic-gate pr_free_watched_pages(p); 5387c478bd9Sstevel@tonic-gate 5397c478bd9Sstevel@tonic-gate closeall(P_FINFO(p)); 5407c478bd9Sstevel@tonic-gate 5419acbbeafSnn35248 /* Free the controlling tty. (freectty() always assumes curproc.) */ 5429acbbeafSnn35248 ASSERT(p == curproc); 5439acbbeafSnn35248 (void) freectty(B_TRUE); 5447c478bd9Sstevel@tonic-gate 5457c478bd9Sstevel@tonic-gate #if defined(__sparc) 5467c478bd9Sstevel@tonic-gate if (p->p_utraps != NULL) 5477c478bd9Sstevel@tonic-gate utrap_free(p); 5487c478bd9Sstevel@tonic-gate #endif 5497c478bd9Sstevel@tonic-gate if (p->p_semacct) /* IPC semaphore exit */ 5507c478bd9Sstevel@tonic-gate semexit(p); 5517c478bd9Sstevel@tonic-gate rv = wstat(why, what); 5527c478bd9Sstevel@tonic-gate 5537c478bd9Sstevel@tonic-gate acct(rv & 0xff); 5547c478bd9Sstevel@tonic-gate exacct_commit_proc(p, rv); 5557c478bd9Sstevel@tonic-gate 5567c478bd9Sstevel@tonic-gate /* 5577c478bd9Sstevel@tonic-gate * Release any resources associated with C2 auditing 5587c478bd9Sstevel@tonic-gate */ 559005d3febSMarek Pospisil if (AU_AUDITING()) { 5607c478bd9Sstevel@tonic-gate /* 5617c478bd9Sstevel@tonic-gate * audit exit system call 5627c478bd9Sstevel@tonic-gate */ 5637c478bd9Sstevel@tonic-gate audit_exit(why, what); 5647c478bd9Sstevel@tonic-gate } 5657c478bd9Sstevel@tonic-gate 5667c478bd9Sstevel@tonic-gate /* 5677c478bd9Sstevel@tonic-gate * Free address space. 5687c478bd9Sstevel@tonic-gate */ 5697c478bd9Sstevel@tonic-gate relvm(); 5707c478bd9Sstevel@tonic-gate 571a4aeef46SDonghai Qiao if (exec_vp) { 572a4aeef46SDonghai Qiao /* 573a4aeef46SDonghai Qiao * Close this executable which has been opened when the process 574a4aeef46SDonghai Qiao * was created by getproc(). 575a4aeef46SDonghai Qiao */ 576a4aeef46SDonghai Qiao (void) VOP_CLOSE(exec_vp, FREAD, 1, (offset_t)0, CRED(), NULL); 577a4aeef46SDonghai Qiao VN_RELE(exec_vp); 578a4aeef46SDonghai Qiao } 579a4aeef46SDonghai Qiao if (execdir_vp) 580a4aeef46SDonghai Qiao VN_RELE(execdir_vp); 581a4aeef46SDonghai Qiao 5827c478bd9Sstevel@tonic-gate /* 5837c478bd9Sstevel@tonic-gate * Release held contracts. 5847c478bd9Sstevel@tonic-gate */ 5857c478bd9Sstevel@tonic-gate contract_exit(p); 5867c478bd9Sstevel@tonic-gate 5877c478bd9Sstevel@tonic-gate /* 5887c478bd9Sstevel@tonic-gate * Depart our encapsulating process contract. 5897c478bd9Sstevel@tonic-gate */ 5907c478bd9Sstevel@tonic-gate if ((p->p_flag & SSYS) == 0) { 5917c478bd9Sstevel@tonic-gate ASSERT(p->p_ct_process); 5927c478bd9Sstevel@tonic-gate contract_process_exit(p->p_ct_process, p, rv); 5937c478bd9Sstevel@tonic-gate } 5947c478bd9Sstevel@tonic-gate 5957c478bd9Sstevel@tonic-gate /* 5967c478bd9Sstevel@tonic-gate * Remove pool association, and block if requested by pool_do_bind. 5977c478bd9Sstevel@tonic-gate */ 5987c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 5997c478bd9Sstevel@tonic-gate ASSERT(p->p_pool->pool_ref > 0); 6007c478bd9Sstevel@tonic-gate atomic_add_32(&p->p_pool->pool_ref, -1); 6017c478bd9Sstevel@tonic-gate p->p_pool = pool_default; 6027c478bd9Sstevel@tonic-gate /* 6037c478bd9Sstevel@tonic-gate * Now that our address space has been freed and all other threads 6047c478bd9Sstevel@tonic-gate * in this process have exited, set the PEXITED pool flag. This 6057c478bd9Sstevel@tonic-gate * tells the pools subsystems to ignore this process if it was 6067c478bd9Sstevel@tonic-gate * requested to rebind this process to a new pool. 6077c478bd9Sstevel@tonic-gate */ 6087c478bd9Sstevel@tonic-gate p->p_poolflag |= PEXITED; 6097c478bd9Sstevel@tonic-gate pool_barrier_exit(); 6107c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 6117c478bd9Sstevel@tonic-gate 6127c478bd9Sstevel@tonic-gate mutex_enter(&pidlock); 6137c478bd9Sstevel@tonic-gate 6147c478bd9Sstevel@tonic-gate /* 6157c478bd9Sstevel@tonic-gate * Delete this process from the newstate list of its parent. We 6167c478bd9Sstevel@tonic-gate * will put it in the right place in the sigcld in the end. 6177c478bd9Sstevel@tonic-gate */ 6187c478bd9Sstevel@tonic-gate delete_ns(p->p_parent, p); 6197c478bd9Sstevel@tonic-gate 6207c478bd9Sstevel@tonic-gate /* 6217c478bd9Sstevel@tonic-gate * Reassign the orphans to the next of kin. 6227c478bd9Sstevel@tonic-gate * Don't rearrange init's orphanage. 6237c478bd9Sstevel@tonic-gate */ 6247c478bd9Sstevel@tonic-gate if ((q = p->p_orphan) != NULL && p != proc_init) { 6257c478bd9Sstevel@tonic-gate 6267c478bd9Sstevel@tonic-gate proc_t *nokp = p->p_nextofkin; 6277c478bd9Sstevel@tonic-gate 6287c478bd9Sstevel@tonic-gate for (;;) { 6297c478bd9Sstevel@tonic-gate q->p_nextofkin = nokp; 6307c478bd9Sstevel@tonic-gate if (q->p_nextorph == NULL) 6317c478bd9Sstevel@tonic-gate break; 6327c478bd9Sstevel@tonic-gate q = q->p_nextorph; 6337c478bd9Sstevel@tonic-gate } 6347c478bd9Sstevel@tonic-gate q->p_nextorph = nokp->p_orphan; 6357c478bd9Sstevel@tonic-gate nokp->p_orphan = p->p_orphan; 6367c478bd9Sstevel@tonic-gate p->p_orphan = NULL; 6377c478bd9Sstevel@tonic-gate } 6387c478bd9Sstevel@tonic-gate 6397c478bd9Sstevel@tonic-gate /* 6407c478bd9Sstevel@tonic-gate * Reassign the children to init. 6417c478bd9Sstevel@tonic-gate * Don't try to assign init's children to init. 6427c478bd9Sstevel@tonic-gate */ 6437c478bd9Sstevel@tonic-gate if ((q = p->p_child) != NULL && p != proc_init) { 6447c478bd9Sstevel@tonic-gate struct proc *np; 6457c478bd9Sstevel@tonic-gate struct proc *initp = proc_init; 6467c478bd9Sstevel@tonic-gate boolean_t setzonetop = B_FALSE; 6477c478bd9Sstevel@tonic-gate 6487c478bd9Sstevel@tonic-gate if (!INGLOBALZONE(curproc)) 6497c478bd9Sstevel@tonic-gate setzonetop = B_TRUE; 6507c478bd9Sstevel@tonic-gate 6517c478bd9Sstevel@tonic-gate pgdetach(p); 6527c478bd9Sstevel@tonic-gate 6537c478bd9Sstevel@tonic-gate do { 6547c478bd9Sstevel@tonic-gate np = q->p_sibling; 6557c478bd9Sstevel@tonic-gate /* 6567c478bd9Sstevel@tonic-gate * Delete it from its current parent new state 6577c478bd9Sstevel@tonic-gate * list and add it to init new state list 6587c478bd9Sstevel@tonic-gate */ 6597c478bd9Sstevel@tonic-gate delete_ns(q->p_parent, q); 6607c478bd9Sstevel@tonic-gate 6617c478bd9Sstevel@tonic-gate q->p_ppid = 1; 662657b1f3dSraf q->p_pidflag &= ~(CLDNOSIGCHLD | CLDWAITPID); 6637c478bd9Sstevel@tonic-gate if (setzonetop) { 6647c478bd9Sstevel@tonic-gate mutex_enter(&q->p_lock); 6657c478bd9Sstevel@tonic-gate q->p_flag |= SZONETOP; 6667c478bd9Sstevel@tonic-gate mutex_exit(&q->p_lock); 6677c478bd9Sstevel@tonic-gate } 6687c478bd9Sstevel@tonic-gate q->p_parent = initp; 6697c478bd9Sstevel@tonic-gate 6707c478bd9Sstevel@tonic-gate /* 6717c478bd9Sstevel@tonic-gate * Since q will be the first child, 6727c478bd9Sstevel@tonic-gate * it will not have a previous sibling. 6737c478bd9Sstevel@tonic-gate */ 6747c478bd9Sstevel@tonic-gate q->p_psibling = NULL; 6757c478bd9Sstevel@tonic-gate if (initp->p_child) { 6767c478bd9Sstevel@tonic-gate initp->p_child->p_psibling = q; 6777c478bd9Sstevel@tonic-gate } 6787c478bd9Sstevel@tonic-gate q->p_sibling = initp->p_child; 6797c478bd9Sstevel@tonic-gate initp->p_child = q; 6807c478bd9Sstevel@tonic-gate if (q->p_proc_flag & P_PR_PTRACE) { 6817c478bd9Sstevel@tonic-gate mutex_enter(&q->p_lock); 6827c478bd9Sstevel@tonic-gate sigtoproc(q, NULL, SIGKILL); 6837c478bd9Sstevel@tonic-gate mutex_exit(&q->p_lock); 6847c478bd9Sstevel@tonic-gate } 6857c478bd9Sstevel@tonic-gate /* 6867c478bd9Sstevel@tonic-gate * sigcld() will add the child to parents 6877c478bd9Sstevel@tonic-gate * newstate list. 6887c478bd9Sstevel@tonic-gate */ 6897c478bd9Sstevel@tonic-gate if (q->p_stat == SZOMB) 6907c478bd9Sstevel@tonic-gate sigcld(q, NULL); 6917c478bd9Sstevel@tonic-gate } while ((q = np) != NULL); 6927c478bd9Sstevel@tonic-gate 6937c478bd9Sstevel@tonic-gate p->p_child = NULL; 6947c478bd9Sstevel@tonic-gate ASSERT(p->p_child_ns == NULL); 6957c478bd9Sstevel@tonic-gate } 6967c478bd9Sstevel@tonic-gate 6977c478bd9Sstevel@tonic-gate TRACE_1(TR_FAC_PROC, TR_PROC_EXIT, "proc_exit: %p", p); 6987c478bd9Sstevel@tonic-gate 6997c478bd9Sstevel@tonic-gate mutex_enter(&p->p_lock); 7007c478bd9Sstevel@tonic-gate CL_EXIT(curthread); /* tell the scheduler that curthread is exiting */ 7017c478bd9Sstevel@tonic-gate 7027eceb558Srh87107 /* 7037eceb558Srh87107 * Have our task accummulate our resource usage data before they 7047eceb558Srh87107 * become contaminated by p_cacct etc., and before we renounce 7057eceb558Srh87107 * membership of the task. 7067eceb558Srh87107 * 7077eceb558Srh87107 * We do this regardless of whether or not task accounting is active. 7087eceb558Srh87107 * This is to avoid having nonsense data reported for this task if 7097eceb558Srh87107 * task accounting is subsequently enabled. The overhead is minimal; 7107eceb558Srh87107 * by this point, this process has accounted for the usage of all its 7117eceb558Srh87107 * LWPs. We nonetheless do the work here, and under the protection of 7127eceb558Srh87107 * pidlock, so that the movement of the process's usage to the task 7137eceb558Srh87107 * happens at the same time as the removal of the process from the 7147eceb558Srh87107 * task, from the point of view of exacct_snapshot_task_usage(). 7157eceb558Srh87107 */ 7167eceb558Srh87107 exacct_update_task_mstate(p); 7177eceb558Srh87107 7187c478bd9Sstevel@tonic-gate hrutime = mstate_aggr_state(p, LMS_USER); 7197c478bd9Sstevel@tonic-gate hrstime = mstate_aggr_state(p, LMS_SYSTEM); 7207c478bd9Sstevel@tonic-gate p->p_utime = (clock_t)NSEC_TO_TICK(hrutime) + p->p_cutime; 7217c478bd9Sstevel@tonic-gate p->p_stime = (clock_t)NSEC_TO_TICK(hrstime) + p->p_cstime; 7227c478bd9Sstevel@tonic-gate 7237c478bd9Sstevel@tonic-gate p->p_acct[LMS_USER] += p->p_cacct[LMS_USER]; 7247c478bd9Sstevel@tonic-gate p->p_acct[LMS_SYSTEM] += p->p_cacct[LMS_SYSTEM]; 7257c478bd9Sstevel@tonic-gate p->p_acct[LMS_TRAP] += p->p_cacct[LMS_TRAP]; 7267c478bd9Sstevel@tonic-gate p->p_acct[LMS_TFAULT] += p->p_cacct[LMS_TFAULT]; 7277c478bd9Sstevel@tonic-gate p->p_acct[LMS_DFAULT] += p->p_cacct[LMS_DFAULT]; 7287c478bd9Sstevel@tonic-gate p->p_acct[LMS_KFAULT] += p->p_cacct[LMS_KFAULT]; 7297c478bd9Sstevel@tonic-gate p->p_acct[LMS_USER_LOCK] += p->p_cacct[LMS_USER_LOCK]; 7307c478bd9Sstevel@tonic-gate p->p_acct[LMS_SLEEP] += p->p_cacct[LMS_SLEEP]; 7317c478bd9Sstevel@tonic-gate p->p_acct[LMS_WAIT_CPU] += p->p_cacct[LMS_WAIT_CPU]; 7327c478bd9Sstevel@tonic-gate p->p_acct[LMS_STOPPED] += p->p_cacct[LMS_STOPPED]; 7337c478bd9Sstevel@tonic-gate 7347c478bd9Sstevel@tonic-gate p->p_ru.minflt += p->p_cru.minflt; 7357c478bd9Sstevel@tonic-gate p->p_ru.majflt += p->p_cru.majflt; 7367c478bd9Sstevel@tonic-gate p->p_ru.nswap += p->p_cru.nswap; 7377c478bd9Sstevel@tonic-gate p->p_ru.inblock += p->p_cru.inblock; 7387c478bd9Sstevel@tonic-gate p->p_ru.oublock += p->p_cru.oublock; 7397c478bd9Sstevel@tonic-gate p->p_ru.msgsnd += p->p_cru.msgsnd; 7407c478bd9Sstevel@tonic-gate p->p_ru.msgrcv += p->p_cru.msgrcv; 7417c478bd9Sstevel@tonic-gate p->p_ru.nsignals += p->p_cru.nsignals; 7427c478bd9Sstevel@tonic-gate p->p_ru.nvcsw += p->p_cru.nvcsw; 7437c478bd9Sstevel@tonic-gate p->p_ru.nivcsw += p->p_cru.nivcsw; 7447c478bd9Sstevel@tonic-gate p->p_ru.sysc += p->p_cru.sysc; 7457c478bd9Sstevel@tonic-gate p->p_ru.ioch += p->p_cru.ioch; 7467c478bd9Sstevel@tonic-gate 7477c478bd9Sstevel@tonic-gate p->p_stat = SZOMB; 7487c478bd9Sstevel@tonic-gate p->p_proc_flag &= ~P_PR_PTRACE; 7497c478bd9Sstevel@tonic-gate p->p_wdata = what; 7507c478bd9Sstevel@tonic-gate p->p_wcode = (char)why; 7517c478bd9Sstevel@tonic-gate 7527c478bd9Sstevel@tonic-gate cdir = PTOU(p)->u_cdir; 7537c478bd9Sstevel@tonic-gate rdir = PTOU(p)->u_rdir; 7547c478bd9Sstevel@tonic-gate cwd = PTOU(p)->u_cwd; 7557c478bd9Sstevel@tonic-gate 75635a5a358SJonathan Adams ASSERT(cdir != NULL || p->p_parent == &p0); 75735a5a358SJonathan Adams 7587c478bd9Sstevel@tonic-gate /* 7597c478bd9Sstevel@tonic-gate * Release resource controls, as they are no longer enforceable. 7607c478bd9Sstevel@tonic-gate */ 7617c478bd9Sstevel@tonic-gate rctl_set_free(p->p_rctls); 7627c478bd9Sstevel@tonic-gate 7637c478bd9Sstevel@tonic-gate /* 764ff19e029SMenno Lageman * Decrement tk_nlwps counter for our task.max-lwps resource control. 765ff19e029SMenno Lageman * An extended accounting record, if that facility is active, is 766ff19e029SMenno Lageman * scheduled to be written. We cannot give up task and project 767ff19e029SMenno Lageman * membership at this point because that would allow zombies to escape 768ff19e029SMenno Lageman * from the max-processes resource controls. Zombies stay in their 769ff19e029SMenno Lageman * current task and project until the process table slot is released 770ff19e029SMenno Lageman * in freeproc(). 7717c478bd9Sstevel@tonic-gate */ 7727c478bd9Sstevel@tonic-gate tk = p->p_task; 7737c478bd9Sstevel@tonic-gate 7747c478bd9Sstevel@tonic-gate mutex_enter(&p->p_zone->zone_nlwps_lock); 7757c478bd9Sstevel@tonic-gate tk->tk_nlwps--; 7767c478bd9Sstevel@tonic-gate tk->tk_proj->kpj_nlwps--; 7777c478bd9Sstevel@tonic-gate p->p_zone->zone_nlwps--; 7787c478bd9Sstevel@tonic-gate mutex_exit(&p->p_zone->zone_nlwps_lock); 7797c478bd9Sstevel@tonic-gate 7807c478bd9Sstevel@tonic-gate /* 7817c478bd9Sstevel@tonic-gate * Clear the lwp directory and the lwpid hash table 7827c478bd9Sstevel@tonic-gate * now that /proc can't bother us any more. 7837c478bd9Sstevel@tonic-gate * We free the memory below, after dropping p->p_lock. 7847c478bd9Sstevel@tonic-gate */ 7857c478bd9Sstevel@tonic-gate lwpdir = p->p_lwpdir; 7867c478bd9Sstevel@tonic-gate lwpdir_sz = p->p_lwpdir_sz; 7877c478bd9Sstevel@tonic-gate tidhash = p->p_tidhash; 7887c478bd9Sstevel@tonic-gate tidhash_sz = p->p_tidhash_sz; 7896eb30ec3SRoger A. Faulkner ret_tidhash = p->p_ret_tidhash; 7907c478bd9Sstevel@tonic-gate p->p_lwpdir = NULL; 7917c478bd9Sstevel@tonic-gate p->p_lwpfree = NULL; 7927c478bd9Sstevel@tonic-gate p->p_lwpdir_sz = 0; 7937c478bd9Sstevel@tonic-gate p->p_tidhash = NULL; 7947c478bd9Sstevel@tonic-gate p->p_tidhash_sz = 0; 7956eb30ec3SRoger A. Faulkner p->p_ret_tidhash = NULL; 7967c478bd9Sstevel@tonic-gate 7977c478bd9Sstevel@tonic-gate /* 7980baeff3dSrab * If the process has context ops installed, call the exit routine 7990baeff3dSrab * on behalf of this last remaining thread. Normally exitpctx() is 8000baeff3dSrab * called during thread_exit() or lwp_exit(), but because this is the 8010baeff3dSrab * last thread in the process, we must call it here. By the time 8020baeff3dSrab * thread_exit() is called (below), the association with the relevant 8030baeff3dSrab * process has been lost. 8040baeff3dSrab * 8050baeff3dSrab * We also free the context here. 8060baeff3dSrab */ 8070baeff3dSrab if (p->p_pctx) { 8080baeff3dSrab kpreempt_disable(); 8090baeff3dSrab exitpctx(p); 8100baeff3dSrab kpreempt_enable(); 8110baeff3dSrab 8120baeff3dSrab freepctx(p, 0); 8130baeff3dSrab } 8140baeff3dSrab 8150baeff3dSrab /* 81627e6fb21Sdp * curthread's proc pointer is changed to point to the 'sched' 81727e6fb21Sdp * process for the corresponding zone, except in the case when 81827e6fb21Sdp * the exiting process is in fact a zsched instance, in which 81927e6fb21Sdp * case the proc pointer is set to p0. We do so, so that the 82027e6fb21Sdp * process still points at the right zone when we call the VN_RELE() 82127e6fb21Sdp * below. 82227e6fb21Sdp * 82327e6fb21Sdp * This is because curthread's original proc pointer can be freed as 82427e6fb21Sdp * soon as the child sends a SIGCLD to its parent. We use zsched so 82527e6fb21Sdp * that for user processes, even in the final moments of death, the 82627e6fb21Sdp * process is still associated with its zone. 8277c478bd9Sstevel@tonic-gate */ 82827e6fb21Sdp if (p != t->t_procp->p_zone->zone_zsched) 82927e6fb21Sdp t->t_procp = t->t_procp->p_zone->zone_zsched; 83027e6fb21Sdp else 8317c478bd9Sstevel@tonic-gate t->t_procp = &p0; 8327c478bd9Sstevel@tonic-gate 8337c478bd9Sstevel@tonic-gate mutex_exit(&p->p_lock); 834657b1f3dSraf if (!evaporate) { 835657b1f3dSraf p->p_pidflag &= ~CLDPEND; 8367c478bd9Sstevel@tonic-gate sigcld(p, sqp); 837657b1f3dSraf } else { 8388ceba33eSraf /* 8398ceba33eSraf * Do what sigcld() would do if the disposition 8408ceba33eSraf * of the SIGCHLD signal were set to be ignored. 8418ceba33eSraf */ 8428ceba33eSraf cv_broadcast(&p->p_srwchan_cv); 8438ceba33eSraf freeproc(p); 8448ceba33eSraf } 8457c478bd9Sstevel@tonic-gate mutex_exit(&pidlock); 8467c478bd9Sstevel@tonic-gate 8477c478bd9Sstevel@tonic-gate /* 8487c478bd9Sstevel@tonic-gate * We don't release u_cdir and u_rdir until SZOMB is set. 8497c478bd9Sstevel@tonic-gate * This protects us against dofusers(). 8507c478bd9Sstevel@tonic-gate */ 85135a5a358SJonathan Adams if (cdir) 8527c478bd9Sstevel@tonic-gate VN_RELE(cdir); 8537c478bd9Sstevel@tonic-gate if (rdir) 8547c478bd9Sstevel@tonic-gate VN_RELE(rdir); 8557c478bd9Sstevel@tonic-gate if (cwd) 8567c478bd9Sstevel@tonic-gate refstr_rele(cwd); 8577c478bd9Sstevel@tonic-gate 85827e6fb21Sdp /* 85927e6fb21Sdp * task_rele() may ultimately cause the zone to go away (or 86027e6fb21Sdp * may cause the last user process in a zone to go away, which 86127e6fb21Sdp * signals zsched to go away). So prior to this call, we must 86227e6fb21Sdp * no longer point at zsched. 86327e6fb21Sdp */ 86427e6fb21Sdp t->t_procp = &p0; 86527e6fb21Sdp 86627e6fb21Sdp kmem_free(lwpdir, lwpdir_sz * sizeof (lwpdir_t)); 8676eb30ec3SRoger A. Faulkner kmem_free(tidhash, tidhash_sz * sizeof (tidhash_t)); 8686eb30ec3SRoger A. Faulkner while (ret_tidhash != NULL) { 8696eb30ec3SRoger A. Faulkner ret_tidhash_t *next = ret_tidhash->rth_next; 8706eb30ec3SRoger A. Faulkner kmem_free(ret_tidhash->rth_tidhash, 8716eb30ec3SRoger A. Faulkner ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t)); 8726eb30ec3SRoger A. Faulkner kmem_free(ret_tidhash, sizeof (*ret_tidhash)); 8736eb30ec3SRoger A. Faulkner ret_tidhash = next; 8746eb30ec3SRoger A. Faulkner } 87527e6fb21Sdp 8767c478bd9Sstevel@tonic-gate thread_exit(); 8777c478bd9Sstevel@tonic-gate /* NOTREACHED */ 8787c478bd9Sstevel@tonic-gate } 8797c478bd9Sstevel@tonic-gate 8807c478bd9Sstevel@tonic-gate /* 8817c478bd9Sstevel@tonic-gate * Format siginfo structure for wait system calls. 8827c478bd9Sstevel@tonic-gate */ 8837c478bd9Sstevel@tonic-gate void 8847c478bd9Sstevel@tonic-gate winfo(proc_t *pp, k_siginfo_t *ip, int waitflag) 8857c478bd9Sstevel@tonic-gate { 8867c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&pidlock)); 8877c478bd9Sstevel@tonic-gate 8887c478bd9Sstevel@tonic-gate bzero(ip, sizeof (k_siginfo_t)); 8897c478bd9Sstevel@tonic-gate ip->si_signo = SIGCLD; 8907c478bd9Sstevel@tonic-gate ip->si_code = pp->p_wcode; 8917c478bd9Sstevel@tonic-gate ip->si_pid = pp->p_pid; 8927c478bd9Sstevel@tonic-gate ip->si_ctid = PRCTID(pp); 8937c478bd9Sstevel@tonic-gate ip->si_zoneid = pp->p_zone->zone_id; 8947c478bd9Sstevel@tonic-gate ip->si_status = pp->p_wdata; 8957c478bd9Sstevel@tonic-gate ip->si_stime = pp->p_stime; 8967c478bd9Sstevel@tonic-gate ip->si_utime = pp->p_utime; 8977c478bd9Sstevel@tonic-gate 8987c478bd9Sstevel@tonic-gate if (waitflag) { 8997c478bd9Sstevel@tonic-gate pp->p_wcode = 0; 9007c478bd9Sstevel@tonic-gate pp->p_wdata = 0; 9017c478bd9Sstevel@tonic-gate pp->p_pidflag &= ~CLDPEND; 9027c478bd9Sstevel@tonic-gate } 9037c478bd9Sstevel@tonic-gate } 9047c478bd9Sstevel@tonic-gate 9057c478bd9Sstevel@tonic-gate /* 9067c478bd9Sstevel@tonic-gate * Wait system call. 9077c478bd9Sstevel@tonic-gate * Search for a terminated (zombie) child, 9087c478bd9Sstevel@tonic-gate * finally lay it to rest, and collect its status. 9097c478bd9Sstevel@tonic-gate * Look also for stopped children, 9107c478bd9Sstevel@tonic-gate * and pass back status from them. 9117c478bd9Sstevel@tonic-gate */ 9127c478bd9Sstevel@tonic-gate int 9137c478bd9Sstevel@tonic-gate waitid(idtype_t idtype, id_t id, k_siginfo_t *ip, int options) 9147c478bd9Sstevel@tonic-gate { 9157c478bd9Sstevel@tonic-gate int found; 9167c478bd9Sstevel@tonic-gate proc_t *cp, *pp; 9177c478bd9Sstevel@tonic-gate int proc_gone; 9187c478bd9Sstevel@tonic-gate int waitflag = !(options & WNOWAIT); 9197c478bd9Sstevel@tonic-gate 9207c478bd9Sstevel@tonic-gate /* 9217c478bd9Sstevel@tonic-gate * Obsolete flag, defined here only for binary compatibility 9227c478bd9Sstevel@tonic-gate * with old statically linked executables. Delete this when 9237c478bd9Sstevel@tonic-gate * we no longer care about these old and broken applications. 9247c478bd9Sstevel@tonic-gate */ 9257c478bd9Sstevel@tonic-gate #define _WNOCHLD 0400 9267c478bd9Sstevel@tonic-gate options &= ~_WNOCHLD; 9277c478bd9Sstevel@tonic-gate 9287c478bd9Sstevel@tonic-gate if (options == 0 || (options & ~WOPTMASK)) 9297c478bd9Sstevel@tonic-gate return (EINVAL); 9307c478bd9Sstevel@tonic-gate 9317c478bd9Sstevel@tonic-gate switch (idtype) { 9327c478bd9Sstevel@tonic-gate case P_PID: 9337c478bd9Sstevel@tonic-gate case P_PGID: 9347c478bd9Sstevel@tonic-gate if (id < 0 || id >= maxpid) 9357c478bd9Sstevel@tonic-gate return (EINVAL); 9367c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 9377c478bd9Sstevel@tonic-gate case P_ALL: 9387c478bd9Sstevel@tonic-gate break; 9397c478bd9Sstevel@tonic-gate default: 9407c478bd9Sstevel@tonic-gate return (EINVAL); 9417c478bd9Sstevel@tonic-gate } 9427c478bd9Sstevel@tonic-gate 9437c478bd9Sstevel@tonic-gate pp = ttoproc(curthread); 944e44bd21cSsusans 9457c478bd9Sstevel@tonic-gate /* 9467c478bd9Sstevel@tonic-gate * lock parent mutex so that sibling chain can be searched. 9477c478bd9Sstevel@tonic-gate */ 9487c478bd9Sstevel@tonic-gate mutex_enter(&pidlock); 949e44bd21cSsusans 950e44bd21cSsusans /* 951e44bd21cSsusans * if we are only looking for exited processes and child_ns list 952e44bd21cSsusans * is empty no reason to look at all children. 953e44bd21cSsusans */ 954e44bd21cSsusans if (idtype == P_ALL && 955657b1f3dSraf (options & ~WNOWAIT) == (WNOHANG | WEXITED) && 956e44bd21cSsusans pp->p_child_ns == NULL) { 957e44bd21cSsusans if (pp->p_child) { 958e44bd21cSsusans mutex_exit(&pidlock); 959e44bd21cSsusans bzero(ip, sizeof (k_siginfo_t)); 960e44bd21cSsusans return (0); 961e44bd21cSsusans } 962e44bd21cSsusans mutex_exit(&pidlock); 963e44bd21cSsusans return (ECHILD); 964e44bd21cSsusans } 965e44bd21cSsusans 966657b1f3dSraf while (pp->p_child != NULL) { 9677c478bd9Sstevel@tonic-gate 9687c478bd9Sstevel@tonic-gate proc_gone = 0; 9697c478bd9Sstevel@tonic-gate 970657b1f3dSraf for (cp = pp->p_child_ns; cp != NULL; cp = cp->p_sibling_ns) { 971657b1f3dSraf if (idtype != P_PID && (cp->p_pidflag & CLDWAITPID)) 9727c478bd9Sstevel@tonic-gate continue; 973657b1f3dSraf if (idtype == P_PID && id != cp->p_pid) 9747c478bd9Sstevel@tonic-gate continue; 975657b1f3dSraf if (idtype == P_PGID && id != cp->p_pgrp) 976657b1f3dSraf continue; 9777c478bd9Sstevel@tonic-gate 978657b1f3dSraf switch (cp->p_wcode) { 9797c478bd9Sstevel@tonic-gate 9807c478bd9Sstevel@tonic-gate case CLD_TRAPPED: 9817c478bd9Sstevel@tonic-gate case CLD_STOPPED: 9827c478bd9Sstevel@tonic-gate case CLD_CONTINUED: 9837c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, 9847c478bd9Sstevel@tonic-gate "waitid: wrong state %d on the p_newstate" 985657b1f3dSraf " list", cp->p_wcode); 9867c478bd9Sstevel@tonic-gate break; 9877c478bd9Sstevel@tonic-gate 9887c478bd9Sstevel@tonic-gate case CLD_EXITED: 9897c478bd9Sstevel@tonic-gate case CLD_DUMPED: 9907c478bd9Sstevel@tonic-gate case CLD_KILLED: 9917c478bd9Sstevel@tonic-gate if (!(options & WEXITED)) { 9927c478bd9Sstevel@tonic-gate /* 9937c478bd9Sstevel@tonic-gate * Count how many are already gone 9947c478bd9Sstevel@tonic-gate * for good. 9957c478bd9Sstevel@tonic-gate */ 9967c478bd9Sstevel@tonic-gate proc_gone++; 9977c478bd9Sstevel@tonic-gate break; 9987c478bd9Sstevel@tonic-gate } 9997c478bd9Sstevel@tonic-gate if (!waitflag) { 1000657b1f3dSraf winfo(cp, ip, 0); 10017c478bd9Sstevel@tonic-gate } else { 1002657b1f3dSraf winfo(cp, ip, 1); 1003657b1f3dSraf freeproc(cp); 10047c478bd9Sstevel@tonic-gate } 10057c478bd9Sstevel@tonic-gate mutex_exit(&pidlock); 10067c478bd9Sstevel@tonic-gate if (waitflag) { /* accept SIGCLD */ 10077c478bd9Sstevel@tonic-gate sigcld_delete(ip); 10087c478bd9Sstevel@tonic-gate sigcld_repost(); 10097c478bd9Sstevel@tonic-gate } 10107c478bd9Sstevel@tonic-gate return (0); 10117c478bd9Sstevel@tonic-gate } 10127c478bd9Sstevel@tonic-gate 10137c478bd9Sstevel@tonic-gate if (idtype == P_PID) 10147c478bd9Sstevel@tonic-gate break; 10157c478bd9Sstevel@tonic-gate } 10167c478bd9Sstevel@tonic-gate 10177c478bd9Sstevel@tonic-gate /* 10187c478bd9Sstevel@tonic-gate * Wow! None of the threads on the p_sibling_ns list were 10197c478bd9Sstevel@tonic-gate * interesting threads. Check all the kids! 10207c478bd9Sstevel@tonic-gate */ 10217c478bd9Sstevel@tonic-gate found = 0; 1022657b1f3dSraf for (cp = pp->p_child; cp != NULL; cp = cp->p_sibling) { 1023657b1f3dSraf if (idtype == P_PID && id != cp->p_pid) 10247c478bd9Sstevel@tonic-gate continue; 1025657b1f3dSraf if (idtype == P_PGID && id != cp->p_pgrp) 10267c478bd9Sstevel@tonic-gate continue; 10277c478bd9Sstevel@tonic-gate 10287c478bd9Sstevel@tonic-gate switch (cp->p_wcode) { 10297c478bd9Sstevel@tonic-gate case CLD_TRAPPED: 10307c478bd9Sstevel@tonic-gate if (!(options & WTRAPPED)) 10317c478bd9Sstevel@tonic-gate break; 10327c478bd9Sstevel@tonic-gate winfo(cp, ip, waitflag); 10337c478bd9Sstevel@tonic-gate mutex_exit(&pidlock); 10347c478bd9Sstevel@tonic-gate if (waitflag) { /* accept SIGCLD */ 10357c478bd9Sstevel@tonic-gate sigcld_delete(ip); 10367c478bd9Sstevel@tonic-gate sigcld_repost(); 10377c478bd9Sstevel@tonic-gate } 10387c478bd9Sstevel@tonic-gate return (0); 10397c478bd9Sstevel@tonic-gate 10407c478bd9Sstevel@tonic-gate case CLD_STOPPED: 10417c478bd9Sstevel@tonic-gate if (!(options & WSTOPPED)) 10427c478bd9Sstevel@tonic-gate break; 10437c478bd9Sstevel@tonic-gate /* Is it still stopped? */ 10447c478bd9Sstevel@tonic-gate mutex_enter(&cp->p_lock); 10457c478bd9Sstevel@tonic-gate if (!jobstopped(cp)) { 10467c478bd9Sstevel@tonic-gate mutex_exit(&cp->p_lock); 10477c478bd9Sstevel@tonic-gate break; 10487c478bd9Sstevel@tonic-gate } 10497c478bd9Sstevel@tonic-gate mutex_exit(&cp->p_lock); 10507c478bd9Sstevel@tonic-gate winfo(cp, ip, waitflag); 10517c478bd9Sstevel@tonic-gate mutex_exit(&pidlock); 10527c478bd9Sstevel@tonic-gate if (waitflag) { /* accept SIGCLD */ 10537c478bd9Sstevel@tonic-gate sigcld_delete(ip); 10547c478bd9Sstevel@tonic-gate sigcld_repost(); 10557c478bd9Sstevel@tonic-gate } 10567c478bd9Sstevel@tonic-gate return (0); 10577c478bd9Sstevel@tonic-gate 10587c478bd9Sstevel@tonic-gate case CLD_CONTINUED: 10597c478bd9Sstevel@tonic-gate if (!(options & WCONTINUED)) 10607c478bd9Sstevel@tonic-gate break; 10617c478bd9Sstevel@tonic-gate winfo(cp, ip, waitflag); 10627c478bd9Sstevel@tonic-gate mutex_exit(&pidlock); 10637c478bd9Sstevel@tonic-gate if (waitflag) { /* accept SIGCLD */ 10647c478bd9Sstevel@tonic-gate sigcld_delete(ip); 10657c478bd9Sstevel@tonic-gate sigcld_repost(); 10667c478bd9Sstevel@tonic-gate } 10677c478bd9Sstevel@tonic-gate return (0); 10687c478bd9Sstevel@tonic-gate 10697c478bd9Sstevel@tonic-gate case CLD_EXITED: 10707c478bd9Sstevel@tonic-gate case CLD_DUMPED: 10717c478bd9Sstevel@tonic-gate case CLD_KILLED: 1072657b1f3dSraf if (idtype != P_PID && 1073657b1f3dSraf (cp->p_pidflag & CLDWAITPID)) 1074657b1f3dSraf continue; 10757c478bd9Sstevel@tonic-gate /* 10767c478bd9Sstevel@tonic-gate * Don't complain if a process was found in 10777c478bd9Sstevel@tonic-gate * the first loop but we broke out of the loop 10787c478bd9Sstevel@tonic-gate * because of the arguments passed to us. 10797c478bd9Sstevel@tonic-gate */ 10807c478bd9Sstevel@tonic-gate if (proc_gone == 0) { 10817c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, 10827c478bd9Sstevel@tonic-gate "waitid: wrong state on the" 10837c478bd9Sstevel@tonic-gate " p_child list"); 10847c478bd9Sstevel@tonic-gate } else { 10857c478bd9Sstevel@tonic-gate break; 10867c478bd9Sstevel@tonic-gate } 10877c478bd9Sstevel@tonic-gate } 10887c478bd9Sstevel@tonic-gate 1089657b1f3dSraf found++; 1090657b1f3dSraf 10917c478bd9Sstevel@tonic-gate if (idtype == P_PID) 10927c478bd9Sstevel@tonic-gate break; 1093657b1f3dSraf } 10947c478bd9Sstevel@tonic-gate 10957c478bd9Sstevel@tonic-gate /* 10967c478bd9Sstevel@tonic-gate * If we found no interesting processes at all, 10977c478bd9Sstevel@tonic-gate * break out and return ECHILD. 10987c478bd9Sstevel@tonic-gate */ 10997c478bd9Sstevel@tonic-gate if (found + proc_gone == 0) 11007c478bd9Sstevel@tonic-gate break; 11017c478bd9Sstevel@tonic-gate 11027c478bd9Sstevel@tonic-gate if (options & WNOHANG) { 1103657b1f3dSraf mutex_exit(&pidlock); 11047c478bd9Sstevel@tonic-gate bzero(ip, sizeof (k_siginfo_t)); 11057c478bd9Sstevel@tonic-gate /* 11067c478bd9Sstevel@tonic-gate * We should set ip->si_signo = SIGCLD, 11077c478bd9Sstevel@tonic-gate * but there is an SVVS test that expects 11087c478bd9Sstevel@tonic-gate * ip->si_signo to be zero in this case. 11097c478bd9Sstevel@tonic-gate */ 11107c478bd9Sstevel@tonic-gate return (0); 11117c478bd9Sstevel@tonic-gate } 11127c478bd9Sstevel@tonic-gate 11137c478bd9Sstevel@tonic-gate /* 11147c478bd9Sstevel@tonic-gate * If we found no processes of interest that could 11157c478bd9Sstevel@tonic-gate * change state while we wait, we don't wait at all. 11167c478bd9Sstevel@tonic-gate * Get out with ECHILD according to SVID. 11177c478bd9Sstevel@tonic-gate */ 11187c478bd9Sstevel@tonic-gate if (found == proc_gone) 11197c478bd9Sstevel@tonic-gate break; 11207c478bd9Sstevel@tonic-gate 11217c478bd9Sstevel@tonic-gate if (!cv_wait_sig_swap(&pp->p_cv, &pidlock)) { 11227c478bd9Sstevel@tonic-gate mutex_exit(&pidlock); 11237c478bd9Sstevel@tonic-gate return (EINTR); 11247c478bd9Sstevel@tonic-gate } 11257c478bd9Sstevel@tonic-gate } 11267c478bd9Sstevel@tonic-gate mutex_exit(&pidlock); 11277c478bd9Sstevel@tonic-gate return (ECHILD); 11287c478bd9Sstevel@tonic-gate } 11297c478bd9Sstevel@tonic-gate 11307c478bd9Sstevel@tonic-gate int 11317c478bd9Sstevel@tonic-gate waitsys(idtype_t idtype, id_t id, siginfo_t *infop, int options) 11327c478bd9Sstevel@tonic-gate { 11337c478bd9Sstevel@tonic-gate int error; 11347c478bd9Sstevel@tonic-gate k_siginfo_t info; 11357c478bd9Sstevel@tonic-gate 11367c478bd9Sstevel@tonic-gate if (error = waitid(idtype, id, &info, options)) 11377c478bd9Sstevel@tonic-gate return (set_errno(error)); 11387c478bd9Sstevel@tonic-gate if (copyout(&info, infop, sizeof (k_siginfo_t))) 11397c478bd9Sstevel@tonic-gate return (set_errno(EFAULT)); 11407c478bd9Sstevel@tonic-gate return (0); 11417c478bd9Sstevel@tonic-gate } 11427c478bd9Sstevel@tonic-gate 11437c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL 11447c478bd9Sstevel@tonic-gate 11457c478bd9Sstevel@tonic-gate int 11467c478bd9Sstevel@tonic-gate waitsys32(idtype_t idtype, id_t id, siginfo_t *infop, int options) 11477c478bd9Sstevel@tonic-gate { 11487c478bd9Sstevel@tonic-gate int error; 11497c478bd9Sstevel@tonic-gate k_siginfo_t info; 11507c478bd9Sstevel@tonic-gate siginfo32_t info32; 11517c478bd9Sstevel@tonic-gate 11527c478bd9Sstevel@tonic-gate if (error = waitid(idtype, id, &info, options)) 11537c478bd9Sstevel@tonic-gate return (set_errno(error)); 11547c478bd9Sstevel@tonic-gate siginfo_kto32(&info, &info32); 11557c478bd9Sstevel@tonic-gate if (copyout(&info32, infop, sizeof (info32))) 11567c478bd9Sstevel@tonic-gate return (set_errno(EFAULT)); 11577c478bd9Sstevel@tonic-gate return (0); 11587c478bd9Sstevel@tonic-gate } 11597c478bd9Sstevel@tonic-gate 11607c478bd9Sstevel@tonic-gate #endif /* _SYSCALL32_IMPL */ 11617c478bd9Sstevel@tonic-gate 11627c478bd9Sstevel@tonic-gate void 11637c478bd9Sstevel@tonic-gate proc_detach(proc_t *p) 11647c478bd9Sstevel@tonic-gate { 11657c478bd9Sstevel@tonic-gate proc_t *q; 11667c478bd9Sstevel@tonic-gate 11677c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&pidlock)); 11687c478bd9Sstevel@tonic-gate 11697c478bd9Sstevel@tonic-gate q = p->p_parent; 11707c478bd9Sstevel@tonic-gate ASSERT(q != NULL); 11717c478bd9Sstevel@tonic-gate 11727c478bd9Sstevel@tonic-gate /* 11737c478bd9Sstevel@tonic-gate * Take it off the newstate list of its parent 11747c478bd9Sstevel@tonic-gate */ 11757c478bd9Sstevel@tonic-gate delete_ns(q, p); 11767c478bd9Sstevel@tonic-gate 11777c478bd9Sstevel@tonic-gate if (q->p_child == p) { 11787c478bd9Sstevel@tonic-gate q->p_child = p->p_sibling; 11797c478bd9Sstevel@tonic-gate /* 11807c478bd9Sstevel@tonic-gate * If the parent has no children, it better not 11817c478bd9Sstevel@tonic-gate * have any with new states either! 11827c478bd9Sstevel@tonic-gate */ 11837c478bd9Sstevel@tonic-gate ASSERT(q->p_child ? 1 : q->p_child_ns == NULL); 11847c478bd9Sstevel@tonic-gate } 11857c478bd9Sstevel@tonic-gate 11867c478bd9Sstevel@tonic-gate if (p->p_sibling) { 11877c478bd9Sstevel@tonic-gate p->p_sibling->p_psibling = p->p_psibling; 11887c478bd9Sstevel@tonic-gate } 11897c478bd9Sstevel@tonic-gate 11907c478bd9Sstevel@tonic-gate if (p->p_psibling) { 11917c478bd9Sstevel@tonic-gate p->p_psibling->p_sibling = p->p_sibling; 11927c478bd9Sstevel@tonic-gate } 11937c478bd9Sstevel@tonic-gate } 11947c478bd9Sstevel@tonic-gate 11957c478bd9Sstevel@tonic-gate /* 11967c478bd9Sstevel@tonic-gate * Remove zombie children from the process table. 11977c478bd9Sstevel@tonic-gate */ 11987c478bd9Sstevel@tonic-gate void 11997c478bd9Sstevel@tonic-gate freeproc(proc_t *p) 12007c478bd9Sstevel@tonic-gate { 12017c478bd9Sstevel@tonic-gate proc_t *q; 1202ff19e029SMenno Lageman task_t *tk; 12037c478bd9Sstevel@tonic-gate 12047c478bd9Sstevel@tonic-gate ASSERT(p->p_stat == SZOMB); 12057c478bd9Sstevel@tonic-gate ASSERT(p->p_tlist == NULL); 12067c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&pidlock)); 12077c478bd9Sstevel@tonic-gate 12087c478bd9Sstevel@tonic-gate sigdelq(p, NULL, 0); 12097c478bd9Sstevel@tonic-gate if (p->p_killsqp) { 12107c478bd9Sstevel@tonic-gate siginfofree(p->p_killsqp); 12117c478bd9Sstevel@tonic-gate p->p_killsqp = NULL; 12127c478bd9Sstevel@tonic-gate } 12137c478bd9Sstevel@tonic-gate 12147c478bd9Sstevel@tonic-gate prfree(p); /* inform /proc */ 12157c478bd9Sstevel@tonic-gate 12167c478bd9Sstevel@tonic-gate /* 12177c478bd9Sstevel@tonic-gate * Don't free the init processes. 12187c478bd9Sstevel@tonic-gate * Other dying processes will access it. 12197c478bd9Sstevel@tonic-gate */ 12207c478bd9Sstevel@tonic-gate if (p == proc_init) 12217c478bd9Sstevel@tonic-gate return; 12227c478bd9Sstevel@tonic-gate 12237c478bd9Sstevel@tonic-gate 12247c478bd9Sstevel@tonic-gate /* 12257c478bd9Sstevel@tonic-gate * We wait until now to free the cred structure because a 12267c478bd9Sstevel@tonic-gate * zombie process's credentials may be examined by /proc. 12277c478bd9Sstevel@tonic-gate * No cred locking needed because there are no threads at this point. 12287c478bd9Sstevel@tonic-gate */ 12297c478bd9Sstevel@tonic-gate upcount_dec(crgetruid(p->p_cred), crgetzoneid(p->p_cred)); 12307c478bd9Sstevel@tonic-gate crfree(p->p_cred); 12317c478bd9Sstevel@tonic-gate if (p->p_corefile != NULL) { 12327c478bd9Sstevel@tonic-gate corectl_path_rele(p->p_corefile); 12337c478bd9Sstevel@tonic-gate p->p_corefile = NULL; 12347c478bd9Sstevel@tonic-gate } 12357c478bd9Sstevel@tonic-gate if (p->p_content != NULL) { 12367c478bd9Sstevel@tonic-gate corectl_content_rele(p->p_content); 12377c478bd9Sstevel@tonic-gate p->p_content = NULL; 12387c478bd9Sstevel@tonic-gate } 12397c478bd9Sstevel@tonic-gate 12407c478bd9Sstevel@tonic-gate if (p->p_nextofkin && !((p->p_nextofkin->p_flag & SNOWAIT) || 12417c478bd9Sstevel@tonic-gate (PTOU(p->p_nextofkin)->u_signal[SIGCLD - 1] == SIG_IGN))) { 12427c478bd9Sstevel@tonic-gate /* 12437c478bd9Sstevel@tonic-gate * This should still do the right thing since p_utime/stime 12447c478bd9Sstevel@tonic-gate * get set to the correct value on process exit, so it 12457c478bd9Sstevel@tonic-gate * should get properly updated 12467c478bd9Sstevel@tonic-gate */ 12477c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cutime += p->p_utime; 12487c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cstime += p->p_stime; 12497c478bd9Sstevel@tonic-gate 12507c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_USER] += p->p_acct[LMS_USER]; 12517c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_SYSTEM] += p->p_acct[LMS_SYSTEM]; 12527c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_TRAP] += p->p_acct[LMS_TRAP]; 12537c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_TFAULT] += p->p_acct[LMS_TFAULT]; 12547c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_DFAULT] += p->p_acct[LMS_DFAULT]; 12557c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_KFAULT] += p->p_acct[LMS_KFAULT]; 12567c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_USER_LOCK] 12577c478bd9Sstevel@tonic-gate += p->p_acct[LMS_USER_LOCK]; 12587c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_SLEEP] += p->p_acct[LMS_SLEEP]; 12597c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_WAIT_CPU] 12607c478bd9Sstevel@tonic-gate += p->p_acct[LMS_WAIT_CPU]; 12617c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cacct[LMS_STOPPED] += p->p_acct[LMS_STOPPED]; 12627c478bd9Sstevel@tonic-gate 12637c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.minflt += p->p_ru.minflt; 12647c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.majflt += p->p_ru.majflt; 12657c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.nswap += p->p_ru.nswap; 12667c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.inblock += p->p_ru.inblock; 12677c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.oublock += p->p_ru.oublock; 12687c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.msgsnd += p->p_ru.msgsnd; 12697c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.msgrcv += p->p_ru.msgrcv; 12707c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.nsignals += p->p_ru.nsignals; 12717c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.nvcsw += p->p_ru.nvcsw; 12727c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.nivcsw += p->p_ru.nivcsw; 12737c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.sysc += p->p_ru.sysc; 12747c478bd9Sstevel@tonic-gate p->p_nextofkin->p_cru.ioch += p->p_ru.ioch; 12757c478bd9Sstevel@tonic-gate 12767c478bd9Sstevel@tonic-gate } 12777c478bd9Sstevel@tonic-gate 12787c478bd9Sstevel@tonic-gate q = p->p_nextofkin; 12797c478bd9Sstevel@tonic-gate if (q && q->p_orphan == p) 12807c478bd9Sstevel@tonic-gate q->p_orphan = p->p_nextorph; 12817c478bd9Sstevel@tonic-gate else if (q) { 12827c478bd9Sstevel@tonic-gate for (q = q->p_orphan; q; q = q->p_nextorph) 12837c478bd9Sstevel@tonic-gate if (q->p_nextorph == p) 12847c478bd9Sstevel@tonic-gate break; 12857c478bd9Sstevel@tonic-gate ASSERT(q && q->p_nextorph == p); 12867c478bd9Sstevel@tonic-gate q->p_nextorph = p->p_nextorph; 12877c478bd9Sstevel@tonic-gate } 12887c478bd9Sstevel@tonic-gate 1289ff19e029SMenno Lageman /* 1290ff19e029SMenno Lageman * The process table slot is being freed, so it is now safe to give up 1291ff19e029SMenno Lageman * task and project membership. 1292ff19e029SMenno Lageman */ 1293ff19e029SMenno Lageman mutex_enter(&p->p_lock); 1294ff19e029SMenno Lageman tk = p->p_task; 1295ff19e029SMenno Lageman task_detach(p); 1296ff19e029SMenno Lageman mutex_exit(&p->p_lock); 1297ff19e029SMenno Lageman 12987c478bd9Sstevel@tonic-gate proc_detach(p); 1299*4bcbe6e7SMenno Lageman pid_exit(p, tk); /* frees pid and proc structure */ 1300ff19e029SMenno Lageman 1301ff19e029SMenno Lageman task_rele(tk); 13027c478bd9Sstevel@tonic-gate } 13037c478bd9Sstevel@tonic-gate 13047c478bd9Sstevel@tonic-gate /* 13057c478bd9Sstevel@tonic-gate * Delete process "child" from the newstate list of process "parent" 13067c478bd9Sstevel@tonic-gate */ 13077c478bd9Sstevel@tonic-gate void 13087c478bd9Sstevel@tonic-gate delete_ns(proc_t *parent, proc_t *child) 13097c478bd9Sstevel@tonic-gate { 13107c478bd9Sstevel@tonic-gate proc_t **ns; 13117c478bd9Sstevel@tonic-gate 13127c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&pidlock)); 13137c478bd9Sstevel@tonic-gate ASSERT(child->p_parent == parent); 13147c478bd9Sstevel@tonic-gate for (ns = &parent->p_child_ns; *ns != NULL; ns = &(*ns)->p_sibling_ns) { 13157c478bd9Sstevel@tonic-gate if (*ns == child) { 13167c478bd9Sstevel@tonic-gate 13177c478bd9Sstevel@tonic-gate ASSERT((*ns)->p_parent == parent); 13187c478bd9Sstevel@tonic-gate 13197c478bd9Sstevel@tonic-gate *ns = child->p_sibling_ns; 13207c478bd9Sstevel@tonic-gate child->p_sibling_ns = NULL; 13217c478bd9Sstevel@tonic-gate return; 13227c478bd9Sstevel@tonic-gate } 13237c478bd9Sstevel@tonic-gate } 13247c478bd9Sstevel@tonic-gate } 13257c478bd9Sstevel@tonic-gate 13267c478bd9Sstevel@tonic-gate /* 13277c478bd9Sstevel@tonic-gate * Add process "child" to the new state list of process "parent" 13287c478bd9Sstevel@tonic-gate */ 13297c478bd9Sstevel@tonic-gate void 13307c478bd9Sstevel@tonic-gate add_ns(proc_t *parent, proc_t *child) 13317c478bd9Sstevel@tonic-gate { 13327c478bd9Sstevel@tonic-gate ASSERT(child->p_sibling_ns == NULL); 13337c478bd9Sstevel@tonic-gate child->p_sibling_ns = parent->p_child_ns; 13347c478bd9Sstevel@tonic-gate parent->p_child_ns = child; 13357c478bd9Sstevel@tonic-gate } 1336