kern_exit.c revision 70143
1/*
2 * Copyright (c) 1982, 1986, 1989, 1991, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 *    must display the following acknowledgement:
20 *	This product includes software developed by the University of
21 *	California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 *    may be used to endorse or promote products derived from this software
24 *    without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 *	@(#)kern_exit.c	8.7 (Berkeley) 2/12/94
39 * $FreeBSD: head/sys/kern/kern_exit.c 70143 2000-12-18 07:10:04Z jake $
40 */
41
42#include "opt_compat.h"
43#include "opt_ktrace.h"
44
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/sysproto.h>
48#include <sys/kernel.h>
49#include <sys/malloc.h>
50#include <sys/mutex.h>
51#include <sys/proc.h>
52#include <sys/pioctl.h>
53#include <sys/tty.h>
54#include <sys/wait.h>
55#include <sys/vnode.h>
56#include <sys/resourcevar.h>
57#include <sys/signalvar.h>
58#include <sys/ptrace.h>
59#include <sys/acct.h>		/* for acct_process() function prototype */
60#include <sys/filedesc.h>
61#include <sys/shm.h>
62#include <sys/sem.h>
63#include <sys/aio.h>
64#include <sys/jail.h>
65
66#include <vm/vm.h>
67#include <vm/vm_param.h>
68#include <sys/lock.h>
69#include <vm/pmap.h>
70#include <vm/vm_map.h>
71#include <vm/vm_zone.h>
72#include <sys/user.h>
73
74/* Required to be non-static for SysVR4 emulator */
75MALLOC_DEFINE(M_ZOMBIE, "zombie", "zombie proc status");
76
77static MALLOC_DEFINE(M_ATEXIT, "atexit", "atexit callback");
78
79static int wait1 __P((struct proc *, struct wait_args *, int));
80
81/*
82 * callout list for things to do at exit time
83 */
84struct exitlist {
85	exitlist_fn function;
86	TAILQ_ENTRY(exitlist) next;
87};
88
89TAILQ_HEAD(exit_list_head, exitlist);
90static struct exit_list_head exit_list = TAILQ_HEAD_INITIALIZER(exit_list);
91
92/*
93 * exit --
94 *	Death of process.
95 */
96void
97sys_exit(p, uap)
98	struct proc *p;
99	struct sys_exit_args /* {
100		int	rval;
101	} */ *uap;
102{
103
104	exit1(p, W_EXITCODE(uap->rval, 0));
105	/* NOTREACHED */
106}
107
108/*
109 * Exit: deallocate address space and other resources, change proc state
110 * to zombie, and unlink proc from allproc and parent's lists.  Save exit
111 * status and rusage for wait().  Check for child processes and orphan them.
112 */
113void
114exit1(p, rv)
115	register struct proc *p;
116	int rv;
117{
118	register struct proc *q, *nq;
119	register struct vmspace *vm;
120	struct exitlist *ep;
121
122	if (p->p_pid == 1) {
123		printf("init died (signal %d, exit %d)\n",
124		    WTERMSIG(rv), WEXITSTATUS(rv));
125		panic("Going nowhere without my init!");
126	}
127
128	aio_proc_rundown(p);
129
130	/* are we a task leader? */
131	if(p == p->p_leader) {
132        	struct kill_args killArgs;
133		killArgs.signum = SIGKILL;
134		q = p->p_peers;
135		while(q) {
136			killArgs.pid = q->p_pid;
137			/*
138		         * The interface for kill is better
139			 * than the internal signal
140			 */
141			kill(p, &killArgs);
142			nq = q;
143			q = q->p_peers;
144		}
145		while (p->p_peers)
146		  tsleep((caddr_t)p, PWAIT, "exit1", 0);
147	}
148
149#ifdef PGINPROF
150	vmsizmon();
151#endif
152	STOPEVENT(p, S_EXIT, rv);
153	wakeup(&p->p_stype);	/* Wakeup anyone in procfs' PIOCWAIT */
154
155	/*
156	 * Check if any loadable modules need anything done at process exit.
157	 * e.g. SYSV IPC stuff
158	 * XXX what if one of these generates an error?
159	 */
160	TAILQ_FOREACH(ep, &exit_list, next)
161		(*ep->function)(p);
162
163	if (p->p_flag & P_PROFIL)
164		stopprofclock(p);
165	MALLOC(p->p_ru, struct rusage *, sizeof(struct rusage),
166		M_ZOMBIE, M_WAITOK);
167	/*
168	 * If parent is waiting for us to exit or exec,
169	 * P_PPWAIT is set; we will wakeup the parent below.
170	 */
171	p->p_flag &= ~(P_TRACED | P_PPWAIT);
172	p->p_flag |= P_WEXIT;
173	SIGEMPTYSET(p->p_siglist);
174	if (timevalisset(&p->p_realtimer.it_value))
175		callout_stop(&p->p_itcallout);
176
177	/*
178	 * Reset any sigio structures pointing to us as a result of
179	 * F_SETOWN with our pid.
180	 */
181	funsetownlst(&p->p_sigiolst);
182
183	/*
184	 * Close open files and release open-file table.
185	 * This may block!
186	 */
187	fdfree(p);
188
189	if(p->p_leader->p_peers) {
190		q = p->p_leader;
191		while(q->p_peers != p)
192			q = q->p_peers;
193		q->p_peers = p->p_peers;
194		wakeup((caddr_t)p->p_leader);
195	}
196
197	/*
198	 * XXX Shutdown SYSV semaphores
199	 */
200	semexit(p);
201
202	/* The next two chunks should probably be moved to vmspace_exit. */
203	vm = p->p_vmspace;
204	/*
205	 * Release user portion of address space.
206	 * This releases references to vnodes,
207	 * which could cause I/O if the file has been unlinked.
208	 * Need to do this early enough that we can still sleep.
209	 * Can't free the entire vmspace as the kernel stack
210	 * may be mapped within that space also.
211	 */
212	if (vm->vm_refcnt == 1) {
213		if (vm->vm_shm)
214			shmexit(p);
215		pmap_remove_pages(vmspace_pmap(vm), VM_MIN_ADDRESS,
216		    VM_MAXUSER_ADDRESS);
217		(void) vm_map_remove(&vm->vm_map, VM_MIN_ADDRESS,
218		    VM_MAXUSER_ADDRESS);
219	}
220
221	if (SESS_LEADER(p)) {
222		register struct session *sp = p->p_session;
223
224		if (sp->s_ttyvp) {
225			/*
226			 * Controlling process.
227			 * Signal foreground pgrp,
228			 * drain controlling terminal
229			 * and revoke access to controlling terminal.
230			 */
231			if (sp->s_ttyp && (sp->s_ttyp->t_session == sp)) {
232				if (sp->s_ttyp->t_pgrp)
233					pgsignal(sp->s_ttyp->t_pgrp, SIGHUP, 1);
234				(void) ttywait(sp->s_ttyp);
235				/*
236				 * The tty could have been revoked
237				 * if we blocked.
238				 */
239				if (sp->s_ttyvp)
240					VOP_REVOKE(sp->s_ttyvp, REVOKEALL);
241			}
242			if (sp->s_ttyvp)
243				vrele(sp->s_ttyvp);
244			sp->s_ttyvp = NULL;
245			/*
246			 * s_ttyp is not zero'd; we use this to indicate
247			 * that the session once had a controlling terminal.
248			 * (for logging and informational purposes)
249			 */
250		}
251		sp->s_leader = NULL;
252	}
253	fixjobc(p, p->p_pgrp, 0);
254	(void)acct_process(p);
255#ifdef KTRACE
256	/*
257	 * release trace file
258	 */
259	p->p_traceflag = 0;	/* don't trace the vrele() */
260	if (p->p_tracep)
261		vrele(p->p_tracep);
262#endif
263	/*
264	 * Remove proc from allproc queue and pidhash chain.
265	 * Place onto zombproc.  Unlink from parent's child list.
266	 */
267	ALLPROC_LOCK(AP_EXCLUSIVE);
268	LIST_REMOVE(p, p_list);
269	LIST_INSERT_HEAD(&zombproc, p, p_list);
270
271	LIST_REMOVE(p, p_hash);
272	ALLPROC_LOCK(AP_RELEASE);
273	/*
274	 * We have to wait until after releasing this lock before
275	 * changing p_stat.  If we block on a mutex while waiting to
276	 * release the allproc_lock, then we will be back at SRUN when
277	 * we resume here and our parent will never harvest us.
278	 */
279	p->p_stat = SZOMB;
280
281	q = LIST_FIRST(&p->p_children);
282	if (q)		/* only need this if any child is S_ZOMB */
283		wakeup((caddr_t) initproc);
284	for (; q != 0; q = nq) {
285		nq = LIST_NEXT(q, p_sibling);
286		LIST_REMOVE(q, p_sibling);
287		LIST_INSERT_HEAD(&initproc->p_children, q, p_sibling);
288		q->p_pptr = initproc;
289		q->p_sigparent = SIGCHLD;
290		/*
291		 * Traced processes are killed
292		 * since their existence means someone is screwing up.
293		 */
294		if (q->p_flag & P_TRACED) {
295			q->p_flag &= ~P_TRACED;
296			psignal(q, SIGKILL);
297		}
298	}
299
300	/*
301	 * Save exit status and final rusage info, adding in child rusage
302	 * info and self times.
303	 */
304	p->p_xstat = rv;
305	*p->p_ru = p->p_stats->p_ru;
306	calcru(p, &p->p_ru->ru_utime, &p->p_ru->ru_stime, NULL);
307	ruadd(p->p_ru, &p->p_stats->p_cru);
308
309	/*
310	 * Pretend that an mi_switch() to the next process occurs now.  We
311	 * must set `switchtime' directly since we will call cpu_switch()
312	 * directly.  Set it now so that the rest of the exit time gets
313	 * counted somewhere if possible.
314	 */
315	microuptime(&switchtime);
316	switchticks = ticks;
317
318	/*
319	 * notify interested parties of our demise.
320	 */
321	KNOTE(&p->p_klist, NOTE_EXIT);
322
323	/*
324	 * Notify parent that we're gone.  If parent has the PS_NOCLDWAIT
325	 * flag set, notify process 1 instead (and hope it will handle
326	 * this situation).
327	 */
328	if (p->p_pptr->p_procsig->ps_flag & PS_NOCLDWAIT) {
329		struct proc *pp = p->p_pptr;
330		proc_reparent(p, initproc);
331		/*
332		 * If this was the last child of our parent, notify
333		 * parent, so in case he was wait(2)ing, he will
334		 * continue.
335		 */
336		if (LIST_EMPTY(&pp->p_children))
337			wakeup((caddr_t)pp);
338	}
339
340	if (p->p_sigparent && p->p_pptr != initproc) {
341	        psignal(p->p_pptr, p->p_sigparent);
342	} else {
343	        psignal(p->p_pptr, SIGCHLD);
344	}
345
346	wakeup((caddr_t)p->p_pptr);
347	/*
348	 * Clear curproc after we've done all operations
349	 * that could block, and before tearing down the rest
350	 * of the process state that might be used from clock, etc.
351	 * Also, can't clear curproc while we're still runnable,
352	 * as we're not on a run queue (we are current, just not
353	 * a proper proc any longer!).
354	 *
355	 * Other substructures are freed from wait().
356	 */
357	if (--p->p_limit->p_refcnt == 0) {
358		FREE(p->p_limit, M_SUBPROC);
359		p->p_limit = NULL;
360	}
361
362	/*
363	 * Finally, call machine-dependent code to release the remaining
364	 * resources including address space, the kernel stack and pcb.
365	 * The address space is released by "vmspace_free(p->p_vmspace)";
366	 * This is machine-dependent, as we may have to change stacks
367	 * or ensure that the current one isn't reallocated before we
368	 * finish.  cpu_exit will end with a call to cpu_switch(), finishing
369	 * our execution (pun intended).
370	 */
371	cpu_exit(p);
372}
373
374#ifdef COMPAT_43
375int
376owait(p, uap)
377	struct proc *p;
378	register struct owait_args /* {
379		int     dummy;
380	} */ *uap;
381{
382	struct wait_args w;
383
384	w.options = 0;
385	w.rusage = NULL;
386	w.pid = WAIT_ANY;
387	w.status = NULL;
388	return (wait1(p, &w, 1));
389}
390#endif /* COMPAT_43 */
391
392int
393wait4(p, uap)
394	struct proc *p;
395	struct wait_args *uap;
396{
397
398	return (wait1(p, uap, 0));
399}
400
401static int
402wait1(q, uap, compat)
403	register struct proc *q;
404	register struct wait_args /* {
405		int pid;
406		int *status;
407		int options;
408		struct rusage *rusage;
409	} */ *uap;
410	int compat;
411{
412	register int nfound;
413	register struct proc *p, *t;
414	int status, error;
415
416	if (uap->pid == 0)
417		uap->pid = -q->p_pgid;
418	if (uap->options &~ (WUNTRACED|WNOHANG|WLINUXCLONE))
419		return (EINVAL);
420loop:
421	nfound = 0;
422	LIST_FOREACH(p, &q->p_children, p_sibling) {
423		if (uap->pid != WAIT_ANY &&
424		    p->p_pid != uap->pid && p->p_pgid != -uap->pid)
425			continue;
426
427		/*
428		 * This special case handles a kthread spawned by linux_clone
429		 * (see linux_misc.c).  The linux_wait4 and linux_waitpid
430		 * functions need to be able to distinguish between waiting
431		 * on a process and waiting on a thread.  It is a thread if
432		 * p_sigparent is not SIGCHLD, and the WLINUXCLONE option
433		 * signifies we want to wait for threads and not processes.
434		 */
435		if ((p->p_sigparent != SIGCHLD) ^
436		    ((uap->options & WLINUXCLONE) != 0))
437			continue;
438
439		nfound++;
440		mtx_enter(&sched_lock, MTX_SPIN);
441		if (p->p_stat == SZOMB) {
442			mtx_exit(&sched_lock, MTX_SPIN);
443
444			/* charge childs scheduling cpu usage to parent */
445			if (curproc->p_pid != 1) {
446				curproc->p_estcpu =
447				    ESTCPULIM(curproc->p_estcpu + p->p_estcpu);
448			}
449
450			q->p_retval[0] = p->p_pid;
451#ifdef COMPAT_43
452			if (compat)
453				q->p_retval[1] = p->p_xstat;
454			else
455#endif
456			if (uap->status) {
457				status = p->p_xstat;	/* convert to int */
458				if ((error = copyout((caddr_t)&status,
459				    (caddr_t)uap->status, sizeof(status))))
460					return (error);
461			}
462			if (uap->rusage && (error = copyout((caddr_t)p->p_ru,
463			    (caddr_t)uap->rusage, sizeof (struct rusage))))
464				return (error);
465			/*
466			 * If we got the child via a ptrace 'attach',
467			 * we need to give it back to the old parent.
468			 */
469			if (p->p_oppid && (t = pfind(p->p_oppid))) {
470				p->p_oppid = 0;
471				proc_reparent(p, t);
472				psignal(t, SIGCHLD);
473				wakeup((caddr_t)t);
474				return (0);
475			}
476			p->p_xstat = 0;
477			ruadd(&q->p_stats->p_cru, p->p_ru);
478			FREE(p->p_ru, M_ZOMBIE);
479			p->p_ru = NULL;
480
481			/*
482			 * Decrement the count of procs running with this uid.
483			 */
484			(void)chgproccnt(p->p_cred->p_uidinfo, -1, 0);
485
486			/*
487			 * Release reference to text vnode
488			 */
489			if (p->p_textvp)
490				vrele(p->p_textvp);
491
492			/*
493			 * Free up credentials.
494			 */
495			if (--p->p_cred->p_refcnt == 0) {
496				crfree(p->p_ucred);
497				uifree(p->p_cred->p_uidinfo);
498				FREE(p->p_cred, M_SUBPROC);
499				p->p_cred = NULL;
500			}
501
502			/*
503			 * Destroy empty prisons
504			 */
505			if (p->p_prison && !--p->p_prison->pr_ref) {
506				if (p->p_prison->pr_linux != NULL)
507					FREE(p->p_prison->pr_linux, M_PRISON);
508				FREE(p->p_prison, M_PRISON);
509			}
510
511			/*
512			 * Remove unused arguments
513			 */
514			if (p->p_args && --p->p_args->ar_ref == 0)
515				FREE(p->p_args, M_PARGS);
516
517			/*
518			 * Finally finished with old proc entry.
519			 * Unlink it from its process group and free it.
520			 */
521			leavepgrp(p);
522			ALLPROC_LOCK(AP_EXCLUSIVE);
523			LIST_REMOVE(p, p_list);	/* off zombproc */
524			ALLPROC_LOCK(AP_RELEASE);
525			LIST_REMOVE(p, p_sibling);
526
527			if (--p->p_procsig->ps_refcnt == 0) {
528				if (p->p_sigacts != &p->p_addr->u_sigacts)
529					FREE(p->p_sigacts, M_SUBPROC);
530			        FREE(p->p_procsig, M_SUBPROC);
531				p->p_procsig = NULL;
532			}
533
534			/*
535			 * Give machine-dependent layer a chance
536			 * to free anything that cpu_exit couldn't
537			 * release while still running in process context.
538			 */
539			cpu_wait(p);
540			mtx_destroy(&p->p_mtx);
541			zfree(proc_zone, p);
542			nprocs--;
543			return (0);
544		}
545		if (p->p_stat == SSTOP && (p->p_flag & P_WAITED) == 0 &&
546		    (p->p_flag & P_TRACED || uap->options & WUNTRACED)) {
547			mtx_exit(&sched_lock, MTX_SPIN);
548			p->p_flag |= P_WAITED;
549			q->p_retval[0] = p->p_pid;
550#ifdef COMPAT_43
551			if (compat) {
552				q->p_retval[1] = W_STOPCODE(p->p_xstat);
553				error = 0;
554			} else
555#endif
556			if (uap->status) {
557				status = W_STOPCODE(p->p_xstat);
558				error = copyout((caddr_t)&status,
559					(caddr_t)uap->status, sizeof(status));
560			} else
561				error = 0;
562			return (error);
563		}
564		mtx_exit(&sched_lock, MTX_SPIN);
565	}
566	if (nfound == 0)
567		return (ECHILD);
568	if (uap->options & WNOHANG) {
569		q->p_retval[0] = 0;
570		return (0);
571	}
572	if ((error = tsleep((caddr_t)q, PWAIT | PCATCH, "wait", 0)))
573		return (error);
574	goto loop;
575}
576
577/*
578 * make process 'parent' the new parent of process 'child'.
579 */
580void
581proc_reparent(child, parent)
582	register struct proc *child;
583	register struct proc *parent;
584{
585
586	if (child->p_pptr == parent)
587		return;
588
589	LIST_REMOVE(child, p_sibling);
590	LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
591	child->p_pptr = parent;
592}
593
594/*
595 * The next two functions are to handle adding/deleting items on the
596 * exit callout list
597 *
598 * at_exit():
599 * Take the arguments given and put them onto the exit callout list,
600 * However first make sure that it's not already there.
601 * returns 0 on success.
602 */
603
604int
605at_exit(function)
606	exitlist_fn function;
607{
608	struct exitlist *ep;
609
610#ifdef INVARIANTS
611	/* Be noisy if the programmer has lost track of things */
612	if (rm_at_exit(function))
613		printf("WARNING: exit callout entry (%p) already present\n",
614		    function);
615#endif
616	ep = malloc(sizeof(*ep), M_ATEXIT, M_NOWAIT);
617	if (ep == NULL)
618		return (ENOMEM);
619	ep->function = function;
620	TAILQ_INSERT_TAIL(&exit_list, ep, next);
621	return (0);
622}
623
624/*
625 * Scan the exit callout list for the given item and remove it.
626 * Returns the number of items removed (0 or 1)
627 */
628int
629rm_at_exit(function)
630	exitlist_fn function;
631{
632	struct exitlist *ep;
633
634	TAILQ_FOREACH(ep, &exit_list, next) {
635		if (ep->function == function) {
636			TAILQ_REMOVE(&exit_list, ep, next);
637			free(ep, M_ATEXIT);
638			return(1);
639		}
640	}
641	return (0);
642}
643
644void check_sigacts (void)
645{
646	struct proc *p = curproc;
647	struct sigacts *pss;
648	int s;
649
650	if (p->p_procsig->ps_refcnt == 1 &&
651	    p->p_sigacts != &p->p_addr->u_sigacts) {
652		pss = p->p_sigacts;
653		s = splhigh();
654		p->p_addr->u_sigacts = *pss;
655		p->p_sigacts = &p->p_addr->u_sigacts;
656		splx(s);
657		FREE(pss, M_SUBPROC);
658	}
659}
660
661