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 45 #include <sys/param.h> 46 #include <sys/systm.h> 47 #include <sys/sysproto.h> 48 #include <sys/kernel.h> 49 #include <sys/malloc.h> 50 #include <sys/lock.h> 51 #include <sys/mutex.h> 52 #include <sys/proc.h> 53 #include <sys/pioctl.h> 54 #include <sys/tty.h> 55 #include <sys/wait.h> 56 #include <sys/vnode.h> 57 #include <sys/vmmeter.h> 58 #include <sys/resourcevar.h> 59 #include <sys/signalvar.h> 60 #include <sys/sx.h> 61 #include <sys/ptrace.h> 62 #include <sys/acct.h> /* for acct_process() function prototype */ 63 #include <sys/filedesc.h> 64 #include <sys/shm.h> 65 #include <sys/sem.h> 66 #include <sys/jail.h> 67 68 #include <vm/vm.h> 69 #include <vm/vm_param.h> 70 #include <vm/vm_extern.h> 71 #include <vm/pmap.h> 72 #include <vm/vm_map.h> 73 #include <vm/vm_zone.h> 74 #include <sys/user.h> 75 76 /* Required to be non-static for SysVR4 emulator */ 77 MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status"); 78 79 static MALLOC_DEFINE(M_ATEXIT, "atexit", "atexit callback"); 80 81 static int wait1 __P((struct thread *, struct wait_args *, int)); 82 83 /* 84 * callout list for things to do at exit time 85 */ 86 struct exitlist { 87 exitlist_fn function; 88 TAILQ_ENTRY(exitlist) next; 89 }; 90 91 TAILQ_HEAD(exit_list_head, exitlist); 92 static struct exit_list_head exit_list = TAILQ_HEAD_INITIALIZER(exit_list); 93 94 /* 95 * exit -- 96 * Death of process. 97 * 98 * MPSAFE 99 */ 100 void 101 sys_exit(td, uap) 102 struct thread *td; 103 struct sys_exit_args /* { 104 int rval; 105 } */ *uap; 106 { 107 108 mtx_lock(&Giant); 109 exit1(td, W_EXITCODE(uap->rval, 0)); 110 /* NOTREACHED */ 111 } 112 113 /* 114 * Exit: deallocate address space and other resources, change proc state 115 * to zombie, and unlink proc from allproc and parent's lists. Save exit 116 * status and rusage for wait(). Check for child processes and orphan them. 117 */ 118 void 119 exit1(td, rv) 120 register struct thread *td; 121 int rv; 122 { 123 struct proc *p = td->td_proc; 124 register struct proc *q, *nq; 125 register struct vmspace *vm; 126 struct vnode *vtmp; 127 struct exitlist *ep; 128 129 GIANT_REQUIRED; 130 131 if (p->p_pid == 1) { 132 printf("init died (signal %d, exit %d)\n", 133 WTERMSIG(rv), WEXITSTATUS(rv)); 134 panic("Going nowhere without my init!"); 135 } 136 137 /* XXXXKSE */ 138 /* MUST abort all other threads before proceeding past this point */ 139 140 /* are we a task leader? */ 141 PROC_LOCK(p); 142 if(p == p->p_leader) { 143 q = p->p_peers; 144 while (q != NULL) { 145 PROC_LOCK(q); 146 psignal(q, SIGKILL); 147 PROC_UNLOCK(q); 148 q = q->p_peers; 149 } 150 while (p->p_peers) 151 msleep((caddr_t)p, &p->p_mtx, PWAIT, "exit1", 0); 152 } 153 PROC_UNLOCK(p); 154 155 #ifdef PGINPROF 156 vmsizmon(); 157 #endif 158 STOPEVENT(p, S_EXIT, rv); 159 wakeup(&p->p_stype); /* Wakeup anyone in procfs' PIOCWAIT */ 160 161 /* 162 * Check if any loadable modules need anything done at process exit. 163 * e.g. SYSV IPC stuff 164 * XXX what if one of these generates an error? 165 */ 166 TAILQ_FOREACH(ep, &exit_list, next) 167 (*ep->function)(p); 168 169 stopprofclock(p); 170 171 MALLOC(p->p_ru, struct rusage *, sizeof(struct rusage), 172 M_ZOMBIE, M_WAITOK); 173 /* 174 * If parent is waiting for us to exit or exec, 175 * P_PPWAIT is set; we will wakeup the parent below. 176 */ 177 PROC_LOCK(p); 178 p->p_flag &= ~(P_TRACED | P_PPWAIT); 179 p->p_flag |= P_WEXIT; 180 SIGEMPTYSET(p->p_siglist); 181 PROC_UNLOCK(p); 182 if (timevalisset(&p->p_realtimer.it_value)) 183 callout_stop(&p->p_itcallout); 184 185 /* 186 * Reset any sigio structures pointing to us as a result of 187 * F_SETOWN with our pid. 188 */ 189 funsetownlst(&p->p_sigiolst); 190 191 /* 192 * Close open files and release open-file table. 193 * This may block! 194 */ 195 fdfree(td); /* XXXKSE *//* may not be the one in proc */ 196 197 /* 198 * Remove ourself from our leader's peer list and wake our leader. 199 */ 200 PROC_LOCK(p->p_leader); 201 if(p->p_leader->p_peers) { 202 q = p->p_leader; 203 while(q->p_peers != p) 204 q = q->p_peers; 205 q->p_peers = p->p_peers; 206 wakeup((caddr_t)p->p_leader); 207 } 208 PROC_UNLOCK(p->p_leader); 209 210 /* The next two chunks should probably be moved to vmspace_exit. */ 211 vm = p->p_vmspace; 212 /* 213 * Release user portion of address space. 214 * This releases references to vnodes, 215 * which could cause I/O if the file has been unlinked. 216 * Need to do this early enough that we can still sleep. 217 * Can't free the entire vmspace as the kernel stack 218 * may be mapped within that space also. 219 */ 220 if (--vm->vm_refcnt == 0) { 221 if (vm->vm_shm) 222 shmexit(p); 223 pmap_remove_pages(vmspace_pmap(vm), VM_MIN_ADDRESS, 224 VM_MAXUSER_ADDRESS); 225 (void) vm_map_remove(&vm->vm_map, VM_MIN_ADDRESS, 226 VM_MAXUSER_ADDRESS); 227 vm->vm_freer = p; 228 } 229 230 PROC_LOCK(p); 231 if (SESS_LEADER(p)) { 232 register struct session *sp = p->p_session; 233 234 PROC_UNLOCK(p); 235 if (sp->s_ttyvp) { 236 /* 237 * Controlling process. 238 * Signal foreground pgrp, 239 * drain controlling terminal 240 * and revoke access to controlling terminal. 241 */ 242 if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) { 243 if (sp->s_ttyp->t_pgrp) 244 pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1); 245 (void) ttywait(sp->s_ttyp); 246 /* 247 * The tty could have been revoked 248 * if we blocked. 249 */ 250 if (sp->s_ttyvp) 251 VOP_REVOKE(sp->s_ttyvp, REVOKEALL); 252 } 253 if (sp->s_ttyvp) 254 vrele(sp->s_ttyvp); 255 sp->s_ttyvp = NULL; 256 /* 257 * s_ttyp is not zero'd; we use this to indicate 258 * that the session once had a controlling terminal. 259 * (for logging and informational purposes) 260 */ 261 } 262 sp->s_leader = NULL; 263 } else 264 PROC_UNLOCK(p); 265 fixjobc(p, p->p_pgrp, 0); 266 (void)acct_process(td); 267 #ifdef KTRACE 268 /* 269 * release trace file 270 */ 271 p->p_traceflag = 0; /* don't trace the vrele() */ 272 if ((vtmp = p->p_tracep) != NULL) { 273 p->p_tracep = NULL; 274 vrele(vtmp); 275 } 276 #endif 277 /* 278 * Release reference to text vnode 279 */ 280 if ((vtmp = p->p_textvp) != NULL) { 281 p->p_textvp = NULL; 282 vrele(vtmp); 283 } 284 285 /* 286 * Remove proc from allproc queue and pidhash chain. 287 * Place onto zombproc. Unlink from parent's child list. 288 */ 289 sx_xlock(&allproc_lock); 290 LIST_REMOVE(p, p_list); 291 LIST_INSERT_HEAD(&zombproc, p, p_list); 292 LIST_REMOVE(p, p_hash); 293 sx_xunlock(&allproc_lock); 294 295 sx_xlock(&proctree_lock); 296 q = LIST_FIRST(&p->p_children); 297 if (q != NULL) /* only need this if any child is S_ZOMB */ 298 wakeup((caddr_t) initproc); 299 for (; q != NULL; q = nq) { 300 nq = LIST_NEXT(q, p_sibling); 301 PROC_LOCK(q); 302 proc_reparent(q, initproc); 303 q->p_sigparent = SIGCHLD; 304 /* 305 * Traced processes are killed 306 * since their existence means someone is screwing up. 307 */ 308 if (q->p_flag & P_TRACED) { 309 q->p_flag &= ~P_TRACED; 310 psignal(q, SIGKILL); 311 } 312 PROC_UNLOCK(q); 313 } 314 315 /* 316 * Save exit status and final rusage info, adding in child rusage 317 * info and self times. 318 */ 319 p->p_xstat = rv; 320 *p->p_ru = p->p_stats->p_ru; 321 mtx_lock_spin(&sched_lock); 322 calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL); 323 mtx_unlock_spin(&sched_lock); 324 ruadd(p->p_ru, &p->p_stats->p_cru); 325 326 /* 327 * Pretend that an mi_switch() to the next process occurs now. We 328 * must set `switchtime' directly since we will call cpu_switch() 329 * directly. Set it now so that the rest of the exit time gets 330 * counted somewhere if possible. 331 */ 332 mtx_lock_spin(&sched_lock); 333 microuptime(PCPU_PTR(switchtime)); 334 PCPU_SET(switchticks, ticks); 335 mtx_unlock_spin(&sched_lock); 336 337 /* 338 * notify interested parties of our demise. 339 */ 340 PROC_LOCK(p); 341 KNOTE(&p->p_klist, NOTE_EXIT); 342 343 /* 344 * Notify parent that we're gone. If parent has the PS_NOCLDWAIT 345 * flag set, notify process 1 instead (and hope it will handle 346 * this situation). 347 */ 348 if (p->p_pptr->p_procsig->ps_flag & PS_NOCLDWAIT) { 349 struct proc *pp = p->p_pptr; 350 proc_reparent(p, initproc); 351 /* 352 * If this was the last child of our parent, notify 353 * parent, so in case he was wait(2)ing, he will 354 * continue. 355 */ 356 if (LIST_EMPTY(&pp->p_children)) 357 wakeup((caddr_t)pp); 358 } 359 360 PROC_LOCK(p->p_pptr); 361 if (p->p_sigparent && p->p_pptr != initproc) 362 psignal(p->p_pptr, p->p_sigparent); 363 else 364 psignal(p->p_pptr, SIGCHLD); 365 PROC_UNLOCK(p->p_pptr); 366 367 /* 368 * If this is a kthread, then wakeup anyone waiting for it to exit. 369 */ 370 if (p->p_flag & P_KTHREAD) 371 wakeup((caddr_t)p); 372 PROC_UNLOCK(p); 373 sx_xunlock(&proctree_lock); 374 375 /* 376 * Clear curproc after we've done all operations 377 * that could block, and before tearing down the rest 378 * of the process state that might be used from clock, etc. 379 * Also, can't clear curproc while we're still runnable, 380 * as we're not on a run queue (we are current, just not 381 * a proper proc any longer!). 382 * 383 * Other substructures are freed from wait(). 384 */ 385 mtx_assert(&Giant, MA_OWNED); 386 if (--p->p_limit->p_refcnt == 0) { 387 FREE(p->p_limit, M_SUBPROC); 388 p->p_limit = NULL; 389 } 390 391 /* 392 * Release this thread's reference to the ucred. The actual proc 393 * reference will stay around until the proc is harvested by 394 * wait(). At this point the ucred is immutable (no other threads 395 * from this proc are around that can change it) so we leave the 396 * per-thread ucred pointer intact in case it is needed although 397 * in theory nothing should be using it at this point. 398 */ 399 crfree(td->td_ucred); 400 401 /* 402 * Finally, call machine-dependent code to release the remaining 403 * resources including address space, the kernel stack and pcb. 404 * The address space is released by "vmspace_exitfree(p)" in 405 * vm_waitproc(). 406 */ 407 cpu_exit(td); 408 409 PROC_LOCK(p); 410 mtx_lock_spin(&sched_lock); 411 while (mtx_owned(&Giant)) 412 mtx_unlock(&Giant); 413 414 /* 415 * We have to wait until after releasing all locks before 416 * changing p_stat. If we block on a mutex then we will be 417 * back at SRUN when we resume and our parent will never 418 * harvest us. 419 */ 420 p->p_stat = SZOMB; 421 422 wakeup(p->p_pptr); 423 PROC_UNLOCK(p); 424 425 cnt.v_swtch++; 426 cpu_throw(); 427 panic("exit1"); 428 } 429 430 #ifdef COMPAT_43 431 /* 432 * MPSAFE, the dirty work is handled by wait1(). 433 */ 434 int 435 owait(td, uap) 436 struct thread *td; 437 register struct owait_args /* { 438 int dummy; 439 } */ *uap; 440 { 441 struct wait_args w; 442 443 w.options = 0; 444 w.rusage = NULL; 445 w.pid = WAIT_ANY; 446 w.status = NULL; 447 return (wait1(td, &w, 1)); 448 } 449 #endif /* COMPAT_43 */ 450 451 /* 452 * MPSAFE, the dirty work is handled by wait1(). 453 */ 454 int 455 wait4(td, uap) 456 struct thread *td; 457 struct wait_args *uap; 458 { 459 460 return (wait1(td, uap, 0)); 461 } 462 463 /* 464 * MPSAFE 465 */ 466 static int 467 wait1(td, uap, compat) 468 register struct thread *td; 469 register struct wait_args /* { 470 int pid; 471 int *status; 472 int options; 473 struct rusage *rusage; 474 } */ *uap; 475 int compat; 476 { 477 register int nfound; 478 register struct proc *q, *p, *t; 479 int status, error; 480 481 mtx_lock(&Giant); 482 q = td->td_proc; 483 if (uap->pid == 0) 484 uap->pid = -q->p_pgid; 485 if (uap->options &~ (WUNTRACED|WNOHANG|WLINUXCLONE)) { 486 error = EINVAL; 487 goto done2; 488 } 489 loop: 490 nfound = 0; 491 sx_slock(&proctree_lock); 492 LIST_FOREACH(p, &q->p_children, p_sibling) { 493 if (uap->pid != WAIT_ANY && 494 p->p_pid != uap->pid && p->p_pgid != -uap->pid) 495 continue; 496 497 /* 498 * This special case handles a kthread spawned by linux_clone 499 * (see linux_misc.c). The linux_wait4 and linux_waitpid 500 * functions need to be able to distinguish between waiting 501 * on a process and waiting on a thread. It is a thread if 502 * p_sigparent is not SIGCHLD, and the WLINUXCLONE option 503 * signifies we want to wait for threads and not processes. 504 */ 505 PROC_LOCK(p); 506 if ((p->p_sigparent != SIGCHLD) ^ 507 ((uap->options & WLINUXCLONE) != 0)) { 508 PROC_UNLOCK(p); 509 continue; 510 } 511 512 nfound++; 513 mtx_lock_spin(&sched_lock); 514 if (p->p_stat == SZOMB) { 515 /* 516 * charge childs scheduling cpu usage to parent 517 * XXXKSE assume only one thread & kse & ksegrp 518 * keep estcpu in each ksegrp 519 * so charge it to the ksegrp that did the wait 520 * since process estcpu is sum of all ksegrps, 521 * this is strictly as expected. 522 * Assume that the child process aggregated all 523 * tke estcpu into the 'build-in' ksegrp. 524 * XXXKSE 525 */ 526 if (curthread->td_proc->p_pid != 1) { 527 curthread->td_ksegrp->kg_estcpu = 528 ESTCPULIM(curthread->td_ksegrp->kg_estcpu + 529 p->p_ksegrp.kg_estcpu); 530 } 531 532 mtx_unlock_spin(&sched_lock); 533 PROC_UNLOCK(p); 534 sx_sunlock(&proctree_lock); 535 536 td->td_retval[0] = p->p_pid; 537 #ifdef COMPAT_43 538 if (compat) 539 td->td_retval[1] = p->p_xstat; 540 else 541 #endif 542 if (uap->status) { 543 status = p->p_xstat; /* convert to int */ 544 if ((error = copyout((caddr_t)&status, 545 (caddr_t)uap->status, sizeof(status)))) { 546 goto done2; 547 } 548 } 549 if (uap->rusage && (error = copyout((caddr_t)p->p_ru, 550 (caddr_t)uap->rusage, sizeof (struct rusage)))) { 551 goto done2; 552 } 553 /* 554 * If we got the child via a ptrace 'attach', 555 * we need to give it back to the old parent. 556 */ 557 sx_xlock(&proctree_lock); 558 if (p->p_oppid) { 559 if ((t = pfind(p->p_oppid)) != NULL) { 560 PROC_LOCK(p); 561 p->p_oppid = 0; 562 proc_reparent(p, t); 563 PROC_UNLOCK(p); 564 psignal(t, SIGCHLD); 565 wakeup((caddr_t)t); 566 PROC_UNLOCK(t); 567 sx_xunlock(&proctree_lock); 568 error = 0; 569 goto done2; 570 } 571 } 572 sx_xunlock(&proctree_lock); 573 PROC_LOCK(p); 574 p->p_xstat = 0; 575 PROC_UNLOCK(p); 576 ruadd(&q->p_stats->p_cru, p->p_ru); 577 FREE(p->p_ru, M_ZOMBIE); 578 p->p_ru = NULL; 579 580 /* 581 * Decrement the count of procs running with this uid. 582 */ 583 (void)chgproccnt(p->p_ucred->cr_ruidinfo, -1, 0); 584 585 /* 586 * Finally finished with old proc entry. 587 * Unlink it from its process group and free it. 588 */ 589 leavepgrp(p); 590 591 sx_xlock(&allproc_lock); 592 LIST_REMOVE(p, p_list); /* off zombproc */ 593 sx_xunlock(&allproc_lock); 594 595 sx_xlock(&proctree_lock); 596 LIST_REMOVE(p, p_sibling); 597 sx_xunlock(&proctree_lock); 598 599 /* 600 * Free up credentials. 601 */ 602 crfree(p->p_ucred); 603 p->p_ucred = NULL; 604 605 /* 606 * Remove unused arguments 607 */ 608 if (p->p_args && --p->p_args->ar_ref == 0) 609 FREE(p->p_args, M_PARGS); 610 611 if (--p->p_procsig->ps_refcnt == 0) { 612 if (p->p_sigacts != &p->p_uarea->u_sigacts) 613 FREE(p->p_sigacts, M_SUBPROC); 614 FREE(p->p_procsig, M_SUBPROC); 615 p->p_procsig = NULL; 616 } 617 618 /* 619 * Give vm and machine-dependent layer a chance 620 * to free anything that cpu_exit couldn't 621 * release while still running in process context. 622 */ 623 vm_waitproc(p); 624 mtx_destroy(&p->p_mtx); 625 zfree(proc_zone, p); 626 nprocs--; 627 error = 0; 628 goto done2; 629 } 630 if (p->p_stat == SSTOP && (p->p_flag & P_WAITED) == 0 && 631 (p->p_flag & P_TRACED || uap->options & WUNTRACED)) { 632 mtx_unlock_spin(&sched_lock); 633 p->p_flag |= P_WAITED; 634 PROC_UNLOCK(p); 635 sx_sunlock(&proctree_lock); 636 td->td_retval[0] = p->p_pid; 637 #ifdef COMPAT_43 638 if (compat) { 639 td->td_retval[1] = W_STOPCODE(p->p_xstat); 640 error = 0; 641 } else 642 #endif 643 if (uap->status) { 644 status = W_STOPCODE(p->p_xstat); 645 error = copyout((caddr_t)&status, 646 (caddr_t)uap->status, sizeof(status)); 647 } else 648 error = 0; 649 goto done2; 650 } 651 mtx_unlock_spin(&sched_lock); 652 PROC_UNLOCK(p); 653 } 654 sx_sunlock(&proctree_lock); 655 if (nfound == 0) { 656 error = ECHILD; 657 goto done2; 658 } 659 if (uap->options & WNOHANG) { 660 td->td_retval[0] = 0; 661 error = 0; 662 goto done2; 663 } 664 if ((error = tsleep((caddr_t)q, PWAIT | PCATCH, "wait", 0)) != 0) 665 goto done2; 666 goto loop; 667 done2: 668 mtx_unlock(&Giant); 669 return(error); 670 } 671 672 /* 673 * Make process 'parent' the new parent of process 'child'. 674 * Must be called with an exclusive hold of proctree lock. 675 */ 676 void 677 proc_reparent(child, parent) 678 register struct proc *child; 679 register struct proc *parent; 680 { 681 682 sx_assert(&proctree_lock, SX_XLOCKED); 683 PROC_LOCK_ASSERT(child, MA_OWNED); 684 if (child->p_pptr == parent) 685 return; 686 687 LIST_REMOVE(child, p_sibling); 688 LIST_INSERT_HEAD(&parent->p_children, child, p_sibling); 689 child->p_pptr = parent; 690 } 691 692 /* 693 * The next two functions are to handle adding/deleting items on the 694 * exit callout list 695 * 696 * at_exit(): 697 * Take the arguments given and put them onto the exit callout list, 698 * However first make sure that it's not already there. 699 * returns 0 on success. 700 */ 701 702 int 703 at_exit(function) 704 exitlist_fn function; 705 { 706 struct exitlist *ep; 707 708 #ifdef INVARIANTS 709 /* Be noisy if the programmer has lost track of things */ 710 if (rm_at_exit(function)) 711 printf("WARNING: exit callout entry (%p) already present\n", 712 function); 713 #endif 714 ep = malloc(sizeof(*ep), M_ATEXIT, M_NOWAIT); 715 if (ep == NULL) 716 return (ENOMEM); 717 ep->function = function; 718 TAILQ_INSERT_TAIL(&exit_list, ep, next); 719 return (0); 720 } 721 722 /* 723 * Scan the exit callout list for the given item and remove it. 724 * Returns the number of items removed (0 or 1) 725 */ 726 int 727 rm_at_exit(function) 728 exitlist_fn function; 729 { 730 struct exitlist *ep; 731 732 TAILQ_FOREACH(ep, &exit_list, next) { 733 if (ep->function == function) { 734 TAILQ_REMOVE(&exit_list, ep, next); 735 free(ep, M_ATEXIT); 736 return(1); 737 } 738 } 739 return (0); 740 } 741