Home | History | Annotate | Download | only in os
      1 /*
      2  * CDDL HEADER START
      3  *
      4  * The contents of this file are subject to the terms of the
      5  * Common Development and Distribution License (the "License").
      6  * You may not use this file except in compliance with the License.
      7  *
      8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
      9  * or http://www.opensolaris.org/os/licensing.
     10  * See the License for the specific language governing permissions
     11  * and limitations under the License.
     12  *
     13  * When distributing Covered Code, include this CDDL HEADER in each
     14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
     15  * If applicable, add the following below this CDDL HEADER, with the
     16  * fields enclosed by brackets "[]" replaced with your own identifying
     17  * information: Portions Copyright [yyyy] [name of copyright owner]
     18  *
     19  * CDDL HEADER END
     20  */
     21 
     22 /*
     23  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
     24  * Use is subject to license terms.
     25  */
     26 
     27 /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
     28 
     29 #include <sys/types.h>
     30 #include <sys/param.h>
     31 #include <sys/sysmacros.h>
     32 #include <sys/systm.h>
     33 #include <sys/cred.h>
     34 #include <sys/user.h>
     35 #include <sys/errno.h>
     36 #include <sys/proc.h>
     37 #include <sys/ucontext.h>
     38 #include <sys/procfs.h>
     39 #include <sys/vnode.h>
     40 #include <sys/acct.h>
     41 #include <sys/var.h>
     42 #include <sys/cmn_err.h>
     43 #include <sys/debug.h>
     44 #include <sys/wait.h>
     45 #include <sys/siginfo.h>
     46 #include <sys/procset.h>
     47 #include <sys/class.h>
     48 #include <sys/file.h>
     49 #include <sys/session.h>
     50 #include <sys/kmem.h>
     51 #include <sys/vtrace.h>
     52 #include <sys/prsystm.h>
     53 #include <sys/ipc.h>
     54 #include <sys/sem_impl.h>
     55 #include <c2/audit.h>
     56 #include <sys/aio_impl.h>
     57 #include <vm/as.h>
     58 #include <sys/poll.h>
     59 #include <sys/door.h>
     60 #include <sys/lwpchan_impl.h>
     61 #include <sys/utrap.h>
     62 #include <sys/task.h>
     63 #include <sys/exacct.h>
     64 #include <sys/cyclic.h>
     65 #include <sys/schedctl.h>
     66 #include <sys/rctl.h>
     67 #include <sys/contract_impl.h>
     68 #include <sys/contract/process_impl.h>
     69 #include <sys/list.h>
     70 #include <sys/dtrace.h>
     71 #include <sys/pool.h>
     72 #include <sys/sdt.h>
     73 #include <sys/corectl.h>
     74 #include <sys/brand.h>
     75 #include <sys/libc_kernel.h>
     76 
     77 /*
     78  * convert code/data pair into old style wait status
     79  */
     80 int
     81 wstat(int code, int data)
     82 {
     83 	int stat = (data & 0377);
     84 
     85 	switch (code) {
     86 	case CLD_EXITED:
     87 		stat <<= 8;
     88 		break;
     89 	case CLD_DUMPED:
     90 		stat |= WCOREFLG;
     91 		break;
     92 	case CLD_KILLED:
     93 		break;
     94 	case CLD_TRAPPED:
     95 	case CLD_STOPPED:
     96 		stat <<= 8;
     97 		stat |= WSTOPFLG;
     98 		break;
     99 	case CLD_CONTINUED:
    100 		stat = WCONTFLG;
    101 		break;
    102 	default:
    103 		cmn_err(CE_PANIC, "wstat: bad code");
    104 		/* NOTREACHED */
    105 	}
    106 	return (stat);
    107 }
    108 
    109 static char *
    110 exit_reason(char *buf, size_t bufsz, int what, int why)
    111 {
    112 	switch (why) {
    113 	case CLD_EXITED:
    114 		(void) snprintf(buf, bufsz, "exited with status %d", what);
    115 		break;
    116 	case CLD_KILLED:
    117 		(void) snprintf(buf, bufsz, "exited on fatal signal %d", what);
    118 		break;
    119 	case CLD_DUMPED:
    120 		(void) snprintf(buf, bufsz, "core dumped on signal %d", what);
    121 		break;
    122 	default:
    123 		(void) snprintf(buf, bufsz, "encountered unknown error "
    124 		    "(%d, %d)", why, what);
    125 		break;
    126 	}
    127 
    128 	return (buf);
    129 }
    130 
    131 /*
    132  * exit system call: pass back caller's arg.
    133  */
    134 void
    135 rexit(int rval)
    136 {
    137 	exit(CLD_EXITED, rval);
    138 }
    139 
    140 /*
    141  * Called by proc_exit() when a zone's init exits, presumably because
    142  * it failed.  As long as the given zone is still in the "running"
    143  * state, we will re-exec() init, but first we need to reset things
    144  * which are usually inherited across exec() but will break init's
    145  * assumption that it is being exec()'d from a virgin process.  Most
    146  * importantly this includes closing all file descriptors (exec only
    147  * closes those marked close-on-exec) and resetting signals (exec only
    148  * resets handled signals, and we need to clear any signals which
    149  * killed init).  Anything else that exec(2) says would be inherited,
    150  * but would affect the execution of init, needs to be reset.
    151  */
    152 static int
    153 restart_init(int what, int why)
    154 {
    155 	kthread_t *t = curthread;
    156 	klwp_t *lwp = ttolwp(t);
    157 	proc_t *p = ttoproc(t);
    158 	user_t *up = PTOU(p);
    159 
    160 	vnode_t *oldcd, *oldrd;
    161 	int i, err;
    162 	char reason_buf[64];
    163 
    164 	/*
    165 	 * Let zone admin (and global zone admin if this is for a non-global
    166 	 * zone) know that init has failed and will be restarted.
    167 	 */
    168 	zcmn_err(p->p_zone->zone_id, CE_WARN,
    169 	    "init(1M) %s: restarting automatically",
    170 	    exit_reason(reason_buf, sizeof (reason_buf), what, why));
    171 
    172 	if (!INGLOBALZONE(p)) {
    173 		cmn_err(CE_WARN, "init(1M) for zone %s (pid %d) %s: "
    174 		    "restarting automatically",
    175 		    p->p_zone->zone_name, p->p_pid, reason_buf);
    176 	}
    177 
    178 	/*
    179 	 * Remove any fpollinfo_t's for this (last) thread from our file
    180 	 * descriptors so closeall() can ASSERT() that they're all gone.
    181 	 * Then close all open file descriptors in the process.
    182 	 */
    183 	pollcleanup();
    184 	closeall(P_FINFO(p));
    185 
    186 	/*
    187 	 * Grab p_lock and begin clearing miscellaneous global process
    188 	 * state that needs to be reset before we exec the new init(1M).
    189 	 */
    190 
    191 	mutex_enter(&p->p_lock);
    192 	prbarrier(p);
    193 
    194 	p->p_flag &= ~(SKILLED | SEXTKILLED | SEXITING | SDOCORE);
    195 	up->u_cmask = CMASK;
    196 
    197 	sigemptyset(&t->t_hold);
    198 	sigemptyset(&t->t_sig);
    199 	sigemptyset(&t->t_extsig);
    200 
    201 	sigemptyset(&p->p_sig);
    202 	sigemptyset(&p->p_extsig);
    203 
    204 	sigdelq(p, t, 0);
    205 	sigdelq(p, NULL, 0);
    206 
    207 	if (p->p_killsqp) {
    208 		siginfofree(p->p_killsqp);
    209 		p->p_killsqp = NULL;
    210 	}
    211 
    212 	/*
    213 	 * Reset any signals that are ignored back to the default disposition.
    214 	 * Other u_signal members will be cleared when exec calls sigdefault().
    215 	 */
    216 	for (i = 1; i < NSIG; i++) {
    217 		if (up->u_signal[i - 1] == SIG_IGN) {
    218 			up->u_signal[i - 1] = SIG_DFL;
    219 			sigemptyset(&up->u_sigmask[i - 1]);
    220 		}
    221 	}
    222 
    223 	/*
    224 	 * Clear the current signal, any signal info associated with it, and
    225 	 * any signal information from contracts and/or contract templates.
    226 	 */
    227 	lwp->lwp_cursig = 0;
    228 	lwp->lwp_extsig = 0;
    229 	if (lwp->lwp_curinfo != NULL) {
    230 		siginfofree(lwp->lwp_curinfo);
    231 		lwp->lwp_curinfo = NULL;
    232 	}
    233 	lwp_ctmpl_clear(lwp);
    234 
    235 	/*
    236 	 * Reset both the process root directory and the current working
    237 	 * directory to the root of the zone just as we do during boot.
    238 	 */
    239 	VN_HOLD(p->p_zone->zone_rootvp);
    240 	oldrd = up->u_rdir;
    241 	up->u_rdir = p->p_zone->zone_rootvp;
    242 
    243 	VN_HOLD(p->p_zone->zone_rootvp);
    244 	oldcd = up->u_cdir;
    245 	up->u_cdir = p->p_zone->zone_rootvp;
    246 
    247 	if (up->u_cwd != NULL) {
    248 		refstr_rele(up->u_cwd);
    249 		up->u_cwd = NULL;
    250 	}
    251 
    252 	mutex_exit(&p->p_lock);
    253 
    254 	if (oldrd != NULL)
    255 		VN_RELE(oldrd);
    256 	if (oldcd != NULL)
    257 		VN_RELE(oldcd);
    258 
    259 	/* Free the controlling tty.  (freectty() always assumes curproc.) */
    260 	ASSERT(p == curproc);
    261 	(void) freectty(B_TRUE);
    262 
    263 	/*
    264 	 * Now exec() the new init(1M) on top of the current process.  If we
    265 	 * succeed, the caller will treat this like a successful system call.
    266 	 * If we fail, we issue messages and the caller will proceed with exit.
    267 	 */
    268 	err = exec_init(p->p_zone->zone_initname, NULL);
    269 
    270 	if (err == 0)
    271 		return (0);
    272 
    273 	zcmn_err(p->p_zone->zone_id, CE_WARN,
    274 	    "failed to restart init(1M) (err=%d): system reboot required", err);
    275 
    276 	if (!INGLOBALZONE(p)) {
    277 		cmn_err(CE_WARN, "failed to restart init(1M) for zone %s "
    278 		    "(pid %d, err=%d): zoneadm(1M) boot required",
    279 		    p->p_zone->zone_name, p->p_pid, err);
    280 	}
    281 
    282 	return (-1);
    283 }
    284 
    285 /*
    286  * Release resources.
    287  * Enter zombie state.
    288  * Wake up parent and init processes,
    289  * and dispose of children.
    290  */
    291 void
    292 exit(int why, int what)
    293 {
    294 	/*
    295 	 * If proc_exit() fails, then some other lwp in the process
    296 	 * got there first.  We just have to call lwp_exit() to allow
    297 	 * the other lwp to finish exiting the process.  Otherwise we're
    298 	 * restarting init, and should return.
    299 	 */
    300 	if (proc_exit(why, what) != 0) {
    301 		mutex_enter(&curproc->p_lock);
    302 		ASSERT(curproc->p_flag & SEXITLWPS);
    303 		lwp_exit();
    304 		/* NOTREACHED */
    305 	}
    306 }
    307 
    308 /*
    309  * Set the SEXITING flag on the process, after making sure /proc does
    310  * not have it locked.  This is done in more places than proc_exit(),
    311  * so it is a separate function.
    312  */
    313 void
    314 proc_is_exiting(proc_t *p)
    315 {
    316 	mutex_enter(&p->p_lock);
    317 	prbarrier(p);
    318 	p->p_flag |= SEXITING;
    319 	mutex_exit(&p->p_lock);
    320 }
    321 
    322 /*
    323  * Return value:
    324  *   1 - exitlwps() failed, call (or continue) lwp_exit()
    325  *   0 - restarting init.  Return through system call path
    326  */
    327 int
    328 proc_exit(int why, int what)
    329 {
    330 	kthread_t *t = curthread;
    331 	klwp_t *lwp = ttolwp(t);
    332 	proc_t *p = ttoproc(t);
    333 	zone_t *z = p->p_zone;
    334 	timeout_id_t tmp_id;
    335 	int rv;
    336 	proc_t *q;
    337 	task_t *tk;
    338 	vnode_t *exec_vp, *execdir_vp, *cdir, *rdir;
    339 	sigqueue_t *sqp;
    340 	lwpdir_t *lwpdir;
    341 	uint_t lwpdir_sz;
    342 	tidhash_t *tidhash;
    343 	uint_t tidhash_sz;
    344 	ret_tidhash_t *ret_tidhash;
    345 	refstr_t *cwd;
    346 	hrtime_t hrutime, hrstime;
    347 	int evaporate;
    348 
    349 	/*
    350 	 * Stop and discard the process's lwps except for the current one,
    351 	 * unless some other lwp beat us to it.  If exitlwps() fails then
    352 	 * return and the calling lwp will call (or continue in) lwp_exit().
    353 	 */
    354 	proc_is_exiting(p);
    355 	if (exitlwps(0) != 0)
    356 		return (1);
    357 
    358 	mutex_enter(&p->p_lock);
    359 	if (p->p_ttime > 0) {
    360 		/*
    361 		 * Account any remaining ticks charged to this process
    362 		 * on its way out.
    363 		 */
    364 		(void) task_cpu_time_incr(p->p_task, p->p_ttime);
    365 		p->p_ttime = 0;
    366 	}
    367 	mutex_exit(&p->p_lock);
    368 
    369 	DTRACE_PROC(lwp__exit);
    370 	DTRACE_PROC1(exit, int, why);
    371 
    372 	/*
    373 	 * Will perform any brand specific proc exit processing, since this
    374 	 * is always the last lwp, will also perform lwp_exit and free brand
    375 	 * data
    376 	 */
    377 	if (PROC_IS_BRANDED(p)) {
    378 		lwp_detach_brand_hdlrs(lwp);
    379 		brand_clearbrand(p);
    380 	}
    381 
    382 	/*
    383 	 * Don't let init exit unless zone_start_init() failed its exec, or
    384 	 * we are shutting down the zone or the machine.
    385 	 *
    386 	 * Since we are single threaded, we don't need to lock the
    387 	 * following accesses to zone_proc_initpid.
    388 	 */
    389 	if (p->p_pid == z->zone_proc_initpid) {
    390 		if (z->zone_boot_err == 0 &&
    391 		    zone_status_get(z) < ZONE_IS_SHUTTING_DOWN &&
    392 		    zone_status_get(global_zone) < ZONE_IS_SHUTTING_DOWN &&
    393 		    z->zone_restart_init == B_TRUE &&
    394 		    restart_init(what, why) == 0)
    395 			return (0);
    396 		/*
    397 		 * Since we didn't or couldn't restart init, we clear
    398 		 * the zone's init state and proceed with exit
    399 		 * processing.
    400 		 */
    401 		z->zone_proc_initpid = -1;
    402 	}
    403 
    404 	lwp_pcb_exit();
    405 
    406 	/*
    407 	 * Allocate a sigqueue now, before we grab locks.
    408 	 * It will be given to sigcld(), below.
    409 	 * Special case:  If we will be making the process disappear
    410 	 * without a trace because it is either:
    411 	 *	* an exiting SSYS process, or
    412 	 *	* a posix_spawn() vfork child who requests it,
    413 	 * we don't bother to allocate a useless sigqueue.
    414 	 */
    415 	evaporate = (p->p_flag & SSYS) || ((p->p_flag & SVFORK) &&
    416 	    why == CLD_EXITED && what == _EVAPORATE);
    417 	if (!evaporate)
    418 		sqp = kmem_zalloc(sizeof (sigqueue_t), KM_SLEEP);
    419 
    420 	/*
    421 	 * revoke any doors created by the process.
    422 	 */
    423 	if (p->p_door_list)
    424 		door_exit();
    425 
    426 	/*
    427 	 * Release schedctl data structures.
    428 	 */
    429 	if (p->p_pagep)
    430 		schedctl_proc_cleanup();
    431 
    432 	/*
    433 	 * make sure all pending kaio has completed.
    434 	 */
    435 	if (p->p_aio)
    436 		aio_cleanup_exit();
    437 
    438 	/*
    439 	 * discard the lwpchan cache.
    440 	 */
    441 	if (p->p_lcp != NULL)
    442 		lwpchan_destroy_cache(0);
    443 
    444 	/*
    445 	 * Clean up any DTrace helper actions or probes for the process.
    446 	 */
    447 	if (p->p_dtrace_helpers != NULL) {
    448 		ASSERT(dtrace_helpers_cleanup != NULL);
    449 		(*dtrace_helpers_cleanup)();
    450 	}
    451 
    452 	/* untimeout the realtime timers */
    453 	if (p->p_itimer != NULL)
    454 		timer_exit();
    455 
    456 	if ((tmp_id = p->p_alarmid) != 0) {
    457 		p->p_alarmid = 0;
    458 		(void) untimeout(tmp_id);
    459 	}
    460 
    461 	/*
    462 	 * Remove any fpollinfo_t's for this (last) thread from our file
    463 	 * descriptors so closeall() can ASSERT() that they're all gone.
    464 	 */
    465 	pollcleanup();
    466 
    467 	if (p->p_rprof_cyclic != CYCLIC_NONE) {
    468 		mutex_enter(&cpu_lock);
    469 		cyclic_remove(p->p_rprof_cyclic);
    470 		mutex_exit(&cpu_lock);
    471 	}
    472 
    473 	mutex_enter(&p->p_lock);
    474 
    475 	/*
    476 	 * Clean up any DTrace probes associated with this process.
    477 	 */
    478 	if (p->p_dtrace_probes) {
    479 		ASSERT(dtrace_fasttrap_exit_ptr != NULL);
    480 		dtrace_fasttrap_exit_ptr(p);
    481 	}
    482 
    483 	while ((tmp_id = p->p_itimerid) != 0) {
    484 		p->p_itimerid = 0;
    485 		mutex_exit(&p->p_lock);
    486 		(void) untimeout(tmp_id);
    487 		mutex_enter(&p->p_lock);
    488 	}
    489 
    490 	lwp_cleanup();
    491 
    492 	/*
    493 	 * We are about to exit; prevent our resource associations from
    494 	 * being changed.
    495 	 */
    496 	pool_barrier_enter();
    497 
    498 	/*
    499 	 * Block the process against /proc now that we have really
    500 	 * acquired p->p_lock (to manipulate p_tlist at least).
    501 	 */
    502 	prbarrier(p);
    503 
    504 #ifdef	SUN_SRC_COMPAT
    505 	if (code == CLD_KILLED)
    506 		u.u_acflag |= AXSIG;
    507 #endif
    508 	sigfillset(&p->p_ignore);
    509 	sigemptyset(&p->p_siginfo);
    510 	sigemptyset(&p->p_sig);
    511 	sigemptyset(&p->p_extsig);
    512 	sigemptyset(&t->t_sig);
    513 	sigemptyset(&t->t_extsig);
    514 	sigemptyset(&p->p_sigmask);
    515 	sigdelq(p, t, 0);
    516 	lwp->lwp_cursig = 0;
    517 	lwp->lwp_extsig = 0;
    518 	p->p_flag &= ~(SKILLED | SEXTKILLED);
    519 	if (lwp->lwp_curinfo) {
    520 		siginfofree(lwp->lwp_curinfo);
    521 		lwp->lwp_curinfo = NULL;
    522 	}
    523 
    524 	t->t_proc_flag |= TP_LWPEXIT;
    525 	ASSERT(p->p_lwpcnt == 1 && p->p_zombcnt == 0);
    526 	prlwpexit(t);		/* notify /proc */
    527 	lwp_hash_out(p, t->t_tid);
    528 	prexit(p);
    529 
    530 	p->p_lwpcnt = 0;
    531 	p->p_tlist = NULL;
    532 	sigqfree(p);
    533 	term_mstate(t);
    534 	p->p_mterm = gethrtime();
    535 
    536 	exec_vp = p->p_exec;
    537 	execdir_vp = p->p_execdir;
    538 	p->p_exec = NULLVP;
    539 	p->p_execdir = NULLVP;
    540 	mutex_exit(&p->p_lock);
    541 	if (exec_vp)
    542 		VN_RELE(exec_vp);
    543 	if (execdir_vp)
    544 		VN_RELE(execdir_vp);
    545 
    546 	pr_free_watched_pages(p);
    547 
    548 	closeall(P_FINFO(p));
    549 
    550 	/* Free the controlling tty.  (freectty() always assumes curproc.) */
    551 	ASSERT(p == curproc);
    552 	(void) freectty(B_TRUE);
    553 
    554 #if defined(__sparc)
    555 	if (p->p_utraps != NULL)
    556 		utrap_free(p);
    557 #endif
    558 	if (p->p_semacct)			/* IPC semaphore exit */
    559 		semexit(p);
    560 	rv = wstat(why, what);
    561 
    562 	acct(rv & 0xff);
    563 	exacct_commit_proc(p, rv);
    564 
    565 	/*
    566 	 * Release any resources associated with C2 auditing
    567 	 */
    568 	if (audit_active) {
    569 		/*
    570 		 * audit exit system call
    571 		 */
    572 		audit_exit(why, what);
    573 	}
    574 
    575 	/*
    576 	 * Free address space.
    577 	 */
    578 	relvm();
    579 
    580 	/*
    581 	 * Release held contracts.
    582 	 */
    583 	contract_exit(p);
    584 
    585 	/*
    586 	 * Depart our encapsulating process contract.
    587 	 */
    588 	if ((p->p_flag & SSYS) == 0) {
    589 		ASSERT(p->p_ct_process);
    590 		contract_process_exit(p->p_ct_process, p, rv);
    591 	}
    592 
    593 	/*
    594 	 * Remove pool association, and block if requested by pool_do_bind.
    595 	 */
    596 	mutex_enter(&p->p_lock);
    597 	ASSERT(p->p_pool->pool_ref > 0);
    598 	atomic_add_32(&p->p_pool->pool_ref, -1);
    599 	p->p_pool = pool_default;
    600 	/*
    601 	 * Now that our address space has been freed and all other threads
    602 	 * in this process have exited, set the PEXITED pool flag.  This
    603 	 * tells the pools subsystems to ignore this process if it was
    604 	 * requested to rebind this process to a new pool.
    605 	 */
    606 	p->p_poolflag |= PEXITED;
    607 	pool_barrier_exit();
    608 	mutex_exit(&p->p_lock);
    609 
    610 	mutex_enter(&pidlock);
    611 
    612 	/*
    613 	 * Delete this process from the newstate list of its parent. We
    614 	 * will put it in the right place in the sigcld in the end.
    615 	 */
    616 	delete_ns(p->p_parent, p);
    617 
    618 	/*
    619 	 * Reassign the orphans to the next of kin.
    620 	 * Don't rearrange init's orphanage.
    621 	 */
    622 	if ((q = p->p_orphan) != NULL && p != proc_init) {
    623 
    624 		proc_t *nokp = p->p_nextofkin;
    625 
    626 		for (;;) {
    627 			q->p_nextofkin = nokp;
    628 			if (q->p_nextorph == NULL)
    629 				break;
    630 			q = q->p_nextorph;
    631 		}
    632 		q->p_nextorph = nokp->p_orphan;
    633 		nokp->p_orphan = p->p_orphan;
    634 		p->p_orphan = NULL;
    635 	}
    636 
    637 	/*
    638 	 * Reassign the children to init.
    639 	 * Don't try to assign init's children to init.
    640 	 */
    641 	if ((q = p->p_child) != NULL && p != proc_init) {
    642 		struct proc	*np;
    643 		struct proc	*initp = proc_init;
    644 		boolean_t	setzonetop = B_FALSE;
    645 
    646 		if (!INGLOBALZONE(curproc))
    647 			setzonetop = B_TRUE;
    648 
    649 		pgdetach(p);
    650 
    651 		do {
    652 			np = q->p_sibling;
    653 			/*
    654 			 * Delete it from its current parent new state
    655 			 * list and add it to init new state list
    656 			 */
    657 			delete_ns(q->p_parent, q);
    658 
    659 			q->p_ppid = 1;
    660 			q->p_pidflag &= ~(CLDNOSIGCHLD | CLDWAITPID);
    661 			if (setzonetop) {
    662 				mutex_enter(&q->p_lock);
    663 				q->p_flag |= SZONETOP;
    664 				mutex_exit(&q->p_lock);
    665 			}
    666 			q->p_parent = initp;
    667 
    668 			/*
    669 			 * Since q will be the first child,
    670 			 * it will not have a previous sibling.
    671 			 */
    672 			q->p_psibling = NULL;
    673 			if (initp->p_child) {
    674 				initp->p_child->p_psibling = q;
    675 			}
    676 			q->p_sibling = initp->p_child;
    677 			initp->p_child = q;
    678 			if (q->p_proc_flag & P_PR_PTRACE) {
    679 				mutex_enter(&q->p_lock);
    680 				sigtoproc(q, NULL, SIGKILL);
    681 				mutex_exit(&q->p_lock);
    682 			}
    683 			/*
    684 			 * sigcld() will add the child to parents
    685 			 * newstate list.
    686 			 */
    687 			if (q->p_stat == SZOMB)
    688 				sigcld(q, NULL);
    689 		} while ((q = np) != NULL);
    690 
    691 		p->p_child = NULL;
    692 		ASSERT(p->p_child_ns == NULL);
    693 	}
    694 
    695 	TRACE_1(TR_FAC_PROC, TR_PROC_EXIT, "proc_exit: %p", p);
    696 
    697 	mutex_enter(&p->p_lock);
    698 	CL_EXIT(curthread); /* tell the scheduler that curthread is exiting */
    699 
    700 	/*
    701 	 * Have our task accummulate our resource usage data before they
    702 	 * become contaminated by p_cacct etc., and before we renounce
    703 	 * membership of the task.
    704 	 *
    705 	 * We do this regardless of whether or not task accounting is active.
    706 	 * This is to avoid having nonsense data reported for this task if
    707 	 * task accounting is subsequently enabled. The overhead is minimal;
    708 	 * by this point, this process has accounted for the usage of all its
    709 	 * LWPs. We nonetheless do the work here, and under the protection of
    710 	 * pidlock, so that the movement of the process's usage to the task
    711 	 * happens at the same time as the removal of the process from the
    712 	 * task, from the point of view of exacct_snapshot_task_usage().
    713 	 */
    714 	exacct_update_task_mstate(p);
    715 
    716 	hrutime = mstate_aggr_state(p, LMS_USER);
    717 	hrstime = mstate_aggr_state(p, LMS_SYSTEM);
    718 	p->p_utime = (clock_t)NSEC_TO_TICK(hrutime) + p->p_cutime;
    719 	p->p_stime = (clock_t)NSEC_TO_TICK(hrstime) + p->p_cstime;
    720 
    721 	p->p_acct[LMS_USER]	+= p->p_cacct[LMS_USER];
    722 	p->p_acct[LMS_SYSTEM]	+= p->p_cacct[LMS_SYSTEM];
    723 	p->p_acct[LMS_TRAP]	+= p->p_cacct[LMS_TRAP];
    724 	p->p_acct[LMS_TFAULT]	+= p->p_cacct[LMS_TFAULT];
    725 	p->p_acct[LMS_DFAULT]	+= p->p_cacct[LMS_DFAULT];
    726 	p->p_acct[LMS_KFAULT]	+= p->p_cacct[LMS_KFAULT];
    727 	p->p_acct[LMS_USER_LOCK] += p->p_cacct[LMS_USER_LOCK];
    728 	p->p_acct[LMS_SLEEP]	+= p->p_cacct[LMS_SLEEP];
    729 	p->p_acct[LMS_WAIT_CPU]	+= p->p_cacct[LMS_WAIT_CPU];
    730 	p->p_acct[LMS_STOPPED]	+= p->p_cacct[LMS_STOPPED];
    731 
    732 	p->p_ru.minflt	+= p->p_cru.minflt;
    733 	p->p_ru.majflt	+= p->p_cru.majflt;
    734 	p->p_ru.nswap	+= p->p_cru.nswap;
    735 	p->p_ru.inblock	+= p->p_cru.inblock;
    736 	p->p_ru.oublock	+= p->p_cru.oublock;
    737 	p->p_ru.msgsnd	+= p->p_cru.msgsnd;
    738 	p->p_ru.msgrcv	+= p->p_cru.msgrcv;
    739 	p->p_ru.nsignals += p->p_cru.nsignals;
    740 	p->p_ru.nvcsw	+= p->p_cru.nvcsw;
    741 	p->p_ru.nivcsw	+= p->p_cru.nivcsw;
    742 	p->p_ru.sysc	+= p->p_cru.sysc;
    743 	p->p_ru.ioch	+= p->p_cru.ioch;
    744 
    745 	p->p_stat = SZOMB;
    746 	p->p_proc_flag &= ~P_PR_PTRACE;
    747 	p->p_wdata = what;
    748 	p->p_wcode = (char)why;
    749 
    750 	cdir = PTOU(p)->u_cdir;
    751 	rdir = PTOU(p)->u_rdir;
    752 	cwd = PTOU(p)->u_cwd;
    753 
    754 	ASSERT(cdir != NULL || p->p_parent == &p0);
    755 
    756 	/*
    757 	 * Release resource controls, as they are no longer enforceable.
    758 	 */
    759 	rctl_set_free(p->p_rctls);
    760 
    761 	/*
    762 	 * Give up task and project memberships.  Decrement tk_nlwps counter
    763 	 * for our task.max-lwps resource control.  An extended accounting
    764 	 * record, if that facility is active, is scheduled to be written.
    765 	 * Zombie processes are false members of task0 for the remainder of
    766 	 * their lifetime; no accounting information is recorded for them.
    767 	 */
    768 	tk = p->p_task;
    769 
    770 	mutex_enter(&p->p_zone->zone_nlwps_lock);
    771 	tk->tk_nlwps--;
    772 	tk->tk_proj->kpj_nlwps--;
    773 	p->p_zone->zone_nlwps--;
    774 	mutex_exit(&p->p_zone->zone_nlwps_lock);
    775 	task_detach(p);
    776 	p->p_task = task0p;
    777 
    778 	/*
    779 	 * Clear the lwp directory and the lwpid hash table
    780 	 * now that /proc can't bother us any more.
    781 	 * We free the memory below, after dropping p->p_lock.
    782 	 */
    783 	lwpdir = p->p_lwpdir;
    784 	lwpdir_sz = p->p_lwpdir_sz;
    785 	tidhash = p->p_tidhash;
    786 	tidhash_sz = p->p_tidhash_sz;
    787 	ret_tidhash = p->p_ret_tidhash;
    788 	p->p_lwpdir = NULL;
    789 	p->p_lwpfree = NULL;
    790 	p->p_lwpdir_sz = 0;
    791 	p->p_tidhash = NULL;
    792 	p->p_tidhash_sz = 0;
    793 	p->p_ret_tidhash = NULL;
    794 
    795 	/*
    796 	 * If the process has context ops installed, call the exit routine
    797 	 * on behalf of this last remaining thread. Normally exitpctx() is
    798 	 * called during thread_exit() or lwp_exit(), but because this is the
    799 	 * last thread in the process, we must call it here. By the time
    800 	 * thread_exit() is called (below), the association with the relevant
    801 	 * process has been lost.
    802 	 *
    803 	 * We also free the context here.
    804 	 */
    805 	if (p->p_pctx) {
    806 		kpreempt_disable();
    807 		exitpctx(p);
    808 		kpreempt_enable();
    809 
    810 		freepctx(p, 0);
    811 	}
    812 
    813 	/*
    814 	 * curthread's proc pointer is changed to point to the 'sched'
    815 	 * process for the corresponding zone, except in the case when
    816 	 * the exiting process is in fact a zsched instance, in which
    817 	 * case the proc pointer is set to p0.  We do so, so that the
    818 	 * process still points at the right zone when we call the VN_RELE()
    819 	 * below.
    820 	 *
    821 	 * This is because curthread's original proc pointer can be freed as
    822 	 * soon as the child sends a SIGCLD to its parent.  We use zsched so
    823 	 * that for user processes, even in the final moments of death, the
    824 	 * process is still associated with its zone.
    825 	 */
    826 	if (p != t->t_procp->p_zone->zone_zsched)
    827 		t->t_procp = t->t_procp->p_zone->zone_zsched;
    828 	else
    829 		t->t_procp = &p0;
    830 
    831 	mutex_exit(&p->p_lock);
    832 	if (!evaporate) {
    833 		p->p_pidflag &= ~CLDPEND;
    834 		sigcld(p, sqp);
    835 	} else {
    836 		/*
    837 		 * Do what sigcld() would do if the disposition
    838 		 * of the SIGCHLD signal were set to be ignored.
    839 		 */
    840 		cv_broadcast(&p->p_srwchan_cv);
    841 		freeproc(p);
    842 	}
    843 	mutex_exit(&pidlock);
    844 
    845 	/*
    846 	 * We don't release u_cdir and u_rdir until SZOMB is set.
    847 	 * This protects us against dofusers().
    848 	 */
    849 	if (cdir)
    850 		VN_RELE(cdir);
    851 	if (rdir)
    852 		VN_RELE(rdir);
    853 	if (cwd)
    854 		refstr_rele(cwd);
    855 
    856 	/*
    857 	 * task_rele() may ultimately cause the zone to go away (or
    858 	 * may cause the last user process in a zone to go away, which
    859 	 * signals zsched to go away).  So prior to this call, we must
    860 	 * no longer point at zsched.
    861 	 */
    862 	t->t_procp = &p0;
    863 	task_rele(tk);
    864 
    865 	kmem_free(lwpdir, lwpdir_sz * sizeof (lwpdir_t));
    866 	kmem_free(tidhash, tidhash_sz * sizeof (tidhash_t));
    867 	while (ret_tidhash != NULL) {
    868 		ret_tidhash_t *next = ret_tidhash->rth_next;
    869 		kmem_free(ret_tidhash->rth_tidhash,
    870 		    ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
    871 		kmem_free(ret_tidhash, sizeof (*ret_tidhash));
    872 		ret_tidhash = next;
    873 	}
    874 
    875 	thread_exit();
    876 	/* NOTREACHED */
    877 }
    878 
    879 /*
    880  * Format siginfo structure for wait system calls.
    881  */
    882 void
    883 winfo(proc_t *pp, k_siginfo_t *ip, int waitflag)
    884 {
    885 	ASSERT(MUTEX_HELD(&pidlock));
    886 
    887 	bzero(ip, sizeof (k_siginfo_t));
    888 	ip->si_signo = SIGCLD;
    889 	ip->si_code = pp->p_wcode;
    890 	ip->si_pid = pp->p_pid;
    891 	ip->si_ctid = PRCTID(pp);
    892 	ip->si_zoneid = pp->p_zone->zone_id;
    893 	ip->si_status = pp->p_wdata;
    894 	ip->si_stime = pp->p_stime;
    895 	ip->si_utime = pp->p_utime;
    896 
    897 	if (waitflag) {
    898 		pp->p_wcode = 0;
    899 		pp->p_wdata = 0;
    900 		pp->p_pidflag &= ~CLDPEND;
    901 	}
    902 }
    903 
    904 /*
    905  * Wait system call.
    906  * Search for a terminated (zombie) child,
    907  * finally lay it to rest, and collect its status.
    908  * Look also for stopped children,
    909  * and pass back status from them.
    910  */
    911 int
    912 waitid(idtype_t idtype, id_t id, k_siginfo_t *ip, int options)
    913 {
    914 	int found;
    915 	proc_t *cp, *pp;
    916 	int proc_gone;
    917 	int waitflag = !(options & WNOWAIT);
    918 
    919 	/*
    920 	 * Obsolete flag, defined here only for binary compatibility
    921 	 * with old statically linked executables.  Delete this when
    922 	 * we no longer care about these old and broken applications.
    923 	 */
    924 #define	_WNOCHLD	0400
    925 	options &= ~_WNOCHLD;
    926 
    927 	if (options == 0 || (options & ~WOPTMASK))
    928 		return (EINVAL);
    929 
    930 	switch (idtype) {
    931 	case P_PID:
    932 	case P_PGID:
    933 		if (id < 0 || id >= maxpid)
    934 			return (EINVAL);
    935 		/* FALLTHROUGH */
    936 	case P_ALL:
    937 		break;
    938 	default:
    939 		return (EINVAL);
    940 	}
    941 
    942 	pp = ttoproc(curthread);
    943 
    944 	/*
    945 	 * lock parent mutex so that sibling chain can be searched.
    946 	 */
    947 	mutex_enter(&pidlock);
    948 
    949 	/*
    950 	 * if we are only looking for exited processes and child_ns list
    951 	 * is empty no reason to look at all children.
    952 	 */
    953 	if (idtype == P_ALL &&
    954 	    (options & ~WNOWAIT) == (WNOHANG | WEXITED) &&
    955 	    pp->p_child_ns == NULL) {
    956 		if (pp->p_child) {
    957 			mutex_exit(&pidlock);
    958 			bzero(ip, sizeof (k_siginfo_t));
    959 			return (0);
    960 		}
    961 		mutex_exit(&pidlock);
    962 		return (ECHILD);
    963 	}
    964 
    965 	while (pp->p_child != NULL) {
    966 
    967 		proc_gone = 0;
    968 
    969 		for (cp = pp->p_child_ns; cp != NULL; cp = cp->p_sibling_ns) {
    970 			if (idtype != P_PID && (cp->p_pidflag & CLDWAITPID))
    971 				continue;
    972 			if (idtype == P_PID && id != cp->p_pid)
    973 				continue;
    974 			if (idtype == P_PGID && id != cp->p_pgrp)
    975 				continue;
    976 
    977 			switch (cp->p_wcode) {
    978 
    979 			case CLD_TRAPPED:
    980 			case CLD_STOPPED:
    981 			case CLD_CONTINUED:
    982 				cmn_err(CE_PANIC,
    983 				    "waitid: wrong state %d on the p_newstate"
    984 				    " list", cp->p_wcode);
    985 				break;
    986 
    987 			case CLD_EXITED:
    988 			case CLD_DUMPED:
    989 			case CLD_KILLED:
    990 				if (!(options & WEXITED)) {
    991 					/*
    992 					 * Count how many are already gone
    993 					 * for good.
    994 					 */
    995 					proc_gone++;
    996 					break;
    997 				}
    998 				if (!waitflag) {
    999 					winfo(cp, ip, 0);
   1000 				} else {
   1001 					winfo(cp, ip, 1);
   1002 					freeproc(cp);
   1003 				}
   1004 				mutex_exit(&pidlock);
   1005 				if (waitflag) {		/* accept SIGCLD */
   1006 					sigcld_delete(ip);
   1007 					sigcld_repost();
   1008 				}
   1009 				return (0);
   1010 			}
   1011 
   1012 			if (idtype == P_PID)
   1013 				break;
   1014 		}
   1015 
   1016 		/*
   1017 		 * Wow! None of the threads on the p_sibling_ns list were
   1018 		 * interesting threads. Check all the kids!
   1019 		 */
   1020 		found = 0;
   1021 		for (cp = pp->p_child; cp != NULL; cp = cp->p_sibling) {
   1022 			if (idtype == P_PID && id != cp->p_pid)
   1023 				continue;
   1024 			if (idtype == P_PGID && id != cp->p_pgrp)
   1025 				continue;
   1026 
   1027 			switch (cp->p_wcode) {
   1028 			case CLD_TRAPPED:
   1029 				if (!(options & WTRAPPED))
   1030 					break;
   1031 				winfo(cp, ip, waitflag);
   1032 				mutex_exit(&pidlock);
   1033 				if (waitflag) {		/* accept SIGCLD */
   1034 					sigcld_delete(ip);
   1035 					sigcld_repost();
   1036 				}
   1037 				return (0);
   1038 
   1039 			case CLD_STOPPED:
   1040 				if (!(options & WSTOPPED))
   1041 					break;
   1042 				/* Is it still stopped? */
   1043 				mutex_enter(&cp->p_lock);
   1044 				if (!jobstopped(cp)) {
   1045 					mutex_exit(&cp->p_lock);
   1046 					break;
   1047 				}
   1048 				mutex_exit(&cp->p_lock);
   1049 				winfo(cp, ip, waitflag);
   1050 				mutex_exit(&pidlock);
   1051 				if (waitflag) {		/* accept SIGCLD */
   1052 					sigcld_delete(ip);
   1053 					sigcld_repost();
   1054 				}
   1055 				return (0);
   1056 
   1057 			case CLD_CONTINUED:
   1058 				if (!(options & WCONTINUED))
   1059 					break;
   1060 				winfo(cp, ip, waitflag);
   1061 				mutex_exit(&pidlock);
   1062 				if (waitflag) {		/* accept SIGCLD */
   1063 					sigcld_delete(ip);
   1064 					sigcld_repost();
   1065 				}
   1066 				return (0);
   1067 
   1068 			case CLD_EXITED:
   1069 			case CLD_DUMPED:
   1070 			case CLD_KILLED:
   1071 				if (idtype != P_PID &&
   1072 				    (cp->p_pidflag & CLDWAITPID))
   1073 					continue;
   1074 				/*
   1075 				 * Don't complain if a process was found in
   1076 				 * the first loop but we broke out of the loop
   1077 				 * because of the arguments passed to us.
   1078 				 */
   1079 				if (proc_gone == 0) {
   1080 					cmn_err(CE_PANIC,
   1081 					    "waitid: wrong state on the"
   1082 					    " p_child list");
   1083 				} else {
   1084 					break;
   1085 				}
   1086 			}
   1087 
   1088 			found++;
   1089 
   1090 			if (idtype == P_PID)
   1091 				break;
   1092 		}
   1093 
   1094 		/*
   1095 		 * If we found no interesting processes at all,
   1096 		 * break out and return ECHILD.
   1097 		 */
   1098 		if (found + proc_gone == 0)
   1099 			break;
   1100 
   1101 		if (options & WNOHANG) {
   1102 			mutex_exit(&pidlock);
   1103 			bzero(ip, sizeof (k_siginfo_t));
   1104 			/*
   1105 			 * We should set ip->si_signo = SIGCLD,
   1106 			 * but there is an SVVS test that expects
   1107 			 * ip->si_signo to be zero in this case.
   1108 			 */
   1109 			return (0);
   1110 		}
   1111 
   1112 		/*
   1113 		 * If we found no processes of interest that could
   1114 		 * change state while we wait, we don't wait at all.
   1115 		 * Get out with ECHILD according to SVID.
   1116 		 */
   1117 		if (found == proc_gone)
   1118 			break;
   1119 
   1120 		if (!cv_wait_sig_swap(&pp->p_cv, &pidlock)) {
   1121 			mutex_exit(&pidlock);
   1122 			return (EINTR);
   1123 		}
   1124 	}
   1125 	mutex_exit(&pidlock);
   1126 	return (ECHILD);
   1127 }
   1128 
   1129 /*
   1130  * The wait() system call trap is no longer invoked by libc.
   1131  * It is retained only for the benefit of statically linked applications.
   1132  * Delete this when we no longer care about these old and broken applications.
   1133  */
   1134 int64_t
   1135 wait(void)
   1136 {
   1137 	int error;
   1138 	k_siginfo_t info;
   1139 	rval_t	r;
   1140 
   1141 	if (error =  waitid(P_ALL, (id_t)0, &info, WEXITED|WTRAPPED))
   1142 		return (set_errno(error));
   1143 	r.r_val1 = info.si_pid;
   1144 	r.r_val2 = wstat(info.si_code, info.si_status);
   1145 	return (r.r_vals);
   1146 }
   1147 
   1148 int
   1149 waitsys(idtype_t idtype, id_t id, siginfo_t *infop, int options)
   1150 {
   1151 	int error;
   1152 	k_siginfo_t info;
   1153 
   1154 	if (error = waitid(idtype, id, &info, options))
   1155 		return (set_errno(error));
   1156 	if (copyout(&info, infop, sizeof (k_siginfo_t)))
   1157 		return (set_errno(EFAULT));
   1158 	return (0);
   1159 }
   1160 
   1161 #ifdef _SYSCALL32_IMPL
   1162 
   1163 int
   1164 waitsys32(idtype_t idtype, id_t id, siginfo_t *infop, int options)
   1165 {
   1166 	int error;
   1167 	k_siginfo_t info;
   1168 	siginfo32_t info32;
   1169 
   1170 	if (error = waitid(idtype, id, &info, options))
   1171 		return (set_errno(error));
   1172 	siginfo_kto32(&info, &info32);
   1173 	if (copyout(&info32, infop, sizeof (info32)))
   1174 		return (set_errno(EFAULT));
   1175 	return (0);
   1176 }
   1177 
   1178 #endif	/* _SYSCALL32_IMPL */
   1179 
   1180 void
   1181 proc_detach(proc_t *p)
   1182 {
   1183 	proc_t *q;
   1184 
   1185 	ASSERT(MUTEX_HELD(&pidlock));
   1186 
   1187 	q = p->p_parent;
   1188 	ASSERT(q != NULL);
   1189 
   1190 	/*
   1191 	 * Take it off the newstate list of its parent
   1192 	 */
   1193 	delete_ns(q, p);
   1194 
   1195 	if (q->p_child == p) {
   1196 		q->p_child = p->p_sibling;
   1197 		/*
   1198 		 * If the parent has no children, it better not
   1199 		 * have any with new states either!
   1200 		 */
   1201 		ASSERT(q->p_child ? 1 : q->p_child_ns == NULL);
   1202 	}
   1203 
   1204 	if (p->p_sibling) {
   1205 		p->p_sibling->p_psibling = p->p_psibling;
   1206 	}
   1207 
   1208 	if (p->p_psibling) {
   1209 		p->p_psibling->p_sibling = p->p_sibling;
   1210 	}
   1211 }
   1212 
   1213 /*
   1214  * Remove zombie children from the process table.
   1215  */
   1216 void
   1217 freeproc(proc_t *p)
   1218 {
   1219 	proc_t *q;
   1220 
   1221 	ASSERT(p->p_stat == SZOMB);
   1222 	ASSERT(p->p_tlist == NULL);
   1223 	ASSERT(MUTEX_HELD(&pidlock));
   1224 
   1225 	sigdelq(p, NULL, 0);
   1226 	if (p->p_killsqp) {
   1227 		siginfofree(p->p_killsqp);
   1228 		p->p_killsqp = NULL;
   1229 	}
   1230 
   1231 	prfree(p);	/* inform /proc */
   1232 
   1233 	/*
   1234 	 * Don't free the init processes.
   1235 	 * Other dying processes will access it.
   1236 	 */
   1237 	if (p == proc_init)
   1238 		return;
   1239 
   1240 
   1241 	/*
   1242 	 * We wait until now to free the cred structure because a
   1243 	 * zombie process's credentials may be examined by /proc.
   1244 	 * No cred locking needed because there are no threads at this point.
   1245 	 */
   1246 	upcount_dec(crgetruid(p->p_cred), crgetzoneid(p->p_cred));
   1247 	crfree(p->p_cred);
   1248 	if (p->p_corefile != NULL) {
   1249 		corectl_path_rele(p->p_corefile);
   1250 		p->p_corefile = NULL;
   1251 	}
   1252 	if (p->p_content != NULL) {
   1253 		corectl_content_rele(p->p_content);
   1254 		p->p_content = NULL;
   1255 	}
   1256 
   1257 	if (p->p_nextofkin && !((p->p_nextofkin->p_flag & SNOWAIT) ||
   1258 	    (PTOU(p->p_nextofkin)->u_signal[SIGCLD - 1] == SIG_IGN))) {
   1259 		/*
   1260 		 * This should still do the right thing since p_utime/stime
   1261 		 * get set to the correct value on process exit, so it
   1262 		 * should get properly updated
   1263 		 */
   1264 		p->p_nextofkin->p_cutime += p->p_utime;
   1265 		p->p_nextofkin->p_cstime += p->p_stime;
   1266 
   1267 		p->p_nextofkin->p_cacct[LMS_USER] += p->p_acct[LMS_USER];
   1268 		p->p_nextofkin->p_cacct[LMS_SYSTEM] += p->p_acct[LMS_SYSTEM];
   1269 		p->p_nextofkin->p_cacct[LMS_TRAP] += p->p_acct[LMS_TRAP];
   1270 		p->p_nextofkin->p_cacct[LMS_TFAULT] += p->p_acct[LMS_TFAULT];
   1271 		p->p_nextofkin->p_cacct[LMS_DFAULT] += p->p_acct[LMS_DFAULT];
   1272 		p->p_nextofkin->p_cacct[LMS_KFAULT] += p->p_acct[LMS_KFAULT];
   1273 		p->p_nextofkin->p_cacct[LMS_USER_LOCK]
   1274 		    += p->p_acct[LMS_USER_LOCK];
   1275 		p->p_nextofkin->p_cacct[LMS_SLEEP] += p->p_acct[LMS_SLEEP];
   1276 		p->p_nextofkin->p_cacct[LMS_WAIT_CPU]
   1277 		    += p->p_acct[LMS_WAIT_CPU];
   1278 		p->p_nextofkin->p_cacct[LMS_STOPPED] += p->p_acct[LMS_STOPPED];
   1279 
   1280 		p->p_nextofkin->p_cru.minflt	+= p->p_ru.minflt;
   1281 		p->p_nextofkin->p_cru.majflt	+= p->p_ru.majflt;
   1282 		p->p_nextofkin->p_cru.nswap	+= p->p_ru.nswap;
   1283 		p->p_nextofkin->p_cru.inblock	+= p->p_ru.inblock;
   1284 		p->p_nextofkin->p_cru.oublock	+= p->p_ru.oublock;
   1285 		p->p_nextofkin->p_cru.msgsnd	+= p->p_ru.msgsnd;
   1286 		p->p_nextofkin->p_cru.msgrcv	+= p->p_ru.msgrcv;
   1287 		p->p_nextofkin->p_cru.nsignals	+= p->p_ru.nsignals;
   1288 		p->p_nextofkin->p_cru.nvcsw	+= p->p_ru.nvcsw;
   1289 		p->p_nextofkin->p_cru.nivcsw	+= p->p_ru.nivcsw;
   1290 		p->p_nextofkin->p_cru.sysc	+= p->p_ru.sysc;
   1291 		p->p_nextofkin->p_cru.ioch	+= p->p_ru.ioch;
   1292 
   1293 	}
   1294 
   1295 	q = p->p_nextofkin;
   1296 	if (q && q->p_orphan == p)
   1297 		q->p_orphan = p->p_nextorph;
   1298 	else if (q) {
   1299 		for (q = q->p_orphan; q; q = q->p_nextorph)
   1300 			if (q->p_nextorph == p)
   1301 				break;
   1302 		ASSERT(q && q->p_nextorph == p);
   1303 		q->p_nextorph = p->p_nextorph;
   1304 	}
   1305 
   1306 	proc_detach(p);
   1307 	pid_exit(p);	/* frees pid and proc structure */
   1308 }
   1309 
   1310 /*
   1311  * Delete process "child" from the newstate list of process "parent"
   1312  */
   1313 void
   1314 delete_ns(proc_t *parent, proc_t *child)
   1315 {
   1316 	proc_t **ns;
   1317 
   1318 	ASSERT(MUTEX_HELD(&pidlock));
   1319 	ASSERT(child->p_parent == parent);
   1320 	for (ns = &parent->p_child_ns; *ns != NULL; ns = &(*ns)->p_sibling_ns) {
   1321 		if (*ns == child) {
   1322 
   1323 			ASSERT((*ns)->p_parent == parent);
   1324 
   1325 			*ns = child->p_sibling_ns;
   1326 			child->p_sibling_ns = NULL;
   1327 			return;
   1328 		}
   1329 	}
   1330 }
   1331 
   1332 /*
   1333  * Add process "child" to the new state list of process "parent"
   1334  */
   1335 void
   1336 add_ns(proc_t *parent, proc_t *child)
   1337 {
   1338 	ASSERT(child->p_sibling_ns == NULL);
   1339 	child->p_sibling_ns = parent->p_child_ns;
   1340 	parent->p_child_ns = child;
   1341 }
   1342