kern_exit.c revision 1.94 1 1.94 christos /* $NetBSD: kern_exit.c,v 1.94 2002/06/17 16:22:50 christos Exp $ */
2 1.56 thorpej
3 1.56 thorpej /*-
4 1.72 thorpej * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
5 1.56 thorpej * All rights reserved.
6 1.58 christos *
7 1.56 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.56 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.58 christos * NASA Ames Research Center.
10 1.56 thorpej *
11 1.56 thorpej * Redistribution and use in source and binary forms, with or without
12 1.56 thorpej * modification, are permitted provided that the following conditions
13 1.56 thorpej * are met:
14 1.56 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.56 thorpej * notice, this list of conditions and the following disclaimer.
16 1.58 christos * 2. Redistributions in binary form must reproduce the above copyright
17 1.56 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.56 thorpej * documentation and/or other materials provided with the distribution.
19 1.56 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.56 thorpej * must display the following acknowledgement:
21 1.58 christos * This product includes software developed by the NetBSD
22 1.58 christos * Foundation, Inc. and its contributors.
23 1.56 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.56 thorpej * contributors may be used to endorse or promote products derived
25 1.56 thorpej * from this software without specific prior written permission.
26 1.58 christos *
27 1.56 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.56 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.56 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.56 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.56 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.56 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.56 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.56 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.56 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.56 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.56 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.56 thorpej */
39 1.24 cgd
40 1.24 cgd /*
41 1.24 cgd * Copyright (c) 1982, 1986, 1989, 1991, 1993
42 1.24 cgd * The Regents of the University of California. All rights reserved.
43 1.24 cgd * (c) UNIX System Laboratories, Inc.
44 1.24 cgd * All or some portions of this file are derived from material licensed
45 1.24 cgd * to the University of California by American Telephone and Telegraph
46 1.24 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
47 1.24 cgd * the permission of UNIX System Laboratories, Inc.
48 1.24 cgd *
49 1.24 cgd * Redistribution and use in source and binary forms, with or without
50 1.24 cgd * modification, are permitted provided that the following conditions
51 1.24 cgd * are met:
52 1.24 cgd * 1. Redistributions of source code must retain the above copyright
53 1.24 cgd * notice, this list of conditions and the following disclaimer.
54 1.24 cgd * 2. Redistributions in binary form must reproduce the above copyright
55 1.24 cgd * notice, this list of conditions and the following disclaimer in the
56 1.24 cgd * documentation and/or other materials provided with the distribution.
57 1.24 cgd * 3. All advertising materials mentioning features or use of this software
58 1.24 cgd * must display the following acknowledgement:
59 1.24 cgd * This product includes software developed by the University of
60 1.24 cgd * California, Berkeley and its contributors.
61 1.24 cgd * 4. Neither the name of the University nor the names of its contributors
62 1.24 cgd * may be used to endorse or promote products derived from this software
63 1.24 cgd * without specific prior written permission.
64 1.24 cgd *
65 1.24 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
66 1.24 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
67 1.24 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
68 1.24 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
69 1.24 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
70 1.24 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
71 1.24 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
72 1.24 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
73 1.24 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
74 1.24 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
75 1.24 cgd * SUCH DAMAGE.
76 1.24 cgd *
77 1.49 fvdl * @(#)kern_exit.c 8.10 (Berkeley) 2/23/95
78 1.24 cgd */
79 1.92 lukem
80 1.92 lukem #include <sys/cdefs.h>
81 1.94 christos __KERNEL_RCSID(0, "$NetBSD: kern_exit.c,v 1.94 2002/06/17 16:22:50 christos Exp $");
82 1.48 mrg
83 1.51 thorpej #include "opt_ktrace.h"
84 1.94 christos #include "opt_systrace.h"
85 1.60 tron #include "opt_sysv.h"
86 1.24 cgd
87 1.24 cgd #include <sys/param.h>
88 1.24 cgd #include <sys/systm.h>
89 1.24 cgd #include <sys/map.h>
90 1.24 cgd #include <sys/ioctl.h>
91 1.24 cgd #include <sys/proc.h>
92 1.24 cgd #include <sys/tty.h>
93 1.24 cgd #include <sys/time.h>
94 1.24 cgd #include <sys/resource.h>
95 1.24 cgd #include <sys/kernel.h>
96 1.50 christos #include <sys/ktrace.h>
97 1.24 cgd #include <sys/proc.h>
98 1.24 cgd #include <sys/buf.h>
99 1.24 cgd #include <sys/wait.h>
100 1.24 cgd #include <sys/file.h>
101 1.24 cgd #include <sys/vnode.h>
102 1.24 cgd #include <sys/syslog.h>
103 1.24 cgd #include <sys/malloc.h>
104 1.53 thorpej #include <sys/pool.h>
105 1.24 cgd #include <sys/resourcevar.h>
106 1.24 cgd #include <sys/ptrace.h>
107 1.29 cgd #include <sys/acct.h>
108 1.36 christos #include <sys/filedesc.h>
109 1.36 christos #include <sys/signalvar.h>
110 1.64 ross #include <sys/sched.h>
111 1.26 cgd #include <sys/mount.h>
112 1.26 cgd #include <sys/syscallargs.h>
113 1.94 christos #include <sys/systrace.h>
114 1.26 cgd
115 1.24 cgd #include <machine/cpu.h>
116 1.24 cgd
117 1.47 mrg #include <uvm/uvm_extern.h>
118 1.47 mrg
119 1.94 christos
120 1.24 cgd /*
121 1.24 cgd * exit --
122 1.24 cgd * Death of process.
123 1.24 cgd */
124 1.31 thorpej int
125 1.82 thorpej sys_exit(struct proc *p, void *v, register_t *retval)
126 1.31 thorpej {
127 1.33 mycroft struct sys_exit_args /* {
128 1.89 lukem syscallarg(int) rval;
129 1.31 thorpej } */ *uap = v;
130 1.24 cgd
131 1.26 cgd exit1(p, W_EXITCODE(SCARG(uap, rval), 0));
132 1.24 cgd /* NOTREACHED */
133 1.31 thorpej return (0);
134 1.24 cgd }
135 1.24 cgd
136 1.24 cgd /*
137 1.24 cgd * Exit: deallocate address space and other resources, change proc state
138 1.24 cgd * to zombie, and unlink proc from allproc and parent's lists. Save exit
139 1.24 cgd * status and rusage for wait(). Check for child processes and orphan them.
140 1.24 cgd */
141 1.31 thorpej void
142 1.82 thorpej exit1(struct proc *p, int rv)
143 1.24 cgd {
144 1.89 lukem struct proc *q, *nq;
145 1.89 lukem int s;
146 1.24 cgd
147 1.78 thorpej if (__predict_false(p == initproc))
148 1.24 cgd panic("init died (signal %d, exit %d)",
149 1.24 cgd WTERMSIG(rv), WEXITSTATUS(rv));
150 1.73 thorpej
151 1.24 cgd #ifdef PGINPROF
152 1.24 cgd vmsizmon();
153 1.24 cgd #endif
154 1.24 cgd if (p->p_flag & P_PROFIL)
155 1.24 cgd stopprofclock(p);
156 1.55 thorpej p->p_ru = pool_get(&rusage_pool, PR_WAITOK);
157 1.24 cgd /*
158 1.37 mycroft * If parent is waiting for us to exit or exec, P_PPWAIT is set; we
159 1.37 mycroft * wake up the parent early to avoid deadlock.
160 1.24 cgd */
161 1.24 cgd p->p_flag |= P_WEXIT;
162 1.37 mycroft if (p->p_flag & P_PPWAIT) {
163 1.37 mycroft p->p_flag &= ~P_PPWAIT;
164 1.37 mycroft wakeup((caddr_t)p->p_pptr);
165 1.37 mycroft }
166 1.87 jdolecek sigfillset(&p->p_sigctx.ps_sigignore);
167 1.87 jdolecek sigemptyset(&p->p_sigctx.ps_siglist);
168 1.87 jdolecek p->p_sigctx.ps_sigcheck = 0;
169 1.75 thorpej callout_stop(&p->p_realit_ch);
170 1.24 cgd
171 1.24 cgd /*
172 1.24 cgd * Close open files and release open-file table.
173 1.24 cgd * This may block!
174 1.24 cgd */
175 1.24 cgd fdfree(p);
176 1.66 thorpej cwdfree(p);
177 1.24 cgd
178 1.93 christos doexithooks(p);
179 1.93 christos
180 1.24 cgd if (SESS_LEADER(p)) {
181 1.76 augustss struct session *sp = p->p_session;
182 1.24 cgd
183 1.24 cgd if (sp->s_ttyvp) {
184 1.24 cgd /*
185 1.24 cgd * Controlling process.
186 1.24 cgd * Signal foreground pgrp,
187 1.24 cgd * drain controlling terminal
188 1.24 cgd * and revoke access to controlling terminal.
189 1.24 cgd */
190 1.24 cgd if (sp->s_ttyp->t_session == sp) {
191 1.24 cgd if (sp->s_ttyp->t_pgrp)
192 1.24 cgd pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
193 1.24 cgd (void) ttywait(sp->s_ttyp);
194 1.24 cgd /*
195 1.24 cgd * The tty could have been revoked
196 1.24 cgd * if we blocked.
197 1.24 cgd */
198 1.24 cgd if (sp->s_ttyvp)
199 1.49 fvdl VOP_REVOKE(sp->s_ttyvp, REVOKEALL);
200 1.24 cgd }
201 1.24 cgd if (sp->s_ttyvp)
202 1.24 cgd vrele(sp->s_ttyvp);
203 1.24 cgd sp->s_ttyvp = NULL;
204 1.24 cgd /*
205 1.24 cgd * s_ttyp is not zero'd; we use this to indicate
206 1.24 cgd * that the session once had a controlling terminal.
207 1.24 cgd * (for logging and informational purposes)
208 1.24 cgd */
209 1.24 cgd }
210 1.24 cgd sp->s_leader = NULL;
211 1.24 cgd }
212 1.24 cgd fixjobc(p, p->p_pgrp, 0);
213 1.24 cgd (void)acct_process(p);
214 1.24 cgd #ifdef KTRACE
215 1.24 cgd /*
216 1.24 cgd * release trace file
217 1.24 cgd */
218 1.50 christos ktrderef(p);
219 1.94 christos #endif
220 1.94 christos #ifdef SYSTRACE
221 1.94 christos systrace_sys_exit(p);
222 1.24 cgd #endif
223 1.24 cgd /*
224 1.72 thorpej * NOTE: WE ARE NO LONGER ALLOWED TO SLEEP!
225 1.24 cgd */
226 1.72 thorpej p->p_stat = SDEAD;
227 1.24 cgd
228 1.56 thorpej /*
229 1.72 thorpej * Remove proc from pidhash chain so looking it up won't
230 1.72 thorpej * work. Move it from allproc to zombproc, but do not yet
231 1.72 thorpej * wake up the reaper. We will put the proc on the
232 1.72 thorpej * deadproc list later (using the p_hash member), and
233 1.72 thorpej * wake up the reaper when we do.
234 1.56 thorpej */
235 1.73 thorpej s = proclist_lock_write();
236 1.25 mycroft LIST_REMOVE(p, p_hash);
237 1.72 thorpej LIST_REMOVE(p, p_list);
238 1.72 thorpej LIST_INSERT_HEAD(&zombproc, p, p_list);
239 1.73 thorpej proclist_unlock_write(s);
240 1.24 cgd
241 1.72 thorpej /*
242 1.72 thorpej * Give orphaned children to init(8).
243 1.72 thorpej */
244 1.25 mycroft q = p->p_children.lh_first;
245 1.25 mycroft if (q) /* only need this if any child is S_ZOMB */
246 1.37 mycroft wakeup((caddr_t)initproc);
247 1.25 mycroft for (; q != 0; q = nq) {
248 1.25 mycroft nq = q->p_sibling.le_next;
249 1.27 mycroft proc_reparent(q, initproc);
250 1.24 cgd /*
251 1.24 cgd * Traced processes are killed
252 1.24 cgd * since their existence means someone is screwing up.
253 1.24 cgd */
254 1.24 cgd if (q->p_flag & P_TRACED) {
255 1.45 mycroft q->p_flag &= ~(P_TRACED|P_WAITED|P_FSTRACE);
256 1.24 cgd psignal(q, SIGKILL);
257 1.24 cgd }
258 1.24 cgd }
259 1.24 cgd
260 1.24 cgd /*
261 1.24 cgd * Save exit status and final rusage info, adding in child rusage
262 1.24 cgd * info and self times.
263 1.24 cgd */
264 1.24 cgd p->p_xstat = rv;
265 1.24 cgd *p->p_ru = p->p_stats->p_ru;
266 1.24 cgd calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL);
267 1.24 cgd ruadd(p->p_ru, &p->p_stats->p_cru);
268 1.59 christos
269 1.59 christos /*
270 1.59 christos * Notify parent that we're gone. If parent has the P_NOCLDWAIT
271 1.59 christos * flag set, notify init instead (and hope it will handle
272 1.59 christos * this situation).
273 1.59 christos */
274 1.59 christos if (p->p_pptr->p_flag & P_NOCLDWAIT) {
275 1.59 christos struct proc *pp = p->p_pptr;
276 1.59 christos proc_reparent(p, initproc);
277 1.59 christos /*
278 1.59 christos * If this was the last child of our parent, notify
279 1.59 christos * parent, so in case he was wait(2)ing, he will
280 1.59 christos * continue.
281 1.59 christos */
282 1.59 christos if (pp->p_children.lh_first == NULL)
283 1.59 christos wakeup((caddr_t)pp);
284 1.59 christos }
285 1.67 thorpej
286 1.67 thorpej /*
287 1.67 thorpej * Release the process's signal state.
288 1.67 thorpej */
289 1.67 thorpej sigactsfree(p);
290 1.24 cgd
291 1.24 cgd /*
292 1.24 cgd * Clear curproc after we've done all operations
293 1.24 cgd * that could block, and before tearing down the rest
294 1.24 cgd * of the process state that might be used from clock, etc.
295 1.24 cgd * Also, can't clear curproc while we're still runnable,
296 1.24 cgd * as we're not on a run queue (we are current, just not
297 1.24 cgd * a proper proc any longer!).
298 1.24 cgd *
299 1.24 cgd * Other substructures are freed from wait().
300 1.24 cgd */
301 1.24 cgd curproc = NULL;
302 1.74 bouyer limfree(p->p_limit);
303 1.77 thorpej p->p_limit = NULL;
304 1.86 jdolecek
305 1.86 jdolecek /*
306 1.86 jdolecek * If emulation has process exit hook, call it now.
307 1.86 jdolecek */
308 1.86 jdolecek if (p->p_emul->e_proc_exit)
309 1.86 jdolecek (*p->p_emul->e_proc_exit)(p);
310 1.24 cgd
311 1.85 thorpej /* This process no longer needs to hold the kernel lock. */
312 1.85 thorpej KERNEL_PROC_UNLOCK(p);
313 1.85 thorpej
314 1.24 cgd /*
315 1.56 thorpej * Finally, call machine-dependent code to switch to a new
316 1.56 thorpej * context (possibly the idle context). Once we are no longer
317 1.56 thorpej * using the dead process's vmspace and stack, exit2() will be
318 1.56 thorpej * called to schedule those resources to be released by the
319 1.56 thorpej * reaper thread.
320 1.56 thorpej *
321 1.56 thorpej * Note that cpu_exit() will end with a call equivalent to
322 1.56 thorpej * cpu_switch(), finishing our execution (pun intended).
323 1.24 cgd */
324 1.24 cgd cpu_exit(p);
325 1.24 cgd }
326 1.24 cgd
327 1.56 thorpej /*
328 1.56 thorpej * We are called from cpu_exit() once it is safe to schedule the
329 1.85 thorpej * dead process's resources to be freed (i.e., once we've switched to
330 1.85 thorpej * the idle PCB for the current CPU).
331 1.72 thorpej *
332 1.72 thorpej * NOTE: One must be careful with locking in this routine. It's
333 1.72 thorpej * called from a critical section in machine-dependent code, so
334 1.72 thorpej * we should refrain from changing any interrupt state.
335 1.72 thorpej *
336 1.72 thorpej * We lock the deadproc list (a spin lock), place the proc on that
337 1.72 thorpej * list (using the p_hash member), and wake up the reaper.
338 1.56 thorpej */
339 1.56 thorpej void
340 1.82 thorpej exit2(struct proc *p)
341 1.56 thorpej {
342 1.56 thorpej
343 1.72 thorpej simple_lock(&deadproc_slock);
344 1.72 thorpej LIST_INSERT_HEAD(&deadproc, p, p_hash);
345 1.72 thorpej simple_unlock(&deadproc_slock);
346 1.72 thorpej
347 1.56 thorpej wakeup(&deadproc);
348 1.56 thorpej }
349 1.56 thorpej
350 1.56 thorpej /*
351 1.56 thorpej * Process reaper. This is run by a kernel thread to free the resources
352 1.56 thorpej * of a dead process. Once the resources are free, the process becomes
353 1.56 thorpej * a zombie, and the parent is allowed to read the undead's status.
354 1.56 thorpej */
355 1.56 thorpej void
356 1.84 thorpej reaper(void *arg)
357 1.56 thorpej {
358 1.56 thorpej struct proc *p;
359 1.56 thorpej
360 1.90 fvdl KERNEL_PROC_UNLOCK(curproc);
361 1.90 fvdl
362 1.56 thorpej for (;;) {
363 1.72 thorpej simple_lock(&deadproc_slock);
364 1.56 thorpej p = LIST_FIRST(&deadproc);
365 1.56 thorpej if (p == NULL) {
366 1.56 thorpej /* No work for us; go to sleep until someone exits. */
367 1.83 thorpej (void) ltsleep(&deadproc, PVM|PNORELOCK,
368 1.83 thorpej "reaper", 0, &deadproc_slock);
369 1.56 thorpej continue;
370 1.56 thorpej }
371 1.56 thorpej
372 1.56 thorpej /* Remove us from the deadproc list. */
373 1.72 thorpej LIST_REMOVE(p, p_hash);
374 1.72 thorpej simple_unlock(&deadproc_slock);
375 1.90 fvdl KERNEL_PROC_LOCK(curproc);
376 1.56 thorpej
377 1.56 thorpej /*
378 1.71 thorpej * Give machine-dependent code a chance to free any
379 1.71 thorpej * resources it couldn't free while still running on
380 1.71 thorpej * that process's context. This must be done before
381 1.71 thorpej * uvm_exit(), in case these resources are in the PCB.
382 1.71 thorpej */
383 1.71 thorpej cpu_wait(p);
384 1.71 thorpej
385 1.71 thorpej /*
386 1.56 thorpej * Free the VM resources we're still holding on to.
387 1.56 thorpej * We must do this from a valid thread because doing
388 1.56 thorpej * so may block.
389 1.56 thorpej */
390 1.56 thorpej uvm_exit(p);
391 1.56 thorpej
392 1.56 thorpej /* Process is now a true zombie. */
393 1.72 thorpej p->p_stat = SZOMB;
394 1.56 thorpej
395 1.68 thorpej /* Wake up the parent so it can get exit status. */
396 1.70 thorpej if ((p->p_flag & P_FSTRACE) == 0 && p->p_exitsig != 0)
397 1.68 thorpej psignal(p->p_pptr, P_EXITSIG(p));
398 1.90 fvdl KERNEL_PROC_UNLOCK(curproc);
399 1.56 thorpej wakeup((caddr_t)p->p_pptr);
400 1.56 thorpej }
401 1.56 thorpej }
402 1.56 thorpej
403 1.24 cgd int
404 1.82 thorpej sys_wait4(struct proc *q, void *v, register_t *retval)
405 1.31 thorpej {
406 1.76 augustss struct sys_wait4_args /* {
407 1.89 lukem syscallarg(int) pid;
408 1.89 lukem syscallarg(int *) status;
409 1.89 lukem syscallarg(int) options;
410 1.89 lukem syscallarg(struct rusage *) rusage;
411 1.31 thorpej } */ *uap = v;
412 1.89 lukem struct proc *p, *t;
413 1.89 lukem int nfound, status, error, s;
414 1.24 cgd
415 1.26 cgd if (SCARG(uap, pid) == 0)
416 1.26 cgd SCARG(uap, pid) = -q->p_pgid;
417 1.68 thorpej if (SCARG(uap, options) &~ (WUNTRACED|WNOHANG|WALTSIG))
418 1.24 cgd return (EINVAL);
419 1.41 mikel
420 1.89 lukem loop:
421 1.24 cgd nfound = 0;
422 1.25 mycroft for (p = q->p_children.lh_first; p != 0; p = p->p_sibling.le_next) {
423 1.26 cgd if (SCARG(uap, pid) != WAIT_ANY &&
424 1.26 cgd p->p_pid != SCARG(uap, pid) &&
425 1.26 cgd p->p_pgid != -SCARG(uap, pid))
426 1.24 cgd continue;
427 1.68 thorpej /*
428 1.68 thorpej * Wait for processes with p_exitsig != SIGCHLD processes only
429 1.68 thorpej * if WALTSIG is set; wait for processes with p_exitsig ==
430 1.68 thorpej * SIGCHLD only if WALTSIG is clear.
431 1.68 thorpej */
432 1.91 thorpej if (((SCARG(uap, options) & WALLSIG) == 0) &&
433 1.91 thorpej ((SCARG(uap, options) & WALTSIG) ?
434 1.91 thorpej (p->p_exitsig == SIGCHLD) : (P_EXITSIG(p) != SIGCHLD)))
435 1.68 thorpej continue;
436 1.68 thorpej
437 1.24 cgd nfound++;
438 1.24 cgd if (p->p_stat == SZOMB) {
439 1.24 cgd retval[0] = p->p_pid;
440 1.30 christos
441 1.26 cgd if (SCARG(uap, status)) {
442 1.24 cgd status = p->p_xstat; /* convert to int */
443 1.36 christos error = copyout((caddr_t)&status,
444 1.36 christos (caddr_t)SCARG(uap, status),
445 1.36 christos sizeof(status));
446 1.36 christos if (error)
447 1.24 cgd return (error);
448 1.24 cgd }
449 1.26 cgd if (SCARG(uap, rusage) &&
450 1.26 cgd (error = copyout((caddr_t)p->p_ru,
451 1.26 cgd (caddr_t)SCARG(uap, rusage),
452 1.52 perry sizeof(struct rusage))))
453 1.24 cgd return (error);
454 1.24 cgd /*
455 1.45 mycroft * If we got the child via ptrace(2) or procfs, and
456 1.45 mycroft * the parent is different (meaning the process was
457 1.45 mycroft * attached, rather than run as a child), then we need
458 1.45 mycroft * to give it back to the old parent, and send the
459 1.68 thorpej * parent the exit signal. The rest of the cleanup
460 1.68 thorpej * will be done when the old parent waits on the child.
461 1.24 cgd */
462 1.45 mycroft if ((p->p_flag & P_TRACED) &&
463 1.45 mycroft p->p_oppid != p->p_pptr->p_pid) {
464 1.45 mycroft t = pfind(p->p_oppid);
465 1.45 mycroft proc_reparent(p, t ? t : initproc);
466 1.24 cgd p->p_oppid = 0;
467 1.45 mycroft p->p_flag &= ~(P_TRACED|P_WAITED|P_FSTRACE);
468 1.70 thorpej if (p->p_exitsig != 0)
469 1.70 thorpej psignal(p->p_pptr, P_EXITSIG(p));
470 1.45 mycroft wakeup((caddr_t)p->p_pptr);
471 1.24 cgd return (0);
472 1.24 cgd }
473 1.79 sommerfe scheduler_wait_hook(q, p);
474 1.24 cgd p->p_xstat = 0;
475 1.24 cgd ruadd(&q->p_stats->p_cru, p->p_ru);
476 1.55 thorpej pool_put(&rusage_pool, p->p_ru);
477 1.24 cgd
478 1.24 cgd /*
479 1.35 mycroft * Finally finished with old proc entry.
480 1.35 mycroft * Unlink it from its process group and free it.
481 1.35 mycroft */
482 1.35 mycroft leavepgrp(p);
483 1.56 thorpej
484 1.73 thorpej s = proclist_lock_write();
485 1.35 mycroft LIST_REMOVE(p, p_list); /* off zombproc */
486 1.73 thorpej proclist_unlock_write(s);
487 1.56 thorpej
488 1.35 mycroft LIST_REMOVE(p, p_sibling);
489 1.35 mycroft
490 1.35 mycroft /*
491 1.24 cgd * Decrement the count of procs running with this uid.
492 1.24 cgd */
493 1.24 cgd (void)chgproccnt(p->p_cred->p_ruid, -1);
494 1.24 cgd
495 1.24 cgd /*
496 1.24 cgd * Free up credentials.
497 1.24 cgd */
498 1.24 cgd if (--p->p_cred->p_refcnt == 0) {
499 1.24 cgd crfree(p->p_cred->pc_ucred);
500 1.54 thorpej pool_put(&pcred_pool, p->p_cred);
501 1.24 cgd }
502 1.24 cgd
503 1.24 cgd /*
504 1.24 cgd * Release reference to text vnode
505 1.24 cgd */
506 1.24 cgd if (p->p_textvp)
507 1.24 cgd vrele(p->p_textvp);
508 1.24 cgd
509 1.53 thorpej pool_put(&proc_pool, p);
510 1.24 cgd nprocs--;
511 1.24 cgd return (0);
512 1.24 cgd }
513 1.24 cgd if (p->p_stat == SSTOP && (p->p_flag & P_WAITED) == 0 &&
514 1.26 cgd (p->p_flag & P_TRACED || SCARG(uap, options) & WUNTRACED)) {
515 1.24 cgd p->p_flag |= P_WAITED;
516 1.24 cgd retval[0] = p->p_pid;
517 1.30 christos
518 1.26 cgd if (SCARG(uap, status)) {
519 1.24 cgd status = W_STOPCODE(p->p_xstat);
520 1.24 cgd error = copyout((caddr_t)&status,
521 1.26 cgd (caddr_t)SCARG(uap, status),
522 1.26 cgd sizeof(status));
523 1.24 cgd } else
524 1.24 cgd error = 0;
525 1.24 cgd return (error);
526 1.24 cgd }
527 1.24 cgd }
528 1.24 cgd if (nfound == 0)
529 1.24 cgd return (ECHILD);
530 1.26 cgd if (SCARG(uap, options) & WNOHANG) {
531 1.24 cgd retval[0] = 0;
532 1.24 cgd return (0);
533 1.24 cgd }
534 1.36 christos if ((error = tsleep((caddr_t)q, PWAIT | PCATCH, "wait", 0)) != 0)
535 1.24 cgd return (error);
536 1.24 cgd goto loop;
537 1.24 cgd }
538 1.24 cgd
539 1.24 cgd /*
540 1.24 cgd * make process 'parent' the new parent of process 'child'.
541 1.24 cgd */
542 1.24 cgd void
543 1.82 thorpej proc_reparent(struct proc *child, struct proc *parent)
544 1.24 cgd {
545 1.24 cgd
546 1.24 cgd if (child->p_pptr == parent)
547 1.24 cgd return;
548 1.70 thorpej
549 1.70 thorpej if (parent == initproc)
550 1.70 thorpej child->p_exitsig = SIGCHLD;
551 1.24 cgd
552 1.25 mycroft LIST_REMOVE(child, p_sibling);
553 1.25 mycroft LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
554 1.24 cgd child->p_pptr = parent;
555 1.24 cgd }
556