053711f9dbe16c5550e72532ae2ae2ad227e688d
[dragonfly.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  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)kern_exit.c 8.7 (Berkeley) 2/12/94
39  * $FreeBSD: src/sys/kern/kern_exit.c,v 1.92.2.11 2003/01/13 22:51:16 dillon Exp $
40  * $DragonFly: src/sys/kern/kern_exit.c,v 1.91 2008/05/18 20:02:02 nth Exp $
41  */
42
43 #include "opt_compat.h"
44 #include "opt_ktrace.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/sysproto.h>
49 #include <sys/kernel.h>
50 #include <sys/malloc.h>
51 #include <sys/proc.h>
52 #include <sys/ktrace.h>
53 #include <sys/pioctl.h>
54 #include <sys/tty.h>
55 #include <sys/wait.h>
56 #include <sys/vnode.h>
57 #include <sys/resourcevar.h>
58 #include <sys/signalvar.h>
59 #include <sys/taskqueue.h>
60 #include <sys/ptrace.h>
61 #include <sys/acct.h>           /* for acct_process() function prototype */
62 #include <sys/filedesc.h>
63 #include <sys/shm.h>
64 #include <sys/sem.h>
65 #include <sys/jail.h>
66 #include <sys/kern_syscall.h>
67 #include <sys/upcall.h>
68 #include <sys/caps.h>
69 #include <sys/unistd.h>
70 #include <sys/eventhandler.h>
71 #include <sys/dsched.h>
72
73 #include <vm/vm.h>
74 #include <vm/vm_param.h>
75 #include <sys/lock.h>
76 #include <vm/pmap.h>
77 #include <vm/vm_map.h>
78 #include <vm/vm_extern.h>
79 #include <sys/user.h>
80
81 #include <sys/refcount.h>
82 #include <sys/thread2.h>
83 #include <sys/sysref2.h>
84 #include <sys/mplock2.h>
85
86 static void reaplwps(void *context, int dummy);
87 static void reaplwp(struct lwp *lp);
88 static void killlwps(struct lwp *lp);
89
90 static MALLOC_DEFINE(M_ATEXIT, "atexit", "atexit callback");
91 static MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
92
93 static struct lwkt_token deadlwp_token = LWKT_TOKEN_INITIALIZER(deadlwp_token);
94
95 /*
96  * callout list for things to do at exit time
97  */
98 struct exitlist {
99         exitlist_fn function;
100         TAILQ_ENTRY(exitlist) next;
101 };
102
103 TAILQ_HEAD(exit_list_head, exitlist);
104 static struct exit_list_head exit_list = TAILQ_HEAD_INITIALIZER(exit_list);
105
106 /*
107  * LWP reaper data
108  */
109 struct task *deadlwp_task[MAXCPU];
110 struct lwplist deadlwp_list[MAXCPU];
111
112 /*
113  * exit --
114  *      Death of process.
115  *
116  * SYS_EXIT_ARGS(int rval)
117  */
118 int
119 sys_exit(struct exit_args *uap)
120 {
121         exit1(W_EXITCODE(uap->rval, 0));
122         /* NOTREACHED */
123 }
124
125 /*
126  * Extended exit --
127  *      Death of a lwp or process with optional bells and whistles.
128  *
129  * MPALMOSTSAFE
130  */
131 int
132 sys_extexit(struct extexit_args *uap)
133 {
134         struct proc *p = curproc;
135         int action, who;
136         int error;
137
138         action = EXTEXIT_ACTION(uap->how);
139         who = EXTEXIT_WHO(uap->how);
140
141         /* Check parameters before we might perform some action */
142         switch (who) {
143         case EXTEXIT_PROC:
144         case EXTEXIT_LWP:
145                 break;
146         default:
147                 return (EINVAL);
148         }
149
150         switch (action) {
151         case EXTEXIT_SIMPLE:
152                 break;
153         case EXTEXIT_SETINT:
154                 error = copyout(&uap->status, uap->addr, sizeof(uap->status));
155                 if (error)
156                         return (error);
157                 break;
158         default:
159                 return (EINVAL);
160         }
161
162         lwkt_gettoken(&p->p_token);
163
164         switch (who) {
165         case EXTEXIT_LWP:
166                 /*
167                  * Be sure only to perform a simple lwp exit if there is at
168                  * least one more lwp in the proc, which will call exit1()
169                  * later, otherwise the proc will be an UNDEAD and not even a
170                  * SZOMB!
171                  */
172                 if (p->p_nthreads > 1) {
173                         lwp_exit(0);    /* called w/ p_token held */
174                         /* NOT REACHED */
175                 }
176                 /* else last lwp in proc:  do the real thing */
177                 /* FALLTHROUGH */
178         default:        /* to help gcc */
179         case EXTEXIT_PROC:
180                 lwkt_reltoken(&p->p_token);
181                 exit1(W_EXITCODE(uap->status, 0));
182                 /* NOTREACHED */
183         }
184
185         /* NOTREACHED */
186         lwkt_reltoken(&p->p_token);     /* safety */
187 }
188
189 /*
190  * Kill all lwps associated with the current process except the
191  * current lwp.   Return an error if we race another thread trying to
192  * do the same thing and lose the race.
193  *
194  * If forexec is non-zero the current thread and process flags are
195  * cleaned up so they can be reused.
196  */
197 int
198 killalllwps(int forexec)
199 {
200         struct lwp *lp = curthread->td_lwp;
201         struct proc *p = lp->lwp_proc;
202
203         /*
204          * Interlock against P_WEXIT.  Only one of the process's thread
205          * is allowed to do the master exit.
206          */
207         if (p->p_flag & P_WEXIT)
208                 return (EALREADY);
209         p->p_flag |= P_WEXIT;
210
211         /*
212          * Interlock with LWP_WEXIT and kill any remaining LWPs
213          */
214         lp->lwp_flag |= LWP_WEXIT;
215         if (p->p_nthreads > 1)
216                 killlwps(lp);
217
218         /*
219          * If doing this for an exec, clean up the remaining thread
220          * (us) for continuing operation after all the other threads
221          * have been killed.
222          */
223         if (forexec) {
224                 lp->lwp_flag &= ~LWP_WEXIT;
225                 p->p_flag &= ~P_WEXIT;
226         }
227         return(0);
228 }
229
230 /*
231  * Kill all LWPs except the current one.  Do not try to signal
232  * LWPs which have exited on their own or have already been
233  * signaled.
234  */
235 static void
236 killlwps(struct lwp *lp)
237 {
238         struct proc *p = lp->lwp_proc;
239         struct lwp *tlp;
240
241         /*
242          * Kill the remaining LWPs.  We must send the signal before setting
243          * LWP_WEXIT.  The setting of WEXIT is optional but helps reduce
244          * races.  tlp must be held across the call as it might block and
245          * allow the target lwp to rip itself out from under our loop.
246          */
247         FOREACH_LWP_IN_PROC(tlp, p) {
248                 LWPHOLD(tlp);
249                 lwkt_gettoken(&tlp->lwp_token);
250                 if ((tlp->lwp_flag & LWP_WEXIT) == 0) {
251                         lwpsignal(p, tlp, SIGKILL);
252                         tlp->lwp_flag |= LWP_WEXIT;
253                 }
254                 lwkt_reltoken(&tlp->lwp_token);
255                 LWPRELE(tlp);
256         }
257
258         /*
259          * Wait for everything to clear out.
260          */
261         while (p->p_nthreads > 1) {
262                 tsleep(&p->p_nthreads, 0, "killlwps", 0);
263         }
264 }
265
266 /*
267  * Exit: deallocate address space and other resources, change proc state
268  * to zombie, and unlink proc from allproc and parent's lists.  Save exit
269  * status and rusage for wait().  Check for child processes and orphan them.
270  */
271 void
272 exit1(int rv)
273 {
274         struct thread *td = curthread;
275         struct proc *p = td->td_proc;
276         struct lwp *lp = td->td_lwp;
277         struct proc *q, *nq;
278         struct vmspace *vm;
279         struct vnode *vtmp;
280         struct exitlist *ep;
281         int error;
282
283         lwkt_gettoken(&p->p_token);
284
285         if (p->p_pid == 1) {
286                 kprintf("init died (signal %d, exit %d)\n",
287                     WTERMSIG(rv), WEXITSTATUS(rv));
288                 panic("Going nowhere without my init!");
289         }
290         varsymset_clean(&p->p_varsymset);
291         lockuninit(&p->p_varsymset.vx_lock);
292         /*
293          * Kill all lwps associated with the current process, return an
294          * error if we race another thread trying to do the same thing
295          * and lose the race.
296          */
297         error = killalllwps(0);
298         if (error) {
299                 lwp_exit(0);
300                 /* NOT REACHED */
301         }
302
303         caps_exit(lp->lwp_thread);
304
305         /* are we a task leader? */
306         if (p == p->p_leader) {
307                 struct kill_args killArgs;
308                 killArgs.signum = SIGKILL;
309                 q = p->p_peers;
310                 while(q) {
311                         killArgs.pid = q->p_pid;
312                         /*
313                          * The interface for kill is better
314                          * than the internal signal
315                          */
316                         sys_kill(&killArgs);
317                         nq = q;
318                         q = q->p_peers;
319                 }
320                 while (p->p_peers) 
321                         tsleep((caddr_t)p, 0, "exit1", 0);
322         }
323
324 #ifdef PGINPROF
325         vmsizmon();
326 #endif
327         STOPEVENT(p, S_EXIT, rv);
328         wakeup(&p->p_stype);    /* Wakeup anyone in procfs' PIOCWAIT */
329
330         /* 
331          * Check if any loadable modules need anything done at process exit.
332          * e.g. SYSV IPC stuff
333          * XXX what if one of these generates an error?
334          */
335         p->p_xstat = rv;
336         EVENTHANDLER_INVOKE(process_exit, p);
337
338         /*
339          * XXX: imho, the eventhandler stuff is much cleaner than this.
340          *      Maybe we should move everything to use eventhandler.
341          */
342         TAILQ_FOREACH(ep, &exit_list, next) 
343                 (*ep->function)(td);
344
345         if (p->p_flag & P_PROFIL)
346                 stopprofclock(p);
347         /*
348          * If parent is waiting for us to exit or exec,
349          * P_PPWAIT is set; we will wakeup the parent below.
350          */
351         p->p_flag &= ~(P_TRACED | P_PPWAIT);
352         SIGEMPTYSET(p->p_siglist);
353         SIGEMPTYSET(lp->lwp_siglist);
354         if (timevalisset(&p->p_realtimer.it_value))
355                 callout_stop(&p->p_ithandle);
356
357         /*
358          * Reset any sigio structures pointing to us as a result of
359          * F_SETOWN with our pid.
360          */
361         funsetownlst(&p->p_sigiolst);
362
363         /*
364          * Close open files and release open-file table.
365          * This may block!
366          */
367         fdfree(p, NULL);
368
369         if(p->p_leader->p_peers) {
370                 q = p->p_leader;
371                 while(q->p_peers != p)
372                         q = q->p_peers;
373                 q->p_peers = p->p_peers;
374                 wakeup((caddr_t)p->p_leader);
375         }
376
377         /*
378          * XXX Shutdown SYSV semaphores
379          */
380         semexit(p);
381
382         KKASSERT(p->p_numposixlocks == 0);
383
384         /* The next two chunks should probably be moved to vmspace_exit. */
385         vm = p->p_vmspace;
386
387         /*
388          * Release upcalls associated with this process
389          */
390         if (vm->vm_upcalls)
391                 upc_release(vm, lp);
392
393         /*
394          * Clean up data related to virtual kernel operation.  Clean up
395          * any vkernel context related to the current lwp now so we can
396          * destroy p_vkernel.
397          */
398         if (p->p_vkernel) {
399                 vkernel_lwp_exit(lp);
400                 vkernel_exit(p);
401         }
402
403         /*
404          * Release user portion of address space.
405          * This releases references to vnodes,
406          * which could cause I/O if the file has been unlinked.
407          * Need to do this early enough that we can still sleep.
408          * Can't free the entire vmspace as the kernel stack
409          * may be mapped within that space also.
410          *
411          * Processes sharing the same vmspace may exit in one order, and
412          * get cleaned up by vmspace_exit() in a different order.  The
413          * last exiting process to reach this point releases as much of
414          * the environment as it can, and the last process cleaned up
415          * by vmspace_exit() (which decrements exitingcnt) cleans up the
416          * remainder.
417          */
418         vmspace_exitbump(vm);
419         sysref_put(&vm->vm_sysref);
420
421         if (SESS_LEADER(p)) {
422                 struct session *sp = p->p_session;
423
424                 if (sp->s_ttyvp) {
425                         /*
426                          * We are the controlling process.  Signal the 
427                          * foreground process group, drain the controlling
428                          * terminal, and revoke access to the controlling
429                          * terminal.
430                          *
431                          * NOTE: while waiting for the process group to exit
432                          * it is possible that one of the processes in the
433                          * group will revoke the tty, so the ttyclosesession()
434                          * function will re-check sp->s_ttyvp.
435                          */
436                         if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) {
437                                 if (sp->s_ttyp->t_pgrp)
438                                         pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
439                                 ttywait(sp->s_ttyp);
440                                 ttyclosesession(sp, 1); /* also revoke */
441                         }
442                         /*
443                          * Release the tty.  If someone has it open via
444                          * /dev/tty then close it (since they no longer can
445                          * once we've NULL'd it out).
446                          */
447                         ttyclosesession(sp, 0);
448
449                         /*
450                          * s_ttyp is not zero'd; we use this to indicate
451                          * that the session once had a controlling terminal.
452                          * (for logging and informational purposes)
453                          */
454                 }
455                 sp->s_leader = NULL;
456         }
457         fixjobc(p, p->p_pgrp, 0);
458         (void)acct_process(p);
459 #ifdef KTRACE
460         /*
461          * release trace file
462          */
463         if (p->p_tracenode)
464                 ktrdestroy(&p->p_tracenode);
465         p->p_traceflag = 0;
466 #endif
467         /*
468          * Release reference to text vnode
469          */
470         if ((vtmp = p->p_textvp) != NULL) {
471                 p->p_textvp = NULL;
472                 vrele(vtmp);
473         }
474
475         /* Release namecache handle to text file */
476         if (p->p_textnch.ncp)
477                 cache_drop(&p->p_textnch);
478
479         /*
480          * Move the process to the zombie list.  This will block
481          * until the process p_lock count reaches 0.  The process will
482          * not be reaped until TDF_EXITING is set by cpu_thread_exit(),
483          * which is called from cpu_proc_exit().
484          */
485         proc_move_allproc_zombie(p);
486
487         /*
488          * Reparent all of this process's children to the init process.
489          * We must hold initproc->p_token in order to mess with
490          * initproc->p_children.  We already hold p->p_token (to remove
491          * the children from our list).
492          */
493         q = LIST_FIRST(&p->p_children);
494         if (q) {
495                 lwkt_gettoken(&initproc->p_token);
496                 while (q) {
497                         nq = LIST_NEXT(q, p_sibling);
498                         LIST_REMOVE(q, p_sibling);
499                         LIST_INSERT_HEAD(&initproc->p_children, q, p_sibling);
500                         q->p_pptr = initproc;
501                         q->p_sigparent = SIGCHLD;
502                         /*
503                          * Traced processes are killed
504                          * since their existence means someone is screwing up.
505                          */
506                         if (q->p_flag & P_TRACED) {
507                                 q->p_flag &= ~P_TRACED;
508                                 ksignal(q, SIGKILL);
509                         }
510                         q = nq;
511                 }
512                 lwkt_reltoken(&initproc->p_token);
513                 wakeup(initproc);
514         }
515
516         /*
517          * Save exit status and final rusage info, adding in child rusage
518          * info and self times.
519          */
520         calcru_proc(p, &p->p_ru);
521         ruadd(&p->p_ru, &p->p_cru);
522
523         /*
524          * notify interested parties of our demise.
525          */
526         KNOTE(&p->p_klist, NOTE_EXIT);
527
528         /*
529          * Notify parent that we're gone.  If parent has the PS_NOCLDWAIT
530          * flag set, notify process 1 instead (and hope it will handle
531          * this situation).
532          */
533         if (p->p_pptr->p_sigacts->ps_flag & PS_NOCLDWAIT) {
534                 struct proc *pp = p->p_pptr;
535
536                 PHOLD(pp);
537                 proc_reparent(p, initproc);
538
539                 /*
540                  * If this was the last child of our parent, notify
541                  * parent, so in case he was wait(2)ing, he will
542                  * continue.  This function interlocks with pptr->p_token.
543                  */
544                 if (LIST_EMPTY(&pp->p_children))
545                         wakeup((caddr_t)pp);
546                 PRELE(pp);
547         }
548
549         /* lwkt_gettoken(&proc_token); */
550         q = p->p_pptr;
551         PHOLD(q);
552         if (p->p_sigparent && q != initproc) {
553                 ksignal(q, p->p_sigparent);
554         } else {
555                 ksignal(q, SIGCHLD);
556         }
557         wakeup(p->p_pptr);
558         PRELE(q);
559         /* lwkt_reltoken(&proc_token); */
560         /* NOTE: p->p_pptr can get ripped out */
561         /*
562          * cpu_exit is responsible for clearing curproc, since
563          * it is heavily integrated with the thread/switching sequence.
564          *
565          * Other substructures are freed from wait().
566          */
567         plimit_free(p);
568
569         /*
570          * Release the current user process designation on the process so
571          * the userland scheduler can work in someone else.
572          */
573         p->p_usched->release_curproc(lp);
574
575         /*
576          * Finally, call machine-dependent code to release as many of the
577          * lwp's resources as we can and halt execution of this thread.
578          */
579         lwp_exit(1);
580 }
581
582 /*
583  * Eventually called by every exiting LWP
584  *
585  * p->p_token must be held.  mplock may be held and will be released.
586  */
587 void
588 lwp_exit(int masterexit)
589 {
590         struct thread *td = curthread;
591         struct lwp *lp = td->td_lwp;
592         struct proc *p = lp->lwp_proc;
593         int dowake = 0;
594
595         /*
596          * lwp_exit() may be called without setting LWP_WEXIT, so
597          * make sure it is set here.
598          */
599         ASSERT_LWKT_TOKEN_HELD(&p->p_token);
600         lp->lwp_flag |= LWP_WEXIT;
601
602         /*
603          * Clean up any virtualization
604          */
605         if (lp->lwp_vkernel)
606                 vkernel_lwp_exit(lp);
607
608         /*
609          * Clean up select/poll support
610          */
611         kqueue_terminate(&lp->lwp_kqueue);
612
613         /*
614          * Clean up any syscall-cached ucred
615          */
616         if (td->td_ucred) {
617                 crfree(td->td_ucred);
618                 td->td_ucred = NULL;
619         }
620
621         /*
622          * Nobody actually wakes us when the lock
623          * count reaches zero, so just wait one tick.
624          */
625         while (lp->lwp_lock > 0)
626                 tsleep(lp, 0, "lwpexit", 1);
627
628         /* Hand down resource usage to our proc */
629         ruadd(&p->p_ru, &lp->lwp_ru);
630
631         /*
632          * If we don't hold the process until the LWP is reaped wait*()
633          * may try to dispose of its vmspace before all the LWPs have
634          * actually terminated.
635          */
636         PHOLD(p);
637
638         /*
639          * Do any remaining work that might block on us.  We should be
640          * coded such that further blocking is ok after decrementing
641          * p_nthreads but don't take the chance.
642          */
643         dsched_exit_thread(td);
644         biosched_done(curthread);
645
646         /*
647          * We have to use the reaper for all the LWPs except the one doing
648          * the master exit.  The LWP doing the master exit can just be
649          * left on p_lwps and the process reaper will deal with it
650          * synchronously, which is much faster.
651          *
652          * Wakeup anyone waiting on p_nthreads to drop to 1 or 0.
653          */
654         if (masterexit == 0) {
655                 lwp_rb_tree_RB_REMOVE(&p->p_lwp_tree, lp);
656                 --p->p_nthreads;
657                 if (p->p_nthreads <= 1)
658                         dowake = 1;
659                 lwkt_gettoken(&deadlwp_token);
660                 LIST_INSERT_HEAD(&deadlwp_list[mycpuid], lp, u.lwp_reap_entry);
661                 taskqueue_enqueue(taskqueue_thread[mycpuid],
662                                   deadlwp_task[mycpuid]);
663                 lwkt_reltoken(&deadlwp_token);
664         } else {
665                 --p->p_nthreads;
666                 if (p->p_nthreads <= 1)
667                         dowake = 1;
668         }
669
670         /*
671          * Release p_token.  Issue the wakeup() on p_nthreads if necessary,
672          * as late as possible to give us a chance to actually deschedule and
673          * switch away before another cpu core hits reaplwp().
674          */
675         lwkt_reltoken(&p->p_token);
676         if (dowake)
677                 wakeup(&p->p_nthreads);
678         cpu_lwp_exit();
679 }
680
681 /*
682  * Wait until a lwp is completely dead.
683  *
684  * If the thread is still executing, which can't be waited upon,
685  * return failure.  The caller is responsible of waiting a little
686  * bit and checking again.
687  *
688  * Suggested use:
689  * while (!lwp_wait(lp))
690  *      tsleep(lp, 0, "lwpwait", 1);
691  */
692 static int
693 lwp_wait(struct lwp *lp)
694 {
695         struct thread *td = lp->lwp_thread;;
696
697         KKASSERT(lwkt_preempted_proc() != lp);
698
699         while (lp->lwp_lock > 0)
700                 tsleep(lp, 0, "lwpwait1", 1);
701
702         lwkt_wait_free(td);
703
704         /*
705          * The lwp's thread may still be in the middle
706          * of switching away, we can't rip its stack out from
707          * under it until TDF_EXITING is set and both
708          * TDF_RUNNING and TDF_PREEMPT_LOCK are clear.
709          * TDF_PREEMPT_LOCK must be checked because TDF_RUNNING
710          * will be cleared temporarily if a thread gets
711          * preempted.
712          *
713          * YYY no wakeup occurs, so we simply return failure
714          * and let the caller deal with sleeping and calling
715          * us again.
716          */
717         if ((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK|
718                              TDF_EXITING|TDF_RUNQ)) != TDF_EXITING) {
719                 return (0);
720         }
721         KASSERT((td->td_flags & TDF_TSLEEPQ) == 0,
722                 ("lwp_wait: td %p (%s) still on sleep queue", td, td->td_comm));
723         return (1);
724 }
725
726 /*
727  * Release the resources associated with a lwp.
728  * The lwp must be completely dead.
729  */
730 void
731 lwp_dispose(struct lwp *lp)
732 {
733         struct thread *td = lp->lwp_thread;;
734
735         KKASSERT(lwkt_preempted_proc() != lp);
736         KKASSERT(td->td_refs == 0);
737         KKASSERT((td->td_flags & (TDF_RUNNING|TDF_PREEMPT_LOCK|TDF_EXITING)) ==
738                  TDF_EXITING);
739
740         PRELE(lp->lwp_proc);
741         lp->lwp_proc = NULL;
742         if (td != NULL) {
743                 td->td_proc = NULL;
744                 td->td_lwp = NULL;
745                 lp->lwp_thread = NULL;
746                 lwkt_free_thread(td);
747         }
748         kfree(lp, M_LWP);
749 }
750
751 /*
752  * MPSAFE
753  */
754 int
755 sys_wait4(struct wait_args *uap)
756 {
757         struct rusage rusage;
758         int error, status;
759
760         error = kern_wait(uap->pid, (uap->status ? &status : NULL),
761                           uap->options, (uap->rusage ? &rusage : NULL),
762                           &uap->sysmsg_result);
763
764         if (error == 0 && uap->status)
765                 error = copyout(&status, uap->status, sizeof(*uap->status));
766         if (error == 0 && uap->rusage)
767                 error = copyout(&rusage, uap->rusage, sizeof(*uap->rusage));
768         return (error);
769 }
770
771 /*
772  * wait1()
773  *
774  * wait_args(int pid, int *status, int options, struct rusage *rusage)
775  *
776  * MPALMOSTSAFE
777  */
778 int
779 kern_wait(pid_t pid, int *status, int options, struct rusage *rusage, int *res)
780 {
781         struct thread *td = curthread;
782         struct lwp *lp;
783         struct proc *q = td->td_proc;
784         struct proc *p, *t;
785         struct pargs *pa;
786         struct sigacts *ps;
787         int nfound, error;
788
789         if (pid == 0)
790                 pid = -q->p_pgid;
791         if (options &~ (WUNTRACED|WNOHANG|WCONTINUED|WLINUXCLONE))
792                 return (EINVAL);
793
794         lwkt_gettoken(&q->p_token);
795 loop:
796         /*
797          * All sorts of things can change due to blocking so we have to loop
798          * all the way back up here.
799          *
800          * The problem is that if a process group is stopped and the parent
801          * is doing a wait*(..., WUNTRACED, ...), it will see the STOP
802          * of the child and then stop itself when it tries to return from the
803          * system call.  When the process group is resumed the parent will
804          * then get the STOP status even though the child has now resumed
805          * (a followup wait*() will get the CONT status).
806          *
807          * Previously the CONT would overwrite the STOP because the tstop
808          * was handled within tsleep(), and the parent would only see
809          * the CONT when both are stopped and continued together.  This little
810          * two-line hack restores this effect.
811          */
812         while (q->p_stat == SSTOP)
813             tstop();
814
815         nfound = 0;
816
817         /*
818          * Loop on children.
819          *
820          * NOTE: We don't want to break q's p_token in the loop for the
821          *       case where no children are found or we risk breaking the
822          *       interlock between child and parent.
823          */
824         LIST_FOREACH(p, &q->p_children, p_sibling) {
825                 if (pid != WAIT_ANY &&
826                     p->p_pid != pid && p->p_pgid != -pid) {
827                         continue;
828                 }
829
830                 /*
831                  * This special case handles a kthread spawned by linux_clone
832                  * (see linux_misc.c).  The linux_wait4 and linux_waitpid 
833                  * functions need to be able to distinguish between waiting
834                  * on a process and waiting on a thread.  It is a thread if
835                  * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
836                  * signifies we want to wait for threads and not processes.
837                  */
838                 if ((p->p_sigparent != SIGCHLD) ^ 
839                     ((options & WLINUXCLONE) != 0)) {
840                         continue;
841                 }
842
843                 nfound++;
844                 if (p->p_stat == SZOMB) {
845                         /*
846                          * We may go into SZOMB with threads still present.
847                          * We must wait for them to exit before we can reap
848                          * the master thread, otherwise we may race reaping
849                          * non-master threads.
850                          */
851                         lwkt_gettoken(&p->p_token);
852                         while (p->p_nthreads > 0) {
853                                 tsleep(&p->p_nthreads, 0, "lwpzomb", hz);
854                         }
855
856                         /*
857                          * Reap any LWPs left in p->p_lwps.  This is usually
858                          * just the last LWP.  This must be done before
859                          * we loop on p_lock since the lwps hold a ref on
860                          * it as a vmspace interlock.
861                          *
862                          * Once that is accomplished p_nthreads had better
863                          * be zero.
864                          */
865                         while ((lp = RB_ROOT(&p->p_lwp_tree)) != NULL) {
866                                 lwp_rb_tree_RB_REMOVE(&p->p_lwp_tree, lp);
867                                 reaplwp(lp);
868                         }
869                         KKASSERT(p->p_nthreads == 0);
870                         lwkt_reltoken(&p->p_token);
871
872                         /*
873                          * Don't do anything really bad until all references
874                          * to the process go away.  This may include other
875                          * LWPs which are still in the process of being
876                          * reaped.  We can't just pull the rug out from under
877                          * them because they may still be using the VM space.
878                          *
879                          * Certain kernel facilities such as /proc will also
880                          * put a hold on the process for short periods of
881                          * time.
882                          */
883                         while (p->p_lock)
884                                 tsleep(p, 0, "reap3", hz);
885
886                         /* Take care of our return values. */
887                         *res = p->p_pid;
888                         p->p_usched->heuristic_exiting(td->td_lwp, p);
889
890                         if (status)
891                                 *status = p->p_xstat;
892                         if (rusage)
893                                 *rusage = p->p_ru;
894                         /*
895                          * If we got the child via a ptrace 'attach',
896                          * we need to give it back to the old parent.
897                          */
898                         if (p->p_oppid && (t = pfind(p->p_oppid)) != NULL) {
899                                 p->p_oppid = 0;
900                                 proc_reparent(p, t);
901                                 ksignal(t, SIGCHLD);
902                                 wakeup((caddr_t)t);
903                                 error = 0;
904                                 PRELE(t);
905                                 goto done;
906                         }
907
908                         /*
909                          * Unlink the proc from its process group so that
910                          * the following operations won't lead to an
911                          * inconsistent state for processes running down
912                          * the zombie list.
913                          */
914                         proc_remove_zombie(p);
915                         leavepgrp(p);
916
917                         p->p_xstat = 0;
918                         ruadd(&q->p_cru, &p->p_ru);
919
920                         /*
921                          * Decrement the count of procs running with this uid.
922                          */
923                         chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0);
924
925                         /*
926                          * Free up credentials.
927                          */
928                         crfree(p->p_ucred);
929                         p->p_ucred = NULL;
930
931                         /*
932                          * Remove unused arguments
933                          */
934                         pa = p->p_args;
935                         p->p_args = NULL;
936                         if (pa && refcount_release(&pa->ar_ref)) {
937                                 kfree(pa, M_PARGS);
938                                 pa = NULL;
939                         }
940
941                         ps = p->p_sigacts;
942                         p->p_sigacts = NULL;
943                         if (ps && refcount_release(&ps->ps_refcnt)) {
944                                 kfree(ps, M_SUBPROC);
945                                 ps = NULL;
946                         }
947
948                         vm_waitproc(p);
949
950                         /*
951                          * Temporary refs may still have been acquired while
952                          * we removed the process, make sure they are all
953                          * gone before kfree()ing.  Now that the process has
954                          * been removed from all lists and all references to
955                          * it have gone away, no new refs can occur.
956                          */
957                         while (p->p_lock)
958                                 tsleep(p, 0, "reap4", hz);
959                         kfree(p, M_PROC);
960                         atomic_add_int(&nprocs, -1);
961                         error = 0;
962                         goto done;
963                 }
964                 if (p->p_stat == SSTOP && (p->p_flag & P_WAITED) == 0 &&
965                     ((p->p_flag & P_TRACED) || (options & WUNTRACED))) {
966                         lwkt_gettoken(&p->p_token);
967                         p->p_flag |= P_WAITED;
968
969                         *res = p->p_pid;
970                         p->p_usched->heuristic_exiting(td->td_lwp, p);
971                         if (status)
972                                 *status = W_STOPCODE(p->p_xstat);
973                         /* Zero rusage so we get something consistent. */
974                         if (rusage)
975                                 bzero(rusage, sizeof(rusage));
976                         error = 0;
977                         lwkt_reltoken(&p->p_token);
978                         goto done;
979                 }
980                 if ((options & WCONTINUED) && (p->p_flag & P_CONTINUED)) {
981                         lwkt_gettoken(&p->p_token);
982                         *res = p->p_pid;
983                         p->p_usched->heuristic_exiting(td->td_lwp, p);
984                         p->p_flag &= ~P_CONTINUED;
985
986                         if (status)
987                                 *status = SIGCONT;
988                         error = 0;
989                         lwkt_reltoken(&p->p_token);
990                         goto done;
991                 }
992         }
993         if (nfound == 0) {
994                 error = ECHILD;
995                 goto done;
996         }
997         if (options & WNOHANG) {
998                 *res = 0;
999                 error = 0;
1000                 goto done;
1001         }
1002
1003         /*
1004          * Wait for signal - interlocked using q->p_token.
1005          */
1006         error = tsleep(q, PCATCH, "wait", 0);
1007         if (error) {
1008 done:
1009                 lwkt_reltoken(&q->p_token);
1010                 return (error);
1011         }
1012         goto loop;
1013 }
1014
1015 /*
1016  * Make process 'parent' the new parent of process 'child'.
1017  *
1018  * p_children/p_sibling requires the parent's token, and
1019  * changing pptr requires the child's token, so we have to
1020  * get three tokens to do this operation.
1021  */
1022 void
1023 proc_reparent(struct proc *child, struct proc *parent)
1024 {
1025         struct proc *opp = child->p_pptr;
1026
1027         if (opp == parent)
1028                 return;
1029         PHOLD(opp);
1030         PHOLD(parent);
1031         lwkt_gettoken(&opp->p_token);
1032         lwkt_gettoken(&child->p_token);
1033         lwkt_gettoken(&parent->p_token);
1034         KKASSERT(child->p_pptr == opp);
1035         LIST_REMOVE(child, p_sibling);
1036         LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
1037         child->p_pptr = parent;
1038         lwkt_reltoken(&parent->p_token);
1039         lwkt_reltoken(&child->p_token);
1040         lwkt_reltoken(&opp->p_token);
1041         PRELE(parent);
1042         PRELE(opp);
1043 }
1044
1045 /*
1046  * The next two functions are to handle adding/deleting items on the
1047  * exit callout list
1048  * 
1049  * at_exit():
1050  * Take the arguments given and put them onto the exit callout list,
1051  * However first make sure that it's not already there.
1052  * returns 0 on success.
1053  */
1054
1055 int
1056 at_exit(exitlist_fn function)
1057 {
1058         struct exitlist *ep;
1059
1060 #ifdef INVARIANTS
1061         /* Be noisy if the programmer has lost track of things */
1062         if (rm_at_exit(function)) 
1063                 kprintf("WARNING: exit callout entry (%p) already present\n",
1064                     function);
1065 #endif
1066         ep = kmalloc(sizeof(*ep), M_ATEXIT, M_NOWAIT);
1067         if (ep == NULL)
1068                 return (ENOMEM);
1069         ep->function = function;
1070         TAILQ_INSERT_TAIL(&exit_list, ep, next);
1071         return (0);
1072 }
1073
1074 /*
1075  * Scan the exit callout list for the given item and remove it.
1076  * Returns the number of items removed (0 or 1)
1077  */
1078 int
1079 rm_at_exit(exitlist_fn function)
1080 {
1081         struct exitlist *ep;
1082
1083         TAILQ_FOREACH(ep, &exit_list, next) {
1084                 if (ep->function == function) {
1085                         TAILQ_REMOVE(&exit_list, ep, next);
1086                         kfree(ep, M_ATEXIT);
1087                         return(1);
1088                 }
1089         }       
1090         return (0);
1091 }
1092
1093 /*
1094  * LWP reaper related code.
1095  */
1096 static void
1097 reaplwps(void *context, int dummy)
1098 {
1099         struct lwplist *lwplist = context;
1100         struct lwp *lp;
1101
1102         lwkt_gettoken(&deadlwp_token);
1103         while ((lp = LIST_FIRST(lwplist))) {
1104                 LIST_REMOVE(lp, u.lwp_reap_entry);
1105                 reaplwp(lp);
1106         }
1107         lwkt_reltoken(&deadlwp_token);
1108 }
1109
1110 static void
1111 reaplwp(struct lwp *lp)
1112 {
1113         if (lwp_wait(lp) == 0) {
1114                 tsleep_interlock(lp, 0);
1115                 while (lwp_wait(lp) == 0)
1116                         tsleep(lp, PINTERLOCKED, "lwpreap", 1);
1117         }
1118         lwp_dispose(lp);
1119 }
1120
1121 static void
1122 deadlwp_init(void)
1123 {
1124         int cpu;
1125
1126         for (cpu = 0; cpu < ncpus; cpu++) {
1127                 LIST_INIT(&deadlwp_list[cpu]);
1128                 deadlwp_task[cpu] = kmalloc(sizeof(*deadlwp_task[cpu]), M_DEVBUF, M_WAITOK);
1129                 TASK_INIT(deadlwp_task[cpu], 0, reaplwps, &deadlwp_list[cpu]);
1130         }
1131 }
1132
1133 SYSINIT(deadlwpinit, SI_SUB_CONFIGURE, SI_ORDER_ANY, deadlwp_init, NULL);