xref: /freebsd/sys/kern/kern_exit.c (revision 4b2eaea43fec8e8792be611dea204071a10b655a)
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the University of
21  *	California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *	@(#)kern_exit.c	8.7 (Berkeley) 2/12/94
39  * $FreeBSD$
40  */
41 
42 #include "opt_compat.h"
43 #include "opt_ktrace.h"
44 #include "opt_mac.h"
45 
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/sysproto.h>
49 #include <sys/kernel.h>
50 #include <sys/malloc.h>
51 #include <sys/lock.h>
52 #include <sys/mutex.h>
53 #include <sys/proc.h>
54 #include <sys/pioctl.h>
55 #include <sys/tty.h>
56 #include <sys/wait.h>
57 #include <sys/vmmeter.h>
58 #include <sys/vnode.h>
59 #include <sys/resourcevar.h>
60 #include <sys/signalvar.h>
61 #include <sys/sched.h>
62 #include <sys/sx.h>
63 #include <sys/ptrace.h>
64 #include <sys/acct.h>		/* for acct_process() function prototype */
65 #include <sys/filedesc.h>
66 #include <sys/mac.h>
67 #include <sys/shm.h>
68 #include <sys/sem.h>
69 #include <sys/jail.h>
70 #ifdef KTRACE
71 #include <sys/ktrace.h>
72 #endif
73 
74 #include <vm/vm.h>
75 #include <vm/vm_extern.h>
76 #include <vm/vm_param.h>
77 #include <vm/pmap.h>
78 #include <vm/vm_map.h>
79 #include <vm/vm_page.h>
80 #include <vm/uma.h>
81 #include <sys/user.h>
82 
83 /* Required to be non-static for SysVR4 emulator */
84 MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
85 
86 static MALLOC_DEFINE(M_ATEXIT, "atexit", "atexit callback");
87 
88 static int wait1(struct thread *, struct wait_args *, int);
89 
90 /*
91  * callout list for things to do at exit time
92  */
93 struct exitlist {
94 	exitlist_fn function;
95 	TAILQ_ENTRY(exitlist) next;
96 };
97 
98 TAILQ_HEAD(exit_list_head, exitlist);
99 static struct exit_list_head exit_list = TAILQ_HEAD_INITIALIZER(exit_list);
100 
101 /*
102  * exit --
103  *	Death of process.
104  *
105  * MPSAFE
106  */
107 void
108 sys_exit(td, uap)
109 	struct thread *td;
110 	struct sys_exit_args /* {
111 		int	rval;
112 	} */ *uap;
113 {
114 
115 	mtx_lock(&Giant);
116 	exit1(td, W_EXITCODE(uap->rval, 0));
117 	/* NOTREACHED */
118 }
119 
120 /*
121  * Exit: deallocate address space and other resources, change proc state
122  * to zombie, and unlink proc from allproc and parent's lists.  Save exit
123  * status and rusage for wait().  Check for child processes and orphan them.
124  */
125 void
126 exit1(td, rv)
127 	register struct thread *td;
128 	int rv;
129 {
130 	struct exitlist *ep;
131 	struct proc *p, *nq, *q;
132 	struct tty *tp;
133 	struct vnode *ttyvp;
134 	register struct vmspace *vm;
135 	struct vnode *vtmp;
136 #ifdef KTRACE
137 	struct vnode *tracevp;
138 #endif
139 
140 	GIANT_REQUIRED;
141 
142 	p = td->td_proc;
143 	if (p == initproc) {
144 		printf("init died (signal %d, exit %d)\n",
145 		    WTERMSIG(rv), WEXITSTATUS(rv));
146 		panic("Going nowhere without my init!");
147 	}
148 
149 	/*
150 	 * XXXKSE: MUST abort all other threads before proceeding past here.
151 	 */
152 	PROC_LOCK(p);
153 	if (p->p_flag & P_KSES) {
154 		/*
155 		 * First check if some other thread got here before us..
156 		 * if so, act apropriatly, (exit or suspend);
157 		 */
158 		thread_suspend_check(0);
159 
160 		/*
161 		 * Kill off the other threads. This requires
162 		 * Some co-operation from other parts of the kernel
163 		 * so it may not be instant.
164 		 * With this state set:
165 		 * Any thread entering the kernel from userspace will
166 		 * thread_exit() in trap().  Any thread attempting to
167 		 * sleep will return immediatly
168 		 * with EINTR or EWOULDBLOCK, which will hopefully force them
169 		 * to back out to userland, freeing resources as they go, and
170 		 * anything attempting to return to userland will thread_exit()
171 		 * from userret().  thread_exit() will unsuspend us
172 		 * when the last other thread exits.
173 		 */
174 		if (thread_single(SINGLE_EXIT)) {
175 			panic ("Exit: Single threading fouled up");
176 		}
177 		/*
178 		 * All other activity in this process is now stopped.
179 		 * Remove excess KSEs and KSEGRPS. XXXKSE (when we have them)
180 		 * ...
181 		 * Turn off threading support.
182 		 */
183 		p->p_flag &= ~P_KSES;
184 		thread_single_end(); 	/* Don't need this any more. */
185 	}
186 	/*
187 	 * With this state set:
188 	 * Any thread entering the kernel from userspace will thread_exit()
189 	 * in trap().  Any thread attempting to sleep will return immediatly
190 	 * with EINTR or EWOULDBLOCK, which will hopefully force them
191 	 * to back out to userland, freeing resources as they go, and
192 	 * anything attempting to return to userland will thread_exit()
193 	 * from userret().  thread_exit() will do a wakeup on p->p_numthreads
194 	 * if it transitions to 1.
195 	 */
196 
197 	p->p_flag |= P_WEXIT;
198 	PROC_UNLOCK(p);
199 
200 	/* Are we a task leader? */
201 	if (p == p->p_leader) {
202 		mtx_lock(&ppeers_lock);
203 		q = p->p_peers;
204 		while (q != NULL) {
205 			PROC_LOCK(q);
206 			psignal(q, SIGKILL);
207 			PROC_UNLOCK(q);
208 			q = q->p_peers;
209 		}
210 		while (p->p_peers != NULL)
211 			msleep(p, &ppeers_lock, PWAIT, "exit1", 0);
212 		mtx_unlock(&ppeers_lock);
213 	}
214 
215 #ifdef PGINPROF
216 	vmsizmon();
217 #endif
218 	STOPEVENT(p, S_EXIT, rv);
219 	wakeup(&p->p_stype);	/* Wakeup anyone in procfs' PIOCWAIT */
220 
221 	/*
222 	 * Check if any loadable modules need anything done at process exit.
223 	 * e.g. SYSV IPC stuff
224 	 * XXX what if one of these generates an error?
225 	 */
226 	TAILQ_FOREACH(ep, &exit_list, next)
227 		(*ep->function)(p);
228 
229 	PROC_LOCK(p);
230 	stopprofclock(p);
231 	PROC_UNLOCK(p);
232 
233 	MALLOC(p->p_ru, struct rusage *, sizeof(struct rusage),
234 		M_ZOMBIE, 0);
235 	/*
236 	 * If parent is waiting for us to exit or exec,
237 	 * P_PPWAIT is set; we will wakeup the parent below.
238 	 */
239 	PROC_LOCK(p);
240 	p->p_flag &= ~(P_TRACED | P_PPWAIT);
241 	SIGEMPTYSET(p->p_siglist);
242 	PROC_UNLOCK(p);
243 	if (timevalisset(&p->p_realtimer.it_value))
244 		callout_stop(&p->p_itcallout);
245 
246 	/*
247 	 * Reset any sigio structures pointing to us as a result of
248 	 * F_SETOWN with our pid.
249 	 */
250 	funsetownlst(&p->p_sigiolst);
251 
252 	/*
253 	 * Close open files and release open-file table.
254 	 * This may block!
255 	 */
256 	fdfree(td); /* XXXKSE *//* may not be the one in proc */
257 
258 	/*
259 	 * Remove ourself from our leader's peer list and wake our leader.
260 	 */
261 	mtx_lock(&ppeers_lock);
262 	if (p->p_leader->p_peers) {
263 		q = p->p_leader;
264 		while (q->p_peers != p)
265 			q = q->p_peers;
266 		q->p_peers = p->p_peers;
267 		wakeup(p->p_leader);
268 	}
269 	mtx_unlock(&ppeers_lock);
270 
271 	/* The next two chunks should probably be moved to vmspace_exit. */
272 	vm = p->p_vmspace;
273 	/*
274 	 * Release user portion of address space.
275 	 * This releases references to vnodes,
276 	 * which could cause I/O if the file has been unlinked.
277 	 * Need to do this early enough that we can still sleep.
278 	 * Can't free the entire vmspace as the kernel stack
279 	 * may be mapped within that space also.
280 	 *
281 	 * Processes sharing the same vmspace may exit in one order, and
282 	 * get cleaned up by vmspace_exit() in a different order.  The
283 	 * last exiting process to reach this point releases as much of
284 	 * the environment as it can, and the last process cleaned up
285 	 * by vmspace_exit() (which decrements exitingcnt) cleans up the
286 	 * remainder.
287 	 */
288 	++vm->vm_exitingcnt;
289 	if (--vm->vm_refcnt == 0) {
290 		shmexit(vm);
291 		vm_page_lock_queues();
292 		pmap_remove_pages(vmspace_pmap(vm), vm_map_min(&vm->vm_map),
293 		    vm_map_max(&vm->vm_map));
294 		vm_page_unlock_queues();
295 		(void) vm_map_remove(&vm->vm_map, vm_map_min(&vm->vm_map),
296 		    vm_map_max(&vm->vm_map));
297 	}
298 
299 	sx_xlock(&proctree_lock);
300 	if (SESS_LEADER(p)) {
301 		register struct session *sp;
302 
303 		sp = p->p_session;
304 		if (sp->s_ttyvp) {
305 			/*
306 			 * Controlling process.
307 			 * Signal foreground pgrp,
308 			 * drain controlling terminal
309 			 * and revoke access to controlling terminal.
310 			 */
311 			if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) {
312 				tp = sp->s_ttyp;
313 				if (sp->s_ttyp->t_pgrp) {
314 					PGRP_LOCK(sp->s_ttyp->t_pgrp);
315 					pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
316 					PGRP_UNLOCK(sp->s_ttyp->t_pgrp);
317 				}
318 				/* XXX tp should be locked. */
319 				sx_xunlock(&proctree_lock);
320 				(void) ttywait(tp);
321 				sx_xlock(&proctree_lock);
322 				/*
323 				 * The tty could have been revoked
324 				 * if we blocked.
325 				 */
326 				if (sp->s_ttyvp) {
327 					ttyvp = sp->s_ttyvp;
328 					SESS_LOCK(p->p_session);
329 					sp->s_ttyvp = NULL;
330 					SESS_UNLOCK(p->p_session);
331 					sx_xunlock(&proctree_lock);
332 					VOP_REVOKE(ttyvp, REVOKEALL);
333 					vrele(ttyvp);
334 					sx_xlock(&proctree_lock);
335 				}
336 			}
337 			if (sp->s_ttyvp) {
338 				ttyvp = sp->s_ttyvp;
339 				SESS_LOCK(p->p_session);
340 				sp->s_ttyvp = NULL;
341 				SESS_UNLOCK(p->p_session);
342 				vrele(ttyvp);
343 			}
344 			/*
345 			 * s_ttyp is not zero'd; we use this to indicate
346 			 * that the session once had a controlling terminal.
347 			 * (for logging and informational purposes)
348 			 */
349 		}
350 		SESS_LOCK(p->p_session);
351 		sp->s_leader = NULL;
352 		SESS_UNLOCK(p->p_session);
353 	}
354 	fixjobc(p, p->p_pgrp, 0);
355 	sx_xunlock(&proctree_lock);
356 	(void)acct_process(td);
357 #ifdef KTRACE
358 	/*
359 	 * release trace file
360 	 */
361 	PROC_LOCK(p);
362 	mtx_lock(&ktrace_mtx);
363 	p->p_traceflag = 0;	/* don't trace the vrele() */
364 	tracevp = p->p_tracep;
365 	p->p_tracep = NULL;
366 	mtx_unlock(&ktrace_mtx);
367 	PROC_UNLOCK(p);
368 	if (tracevp != NULL)
369 		vrele(tracevp);
370 #endif
371 	/*
372 	 * Release reference to text vnode
373 	 */
374 	if ((vtmp = p->p_textvp) != NULL) {
375 		p->p_textvp = NULL;
376 		vrele(vtmp);
377 	}
378 
379 	/*
380 	 * Release our limits structure.
381 	 */
382 	mtx_assert(&Giant, MA_OWNED);
383 	if (--p->p_limit->p_refcnt == 0) {
384 		FREE(p->p_limit, M_SUBPROC);
385 		p->p_limit = NULL;
386 	}
387 
388 	/*
389 	 * Release this thread's reference to the ucred.  The actual proc
390 	 * reference will stay around until the proc is harvested by
391 	 * wait().  At this point the ucred is immutable (no other threads
392 	 * from this proc are around that can change it) so we leave the
393 	 * per-thread ucred pointer intact in case it is needed although
394 	 * in theory nothing should be using it at this point.
395 	 */
396 	crfree(td->td_ucred);
397 
398 	/*
399 	 * Remove proc from allproc queue and pidhash chain.
400 	 * Place onto zombproc.  Unlink from parent's child list.
401 	 */
402 	sx_xlock(&allproc_lock);
403 	LIST_REMOVE(p, p_list);
404 	LIST_INSERT_HEAD(&zombproc, p, p_list);
405 	LIST_REMOVE(p, p_hash);
406 	sx_xunlock(&allproc_lock);
407 
408 	sx_xlock(&proctree_lock);
409 	q = LIST_FIRST(&p->p_children);
410 	if (q != NULL)		/* only need this if any child is S_ZOMB */
411 		wakeup(initproc);
412 	for (; q != NULL; q = nq) {
413 		nq = LIST_NEXT(q, p_sibling);
414 		PROC_LOCK(q);
415 		proc_reparent(q, initproc);
416 		q->p_sigparent = SIGCHLD;
417 		/*
418 		 * Traced processes are killed
419 		 * since their existence means someone is screwing up.
420 		 */
421 		if (q->p_flag & P_TRACED) {
422 			q->p_flag &= ~P_TRACED;
423 			psignal(q, SIGKILL);
424 		}
425 		PROC_UNLOCK(q);
426 	}
427 
428 	/*
429 	 * Save exit status and final rusage info, adding in child rusage
430 	 * info and self times.
431 	 */
432 	PROC_LOCK(p);
433 	p->p_xstat = rv;
434 	*p->p_ru = p->p_stats->p_ru;
435 	mtx_lock_spin(&sched_lock);
436 	calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL);
437 	mtx_unlock_spin(&sched_lock);
438 	ruadd(p->p_ru, &p->p_stats->p_cru);
439 
440 	/*
441 	 * Notify interested parties of our demise.
442 	 */
443 	KNOTE(&p->p_klist, NOTE_EXIT);
444 
445 	/*
446 	 * Notify parent that we're gone.  If parent has the PS_NOCLDWAIT
447 	 * flag set, or if the handler is set to SIG_IGN, notify process
448 	 * 1 instead (and hope it will handle this situation).
449 	 */
450 	PROC_LOCK(p->p_pptr);
451 	if (p->p_pptr->p_procsig->ps_flag & (PS_NOCLDWAIT | PS_CLDSIGIGN)) {
452 		struct proc *pp;
453 
454 		pp = p->p_pptr;
455 		PROC_UNLOCK(pp);
456 		proc_reparent(p, initproc);
457 		PROC_LOCK(p->p_pptr);
458 		/*
459 		 * If this was the last child of our parent, notify
460 		 * parent, so in case he was wait(2)ing, he will
461 		 * continue.
462 		 */
463 		if (LIST_EMPTY(&pp->p_children))
464 			wakeup(pp);
465 	}
466 
467 	if (p->p_sigparent && p->p_pptr != initproc)
468 		psignal(p->p_pptr, p->p_sigparent);
469 	else
470 		psignal(p->p_pptr, SIGCHLD);
471 	PROC_UNLOCK(p->p_pptr);
472 
473 	/*
474 	 * If this is a kthread, then wakeup anyone waiting for it to exit.
475 	 */
476 	if (p->p_flag & P_KTHREAD)
477 		wakeup(p);
478 	PROC_UNLOCK(p);
479 
480 	/*
481 	 * Finally, call machine-dependent code to release the remaining
482 	 * resources including address space.
483 	 * The address space is released by "vmspace_exitfree(p)" in
484 	 * vm_waitproc().
485 	 */
486 	cpu_exit(td);
487 
488 	PROC_LOCK(p);
489 	PROC_LOCK(p->p_pptr);
490 	sx_xunlock(&proctree_lock);
491 	mtx_lock_spin(&sched_lock);
492 
493 	while (mtx_owned(&Giant))
494 		mtx_unlock(&Giant);
495 
496 	/*
497 	 * We have to wait until after releasing all locks before
498 	 * changing p_state.  If we block on a mutex then we will be
499 	 * back at SRUN when we resume and our parent will never
500 	 * harvest us.
501 	 */
502 	p->p_state = PRS_ZOMBIE;
503 
504 	wakeup(p->p_pptr);
505 	PROC_UNLOCK(p->p_pptr);
506 	cnt.v_swtch++;
507 	binuptime(PCPU_PTR(switchtime));
508 	PCPU_SET(switchticks, ticks);
509 
510 	cpu_sched_exit(td); /* XXXKSE check if this should be in thread_exit */
511 	/*
512 	 * Make sure the scheduler takes this thread out of its tables etc.
513 	 * This will also release this thread's reference to the ucred.
514  	 * Other thread parts to release include pcb bits and such.
515 	 */
516 	thread_exit();
517 }
518 
519 #ifdef COMPAT_43
520 /*
521  * MPSAFE.  The dirty work is handled by wait1().
522  */
523 int
524 owait(td, uap)
525 	struct thread *td;
526 	register struct owait_args /* {
527 		int     dummy;
528 	} */ *uap;
529 {
530 	struct wait_args w;
531 
532 	w.options = 0;
533 	w.rusage = NULL;
534 	w.pid = WAIT_ANY;
535 	w.status = NULL;
536 	return (wait1(td, &w, 1));
537 }
538 #endif /* COMPAT_43 */
539 
540 /*
541  * MPSAFE.  The dirty work is handled by wait1().
542  */
543 int
544 wait4(td, uap)
545 	struct thread *td;
546 	struct wait_args *uap;
547 {
548 
549 	return (wait1(td, uap, 0));
550 }
551 
552 /*
553  * MPSAFE
554  */
555 static int
556 wait1(td, uap, compat)
557 	register struct thread *td;
558 	register struct wait_args /* {
559 		int pid;
560 		int *status;
561 		int options;
562 		struct rusage *rusage;
563 	} */ *uap;
564 	int compat;
565 {
566 	struct rusage ru;
567 	int nfound;
568 	struct proc *p, *q, *t;
569 	int status, error;
570 
571 	q = td->td_proc;
572 	if (uap->pid == 0) {
573 		PROC_LOCK(q);
574 		uap->pid = -q->p_pgid;
575 		PROC_UNLOCK(q);
576 	}
577 	if (uap->options &~ (WUNTRACED|WNOHANG|WCONTINUED|WLINUXCLONE))
578 		return (EINVAL);
579 	mtx_lock(&Giant);
580 loop:
581 	nfound = 0;
582 	sx_xlock(&proctree_lock);
583 	LIST_FOREACH(p, &q->p_children, p_sibling) {
584 		PROC_LOCK(p);
585 		if (uap->pid != WAIT_ANY &&
586 		    p->p_pid != uap->pid && p->p_pgid != -uap->pid) {
587 			PROC_UNLOCK(p);
588 			continue;
589 		}
590 
591 		/*
592 		 * This special case handles a kthread spawned by linux_clone
593 		 * (see linux_misc.c).  The linux_wait4 and linux_waitpid
594 		 * functions need to be able to distinguish between waiting
595 		 * on a process and waiting on a thread.  It is a thread if
596 		 * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
597 		 * signifies we want to wait for threads and not processes.
598 		 */
599 		if ((p->p_sigparent != SIGCHLD) ^
600 		    ((uap->options & WLINUXCLONE) != 0)) {
601 			PROC_UNLOCK(p);
602 			continue;
603 		}
604 
605 		nfound++;
606 		if (p->p_state == PRS_ZOMBIE) {
607 			/*
608 			 * Allow the scheduler to adjust the priority of the
609 			 * parent when a kseg is exiting.
610 			 */
611 			if (curthread->td_proc->p_pid != 1) {
612 				mtx_lock_spin(&sched_lock);
613 				sched_exit(curthread->td_ksegrp,
614 				    FIRST_KSEGRP_IN_PROC(p));
615 				mtx_unlock_spin(&sched_lock);
616 			}
617 
618 			td->td_retval[0] = p->p_pid;
619 #ifdef COMPAT_43
620 			if (compat)
621 				td->td_retval[1] = p->p_xstat;
622 			else
623 #endif
624 			if (uap->status) {
625 				status = p->p_xstat;	/* convert to int */
626 				PROC_UNLOCK(p);
627 				if ((error = copyout(&status,
628 				    uap->status, sizeof(status)))) {
629 					sx_xunlock(&proctree_lock);
630 					mtx_unlock(&Giant);
631 					return (error);
632 				}
633 				PROC_LOCK(p);
634 			}
635 			if (uap->rusage) {
636 				bcopy(p->p_ru, &ru, sizeof(ru));
637 				PROC_UNLOCK(p);
638 				if ((error = copyout(&ru,
639 				    uap->rusage, sizeof (struct rusage)))) {
640 					sx_xunlock(&proctree_lock);
641 					mtx_unlock(&Giant);
642 					return (error);
643 				}
644 			} else
645 				PROC_UNLOCK(p);
646 			/*
647 			 * If we got the child via a ptrace 'attach',
648 			 * we need to give it back to the old parent.
649 			 */
650 			if (p->p_oppid && (t = pfind(p->p_oppid)) != NULL) {
651 				PROC_LOCK(p);
652 				p->p_oppid = 0;
653 				proc_reparent(p, t);
654 				PROC_UNLOCK(p);
655 				psignal(t, SIGCHLD);
656 				wakeup(t);
657 				PROC_UNLOCK(t);
658 				sx_xunlock(&proctree_lock);
659 				mtx_unlock(&Giant);
660 				return (0);
661 			}
662 			/*
663 			 * Remove other references to this process to ensure
664 			 * we have an exclusive reference.
665 			 */
666 			leavepgrp(p);
667 
668 			sx_xlock(&allproc_lock);
669 			LIST_REMOVE(p, p_list);	/* off zombproc */
670 			sx_xunlock(&allproc_lock);
671 
672 			LIST_REMOVE(p, p_sibling);
673 			sx_xunlock(&proctree_lock);
674 
675 			/*
676 			 * As a side effect of this lock, we know that
677 			 * all other writes to this proc are visible now, so
678 			 * no more locking is needed for p.
679 			 */
680 			PROC_LOCK(p);
681 			p->p_xstat = 0;		/* XXX: why? */
682 			PROC_UNLOCK(p);
683 			PROC_LOCK(q);
684 			ruadd(&q->p_stats->p_cru, p->p_ru);
685 			PROC_UNLOCK(q);
686 			FREE(p->p_ru, M_ZOMBIE);
687 			p->p_ru = NULL;
688 
689 			/*
690 			 * Decrement the count of procs running with this uid.
691 			 */
692 			(void)chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0);
693 
694 			/*
695 			 * Free up credentials.
696 			 */
697 			crfree(p->p_ucred);
698 			p->p_ucred = NULL;	/* XXX: why? */
699 
700 			/*
701 			 * Remove unused arguments
702 			 */
703 			pargs_drop(p->p_args);
704 			p->p_args = NULL;
705 
706 			if (--p->p_procsig->ps_refcnt == 0) {
707 				if (p->p_sigacts != &p->p_uarea->u_sigacts)
708 					FREE(p->p_sigacts, M_SUBPROC);
709 				FREE(p->p_procsig, M_SUBPROC);
710 				p->p_procsig = NULL;
711 			}
712 
713 			/*
714 			 * do any thread-system specific cleanups
715 			 */
716 			thread_wait(p);
717 
718 			/*
719 			 * Give vm and machine-dependent layer a chance
720 			 * to free anything that cpu_exit couldn't
721 			 * release while still running in process context.
722 			 */
723 			vm_waitproc(p);
724 			mtx_destroy(&p->p_mtx);
725 #ifdef MAC
726 			mac_destroy_proc(p);
727 #endif
728 			KASSERT(FIRST_THREAD_IN_PROC(p),
729 			    ("wait1: no residual thread!"));
730 			uma_zfree(proc_zone, p);
731 			sx_xlock(&allproc_lock);
732 			nprocs--;
733 			sx_xunlock(&allproc_lock);
734 			mtx_unlock(&Giant);
735 			return (0);
736 		}
737 		if (P_SHOULDSTOP(p) && ((p->p_flag & P_WAITED) == 0) &&
738 		    (p->p_flag & P_TRACED || uap->options & WUNTRACED)) {
739 			p->p_flag |= P_WAITED;
740 			sx_xunlock(&proctree_lock);
741 			td->td_retval[0] = p->p_pid;
742 #ifdef COMPAT_43
743 			if (compat) {
744 				td->td_retval[1] = W_STOPCODE(p->p_xstat);
745 				PROC_UNLOCK(p);
746 				error = 0;
747 			} else
748 #endif
749 			if (uap->status) {
750 				status = W_STOPCODE(p->p_xstat);
751 				PROC_UNLOCK(p);
752 				error = copyout(&status,
753 					uap->status, sizeof(status));
754 			} else {
755 				PROC_UNLOCK(p);
756 				error = 0;
757 			}
758 			mtx_unlock(&Giant);
759 			return (error);
760 		}
761 		if (uap->options & WCONTINUED && (p->p_flag & P_CONTINUED)) {
762 			sx_xunlock(&proctree_lock);
763 			td->td_retval[0] = p->p_pid;
764 			p->p_flag &= ~P_CONTINUED;
765 			PROC_UNLOCK(p);
766 
767 			if (uap->status) {
768 				status = SIGCONT;
769 				error = copyout(&status,
770 				    uap->status, sizeof(status));
771 			} else
772 				error = 0;
773 
774 			mtx_unlock(&Giant);
775 			return (error);
776 		}
777 		PROC_UNLOCK(p);
778 	}
779 	if (nfound == 0) {
780 		sx_xunlock(&proctree_lock);
781 		mtx_unlock(&Giant);
782 		return (ECHILD);
783 	}
784 	if (uap->options & WNOHANG) {
785 		sx_xunlock(&proctree_lock);
786 		td->td_retval[0] = 0;
787 		mtx_unlock(&Giant);
788 		return (0);
789 	}
790 	PROC_LOCK(q);
791 	sx_xunlock(&proctree_lock);
792 	error = msleep(q, &q->p_mtx, PWAIT | PCATCH, "wait", 0);
793 	PROC_UNLOCK(q);
794 	if (error) {
795 		mtx_unlock(&Giant);
796 		return (error);
797 	}
798 	goto loop;
799 }
800 
801 /*
802  * Make process 'parent' the new parent of process 'child'.
803  * Must be called with an exclusive hold of proctree lock.
804  */
805 void
806 proc_reparent(child, parent)
807 	register struct proc *child;
808 	register struct proc *parent;
809 {
810 
811 	sx_assert(&proctree_lock, SX_XLOCKED);
812 	PROC_LOCK_ASSERT(child, MA_OWNED);
813 	if (child->p_pptr == parent)
814 		return;
815 
816 	LIST_REMOVE(child, p_sibling);
817 	LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
818 	child->p_pptr = parent;
819 }
820 
821 /*
822  * The next two functions are to handle adding/deleting items on the
823  * exit callout list
824  *
825  * at_exit():
826  * Take the arguments given and put them onto the exit callout list,
827  * However first make sure that it's not already there.
828  * returns 0 on success.
829  */
830 
831 int
832 at_exit(function)
833 	exitlist_fn function;
834 {
835 	struct exitlist *ep;
836 
837 #ifdef INVARIANTS
838 	/* Be noisy if the programmer has lost track of things */
839 	if (rm_at_exit(function))
840 		printf("WARNING: exit callout entry (%p) already present\n",
841 		    function);
842 #endif
843 	ep = malloc(sizeof(*ep), M_ATEXIT, M_NOWAIT);
844 	if (ep == NULL)
845 		return (ENOMEM);
846 	ep->function = function;
847 	TAILQ_INSERT_TAIL(&exit_list, ep, next);
848 	return (0);
849 }
850 
851 /*
852  * Scan the exit callout list for the given item and remove it.
853  * Returns the number of items removed (0 or 1)
854  */
855 int
856 rm_at_exit(function)
857 	exitlist_fn function;
858 {
859 	struct exitlist *ep;
860 
861 	TAILQ_FOREACH(ep, &exit_list, next) {
862 		if (ep->function == function) {
863 			TAILQ_REMOVE(&exit_list, ep, next);
864 			free(ep, M_ATEXIT);
865 			return (1);
866 		}
867 	}
868 	return (0);
869 }
870