xref: /titanic_51/usr/src/uts/common/os/exit.c (revision 0baeff3d96eae184e775c1064f1836090446a7bf)
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
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
2297eda132Sraf 
237c478bd9Sstevel@tonic-gate /*
24*0baeff3dSrab  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
257c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
267c478bd9Sstevel@tonic-gate  */
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"	/* from SVr4.0 1.74 */
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #include <sys/types.h>
337c478bd9Sstevel@tonic-gate #include <sys/param.h>
347c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
357c478bd9Sstevel@tonic-gate #include <sys/systm.h>
367c478bd9Sstevel@tonic-gate #include <sys/cred.h>
377c478bd9Sstevel@tonic-gate #include <sys/user.h>
387c478bd9Sstevel@tonic-gate #include <sys/errno.h>
397c478bd9Sstevel@tonic-gate #include <sys/proc.h>
407c478bd9Sstevel@tonic-gate #include <sys/ucontext.h>
417c478bd9Sstevel@tonic-gate #include <sys/procfs.h>
427c478bd9Sstevel@tonic-gate #include <sys/vnode.h>
437c478bd9Sstevel@tonic-gate #include <sys/acct.h>
447c478bd9Sstevel@tonic-gate #include <sys/var.h>
457c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
467c478bd9Sstevel@tonic-gate #include <sys/debug.h>
477c478bd9Sstevel@tonic-gate #include <sys/wait.h>
487c478bd9Sstevel@tonic-gate #include <sys/siginfo.h>
497c478bd9Sstevel@tonic-gate #include <sys/procset.h>
507c478bd9Sstevel@tonic-gate #include <sys/class.h>
517c478bd9Sstevel@tonic-gate #include <sys/file.h>
527c478bd9Sstevel@tonic-gate #include <sys/session.h>
537c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
547c478bd9Sstevel@tonic-gate #include <sys/vtrace.h>
557c478bd9Sstevel@tonic-gate #include <sys/prsystm.h>
567c478bd9Sstevel@tonic-gate #include <sys/ipc.h>
577c478bd9Sstevel@tonic-gate #include <sys/sem_impl.h>
587c478bd9Sstevel@tonic-gate #include <c2/audit.h>
597c478bd9Sstevel@tonic-gate #include <sys/aio_impl.h>
607c478bd9Sstevel@tonic-gate #include <vm/as.h>
617c478bd9Sstevel@tonic-gate #include <sys/poll.h>
627c478bd9Sstevel@tonic-gate #include <sys/door.h>
637c478bd9Sstevel@tonic-gate #include <sys/lwpchan_impl.h>
647c478bd9Sstevel@tonic-gate #include <sys/utrap.h>
657c478bd9Sstevel@tonic-gate #include <sys/task.h>
667c478bd9Sstevel@tonic-gate #include <sys/exacct.h>
677c478bd9Sstevel@tonic-gate #include <sys/cyclic.h>
687c478bd9Sstevel@tonic-gate #include <sys/schedctl.h>
697c478bd9Sstevel@tonic-gate #include <sys/rctl.h>
707c478bd9Sstevel@tonic-gate #include <sys/contract_impl.h>
717c478bd9Sstevel@tonic-gate #include <sys/contract/process_impl.h>
727c478bd9Sstevel@tonic-gate #include <sys/list.h>
737c478bd9Sstevel@tonic-gate #include <sys/dtrace.h>
747c478bd9Sstevel@tonic-gate #include <sys/pool.h>
757c478bd9Sstevel@tonic-gate #include <sys/sdt.h>
767c478bd9Sstevel@tonic-gate #include <sys/corectl.h>
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate /*
797c478bd9Sstevel@tonic-gate  * convert code/data pair into old style wait status
807c478bd9Sstevel@tonic-gate  */
817c478bd9Sstevel@tonic-gate int
827c478bd9Sstevel@tonic-gate wstat(int code, int data)
837c478bd9Sstevel@tonic-gate {
847c478bd9Sstevel@tonic-gate 	int stat = (data & 0377);
857c478bd9Sstevel@tonic-gate 
867c478bd9Sstevel@tonic-gate 	switch (code) {
877c478bd9Sstevel@tonic-gate 	case CLD_EXITED:
887c478bd9Sstevel@tonic-gate 		stat <<= 8;
897c478bd9Sstevel@tonic-gate 		break;
907c478bd9Sstevel@tonic-gate 	case CLD_DUMPED:
917c478bd9Sstevel@tonic-gate 		stat |= WCOREFLG;
927c478bd9Sstevel@tonic-gate 		break;
937c478bd9Sstevel@tonic-gate 	case CLD_KILLED:
947c478bd9Sstevel@tonic-gate 		break;
957c478bd9Sstevel@tonic-gate 	case CLD_TRAPPED:
967c478bd9Sstevel@tonic-gate 	case CLD_STOPPED:
977c478bd9Sstevel@tonic-gate 		stat <<= 8;
987c478bd9Sstevel@tonic-gate 		stat |= WSTOPFLG;
997c478bd9Sstevel@tonic-gate 		break;
1007c478bd9Sstevel@tonic-gate 	case CLD_CONTINUED:
1017c478bd9Sstevel@tonic-gate 		stat = WCONTFLG;
1027c478bd9Sstevel@tonic-gate 		break;
1037c478bd9Sstevel@tonic-gate 	default:
1047c478bd9Sstevel@tonic-gate 		cmn_err(CE_PANIC, "wstat: bad code");
1057c478bd9Sstevel@tonic-gate 		/* NOTREACHED */
1067c478bd9Sstevel@tonic-gate 	}
1077c478bd9Sstevel@tonic-gate 	return (stat);
1087c478bd9Sstevel@tonic-gate }
1097c478bd9Sstevel@tonic-gate 
1107c478bd9Sstevel@tonic-gate static char *
1117c478bd9Sstevel@tonic-gate exit_reason(char *buf, size_t bufsz, int what, int why)
1127c478bd9Sstevel@tonic-gate {
1137c478bd9Sstevel@tonic-gate 	switch (why) {
1147c478bd9Sstevel@tonic-gate 	case CLD_EXITED:
1157c478bd9Sstevel@tonic-gate 		(void) snprintf(buf, bufsz, "exited with status %d", what);
1167c478bd9Sstevel@tonic-gate 		break;
1177c478bd9Sstevel@tonic-gate 	case CLD_KILLED:
1187c478bd9Sstevel@tonic-gate 		(void) snprintf(buf, bufsz, "exited on fatal signal %d", what);
1197c478bd9Sstevel@tonic-gate 		break;
1207c478bd9Sstevel@tonic-gate 	case CLD_DUMPED:
1217c478bd9Sstevel@tonic-gate 		(void) snprintf(buf, bufsz, "core dumped on signal %d", what);
1227c478bd9Sstevel@tonic-gate 		break;
1237c478bd9Sstevel@tonic-gate 	default:
1247c478bd9Sstevel@tonic-gate 		(void) snprintf(buf, bufsz, "encountered unknown error "
1257c478bd9Sstevel@tonic-gate 		    "(%d, %d)", why, what);
1267c478bd9Sstevel@tonic-gate 		break;
1277c478bd9Sstevel@tonic-gate 	}
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate 	return (buf);
1307c478bd9Sstevel@tonic-gate }
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate /*
1337c478bd9Sstevel@tonic-gate  * exit system call: pass back caller's arg.
1347c478bd9Sstevel@tonic-gate  */
1357c478bd9Sstevel@tonic-gate void
1367c478bd9Sstevel@tonic-gate rexit(int rval)
1377c478bd9Sstevel@tonic-gate {
1387c478bd9Sstevel@tonic-gate 	exit(CLD_EXITED, rval);
1397c478bd9Sstevel@tonic-gate }
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate /*
1427c478bd9Sstevel@tonic-gate  * Called by proc_exit() when a zone's init exits, presumably because
1437c478bd9Sstevel@tonic-gate  * it failed.  As long as the given zone is still in the "running"
1447c478bd9Sstevel@tonic-gate  * state, we will re-exec() init, but first we need to reset things
1457c478bd9Sstevel@tonic-gate  * which are usually inherited across exec() but will break init's
1467c478bd9Sstevel@tonic-gate  * assumption that it is being exec()'d from a virgin process.  Most
1477c478bd9Sstevel@tonic-gate  * importantly this includes closing all file descriptors (exec only
1487c478bd9Sstevel@tonic-gate  * closes those marked close-on-exec) and resetting signals (exec only
1497c478bd9Sstevel@tonic-gate  * resets handled signals, and we need to clear any signals which
1507c478bd9Sstevel@tonic-gate  * killed init).  Anything else that exec(2) says would be inherited,
1517c478bd9Sstevel@tonic-gate  * but would affect the execution of init, needs to be reset.
1527c478bd9Sstevel@tonic-gate  */
1537c478bd9Sstevel@tonic-gate static int
1547c478bd9Sstevel@tonic-gate restart_init(int what, int why)
1557c478bd9Sstevel@tonic-gate {
1567c478bd9Sstevel@tonic-gate 	kthread_t *t = curthread;
1577c478bd9Sstevel@tonic-gate 	klwp_t *lwp = ttolwp(t);
1587c478bd9Sstevel@tonic-gate 	proc_t *p = ttoproc(t);
1597c478bd9Sstevel@tonic-gate 	user_t *up = PTOU(p);
1607c478bd9Sstevel@tonic-gate 
1617c478bd9Sstevel@tonic-gate 	vnode_t *oldcd, *oldrd;
1627c478bd9Sstevel@tonic-gate 	sess_t *sp;
1637c478bd9Sstevel@tonic-gate 	int i, err;
1647c478bd9Sstevel@tonic-gate 	char reason_buf[64];
1657c478bd9Sstevel@tonic-gate 	const char *ipath;
1667c478bd9Sstevel@tonic-gate 
1677c478bd9Sstevel@tonic-gate 	/*
1687c478bd9Sstevel@tonic-gate 	 * Let zone admin (and global zone admin if this is for a non-global
1697c478bd9Sstevel@tonic-gate 	 * zone) know that init has failed and will be restarted.
1707c478bd9Sstevel@tonic-gate 	 */
1717c478bd9Sstevel@tonic-gate 	zcmn_err(p->p_zone->zone_id, CE_WARN,
1727c478bd9Sstevel@tonic-gate 	    "init(1M) %s: restarting automatically",
1737c478bd9Sstevel@tonic-gate 	    exit_reason(reason_buf, sizeof (reason_buf), what, why));
1747c478bd9Sstevel@tonic-gate 
1757c478bd9Sstevel@tonic-gate 	if (!INGLOBALZONE(p)) {
1767c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "init(1M) for zone %s (pid %d) %s: "
1777c478bd9Sstevel@tonic-gate 		    "restarting automatically",
1787c478bd9Sstevel@tonic-gate 		    p->p_zone->zone_name, p->p_pid, reason_buf);
1797c478bd9Sstevel@tonic-gate 	}
1807c478bd9Sstevel@tonic-gate 
1817c478bd9Sstevel@tonic-gate 	/*
1827c478bd9Sstevel@tonic-gate 	 * Remove any fpollinfo_t's for this (last) thread from our file
1837c478bd9Sstevel@tonic-gate 	 * descriptors so closeall() can ASSERT() that they're all gone.
1847c478bd9Sstevel@tonic-gate 	 * Then close all open file descriptors in the process.
1857c478bd9Sstevel@tonic-gate 	 */
1867c478bd9Sstevel@tonic-gate 	pollcleanup();
1877c478bd9Sstevel@tonic-gate 	closeall(P_FINFO(p));
1887c478bd9Sstevel@tonic-gate 
1897c478bd9Sstevel@tonic-gate 	/*
1907c478bd9Sstevel@tonic-gate 	 * Grab p_lock and begin clearing miscellaneous global process
1917c478bd9Sstevel@tonic-gate 	 * state that needs to be reset before we exec the new init(1M).
1927c478bd9Sstevel@tonic-gate 	 */
1937c478bd9Sstevel@tonic-gate 
1947c478bd9Sstevel@tonic-gate 	mutex_enter(&p->p_lock);
19597eda132Sraf 	prbarrier(p);
1967c478bd9Sstevel@tonic-gate 
19797eda132Sraf 	p->p_flag &= ~(SKILLED | SEXTKILLED | SEXITING | SDOCORE);
1987c478bd9Sstevel@tonic-gate 	up->u_cmask = CMASK;
1997c478bd9Sstevel@tonic-gate 
2007c478bd9Sstevel@tonic-gate 	sigemptyset(&t->t_hold);
2017c478bd9Sstevel@tonic-gate 	sigemptyset(&t->t_sig);
2027c478bd9Sstevel@tonic-gate 	sigemptyset(&t->t_extsig);
2037c478bd9Sstevel@tonic-gate 
2047c478bd9Sstevel@tonic-gate 	sigemptyset(&p->p_sig);
2057c478bd9Sstevel@tonic-gate 	sigemptyset(&p->p_extsig);
2067c478bd9Sstevel@tonic-gate 
2077c478bd9Sstevel@tonic-gate 	sigdelq(p, t, 0);
2087c478bd9Sstevel@tonic-gate 	sigdelq(p, NULL, 0);
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate 	if (p->p_killsqp) {
2117c478bd9Sstevel@tonic-gate 		siginfofree(p->p_killsqp);
2127c478bd9Sstevel@tonic-gate 		p->p_killsqp = NULL;
2137c478bd9Sstevel@tonic-gate 	}
2147c478bd9Sstevel@tonic-gate 
2157c478bd9Sstevel@tonic-gate 	/*
2167c478bd9Sstevel@tonic-gate 	 * Reset any signals that are ignored back to the default disposition.
2177c478bd9Sstevel@tonic-gate 	 * Other u_signal members will be cleared when exec calls sigdefault().
2187c478bd9Sstevel@tonic-gate 	 */
2197c478bd9Sstevel@tonic-gate 	for (i = 1; i < NSIG; i++) {
2207c478bd9Sstevel@tonic-gate 		if (up->u_signal[i - 1] == SIG_IGN) {
2217c478bd9Sstevel@tonic-gate 			up->u_signal[i - 1] = SIG_DFL;
2227c478bd9Sstevel@tonic-gate 			sigemptyset(&up->u_sigmask[i - 1]);
2237c478bd9Sstevel@tonic-gate 		}
2247c478bd9Sstevel@tonic-gate 	}
2257c478bd9Sstevel@tonic-gate 
2267c478bd9Sstevel@tonic-gate 	/*
2277c478bd9Sstevel@tonic-gate 	 * Clear the current signal, any signal info associated with it, and
2287c478bd9Sstevel@tonic-gate 	 * any signal information from contracts and/or contract templates.
2297c478bd9Sstevel@tonic-gate 	 */
2307c478bd9Sstevel@tonic-gate 	lwp->lwp_cursig = 0;
2317c478bd9Sstevel@tonic-gate 	lwp->lwp_extsig = 0;
2327c478bd9Sstevel@tonic-gate 	if (lwp->lwp_curinfo != NULL) {
2337c478bd9Sstevel@tonic-gate 		siginfofree(lwp->lwp_curinfo);
2347c478bd9Sstevel@tonic-gate 		lwp->lwp_curinfo = NULL;
2357c478bd9Sstevel@tonic-gate 	}
2367c478bd9Sstevel@tonic-gate 	lwp_ctmpl_clear(lwp);
2377c478bd9Sstevel@tonic-gate 
2387c478bd9Sstevel@tonic-gate 	/*
2397c478bd9Sstevel@tonic-gate 	 * Reset both the process root directory and the current working
2407c478bd9Sstevel@tonic-gate 	 * directory to the root of the zone just as we do during boot.
2417c478bd9Sstevel@tonic-gate 	 */
2427c478bd9Sstevel@tonic-gate 	VN_HOLD(p->p_zone->zone_rootvp);
2437c478bd9Sstevel@tonic-gate 	oldrd = up->u_rdir;
2447c478bd9Sstevel@tonic-gate 	up->u_rdir = p->p_zone->zone_rootvp;
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate 	VN_HOLD(p->p_zone->zone_rootvp);
2477c478bd9Sstevel@tonic-gate 	oldcd = up->u_cdir;
2487c478bd9Sstevel@tonic-gate 	up->u_cdir = p->p_zone->zone_rootvp;
2497c478bd9Sstevel@tonic-gate 
2507c478bd9Sstevel@tonic-gate 	if (up->u_cwd != NULL) {
2517c478bd9Sstevel@tonic-gate 		refstr_rele(up->u_cwd);
2527c478bd9Sstevel@tonic-gate 		up->u_cwd = NULL;
2537c478bd9Sstevel@tonic-gate 	}
2547c478bd9Sstevel@tonic-gate 
2557c478bd9Sstevel@tonic-gate 	mutex_exit(&p->p_lock);
2567c478bd9Sstevel@tonic-gate 
2577c478bd9Sstevel@tonic-gate 	if (oldrd != NULL)
2587c478bd9Sstevel@tonic-gate 		VN_RELE(oldrd);
2597c478bd9Sstevel@tonic-gate 	if (oldcd != NULL)
2607c478bd9Sstevel@tonic-gate 		VN_RELE(oldcd);
2617c478bd9Sstevel@tonic-gate 
2627c478bd9Sstevel@tonic-gate 	/*
2637c478bd9Sstevel@tonic-gate 	 * Free the controlling tty.
2647c478bd9Sstevel@tonic-gate 	 */
2657c478bd9Sstevel@tonic-gate 	mutex_enter(&pidlock);
2667c478bd9Sstevel@tonic-gate 	sp = p->p_sessp;
2677c478bd9Sstevel@tonic-gate 	if (sp->s_sidp == p->p_pidp && sp->s_vp != NULL) {
2687c478bd9Sstevel@tonic-gate 		mutex_exit(&pidlock);
2697c478bd9Sstevel@tonic-gate 		freectty(sp);
2707c478bd9Sstevel@tonic-gate 	} else {
2717c478bd9Sstevel@tonic-gate 		mutex_exit(&pidlock);
2727c478bd9Sstevel@tonic-gate 	}
2737c478bd9Sstevel@tonic-gate 
2747c478bd9Sstevel@tonic-gate 	/*
2757c478bd9Sstevel@tonic-gate 	 * Now exec() the new init(1M) on top of the current process.  If we
2767c478bd9Sstevel@tonic-gate 	 * succeed, the caller will treat this like a successful system call.
2777c478bd9Sstevel@tonic-gate 	 * If we fail, we issue messages and the caller will proceed with exit.
2787c478bd9Sstevel@tonic-gate 	 */
2797c478bd9Sstevel@tonic-gate 	ipath = INGLOBALZONE(p) ? initname : zone_initname;
2807c478bd9Sstevel@tonic-gate 	err = exec_init(ipath, 0, NULL);
2817c478bd9Sstevel@tonic-gate 
2827c478bd9Sstevel@tonic-gate 	if (err == 0)
2837c478bd9Sstevel@tonic-gate 		return (0);
2847c478bd9Sstevel@tonic-gate 
2857c478bd9Sstevel@tonic-gate 	zcmn_err(p->p_zone->zone_id, CE_WARN,
2867c478bd9Sstevel@tonic-gate 	    "failed to restart init(1M) (err=%d): system reboot required", err);
2877c478bd9Sstevel@tonic-gate 
2887c478bd9Sstevel@tonic-gate 	if (!INGLOBALZONE(p)) {
2897c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "failed to restart init(1M) for zone %s "
2907c478bd9Sstevel@tonic-gate 		    "(pid %d, err=%d): zoneadm(1M) boot required",
2917c478bd9Sstevel@tonic-gate 		    p->p_zone->zone_name, p->p_pid, err);
2927c478bd9Sstevel@tonic-gate 	}
2937c478bd9Sstevel@tonic-gate 
2947c478bd9Sstevel@tonic-gate 	return (-1);
2957c478bd9Sstevel@tonic-gate }
2967c478bd9Sstevel@tonic-gate 
2977c478bd9Sstevel@tonic-gate /*
2987c478bd9Sstevel@tonic-gate  * Release resources.
2997c478bd9Sstevel@tonic-gate  * Enter zombie state.
3007c478bd9Sstevel@tonic-gate  * Wake up parent and init processes,
3017c478bd9Sstevel@tonic-gate  * and dispose of children.
3027c478bd9Sstevel@tonic-gate  */
3037c478bd9Sstevel@tonic-gate void
3047c478bd9Sstevel@tonic-gate exit(int why, int what)
3057c478bd9Sstevel@tonic-gate {
3067c478bd9Sstevel@tonic-gate 	/*
3077c478bd9Sstevel@tonic-gate 	 * If proc_exit() fails, then some other lwp in the process
3087c478bd9Sstevel@tonic-gate 	 * got there first.  We just have to call lwp_exit() to allow
3097c478bd9Sstevel@tonic-gate 	 * the other lwp to finish exiting the process.  Otherwise we're
3107c478bd9Sstevel@tonic-gate 	 * restarting init, and should return.
3117c478bd9Sstevel@tonic-gate 	 */
3127c478bd9Sstevel@tonic-gate 	if (proc_exit(why, what) != 0) {
3137c478bd9Sstevel@tonic-gate 		mutex_enter(&curproc->p_lock);
3147c478bd9Sstevel@tonic-gate 		ASSERT(curproc->p_flag & SEXITLWPS);
3157c478bd9Sstevel@tonic-gate 		lwp_exit();
3167c478bd9Sstevel@tonic-gate 		/* NOTREACHED */
3177c478bd9Sstevel@tonic-gate 	}
3187c478bd9Sstevel@tonic-gate }
3197c478bd9Sstevel@tonic-gate 
3207c478bd9Sstevel@tonic-gate /*
32197eda132Sraf  * Set the SEXITING flag on the process, after making sure /proc does
32297eda132Sraf  * not have it locked.  This is done in more places than proc_exit(),
32397eda132Sraf  * so it is a separate function.
32497eda132Sraf  */
32597eda132Sraf void
32697eda132Sraf proc_is_exiting(proc_t *p)
32797eda132Sraf {
32897eda132Sraf 	mutex_enter(&p->p_lock);
32997eda132Sraf 	prbarrier(p);
33097eda132Sraf 	p->p_flag |= SEXITING;
33197eda132Sraf 	mutex_exit(&p->p_lock);
33297eda132Sraf }
33397eda132Sraf 
33497eda132Sraf /*
3357c478bd9Sstevel@tonic-gate  * Return value:
3367c478bd9Sstevel@tonic-gate  *   1 - exitlwps() failed, call (or continue) lwp_exit()
3377c478bd9Sstevel@tonic-gate  *   0 - restarting init.  Return through system call path
3387c478bd9Sstevel@tonic-gate  */
3397c478bd9Sstevel@tonic-gate int
3407c478bd9Sstevel@tonic-gate proc_exit(int why, int what)
3417c478bd9Sstevel@tonic-gate {
3427c478bd9Sstevel@tonic-gate 	kthread_t *t = curthread;
3437c478bd9Sstevel@tonic-gate 	klwp_t *lwp = ttolwp(t);
3447c478bd9Sstevel@tonic-gate 	proc_t *p = ttoproc(t);
3457c478bd9Sstevel@tonic-gate 	zone_t *z = p->p_zone;
3467c478bd9Sstevel@tonic-gate 	timeout_id_t tmp_id;
3477c478bd9Sstevel@tonic-gate 	int rv;
3487c478bd9Sstevel@tonic-gate 	proc_t *q;
3497c478bd9Sstevel@tonic-gate 	sess_t *sp;
3507c478bd9Sstevel@tonic-gate 	task_t *tk;
3517c478bd9Sstevel@tonic-gate 	vnode_t *exec_vp, *execdir_vp, *cdir, *rdir;
3527c478bd9Sstevel@tonic-gate 	sigqueue_t *sqp;
3537c478bd9Sstevel@tonic-gate 	lwpdir_t *lwpdir;
3547c478bd9Sstevel@tonic-gate 	uint_t lwpdir_sz;
3557c478bd9Sstevel@tonic-gate 	lwpdir_t **tidhash;
3567c478bd9Sstevel@tonic-gate 	uint_t tidhash_sz;
3577c478bd9Sstevel@tonic-gate 	refstr_t *cwd;
3587c478bd9Sstevel@tonic-gate 	hrtime_t hrutime, hrstime;
3597c478bd9Sstevel@tonic-gate 
3607c478bd9Sstevel@tonic-gate 	/*
3617c478bd9Sstevel@tonic-gate 	 * Stop and discard the process's lwps except for the current one,
3627c478bd9Sstevel@tonic-gate 	 * unless some other lwp beat us to it.  If exitlwps() fails then
3637c478bd9Sstevel@tonic-gate 	 * return and the calling lwp will call (or continue in) lwp_exit().
3647c478bd9Sstevel@tonic-gate 	 */
36597eda132Sraf 	proc_is_exiting(p);
3667c478bd9Sstevel@tonic-gate 	if (exitlwps(0) != 0)
3677c478bd9Sstevel@tonic-gate 		return (1);
3687c478bd9Sstevel@tonic-gate 
3697c478bd9Sstevel@tonic-gate 	DTRACE_PROC(lwp__exit);
3707c478bd9Sstevel@tonic-gate 	DTRACE_PROC1(exit, int, why);
3717c478bd9Sstevel@tonic-gate 
3727c478bd9Sstevel@tonic-gate 	/*
3737c478bd9Sstevel@tonic-gate 	 * Don't let init exit unless zone_icode() failed its exec, or
3747c478bd9Sstevel@tonic-gate 	 * we are shutting down the zone or the machine.
3757c478bd9Sstevel@tonic-gate 	 *
3767c478bd9Sstevel@tonic-gate 	 * Since we are single threaded, we don't need to lock the
3777c478bd9Sstevel@tonic-gate 	 * following accesses to zone_proc_initpid.
3787c478bd9Sstevel@tonic-gate 	 */
3797c478bd9Sstevel@tonic-gate 	if (p->p_pid == z->zone_proc_initpid) {
3807c478bd9Sstevel@tonic-gate 		if (z->zone_boot_err == 0 &&
3817c478bd9Sstevel@tonic-gate 		    zone_status_get(z) < ZONE_IS_SHUTTING_DOWN &&
3827c478bd9Sstevel@tonic-gate 		    zone_status_get(global_zone) < ZONE_IS_SHUTTING_DOWN &&
3837c478bd9Sstevel@tonic-gate 		    restart_init(what, why) == 0)
3847c478bd9Sstevel@tonic-gate 			return (0);
3857c478bd9Sstevel@tonic-gate 		/*
3867c478bd9Sstevel@tonic-gate 		 * Since we didn't or couldn't restart init, we clear
3877c478bd9Sstevel@tonic-gate 		 * the zone's init state and proceed with exit
3887c478bd9Sstevel@tonic-gate 		 * processing.
3897c478bd9Sstevel@tonic-gate 		 */
3907c478bd9Sstevel@tonic-gate 		z->zone_proc_initpid = -1;
3917c478bd9Sstevel@tonic-gate 	}
3927c478bd9Sstevel@tonic-gate 
3937c478bd9Sstevel@tonic-gate 	/*
3947c478bd9Sstevel@tonic-gate 	 * Allocate a sigqueue now, before we grab locks.
3957c478bd9Sstevel@tonic-gate 	 * It will be given to sigcld(), below.
3967c478bd9Sstevel@tonic-gate 	 */
3977c478bd9Sstevel@tonic-gate 	sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
3987c478bd9Sstevel@tonic-gate 
3997c478bd9Sstevel@tonic-gate 	/*
4007c478bd9Sstevel@tonic-gate 	 * revoke any doors created by the process.
4017c478bd9Sstevel@tonic-gate 	 */
4027c478bd9Sstevel@tonic-gate 	if (p->p_door_list)
4037c478bd9Sstevel@tonic-gate 		door_exit();
4047c478bd9Sstevel@tonic-gate 
4057c478bd9Sstevel@tonic-gate 	/*
4067c478bd9Sstevel@tonic-gate 	 * Release schedctl data structures.
4077c478bd9Sstevel@tonic-gate 	 */
4087c478bd9Sstevel@tonic-gate 	if (p->p_pagep)
4097c478bd9Sstevel@tonic-gate 		schedctl_proc_cleanup();
4107c478bd9Sstevel@tonic-gate 
4117c478bd9Sstevel@tonic-gate 	/*
4127c478bd9Sstevel@tonic-gate 	 * make sure all pending kaio has completed.
4137c478bd9Sstevel@tonic-gate 	 */
4147c478bd9Sstevel@tonic-gate 	if (p->p_aio)
4157c478bd9Sstevel@tonic-gate 		aio_cleanup_exit();
4167c478bd9Sstevel@tonic-gate 
4177c478bd9Sstevel@tonic-gate 	/*
4187c478bd9Sstevel@tonic-gate 	 * discard the lwpchan cache.
4197c478bd9Sstevel@tonic-gate 	 */
4207c478bd9Sstevel@tonic-gate 	if (p->p_lcp != NULL)
4217c478bd9Sstevel@tonic-gate 		lwpchan_destroy_cache(0);
4227c478bd9Sstevel@tonic-gate 
4237c478bd9Sstevel@tonic-gate 	/*
4247c478bd9Sstevel@tonic-gate 	 * Clean up any DTrace helper actions or probes for the process.
4257c478bd9Sstevel@tonic-gate 	 */
4267c478bd9Sstevel@tonic-gate 	if (p->p_dtrace_helpers != NULL) {
4277c478bd9Sstevel@tonic-gate 		ASSERT(dtrace_helpers_cleanup != NULL);
4287c478bd9Sstevel@tonic-gate 		(*dtrace_helpers_cleanup)();
4297c478bd9Sstevel@tonic-gate 	}
4307c478bd9Sstevel@tonic-gate 
4317c478bd9Sstevel@tonic-gate 	/* untimeout the realtime timers */
4327c478bd9Sstevel@tonic-gate 	if (p->p_itimer != NULL)
4337c478bd9Sstevel@tonic-gate 		timer_exit();
4347c478bd9Sstevel@tonic-gate 
4357c478bd9Sstevel@tonic-gate 	if ((tmp_id = p->p_alarmid) != 0) {
4367c478bd9Sstevel@tonic-gate 		p->p_alarmid = 0;
4377c478bd9Sstevel@tonic-gate 		(void) untimeout(tmp_id);
4387c478bd9Sstevel@tonic-gate 	}
4397c478bd9Sstevel@tonic-gate 
4407c478bd9Sstevel@tonic-gate 	/*
4417c478bd9Sstevel@tonic-gate 	 * Remove any fpollinfo_t's for this (last) thread from our file
4427c478bd9Sstevel@tonic-gate 	 * descriptors so closeall() can ASSERT() that they're all gone.
4437c478bd9Sstevel@tonic-gate 	 */
4447c478bd9Sstevel@tonic-gate 	pollcleanup();
4457c478bd9Sstevel@tonic-gate 
4467c478bd9Sstevel@tonic-gate 	if (p->p_rprof_cyclic != CYCLIC_NONE) {
4477c478bd9Sstevel@tonic-gate 		mutex_enter(&cpu_lock);
4487c478bd9Sstevel@tonic-gate 		cyclic_remove(p->p_rprof_cyclic);
4497c478bd9Sstevel@tonic-gate 		mutex_exit(&cpu_lock);
4507c478bd9Sstevel@tonic-gate 	}
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate 	mutex_enter(&p->p_lock);
4537c478bd9Sstevel@tonic-gate 
4547c478bd9Sstevel@tonic-gate 	/*
4557c478bd9Sstevel@tonic-gate 	 * Clean up any DTrace probes associated with this process.
4567c478bd9Sstevel@tonic-gate 	 */
4577c478bd9Sstevel@tonic-gate 	if (p->p_dtrace_probes) {
4587c478bd9Sstevel@tonic-gate 		ASSERT(dtrace_fasttrap_exit_ptr != NULL);
4597c478bd9Sstevel@tonic-gate 		dtrace_fasttrap_exit_ptr(p);
4607c478bd9Sstevel@tonic-gate 	}
4617c478bd9Sstevel@tonic-gate 
4627c478bd9Sstevel@tonic-gate 	while ((tmp_id = p->p_itimerid) != 0) {
4637c478bd9Sstevel@tonic-gate 		p->p_itimerid = 0;
4647c478bd9Sstevel@tonic-gate 		mutex_exit(&p->p_lock);
4657c478bd9Sstevel@tonic-gate 		(void) untimeout(tmp_id);
4667c478bd9Sstevel@tonic-gate 		mutex_enter(&p->p_lock);
4677c478bd9Sstevel@tonic-gate 	}
4687c478bd9Sstevel@tonic-gate 
4697c478bd9Sstevel@tonic-gate 	lwp_cleanup();
4707c478bd9Sstevel@tonic-gate 
4717c478bd9Sstevel@tonic-gate 	/*
4727c478bd9Sstevel@tonic-gate 	 * We are about to exit; prevent our resource associations from
4737c478bd9Sstevel@tonic-gate 	 * being changed.
4747c478bd9Sstevel@tonic-gate 	 */
4757c478bd9Sstevel@tonic-gate 	pool_barrier_enter();
4767c478bd9Sstevel@tonic-gate 
4777c478bd9Sstevel@tonic-gate 	/*
4787c478bd9Sstevel@tonic-gate 	 * Block the process against /proc now that we have really
4797c478bd9Sstevel@tonic-gate 	 * acquired p->p_lock (to manipulate p_tlist at least).
4807c478bd9Sstevel@tonic-gate 	 */
4817c478bd9Sstevel@tonic-gate 	prbarrier(p);
4827c478bd9Sstevel@tonic-gate 
4837c478bd9Sstevel@tonic-gate #ifdef	SUN_SRC_COMPAT
4847c478bd9Sstevel@tonic-gate 	if (code == CLD_KILLED)
4857c478bd9Sstevel@tonic-gate 		u.u_acflag |= AXSIG;
4867c478bd9Sstevel@tonic-gate #endif
4877c478bd9Sstevel@tonic-gate 	sigfillset(&p->p_ignore);
4887c478bd9Sstevel@tonic-gate 	sigemptyset(&p->p_siginfo);
4897c478bd9Sstevel@tonic-gate 	sigemptyset(&p->p_sig);
4907c478bd9Sstevel@tonic-gate 	sigemptyset(&p->p_extsig);
4917c478bd9Sstevel@tonic-gate 	sigemptyset(&t->t_sig);
4927c478bd9Sstevel@tonic-gate 	sigemptyset(&t->t_extsig);
4937c478bd9Sstevel@tonic-gate 	sigemptyset(&p->p_sigmask);
4947c478bd9Sstevel@tonic-gate 	sigdelq(p, t, 0);
4957c478bd9Sstevel@tonic-gate 	lwp->lwp_cursig = 0;
4967c478bd9Sstevel@tonic-gate 	lwp->lwp_extsig = 0;
4977c478bd9Sstevel@tonic-gate 	p->p_flag &= ~(SKILLED | SEXTKILLED);
4987c478bd9Sstevel@tonic-gate 	if (lwp->lwp_curinfo) {
4997c478bd9Sstevel@tonic-gate 		siginfofree(lwp->lwp_curinfo);
5007c478bd9Sstevel@tonic-gate 		lwp->lwp_curinfo = NULL;
5017c478bd9Sstevel@tonic-gate 	}
5027c478bd9Sstevel@tonic-gate 
5037c478bd9Sstevel@tonic-gate 	t->t_proc_flag |= TP_LWPEXIT;
5047c478bd9Sstevel@tonic-gate 	ASSERT(p->p_lwpcnt == 1 && p->p_zombcnt == 0);
5057c478bd9Sstevel@tonic-gate 	prlwpexit(t);		/* notify /proc */
5067c478bd9Sstevel@tonic-gate 	lwp_hash_out(p, t->t_tid);
5077c478bd9Sstevel@tonic-gate 	prexit(p);
5087c478bd9Sstevel@tonic-gate 
5097c478bd9Sstevel@tonic-gate 	p->p_lwpcnt = 0;
5107c478bd9Sstevel@tonic-gate 	p->p_tlist = NULL;
5117c478bd9Sstevel@tonic-gate 	sigqfree(p);
5127c478bd9Sstevel@tonic-gate 	term_mstate(t);
5137c478bd9Sstevel@tonic-gate 	p->p_mterm = gethrtime();
5147c478bd9Sstevel@tonic-gate 
5157c478bd9Sstevel@tonic-gate 	exec_vp = p->p_exec;
5167c478bd9Sstevel@tonic-gate 	execdir_vp = p->p_execdir;
5177c478bd9Sstevel@tonic-gate 	p->p_exec = NULLVP;
5187c478bd9Sstevel@tonic-gate 	p->p_execdir = NULLVP;
5197c478bd9Sstevel@tonic-gate 	mutex_exit(&p->p_lock);
5207c478bd9Sstevel@tonic-gate 	if (exec_vp)
5217c478bd9Sstevel@tonic-gate 		VN_RELE(exec_vp);
5227c478bd9Sstevel@tonic-gate 	if (execdir_vp)
5237c478bd9Sstevel@tonic-gate 		VN_RELE(execdir_vp);
5247c478bd9Sstevel@tonic-gate 
5257c478bd9Sstevel@tonic-gate 	pr_free_watched_pages(p);
5267c478bd9Sstevel@tonic-gate 
5277c478bd9Sstevel@tonic-gate 	closeall(P_FINFO(p));
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate 	mutex_enter(&pidlock);
5307c478bd9Sstevel@tonic-gate 	sp = p->p_sessp;
5317c478bd9Sstevel@tonic-gate 	if (sp->s_sidp == p->p_pidp && sp->s_vp != NULL) {
5327c478bd9Sstevel@tonic-gate 		mutex_exit(&pidlock);
5337c478bd9Sstevel@tonic-gate 		freectty(sp);
5347c478bd9Sstevel@tonic-gate 	} else
5357c478bd9Sstevel@tonic-gate 		mutex_exit(&pidlock);
5367c478bd9Sstevel@tonic-gate 
5377c478bd9Sstevel@tonic-gate #if defined(__sparc)
5387c478bd9Sstevel@tonic-gate 	if (p->p_utraps != NULL)
5397c478bd9Sstevel@tonic-gate 		utrap_free(p);
5407c478bd9Sstevel@tonic-gate #endif
5417c478bd9Sstevel@tonic-gate 	if (p->p_semacct)			/* IPC semaphore exit */
5427c478bd9Sstevel@tonic-gate 		semexit(p);
5437c478bd9Sstevel@tonic-gate 	rv = wstat(why, what);
5447c478bd9Sstevel@tonic-gate 
5457c478bd9Sstevel@tonic-gate 	acct(rv & 0xff);
5467c478bd9Sstevel@tonic-gate 	exacct_commit_proc(p, rv);
5477c478bd9Sstevel@tonic-gate 
5487c478bd9Sstevel@tonic-gate 	/*
5497c478bd9Sstevel@tonic-gate 	 * Release any resources associated with C2 auditing
5507c478bd9Sstevel@tonic-gate 	 */
5517c478bd9Sstevel@tonic-gate #ifdef C2_AUDIT
5527c478bd9Sstevel@tonic-gate 	if (audit_active) {
5537c478bd9Sstevel@tonic-gate 		/*
5547c478bd9Sstevel@tonic-gate 		 * audit exit system call
5557c478bd9Sstevel@tonic-gate 		 */
5567c478bd9Sstevel@tonic-gate 		audit_exit(why, what);
5577c478bd9Sstevel@tonic-gate 	}
5587c478bd9Sstevel@tonic-gate #endif
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate 	/*
5617c478bd9Sstevel@tonic-gate 	 * Free address space.
5627c478bd9Sstevel@tonic-gate 	 */
5637c478bd9Sstevel@tonic-gate 	relvm();
5647c478bd9Sstevel@tonic-gate 
5657c478bd9Sstevel@tonic-gate 	/*
5667c478bd9Sstevel@tonic-gate 	 * Release held contracts.
5677c478bd9Sstevel@tonic-gate 	 */
5687c478bd9Sstevel@tonic-gate 	contract_exit(p);
5697c478bd9Sstevel@tonic-gate 
5707c478bd9Sstevel@tonic-gate 	/*
5717c478bd9Sstevel@tonic-gate 	 * Depart our encapsulating process contract.
5727c478bd9Sstevel@tonic-gate 	 */
5737c478bd9Sstevel@tonic-gate 	if ((p->p_flag & SSYS) == 0) {
5747c478bd9Sstevel@tonic-gate 		ASSERT(p->p_ct_process);
5757c478bd9Sstevel@tonic-gate 		contract_process_exit(p->p_ct_process, p, rv);
5767c478bd9Sstevel@tonic-gate 	}
5777c478bd9Sstevel@tonic-gate 
5787c478bd9Sstevel@tonic-gate 	/*
5797c478bd9Sstevel@tonic-gate 	 * Remove pool association, and block if requested by pool_do_bind.
5807c478bd9Sstevel@tonic-gate 	 */
5817c478bd9Sstevel@tonic-gate 	mutex_enter(&p->p_lock);
5827c478bd9Sstevel@tonic-gate 	ASSERT(p->p_pool->pool_ref > 0);
5837c478bd9Sstevel@tonic-gate 	atomic_add_32(&p->p_pool->pool_ref, -1);
5847c478bd9Sstevel@tonic-gate 	p->p_pool = pool_default;
5857c478bd9Sstevel@tonic-gate 	/*
5867c478bd9Sstevel@tonic-gate 	 * Now that our address space has been freed and all other threads
5877c478bd9Sstevel@tonic-gate 	 * in this process have exited, set the PEXITED pool flag.  This
5887c478bd9Sstevel@tonic-gate 	 * tells the pools subsystems to ignore this process if it was
5897c478bd9Sstevel@tonic-gate 	 * requested to rebind this process to a new pool.
5907c478bd9Sstevel@tonic-gate 	 */
5917c478bd9Sstevel@tonic-gate 	p->p_poolflag |= PEXITED;
5927c478bd9Sstevel@tonic-gate 	pool_barrier_exit();
5937c478bd9Sstevel@tonic-gate 	mutex_exit(&p->p_lock);
5947c478bd9Sstevel@tonic-gate 
5957c478bd9Sstevel@tonic-gate 	mutex_enter(&pidlock);
5967c478bd9Sstevel@tonic-gate 
5977c478bd9Sstevel@tonic-gate 	/*
5987c478bd9Sstevel@tonic-gate 	 * Delete this process from the newstate list of its parent. We
5997c478bd9Sstevel@tonic-gate 	 * will put it in the right place in the sigcld in the end.
6007c478bd9Sstevel@tonic-gate 	 */
6017c478bd9Sstevel@tonic-gate 	delete_ns(p->p_parent, p);
6027c478bd9Sstevel@tonic-gate 
6037c478bd9Sstevel@tonic-gate 	/*
6047c478bd9Sstevel@tonic-gate 	 * Reassign the orphans to the next of kin.
6057c478bd9Sstevel@tonic-gate 	 * Don't rearrange init's orphanage.
6067c478bd9Sstevel@tonic-gate 	 */
6077c478bd9Sstevel@tonic-gate 	if ((q = p->p_orphan) != NULL && p != proc_init) {
6087c478bd9Sstevel@tonic-gate 
6097c478bd9Sstevel@tonic-gate 		proc_t *nokp = p->p_nextofkin;
6107c478bd9Sstevel@tonic-gate 
6117c478bd9Sstevel@tonic-gate 		for (;;) {
6127c478bd9Sstevel@tonic-gate 			q->p_nextofkin = nokp;
6137c478bd9Sstevel@tonic-gate 			if (q->p_nextorph == NULL)
6147c478bd9Sstevel@tonic-gate 				break;
6157c478bd9Sstevel@tonic-gate 			q = q->p_nextorph;
6167c478bd9Sstevel@tonic-gate 		}
6177c478bd9Sstevel@tonic-gate 		q->p_nextorph = nokp->p_orphan;
6187c478bd9Sstevel@tonic-gate 		nokp->p_orphan = p->p_orphan;
6197c478bd9Sstevel@tonic-gate 		p->p_orphan = NULL;
6207c478bd9Sstevel@tonic-gate 	}
6217c478bd9Sstevel@tonic-gate 
6227c478bd9Sstevel@tonic-gate 	/*
6237c478bd9Sstevel@tonic-gate 	 * Reassign the children to init.
6247c478bd9Sstevel@tonic-gate 	 * Don't try to assign init's children to init.
6257c478bd9Sstevel@tonic-gate 	 */
6267c478bd9Sstevel@tonic-gate 	if ((q = p->p_child) != NULL && p != proc_init) {
6277c478bd9Sstevel@tonic-gate 		struct proc	*np;
6287c478bd9Sstevel@tonic-gate 		struct proc	*initp = proc_init;
6297c478bd9Sstevel@tonic-gate 		boolean_t	setzonetop = B_FALSE;
6307c478bd9Sstevel@tonic-gate 
6317c478bd9Sstevel@tonic-gate 		if (!INGLOBALZONE(curproc))
6327c478bd9Sstevel@tonic-gate 			setzonetop = B_TRUE;
6337c478bd9Sstevel@tonic-gate 
6347c478bd9Sstevel@tonic-gate 		pgdetach(p);
6357c478bd9Sstevel@tonic-gate 
6367c478bd9Sstevel@tonic-gate 		do {
6377c478bd9Sstevel@tonic-gate 			np = q->p_sibling;
6387c478bd9Sstevel@tonic-gate 			/*
6397c478bd9Sstevel@tonic-gate 			 * Delete it from its current parent new state
6407c478bd9Sstevel@tonic-gate 			 * list and add it to init new state list
6417c478bd9Sstevel@tonic-gate 			 */
6427c478bd9Sstevel@tonic-gate 			delete_ns(q->p_parent, q);
6437c478bd9Sstevel@tonic-gate 
6447c478bd9Sstevel@tonic-gate 			q->p_ppid = 1;
6457c478bd9Sstevel@tonic-gate 			if (setzonetop) {
6467c478bd9Sstevel@tonic-gate 				mutex_enter(&q->p_lock);
6477c478bd9Sstevel@tonic-gate 				q->p_flag |= SZONETOP;
6487c478bd9Sstevel@tonic-gate 				mutex_exit(&q->p_lock);
6497c478bd9Sstevel@tonic-gate 			}
6507c478bd9Sstevel@tonic-gate 			q->p_parent = initp;
6517c478bd9Sstevel@tonic-gate 
6527c478bd9Sstevel@tonic-gate 			/*
6537c478bd9Sstevel@tonic-gate 			 * Since q will be the first child,
6547c478bd9Sstevel@tonic-gate 			 * it will not have a previous sibling.
6557c478bd9Sstevel@tonic-gate 			 */
6567c478bd9Sstevel@tonic-gate 			q->p_psibling = NULL;
6577c478bd9Sstevel@tonic-gate 			if (initp->p_child) {
6587c478bd9Sstevel@tonic-gate 				initp->p_child->p_psibling = q;
6597c478bd9Sstevel@tonic-gate 			}
6607c478bd9Sstevel@tonic-gate 			q->p_sibling = initp->p_child;
6617c478bd9Sstevel@tonic-gate 			initp->p_child = q;
6627c478bd9Sstevel@tonic-gate 			if (q->p_proc_flag & P_PR_PTRACE) {
6637c478bd9Sstevel@tonic-gate 				mutex_enter(&q->p_lock);
6647c478bd9Sstevel@tonic-gate 				sigtoproc(q, NULL, SIGKILL);
6657c478bd9Sstevel@tonic-gate 				mutex_exit(&q->p_lock);
6667c478bd9Sstevel@tonic-gate 			}
6677c478bd9Sstevel@tonic-gate 			/*
6687c478bd9Sstevel@tonic-gate 			 * sigcld() will add the child to parents
6697c478bd9Sstevel@tonic-gate 			 * newstate list.
6707c478bd9Sstevel@tonic-gate 			 */
6717c478bd9Sstevel@tonic-gate 			if (q->p_stat == SZOMB)
6727c478bd9Sstevel@tonic-gate 				sigcld(q, NULL);
6737c478bd9Sstevel@tonic-gate 		} while ((q = np) != NULL);
6747c478bd9Sstevel@tonic-gate 
6757c478bd9Sstevel@tonic-gate 		p->p_child = NULL;
6767c478bd9Sstevel@tonic-gate 		ASSERT(p->p_child_ns == NULL);
6777c478bd9Sstevel@tonic-gate 	}
6787c478bd9Sstevel@tonic-gate 
6797c478bd9Sstevel@tonic-gate 	TRACE_1(TR_FAC_PROC, TR_PROC_EXIT, "proc_exit: %p", p);
6807c478bd9Sstevel@tonic-gate 
6817c478bd9Sstevel@tonic-gate 	mutex_enter(&p->p_lock);
6827c478bd9Sstevel@tonic-gate 	CL_EXIT(curthread); /* tell the scheduler that curthread is exiting */
6837c478bd9Sstevel@tonic-gate 
6847c478bd9Sstevel@tonic-gate 	hrutime = mstate_aggr_state(p, LMS_USER);
6857c478bd9Sstevel@tonic-gate 	hrstime = mstate_aggr_state(p, LMS_SYSTEM);
6867c478bd9Sstevel@tonic-gate 	p->p_utime = (clock_t)NSEC_TO_TICK(hrutime) + p->p_cutime;
6877c478bd9Sstevel@tonic-gate 	p->p_stime = (clock_t)NSEC_TO_TICK(hrstime) + p->p_cstime;
6887c478bd9Sstevel@tonic-gate 
6897c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_USER]	+= p->p_cacct[LMS_USER];
6907c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_SYSTEM]	+= p->p_cacct[LMS_SYSTEM];
6917c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_TRAP]	+= p->p_cacct[LMS_TRAP];
6927c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_TFAULT]	+= p->p_cacct[LMS_TFAULT];
6937c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_DFAULT]	+= p->p_cacct[LMS_DFAULT];
6947c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_KFAULT]	+= p->p_cacct[LMS_KFAULT];
6957c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_USER_LOCK] += p->p_cacct[LMS_USER_LOCK];
6967c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_SLEEP]	+= p->p_cacct[LMS_SLEEP];
6977c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_WAIT_CPU]	+= p->p_cacct[LMS_WAIT_CPU];
6987c478bd9Sstevel@tonic-gate 	p->p_acct[LMS_STOPPED]	+= p->p_cacct[LMS_STOPPED];
6997c478bd9Sstevel@tonic-gate 
7007c478bd9Sstevel@tonic-gate 	p->p_ru.minflt	+= p->p_cru.minflt;
7017c478bd9Sstevel@tonic-gate 	p->p_ru.majflt	+= p->p_cru.majflt;
7027c478bd9Sstevel@tonic-gate 	p->p_ru.nswap	+= p->p_cru.nswap;
7037c478bd9Sstevel@tonic-gate 	p->p_ru.inblock	+= p->p_cru.inblock;
7047c478bd9Sstevel@tonic-gate 	p->p_ru.oublock	+= p->p_cru.oublock;
7057c478bd9Sstevel@tonic-gate 	p->p_ru.msgsnd	+= p->p_cru.msgsnd;
7067c478bd9Sstevel@tonic-gate 	p->p_ru.msgrcv	+= p->p_cru.msgrcv;
7077c478bd9Sstevel@tonic-gate 	p->p_ru.nsignals += p->p_cru.nsignals;
7087c478bd9Sstevel@tonic-gate 	p->p_ru.nvcsw	+= p->p_cru.nvcsw;
7097c478bd9Sstevel@tonic-gate 	p->p_ru.nivcsw	+= p->p_cru.nivcsw;
7107c478bd9Sstevel@tonic-gate 	p->p_ru.sysc	+= p->p_cru.sysc;
7117c478bd9Sstevel@tonic-gate 	p->p_ru.ioch	+= p->p_cru.ioch;
7127c478bd9Sstevel@tonic-gate 
7137c478bd9Sstevel@tonic-gate 	p->p_stat = SZOMB;
7147c478bd9Sstevel@tonic-gate 	p->p_proc_flag &= ~P_PR_PTRACE;
7157c478bd9Sstevel@tonic-gate 	p->p_wdata = what;
7167c478bd9Sstevel@tonic-gate 	p->p_wcode = (char)why;
7177c478bd9Sstevel@tonic-gate 
7187c478bd9Sstevel@tonic-gate 	cdir = PTOU(p)->u_cdir;
7197c478bd9Sstevel@tonic-gate 	rdir = PTOU(p)->u_rdir;
7207c478bd9Sstevel@tonic-gate 	cwd = PTOU(p)->u_cwd;
7217c478bd9Sstevel@tonic-gate 
7227c478bd9Sstevel@tonic-gate 	/*
7237c478bd9Sstevel@tonic-gate 	 * Release resource controls, as they are no longer enforceable.
7247c478bd9Sstevel@tonic-gate 	 */
7257c478bd9Sstevel@tonic-gate 	rctl_set_free(p->p_rctls);
7267c478bd9Sstevel@tonic-gate 
7277c478bd9Sstevel@tonic-gate 	/*
7287c478bd9Sstevel@tonic-gate 	 * Give up task and project memberships.  Decrement tk_nlwps counter
7297c478bd9Sstevel@tonic-gate 	 * for our task.max-lwps resource control.  An extended accounting
7307c478bd9Sstevel@tonic-gate 	 * record, if that facility is active, is scheduled to be written.
7317c478bd9Sstevel@tonic-gate 	 * Zombie processes are false members of task0 for the remainder of
7327c478bd9Sstevel@tonic-gate 	 * their lifetime; no accounting information is recorded for them.
7337c478bd9Sstevel@tonic-gate 	 */
7347c478bd9Sstevel@tonic-gate 	tk = p->p_task;
7357c478bd9Sstevel@tonic-gate 
7367c478bd9Sstevel@tonic-gate 	mutex_enter(&p->p_zone->zone_nlwps_lock);
7377c478bd9Sstevel@tonic-gate 	tk->tk_nlwps--;
7387c478bd9Sstevel@tonic-gate 	tk->tk_proj->kpj_nlwps--;
7397c478bd9Sstevel@tonic-gate 	p->p_zone->zone_nlwps--;
7407c478bd9Sstevel@tonic-gate 	mutex_exit(&p->p_zone->zone_nlwps_lock);
7417c478bd9Sstevel@tonic-gate 	task_detach(p);
7427c478bd9Sstevel@tonic-gate 	p->p_task = task0p;
7437c478bd9Sstevel@tonic-gate 
7447c478bd9Sstevel@tonic-gate 	/*
7457c478bd9Sstevel@tonic-gate 	 * Clear the lwp directory and the lwpid hash table
7467c478bd9Sstevel@tonic-gate 	 * now that /proc can't bother us any more.
7477c478bd9Sstevel@tonic-gate 	 * We free the memory below, after dropping p->p_lock.
7487c478bd9Sstevel@tonic-gate 	 */
7497c478bd9Sstevel@tonic-gate 	lwpdir = p->p_lwpdir;
7507c478bd9Sstevel@tonic-gate 	lwpdir_sz = p->p_lwpdir_sz;
7517c478bd9Sstevel@tonic-gate 	tidhash = p->p_tidhash;
7527c478bd9Sstevel@tonic-gate 	tidhash_sz = p->p_tidhash_sz;
7537c478bd9Sstevel@tonic-gate 	p->p_lwpdir = NULL;
7547c478bd9Sstevel@tonic-gate 	p->p_lwpfree = NULL;
7557c478bd9Sstevel@tonic-gate 	p->p_lwpdir_sz = 0;
7567c478bd9Sstevel@tonic-gate 	p->p_tidhash = NULL;
7577c478bd9Sstevel@tonic-gate 	p->p_tidhash_sz = 0;
7587c478bd9Sstevel@tonic-gate 
7597c478bd9Sstevel@tonic-gate 	/*
760*0baeff3dSrab 	 * If the process has context ops installed, call the exit routine
761*0baeff3dSrab 	 * on behalf of this last remaining thread. Normally exitpctx() is
762*0baeff3dSrab 	 * called during thread_exit() or lwp_exit(), but because this is the
763*0baeff3dSrab 	 * last thread in the process, we must call it here. By the time
764*0baeff3dSrab 	 * thread_exit() is called (below), the association with the relevant
765*0baeff3dSrab 	 * process has been lost.
766*0baeff3dSrab 	 *
767*0baeff3dSrab 	 * We also free the context here.
768*0baeff3dSrab 	 */
769*0baeff3dSrab 	if (p->p_pctx) {
770*0baeff3dSrab 		kpreempt_disable();
771*0baeff3dSrab 		exitpctx(p);
772*0baeff3dSrab 		kpreempt_enable();
773*0baeff3dSrab 
774*0baeff3dSrab 		freepctx(p, 0);
775*0baeff3dSrab 	}
776*0baeff3dSrab 
777*0baeff3dSrab 	/*
7787c478bd9Sstevel@tonic-gate 	 * curthread's proc pointer is changed to point at p0 because
7797c478bd9Sstevel@tonic-gate 	 * curthread's original proc pointer can be freed as soon as
7807c478bd9Sstevel@tonic-gate 	 * the child sends a SIGCLD to its parent.
7817c478bd9Sstevel@tonic-gate 	 */
7827c478bd9Sstevel@tonic-gate 	t->t_procp = &p0;
7837c478bd9Sstevel@tonic-gate 
7847c478bd9Sstevel@tonic-gate 	mutex_exit(&p->p_lock);
7857c478bd9Sstevel@tonic-gate 	sigcld(p, sqp);
7867c478bd9Sstevel@tonic-gate 	mutex_exit(&pidlock);
7877c478bd9Sstevel@tonic-gate 
7887c478bd9Sstevel@tonic-gate 	task_rele(tk);
7897c478bd9Sstevel@tonic-gate 
7907c478bd9Sstevel@tonic-gate 	kmem_free(lwpdir, lwpdir_sz * sizeof (lwpdir_t));
7917c478bd9Sstevel@tonic-gate 	kmem_free(tidhash, tidhash_sz * sizeof (lwpdir_t *));
7927c478bd9Sstevel@tonic-gate 
7937c478bd9Sstevel@tonic-gate 	/*
7947c478bd9Sstevel@tonic-gate 	 * We don't release u_cdir and u_rdir until SZOMB is set.
7957c478bd9Sstevel@tonic-gate 	 * This protects us against dofusers().
7967c478bd9Sstevel@tonic-gate 	 */
7977c478bd9Sstevel@tonic-gate 	VN_RELE(cdir);
7987c478bd9Sstevel@tonic-gate 	if (rdir)
7997c478bd9Sstevel@tonic-gate 		VN_RELE(rdir);
8007c478bd9Sstevel@tonic-gate 	if (cwd)
8017c478bd9Sstevel@tonic-gate 		refstr_rele(cwd);
8027c478bd9Sstevel@tonic-gate 
8037c478bd9Sstevel@tonic-gate 	lwp_pcb_exit();
8047c478bd9Sstevel@tonic-gate 
8057c478bd9Sstevel@tonic-gate 	thread_exit();
8067c478bd9Sstevel@tonic-gate 	/* NOTREACHED */
8077c478bd9Sstevel@tonic-gate }
8087c478bd9Sstevel@tonic-gate 
8097c478bd9Sstevel@tonic-gate /*
8107c478bd9Sstevel@tonic-gate  * Format siginfo structure for wait system calls.
8117c478bd9Sstevel@tonic-gate  */
8127c478bd9Sstevel@tonic-gate void
8137c478bd9Sstevel@tonic-gate winfo(proc_t *pp, k_siginfo_t *ip, int waitflag)
8147c478bd9Sstevel@tonic-gate {
8157c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&pidlock));
8167c478bd9Sstevel@tonic-gate 
8177c478bd9Sstevel@tonic-gate 	bzero(ip, sizeof (k_siginfo_t));
8187c478bd9Sstevel@tonic-gate 	ip->si_signo = SIGCLD;
8197c478bd9Sstevel@tonic-gate 	ip->si_code = pp->p_wcode;
8207c478bd9Sstevel@tonic-gate 	ip->si_pid = pp->p_pid;
8217c478bd9Sstevel@tonic-gate 	ip->si_ctid = PRCTID(pp);
8227c478bd9Sstevel@tonic-gate 	ip->si_zoneid = pp->p_zone->zone_id;
8237c478bd9Sstevel@tonic-gate 	ip->si_status = pp->p_wdata;
8247c478bd9Sstevel@tonic-gate 	ip->si_stime = pp->p_stime;
8257c478bd9Sstevel@tonic-gate 	ip->si_utime = pp->p_utime;
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate 	if (waitflag) {
8287c478bd9Sstevel@tonic-gate 		pp->p_wcode = 0;
8297c478bd9Sstevel@tonic-gate 		pp->p_wdata = 0;
8307c478bd9Sstevel@tonic-gate 		pp->p_pidflag &= ~CLDPEND;
8317c478bd9Sstevel@tonic-gate 	}
8327c478bd9Sstevel@tonic-gate }
8337c478bd9Sstevel@tonic-gate 
8347c478bd9Sstevel@tonic-gate /*
8357c478bd9Sstevel@tonic-gate  * Wait system call.
8367c478bd9Sstevel@tonic-gate  * Search for a terminated (zombie) child,
8377c478bd9Sstevel@tonic-gate  * finally lay it to rest, and collect its status.
8387c478bd9Sstevel@tonic-gate  * Look also for stopped children,
8397c478bd9Sstevel@tonic-gate  * and pass back status from them.
8407c478bd9Sstevel@tonic-gate  */
8417c478bd9Sstevel@tonic-gate int
8427c478bd9Sstevel@tonic-gate waitid(idtype_t idtype, id_t id, k_siginfo_t *ip, int options)
8437c478bd9Sstevel@tonic-gate {
8447c478bd9Sstevel@tonic-gate 	int found;
8457c478bd9Sstevel@tonic-gate 	proc_t *cp, *pp;
8467c478bd9Sstevel@tonic-gate 	proc_t **nsp;
8477c478bd9Sstevel@tonic-gate 	int proc_gone;
8487c478bd9Sstevel@tonic-gate 	int waitflag = !(options & WNOWAIT);
8497c478bd9Sstevel@tonic-gate 
8507c478bd9Sstevel@tonic-gate 	/*
8517c478bd9Sstevel@tonic-gate 	 * Obsolete flag, defined here only for binary compatibility
8527c478bd9Sstevel@tonic-gate 	 * with old statically linked executables.  Delete this when
8537c478bd9Sstevel@tonic-gate 	 * we no longer care about these old and broken applications.
8547c478bd9Sstevel@tonic-gate 	 */
8557c478bd9Sstevel@tonic-gate #define	_WNOCHLD	0400
8567c478bd9Sstevel@tonic-gate 	options &= ~_WNOCHLD;
8577c478bd9Sstevel@tonic-gate 
8587c478bd9Sstevel@tonic-gate 	if (options == 0 || (options & ~WOPTMASK))
8597c478bd9Sstevel@tonic-gate 		return (EINVAL);
8607c478bd9Sstevel@tonic-gate 
8617c478bd9Sstevel@tonic-gate 	switch (idtype) {
8627c478bd9Sstevel@tonic-gate 	case P_PID:
8637c478bd9Sstevel@tonic-gate 	case P_PGID:
8647c478bd9Sstevel@tonic-gate 		if (id < 0 || id >= maxpid)
8657c478bd9Sstevel@tonic-gate 			return (EINVAL);
8667c478bd9Sstevel@tonic-gate 		/* FALLTHROUGH */
8677c478bd9Sstevel@tonic-gate 	case P_ALL:
8687c478bd9Sstevel@tonic-gate 		break;
8697c478bd9Sstevel@tonic-gate 	default:
8707c478bd9Sstevel@tonic-gate 		return (EINVAL);
8717c478bd9Sstevel@tonic-gate 	}
8727c478bd9Sstevel@tonic-gate 
8737c478bd9Sstevel@tonic-gate 	pp = ttoproc(curthread);
874e44bd21cSsusans 
8757c478bd9Sstevel@tonic-gate 	/*
8767c478bd9Sstevel@tonic-gate 	 * lock parent mutex so that sibling chain can be searched.
8777c478bd9Sstevel@tonic-gate 	 */
8787c478bd9Sstevel@tonic-gate 	mutex_enter(&pidlock);
879e44bd21cSsusans 
880e44bd21cSsusans 	/*
881e44bd21cSsusans 	 * if we are only looking for exited processes and child_ns list
882e44bd21cSsusans 	 * is empty no reason to look at all children.
883e44bd21cSsusans 	 */
884e44bd21cSsusans 	if (idtype == P_ALL &&
885e44bd21cSsusans 	    (options & (WOPTMASK & ~WNOWAIT)) == (WNOHANG | WEXITED) &&
886e44bd21cSsusans 		pp->p_child_ns == NULL) {
887e44bd21cSsusans 
888e44bd21cSsusans 		if (pp->p_child) {
889e44bd21cSsusans 			mutex_exit(&pidlock);
890e44bd21cSsusans 			bzero(ip, sizeof (k_siginfo_t));
891e44bd21cSsusans 			return (0);
892e44bd21cSsusans 		}
893e44bd21cSsusans 		mutex_exit(&pidlock);
894e44bd21cSsusans 		return (ECHILD);
895e44bd21cSsusans 	}
896e44bd21cSsusans 
8977c478bd9Sstevel@tonic-gate 	while ((cp = pp->p_child) != NULL) {
8987c478bd9Sstevel@tonic-gate 
8997c478bd9Sstevel@tonic-gate 		proc_gone = 0;
9007c478bd9Sstevel@tonic-gate 
9017c478bd9Sstevel@tonic-gate 		for (nsp = &pp->p_child_ns; *nsp; nsp = &(*nsp)->p_sibling_ns) {
9027c478bd9Sstevel@tonic-gate 			if (idtype == P_PID && id != (*nsp)->p_pid) {
9037c478bd9Sstevel@tonic-gate 				continue;
9047c478bd9Sstevel@tonic-gate 			}
9057c478bd9Sstevel@tonic-gate 			if (idtype == P_PGID && id != (*nsp)->p_pgrp) {
9067c478bd9Sstevel@tonic-gate 				continue;
9077c478bd9Sstevel@tonic-gate 			}
9087c478bd9Sstevel@tonic-gate 
9097c478bd9Sstevel@tonic-gate 			switch ((*nsp)->p_wcode) {
9107c478bd9Sstevel@tonic-gate 
9117c478bd9Sstevel@tonic-gate 			case CLD_TRAPPED:
9127c478bd9Sstevel@tonic-gate 			case CLD_STOPPED:
9137c478bd9Sstevel@tonic-gate 			case CLD_CONTINUED:
9147c478bd9Sstevel@tonic-gate 				cmn_err(CE_PANIC,
9157c478bd9Sstevel@tonic-gate 				    "waitid: wrong state %d on the p_newstate"
9167c478bd9Sstevel@tonic-gate 				    " list", (*nsp)->p_wcode);
9177c478bd9Sstevel@tonic-gate 				break;
9187c478bd9Sstevel@tonic-gate 
9197c478bd9Sstevel@tonic-gate 			case CLD_EXITED:
9207c478bd9Sstevel@tonic-gate 			case CLD_DUMPED:
9217c478bd9Sstevel@tonic-gate 			case CLD_KILLED:
9227c478bd9Sstevel@tonic-gate 				if (!(options & WEXITED)) {
9237c478bd9Sstevel@tonic-gate 					/*
9247c478bd9Sstevel@tonic-gate 					 * Count how many are already gone
9257c478bd9Sstevel@tonic-gate 					 * for good.
9267c478bd9Sstevel@tonic-gate 					 */
9277c478bd9Sstevel@tonic-gate 					proc_gone++;
9287c478bd9Sstevel@tonic-gate 					break;
9297c478bd9Sstevel@tonic-gate 				}
9307c478bd9Sstevel@tonic-gate 				if (!waitflag) {
9317c478bd9Sstevel@tonic-gate 					winfo((*nsp), ip, 0);
9327c478bd9Sstevel@tonic-gate 				} else {
9337c478bd9Sstevel@tonic-gate 					proc_t *xp = *nsp;
9347c478bd9Sstevel@tonic-gate 					winfo(xp, ip, 1);
9357c478bd9Sstevel@tonic-gate 					freeproc(xp);
9367c478bd9Sstevel@tonic-gate 				}
9377c478bd9Sstevel@tonic-gate 				mutex_exit(&pidlock);
9387c478bd9Sstevel@tonic-gate 				if (waitflag) {		/* accept SIGCLD */
9397c478bd9Sstevel@tonic-gate 					sigcld_delete(ip);
9407c478bd9Sstevel@tonic-gate 					sigcld_repost();
9417c478bd9Sstevel@tonic-gate 				}
9427c478bd9Sstevel@tonic-gate 				return (0);
9437c478bd9Sstevel@tonic-gate 			}
9447c478bd9Sstevel@tonic-gate 
9457c478bd9Sstevel@tonic-gate 			if (idtype == P_PID)
9467c478bd9Sstevel@tonic-gate 				break;
9477c478bd9Sstevel@tonic-gate 		}
9487c478bd9Sstevel@tonic-gate 
9497c478bd9Sstevel@tonic-gate 		/*
9507c478bd9Sstevel@tonic-gate 		 * Wow! None of the threads on the p_sibling_ns list were
9517c478bd9Sstevel@tonic-gate 		 * interesting threads. Check all the kids!
9527c478bd9Sstevel@tonic-gate 		 */
9537c478bd9Sstevel@tonic-gate 		found = 0;
9547c478bd9Sstevel@tonic-gate 		cp = pp->p_child;
9557c478bd9Sstevel@tonic-gate 		do {
9567c478bd9Sstevel@tonic-gate 			if (idtype == P_PID && id != cp->p_pid) {
9577c478bd9Sstevel@tonic-gate 				continue;
9587c478bd9Sstevel@tonic-gate 			}
9597c478bd9Sstevel@tonic-gate 			if (idtype == P_PGID && id != cp->p_pgrp) {
9607c478bd9Sstevel@tonic-gate 				continue;
9617c478bd9Sstevel@tonic-gate 			}
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate 			found++;
9647c478bd9Sstevel@tonic-gate 
9657c478bd9Sstevel@tonic-gate 			switch (cp->p_wcode) {
9667c478bd9Sstevel@tonic-gate 			case CLD_TRAPPED:
9677c478bd9Sstevel@tonic-gate 				if (!(options & WTRAPPED))
9687c478bd9Sstevel@tonic-gate 					break;
9697c478bd9Sstevel@tonic-gate 				winfo(cp, ip, waitflag);
9707c478bd9Sstevel@tonic-gate 				mutex_exit(&pidlock);
9717c478bd9Sstevel@tonic-gate 				if (waitflag) {		/* accept SIGCLD */
9727c478bd9Sstevel@tonic-gate 					sigcld_delete(ip);
9737c478bd9Sstevel@tonic-gate 					sigcld_repost();
9747c478bd9Sstevel@tonic-gate 				}
9757c478bd9Sstevel@tonic-gate 				return (0);
9767c478bd9Sstevel@tonic-gate 
9777c478bd9Sstevel@tonic-gate 			case CLD_STOPPED:
9787c478bd9Sstevel@tonic-gate 				if (!(options & WSTOPPED))
9797c478bd9Sstevel@tonic-gate 					break;
9807c478bd9Sstevel@tonic-gate 				/* Is it still stopped? */
9817c478bd9Sstevel@tonic-gate 				mutex_enter(&cp->p_lock);
9827c478bd9Sstevel@tonic-gate 				if (!jobstopped(cp)) {
9837c478bd9Sstevel@tonic-gate 					mutex_exit(&cp->p_lock);
9847c478bd9Sstevel@tonic-gate 					break;
9857c478bd9Sstevel@tonic-gate 				}
9867c478bd9Sstevel@tonic-gate 				mutex_exit(&cp->p_lock);
9877c478bd9Sstevel@tonic-gate 				winfo(cp, ip, waitflag);
9887c478bd9Sstevel@tonic-gate 				mutex_exit(&pidlock);
9897c478bd9Sstevel@tonic-gate 				if (waitflag) {		/* accept SIGCLD */
9907c478bd9Sstevel@tonic-gate 					sigcld_delete(ip);
9917c478bd9Sstevel@tonic-gate 					sigcld_repost();
9927c478bd9Sstevel@tonic-gate 				}
9937c478bd9Sstevel@tonic-gate 				return (0);
9947c478bd9Sstevel@tonic-gate 
9957c478bd9Sstevel@tonic-gate 			case CLD_CONTINUED:
9967c478bd9Sstevel@tonic-gate 				if (!(options & WCONTINUED))
9977c478bd9Sstevel@tonic-gate 					break;
9987c478bd9Sstevel@tonic-gate 				winfo(cp, ip, waitflag);
9997c478bd9Sstevel@tonic-gate 				mutex_exit(&pidlock);
10007c478bd9Sstevel@tonic-gate 				if (waitflag) {		/* accept SIGCLD */
10017c478bd9Sstevel@tonic-gate 					sigcld_delete(ip);
10027c478bd9Sstevel@tonic-gate 					sigcld_repost();
10037c478bd9Sstevel@tonic-gate 				}
10047c478bd9Sstevel@tonic-gate 				return (0);
10057c478bd9Sstevel@tonic-gate 
10067c478bd9Sstevel@tonic-gate 			case CLD_EXITED:
10077c478bd9Sstevel@tonic-gate 			case CLD_DUMPED:
10087c478bd9Sstevel@tonic-gate 			case CLD_KILLED:
10097c478bd9Sstevel@tonic-gate 				/*
10107c478bd9Sstevel@tonic-gate 				 * Don't complain if a process was found in
10117c478bd9Sstevel@tonic-gate 				 * the first loop but we broke out of the loop
10127c478bd9Sstevel@tonic-gate 				 * because of the arguments passed to us.
10137c478bd9Sstevel@tonic-gate 				 */
10147c478bd9Sstevel@tonic-gate 				if (proc_gone == 0) {
10157c478bd9Sstevel@tonic-gate 					cmn_err(CE_PANIC,
10167c478bd9Sstevel@tonic-gate 					    "waitid: wrong state on the"
10177c478bd9Sstevel@tonic-gate 					    " p_child list");
10187c478bd9Sstevel@tonic-gate 				} else {
10197c478bd9Sstevel@tonic-gate 					break;
10207c478bd9Sstevel@tonic-gate 				}
10217c478bd9Sstevel@tonic-gate 			}
10227c478bd9Sstevel@tonic-gate 
10237c478bd9Sstevel@tonic-gate 			if (idtype == P_PID)
10247c478bd9Sstevel@tonic-gate 				break;
10257c478bd9Sstevel@tonic-gate 		} while ((cp = cp->p_sibling) != NULL);
10267c478bd9Sstevel@tonic-gate 
10277c478bd9Sstevel@tonic-gate 		/*
10287c478bd9Sstevel@tonic-gate 		 * If we found no interesting processes at all,
10297c478bd9Sstevel@tonic-gate 		 * break out and return ECHILD.
10307c478bd9Sstevel@tonic-gate 		 */
10317c478bd9Sstevel@tonic-gate 		if (found + proc_gone == 0)
10327c478bd9Sstevel@tonic-gate 			break;
10337c478bd9Sstevel@tonic-gate 
10347c478bd9Sstevel@tonic-gate 		if (options & WNOHANG) {
10357c478bd9Sstevel@tonic-gate 			bzero(ip, sizeof (k_siginfo_t));
10367c478bd9Sstevel@tonic-gate 			/*
10377c478bd9Sstevel@tonic-gate 			 * We should set ip->si_signo = SIGCLD,
10387c478bd9Sstevel@tonic-gate 			 * but there is an SVVS test that expects
10397c478bd9Sstevel@tonic-gate 			 * ip->si_signo to be zero in this case.
10407c478bd9Sstevel@tonic-gate 			 */
10417c478bd9Sstevel@tonic-gate 			mutex_exit(&pidlock);
10427c478bd9Sstevel@tonic-gate 			return (0);
10437c478bd9Sstevel@tonic-gate 		}
10447c478bd9Sstevel@tonic-gate 
10457c478bd9Sstevel@tonic-gate 		/*
10467c478bd9Sstevel@tonic-gate 		 * If we found no processes of interest that could
10477c478bd9Sstevel@tonic-gate 		 * change state while we wait, we don't wait at all.
10487c478bd9Sstevel@tonic-gate 		 * Get out with ECHILD according to SVID.
10497c478bd9Sstevel@tonic-gate 		 */
10507c478bd9Sstevel@tonic-gate 		if (found == proc_gone)
10517c478bd9Sstevel@tonic-gate 			break;
10527c478bd9Sstevel@tonic-gate 
10537c478bd9Sstevel@tonic-gate 		if (!cv_wait_sig_swap(&pp->p_cv, &pidlock)) {
10547c478bd9Sstevel@tonic-gate 			mutex_exit(&pidlock);
10557c478bd9Sstevel@tonic-gate 			return (EINTR);
10567c478bd9Sstevel@tonic-gate 		}
10577c478bd9Sstevel@tonic-gate 	}
10587c478bd9Sstevel@tonic-gate 	mutex_exit(&pidlock);
10597c478bd9Sstevel@tonic-gate 	return (ECHILD);
10607c478bd9Sstevel@tonic-gate }
10617c478bd9Sstevel@tonic-gate 
10627c478bd9Sstevel@tonic-gate /*
10637c478bd9Sstevel@tonic-gate  * For implementations that don't require binary compatibility,
10647c478bd9Sstevel@tonic-gate  * the wait system call may be made into a library call to the
10657c478bd9Sstevel@tonic-gate  * waitid system call.
10667c478bd9Sstevel@tonic-gate  */
10677c478bd9Sstevel@tonic-gate int64_t
10687c478bd9Sstevel@tonic-gate wait(void)
10697c478bd9Sstevel@tonic-gate {
10707c478bd9Sstevel@tonic-gate 	int error;
10717c478bd9Sstevel@tonic-gate 	k_siginfo_t info;
10727c478bd9Sstevel@tonic-gate 	rval_t	r;
10737c478bd9Sstevel@tonic-gate 
10747c478bd9Sstevel@tonic-gate 	if (error =  waitid(P_ALL, (id_t)0, &info, WEXITED|WTRAPPED))
10757c478bd9Sstevel@tonic-gate 		return (set_errno(error));
10767c478bd9Sstevel@tonic-gate 	r.r_val1 = info.si_pid;
10777c478bd9Sstevel@tonic-gate 	r.r_val2 = wstat(info.si_code, info.si_status);
10787c478bd9Sstevel@tonic-gate 	return (r.r_vals);
10797c478bd9Sstevel@tonic-gate }
10807c478bd9Sstevel@tonic-gate 
10817c478bd9Sstevel@tonic-gate int
10827c478bd9Sstevel@tonic-gate waitsys(idtype_t idtype, id_t id, siginfo_t *infop, int options)
10837c478bd9Sstevel@tonic-gate {
10847c478bd9Sstevel@tonic-gate 	int error;
10857c478bd9Sstevel@tonic-gate 	k_siginfo_t info;
10867c478bd9Sstevel@tonic-gate 
10877c478bd9Sstevel@tonic-gate 	if (error = waitid(idtype, id, &info, options))
10887c478bd9Sstevel@tonic-gate 		return (set_errno(error));
10897c478bd9Sstevel@tonic-gate 	if (copyout(&info, infop, sizeof (k_siginfo_t)))
10907c478bd9Sstevel@tonic-gate 		return (set_errno(EFAULT));
10917c478bd9Sstevel@tonic-gate 	return (0);
10927c478bd9Sstevel@tonic-gate }
10937c478bd9Sstevel@tonic-gate 
10947c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL
10957c478bd9Sstevel@tonic-gate 
10967c478bd9Sstevel@tonic-gate int
10977c478bd9Sstevel@tonic-gate waitsys32(idtype_t idtype, id_t id, siginfo_t *infop, int options)
10987c478bd9Sstevel@tonic-gate {
10997c478bd9Sstevel@tonic-gate 	int error;
11007c478bd9Sstevel@tonic-gate 	k_siginfo_t info;
11017c478bd9Sstevel@tonic-gate 	siginfo32_t info32;
11027c478bd9Sstevel@tonic-gate 
11037c478bd9Sstevel@tonic-gate 	if (error = waitid(idtype, id, &info, options))
11047c478bd9Sstevel@tonic-gate 		return (set_errno(error));
11057c478bd9Sstevel@tonic-gate 	siginfo_kto32(&info, &info32);
11067c478bd9Sstevel@tonic-gate 	if (copyout(&info32, infop, sizeof (info32)))
11077c478bd9Sstevel@tonic-gate 		return (set_errno(EFAULT));
11087c478bd9Sstevel@tonic-gate 	return (0);
11097c478bd9Sstevel@tonic-gate }
11107c478bd9Sstevel@tonic-gate 
11117c478bd9Sstevel@tonic-gate #endif	/* _SYSCALL32_IMPL */
11127c478bd9Sstevel@tonic-gate 
11137c478bd9Sstevel@tonic-gate void
11147c478bd9Sstevel@tonic-gate proc_detach(proc_t *p)
11157c478bd9Sstevel@tonic-gate {
11167c478bd9Sstevel@tonic-gate 	proc_t *q;
11177c478bd9Sstevel@tonic-gate 
11187c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&pidlock));
11197c478bd9Sstevel@tonic-gate 
11207c478bd9Sstevel@tonic-gate 	q = p->p_parent;
11217c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL);
11227c478bd9Sstevel@tonic-gate 
11237c478bd9Sstevel@tonic-gate 	/*
11247c478bd9Sstevel@tonic-gate 	 * Take it off the newstate list of its parent
11257c478bd9Sstevel@tonic-gate 	 */
11267c478bd9Sstevel@tonic-gate 	delete_ns(q, p);
11277c478bd9Sstevel@tonic-gate 
11287c478bd9Sstevel@tonic-gate 	if (q->p_child == p) {
11297c478bd9Sstevel@tonic-gate 		q->p_child = p->p_sibling;
11307c478bd9Sstevel@tonic-gate 		/*
11317c478bd9Sstevel@tonic-gate 		 * If the parent has no children, it better not
11327c478bd9Sstevel@tonic-gate 		 * have any with new states either!
11337c478bd9Sstevel@tonic-gate 		 */
11347c478bd9Sstevel@tonic-gate 		ASSERT(q->p_child ? 1 : q->p_child_ns == NULL);
11357c478bd9Sstevel@tonic-gate 	}
11367c478bd9Sstevel@tonic-gate 
11377c478bd9Sstevel@tonic-gate 	if (p->p_sibling) {
11387c478bd9Sstevel@tonic-gate 		p->p_sibling->p_psibling = p->p_psibling;
11397c478bd9Sstevel@tonic-gate 	}
11407c478bd9Sstevel@tonic-gate 
11417c478bd9Sstevel@tonic-gate 	if (p->p_psibling) {
11427c478bd9Sstevel@tonic-gate 		p->p_psibling->p_sibling = p->p_sibling;
11437c478bd9Sstevel@tonic-gate 	}
11447c478bd9Sstevel@tonic-gate }
11457c478bd9Sstevel@tonic-gate 
11467c478bd9Sstevel@tonic-gate /*
11477c478bd9Sstevel@tonic-gate  * Remove zombie children from the process table.
11487c478bd9Sstevel@tonic-gate  */
11497c478bd9Sstevel@tonic-gate void
11507c478bd9Sstevel@tonic-gate freeproc(proc_t *p)
11517c478bd9Sstevel@tonic-gate {
11527c478bd9Sstevel@tonic-gate 	proc_t *q;
11537c478bd9Sstevel@tonic-gate 
11547c478bd9Sstevel@tonic-gate 	ASSERT(p->p_stat == SZOMB);
11557c478bd9Sstevel@tonic-gate 	ASSERT(p->p_tlist == NULL);
11567c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&pidlock));
11577c478bd9Sstevel@tonic-gate 
11587c478bd9Sstevel@tonic-gate 	sigdelq(p, NULL, 0);
11597c478bd9Sstevel@tonic-gate 	if (p->p_killsqp) {
11607c478bd9Sstevel@tonic-gate 		siginfofree(p->p_killsqp);
11617c478bd9Sstevel@tonic-gate 		p->p_killsqp = NULL;
11627c478bd9Sstevel@tonic-gate 	}
11637c478bd9Sstevel@tonic-gate 
11647c478bd9Sstevel@tonic-gate 	prfree(p);	/* inform /proc */
11657c478bd9Sstevel@tonic-gate 
11667c478bd9Sstevel@tonic-gate 	/*
11677c478bd9Sstevel@tonic-gate 	 * Don't free the init processes.
11687c478bd9Sstevel@tonic-gate 	 * Other dying processes will access it.
11697c478bd9Sstevel@tonic-gate 	 */
11707c478bd9Sstevel@tonic-gate 	if (p == proc_init)
11717c478bd9Sstevel@tonic-gate 		return;
11727c478bd9Sstevel@tonic-gate 
11737c478bd9Sstevel@tonic-gate 
11747c478bd9Sstevel@tonic-gate 	/*
11757c478bd9Sstevel@tonic-gate 	 * We wait until now to free the cred structure because a
11767c478bd9Sstevel@tonic-gate 	 * zombie process's credentials may be examined by /proc.
11777c478bd9Sstevel@tonic-gate 	 * No cred locking needed because there are no threads at this point.
11787c478bd9Sstevel@tonic-gate 	 */
11797c478bd9Sstevel@tonic-gate 	upcount_dec(crgetruid(p->p_cred), crgetzoneid(p->p_cred));
11807c478bd9Sstevel@tonic-gate 	crfree(p->p_cred);
11817c478bd9Sstevel@tonic-gate 	if (p->p_corefile != NULL) {
11827c478bd9Sstevel@tonic-gate 		corectl_path_rele(p->p_corefile);
11837c478bd9Sstevel@tonic-gate 		p->p_corefile = NULL;
11847c478bd9Sstevel@tonic-gate 	}
11857c478bd9Sstevel@tonic-gate 	if (p->p_content != NULL) {
11867c478bd9Sstevel@tonic-gate 		corectl_content_rele(p->p_content);
11877c478bd9Sstevel@tonic-gate 		p->p_content = NULL;
11887c478bd9Sstevel@tonic-gate 	}
11897c478bd9Sstevel@tonic-gate 
11907c478bd9Sstevel@tonic-gate 	if (p->p_nextofkin && !((p->p_nextofkin->p_flag & SNOWAIT) ||
11917c478bd9Sstevel@tonic-gate 	    (PTOU(p->p_nextofkin)->u_signal[SIGCLD - 1] == SIG_IGN))) {
11927c478bd9Sstevel@tonic-gate 		/*
11937c478bd9Sstevel@tonic-gate 		 * This should still do the right thing since p_utime/stime
11947c478bd9Sstevel@tonic-gate 		 * get set to the correct value on process exit, so it
11957c478bd9Sstevel@tonic-gate 		 * should get properly updated
11967c478bd9Sstevel@tonic-gate 		 */
11977c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cutime += p->p_utime;
11987c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cstime += p->p_stime;
11997c478bd9Sstevel@tonic-gate 
12007c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_USER] += p->p_acct[LMS_USER];
12017c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_SYSTEM] += p->p_acct[LMS_SYSTEM];
12027c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_TRAP] += p->p_acct[LMS_TRAP];
12037c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_TFAULT] += p->p_acct[LMS_TFAULT];
12047c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_DFAULT] += p->p_acct[LMS_DFAULT];
12057c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_KFAULT] += p->p_acct[LMS_KFAULT];
12067c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_USER_LOCK]
12077c478bd9Sstevel@tonic-gate 		    += p->p_acct[LMS_USER_LOCK];
12087c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_SLEEP] += p->p_acct[LMS_SLEEP];
12097c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_WAIT_CPU]
12107c478bd9Sstevel@tonic-gate 		    += p->p_acct[LMS_WAIT_CPU];
12117c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cacct[LMS_STOPPED] += p->p_acct[LMS_STOPPED];
12127c478bd9Sstevel@tonic-gate 
12137c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.minflt	+= p->p_ru.minflt;
12147c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.majflt	+= p->p_ru.majflt;
12157c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.nswap	+= p->p_ru.nswap;
12167c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.inblock	+= p->p_ru.inblock;
12177c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.oublock	+= p->p_ru.oublock;
12187c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.msgsnd	+= p->p_ru.msgsnd;
12197c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.msgrcv	+= p->p_ru.msgrcv;
12207c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.nsignals	+= p->p_ru.nsignals;
12217c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.nvcsw	+= p->p_ru.nvcsw;
12227c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.nivcsw	+= p->p_ru.nivcsw;
12237c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.sysc	+= p->p_ru.sysc;
12247c478bd9Sstevel@tonic-gate 		p->p_nextofkin->p_cru.ioch	+= p->p_ru.ioch;
12257c478bd9Sstevel@tonic-gate 
12267c478bd9Sstevel@tonic-gate 	}
12277c478bd9Sstevel@tonic-gate 
12287c478bd9Sstevel@tonic-gate 	q = p->p_nextofkin;
12297c478bd9Sstevel@tonic-gate 	if (q && q->p_orphan == p)
12307c478bd9Sstevel@tonic-gate 		q->p_orphan = p->p_nextorph;
12317c478bd9Sstevel@tonic-gate 	else if (q) {
12327c478bd9Sstevel@tonic-gate 		for (q = q->p_orphan; q; q = q->p_nextorph)
12337c478bd9Sstevel@tonic-gate 			if (q->p_nextorph == p)
12347c478bd9Sstevel@tonic-gate 				break;
12357c478bd9Sstevel@tonic-gate 		ASSERT(q && q->p_nextorph == p);
12367c478bd9Sstevel@tonic-gate 		q->p_nextorph = p->p_nextorph;
12377c478bd9Sstevel@tonic-gate 	}
12387c478bd9Sstevel@tonic-gate 
12397c478bd9Sstevel@tonic-gate 	proc_detach(p);
12407c478bd9Sstevel@tonic-gate 	pid_exit(p);	/* frees pid and proc structure */
12417c478bd9Sstevel@tonic-gate }
12427c478bd9Sstevel@tonic-gate 
12437c478bd9Sstevel@tonic-gate /*
12447c478bd9Sstevel@tonic-gate  * Delete process "child" from the newstate list of process "parent"
12457c478bd9Sstevel@tonic-gate  */
12467c478bd9Sstevel@tonic-gate void
12477c478bd9Sstevel@tonic-gate delete_ns(proc_t *parent, proc_t *child)
12487c478bd9Sstevel@tonic-gate {
12497c478bd9Sstevel@tonic-gate 	proc_t **ns;
12507c478bd9Sstevel@tonic-gate 
12517c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&pidlock));
12527c478bd9Sstevel@tonic-gate 	ASSERT(child->p_parent == parent);
12537c478bd9Sstevel@tonic-gate 	for (ns = &parent->p_child_ns; *ns != NULL; ns = &(*ns)->p_sibling_ns) {
12547c478bd9Sstevel@tonic-gate 		if (*ns == child) {
12557c478bd9Sstevel@tonic-gate 
12567c478bd9Sstevel@tonic-gate 			ASSERT((*ns)->p_parent == parent);
12577c478bd9Sstevel@tonic-gate 
12587c478bd9Sstevel@tonic-gate 			*ns = child->p_sibling_ns;
12597c478bd9Sstevel@tonic-gate 			child->p_sibling_ns = NULL;
12607c478bd9Sstevel@tonic-gate 			return;
12617c478bd9Sstevel@tonic-gate 		}
12627c478bd9Sstevel@tonic-gate 	}
12637c478bd9Sstevel@tonic-gate }
12647c478bd9Sstevel@tonic-gate 
12657c478bd9Sstevel@tonic-gate /*
12667c478bd9Sstevel@tonic-gate  * Add process "child" to the new state list of process "parent"
12677c478bd9Sstevel@tonic-gate  */
12687c478bd9Sstevel@tonic-gate void
12697c478bd9Sstevel@tonic-gate add_ns(proc_t *parent, proc_t *child)
12707c478bd9Sstevel@tonic-gate {
12717c478bd9Sstevel@tonic-gate 	ASSERT(child->p_sibling_ns == NULL);
12727c478bd9Sstevel@tonic-gate 	child->p_sibling_ns = parent->p_child_ns;
12737c478bd9Sstevel@tonic-gate 	parent->p_child_ns = child;
12747c478bd9Sstevel@tonic-gate }
1275