kern_exit.c revision 170472
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 * 4. Neither the name of the University nor the names of its contributors
19 *    may be used to endorse or promote products derived from this software
20 *    without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 *	@(#)kern_exit.c	8.7 (Berkeley) 2/12/94
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/sys/kern/kern_exit.c 170472 2007-06-09 21:48:44Z attilio $");
39
40#include "opt_compat.h"
41#include "opt_ktrace.h"
42#include "opt_mac.h"
43
44#include <sys/param.h>
45#include <sys/systm.h>
46#include <sys/sysproto.h>
47#include <sys/eventhandler.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/vmmeter.h>
57#include <sys/vnode.h>
58#include <sys/resourcevar.h>
59#include <sys/sbuf.h>
60#include <sys/signalvar.h>
61#include <sys/sched.h>
62#include <sys/sx.h>
63#include <sys/syscallsubr.h>
64#include <sys/syslog.h>
65#include <sys/ptrace.h>
66#include <sys/acct.h>		/* for acct_process() function prototype */
67#include <sys/filedesc.h>
68#include <sys/shm.h>
69#include <sys/sem.h>
70#ifdef KTRACE
71#include <sys/ktrace.h>
72#endif
73
74#include <security/audit/audit.h>
75#include <security/mac/mac_framework.h>
76
77#include <vm/vm.h>
78#include <vm/vm_extern.h>
79#include <vm/vm_param.h>
80#include <vm/pmap.h>
81#include <vm/vm_map.h>
82#include <vm/vm_page.h>
83#include <vm/uma.h>
84
85/* Required to be non-static for SysVR4 emulator */
86MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
87
88/* Hook for NFS teardown procedure. */
89void (*nlminfo_release_p)(struct proc *p);
90
91/*
92 * exit -- death of process.
93 */
94void
95sys_exit(struct thread *td, struct sys_exit_args *uap)
96{
97
98	exit1(td, W_EXITCODE(uap->rval, 0));
99	/* NOTREACHED */
100}
101
102/*
103 * Exit: deallocate address space and other resources, change proc state to
104 * zombie, and unlink proc from allproc and parent's lists.  Save exit status
105 * and rusage for wait().  Check for child processes and orphan them.
106 */
107void
108exit1(struct thread *td, int rv)
109{
110	struct proc *p, *nq, *q;
111	struct tty *tp;
112	struct vnode *ttyvp;
113	struct vnode *vtmp;
114#ifdef KTRACE
115	struct vnode *tracevp;
116	struct ucred *tracecred;
117#endif
118	struct plimit *plim;
119	int locked;
120
121	/*
122	 * Drop Giant if caller has it.  Eventually we should warn about
123	 * being called with Giant held.
124	 */
125	while (mtx_owned(&Giant))
126		mtx_unlock(&Giant);
127
128	p = td->td_proc;
129	if (p == initproc) {
130		printf("init died (signal %d, exit %d)\n",
131		    WTERMSIG(rv), WEXITSTATUS(rv));
132		panic("Going nowhere without my init!");
133	}
134
135	/*
136	 * MUST abort all other threads before proceeding past here.
137	 */
138	PROC_LOCK(p);
139	if (p->p_flag & P_HADTHREADS) {
140retry:
141		/*
142		 * First check if some other thread got here before us..
143		 * if so, act apropriatly, (exit or suspend);
144		 */
145		thread_suspend_check(0);
146
147		/*
148		 * Kill off the other threads. This requires
149		 * some co-operation from other parts of the kernel
150		 * so it may not be instantaneous.  With this state set
151		 * any thread entering the kernel from userspace will
152		 * thread_exit() in trap().  Any thread attempting to
153		 * sleep will return immediately with EINTR or EWOULDBLOCK
154		 * which will hopefully force them to back out to userland
155		 * freeing resources as they go.  Any thread attempting
156		 * to return to userland will thread_exit() from userret().
157		 * thread_exit() will unsuspend us when the last of the
158		 * other threads exits.
159		 * If there is already a thread singler after resumption,
160		 * calling thread_single will fail; in that case, we just
161		 * re-check all suspension request, the thread should
162		 * either be suspended there or exit.
163		 */
164		if (thread_single(SINGLE_EXIT))
165			goto retry;
166
167		/*
168		 * All other activity in this process is now stopped.
169		 * Threading support has been turned off.
170		 */
171	}
172	KASSERT(p->p_numthreads == 1,
173	    ("exit1: proc %p exiting with %d threads", p, p->p_numthreads));
174	/*
175	 * Wakeup anyone in procfs' PIOCWAIT.  They should have a hold
176	 * on our vmspace, so we should block below until they have
177	 * released their reference to us.  Note that if they have
178	 * requested S_EXIT stops we will block here until they ack
179	 * via PIOCCONT.
180	 */
181	_STOPEVENT(p, S_EXIT, rv);
182
183	/*
184	 * Note that we are exiting and do another wakeup of anyone in
185	 * PIOCWAIT in case they aren't listening for S_EXIT stops or
186	 * decided to wait again after we told them we are exiting.
187	 */
188	p->p_flag |= P_WEXIT;
189	wakeup(&p->p_stype);
190
191	/*
192	 * Wait for any processes that have a hold on our vmspace to
193	 * release their reference.
194	 */
195	while (p->p_lock > 0)
196		msleep(&p->p_lock, &p->p_mtx, PWAIT, "exithold", 0);
197
198	PROC_UNLOCK(p);
199	/* Drain the limit callout while we don't have the proc locked */
200	callout_drain(&p->p_limco);
201
202#ifdef AUDIT
203	/*
204	 * The Sun BSM exit token contains two components: an exit status as
205	 * passed to exit(), and a return value to indicate what sort of exit
206	 * it was.  The exit status is WEXITSTATUS(rv), but it's not clear
207	 * what the return value is.
208	 */
209	AUDIT_ARG(exit, WEXITSTATUS(rv), 0);
210	AUDIT_SYSCALL_EXIT(0, td);
211#endif
212
213	/* Are we a task leader? */
214	if (p == p->p_leader) {
215		mtx_lock(&ppeers_lock);
216		q = p->p_peers;
217		while (q != NULL) {
218			PROC_LOCK(q);
219			psignal(q, SIGKILL);
220			PROC_UNLOCK(q);
221			q = q->p_peers;
222		}
223		while (p->p_peers != NULL)
224			msleep(p, &ppeers_lock, PWAIT, "exit1", 0);
225		mtx_unlock(&ppeers_lock);
226	}
227
228	/*
229	 * Check if any loadable modules need anything done at process exit.
230	 * E.g. SYSV IPC stuff
231	 * XXX what if one of these generates an error?
232	 */
233	EVENTHANDLER_INVOKE(process_exit, p);
234
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	stopprofclock(p);
241	p->p_flag &= ~(P_TRACED | P_PPWAIT);
242
243	/*
244	 * Stop the real interval timer.  If the handler is currently
245	 * executing, prevent it from rearming itself and let it finish.
246	 */
247	if (timevalisset(&p->p_realtimer.it_value) &&
248	    callout_stop(&p->p_itcallout) == 0) {
249		timevalclear(&p->p_realtimer.it_interval);
250		msleep(&p->p_itcallout, &p->p_mtx, PWAIT, "ritwait", 0);
251		KASSERT(!timevalisset(&p->p_realtimer.it_value),
252		    ("realtime timer is still armed"));
253	}
254	PROC_UNLOCK(p);
255
256	/*
257	 * Reset any sigio structures pointing to us as a result of
258	 * F_SETOWN with our pid.
259	 */
260	funsetownlst(&p->p_sigiolst);
261
262	/*
263	 * If this process has an nlminfo data area (for lockd), release it
264	 */
265	if (nlminfo_release_p != NULL && p->p_nlminfo != NULL)
266		(*nlminfo_release_p)(p);
267
268	/*
269	 * Close open files and release open-file table.
270	 * This may block!
271	 */
272	fdfree(td);
273
274	/*
275	 * If this thread tickled GEOM, we need to wait for the giggling to
276	 * stop before we return to userland
277	 */
278	if (td->td_pflags & TDP_GEOM)
279		g_waitidle();
280
281	/*
282	 * Remove ourself from our leader's peer list and wake our leader.
283	 */
284	mtx_lock(&ppeers_lock);
285	if (p->p_leader->p_peers) {
286		q = p->p_leader;
287		while (q->p_peers != p)
288			q = q->p_peers;
289		q->p_peers = p->p_peers;
290		wakeup(p->p_leader);
291	}
292	mtx_unlock(&ppeers_lock);
293
294	vmspace_exit(td);
295
296	mtx_lock(&Giant);	/* XXX TTY */
297	sx_xlock(&proctree_lock);
298	if (SESS_LEADER(p)) {
299		struct session *sp;
300
301		sp = p->p_session;
302		if (sp->s_ttyvp) {
303			/*
304			 * Controlling process.
305			 * Signal foreground pgrp,
306			 * drain controlling terminal
307			 * and revoke access to controlling terminal.
308			 */
309			if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) {
310				tp = sp->s_ttyp;
311				if (sp->s_ttyp->t_pgrp) {
312					PGRP_LOCK(sp->s_ttyp->t_pgrp);
313					pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
314					PGRP_UNLOCK(sp->s_ttyp->t_pgrp);
315				}
316				/* XXX tp should be locked. */
317				sx_xunlock(&proctree_lock);
318				(void) ttywait(tp);
319				sx_xlock(&proctree_lock);
320				/*
321				 * The tty could have been revoked
322				 * if we blocked.
323				 */
324				if (sp->s_ttyvp) {
325					ttyvp = sp->s_ttyvp;
326					SESS_LOCK(p->p_session);
327					sp->s_ttyvp = NULL;
328					SESS_UNLOCK(p->p_session);
329					sx_xunlock(&proctree_lock);
330					VOP_LOCK(ttyvp, LK_EXCLUSIVE, td);
331					VOP_REVOKE(ttyvp, REVOKEALL);
332					vput(ttyvp);
333					sx_xlock(&proctree_lock);
334				}
335			}
336			if (sp->s_ttyvp) {
337				ttyvp = sp->s_ttyvp;
338				SESS_LOCK(p->p_session);
339				sp->s_ttyvp = NULL;
340				SESS_UNLOCK(p->p_session);
341				vrele(ttyvp);
342			}
343			/*
344			 * s_ttyp is not zero'd; we use this to indicate
345			 * that the session once had a controlling terminal.
346			 * (for logging and informational purposes)
347			 */
348		}
349		SESS_LOCK(p->p_session);
350		sp->s_leader = NULL;
351		SESS_UNLOCK(p->p_session);
352	}
353	fixjobc(p, p->p_pgrp, 0);
354	sx_xunlock(&proctree_lock);
355	(void)acct_process(td);
356	mtx_unlock(&Giant);
357#ifdef KTRACE
358	/*
359	 * Drain any pending records on the thread and release the trace
360	 * file.  It might be better if drain-and-clear were atomic.
361	 */
362	ktrprocexit(td);
363	PROC_LOCK(p);
364	mtx_lock(&ktrace_mtx);
365	p->p_traceflag = 0;	/* don't trace the vrele() */
366	tracevp = p->p_tracevp;
367	p->p_tracevp = NULL;
368	tracecred = p->p_tracecred;
369	p->p_tracecred = NULL;
370	mtx_unlock(&ktrace_mtx);
371	PROC_UNLOCK(p);
372	if (tracevp != NULL) {
373		locked = VFS_LOCK_GIANT(tracevp->v_mount);
374		vrele(tracevp);
375		VFS_UNLOCK_GIANT(locked);
376	}
377	if (tracecred != NULL)
378		crfree(tracecred);
379#endif
380	/*
381	 * Release reference to text vnode
382	 */
383	if ((vtmp = p->p_textvp) != NULL) {
384		p->p_textvp = NULL;
385		locked = VFS_LOCK_GIANT(vtmp->v_mount);
386		vrele(vtmp);
387		VFS_UNLOCK_GIANT(locked);
388	}
389
390	/*
391	 * Release our limits structure.
392	 */
393	PROC_LOCK(p);
394	plim = p->p_limit;
395	p->p_limit = NULL;
396	PROC_UNLOCK(p);
397	lim_free(plim);
398
399	/*
400	 * Remove proc from allproc queue and pidhash chain.
401	 * Place onto zombproc.  Unlink from parent's child list.
402	 */
403	sx_xlock(&allproc_lock);
404	LIST_REMOVE(p, p_list);
405	LIST_INSERT_HEAD(&zombproc, p, p_list);
406	LIST_REMOVE(p, p_hash);
407	sx_xunlock(&allproc_lock);
408
409	/*
410	 * Call machine-dependent code to release any
411	 * machine-dependent resources other than the address space.
412	 * The address space is released by "vmspace_exitfree(p)" in
413	 * vm_waitproc().
414	 */
415	cpu_exit(td);
416
417	WITNESS_WARN(WARN_PANIC, NULL, "process (pid %d) exiting", p->p_pid);
418
419	/*
420	 * Reparent all of our children to init.
421	 */
422	sx_xlock(&proctree_lock);
423	q = LIST_FIRST(&p->p_children);
424	if (q != NULL)		/* only need this if any child is S_ZOMB */
425		wakeup(initproc);
426	for (; q != NULL; q = nq) {
427		nq = LIST_NEXT(q, p_sibling);
428		PROC_LOCK(q);
429		proc_reparent(q, initproc);
430		q->p_sigparent = SIGCHLD;
431		/*
432		 * Traced processes are killed
433		 * since their existence means someone is screwing up.
434		 */
435		if (q->p_flag & P_TRACED) {
436			q->p_flag &= ~(P_TRACED | P_STOPPED_TRACE);
437			psignal(q, SIGKILL);
438		}
439		PROC_UNLOCK(q);
440	}
441
442	/* Save exit status. */
443	PROC_LOCK(p);
444	p->p_xstat = rv;
445	p->p_xthread = td;
446	/*
447	 * Notify interested parties of our demise.
448	 */
449	KNOTE_LOCKED(&p->p_klist, NOTE_EXIT);
450
451	/*
452	 * Just delete all entries in the p_klist. At this point we won't
453	 * report any more events, and there are nasty race conditions that
454	 * can beat us if we don't.
455	 */
456	knlist_clear(&p->p_klist, 1);
457
458	/*
459	 * Notify parent that we're gone.  If parent has the PS_NOCLDWAIT
460	 * flag set, or if the handler is set to SIG_IGN, notify process
461	 * 1 instead (and hope it will handle this situation).
462	 */
463	PROC_LOCK(p->p_pptr);
464	mtx_lock(&p->p_pptr->p_sigacts->ps_mtx);
465	if (p->p_pptr->p_sigacts->ps_flag & (PS_NOCLDWAIT | PS_CLDSIGIGN)) {
466		struct proc *pp;
467
468		mtx_unlock(&p->p_pptr->p_sigacts->ps_mtx);
469		pp = p->p_pptr;
470		PROC_UNLOCK(pp);
471		proc_reparent(p, initproc);
472		p->p_sigparent = SIGCHLD;
473		PROC_LOCK(p->p_pptr);
474		/*
475		 * If this was the last child of our parent, notify
476		 * parent, so in case he was wait(2)ing, he will
477		 * continue.
478		 */
479		if (LIST_EMPTY(&pp->p_children))
480			wakeup(pp);
481	} else
482		mtx_unlock(&p->p_pptr->p_sigacts->ps_mtx);
483
484	if (p->p_pptr == initproc)
485		psignal(p->p_pptr, SIGCHLD);
486	else if (p->p_sigparent != 0) {
487		if (p->p_sigparent == SIGCHLD)
488			childproc_exited(p);
489		else	/* LINUX thread */
490			psignal(p->p_pptr, p->p_sigparent);
491	}
492	sx_xunlock(&proctree_lock);
493
494	/*
495	 * The state PRS_ZOMBIE prevents other proesses from sending
496	 * signal to the process, to avoid memory leak, we free memory
497	 * for signal queue at the time when the state is set.
498	 */
499	sigqueue_flush(&p->p_sigqueue);
500	sigqueue_flush(&td->td_sigqueue);
501
502	/*
503	 * We have to wait until after acquiring all locks before
504	 * changing p_state.  We need to avoid all possible context
505	 * switches (including ones from blocking on a mutex) while
506	 * marked as a zombie.  We also have to set the zombie state
507	 * before we release the parent process' proc lock to avoid
508	 * a lost wakeup.  So, we first call wakeup, then we grab the
509	 * sched lock, update the state, and release the parent process'
510	 * proc lock.
511	 */
512	wakeup(p->p_pptr);
513	PROC_SLOCK(p->p_pptr);
514	sched_exit(p->p_pptr, td);
515	PROC_SUNLOCK(p->p_pptr);
516	PROC_SLOCK(p);
517	p->p_state = PRS_ZOMBIE;
518	PROC_UNLOCK(p->p_pptr);
519
520	/*
521	 * Hopefully no one will try to deliver a signal to the process this
522	 * late in the game.
523	 */
524	knlist_destroy(&p->p_klist);
525
526	/*
527	 * Save our children's rusage information in our exit rusage.
528	 */
529	ruadd(&p->p_ru, &p->p_rux, &p->p_stats->p_cru, &p->p_crux);
530
531	/*
532	 * Make sure the scheduler takes this thread out of its tables etc.
533	 * This will also release this thread's reference to the ucred.
534	 * Other thread parts to release include pcb bits and such.
535	 */
536	thread_exit();
537}
538
539
540#ifndef _SYS_SYSPROTO_H_
541struct abort2_args {
542	char *why;
543	int nargs;
544	void **args;
545};
546#endif
547
548int
549abort2(struct thread *td, struct abort2_args *uap)
550{
551	struct proc *p = td->td_proc;
552	struct sbuf *sb;
553	void *uargs[16];
554	int error, i, sig;
555
556	error = 0;	/* satisfy compiler */
557
558	/*
559	 * Do it right now so we can log either proper call of abort2(), or
560	 * note, that invalid argument was passed. 512 is big enough to
561	 * handle 16 arguments' descriptions with additional comments.
562	 */
563	sb = sbuf_new(NULL, NULL, 512, SBUF_FIXEDLEN);
564	sbuf_clear(sb);
565	sbuf_printf(sb, "%s(pid %d uid %d) aborted: ",
566	    p->p_comm, p->p_pid, td->td_ucred->cr_uid);
567	/*
568	 * Since we can't return from abort2(), send SIGKILL in cases, where
569	 * abort2() was called improperly
570	 */
571	sig = SIGKILL;
572	/* Prevent from DoSes from user-space. */
573	if (uap->nargs < 0 || uap->nargs > 16)
574		goto out;
575	if (uap->args == NULL)
576		goto out;
577	error = copyin(uap->args, uargs, uap->nargs * sizeof(void *));
578	if (error != 0)
579		goto out;
580	/*
581	 * Limit size of 'reason' string to 128. Will fit even when
582	 * maximal number of arguments was chosen to be logged.
583	 */
584	if (uap->why != NULL) {
585		error = sbuf_copyin(sb, uap->why, 128);
586		if (error < 0)
587			goto out;
588	} else {
589		sbuf_printf(sb, "(null)");
590	}
591	if (uap->nargs) {
592		sbuf_printf(sb, "(");
593		for (i = 0;i < uap->nargs; i++)
594			sbuf_printf(sb, "%s%p", i == 0 ? "" : ", ", uargs[i]);
595		sbuf_printf(sb, ")");
596	}
597	/*
598	 * Final stage: arguments were proper, string has been
599	 * successfully copied from userspace, and copying pointers
600	 * from user-space succeed.
601	 */
602	sig = SIGABRT;
603out:
604	if (sig == SIGKILL) {
605		sbuf_trim(sb);
606		sbuf_printf(sb, " (Reason text inaccessible)");
607	}
608	sbuf_cat(sb, "\n");
609	sbuf_finish(sb);
610	log(LOG_INFO, "%s", sbuf_data(sb));
611	sbuf_delete(sb);
612	exit1(td, W_EXITCODE(0, sig));
613	return (0);
614}
615
616
617#ifdef COMPAT_43
618/*
619 * The dirty work is handled by kern_wait().
620 */
621int
622owait(struct thread *td, struct owait_args *uap __unused)
623{
624	int error, status;
625
626	error = kern_wait(td, WAIT_ANY, &status, 0, NULL);
627	if (error == 0)
628		td->td_retval[1] = status;
629	return (error);
630}
631#endif /* COMPAT_43 */
632
633/*
634 * The dirty work is handled by kern_wait().
635 */
636int
637wait4(struct thread *td, struct wait_args *uap)
638{
639	struct rusage ru, *rup;
640	int error, status;
641
642	if (uap->rusage != NULL)
643		rup = &ru;
644	else
645		rup = NULL;
646	error = kern_wait(td, uap->pid, &status, uap->options, rup);
647	if (uap->status != NULL && error == 0)
648		error = copyout(&status, uap->status, sizeof(status));
649	if (uap->rusage != NULL && error == 0)
650		error = copyout(&ru, uap->rusage, sizeof(struct rusage));
651	return (error);
652}
653
654int
655kern_wait(struct thread *td, pid_t pid, int *status, int options,
656    struct rusage *rusage)
657{
658	struct proc *p, *q, *t;
659	int error, nfound;
660
661	AUDIT_ARG(pid, pid);
662
663	q = td->td_proc;
664	if (pid == 0) {
665		PROC_LOCK(q);
666		pid = -q->p_pgid;
667		PROC_UNLOCK(q);
668	}
669	if (options &~ (WUNTRACED|WNOHANG|WCONTINUED|WLINUXCLONE))
670		return (EINVAL);
671loop:
672	if (q->p_flag & P_STATCHILD) {
673		PROC_LOCK(q);
674		q->p_flag &= ~P_STATCHILD;
675		PROC_UNLOCK(q);
676	}
677	nfound = 0;
678	sx_xlock(&proctree_lock);
679	LIST_FOREACH(p, &q->p_children, p_sibling) {
680		PROC_LOCK(p);
681		if (pid != WAIT_ANY &&
682		    p->p_pid != pid && p->p_pgid != -pid) {
683			PROC_UNLOCK(p);
684			continue;
685		}
686		if (p_canwait(td, p)) {
687			PROC_UNLOCK(p);
688			continue;
689		}
690
691		/*
692		 * This special case handles a kthread spawned by linux_clone
693		 * (see linux_misc.c).  The linux_wait4 and linux_waitpid
694		 * functions need to be able to distinguish between waiting
695		 * on a process and waiting on a thread.  It is a thread if
696		 * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
697		 * signifies we want to wait for threads and not processes.
698		 */
699		if ((p->p_sigparent != SIGCHLD) ^
700		    ((options & WLINUXCLONE) != 0)) {
701			PROC_UNLOCK(p);
702			continue;
703		}
704
705		nfound++;
706		PROC_SLOCK(p);
707		if (p->p_state == PRS_ZOMBIE) {
708			if (rusage) {
709				*rusage = p->p_ru;
710				calcru(p, &rusage->ru_utime, &rusage->ru_stime);
711			}
712			PROC_SUNLOCK(p);
713			td->td_retval[0] = p->p_pid;
714			if (status)
715				*status = p->p_xstat;	/* convert to int */
716			PROC_LOCK(q);
717			sigqueue_take(p->p_ksi);
718			PROC_UNLOCK(q);
719
720			/*
721			 * If we got the child via a ptrace 'attach',
722			 * we need to give it back to the old parent.
723			 */
724			PROC_UNLOCK(p);
725			if (p->p_oppid && (t = pfind(p->p_oppid)) != NULL) {
726				PROC_LOCK(p);
727				p->p_oppid = 0;
728				proc_reparent(p, t);
729				PROC_UNLOCK(p);
730				tdsignal(t, NULL, SIGCHLD, p->p_ksi);
731				wakeup(t);
732				PROC_UNLOCK(t);
733				sx_xunlock(&proctree_lock);
734				return (0);
735			}
736
737			/*
738			 * Remove other references to this process to ensure
739			 * we have an exclusive reference.
740			 */
741			sx_xlock(&allproc_lock);
742			LIST_REMOVE(p, p_list);	/* off zombproc */
743			sx_xunlock(&allproc_lock);
744			LIST_REMOVE(p, p_sibling);
745			leavepgrp(p);
746			sx_xunlock(&proctree_lock);
747
748			/*
749			 * As a side effect of this lock, we know that
750			 * all other writes to this proc are visible now, so
751			 * no more locking is needed for p.
752			 */
753			PROC_LOCK(p);
754			p->p_xstat = 0;		/* XXX: why? */
755			PROC_UNLOCK(p);
756			PROC_LOCK(q);
757			ruadd(&q->p_stats->p_cru, &q->p_crux, &p->p_ru,
758			    &p->p_rux);
759			PROC_UNLOCK(q);
760
761			/*
762			 * Decrement the count of procs running with this uid.
763			 */
764			(void)chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0);
765
766			/*
767			 * Free credentials, arguments, and sigacts.
768			 */
769			crfree(p->p_ucred);
770			p->p_ucred = NULL;
771			pargs_drop(p->p_args);
772			p->p_args = NULL;
773			sigacts_free(p->p_sigacts);
774			p->p_sigacts = NULL;
775
776			/*
777			 * Do any thread-system specific cleanups.
778			 */
779			thread_wait(p);
780
781			/*
782			 * Give vm and machine-dependent layer a chance
783			 * to free anything that cpu_exit couldn't
784			 * release while still running in process context.
785			 */
786			vm_waitproc(p);
787#ifdef MAC
788			mac_destroy_proc(p);
789#endif
790			KASSERT(FIRST_THREAD_IN_PROC(p),
791			    ("kern_wait: no residual thread!"));
792			uma_zfree(proc_zone, p);
793			sx_xlock(&allproc_lock);
794			nprocs--;
795			sx_xunlock(&allproc_lock);
796			return (0);
797		}
798		if ((p->p_flag & P_STOPPED_SIG) &&
799		    (p->p_suspcount == p->p_numthreads) &&
800		    (p->p_flag & P_WAITED) == 0 &&
801		    (p->p_flag & P_TRACED || options & WUNTRACED)) {
802			PROC_SUNLOCK(p);
803			p->p_flag |= P_WAITED;
804			sx_xunlock(&proctree_lock);
805			td->td_retval[0] = p->p_pid;
806			if (status)
807				*status = W_STOPCODE(p->p_xstat);
808
809			PROC_LOCK(q);
810			sigqueue_take(p->p_ksi);
811			PROC_UNLOCK(q);
812			PROC_UNLOCK(p);
813
814			return (0);
815		}
816		PROC_SUNLOCK(p);
817		if (options & WCONTINUED && (p->p_flag & P_CONTINUED)) {
818			sx_xunlock(&proctree_lock);
819			td->td_retval[0] = p->p_pid;
820			p->p_flag &= ~P_CONTINUED;
821
822			PROC_LOCK(q);
823			sigqueue_take(p->p_ksi);
824			PROC_UNLOCK(q);
825			PROC_UNLOCK(p);
826
827			if (status)
828				*status = SIGCONT;
829			return (0);
830		}
831		PROC_UNLOCK(p);
832	}
833	if (nfound == 0) {
834		sx_xunlock(&proctree_lock);
835		return (ECHILD);
836	}
837	if (options & WNOHANG) {
838		sx_xunlock(&proctree_lock);
839		td->td_retval[0] = 0;
840		return (0);
841	}
842	PROC_LOCK(q);
843	sx_xunlock(&proctree_lock);
844	if (q->p_flag & P_STATCHILD) {
845		q->p_flag &= ~P_STATCHILD;
846		error = 0;
847	} else
848		error = msleep(q, &q->p_mtx, PWAIT | PCATCH, "wait", 0);
849	PROC_UNLOCK(q);
850	if (error)
851		return (error);
852	goto loop;
853}
854
855/*
856 * Make process 'parent' the new parent of process 'child'.
857 * Must be called with an exclusive hold of proctree lock.
858 */
859void
860proc_reparent(struct proc *child, struct proc *parent)
861{
862
863	sx_assert(&proctree_lock, SX_XLOCKED);
864	PROC_LOCK_ASSERT(child, MA_OWNED);
865	if (child->p_pptr == parent)
866		return;
867
868	PROC_LOCK(child->p_pptr);
869	sigqueue_take(child->p_ksi);
870	PROC_UNLOCK(child->p_pptr);
871	LIST_REMOVE(child, p_sibling);
872	LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
873	child->p_pptr = parent;
874}
875