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