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