2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* Copyright (c) 1995, 1997 Apple Computer, Inc. All Rights Reserved */
30 * Copyright (c) 1982, 1986, 1989, 1991, 1993
31 * The Regents of the University of California. All rights reserved.
32 * (c) UNIX System Laboratories, Inc.
33 * All or some portions of this file are derived from material licensed
34 * to the University of California by American Telephone and Telegraph
35 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36 * the permission of UNIX System Laboratories, Inc.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * @(#)kern_exit.c 8.7 (Berkeley) 2/12/94
69 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
70 * support for mandatory and extensible security protections. This notice
71 * is included in support of clause 2.2 (b) of the Apple Public License,
75 #include <machine/reg.h>
76 #include <machine/psl.h>
78 #include "compat_43.h"
80 #include <sys/param.h>
81 #include <sys/systm.h>
82 #include <sys/ioctl.h>
83 #include <sys/proc_internal.h>
85 #include <sys/kauth.h>
88 #include <sys/resource.h>
89 #include <sys/kernel.h>
91 #include <sys/file_internal.h>
92 #include <sys/vnode_internal.h>
93 #include <sys/syslog.h>
94 #include <sys/malloc.h>
95 #include <sys/resourcevar.h>
96 #include <sys/ptrace.h>
98 #include <sys/aio_kern.h>
99 #include <sys/sysproto.h>
100 #include <sys/signalvar.h>
101 #include <sys/kdebug.h>
102 #include <sys/filedesc.h> /* fdfree */
104 #include <sys/shm_internal.h> /* shmexit */
106 #include <sys/acct.h> /* acct_process */
108 #include <security/audit/audit.h>
109 #include <bsm/audit_kevents.h>
111 #include <mach/mach_types.h>
113 #include <kern/kern_types.h>
114 #include <kern/kalloc.h>
115 #include <kern/task.h>
116 #include <kern/thread.h>
117 #include <kern/thread_call.h>
118 #include <kern/sched_prim.h>
119 #include <kern/assert.h>
121 /* Do not include dtrace.h, it redefines kmem_[alloc/free] */
122 extern void (*dtrace_fasttrap_exit_ptr
)(proc_t
);
123 extern void (*dtrace_helpers_cleanup
)(proc_t
);
124 extern void dtrace_lazy_dofs_destroy(proc_t
);
126 #include <sys/dtrace_ptss.h>
130 #include <security/mac.h>
131 #include <sys/syscall.h>
134 #include <mach/mach_types.h>
135 #include <mach/task.h>
136 #include <mach/thread_act.h>
140 extern char init_task_failure_data
[];
141 void proc_prepareexit(proc_t p
, int rv
);
142 void vfork_exit(proc_t p
, int rv
);
143 void vproc_exit(proc_t p
);
144 __private_extern__
void munge_user64_rusage(struct rusage
*a_rusage_p
, struct user64_rusage
*a_user_rusage_p
);
145 __private_extern__
void munge_user32_rusage(struct rusage
*a_rusage_p
, struct user32_rusage
*a_user_rusage_p
);
146 static int reap_child_locked(proc_t parent
, proc_t child
, int deadparent
, int locked
, int droplock
);
149 * Things which should have prototypes in headers, but don't
151 void *get_bsduthreadarg(thread_t
);
152 void proc_exit(proc_t p
);
153 int wait1continue(int result
);
154 int waitidcontinue(int result
);
155 int *get_bsduthreadrval(thread_t
);
156 kern_return_t
sys_perf_notify(thread_t thread
, int pid
);
157 kern_return_t
abnormal_exit_notify(mach_exception_data_type_t code
,
158 mach_exception_data_type_t subcode
);
159 void workqueue_exit(struct proc
*);
163 * NOTE: Source and target may *NOT* overlap!
164 * XXX Should share code with bsd/dev/ppc/unix_signal.c
167 siginfo_user_to_user32(user_siginfo_t
*in
, user32_siginfo_t
*out
)
169 out
->si_signo
= in
->si_signo
;
170 out
->si_errno
= in
->si_errno
;
171 out
->si_code
= in
->si_code
;
172 out
->si_pid
= in
->si_pid
;
173 out
->si_uid
= in
->si_uid
;
174 out
->si_status
= in
->si_status
;
175 out
->si_addr
= CAST_DOWN_EXPLICIT(user32_addr_t
,in
->si_addr
);
176 /* following cast works for sival_int because of padding */
177 out
->si_value
.sival_ptr
= CAST_DOWN_EXPLICIT(user32_addr_t
,in
->si_value
.sival_ptr
);
178 out
->si_band
= in
->si_band
; /* range reduction */
182 siginfo_user_to_user64(user_siginfo_t
*in
, user64_siginfo_t
*out
)
184 out
->si_signo
= in
->si_signo
;
185 out
->si_errno
= in
->si_errno
;
186 out
->si_code
= in
->si_code
;
187 out
->si_pid
= in
->si_pid
;
188 out
->si_uid
= in
->si_uid
;
189 out
->si_status
= in
->si_status
;
190 out
->si_addr
= in
->si_addr
;
191 /* following cast works for sival_int because of padding */
192 out
->si_value
.sival_ptr
= in
->si_value
.sival_ptr
;
193 out
->si_band
= in
->si_band
; /* range reduction */
201 exit(proc_t p
, struct exit_args
*uap
, int *retval
)
203 exit1(p
, W_EXITCODE(uap
->rval
, 0), retval
);
205 /* drop funnel before we return */
206 thread_exception_return();
209 thread_block(THREAD_CONTINUE_NULL
);
214 * Exit: deallocate address space and other resources, change proc state
215 * to zombie, and unlink proc from allproc and parent's lists. Save exit
216 * status and rusage for wait(). Check for child processes and orphan them.
219 exit1(proc_t p
, int rv
, int *retval
)
221 thread_t self
= current_thread();
222 struct task
*task
= p
->task
;
226 * If a thread in this task has already
227 * called exit(), then halt any others
231 ut
= get_bsdthread_info(self
);
232 if (ut
->uu_flag
& UT_VFORK
) {
234 vfork_return(p
, retval
, p
->p_pid
);
235 unix_syscall_return(0);
240 * The parameter list of audit_syscall_exit() was augmented to
241 * take the Darwin syscall number as the first parameter,
242 * which is currently required by mac_audit_postselect().
246 * The BSM token contains two components: an exit status as passed
247 * to exit(), and a return value to indicate what sort of exit it
248 * was. The exit status is WEXITSTATUS(rv), but it's not clear
249 * what the return value is.
251 AUDIT_ARG(exit
, WEXITSTATUS(rv
), 0);
252 AUDIT_SYSCALL_EXIT(SYS_exit
, p
, ut
, 0); /* Exit is always successfull */
254 DTRACE_PROC1(exit
, int, CLD_EXITED
);
257 while (p
->exit_thread
!= self
) {
258 if (sig_try_locked(p
) <= 0) {
259 if (get_threadtask(self
) != task
) {
264 thread_terminate(self
);
265 thread_exception_return();
272 printf("pid 1 exited (signal %d, exit %d)",
273 WTERMSIG(rv
), WEXITSTATUS(rv
));
274 panic("%s died\nState at Last Exception:\n\n%s",
275 (p
->p_comm
[0] != '\0' ?
278 init_task_failure_data
);
281 p
->p_lflag
|= P_LEXIT
;
286 proc_prepareexit(p
, rv
);
288 /* task terminate will call proc_terminate and that cleans it up */
289 task_terminate_internal(task
);
295 proc_prepareexit(proc_t p
, int rv
)
297 mach_exception_data_type_t code
, subcode
;
299 thread_t self
= current_thread();
300 ut
= get_bsdthread_info(self
);
302 /* If a core should be generated, notify crash reporter */
303 if (hassigprop(WTERMSIG(rv
), SA_CORE
)) {
305 * Workaround for processes checking up on PT_DENY_ATTACH:
306 * should be backed out post-Leopard (details in 5431025).
308 if ((SIGSEGV
== WTERMSIG(rv
)) &&
309 (p
->p_pptr
->p_lflag
& P_LNOATTACH
)) {
314 * Crash Reporter looks for the signal value, original exception
315 * type, and low 20 bits of the original code in code[0]
316 * (8, 4, and 20 bits respectively). code[1] is unmodified.
318 code
= ((WTERMSIG(rv
) & 0xff) << 24) |
319 ((ut
->uu_exception
& 0x0f) << 20) |
320 ((int)ut
->uu_code
& 0xfffff);
321 subcode
= ut
->uu_subcode
;
322 (void) abnormal_exit_notify(code
, subcode
);
326 /* Notify the perf server */
327 (void)sys_perf_notify(self
, p
->p_pid
);
330 * Remove proc from allproc queue and from pidhash chain.
331 * Need to do this before we do anything that can block.
332 * Not doing causes things like mount() find this on allproc
333 * in partially cleaned state.
338 LIST_REMOVE(p
, p_list
);
339 LIST_INSERT_HEAD(&zombproc
, p
, p_list
); /* Place onto zombproc. */
340 /* will not be visible via proc_find */
341 p
->p_listflag
|= P_LIST_EXITED
;
350 * If parent is waiting for us to exit or exec,
351 * P_LPPWAIT is set; we will wakeup the parent below.
354 p
->p_lflag
&= ~(P_LTRACED
| P_LPPWAIT
);
355 p
->p_sigignore
= ~(sigcantmask
);
365 struct task
*task
= p
->task
;
366 vnode_t tvp
= NULLVP
;
368 struct session
*sessp
;
369 struct uthread
* uth
;
373 /* This can happen if thread_terminate of the single thread
377 uth
= (struct uthread
*)get_bsdthread_info(current_thread());
380 if( !(p
->p_lflag
& P_LEXIT
)) {
381 p
->p_lflag
|= P_LEXIT
;
383 proc_prepareexit(p
, 0);
387 p
->p_lflag
|= P_LPEXIT
;
390 exitval
= p
->p_xstat
;
391 KERNEL_DEBUG_CONSTANT(BSDDBG_CODE(DBG_BSD_PROC
, BSD_PROC_EXIT
) | DBG_FUNC_START
,
392 pid
, exitval
, 0, 0, 0);
396 * Free any outstanding lazy dof entries. It is imperative we
397 * always call dtrace_lazy_dofs_destroy, rather than null check
398 * and call if !NULL. If we NULL test, during lazy dof faulting
399 * we can race with the faulting code and proceed from here to
400 * beyond the helpers cleanup. The lazy dof faulting will then
401 * install new helpers which will never be cleaned up, and leak.
403 dtrace_lazy_dofs_destroy(p
);
406 * Clean up any DTrace helper actions or probes for the process.
408 if (p
->p_dtrace_helpers
!= NULL
) {
409 (*dtrace_helpers_cleanup
)(p
);
413 * Clean up any DTrace probes associated with this process.
416 * APPLE NOTE: We release ptss pages/entries in dtrace_fasttrap_exit_ptr(),
417 * call this after dtrace_helpers_cleanup()
420 if (p
->p_dtrace_probes
&& dtrace_fasttrap_exit_ptr
) {
421 (*dtrace_fasttrap_exit_ptr
)(p
);
426 /* XXX Zombie allocation may fail, in which case stats get lost */
427 MALLOC_ZONE(p
->p_ru
, struct rusage
*,
428 sizeof (*p
->p_ru
), M_ZOMBIE
, M_WAITOK
);
431 * need to cancel async IO requests that can be cancelled and wait for those
432 * already active. MAY BLOCK!
442 * Close open files and release open-file table.
447 if (uth
->uu_lowpri_window
) {
449 * task is marked as a low priority I/O type
450 * and the I/O we issued while in flushing files on close
451 * collided with normal I/O operations...
452 * no need to throttle this thread since its going away
453 * but we do need to update our bookeeping w/r to throttled threads
455 throttle_lowpri_io(FALSE
);
459 /* Close ref SYSV Shared memory*/
464 /* Release SYSV semaphores */
469 pth_proc_hashdelete(p
);
472 sessp
= proc_session(p
);
473 if (SESS_LEADER(p
, sessp
)) {
475 if (sessp
->s_ttyvp
!= NULLVP
) {
478 struct vfs_context context
;
483 * Controlling process.
484 * Signal foreground pgrp,
485 * drain controlling terminal
486 * and revoke access to controlling terminal.
488 tp
= SESSION_TP(sessp
);
490 if ((tp
!= TTY_NULL
) && (tp
->t_session
== sessp
)) {
491 tty_pgsignal(tp
, SIGHUP
, 1);
494 /* reget potentially tp due to revocation */
495 tp
= SESSION_TP(sessp
);
496 ttyvp
= sessp
->s_ttyvp
;
497 ttyvid
= sessp
->s_ttyvid
;
498 sessp
->s_ttyvp
= NULLVP
;
500 sessp
->s_ttyp
= TTY_NULL
;
501 sessp
->s_ttypgrpid
= NO_PID
;
502 session_unlock(sessp
);
504 if ((ttyvp
!= NULLVP
) && (vnode_getwithvid(ttyvp
, ttyvid
) == 0)) {
506 if (tp
!= TTY_NULL
) {
511 context
.vc_thread
= proc_thread(p
); /* XXX */
512 context
.vc_ucred
= kauth_cred_proc_ref(p
);
513 VNOP_REVOKE(ttyvp
, REVOKEALL
, &context
);
515 kauth_cred_unref(&context
.vc_ucred
);
519 /* reget potentially tp due to revocation */
520 tp
= SESSION_TP(sessp
);
521 ttyvp
= sessp
->s_ttyvp
;
522 sessp
->s_ttyvp
= NULLVP
;
524 sessp
->s_ttyp
= TTY_NULL
;
525 sessp
->s_ttypgrpid
= NO_PID
;
526 session_unlock(sessp
);
531 * s_ttyp is not zero'd; we use this to indicate
532 * that the session once had a controlling terminal.
533 * (for logging and informational purposes)
538 sessp
->s_leader
= NULL
;
539 session_unlock(sessp
);
547 p
->p_rlimit
[RLIMIT_FSIZE
].rlim_cur
= RLIM_INFINITY
;
548 (void)acct_process(p
);
552 if ((p
->p_listflag
& P_LIST_EXITCOUNT
) == P_LIST_EXITCOUNT
) {
553 p
->p_listflag
&= ~P_LIST_EXITCOUNT
;
554 proc_shutdown_exitcount
--;
555 if (proc_shutdown_exitcount
== 0)
556 wakeup(&proc_shutdown_exitcount
);
559 /* wait till parentrefs are dropped and grant no more */
560 proc_childdrainstart(p
);
561 while ((q
= p
->p_children
.lh_first
) != NULL
) {
562 q
->p_listflag
|= P_LIST_DEADPARENT
;
563 if (q
->p_stat
== SZOMB
) {
565 panic("parent child linkage broken");
566 /* check for sysctl zomb lookup */
567 while ((q
->p_listflag
& P_LIST_WAITING
) == P_LIST_WAITING
) {
568 msleep(&q
->p_stat
, proc_list_mlock
, PWAIT
, "waitcoll", 0);
570 q
->p_listflag
|= P_LIST_WAITING
;
572 * This is a named reference and it is not granted
573 * if the reap is already in progress. So we get
574 * the reference here exclusively and their can be
575 * no waiters. So there is no need for a wakeup
576 * after we are done. AlsO the reap frees the structure
577 * and the proc struct cannot be used for wakeups as well.
578 * It is safe to use q here as this is system reap
580 (void)reap_child_locked(p
, q
, 1, 1, 0);
582 proc_reparentlocked(q
, initproc
, 0, 1);
584 * Traced processes are killed
585 * since their existence means someone is messing up.
587 if (q
->p_lflag
& P_LTRACED
) {
590 q
->p_lflag
&= ~P_LTRACED
;
591 if (q
->sigwait_thread
) {
594 * The sigwait_thread could be stopped at a
595 * breakpoint. Wake it up to kill.
596 * Need to do this as it could be a thread which is not
597 * the first thread in the task. So any attempts to kill
598 * the process would result into a deadlock on q->sigwait.
600 thread_resume((thread_t
)q
->sigwait_thread
);
601 clear_wait(q
->sigwait_thread
, THREAD_INTERRUPTED
);
602 threadsignal((thread_t
)q
->sigwait_thread
, SIGKILL
, 0);
611 proc_childdrainend(p
);
615 * Release reference to text vnode
624 * Save exit status and final rusage info, adding in child rusage
625 * info and self times. If we were unable to allocate a zombie
626 * structure, this information is lost.
628 /* No need for locking here as no one than this thread can access this */
629 if (p
->p_ru
!= NULL
) {
630 *p
->p_ru
= p
->p_stats
->p_ru
;
632 calcru(p
, &p
->p_ru
->ru_utime
, &p
->p_ru
->ru_stime
, NULL
);
634 ruadd(p
->p_ru
, &p
->p_stats
->p_cru
);
638 * Free up profiling buffers.
641 struct uprof
*p0
= &p
->p_stats
->p_prof
, *p1
, *pn
;
647 for (; p1
!= NULL
; p1
= pn
) {
649 kfree(p1
, sizeof *p1
);
654 if (thread_call_cancel(p
->p_rcall
))
657 while (p
->p_ractive
> 0) {
666 thread_call_free(p
->p_rcall
);
670 * Other substructures are freed from wait().
672 FREE_ZONE(p
->p_stats
, sizeof *p
->p_stats
, M_PSTATS
);
675 FREE_ZONE(p
->p_sigacts
, sizeof *p
->p_sigacts
, M_SIGACTS
);
678 proc_limitdrop(p
, 1);
683 * Finish up by terminating the task
684 * and halt this thread (only if a
685 * member of the task exiting).
688 set_bsdtask_info(task
, NULL
);
690 proc_knote(p
, NOTE_EXIT
);
692 /* mark the thread as the one that is doing proc_exit
693 * no need to hold proc lock in uthread_free
695 uth
->uu_flag
|= UT_PROCEXIT
;
697 * Notify parent that we're gone.
700 if (pp
->p_flag
& P_NOCLDWAIT
) {
704 * If the parent is ignoring SIGCHLD, then POSIX requires
705 * us to not add the resource usage to the parent process -
706 * we are only going to hand it off to init to get reaped.
707 * We should contest the standard in this case on the basis
712 * Add child resource usage to parent before giving
713 * zombie to init. If we were unable to allocate a
714 * zombie structure, this information is lost.
716 if (p
->p_ru
!= NULL
) {
718 ruadd(&pp
->p_stats
->p_cru
, p
->p_ru
);
721 #endif /* !3839178 */
723 /* kernel can reap this one, no need to move it to launchd */
725 p
->p_listflag
|= P_LIST_DEADPARENT
;
728 if ((p
->p_listflag
& P_LIST_DEADPARENT
) == 0) {
729 if (pp
!= initproc
) {
731 pp
->si_pid
= p
->p_pid
;
732 pp
->si_status
= p
->p_xstat
;
733 pp
->si_code
= CLD_EXITED
;
735 * p_ucred usage is safe as it is an exiting process
736 * and reference is dropped in reap
738 pp
->si_uid
= p
->p_ucred
->cr_ruid
;
741 /* mark as a zombie */
742 /* No need to take proc lock as all refs are drained and
743 * no one except parent (reaping ) can look at this.
744 * The write is to an int and is coherent. Also parent is
745 * keyed off of list lock for reaping
747 KERNEL_DEBUG_CONSTANT(BSDDBG_CODE(DBG_BSD_PROC
, BSD_PROC_EXIT
) | DBG_FUNC_END
,
748 pid
, exitval
, 0, 0, 0);
751 * The current process can be reaped so, no one
755 psignal(pp
, SIGCHLD
);
757 /* and now wakeup the parent */
762 /* should be fine as parent proc would be initproc */
763 /* mark as a zombie */
764 /* No need to take proc lock as all refs are drained and
765 * no one except parent (reaping ) can look at this.
766 * The write is to an int and is coherent. Also parent is
767 * keyed off of list lock for reaping
770 KERNEL_DEBUG_CONSTANT(BSDDBG_CODE(DBG_BSD_PROC
, BSD_PROC_EXIT
) | DBG_FUNC_END
,
771 pid
, exitval
, 0, 0, 0);
773 /* check for sysctl zomb lookup */
774 while ((p
->p_listflag
& P_LIST_WAITING
) == P_LIST_WAITING
) {
775 msleep(&p
->p_stat
, proc_list_mlock
, PWAIT
, "waitcoll", 0);
777 /* safe to use p as this is a system reap */
778 p
->p_listflag
|= P_LIST_WAITING
;
780 * This is a named reference and it is not granted
781 * if the reap is already in progress. So we get
782 * the reference here exclusively and their can be
783 * no waiters. So there is no need for a wakeup
784 * after we are done. AlsO the reap frees the structure
785 * and the proc struct cannot be used for wakeups as well.
786 * It is safe to use p here as this is system reap
788 (void)reap_child_locked(pp
, p
, 1, 1, 1);
789 /* list lock dropped by reap_child_locked */
791 if (uth
->uu_lowpri_window
) {
793 * task is marked as a low priority I/O type and we've
794 * somehow picked up another throttle during exit processing...
795 * no need to throttle this thread since its going away
796 * but we do need to update our bookeeping w/r to throttled threads
798 throttle_lowpri_io(FALSE
);
809 * Description: Given a process from which all status information needed
810 * has already been extracted, if the process is a ptrace
811 * attach process, detach it and give it back to its real
812 * parent, else recover all resources remaining associated
815 * Parameters: proc_t parent Parent of process being reaped
816 * proc_t child Process to reap
818 * Returns: 0 Process was not reaped because it
819 * came from an attach
820 * 1 Process was reaped
823 reap_child_locked(proc_t parent
, proc_t child
, int deadparent
, int locked
, int droplock
)
825 proc_t trace_parent
= PROC_NULL
; /* Traced parent process, if tracing */
831 * If we got the child via a ptrace 'attach',
832 * we need to give it back to the old parent.
834 * Exception: someone who has been reparented to launchd before being
835 * ptraced can simply be reaped, refer to radar 5677288
837 * trace_parent == initproc -> away from launchd
838 * P_LIST_DEADPARENT -> came to launchd by reparenting
840 if (child
->p_oppid
&& (trace_parent
= proc_find(child
->p_oppid
))
841 && !((trace_parent
== initproc
) && (child
->p_lflag
& P_LIST_DEADPARENT
))) {
845 if (trace_parent
!= initproc
) {
847 * proc internal fileds and p_ucred usage safe
848 * here as child is dead and is not reaped or
851 proc_lock(trace_parent
);
852 trace_parent
->si_pid
= child
->p_pid
;
853 trace_parent
->si_status
= child
->p_xstat
;
854 trace_parent
->si_code
= CLD_CONTINUED
;
855 trace_parent
->si_uid
= child
->p_ucred
->cr_ruid
;
856 proc_unlock(trace_parent
);
858 proc_reparentlocked(child
, trace_parent
, 1, 0);
859 psignal(trace_parent
, SIGCHLD
);
861 wakeup((caddr_t
)trace_parent
);
862 child
->p_listflag
&= ~P_LIST_WAITING
;
863 wakeup(&child
->p_stat
);
865 proc_rele(trace_parent
);
866 if ((locked
== 1) && (droplock
== 0))
871 if (trace_parent
!= PROC_NULL
) {
872 proc_rele(trace_parent
);
875 proc_knote(child
, NOTE_REAP
);
876 proc_knote_drain(child
);
883 * If the parent is ignoring SIGCHLD, then POSIX requires
884 * us to not add the resource usage to the parent process -
885 * we are only going to hand it off to init to get reaped.
886 * We should contest the standard in this case on the basis
889 if (!(parent
->p_flag
& P_NOCLDWAIT
))
891 ruadd(&parent
->p_stats
->p_cru
, child
->p_ru
);
893 FREE_ZONE(child
->p_ru
, sizeof *child
->p_ru
, M_ZOMBIE
);
896 printf("Warning : lost p_ru for %s\n", child
->p_comm
);
899 AUDIT_SESSION_PROCEXIT(child
->p_ucred
);
902 * Decrement the count of procs running with this uid.
903 * p_ucred usage is safe here as it is an exited process.
904 * and refernce is dropped after these calls down below
905 * (locking protection is provided by list lock held in chgproccnt)
907 (void)chgproccnt(child
->p_ucred
->cr_ruid
, -1);
916 * Free up credentials.
918 if (IS_VALID_CRED(child
->p_ucred
)) {
919 kauth_cred_unref(&child
->p_ucred
);
922 /* XXXX Note NOT SAFE TO USE p_ucred from this point onwards */
925 * Finally finished with old proc entry.
926 * Unlink it from its process group and free it.
931 LIST_REMOVE(child
, p_list
); /* off zombproc */
932 parent
->p_childrencnt
--;
933 LIST_REMOVE(child
, p_sibling
);
934 /* If there are no more children wakeup parent */
935 if ((deadparent
!= 0) && (LIST_EMPTY(&parent
->p_children
)))
936 wakeup((caddr_t
)parent
); /* with list lock held */
937 child
->p_listflag
&= ~P_LIST_WAITING
;
938 wakeup(&child
->p_stat
);
940 /* Take it out of process hash */
941 LIST_REMOVE(child
, p_hash
);
942 child
->p_listflag
&= ~P_LIST_INHASH
;
943 proc_checkdeadrefs(child
);
948 #ifdef CONFIG_EMBEDDED
949 lck_mtx_destroy(&child
->p_mlock
, proc_lck_grp
);
950 lck_mtx_destroy(&child
->p_fdmlock
, proc_lck_grp
);
952 lck_mtx_destroy(&child
->p_dtrace_sprlock
, proc_lck_grp
);
954 lck_spin_destroy(&child
->p_slock
, proc_lck_grp
);
957 lck_mtx_destroy(&child
->p_mlock
, proc_mlock_grp
);
958 lck_mtx_destroy(&child
->p_fdmlock
, proc_fdmlock_grp
);
960 lck_mtx_destroy(&child
->p_dtrace_sprlock
, proc_lck_grp
);
962 lck_spin_destroy(&child
->p_slock
, proc_slock_grp
);
964 workqueue_destroy_lock(child
);
966 FREE_ZONE(child
, sizeof *child
, M_PROC
);
967 if ((locked
== 1) && (droplock
== 0))
975 wait1continue(int result
)
986 thread
= current_thread();
987 vt
= get_bsduthreadarg(thread
);
988 retval
= get_bsduthreadrval(thread
);
989 return(wait4(p
, (struct wait4_args
*)vt
, retval
));
993 wait4(proc_t q
, struct wait4_args
*uap
, int32_t *retval
)
995 __pthread_testcancel(1);
996 return(wait4_nocancel(q
, (struct wait4_nocancel_args
*)uap
, retval
));
1000 wait4_nocancel(proc_t q
, struct wait4_nocancel_args
*uap
, int32_t *retval
)
1007 AUDIT_ARG(pid
, uap
->pid
);
1010 uap
->pid
= -q
->p_pgrpid
;
1018 for (p
= q
->p_children
.lh_first
; p
!= 0; p
= p
->p_sibling
.le_next
) {
1019 if ( p
->p_sibling
.le_next
!= 0 )
1021 if (uap
->pid
!= WAIT_ANY
&&
1022 p
->p_pid
!= uap
->pid
&&
1023 p
->p_pgrpid
!= -(uap
->pid
))
1028 /* XXX This is racy because we don't get the lock!!!! */
1030 if (p
->p_listflag
& P_LIST_WAITING
) {
1031 (void)msleep(&p
->p_stat
, proc_list_mlock
, PWAIT
, "waitcoll", 0);
1034 p
->p_listflag
|= P_LIST_WAITING
; /* only allow single thread to wait() */
1037 if (p
->p_stat
== SZOMB
) {
1040 if ((error
= mac_proc_check_wait(q
, p
)) != 0)
1043 retval
[0] = p
->p_pid
;
1045 /* Legacy apps expect only 8 bits of status */
1046 status
= 0xffff & p
->p_xstat
; /* convert to int */
1047 error
= copyout((caddr_t
)&status
,
1054 if (p
->p_ru
== NULL
) {
1057 if (IS_64BIT_PROCESS(q
)) {
1058 struct user64_rusage my_rusage
;
1059 munge_user64_rusage(p
->p_ru
, &my_rusage
);
1060 error
= copyout((caddr_t
)&my_rusage
,
1062 sizeof (my_rusage
));
1065 struct user32_rusage my_rusage
;
1066 munge_user32_rusage(p
->p_ru
, &my_rusage
);
1067 error
= copyout((caddr_t
)&my_rusage
,
1069 sizeof (my_rusage
));
1072 /* information unavailable? */
1077 /* Conformance change for 6577252.
1078 * When SIGCHLD is blocked and wait() returns because the status
1079 * of a child process is available and there are no other
1080 * children processes, then any pending SIGCHLD signal is cleared.
1082 if ( sibling_count
== 0 ) {
1083 int mask
= sigmask(SIGCHLD
);
1084 uthread_t uth
= (struct uthread
*)get_bsdthread_info(current_thread());
1086 if ( (uth
->uu_sigmask
& mask
) != 0 ) {
1087 /* we are blocking SIGCHLD signals. clear any pending SIGCHLD.
1088 * This locking looks funny but it is protecting access to the
1089 * thread via p_uthlist.
1092 uth
->uu_siglist
&= ~mask
; /* clear pending signal */
1098 (void)reap_child_locked(q
, p
, 0, 0, 0);
1102 if (p
->p_stat
== SSTOP
&& (p
->p_lflag
& P_LWAITED
) == 0 &&
1103 (p
->p_lflag
& P_LTRACED
|| uap
->options
& WUNTRACED
)) {
1106 if ((error
= mac_proc_check_wait(q
, p
)) != 0)
1110 p
->p_lflag
|= P_LWAITED
;
1112 retval
[0] = p
->p_pid
;
1114 status
= W_STOPCODE(p
->p_xstat
);
1115 error
= copyout((caddr_t
)&status
,
1123 * If we are waiting for continued processses, and this
1124 * process was continued
1126 if ((uap
->options
& WCONTINUED
) &&
1127 (p
->p_flag
& P_CONTINUED
)) {
1130 if ((error
= mac_proc_check_wait(q
, p
)) != 0)
1134 /* Prevent other process for waiting for this event */
1135 OSBitAndAtomic(~((uint32_t)P_CONTINUED
), &p
->p_flag
);
1136 retval
[0] = p
->p_pid
;
1138 status
= W_STOPCODE(SIGCONT
);
1139 error
= copyout((caddr_t
)&status
,
1146 p
->p_listflag
&= ~P_LIST_WAITING
;
1149 /* list lock is held when we get here any which way */
1155 if (uap
->options
& WNOHANG
) {
1161 if ((error
= msleep0((caddr_t
)q
, proc_list_mlock
, PWAIT
| PCATCH
| PDROP
, "wait", 0, wait1continue
)))
1167 p
->p_listflag
&= ~P_LIST_WAITING
;
1175 waitidcontinue(int result
)
1184 thread
= current_thread();
1185 vt
= get_bsduthreadarg(thread
);
1186 retval
= get_bsduthreadrval(thread
);
1187 return(waitid(current_proc(), (struct waitid_args
*)vt
, retval
));
1191 * Description: Suspend the calling thread until one child of the process
1192 * containing the calling thread changes state.
1194 * Parameters: uap->idtype one of P_PID, P_PGID, P_ALL
1195 * uap->id pid_t or gid_t or ignored
1196 * uap->infop Address of signinfo_t struct in
1197 * user space into which to return status
1198 * uap->options flag values
1200 * Returns: 0 Success
1201 * !0 Error returning status to user space
1204 waitid(proc_t q
, struct waitid_args
*uap
, int32_t *retval
)
1206 __pthread_testcancel(1);
1207 return(waitid_nocancel(q
, (struct waitid_nocancel_args
*)uap
, retval
));
1211 waitid_nocancel(proc_t q
, struct waitid_nocancel_args
*uap
, __unused
int32_t *retval
)
1213 user_siginfo_t collect64
; /* siginfo data to return to caller */
1220 * Forced validation of options for T.waitpid 21; should be a TSD!
1221 * This will pass the test, but note that we have more bits than the
1222 * standard specifies that we will allow in, in this case. The test
1223 * passes because they light all the bits, not just the ones we allow,
1224 * and so the following check returns EINVAL like the test wants.
1226 if (((uap
->options
& (WNOHANG
|WNOWAIT
|WCONTINUED
|WUNTRACED
|WSTOPPED
|WEXITED
)) != uap
->options
) ||
1227 (uap
->options
== 0))
1228 return (EINVAL
); /* bits set that aren't recognized */
1231 * Overly critical options checking, per POSIX
1233 switch(uap
->idtype
) {
1234 case P_PID
: /* child with process ID equal to... */
1235 case P_PGID
: /* child with process group ID equal to... */
1236 if (((int)uap
->id
) < 0)
1239 case P_ALL
: /* any child */
1247 for (p
= q
->p_children
.lh_first
; p
!= 0; p
= p
->p_sibling
.le_next
) {
1248 switch(uap
->idtype
) {
1249 case P_PID
: /* child with process ID equal to... */
1250 if (p
->p_pid
!= (pid_t
)uap
->id
)
1253 case P_PGID
: /* child with process group ID equal to... */
1254 if (p
->p_pgrpid
!= (pid_t
)uap
->id
)
1257 case P_ALL
: /* any child */
1261 /* XXX This is racy because we don't get the lock!!!! */
1264 * Wait collision; go to sleep and restart; used to maintain
1265 * the single return for waited process guarantee.
1267 if (p
->p_listflag
& P_LIST_WAITING
) {
1268 (void)msleep(&p
->p_stat
, proc_list_mlock
, PWAIT
, "waitidcoll", 0);
1271 p
->p_listflag
|= P_LIST_WAITING
; /* mark busy */
1276 * Types of processes we are interested in
1278 * XXX Don't know what to do for WCONTINUED?!?
1281 case SZOMB
: /* Exited */
1282 if (!(uap
->options
& WEXITED
))
1285 /* drop the lock and the thread is going to return */
1288 /* Collect "siginfo" information for caller */
1289 collect64
.si_signo
= SIGCHLD
;
1290 collect64
.si_code
= 0;
1291 collect64
.si_errno
= 0;
1292 collect64
.si_pid
= 0;
1293 collect64
.si_uid
= 0;
1294 collect64
.si_addr
= 0;
1295 collect64
.si_status
= WEXITSTATUS(p
->p_xstat
);
1296 collect64
.si_band
= 0;
1298 if (IS_64BIT_PROCESS(p
)) {
1299 user64_siginfo_t sinfo64
;
1301 siginfo_user_to_user64(&collect64
, &sinfo64
);
1303 error
= copyout((caddr_t
)&sinfo64
,
1307 user32_siginfo_t sinfo32
;
1309 siginfo_user_to_user32(&collect64
, &sinfo32
);
1311 error
= copyout((caddr_t
)&sinfo32
,
1315 /* information unavailable? */
1319 /* Prevent other process for waiting for this event? */
1320 if (!(uap
->options
& WNOWAIT
)) {
1322 (void)reap_child_locked(q
, p
, 0, 0, 0);
1325 p
->p_listflag
&= ~P_LIST_WAITING
;
1331 case SSTOP
: /* Stopped */
1333 * If we are not interested in stopped processes, then
1336 if (!(uap
->options
& WSTOPPED
))
1340 * If someone has already waited it, we lost a race
1341 * to be the one to return status.
1343 if ((p
->p_lflag
& P_LWAITED
) != 0)
1346 /* drop the lock and the thread is going to return */
1349 /* Collect "siginfo" information for caller */
1350 collect64
.si_signo
= SIGCHLD
;
1351 collect64
.si_code
= 0;
1352 collect64
.si_errno
= 0;
1353 collect64
.si_pid
= 0;
1354 collect64
.si_uid
= 0;
1355 collect64
.si_addr
= 0;
1357 collect64
.si_status
= p
->p_xstat
;
1359 collect64
.si_band
= 0;
1361 if (IS_64BIT_PROCESS(p
)) {
1362 user64_siginfo_t sinfo64
;
1364 siginfo_user_to_user64(&collect64
, &sinfo64
);
1366 error
= copyout((caddr_t
)&sinfo64
,
1370 user32_siginfo_t sinfo32
;
1372 siginfo_user_to_user32(&collect64
, &sinfo32
);
1374 error
= copyout((caddr_t
)&sinfo32
,
1378 /* information unavailable? */
1382 /* Prevent other process for waiting for this event? */
1383 if (!(uap
->options
& WNOWAIT
)) {
1385 p
->p_lflag
|= P_LWAITED
;
1392 default: /* All others */
1393 /* ...meaning Continued */
1394 if (!(uap
->options
& WCONTINUED
))
1398 * If the flag isn't set, then this process has not
1399 * been stopped and continued, or the status has
1400 * already been reaped by another caller of waitid().
1402 if ((p
->p_flag
& P_CONTINUED
) == 0)
1405 /* drop the lock and the thread is going to return */
1408 /* Collect "siginfo" information for caller */
1410 collect64
.si_signo
= SIGCHLD
;
1411 collect64
.si_code
= CLD_CONTINUED
;
1412 collect64
.si_errno
= 0;
1413 collect64
.si_pid
= p
->p_contproc
;
1414 collect64
.si_uid
= 0;
1415 collect64
.si_addr
= 0;
1416 collect64
.si_status
= p
->p_xstat
;
1417 collect64
.si_band
= 0;
1420 if (IS_64BIT_PROCESS(p
)) {
1421 user64_siginfo_t sinfo64
;
1423 siginfo_user_to_user64(&collect64
, &sinfo64
);
1425 error
= copyout((caddr_t
)&sinfo64
,
1429 user32_siginfo_t sinfo32
;
1431 siginfo_user_to_user32(&collect64
, &sinfo32
);
1433 error
= copyout((caddr_t
)&sinfo32
,
1437 /* information unavailable? */
1441 /* Prevent other process for waiting for this event? */
1442 if (!(uap
->options
& WNOWAIT
)) {
1443 OSBitAndAtomic(~((uint32_t)P_CONTINUED
), &p
->p_flag
);
1449 /* LIST LOCK IS HELD HERE */
1450 /* Not a process we are interested in; go on to next child */
1452 p
->p_listflag
&= ~P_LIST_WAITING
;
1456 /* list lock is always held */
1457 /* No child processes that could possibly satisfy the request? */
1463 if (uap
->options
& WNOHANG
) {
1468 if ((error
= msleep0((caddr_t
)q
, proc_list_mlock
, PWAIT
| PCATCH
| PDROP
, "waitid", 0, waitidcontinue
)))
1474 p
->p_listflag
&= ~P_LIST_WAITING
;
1481 * make process 'parent' the new parent of process 'child'.
1484 proc_reparentlocked(proc_t child
, proc_t parent
, int cansignal
, int locked
)
1486 proc_t oldparent
= PROC_NULL
;
1488 if (child
->p_pptr
== parent
)
1494 oldparent
= child
->p_pptr
;
1495 #if __PROC_INTERNAL_DEBUG
1496 if (oldparent
== PROC_NULL
)
1497 panic("proc_reparent: process %p does not have a parent\n", child
);
1500 LIST_REMOVE(child
, p_sibling
);
1501 #if __PROC_INTERNAL_DEBUG
1502 if (oldparent
->p_childrencnt
== 0)
1503 panic("process children count already 0\n");
1505 oldparent
->p_childrencnt
--;
1506 #if __PROC_INTERNAL_DEBUG1
1507 if (oldparent
->p_childrencnt
< 0)
1508 panic("process children count -ve\n");
1510 LIST_INSERT_HEAD(&parent
->p_children
, child
, p_sibling
);
1511 parent
->p_childrencnt
++;
1512 child
->p_pptr
= parent
;
1513 child
->p_ppid
= parent
->p_pid
;
1517 if ((cansignal
!= 0) && (initproc
== parent
) && (child
->p_stat
== SZOMB
))
1518 psignal(initproc
, SIGCHLD
);
1524 * Exit: deallocate address space and other resources, change proc state
1525 * to zombie, and unlink proc from allproc and parent's lists. Save exit
1526 * status and rusage for wait(). Check for child processes and orphan them.
1530 vfork_exit(proc_t p
, int rv
)
1532 vfork_exit_internal(p
, rv
, 0);
1536 vfork_exit_internal(proc_t p
, int rv
, int forceexit
)
1538 thread_t self
= current_thread();
1540 struct task
*task
= p
->task
;
1545 * If a thread in this task has already
1546 * called exit(), then halt any others
1550 ut
= get_bsdthread_info(self
);
1554 if ((p
->p_lflag
& P_LPEXIT
) == P_LPEXIT
) {
1556 * This happens when a parent exits/killed and vfork is in progress
1557 * other threads. But shutdown code for ex has already called exit1()
1562 p
->p_lflag
|= (P_LEXIT
| P_LPEXIT
);
1565 if (forceexit
== 0) {
1567 * parent of a vfork child has already called exit() and the
1568 * thread that has vfork in proress terminates. So there is no
1569 * separate address space here and it has already been marked for
1570 * termination. This was never covered before and could cause problems
1571 * if we block here for outside code.
1573 /* Notify the perf server */
1574 (void)sys_perf_notify(self
, p
->p_pid
);
1578 * Remove proc from allproc queue and from pidhash chain.
1579 * Need to do this before we do anything that can block.
1580 * Not doing causes things like mount() find this on allproc
1581 * in partially cleaned state.
1586 LIST_REMOVE(p
, p_list
);
1587 LIST_INSERT_HEAD(&zombproc
, p
, p_list
); /* Place onto zombproc. */
1588 /* will not be visible via proc_find */
1589 p
->p_listflag
|= P_LIST_EXITED
;
1595 p
->p_lflag
&= ~(P_LTRACED
| P_LPPWAIT
);
1596 p
->p_sigignore
= ~0;
1600 if (thread_call_cancel(p
->p_rcall
))
1603 while (p
->p_ractive
> 0) {
1612 thread_call_free(p
->p_rcall
);
1621 vproc_exit(proc_t p
)
1628 struct task
*task
= p
->task
;
1631 struct session
*sessp
;
1633 /* XXX Zombie allocation may fail, in which case stats get lost */
1634 MALLOC_ZONE(p
->p_ru
, struct rusage
*,
1635 sizeof (*p
->p_ru
), M_ZOMBIE
, M_WAITOK
);
1641 * Close open files and release open-file table.
1646 sessp
= proc_session(p
);
1647 if (SESS_LEADER(p
, sessp
)) {
1649 if (sessp
->s_ttyvp
!= NULLVP
) {
1650 struct vnode
*ttyvp
;
1652 struct vfs_context context
;
1656 * Controlling process.
1657 * Signal foreground pgrp,
1658 * drain controlling terminal
1659 * and revoke access to controlling terminal.
1661 tp
= SESSION_TP(sessp
);
1663 if ((tp
!= TTY_NULL
) && (tp
->t_session
== sessp
)) {
1664 tty_pgsignal(tp
, SIGHUP
, 1);
1669 * The tty could have been revoked
1673 session_lock(sessp
);
1674 /* reget in case of race */
1675 tp
= SESSION_TP(sessp
);
1676 ttyvp
= sessp
->s_ttyvp
;
1677 ttyvid
= sessp
->s_ttyvid
;
1678 sessp
->s_ttyvp
= NULL
;
1679 sessp
->s_ttyvid
= 0;
1680 sessp
->s_ttyp
= TTY_NULL
;
1681 sessp
->s_ttypgrpid
= NO_PID
;
1682 session_unlock(sessp
);
1684 if ((ttyvp
!= NULLVP
) && (vnode_getwithvid(ttyvp
, ttyvid
) == 0)) {
1685 context
.vc_thread
= proc_thread(p
); /* XXX */
1686 context
.vc_ucred
= kauth_cred_proc_ref(p
);
1687 VNOP_REVOKE(ttyvp
, REVOKEALL
, &context
);
1689 kauth_cred_unref(&context
.vc_ucred
);
1692 session_lock(sessp
);
1693 ttyvp
= sessp
->s_ttyvp
;
1694 sessp
->s_ttyvp
= NULL
;
1695 sessp
->s_ttyvid
= 0;
1696 sessp
->s_ttyp
= TTY_NULL
;
1697 sessp
->s_ttypgrpid
= NO_PID
;
1698 session_unlock(sessp
);
1703 * s_ttyp is not zero'd; we use this to indicate
1704 * that the session once had a controlling terminal.
1705 * (for logging and informational purposes)
1709 session_lock(sessp
);
1710 sessp
->s_leader
= NULL
;
1711 session_unlock(sessp
);
1713 session_rele(sessp
);
1719 p
->p_rlimit
[RLIMIT_FSIZE
].rlim_cur
= RLIM_INFINITY
;
1722 proc_childdrainstart(p
);
1723 while ((q
= p
->p_children
.lh_first
) != NULL
) {
1724 q
->p_listflag
|= P_LIST_DEADPARENT
;
1725 if (q
->p_stat
== SZOMB
) {
1727 panic("parent child linkage broken");
1728 /* check for lookups by zomb sysctl */
1729 while ((q
->p_listflag
& P_LIST_WAITING
) == P_LIST_WAITING
) {
1730 msleep(&q
->p_stat
, proc_list_mlock
, PWAIT
, "waitcoll", 0);
1732 q
->p_listflag
|= P_LIST_WAITING
;
1734 * This is a named reference and it is not granted
1735 * if the reap is already in progress. So we get
1736 * the reference here exclusively and their can be
1737 * no waiters. So there is no need for a wakeup
1738 * after we are done. AlsO the reap frees the structure
1739 * and the proc struct cannot be used for wakeups as well.
1740 * It is safe to use q here as this is system reap
1742 (void)reap_child_locked(p
, q
, 1, 1, 0);
1744 proc_reparentlocked(q
, initproc
, 0, 1);
1746 * Traced processes are killed
1747 * since their existence means someone is messing up.
1749 if (q
->p_lflag
& P_LTRACED
) {
1752 q
->p_lflag
&= ~P_LTRACED
;
1753 if (q
->sigwait_thread
) {
1756 * The sigwait_thread could be stopped at a
1757 * breakpoint. Wake it up to kill.
1758 * Need to do this as it could be a thread which is not
1759 * the first thread in the task. So any attempts to kill
1760 * the process would result into a deadlock on q->sigwait.
1762 thread_resume((thread_t
)q
->sigwait_thread
);
1763 clear_wait(q
->sigwait_thread
, THREAD_INTERRUPTED
);
1764 threadsignal((thread_t
)q
->sigwait_thread
, SIGKILL
, 0);
1768 psignal(q
, SIGKILL
);
1774 proc_childdrainend(p
);
1778 * Release reference to text vnode
1782 if (tvp
!= NULLVP
) {
1787 * Save exit status and final rusage info, adding in child rusage
1788 * info and self times. If we were unable to allocate a zombie
1789 * structure, this information is lost.
1791 /* No need for locking here as no one than this thread can access this */
1792 if (p
->p_ru
!= NULL
) {
1793 *p
->p_ru
= p
->p_stats
->p_ru
;
1794 timerclear(&p
->p_ru
->ru_utime
);
1795 timerclear(&p
->p_ru
->ru_stime
);
1799 task_basic_info_data_t tinfo
;
1800 task_thread_times_info_data_t ttimesinfo
;
1801 int task_info_stuff
, task_ttimes_stuff
;
1802 struct timeval ut
,st
;
1804 task_info_stuff
= TASK_BASIC_INFO_COUNT
;
1805 task_info(task
, TASK_BASIC_INFO
,
1806 &tinfo
, &task_info_stuff
);
1807 p
->p_ru
->ru_utime
.tv_sec
= tinfo
.user_time
.seconds
;
1808 p
->p_ru
->ru_utime
.tv_usec
= tinfo
.user_time
.microseconds
;
1809 p
->p_ru
->ru_stime
.tv_sec
= tinfo
.system_time
.seconds
;
1810 p
->p_ru
->ru_stime
.tv_usec
= tinfo
.system_time
.microseconds
;
1812 task_ttimes_stuff
= TASK_THREAD_TIMES_INFO_COUNT
;
1813 task_info(task
, TASK_THREAD_TIMES_INFO
,
1814 &ttimesinfo
, &task_ttimes_stuff
);
1816 ut
.tv_sec
= ttimesinfo
.user_time
.seconds
;
1817 ut
.tv_usec
= ttimesinfo
.user_time
.microseconds
;
1818 st
.tv_sec
= ttimesinfo
.system_time
.seconds
;
1819 st
.tv_usec
= ttimesinfo
.system_time
.microseconds
;
1820 timeradd(&ut
,&p
->p_ru
->ru_utime
,&p
->p_ru
->ru_utime
);
1821 timeradd(&st
,&p
->p_ru
->ru_stime
,&p
->p_ru
->ru_stime
);
1825 ruadd(p
->p_ru
, &p
->p_stats
->p_cru
);
1829 * Free up profiling buffers.
1832 struct uprof
*p0
= &p
->p_stats
->p_prof
, *p1
, *pn
;
1838 for (; p1
!= NULL
; p1
= pn
) {
1840 kfree(p1
, sizeof *p1
);
1845 * Other substructures are freed from wait().
1847 FREE_ZONE(p
->p_stats
, sizeof *p
->p_stats
, M_PSTATS
);
1850 FREE_ZONE(p
->p_sigacts
, sizeof *p
->p_sigacts
, M_SIGACTS
);
1851 p
->p_sigacts
= NULL
;
1853 proc_limitdrop(p
, 1);
1857 * Finish up by terminating the task
1858 * and halt this thread (only if a
1859 * member of the task exiting).
1861 p
->task
= TASK_NULL
;
1864 * Notify parent that we're gone.
1866 pp
= proc_parent(p
);
1867 if ((p
->p_listflag
& P_LIST_DEADPARENT
) == 0) {
1868 if (pp
!= initproc
) {
1870 pp
->si_pid
= p
->p_pid
;
1871 pp
->si_status
= p
->p_xstat
;
1872 pp
->si_code
= CLD_EXITED
;
1874 * p_ucred usage is safe as it is an exiting process
1875 * and reference is dropped in reap
1877 pp
->si_uid
= p
->p_ucred
->cr_ruid
;
1880 /* mark as a zombie */
1881 /* mark as a zombie */
1882 /* No need to take proc lock as all refs are drained and
1883 * no one except parent (reaping ) can look at this.
1884 * The write is to an int and is coherent. Also parent is
1885 * keyed off of list lock for reaping
1889 psignal(pp
, SIGCHLD
);
1891 /* and now wakeup the parent */
1893 wakeup((caddr_t
)pp
);
1898 /* check for lookups by zomb sysctl */
1899 while ((p
->p_listflag
& P_LIST_WAITING
) == P_LIST_WAITING
) {
1900 msleep(&p
->p_stat
, proc_list_mlock
, PWAIT
, "waitcoll", 0);
1902 p
->p_listflag
|= P_LIST_WAITING
;
1904 * This is a named reference and it is not granted
1905 * if the reap is already in progress. So we get
1906 * the reference here exclusively and their can be
1907 * no waiters. So there is no need for a wakeup
1908 * after we are done. AlsO the reap frees the structure
1909 * and the proc struct cannot be used for wakeups as well.
1910 * It is safe to use p here as this is system reap
1912 (void)reap_child_locked(pp
, p
, 0, 1, 1);
1913 /* list lock dropped by reap_child_locked */
1921 * LP64 support - long is 64 bits if we are dealing with a 64 bit user
1922 * process. We munge the kernel version of rusage into the
1925 __private_extern__
void
1926 munge_user64_rusage(struct rusage
*a_rusage_p
, struct user64_rusage
*a_user_rusage_p
)
1928 /* timeval changes size, so utime and stime need special handling */
1929 a_user_rusage_p
->ru_utime
.tv_sec
= a_rusage_p
->ru_utime
.tv_sec
;
1930 a_user_rusage_p
->ru_utime
.tv_usec
= a_rusage_p
->ru_utime
.tv_usec
;
1931 a_user_rusage_p
->ru_stime
.tv_sec
= a_rusage_p
->ru_stime
.tv_sec
;
1932 a_user_rusage_p
->ru_stime
.tv_usec
= a_rusage_p
->ru_stime
.tv_usec
;
1934 * everything else can be a direct assign, since there is no loss
1935 * of precision implied boing 32->64.
1937 a_user_rusage_p
->ru_maxrss
= a_rusage_p
->ru_maxrss
;
1938 a_user_rusage_p
->ru_ixrss
= a_rusage_p
->ru_ixrss
;
1939 a_user_rusage_p
->ru_idrss
= a_rusage_p
->ru_idrss
;
1940 a_user_rusage_p
->ru_isrss
= a_rusage_p
->ru_isrss
;
1941 a_user_rusage_p
->ru_minflt
= a_rusage_p
->ru_minflt
;
1942 a_user_rusage_p
->ru_majflt
= a_rusage_p
->ru_majflt
;
1943 a_user_rusage_p
->ru_nswap
= a_rusage_p
->ru_nswap
;
1944 a_user_rusage_p
->ru_inblock
= a_rusage_p
->ru_inblock
;
1945 a_user_rusage_p
->ru_oublock
= a_rusage_p
->ru_oublock
;
1946 a_user_rusage_p
->ru_msgsnd
= a_rusage_p
->ru_msgsnd
;
1947 a_user_rusage_p
->ru_msgrcv
= a_rusage_p
->ru_msgrcv
;
1948 a_user_rusage_p
->ru_nsignals
= a_rusage_p
->ru_nsignals
;
1949 a_user_rusage_p
->ru_nvcsw
= a_rusage_p
->ru_nvcsw
;
1950 a_user_rusage_p
->ru_nivcsw
= a_rusage_p
->ru_nivcsw
;
1953 /* For a 64-bit kernel and 32-bit userspace, munging may be needed */
1954 __private_extern__
void
1955 munge_user32_rusage(struct rusage
*a_rusage_p
, struct user32_rusage
*a_user_rusage_p
)
1957 /* timeval changes size, so utime and stime need special handling */
1958 a_user_rusage_p
->ru_utime
.tv_sec
= a_rusage_p
->ru_utime
.tv_sec
;
1959 a_user_rusage_p
->ru_utime
.tv_usec
= a_rusage_p
->ru_utime
.tv_usec
;
1960 a_user_rusage_p
->ru_stime
.tv_sec
= a_rusage_p
->ru_stime
.tv_sec
;
1961 a_user_rusage_p
->ru_stime
.tv_usec
= a_rusage_p
->ru_stime
.tv_usec
;
1963 * everything else can be a direct assign. We currently ignore
1964 * the loss of precision
1966 a_user_rusage_p
->ru_maxrss
= a_rusage_p
->ru_maxrss
;
1967 a_user_rusage_p
->ru_ixrss
= a_rusage_p
->ru_ixrss
;
1968 a_user_rusage_p
->ru_idrss
= a_rusage_p
->ru_idrss
;
1969 a_user_rusage_p
->ru_isrss
= a_rusage_p
->ru_isrss
;
1970 a_user_rusage_p
->ru_minflt
= a_rusage_p
->ru_minflt
;
1971 a_user_rusage_p
->ru_majflt
= a_rusage_p
->ru_majflt
;
1972 a_user_rusage_p
->ru_nswap
= a_rusage_p
->ru_nswap
;
1973 a_user_rusage_p
->ru_inblock
= a_rusage_p
->ru_inblock
;
1974 a_user_rusage_p
->ru_oublock
= a_rusage_p
->ru_oublock
;
1975 a_user_rusage_p
->ru_msgsnd
= a_rusage_p
->ru_msgsnd
;
1976 a_user_rusage_p
->ru_msgrcv
= a_rusage_p
->ru_msgrcv
;
1977 a_user_rusage_p
->ru_nsignals
= a_rusage_p
->ru_nsignals
;
1978 a_user_rusage_p
->ru_nvcsw
= a_rusage_p
->ru_nvcsw
;
1979 a_user_rusage_p
->ru_nivcsw
= a_rusage_p
->ru_nivcsw
;