xref: /freebsd/sys/kern/kern_exit.c (revision 8fa113e5fc65fe6abc757f0089f477a87ee4d185)
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 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/sysproto.h>
48 #include <sys/kernel.h>
49 #include <sys/malloc.h>
50 #include <sys/lock.h>
51 #include <sys/mutex.h>
52 #include <sys/proc.h>
53 #include <sys/pioctl.h>
54 #include <sys/tty.h>
55 #include <sys/wait.h>
56 #include <sys/vnode.h>
57 #include <sys/vmmeter.h>
58 #include <sys/resourcevar.h>
59 #include <sys/signalvar.h>
60 #include <sys/sx.h>
61 #include <sys/ptrace.h>
62 #include <sys/acct.h>		/* for acct_process() function prototype */
63 #include <sys/filedesc.h>
64 #include <sys/shm.h>
65 #include <sys/sem.h>
66 #include <sys/aio.h>
67 #include <sys/jail.h>
68 
69 #include <vm/vm.h>
70 #include <vm/vm_param.h>
71 #include <vm/vm_extern.h>
72 #include <vm/pmap.h>
73 #include <vm/vm_map.h>
74 #include <vm/vm_zone.h>
75 #include <sys/user.h>
76 
77 /* Required to be non-static for SysVR4 emulator */
78 MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
79 
80 static MALLOC_DEFINE(M_ATEXIT, "atexit", "atexit callback");
81 
82 static int wait1 __P((struct thread *, struct wait_args *, int));
83 
84 /*
85  * callout list for things to do at exit time
86  */
87 struct exitlist {
88 	exitlist_fn function;
89 	TAILQ_ENTRY(exitlist) next;
90 };
91 
92 TAILQ_HEAD(exit_list_head, exitlist);
93 static struct exit_list_head exit_list = TAILQ_HEAD_INITIALIZER(exit_list);
94 
95 /*
96  * exit --
97  *	Death of process.
98  *
99  * MPSAFE
100  */
101 void
102 sys_exit(td, uap)
103 	struct thread *td;
104 	struct sys_exit_args /* {
105 		int	rval;
106 	} */ *uap;
107 {
108 
109 	mtx_lock(&Giant);
110 	exit1(td, W_EXITCODE(uap->rval, 0));
111 	/* NOTREACHED */
112 }
113 
114 /*
115  * Exit: deallocate address space and other resources, change proc state
116  * to zombie, and unlink proc from allproc and parent's lists.  Save exit
117  * status and rusage for wait().  Check for child processes and orphan them.
118  */
119 void
120 exit1(td, rv)
121 	register struct thread *td;
122 	int rv;
123 {
124 	struct proc *p = td->td_proc;
125 	register struct proc *q, *nq;
126 	register struct vmspace *vm;
127 #ifdef KTRACE
128 	struct vnode *vtmp;
129 #endif
130 	struct exitlist *ep;
131 
132 	GIANT_REQUIRED;
133 
134 	if (p->p_pid == 1) {
135 		printf("init died (signal %d, exit %d)\n",
136 		    WTERMSIG(rv), WEXITSTATUS(rv));
137 		panic("Going nowhere without my init!");
138 	}
139 
140 /* XXXXKSE */
141 /* MUST abort all other threads before proceeding past this point */
142 
143 	aio_proc_rundown(p);
144 
145 	/* are we a task leader? */
146 	PROC_LOCK(p);
147 	if(p == p->p_leader) {
148 		q = p->p_peers;
149 		while (q != NULL) {
150 			PROC_LOCK(q);
151 			psignal(q, SIGKILL);
152 			PROC_UNLOCK(q);
153 			q = q->p_peers;
154 		}
155 		while (p->p_peers)
156 			msleep((caddr_t)p, &p->p_mtx, PWAIT, "exit1", 0);
157 	}
158 	PROC_UNLOCK(p);
159 
160 #ifdef PGINPROF
161 	vmsizmon();
162 #endif
163 	STOPEVENT(p, S_EXIT, rv);
164 	wakeup(&p->p_stype);	/* Wakeup anyone in procfs' PIOCWAIT */
165 
166 	/*
167 	 * Check if any loadable modules need anything done at process exit.
168 	 * e.g. SYSV IPC stuff
169 	 * XXX what if one of these generates an error?
170 	 */
171 	TAILQ_FOREACH(ep, &exit_list, next)
172 		(*ep->function)(p);
173 
174 	stopprofclock(p);
175 
176 	MALLOC(p->p_ru, struct rusage *, sizeof(struct rusage),
177 		M_ZOMBIE, M_WAITOK);
178 	/*
179 	 * If parent is waiting for us to exit or exec,
180 	 * P_PPWAIT is set; we will wakeup the parent below.
181 	 */
182 	PROC_LOCK(p);
183 	p->p_flag &= ~(P_TRACED | P_PPWAIT);
184 	p->p_flag |= P_WEXIT;
185 	SIGEMPTYSET(p->p_siglist);
186 	PROC_UNLOCK(p);
187 	if (timevalisset(&p->p_realtimer.it_value))
188 		callout_stop(&p->p_itcallout);
189 
190 	/*
191 	 * Reset any sigio structures pointing to us as a result of
192 	 * F_SETOWN with our pid.
193 	 */
194 	funsetownlst(&p->p_sigiolst);
195 
196 	/*
197 	 * Close open files and release open-file table.
198 	 * This may block!
199 	 */
200 	fdfree(td); /* XXXKSE *//* may not be the one in proc */
201 
202 	/*
203 	 * Remove ourself from our leader's peer list and wake our leader.
204 	 */
205 	PROC_LOCK(p->p_leader);
206 	if(p->p_leader->p_peers) {
207 		q = p->p_leader;
208 		while(q->p_peers != p)
209 			q = q->p_peers;
210 		q->p_peers = p->p_peers;
211 		wakeup((caddr_t)p->p_leader);
212 	}
213 	PROC_UNLOCK(p->p_leader);
214 
215 	/*
216 	 * XXX Shutdown SYSV semaphores
217 	 */
218 	semexit(p);
219 
220 	/* The next two chunks should probably be moved to vmspace_exit. */
221 	vm = p->p_vmspace;
222 	/*
223 	 * Release user portion of address space.
224 	 * This releases references to vnodes,
225 	 * which could cause I/O if the file has been unlinked.
226 	 * Need to do this early enough that we can still sleep.
227 	 * Can't free the entire vmspace as the kernel stack
228 	 * may be mapped within that space also.
229 	 */
230 	if (vm->vm_refcnt == 1) {
231 		if (vm->vm_shm)
232 			shmexit(p);
233 		pmap_remove_pages(vmspace_pmap(vm), VM_MIN_ADDRESS,
234 		    VM_MAXUSER_ADDRESS);
235 		(void) vm_map_remove(&vm->vm_map, VM_MIN_ADDRESS,
236 		    VM_MAXUSER_ADDRESS);
237 	}
238 
239 	PROC_LOCK(p);
240 	if (SESS_LEADER(p)) {
241 		register struct session *sp = p->p_session;
242 
243 		PROC_UNLOCK(p);
244 		if (sp->s_ttyvp) {
245 			/*
246 			 * Controlling process.
247 			 * Signal foreground pgrp,
248 			 * drain controlling terminal
249 			 * and revoke access to controlling terminal.
250 			 */
251 			if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) {
252 				if (sp->s_ttyp->t_pgrp)
253 					pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
254 				(void) ttywait(sp->s_ttyp);
255 				/*
256 				 * The tty could have been revoked
257 				 * if we blocked.
258 				 */
259 				if (sp->s_ttyvp)
260 					VOP_REVOKE(sp->s_ttyvp, REVOKEALL);
261 			}
262 			if (sp->s_ttyvp)
263 				vrele(sp->s_ttyvp);
264 			sp->s_ttyvp = NULL;
265 			/*
266 			 * s_ttyp is not zero'd; we use this to indicate
267 			 * that the session once had a controlling terminal.
268 			 * (for logging and informational purposes)
269 			 */
270 		}
271 		sp->s_leader = NULL;
272 	} else
273 		PROC_UNLOCK(p);
274 	fixjobc(p, p->p_pgrp, 0);
275 	(void)acct_process(td);
276 #ifdef KTRACE
277 	/*
278 	 * release trace file
279 	 */
280 	p->p_traceflag = 0;	/* don't trace the vrele() */
281 	if ((vtmp = p->p_tracep) != NULL) {
282 		p->p_tracep = NULL;
283 		vrele(vtmp);
284 	}
285 #endif
286 	/*
287 	 * Remove proc from allproc queue and pidhash chain.
288 	 * Place onto zombproc.  Unlink from parent's child list.
289 	 */
290 	sx_xlock(&allproc_lock);
291 	LIST_REMOVE(p, p_list);
292 	LIST_INSERT_HEAD(&zombproc, p, p_list);
293 	LIST_REMOVE(p, p_hash);
294 	sx_xunlock(&allproc_lock);
295 
296 	sx_xlock(&proctree_lock);
297 	q = LIST_FIRST(&p->p_children);
298 	if (q != NULL)		/* only need this if any child is S_ZOMB */
299 		wakeup((caddr_t) initproc);
300 	for (; q != NULL; q = nq) {
301 		nq = LIST_NEXT(q, p_sibling);
302 		PROC_LOCK(q);
303 		proc_reparent(q, initproc);
304 		q->p_sigparent = SIGCHLD;
305 		/*
306 		 * Traced processes are killed
307 		 * since their existence means someone is screwing up.
308 		 */
309 		if (q->p_flag & P_TRACED) {
310 			q->p_flag &= ~P_TRACED;
311 			psignal(q, SIGKILL);
312 		}
313 		PROC_UNLOCK(q);
314 	}
315 
316 	/*
317 	 * Save exit status and final rusage info, adding in child rusage
318 	 * info and self times.
319 	 */
320 	p->p_xstat = rv;
321 	*p->p_ru = p->p_stats->p_ru;
322 	mtx_lock_spin(&sched_lock);
323 	calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL);
324 	mtx_unlock_spin(&sched_lock);
325 	ruadd(p->p_ru, &p->p_stats->p_cru);
326 
327 	/*
328 	 * Pretend that an mi_switch() to the next process occurs now.  We
329 	 * must set `switchtime' directly since we will call cpu_switch()
330 	 * directly.  Set it now so that the rest of the exit time gets
331 	 * counted somewhere if possible.
332 	 */
333 	mtx_lock_spin(&sched_lock);
334 	microuptime(PCPU_PTR(switchtime));
335 	PCPU_SET(switchticks, ticks);
336 	mtx_unlock_spin(&sched_lock);
337 
338 	/*
339 	 * notify interested parties of our demise.
340 	 */
341 	PROC_LOCK(p);
342 	KNOTE(&p->p_klist, NOTE_EXIT);
343 
344 	/*
345 	 * Notify parent that we're gone.  If parent has the PS_NOCLDWAIT
346 	 * flag set, notify process 1 instead (and hope it will handle
347 	 * this situation).
348 	 */
349 	if (p->p_pptr->p_procsig->ps_flag & PS_NOCLDWAIT) {
350 		struct proc *pp = p->p_pptr;
351 		proc_reparent(p, initproc);
352 		/*
353 		 * If this was the last child of our parent, notify
354 		 * parent, so in case he was wait(2)ing, he will
355 		 * continue.
356 		 */
357 		if (LIST_EMPTY(&pp->p_children))
358 			wakeup((caddr_t)pp);
359 	}
360 
361 	PROC_LOCK(p->p_pptr);
362 	if (p->p_sigparent && p->p_pptr != initproc)
363 	        psignal(p->p_pptr, p->p_sigparent);
364 	else
365 	        psignal(p->p_pptr, SIGCHLD);
366 	PROC_UNLOCK(p->p_pptr);
367 
368 	/*
369 	 * If this is a kthread, then wakeup anyone waiting for it to exit.
370 	 */
371 	if (p->p_flag & P_KTHREAD)
372 		wakeup((caddr_t)p);
373 	PROC_UNLOCK(p);
374 	sx_xunlock(&proctree_lock);
375 
376 	/*
377 	 * Clear curproc after we've done all operations
378 	 * that could block, and before tearing down the rest
379 	 * of the process state that might be used from clock, etc.
380 	 * Also, can't clear curproc while we're still runnable,
381 	 * as we're not on a run queue (we are current, just not
382 	 * a proper proc any longer!).
383 	 *
384 	 * Other substructures are freed from wait().
385 	 */
386 	mtx_assert(&Giant, MA_OWNED);
387 	if (--p->p_limit->p_refcnt == 0) {
388 		FREE(p->p_limit, M_SUBPROC);
389 		p->p_limit = NULL;
390 	}
391 
392 	/*
393 	 * Release this thread's reference to the ucred.  The actual proc
394 	 * reference will stay around until the proc is harvested by
395 	 * wait().  At this point the ucred is immutable (no other threads
396 	 * from this proc are around that can change it) so we leave the
397 	 * per-thread ucred pointer intact in case it is needed although
398 	 * in theory nothing should be using it at this point.
399 	 */
400 	crfree(td->td_ucred);
401 
402 	/*
403 	 * Finally, call machine-dependent code to release the remaining
404 	 * resources including address space, the kernel stack and pcb.
405 	 * The address space is released by "vmspace_free(p->p_vmspace)"
406 	 * in vm_waitproc();
407 	 */
408 	cpu_exit(td);
409 
410 	PROC_LOCK(p);
411 	mtx_lock_spin(&sched_lock);
412 	while (mtx_owned(&Giant))
413 		mtx_unlock_flags(&Giant, MTX_NOSWITCH);
414 
415 	/*
416 	 * We have to wait until after releasing all locks before
417 	 * changing p_stat.  If we block on a mutex then we will be
418 	 * back at SRUN when we resume and our parent will never
419 	 * harvest us.
420 	 */
421 	p->p_stat = SZOMB;
422 
423 	wakeup(p->p_pptr);
424 	PROC_UNLOCK_NOSWITCH(p);
425 
426 	cnt.v_swtch++;
427 	cpu_throw();
428 	panic("exit1");
429 }
430 
431 #ifdef COMPAT_43
432 /*
433  * MPSAFE, the dirty work is handled by wait1().
434  */
435 int
436 owait(td, uap)
437 	struct thread *td;
438 	register struct owait_args /* {
439 		int     dummy;
440 	} */ *uap;
441 {
442 	struct wait_args w;
443 
444 	w.options = 0;
445 	w.rusage = NULL;
446 	w.pid = WAIT_ANY;
447 	w.status = NULL;
448 	return (wait1(td, &w, 1));
449 }
450 #endif /* COMPAT_43 */
451 
452 /*
453  * MPSAFE, the dirty work is handled by wait1().
454  */
455 int
456 wait4(td, uap)
457 	struct thread *td;
458 	struct wait_args *uap;
459 {
460 
461 	return (wait1(td, uap, 0));
462 }
463 
464 /*
465  * MPSAFE
466  */
467 static int
468 wait1(td, uap, compat)
469 	register struct thread *td;
470 	register struct wait_args /* {
471 		int pid;
472 		int *status;
473 		int options;
474 		struct rusage *rusage;
475 	} */ *uap;
476 	int compat;
477 {
478 	register int nfound;
479 	register struct proc *q, *p, *t;
480 	int status, error;
481 
482 	mtx_lock(&Giant);
483 	q = td->td_proc;
484 	if (uap->pid == 0)
485 		uap->pid = -q->p_pgid;
486 	if (uap->options &~ (WUNTRACED|WNOHANG|WLINUXCLONE)) {
487 		error = EINVAL;
488 		goto done2;
489 	}
490 loop:
491 	nfound = 0;
492 	sx_slock(&proctree_lock);
493 	LIST_FOREACH(p, &q->p_children, p_sibling) {
494 		if (uap->pid != WAIT_ANY &&
495 		    p->p_pid != uap->pid && p->p_pgid != -uap->pid)
496 			continue;
497 
498 		/*
499 		 * This special case handles a kthread spawned by linux_clone
500 		 * (see linux_misc.c).  The linux_wait4 and linux_waitpid
501 		 * functions need to be able to distinguish between waiting
502 		 * on a process and waiting on a thread.  It is a thread if
503 		 * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
504 		 * signifies we want to wait for threads and not processes.
505 		 */
506 		PROC_LOCK(p);
507 		if ((p->p_sigparent != SIGCHLD) ^
508 		    ((uap->options & WLINUXCLONE) != 0)) {
509 			PROC_UNLOCK(p);
510 			continue;
511 		}
512 
513 		nfound++;
514 		mtx_lock_spin(&sched_lock);
515 		if (p->p_stat == SZOMB) {
516 			/*
517 			 * charge childs scheduling cpu usage to parent
518 			 * XXXKSE assume only one thread & kse & ksegrp
519 			 * keep estcpu in each ksegrp
520 			 * so charge it to the ksegrp that did the wait
521 			 * since process estcpu is sum of all ksegrps,
522 			 * this is strictly as expected.
523 			 * Assume that the child process aggregated all
524 			 * tke estcpu into the 'build-in' ksegrp.
525 			 * XXXKSE
526 			 */
527 			if (curthread->td_proc->p_pid != 1) {
528 				curthread->td_ksegrp->kg_estcpu =
529 				    ESTCPULIM(curthread->td_ksegrp->kg_estcpu +
530 				    p->p_ksegrp.kg_estcpu);
531 			}
532 
533 			mtx_unlock_spin(&sched_lock);
534 			PROC_UNLOCK(p);
535 			sx_sunlock(&proctree_lock);
536 
537 			td->td_retval[0] = p->p_pid;
538 #ifdef COMPAT_43
539 			if (compat)
540 				td->td_retval[1] = p->p_xstat;
541 			else
542 #endif
543 			if (uap->status) {
544 				status = p->p_xstat;	/* convert to int */
545 				if ((error = copyout((caddr_t)&status,
546 				    (caddr_t)uap->status, sizeof(status)))) {
547 					goto done2;
548 				}
549 			}
550 			if (uap->rusage && (error = copyout((caddr_t)p->p_ru,
551 			    (caddr_t)uap->rusage, sizeof (struct rusage)))) {
552 				goto done2;
553 			}
554 			/*
555 			 * If we got the child via a ptrace 'attach',
556 			 * we need to give it back to the old parent.
557 			 */
558 			sx_xlock(&proctree_lock);
559 			if (p->p_oppid) {
560 				if ((t = pfind(p->p_oppid)) != NULL) {
561 					PROC_LOCK(p);
562 					p->p_oppid = 0;
563 					proc_reparent(p, t);
564 					PROC_UNLOCK(p);
565 					psignal(t, SIGCHLD);
566 					wakeup((caddr_t)t);
567 					PROC_UNLOCK(t);
568 					sx_xunlock(&proctree_lock);
569 					error = 0;
570 					goto done2;
571 				}
572 			}
573 			sx_xunlock(&proctree_lock);
574 			PROC_LOCK(p);
575 			p->p_xstat = 0;
576 			PROC_UNLOCK(p);
577 			ruadd(&q->p_stats->p_cru, p->p_ru);
578 			FREE(p->p_ru, M_ZOMBIE);
579 			p->p_ru = NULL;
580 
581 			/*
582 			 * Decrement the count of procs running with this uid.
583 			 */
584 			(void)chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0);
585 
586 			/*
587 			 * Release reference to text vnode
588 			 */
589 			if (p->p_textvp)
590 				vrele(p->p_textvp);
591 
592 			/*
593 			 * Finally finished with old proc entry.
594 			 * Unlink it from its process group and free it.
595 			 */
596 			leavepgrp(p);
597 
598 			sx_xlock(&allproc_lock);
599 			LIST_REMOVE(p, p_list);	/* off zombproc */
600 			sx_xunlock(&allproc_lock);
601 
602 			sx_xlock(&proctree_lock);
603 			LIST_REMOVE(p, p_sibling);
604 			sx_xunlock(&proctree_lock);
605 
606 			/*
607 			 * Free up credentials.
608 			 */
609 			crfree(p->p_ucred);
610 			p->p_ucred = NULL;
611 
612 			/*
613 			 * Remove unused arguments
614 			 */
615 			if (p->p_args && --p->p_args->ar_ref == 0)
616 				FREE(p->p_args, M_PARGS);
617 
618 			if (--p->p_procsig->ps_refcnt == 0) {
619 				if (p->p_sigacts != &p->p_uarea->u_sigacts)
620 					FREE(p->p_sigacts, M_SUBPROC);
621 			        FREE(p->p_procsig, M_SUBPROC);
622 				p->p_procsig = NULL;
623 			}
624 
625 			/*
626 			 * Give vm and machine-dependent layer a chance
627 			 * to free anything that cpu_exit couldn't
628 			 * release while still running in process context.
629 			 */
630 			vm_waitproc(p);
631 			mtx_destroy(&p->p_mtx);
632 			zfree(proc_zone, p);
633 			nprocs--;
634 			error = 0;
635 			goto done2;
636 		}
637 		if (p->p_stat == SSTOP && (p->p_flag & P_WAITED) == 0 &&
638 		    (p->p_flag & P_TRACED || uap->options & WUNTRACED)) {
639 			mtx_unlock_spin(&sched_lock);
640 			p->p_flag |= P_WAITED;
641 			PROC_UNLOCK(p);
642 			sx_sunlock(&proctree_lock);
643 			td->td_retval[0] = p->p_pid;
644 #ifdef COMPAT_43
645 			if (compat) {
646 				td->td_retval[1] = W_STOPCODE(p->p_xstat);
647 				error = 0;
648 			} else
649 #endif
650 			if (uap->status) {
651 				status = W_STOPCODE(p->p_xstat);
652 				error = copyout((caddr_t)&status,
653 					(caddr_t)uap->status, sizeof(status));
654 			} else
655 				error = 0;
656 			goto done2;
657 		}
658 		mtx_unlock_spin(&sched_lock);
659 		PROC_UNLOCK(p);
660 	}
661 	sx_sunlock(&proctree_lock);
662 	if (nfound == 0) {
663 		error = ECHILD;
664 		goto done2;
665 	}
666 	if (uap->options & WNOHANG) {
667 		td->td_retval[0] = 0;
668 		error = 0;
669 		goto done2;
670 	}
671 	if ((error = tsleep((caddr_t)q, PWAIT | PCATCH, "wait", 0)) != 0)
672 		goto done2;
673 	goto loop;
674 done2:
675 	mtx_unlock(&Giant);
676 	return(error);
677 }
678 
679 /*
680  * Make process 'parent' the new parent of process 'child'.
681  * Must be called with an exclusive hold of proctree lock.
682  */
683 void
684 proc_reparent(child, parent)
685 	register struct proc *child;
686 	register struct proc *parent;
687 {
688 
689 	sx_assert(&proctree_lock, SX_XLOCKED);
690 	PROC_LOCK_ASSERT(child, MA_OWNED);
691 	if (child->p_pptr == parent)
692 		return;
693 
694 	LIST_REMOVE(child, p_sibling);
695 	LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
696 	child->p_pptr = parent;
697 }
698 
699 /*
700  * The next two functions are to handle adding/deleting items on the
701  * exit callout list
702  *
703  * at_exit():
704  * Take the arguments given and put them onto the exit callout list,
705  * However first make sure that it's not already there.
706  * returns 0 on success.
707  */
708 
709 int
710 at_exit(function)
711 	exitlist_fn function;
712 {
713 	struct exitlist *ep;
714 
715 #ifdef INVARIANTS
716 	/* Be noisy if the programmer has lost track of things */
717 	if (rm_at_exit(function))
718 		printf("WARNING: exit callout entry (%p) already present\n",
719 		    function);
720 #endif
721 	ep = malloc(sizeof(*ep), M_ATEXIT, M_NOWAIT);
722 	if (ep == NULL)
723 		return (ENOMEM);
724 	ep->function = function;
725 	TAILQ_INSERT_TAIL(&exit_list, ep, next);
726 	return (0);
727 }
728 
729 /*
730  * Scan the exit callout list for the given item and remove it.
731  * Returns the number of items removed (0 or 1)
732  */
733 int
734 rm_at_exit(function)
735 	exitlist_fn function;
736 {
737 	struct exitlist *ep;
738 
739 	TAILQ_FOREACH(ep, &exit_list, next) {
740 		if (ep->function == function) {
741 			TAILQ_REMOVE(&exit_list, ep, next);
742 			free(ep, M_ATEXIT);
743 			return(1);
744 		}
745 	}
746 	return (0);
747 }
748