kern_sig.c revision 1.255 1 1.255 ad /* $NetBSD: kern_sig.c,v 1.255 2007/08/15 12:07:33 ad Exp $ */
2 1.243 ad
3 1.243 ad /*-
4 1.243 ad * Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
5 1.243 ad * All rights reserved.
6 1.243 ad *
7 1.243 ad * This code is derived from software contributed to The NetBSD Foundation
8 1.243 ad * by Andrew Doran.
9 1.243 ad *
10 1.243 ad * Redistribution and use in source and binary forms, with or without
11 1.243 ad * modification, are permitted provided that the following conditions
12 1.243 ad * are met:
13 1.243 ad * 1. Redistributions of source code must retain the above copyright
14 1.243 ad * notice, this list of conditions and the following disclaimer.
15 1.243 ad * 2. Redistributions in binary form must reproduce the above copyright
16 1.243 ad * notice, this list of conditions and the following disclaimer in the
17 1.243 ad * documentation and/or other materials provided with the distribution.
18 1.243 ad * 3. All advertising materials mentioning features or use of this software
19 1.243 ad * must display the following acknowledgement:
20 1.243 ad * This product includes software developed by the NetBSD
21 1.243 ad * Foundation, Inc. and its contributors.
22 1.243 ad * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.243 ad * contributors may be used to endorse or promote products derived
24 1.243 ad * from this software without specific prior written permission.
25 1.243 ad *
26 1.243 ad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.243 ad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.243 ad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.243 ad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.243 ad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.243 ad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.243 ad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.243 ad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.243 ad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.243 ad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.243 ad * POSSIBILITY OF SUCH DAMAGE.
37 1.243 ad */
38 1.29 cgd
39 1.29 cgd /*
40 1.29 cgd * Copyright (c) 1982, 1986, 1989, 1991, 1993
41 1.29 cgd * The Regents of the University of California. All rights reserved.
42 1.29 cgd * (c) UNIX System Laboratories, Inc.
43 1.29 cgd * All or some portions of this file are derived from material licensed
44 1.29 cgd * to the University of California by American Telephone and Telegraph
45 1.29 cgd * Co. or Unix System Laboratories, Inc. and are reproduced herein with
46 1.29 cgd * the permission of UNIX System Laboratories, Inc.
47 1.29 cgd *
48 1.29 cgd * Redistribution and use in source and binary forms, with or without
49 1.29 cgd * modification, are permitted provided that the following conditions
50 1.29 cgd * are met:
51 1.29 cgd * 1. Redistributions of source code must retain the above copyright
52 1.29 cgd * notice, this list of conditions and the following disclaimer.
53 1.29 cgd * 2. Redistributions in binary form must reproduce the above copyright
54 1.29 cgd * notice, this list of conditions and the following disclaimer in the
55 1.29 cgd * documentation and/or other materials provided with the distribution.
56 1.146 agc * 3. Neither the name of the University nor the names of its contributors
57 1.29 cgd * may be used to endorse or promote products derived from this software
58 1.29 cgd * without specific prior written permission.
59 1.29 cgd *
60 1.29 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
61 1.29 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
62 1.29 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
63 1.29 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
64 1.29 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
65 1.29 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
66 1.29 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
67 1.29 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
68 1.29 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
69 1.29 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70 1.29 cgd * SUCH DAMAGE.
71 1.29 cgd *
72 1.71 fvdl * @(#)kern_sig.c 8.14 (Berkeley) 5/14/95
73 1.29 cgd */
74 1.116 lukem
75 1.116 lukem #include <sys/cdefs.h>
76 1.255 ad __KERNEL_RCSID(0, "$NetBSD: kern_sig.c,v 1.255 2007/08/15 12:07:33 ad Exp $");
77 1.70 mrg
78 1.227 matt #include "opt_ptrace.h"
79 1.222 rjs #include "opt_multiprocessor.h"
80 1.74 thorpej #include "opt_compat_sunos.h"
81 1.158 christos #include "opt_compat_netbsd.h"
82 1.202 perry #include "opt_compat_netbsd32.h"
83 1.240 elad #include "opt_pax.h"
84 1.29 cgd
85 1.29 cgd #define SIGPROP /* include signal properties table */
86 1.29 cgd #include <sys/param.h>
87 1.29 cgd #include <sys/signalvar.h>
88 1.29 cgd #include <sys/proc.h>
89 1.29 cgd #include <sys/systm.h>
90 1.29 cgd #include <sys/wait.h>
91 1.29 cgd #include <sys/ktrace.h>
92 1.29 cgd #include <sys/syslog.h>
93 1.59 cgd #include <sys/filedesc.h>
94 1.243 ad #include <sys/file.h>
95 1.89 thorpej #include <sys/malloc.h>
96 1.89 thorpej #include <sys/pool.h>
97 1.130 thorpej #include <sys/ucontext.h>
98 1.118 thorpej #include <sys/exec.h>
99 1.220 elad #include <sys/kauth.h>
100 1.243 ad #include <sys/acct.h>
101 1.243 ad #include <sys/callout.h>
102 1.32 cgd
103 1.29 cgd #include <machine/cpu.h>
104 1.29 cgd
105 1.240 elad #ifdef PAX_SEGVGUARD
106 1.240 elad #include <sys/pax.h>
107 1.240 elad #endif /* PAX_SEGVGUARD */
108 1.240 elad
109 1.196 skrll #include <uvm/uvm.h>
110 1.69 mrg #include <uvm/uvm_extern.h>
111 1.69 mrg
112 1.243 ad static void ksiginfo_exechook(struct proc *, void *);
113 1.243 ad static void proc_stop_callout(void *);
114 1.243 ad
115 1.243 ad int sigunwait(struct proc *, const ksiginfo_t *);
116 1.243 ad void sigput(sigpend_t *, struct proc *, ksiginfo_t *);
117 1.243 ad int sigpost(struct lwp *, sig_t, int, int);
118 1.243 ad int sigchecktrace(sigpend_t **);
119 1.248 thorpej void sigswitch(bool, int, int);
120 1.243 ad void sigrealloc(ksiginfo_t *);
121 1.152 christos
122 1.198 jdolecek sigset_t contsigmask, stopsigmask, sigcantmask;
123 1.196 skrll struct pool sigacts_pool; /* memory pool for sigacts structures */
124 1.243 ad static void sigacts_poolpage_free(struct pool *, void *);
125 1.243 ad static void *sigacts_poolpage_alloc(struct pool *, int);
126 1.254 ad static callout_t proc_stop_ch;
127 1.196 skrll
128 1.196 skrll static struct pool_allocator sigactspool_allocator = {
129 1.228 christos .pa_alloc = sigacts_poolpage_alloc,
130 1.228 christos .pa_free = sigacts_poolpage_free,
131 1.196 skrll };
132 1.196 skrll
133 1.243 ad #ifdef DEBUG
134 1.243 ad int kern_logsigexit = 1;
135 1.243 ad #else
136 1.243 ad int kern_logsigexit = 0;
137 1.243 ad #endif
138 1.89 thorpej
139 1.243 ad static const char logcoredump[] =
140 1.243 ad "pid %d (%s), uid %d: exited on signal %d (core dumped)\n";
141 1.243 ad static const char lognocoredump[] =
142 1.243 ad "pid %d (%s), uid %d: exited on signal %d (core not dumped, err = %d)\n";
143 1.237 yamt
144 1.243 ad POOL_INIT(siginfo_pool, sizeof(siginfo_t), 0, 0, 0, "siginfo",
145 1.252 ad &pool_allocator_nointr, IPL_NONE);
146 1.252 ad POOL_INIT(ksiginfo_pool, sizeof(ksiginfo_t), 0, 0, 0, "ksiginfo",
147 1.252 ad NULL, IPL_SOFTCLOCK);
148 1.237 yamt
149 1.29 cgd /*
150 1.243 ad * signal_init:
151 1.243 ad *
152 1.243 ad * Initialize global signal-related data structures.
153 1.152 christos */
154 1.243 ad void
155 1.243 ad signal_init(void)
156 1.152 christos {
157 1.152 christos
158 1.243 ad sigactspool_allocator.pa_pagesz = (PAGE_SIZE)*2;
159 1.152 christos
160 1.243 ad pool_init(&sigacts_pool, sizeof(struct sigacts), 0, 0, 0, "sigapl",
161 1.243 ad sizeof(struct sigacts) > PAGE_SIZE ?
162 1.252 ad &sigactspool_allocator : &pool_allocator_nointr,
163 1.252 ad IPL_NONE);
164 1.152 christos
165 1.243 ad exechook_establish(ksiginfo_exechook, NULL);
166 1.152 christos
167 1.254 ad callout_init(&proc_stop_ch, 0);
168 1.243 ad callout_setfunc(&proc_stop_ch, proc_stop_callout, NULL);
169 1.152 christos }
170 1.152 christos
171 1.152 christos /*
172 1.243 ad * sigacts_poolpage_alloc:
173 1.243 ad *
174 1.243 ad * Allocate a page for the sigacts memory pool.
175 1.152 christos */
176 1.243 ad static void *
177 1.243 ad sigacts_poolpage_alloc(struct pool *pp, int flags)
178 1.152 christos {
179 1.152 christos
180 1.243 ad return (void *)uvm_km_alloc(kernel_map,
181 1.243 ad (PAGE_SIZE)*2, (PAGE_SIZE)*2,
182 1.243 ad ((flags & PR_WAITOK) ? 0 : UVM_KMF_NOWAIT | UVM_KMF_TRYLOCK)
183 1.243 ad | UVM_KMF_WIRED);
184 1.152 christos }
185 1.152 christos
186 1.152 christos /*
187 1.243 ad * sigacts_poolpage_free:
188 1.243 ad *
189 1.243 ad * Free a page on behalf of the sigacts memory pool.
190 1.89 thorpej */
191 1.243 ad static void
192 1.243 ad sigacts_poolpage_free(struct pool *pp, void *v)
193 1.89 thorpej {
194 1.243 ad uvm_km_free(kernel_map, (vaddr_t)v, (PAGE_SIZE)*2, UVM_KMF_WIRED);
195 1.89 thorpej }
196 1.89 thorpej
197 1.89 thorpej /*
198 1.243 ad * sigactsinit:
199 1.243 ad *
200 1.243 ad * Create an initial sigctx structure, using the same signal state as
201 1.243 ad * p. If 'share' is set, share the sigctx_proc part, otherwise just
202 1.243 ad * copy it from parent.
203 1.89 thorpej */
204 1.243 ad struct sigacts *
205 1.243 ad sigactsinit(struct proc *pp, int share)
206 1.89 thorpej {
207 1.89 thorpej struct sigacts *ps;
208 1.89 thorpej
209 1.243 ad if (pp != NULL) {
210 1.250 ad KASSERT(mutex_owned(&pp->p_smutex));
211 1.243 ad }
212 1.243 ad
213 1.109 jdolecek if (share) {
214 1.243 ad ps = pp->p_sigacts;
215 1.243 ad mutex_enter(&ps->sa_mutex);
216 1.243 ad ps->sa_refcnt++;
217 1.243 ad mutex_exit(&ps->sa_mutex);
218 1.109 jdolecek } else {
219 1.243 ad if (pp)
220 1.243 ad mutex_exit(&pp->p_smutex);
221 1.109 jdolecek ps = pool_get(&sigacts_pool, PR_WAITOK);
222 1.243 ad mutex_init(&ps->sa_mutex, MUTEX_SPIN, IPL_NONE);
223 1.243 ad if (pp) {
224 1.243 ad mutex_enter(&pp->p_smutex);
225 1.243 ad memcpy(&ps->sa_sigdesc, pp->p_sigacts->sa_sigdesc,
226 1.243 ad sizeof(ps->sa_sigdesc));
227 1.243 ad } else
228 1.243 ad memset(&ps->sa_sigdesc, 0, sizeof(ps->sa_sigdesc));
229 1.109 jdolecek ps->sa_refcnt = 1;
230 1.109 jdolecek }
231 1.243 ad
232 1.243 ad return ps;
233 1.89 thorpej }
234 1.89 thorpej
235 1.89 thorpej /*
236 1.243 ad * sigactsunshare:
237 1.243 ad *
238 1.243 ad * Make this process not share its sigctx, maintaining all
239 1.243 ad * signal state.
240 1.89 thorpej */
241 1.89 thorpej void
242 1.112 lukem sigactsunshare(struct proc *p)
243 1.89 thorpej {
244 1.243 ad struct sigacts *ps, *oldps;
245 1.243 ad int refcnt;
246 1.89 thorpej
247 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
248 1.243 ad
249 1.243 ad oldps = p->p_sigacts;
250 1.243 ad
251 1.243 ad mutex_enter(&oldps->sa_mutex);
252 1.243 ad refcnt = oldps->sa_refcnt;
253 1.243 ad mutex_exit(&oldps->sa_mutex);
254 1.243 ad if (refcnt == 1)
255 1.89 thorpej return;
256 1.89 thorpej
257 1.243 ad mutex_exit(&p->p_smutex);
258 1.243 ad ps = sigactsinit(NULL, 0);
259 1.243 ad mutex_enter(&p->p_smutex);
260 1.243 ad p->p_sigacts = ps;
261 1.109 jdolecek
262 1.243 ad sigactsfree(oldps);
263 1.89 thorpej }
264 1.89 thorpej
265 1.89 thorpej /*
266 1.243 ad * sigactsfree;
267 1.243 ad *
268 1.243 ad * Release a sigctx structure.
269 1.89 thorpej */
270 1.89 thorpej void
271 1.195 pk sigactsfree(struct sigacts *ps)
272 1.89 thorpej {
273 1.243 ad int refcnt;
274 1.89 thorpej
275 1.243 ad mutex_enter(&ps->sa_mutex);
276 1.243 ad refcnt = --ps->sa_refcnt;
277 1.243 ad mutex_exit(&ps->sa_mutex);
278 1.121 thorpej
279 1.243 ad if (refcnt == 0) {
280 1.243 ad mutex_destroy(&ps->sa_mutex);
281 1.243 ad pool_put(&sigacts_pool, ps);
282 1.29 cgd }
283 1.29 cgd }
284 1.29 cgd
285 1.29 cgd /*
286 1.243 ad * siginit:
287 1.243 ad *
288 1.243 ad * Initialize signal state for process 0; set to ignore signals that
289 1.243 ad * are ignored by default and disable the signal stack. Locking not
290 1.243 ad * required as the system is still cold.
291 1.29 cgd */
292 1.29 cgd void
293 1.112 lukem siginit(struct proc *p)
294 1.29 cgd {
295 1.243 ad struct lwp *l;
296 1.243 ad struct sigacts *ps;
297 1.243 ad int signo, prop;
298 1.79 mycroft
299 1.112 lukem ps = p->p_sigacts;
300 1.79 mycroft sigemptyset(&contsigmask);
301 1.79 mycroft sigemptyset(&stopsigmask);
302 1.79 mycroft sigemptyset(&sigcantmask);
303 1.243 ad for (signo = 1; signo < NSIG; signo++) {
304 1.243 ad prop = sigprop[signo];
305 1.79 mycroft if (prop & SA_CONT)
306 1.243 ad sigaddset(&contsigmask, signo);
307 1.79 mycroft if (prop & SA_STOP)
308 1.243 ad sigaddset(&stopsigmask, signo);
309 1.79 mycroft if (prop & SA_CANTMASK)
310 1.243 ad sigaddset(&sigcantmask, signo);
311 1.243 ad if (prop & SA_IGNORE && signo != SIGCONT)
312 1.243 ad sigaddset(&p->p_sigctx.ps_sigignore, signo);
313 1.243 ad sigemptyset(&SIGACTION_PS(ps, signo).sa_mask);
314 1.243 ad SIGACTION_PS(ps, signo).sa_flags = SA_RESTART;
315 1.79 mycroft }
316 1.109 jdolecek sigemptyset(&p->p_sigctx.ps_sigcatch);
317 1.243 ad p->p_sflag &= ~PS_NOCLDSTOP;
318 1.243 ad
319 1.243 ad ksiginfo_queue_init(&p->p_sigpend.sp_info);
320 1.243 ad sigemptyset(&p->p_sigpend.sp_set);
321 1.29 cgd
322 1.79 mycroft /*
323 1.243 ad * Reset per LWP state.
324 1.79 mycroft */
325 1.243 ad l = LIST_FIRST(&p->p_lwps);
326 1.243 ad l->l_sigwaited = NULL;
327 1.243 ad l->l_sigstk.ss_flags = SS_DISABLE;
328 1.243 ad l->l_sigstk.ss_size = 0;
329 1.243 ad l->l_sigstk.ss_sp = 0;
330 1.243 ad ksiginfo_queue_init(&l->l_sigpend.sp_info);
331 1.243 ad sigemptyset(&l->l_sigpend.sp_set);
332 1.89 thorpej
333 1.89 thorpej /* One reference. */
334 1.109 jdolecek ps->sa_refcnt = 1;
335 1.29 cgd }
336 1.29 cgd
337 1.29 cgd /*
338 1.243 ad * execsigs:
339 1.243 ad *
340 1.243 ad * Reset signals for an exec of the specified process.
341 1.29 cgd */
342 1.29 cgd void
343 1.112 lukem execsigs(struct proc *p)
344 1.29 cgd {
345 1.243 ad struct sigacts *ps;
346 1.243 ad struct lwp *l;
347 1.243 ad int signo, prop;
348 1.243 ad sigset_t tset;
349 1.243 ad ksiginfoq_t kq;
350 1.243 ad
351 1.243 ad KASSERT(p->p_nlwps == 1);
352 1.243 ad
353 1.243 ad mutex_enter(&p->p_smutex);
354 1.29 cgd
355 1.115 thorpej sigactsunshare(p);
356 1.115 thorpej
357 1.112 lukem ps = p->p_sigacts;
358 1.115 thorpej
359 1.29 cgd /*
360 1.243 ad * Reset caught signals. Held signals remain held through
361 1.243 ad * l->l_sigmask (unless they were caught, and are now ignored
362 1.243 ad * by default).
363 1.243 ad */
364 1.243 ad sigemptyset(&tset);
365 1.243 ad for (signo = 1; signo < NSIG; signo++) {
366 1.243 ad if (sigismember(&p->p_sigctx.ps_sigcatch, signo)) {
367 1.243 ad prop = sigprop[signo];
368 1.79 mycroft if (prop & SA_IGNORE) {
369 1.79 mycroft if ((prop & SA_CONT) == 0)
370 1.112 lukem sigaddset(&p->p_sigctx.ps_sigignore,
371 1.243 ad signo);
372 1.243 ad sigaddset(&tset, signo);
373 1.79 mycroft }
374 1.243 ad SIGACTION_PS(ps, signo).sa_handler = SIG_DFL;
375 1.29 cgd }
376 1.243 ad sigemptyset(&SIGACTION_PS(ps, signo).sa_mask);
377 1.243 ad SIGACTION_PS(ps, signo).sa_flags = SA_RESTART;
378 1.29 cgd }
379 1.243 ad ksiginfo_queue_init(&kq);
380 1.243 ad sigclearall(p, &tset, &kq);
381 1.109 jdolecek sigemptyset(&p->p_sigctx.ps_sigcatch);
382 1.205 christos
383 1.205 christos /*
384 1.205 christos * Reset no zombies if child dies flag as Solaris does.
385 1.205 christos */
386 1.246 pavel p->p_flag &= ~(PK_NOCLDWAIT | PK_CLDSIGIGN);
387 1.205 christos if (SIGACTION_PS(ps, SIGCHLD).sa_handler == SIG_IGN)
388 1.205 christos SIGACTION_PS(ps, SIGCHLD).sa_handler = SIG_DFL;
389 1.79 mycroft
390 1.29 cgd /*
391 1.243 ad * Reset per-LWP state.
392 1.29 cgd */
393 1.243 ad l = LIST_FIRST(&p->p_lwps);
394 1.243 ad l->l_sigwaited = NULL;
395 1.243 ad l->l_sigstk.ss_flags = SS_DISABLE;
396 1.243 ad l->l_sigstk.ss_size = 0;
397 1.243 ad l->l_sigstk.ss_sp = 0;
398 1.243 ad ksiginfo_queue_init(&l->l_sigpend.sp_info);
399 1.243 ad sigemptyset(&l->l_sigpend.sp_set);
400 1.243 ad
401 1.243 ad mutex_exit(&p->p_smutex);
402 1.243 ad ksiginfo_queue_drain(&kq);
403 1.29 cgd }
404 1.29 cgd
405 1.243 ad /*
406 1.243 ad * ksiginfo_exechook:
407 1.243 ad *
408 1.243 ad * Free all pending ksiginfo entries from a process on exec.
409 1.243 ad * Additionally, drain any unused ksiginfo structures in the
410 1.243 ad * system back to the pool.
411 1.243 ad *
412 1.243 ad * XXX This should not be a hook, every process has signals.
413 1.243 ad */
414 1.243 ad static void
415 1.243 ad ksiginfo_exechook(struct proc *p, void *v)
416 1.79 mycroft {
417 1.243 ad ksiginfoq_t kq;
418 1.79 mycroft
419 1.243 ad ksiginfo_queue_init(&kq);
420 1.79 mycroft
421 1.243 ad mutex_enter(&p->p_smutex);
422 1.243 ad sigclearall(p, NULL, &kq);
423 1.243 ad mutex_exit(&p->p_smutex);
424 1.79 mycroft
425 1.243 ad ksiginfo_queue_drain(&kq);
426 1.79 mycroft }
427 1.202 perry
428 1.29 cgd /*
429 1.243 ad * ksiginfo_alloc:
430 1.243 ad *
431 1.243 ad * Allocate a new ksiginfo structure from the pool, and optionally copy
432 1.243 ad * an existing one. If the existing ksiginfo_t is from the pool, and
433 1.243 ad * has not been queued somewhere, then just return it. Additionally,
434 1.243 ad * if the existing ksiginfo_t does not contain any information beyond
435 1.243 ad * the signal number, then just return it.
436 1.29 cgd */
437 1.243 ad ksiginfo_t *
438 1.243 ad ksiginfo_alloc(struct proc *p, ksiginfo_t *ok, int flags)
439 1.48 thorpej {
440 1.243 ad ksiginfo_t *kp;
441 1.243 ad int s;
442 1.29 cgd
443 1.243 ad if (ok != NULL) {
444 1.243 ad if ((ok->ksi_flags & (KSI_QUEUED | KSI_FROMPOOL)) ==
445 1.243 ad KSI_FROMPOOL)
446 1.243 ad return ok;
447 1.243 ad if (KSI_EMPTY_P(ok))
448 1.243 ad return ok;
449 1.79 mycroft }
450 1.243 ad
451 1.243 ad s = splsoftclock();
452 1.243 ad kp = pool_get(&ksiginfo_pool, flags);
453 1.243 ad splx(s);
454 1.243 ad if (kp == NULL) {
455 1.243 ad #ifdef DIAGNOSTIC
456 1.243 ad printf("Out of memory allocating ksiginfo for pid %d\n",
457 1.243 ad p->p_pid);
458 1.243 ad #endif
459 1.243 ad return NULL;
460 1.79 mycroft }
461 1.243 ad
462 1.243 ad if (ok != NULL) {
463 1.243 ad memcpy(kp, ok, sizeof(*kp));
464 1.243 ad kp->ksi_flags &= ~KSI_QUEUED;
465 1.243 ad } else
466 1.243 ad KSI_INIT_EMPTY(kp);
467 1.243 ad
468 1.243 ad kp->ksi_flags |= KSI_FROMPOOL;
469 1.243 ad
470 1.243 ad return kp;
471 1.79 mycroft }
472 1.79 mycroft
473 1.243 ad /*
474 1.243 ad * ksiginfo_free:
475 1.243 ad *
476 1.243 ad * If the given ksiginfo_t is from the pool and has not been queued,
477 1.243 ad * then free it.
478 1.243 ad */
479 1.79 mycroft void
480 1.243 ad ksiginfo_free(ksiginfo_t *kp)
481 1.79 mycroft {
482 1.243 ad int s;
483 1.29 cgd
484 1.243 ad if ((kp->ksi_flags & (KSI_QUEUED | KSI_FROMPOOL)) != KSI_FROMPOOL)
485 1.243 ad return;
486 1.243 ad s = splsoftclock();
487 1.243 ad pool_put(&ksiginfo_pool, kp);
488 1.243 ad splx(s);
489 1.29 cgd }
490 1.29 cgd
491 1.243 ad /*
492 1.243 ad * ksiginfo_queue_drain:
493 1.243 ad *
494 1.243 ad * Drain a non-empty ksiginfo_t queue.
495 1.243 ad */
496 1.243 ad void
497 1.243 ad ksiginfo_queue_drain0(ksiginfoq_t *kq)
498 1.29 cgd {
499 1.243 ad ksiginfo_t *ksi;
500 1.243 ad int s;
501 1.79 mycroft
502 1.243 ad KASSERT(!CIRCLEQ_EMPTY(kq));
503 1.243 ad
504 1.243 ad KERNEL_LOCK(1, curlwp); /* XXXSMP */
505 1.243 ad while (!CIRCLEQ_EMPTY(kq)) {
506 1.243 ad ksi = CIRCLEQ_FIRST(kq);
507 1.243 ad CIRCLEQ_REMOVE(kq, ksi, ksi_list);
508 1.243 ad s = splsoftclock();
509 1.243 ad pool_put(&ksiginfo_pool, ksi);
510 1.243 ad splx(s);
511 1.243 ad }
512 1.243 ad KERNEL_UNLOCK_ONE(curlwp); /* XXXSMP */
513 1.79 mycroft }
514 1.79 mycroft
515 1.243 ad /*
516 1.243 ad * sigget:
517 1.243 ad *
518 1.243 ad * Fetch the first pending signal from a set. Optionally, also fetch
519 1.243 ad * or manufacture a ksiginfo element. Returns the number of the first
520 1.243 ad * pending signal, or zero.
521 1.243 ad */
522 1.243 ad int
523 1.243 ad sigget(sigpend_t *sp, ksiginfo_t *out, int signo, sigset_t *mask)
524 1.243 ad {
525 1.243 ad ksiginfo_t *ksi;
526 1.243 ad sigset_t tset;
527 1.243 ad
528 1.243 ad /* If there's no pending set, the signal is from the debugger. */
529 1.243 ad if (sp == NULL) {
530 1.243 ad if (out != NULL) {
531 1.243 ad KSI_INIT(out);
532 1.243 ad out->ksi_info._signo = signo;
533 1.243 ad out->ksi_info._code = SI_USER;
534 1.243 ad }
535 1.243 ad return signo;
536 1.243 ad }
537 1.243 ad
538 1.243 ad /* Construct mask from signo, and 'mask'. */
539 1.243 ad if (signo == 0) {
540 1.243 ad if (mask != NULL) {
541 1.243 ad tset = *mask;
542 1.243 ad __sigandset(&sp->sp_set, &tset);
543 1.243 ad } else
544 1.243 ad tset = sp->sp_set;
545 1.243 ad
546 1.243 ad /* If there are no signals pending, that's it. */
547 1.243 ad if ((signo = firstsig(&tset)) == 0)
548 1.243 ad return 0;
549 1.243 ad } else {
550 1.243 ad KASSERT(sigismember(&sp->sp_set, signo));
551 1.243 ad }
552 1.243 ad
553 1.243 ad sigdelset(&sp->sp_set, signo);
554 1.29 cgd
555 1.243 ad /* Find siginfo and copy it out. */
556 1.243 ad CIRCLEQ_FOREACH(ksi, &sp->sp_info, ksi_list) {
557 1.243 ad if (ksi->ksi_signo == signo) {
558 1.243 ad CIRCLEQ_REMOVE(&sp->sp_info, ksi, ksi_list);
559 1.243 ad KASSERT((ksi->ksi_flags & KSI_FROMPOOL) != 0);
560 1.243 ad KASSERT((ksi->ksi_flags & KSI_QUEUED) != 0);
561 1.243 ad ksi->ksi_flags &= ~KSI_QUEUED;
562 1.243 ad if (out != NULL) {
563 1.243 ad memcpy(out, ksi, sizeof(*out));
564 1.243 ad out->ksi_flags &= ~(KSI_FROMPOOL | KSI_QUEUED);
565 1.243 ad }
566 1.243 ad ksiginfo_free(ksi);
567 1.243 ad return signo;
568 1.243 ad }
569 1.79 mycroft }
570 1.79 mycroft
571 1.243 ad /* If there's no siginfo, then manufacture it. */
572 1.243 ad if (out != NULL) {
573 1.243 ad KSI_INIT(out);
574 1.243 ad out->ksi_info._signo = signo;
575 1.243 ad out->ksi_info._code = SI_USER;
576 1.243 ad }
577 1.202 perry
578 1.243 ad return signo;
579 1.29 cgd }
580 1.29 cgd
581 1.29 cgd /*
582 1.243 ad * sigput:
583 1.243 ad *
584 1.243 ad * Append a new ksiginfo element to the list of pending ksiginfo's, if
585 1.243 ad * we need to (e.g. SA_SIGINFO was requested).
586 1.29 cgd */
587 1.243 ad void
588 1.243 ad sigput(sigpend_t *sp, struct proc *p, ksiginfo_t *ksi)
589 1.48 thorpej {
590 1.243 ad ksiginfo_t *kp;
591 1.243 ad struct sigaction *sa = &SIGACTION_PS(p->p_sigacts, ksi->ksi_signo);
592 1.243 ad
593 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
594 1.243 ad KASSERT((ksi->ksi_flags & KSI_QUEUED) == 0);
595 1.243 ad
596 1.243 ad sigaddset(&sp->sp_set, ksi->ksi_signo);
597 1.243 ad
598 1.243 ad /*
599 1.243 ad * If siginfo is not required, or there is none, then just mark the
600 1.243 ad * signal as pending.
601 1.243 ad */
602 1.243 ad if ((sa->sa_flags & SA_SIGINFO) == 0 || KSI_EMPTY_P(ksi))
603 1.243 ad return;
604 1.243 ad
605 1.243 ad KASSERT((ksi->ksi_flags & KSI_FROMPOOL) != 0);
606 1.79 mycroft
607 1.243 ad #ifdef notyet /* XXX: QUEUING */
608 1.243 ad if (ksi->ksi_signo < SIGRTMIN)
609 1.243 ad #endif
610 1.243 ad {
611 1.243 ad CIRCLEQ_FOREACH(kp, &sp->sp_info, ksi_list) {
612 1.243 ad if (kp->ksi_signo == ksi->ksi_signo) {
613 1.243 ad KSI_COPY(ksi, kp);
614 1.243 ad kp->ksi_flags |= KSI_QUEUED;
615 1.243 ad return;
616 1.243 ad }
617 1.243 ad }
618 1.79 mycroft }
619 1.79 mycroft
620 1.243 ad ksi->ksi_flags |= KSI_QUEUED;
621 1.243 ad CIRCLEQ_INSERT_TAIL(&sp->sp_info, ksi, ksi_list);
622 1.79 mycroft }
623 1.79 mycroft
624 1.243 ad /*
625 1.243 ad * sigclear:
626 1.243 ad *
627 1.243 ad * Clear all pending signals in the specified set.
628 1.243 ad */
629 1.243 ad void
630 1.243 ad sigclear(sigpend_t *sp, sigset_t *mask, ksiginfoq_t *kq)
631 1.79 mycroft {
632 1.243 ad ksiginfo_t *ksi, *next;
633 1.112 lukem
634 1.243 ad if (mask == NULL)
635 1.243 ad sigemptyset(&sp->sp_set);
636 1.243 ad else
637 1.243 ad sigminusset(mask, &sp->sp_set);
638 1.79 mycroft
639 1.243 ad ksi = CIRCLEQ_FIRST(&sp->sp_info);
640 1.243 ad for (; ksi != (void *)&sp->sp_info; ksi = next) {
641 1.243 ad next = CIRCLEQ_NEXT(ksi, ksi_list);
642 1.243 ad if (mask == NULL || sigismember(mask, ksi->ksi_signo)) {
643 1.243 ad CIRCLEQ_REMOVE(&sp->sp_info, ksi, ksi_list);
644 1.243 ad KASSERT((ksi->ksi_flags & KSI_FROMPOOL) != 0);
645 1.243 ad KASSERT((ksi->ksi_flags & KSI_QUEUED) != 0);
646 1.243 ad CIRCLEQ_INSERT_TAIL(kq, ksi, ksi_list);
647 1.79 mycroft }
648 1.79 mycroft }
649 1.243 ad }
650 1.243 ad
651 1.243 ad /*
652 1.243 ad * sigclearall:
653 1.243 ad *
654 1.243 ad * Clear all pending signals in the specified set from a process and
655 1.243 ad * its LWPs.
656 1.243 ad */
657 1.243 ad void
658 1.243 ad sigclearall(struct proc *p, sigset_t *mask, ksiginfoq_t *kq)
659 1.243 ad {
660 1.243 ad struct lwp *l;
661 1.243 ad
662 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
663 1.79 mycroft
664 1.243 ad sigclear(&p->p_sigpend, mask, kq);
665 1.243 ad
666 1.243 ad LIST_FOREACH(l, &p->p_lwps, l_sibling) {
667 1.243 ad sigclear(&l->l_sigpend, mask, kq);
668 1.243 ad }
669 1.29 cgd }
670 1.29 cgd
671 1.243 ad /*
672 1.243 ad * sigispending:
673 1.243 ad *
674 1.243 ad * Return true if there are pending signals for the current LWP. May
675 1.243 ad * be called unlocked provided that L_PENDSIG is set, and that the
676 1.243 ad * signal has been posted to the appopriate queue before L_PENDSIG is
677 1.243 ad * set.
678 1.243 ad */
679 1.52 christos int
680 1.243 ad sigispending(struct lwp *l, int signo)
681 1.48 thorpej {
682 1.243 ad struct proc *p = l->l_proc;
683 1.243 ad sigset_t tset;
684 1.243 ad
685 1.243 ad mb_read();
686 1.243 ad
687 1.243 ad tset = l->l_sigpend.sp_set;
688 1.243 ad sigplusset(&p->p_sigpend.sp_set, &tset);
689 1.243 ad sigminusset(&p->p_sigctx.ps_sigignore, &tset);
690 1.243 ad sigminusset(&l->l_sigmask, &tset);
691 1.243 ad
692 1.243 ad if (signo == 0) {
693 1.243 ad if (firstsig(&tset) != 0)
694 1.243 ad return EINTR;
695 1.243 ad } else if (sigismember(&tset, signo))
696 1.243 ad return EINTR;
697 1.243 ad
698 1.243 ad return 0;
699 1.243 ad }
700 1.243 ad
701 1.243 ad /*
702 1.243 ad * siginfo_alloc:
703 1.243 ad *
704 1.243 ad * Allocate a new siginfo_t structure from the pool.
705 1.243 ad */
706 1.243 ad siginfo_t *
707 1.243 ad siginfo_alloc(int flags)
708 1.243 ad {
709 1.243 ad
710 1.243 ad return pool_get(&siginfo_pool, flags);
711 1.243 ad }
712 1.243 ad
713 1.243 ad /*
714 1.243 ad * siginfo_free:
715 1.243 ad *
716 1.243 ad * Return a siginfo_t structure to the pool.
717 1.243 ad */
718 1.243 ad void
719 1.243 ad siginfo_free(void *arg)
720 1.243 ad {
721 1.243 ad
722 1.243 ad pool_put(&siginfo_pool, arg);
723 1.243 ad }
724 1.243 ad
725 1.243 ad void
726 1.243 ad getucontext(struct lwp *l, ucontext_t *ucp)
727 1.243 ad {
728 1.243 ad struct proc *p = l->l_proc;
729 1.243 ad
730 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
731 1.243 ad
732 1.243 ad ucp->uc_flags = 0;
733 1.243 ad ucp->uc_link = l->l_ctxlink;
734 1.243 ad
735 1.243 ad ucp->uc_sigmask = l->l_sigmask;
736 1.243 ad ucp->uc_flags |= _UC_SIGMASK;
737 1.243 ad
738 1.243 ad /*
739 1.243 ad * The (unsupplied) definition of the `current execution stack'
740 1.243 ad * in the System V Interface Definition appears to allow returning
741 1.243 ad * the main context stack.
742 1.243 ad *
743 1.243 ad * XXXLWP this is borken for multiple LWPs.
744 1.243 ad */
745 1.243 ad if ((l->l_sigstk.ss_flags & SS_ONSTACK) == 0) {
746 1.243 ad ucp->uc_stack.ss_sp = (void *)USRSTACK;
747 1.243 ad ucp->uc_stack.ss_size = ctob(l->l_proc->p_vmspace->vm_ssize);
748 1.243 ad ucp->uc_stack.ss_flags = 0; /* XXX, def. is Very Fishy */
749 1.243 ad } else {
750 1.243 ad /* Simply copy alternate signal execution stack. */
751 1.243 ad ucp->uc_stack = l->l_sigstk;
752 1.79 mycroft }
753 1.243 ad ucp->uc_flags |= _UC_STACK;
754 1.243 ad mutex_exit(&p->p_smutex);
755 1.243 ad cpu_getmcontext(l, &ucp->uc_mcontext, &ucp->uc_flags);
756 1.243 ad mutex_enter(&p->p_smutex);
757 1.29 cgd }
758 1.29 cgd
759 1.29 cgd int
760 1.243 ad setucontext(struct lwp *l, const ucontext_t *ucp)
761 1.48 thorpej {
762 1.243 ad struct proc *p = l->l_proc;
763 1.223 yamt int error;
764 1.29 cgd
765 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
766 1.243 ad
767 1.243 ad if ((ucp->uc_flags & _UC_SIGMASK) != 0) {
768 1.243 ad error = sigprocmask1(l, SIG_SETMASK, &ucp->uc_sigmask, NULL);
769 1.243 ad if (error != 0)
770 1.223 yamt return error;
771 1.29 cgd }
772 1.243 ad
773 1.243 ad mutex_exit(&p->p_smutex);
774 1.243 ad error = cpu_setmcontext(l, &ucp->uc_mcontext, ucp->uc_flags);
775 1.243 ad mutex_enter(&p->p_smutex);
776 1.243 ad if (error != 0)
777 1.243 ad return (error);
778 1.243 ad
779 1.243 ad l->l_ctxlink = ucp->uc_link;
780 1.243 ad
781 1.243 ad /*
782 1.243 ad * If there was stack information, update whether or not we are
783 1.243 ad * still running on an alternate signal stack.
784 1.243 ad */
785 1.243 ad if ((ucp->uc_flags & _UC_STACK) != 0) {
786 1.243 ad if (ucp->uc_stack.ss_flags & SS_ONSTACK)
787 1.243 ad l->l_sigstk.ss_flags |= SS_ONSTACK;
788 1.243 ad else
789 1.243 ad l->l_sigstk.ss_flags &= ~SS_ONSTACK;
790 1.243 ad }
791 1.243 ad
792 1.243 ad return 0;
793 1.29 cgd }
794 1.29 cgd
795 1.29 cgd /*
796 1.243 ad * Common code for kill process group/broadcast kill. cp is calling
797 1.243 ad * process.
798 1.29 cgd */
799 1.52 christos int
800 1.224 ad killpg1(struct lwp *l, ksiginfo_t *ksi, int pgid, int all)
801 1.29 cgd {
802 1.224 ad struct proc *p, *cp;
803 1.220 elad kauth_cred_t pc;
804 1.112 lukem struct pgrp *pgrp;
805 1.112 lukem int nfound;
806 1.243 ad int signo = ksi->ksi_signo;
807 1.202 perry
808 1.224 ad cp = l->l_proc;
809 1.224 ad pc = l->l_cred;
810 1.112 lukem nfound = 0;
811 1.243 ad
812 1.251 ad mutex_enter(&proclist_lock);
813 1.91 thorpej if (all) {
814 1.202 perry /*
815 1.202 perry * broadcast
816 1.29 cgd */
817 1.199 yamt PROCLIST_FOREACH(p, &allproc) {
818 1.246 pavel if (p->p_pid <= 1 || p->p_flag & PK_SYSTEM || p == cp)
819 1.29 cgd continue;
820 1.243 ad mutex_enter(&p->p_mutex);
821 1.243 ad if (kauth_authorize_process(pc,
822 1.243 ad KAUTH_PROCESS_CANSIGNAL, p,
823 1.243 ad (void *)(uintptr_t)signo, NULL, NULL) == 0) {
824 1.243 ad nfound++;
825 1.243 ad if (signo) {
826 1.243 ad mutex_enter(&proclist_mutex);
827 1.243 ad mutex_enter(&p->p_smutex);
828 1.243 ad kpsignal2(p, ksi);
829 1.243 ad mutex_exit(&p->p_smutex);
830 1.243 ad mutex_exit(&proclist_mutex);
831 1.243 ad }
832 1.243 ad }
833 1.243 ad mutex_exit(&p->p_mutex);
834 1.29 cgd }
835 1.91 thorpej } else {
836 1.202 perry if (pgid == 0)
837 1.202 perry /*
838 1.29 cgd * zero pgid means send to my process group.
839 1.29 cgd */
840 1.29 cgd pgrp = cp->p_pgrp;
841 1.29 cgd else {
842 1.243 ad pgrp = pg_find(pgid, PFIND_LOCKED);
843 1.29 cgd if (pgrp == NULL)
844 1.243 ad goto out;
845 1.29 cgd }
846 1.124 matt LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
847 1.246 pavel if (p->p_pid <= 1 || p->p_flag & PK_SYSTEM)
848 1.29 cgd continue;
849 1.243 ad mutex_enter(&p->p_mutex);
850 1.243 ad if (kauth_authorize_process(pc, KAUTH_PROCESS_CANSIGNAL,
851 1.243 ad p, (void *)(uintptr_t)signo, NULL, NULL) == 0) {
852 1.243 ad nfound++;
853 1.243 ad if (signo) {
854 1.243 ad mutex_enter(&proclist_mutex);
855 1.243 ad mutex_enter(&p->p_smutex);
856 1.243 ad if (P_ZOMBIE(p) == 0)
857 1.243 ad kpsignal2(p, ksi);
858 1.243 ad mutex_exit(&p->p_smutex);
859 1.243 ad mutex_exit(&proclist_mutex);
860 1.243 ad }
861 1.243 ad }
862 1.243 ad mutex_exit(&p->p_mutex);
863 1.29 cgd }
864 1.29 cgd }
865 1.243 ad out:
866 1.251 ad mutex_exit(&proclist_lock);
867 1.29 cgd return (nfound ? 0 : ESRCH);
868 1.29 cgd }
869 1.29 cgd
870 1.29 cgd /*
871 1.243 ad * Send a signal to a process group. If checktty is 1, limit to members
872 1.243 ad * which have a controlling terminal.
873 1.29 cgd */
874 1.29 cgd void
875 1.243 ad pgsignal(struct pgrp *pgrp, int sig, int checkctty)
876 1.29 cgd {
877 1.148 christos ksiginfo_t ksi;
878 1.148 christos
879 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
880 1.29 cgd
881 1.192 matt KSI_INIT_EMPTY(&ksi);
882 1.148 christos ksi.ksi_signo = sig;
883 1.148 christos kpgsignal(pgrp, &ksi, NULL, checkctty);
884 1.148 christos }
885 1.148 christos
886 1.148 christos void
887 1.148 christos kpgsignal(struct pgrp *pgrp, ksiginfo_t *ksi, void *data, int checkctty)
888 1.29 cgd {
889 1.98 augustss struct proc *p;
890 1.29 cgd
891 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
892 1.243 ad
893 1.29 cgd if (pgrp)
894 1.124 matt LIST_FOREACH(p, &pgrp->pg_members, p_pglist)
895 1.243 ad if (checkctty == 0 || p->p_lflag & PL_CONTROLT)
896 1.148 christos kpsignal(p, ksi, data);
897 1.29 cgd }
898 1.29 cgd
899 1.29 cgd /*
900 1.243 ad * Send a signal caused by a trap to the current LWP. If it will be caught
901 1.243 ad * immediately, deliver it with correct code. Otherwise, post it normally.
902 1.29 cgd */
903 1.148 christos void
904 1.243 ad trapsignal(struct lwp *l, ksiginfo_t *ksi)
905 1.148 christos {
906 1.130 thorpej struct proc *p;
907 1.130 thorpej struct sigacts *ps;
908 1.243 ad int signo = ksi->ksi_signo;
909 1.29 cgd
910 1.166 thorpej KASSERT(KSI_TRAP_P(ksi));
911 1.166 thorpej
912 1.243 ad ksi->ksi_lid = l->l_lid;
913 1.130 thorpej p = l->l_proc;
914 1.243 ad
915 1.243 ad mutex_enter(&proclist_mutex);
916 1.243 ad mutex_enter(&p->p_smutex);
917 1.112 lukem ps = p->p_sigacts;
918 1.243 ad if ((p->p_slflag & PSL_TRACED) == 0 &&
919 1.243 ad sigismember(&p->p_sigctx.ps_sigcatch, signo) &&
920 1.243 ad !sigismember(&l->l_sigmask, signo)) {
921 1.243 ad mutex_exit(&proclist_mutex);
922 1.29 cgd p->p_stats->p_ru.ru_nsignals++;
923 1.243 ad kpsendsig(l, ksi, &l->l_sigmask);
924 1.243 ad mutex_exit(&p->p_smutex);
925 1.255 ad ktrpsig(signo, SIGACTION_PS(ps, signo).sa_handler,
926 1.255 ad &l->l_sigmask, ksi);
927 1.29 cgd } else {
928 1.243 ad /* XXX for core dump/debugger */
929 1.152 christos p->p_sigctx.ps_lwp = l->l_lid;
930 1.152 christos p->p_sigctx.ps_signo = ksi->ksi_signo;
931 1.152 christos p->p_sigctx.ps_code = ksi->ksi_trap;
932 1.234 yamt kpsignal2(p, ksi);
933 1.243 ad mutex_exit(&proclist_mutex);
934 1.243 ad mutex_exit(&p->p_smutex);
935 1.29 cgd }
936 1.29 cgd }
937 1.29 cgd
938 1.29 cgd /*
939 1.151 christos * Fill in signal information and signal the parent for a child status change.
940 1.151 christos */
941 1.216 christos void
942 1.243 ad child_psignal(struct proc *p, int mask)
943 1.151 christos {
944 1.151 christos ksiginfo_t ksi;
945 1.243 ad struct proc *q;
946 1.243 ad int xstat;
947 1.243 ad
948 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
949 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
950 1.243 ad
951 1.243 ad xstat = p->p_xstat;
952 1.151 christos
953 1.191 matt KSI_INIT(&ksi);
954 1.151 christos ksi.ksi_signo = SIGCHLD;
955 1.243 ad ksi.ksi_code = (xstat == SIGCONT ? CLD_CONTINUED : CLD_STOPPED);
956 1.151 christos ksi.ksi_pid = p->p_pid;
957 1.220 elad ksi.ksi_uid = kauth_cred_geteuid(p->p_cred);
958 1.243 ad ksi.ksi_status = xstat;
959 1.151 christos ksi.ksi_utime = p->p_stats->p_ru.ru_utime.tv_sec;
960 1.151 christos ksi.ksi_stime = p->p_stats->p_ru.ru_stime.tv_sec;
961 1.243 ad
962 1.243 ad q = p->p_pptr;
963 1.243 ad
964 1.243 ad mutex_exit(&p->p_smutex);
965 1.243 ad mutex_enter(&q->p_smutex);
966 1.243 ad
967 1.243 ad if ((q->p_sflag & mask) == 0)
968 1.243 ad kpsignal2(q, &ksi);
969 1.243 ad
970 1.243 ad mutex_exit(&q->p_smutex);
971 1.243 ad mutex_enter(&p->p_smutex);
972 1.151 christos }
973 1.151 christos
974 1.29 cgd void
975 1.243 ad psignal(struct proc *p, int signo)
976 1.148 christos {
977 1.165 thorpej ksiginfo_t ksi;
978 1.165 thorpej
979 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
980 1.243 ad
981 1.192 matt KSI_INIT_EMPTY(&ksi);
982 1.243 ad ksi.ksi_signo = signo;
983 1.243 ad mutex_enter(&p->p_smutex);
984 1.234 yamt kpsignal2(p, &ksi);
985 1.243 ad mutex_exit(&p->p_smutex);
986 1.148 christos }
987 1.148 christos
988 1.148 christos void
989 1.234 yamt kpsignal(struct proc *p, ksiginfo_t *ksi, void *data)
990 1.160 christos {
991 1.165 thorpej
992 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
993 1.243 ad
994 1.243 ad /* XXXSMP Why is this here? */
995 1.243 ad if ((p->p_sflag & PS_WEXIT) == 0 && data) {
996 1.160 christos size_t fd;
997 1.160 christos struct filedesc *fdp = p->p_fd;
998 1.165 thorpej
999 1.160 christos ksi->ksi_fd = -1;
1000 1.160 christos for (fd = 0; fd < fdp->fd_nfiles; fd++) {
1001 1.160 christos struct file *fp = fdp->fd_ofiles[fd];
1002 1.160 christos /* XXX: lock? */
1003 1.160 christos if (fp && fp->f_data == data) {
1004 1.160 christos ksi->ksi_fd = fd;
1005 1.160 christos break;
1006 1.160 christos }
1007 1.160 christos }
1008 1.160 christos }
1009 1.243 ad mutex_enter(&p->p_smutex);
1010 1.234 yamt kpsignal2(p, ksi);
1011 1.243 ad mutex_exit(&p->p_smutex);
1012 1.160 christos }
1013 1.160 christos
1014 1.243 ad /*
1015 1.243 ad * sigismasked:
1016 1.243 ad *
1017 1.243 ad * Returns true if signal is ignored or masked for the specified LWP.
1018 1.243 ad */
1019 1.243 ad int
1020 1.243 ad sigismasked(struct lwp *l, int sig)
1021 1.29 cgd {
1022 1.243 ad struct proc *p = l->l_proc;
1023 1.243 ad
1024 1.243 ad return (sigismember(&p->p_sigctx.ps_sigignore, sig) ||
1025 1.243 ad sigismember(&l->l_sigmask, sig));
1026 1.243 ad }
1027 1.29 cgd
1028 1.243 ad /*
1029 1.243 ad * sigpost:
1030 1.243 ad *
1031 1.243 ad * Post a pending signal to an LWP. Returns non-zero if the LWP was
1032 1.243 ad * able to take the signal.
1033 1.243 ad */
1034 1.243 ad int
1035 1.243 ad sigpost(struct lwp *l, sig_t action, int prop, int sig)
1036 1.243 ad {
1037 1.243 ad int rv, masked;
1038 1.148 christos
1039 1.250 ad KASSERT(mutex_owned(&l->l_proc->p_smutex));
1040 1.148 christos
1041 1.183 fvdl /*
1042 1.243 ad * If the LWP is on the way out, sigclear() will be busy draining all
1043 1.243 ad * pending signals. Don't give it more.
1044 1.126 jdolecek */
1045 1.243 ad if (l->l_refcnt == 0)
1046 1.243 ad return 0;
1047 1.243 ad
1048 1.243 ad lwp_lock(l);
1049 1.126 jdolecek
1050 1.243 ad /*
1051 1.243 ad * Have the LWP check for signals. This ensures that even if no LWP
1052 1.243 ad * is found to take the signal immediately, it should be taken soon.
1053 1.243 ad */
1054 1.246 pavel l->l_flag |= LW_PENDSIG;
1055 1.29 cgd
1056 1.29 cgd /*
1057 1.243 ad * SIGCONT can be masked, but must always restart stopped LWPs.
1058 1.29 cgd */
1059 1.243 ad masked = sigismember(&l->l_sigmask, sig);
1060 1.243 ad if (masked && ((prop & SA_CONT) == 0 || l->l_stat != LSSTOP)) {
1061 1.243 ad lwp_unlock(l);
1062 1.243 ad return 0;
1063 1.243 ad }
1064 1.198 jdolecek
1065 1.243 ad /*
1066 1.247 ad * If killing the process, make it run fast.
1067 1.247 ad */
1068 1.247 ad if (__predict_false((prop & SA_KILL) != 0) &&
1069 1.247 ad action == SIG_DFL && l->l_priority > PUSER)
1070 1.247 ad lwp_changepri(l, PUSER);
1071 1.247 ad
1072 1.247 ad /*
1073 1.243 ad * If the LWP is running or on a run queue, then we win. If it's
1074 1.243 ad * sleeping interruptably, wake it and make it take the signal. If
1075 1.243 ad * the sleep isn't interruptable, then the chances are it will get
1076 1.243 ad * to see the signal soon anyhow. If suspended, it can't take the
1077 1.243 ad * signal right now. If it's LWP private or for all LWPs, save it
1078 1.243 ad * for later; otherwise punt.
1079 1.243 ad */
1080 1.243 ad rv = 0;
1081 1.243 ad
1082 1.243 ad switch (l->l_stat) {
1083 1.243 ad case LSRUN:
1084 1.243 ad case LSONPROC:
1085 1.243 ad lwp_need_userret(l);
1086 1.243 ad rv = 1;
1087 1.243 ad break;
1088 1.243 ad
1089 1.243 ad case LSSLEEP:
1090 1.246 pavel if ((l->l_flag & LW_SINTR) != 0) {
1091 1.243 ad /* setrunnable() will release the lock. */
1092 1.243 ad setrunnable(l);
1093 1.243 ad return 1;
1094 1.232 mrg }
1095 1.243 ad break;
1096 1.243 ad
1097 1.243 ad case LSSUSPENDED:
1098 1.243 ad if ((prop & SA_KILL) != 0) {
1099 1.243 ad /* lwp_continue() will release the lock. */
1100 1.243 ad lwp_continue(l);
1101 1.243 ad return 1;
1102 1.190 matt }
1103 1.243 ad break;
1104 1.243 ad
1105 1.243 ad case LSSTOP:
1106 1.243 ad if ((prop & SA_STOP) != 0)
1107 1.243 ad break;
1108 1.198 jdolecek
1109 1.198 jdolecek /*
1110 1.243 ad * If the LWP is stopped and we are sending a continue
1111 1.243 ad * signal, then start it again.
1112 1.198 jdolecek */
1113 1.243 ad if ((prop & SA_CONT) != 0) {
1114 1.243 ad if (l->l_wchan != NULL) {
1115 1.243 ad l->l_stat = LSSLEEP;
1116 1.243 ad l->l_proc->p_nrlwps++;
1117 1.243 ad rv = 1;
1118 1.243 ad break;
1119 1.243 ad }
1120 1.243 ad /* setrunnable() will release the lock. */
1121 1.243 ad setrunnable(l);
1122 1.243 ad return 1;
1123 1.246 pavel } else if (l->l_wchan == NULL || (l->l_flag & LW_SINTR) != 0) {
1124 1.243 ad /* setrunnable() will release the lock. */
1125 1.243 ad setrunnable(l);
1126 1.243 ad return 1;
1127 1.243 ad }
1128 1.243 ad break;
1129 1.198 jdolecek
1130 1.243 ad default:
1131 1.243 ad break;
1132 1.243 ad }
1133 1.44 mycroft
1134 1.243 ad lwp_unlock(l);
1135 1.243 ad return rv;
1136 1.243 ad }
1137 1.29 cgd
1138 1.243 ad /*
1139 1.243 ad * Notify an LWP that it has a pending signal.
1140 1.243 ad */
1141 1.243 ad void
1142 1.243 ad signotify(struct lwp *l)
1143 1.243 ad {
1144 1.250 ad KASSERT(lwp_locked(l, NULL));
1145 1.29 cgd
1146 1.246 pavel l->l_flag |= LW_PENDSIG;
1147 1.243 ad lwp_need_userret(l);
1148 1.243 ad }
1149 1.44 mycroft
1150 1.243 ad /*
1151 1.243 ad * Find an LWP within process p that is waiting on signal ksi, and hand
1152 1.243 ad * it on.
1153 1.243 ad */
1154 1.243 ad int
1155 1.243 ad sigunwait(struct proc *p, const ksiginfo_t *ksi)
1156 1.243 ad {
1157 1.243 ad struct lwp *l;
1158 1.243 ad int signo;
1159 1.135 jdolecek
1160 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1161 1.171 jdolecek
1162 1.243 ad signo = ksi->ksi_signo;
1163 1.243 ad
1164 1.243 ad if (ksi->ksi_lid != 0) {
1165 1.243 ad /*
1166 1.243 ad * Signal came via _lwp_kill(). Find the LWP and see if
1167 1.243 ad * it's interested.
1168 1.243 ad */
1169 1.243 ad if ((l = lwp_find(p, ksi->ksi_lid)) == NULL)
1170 1.243 ad return 0;
1171 1.243 ad if (l->l_sigwaited == NULL ||
1172 1.243 ad !sigismember(&l->l_sigwaitset, signo))
1173 1.243 ad return 0;
1174 1.243 ad } else {
1175 1.243 ad /*
1176 1.243 ad * Look for any LWP that may be interested.
1177 1.243 ad */
1178 1.243 ad LIST_FOREACH(l, &p->p_sigwaiters, l_sigwaiter) {
1179 1.243 ad KASSERT(l->l_sigwaited != NULL);
1180 1.243 ad if (sigismember(&l->l_sigwaitset, signo))
1181 1.243 ad break;
1182 1.243 ad }
1183 1.243 ad }
1184 1.243 ad
1185 1.243 ad if (l != NULL) {
1186 1.243 ad l->l_sigwaited->ksi_info = ksi->ksi_info;
1187 1.243 ad l->l_sigwaited = NULL;
1188 1.243 ad LIST_REMOVE(l, l_sigwaiter);
1189 1.243 ad cv_signal(&l->l_sigcv);
1190 1.243 ad return 1;
1191 1.243 ad }
1192 1.243 ad
1193 1.243 ad return 0;
1194 1.243 ad }
1195 1.243 ad
1196 1.243 ad /*
1197 1.243 ad * Send the signal to the process. If the signal has an action, the action
1198 1.243 ad * is usually performed by the target process rather than the caller; we add
1199 1.243 ad * the signal to the set of pending signals for the process.
1200 1.243 ad *
1201 1.243 ad * Exceptions:
1202 1.243 ad * o When a stop signal is sent to a sleeping process that takes the
1203 1.243 ad * default action, the process is stopped without awakening it.
1204 1.243 ad * o SIGCONT restarts stopped processes (or puts them back to sleep)
1205 1.243 ad * regardless of the signal action (eg, blocked or ignored).
1206 1.243 ad *
1207 1.243 ad * Other ignored signals are discarded immediately.
1208 1.243 ad */
1209 1.243 ad void
1210 1.243 ad kpsignal2(struct proc *p, ksiginfo_t *ksi)
1211 1.243 ad {
1212 1.243 ad int prop, lid, toall, signo = ksi->ksi_signo;
1213 1.243 ad struct lwp *l;
1214 1.243 ad ksiginfo_t *kp;
1215 1.243 ad ksiginfoq_t kq;
1216 1.243 ad sig_t action;
1217 1.243 ad
1218 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
1219 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1220 1.243 ad KASSERT((ksi->ksi_flags & KSI_QUEUED) == 0);
1221 1.243 ad KASSERT(signo > 0 && signo < NSIG);
1222 1.171 jdolecek
1223 1.135 jdolecek /*
1224 1.243 ad * If the process is being created by fork, is a zombie or is
1225 1.243 ad * exiting, then just drop the signal here and bail out.
1226 1.29 cgd */
1227 1.243 ad if (p->p_stat != SACTIVE && p->p_stat != SSTOP)
1228 1.231 mrg return;
1229 1.231 mrg
1230 1.231 mrg /*
1231 1.243 ad * Notify any interested parties of the signal.
1232 1.243 ad */
1233 1.243 ad KNOTE(&p->p_klist, NOTE_SIGNAL | signo);
1234 1.243 ad
1235 1.243 ad /*
1236 1.243 ad * Some signals including SIGKILL must act on the entire process.
1237 1.231 mrg */
1238 1.243 ad kp = NULL;
1239 1.243 ad prop = sigprop[signo];
1240 1.243 ad toall = ((prop & SA_TOALL) != 0);
1241 1.243 ad
1242 1.243 ad if (toall)
1243 1.243 ad lid = 0;
1244 1.243 ad else
1245 1.243 ad lid = ksi->ksi_lid;
1246 1.231 mrg
1247 1.243 ad /*
1248 1.243 ad * If proc is traced, always give parent a chance.
1249 1.243 ad */
1250 1.243 ad if (p->p_slflag & PSL_TRACED) {
1251 1.243 ad action = SIG_DFL;
1252 1.104 thorpej
1253 1.243 ad if (lid == 0) {
1254 1.243 ad /*
1255 1.243 ad * If the process is being traced and the signal
1256 1.243 ad * is being caught, make sure to save any ksiginfo.
1257 1.243 ad */
1258 1.243 ad if ((kp = ksiginfo_alloc(p, ksi, PR_NOWAIT)) == NULL)
1259 1.243 ad return;
1260 1.243 ad sigput(&p->p_sigpend, p, kp);
1261 1.243 ad }
1262 1.243 ad } else {
1263 1.243 ad /*
1264 1.243 ad * If the signal was the result of a trap and is not being
1265 1.243 ad * caught, then reset it to default action so that the
1266 1.243 ad * process dumps core immediately.
1267 1.243 ad */
1268 1.243 ad if (KSI_TRAP_P(ksi)) {
1269 1.243 ad if (!sigismember(&p->p_sigctx.ps_sigcatch, signo)) {
1270 1.243 ad sigdelset(&p->p_sigctx.ps_sigignore, signo);
1271 1.243 ad SIGACTION(p, signo).sa_handler = SIG_DFL;
1272 1.187 cl }
1273 1.175 cl }
1274 1.243 ad
1275 1.29 cgd /*
1276 1.243 ad * If the signal is being ignored, then drop it. Note: we
1277 1.243 ad * don't set SIGCONT in ps_sigignore, and if it is set to
1278 1.243 ad * SIG_IGN, action will be SIG_DFL here.
1279 1.29 cgd */
1280 1.243 ad if (sigismember(&p->p_sigctx.ps_sigignore, signo))
1281 1.243 ad return;
1282 1.243 ad
1283 1.243 ad else if (sigismember(&p->p_sigctx.ps_sigcatch, signo))
1284 1.243 ad action = SIG_CATCH;
1285 1.243 ad else {
1286 1.243 ad action = SIG_DFL;
1287 1.243 ad
1288 1.243 ad /*
1289 1.243 ad * If sending a tty stop signal to a member of an
1290 1.243 ad * orphaned process group, discard the signal here if
1291 1.243 ad * the action is default; don't stop the process below
1292 1.243 ad * if sleeping, and don't clear any pending SIGCONT.
1293 1.243 ad */
1294 1.243 ad if (prop & SA_TTYSTOP &&
1295 1.243 ad (p->p_sflag & PS_ORPHANPG) != 0)
1296 1.243 ad return;
1297 1.243 ad
1298 1.243 ad if (prop & SA_KILL && p->p_nice > NZERO)
1299 1.243 ad p->p_nice = NZERO;
1300 1.29 cgd }
1301 1.175 cl }
1302 1.175 cl
1303 1.243 ad /*
1304 1.243 ad * If stopping or continuing a process, discard any pending
1305 1.243 ad * signals that would do the inverse.
1306 1.243 ad */
1307 1.243 ad if ((prop & (SA_CONT | SA_STOP)) != 0) {
1308 1.243 ad ksiginfo_queue_init(&kq);
1309 1.243 ad if ((prop & SA_CONT) != 0)
1310 1.243 ad sigclear(&p->p_sigpend, &stopsigmask, &kq);
1311 1.243 ad if ((prop & SA_STOP) != 0)
1312 1.243 ad sigclear(&p->p_sigpend, &contsigmask, &kq);
1313 1.243 ad ksiginfo_queue_drain(&kq); /* XXXSMP */
1314 1.243 ad }
1315 1.243 ad
1316 1.243 ad /*
1317 1.243 ad * If the signal doesn't have SA_CANTMASK (no override for SIGKILL,
1318 1.243 ad * please!), check if any LWPs are waiting on it. If yes, pass on
1319 1.243 ad * the signal info. The signal won't be processed further here.
1320 1.243 ad */
1321 1.243 ad if ((prop & SA_CANTMASK) == 0 && !LIST_EMPTY(&p->p_sigwaiters) &&
1322 1.243 ad p->p_stat == SACTIVE && (p->p_sflag & PS_STOPPING) == 0 &&
1323 1.243 ad sigunwait(p, ksi))
1324 1.243 ad return;
1325 1.243 ad
1326 1.243 ad /*
1327 1.243 ad * XXXSMP Should be allocated by the caller, we're holding locks
1328 1.243 ad * here.
1329 1.243 ad */
1330 1.243 ad if (kp == NULL && (kp = ksiginfo_alloc(p, ksi, PR_NOWAIT)) == NULL)
1331 1.243 ad return;
1332 1.243 ad
1333 1.243 ad /*
1334 1.243 ad * LWP private signals are easy - just find the LWP and post
1335 1.243 ad * the signal to it.
1336 1.243 ad */
1337 1.243 ad if (lid != 0) {
1338 1.243 ad l = lwp_find(p, lid);
1339 1.243 ad if (l != NULL) {
1340 1.243 ad sigput(&l->l_sigpend, p, kp);
1341 1.243 ad mb_write();
1342 1.243 ad (void)sigpost(l, action, prop, kp->ksi_signo);
1343 1.243 ad }
1344 1.243 ad goto out;
1345 1.243 ad }
1346 1.130 thorpej
1347 1.243 ad /*
1348 1.250 ad * Some signals go to all LWPs, even if posted with _lwp_kill().
1349 1.243 ad */
1350 1.243 ad if (p->p_stat == SACTIVE && (p->p_sflag & PS_STOPPING) == 0) {
1351 1.243 ad if ((p->p_slflag & PSL_TRACED) != 0)
1352 1.243 ad goto deliver;
1353 1.202 perry
1354 1.176 cl /*
1355 1.176 cl * If SIGCONT is default (or ignored) and process is
1356 1.176 cl * asleep, we are finished; the process should not
1357 1.176 cl * be awakened.
1358 1.176 cl */
1359 1.243 ad if ((prop & SA_CONT) != 0 && action == SIG_DFL)
1360 1.243 ad goto out;
1361 1.176 cl
1362 1.243 ad if ((prop & SA_STOP) != 0 && action == SIG_DFL) {
1363 1.29 cgd /*
1364 1.243 ad * If a child holding parent blocked, stopping could
1365 1.243 ad * cause deadlock: discard the signal.
1366 1.29 cgd */
1367 1.243 ad if ((p->p_sflag & PS_PPWAIT) == 0) {
1368 1.243 ad p->p_xstat = signo;
1369 1.243 ad proc_stop(p, 1, signo);
1370 1.130 thorpej }
1371 1.243 ad goto out;
1372 1.243 ad } else {
1373 1.130 thorpej /*
1374 1.243 ad * Stop signals with the default action are handled
1375 1.243 ad * specially in issignal(), and so are not enqueued.
1376 1.130 thorpej */
1377 1.243 ad sigput(&p->p_sigpend, p, kp);
1378 1.176 cl }
1379 1.243 ad } else {
1380 1.176 cl /*
1381 1.250 ad * Process is stopped or stopping. If traced, then no
1382 1.250 ad * further action is necessary.
1383 1.176 cl */
1384 1.243 ad if ((p->p_slflag & PSL_TRACED) != 0 && signo != SIGKILL)
1385 1.243 ad goto out;
1386 1.29 cgd
1387 1.243 ad if ((prop & (SA_CONT | SA_KILL)) != 0) {
1388 1.243 ad /*
1389 1.243 ad * Re-adjust p_nstopchild if the process wasn't
1390 1.243 ad * collected by its parent.
1391 1.243 ad */
1392 1.243 ad p->p_stat = SACTIVE;
1393 1.243 ad p->p_sflag &= ~PS_STOPPING;
1394 1.243 ad if (!p->p_waited)
1395 1.243 ad p->p_pptr->p_nstopchild--;
1396 1.202 perry
1397 1.29 cgd /*
1398 1.243 ad * If SIGCONT is default (or ignored), we continue
1399 1.243 ad * the process but don't leave the signal in
1400 1.243 ad * ps_siglist, as it has no further action. If
1401 1.243 ad * SIGCONT is held, we continue the process and
1402 1.243 ad * leave the signal in ps_siglist. If the process
1403 1.243 ad * catches SIGCONT, let it handle the signal itself.
1404 1.243 ad * If it isn't waiting on an event, then it goes
1405 1.243 ad * back to run state. Otherwise, process goes back
1406 1.243 ad * to sleep state.
1407 1.29 cgd */
1408 1.243 ad if ((prop & SA_CONT) == 0 || action != SIG_DFL)
1409 1.243 ad sigput(&p->p_sigpend, p, kp);
1410 1.243 ad } else if ((prop & SA_STOP) != 0) {
1411 1.29 cgd /*
1412 1.176 cl * Already stopped, don't need to stop again.
1413 1.176 cl * (If we did the shell could get confused.)
1414 1.29 cgd */
1415 1.243 ad goto out;
1416 1.243 ad } else
1417 1.243 ad sigput(&p->p_sigpend, p, kp);
1418 1.243 ad }
1419 1.176 cl
1420 1.243 ad deliver:
1421 1.243 ad /*
1422 1.243 ad * Before we set L_PENDSIG on any LWP, ensure that the signal is
1423 1.243 ad * visible on the per process list (for sigispending()). This
1424 1.243 ad * is unlikely to be needed in practice, but...
1425 1.243 ad */
1426 1.243 ad mb_write();
1427 1.29 cgd
1428 1.29 cgd /*
1429 1.243 ad * Try to find an LWP that can take the signal.
1430 1.29 cgd */
1431 1.243 ad LIST_FOREACH(l, &p->p_lwps, l_sibling)
1432 1.243 ad if (sigpost(l, action, prop, kp->ksi_signo) && !toall)
1433 1.243 ad break;
1434 1.202 perry
1435 1.112 lukem out:
1436 1.243 ad /*
1437 1.250 ad * If the ksiginfo wasn't used, then bin it. XXXSMP freeing memory
1438 1.250 ad * with locks held. The caller should take care of this.
1439 1.243 ad */
1440 1.243 ad ksiginfo_free(kp);
1441 1.29 cgd }
1442 1.29 cgd
1443 1.243 ad void
1444 1.243 ad kpsendsig(struct lwp *l, const ksiginfo_t *ksi, const sigset_t *mask)
1445 1.209 chs {
1446 1.243 ad struct proc *p = l->l_proc;
1447 1.243 ad
1448 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1449 1.209 chs
1450 1.243 ad (*p->p_emul->e_sendsig)(ksi, mask);
1451 1.209 chs }
1452 1.209 chs
1453 1.243 ad /*
1454 1.243 ad * Stop the current process and switch away when being stopped or traced.
1455 1.243 ad */
1456 1.209 chs void
1457 1.248 thorpej sigswitch(bool ppsig, int ppmask, int signo)
1458 1.209 chs {
1459 1.243 ad struct lwp *l = curlwp, *l2;
1460 1.243 ad struct proc *p = l->l_proc;
1461 1.245 ad #ifdef MULTIPROCESSOR
1462 1.245 ad int biglocks;
1463 1.245 ad #endif
1464 1.243 ad
1465 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1466 1.250 ad KASSERT(l->l_stat == LSONPROC);
1467 1.250 ad KASSERT(p->p_nrlwps > 0);
1468 1.243 ad
1469 1.243 ad /*
1470 1.243 ad * On entry we know that the process needs to stop. If it's
1471 1.243 ad * the result of a 'sideways' stop signal that has been sourced
1472 1.243 ad * through issignal(), then stop other LWPs in the process too.
1473 1.243 ad */
1474 1.243 ad if (p->p_stat == SACTIVE && (p->p_sflag & PS_STOPPING) == 0) {
1475 1.243 ad /*
1476 1.243 ad * Set the stopping indicator and bring all sleeping LWPs
1477 1.243 ad * to a halt so they are included in p->p_nrlwps
1478 1.243 ad */
1479 1.243 ad p->p_sflag |= (PS_STOPPING | PS_NOTIFYSTOP);
1480 1.243 ad mb_write();
1481 1.243 ad
1482 1.243 ad LIST_FOREACH(l2, &p->p_lwps, l_sibling) {
1483 1.243 ad lwp_lock(l2);
1484 1.243 ad if (l2->l_stat == LSSLEEP &&
1485 1.246 pavel (l2->l_flag & LW_SINTR) != 0) {
1486 1.243 ad l2->l_stat = LSSTOP;
1487 1.243 ad p->p_nrlwps--;
1488 1.243 ad }
1489 1.243 ad lwp_unlock(l2);
1490 1.243 ad }
1491 1.209 chs
1492 1.243 ad /*
1493 1.243 ad * Have the remaining LWPs come to a halt, and trigger
1494 1.243 ad * proc_stop_callout() to ensure that they do.
1495 1.243 ad */
1496 1.243 ad KASSERT(signo != 0);
1497 1.250 ad KASSERT(p->p_nrlwps > 0);
1498 1.243 ad
1499 1.243 ad if (p->p_nrlwps > 1) {
1500 1.243 ad LIST_FOREACH(l2, &p->p_lwps, l_sibling)
1501 1.243 ad sigpost(l2, SIG_DFL, SA_STOP, signo);
1502 1.243 ad callout_schedule(&proc_stop_ch, 1);
1503 1.243 ad }
1504 1.243 ad }
1505 1.243 ad
1506 1.243 ad /*
1507 1.243 ad * If we are the last live LWP, and the stop was a result of
1508 1.243 ad * a new signal, then signal the parent.
1509 1.243 ad */
1510 1.243 ad if ((p->p_sflag & PS_STOPPING) != 0) {
1511 1.243 ad if (!mutex_tryenter(&proclist_mutex)) {
1512 1.243 ad mutex_exit(&p->p_smutex);
1513 1.243 ad mutex_enter(&proclist_mutex);
1514 1.243 ad mutex_enter(&p->p_smutex);
1515 1.243 ad }
1516 1.243 ad
1517 1.243 ad if (p->p_nrlwps == 1 && (p->p_sflag & PS_STOPPING) != 0) {
1518 1.243 ad p->p_sflag &= ~PS_STOPPING;
1519 1.243 ad p->p_stat = SSTOP;
1520 1.243 ad p->p_waited = 0;
1521 1.243 ad p->p_pptr->p_nstopchild++;
1522 1.243 ad if ((p->p_sflag & PS_NOTIFYSTOP) != 0) {
1523 1.243 ad /*
1524 1.243 ad * Note that child_psignal() will drop
1525 1.243 ad * p->p_smutex briefly.
1526 1.243 ad */
1527 1.243 ad if (ppsig)
1528 1.243 ad child_psignal(p, ppmask);
1529 1.243 ad cv_broadcast(&p->p_pptr->p_waitcv);
1530 1.243 ad }
1531 1.243 ad }
1532 1.243 ad
1533 1.243 ad mutex_exit(&proclist_mutex);
1534 1.243 ad }
1535 1.243 ad
1536 1.243 ad /*
1537 1.243 ad * Unlock and switch away.
1538 1.243 ad */
1539 1.245 ad KERNEL_UNLOCK_ALL(l, &biglocks);
1540 1.243 ad if (p->p_stat == SSTOP || (p->p_sflag & PS_STOPPING) != 0) {
1541 1.243 ad p->p_nrlwps--;
1542 1.243 ad lwp_lock(l);
1543 1.243 ad KASSERT(l->l_stat == LSONPROC || l->l_stat == LSSLEEP);
1544 1.243 ad l->l_stat = LSSTOP;
1545 1.243 ad lwp_unlock(l);
1546 1.243 ad }
1547 1.243 ad
1548 1.243 ad mutex_exit(&p->p_smutex);
1549 1.243 ad lwp_lock(l);
1550 1.253 yamt mi_switch(l);
1551 1.245 ad KERNEL_LOCK(biglocks, l);
1552 1.243 ad mutex_enter(&p->p_smutex);
1553 1.209 chs }
1554 1.209 chs
1555 1.243 ad /*
1556 1.243 ad * Check for a signal from the debugger.
1557 1.243 ad */
1558 1.243 ad int
1559 1.243 ad sigchecktrace(sigpend_t **spp)
1560 1.130 thorpej {
1561 1.243 ad struct lwp *l = curlwp;
1562 1.130 thorpej struct proc *p = l->l_proc;
1563 1.243 ad int signo;
1564 1.243 ad
1565 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1566 1.130 thorpej
1567 1.243 ad /*
1568 1.243 ad * If we are no longer being traced, or the parent didn't
1569 1.243 ad * give us a signal, look for more signals.
1570 1.243 ad */
1571 1.243 ad if ((p->p_slflag & PSL_TRACED) == 0 || p->p_xstat == 0)
1572 1.243 ad return 0;
1573 1.130 thorpej
1574 1.243 ad /* If there's a pending SIGKILL, process it immediately. */
1575 1.243 ad if (sigismember(&p->p_sigpend.sp_set, SIGKILL))
1576 1.243 ad return 0;
1577 1.79 mycroft
1578 1.243 ad /*
1579 1.243 ad * If the new signal is being masked, look for other signals.
1580 1.243 ad * `p->p_sigctx.ps_siglist |= mask' is done in setrunnable().
1581 1.243 ad */
1582 1.243 ad signo = p->p_xstat;
1583 1.243 ad p->p_xstat = 0;
1584 1.243 ad if ((sigprop[signo] & SA_TOLWP) != 0)
1585 1.243 ad *spp = &l->l_sigpend;
1586 1.243 ad else
1587 1.243 ad *spp = &p->p_sigpend;
1588 1.243 ad if (sigismember(&l->l_sigmask, signo))
1589 1.243 ad signo = 0;
1590 1.79 mycroft
1591 1.243 ad return signo;
1592 1.79 mycroft }
1593 1.79 mycroft
1594 1.29 cgd /*
1595 1.29 cgd * If the current process has received a signal (should be caught or cause
1596 1.29 cgd * termination, should interrupt current syscall), return the signal number.
1597 1.243 ad *
1598 1.29 cgd * Stop signals with default action are processed immediately, then cleared;
1599 1.29 cgd * they aren't returned. This is checked after each entry to the system for
1600 1.243 ad * a syscall or trap.
1601 1.243 ad *
1602 1.243 ad * We will also return -1 if the process is exiting and the current LWP must
1603 1.243 ad * follow suit.
1604 1.29 cgd *
1605 1.243 ad * Note that we may be called while on a sleep queue, so MUST NOT sleep. We
1606 1.243 ad * can switch away, though.
1607 1.29 cgd */
1608 1.29 cgd int
1609 1.130 thorpej issignal(struct lwp *l)
1610 1.29 cgd {
1611 1.243 ad struct proc *p = l->l_proc;
1612 1.243 ad int signo = 0, prop;
1613 1.243 ad sigpend_t *sp = NULL;
1614 1.243 ad sigset_t ss;
1615 1.243 ad
1616 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1617 1.29 cgd
1618 1.243 ad for (;;) {
1619 1.243 ad /* Discard any signals that we have decided not to take. */
1620 1.243 ad if (signo != 0)
1621 1.243 ad (void)sigget(sp, NULL, signo, NULL);
1622 1.144 fvdl
1623 1.243 ad /*
1624 1.243 ad * If the process is stopped/stopping, then stop ourselves
1625 1.243 ad * now that we're on the kernel/userspace boundary. When
1626 1.243 ad * we awaken, check for a signal from the debugger.
1627 1.243 ad */
1628 1.243 ad if (p->p_stat == SSTOP || (p->p_sflag & PS_STOPPING) != 0) {
1629 1.249 thorpej sigswitch(true, PS_NOCLDSTOP, 0);
1630 1.243 ad signo = sigchecktrace(&sp);
1631 1.243 ad } else
1632 1.243 ad signo = 0;
1633 1.238 ad
1634 1.130 thorpej /*
1635 1.243 ad * If the debugger didn't provide a signal, find a pending
1636 1.243 ad * signal from our set. Check per-LWP signals first, and
1637 1.243 ad * then per-process.
1638 1.243 ad */
1639 1.243 ad if (signo == 0) {
1640 1.243 ad sp = &l->l_sigpend;
1641 1.243 ad ss = sp->sp_set;
1642 1.243 ad if ((p->p_sflag & PS_PPWAIT) != 0)
1643 1.243 ad sigminusset(&stopsigmask, &ss);
1644 1.243 ad sigminusset(&l->l_sigmask, &ss);
1645 1.243 ad
1646 1.243 ad if ((signo = firstsig(&ss)) == 0) {
1647 1.243 ad sp = &p->p_sigpend;
1648 1.243 ad ss = sp->sp_set;
1649 1.243 ad if ((p->p_sflag & PS_PPWAIT) != 0)
1650 1.243 ad sigminusset(&stopsigmask, &ss);
1651 1.243 ad sigminusset(&l->l_sigmask, &ss);
1652 1.243 ad
1653 1.243 ad if ((signo = firstsig(&ss)) == 0) {
1654 1.243 ad /*
1655 1.243 ad * No signal pending - clear the
1656 1.243 ad * indicator and bail out.
1657 1.243 ad */
1658 1.243 ad lwp_lock(l);
1659 1.246 pavel l->l_flag &= ~LW_PENDSIG;
1660 1.243 ad lwp_unlock(l);
1661 1.243 ad sp = NULL;
1662 1.243 ad break;
1663 1.243 ad }
1664 1.243 ad }
1665 1.79 mycroft }
1666 1.42 mycroft
1667 1.29 cgd /*
1668 1.243 ad * We should see pending but ignored signals only if
1669 1.243 ad * we are being traced.
1670 1.29 cgd */
1671 1.243 ad if (sigismember(&p->p_sigctx.ps_sigignore, signo) &&
1672 1.243 ad (p->p_slflag & PSL_TRACED) == 0) {
1673 1.243 ad /* Discard the signal. */
1674 1.29 cgd continue;
1675 1.243 ad }
1676 1.42 mycroft
1677 1.243 ad /*
1678 1.243 ad * If traced, always stop, and stay stopped until released
1679 1.243 ad * by the debugger. If the our parent process is waiting
1680 1.243 ad * for us, don't hang as we could deadlock.
1681 1.243 ad */
1682 1.243 ad if ((p->p_slflag & PSL_TRACED) != 0 &&
1683 1.243 ad (p->p_sflag & PS_PPWAIT) == 0 && signo != SIGKILL) {
1684 1.243 ad /* Take the signal. */
1685 1.243 ad (void)sigget(sp, NULL, signo, NULL);
1686 1.243 ad p->p_xstat = signo;
1687 1.184 manu
1688 1.184 manu /* Emulation-specific handling of signal trace */
1689 1.243 ad if (p->p_emul->e_tracesig == NULL ||
1690 1.243 ad (*p->p_emul->e_tracesig)(p, signo) == 0)
1691 1.243 ad sigswitch(!(p->p_slflag & PSL_FSTRACE), 0,
1692 1.243 ad signo);
1693 1.29 cgd
1694 1.243 ad /* Check for a signal from the debugger. */
1695 1.243 ad if ((signo = sigchecktrace(&sp)) == 0)
1696 1.29 cgd continue;
1697 1.29 cgd }
1698 1.29 cgd
1699 1.243 ad prop = sigprop[signo];
1700 1.42 mycroft
1701 1.29 cgd /*
1702 1.29 cgd * Decide whether the signal should be returned.
1703 1.29 cgd */
1704 1.243 ad switch ((long)SIGACTION(p, signo).sa_handler) {
1705 1.33 cgd case (long)SIG_DFL:
1706 1.29 cgd /*
1707 1.29 cgd * Don't take default actions on system processes.
1708 1.29 cgd */
1709 1.29 cgd if (p->p_pid <= 1) {
1710 1.29 cgd #ifdef DIAGNOSTIC
1711 1.29 cgd /*
1712 1.29 cgd * Are you sure you want to ignore SIGSEGV
1713 1.29 cgd * in init? XXX
1714 1.29 cgd */
1715 1.243 ad printf_nolog("Process (pid %d) got sig %d\n",
1716 1.243 ad p->p_pid, signo);
1717 1.29 cgd #endif
1718 1.243 ad continue;
1719 1.29 cgd }
1720 1.243 ad
1721 1.29 cgd /*
1722 1.243 ad * If there is a pending stop signal to process with
1723 1.243 ad * default action, stop here, then clear the signal.
1724 1.243 ad * However, if process is member of an orphaned
1725 1.29 cgd * process group, ignore tty stop signals.
1726 1.29 cgd */
1727 1.29 cgd if (prop & SA_STOP) {
1728 1.243 ad if (p->p_slflag & PSL_TRACED ||
1729 1.243 ad ((p->p_sflag & PS_ORPHANPG) != 0 &&
1730 1.243 ad prop & SA_TTYSTOP)) {
1731 1.243 ad /* Ignore the signal. */
1732 1.243 ad continue;
1733 1.243 ad }
1734 1.243 ad /* Take the signal. */
1735 1.243 ad (void)sigget(sp, NULL, signo, NULL);
1736 1.243 ad p->p_xstat = signo;
1737 1.243 ad signo = 0;
1738 1.249 thorpej sigswitch(true, PS_NOCLDSTOP, p->p_xstat);
1739 1.29 cgd } else if (prop & SA_IGNORE) {
1740 1.29 cgd /*
1741 1.29 cgd * Except for SIGCONT, shouldn't get here.
1742 1.29 cgd * Default action is to ignore; drop it.
1743 1.29 cgd */
1744 1.243 ad continue;
1745 1.243 ad }
1746 1.243 ad break;
1747 1.29 cgd
1748 1.33 cgd case (long)SIG_IGN:
1749 1.243 ad #ifdef DEBUG_ISSIGNAL
1750 1.29 cgd /*
1751 1.29 cgd * Masking above should prevent us ever trying
1752 1.29 cgd * to take action on an ignored signal other
1753 1.29 cgd * than SIGCONT, unless process is traced.
1754 1.29 cgd */
1755 1.29 cgd if ((prop & SA_CONT) == 0 &&
1756 1.243 ad (p->p_slflag & PSL_TRACED) == 0)
1757 1.243 ad printf_nolog("issignal\n");
1758 1.128 jdolecek #endif
1759 1.243 ad continue;
1760 1.29 cgd
1761 1.29 cgd default:
1762 1.29 cgd /*
1763 1.243 ad * This signal has an action, let postsig() process
1764 1.243 ad * it.
1765 1.29 cgd */
1766 1.243 ad break;
1767 1.29 cgd }
1768 1.243 ad
1769 1.243 ad break;
1770 1.29 cgd }
1771 1.42 mycroft
1772 1.243 ad l->l_sigpendset = sp;
1773 1.243 ad return signo;
1774 1.29 cgd }
1775 1.29 cgd
1776 1.29 cgd /*
1777 1.243 ad * Take the action for the specified signal
1778 1.243 ad * from the current set of pending signals.
1779 1.29 cgd */
1780 1.179 christos void
1781 1.243 ad postsig(int signo)
1782 1.29 cgd {
1783 1.243 ad struct lwp *l;
1784 1.243 ad struct proc *p;
1785 1.243 ad struct sigacts *ps;
1786 1.243 ad sig_t action;
1787 1.243 ad sigset_t *returnmask;
1788 1.243 ad ksiginfo_t ksi;
1789 1.243 ad
1790 1.243 ad l = curlwp;
1791 1.243 ad p = l->l_proc;
1792 1.243 ad ps = p->p_sigacts;
1793 1.243 ad
1794 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1795 1.243 ad KASSERT(signo > 0);
1796 1.243 ad
1797 1.243 ad /*
1798 1.243 ad * Set the new mask value and also defer further occurrences of this
1799 1.243 ad * signal.
1800 1.243 ad *
1801 1.243 ad * Special case: user has done a sigpause. Here the current mask is
1802 1.243 ad * not of interest, but rather the mask from before the sigpause is
1803 1.243 ad * what we want restored after the signal processing is completed.
1804 1.243 ad */
1805 1.243 ad if (l->l_sigrestore) {
1806 1.243 ad returnmask = &l->l_sigoldmask;
1807 1.243 ad l->l_sigrestore = 0;
1808 1.243 ad } else
1809 1.243 ad returnmask = &l->l_sigmask;
1810 1.29 cgd
1811 1.243 ad /*
1812 1.243 ad * Commit to taking the signal before releasing the mutex.
1813 1.243 ad */
1814 1.243 ad action = SIGACTION_PS(ps, signo).sa_handler;
1815 1.243 ad p->p_stats->p_ru.ru_nsignals++;
1816 1.243 ad sigget(l->l_sigpendset, &ksi, signo, NULL);
1817 1.104 thorpej
1818 1.255 ad if (ktrpoint(KTR_PSIG)) {
1819 1.243 ad mutex_exit(&p->p_smutex);
1820 1.255 ad ktrpsig(signo, action, returnmask, NULL);
1821 1.243 ad mutex_enter(&p->p_smutex);
1822 1.243 ad }
1823 1.130 thorpej
1824 1.243 ad if (action == SIG_DFL) {
1825 1.175 cl /*
1826 1.243 ad * Default action, where the default is to kill
1827 1.243 ad * the process. (Other cases were ignored above.)
1828 1.175 cl */
1829 1.243 ad sigexit(l, signo);
1830 1.243 ad return;
1831 1.175 cl }
1832 1.175 cl
1833 1.202 perry /*
1834 1.243 ad * If we get here, the signal must be caught.
1835 1.130 thorpej */
1836 1.130 thorpej #ifdef DIAGNOSTIC
1837 1.243 ad if (action == SIG_IGN || sigismember(&l->l_sigmask, signo))
1838 1.243 ad panic("postsig action");
1839 1.130 thorpej #endif
1840 1.144 fvdl
1841 1.243 ad kpsendsig(l, &ksi, returnmask);
1842 1.29 cgd }
1843 1.29 cgd
1844 1.133 nathanw /*
1845 1.243 ad * sendsig_reset:
1846 1.133 nathanw *
1847 1.243 ad * Reset the signal action. Called from emulation specific sendsig()
1848 1.243 ad * before unlocking to deliver the signal.
1849 1.29 cgd */
1850 1.29 cgd void
1851 1.243 ad sendsig_reset(struct lwp *l, int signo)
1852 1.29 cgd {
1853 1.243 ad struct proc *p = l->l_proc;
1854 1.243 ad struct sigacts *ps = p->p_sigacts;
1855 1.29 cgd
1856 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1857 1.106 thorpej
1858 1.243 ad p->p_sigctx.ps_lwp = 0;
1859 1.243 ad p->p_sigctx.ps_code = 0;
1860 1.243 ad p->p_sigctx.ps_signo = 0;
1861 1.243 ad
1862 1.243 ad sigplusset(&SIGACTION_PS(ps, signo).sa_mask, &l->l_sigmask);
1863 1.243 ad if (SIGACTION_PS(ps, signo).sa_flags & SA_RESETHAND) {
1864 1.243 ad sigdelset(&p->p_sigctx.ps_sigcatch, signo);
1865 1.243 ad if (signo != SIGCONT && sigprop[signo] & SA_IGNORE)
1866 1.243 ad sigaddset(&p->p_sigctx.ps_sigignore, signo);
1867 1.243 ad SIGACTION_PS(ps, signo).sa_handler = SIG_DFL;
1868 1.29 cgd }
1869 1.29 cgd }
1870 1.29 cgd
1871 1.29 cgd /*
1872 1.29 cgd * Kill the current process for stated reason.
1873 1.29 cgd */
1874 1.52 christos void
1875 1.122 manu killproc(struct proc *p, const char *why)
1876 1.29 cgd {
1877 1.29 cgd log(LOG_ERR, "pid %d was killed: %s\n", p->p_pid, why);
1878 1.243 ad uprintf_locked("sorry, pid %d was killed: %s\n", p->p_pid, why);
1879 1.243 ad mutex_enter(&proclist_mutex); /* XXXSMP */
1880 1.29 cgd psignal(p, SIGKILL);
1881 1.243 ad mutex_exit(&proclist_mutex); /* XXXSMP */
1882 1.29 cgd }
1883 1.29 cgd
1884 1.29 cgd /*
1885 1.29 cgd * Force the current process to exit with the specified signal, dumping core
1886 1.243 ad * if appropriate. We bypass the normal tests for masked and caught
1887 1.243 ad * signals, allowing unrecoverable failures to terminate the process without
1888 1.243 ad * changing signal state. Mark the accounting record with the signal
1889 1.243 ad * termination. If dumping core, save the signal number for the debugger.
1890 1.243 ad * Calls exit and does not return.
1891 1.29 cgd */
1892 1.243 ad void
1893 1.243 ad sigexit(struct lwp *l, int signo)
1894 1.243 ad {
1895 1.243 ad int exitsig, error, docore;
1896 1.243 ad struct proc *p;
1897 1.243 ad struct lwp *t;
1898 1.96 fair
1899 1.243 ad p = l->l_proc;
1900 1.96 fair
1901 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
1902 1.243 ad KERNEL_UNLOCK_ALL(l, NULL);
1903 1.96 fair
1904 1.243 ad /*
1905 1.243 ad * Don't permit coredump() multiple times in the same process.
1906 1.243 ad * Call back into sigexit, where we will be suspended until
1907 1.243 ad * the deed is done. Note that this is a recursive call, but
1908 1.246 pavel * LW_WCORE will prevent us from coming back this way.
1909 1.243 ad */
1910 1.243 ad if ((p->p_sflag & PS_WCORE) != 0) {
1911 1.243 ad lwp_lock(l);
1912 1.246 pavel l->l_flag |= (LW_WCORE | LW_WEXIT | LW_WSUSPEND);
1913 1.243 ad lwp_unlock(l);
1914 1.243 ad mutex_exit(&p->p_smutex);
1915 1.243 ad lwp_userret(l);
1916 1.243 ad #ifdef DIAGNOSTIC
1917 1.243 ad panic("sigexit");
1918 1.243 ad #endif
1919 1.243 ad /* NOTREACHED */
1920 1.243 ad }
1921 1.130 thorpej
1922 1.130 thorpej /*
1923 1.243 ad * Prepare all other LWPs for exit. If dumping core, suspend them
1924 1.243 ad * so that their registers are available long enough to be dumped.
1925 1.243 ad */
1926 1.243 ad if ((docore = (sigprop[signo] & SA_CORE)) != 0) {
1927 1.243 ad p->p_sflag |= PS_WCORE;
1928 1.243 ad for (;;) {
1929 1.243 ad LIST_FOREACH(t, &p->p_lwps, l_sibling) {
1930 1.243 ad lwp_lock(t);
1931 1.243 ad if (t == l) {
1932 1.246 pavel t->l_flag &= ~LW_WSUSPEND;
1933 1.243 ad lwp_unlock(t);
1934 1.243 ad continue;
1935 1.243 ad }
1936 1.246 pavel t->l_flag |= (LW_WCORE | LW_WEXIT);
1937 1.243 ad lwp_suspend(l, t);
1938 1.243 ad }
1939 1.130 thorpej
1940 1.243 ad if (p->p_nrlwps == 1)
1941 1.243 ad break;
1942 1.130 thorpej
1943 1.243 ad /*
1944 1.243 ad * Kick any LWPs sitting in lwp_wait1(), and wait
1945 1.243 ad * for everyone else to stop before proceeding.
1946 1.243 ad */
1947 1.243 ad p->p_nlwpwait++;
1948 1.243 ad cv_broadcast(&p->p_lwpcv);
1949 1.243 ad cv_wait(&p->p_lwpcv, &p->p_smutex);
1950 1.243 ad p->p_nlwpwait--;
1951 1.243 ad }
1952 1.243 ad }
1953 1.130 thorpej
1954 1.243 ad exitsig = signo;
1955 1.243 ad p->p_acflag |= AXSIG;
1956 1.243 ad p->p_sigctx.ps_signo = signo;
1957 1.243 ad mutex_exit(&p->p_smutex);
1958 1.130 thorpej
1959 1.243 ad KERNEL_LOCK(1, l);
1960 1.130 thorpej
1961 1.243 ad if (docore) {
1962 1.201 christos if ((error = coredump(l, NULL)) == 0)
1963 1.102 sommerfe exitsig |= WCOREFLAG;
1964 1.102 sommerfe
1965 1.102 sommerfe if (kern_logsigexit) {
1966 1.224 ad int uid = l->l_cred ?
1967 1.224 ad (int)kauth_cred_geteuid(l->l_cred) : -1;
1968 1.102 sommerfe
1969 1.202 perry if (error)
1970 1.102 sommerfe log(LOG_INFO, lognocoredump, p->p_pid,
1971 1.243 ad p->p_comm, uid, signo, error);
1972 1.102 sommerfe else
1973 1.102 sommerfe log(LOG_INFO, logcoredump, p->p_pid,
1974 1.243 ad p->p_comm, uid, signo);
1975 1.96 fair }
1976 1.96 fair
1977 1.240 elad #ifdef PAX_SEGVGUARD
1978 1.249 thorpej pax_segvguard(l, p->p_textvp, p->p_comm, true);
1979 1.240 elad #endif /* PAX_SEGVGUARD */
1980 1.29 cgd }
1981 1.96 fair
1982 1.243 ad /* Acquire the sched state mutex. exit1() will release it. */
1983 1.243 ad mutex_enter(&p->p_smutex);
1984 1.243 ad
1985 1.243 ad /* No longer dumping core. */
1986 1.243 ad p->p_sflag &= ~PS_WCORE;
1987 1.243 ad
1988 1.130 thorpej exit1(l, W_EXITCODE(0, exitsig));
1989 1.29 cgd /* NOTREACHED */
1990 1.29 cgd }
1991 1.29 cgd
1992 1.29 cgd /*
1993 1.243 ad * Put process 'p' into the stopped state and optionally, notify the parent.
1994 1.29 cgd */
1995 1.243 ad void
1996 1.243 ad proc_stop(struct proc *p, int notify, int signo)
1997 1.29 cgd {
1998 1.243 ad struct lwp *l;
1999 1.112 lukem
2000 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
2001 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
2002 1.29 cgd
2003 1.59 cgd /*
2004 1.243 ad * First off, set the stopping indicator and bring all sleeping
2005 1.243 ad * LWPs to a halt so they are included in p->p_nrlwps. We musn't
2006 1.243 ad * unlock between here and the p->p_nrlwps check below.
2007 1.59 cgd */
2008 1.243 ad p->p_sflag |= PS_STOPPING;
2009 1.243 ad mb_write();
2010 1.59 cgd
2011 1.243 ad LIST_FOREACH(l, &p->p_lwps, l_sibling) {
2012 1.243 ad lwp_lock(l);
2013 1.246 pavel if (l->l_stat == LSSLEEP && (l->l_flag & LW_SINTR) != 0) {
2014 1.243 ad l->l_stat = LSSTOP;
2015 1.243 ad p->p_nrlwps--;
2016 1.243 ad }
2017 1.243 ad lwp_unlock(l);
2018 1.243 ad }
2019 1.59 cgd
2020 1.59 cgd /*
2021 1.243 ad * If there are no LWPs available to take the signal, then we
2022 1.243 ad * signal the parent process immediately. Otherwise, the last
2023 1.243 ad * LWP to stop will take care of it.
2024 1.59 cgd */
2025 1.243 ad if (notify)
2026 1.243 ad p->p_sflag |= PS_NOTIFYSTOP;
2027 1.243 ad else
2028 1.243 ad p->p_sflag &= ~PS_NOTIFYSTOP;
2029 1.59 cgd
2030 1.243 ad if (p->p_nrlwps == 0) {
2031 1.243 ad p->p_sflag &= ~PS_STOPPING;
2032 1.243 ad p->p_stat = SSTOP;
2033 1.243 ad p->p_waited = 0;
2034 1.243 ad p->p_pptr->p_nstopchild++;
2035 1.214 elad
2036 1.243 ad if (notify) {
2037 1.243 ad child_psignal(p, PS_NOCLDSTOP);
2038 1.243 ad cv_broadcast(&p->p_pptr->p_waitcv);
2039 1.243 ad }
2040 1.243 ad } else {
2041 1.243 ad /*
2042 1.243 ad * Have the remaining LWPs come to a halt, and trigger
2043 1.243 ad * proc_stop_callout() to ensure that they do.
2044 1.243 ad */
2045 1.243 ad LIST_FOREACH(l, &p->p_lwps, l_sibling)
2046 1.243 ad sigpost(l, SIG_DFL, SA_STOP, signo);
2047 1.243 ad callout_schedule(&proc_stop_ch, 1);
2048 1.169 hannken }
2049 1.29 cgd }
2050 1.29 cgd
2051 1.29 cgd /*
2052 1.243 ad * When stopping a process, we do not immediatly set sleeping LWPs stopped,
2053 1.243 ad * but wait for them to come to a halt at the kernel-user boundary. This is
2054 1.243 ad * to allow LWPs to release any locks that they may hold before stopping.
2055 1.243 ad *
2056 1.243 ad * Non-interruptable sleeps can be long, and there is the potential for an
2057 1.243 ad * LWP to begin sleeping interruptably soon after the process has been set
2058 1.243 ad * stopping (PS_STOPPING). These LWPs will not notice that the process is
2059 1.243 ad * stopping, and so complete halt of the process and the return of status
2060 1.243 ad * information to the parent could be delayed indefinitely.
2061 1.243 ad *
2062 1.243 ad * To handle this race, proc_stop_callout() runs once per tick while there
2063 1.243 ad * are stopping processes it the system. It sets LWPs that are sleeping
2064 1.243 ad * interruptably into the LSSTOP state.
2065 1.243 ad *
2066 1.243 ad * Note that we are not concerned about keeping all LWPs stopped while the
2067 1.243 ad * process is stopped: stopped LWPs can awaken briefly to handle signals.
2068 1.243 ad * What we do need to ensure is that all LWPs in a stopping process have
2069 1.243 ad * stopped at least once, so that notification can be sent to the parent
2070 1.243 ad * process.
2071 1.29 cgd */
2072 1.243 ad static void
2073 1.243 ad proc_stop_callout(void *cookie)
2074 1.29 cgd {
2075 1.248 thorpej bool more, restart;
2076 1.243 ad struct proc *p;
2077 1.243 ad struct lwp *l;
2078 1.29 cgd
2079 1.243 ad (void)cookie;
2080 1.94 bouyer
2081 1.243 ad do {
2082 1.249 thorpej restart = false;
2083 1.249 thorpej more = false;
2084 1.130 thorpej
2085 1.243 ad mutex_enter(&proclist_mutex);
2086 1.243 ad PROCLIST_FOREACH(p, &allproc) {
2087 1.243 ad mutex_enter(&p->p_smutex);
2088 1.130 thorpej
2089 1.243 ad if ((p->p_sflag & PS_STOPPING) == 0) {
2090 1.243 ad mutex_exit(&p->p_smutex);
2091 1.243 ad continue;
2092 1.243 ad }
2093 1.130 thorpej
2094 1.243 ad /* Stop any LWPs sleeping interruptably. */
2095 1.243 ad LIST_FOREACH(l, &p->p_lwps, l_sibling) {
2096 1.243 ad lwp_lock(l);
2097 1.243 ad if (l->l_stat == LSSLEEP &&
2098 1.246 pavel (l->l_flag & LW_SINTR) != 0) {
2099 1.243 ad l->l_stat = LSSTOP;
2100 1.243 ad p->p_nrlwps--;
2101 1.243 ad }
2102 1.243 ad lwp_unlock(l);
2103 1.243 ad }
2104 1.130 thorpej
2105 1.243 ad if (p->p_nrlwps == 0) {
2106 1.243 ad /*
2107 1.243 ad * We brought the process to a halt.
2108 1.243 ad * Mark it as stopped and notify the
2109 1.243 ad * parent.
2110 1.243 ad */
2111 1.243 ad p->p_sflag &= ~PS_STOPPING;
2112 1.243 ad p->p_stat = SSTOP;
2113 1.243 ad p->p_waited = 0;
2114 1.243 ad p->p_pptr->p_nstopchild++;
2115 1.243 ad if ((p->p_sflag & PS_NOTIFYSTOP) != 0) {
2116 1.243 ad /*
2117 1.243 ad * Note that child_psignal() will
2118 1.243 ad * drop p->p_smutex briefly.
2119 1.243 ad * Arrange to restart and check
2120 1.243 ad * all processes again.
2121 1.243 ad */
2122 1.249 thorpej restart = true;
2123 1.243 ad child_psignal(p, PS_NOCLDSTOP);
2124 1.243 ad cv_broadcast(&p->p_pptr->p_waitcv);
2125 1.243 ad }
2126 1.243 ad } else
2127 1.249 thorpej more = true;
2128 1.130 thorpej
2129 1.243 ad mutex_exit(&p->p_smutex);
2130 1.243 ad if (restart)
2131 1.243 ad break;
2132 1.243 ad }
2133 1.243 ad mutex_exit(&proclist_mutex);
2134 1.243 ad } while (restart);
2135 1.185 matt
2136 1.130 thorpej /*
2137 1.243 ad * If we noted processes that are stopping but still have
2138 1.243 ad * running LWPs, then arrange to check again in 1 tick.
2139 1.130 thorpej */
2140 1.243 ad if (more)
2141 1.243 ad callout_schedule(&proc_stop_ch, 1);
2142 1.108 jdolecek }
2143 1.130 thorpej
2144 1.135 jdolecek /*
2145 1.243 ad * Given a process in state SSTOP, set the state back to SACTIVE and
2146 1.243 ad * move LSSTOP'd LWPs to LSSLEEP or make them runnable.
2147 1.135 jdolecek */
2148 1.243 ad void
2149 1.243 ad proc_unstop(struct proc *p)
2150 1.135 jdolecek {
2151 1.243 ad struct lwp *l;
2152 1.243 ad int sig;
2153 1.208 cube
2154 1.250 ad KASSERT(mutex_owned(&proclist_mutex));
2155 1.250 ad KASSERT(mutex_owned(&p->p_smutex));
2156 1.135 jdolecek
2157 1.243 ad p->p_stat = SACTIVE;
2158 1.243 ad p->p_sflag &= ~PS_STOPPING;
2159 1.243 ad sig = p->p_xstat;
2160 1.219 mrg
2161 1.243 ad if (!p->p_waited)
2162 1.243 ad p->p_pptr->p_nstopchild--;
2163 1.173 jdolecek
2164 1.243 ad LIST_FOREACH(l, &p->p_lwps, l_sibling) {
2165 1.243 ad lwp_lock(l);
2166 1.243 ad if (l->l_stat != LSSTOP) {
2167 1.243 ad lwp_unlock(l);
2168 1.243 ad continue;
2169 1.171 jdolecek }
2170 1.243 ad if (l->l_wchan == NULL) {
2171 1.243 ad setrunnable(l);
2172 1.243 ad continue;
2173 1.241 enami }
2174 1.246 pavel if (sig && (l->l_flag & LW_SINTR) != 0) {
2175 1.243 ad setrunnable(l);
2176 1.243 ad sig = 0;
2177 1.250 ad } else {
2178 1.250 ad l->l_stat = LSSLEEP;
2179 1.250 ad p->p_nrlwps++;
2180 1.243 ad lwp_unlock(l);
2181 1.250 ad }
2182 1.135 jdolecek }
2183 1.29 cgd }
2184 1.126 jdolecek
2185 1.126 jdolecek static int
2186 1.126 jdolecek filt_sigattach(struct knote *kn)
2187 1.126 jdolecek {
2188 1.126 jdolecek struct proc *p = curproc;
2189 1.126 jdolecek
2190 1.126 jdolecek kn->kn_ptr.p_proc = p;
2191 1.126 jdolecek kn->kn_flags |= EV_CLEAR; /* automatically set */
2192 1.126 jdolecek
2193 1.126 jdolecek SLIST_INSERT_HEAD(&p->p_klist, kn, kn_selnext);
2194 1.126 jdolecek
2195 1.126 jdolecek return (0);
2196 1.126 jdolecek }
2197 1.126 jdolecek
2198 1.126 jdolecek static void
2199 1.126 jdolecek filt_sigdetach(struct knote *kn)
2200 1.126 jdolecek {
2201 1.126 jdolecek struct proc *p = kn->kn_ptr.p_proc;
2202 1.126 jdolecek
2203 1.126 jdolecek SLIST_REMOVE(&p->p_klist, kn, knote, kn_selnext);
2204 1.126 jdolecek }
2205 1.126 jdolecek
2206 1.126 jdolecek /*
2207 1.126 jdolecek * signal knotes are shared with proc knotes, so we apply a mask to
2208 1.126 jdolecek * the hint in order to differentiate them from process hints. This
2209 1.126 jdolecek * could be avoided by using a signal-specific knote list, but probably
2210 1.126 jdolecek * isn't worth the trouble.
2211 1.126 jdolecek */
2212 1.126 jdolecek static int
2213 1.126 jdolecek filt_signal(struct knote *kn, long hint)
2214 1.126 jdolecek {
2215 1.126 jdolecek
2216 1.126 jdolecek if (hint & NOTE_SIGNAL) {
2217 1.126 jdolecek hint &= ~NOTE_SIGNAL;
2218 1.126 jdolecek
2219 1.126 jdolecek if (kn->kn_id == hint)
2220 1.126 jdolecek kn->kn_data++;
2221 1.126 jdolecek }
2222 1.126 jdolecek return (kn->kn_data != 0);
2223 1.126 jdolecek }
2224 1.126 jdolecek
2225 1.126 jdolecek const struct filterops sig_filtops = {
2226 1.126 jdolecek 0, filt_sigattach, filt_sigdetach, filt_signal
2227 1.126 jdolecek };
2228