kern_exit.c revision 1.214 1 1.214 yamt /* $NetBSD: kern_exit.c,v 1.214 2008/10/25 14:10:26 yamt Exp $ */
2 1.56 thorpej
3 1.56 thorpej /*-
4 1.204 ad * Copyright (c) 1998, 1999, 2006, 2007, 2008 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.165 ad * NASA Ames Research Center, and by Andrew Doran.
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.58 christos *
20 1.56 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.56 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.56 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.56 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.56 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.56 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.56 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.56 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.56 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.56 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.56 thorpej * POSSIBILITY OF SUCH DAMAGE.
31 1.56 thorpej */
32 1.24 cgd
33 1.24 cgd /*
34 1.24 cgd * Copyright (c) 1982, 1986, 1989, 1991, 1993
35 1.24 cgd * The Regents of the University of California. All rights reserved.
36 1.24 cgd * (c) UNIX System Laboratories, Inc.
37 1.24 cgd * All or some portions of this file are derived from material licensed
38 1.24 cgd * to the University of California by American Telephone and Telegraph
39 1.24 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
40 1.24 cgd * the permission of UNIX System Laboratories, Inc.
41 1.24 cgd *
42 1.24 cgd * Redistribution and use in source and binary forms, with or without
43 1.24 cgd * modification, are permitted provided that the following conditions
44 1.24 cgd * are met:
45 1.24 cgd * 1. Redistributions of source code must retain the above copyright
46 1.24 cgd * notice, this list of conditions and the following disclaimer.
47 1.24 cgd * 2. Redistributions in binary form must reproduce the above copyright
48 1.24 cgd * notice, this list of conditions and the following disclaimer in the
49 1.24 cgd * documentation and/or other materials provided with the distribution.
50 1.119 agc * 3. Neither the name of the University nor the names of its contributors
51 1.24 cgd * may be used to endorse or promote products derived from this software
52 1.24 cgd * without specific prior written permission.
53 1.24 cgd *
54 1.24 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 1.24 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 1.24 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 1.24 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 1.24 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 1.24 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 1.24 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 1.24 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 1.24 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 1.24 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 1.24 cgd * SUCH DAMAGE.
65 1.24 cgd *
66 1.49 fvdl * @(#)kern_exit.c 8.10 (Berkeley) 2/23/95
67 1.24 cgd */
68 1.92 lukem
69 1.92 lukem #include <sys/cdefs.h>
70 1.214 yamt __KERNEL_RCSID(0, "$NetBSD: kern_exit.c,v 1.214 2008/10/25 14:10:26 yamt Exp $");
71 1.48 mrg
72 1.51 thorpej #include "opt_ktrace.h"
73 1.97 briggs #include "opt_perfctrs.h"
74 1.213 wrstuden #include "opt_sa.h"
75 1.60 tron #include "opt_sysv.h"
76 1.24 cgd
77 1.24 cgd #include <sys/param.h>
78 1.174 rmind #include <sys/aio.h>
79 1.24 cgd #include <sys/systm.h>
80 1.24 cgd #include <sys/ioctl.h>
81 1.24 cgd #include <sys/tty.h>
82 1.24 cgd #include <sys/time.h>
83 1.24 cgd #include <sys/resource.h>
84 1.24 cgd #include <sys/kernel.h>
85 1.24 cgd #include <sys/proc.h>
86 1.24 cgd #include <sys/buf.h>
87 1.24 cgd #include <sys/wait.h>
88 1.24 cgd #include <sys/file.h>
89 1.24 cgd #include <sys/vnode.h>
90 1.24 cgd #include <sys/syslog.h>
91 1.24 cgd #include <sys/malloc.h>
92 1.53 thorpej #include <sys/pool.h>
93 1.212 pooka #include <sys/uidinfo.h>
94 1.98 briggs #if defined(PERFCTRS)
95 1.97 briggs #include <sys/pmc.h>
96 1.98 briggs #endif
97 1.24 cgd #include <sys/ptrace.h>
98 1.29 cgd #include <sys/acct.h>
99 1.36 christos #include <sys/filedesc.h>
100 1.100 gmcgarry #include <sys/ras.h>
101 1.36 christos #include <sys/signalvar.h>
102 1.64 ross #include <sys/sched.h>
103 1.213 wrstuden #include <sys/sa.h>
104 1.213 wrstuden #include <sys/savar.h>
105 1.26 cgd #include <sys/mount.h>
106 1.26 cgd #include <sys/syscallargs.h>
107 1.156 elad #include <sys/kauth.h>
108 1.165 ad #include <sys/sleepq.h>
109 1.165 ad #include <sys/lockdebug.h>
110 1.165 ad #include <sys/ktrace.h>
111 1.189 ad #include <sys/cpu.h>
112 1.193 ad #include <sys/lwpctl.h>
113 1.194 ad #include <sys/atomic.h>
114 1.24 cgd
115 1.47 mrg #include <uvm/uvm_extern.h>
116 1.47 mrg
117 1.107 thorpej #define DEBUG_EXIT
118 1.107 thorpej
119 1.107 thorpej #ifdef DEBUG_EXIT
120 1.107 thorpej int debug_exit = 0;
121 1.107 thorpej #define DPRINTF(x) if (debug_exit) printf x
122 1.107 thorpej #else
123 1.107 thorpej #define DPRINTF(x)
124 1.107 thorpej #endif
125 1.107 thorpej
126 1.178 dsl static int find_stopped_child(struct proc *, pid_t, int, struct proc **, int *);
127 1.178 dsl static void proc_free(struct proc *, struct rusage *);
128 1.177 dsl
129 1.123 christos /*
130 1.132 jdolecek * Fill in the appropriate signal information, and signal the parent.
131 1.123 christos */
132 1.123 christos static void
133 1.162 yamt exit_psignal(struct proc *p, struct proc *pp, ksiginfo_t *ksi)
134 1.123 christos {
135 1.123 christos
136 1.163 yamt KSI_INIT(ksi);
137 1.140 pk if ((ksi->ksi_signo = P_EXITSIG(p)) == SIGCHLD) {
138 1.123 christos if (WIFSIGNALED(p->p_xstat)) {
139 1.123 christos if (WCOREDUMP(p->p_xstat))
140 1.140 pk ksi->ksi_code = CLD_DUMPED;
141 1.123 christos else
142 1.140 pk ksi->ksi_code = CLD_KILLED;
143 1.123 christos } else {
144 1.140 pk ksi->ksi_code = CLD_EXITED;
145 1.123 christos }
146 1.123 christos }
147 1.123 christos /*
148 1.165 ad * We fill those in, even for non-SIGCHLD.
149 1.165 ad * It's safe to access p->p_cred unlocked here.
150 1.123 christos */
151 1.140 pk ksi->ksi_pid = p->p_pid;
152 1.156 elad ksi->ksi_uid = kauth_cred_geteuid(p->p_cred);
153 1.140 pk ksi->ksi_status = p->p_xstat;
154 1.123 christos /* XXX: is this still valid? */
155 1.175 dsl ksi->ksi_utime = p->p_stats->p_ru.ru_utime.tv_sec;
156 1.175 dsl ksi->ksi_stime = p->p_stats->p_ru.ru_stime.tv_sec;
157 1.123 christos }
158 1.94 christos
159 1.24 cgd /*
160 1.24 cgd * exit --
161 1.24 cgd * Death of process.
162 1.24 cgd */
163 1.31 thorpej int
164 1.195 dsl sys_exit(struct lwp *l, const struct sys_exit_args *uap, register_t *retval)
165 1.31 thorpej {
166 1.195 dsl /* {
167 1.89 lukem syscallarg(int) rval;
168 1.195 dsl } */
169 1.165 ad struct proc *p = l->l_proc;
170 1.24 cgd
171 1.165 ad /* Don't call exit1() multiple times in the same process. */
172 1.204 ad mutex_enter(p->p_lock);
173 1.165 ad if (p->p_sflag & PS_WEXIT) {
174 1.204 ad mutex_exit(p->p_lock);
175 1.107 thorpej lwp_exit(l);
176 1.165 ad }
177 1.107 thorpej
178 1.165 ad /* exit1() will release the mutex. */
179 1.107 thorpej exit1(l, W_EXITCODE(SCARG(uap, rval), 0));
180 1.24 cgd /* NOTREACHED */
181 1.31 thorpej return (0);
182 1.24 cgd }
183 1.24 cgd
184 1.24 cgd /*
185 1.24 cgd * Exit: deallocate address space and other resources, change proc state
186 1.24 cgd * to zombie, and unlink proc from allproc and parent's lists. Save exit
187 1.24 cgd * status and rusage for wait(). Check for child processes and orphan them.
188 1.165 ad *
189 1.204 ad * Must be called with p->p_lock held. Does not return.
190 1.24 cgd */
191 1.31 thorpej void
192 1.107 thorpej exit1(struct lwp *l, int rv)
193 1.24 cgd {
194 1.107 thorpej struct proc *p, *q, *nq;
195 1.201 ad struct pgrp *pgrp;
196 1.140 pk ksiginfo_t ksi;
197 1.165 ad ksiginfoq_t kq;
198 1.213 wrstuden int wakeinit, sa;
199 1.24 cgd
200 1.107 thorpej p = l->l_proc;
201 1.107 thorpej
202 1.204 ad KASSERT(mutex_owned(p->p_lock));
203 1.165 ad
204 1.78 thorpej if (__predict_false(p == initproc))
205 1.24 cgd panic("init died (signal %d, exit %d)",
206 1.24 cgd WTERMSIG(rv), WEXITSTATUS(rv));
207 1.73 thorpej
208 1.213 wrstuden /*
209 1.213 wrstuden * Disable scheduler activation upcalls. We're trying to get out of
210 1.213 wrstuden * here.
211 1.213 wrstuden */
212 1.213 wrstuden sa = 0;
213 1.213 wrstuden #ifdef KERN_SA
214 1.213 wrstuden if ((p->p_sa != NULL)) {
215 1.213 wrstuden l->l_pflag |= LP_SA_NOBLOCK;
216 1.213 wrstuden sa = 1;
217 1.213 wrstuden }
218 1.213 wrstuden #endif
219 1.213 wrstuden
220 1.165 ad p->p_sflag |= PS_WEXIT;
221 1.165 ad
222 1.165 ad /*
223 1.165 ad * Force all other LWPs to exit before we do. Only then can we
224 1.165 ad * begin to tear down the rest of the process state.
225 1.165 ad */
226 1.213 wrstuden if (sa || p->p_nlwps > 1)
227 1.165 ad exit_lwps(l);
228 1.165 ad
229 1.165 ad ksiginfo_queue_init(&kq);
230 1.165 ad
231 1.165 ad /*
232 1.165 ad * If we have been asked to stop on exit, do so now.
233 1.165 ad */
234 1.211 ad if (__predict_false(p->p_sflag & PS_STOPEXIT)) {
235 1.165 ad KERNEL_UNLOCK_ALL(l, &l->l_biglocks);
236 1.165 ad sigclearall(p, &contsigmask, &kq);
237 1.165 ad p->p_waited = 0;
238 1.194 ad membar_producer();
239 1.130 atatat p->p_stat = SSTOP;
240 1.165 ad lwp_lock(l);
241 1.165 ad p->p_nrlwps--;
242 1.130 atatat l->l_stat = LSSTOP;
243 1.204 ad mutex_exit(p->p_lock);
244 1.179 yamt mi_switch(l);
245 1.165 ad KERNEL_LOCK(l->l_biglocks, l);
246 1.211 ad mutex_enter(p->p_lock);
247 1.211 ad }
248 1.211 ad
249 1.211 ad /*
250 1.211 ad * Bin any remaining signals and mark the process as dying so it will
251 1.211 ad * not be found for, e.g. signals.
252 1.211 ad */
253 1.211 ad sigfillset(&p->p_sigctx.ps_sigignore);
254 1.211 ad sigclearall(p, NULL, &kq);
255 1.211 ad p->p_stat = SDYING;
256 1.211 ad mutex_exit(p->p_lock);
257 1.211 ad ksiginfo_queue_drain(&kq);
258 1.165 ad
259 1.193 ad /* Destroy any lwpctl info. */
260 1.193 ad if (p->p_lwpctl != NULL)
261 1.193 ad lwp_ctl_exit();
262 1.193 ad
263 1.174 rmind /* Destroy all AIO works */
264 1.180 rmind aio_exit(p, p->p_aio);
265 1.174 rmind
266 1.165 ad /*
267 1.165 ad * Drain all remaining references that procfs, ptrace and others may
268 1.165 ad * have on the process.
269 1.165 ad */
270 1.191 ad rw_enter(&p->p_reflock, RW_WRITER);
271 1.112 nathanw
272 1.165 ad DPRINTF(("exit1: %d.%d exiting.\n", p->p_pid, l->l_lid));
273 1.107 thorpej
274 1.107 thorpej timers_free(p, TIMERS_ALL);
275 1.100 gmcgarry #if defined(__HAVE_RAS)
276 1.190 ad ras_purgeall();
277 1.100 gmcgarry #endif
278 1.24 cgd
279 1.24 cgd /*
280 1.165 ad * Close open files, release open-file table and free signal
281 1.165 ad * actions. This may block!
282 1.24 cgd */
283 1.200 ad fd_free();
284 1.141 pk cwdfree(p->p_cwdi);
285 1.165 ad p->p_cwdi = NULL;
286 1.93 christos doexithooks(p);
287 1.165 ad sigactsfree(p->p_sigacts);
288 1.157 ad
289 1.157 ad /*
290 1.164 ad * Write out accounting data.
291 1.157 ad */
292 1.154 christos (void)acct_process(l);
293 1.157 ad
294 1.24 cgd #ifdef KTRACE
295 1.145 perry /*
296 1.157 ad * Release trace file.
297 1.24 cgd */
298 1.165 ad if (p->p_tracep != NULL) {
299 1.185 ad mutex_enter(&ktrace_lock);
300 1.165 ad ktrderef(p);
301 1.185 ad mutex_exit(&ktrace_lock);
302 1.165 ad }
303 1.94 christos #endif
304 1.157 ad
305 1.24 cgd /*
306 1.99 manu * If emulation has process exit hook, call it now.
307 1.158 manu * Set the exit status now so that the exit hook has
308 1.158 manu * an opportunity to tweak it (COMPAT_LINUX requires
309 1.158 manu * this for thread group emulation)
310 1.99 manu */
311 1.158 manu p->p_xstat = rv;
312 1.99 manu if (p->p_emul->e_proc_exit)
313 1.99 manu (*p->p_emul->e_proc_exit)(p);
314 1.99 manu
315 1.160 thorpej /*
316 1.140 pk * Free the VM resources we're still holding on to.
317 1.140 pk * We must do this from a valid thread because doing
318 1.140 pk * so may block. This frees vmspace, which we don't
319 1.140 pk * need anymore. The only remaining lwp is the one
320 1.140 pk * we run at this moment, nothing runs in userland
321 1.140 pk * anymore.
322 1.140 pk */
323 1.140 pk uvm_proc_exit(p);
324 1.140 pk
325 1.140 pk /*
326 1.165 ad * Stop profiling.
327 1.140 pk */
328 1.211 ad if (__predict_false((p->p_stflag & PST_PROFIL) != 0)) {
329 1.165 ad mutex_spin_enter(&p->p_stmutex);
330 1.165 ad stopprofclock(p);
331 1.165 ad mutex_spin_exit(&p->p_stmutex);
332 1.165 ad }
333 1.140 pk
334 1.140 pk /*
335 1.214 yamt * If parent is waiting for us to exit or exec, PL_PPWAIT is set; we
336 1.165 ad * wake up the parent early to avoid deadlock. We can do this once
337 1.165 ad * the VM resources are released.
338 1.140 pk */
339 1.203 ad mutex_enter(proc_lock);
340 1.211 ad if (p->p_lflag & PL_PPWAIT) {
341 1.211 ad p->p_lflag &= ~PL_PPWAIT;
342 1.184 ad cv_broadcast(&p->p_pptr->p_waitcv);
343 1.165 ad }
344 1.165 ad
345 1.165 ad if (SESS_LEADER(p)) {
346 1.165 ad struct vnode *vprele = NULL, *vprevoke = NULL;
347 1.165 ad struct session *sp = p->p_session;
348 1.165 ad struct tty *tp;
349 1.165 ad
350 1.165 ad if (sp->s_ttyvp) {
351 1.165 ad /*
352 1.165 ad * Controlling process.
353 1.165 ad * Signal foreground pgrp,
354 1.165 ad * drain controlling terminal
355 1.165 ad * and revoke access to controlling terminal.
356 1.165 ad */
357 1.165 ad tp = sp->s_ttyp;
358 1.192 ad mutex_spin_enter(&tty_lock);
359 1.165 ad if (tp->t_session == sp) {
360 1.165 ad /* we can't guarantee the revoke will do this */
361 1.201 ad pgrp = tp->t_pgrp;
362 1.165 ad tp->t_pgrp = NULL;
363 1.165 ad tp->t_session = NULL;
364 1.192 ad mutex_spin_exit(&tty_lock);
365 1.201 ad if (pgrp != NULL) {
366 1.201 ad pgsignal(pgrp, SIGHUP, 1);
367 1.201 ad }
368 1.203 ad mutex_exit(proc_lock);
369 1.165 ad (void) ttywait(tp);
370 1.203 ad mutex_enter(proc_lock);
371 1.165 ad
372 1.198 ad /* The tty could have been revoked. */
373 1.165 ad vprevoke = sp->s_ttyvp;
374 1.192 ad } else
375 1.192 ad mutex_spin_exit(&tty_lock);
376 1.165 ad vprele = sp->s_ttyvp;
377 1.165 ad sp->s_ttyvp = NULL;
378 1.165 ad /*
379 1.165 ad * s_ttyp is not zero'd; we use this to indicate
380 1.165 ad * that the session once had a controlling terminal.
381 1.165 ad * (for logging and informational purposes)
382 1.165 ad */
383 1.165 ad }
384 1.165 ad sp->s_leader = NULL;
385 1.140 pk
386 1.165 ad if (vprevoke != NULL || vprele != NULL) {
387 1.198 ad if (vprevoke != NULL) {
388 1.198 ad SESSRELE(sp);
389 1.203 ad mutex_exit(proc_lock);
390 1.165 ad VOP_REVOKE(vprevoke, REVOKEALL);
391 1.198 ad } else
392 1.203 ad mutex_exit(proc_lock);
393 1.165 ad if (vprele != NULL)
394 1.165 ad vrele(vprele);
395 1.203 ad mutex_enter(proc_lock);
396 1.165 ad }
397 1.165 ad }
398 1.165 ad fixjobc(p, p->p_pgrp, 0);
399 1.140 pk
400 1.140 pk /*
401 1.171 ad * Finalize the last LWP's specificdata, as well as the
402 1.171 ad * specificdata for the proc itself.
403 1.171 ad */
404 1.171 ad lwp_finispecific(l);
405 1.171 ad proc_finispecific(p);
406 1.171 ad
407 1.171 ad /*
408 1.140 pk * Notify interested parties of our demise.
409 1.140 pk */
410 1.140 pk KNOTE(&p->p_klist, NOTE_EXIT);
411 1.140 pk
412 1.140 pk #if PERFCTRS
413 1.140 pk /*
414 1.140 pk * Save final PMC information in parent process & clean up.
415 1.140 pk */
416 1.140 pk if (PMC_ENABLED(p)) {
417 1.140 pk pmc_save_context(p);
418 1.140 pk pmc_accumulate(p->p_pptr, p);
419 1.140 pk pmc_process_exit(p);
420 1.140 pk }
421 1.140 pk #endif
422 1.140 pk
423 1.140 pk /*
424 1.128 dsl * Reset p_opptr pointer of all former children which got
425 1.128 dsl * traced by another process and were reparented. We reset
426 1.128 dsl * it to NULL here; the trace detach code then reparents
427 1.128 dsl * the child to initproc. We only check allproc list, since
428 1.128 dsl * eventual former children on zombproc list won't reference
429 1.128 dsl * p_opptr anymore.
430 1.128 dsl */
431 1.208 ad if (__predict_false(p->p_slflag & PSL_CHTRACED)) {
432 1.143 yamt PROCLIST_FOREACH(q, &allproc) {
433 1.208 ad if ((q->p_flag & PK_MARKER) != 0)
434 1.208 ad continue;
435 1.128 dsl if (q->p_opptr == p)
436 1.128 dsl q->p_opptr = NULL;
437 1.128 dsl }
438 1.128 dsl }
439 1.128 dsl
440 1.128 dsl /*
441 1.72 thorpej * Give orphaned children to init(8).
442 1.72 thorpej */
443 1.101 matt q = LIST_FIRST(&p->p_children);
444 1.165 ad wakeinit = (q != NULL);
445 1.132 jdolecek for (; q != NULL; q = nq) {
446 1.101 matt nq = LIST_NEXT(q, p_sibling);
447 1.104 jdolecek
448 1.24 cgd /*
449 1.104 jdolecek * Traced processes are killed since their existence
450 1.104 jdolecek * means someone is screwing up. Since we reset the
451 1.104 jdolecek * trace flags, the logic in sys_wait4() would not be
452 1.104 jdolecek * triggered to reparent the process to its
453 1.106 jdolecek * original parent, so we must do this here.
454 1.24 cgd */
455 1.211 ad if (__predict_false(q->p_slflag & PSL_TRACED)) {
456 1.204 ad mutex_enter(p->p_lock);
457 1.165 ad q->p_slflag &= ~(PSL_TRACED|PSL_FSTRACE|PSL_SYSCALL);
458 1.204 ad mutex_exit(p->p_lock);
459 1.104 jdolecek if (q->p_opptr != q->p_pptr) {
460 1.104 jdolecek struct proc *t = q->p_opptr;
461 1.104 jdolecek proc_reparent(q, t ? t : initproc);
462 1.104 jdolecek q->p_opptr = NULL;
463 1.105 jdolecek } else
464 1.105 jdolecek proc_reparent(q, initproc);
465 1.153 jdolecek killproc(q, "orphaned traced process");
466 1.165 ad } else
467 1.104 jdolecek proc_reparent(q, initproc);
468 1.24 cgd }
469 1.115 dsl
470 1.115 dsl /*
471 1.165 ad * Move proc from allproc to zombproc, it's now nearly ready to be
472 1.165 ad * collected by parent.
473 1.115 dsl */
474 1.165 ad LIST_REMOVE(l, l_list);
475 1.115 dsl LIST_REMOVE(p, p_list);
476 1.115 dsl LIST_INSERT_HEAD(&zombproc, p, p_list);
477 1.133 jdolecek
478 1.165 ad /*
479 1.165 ad * Mark the process as dead. We must do this before we signal
480 1.165 ad * the parent.
481 1.165 ad */
482 1.165 ad p->p_stat = SDEAD;
483 1.133 jdolecek
484 1.133 jdolecek /* Put in front of parent's sibling list for parent to collect it */
485 1.133 jdolecek q = p->p_pptr;
486 1.133 jdolecek q->p_nstopchild++;
487 1.133 jdolecek if (LIST_FIRST(&q->p_children) != p) {
488 1.133 jdolecek /* Put child where it can be found quickly */
489 1.133 jdolecek LIST_REMOVE(p, p_sibling);
490 1.133 jdolecek LIST_INSERT_HEAD(&q->p_children, p, p_sibling);
491 1.133 jdolecek }
492 1.133 jdolecek
493 1.59 christos /*
494 1.59 christos * Notify parent that we're gone. If parent has the P_NOCLDWAIT
495 1.59 christos * flag set, notify init instead (and hope it will handle
496 1.59 christos * this situation).
497 1.59 christos */
498 1.167 pavel if (q->p_flag & (PK_NOCLDWAIT|PK_CLDSIGIGN)) {
499 1.59 christos proc_reparent(p, initproc);
500 1.165 ad wakeinit = 1;
501 1.133 jdolecek
502 1.59 christos /*
503 1.59 christos * If this was the last child of our parent, notify
504 1.59 christos * parent, so in case he was wait(2)ing, he will
505 1.59 christos * continue.
506 1.59 christos */
507 1.140 pk if (LIST_FIRST(&q->p_children) == NULL)
508 1.184 ad cv_broadcast(&q->p_waitcv);
509 1.59 christos }
510 1.24 cgd
511 1.140 pk /* Reload parent pointer, since p may have been reparented above */
512 1.140 pk q = p->p_pptr;
513 1.140 pk
514 1.211 ad if (__predict_false((p->p_slflag & PSL_FSTRACE) == 0 && p->p_exitsig != 0)) {
515 1.140 pk exit_psignal(p, q, &ksi);
516 1.165 ad kpsignal(q, &ksi, NULL);
517 1.140 pk }
518 1.140 pk
519 1.175 dsl /* Calculate the final rusage info. */
520 1.175 dsl calcru(p, &p->p_stats->p_ru.ru_utime, &p->p_stats->p_ru.ru_stime,
521 1.175 dsl NULL, NULL);
522 1.140 pk
523 1.165 ad if (wakeinit)
524 1.184 ad cv_broadcast(&initproc->p_waitcv);
525 1.165 ad
526 1.187 ad callout_destroy(&l->l_timeout_ch);
527 1.183 ad
528 1.165 ad /*
529 1.165 ad * Remaining lwp resources will be freed in lwp_exit2() once we've
530 1.165 ad * switch to idle context; at that point, we will be marked as a
531 1.165 ad * full blown zombie.
532 1.165 ad */
533 1.204 ad mutex_enter(p->p_lock);
534 1.165 ad lwp_drainrefs(l);
535 1.165 ad lwp_lock(l);
536 1.165 ad l->l_prflag &= ~LPR_DETACHED;
537 1.165 ad l->l_stat = LSZOMB;
538 1.165 ad lwp_unlock(l);
539 1.165 ad KASSERT(curlwp == l);
540 1.165 ad KASSERT(p->p_nrlwps == 1);
541 1.165 ad KASSERT(p->p_nlwps == 1);
542 1.165 ad p->p_stat = SZOMB;
543 1.165 ad p->p_nrlwps--;
544 1.165 ad p->p_nzlwps++;
545 1.165 ad p->p_ndlwps = 0;
546 1.204 ad mutex_exit(p->p_lock);
547 1.140 pk
548 1.165 ad /*
549 1.165 ad * Signal the parent to collect us, and drop the proclist lock.
550 1.191 ad * Drop debugger/procfs lock; no new references can be gained.
551 1.165 ad */
552 1.184 ad cv_broadcast(&p->p_pptr->p_waitcv);
553 1.203 ad mutex_exit(proc_lock);
554 1.191 ad rw_exit(&p->p_reflock);
555 1.140 pk
556 1.165 ad /* Verify that we hold no locks other than the kernel lock. */
557 1.165 ad LOCKDEBUG_BARRIER(&kernel_lock, 0);
558 1.85 thorpej
559 1.165 ad /*
560 1.165 ad * NOTE: WE ARE NO LONGER ALLOWED TO SLEEP!
561 1.165 ad */
562 1.157 ad
563 1.165 ad /*
564 1.165 ad * Give machine-dependent code a chance to free any MD LWP
565 1.165 ad * resources. This must be done before uvm_lwp_exit(), in
566 1.165 ad * case these resources are in the PCB.
567 1.165 ad */
568 1.165 ad #ifndef __NO_CPU_LWP_FREE
569 1.165 ad cpu_lwp_free(l, 1);
570 1.133 jdolecek #endif
571 1.165 ad pmap_deactivate(l);
572 1.133 jdolecek
573 1.140 pk /* This process no longer needs to hold the kernel lock. */
574 1.165 ad #ifdef notyet
575 1.165 ad /* XXXSMP hold in lwp_userret() */
576 1.165 ad KERNEL_UNLOCK_LAST(l);
577 1.165 ad #else
578 1.165 ad KERNEL_UNLOCK_ALL(l, NULL);
579 1.165 ad #endif
580 1.140 pk
581 1.179 yamt lwp_exit_switchaway(l);
582 1.107 thorpej }
583 1.107 thorpej
584 1.107 thorpej void
585 1.107 thorpej exit_lwps(struct lwp *l)
586 1.107 thorpej {
587 1.107 thorpej struct proc *p;
588 1.107 thorpej struct lwp *l2;
589 1.165 ad int error;
590 1.165 ad lwpid_t waited;
591 1.165 ad int nlocks;
592 1.165 ad
593 1.165 ad KERNEL_UNLOCK_ALL(l, &nlocks);
594 1.107 thorpej
595 1.107 thorpej p = l->l_proc;
596 1.204 ad KASSERT(mutex_owned(p->p_lock));
597 1.107 thorpej
598 1.213 wrstuden #if 0
599 1.213 wrstuden if (p->p_sa != NULL) {
600 1.213 wrstuden SLIST_FOREACH(vp, &p->p_sa->sa_vps, savp_next) {
601 1.213 wrstuden /*
602 1.213 wrstuden * Make SA-cached LWPs normal process runnable
603 1.213 wrstuden * LWPs so that they'll also self-destruct.
604 1.213 wrstuden */
605 1.213 wrstuden DPRINTF(("exit_lwps: Making cached LWPs of %d on "
606 1.213 wrstuden "VP %d runnable: ", p->p_pid, vp->savp_id));
607 1.213 wrstuden while ((l2 = sa_getcachelwp(p, vp)) != 0) {
608 1.213 wrstuden lwp_lock(l2);
609 1.213 wrstuden l2->l_flag = (l2->l_flag & ~LW_SA) | LW_WEXIT;
610 1.213 wrstuden l2->l_priority = MAXPRI_USER; /* XXX WRS needs thought */
611 1.213 wrstuden
612 1.213 wrstuden /* setrunnable() will release the mutex. */
613 1.213 wrstuden setrunnable(l2);
614 1.213 wrstuden DPRINTF(("%d ", l2->l_lid));
615 1.213 wrstuden }
616 1.213 wrstuden DPRINTF(("\n"));
617 1.213 wrstuden
618 1.213 wrstuden /*
619 1.213 wrstuden * Clear wokenq, the LWPs on the queue will
620 1.213 wrstuden * run below. Workes as these threads are still
621 1.213 wrstuden * on the p_lwps list (even though they are no longer
622 1.213 wrstuden * counted).
623 1.213 wrstuden */
624 1.213 wrstuden TAILQ_INIT(&vp->savp_woken);
625 1.213 wrstuden }
626 1.213 wrstuden }
627 1.213 wrstuden #endif
628 1.213 wrstuden
629 1.165 ad retry:
630 1.107 thorpej /*
631 1.107 thorpej * Interrupt LWPs in interruptable sleep, unsuspend suspended
632 1.165 ad * LWPs and then wait for everyone else to finish.
633 1.107 thorpej */
634 1.107 thorpej LIST_FOREACH(l2, &p->p_lwps, l_sibling) {
635 1.165 ad if (l2 == l)
636 1.165 ad continue;
637 1.165 ad lwp_lock(l2);
638 1.213 wrstuden l2->l_flag &= ~LW_SA;
639 1.167 pavel l2->l_flag |= LW_WEXIT;
640 1.167 pavel if ((l2->l_stat == LSSLEEP && (l2->l_flag & LW_SINTR)) ||
641 1.118 fvdl l2->l_stat == LSSUSPENDED || l2->l_stat == LSSTOP) {
642 1.165 ad /* setrunnable() will release the lock. */
643 1.107 thorpej setrunnable(l2);
644 1.107 thorpej DPRINTF(("exit_lwps: Made %d.%d runnable\n",
645 1.107 thorpej p->p_pid, l2->l_lid));
646 1.165 ad continue;
647 1.107 thorpej }
648 1.165 ad lwp_unlock(l2);
649 1.107 thorpej }
650 1.107 thorpej while (p->p_nlwps > 1) {
651 1.165 ad DPRINTF(("exit_lwps: waiting for %d LWPs (%d zombies)\n",
652 1.165 ad p->p_nlwps, p->p_nzlwps));
653 1.107 thorpej error = lwp_wait1(l, 0, &waited, LWPWAIT_EXITCONTROL);
654 1.165 ad if (p->p_nlwps == 1)
655 1.165 ad break;
656 1.150 yamt if (error == EDEADLK) {
657 1.150 yamt /*
658 1.150 yamt * LWPs can get suspended/slept behind us.
659 1.150 yamt * (eg. sa_setwoken)
660 1.150 yamt * kick them again and retry.
661 1.150 yamt */
662 1.150 yamt goto retry;
663 1.150 yamt }
664 1.107 thorpej if (error)
665 1.147 christos panic("exit_lwps: lwp_wait1 failed with error %d",
666 1.107 thorpej error);
667 1.107 thorpej DPRINTF(("exit_lwps: Got LWP %d from lwp_wait1()\n", waited));
668 1.145 perry }
669 1.107 thorpej
670 1.209 ad KERNEL_LOCK(nlocks, l);
671 1.181 yamt KASSERT(p->p_nlwps == 1);
672 1.24 cgd }
673 1.24 cgd
674 1.24 cgd int
675 1.177 dsl do_sys_wait(struct lwp *l, int *pid, int *status, int options,
676 1.177 dsl struct rusage *ru, int *was_zombie)
677 1.177 dsl {
678 1.177 dsl struct proc *child;
679 1.177 dsl int error;
680 1.177 dsl
681 1.203 ad mutex_enter(proc_lock);
682 1.177 dsl error = find_stopped_child(l->l_proc, *pid, options, &child, status);
683 1.177 dsl
684 1.177 dsl if (child == NULL) {
685 1.203 ad mutex_exit(proc_lock);
686 1.177 dsl *pid = 0;
687 1.177 dsl return error;
688 1.177 dsl }
689 1.177 dsl
690 1.177 dsl *pid = child->p_pid;
691 1.177 dsl
692 1.177 dsl if (child->p_stat == SZOMB) {
693 1.203 ad /* proc_free() will release the proc_lock. */
694 1.177 dsl *was_zombie = 1;
695 1.177 dsl if (options & WNOWAIT)
696 1.203 ad mutex_exit(proc_lock);
697 1.177 dsl else {
698 1.178 dsl proc_free(child, ru);
699 1.177 dsl }
700 1.177 dsl } else {
701 1.177 dsl /* Child state must have been SSTOP. */
702 1.177 dsl *was_zombie = 0;
703 1.203 ad mutex_exit(proc_lock);
704 1.177 dsl *status = W_STOPCODE(*status);
705 1.177 dsl }
706 1.177 dsl
707 1.177 dsl return 0;
708 1.177 dsl }
709 1.177 dsl
710 1.177 dsl int
711 1.195 dsl sys_wait4(struct lwp *l, const struct sys_wait4_args *uap, register_t *retval)
712 1.31 thorpej {
713 1.195 dsl /* {
714 1.89 lukem syscallarg(int) pid;
715 1.89 lukem syscallarg(int *) status;
716 1.89 lukem syscallarg(int) options;
717 1.89 lukem syscallarg(struct rusage *) rusage;
718 1.195 dsl } */
719 1.109 dsl int status, error;
720 1.177 dsl int was_zombie;
721 1.166 ad struct rusage ru;
722 1.195 dsl int pid = SCARG(uap, pid);
723 1.24 cgd
724 1.195 dsl error = do_sys_wait(l, &pid, &status, SCARG(uap, options),
725 1.177 dsl SCARG(uap, rusage) != NULL ? &ru : NULL, &was_zombie);
726 1.107 thorpej
727 1.195 dsl retval[0] = pid;
728 1.195 dsl if (pid == 0)
729 1.109 dsl return error;
730 1.165 ad
731 1.177 dsl if (SCARG(uap, rusage))
732 1.177 dsl error = copyout(&ru, SCARG(uap, rusage), sizeof(ru));
733 1.109 dsl
734 1.177 dsl if (error == 0 && SCARG(uap, status))
735 1.177 dsl error = copyout(&status, SCARG(uap, status), sizeof(status));
736 1.109 dsl
737 1.177 dsl return error;
738 1.109 dsl }
739 1.109 dsl
740 1.109 dsl /*
741 1.109 dsl * Scan list of child processes for a child process that has stopped or
742 1.109 dsl * exited. Used by sys_wait4 and 'compat' equivalents.
743 1.165 ad *
744 1.203 ad * Must be called with the proc_lock held, and may release while waiting.
745 1.109 dsl */
746 1.177 dsl static int
747 1.109 dsl find_stopped_child(struct proc *parent, pid_t pid, int options,
748 1.165 ad struct proc **child_p, int *status_p)
749 1.109 dsl {
750 1.165 ad struct proc *child, *dead;
751 1.128 dsl int error;
752 1.68 thorpej
753 1.203 ad KASSERT(mutex_owned(proc_lock));
754 1.165 ad
755 1.177 dsl if (options & ~(WUNTRACED|WNOHANG|WALTSIG|WALLSIG)
756 1.177 dsl && !(options & WOPTSCHECKED)) {
757 1.177 dsl *child_p = NULL;
758 1.177 dsl return EINVAL;
759 1.177 dsl }
760 1.177 dsl
761 1.177 dsl if (pid == 0 && !(options & WOPTSCHECKED))
762 1.177 dsl pid = -parent->p_pgid;
763 1.177 dsl
764 1.120 yamt for (;;) {
765 1.128 dsl error = ECHILD;
766 1.165 ad dead = NULL;
767 1.165 ad
768 1.109 dsl LIST_FOREACH(child, &parent->p_children, p_sibling) {
769 1.128 dsl if (pid >= 0) {
770 1.128 dsl if (child->p_pid != pid) {
771 1.128 dsl child = p_find(pid, PFIND_ZOMBIE |
772 1.165 ad PFIND_LOCKED);
773 1.165 ad if (child == NULL ||
774 1.165 ad child->p_pptr != parent) {
775 1.128 dsl child = NULL;
776 1.128 dsl break;
777 1.128 dsl }
778 1.128 dsl }
779 1.165 ad } else if (pid != WAIT_ANY && child->p_pgid != -pid) {
780 1.165 ad /* Child not in correct pgrp */
781 1.165 ad continue;
782 1.165 ad }
783 1.165 ad
784 1.109 dsl /*
785 1.109 dsl * Wait for processes with p_exitsig != SIGCHLD
786 1.109 dsl * processes only if WALTSIG is set; wait for
787 1.109 dsl * processes with p_exitsig == SIGCHLD only
788 1.109 dsl * if WALTSIG is clear.
789 1.109 dsl */
790 1.109 dsl if (((options & WALLSIG) == 0) &&
791 1.109 dsl (options & WALTSIG ? child->p_exitsig == SIGCHLD
792 1.128 dsl : P_EXITSIG(child) != SIGCHLD)){
793 1.128 dsl if (child->p_pid == pid) {
794 1.128 dsl child = NULL;
795 1.128 dsl break;
796 1.128 dsl }
797 1.109 dsl continue;
798 1.128 dsl }
799 1.109 dsl
800 1.128 dsl error = 0;
801 1.165 ad if ((options & WNOZOMBIE) == 0) {
802 1.165 ad if (child->p_stat == SZOMB)
803 1.165 ad break;
804 1.165 ad if (child->p_stat == SDEAD) {
805 1.165 ad /*
806 1.165 ad * We may occasionally arrive here
807 1.165 ad * after receiving a signal, but
808 1.165 ad * immediatley before the child
809 1.165 ad * process is zombified. The wait
810 1.165 ad * will be short, so avoid returning
811 1.165 ad * to userspace.
812 1.165 ad */
813 1.165 ad dead = child;
814 1.165 ad }
815 1.165 ad }
816 1.109 dsl
817 1.109 dsl if (child->p_stat == SSTOP &&
818 1.165 ad child->p_waited == 0 &&
819 1.165 ad (child->p_slflag & PSL_TRACED ||
820 1.165 ad options & WUNTRACED)) {
821 1.128 dsl if ((options & WNOWAIT) == 0) {
822 1.165 ad child->p_waited = 1;
823 1.128 dsl parent->p_nstopchild--;
824 1.128 dsl }
825 1.128 dsl break;
826 1.128 dsl }
827 1.128 dsl if (parent->p_nstopchild == 0 || child->p_pid == pid) {
828 1.128 dsl child = NULL;
829 1.128 dsl break;
830 1.24 cgd }
831 1.109 dsl }
832 1.165 ad
833 1.165 ad if (child != NULL || error != 0 ||
834 1.165 ad ((options & WNOHANG) != 0 && dead == NULL)) {
835 1.176 dsl if (child != NULL) {
836 1.165 ad *status_p = child->p_xstat;
837 1.176 dsl }
838 1.128 dsl *child_p = child;
839 1.128 dsl return error;
840 1.109 dsl }
841 1.165 ad
842 1.165 ad /*
843 1.165 ad * Wait for another child process to stop.
844 1.165 ad */
845 1.203 ad error = cv_wait_sig(&parent->p_waitcv, proc_lock);
846 1.165 ad
847 1.177 dsl if (error != 0) {
848 1.177 dsl *child_p = NULL;
849 1.109 dsl return error;
850 1.177 dsl }
851 1.109 dsl }
852 1.109 dsl }
853 1.109 dsl
854 1.109 dsl /*
855 1.165 ad * Free a process after parent has taken all the state info. Must be called
856 1.169 ad * with the proclist lock held, and will release before returning.
857 1.165 ad *
858 1.165 ad * *ru is returned to the caller, and must be freed by the caller.
859 1.109 dsl */
860 1.178 dsl static void
861 1.178 dsl proc_free(struct proc *p, struct rusage *ru)
862 1.109 dsl {
863 1.165 ad struct proc *parent;
864 1.165 ad struct lwp *l;
865 1.140 pk ksiginfo_t ksi;
866 1.182 ad kauth_cred_t cred1, cred2;
867 1.165 ad uid_t uid;
868 1.24 cgd
869 1.203 ad KASSERT(mutex_owned(proc_lock));
870 1.165 ad KASSERT(p->p_nlwps == 1);
871 1.165 ad KASSERT(p->p_nzlwps == 1);
872 1.137 yamt KASSERT(p->p_nrlwps == 0);
873 1.165 ad KASSERT(p->p_stat == SZOMB);
874 1.137 yamt
875 1.109 dsl /*
876 1.109 dsl * If we got the child via ptrace(2) or procfs, and
877 1.109 dsl * the parent is different (meaning the process was
878 1.109 dsl * attached, rather than run as a child), then we need
879 1.109 dsl * to give it back to the old parent, and send the
880 1.109 dsl * parent the exit signal. The rest of the cleanup
881 1.109 dsl * will be done when the old parent waits on the child.
882 1.109 dsl */
883 1.165 ad if ((p->p_slflag & PSL_TRACED) != 0) {
884 1.165 ad parent = p->p_pptr;
885 1.165 ad if (p->p_opptr != parent){
886 1.204 ad mutex_enter(p->p_lock);
887 1.165 ad p->p_slflag &= ~(PSL_TRACED|PSL_FSTRACE|PSL_SYSCALL);
888 1.204 ad mutex_exit(p->p_lock);
889 1.165 ad parent = p->p_opptr;
890 1.165 ad if (parent == NULL)
891 1.165 ad parent = initproc;
892 1.165 ad proc_reparent(p, parent);
893 1.165 ad p->p_opptr = NULL;
894 1.165 ad if (p->p_exitsig != 0) {
895 1.165 ad exit_psignal(p, parent, &ksi);
896 1.165 ad kpsignal(parent, &ksi, NULL);
897 1.165 ad }
898 1.184 ad cv_broadcast(&parent->p_waitcv);
899 1.203 ad mutex_exit(proc_lock);
900 1.165 ad return;
901 1.140 pk }
902 1.109 dsl }
903 1.109 dsl
904 1.165 ad /*
905 1.165 ad * Finally finished with old proc entry. Unlink it from its process
906 1.165 ad * group.
907 1.165 ad */
908 1.165 ad leavepgrp(p);
909 1.165 ad
910 1.165 ad parent = p->p_pptr;
911 1.179 yamt sched_proc_exit(parent, p);
912 1.202 ad
913 1.178 dsl /*
914 1.178 dsl * Add child times of exiting process onto its own times.
915 1.178 dsl * This cannot be done any earlier else it might get done twice.
916 1.178 dsl */
917 1.202 ad l = LIST_FIRST(&p->p_lwps);
918 1.202 ad p->p_stats->p_ru.ru_nvcsw += (l->l_ncsw - l->l_nivcsw);
919 1.202 ad p->p_stats->p_ru.ru_nivcsw += l->l_nivcsw;
920 1.202 ad ruadd(&p->p_stats->p_ru, &l->l_ru);
921 1.178 dsl ruadd(&p->p_stats->p_ru, &p->p_stats->p_cru);
922 1.175 dsl ruadd(&parent->p_stats->p_cru, &p->p_stats->p_ru);
923 1.178 dsl if (ru != NULL)
924 1.178 dsl *ru = p->p_stats->p_ru;
925 1.109 dsl p->p_xstat = 0;
926 1.115 dsl
927 1.213 wrstuden /* Release any SA state. */
928 1.213 wrstuden #ifdef KERN_SA
929 1.213 wrstuden if (p->p_sa)
930 1.213 wrstuden sa_release(p);
931 1.213 wrstuden #endif
932 1.213 wrstuden
933 1.115 dsl /*
934 1.165 ad * At this point we are going to start freeing the final resources.
935 1.165 ad * If anyone tries to access the proc structure after here they will
936 1.165 ad * get a shock - bits are missing. Attempt to make it hard! We
937 1.165 ad * don't bother with any further locking past this point.
938 1.115 dsl */
939 1.165 ad p->p_stat = SIDL; /* not even a zombie any more */
940 1.165 ad LIST_REMOVE(p, p_list); /* off zombproc */
941 1.165 ad parent = p->p_pptr;
942 1.165 ad p->p_pptr->p_nstopchild--;
943 1.165 ad LIST_REMOVE(p, p_sibling);
944 1.115 dsl
945 1.188 ad /*
946 1.188 ad * Let pid be reallocated.
947 1.188 ad */
948 1.188 ad proc_free_pid(p);
949 1.203 ad mutex_exit(proc_lock);
950 1.182 ad
951 1.109 dsl /*
952 1.188 ad * Delay release until after lwp_free.
953 1.109 dsl */
954 1.182 ad cred2 = l->l_cred;
955 1.182 ad
956 1.182 ad /*
957 1.188 ad * Free the last LWP's resources.
958 1.188 ad *
959 1.188 ad * lwp_free ensures the LWP is no longer running on another CPU.
960 1.182 ad */
961 1.182 ad lwp_free(l, false, true);
962 1.56 thorpej
963 1.165 ad /*
964 1.188 ad * Now no one except us can reach the process p.
965 1.165 ad */
966 1.35 mycroft
967 1.109 dsl /*
968 1.109 dsl * Decrement the count of procs running with this uid.
969 1.109 dsl */
970 1.188 ad cred1 = p->p_cred;
971 1.188 ad uid = kauth_cred_getuid(cred1);
972 1.165 ad (void)chgproccnt(uid, -1);
973 1.24 cgd
974 1.109 dsl /*
975 1.165 ad * Release substructures.
976 1.109 dsl */
977 1.188 ad
978 1.188 ad limfree(p->p_limit);
979 1.188 ad pstatsfree(p->p_stats);
980 1.182 ad kauth_cred_free(cred1);
981 1.182 ad kauth_cred_free(cred2);
982 1.107 thorpej
983 1.109 dsl /*
984 1.109 dsl * Release reference to text vnode
985 1.109 dsl */
986 1.188 ad if (p->p_textvp)
987 1.188 ad vrele(p->p_textvp);
988 1.188 ad
989 1.198 ad mutex_destroy(&p->p_auxlock);
990 1.204 ad mutex_obj_free(p->p_lock);
991 1.188 ad mutex_destroy(&p->p_stmutex);
992 1.188 ad cv_destroy(&p->p_waitcv);
993 1.188 ad cv_destroy(&p->p_lwpcv);
994 1.191 ad rw_destroy(&p->p_reflock);
995 1.188 ad
996 1.196 ad proc_free_mem(p);
997 1.24 cgd }
998 1.24 cgd
999 1.24 cgd /*
1000 1.24 cgd * make process 'parent' the new parent of process 'child'.
1001 1.128 dsl *
1002 1.203 ad * Must be called with proc_lock held.
1003 1.24 cgd */
1004 1.24 cgd void
1005 1.82 thorpej proc_reparent(struct proc *child, struct proc *parent)
1006 1.24 cgd {
1007 1.24 cgd
1008 1.203 ad KASSERT(mutex_owned(proc_lock));
1009 1.165 ad
1010 1.24 cgd if (child->p_pptr == parent)
1011 1.24 cgd return;
1012 1.70 thorpej
1013 1.165 ad if (child->p_stat == SZOMB ||
1014 1.165 ad (child->p_stat == SSTOP && !child->p_waited)) {
1015 1.128 dsl child->p_pptr->p_nstopchild--;
1016 1.128 dsl parent->p_nstopchild++;
1017 1.128 dsl }
1018 1.70 thorpej if (parent == initproc)
1019 1.70 thorpej child->p_exitsig = SIGCHLD;
1020 1.24 cgd
1021 1.25 mycroft LIST_REMOVE(child, p_sibling);
1022 1.25 mycroft LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
1023 1.24 cgd child->p_pptr = parent;
1024 1.210 ad child->p_ppid = parent->p_pid;
1025 1.24 cgd }
1026