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$ 40 */ 41 42 #include "opt_compat.h" 43 #include "opt_ktrace.h" 44 #include "opt_mac.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/lock.h> 52 #include <sys/mutex.h> 53 #include <sys/proc.h> 54 #include <sys/pioctl.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/signalvar.h> 61 #include <sys/sched.h> 62 #include <sys/sx.h> 63 #include <sys/ptrace.h> 64 #include <sys/acct.h> /* for acct_process() function prototype */ 65 #include <sys/filedesc.h> 66 #include <sys/mac.h> 67 #include <sys/shm.h> 68 #include <sys/sem.h> 69 #include <sys/jail.h> 70 #ifdef KTRACE 71 #include <sys/ktrace.h> 72 #endif 73 74 #include <vm/vm.h> 75 #include <vm/vm_extern.h> 76 #include <vm/vm_param.h> 77 #include <vm/pmap.h> 78 #include <vm/vm_map.h> 79 #include <vm/vm_page.h> 80 #include <vm/uma.h> 81 #include <sys/user.h> 82 83 /* Required to be non-static for SysVR4 emulator */ 84 MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status"); 85 86 static MALLOC_DEFINE(M_ATEXIT, "atexit", "atexit callback"); 87 88 static int wait1(struct thread *, struct wait_args *, int); 89 90 /* 91 * callout list for things to do at exit time 92 */ 93 struct exitlist { 94 exitlist_fn function; 95 TAILQ_ENTRY(exitlist) next; 96 }; 97 98 TAILQ_HEAD(exit_list_head, exitlist); 99 static struct exit_list_head exit_list = TAILQ_HEAD_INITIALIZER(exit_list); 100 101 /* 102 * exit -- 103 * Death of process. 104 * 105 * MPSAFE 106 */ 107 void 108 sys_exit(td, uap) 109 struct thread *td; 110 struct sys_exit_args /* { 111 int rval; 112 } */ *uap; 113 { 114 115 mtx_lock(&Giant); 116 exit1(td, W_EXITCODE(uap->rval, 0)); 117 /* NOTREACHED */ 118 } 119 120 /* 121 * Exit: deallocate address space and other resources, change proc state 122 * to zombie, and unlink proc from allproc and parent's lists. Save exit 123 * status and rusage for wait(). Check for child processes and orphan them. 124 */ 125 void 126 exit1(td, rv) 127 register struct thread *td; 128 int rv; 129 { 130 struct exitlist *ep; 131 struct proc *p, *nq, *q; 132 struct tty *tp; 133 struct vnode *ttyvp; 134 register struct vmspace *vm; 135 struct vnode *vtmp; 136 #ifdef KTRACE 137 struct vnode *tracevp; 138 #endif 139 140 GIANT_REQUIRED; 141 142 p = td->td_proc; 143 if (p == initproc) { 144 printf("init died (signal %d, exit %d)\n", 145 WTERMSIG(rv), WEXITSTATUS(rv)); 146 panic("Going nowhere without my init!"); 147 } 148 149 /* 150 * XXXKSE: MUST abort all other threads before proceeding past here. 151 */ 152 PROC_LOCK(p); 153 if (p->p_flag & P_THREADED) { 154 /* 155 * First check if some other thread got here before us.. 156 * if so, act apropriatly, (exit or suspend); 157 */ 158 thread_suspend_check(0); 159 160 /* 161 * Kill off the other threads. This requires 162 * Some co-operation from other parts of the kernel 163 * so it may not be instant. 164 * With this state set: 165 * Any thread entering the kernel from userspace will 166 * thread_exit() in trap(). Any thread attempting to 167 * sleep will return immediatly 168 * with EINTR or EWOULDBLOCK, which will hopefully force them 169 * to back out to userland, freeing resources as they go, and 170 * anything attempting to return to userland will thread_exit() 171 * from userret(). thread_exit() will unsuspend us 172 * when the last other thread exits. 173 */ 174 if (thread_single(SINGLE_EXIT)) { 175 panic ("Exit: Single threading fouled up"); 176 } 177 /* 178 * All other activity in this process is now stopped. 179 * Remove excess KSEs and KSEGRPS. XXXKSE (when we have them) 180 * ... 181 * Turn off threading support. 182 */ 183 p->p_flag &= ~P_THREADED; 184 thread_single_end(); /* Don't need this any more. */ 185 } 186 /* 187 * With this state set: 188 * Any thread entering the kernel from userspace will thread_exit() 189 * in trap(). Any thread attempting to sleep will return immediatly 190 * with EINTR or EWOULDBLOCK, which will hopefully force them 191 * to back out to userland, freeing resources as they go, and 192 * anything attempting to return to userland will thread_exit() 193 * from userret(). thread_exit() will do a wakeup on p->p_numthreads 194 * if it transitions to 1. 195 */ 196 197 p->p_flag |= P_WEXIT; 198 PROC_UNLOCK(p); 199 200 /* Are we a task leader? */ 201 if (p == p->p_leader) { 202 mtx_lock(&ppeers_lock); 203 q = p->p_peers; 204 while (q != NULL) { 205 PROC_LOCK(q); 206 psignal(q, SIGKILL); 207 PROC_UNLOCK(q); 208 q = q->p_peers; 209 } 210 while (p->p_peers != NULL) 211 msleep(p, &ppeers_lock, PWAIT, "exit1", 0); 212 mtx_unlock(&ppeers_lock); 213 } 214 215 #ifdef PGINPROF 216 vmsizmon(); 217 #endif 218 STOPEVENT(p, S_EXIT, rv); 219 wakeup(&p->p_stype); /* Wakeup anyone in procfs' PIOCWAIT */ 220 221 /* 222 * Check if any loadable modules need anything done at process exit. 223 * e.g. SYSV IPC stuff 224 * XXX what if one of these generates an error? 225 */ 226 TAILQ_FOREACH(ep, &exit_list, next) 227 (*ep->function)(p); 228 229 230 MALLOC(p->p_ru, struct rusage *, sizeof(struct rusage), 231 M_ZOMBIE, M_WAITOK); 232 /* 233 * If parent is waiting for us to exit or exec, 234 * P_PPWAIT is set; we will wakeup the parent below. 235 */ 236 PROC_LOCK(p); 237 stopprofclock(p); 238 p->p_flag &= ~(P_TRACED | P_PPWAIT); 239 SIGEMPTYSET(p->p_siglist); 240 if (timevalisset(&p->p_realtimer.it_value)) 241 callout_stop(&p->p_itcallout); 242 PROC_UNLOCK(p); 243 244 /* 245 * Reset any sigio structures pointing to us as a result of 246 * F_SETOWN with our pid. 247 */ 248 funsetownlst(&p->p_sigiolst); 249 250 /* 251 * Close open files and release open-file table. 252 * This may block! 253 */ 254 fdfree(td); 255 256 /* 257 * Remove ourself from our leader's peer list and wake our leader. 258 */ 259 mtx_lock(&ppeers_lock); 260 if (p->p_leader->p_peers) { 261 q = p->p_leader; 262 while (q->p_peers != p) 263 q = q->p_peers; 264 q->p_peers = p->p_peers; 265 wakeup(p->p_leader); 266 } 267 mtx_unlock(&ppeers_lock); 268 269 /* The next two chunks should probably be moved to vmspace_exit. */ 270 vm = p->p_vmspace; 271 /* 272 * Release user portion of address space. 273 * This releases references to vnodes, 274 * which could cause I/O if the file has been unlinked. 275 * Need to do this early enough that we can still sleep. 276 * Can't free the entire vmspace as the kernel stack 277 * may be mapped within that space also. 278 * 279 * Processes sharing the same vmspace may exit in one order, and 280 * get cleaned up by vmspace_exit() in a different order. The 281 * last exiting process to reach this point releases as much of 282 * the environment as it can, and the last process cleaned up 283 * by vmspace_exit() (which decrements exitingcnt) cleans up the 284 * remainder. 285 */ 286 ++vm->vm_exitingcnt; 287 if (--vm->vm_refcnt == 0) { 288 shmexit(vm); 289 vm_page_lock_queues(); 290 pmap_remove_pages(vmspace_pmap(vm), vm_map_min(&vm->vm_map), 291 vm_map_max(&vm->vm_map)); 292 vm_page_unlock_queues(); 293 (void) vm_map_remove(&vm->vm_map, vm_map_min(&vm->vm_map), 294 vm_map_max(&vm->vm_map)); 295 } 296 297 sx_xlock(&proctree_lock); 298 if (SESS_LEADER(p)) { 299 register struct session *sp; 300 301 sp = p->p_session; 302 if (sp->s_ttyvp) { 303 /* 304 * Controlling process. 305 * Signal foreground pgrp, 306 * drain controlling terminal 307 * and revoke access to controlling terminal. 308 */ 309 if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) { 310 tp = sp->s_ttyp; 311 if (sp->s_ttyp->t_pgrp) { 312 PGRP_LOCK(sp->s_ttyp->t_pgrp); 313 pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1); 314 PGRP_UNLOCK(sp->s_ttyp->t_pgrp); 315 } 316 /* XXX tp should be locked. */ 317 sx_xunlock(&proctree_lock); 318 (void) ttywait(tp); 319 sx_xlock(&proctree_lock); 320 /* 321 * The tty could have been revoked 322 * if we blocked. 323 */ 324 if (sp->s_ttyvp) { 325 ttyvp = sp->s_ttyvp; 326 SESS_LOCK(p->p_session); 327 sp->s_ttyvp = NULL; 328 SESS_UNLOCK(p->p_session); 329 sx_xunlock(&proctree_lock); 330 VOP_REVOKE(ttyvp, REVOKEALL); 331 vrele(ttyvp); 332 sx_xlock(&proctree_lock); 333 } 334 } 335 if (sp->s_ttyvp) { 336 ttyvp = sp->s_ttyvp; 337 SESS_LOCK(p->p_session); 338 sp->s_ttyvp = NULL; 339 SESS_UNLOCK(p->p_session); 340 vrele(ttyvp); 341 } 342 /* 343 * s_ttyp is not zero'd; we use this to indicate 344 * that the session once had a controlling terminal. 345 * (for logging and informational purposes) 346 */ 347 } 348 SESS_LOCK(p->p_session); 349 sp->s_leader = NULL; 350 SESS_UNLOCK(p->p_session); 351 } 352 fixjobc(p, p->p_pgrp, 0); 353 sx_xunlock(&proctree_lock); 354 (void)acct_process(td); 355 #ifdef KTRACE 356 /* 357 * release trace file 358 */ 359 PROC_LOCK(p); 360 mtx_lock(&ktrace_mtx); 361 p->p_traceflag = 0; /* don't trace the vrele() */ 362 tracevp = p->p_tracep; 363 p->p_tracep = NULL; 364 mtx_unlock(&ktrace_mtx); 365 PROC_UNLOCK(p); 366 if (tracevp != NULL) 367 vrele(tracevp); 368 #endif 369 /* 370 * Release reference to text vnode 371 */ 372 if ((vtmp = p->p_textvp) != NULL) { 373 p->p_textvp = NULL; 374 vrele(vtmp); 375 } 376 377 /* 378 * Release our limits structure. 379 */ 380 mtx_assert(&Giant, MA_OWNED); 381 if (--p->p_limit->p_refcnt == 0) { 382 FREE(p->p_limit, M_SUBPROC); 383 p->p_limit = NULL; 384 } 385 386 /* 387 * Release this thread's reference to the ucred. The actual proc 388 * reference will stay around until the proc is harvested by 389 * wait(). At this point the ucred is immutable (no other threads 390 * from this proc are around that can change it) so we leave the 391 * per-thread ucred pointer intact in case it is needed although 392 * in theory nothing should be using it at this point. 393 */ 394 crfree(td->td_ucred); 395 396 /* 397 * Remove proc from allproc queue and pidhash chain. 398 * Place onto zombproc. Unlink from parent's child list. 399 */ 400 sx_xlock(&allproc_lock); 401 LIST_REMOVE(p, p_list); 402 LIST_INSERT_HEAD(&zombproc, p, p_list); 403 LIST_REMOVE(p, p_hash); 404 sx_xunlock(&allproc_lock); 405 406 sx_xlock(&proctree_lock); 407 q = LIST_FIRST(&p->p_children); 408 if (q != NULL) /* only need this if any child is S_ZOMB */ 409 wakeup(initproc); 410 for (; q != NULL; q = nq) { 411 nq = LIST_NEXT(q, p_sibling); 412 PROC_LOCK(q); 413 proc_reparent(q, initproc); 414 q->p_sigparent = SIGCHLD; 415 /* 416 * Traced processes are killed 417 * since their existence means someone is screwing up. 418 */ 419 if (q->p_flag & P_TRACED) { 420 q->p_flag &= ~P_TRACED; 421 psignal(q, SIGKILL); 422 } 423 PROC_UNLOCK(q); 424 } 425 426 /* 427 * Save exit status and final rusage info, adding in child rusage 428 * info and self times. 429 */ 430 PROC_LOCK(p); 431 p->p_xstat = rv; 432 *p->p_ru = p->p_stats->p_ru; 433 mtx_lock_spin(&sched_lock); 434 calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL); 435 mtx_unlock_spin(&sched_lock); 436 ruadd(p->p_ru, &p->p_stats->p_cru); 437 438 /* 439 * Notify interested parties of our demise. 440 */ 441 KNOTE(&p->p_klist, NOTE_EXIT); 442 443 /* 444 * Notify parent that we're gone. If parent has the PS_NOCLDWAIT 445 * flag set, or if the handler is set to SIG_IGN, notify process 446 * 1 instead (and hope it will handle this situation). 447 */ 448 PROC_LOCK(p->p_pptr); 449 if (p->p_pptr->p_procsig->ps_flag & (PS_NOCLDWAIT | PS_CLDSIGIGN)) { 450 struct proc *pp; 451 452 pp = p->p_pptr; 453 PROC_UNLOCK(pp); 454 proc_reparent(p, initproc); 455 PROC_LOCK(p->p_pptr); 456 /* 457 * If this was the last child of our parent, notify 458 * parent, so in case he was wait(2)ing, he will 459 * continue. 460 */ 461 if (LIST_EMPTY(&pp->p_children)) 462 wakeup(pp); 463 } 464 465 if (p->p_sigparent && p->p_pptr != initproc) 466 psignal(p->p_pptr, p->p_sigparent); 467 else 468 psignal(p->p_pptr, SIGCHLD); 469 PROC_UNLOCK(p->p_pptr); 470 471 /* 472 * If this is a kthread, then wakeup anyone waiting for it to exit. 473 */ 474 if (p->p_flag & P_KTHREAD) 475 wakeup(p); 476 PROC_UNLOCK(p); 477 478 /* 479 * Finally, call machine-dependent code to release the remaining 480 * resources including address space. 481 * The address space is released by "vmspace_exitfree(p)" in 482 * vm_waitproc(). 483 */ 484 cpu_exit(td); 485 486 PROC_LOCK(p); 487 PROC_LOCK(p->p_pptr); 488 sx_xunlock(&proctree_lock); 489 mtx_lock_spin(&sched_lock); 490 491 while (mtx_owned(&Giant)) 492 mtx_unlock(&Giant); 493 494 /* 495 * We have to wait until after releasing all locks before 496 * changing p_state. If we block on a mutex then we will be 497 * back at SRUN when we resume and our parent will never 498 * harvest us. 499 */ 500 p->p_state = PRS_ZOMBIE; 501 502 wakeup(p->p_pptr); 503 PROC_UNLOCK(p->p_pptr); 504 cnt.v_swtch++; 505 binuptime(PCPU_PTR(switchtime)); 506 PCPU_SET(switchticks, ticks); 507 508 cpu_sched_exit(td); /* XXXKSE check if this should be in thread_exit */ 509 /* 510 * Make sure the scheduler takes this thread out of its tables etc. 511 * This will also release this thread's reference to the ucred. 512 * Other thread parts to release include pcb bits and such. 513 */ 514 thread_exit(); 515 } 516 517 #ifdef COMPAT_43 518 /* 519 * MPSAFE. The dirty work is handled by wait1(). 520 */ 521 int 522 owait(td, uap) 523 struct thread *td; 524 register struct owait_args /* { 525 int dummy; 526 } */ *uap; 527 { 528 struct wait_args w; 529 530 w.options = 0; 531 w.rusage = NULL; 532 w.pid = WAIT_ANY; 533 w.status = NULL; 534 return (wait1(td, &w, 1)); 535 } 536 #endif /* COMPAT_43 */ 537 538 /* 539 * MPSAFE. The dirty work is handled by wait1(). 540 */ 541 int 542 wait4(td, uap) 543 struct thread *td; 544 struct wait_args *uap; 545 { 546 547 return (wait1(td, uap, 0)); 548 } 549 550 /* 551 * MPSAFE 552 */ 553 static int 554 wait1(td, uap, compat) 555 register struct thread *td; 556 register struct wait_args /* { 557 int pid; 558 int *status; 559 int options; 560 struct rusage *rusage; 561 } */ *uap; 562 int compat; 563 { 564 struct rusage ru; 565 int nfound; 566 struct proc *p, *q, *t; 567 int status, error; 568 569 q = td->td_proc; 570 if (uap->pid == 0) { 571 PROC_LOCK(q); 572 uap->pid = -q->p_pgid; 573 PROC_UNLOCK(q); 574 } 575 if (uap->options &~ (WUNTRACED|WNOHANG|WCONTINUED|WLINUXCLONE)) 576 return (EINVAL); 577 mtx_lock(&Giant); 578 loop: 579 nfound = 0; 580 sx_xlock(&proctree_lock); 581 LIST_FOREACH(p, &q->p_children, p_sibling) { 582 PROC_LOCK(p); 583 if (uap->pid != WAIT_ANY && 584 p->p_pid != uap->pid && p->p_pgid != -uap->pid) { 585 PROC_UNLOCK(p); 586 continue; 587 } 588 589 /* 590 * This special case handles a kthread spawned by linux_clone 591 * (see linux_misc.c). The linux_wait4 and linux_waitpid 592 * functions need to be able to distinguish between waiting 593 * on a process and waiting on a thread. It is a thread if 594 * p_sigparent is not SIGCHLD, and the WLINUXCLONE option 595 * signifies we want to wait for threads and not processes. 596 */ 597 if ((p->p_sigparent != SIGCHLD) ^ 598 ((uap->options & WLINUXCLONE) != 0)) { 599 PROC_UNLOCK(p); 600 continue; 601 } 602 603 nfound++; 604 if (p->p_state == PRS_ZOMBIE) { 605 /* 606 * Allow the scheduler to adjust the priority of the 607 * parent when a kseg is exiting. 608 */ 609 if (curthread->td_proc->p_pid != 1) { 610 mtx_lock_spin(&sched_lock); 611 sched_exit(curthread->td_ksegrp, 612 FIRST_KSEGRP_IN_PROC(p)); 613 mtx_unlock_spin(&sched_lock); 614 } 615 616 td->td_retval[0] = p->p_pid; 617 #ifdef COMPAT_43 618 if (compat) 619 td->td_retval[1] = p->p_xstat; 620 else 621 #endif 622 if (uap->status) { 623 status = p->p_xstat; /* convert to int */ 624 PROC_UNLOCK(p); 625 if ((error = copyout(&status, 626 uap->status, sizeof(status)))) { 627 sx_xunlock(&proctree_lock); 628 mtx_unlock(&Giant); 629 return (error); 630 } 631 PROC_LOCK(p); 632 } 633 if (uap->rusage) { 634 bcopy(p->p_ru, &ru, sizeof(ru)); 635 PROC_UNLOCK(p); 636 if ((error = copyout(&ru, 637 uap->rusage, sizeof (struct rusage)))) { 638 sx_xunlock(&proctree_lock); 639 mtx_unlock(&Giant); 640 return (error); 641 } 642 } else 643 PROC_UNLOCK(p); 644 /* 645 * If we got the child via a ptrace 'attach', 646 * we need to give it back to the old parent. 647 */ 648 if (p->p_oppid && (t = pfind(p->p_oppid)) != NULL) { 649 PROC_LOCK(p); 650 p->p_oppid = 0; 651 proc_reparent(p, t); 652 PROC_UNLOCK(p); 653 psignal(t, SIGCHLD); 654 wakeup(t); 655 PROC_UNLOCK(t); 656 sx_xunlock(&proctree_lock); 657 mtx_unlock(&Giant); 658 return (0); 659 } 660 /* 661 * Remove other references to this process to ensure 662 * we have an exclusive reference. 663 */ 664 leavepgrp(p); 665 666 sx_xlock(&allproc_lock); 667 LIST_REMOVE(p, p_list); /* off zombproc */ 668 sx_xunlock(&allproc_lock); 669 670 LIST_REMOVE(p, p_sibling); 671 sx_xunlock(&proctree_lock); 672 673 /* 674 * As a side effect of this lock, we know that 675 * all other writes to this proc are visible now, so 676 * no more locking is needed for p. 677 */ 678 PROC_LOCK(p); 679 p->p_xstat = 0; /* XXX: why? */ 680 PROC_UNLOCK(p); 681 PROC_LOCK(q); 682 ruadd(&q->p_stats->p_cru, p->p_ru); 683 PROC_UNLOCK(q); 684 FREE(p->p_ru, M_ZOMBIE); 685 p->p_ru = NULL; 686 687 /* 688 * Decrement the count of procs running with this uid. 689 */ 690 (void)chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0); 691 692 /* 693 * Free up credentials. 694 */ 695 crfree(p->p_ucred); 696 p->p_ucred = NULL; /* XXX: why? */ 697 698 /* 699 * Remove unused arguments 700 */ 701 pargs_drop(p->p_args); 702 p->p_args = NULL; 703 704 if (--p->p_procsig->ps_refcnt == 0) { 705 if (p->p_sigacts != &p->p_uarea->u_sigacts) 706 FREE(p->p_sigacts, M_SUBPROC); 707 FREE(p->p_procsig, M_SUBPROC); 708 p->p_procsig = NULL; 709 } 710 711 /* 712 * do any thread-system specific cleanups 713 */ 714 thread_wait(p); 715 716 /* 717 * Give vm and machine-dependent layer a chance 718 * to free anything that cpu_exit couldn't 719 * release while still running in process context. 720 */ 721 vm_waitproc(p); 722 mtx_destroy(&p->p_mtx); 723 #ifdef MAC 724 mac_destroy_proc(p); 725 #endif 726 KASSERT(FIRST_THREAD_IN_PROC(p), 727 ("wait1: no residual thread!")); 728 uma_zfree(proc_zone, p); 729 sx_xlock(&allproc_lock); 730 nprocs--; 731 sx_xunlock(&allproc_lock); 732 mtx_unlock(&Giant); 733 return (0); 734 } 735 if (P_SHOULDSTOP(p) && ((p->p_flag & P_WAITED) == 0) && 736 (p->p_flag & P_TRACED || uap->options & WUNTRACED)) { 737 p->p_flag |= P_WAITED; 738 sx_xunlock(&proctree_lock); 739 td->td_retval[0] = p->p_pid; 740 #ifdef COMPAT_43 741 if (compat) { 742 td->td_retval[1] = W_STOPCODE(p->p_xstat); 743 PROC_UNLOCK(p); 744 error = 0; 745 } else 746 #endif 747 if (uap->status) { 748 status = W_STOPCODE(p->p_xstat); 749 PROC_UNLOCK(p); 750 error = copyout(&status, 751 uap->status, sizeof(status)); 752 } else { 753 PROC_UNLOCK(p); 754 error = 0; 755 } 756 mtx_unlock(&Giant); 757 return (error); 758 } 759 if (uap->options & WCONTINUED && (p->p_flag & P_CONTINUED)) { 760 sx_xunlock(&proctree_lock); 761 td->td_retval[0] = p->p_pid; 762 p->p_flag &= ~P_CONTINUED; 763 PROC_UNLOCK(p); 764 765 if (uap->status) { 766 status = SIGCONT; 767 error = copyout(&status, 768 uap->status, sizeof(status)); 769 } else 770 error = 0; 771 772 mtx_unlock(&Giant); 773 return (error); 774 } 775 PROC_UNLOCK(p); 776 } 777 if (nfound == 0) { 778 sx_xunlock(&proctree_lock); 779 mtx_unlock(&Giant); 780 return (ECHILD); 781 } 782 if (uap->options & WNOHANG) { 783 sx_xunlock(&proctree_lock); 784 td->td_retval[0] = 0; 785 mtx_unlock(&Giant); 786 return (0); 787 } 788 PROC_LOCK(q); 789 sx_xunlock(&proctree_lock); 790 error = msleep(q, &q->p_mtx, PWAIT | PCATCH, "wait", 0); 791 PROC_UNLOCK(q); 792 if (error) { 793 mtx_unlock(&Giant); 794 return (error); 795 } 796 goto loop; 797 } 798 799 /* 800 * Make process 'parent' the new parent of process 'child'. 801 * Must be called with an exclusive hold of proctree lock. 802 */ 803 void 804 proc_reparent(child, parent) 805 register struct proc *child; 806 register struct proc *parent; 807 { 808 809 sx_assert(&proctree_lock, SX_XLOCKED); 810 PROC_LOCK_ASSERT(child, MA_OWNED); 811 if (child->p_pptr == parent) 812 return; 813 814 LIST_REMOVE(child, p_sibling); 815 LIST_INSERT_HEAD(&parent->p_children, child, p_sibling); 816 child->p_pptr = parent; 817 } 818 819 /* 820 * The next two functions are to handle adding/deleting items on the 821 * exit callout list 822 * 823 * at_exit(): 824 * Take the arguments given and put them onto the exit callout list, 825 * However first make sure that it's not already there. 826 * returns 0 on success. 827 */ 828 829 int 830 at_exit(function) 831 exitlist_fn function; 832 { 833 struct exitlist *ep; 834 835 #ifdef INVARIANTS 836 /* Be noisy if the programmer has lost track of things */ 837 if (rm_at_exit(function)) 838 printf("WARNING: exit callout entry (%p) already present\n", 839 function); 840 #endif 841 ep = malloc(sizeof(*ep), M_ATEXIT, M_NOWAIT); 842 if (ep == NULL) 843 return (ENOMEM); 844 ep->function = function; 845 TAILQ_INSERT_TAIL(&exit_list, ep, next); 846 return (0); 847 } 848 849 /* 850 * Scan the exit callout list for the given item and remove it. 851 * Returns the number of items removed (0 or 1) 852 */ 853 int 854 rm_at_exit(function) 855 exitlist_fn function; 856 { 857 struct exitlist *ep; 858 859 TAILQ_FOREACH(ep, &exit_list, next) { 860 if (ep->function == function) { 861 TAILQ_REMOVE(&exit_list, ep, next); 862 free(ep, M_ATEXIT); 863 return (1); 864 } 865 } 866 return (0); 867 } 868