]> git.saurik.com Git - apple/xnu.git/blob - bsd/kern/kern_exit.c
xnu-1504.3.12.tar.gz
[apple/xnu.git] / bsd / kern / kern_exit.c
1 /*
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /* Copyright (c) 1995, 1997 Apple Computer, Inc. All Rights Reserved */
29 /*
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.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
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.
53 *
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
64 * SUCH DAMAGE.
65 *
66 * @(#)kern_exit.c 8.7 (Berkeley) 2/12/94
67 */
68 /*
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,
72 * Version 2.0.
73 */
74
75 #include <machine/reg.h>
76 #include <machine/psl.h>
77
78 #include "compat_43.h"
79
80 #include <sys/param.h>
81 #include <sys/systm.h>
82 #include <sys/ioctl.h>
83 #include <sys/proc_internal.h>
84 #include <sys/proc.h>
85 #include <sys/kauth.h>
86 #include <sys/tty.h>
87 #include <sys/time.h>
88 #include <sys/resource.h>
89 #include <sys/kernel.h>
90 #include <sys/wait.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>
97 #include <sys/user.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 */
103 #if SYSV_SHM
104 #include <sys/shm_internal.h> /* shmexit */
105 #endif
106 #include <sys/acct.h> /* acct_process */
107
108 #include <security/audit/audit.h>
109 #include <bsm/audit_kevents.h>
110
111 #include <mach/mach_types.h>
112
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>
120 #if CONFIG_DTRACE
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);
125
126 #include <sys/dtrace_ptss.h>
127 #endif
128
129 #if CONFIG_MACF
130 #include <security/mac.h>
131 #include <sys/syscall.h>
132 #endif
133
134 #include <mach/mach_types.h>
135 #include <mach/task.h>
136 #include <mach/thread_act.h>
137
138 #include <sys/sdt.h>
139
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);
147
148 /*
149 * Things which should have prototypes in headers, but don't
150 */
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 *);
160 void delay(int);
161
162 /*
163 * NOTE: Source and target may *NOT* overlap!
164 * XXX Should share code with bsd/dev/ppc/unix_signal.c
165 */
166 static void
167 siginfo_user_to_user32(user_siginfo_t *in, user32_siginfo_t *out)
168 {
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 */
179 }
180
181 static void
182 siginfo_user_to_user64(user_siginfo_t *in, user64_siginfo_t *out)
183 {
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 */
194 }
195
196 /*
197 * exit --
198 * Death of process.
199 */
200 void
201 exit(proc_t p, struct exit_args *uap, int *retval)
202 {
203 exit1(p, W_EXITCODE(uap->rval, 0), retval);
204
205 /* drop funnel before we return */
206 thread_exception_return();
207 /* NOTREACHED */
208 while (TRUE)
209 thread_block(THREAD_CONTINUE_NULL);
210 /* NOTREACHED */
211 }
212
213 /*
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.
217 */
218 int
219 exit1(proc_t p, int rv, int *retval)
220 {
221 thread_t self = current_thread();
222 struct task *task = p->task;
223 struct uthread *ut;
224
225 /*
226 * If a thread in this task has already
227 * called exit(), then halt any others
228 * right here.
229 */
230
231 ut = get_bsdthread_info(self);
232 if (ut->uu_flag & UT_VFORK) {
233 vfork_exit(p, rv);
234 vfork_return(p , retval, p->p_pid);
235 unix_syscall_return(0);
236 /* NOT REACHED */
237 }
238
239 /*
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().
243 */
244
245 /*
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.
250 */
251 AUDIT_ARG(exit, WEXITSTATUS(rv), 0);
252 AUDIT_SYSCALL_EXIT(SYS_exit, p, ut, 0); /* Exit is always successfull */
253
254 DTRACE_PROC1(exit, int, CLD_EXITED);
255
256 proc_lock(p);
257 while (p->exit_thread != self) {
258 if (sig_try_locked(p) <= 0) {
259 if (get_threadtask(self) != task) {
260 proc_unlock(p);
261 return(0);
262 }
263 proc_unlock(p);
264 thread_terminate(self);
265 thread_exception_return();
266 /* NOTREACHED */
267 }
268 sig_lock_to_exit(p);
269 }
270 if (p == initproc) {
271 proc_unlock(p);
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' ?
276 p->p_comm :
277 "launchd"),
278 init_task_failure_data);
279 }
280
281 p->p_lflag |= P_LEXIT;
282 p->p_xstat = rv;
283
284 proc_unlock(p);
285
286 proc_prepareexit(p, rv);
287
288 /* task terminate will call proc_terminate and that cleans it up */
289 task_terminate_internal(task);
290
291 return(0);
292 }
293
294 void
295 proc_prepareexit(proc_t p, int rv)
296 {
297 mach_exception_data_type_t code, subcode;
298 struct uthread *ut;
299 thread_t self = current_thread();
300 ut = get_bsdthread_info(self);
301
302 /* If a core should be generated, notify crash reporter */
303 if (hassigprop(WTERMSIG(rv), SA_CORE)) {
304 /*
305 * Workaround for processes checking up on PT_DENY_ATTACH:
306 * should be backed out post-Leopard (details in 5431025).
307 */
308 if ((SIGSEGV == WTERMSIG(rv)) &&
309 (p->p_pptr->p_lflag & P_LNOATTACH)) {
310 goto skipcheck;
311 }
312
313 /*
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.
317 */
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);
323 }
324
325 skipcheck:
326 /* Notify the perf server */
327 (void)sys_perf_notify(self, p->p_pid);
328
329 /*
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.
334 */
335
336 proc_list_lock();
337
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;
342
343 proc_list_unlock();
344
345
346 #ifdef PGINPROF
347 vmsizmon();
348 #endif
349 /*
350 * If parent is waiting for us to exit or exec,
351 * P_LPPWAIT is set; we will wakeup the parent below.
352 */
353 proc_lock(p);
354 p->p_lflag &= ~(P_LTRACED | P_LPPWAIT);
355 p->p_sigignore = ~(sigcantmask);
356 ut->uu_siglist = 0;
357 proc_unlock(p);
358 }
359
360 void
361 proc_exit(proc_t p)
362 {
363 proc_t q;
364 proc_t pp;
365 struct task *task = p->task;
366 vnode_t tvp = NULLVP;
367 struct pgrp * pg;
368 struct session *sessp;
369 struct uthread * uth;
370 pid_t pid;
371 int exitval;
372
373 /* This can happen if thread_terminate of the single thread
374 * process
375 */
376
377 uth = (struct uthread *)get_bsdthread_info(current_thread());
378
379 proc_lock(p);
380 if( !(p->p_lflag & P_LEXIT)) {
381 p->p_lflag |= P_LEXIT;
382 proc_unlock(p);
383 proc_prepareexit(p, 0);
384 proc_lock(p);
385 }
386
387 p->p_lflag |= P_LPEXIT;
388 proc_unlock(p);
389 pid = p->p_pid;
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);
393
394 #if CONFIG_DTRACE
395 /*
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.
402 */
403 dtrace_lazy_dofs_destroy(p);
404
405 /*
406 * Clean up any DTrace helper actions or probes for the process.
407 */
408 if (p->p_dtrace_helpers != NULL) {
409 (*dtrace_helpers_cleanup)(p);
410 }
411
412 /*
413 * Clean up any DTrace probes associated with this process.
414 */
415 /*
416 * APPLE NOTE: We release ptss pages/entries in dtrace_fasttrap_exit_ptr(),
417 * call this after dtrace_helpers_cleanup()
418 */
419 proc_lock(p);
420 if (p->p_dtrace_probes && dtrace_fasttrap_exit_ptr) {
421 (*dtrace_fasttrap_exit_ptr)(p);
422 }
423 proc_unlock(p);
424 #endif
425
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);
429
430 /*
431 * need to cancel async IO requests that can be cancelled and wait for those
432 * already active. MAY BLOCK!
433 */
434
435 proc_refdrain(p);
436
437 workqueue_exit(p);
438
439 _aio_exit( p );
440
441 /*
442 * Close open files and release open-file table.
443 * This may block!
444 */
445 fdfree(p);
446
447 if (uth->uu_lowpri_window) {
448 /*
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
454 */
455 throttle_lowpri_io(FALSE);
456 }
457
458 #if SYSV_SHM
459 /* Close ref SYSV Shared memory*/
460 if (p->vm_shm)
461 shmexit(p);
462 #endif
463 #if SYSV_SEM
464 /* Release SYSV semaphores */
465 semexit(p);
466 #endif
467
468 #if PSYNCH
469 pth_proc_hashdelete(p);
470 #endif /* PSYNCH */
471
472 sessp = proc_session(p);
473 if (SESS_LEADER(p, sessp)) {
474
475 if (sessp->s_ttyvp != NULLVP) {
476 struct vnode *ttyvp;
477 int ttyvid;
478 struct vfs_context context;
479 struct tty * tp;
480
481
482 /*
483 * Controlling process.
484 * Signal foreground pgrp,
485 * drain controlling terminal
486 * and revoke access to controlling terminal.
487 */
488 tp = SESSION_TP(sessp);
489
490 if ((tp != TTY_NULL) && (tp->t_session == sessp)) {
491 tty_pgsignal(tp, SIGHUP, 1);
492
493 session_lock(sessp);
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;
499 sessp->s_ttyvid = 0;
500 sessp->s_ttyp = TTY_NULL;
501 sessp->s_ttypgrpid = NO_PID;
502 session_unlock(sessp);
503
504 if ((ttyvp != NULLVP) && (vnode_getwithvid(ttyvp, ttyvid) == 0)) {
505
506 if (tp != TTY_NULL) {
507 tty_lock(tp);
508 (void) ttywait(tp);
509 tty_unlock(tp);
510 }
511 context.vc_thread = proc_thread(p); /* XXX */
512 context.vc_ucred = kauth_cred_proc_ref(p);
513 VNOP_REVOKE(ttyvp, REVOKEALL, &context);
514 vnode_put(ttyvp);
515 kauth_cred_unref(&context.vc_ucred);
516 }
517 } else {
518 session_lock(sessp);
519 /* reget potentially tp due to revocation */
520 tp = SESSION_TP(sessp);
521 ttyvp = sessp->s_ttyvp;
522 sessp->s_ttyvp = NULLVP;
523 sessp->s_ttyvid = 0;
524 sessp->s_ttyp = TTY_NULL;
525 sessp->s_ttypgrpid = NO_PID;
526 session_unlock(sessp);
527 }
528 if (ttyvp)
529 vnode_rele(ttyvp);
530 /*
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)
534 */
535 }
536
537 session_lock(sessp);
538 sessp->s_leader = NULL;
539 session_unlock(sessp);
540 }
541 session_rele(sessp);
542
543 pg = proc_pgrp(p);
544 fixjobc(p, pg, 0);
545 pg_rele(pg);
546
547 p->p_rlimit[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
548 (void)acct_process(p);
549
550 proc_list_lock();
551
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);
557 }
558
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) {
564 if (p != q->p_pptr)
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);
569 }
570 q->p_listflag |= P_LIST_WAITING;
571 /*
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
579 */
580 (void)reap_child_locked(p, q, 1, 1, 0);
581 } else {
582 proc_reparentlocked(q, initproc, 0, 1);
583 /*
584 * Traced processes are killed
585 * since their existence means someone is messing up.
586 */
587 if (q->p_lflag & P_LTRACED) {
588 proc_list_unlock();
589 proc_lock(q);
590 q->p_lflag &= ~P_LTRACED;
591 if (q->sigwait_thread) {
592 proc_unlock(q);
593 /*
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.
599 */
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);
603 } else
604 proc_unlock(q);
605 psignal(q, SIGKILL);
606 proc_list_lock();
607 }
608 }
609 }
610
611 proc_childdrainend(p);
612 proc_list_unlock();
613
614 /*
615 * Release reference to text vnode
616 */
617 tvp = p->p_textvp;
618 p->p_textvp = NULL;
619 if (tvp != NULLVP) {
620 vnode_rele(tvp);
621 }
622
623 /*
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.
627 */
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;
631
632 calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL);
633
634 ruadd(p->p_ru, &p->p_stats->p_cru);
635 }
636
637 /*
638 * Free up profiling buffers.
639 */
640 {
641 struct uprof *p0 = &p->p_stats->p_prof, *p1, *pn;
642
643 p1 = p0->pr_next;
644 p0->pr_next = NULL;
645 p0->pr_scale = 0;
646
647 for (; p1 != NULL; p1 = pn) {
648 pn = p1->pr_next;
649 kfree(p1, sizeof *p1);
650 }
651 }
652
653 proc_spinlock(p);
654 if (thread_call_cancel(p->p_rcall))
655 p->p_ractive--;
656
657 while (p->p_ractive > 0) {
658 proc_spinunlock(p);
659
660 delay(1);
661
662 proc_spinlock(p);
663 }
664 proc_spinunlock(p);
665
666 thread_call_free(p->p_rcall);
667 p->p_rcall = NULL;
668
669 /*
670 * Other substructures are freed from wait().
671 */
672 FREE_ZONE(p->p_stats, sizeof *p->p_stats, M_PSTATS);
673 p->p_stats = NULL;
674
675 FREE_ZONE(p->p_sigacts, sizeof *p->p_sigacts, M_SIGACTS);
676 p->p_sigacts = NULL;
677
678 proc_limitdrop(p, 1);
679 p->p_limit = NULL;
680
681
682 /*
683 * Finish up by terminating the task
684 * and halt this thread (only if a
685 * member of the task exiting).
686 */
687 p->task = TASK_NULL;
688 set_bsdtask_info(task, NULL);
689
690 proc_knote(p, NOTE_EXIT);
691
692 /* mark the thread as the one that is doing proc_exit
693 * no need to hold proc lock in uthread_free
694 */
695 uth->uu_flag |= UT_PROCEXIT;
696 /*
697 * Notify parent that we're gone.
698 */
699 pp = proc_parent(p);
700 if (pp->p_flag & P_NOCLDWAIT) {
701
702 #if 3839178
703 /*
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
708 * of RLIMIT_CPU.
709 */
710 #else /* !3839178 */
711 /*
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.
715 */
716 if (p->p_ru != NULL) {
717 proc_lock(pp);
718 ruadd(&pp->p_stats->p_cru, p->p_ru);
719 proc_unlock(pp);
720 }
721 #endif /* !3839178 */
722
723 /* kernel can reap this one, no need to move it to launchd */
724 proc_list_lock();
725 p->p_listflag |= P_LIST_DEADPARENT;
726 proc_list_unlock();
727 }
728 if ((p->p_listflag & P_LIST_DEADPARENT) == 0) {
729 if (pp != initproc) {
730 proc_lock(pp);
731 pp->si_pid = p->p_pid;
732 pp->si_status = p->p_xstat;
733 pp->si_code = CLD_EXITED;
734 /*
735 * p_ucred usage is safe as it is an exiting process
736 * and reference is dropped in reap
737 */
738 pp->si_uid = p->p_ucred->cr_ruid;
739 proc_unlock(pp);
740 }
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
746 */
747 KERNEL_DEBUG_CONSTANT(BSDDBG_CODE(DBG_BSD_PROC, BSD_PROC_EXIT) | DBG_FUNC_END,
748 pid, exitval, 0, 0, 0);
749 p->p_stat = SZOMB;
750 /*
751 * The current process can be reaped so, no one
752 * can depend on this
753 */
754
755 psignal(pp, SIGCHLD);
756
757 /* and now wakeup the parent */
758 proc_list_lock();
759 wakeup((caddr_t)pp);
760 proc_list_unlock();
761 } else {
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
768 */
769 proc_list_lock();
770 KERNEL_DEBUG_CONSTANT(BSDDBG_CODE(DBG_BSD_PROC, BSD_PROC_EXIT) | DBG_FUNC_END,
771 pid, exitval, 0, 0, 0);
772 p->p_stat = SZOMB;
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);
776 }
777 /* safe to use p as this is a system reap */
778 p->p_listflag |= P_LIST_WAITING;
779 /*
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
787 */
788 (void)reap_child_locked(pp, p, 1, 1, 1);
789 /* list lock dropped by reap_child_locked */
790 }
791 if (uth->uu_lowpri_window) {
792 /*
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
797 */
798 throttle_lowpri_io(FALSE);
799 }
800
801 proc_rele(pp);
802
803 }
804
805
806 /*
807 * reap_child_locked
808 *
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
813 * with it.
814 *
815 * Parameters: proc_t parent Parent of process being reaped
816 * proc_t child Process to reap
817 *
818 * Returns: 0 Process was not reaped because it
819 * came from an attach
820 * 1 Process was reaped
821 */
822 static int
823 reap_child_locked(proc_t parent, proc_t child, int deadparent, int locked, int droplock)
824 {
825 proc_t trace_parent = PROC_NULL; /* Traced parent process, if tracing */
826
827 if (locked == 1)
828 proc_list_unlock();
829
830 /*
831 * If we got the child via a ptrace 'attach',
832 * we need to give it back to the old parent.
833 *
834 * Exception: someone who has been reparented to launchd before being
835 * ptraced can simply be reaped, refer to radar 5677288
836 * p_oppid -> ptraced
837 * trace_parent == initproc -> away from launchd
838 * P_LIST_DEADPARENT -> came to launchd by reparenting
839 */
840 if (child->p_oppid && (trace_parent = proc_find(child->p_oppid))
841 && !((trace_parent == initproc) && (child->p_lflag & P_LIST_DEADPARENT))) {
842 proc_lock(child);
843 child->p_oppid = 0;
844 proc_unlock(child);
845 if (trace_parent != initproc) {
846 /*
847 * proc internal fileds and p_ucred usage safe
848 * here as child is dead and is not reaped or
849 * reparented yet
850 */
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);
857 }
858 proc_reparentlocked(child, trace_parent, 1, 0);
859 psignal(trace_parent, SIGCHLD);
860 proc_list_lock();
861 wakeup((caddr_t)trace_parent);
862 child->p_listflag &= ~P_LIST_WAITING;
863 wakeup(&child->p_stat);
864 proc_list_unlock();
865 proc_rele(trace_parent);
866 if ((locked == 1) && (droplock == 0))
867 proc_list_lock();
868 return (0);
869 }
870
871 if (trace_parent != PROC_NULL) {
872 proc_rele(trace_parent);
873 }
874
875 proc_knote(child, NOTE_REAP);
876 proc_knote_drain(child);
877
878 child->p_xstat = 0;
879 if (child->p_ru) {
880 proc_lock(parent);
881 #if 3839178
882 /*
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
887 * of RLIMIT_CPU.
888 */
889 if (!(parent->p_flag & P_NOCLDWAIT))
890 #endif /* 3839178 */
891 ruadd(&parent->p_stats->p_cru, child->p_ru);
892 proc_unlock(parent);
893 FREE_ZONE(child->p_ru, sizeof *child->p_ru, M_ZOMBIE);
894 child->p_ru = NULL;
895 } else {
896 printf("Warning : lost p_ru for %s\n", child->p_comm);
897 }
898
899 AUDIT_SESSION_PROCEXIT(child->p_ucred);
900
901 /*
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)
906 */
907 (void)chgproccnt(child->p_ucred->cr_ruid, -1);
908
909 #if CONFIG_LCTX
910 ALLLCTX_LOCK;
911 leavelctx(child);
912 ALLLCTX_UNLOCK;
913 #endif
914
915 /*
916 * Free up credentials.
917 */
918 if (IS_VALID_CRED(child->p_ucred)) {
919 kauth_cred_unref(&child->p_ucred);
920 }
921
922 /* XXXX Note NOT SAFE TO USE p_ucred from this point onwards */
923
924 /*
925 * Finally finished with old proc entry.
926 * Unlink it from its process group and free it.
927 */
928 leavepgrp(child);
929
930 proc_list_lock();
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);
939
940 /* Take it out of process hash */
941 LIST_REMOVE(child, p_hash);
942 child->p_listflag &= ~P_LIST_INHASH;
943 proc_checkdeadrefs(child);
944 nprocs--;
945
946 proc_list_unlock();
947
948 #ifdef CONFIG_EMBEDDED
949 lck_mtx_destroy(&child->p_mlock, proc_lck_grp);
950 lck_mtx_destroy(&child->p_fdmlock, proc_lck_grp);
951 #if CONFIG_DTRACE
952 lck_mtx_destroy(&child->p_dtrace_sprlock, proc_lck_grp);
953 #endif
954 lck_spin_destroy(&child->p_slock, proc_lck_grp);
955
956 #else
957 lck_mtx_destroy(&child->p_mlock, proc_mlock_grp);
958 lck_mtx_destroy(&child->p_fdmlock, proc_fdmlock_grp);
959 #if CONFIG_DTRACE
960 lck_mtx_destroy(&child->p_dtrace_sprlock, proc_lck_grp);
961 #endif
962 lck_spin_destroy(&child->p_slock, proc_slock_grp);
963 #endif
964 workqueue_destroy_lock(child);
965
966 FREE_ZONE(child, sizeof *child, M_PROC);
967 if ((locked == 1) && (droplock == 0))
968 proc_list_lock();
969
970 return (1);
971 }
972
973
974 int
975 wait1continue(int result)
976 {
977 void *vt;
978 thread_t thread;
979 int *retval;
980 proc_t p;
981
982 if (result)
983 return(result);
984
985 p = current_proc();
986 thread = current_thread();
987 vt = get_bsduthreadarg(thread);
988 retval = get_bsduthreadrval(thread);
989 return(wait4(p, (struct wait4_args *)vt, retval));
990 }
991
992 int
993 wait4(proc_t q, struct wait4_args *uap, int32_t *retval)
994 {
995 __pthread_testcancel(1);
996 return(wait4_nocancel(q, (struct wait4_nocancel_args *)uap, retval));
997 }
998
999 int
1000 wait4_nocancel(proc_t q, struct wait4_nocancel_args *uap, int32_t *retval)
1001 {
1002 int nfound;
1003 int sibling_count;
1004 proc_t p;
1005 int status, error;
1006
1007 AUDIT_ARG(pid, uap->pid);
1008
1009 if (uap->pid == 0)
1010 uap->pid = -q->p_pgrpid;
1011
1012 loop:
1013 proc_list_lock();
1014 loop1:
1015 nfound = 0;
1016 sibling_count = 0;
1017
1018 for (p = q->p_children.lh_first; p != 0; p = p->p_sibling.le_next) {
1019 if ( p->p_sibling.le_next != 0 )
1020 sibling_count++;
1021 if (uap->pid != WAIT_ANY &&
1022 p->p_pid != uap->pid &&
1023 p->p_pgrpid != -(uap->pid))
1024 continue;
1025
1026 nfound++;
1027
1028 /* XXX This is racy because we don't get the lock!!!! */
1029
1030 if (p->p_listflag & P_LIST_WAITING) {
1031 (void)msleep(&p->p_stat, proc_list_mlock, PWAIT, "waitcoll", 0);
1032 goto loop1;
1033 }
1034 p->p_listflag |= P_LIST_WAITING; /* only allow single thread to wait() */
1035
1036
1037 if (p->p_stat == SZOMB) {
1038 proc_list_unlock();
1039 #if CONFIG_MACF
1040 if ((error = mac_proc_check_wait(q, p)) != 0)
1041 goto out;
1042 #endif
1043 retval[0] = p->p_pid;
1044 if (uap->status) {
1045 /* Legacy apps expect only 8 bits of status */
1046 status = 0xffff & p->p_xstat; /* convert to int */
1047 error = copyout((caddr_t)&status,
1048 uap->status,
1049 sizeof(status));
1050 if (error)
1051 goto out;
1052 }
1053 if (uap->rusage) {
1054 if (p->p_ru == NULL) {
1055 error = ENOMEM;
1056 } else {
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,
1061 uap->rusage,
1062 sizeof (my_rusage));
1063 }
1064 else {
1065 struct user32_rusage my_rusage;
1066 munge_user32_rusage(p->p_ru, &my_rusage);
1067 error = copyout((caddr_t)&my_rusage,
1068 uap->rusage,
1069 sizeof (my_rusage));
1070 }
1071 }
1072 /* information unavailable? */
1073 if (error)
1074 goto out;
1075 }
1076
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.
1081 */
1082 if ( sibling_count == 0 ) {
1083 int mask = sigmask(SIGCHLD);
1084 uthread_t uth = (struct uthread *)get_bsdthread_info(current_thread());
1085
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.
1090 */
1091 proc_lock(q);
1092 uth->uu_siglist &= ~mask; /* clear pending signal */
1093 proc_unlock(q);
1094 }
1095 }
1096
1097 /* Clean up */
1098 (void)reap_child_locked(q, p, 0, 0, 0);
1099
1100 return (0);
1101 }
1102 if (p->p_stat == SSTOP && (p->p_lflag & P_LWAITED) == 0 &&
1103 (p->p_lflag & P_LTRACED || uap->options & WUNTRACED)) {
1104 proc_list_unlock();
1105 #if CONFIG_MACF
1106 if ((error = mac_proc_check_wait(q, p)) != 0)
1107 goto out;
1108 #endif
1109 proc_lock(p);
1110 p->p_lflag |= P_LWAITED;
1111 proc_unlock(p);
1112 retval[0] = p->p_pid;
1113 if (uap->status) {
1114 status = W_STOPCODE(p->p_xstat);
1115 error = copyout((caddr_t)&status,
1116 uap->status,
1117 sizeof(status));
1118 } else
1119 error = 0;
1120 goto out;
1121 }
1122 /*
1123 * If we are waiting for continued processses, and this
1124 * process was continued
1125 */
1126 if ((uap->options & WCONTINUED) &&
1127 (p->p_flag & P_CONTINUED)) {
1128 proc_list_unlock();
1129 #if CONFIG_MACF
1130 if ((error = mac_proc_check_wait(q, p)) != 0)
1131 goto out;
1132 #endif
1133
1134 /* Prevent other process for waiting for this event */
1135 OSBitAndAtomic(~((uint32_t)P_CONTINUED), &p->p_flag);
1136 retval[0] = p->p_pid;
1137 if (uap->status) {
1138 status = W_STOPCODE(SIGCONT);
1139 error = copyout((caddr_t)&status,
1140 uap->status,
1141 sizeof(status));
1142 } else
1143 error = 0;
1144 goto out;
1145 }
1146 p->p_listflag &= ~P_LIST_WAITING;
1147 wakeup(&p->p_stat);
1148 }
1149 /* list lock is held when we get here any which way */
1150 if (nfound == 0) {
1151 proc_list_unlock();
1152 return (ECHILD);
1153 }
1154
1155 if (uap->options & WNOHANG) {
1156 retval[0] = 0;
1157 proc_list_unlock();
1158 return (0);
1159 }
1160
1161 if ((error = msleep0((caddr_t)q, proc_list_mlock, PWAIT | PCATCH | PDROP, "wait", 0, wait1continue)))
1162 return (error);
1163
1164 goto loop;
1165 out:
1166 proc_list_lock();
1167 p->p_listflag &= ~P_LIST_WAITING;
1168 wakeup(&p->p_stat);
1169 proc_list_unlock();
1170 return (error);
1171 }
1172
1173
1174 int
1175 waitidcontinue(int result)
1176 {
1177 void *vt;
1178 thread_t thread;
1179 int *retval;
1180
1181 if (result)
1182 return(result);
1183
1184 thread = current_thread();
1185 vt = get_bsduthreadarg(thread);
1186 retval = get_bsduthreadrval(thread);
1187 return(waitid(current_proc(), (struct waitid_args *)vt, retval));
1188 }
1189
1190 /*
1191 * Description: Suspend the calling thread until one child of the process
1192 * containing the calling thread changes state.
1193 *
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
1199 *
1200 * Returns: 0 Success
1201 * !0 Error returning status to user space
1202 */
1203 int
1204 waitid(proc_t q, struct waitid_args *uap, int32_t *retval)
1205 {
1206 __pthread_testcancel(1);
1207 return(waitid_nocancel(q, (struct waitid_nocancel_args *)uap, retval));
1208 }
1209
1210 int
1211 waitid_nocancel(proc_t q, struct waitid_nocancel_args *uap, __unused int32_t *retval)
1212 {
1213 user_siginfo_t collect64; /* siginfo data to return to caller */
1214
1215 int nfound;
1216 proc_t p;
1217 int error;
1218
1219 /*
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.
1225 */
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 */
1229
1230 /*
1231 * Overly critical options checking, per POSIX
1232 */
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)
1237 return (EINVAL);
1238 break;
1239 case P_ALL: /* any child */
1240 break;
1241 }
1242
1243 loop:
1244 proc_list_lock();
1245 loop1:
1246 nfound = 0;
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)
1251 continue;
1252 break;
1253 case P_PGID: /* child with process group ID equal to... */
1254 if (p->p_pgrpid != (pid_t)uap->id)
1255 continue;
1256 break;
1257 case P_ALL: /* any child */
1258 break;
1259 }
1260
1261 /* XXX This is racy because we don't get the lock!!!! */
1262
1263 /*
1264 * Wait collision; go to sleep and restart; used to maintain
1265 * the single return for waited process guarantee.
1266 */
1267 if (p->p_listflag & P_LIST_WAITING) {
1268 (void)msleep(&p->p_stat, proc_list_mlock, PWAIT, "waitidcoll", 0);
1269 goto loop1;
1270 }
1271 p->p_listflag |= P_LIST_WAITING; /* mark busy */
1272
1273 nfound++;
1274
1275 /*
1276 * Types of processes we are interested in
1277 *
1278 * XXX Don't know what to do for WCONTINUED?!?
1279 */
1280 switch(p->p_stat) {
1281 case SZOMB: /* Exited */
1282 if (!(uap->options & WEXITED))
1283 break;
1284
1285 /* drop the lock and the thread is going to return */
1286 proc_list_unlock();
1287
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;
1297
1298 if (IS_64BIT_PROCESS(p)) {
1299 user64_siginfo_t sinfo64;
1300
1301 siginfo_user_to_user64(&collect64, &sinfo64);
1302
1303 error = copyout((caddr_t)&sinfo64,
1304 uap->infop,
1305 sizeof(sinfo64));
1306 } else {
1307 user32_siginfo_t sinfo32;
1308
1309 siginfo_user_to_user32(&collect64, &sinfo32);
1310
1311 error = copyout((caddr_t)&sinfo32,
1312 uap->infop,
1313 sizeof(sinfo32));
1314 }
1315 /* information unavailable? */
1316 if (error)
1317 goto out;
1318
1319 /* Prevent other process for waiting for this event? */
1320 if (!(uap->options & WNOWAIT)) {
1321 /* Clean up */
1322 (void)reap_child_locked(q, p, 0, 0, 0);
1323 } else {
1324 proc_list_lock();
1325 p->p_listflag &= ~P_LIST_WAITING;
1326 proc_list_unlock();
1327 }
1328
1329 return (0);
1330
1331 case SSTOP: /* Stopped */
1332 /*
1333 * If we are not interested in stopped processes, then
1334 * ignore this one.
1335 */
1336 if (!(uap->options & WSTOPPED))
1337 break;
1338
1339 /*
1340 * If someone has already waited it, we lost a race
1341 * to be the one to return status.
1342 */
1343 if ((p->p_lflag & P_LWAITED) != 0)
1344 break;
1345
1346 /* drop the lock and the thread is going to return */
1347 proc_list_unlock();
1348
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;
1356 proc_lock(p);
1357 collect64.si_status = p->p_xstat;
1358 proc_unlock(p);
1359 collect64.si_band = 0;
1360
1361 if (IS_64BIT_PROCESS(p)) {
1362 user64_siginfo_t sinfo64;
1363
1364 siginfo_user_to_user64(&collect64, &sinfo64);
1365
1366 error = copyout((caddr_t)&sinfo64,
1367 uap->infop,
1368 sizeof(sinfo64));
1369 } else {
1370 user32_siginfo_t sinfo32;
1371
1372 siginfo_user_to_user32(&collect64, &sinfo32);
1373
1374 error = copyout((caddr_t)&sinfo32,
1375 uap->infop,
1376 sizeof(sinfo32));
1377 }
1378 /* information unavailable? */
1379 if (error)
1380 goto out;
1381
1382 /* Prevent other process for waiting for this event? */
1383 if (!(uap->options & WNOWAIT)) {
1384 proc_lock(p);
1385 p->p_lflag |= P_LWAITED;
1386 proc_unlock(p);
1387 }
1388
1389 error = 0;
1390 goto out;
1391
1392 default: /* All others */
1393 /* ...meaning Continued */
1394 if (!(uap->options & WCONTINUED))
1395 break;
1396
1397 /*
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().
1401 */
1402 if ((p->p_flag & P_CONTINUED) == 0)
1403 break;
1404
1405 /* drop the lock and the thread is going to return */
1406 proc_list_unlock();
1407
1408 /* Collect "siginfo" information for caller */
1409 proc_lock(p);
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;
1418 proc_unlock(p);
1419
1420 if (IS_64BIT_PROCESS(p)) {
1421 user64_siginfo_t sinfo64;
1422
1423 siginfo_user_to_user64(&collect64, &sinfo64);
1424
1425 error = copyout((caddr_t)&sinfo64,
1426 uap->infop,
1427 sizeof(sinfo64));
1428 } else {
1429 user32_siginfo_t sinfo32;
1430
1431 siginfo_user_to_user32(&collect64, &sinfo32);
1432
1433 error = copyout((caddr_t)&sinfo32,
1434 uap->infop,
1435 sizeof(sinfo32));
1436 }
1437 /* information unavailable? */
1438 if (error)
1439 goto out;
1440
1441 /* Prevent other process for waiting for this event? */
1442 if (!(uap->options & WNOWAIT)) {
1443 OSBitAndAtomic(~((uint32_t)P_CONTINUED), &p->p_flag);
1444 }
1445
1446 error = 0;
1447 goto out;
1448 }
1449 /* LIST LOCK IS HELD HERE */
1450 /* Not a process we are interested in; go on to next child */
1451
1452 p->p_listflag &= ~P_LIST_WAITING;
1453 wakeup(&p->p_stat);
1454 }
1455
1456 /* list lock is always held */
1457 /* No child processes that could possibly satisfy the request? */
1458 if (nfound == 0) {
1459 proc_list_unlock();
1460 return (ECHILD);
1461 }
1462
1463 if (uap->options & WNOHANG) {
1464 proc_list_unlock();
1465 return (0);
1466 }
1467
1468 if ((error = msleep0((caddr_t)q, proc_list_mlock, PWAIT | PCATCH | PDROP, "waitid", 0, waitidcontinue)))
1469 return (error);
1470
1471 goto loop;
1472 out:
1473 proc_list_lock();
1474 p->p_listflag &= ~P_LIST_WAITING;
1475 wakeup(&p->p_stat);
1476 proc_list_unlock();
1477 return (error);
1478 }
1479
1480 /*
1481 * make process 'parent' the new parent of process 'child'.
1482 */
1483 void
1484 proc_reparentlocked(proc_t child, proc_t parent, int cansignal, int locked)
1485 {
1486 proc_t oldparent = PROC_NULL;
1487
1488 if (child->p_pptr == parent)
1489 return;
1490
1491 if (locked == 0)
1492 proc_list_lock();
1493
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);
1498 #endif
1499
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");
1504 #endif
1505 oldparent->p_childrencnt--;
1506 #if __PROC_INTERNAL_DEBUG1
1507 if (oldparent->p_childrencnt < 0)
1508 panic("process children count -ve\n");
1509 #endif
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;
1514
1515 proc_list_unlock();
1516
1517 if ((cansignal != 0) && (initproc == parent) && (child->p_stat == SZOMB))
1518 psignal(initproc, SIGCHLD);
1519 if (locked == 1)
1520 proc_list_lock();
1521 }
1522
1523 /*
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.
1527 */
1528
1529 void
1530 vfork_exit(proc_t p, int rv)
1531 {
1532 vfork_exit_internal(p, rv, 0);
1533 }
1534
1535 void
1536 vfork_exit_internal(proc_t p, int rv, int forceexit)
1537 {
1538 thread_t self = current_thread();
1539 #ifdef FIXME
1540 struct task *task = p->task;
1541 #endif
1542 struct uthread *ut;
1543
1544 /*
1545 * If a thread in this task has already
1546 * called exit(), then halt any others
1547 * right here.
1548 */
1549
1550 ut = get_bsdthread_info(self);
1551
1552
1553 proc_lock(p);
1554 if ((p->p_lflag & P_LPEXIT) == P_LPEXIT) {
1555 /*
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()
1558 */
1559 proc_unlock(p);
1560 return;
1561 }
1562 p->p_lflag |= (P_LEXIT | P_LPEXIT);
1563 proc_unlock(p);
1564
1565 if (forceexit == 0) {
1566 /*
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.
1572 */
1573 /* Notify the perf server */
1574 (void)sys_perf_notify(self, p->p_pid);
1575 }
1576
1577 /*
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.
1582 */
1583
1584 proc_list_lock();
1585
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;
1590
1591 proc_list_unlock();
1592
1593 proc_lock(p);
1594 p->p_xstat = rv;
1595 p->p_lflag &= ~(P_LTRACED | P_LPPWAIT);
1596 p->p_sigignore = ~0;
1597 proc_unlock(p);
1598
1599 proc_spinlock(p);
1600 if (thread_call_cancel(p->p_rcall))
1601 p->p_ractive--;
1602
1603 while (p->p_ractive > 0) {
1604 proc_spinunlock(p);
1605
1606 delay(1);
1607
1608 proc_spinlock(p);
1609 }
1610 proc_spinunlock(p);
1611
1612 thread_call_free(p->p_rcall);
1613 p->p_rcall = NULL;
1614
1615 ut->uu_siglist = 0;
1616
1617 vproc_exit(p);
1618 }
1619
1620 void
1621 vproc_exit(proc_t p)
1622 {
1623 proc_t q;
1624 proc_t pp;
1625
1626 vnode_t tvp;
1627 #ifdef FIXME
1628 struct task *task = p->task;
1629 #endif
1630 struct pgrp * pg;
1631 struct session *sessp;
1632
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);
1636
1637
1638 proc_refdrain(p);
1639
1640 /*
1641 * Close open files and release open-file table.
1642 * This may block!
1643 */
1644 fdfree(p);
1645
1646 sessp = proc_session(p);
1647 if (SESS_LEADER(p, sessp)) {
1648
1649 if (sessp->s_ttyvp != NULLVP) {
1650 struct vnode *ttyvp;
1651 int ttyvid;
1652 struct vfs_context context;
1653 struct tty * tp;
1654
1655 /*
1656 * Controlling process.
1657 * Signal foreground pgrp,
1658 * drain controlling terminal
1659 * and revoke access to controlling terminal.
1660 */
1661 tp = SESSION_TP(sessp);
1662
1663 if ((tp != TTY_NULL) && (tp->t_session == sessp)) {
1664 tty_pgsignal(tp, SIGHUP, 1);
1665 tty_lock(tp);
1666 (void) ttywait(tp);
1667 tty_unlock(tp);
1668 /*
1669 * The tty could have been revoked
1670 * if we blocked.
1671 */
1672
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);
1683
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);
1688 vnode_put(ttyvp);
1689 kauth_cred_unref(&context.vc_ucred);
1690 }
1691 } else {
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);
1699 }
1700 if (ttyvp)
1701 vnode_rele(ttyvp);
1702 /*
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)
1706 */
1707 }
1708
1709 session_lock(sessp);
1710 sessp->s_leader = NULL;
1711 session_unlock(sessp);
1712 }
1713 session_rele(sessp);
1714
1715 pg = proc_pgrp(p);
1716 fixjobc(p, pg, 0);
1717 pg_rele(pg);
1718
1719 p->p_rlimit[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
1720
1721 proc_list_lock();
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) {
1726 if (p != q->p_pptr)
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);
1731 }
1732 q->p_listflag |= P_LIST_WAITING;
1733 /*
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
1741 */
1742 (void)reap_child_locked(p, q, 1, 1, 0);
1743 } else {
1744 proc_reparentlocked(q, initproc, 0, 1);
1745 /*
1746 * Traced processes are killed
1747 * since their existence means someone is messing up.
1748 */
1749 if (q->p_lflag & P_LTRACED) {
1750 proc_list_unlock();
1751 proc_lock(q);
1752 q->p_lflag &= ~P_LTRACED;
1753 if (q->sigwait_thread) {
1754 proc_unlock(q);
1755 /*
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.
1761 */
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);
1765 } else
1766 proc_unlock(q);
1767
1768 psignal(q, SIGKILL);
1769 proc_list_lock();
1770 }
1771 }
1772 }
1773
1774 proc_childdrainend(p);
1775 proc_list_unlock();
1776
1777 /*
1778 * Release reference to text vnode
1779 */
1780 tvp = p->p_textvp;
1781 p->p_textvp = NULL;
1782 if (tvp != NULLVP) {
1783 vnode_rele(tvp);
1784 }
1785
1786 /*
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.
1790 */
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);
1796
1797 #ifdef FIXME
1798 if (task) {
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;
1803
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;
1811
1812 task_ttimes_stuff = TASK_THREAD_TIMES_INFO_COUNT;
1813 task_info(task, TASK_THREAD_TIMES_INFO,
1814 &ttimesinfo, &task_ttimes_stuff);
1815
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);
1822 }
1823 #endif /* FIXME */
1824
1825 ruadd(p->p_ru, &p->p_stats->p_cru);
1826 }
1827
1828 /*
1829 * Free up profiling buffers.
1830 */
1831 {
1832 struct uprof *p0 = &p->p_stats->p_prof, *p1, *pn;
1833
1834 p1 = p0->pr_next;
1835 p0->pr_next = NULL;
1836 p0->pr_scale = 0;
1837
1838 for (; p1 != NULL; p1 = pn) {
1839 pn = p1->pr_next;
1840 kfree(p1, sizeof *p1);
1841 }
1842 }
1843
1844 /*
1845 * Other substructures are freed from wait().
1846 */
1847 FREE_ZONE(p->p_stats, sizeof *p->p_stats, M_PSTATS);
1848 p->p_stats = NULL;
1849
1850 FREE_ZONE(p->p_sigacts, sizeof *p->p_sigacts, M_SIGACTS);
1851 p->p_sigacts = NULL;
1852
1853 proc_limitdrop(p, 1);
1854 p->p_limit = NULL;
1855
1856 /*
1857 * Finish up by terminating the task
1858 * and halt this thread (only if a
1859 * member of the task exiting).
1860 */
1861 p->task = TASK_NULL;
1862
1863 /*
1864 * Notify parent that we're gone.
1865 */
1866 pp = proc_parent(p);
1867 if ((p->p_listflag & P_LIST_DEADPARENT) == 0) {
1868 if (pp != initproc) {
1869 proc_lock(pp);
1870 pp->si_pid = p->p_pid;
1871 pp->si_status = p->p_xstat;
1872 pp->si_code = CLD_EXITED;
1873 /*
1874 * p_ucred usage is safe as it is an exiting process
1875 * and reference is dropped in reap
1876 */
1877 pp->si_uid = p->p_ucred->cr_ruid;
1878 proc_unlock(pp);
1879 }
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
1886 */
1887 p->p_stat = SZOMB;
1888
1889 psignal(pp, SIGCHLD);
1890
1891 /* and now wakeup the parent */
1892 proc_list_lock();
1893 wakeup((caddr_t)pp);
1894 proc_list_unlock();
1895 } else {
1896 proc_list_lock();
1897 p->p_stat = SZOMB;
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);
1901 }
1902 p->p_listflag |= P_LIST_WAITING;
1903 /*
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
1911 */
1912 (void)reap_child_locked(pp, p, 0, 1, 1);
1913 /* list lock dropped by reap_child_locked */
1914 }
1915 proc_rele(pp);
1916 }
1917
1918
1919 /*
1920 * munge_rusage
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
1923 * 64 bit version.
1924 */
1925 __private_extern__ void
1926 munge_user64_rusage(struct rusage *a_rusage_p, struct user64_rusage *a_user_rusage_p)
1927 {
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;
1933 /*
1934 * everything else can be a direct assign, since there is no loss
1935 * of precision implied boing 32->64.
1936 */
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;
1951 }
1952
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)
1956 {
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;
1962 /*
1963 * everything else can be a direct assign. We currently ignore
1964 * the loss of precision
1965 */
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;
1980 }