xref: /csrg-svn/sys/kern/kern_exit.c (revision 26268)
1 /*
2  * Copyright (c) 1982 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)kern_exit.c	6.12 (Berkeley) 02/20/86
7  */
8 
9 #include "../machine/reg.h"
10 #include "../machine/psl.h"
11 
12 #include "param.h"
13 #include "systm.h"
14 #include "map.h"
15 #include "dir.h"
16 #include "user.h"
17 #include "kernel.h"
18 #include "proc.h"
19 #include "buf.h"
20 #include "wait.h"
21 #include "vm.h"
22 #include "file.h"
23 #include "mbuf.h"
24 #include "inode.h"
25 #include "syslog.h"
26 
27 /*
28  * Exit system call: pass back caller's arg
29  */
30 rexit()
31 {
32 	register struct a {
33 		int	rval;
34 	} *uap;
35 
36 	uap = (struct a *)u.u_ap;
37 	exit((uap->rval & 0377) << 8);
38 }
39 
40 /*
41  * Release resources.
42  * Save u. area for parent to look at.
43  * Enter zombie state.
44  * Wake up parent and init processes,
45  * and dispose of children.
46  */
47 exit(rv)
48 	int rv;
49 {
50 	register int i;
51 	register struct proc *p, *q, *nq;
52 	register int x;
53 	struct mbuf *m = m_getclr(M_WAIT, MT_ZOMBIE);
54 
55 #ifdef PGINPROF
56 	vmsizmon();
57 #endif
58 	p = u.u_procp;
59 	p->p_flag &= ~(STRC|SULOCK);
60 	p->p_flag |= SWEXIT;
61 	p->p_sigignore = ~0;
62 	p->p_cpticks = 0;
63 	p->p_pctcpu = 0;
64 	for (i = 0; i < NSIG; i++)
65 		u.u_signal[i] = SIG_IGN;
66 	untimeout(realitexpire, (caddr_t)p);
67 	/*
68 	 * Release virtual memory.  If we resulted from
69 	 * a vfork(), instead give the resources back to
70 	 * the parent.
71 	 */
72 	if ((p->p_flag & SVFORK) == 0)
73 		vrelvm();
74 	else {
75 		p->p_flag &= ~SVFORK;
76 		wakeup((caddr_t)p);
77 		while ((p->p_flag & SVFDONE) == 0)
78 			sleep((caddr_t)p, PZERO - 1);
79 		p->p_flag &= ~SVFDONE;
80 	}
81 	for (i = 0; i <= u.u_lastfile; i++) {
82 		struct file *f;
83 
84 		f = u.u_ofile[i];
85 		if (f) {
86 			u.u_ofile[i] = NULL;
87 			u.u_pofile[i] = 0;
88 			closef(f);
89 		}
90 	}
91 	ilock(u.u_cdir);
92 	iput(u.u_cdir);
93 	if (u.u_rdir) {
94 		ilock(u.u_rdir);
95 		iput(u.u_rdir);
96 	}
97 	u.u_rlimit[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
98 	acct();
99 #ifdef QUOTA
100 	qclean();
101 #endif
102 	vrelpt(u.u_procp);
103 	vrelu(u.u_procp, 0);
104 	if (*p->p_prev = p->p_nxt)		/* off allproc queue */
105 		p->p_nxt->p_prev = p->p_prev;
106 	if (p->p_nxt = zombproc)		/* onto zombproc */
107 		p->p_nxt->p_prev = &p->p_nxt;
108 	p->p_prev = &zombproc;
109 	zombproc = p;
110 	multprog--;
111 	p->p_stat = SZOMB;
112 	noproc = 1;
113 	i = PIDHASH(p->p_pid);
114 	x = p - proc;
115 	if (pidhash[i] == x)
116 		pidhash[i] = p->p_idhash;
117 	else {
118 		for (i = pidhash[i]; i != 0; i = proc[i].p_idhash)
119 			if (proc[i].p_idhash == x) {
120 				proc[i].p_idhash = p->p_idhash;
121 				goto done;
122 			}
123 		panic("exit");
124 	}
125 	if (p->p_pid == 1) {
126 		if (p->p_dsize == 0) {
127 			printf("Can't exec /etc/init\n");
128 			for (;;)
129 				;
130 		} else
131 			panic("init died");
132 	}
133 done:
134 	p->p_xstat = rv;
135 	p->p_ru = mtod(m, struct rusage *);
136 	*p->p_ru = u.u_ru;
137 	ruadd(p->p_ru, &u.u_cru);
138 	if (p->p_cptr)		/* only need this if any child is S_ZOMB */
139 		wakeup((caddr_t)&proc[1]);
140 	for (q = p->p_cptr; q != NULL; q = nq) {
141 		nq = q->p_osptr;
142 		if (nq != NULL)
143 			nq->p_ysptr = NULL;
144 		if (proc[1].p_cptr)
145 			proc[1].p_cptr->p_ysptr = q;
146 		q->p_osptr = proc[1].p_cptr;
147 		q->p_ysptr = NULL;
148 		proc[1].p_cptr = q;
149 
150 		q->p_pptr = &proc[1];
151 		q->p_ppid = 1;
152 		/*
153 		 * Traced processes are killed
154 		 * since their existence means someone is screwing up.
155 		 * Stopped processes are sent a hangup and a continue.
156 		 * This is designed to be ``safe'' for setuid
157 		 * processes since they must be willing to tolerate
158 		 * hangups anyways.
159 		 */
160 		if (q->p_flag&STRC) {
161 			q->p_flag &= ~STRC;
162 			psignal(q, SIGKILL);
163 		} else if (q->p_stat == SSTOP) {
164 			psignal(q, SIGHUP);
165 			psignal(q, SIGCONT);
166 		}
167 		/*
168 		 * Protect this process from future
169 		 * tty signals, clear TSTP/TTIN/TTOU if pending.
170 		 */
171 		(void) spgrp(q);
172 	}
173 	p->p_cptr = NULL;
174 	psignal(p->p_pptr, SIGCHLD);
175 	wakeup((caddr_t)p->p_pptr);
176 	swtch();
177 }
178 
179 wait()
180 {
181 	struct rusage ru, *rup;
182 
183 	if ((u.u_ar0[PS] & PSL_ALLCC) != PSL_ALLCC) {
184 		u.u_error = wait1(0, (struct rusage *)0);
185 		return;
186 	}
187 	rup = (struct rusage *)u.u_ar0[R1];
188 	u.u_error = wait1(u.u_ar0[R0], &ru);
189 	if (u.u_error)
190 		return;
191 	if (rup != (struct rusage *)0)
192 		u.u_error = copyout((caddr_t)&ru, (caddr_t)rup,
193 		    sizeof (struct rusage));
194 }
195 
196 /*
197  * Wait system call.
198  * Search for a terminated (zombie) child,
199  * finally lay it to rest, and collect its status.
200  * Look also for stopped (traced) children,
201  * and pass back status from them.
202  */
203 wait1(options, ru)
204 	register int options;
205 	struct rusage *ru;
206 {
207 	register f;
208 	register struct proc *p, *q;
209 
210 	f = 0;
211 loop:
212 	q = u.u_procp;
213 	for (p = q->p_cptr; p; p = p->p_osptr) {
214 		f++;
215 		if (p->p_stat == SZOMB) {
216 			u.u_r.r_val1 = p->p_pid;
217 			u.u_r.r_val2 = p->p_xstat;
218 			p->p_xstat = 0;
219 			if (ru && p->p_ru)
220 				*ru = *p->p_ru;
221 			if (p->p_ru) {
222 				ruadd(&u.u_cru, p->p_ru);
223 				(void) m_free(dtom(p->p_ru));
224 				p->p_ru = 0;
225 			}
226 			p->p_stat = NULL;
227 			p->p_pid = 0;
228 			p->p_ppid = 0;
229 			if (*p->p_prev = p->p_nxt)	/* off zombproc */
230 				p->p_nxt->p_prev = p->p_prev;
231 			p->p_nxt = freeproc;		/* onto freeproc */
232 			freeproc = p;
233 			if (q = p->p_ysptr)
234 				q->p_osptr = p->p_osptr;
235 			if (q = p->p_osptr)
236 				q->p_ysptr = p->p_ysptr;
237 			if ((q = p->p_pptr)->p_cptr == p)
238 				q->p_cptr = p->p_osptr;
239 			p->p_pptr = 0;
240 			p->p_ysptr = 0;
241 			p->p_osptr = 0;
242 			p->p_cptr = 0;
243 			p->p_sig = 0;
244 			p->p_sigcatch = 0;
245 			p->p_sigignore = 0;
246 			p->p_sigmask = 0;
247 			p->p_pgrp = 0;
248 			p->p_flag = 0;
249 			p->p_wchan = 0;
250 			p->p_cursig = 0;
251 			return (0);
252 		}
253 		if (p->p_stat == SSTOP && (p->p_flag&SWTED)==0 &&
254 		    (p->p_flag&STRC || options&WUNTRACED)) {
255 			p->p_flag |= SWTED;
256 			u.u_r.r_val1 = p->p_pid;
257 			u.u_r.r_val2 = (p->p_cursig<<8) | WSTOPPED;
258 			return (0);
259 		}
260 	}
261 	if (f == 0)
262 		return (ECHILD);
263 	if (options&WNOHANG) {
264 		u.u_r.r_val1 = 0;
265 		return (0);
266 	}
267 	if (setjmp(&u.u_qsave)) {
268 		p = u.u_procp;
269 		if ((u.u_sigintr & sigmask(p->p_cursig)) != 0)
270 			return(EINTR);
271 		u.u_eosys = RESTARTSYS;
272 		return (0);
273 	}
274 	sleep((caddr_t)u.u_procp, PWAIT);
275 	goto loop;
276 }
277