]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/kern/kern_exit.c
MFC 269656,270024,270443,270993:
[FreeBSD/stable/9.git] / sys / kern / kern_exit.c
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_procdesc.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/sysproto.h>
48 #include <sys/capability.h>
49 #include <sys/eventhandler.h>
50 #include <sys/kernel.h>
51 #include <sys/malloc.h>
52 #include <sys/lock.h>
53 #include <sys/mutex.h>
54 #include <sys/proc.h>
55 #include <sys/procdesc.h>
56 #include <sys/pioctl.h>
57 #include <sys/jail.h>
58 #include <sys/tty.h>
59 #include <sys/wait.h>
60 #include <sys/vmmeter.h>
61 #include <sys/vnode.h>
62 #include <sys/racct.h>
63 #include <sys/resourcevar.h>
64 #include <sys/sbuf.h>
65 #include <sys/signalvar.h>
66 #include <sys/sched.h>
67 #include <sys/sx.h>
68 #include <sys/syscallsubr.h>
69 #include <sys/syslog.h>
70 #include <sys/ptrace.h>
71 #include <sys/acct.h>           /* for acct_process() function prototype */
72 #include <sys/filedesc.h>
73 #include <sys/sdt.h>
74 #include <sys/shm.h>
75 #include <sys/sem.h>
76 #ifdef KTRACE
77 #include <sys/ktrace.h>
78 #endif
79
80 #include <security/audit/audit.h>
81 #include <security/mac/mac_framework.h>
82
83 #include <vm/vm.h>
84 #include <vm/vm_extern.h>
85 #include <vm/vm_param.h>
86 #include <vm/pmap.h>
87 #include <vm/vm_map.h>
88 #include <vm/vm_page.h>
89 #include <vm/uma.h>
90
91 #ifdef KDTRACE_HOOKS
92 #include <sys/dtrace_bsd.h>
93 dtrace_execexit_func_t  dtrace_fasttrap_exit;
94 #endif
95
96 SDT_PROVIDER_DECLARE(proc);
97 SDT_PROBE_DEFINE1(proc, kernel, , exit, "int");
98
99 /* Hook for NFS teardown procedure. */
100 void (*nlminfo_release_p)(struct proc *p);
101
102 struct proc *
103 proc_realparent(struct proc *child)
104 {
105         struct proc *p, *parent;
106
107         sx_assert(&proctree_lock, SX_LOCKED);
108         if ((child->p_treeflag & P_TREE_ORPHANED) == 0) {
109                 if (child->p_oppid == 0 ||
110                     child->p_pptr->p_pid == child->p_oppid)
111                         parent = child->p_pptr;
112                 else
113                         parent = initproc;
114                 return (parent);
115         }
116         for (p = child; (p->p_treeflag & P_TREE_FIRST_ORPHAN) == 0;) {
117                 /* Cannot use LIST_PREV(), since the list head is not known. */
118                 p = __containerof(p->p_orphan.le_prev, struct proc,
119                     p_orphan.le_next);
120                 KASSERT((p->p_treeflag & P_TREE_ORPHANED) != 0,
121                     ("missing P_ORPHAN %p", p));
122         }
123         parent = __containerof(p->p_orphan.le_prev, struct proc,
124             p_orphans.lh_first);
125         return (parent);
126 }
127
128 static void
129 clear_orphan(struct proc *p)
130 {
131         struct proc *p1;
132
133         sx_assert(&proctree_lock, SA_XLOCKED);
134         if ((p->p_treeflag & P_TREE_ORPHANED) == 0)
135                 return;
136         if ((p->p_treeflag & P_TREE_FIRST_ORPHAN) != 0) {
137                 p1 = LIST_NEXT(p, p_orphan);
138                 if (p1 != NULL)
139                         p1->p_treeflag |= P_TREE_FIRST_ORPHAN;
140                 p->p_treeflag &= ~P_TREE_FIRST_ORPHAN;
141         }
142         LIST_REMOVE(p, p_orphan);
143         p->p_treeflag &= ~P_TREE_ORPHANED;
144 }
145
146 /*
147  * exit -- death of process.
148  */
149 void
150 sys_sys_exit(struct thread *td, struct sys_exit_args *uap)
151 {
152
153         exit1(td, W_EXITCODE(uap->rval, 0));
154         /* NOTREACHED */
155 }
156
157 /*
158  * Exit: deallocate address space and other resources, change proc state to
159  * zombie, and unlink proc from allproc and parent's lists.  Save exit status
160  * and rusage for wait().  Check for child processes and orphan them.
161  */
162 void
163 exit1(struct thread *td, int rv)
164 {
165         struct proc *p, *nq, *q, *t;
166         struct thread *tdt;
167         struct vnode *vtmp;
168         struct vnode *ttyvp = NULL;
169         struct plimit *plim;
170         int locked;
171
172         mtx_assert(&Giant, MA_NOTOWNED);
173
174         p = td->td_proc;
175         /*
176          * XXX in case we're rebooting we just let init die in order to
177          * work around an unsolved stack overflow seen very late during
178          * shutdown on sparc64 when the gmirror worker process exists.
179          */
180         if (p == initproc && rebooting == 0) {
181                 printf("init died (signal %d, exit %d)\n",
182                     WTERMSIG(rv), WEXITSTATUS(rv));
183                 panic("Going nowhere without my init!");
184         }
185
186         /*
187          * MUST abort all other threads before proceeding past here.
188          */
189         PROC_LOCK(p);
190         while (p->p_flag & P_HADTHREADS) {
191                 /*
192                  * First check if some other thread got here before us..
193                  * if so, act apropriatly, (exit or suspend);
194                  */
195                 thread_suspend_check(0);
196
197                 /*
198                  * Kill off the other threads. This requires
199                  * some co-operation from other parts of the kernel
200                  * so it may not be instantaneous.  With this state set
201                  * any thread entering the kernel from userspace will
202                  * thread_exit() in trap().  Any thread attempting to
203                  * sleep will return immediately with EINTR or EWOULDBLOCK
204                  * which will hopefully force them to back out to userland
205                  * freeing resources as they go.  Any thread attempting
206                  * to return to userland will thread_exit() from userret().
207                  * thread_exit() will unsuspend us when the last of the
208                  * other threads exits.
209                  * If there is already a thread singler after resumption,
210                  * calling thread_single will fail; in that case, we just
211                  * re-check all suspension request, the thread should
212                  * either be suspended there or exit.
213                  */
214                 if (! thread_single(SINGLE_EXIT))
215                         break;
216
217                 /*
218                  * All other activity in this process is now stopped.
219                  * Threading support has been turned off.
220                  */
221         }
222         KASSERT(p->p_numthreads == 1,
223             ("exit1: proc %p exiting with %d threads", p, p->p_numthreads));
224         racct_sub(p, RACCT_NTHR, 1);
225         /*
226          * Wakeup anyone in procfs' PIOCWAIT.  They should have a hold
227          * on our vmspace, so we should block below until they have
228          * released their reference to us.  Note that if they have
229          * requested S_EXIT stops we will block here until they ack
230          * via PIOCCONT.
231          */
232         _STOPEVENT(p, S_EXIT, rv);
233
234         /*
235          * Ignore any pending request to stop due to a stop signal.
236          * Once P_WEXIT is set, future requests will be ignored as
237          * well.
238          */
239         p->p_flag &= ~P_STOPPED_SIG;
240         KASSERT(!P_SHOULDSTOP(p), ("exiting process is stopped"));
241
242         /*
243          * Note that we are exiting and do another wakeup of anyone in
244          * PIOCWAIT in case they aren't listening for S_EXIT stops or
245          * decided to wait again after we told them we are exiting.
246          */
247         p->p_flag |= P_WEXIT;
248         wakeup(&p->p_stype);
249
250         /*
251          * Wait for any processes that have a hold on our vmspace to
252          * release their reference.
253          */
254         while (p->p_lock > 0)
255                 msleep(&p->p_lock, &p->p_mtx, PWAIT, "exithold", 0);
256
257         p->p_xstat = rv;        /* Let event handler change exit status */
258         PROC_UNLOCK(p);
259         /* Drain the limit callout while we don't have the proc locked */
260         callout_drain(&p->p_limco);
261
262 #ifdef AUDIT
263         /*
264          * The Sun BSM exit token contains two components: an exit status as
265          * passed to exit(), and a return value to indicate what sort of exit
266          * it was.  The exit status is WEXITSTATUS(rv), but it's not clear
267          * what the return value is.
268          */
269         AUDIT_ARG_EXIT(WEXITSTATUS(rv), 0);
270         AUDIT_SYSCALL_EXIT(0, td);
271 #endif
272
273         /* Are we a task leader? */
274         if (p == p->p_leader) {
275                 mtx_lock(&ppeers_lock);
276                 q = p->p_peers;
277                 while (q != NULL) {
278                         PROC_LOCK(q);
279                         kern_psignal(q, SIGKILL);
280                         PROC_UNLOCK(q);
281                         q = q->p_peers;
282                 }
283                 while (p->p_peers != NULL)
284                         msleep(p, &ppeers_lock, PWAIT, "exit1", 0);
285                 mtx_unlock(&ppeers_lock);
286         }
287
288         /*
289          * Check if any loadable modules need anything done at process exit.
290          * E.g. SYSV IPC stuff
291          * XXX what if one of these generates an error?
292          */
293         EVENTHANDLER_INVOKE(process_exit, p);
294
295         /*
296          * If parent is waiting for us to exit or exec,
297          * P_PPWAIT is set; we will wakeup the parent below.
298          */
299         PROC_LOCK(p);
300         rv = p->p_xstat;        /* Event handler could change exit status */
301         stopprofclock(p);
302         p->p_flag &= ~(P_TRACED | P_PPWAIT | P_PPTRACE);
303
304         /*
305          * Stop the real interval timer.  If the handler is currently
306          * executing, prevent it from rearming itself and let it finish.
307          */
308         if (timevalisset(&p->p_realtimer.it_value) &&
309             callout_stop(&p->p_itcallout) == 0) {
310                 timevalclear(&p->p_realtimer.it_interval);
311                 msleep(&p->p_itcallout, &p->p_mtx, PWAIT, "ritwait", 0);
312                 KASSERT(!timevalisset(&p->p_realtimer.it_value),
313                     ("realtime timer is still armed"));
314         }
315         PROC_UNLOCK(p);
316
317         /*
318          * Reset any sigio structures pointing to us as a result of
319          * F_SETOWN with our pid.
320          */
321         funsetownlst(&p->p_sigiolst);
322
323         /*
324          * If this process has an nlminfo data area (for lockd), release it
325          */
326         if (nlminfo_release_p != NULL && p->p_nlminfo != NULL)
327                 (*nlminfo_release_p)(p);
328
329         /*
330          * Close open files and release open-file table.
331          * This may block!
332          */
333         fdfree(td);
334
335         /*
336          * If this thread tickled GEOM, we need to wait for the giggling to
337          * stop before we return to userland
338          */
339         if (td->td_pflags & TDP_GEOM)
340                 g_waitidle();
341
342         /*
343          * Remove ourself from our leader's peer list and wake our leader.
344          */
345         mtx_lock(&ppeers_lock);
346         if (p->p_leader->p_peers) {
347                 q = p->p_leader;
348                 while (q->p_peers != p)
349                         q = q->p_peers;
350                 q->p_peers = p->p_peers;
351                 wakeup(p->p_leader);
352         }
353         mtx_unlock(&ppeers_lock);
354
355         vmspace_exit(td);
356
357         sx_xlock(&proctree_lock);
358         if (SESS_LEADER(p)) {
359                 struct session *sp = p->p_session;
360                 struct tty *tp;
361
362                 /*
363                  * s_ttyp is not zero'd; we use this to indicate that
364                  * the session once had a controlling terminal. (for
365                  * logging and informational purposes)
366                  */
367                 SESS_LOCK(sp);
368                 ttyvp = sp->s_ttyvp;
369                 tp = sp->s_ttyp;
370                 sp->s_ttyvp = NULL;
371                 sp->s_ttydp = NULL;
372                 sp->s_leader = NULL;
373                 SESS_UNLOCK(sp);
374
375                 /*
376                  * Signal foreground pgrp and revoke access to
377                  * controlling terminal if it has not been revoked
378                  * already.
379                  *
380                  * Because the TTY may have been revoked in the mean
381                  * time and could already have a new session associated
382                  * with it, make sure we don't send a SIGHUP to a
383                  * foreground process group that does not belong to this
384                  * session.
385                  */
386
387                 if (tp != NULL) {
388                         tty_lock(tp);
389                         if (tp->t_session == sp)
390                                 tty_signal_pgrp(tp, SIGHUP);
391                         tty_unlock(tp);
392                 }
393
394                 if (ttyvp != NULL) {
395                         sx_xunlock(&proctree_lock);
396                         if (vn_lock(ttyvp, LK_EXCLUSIVE) == 0) {
397                                 VOP_REVOKE(ttyvp, REVOKEALL);
398                                 VOP_UNLOCK(ttyvp, 0);
399                         }
400                         sx_xlock(&proctree_lock);
401                 }
402         }
403         fixjobc(p, p->p_pgrp, 0);
404         sx_xunlock(&proctree_lock);
405         (void)acct_process(td);
406
407         /* Release the TTY now we've unlocked everything. */
408         if (ttyvp != NULL)
409                 vrele(ttyvp);
410 #ifdef KTRACE
411         ktrprocexit(td);
412 #endif
413         /*
414          * Release reference to text vnode
415          */
416         if ((vtmp = p->p_textvp) != NULL) {
417                 p->p_textvp = NULL;
418                 locked = VFS_LOCK_GIANT(vtmp->v_mount);
419                 vrele(vtmp);
420                 VFS_UNLOCK_GIANT(locked);
421         }
422
423         /*
424          * Release our limits structure.
425          */
426         PROC_LOCK(p);
427         plim = p->p_limit;
428         p->p_limit = NULL;
429         PROC_UNLOCK(p);
430         lim_free(plim);
431
432         tidhash_remove(td);
433
434         /*
435          * Remove proc from allproc queue and pidhash chain.
436          * Place onto zombproc.  Unlink from parent's child list.
437          */
438         sx_xlock(&allproc_lock);
439         LIST_REMOVE(p, p_list);
440         LIST_INSERT_HEAD(&zombproc, p, p_list);
441         LIST_REMOVE(p, p_hash);
442         sx_xunlock(&allproc_lock);
443
444         /*
445          * Call machine-dependent code to release any
446          * machine-dependent resources other than the address space.
447          * The address space is released by "vmspace_exitfree(p)" in
448          * vm_waitproc().
449          */
450         cpu_exit(td);
451
452         WITNESS_WARN(WARN_PANIC, NULL, "process (pid %d) exiting", p->p_pid);
453
454         /*
455          * Reparent all children processes:
456          * - traced ones to the original parent (or init if we are that parent)
457          * - the rest to init
458          */
459         sx_xlock(&proctree_lock);
460         q = LIST_FIRST(&p->p_children);
461         if (q != NULL)          /* only need this if any child is S_ZOMB */
462                 wakeup(initproc);
463         for (; q != NULL; q = nq) {
464                 nq = LIST_NEXT(q, p_sibling);
465                 PROC_LOCK(q);
466                 q->p_sigparent = SIGCHLD;
467
468                 if (!(q->p_flag & P_TRACED)) {
469                         proc_reparent(q, initproc);
470                 } else {
471                         /*
472                          * Traced processes are killed since their existence
473                          * means someone is screwing up.
474                          */
475                         t = proc_realparent(q);
476                         if (t == p) {
477                                 proc_reparent(q, initproc);
478                         } else {
479                                 PROC_LOCK(t);
480                                 proc_reparent(q, t);
481                                 PROC_UNLOCK(t);
482                         }
483                         /*
484                          * Since q was found on our children list, the
485                          * proc_reparent() call moved q to the orphan
486                          * list due to present P_TRACED flag. Clear
487                          * orphan link for q now while q is locked.
488                          */
489                         clear_orphan(q);
490                         q->p_flag &= ~(P_TRACED | P_STOPPED_TRACE);
491                         FOREACH_THREAD_IN_PROC(q, tdt)
492                                 tdt->td_dbgflags &= ~TDB_SUSPEND;
493                         kern_psignal(q, SIGKILL);
494                 }
495                 PROC_UNLOCK(q);
496         }
497
498         /*
499          * Also get rid of our orphans.
500          */
501         while ((q = LIST_FIRST(&p->p_orphans)) != NULL) {
502                 PROC_LOCK(q);
503                 CTR2(KTR_PTRACE, "exit: pid %d, clearing orphan %d", p->p_pid,
504                     q->p_pid);
505                 clear_orphan(q);
506                 PROC_UNLOCK(q);
507         }
508
509         /* Save exit status. */
510         PROC_LOCK(p);
511         p->p_xthread = td;
512
513         /* Tell the prison that we are gone. */
514         prison_proc_free(p->p_ucred->cr_prison);
515
516 #ifdef KDTRACE_HOOKS
517         /*
518          * Tell the DTrace fasttrap provider about the exit if it
519          * has declared an interest.
520          */
521         if (dtrace_fasttrap_exit)
522                 dtrace_fasttrap_exit(p);
523 #endif
524
525         /*
526          * Notify interested parties of our demise.
527          */
528         KNOTE_LOCKED(&p->p_klist, NOTE_EXIT);
529
530 #ifdef KDTRACE_HOOKS
531         int reason = CLD_EXITED;
532         if (WCOREDUMP(rv))
533                 reason = CLD_DUMPED;
534         else if (WIFSIGNALED(rv))
535                 reason = CLD_KILLED;
536         SDT_PROBE(proc, kernel, , exit, reason, 0, 0, 0, 0);
537 #endif
538
539         /*
540          * Just delete all entries in the p_klist. At this point we won't
541          * report any more events, and there are nasty race conditions that
542          * can beat us if we don't.
543          */
544         knlist_clear(&p->p_klist, 1);
545
546         /*
547          * If this is a process with a descriptor, we may not need to deliver
548          * a signal to the parent.  proctree_lock is held over
549          * procdesc_exit() to serialize concurrent calls to close() and
550          * exit().
551          */
552 #ifdef PROCDESC
553         if (p->p_procdesc == NULL || procdesc_exit(p)) {
554 #endif
555                 /*
556                  * Notify parent that we're gone.  If parent has the
557                  * PS_NOCLDWAIT flag set, or if the handler is set to SIG_IGN,
558                  * notify process 1 instead (and hope it will handle this
559                  * situation).
560                  */
561                 PROC_LOCK(p->p_pptr);
562                 mtx_lock(&p->p_pptr->p_sigacts->ps_mtx);
563                 if (p->p_pptr->p_sigacts->ps_flag &
564                     (PS_NOCLDWAIT | PS_CLDSIGIGN)) {
565                         struct proc *pp;
566
567                         mtx_unlock(&p->p_pptr->p_sigacts->ps_mtx);
568                         pp = p->p_pptr;
569                         PROC_UNLOCK(pp);
570                         proc_reparent(p, initproc);
571                         p->p_sigparent = SIGCHLD;
572                         PROC_LOCK(p->p_pptr);
573
574                         /*
575                          * Notify parent, so in case he was wait(2)ing or
576                          * executing waitpid(2) with our pid, he will
577                          * continue.
578                          */
579                         wakeup(pp);
580                 } else
581                         mtx_unlock(&p->p_pptr->p_sigacts->ps_mtx);
582
583                 if (p->p_pptr == initproc)
584                         kern_psignal(p->p_pptr, SIGCHLD);
585                 else if (p->p_sigparent != 0) {
586                         if (p->p_sigparent == SIGCHLD)
587                                 childproc_exited(p);
588                         else    /* LINUX thread */
589                                 kern_psignal(p->p_pptr, p->p_sigparent);
590                 }
591 #ifdef PROCDESC
592         } else
593                 PROC_LOCK(p->p_pptr);
594 #endif
595         sx_xunlock(&proctree_lock);
596
597         /*
598          * The state PRS_ZOMBIE prevents other proesses from sending
599          * signal to the process, to avoid memory leak, we free memory
600          * for signal queue at the time when the state is set.
601          */
602         sigqueue_flush(&p->p_sigqueue);
603         sigqueue_flush(&td->td_sigqueue);
604
605         /*
606          * We have to wait until after acquiring all locks before
607          * changing p_state.  We need to avoid all possible context
608          * switches (including ones from blocking on a mutex) while
609          * marked as a zombie.  We also have to set the zombie state
610          * before we release the parent process' proc lock to avoid
611          * a lost wakeup.  So, we first call wakeup, then we grab the
612          * sched lock, update the state, and release the parent process'
613          * proc lock.
614          */
615         wakeup(p->p_pptr);
616         cv_broadcast(&p->p_pwait);
617         sched_exit(p->p_pptr, td);
618         PROC_SLOCK(p);
619         p->p_state = PRS_ZOMBIE;
620         PROC_UNLOCK(p->p_pptr);
621
622         /*
623          * Hopefully no one will try to deliver a signal to the process this
624          * late in the game.
625          */
626         knlist_destroy(&p->p_klist);
627
628         /*
629          * Save our children's rusage information in our exit rusage.
630          */
631         ruadd(&p->p_ru, &p->p_rux, &p->p_stats->p_cru, &p->p_crux);
632
633         /*
634          * Make sure the scheduler takes this thread out of its tables etc.
635          * This will also release this thread's reference to the ucred.
636          * Other thread parts to release include pcb bits and such.
637          */
638         thread_exit();
639 }
640
641
642 #ifndef _SYS_SYSPROTO_H_
643 struct abort2_args {
644         char *why;
645         int nargs;
646         void **args;
647 };
648 #endif
649
650 int
651 sys_abort2(struct thread *td, struct abort2_args *uap)
652 {
653         struct proc *p = td->td_proc;
654         struct sbuf *sb;
655         void *uargs[16];
656         int error, i, sig;
657
658         /*
659          * Do it right now so we can log either proper call of abort2(), or
660          * note, that invalid argument was passed. 512 is big enough to
661          * handle 16 arguments' descriptions with additional comments.
662          */
663         sb = sbuf_new(NULL, NULL, 512, SBUF_FIXEDLEN);
664         sbuf_clear(sb);
665         sbuf_printf(sb, "%s(pid %d uid %d) aborted: ",
666             p->p_comm, p->p_pid, td->td_ucred->cr_uid);
667         /*
668          * Since we can't return from abort2(), send SIGKILL in cases, where
669          * abort2() was called improperly
670          */
671         sig = SIGKILL;
672         /* Prevent from DoSes from user-space. */
673         if (uap->nargs < 0 || uap->nargs > 16)
674                 goto out;
675         if (uap->nargs > 0) {
676                 if (uap->args == NULL)
677                         goto out;
678                 error = copyin(uap->args, uargs, uap->nargs * sizeof(void *));
679                 if (error != 0)
680                         goto out;
681         }
682         /*
683          * Limit size of 'reason' string to 128. Will fit even when
684          * maximal number of arguments was chosen to be logged.
685          */
686         if (uap->why != NULL) {
687                 error = sbuf_copyin(sb, uap->why, 128);
688                 if (error < 0)
689                         goto out;
690         } else {
691                 sbuf_printf(sb, "(null)");
692         }
693         if (uap->nargs > 0) {
694                 sbuf_printf(sb, "(");
695                 for (i = 0;i < uap->nargs; i++)
696                         sbuf_printf(sb, "%s%p", i == 0 ? "" : ", ", uargs[i]);
697                 sbuf_printf(sb, ")");
698         }
699         /*
700          * Final stage: arguments were proper, string has been
701          * successfully copied from userspace, and copying pointers
702          * from user-space succeed.
703          */
704         sig = SIGABRT;
705 out:
706         if (sig == SIGKILL) {
707                 sbuf_trim(sb);
708                 sbuf_printf(sb, " (Reason text inaccessible)");
709         }
710         sbuf_cat(sb, "\n");
711         sbuf_finish(sb);
712         log(LOG_INFO, "%s", sbuf_data(sb));
713         sbuf_delete(sb);
714         exit1(td, W_EXITCODE(0, sig));
715         return (0);
716 }
717
718
719 #ifdef COMPAT_43
720 /*
721  * The dirty work is handled by kern_wait().
722  */
723 int
724 owait(struct thread *td, struct owait_args *uap __unused)
725 {
726         int error, status;
727
728         error = kern_wait(td, WAIT_ANY, &status, 0, NULL);
729         if (error == 0)
730                 td->td_retval[1] = status;
731         return (error);
732 }
733 #endif /* COMPAT_43 */
734
735 /*
736  * The dirty work is handled by kern_wait().
737  */
738 int
739 sys_wait4(struct thread *td, struct wait4_args *uap)
740 {
741         struct rusage ru, *rup;
742         int error, status;
743
744         if (uap->rusage != NULL)
745                 rup = &ru;
746         else
747                 rup = NULL;
748         error = kern_wait(td, uap->pid, &status, uap->options, rup);
749         if (uap->status != NULL && error == 0)
750                 error = copyout(&status, uap->status, sizeof(status));
751         if (uap->rusage != NULL && error == 0)
752                 error = copyout(&ru, uap->rusage, sizeof(struct rusage));
753         return (error);
754 }
755
756 int
757 sys_wait6(struct thread *td, struct wait6_args *uap)
758 {
759         struct __wrusage wru, *wrup;
760         siginfo_t si, *sip;
761         idtype_t idtype;
762         id_t id;
763         int error, status;
764
765         idtype = uap->idtype;
766         id = uap->id;
767
768         if (uap->wrusage != NULL)
769                 wrup = &wru;
770         else
771                 wrup = NULL;
772
773         if (uap->info != NULL) {
774                 sip = &si;
775                 bzero(sip, sizeof(*sip));
776         } else
777                 sip = NULL;
778
779         /*
780          *  We expect all callers of wait6() to know about WEXITED and
781          *  WTRAPPED.
782          */
783         error = kern_wait6(td, idtype, id, &status, uap->options, wrup, sip);
784
785         if (uap->status != NULL && error == 0)
786                 error = copyout(&status, uap->status, sizeof(status));
787         if (uap->wrusage != NULL && error == 0)
788                 error = copyout(&wru, uap->wrusage, sizeof(wru));
789         if (uap->info != NULL && error == 0)
790                 error = copyout(&si, uap->info, sizeof(si));
791         return (error);
792 }
793
794 /*
795  * Reap the remains of a zombie process and optionally return status and
796  * rusage.  Asserts and will release both the proctree_lock and the process
797  * lock as part of its work.
798  */
799 void
800 proc_reap(struct thread *td, struct proc *p, int *status, int options)
801 {
802         struct proc *q, *t;
803
804         sx_assert(&proctree_lock, SA_XLOCKED);
805         PROC_LOCK_ASSERT(p, MA_OWNED);
806         PROC_SLOCK_ASSERT(p, MA_OWNED);
807         KASSERT(p->p_state == PRS_ZOMBIE, ("proc_reap: !PRS_ZOMBIE"));
808
809         q = td->td_proc;
810
811         PROC_SUNLOCK(p);
812         td->td_retval[0] = p->p_pid;
813         if (status)
814                 *status = p->p_xstat;   /* convert to int */
815         if (options & WNOWAIT) {
816                 /*
817                  *  Only poll, returning the status.  Caller does not wish to
818                  * release the proc struct just yet.
819                  */
820                 PROC_UNLOCK(p);
821                 sx_xunlock(&proctree_lock);
822                 return;
823         }
824
825         PROC_LOCK(q);
826         sigqueue_take(p->p_ksi);
827         PROC_UNLOCK(q);
828         PROC_UNLOCK(p);
829
830         /*
831          * If we got the child via a ptrace 'attach', we need to give it back
832          * to the old parent.
833          */
834         if (p->p_oppid != 0) {
835                 t = proc_realparent(p);
836                 PROC_LOCK(t);
837                 PROC_LOCK(p);
838                 CTR2(KTR_PTRACE,
839                     "wait: traced child %d moved back to parent %d", p->p_pid,
840                     t->p_pid);
841                 proc_reparent(p, t);
842                 p->p_oppid = 0;
843                 PROC_UNLOCK(p);
844                 pksignal(t, SIGCHLD, p->p_ksi);
845                 wakeup(t);
846                 cv_broadcast(&p->p_pwait);
847                 PROC_UNLOCK(t);
848                 sx_xunlock(&proctree_lock);
849                 return;
850         }
851
852         /*
853          * Remove other references to this process to ensure we have an
854          * exclusive reference.
855          */
856         sx_xlock(&allproc_lock);
857         LIST_REMOVE(p, p_list); /* off zombproc */
858         sx_xunlock(&allproc_lock);
859         LIST_REMOVE(p, p_sibling);
860         PROC_LOCK(p);
861         clear_orphan(p);
862         PROC_UNLOCK(p);
863         leavepgrp(p);
864 #ifdef PROCDESC
865         if (p->p_procdesc != NULL)
866                 procdesc_reap(p);
867 #endif
868         sx_xunlock(&proctree_lock);
869
870         /*
871          * As a side effect of this lock, we know that all other writes to
872          * this proc are visible now, so no more locking is needed for p.
873          */
874         PROC_LOCK(p);
875         p->p_xstat = 0;         /* XXX: why? */
876         PROC_UNLOCK(p);
877         PROC_LOCK(q);
878         ruadd(&q->p_stats->p_cru, &q->p_crux, &p->p_ru, &p->p_rux);
879         PROC_UNLOCK(q);
880
881         /*
882          * Decrement the count of procs running with this uid.
883          */
884         (void)chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0);
885
886         /*
887          * Destroy resource accounting information associated with the process.
888          */
889 #ifdef RACCT
890         PROC_LOCK(p);
891         racct_sub(p, RACCT_NPROC, 1);
892         PROC_UNLOCK(p);
893 #endif
894         racct_proc_exit(p);
895
896         /*
897          * Free credentials, arguments, and sigacts.
898          */
899         crfree(p->p_ucred);
900         p->p_ucred = NULL;
901         pargs_drop(p->p_args);
902         p->p_args = NULL;
903         sigacts_free(p->p_sigacts);
904         p->p_sigacts = NULL;
905
906         /*
907          * Do any thread-system specific cleanups.
908          */
909         thread_wait(p);
910
911         /*
912          * Give vm and machine-dependent layer a chance to free anything that
913          * cpu_exit couldn't release while still running in process context.
914          */
915         vm_waitproc(p);
916 #ifdef MAC
917         mac_proc_destroy(p);
918 #endif
919         KASSERT(FIRST_THREAD_IN_PROC(p),
920             ("proc_reap: no residual thread!"));
921         uma_zfree(proc_zone, p);
922         sx_xlock(&allproc_lock);
923         nprocs--;
924         sx_xunlock(&allproc_lock);
925 }
926
927 static int
928 proc_to_reap(struct thread *td, struct proc *p, idtype_t idtype, id_t id,
929     int *status, int options, struct __wrusage *wrusage, siginfo_t *siginfo)
930 {
931         struct proc *q;
932         struct rusage *rup;
933
934         sx_assert(&proctree_lock, SA_XLOCKED);
935
936         q = td->td_proc;
937         PROC_LOCK(p);
938
939         switch (idtype) {
940         case P_ALL:
941                 break;
942         case P_PID:
943                 if (p->p_pid != (pid_t)id) {
944                         PROC_UNLOCK(p);
945                         return (0);
946                 }
947                 break;
948         case P_PGID:
949                 if (p->p_pgid != (pid_t)id) {
950                         PROC_UNLOCK(p);
951                         return (0);
952                 }
953                 break;
954         case P_SID:
955                 if (p->p_session->s_sid != (pid_t)id) {
956                         PROC_UNLOCK(p);
957                         return (0);
958                 }
959                 break;
960         case P_UID:
961                 if (p->p_ucred->cr_uid != (uid_t)id) {
962                         PROC_UNLOCK(p);
963                         return (0);
964                 }
965                 break;
966         case P_GID:
967                 if (p->p_ucred->cr_gid != (gid_t)id) {
968                         PROC_UNLOCK(p);
969                         return (0);
970                 }
971                 break;
972         case P_JAILID:
973                 if (p->p_ucred->cr_prison == NULL ||
974                     (p->p_ucred->cr_prison->pr_id != (int)id)) {
975                         PROC_UNLOCK(p);
976                         return (0);
977                 }
978                 break;
979         /*
980          * It seems that the thread structures get zeroed out
981          * at process exit.  This makes it impossible to
982          * support P_SETID, P_CID or P_CPUID.
983          */
984         default:
985                 PROC_UNLOCK(p);
986                 return (0);
987         }
988
989         if (p_canwait(td, p)) {
990                 PROC_UNLOCK(p);
991                 return (0);
992         }
993
994         if (((options & WEXITED) == 0) && (p->p_state == PRS_ZOMBIE)) {
995                 PROC_UNLOCK(p);
996                 return (0);
997         }
998
999         /*
1000          * This special case handles a kthread spawned by linux_clone
1001          * (see linux_misc.c).  The linux_wait4 and linux_waitpid
1002          * functions need to be able to distinguish between waiting
1003          * on a process and waiting on a thread.  It is a thread if
1004          * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
1005          * signifies we want to wait for threads and not processes.
1006          */
1007         if ((p->p_sigparent != SIGCHLD) ^
1008             ((options & WLINUXCLONE) != 0)) {
1009                 PROC_UNLOCK(p);
1010                 return (0);
1011         }
1012
1013         PROC_SLOCK(p);
1014
1015         if (siginfo != NULL) {
1016                 bzero(siginfo, sizeof(*siginfo));
1017                 siginfo->si_errno = 0;
1018
1019                 /*
1020                  * SUSv4 requires that the si_signo value is always
1021                  * SIGCHLD. Obey it despite the rfork(2) interface
1022                  * allows to request other signal for child exit
1023                  * notification.
1024                  */
1025                 siginfo->si_signo = SIGCHLD;
1026
1027                 /*
1028                  *  This is still a rough estimate.  We will fix the
1029                  *  cases TRAPPED, STOPPED, and CONTINUED later.
1030                  */
1031                 if (WCOREDUMP(p->p_xstat)) {
1032                         siginfo->si_code = CLD_DUMPED;
1033                         siginfo->si_status = WTERMSIG(p->p_xstat);
1034                 } else if (WIFSIGNALED(p->p_xstat)) {
1035                         siginfo->si_code = CLD_KILLED;
1036                         siginfo->si_status = WTERMSIG(p->p_xstat);
1037                 } else {
1038                         siginfo->si_code = CLD_EXITED;
1039                         siginfo->si_status = WEXITSTATUS(p->p_xstat);
1040                 }
1041
1042                 siginfo->si_pid = p->p_pid;
1043                 siginfo->si_uid = p->p_ucred->cr_uid;
1044
1045                 /*
1046                  * The si_addr field would be useful additional
1047                  * detail, but apparently the PC value may be lost
1048                  * when we reach this point.  bzero() above sets
1049                  * siginfo->si_addr to NULL.
1050                  */
1051         }
1052
1053         /*
1054          * There should be no reason to limit resources usage info to
1055          * exited processes only.  A snapshot about any resources used
1056          * by a stopped process may be exactly what is needed.
1057          */
1058         if (wrusage != NULL) {
1059                 rup = &wrusage->wru_self;
1060                 *rup = p->p_ru;
1061                 calcru(p, &rup->ru_utime, &rup->ru_stime);
1062
1063                 rup = &wrusage->wru_children;
1064                 *rup = p->p_stats->p_cru;
1065                 calccru(p, &rup->ru_utime, &rup->ru_stime);
1066         }
1067
1068         if (p->p_state == PRS_ZOMBIE) {
1069                 proc_reap(td, p, status, options);
1070                 return (-1);
1071         }
1072         PROC_SUNLOCK(p);
1073         PROC_UNLOCK(p);
1074         return (1);
1075 }
1076
1077 int
1078 kern_wait(struct thread *td, pid_t pid, int *status, int options,
1079     struct rusage *rusage)
1080 {
1081         struct __wrusage wru, *wrup;
1082         idtype_t idtype;
1083         id_t id;
1084         int ret;
1085
1086         /*
1087          * Translate the special pid values into the (idtype, pid)
1088          * pair for kern_wait6.  The WAIT_MYPGRP case is handled by
1089          * kern_wait6() on its own.
1090          */
1091         if (pid == WAIT_ANY) {
1092                 idtype = P_ALL;
1093                 id = 0;
1094         } else if (pid < 0) {
1095                 idtype = P_PGID;
1096                 id = (id_t)-pid;
1097         } else {
1098                 idtype = P_PID;
1099                 id = (id_t)pid;
1100         }
1101
1102         if (rusage != NULL)
1103                 wrup = &wru;
1104         else
1105                 wrup = NULL;
1106
1107         /*
1108          * For backward compatibility we implicitly add flags WEXITED
1109          * and WTRAPPED here.
1110          */
1111         options |= WEXITED | WTRAPPED;
1112         ret = kern_wait6(td, idtype, id, status, options, wrup, NULL);
1113         if (rusage != NULL)
1114                 *rusage = wru.wru_self;
1115         return (ret);
1116 }
1117
1118 int
1119 kern_wait6(struct thread *td, idtype_t idtype, id_t id, int *status,
1120     int options, struct __wrusage *wrusage, siginfo_t *siginfo)
1121 {
1122         struct proc *p, *q;
1123         int error, nfound, ret;
1124
1125         AUDIT_ARG_VALUE((int)idtype);   /* XXX - This is likely wrong! */
1126         AUDIT_ARG_PID((pid_t)id);       /* XXX - This may be wrong! */
1127         AUDIT_ARG_VALUE(options);
1128
1129         q = td->td_proc;
1130
1131         if ((pid_t)id == WAIT_MYPGRP && (idtype == P_PID || idtype == P_PGID)) {
1132                 PROC_LOCK(q);
1133                 id = (id_t)q->p_pgid;
1134                 PROC_UNLOCK(q);
1135                 idtype = P_PGID;
1136         }
1137
1138         /* If we don't know the option, just return. */
1139         if ((options & ~(WUNTRACED | WNOHANG | WCONTINUED | WNOWAIT |
1140             WEXITED | WTRAPPED | WLINUXCLONE)) != 0)
1141                 return (EINVAL);
1142         if ((options & (WEXITED | WUNTRACED | WCONTINUED | WTRAPPED)) == 0) {
1143                 /*
1144                  * We will be unable to find any matching processes,
1145                  * because there are no known events to look for.
1146                  * Prefer to return error instead of blocking
1147                  * indefinitely.
1148                  */
1149                 return (EINVAL);
1150         }
1151
1152 loop:
1153         if (q->p_flag & P_STATCHILD) {
1154                 PROC_LOCK(q);
1155                 q->p_flag &= ~P_STATCHILD;
1156                 PROC_UNLOCK(q);
1157         }
1158         nfound = 0;
1159         sx_xlock(&proctree_lock);
1160         LIST_FOREACH(p, &q->p_children, p_sibling) {
1161                 ret = proc_to_reap(td, p, idtype, id, status, options,
1162                     wrusage, siginfo);
1163                 if (ret == 0)
1164                         continue;
1165                 else if (ret == 1)
1166                         nfound++;
1167                 else
1168                         return (0);
1169
1170                 PROC_LOCK(p);
1171                 PROC_SLOCK(p);
1172
1173                 if ((options & WTRAPPED) != 0 &&
1174                     (p->p_flag & P_TRACED) != 0 &&
1175                     (p->p_flag & (P_STOPPED_TRACE | P_STOPPED_SIG)) != 0 &&
1176                     (p->p_suspcount == p->p_numthreads) &&
1177                     ((p->p_flag & P_WAITED) == 0)) {
1178                         PROC_SUNLOCK(p);
1179                         if ((options & WNOWAIT) == 0)
1180                                 p->p_flag |= P_WAITED;
1181                         sx_xunlock(&proctree_lock);
1182                         td->td_retval[0] = p->p_pid;
1183
1184                         if (status != NULL)
1185                                 *status = W_STOPCODE(p->p_xstat);
1186                         if (siginfo != NULL) {
1187                                 siginfo->si_status = p->p_xstat;
1188                                 siginfo->si_code = CLD_TRAPPED;
1189                         }
1190                         if ((options & WNOWAIT) == 0) {
1191                                 PROC_LOCK(q);
1192                                 sigqueue_take(p->p_ksi);
1193                                 PROC_UNLOCK(q);
1194                         }
1195
1196                         CTR4(KTR_PTRACE,
1197             "wait: returning trapped pid %d status %#x (xstat %d) xthread %d",
1198                             p->p_pid, W_STOPCODE(p->p_xstat), p->p_xstat,
1199                             p->p_xthread != NULL ? p->p_xthread->td_tid : -1);
1200                         PROC_UNLOCK(p);
1201                         return (0);
1202                 }
1203                 if ((options & WUNTRACED) != 0 &&
1204                     (p->p_flag & P_STOPPED_SIG) != 0 &&
1205                     (p->p_suspcount == p->p_numthreads) &&
1206                     ((p->p_flag & P_WAITED) == 0)) {
1207                         PROC_SUNLOCK(p);
1208                         if ((options & WNOWAIT) == 0)
1209                                 p->p_flag |= P_WAITED;
1210                         sx_xunlock(&proctree_lock);
1211                         td->td_retval[0] = p->p_pid;
1212
1213                         if (status != NULL)
1214                                 *status = W_STOPCODE(p->p_xstat);
1215                         if (siginfo != NULL) {
1216                                 siginfo->si_status = p->p_xstat;
1217                                 siginfo->si_code = CLD_STOPPED;
1218                         }
1219                         if ((options & WNOWAIT) == 0) {
1220                                 PROC_LOCK(q);
1221                                 sigqueue_take(p->p_ksi);
1222                                 PROC_UNLOCK(q);
1223                         }
1224
1225                         PROC_UNLOCK(p);
1226                         return (0);
1227                 }
1228                 PROC_SUNLOCK(p);
1229                 if ((options & WCONTINUED) != 0 &&
1230                     (p->p_flag & P_CONTINUED) != 0) {
1231                         sx_xunlock(&proctree_lock);
1232                         td->td_retval[0] = p->p_pid;
1233                         if ((options & WNOWAIT) == 0) {
1234                                 p->p_flag &= ~P_CONTINUED;
1235                                 PROC_LOCK(q);
1236                                 sigqueue_take(p->p_ksi);
1237                                 PROC_UNLOCK(q);
1238                         }
1239                         PROC_UNLOCK(p);
1240
1241                         if (status != NULL)
1242                                 *status = SIGCONT;
1243                         if (siginfo != NULL) {
1244                                 siginfo->si_status = SIGCONT;
1245                                 siginfo->si_code = CLD_CONTINUED;
1246                         }
1247                         return (0);
1248                 }
1249                 PROC_UNLOCK(p);
1250         }
1251
1252         /*
1253          * Look in the orphans list too, to allow the parent to
1254          * collect it's child exit status even if child is being
1255          * debugged.
1256          *
1257          * Debugger detaches from the parent upon successful
1258          * switch-over from parent to child.  At this point due to
1259          * re-parenting the parent loses the child to debugger and a
1260          * wait4(2) call would report that it has no children to wait
1261          * for.  By maintaining a list of orphans we allow the parent
1262          * to successfully wait until the child becomes a zombie.
1263          */
1264         LIST_FOREACH(p, &q->p_orphans, p_orphan) {
1265                 ret = proc_to_reap(td, p, idtype, id, status, options,
1266                     wrusage, siginfo);
1267                 if (ret == 0)
1268                         continue;
1269                 else if (ret == 1)
1270                         nfound++;
1271                 else
1272                         return (0);
1273         }
1274         if (nfound == 0) {
1275                 sx_xunlock(&proctree_lock);
1276                 return (ECHILD);
1277         }
1278         if (options & WNOHANG) {
1279                 sx_xunlock(&proctree_lock);
1280                 td->td_retval[0] = 0;
1281                 return (0);
1282         }
1283         PROC_LOCK(q);
1284         sx_xunlock(&proctree_lock);
1285         if (q->p_flag & P_STATCHILD) {
1286                 q->p_flag &= ~P_STATCHILD;
1287                 error = 0;
1288         } else
1289                 error = msleep(q, &q->p_mtx, PWAIT | PCATCH, "wait", 0);
1290         PROC_UNLOCK(q);
1291         if (error)
1292                 return (error);
1293         goto loop;
1294 }
1295
1296 /*
1297  * Make process 'parent' the new parent of process 'child'.
1298  * Must be called with an exclusive hold of proctree lock.
1299  */
1300 void
1301 proc_reparent(struct proc *child, struct proc *parent)
1302 {
1303
1304         sx_assert(&proctree_lock, SX_XLOCKED);
1305         PROC_LOCK_ASSERT(child, MA_OWNED);
1306         if (child->p_pptr == parent)
1307                 return;
1308
1309         PROC_LOCK(child->p_pptr);
1310         sigqueue_take(child->p_ksi);
1311         PROC_UNLOCK(child->p_pptr);
1312         LIST_REMOVE(child, p_sibling);
1313         LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
1314
1315         clear_orphan(child);
1316         if (child->p_flag & P_TRACED) {
1317                 if (LIST_EMPTY(&child->p_pptr->p_orphans)) {
1318                         child->p_treeflag |= P_TREE_FIRST_ORPHAN;
1319                         LIST_INSERT_HEAD(&child->p_pptr->p_orphans, child,
1320                             p_orphan);
1321                 } else {
1322                         LIST_INSERT_AFTER(LIST_FIRST(&child->p_pptr->p_orphans),
1323                             child, p_orphan);
1324                 }
1325                 child->p_treeflag |= P_TREE_ORPHANED;
1326         }
1327
1328         child->p_pptr = parent;
1329 }