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