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