xref: /NextBSD/sys/kern/kern_sig.c (revision fb5720f7be0d2eab3253696e244c058a229b5473)
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  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *	@(#)kern_sig.c	8.7 (Berkeley) 4/18/94
35  */
36 
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39 
40 #include "opt_compat.h"
41 #include "opt_gzio.h"
42 #include "opt_ktrace.h"
43 
44 #include <sys/param.h>
45 #include <sys/ctype.h>
46 #include <sys/systm.h>
47 #include <sys/signalvar.h>
48 #include <sys/vnode.h>
49 #include <sys/acct.h>
50 #include <sys/bus.h>
51 #include <sys/capsicum.h>
52 #include <sys/condvar.h>
53 #include <sys/event.h>
54 #include <sys/fcntl.h>
55 #include <sys/imgact.h>
56 #include <sys/kernel.h>
57 #include <sys/ktr.h>
58 #include <sys/ktrace.h>
59 #include <sys/lock.h>
60 #include <sys/malloc.h>
61 #include <sys/mutex.h>
62 #include <sys/refcount.h>
63 #include <sys/namei.h>
64 #include <sys/proc.h>
65 #include <sys/procdesc.h>
66 #include <sys/posix4.h>
67 #include <sys/pioctl.h>
68 #include <sys/racct.h>
69 #include <sys/resourcevar.h>
70 #include <sys/sdt.h>
71 #include <sys/sbuf.h>
72 #include <sys/sleepqueue.h>
73 #include <sys/smp.h>
74 #include <sys/stat.h>
75 #include <sys/sx.h>
76 #include <sys/syscallsubr.h>
77 #include <sys/sysctl.h>
78 #include <sys/sysent.h>
79 #include <sys/syslog.h>
80 #include <sys/sysproto.h>
81 #include <sys/timers.h>
82 #include <sys/unistd.h>
83 #include <sys/wait.h>
84 #include <vm/vm.h>
85 #include <vm/vm_extern.h>
86 #include <vm/uma.h>
87 
88 #include <sys/jail.h>
89 
90 #include <machine/cpu.h>
91 
92 #include <security/audit/audit.h>
93 
94 #define	ONSIG	32		/* NSIG for osig* syscalls.  XXX. */
95 
96 SDT_PROVIDER_DECLARE(proc);
97 SDT_PROBE_DEFINE3(proc, , , signal__send,
98     "struct thread *", "struct proc *", "int");
99 SDT_PROBE_DEFINE2(proc, , , signal__clear,
100     "int", "ksiginfo_t *");
101 SDT_PROBE_DEFINE3(proc, , , signal__discard,
102     "struct thread *", "struct proc *", "int");
103 
104 static int	coredump(struct thread *);
105 static int	killpg1(struct thread *td, int sig, int pgid, int all,
106 		    ksiginfo_t *ksi);
107 static int	issignal(struct thread *td);
108 static void	tdsigwakeup(struct thread *, int, sig_t, int);
109 static void	sig_suspend_threads(struct thread *, struct proc *, int);
110 static int	filt_sigattach(struct knote *kn);
111 static void	filt_sigdetach(struct knote *kn);
112 static int	filt_signal(struct knote *kn, long hint);
113 static struct thread *sigtd(struct proc *p, int sig, int prop);
114 static void	sigqueue_start(void);
115 
116 static uma_zone_t	ksiginfo_zone = NULL;
117 struct filterops sig_filtops = {
118 	.f_isfd = 0,
119 	.f_attach = filt_sigattach,
120 	.f_detach = filt_sigdetach,
121 	.f_event = filt_signal,
122 };
123 
124 static int	kern_logsigexit = 1;
125 SYSCTL_INT(_kern, KERN_LOGSIGEXIT, logsigexit, CTLFLAG_RW,
126     &kern_logsigexit, 0,
127     "Log processes quitting on abnormal signals to syslog(3)");
128 
129 static int	kern_forcesigexit = 1;
130 SYSCTL_INT(_kern, OID_AUTO, forcesigexit, CTLFLAG_RW,
131     &kern_forcesigexit, 0, "Force trap signal to be handled");
132 
133 static SYSCTL_NODE(_kern, OID_AUTO, sigqueue, CTLFLAG_RW, 0,
134     "POSIX real time signal");
135 
136 static int	max_pending_per_proc = 128;
137 SYSCTL_INT(_kern_sigqueue, OID_AUTO, max_pending_per_proc, CTLFLAG_RW,
138     &max_pending_per_proc, 0, "Max pending signals per proc");
139 
140 static int	preallocate_siginfo = 1024;
141 SYSCTL_INT(_kern_sigqueue, OID_AUTO, preallocate, CTLFLAG_RDTUN,
142     &preallocate_siginfo, 0, "Preallocated signal memory size");
143 
144 static int	signal_overflow = 0;
145 SYSCTL_INT(_kern_sigqueue, OID_AUTO, overflow, CTLFLAG_RD,
146     &signal_overflow, 0, "Number of signals overflew");
147 
148 static int	signal_alloc_fail = 0;
149 SYSCTL_INT(_kern_sigqueue, OID_AUTO, alloc_fail, CTLFLAG_RD,
150     &signal_alloc_fail, 0, "signals failed to be allocated");
151 
152 SYSINIT(signal, SI_SUB_P1003_1B, SI_ORDER_FIRST+3, sigqueue_start, NULL);
153 
154 /*
155  * Policy -- Can ucred cr1 send SIGIO to process cr2?
156  * Should use cr_cansignal() once cr_cansignal() allows SIGIO and SIGURG
157  * in the right situations.
158  */
159 #define CANSIGIO(cr1, cr2) \
160 	((cr1)->cr_uid == 0 || \
161 	    (cr1)->cr_ruid == (cr2)->cr_ruid || \
162 	    (cr1)->cr_uid == (cr2)->cr_ruid || \
163 	    (cr1)->cr_ruid == (cr2)->cr_uid || \
164 	    (cr1)->cr_uid == (cr2)->cr_uid)
165 
166 static int	sugid_coredump;
167 SYSCTL_INT(_kern, OID_AUTO, sugid_coredump, CTLFLAG_RWTUN,
168     &sugid_coredump, 0, "Allow setuid and setgid processes to dump core");
169 
170 static int	capmode_coredump;
171 SYSCTL_INT(_kern, OID_AUTO, capmode_coredump, CTLFLAG_RWTUN,
172     &capmode_coredump, 0, "Allow processes in capability mode to dump core");
173 
174 static int	do_coredump = 1;
175 SYSCTL_INT(_kern, OID_AUTO, coredump, CTLFLAG_RW,
176 	&do_coredump, 0, "Enable/Disable coredumps");
177 
178 static int	set_core_nodump_flag = 0;
179 SYSCTL_INT(_kern, OID_AUTO, nodump_coredump, CTLFLAG_RW, &set_core_nodump_flag,
180 	0, "Enable setting the NODUMP flag on coredump files");
181 
182 static int	coredump_devctl = 0;
183 SYSCTL_INT(_kern, OID_AUTO, coredump_devctl, CTLFLAG_RW, &coredump_devctl,
184 	0, "Generate a devctl notification when processes coredump");
185 
186 /*
187  * Signal properties and actions.
188  * The array below categorizes the signals and their default actions
189  * according to the following properties:
190  */
191 #define	SA_KILL		0x01		/* terminates process by default */
192 #define	SA_CORE		0x02		/* ditto and coredumps */
193 #define	SA_STOP		0x04		/* suspend process */
194 #define	SA_TTYSTOP	0x08		/* ditto, from tty */
195 #define	SA_IGNORE	0x10		/* ignore by default */
196 #define	SA_CONT		0x20		/* continue if suspended */
197 #define	SA_CANTMASK	0x40		/* non-maskable, catchable */
198 
199 static int sigproptbl[NSIG] = {
200 	SA_KILL,			/* SIGHUP */
201 	SA_KILL,			/* SIGINT */
202 	SA_KILL|SA_CORE,		/* SIGQUIT */
203 	SA_KILL|SA_CORE,		/* SIGILL */
204 	SA_KILL|SA_CORE,		/* SIGTRAP */
205 	SA_KILL|SA_CORE,		/* SIGABRT */
206 	SA_KILL|SA_CORE,		/* SIGEMT */
207 	SA_KILL|SA_CORE,		/* SIGFPE */
208 	SA_KILL,			/* SIGKILL */
209 	SA_KILL|SA_CORE,		/* SIGBUS */
210 	SA_KILL|SA_CORE,		/* SIGSEGV */
211 	SA_KILL|SA_CORE,		/* SIGSYS */
212 	SA_KILL,			/* SIGPIPE */
213 	SA_KILL,			/* SIGALRM */
214 	SA_KILL,			/* SIGTERM */
215 	SA_IGNORE,			/* SIGURG */
216 	SA_STOP,			/* SIGSTOP */
217 	SA_STOP|SA_TTYSTOP,		/* SIGTSTP */
218 	SA_IGNORE|SA_CONT,		/* SIGCONT */
219 	SA_IGNORE,			/* SIGCHLD */
220 	SA_STOP|SA_TTYSTOP,		/* SIGTTIN */
221 	SA_STOP|SA_TTYSTOP,		/* SIGTTOU */
222 	SA_IGNORE,			/* SIGIO */
223 	SA_KILL,			/* SIGXCPU */
224 	SA_KILL,			/* SIGXFSZ */
225 	SA_KILL,			/* SIGVTALRM */
226 	SA_KILL,			/* SIGPROF */
227 	SA_IGNORE,			/* SIGWINCH  */
228 	SA_IGNORE,			/* SIGINFO */
229 	SA_KILL,			/* SIGUSR1 */
230 	SA_KILL,			/* SIGUSR2 */
231 };
232 
233 static void reschedule_signals(struct proc *p, sigset_t block, int flags);
234 
235 static void
sigqueue_start(void)236 sigqueue_start(void)
237 {
238 	ksiginfo_zone = uma_zcreate("ksiginfo", sizeof(ksiginfo_t),
239 		NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
240 	uma_prealloc(ksiginfo_zone, preallocate_siginfo);
241 	p31b_setcfg(CTL_P1003_1B_REALTIME_SIGNALS, _POSIX_REALTIME_SIGNALS);
242 	p31b_setcfg(CTL_P1003_1B_RTSIG_MAX, SIGRTMAX - SIGRTMIN + 1);
243 	p31b_setcfg(CTL_P1003_1B_SIGQUEUE_MAX, max_pending_per_proc);
244 }
245 
246 ksiginfo_t *
ksiginfo_alloc(int wait)247 ksiginfo_alloc(int wait)
248 {
249 	int flags;
250 
251 	flags = M_ZERO;
252 	if (! wait)
253 		flags |= M_NOWAIT;
254 	if (ksiginfo_zone != NULL)
255 		return ((ksiginfo_t *)uma_zalloc(ksiginfo_zone, flags));
256 	return (NULL);
257 }
258 
259 void
ksiginfo_free(ksiginfo_t * ksi)260 ksiginfo_free(ksiginfo_t *ksi)
261 {
262 	uma_zfree(ksiginfo_zone, ksi);
263 }
264 
265 static __inline int
ksiginfo_tryfree(ksiginfo_t * ksi)266 ksiginfo_tryfree(ksiginfo_t *ksi)
267 {
268 	if (!(ksi->ksi_flags & KSI_EXT)) {
269 		uma_zfree(ksiginfo_zone, ksi);
270 		return (1);
271 	}
272 	return (0);
273 }
274 
275 void
sigqueue_init(sigqueue_t * list,struct proc * p)276 sigqueue_init(sigqueue_t *list, struct proc *p)
277 {
278 	SIGEMPTYSET(list->sq_signals);
279 	SIGEMPTYSET(list->sq_kill);
280 	TAILQ_INIT(&list->sq_list);
281 	list->sq_proc = p;
282 	list->sq_flags = SQ_INIT;
283 }
284 
285 /*
286  * Get a signal's ksiginfo.
287  * Return:
288  *	0	-	signal not found
289  *	others	-	signal number
290  */
291 static int
sigqueue_get(sigqueue_t * sq,int signo,ksiginfo_t * si)292 sigqueue_get(sigqueue_t *sq, int signo, ksiginfo_t *si)
293 {
294 	struct proc *p = sq->sq_proc;
295 	struct ksiginfo *ksi, *next;
296 	int count = 0;
297 
298 	KASSERT(sq->sq_flags & SQ_INIT, ("sigqueue not inited"));
299 
300 	if (!SIGISMEMBER(sq->sq_signals, signo))
301 		return (0);
302 
303 	if (SIGISMEMBER(sq->sq_kill, signo)) {
304 		count++;
305 		SIGDELSET(sq->sq_kill, signo);
306 	}
307 
308 	TAILQ_FOREACH_SAFE(ksi, &sq->sq_list, ksi_link, next) {
309 		if (ksi->ksi_signo == signo) {
310 			if (count == 0) {
311 				TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
312 				ksi->ksi_sigq = NULL;
313 				ksiginfo_copy(ksi, si);
314 				if (ksiginfo_tryfree(ksi) && p != NULL)
315 					p->p_pendingcnt--;
316 			}
317 			if (++count > 1)
318 				break;
319 		}
320 	}
321 
322 	if (count <= 1)
323 		SIGDELSET(sq->sq_signals, signo);
324 	si->ksi_signo = signo;
325 	return (signo);
326 }
327 
328 void
sigqueue_take(ksiginfo_t * ksi)329 sigqueue_take(ksiginfo_t *ksi)
330 {
331 	struct ksiginfo *kp;
332 	struct proc	*p;
333 	sigqueue_t	*sq;
334 
335 	if (ksi == NULL || (sq = ksi->ksi_sigq) == NULL)
336 		return;
337 
338 	p = sq->sq_proc;
339 	TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
340 	ksi->ksi_sigq = NULL;
341 	if (!(ksi->ksi_flags & KSI_EXT) && p != NULL)
342 		p->p_pendingcnt--;
343 
344 	for (kp = TAILQ_FIRST(&sq->sq_list); kp != NULL;
345 	     kp = TAILQ_NEXT(kp, ksi_link)) {
346 		if (kp->ksi_signo == ksi->ksi_signo)
347 			break;
348 	}
349 	if (kp == NULL && !SIGISMEMBER(sq->sq_kill, ksi->ksi_signo))
350 		SIGDELSET(sq->sq_signals, ksi->ksi_signo);
351 }
352 
353 static int
sigqueue_add(sigqueue_t * sq,int signo,ksiginfo_t * si)354 sigqueue_add(sigqueue_t *sq, int signo, ksiginfo_t *si)
355 {
356 	struct proc *p = sq->sq_proc;
357 	struct ksiginfo *ksi;
358 	int ret = 0;
359 
360 	KASSERT(sq->sq_flags & SQ_INIT, ("sigqueue not inited"));
361 
362 	if (signo == SIGKILL || signo == SIGSTOP || si == NULL) {
363 		SIGADDSET(sq->sq_kill, signo);
364 		goto out_set_bit;
365 	}
366 
367 	/* directly insert the ksi, don't copy it */
368 	if (si->ksi_flags & KSI_INS) {
369 		if (si->ksi_flags & KSI_HEAD)
370 			TAILQ_INSERT_HEAD(&sq->sq_list, si, ksi_link);
371 		else
372 			TAILQ_INSERT_TAIL(&sq->sq_list, si, ksi_link);
373 		si->ksi_sigq = sq;
374 		goto out_set_bit;
375 	}
376 
377 	if (__predict_false(ksiginfo_zone == NULL)) {
378 		SIGADDSET(sq->sq_kill, signo);
379 		goto out_set_bit;
380 	}
381 
382 	if (p != NULL && p->p_pendingcnt >= max_pending_per_proc) {
383 		signal_overflow++;
384 		ret = EAGAIN;
385 	} else if ((ksi = ksiginfo_alloc(0)) == NULL) {
386 		signal_alloc_fail++;
387 		ret = EAGAIN;
388 	} else {
389 		if (p != NULL)
390 			p->p_pendingcnt++;
391 		ksiginfo_copy(si, ksi);
392 		ksi->ksi_signo = signo;
393 		if (si->ksi_flags & KSI_HEAD)
394 			TAILQ_INSERT_HEAD(&sq->sq_list, ksi, ksi_link);
395 		else
396 			TAILQ_INSERT_TAIL(&sq->sq_list, ksi, ksi_link);
397 		ksi->ksi_sigq = sq;
398 	}
399 
400 	if ((si->ksi_flags & KSI_TRAP) != 0 ||
401 	    (si->ksi_flags & KSI_SIGQ) == 0) {
402 		if (ret != 0)
403 			SIGADDSET(sq->sq_kill, signo);
404 		ret = 0;
405 		goto out_set_bit;
406 	}
407 
408 	if (ret != 0)
409 		return (ret);
410 
411 out_set_bit:
412 	SIGADDSET(sq->sq_signals, signo);
413 	return (ret);
414 }
415 
416 void
sigqueue_flush(sigqueue_t * sq)417 sigqueue_flush(sigqueue_t *sq)
418 {
419 	struct proc *p = sq->sq_proc;
420 	ksiginfo_t *ksi;
421 
422 	KASSERT(sq->sq_flags & SQ_INIT, ("sigqueue not inited"));
423 
424 	if (p != NULL)
425 		PROC_LOCK_ASSERT(p, MA_OWNED);
426 
427 	while ((ksi = TAILQ_FIRST(&sq->sq_list)) != NULL) {
428 		TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
429 		ksi->ksi_sigq = NULL;
430 		if (ksiginfo_tryfree(ksi) && p != NULL)
431 			p->p_pendingcnt--;
432 	}
433 
434 	SIGEMPTYSET(sq->sq_signals);
435 	SIGEMPTYSET(sq->sq_kill);
436 }
437 
438 static void
sigqueue_move_set(sigqueue_t * src,sigqueue_t * dst,const sigset_t * set)439 sigqueue_move_set(sigqueue_t *src, sigqueue_t *dst, const sigset_t *set)
440 {
441 	sigset_t tmp;
442 	struct proc *p1, *p2;
443 	ksiginfo_t *ksi, *next;
444 
445 	KASSERT(src->sq_flags & SQ_INIT, ("src sigqueue not inited"));
446 	KASSERT(dst->sq_flags & SQ_INIT, ("dst sigqueue not inited"));
447 	p1 = src->sq_proc;
448 	p2 = dst->sq_proc;
449 	/* Move siginfo to target list */
450 	TAILQ_FOREACH_SAFE(ksi, &src->sq_list, ksi_link, next) {
451 		if (SIGISMEMBER(*set, ksi->ksi_signo)) {
452 			TAILQ_REMOVE(&src->sq_list, ksi, ksi_link);
453 			if (p1 != NULL)
454 				p1->p_pendingcnt--;
455 			TAILQ_INSERT_TAIL(&dst->sq_list, ksi, ksi_link);
456 			ksi->ksi_sigq = dst;
457 			if (p2 != NULL)
458 				p2->p_pendingcnt++;
459 		}
460 	}
461 
462 	/* Move pending bits to target list */
463 	tmp = src->sq_kill;
464 	SIGSETAND(tmp, *set);
465 	SIGSETOR(dst->sq_kill, tmp);
466 	SIGSETNAND(src->sq_kill, tmp);
467 
468 	tmp = src->sq_signals;
469 	SIGSETAND(tmp, *set);
470 	SIGSETOR(dst->sq_signals, tmp);
471 	SIGSETNAND(src->sq_signals, tmp);
472 }
473 
474 #if 0
475 static void
476 sigqueue_move(sigqueue_t *src, sigqueue_t *dst, int signo)
477 {
478 	sigset_t set;
479 
480 	SIGEMPTYSET(set);
481 	SIGADDSET(set, signo);
482 	sigqueue_move_set(src, dst, &set);
483 }
484 #endif
485 
486 static void
sigqueue_delete_set(sigqueue_t * sq,const sigset_t * set)487 sigqueue_delete_set(sigqueue_t *sq, const sigset_t *set)
488 {
489 	struct proc *p = sq->sq_proc;
490 	ksiginfo_t *ksi, *next;
491 
492 	KASSERT(sq->sq_flags & SQ_INIT, ("src sigqueue not inited"));
493 
494 	/* Remove siginfo queue */
495 	TAILQ_FOREACH_SAFE(ksi, &sq->sq_list, ksi_link, next) {
496 		if (SIGISMEMBER(*set, ksi->ksi_signo)) {
497 			TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
498 			ksi->ksi_sigq = NULL;
499 			if (ksiginfo_tryfree(ksi) && p != NULL)
500 				p->p_pendingcnt--;
501 		}
502 	}
503 	SIGSETNAND(sq->sq_kill, *set);
504 	SIGSETNAND(sq->sq_signals, *set);
505 }
506 
507 void
sigqueue_delete(sigqueue_t * sq,int signo)508 sigqueue_delete(sigqueue_t *sq, int signo)
509 {
510 	sigset_t set;
511 
512 	SIGEMPTYSET(set);
513 	SIGADDSET(set, signo);
514 	sigqueue_delete_set(sq, &set);
515 }
516 
517 /* Remove a set of signals for a process */
518 static void
sigqueue_delete_set_proc(struct proc * p,const sigset_t * set)519 sigqueue_delete_set_proc(struct proc *p, const sigset_t *set)
520 {
521 	sigqueue_t worklist;
522 	struct thread *td0;
523 
524 	PROC_LOCK_ASSERT(p, MA_OWNED);
525 
526 	sigqueue_init(&worklist, NULL);
527 	sigqueue_move_set(&p->p_sigqueue, &worklist, set);
528 
529 	FOREACH_THREAD_IN_PROC(p, td0)
530 		sigqueue_move_set(&td0->td_sigqueue, &worklist, set);
531 
532 	sigqueue_flush(&worklist);
533 }
534 
535 void
sigqueue_delete_proc(struct proc * p,int signo)536 sigqueue_delete_proc(struct proc *p, int signo)
537 {
538 	sigset_t set;
539 
540 	SIGEMPTYSET(set);
541 	SIGADDSET(set, signo);
542 	sigqueue_delete_set_proc(p, &set);
543 }
544 
545 static void
sigqueue_delete_stopmask_proc(struct proc * p)546 sigqueue_delete_stopmask_proc(struct proc *p)
547 {
548 	sigset_t set;
549 
550 	SIGEMPTYSET(set);
551 	SIGADDSET(set, SIGSTOP);
552 	SIGADDSET(set, SIGTSTP);
553 	SIGADDSET(set, SIGTTIN);
554 	SIGADDSET(set, SIGTTOU);
555 	sigqueue_delete_set_proc(p, &set);
556 }
557 
558 /*
559  * Determine signal that should be delivered to thread td, the current
560  * thread, 0 if none.  If there is a pending stop signal with default
561  * action, the process stops in issignal().
562  */
563 int
cursig(struct thread * td)564 cursig(struct thread *td)
565 {
566 	PROC_LOCK_ASSERT(td->td_proc, MA_OWNED);
567 	mtx_assert(&td->td_proc->p_sigacts->ps_mtx, MA_OWNED);
568 	THREAD_LOCK_ASSERT(td, MA_NOTOWNED);
569 	return (SIGPENDING(td) ? issignal(td) : 0);
570 }
571 
572 /*
573  * Arrange for ast() to handle unmasked pending signals on return to user
574  * mode.  This must be called whenever a signal is added to td_sigqueue or
575  * unmasked in td_sigmask.
576  */
577 void
signotify(struct thread * td)578 signotify(struct thread *td)
579 {
580 	struct proc *p;
581 
582 	p = td->td_proc;
583 
584 	PROC_LOCK_ASSERT(p, MA_OWNED);
585 
586 	if (SIGPENDING(td)) {
587 		thread_lock(td);
588 		td->td_flags |= TDF_NEEDSIGCHK | TDF_ASTPENDING;
589 		thread_unlock(td);
590 	}
591 }
592 
593 int
sigonstack(size_t sp)594 sigonstack(size_t sp)
595 {
596 	struct thread *td = curthread;
597 
598 	return ((td->td_pflags & TDP_ALTSTACK) ?
599 #if defined(COMPAT_43)
600 	    ((td->td_sigstk.ss_size == 0) ?
601 		(td->td_sigstk.ss_flags & SS_ONSTACK) :
602 		((sp - (size_t)td->td_sigstk.ss_sp) < td->td_sigstk.ss_size))
603 #else
604 	    ((sp - (size_t)td->td_sigstk.ss_sp) < td->td_sigstk.ss_size)
605 #endif
606 	    : 0);
607 }
608 
609 static __inline int
__sigprop(int sig)610 __sigprop(int sig)
611 {
612 
613 	if (sig > 0 && sig < NSIG)
614 		return (sigproptbl[_SIG_IDX(sig)]);
615 	return (0);
616 }
617 
618 int
sigprop(int sig)619 sigprop(int sig)
620 {
621 
622 	return (__sigprop(sig));
623 }
624 
625 int
sig_ffs(sigset_t * set)626 sig_ffs(sigset_t *set)
627 {
628 	int i;
629 
630 	for (i = 0; i < _SIG_WORDS; i++)
631 		if (set->__bits[i])
632 			return (ffs(set->__bits[i]) + (i * 32));
633 	return (0);
634 }
635 
636 static bool
sigact_flag_test(const struct sigaction * act,int flag)637 sigact_flag_test(const struct sigaction *act, int flag)
638 {
639 
640 	/*
641 	 * SA_SIGINFO is reset when signal disposition is set to
642 	 * ignore or default.  Other flags are kept according to user
643 	 * settings.
644 	 */
645 	return ((act->sa_flags & flag) != 0 && (flag != SA_SIGINFO ||
646 	    ((__sighandler_t *)act->sa_sigaction != SIG_IGN &&
647 	    (__sighandler_t *)act->sa_sigaction != SIG_DFL)));
648 }
649 
650 /*
651  * kern_sigaction
652  * sigaction
653  * freebsd4_sigaction
654  * osigaction
655  */
656 int
kern_sigaction(struct thread * td,int sig,const struct sigaction * act,struct sigaction * oact,int flags)657 kern_sigaction(struct thread *td, int sig, const struct sigaction *act,
658     struct sigaction *oact, int flags)
659 {
660 	struct sigacts *ps;
661 	struct proc *p = td->td_proc;
662 
663 	if (!_SIG_VALID(sig))
664 		return (EINVAL);
665 	if (act != NULL && act->sa_handler != SIG_DFL &&
666 	    act->sa_handler != SIG_IGN && (act->sa_flags & ~(SA_ONSTACK |
667 	    SA_RESTART | SA_RESETHAND | SA_NOCLDSTOP | SA_NODEFER |
668 	    SA_NOCLDWAIT | SA_SIGINFO)) != 0)
669 		return (EINVAL);
670 
671 	PROC_LOCK(p);
672 	ps = p->p_sigacts;
673 	mtx_lock(&ps->ps_mtx);
674 	if (oact) {
675 		oact->sa_mask = ps->ps_catchmask[_SIG_IDX(sig)];
676 		oact->sa_flags = 0;
677 		if (SIGISMEMBER(ps->ps_sigonstack, sig))
678 			oact->sa_flags |= SA_ONSTACK;
679 		if (!SIGISMEMBER(ps->ps_sigintr, sig))
680 			oact->sa_flags |= SA_RESTART;
681 		if (SIGISMEMBER(ps->ps_sigreset, sig))
682 			oact->sa_flags |= SA_RESETHAND;
683 		if (SIGISMEMBER(ps->ps_signodefer, sig))
684 			oact->sa_flags |= SA_NODEFER;
685 		if (SIGISMEMBER(ps->ps_siginfo, sig)) {
686 			oact->sa_flags |= SA_SIGINFO;
687 			oact->sa_sigaction =
688 			    (__siginfohandler_t *)ps->ps_sigact[_SIG_IDX(sig)];
689 		} else
690 			oact->sa_handler = ps->ps_sigact[_SIG_IDX(sig)];
691 		if (sig == SIGCHLD && ps->ps_flag & PS_NOCLDSTOP)
692 			oact->sa_flags |= SA_NOCLDSTOP;
693 		if (sig == SIGCHLD && ps->ps_flag & PS_NOCLDWAIT)
694 			oact->sa_flags |= SA_NOCLDWAIT;
695 	}
696 	if (act) {
697 		if ((sig == SIGKILL || sig == SIGSTOP) &&
698 		    act->sa_handler != SIG_DFL) {
699 			mtx_unlock(&ps->ps_mtx);
700 			PROC_UNLOCK(p);
701 			return (EINVAL);
702 		}
703 
704 		/*
705 		 * Change setting atomically.
706 		 */
707 
708 		ps->ps_catchmask[_SIG_IDX(sig)] = act->sa_mask;
709 		SIG_CANTMASK(ps->ps_catchmask[_SIG_IDX(sig)]);
710 		if (sigact_flag_test(act, SA_SIGINFO)) {
711 			ps->ps_sigact[_SIG_IDX(sig)] =
712 			    (__sighandler_t *)act->sa_sigaction;
713 			SIGADDSET(ps->ps_siginfo, sig);
714 		} else {
715 			ps->ps_sigact[_SIG_IDX(sig)] = act->sa_handler;
716 			SIGDELSET(ps->ps_siginfo, sig);
717 		}
718 		if (!sigact_flag_test(act, SA_RESTART))
719 			SIGADDSET(ps->ps_sigintr, sig);
720 		else
721 			SIGDELSET(ps->ps_sigintr, sig);
722 		if (sigact_flag_test(act, SA_ONSTACK))
723 			SIGADDSET(ps->ps_sigonstack, sig);
724 		else
725 			SIGDELSET(ps->ps_sigonstack, sig);
726 		if (sigact_flag_test(act, SA_RESETHAND))
727 			SIGADDSET(ps->ps_sigreset, sig);
728 		else
729 			SIGDELSET(ps->ps_sigreset, sig);
730 		if (sigact_flag_test(act, SA_NODEFER))
731 			SIGADDSET(ps->ps_signodefer, sig);
732 		else
733 			SIGDELSET(ps->ps_signodefer, sig);
734 		if (sig == SIGCHLD) {
735 			if (act->sa_flags & SA_NOCLDSTOP)
736 				ps->ps_flag |= PS_NOCLDSTOP;
737 			else
738 				ps->ps_flag &= ~PS_NOCLDSTOP;
739 			if (act->sa_flags & SA_NOCLDWAIT) {
740 				/*
741 				 * Paranoia: since SA_NOCLDWAIT is implemented
742 				 * by reparenting the dying child to PID 1 (and
743 				 * trust it to reap the zombie), PID 1 itself
744 				 * is forbidden to set SA_NOCLDWAIT.
745 				 */
746 				if (p->p_pid == 1)
747 					ps->ps_flag &= ~PS_NOCLDWAIT;
748 				else
749 					ps->ps_flag |= PS_NOCLDWAIT;
750 			} else
751 				ps->ps_flag &= ~PS_NOCLDWAIT;
752 			if (ps->ps_sigact[_SIG_IDX(SIGCHLD)] == SIG_IGN)
753 				ps->ps_flag |= PS_CLDSIGIGN;
754 			else
755 				ps->ps_flag &= ~PS_CLDSIGIGN;
756 		}
757 		/*
758 		 * Set bit in ps_sigignore for signals that are set to SIG_IGN,
759 		 * and for signals set to SIG_DFL where the default is to
760 		 * ignore. However, don't put SIGCONT in ps_sigignore, as we
761 		 * have to restart the process.
762 		 */
763 		if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN ||
764 		    (__sigprop(sig) & SA_IGNORE &&
765 		     ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL)) {
766 			/* never to be seen again */
767 			sigqueue_delete_proc(p, sig);
768 			if (sig != SIGCONT)
769 				/* easier in psignal */
770 				SIGADDSET(ps->ps_sigignore, sig);
771 			SIGDELSET(ps->ps_sigcatch, sig);
772 		} else {
773 			SIGDELSET(ps->ps_sigignore, sig);
774 			if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL)
775 				SIGDELSET(ps->ps_sigcatch, sig);
776 			else
777 				SIGADDSET(ps->ps_sigcatch, sig);
778 		}
779 #ifdef COMPAT_FREEBSD4
780 		if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN ||
781 		    ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL ||
782 		    (flags & KSA_FREEBSD4) == 0)
783 			SIGDELSET(ps->ps_freebsd4, sig);
784 		else
785 			SIGADDSET(ps->ps_freebsd4, sig);
786 #endif
787 #ifdef COMPAT_43
788 		if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN ||
789 		    ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL ||
790 		    (flags & KSA_OSIGSET) == 0)
791 			SIGDELSET(ps->ps_osigset, sig);
792 		else
793 			SIGADDSET(ps->ps_osigset, sig);
794 #endif
795 	}
796 	mtx_unlock(&ps->ps_mtx);
797 	PROC_UNLOCK(p);
798 	return (0);
799 }
800 
801 #ifndef _SYS_SYSPROTO_H_
802 struct sigaction_args {
803 	int	sig;
804 	struct	sigaction *act;
805 	struct	sigaction *oact;
806 };
807 #endif
808 int
sys_sigaction(td,uap)809 sys_sigaction(td, uap)
810 	struct thread *td;
811 	register struct sigaction_args *uap;
812 {
813 	struct sigaction act, oact;
814 	register struct sigaction *actp, *oactp;
815 	int error;
816 
817 	actp = (uap->act != NULL) ? &act : NULL;
818 	oactp = (uap->oact != NULL) ? &oact : NULL;
819 	if (actp) {
820 		error = copyin(uap->act, actp, sizeof(act));
821 		if (error)
822 			return (error);
823 	}
824 	error = kern_sigaction(td, uap->sig, actp, oactp, 0);
825 	if (oactp && !error)
826 		error = copyout(oactp, uap->oact, sizeof(oact));
827 	return (error);
828 }
829 
830 #ifdef COMPAT_FREEBSD4
831 #ifndef _SYS_SYSPROTO_H_
832 struct freebsd4_sigaction_args {
833 	int	sig;
834 	struct	sigaction *act;
835 	struct	sigaction *oact;
836 };
837 #endif
838 int
freebsd4_sigaction(td,uap)839 freebsd4_sigaction(td, uap)
840 	struct thread *td;
841 	register struct freebsd4_sigaction_args *uap;
842 {
843 	struct sigaction act, oact;
844 	register struct sigaction *actp, *oactp;
845 	int error;
846 
847 
848 	actp = (uap->act != NULL) ? &act : NULL;
849 	oactp = (uap->oact != NULL) ? &oact : NULL;
850 	if (actp) {
851 		error = copyin(uap->act, actp, sizeof(act));
852 		if (error)
853 			return (error);
854 	}
855 	error = kern_sigaction(td, uap->sig, actp, oactp, KSA_FREEBSD4);
856 	if (oactp && !error)
857 		error = copyout(oactp, uap->oact, sizeof(oact));
858 	return (error);
859 }
860 #endif	/* COMAPT_FREEBSD4 */
861 
862 #ifdef COMPAT_43	/* XXX - COMPAT_FBSD3 */
863 #ifndef _SYS_SYSPROTO_H_
864 struct osigaction_args {
865 	int	signum;
866 	struct	osigaction *nsa;
867 	struct	osigaction *osa;
868 };
869 #endif
870 int
osigaction(td,uap)871 osigaction(td, uap)
872 	struct thread *td;
873 	register struct osigaction_args *uap;
874 {
875 	struct osigaction sa;
876 	struct sigaction nsa, osa;
877 	register struct sigaction *nsap, *osap;
878 	int error;
879 
880 	if (uap->signum <= 0 || uap->signum >= ONSIG)
881 		return (EINVAL);
882 
883 	nsap = (uap->nsa != NULL) ? &nsa : NULL;
884 	osap = (uap->osa != NULL) ? &osa : NULL;
885 
886 	if (nsap) {
887 		error = copyin(uap->nsa, &sa, sizeof(sa));
888 		if (error)
889 			return (error);
890 		nsap->sa_handler = sa.sa_handler;
891 		nsap->sa_flags = sa.sa_flags;
892 		OSIG2SIG(sa.sa_mask, nsap->sa_mask);
893 	}
894 	error = kern_sigaction(td, uap->signum, nsap, osap, KSA_OSIGSET);
895 	if (osap && !error) {
896 		sa.sa_handler = osap->sa_handler;
897 		sa.sa_flags = osap->sa_flags;
898 		SIG2OSIG(osap->sa_mask, sa.sa_mask);
899 		error = copyout(&sa, uap->osa, sizeof(sa));
900 	}
901 	return (error);
902 }
903 
904 #if !defined(__i386__)
905 /* Avoid replicating the same stub everywhere */
906 int
osigreturn(td,uap)907 osigreturn(td, uap)
908 	struct thread *td;
909 	struct osigreturn_args *uap;
910 {
911 
912 	return (nosys(td, (struct nosys_args *)uap));
913 }
914 #endif
915 #endif /* COMPAT_43 */
916 
917 /*
918  * Initialize signal state for process 0;
919  * set to ignore signals that are ignored by default.
920  */
921 void
siginit(p)922 siginit(p)
923 	struct proc *p;
924 {
925 	register int i;
926 	struct sigacts *ps;
927 
928 	PROC_LOCK(p);
929 	ps = p->p_sigacts;
930 	mtx_lock(&ps->ps_mtx);
931 	for (i = 1; i <= NSIG; i++) {
932 		if (__sigprop(i) & SA_IGNORE && i != SIGCONT) {
933 			SIGADDSET(ps->ps_sigignore, i);
934 		}
935 	}
936 	mtx_unlock(&ps->ps_mtx);
937 	PROC_UNLOCK(p);
938 }
939 
940 /*
941  * Reset specified signal to the default disposition.
942  */
943 static void
sigdflt(struct sigacts * ps,int sig)944 sigdflt(struct sigacts *ps, int sig)
945 {
946 
947 	mtx_assert(&ps->ps_mtx, MA_OWNED);
948 	SIGDELSET(ps->ps_sigcatch, sig);
949 	if ((__sigprop(sig) & SA_IGNORE) != 0 && sig != SIGCONT)
950 		SIGADDSET(ps->ps_sigignore, sig);
951 	ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
952 	SIGDELSET(ps->ps_siginfo, sig);
953 }
954 
955 /*
956  * Reset signals for an exec of the specified process.
957  */
958 void
execsigs(struct proc * p)959 execsigs(struct proc *p)
960 {
961 	sigset_t osigignore;
962 	struct sigacts *ps;
963 	int sig;
964 	struct thread *td;
965 
966 	/*
967 	 * Reset caught signals.  Held signals remain held
968 	 * through td_sigmask (unless they were caught,
969 	 * and are now ignored by default).
970 	 */
971 	PROC_LOCK_ASSERT(p, MA_OWNED);
972 	td = FIRST_THREAD_IN_PROC(p);
973 	ps = p->p_sigacts;
974 	mtx_lock(&ps->ps_mtx);
975 	while (SIGNOTEMPTY(ps->ps_sigcatch)) {
976 		sig = sig_ffs(&ps->ps_sigcatch);
977 		sigdflt(ps, sig);
978 		if ((__sigprop(sig) & SA_IGNORE) != 0)
979 			sigqueue_delete_proc(p, sig);
980 	}
981 
982 	/*
983 	 * As CloudABI processes cannot modify signal handlers, fully
984 	 * reset all signals to their default behavior. Do ignore
985 	 * SIGPIPE, as it would otherwise be impossible to recover from
986 	 * writes to broken pipes and sockets.
987 	 */
988 	if (SV_PROC_ABI(p) == SV_ABI_CLOUDABI) {
989 		osigignore = ps->ps_sigignore;
990 		while (SIGNOTEMPTY(osigignore)) {
991 			sig = sig_ffs(&osigignore);
992 			SIGDELSET(osigignore, sig);
993 			if (sig != SIGPIPE)
994 				sigdflt(ps, sig);
995 		}
996 		SIGADDSET(ps->ps_sigignore, SIGPIPE);
997 	}
998 
999 	/*
1000 	 * Reset stack state to the user stack.
1001 	 * Clear set of signals caught on the signal stack.
1002 	 */
1003 	td->td_sigstk.ss_flags = SS_DISABLE;
1004 	td->td_sigstk.ss_size = 0;
1005 	td->td_sigstk.ss_sp = 0;
1006 	td->td_pflags &= ~TDP_ALTSTACK;
1007 	/*
1008 	 * Reset no zombies if child dies flag as Solaris does.
1009 	 */
1010 	ps->ps_flag &= ~(PS_NOCLDWAIT | PS_CLDSIGIGN);
1011 	if (ps->ps_sigact[_SIG_IDX(SIGCHLD)] == SIG_IGN)
1012 		ps->ps_sigact[_SIG_IDX(SIGCHLD)] = SIG_DFL;
1013 	mtx_unlock(&ps->ps_mtx);
1014 }
1015 
1016 /*
1017  * kern_sigprocmask()
1018  *
1019  *	Manipulate signal mask.
1020  */
1021 int
kern_sigprocmask(struct thread * td,int how,sigset_t * set,sigset_t * oset,int flags)1022 kern_sigprocmask(struct thread *td, int how, sigset_t *set, sigset_t *oset,
1023     int flags)
1024 {
1025 	sigset_t new_block, oset1;
1026 	struct proc *p;
1027 	int error;
1028 
1029 	p = td->td_proc;
1030 	if ((flags & SIGPROCMASK_PROC_LOCKED) != 0)
1031 		PROC_LOCK_ASSERT(p, MA_OWNED);
1032 	else
1033 		PROC_LOCK(p);
1034 	mtx_assert(&p->p_sigacts->ps_mtx, (flags & SIGPROCMASK_PS_LOCKED) != 0
1035 	    ? MA_OWNED : MA_NOTOWNED);
1036 	if (oset != NULL)
1037 		*oset = td->td_sigmask;
1038 
1039 	error = 0;
1040 	if (set != NULL) {
1041 		switch (how) {
1042 		case SIG_BLOCK:
1043 			SIG_CANTMASK(*set);
1044 			oset1 = td->td_sigmask;
1045 			SIGSETOR(td->td_sigmask, *set);
1046 			new_block = td->td_sigmask;
1047 			SIGSETNAND(new_block, oset1);
1048 			break;
1049 		case SIG_UNBLOCK:
1050 			SIGSETNAND(td->td_sigmask, *set);
1051 			signotify(td);
1052 			goto out;
1053 		case SIG_SETMASK:
1054 			SIG_CANTMASK(*set);
1055 			oset1 = td->td_sigmask;
1056 			if (flags & SIGPROCMASK_OLD)
1057 				SIGSETLO(td->td_sigmask, *set);
1058 			else
1059 				td->td_sigmask = *set;
1060 			new_block = td->td_sigmask;
1061 			SIGSETNAND(new_block, oset1);
1062 			signotify(td);
1063 			break;
1064 		default:
1065 			error = EINVAL;
1066 			goto out;
1067 		}
1068 
1069 		/*
1070 		 * The new_block set contains signals that were not previously
1071 		 * blocked, but are blocked now.
1072 		 *
1073 		 * In case we block any signal that was not previously blocked
1074 		 * for td, and process has the signal pending, try to schedule
1075 		 * signal delivery to some thread that does not block the
1076 		 * signal, possibly waking it up.
1077 		 */
1078 		if (p->p_numthreads != 1)
1079 			reschedule_signals(p, new_block, flags);
1080 	}
1081 
1082 out:
1083 	if (!(flags & SIGPROCMASK_PROC_LOCKED))
1084 		PROC_UNLOCK(p);
1085 	return (error);
1086 }
1087 
1088 #ifndef _SYS_SYSPROTO_H_
1089 struct sigprocmask_args {
1090 	int	how;
1091 	const sigset_t *set;
1092 	sigset_t *oset;
1093 };
1094 #endif
1095 int
sys_sigprocmask(td,uap)1096 sys_sigprocmask(td, uap)
1097 	register struct thread *td;
1098 	struct sigprocmask_args *uap;
1099 {
1100 	sigset_t set, oset;
1101 	sigset_t *setp, *osetp;
1102 	int error;
1103 
1104 	setp = (uap->set != NULL) ? &set : NULL;
1105 	osetp = (uap->oset != NULL) ? &oset : NULL;
1106 	if (setp) {
1107 		error = copyin(uap->set, setp, sizeof(set));
1108 		if (error)
1109 			return (error);
1110 	}
1111 	error = kern_sigprocmask(td, uap->how, setp, osetp, 0);
1112 	if (osetp && !error) {
1113 		error = copyout(osetp, uap->oset, sizeof(oset));
1114 	}
1115 	return (error);
1116 }
1117 
1118 #ifdef COMPAT_43	/* XXX - COMPAT_FBSD3 */
1119 #ifndef _SYS_SYSPROTO_H_
1120 struct osigprocmask_args {
1121 	int	how;
1122 	osigset_t mask;
1123 };
1124 #endif
1125 int
osigprocmask(td,uap)1126 osigprocmask(td, uap)
1127 	register struct thread *td;
1128 	struct osigprocmask_args *uap;
1129 {
1130 	sigset_t set, oset;
1131 	int error;
1132 
1133 	OSIG2SIG(uap->mask, set);
1134 	error = kern_sigprocmask(td, uap->how, &set, &oset, 1);
1135 	SIG2OSIG(oset, td->td_retval[0]);
1136 	return (error);
1137 }
1138 #endif /* COMPAT_43 */
1139 
1140 int
sys_sigwait(struct thread * td,struct sigwait_args * uap)1141 sys_sigwait(struct thread *td, struct sigwait_args *uap)
1142 {
1143 	ksiginfo_t ksi;
1144 	sigset_t set;
1145 	int error;
1146 
1147 	error = copyin(uap->set, &set, sizeof(set));
1148 	if (error) {
1149 		td->td_retval[0] = error;
1150 		return (0);
1151 	}
1152 
1153 	error = kern_sigtimedwait(td, set, &ksi, NULL);
1154 	if (error) {
1155 		if (error == EINTR && td->td_proc->p_osrel < P_OSREL_SIGWAIT)
1156 			error = ERESTART;
1157 		if (error == ERESTART)
1158 			return (error);
1159 		td->td_retval[0] = error;
1160 		return (0);
1161 	}
1162 
1163 	error = copyout(&ksi.ksi_signo, uap->sig, sizeof(ksi.ksi_signo));
1164 	td->td_retval[0] = error;
1165 	return (0);
1166 }
1167 
1168 int
sys_sigtimedwait(struct thread * td,struct sigtimedwait_args * uap)1169 sys_sigtimedwait(struct thread *td, struct sigtimedwait_args *uap)
1170 {
1171 	struct timespec ts;
1172 	struct timespec *timeout;
1173 	sigset_t set;
1174 	ksiginfo_t ksi;
1175 	int error;
1176 
1177 	if (uap->timeout) {
1178 		error = copyin(uap->timeout, &ts, sizeof(ts));
1179 		if (error)
1180 			return (error);
1181 
1182 		timeout = &ts;
1183 	} else
1184 		timeout = NULL;
1185 
1186 	error = copyin(uap->set, &set, sizeof(set));
1187 	if (error)
1188 		return (error);
1189 
1190 	error = kern_sigtimedwait(td, set, &ksi, timeout);
1191 	if (error)
1192 		return (error);
1193 
1194 	if (uap->info)
1195 		error = copyout(&ksi.ksi_info, uap->info, sizeof(siginfo_t));
1196 
1197 	if (error == 0)
1198 		td->td_retval[0] = ksi.ksi_signo;
1199 	return (error);
1200 }
1201 
1202 int
sys_sigwaitinfo(struct thread * td,struct sigwaitinfo_args * uap)1203 sys_sigwaitinfo(struct thread *td, struct sigwaitinfo_args *uap)
1204 {
1205 	ksiginfo_t ksi;
1206 	sigset_t set;
1207 	int error;
1208 
1209 	error = copyin(uap->set, &set, sizeof(set));
1210 	if (error)
1211 		return (error);
1212 
1213 	error = kern_sigtimedwait(td, set, &ksi, NULL);
1214 	if (error)
1215 		return (error);
1216 
1217 	if (uap->info)
1218 		error = copyout(&ksi.ksi_info, uap->info, sizeof(siginfo_t));
1219 
1220 	if (error == 0)
1221 		td->td_retval[0] = ksi.ksi_signo;
1222 	return (error);
1223 }
1224 
1225 int
kern_sigtimedwait(struct thread * td,sigset_t waitset,ksiginfo_t * ksi,struct timespec * timeout)1226 kern_sigtimedwait(struct thread *td, sigset_t waitset, ksiginfo_t *ksi,
1227 	struct timespec *timeout)
1228 {
1229 	struct sigacts *ps;
1230 	sigset_t saved_mask, new_block;
1231 	struct proc *p;
1232 	int error, sig, timo, timevalid = 0;
1233 	struct timespec rts, ets, ts;
1234 	struct timeval tv;
1235 
1236 	p = td->td_proc;
1237 	error = 0;
1238 	ets.tv_sec = 0;
1239 	ets.tv_nsec = 0;
1240 
1241 	if (timeout != NULL) {
1242 		if (timeout->tv_nsec >= 0 && timeout->tv_nsec < 1000000000) {
1243 			timevalid = 1;
1244 			getnanouptime(&rts);
1245 			ets = rts;
1246 			timespecadd(&ets, timeout);
1247 		}
1248 	}
1249 	ksiginfo_init(ksi);
1250 	/* Some signals can not be waited for. */
1251 	SIG_CANTMASK(waitset);
1252 	ps = p->p_sigacts;
1253 	PROC_LOCK(p);
1254 	saved_mask = td->td_sigmask;
1255 	SIGSETNAND(td->td_sigmask, waitset);
1256 	for (;;) {
1257 		mtx_lock(&ps->ps_mtx);
1258 		sig = cursig(td);
1259 		mtx_unlock(&ps->ps_mtx);
1260 		if (sig != 0 && SIGISMEMBER(waitset, sig)) {
1261 			if (sigqueue_get(&td->td_sigqueue, sig, ksi) != 0 ||
1262 			    sigqueue_get(&p->p_sigqueue, sig, ksi) != 0) {
1263 				error = 0;
1264 				break;
1265 			}
1266 		}
1267 
1268 		if (error != 0)
1269 			break;
1270 
1271 		/*
1272 		 * POSIX says this must be checked after looking for pending
1273 		 * signals.
1274 		 */
1275 		if (timeout != NULL) {
1276 			if (!timevalid) {
1277 				error = EINVAL;
1278 				break;
1279 			}
1280 			getnanouptime(&rts);
1281 			if (timespeccmp(&rts, &ets, >=)) {
1282 				error = EAGAIN;
1283 				break;
1284 			}
1285 			ts = ets;
1286 			timespecsub(&ts, &rts);
1287 			TIMESPEC_TO_TIMEVAL(&tv, &ts);
1288 			timo = tvtohz(&tv);
1289 		} else {
1290 			timo = 0;
1291 		}
1292 
1293 		error = msleep(ps, &p->p_mtx, PPAUSE|PCATCH, "sigwait", timo);
1294 
1295 		if (timeout != NULL) {
1296 			if (error == ERESTART) {
1297 				/* Timeout can not be restarted. */
1298 				error = EINTR;
1299 			} else if (error == EAGAIN) {
1300 				/* We will calculate timeout by ourself. */
1301 				error = 0;
1302 			}
1303 		}
1304 	}
1305 
1306 	new_block = saved_mask;
1307 	SIGSETNAND(new_block, td->td_sigmask);
1308 	td->td_sigmask = saved_mask;
1309 	/*
1310 	 * Fewer signals can be delivered to us, reschedule signal
1311 	 * notification.
1312 	 */
1313 	if (p->p_numthreads != 1)
1314 		reschedule_signals(p, new_block, 0);
1315 
1316 	if (error == 0) {
1317 		SDT_PROBE2(proc, , , signal__clear, sig, ksi);
1318 
1319 		if (ksi->ksi_code == SI_TIMER)
1320 			itimer_accept(p, ksi->ksi_timerid, ksi);
1321 
1322 #ifdef KTRACE
1323 		if (KTRPOINT(td, KTR_PSIG)) {
1324 			sig_t action;
1325 
1326 			mtx_lock(&ps->ps_mtx);
1327 			action = ps->ps_sigact[_SIG_IDX(sig)];
1328 			mtx_unlock(&ps->ps_mtx);
1329 			ktrpsig(sig, action, &td->td_sigmask, ksi->ksi_code);
1330 		}
1331 #endif
1332 		if (sig == SIGKILL)
1333 			sigexit(td, sig);
1334 	}
1335 	PROC_UNLOCK(p);
1336 	return (error);
1337 }
1338 
1339 #ifndef _SYS_SYSPROTO_H_
1340 struct sigpending_args {
1341 	sigset_t	*set;
1342 };
1343 #endif
1344 int
sys_sigpending(td,uap)1345 sys_sigpending(td, uap)
1346 	struct thread *td;
1347 	struct sigpending_args *uap;
1348 {
1349 	struct proc *p = td->td_proc;
1350 	sigset_t pending;
1351 
1352 	PROC_LOCK(p);
1353 	pending = p->p_sigqueue.sq_signals;
1354 	SIGSETOR(pending, td->td_sigqueue.sq_signals);
1355 	PROC_UNLOCK(p);
1356 	return (copyout(&pending, uap->set, sizeof(sigset_t)));
1357 }
1358 
1359 #ifdef COMPAT_43	/* XXX - COMPAT_FBSD3 */
1360 #ifndef _SYS_SYSPROTO_H_
1361 struct osigpending_args {
1362 	int	dummy;
1363 };
1364 #endif
1365 int
osigpending(td,uap)1366 osigpending(td, uap)
1367 	struct thread *td;
1368 	struct osigpending_args *uap;
1369 {
1370 	struct proc *p = td->td_proc;
1371 	sigset_t pending;
1372 
1373 	PROC_LOCK(p);
1374 	pending = p->p_sigqueue.sq_signals;
1375 	SIGSETOR(pending, td->td_sigqueue.sq_signals);
1376 	PROC_UNLOCK(p);
1377 	SIG2OSIG(pending, td->td_retval[0]);
1378 	return (0);
1379 }
1380 #endif /* COMPAT_43 */
1381 
1382 #if defined(COMPAT_43)
1383 /*
1384  * Generalized interface signal handler, 4.3-compatible.
1385  */
1386 #ifndef _SYS_SYSPROTO_H_
1387 struct osigvec_args {
1388 	int	signum;
1389 	struct	sigvec *nsv;
1390 	struct	sigvec *osv;
1391 };
1392 #endif
1393 /* ARGSUSED */
1394 int
osigvec(td,uap)1395 osigvec(td, uap)
1396 	struct thread *td;
1397 	register struct osigvec_args *uap;
1398 {
1399 	struct sigvec vec;
1400 	struct sigaction nsa, osa;
1401 	register struct sigaction *nsap, *osap;
1402 	int error;
1403 
1404 	if (uap->signum <= 0 || uap->signum >= ONSIG)
1405 		return (EINVAL);
1406 	nsap = (uap->nsv != NULL) ? &nsa : NULL;
1407 	osap = (uap->osv != NULL) ? &osa : NULL;
1408 	if (nsap) {
1409 		error = copyin(uap->nsv, &vec, sizeof(vec));
1410 		if (error)
1411 			return (error);
1412 		nsap->sa_handler = vec.sv_handler;
1413 		OSIG2SIG(vec.sv_mask, nsap->sa_mask);
1414 		nsap->sa_flags = vec.sv_flags;
1415 		nsap->sa_flags ^= SA_RESTART;	/* opposite of SV_INTERRUPT */
1416 	}
1417 	error = kern_sigaction(td, uap->signum, nsap, osap, KSA_OSIGSET);
1418 	if (osap && !error) {
1419 		vec.sv_handler = osap->sa_handler;
1420 		SIG2OSIG(osap->sa_mask, vec.sv_mask);
1421 		vec.sv_flags = osap->sa_flags;
1422 		vec.sv_flags &= ~SA_NOCLDWAIT;
1423 		vec.sv_flags ^= SA_RESTART;
1424 		error = copyout(&vec, uap->osv, sizeof(vec));
1425 	}
1426 	return (error);
1427 }
1428 
1429 #ifndef _SYS_SYSPROTO_H_
1430 struct osigblock_args {
1431 	int	mask;
1432 };
1433 #endif
1434 int
osigblock(td,uap)1435 osigblock(td, uap)
1436 	register struct thread *td;
1437 	struct osigblock_args *uap;
1438 {
1439 	sigset_t set, oset;
1440 
1441 	OSIG2SIG(uap->mask, set);
1442 	kern_sigprocmask(td, SIG_BLOCK, &set, &oset, 0);
1443 	SIG2OSIG(oset, td->td_retval[0]);
1444 	return (0);
1445 }
1446 
1447 #ifndef _SYS_SYSPROTO_H_
1448 struct osigsetmask_args {
1449 	int	mask;
1450 };
1451 #endif
1452 int
osigsetmask(td,uap)1453 osigsetmask(td, uap)
1454 	struct thread *td;
1455 	struct osigsetmask_args *uap;
1456 {
1457 	sigset_t set, oset;
1458 
1459 	OSIG2SIG(uap->mask, set);
1460 	kern_sigprocmask(td, SIG_SETMASK, &set, &oset, 0);
1461 	SIG2OSIG(oset, td->td_retval[0]);
1462 	return (0);
1463 }
1464 #endif /* COMPAT_43 */
1465 
1466 /*
1467  * Suspend calling thread until signal, providing mask to be set in the
1468  * meantime.
1469  */
1470 #ifndef _SYS_SYSPROTO_H_
1471 struct sigsuspend_args {
1472 	const sigset_t *sigmask;
1473 };
1474 #endif
1475 /* ARGSUSED */
1476 int
sys_sigsuspend(td,uap)1477 sys_sigsuspend(td, uap)
1478 	struct thread *td;
1479 	struct sigsuspend_args *uap;
1480 {
1481 	sigset_t mask;
1482 	int error;
1483 
1484 	error = copyin(uap->sigmask, &mask, sizeof(mask));
1485 	if (error)
1486 		return (error);
1487 	return (kern_sigsuspend(td, mask));
1488 }
1489 
1490 int
kern_sigsuspend(struct thread * td,sigset_t mask)1491 kern_sigsuspend(struct thread *td, sigset_t mask)
1492 {
1493 	struct proc *p = td->td_proc;
1494 	int has_sig, sig;
1495 
1496 	/*
1497 	 * When returning from sigsuspend, we want
1498 	 * the old mask to be restored after the
1499 	 * signal handler has finished.  Thus, we
1500 	 * save it here and mark the sigacts structure
1501 	 * to indicate this.
1502 	 */
1503 	PROC_LOCK(p);
1504 	kern_sigprocmask(td, SIG_SETMASK, &mask, &td->td_oldsigmask,
1505 	    SIGPROCMASK_PROC_LOCKED);
1506 	td->td_pflags |= TDP_OLDMASK;
1507 
1508 	/*
1509 	 * Process signals now. Otherwise, we can get spurious wakeup
1510 	 * due to signal entered process queue, but delivered to other
1511 	 * thread. But sigsuspend should return only on signal
1512 	 * delivery.
1513 	 */
1514 	(p->p_sysent->sv_set_syscall_retval)(td, EINTR);
1515 	for (has_sig = 0; !has_sig;) {
1516 		while (msleep(&p->p_sigacts, &p->p_mtx, PPAUSE|PCATCH, "pause",
1517 			0) == 0)
1518 			/* void */;
1519 		thread_suspend_check(0);
1520 		mtx_lock(&p->p_sigacts->ps_mtx);
1521 		while ((sig = cursig(td)) != 0)
1522 			has_sig += postsig(sig);
1523 		mtx_unlock(&p->p_sigacts->ps_mtx);
1524 	}
1525 	PROC_UNLOCK(p);
1526 	td->td_errno = EINTR;
1527 	td->td_pflags |= TDP_NERRNO;
1528 	return (EJUSTRETURN);
1529 }
1530 
1531 #ifdef COMPAT_43	/* XXX - COMPAT_FBSD3 */
1532 /*
1533  * Compatibility sigsuspend call for old binaries.  Note nonstandard calling
1534  * convention: libc stub passes mask, not pointer, to save a copyin.
1535  */
1536 #ifndef _SYS_SYSPROTO_H_
1537 struct osigsuspend_args {
1538 	osigset_t mask;
1539 };
1540 #endif
1541 /* ARGSUSED */
1542 int
osigsuspend(td,uap)1543 osigsuspend(td, uap)
1544 	struct thread *td;
1545 	struct osigsuspend_args *uap;
1546 {
1547 	sigset_t mask;
1548 
1549 	OSIG2SIG(uap->mask, mask);
1550 	return (kern_sigsuspend(td, mask));
1551 }
1552 #endif /* COMPAT_43 */
1553 
1554 #if defined(COMPAT_43)
1555 #ifndef _SYS_SYSPROTO_H_
1556 struct osigstack_args {
1557 	struct	sigstack *nss;
1558 	struct	sigstack *oss;
1559 };
1560 #endif
1561 /* ARGSUSED */
1562 int
osigstack(td,uap)1563 osigstack(td, uap)
1564 	struct thread *td;
1565 	register struct osigstack_args *uap;
1566 {
1567 	struct sigstack nss, oss;
1568 	int error = 0;
1569 
1570 	if (uap->nss != NULL) {
1571 		error = copyin(uap->nss, &nss, sizeof(nss));
1572 		if (error)
1573 			return (error);
1574 	}
1575 	oss.ss_sp = td->td_sigstk.ss_sp;
1576 	oss.ss_onstack = sigonstack(cpu_getstack(td));
1577 	if (uap->nss != NULL) {
1578 		td->td_sigstk.ss_sp = nss.ss_sp;
1579 		td->td_sigstk.ss_size = 0;
1580 		td->td_sigstk.ss_flags |= nss.ss_onstack & SS_ONSTACK;
1581 		td->td_pflags |= TDP_ALTSTACK;
1582 	}
1583 	if (uap->oss != NULL)
1584 		error = copyout(&oss, uap->oss, sizeof(oss));
1585 
1586 	return (error);
1587 }
1588 #endif /* COMPAT_43 */
1589 
1590 #ifndef _SYS_SYSPROTO_H_
1591 struct sigaltstack_args {
1592 	stack_t	*ss;
1593 	stack_t	*oss;
1594 };
1595 #endif
1596 /* ARGSUSED */
1597 int
sys_sigaltstack(td,uap)1598 sys_sigaltstack(td, uap)
1599 	struct thread *td;
1600 	register struct sigaltstack_args *uap;
1601 {
1602 	stack_t ss, oss;
1603 	int error;
1604 
1605 	if (uap->ss != NULL) {
1606 		error = copyin(uap->ss, &ss, sizeof(ss));
1607 		if (error)
1608 			return (error);
1609 	}
1610 	error = kern_sigaltstack(td, (uap->ss != NULL) ? &ss : NULL,
1611 	    (uap->oss != NULL) ? &oss : NULL);
1612 	if (error)
1613 		return (error);
1614 	if (uap->oss != NULL)
1615 		error = copyout(&oss, uap->oss, sizeof(stack_t));
1616 	return (error);
1617 }
1618 
1619 int
kern_sigaltstack(struct thread * td,stack_t * ss,stack_t * oss)1620 kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss)
1621 {
1622 	struct proc *p = td->td_proc;
1623 	int oonstack;
1624 
1625 	oonstack = sigonstack(cpu_getstack(td));
1626 
1627 	if (oss != NULL) {
1628 		*oss = td->td_sigstk;
1629 		oss->ss_flags = (td->td_pflags & TDP_ALTSTACK)
1630 		    ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
1631 	}
1632 
1633 	if (ss != NULL) {
1634 		if (oonstack)
1635 			return (EPERM);
1636 		if ((ss->ss_flags & ~SS_DISABLE) != 0)
1637 			return (EINVAL);
1638 		if (!(ss->ss_flags & SS_DISABLE)) {
1639 			if (ss->ss_size < p->p_sysent->sv_minsigstksz)
1640 				return (ENOMEM);
1641 
1642 			td->td_sigstk = *ss;
1643 			td->td_pflags |= TDP_ALTSTACK;
1644 		} else {
1645 			td->td_pflags &= ~TDP_ALTSTACK;
1646 		}
1647 	}
1648 	return (0);
1649 }
1650 
1651 /*
1652  * Common code for kill process group/broadcast kill.
1653  * cp is calling process.
1654  */
1655 static int
killpg1(struct thread * td,int sig,int pgid,int all,ksiginfo_t * ksi)1656 killpg1(struct thread *td, int sig, int pgid, int all, ksiginfo_t *ksi)
1657 {
1658 	struct proc *p;
1659 	struct pgrp *pgrp;
1660 	int err;
1661 	int ret;
1662 
1663 	ret = ESRCH;
1664 	if (all) {
1665 		/*
1666 		 * broadcast
1667 		 */
1668 		sx_slock(&allproc_lock);
1669 		FOREACH_PROC_IN_SYSTEM(p) {
1670 			PROC_LOCK(p);
1671 			if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
1672 			    p == td->td_proc || p->p_state == PRS_NEW) {
1673 				PROC_UNLOCK(p);
1674 				continue;
1675 			}
1676 			err = p_cansignal(td, p, sig);
1677 			if (err == 0) {
1678 				if (sig)
1679 					pksignal(p, sig, ksi);
1680 				ret = err;
1681 			}
1682 			else if (ret == ESRCH)
1683 				ret = err;
1684 			PROC_UNLOCK(p);
1685 		}
1686 		sx_sunlock(&allproc_lock);
1687 	} else {
1688 		sx_slock(&proctree_lock);
1689 		if (pgid == 0) {
1690 			/*
1691 			 * zero pgid means send to my process group.
1692 			 */
1693 			pgrp = td->td_proc->p_pgrp;
1694 			PGRP_LOCK(pgrp);
1695 		} else {
1696 			pgrp = pgfind(pgid);
1697 			if (pgrp == NULL) {
1698 				sx_sunlock(&proctree_lock);
1699 				return (ESRCH);
1700 			}
1701 		}
1702 		sx_sunlock(&proctree_lock);
1703 		LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
1704 			PROC_LOCK(p);
1705 			if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
1706 			    p->p_state == PRS_NEW) {
1707 				PROC_UNLOCK(p);
1708 				continue;
1709 			}
1710 			err = p_cansignal(td, p, sig);
1711 			if (err == 0) {
1712 				if (sig)
1713 					pksignal(p, sig, ksi);
1714 				ret = err;
1715 			}
1716 			else if (ret == ESRCH)
1717 				ret = err;
1718 			PROC_UNLOCK(p);
1719 		}
1720 		PGRP_UNLOCK(pgrp);
1721 	}
1722 	return (ret);
1723 }
1724 
1725 #ifndef _SYS_SYSPROTO_H_
1726 struct kill_args {
1727 	int	pid;
1728 	int	signum;
1729 };
1730 #endif
1731 /* ARGSUSED */
1732 int
sys_kill(struct thread * td,struct kill_args * uap)1733 sys_kill(struct thread *td, struct kill_args *uap)
1734 {
1735 	ksiginfo_t ksi;
1736 	struct proc *p;
1737 	int error;
1738 
1739 	/*
1740 	 * A process in capability mode can send signals only to himself.
1741 	 * The main rationale behind this is that abort(3) is implemented as
1742 	 * kill(getpid(), SIGABRT).
1743 	 */
1744 	if (IN_CAPABILITY_MODE(td) && uap->pid != td->td_proc->p_pid)
1745 		return (ECAPMODE);
1746 
1747 	AUDIT_ARG_SIGNUM(uap->signum);
1748 	AUDIT_ARG_PID(uap->pid);
1749 	if ((u_int)uap->signum > _SIG_MAXSIG)
1750 		return (EINVAL);
1751 
1752 	ksiginfo_init(&ksi);
1753 	ksi.ksi_signo = uap->signum;
1754 	ksi.ksi_code = SI_USER;
1755 	ksi.ksi_pid = td->td_proc->p_pid;
1756 	ksi.ksi_uid = td->td_ucred->cr_ruid;
1757 
1758 	if (uap->pid > 0) {
1759 		/* kill single process */
1760 		if ((p = pfind(uap->pid)) == NULL) {
1761 			if ((p = zpfind(uap->pid)) == NULL)
1762 				return (ESRCH);
1763 		}
1764 		AUDIT_ARG_PROCESS(p);
1765 		error = p_cansignal(td, p, uap->signum);
1766 		if (error == 0 && uap->signum)
1767 			pksignal(p, uap->signum, &ksi);
1768 		PROC_UNLOCK(p);
1769 		return (error);
1770 	}
1771 	switch (uap->pid) {
1772 	case -1:		/* broadcast signal */
1773 		return (killpg1(td, uap->signum, 0, 1, &ksi));
1774 	case 0:			/* signal own process group */
1775 		return (killpg1(td, uap->signum, 0, 0, &ksi));
1776 	default:		/* negative explicit process group */
1777 		return (killpg1(td, uap->signum, -uap->pid, 0, &ksi));
1778 	}
1779 	/* NOTREACHED */
1780 }
1781 
1782 int
sys_pdkill(td,uap)1783 sys_pdkill(td, uap)
1784 	struct thread *td;
1785 	struct pdkill_args *uap;
1786 {
1787 	struct proc *p;
1788 	cap_rights_t rights;
1789 	int error;
1790 
1791 	AUDIT_ARG_SIGNUM(uap->signum);
1792 	AUDIT_ARG_FD(uap->fd);
1793 	if ((u_int)uap->signum > _SIG_MAXSIG)
1794 		return (EINVAL);
1795 
1796 	error = procdesc_find(td, uap->fd,
1797 	    cap_rights_init(&rights, CAP_PDKILL), &p);
1798 	if (error)
1799 		return (error);
1800 	AUDIT_ARG_PROCESS(p);
1801 	error = p_cansignal(td, p, uap->signum);
1802 	if (error == 0 && uap->signum)
1803 		kern_psignal(p, uap->signum);
1804 	PROC_UNLOCK(p);
1805 	return (error);
1806 }
1807 
1808 #if defined(COMPAT_43)
1809 #ifndef _SYS_SYSPROTO_H_
1810 struct okillpg_args {
1811 	int	pgid;
1812 	int	signum;
1813 };
1814 #endif
1815 /* ARGSUSED */
1816 int
okillpg(struct thread * td,struct okillpg_args * uap)1817 okillpg(struct thread *td, struct okillpg_args *uap)
1818 {
1819 	ksiginfo_t ksi;
1820 
1821 	AUDIT_ARG_SIGNUM(uap->signum);
1822 	AUDIT_ARG_PID(uap->pgid);
1823 	if ((u_int)uap->signum > _SIG_MAXSIG)
1824 		return (EINVAL);
1825 
1826 	ksiginfo_init(&ksi);
1827 	ksi.ksi_signo = uap->signum;
1828 	ksi.ksi_code = SI_USER;
1829 	ksi.ksi_pid = td->td_proc->p_pid;
1830 	ksi.ksi_uid = td->td_ucred->cr_ruid;
1831 	return (killpg1(td, uap->signum, uap->pgid, 0, &ksi));
1832 }
1833 #endif /* COMPAT_43 */
1834 
1835 #ifndef _SYS_SYSPROTO_H_
1836 struct sigqueue_args {
1837 	pid_t pid;
1838 	int signum;
1839 	/* union sigval */ void *value;
1840 };
1841 #endif
1842 int
sys_sigqueue(struct thread * td,struct sigqueue_args * uap)1843 sys_sigqueue(struct thread *td, struct sigqueue_args *uap)
1844 {
1845 	ksiginfo_t ksi;
1846 	struct proc *p;
1847 	int error;
1848 
1849 	if ((u_int)uap->signum > _SIG_MAXSIG)
1850 		return (EINVAL);
1851 
1852 	/*
1853 	 * Specification says sigqueue can only send signal to
1854 	 * single process.
1855 	 */
1856 	if (uap->pid <= 0)
1857 		return (EINVAL);
1858 
1859 	if ((p = pfind(uap->pid)) == NULL) {
1860 		if ((p = zpfind(uap->pid)) == NULL)
1861 			return (ESRCH);
1862 	}
1863 	error = p_cansignal(td, p, uap->signum);
1864 	if (error == 0 && uap->signum != 0) {
1865 		ksiginfo_init(&ksi);
1866 		ksi.ksi_flags = KSI_SIGQ;
1867 		ksi.ksi_signo = uap->signum;
1868 		ksi.ksi_code = SI_QUEUE;
1869 		ksi.ksi_pid = td->td_proc->p_pid;
1870 		ksi.ksi_uid = td->td_ucred->cr_ruid;
1871 		ksi.ksi_value.sival_ptr = uap->value;
1872 		error = pksignal(p, ksi.ksi_signo, &ksi);
1873 	}
1874 	PROC_UNLOCK(p);
1875 	return (error);
1876 }
1877 
1878 /*
1879  * Send a signal to a process group.
1880  */
1881 void
gsignal(int pgid,int sig,ksiginfo_t * ksi)1882 gsignal(int pgid, int sig, ksiginfo_t *ksi)
1883 {
1884 	struct pgrp *pgrp;
1885 
1886 	if (pgid != 0) {
1887 		sx_slock(&proctree_lock);
1888 		pgrp = pgfind(pgid);
1889 		sx_sunlock(&proctree_lock);
1890 		if (pgrp != NULL) {
1891 			pgsignal(pgrp, sig, 0, ksi);
1892 			PGRP_UNLOCK(pgrp);
1893 		}
1894 	}
1895 }
1896 
1897 /*
1898  * Send a signal to a process group.  If checktty is 1,
1899  * limit to members which have a controlling terminal.
1900  */
1901 void
pgsignal(struct pgrp * pgrp,int sig,int checkctty,ksiginfo_t * ksi)1902 pgsignal(struct pgrp *pgrp, int sig, int checkctty, ksiginfo_t *ksi)
1903 {
1904 	struct proc *p;
1905 
1906 	if (pgrp) {
1907 		PGRP_LOCK_ASSERT(pgrp, MA_OWNED);
1908 		LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
1909 			PROC_LOCK(p);
1910 			if (p->p_state == PRS_NORMAL &&
1911 			    (checkctty == 0 || p->p_flag & P_CONTROLT))
1912 				pksignal(p, sig, ksi);
1913 			PROC_UNLOCK(p);
1914 		}
1915 	}
1916 }
1917 
1918 
1919 /*
1920  * Recalculate the signal mask and reset the signal disposition after
1921  * usermode frame for delivery is formed.  Should be called after
1922  * mach-specific routine, because sysent->sv_sendsig() needs correct
1923  * ps_siginfo and signal mask.
1924  */
1925 static void
postsig_done(int sig,struct thread * td,struct sigacts * ps)1926 postsig_done(int sig, struct thread *td, struct sigacts *ps)
1927 {
1928 	sigset_t mask;
1929 
1930 	mtx_assert(&ps->ps_mtx, MA_OWNED);
1931 	td->td_ru.ru_nsignals++;
1932 	mask = ps->ps_catchmask[_SIG_IDX(sig)];
1933 	if (!SIGISMEMBER(ps->ps_signodefer, sig))
1934 		SIGADDSET(mask, sig);
1935 	kern_sigprocmask(td, SIG_BLOCK, &mask, NULL,
1936 	    SIGPROCMASK_PROC_LOCKED | SIGPROCMASK_PS_LOCKED);
1937 	if (SIGISMEMBER(ps->ps_sigreset, sig))
1938 		sigdflt(ps, sig);
1939 }
1940 
1941 
1942 /*
1943  * Send a signal caused by a trap to the current thread.  If it will be
1944  * caught immediately, deliver it with correct code.  Otherwise, post it
1945  * normally.
1946  */
1947 void
trapsignal(struct thread * td,ksiginfo_t * ksi)1948 trapsignal(struct thread *td, ksiginfo_t *ksi)
1949 {
1950 	struct sigacts *ps;
1951 	struct proc *p;
1952 	int sig;
1953 	int code;
1954 
1955 	p = td->td_proc;
1956 	sig = ksi->ksi_signo;
1957 	code = ksi->ksi_code;
1958 	KASSERT(_SIG_VALID(sig), ("invalid signal"));
1959 
1960 	PROC_LOCK(p);
1961 	ps = p->p_sigacts;
1962 	mtx_lock(&ps->ps_mtx);
1963 	if ((p->p_flag & P_TRACED) == 0 && SIGISMEMBER(ps->ps_sigcatch, sig) &&
1964 	    !SIGISMEMBER(td->td_sigmask, sig)) {
1965 #ifdef KTRACE
1966 		if (KTRPOINT(curthread, KTR_PSIG))
1967 			ktrpsig(sig, ps->ps_sigact[_SIG_IDX(sig)],
1968 			    &td->td_sigmask, code);
1969 #endif
1970 		(*p->p_sysent->sv_sendsig)(ps->ps_sigact[_SIG_IDX(sig)],
1971 				ksi, &td->td_sigmask);
1972 		postsig_done(sig, td, ps);
1973 		mtx_unlock(&ps->ps_mtx);
1974 	} else {
1975 		/*
1976 		 * Avoid a possible infinite loop if the thread
1977 		 * masking the signal or process is ignoring the
1978 		 * signal.
1979 		 */
1980 		if (kern_forcesigexit &&
1981 		    (SIGISMEMBER(td->td_sigmask, sig) ||
1982 		     ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN)) {
1983 			SIGDELSET(td->td_sigmask, sig);
1984 			SIGDELSET(ps->ps_sigcatch, sig);
1985 			SIGDELSET(ps->ps_sigignore, sig);
1986 			ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
1987 		}
1988 		mtx_unlock(&ps->ps_mtx);
1989 		p->p_code = code;	/* XXX for core dump/debugger */
1990 		p->p_sig = sig;		/* XXX to verify code */
1991 		tdsendsignal(p, td, sig, ksi);
1992 	}
1993 	PROC_UNLOCK(p);
1994 }
1995 
1996 static struct thread *
sigtd(struct proc * p,int sig,int prop)1997 sigtd(struct proc *p, int sig, int prop)
1998 {
1999 	struct thread *td, *signal_td;
2000 
2001 	PROC_LOCK_ASSERT(p, MA_OWNED);
2002 
2003 	/*
2004 	 * Check if current thread can handle the signal without
2005 	 * switching context to another thread.
2006 	 */
2007 	if (curproc == p && !SIGISMEMBER(curthread->td_sigmask, sig))
2008 		return (curthread);
2009 	signal_td = NULL;
2010 	FOREACH_THREAD_IN_PROC(p, td) {
2011 		if (!SIGISMEMBER(td->td_sigmask, sig)) {
2012 			signal_td = td;
2013 			break;
2014 		}
2015 	}
2016 	if (signal_td == NULL)
2017 		signal_td = FIRST_THREAD_IN_PROC(p);
2018 	return (signal_td);
2019 }
2020 
2021 /*
2022  * Send the signal to the process.  If the signal has an action, the action
2023  * is usually performed by the target process rather than the caller; we add
2024  * the signal to the set of pending signals for the process.
2025  *
2026  * Exceptions:
2027  *   o When a stop signal is sent to a sleeping process that takes the
2028  *     default action, the process is stopped without awakening it.
2029  *   o SIGCONT restarts stopped processes (or puts them back to sleep)
2030  *     regardless of the signal action (eg, blocked or ignored).
2031  *
2032  * Other ignored signals are discarded immediately.
2033  *
2034  * NB: This function may be entered from the debugger via the "kill" DDB
2035  * command.  There is little that can be done to mitigate the possibly messy
2036  * side effects of this unwise possibility.
2037  */
2038 void
kern_psignal(struct proc * p,int sig)2039 kern_psignal(struct proc *p, int sig)
2040 {
2041 	ksiginfo_t ksi;
2042 
2043 	ksiginfo_init(&ksi);
2044 	ksi.ksi_signo = sig;
2045 	ksi.ksi_code = SI_KERNEL;
2046 	(void) tdsendsignal(p, NULL, sig, &ksi);
2047 }
2048 
2049 int
pksignal(struct proc * p,int sig,ksiginfo_t * ksi)2050 pksignal(struct proc *p, int sig, ksiginfo_t *ksi)
2051 {
2052 
2053 	return (tdsendsignal(p, NULL, sig, ksi));
2054 }
2055 
2056 /* Utility function for finding a thread to send signal event to. */
2057 int
sigev_findtd(struct proc * p,struct sigevent * sigev,struct thread ** ttd)2058 sigev_findtd(struct proc *p ,struct sigevent *sigev, struct thread **ttd)
2059 {
2060 	struct thread *td;
2061 
2062 	if (sigev->sigev_notify == SIGEV_THREAD_ID) {
2063 		td = tdfind(sigev->sigev_notify_thread_id, p->p_pid);
2064 		if (td == NULL)
2065 			return (ESRCH);
2066 		*ttd = td;
2067 	} else {
2068 		*ttd = NULL;
2069 		PROC_LOCK(p);
2070 	}
2071 	return (0);
2072 }
2073 
2074 void
tdsignal(struct thread * td,int sig)2075 tdsignal(struct thread *td, int sig)
2076 {
2077 	ksiginfo_t ksi;
2078 
2079 	ksiginfo_init(&ksi);
2080 	ksi.ksi_signo = sig;
2081 	ksi.ksi_code = SI_KERNEL;
2082 	(void) tdsendsignal(td->td_proc, td, sig, &ksi);
2083 }
2084 
2085 void
tdksignal(struct thread * td,int sig,ksiginfo_t * ksi)2086 tdksignal(struct thread *td, int sig, ksiginfo_t *ksi)
2087 {
2088 
2089 	(void) tdsendsignal(td->td_proc, td, sig, ksi);
2090 }
2091 
2092 int
tdsendsignal(struct proc * p,struct thread * td,int sig,ksiginfo_t * ksi)2093 tdsendsignal(struct proc *p, struct thread *td, int sig, ksiginfo_t *ksi)
2094 {
2095 	sig_t action;
2096 	sigqueue_t *sigqueue;
2097 	int prop;
2098 	struct sigacts *ps;
2099 	int intrval;
2100 	int ret = 0;
2101 	int wakeup_swapper;
2102 
2103 	MPASS(td == NULL || p == td->td_proc);
2104 	PROC_LOCK_ASSERT(p, MA_OWNED);
2105 
2106 	if (!_SIG_VALID(sig))
2107 		panic("%s(): invalid signal %d", __func__, sig);
2108 
2109 	KASSERT(ksi == NULL || !KSI_ONQ(ksi), ("%s: ksi on queue", __func__));
2110 
2111 	/*
2112 	 * IEEE Std 1003.1-2001: return success when killing a zombie.
2113 	 */
2114 	if (p->p_state == PRS_ZOMBIE) {
2115 		if (ksi && (ksi->ksi_flags & KSI_INS))
2116 			ksiginfo_tryfree(ksi);
2117 		return (ret);
2118 	}
2119 
2120 	ps = p->p_sigacts;
2121 	KNOTE_LOCKED(&p->p_klist, NOTE_SIGNAL | sig);
2122 	prop = __sigprop(sig);
2123 
2124 	if (td == NULL) {
2125 		td = sigtd(p, sig, prop);
2126 		sigqueue = &p->p_sigqueue;
2127 	} else
2128 		sigqueue = &td->td_sigqueue;
2129 
2130 	SDT_PROBE3(proc, , , signal__send, td, p, sig);
2131 
2132 	/*
2133 	 * If the signal is being ignored,
2134 	 * then we forget about it immediately.
2135 	 * (Note: we don't set SIGCONT in ps_sigignore,
2136 	 * and if it is set to SIG_IGN,
2137 	 * action will be SIG_DFL here.)
2138 	 */
2139 	mtx_lock(&ps->ps_mtx);
2140 	if (SIGISMEMBER(ps->ps_sigignore, sig)) {
2141 		SDT_PROBE3(proc, , , signal__discard, td, p, sig);
2142 
2143 		mtx_unlock(&ps->ps_mtx);
2144 		if (ksi && (ksi->ksi_flags & KSI_INS))
2145 			ksiginfo_tryfree(ksi);
2146 		return (ret);
2147 	}
2148 	if (SIGISMEMBER(td->td_sigmask, sig))
2149 		action = SIG_HOLD;
2150 	else if (SIGISMEMBER(ps->ps_sigcatch, sig))
2151 		action = SIG_CATCH;
2152 	else
2153 		action = SIG_DFL;
2154 	if (SIGISMEMBER(ps->ps_sigintr, sig))
2155 		intrval = EINTR;
2156 	else
2157 		intrval = ERESTART;
2158 	mtx_unlock(&ps->ps_mtx);
2159 
2160 	if (prop & SA_CONT)
2161 		sigqueue_delete_stopmask_proc(p);
2162 	else if (prop & SA_STOP) {
2163 		/*
2164 		 * If sending a tty stop signal to a member of an orphaned
2165 		 * process group, discard the signal here if the action
2166 		 * is default; don't stop the process below if sleeping,
2167 		 * and don't clear any pending SIGCONT.
2168 		 */
2169 		if ((prop & SA_TTYSTOP) &&
2170 		    (p->p_pgrp->pg_jobc == 0) &&
2171 		    (action == SIG_DFL)) {
2172 			if (ksi && (ksi->ksi_flags & KSI_INS))
2173 				ksiginfo_tryfree(ksi);
2174 			return (ret);
2175 		}
2176 		sigqueue_delete_proc(p, SIGCONT);
2177 		if (p->p_flag & P_CONTINUED) {
2178 			p->p_flag &= ~P_CONTINUED;
2179 			PROC_LOCK(p->p_pptr);
2180 			sigqueue_take(p->p_ksi);
2181 			PROC_UNLOCK(p->p_pptr);
2182 		}
2183 	}
2184 
2185 	ret = sigqueue_add(sigqueue, sig, ksi);
2186 	if (ret != 0)
2187 		return (ret);
2188 	signotify(td);
2189 	/*
2190 	 * Defer further processing for signals which are held,
2191 	 * except that stopped processes must be continued by SIGCONT.
2192 	 */
2193 	if (action == SIG_HOLD &&
2194 	    !((prop & SA_CONT) && (p->p_flag & P_STOPPED_SIG)))
2195 		return (ret);
2196 	/*
2197 	 * SIGKILL: Remove procfs STOPEVENTs.
2198 	 */
2199 	if (sig == SIGKILL) {
2200 		/* from procfs_ioctl.c: PIOCBIC */
2201 		p->p_stops = 0;
2202 		/* from procfs_ioctl.c: PIOCCONT */
2203 		p->p_step = 0;
2204 		wakeup(&p->p_step);
2205 	}
2206 	/*
2207 	 * Some signals have a process-wide effect and a per-thread
2208 	 * component.  Most processing occurs when the process next
2209 	 * tries to cross the user boundary, however there are some
2210 	 * times when processing needs to be done immediately, such as
2211 	 * waking up threads so that they can cross the user boundary.
2212 	 * We try to do the per-process part here.
2213 	 */
2214 	if (P_SHOULDSTOP(p)) {
2215 		KASSERT(!(p->p_flag & P_WEXIT),
2216 		    ("signal to stopped but exiting process"));
2217 		if (sig == SIGKILL) {
2218 			/*
2219 			 * If traced process is already stopped,
2220 			 * then no further action is necessary.
2221 			 */
2222 			if (p->p_flag & P_TRACED)
2223 				goto out;
2224 			/*
2225 			 * SIGKILL sets process running.
2226 			 * It will die elsewhere.
2227 			 * All threads must be restarted.
2228 			 */
2229 			p->p_flag &= ~P_STOPPED_SIG;
2230 			goto runfast;
2231 		}
2232 
2233 		if (prop & SA_CONT) {
2234 			/*
2235 			 * If traced process is already stopped,
2236 			 * then no further action is necessary.
2237 			 */
2238 			if (p->p_flag & P_TRACED)
2239 				goto out;
2240 			/*
2241 			 * If SIGCONT is default (or ignored), we continue the
2242 			 * process but don't leave the signal in sigqueue as
2243 			 * it has no further action.  If SIGCONT is held, we
2244 			 * continue the process and leave the signal in
2245 			 * sigqueue.  If the process catches SIGCONT, let it
2246 			 * handle the signal itself.  If it isn't waiting on
2247 			 * an event, it goes back to run state.
2248 			 * Otherwise, process goes back to sleep state.
2249 			 */
2250 			p->p_flag &= ~P_STOPPED_SIG;
2251 			PROC_SLOCK(p);
2252 			if (p->p_numthreads == p->p_suspcount) {
2253 				PROC_SUNLOCK(p);
2254 				p->p_flag |= P_CONTINUED;
2255 				p->p_xsig = SIGCONT;
2256 				PROC_LOCK(p->p_pptr);
2257 				childproc_continued(p);
2258 				PROC_UNLOCK(p->p_pptr);
2259 				PROC_SLOCK(p);
2260 			}
2261 			if (action == SIG_DFL) {
2262 				thread_unsuspend(p);
2263 				PROC_SUNLOCK(p);
2264 				sigqueue_delete(sigqueue, sig);
2265 				goto out;
2266 			}
2267 			if (action == SIG_CATCH) {
2268 				/*
2269 				 * The process wants to catch it so it needs
2270 				 * to run at least one thread, but which one?
2271 				 */
2272 				PROC_SUNLOCK(p);
2273 				goto runfast;
2274 			}
2275 			/*
2276 			 * The signal is not ignored or caught.
2277 			 */
2278 			thread_unsuspend(p);
2279 			PROC_SUNLOCK(p);
2280 			goto out;
2281 		}
2282 
2283 		if (prop & SA_STOP) {
2284 			/*
2285 			 * If traced process is already stopped,
2286 			 * then no further action is necessary.
2287 			 */
2288 			if (p->p_flag & P_TRACED)
2289 				goto out;
2290 			/*
2291 			 * Already stopped, don't need to stop again
2292 			 * (If we did the shell could get confused).
2293 			 * Just make sure the signal STOP bit set.
2294 			 */
2295 			p->p_flag |= P_STOPPED_SIG;
2296 			sigqueue_delete(sigqueue, sig);
2297 			goto out;
2298 		}
2299 
2300 		/*
2301 		 * All other kinds of signals:
2302 		 * If a thread is sleeping interruptibly, simulate a
2303 		 * wakeup so that when it is continued it will be made
2304 		 * runnable and can look at the signal.  However, don't make
2305 		 * the PROCESS runnable, leave it stopped.
2306 		 * It may run a bit until it hits a thread_suspend_check().
2307 		 */
2308 		wakeup_swapper = 0;
2309 		PROC_SLOCK(p);
2310 		thread_lock(td);
2311 		if (TD_ON_SLEEPQ(td) && (td->td_flags & TDF_SINTR))
2312 			wakeup_swapper = sleepq_abort(td, intrval);
2313 		thread_unlock(td);
2314 		PROC_SUNLOCK(p);
2315 		if (wakeup_swapper)
2316 			kick_proc0();
2317 		goto out;
2318 		/*
2319 		 * Mutexes are short lived. Threads waiting on them will
2320 		 * hit thread_suspend_check() soon.
2321 		 */
2322 	} else if (p->p_state == PRS_NORMAL) {
2323 		if (p->p_flag & P_TRACED || action == SIG_CATCH) {
2324 			tdsigwakeup(td, sig, action, intrval);
2325 			goto out;
2326 		}
2327 
2328 		MPASS(action == SIG_DFL);
2329 
2330 		if (prop & SA_STOP) {
2331 			if (p->p_flag & (P_PPWAIT|P_WEXIT))
2332 				goto out;
2333 			p->p_flag |= P_STOPPED_SIG;
2334 			p->p_xsig = sig;
2335 			PROC_SLOCK(p);
2336 			sig_suspend_threads(td, p, 1);
2337 			if (p->p_numthreads == p->p_suspcount) {
2338 				/*
2339 				 * only thread sending signal to another
2340 				 * process can reach here, if thread is sending
2341 				 * signal to its process, because thread does
2342 				 * not suspend itself here, p_numthreads
2343 				 * should never be equal to p_suspcount.
2344 				 */
2345 				thread_stopped(p);
2346 				PROC_SUNLOCK(p);
2347 				sigqueue_delete_proc(p, p->p_xsig);
2348 			} else
2349 				PROC_SUNLOCK(p);
2350 			goto out;
2351 		}
2352 	} else {
2353 		/* Not in "NORMAL" state. discard the signal. */
2354 		sigqueue_delete(sigqueue, sig);
2355 		goto out;
2356 	}
2357 
2358 	/*
2359 	 * The process is not stopped so we need to apply the signal to all the
2360 	 * running threads.
2361 	 */
2362 runfast:
2363 	tdsigwakeup(td, sig, action, intrval);
2364 	PROC_SLOCK(p);
2365 	thread_unsuspend(p);
2366 	PROC_SUNLOCK(p);
2367 out:
2368 	/* If we jump here, proc slock should not be owned. */
2369 	PROC_SLOCK_ASSERT(p, MA_NOTOWNED);
2370 	return (ret);
2371 }
2372 
2373 /*
2374  * The force of a signal has been directed against a single
2375  * thread.  We need to see what we can do about knocking it
2376  * out of any sleep it may be in etc.
2377  */
2378 static void
tdsigwakeup(struct thread * td,int sig,sig_t action,int intrval)2379 tdsigwakeup(struct thread *td, int sig, sig_t action, int intrval)
2380 {
2381 	struct proc *p = td->td_proc;
2382 	register int prop;
2383 	int wakeup_swapper;
2384 
2385 	wakeup_swapper = 0;
2386 	PROC_LOCK_ASSERT(p, MA_OWNED);
2387 	prop = __sigprop(sig);
2388 
2389 	PROC_SLOCK(p);
2390 	thread_lock(td);
2391 	/*
2392 	 * Bring the priority of a thread up if we want it to get
2393 	 * killed in this lifetime.  Be careful to avoid bumping the
2394 	 * priority of the idle thread, since we still allow to signal
2395 	 * kernel processes.
2396 	 */
2397 	if (action == SIG_DFL && (prop & SA_KILL) != 0 &&
2398 	    td->td_priority > PUSER && !TD_IS_IDLETHREAD(td))
2399 		sched_prio(td, PUSER);
2400 	if (TD_ON_SLEEPQ(td)) {
2401 		/*
2402 		 * If thread is sleeping uninterruptibly
2403 		 * we can't interrupt the sleep... the signal will
2404 		 * be noticed when the process returns through
2405 		 * trap() or syscall().
2406 		 */
2407 		if ((td->td_flags & TDF_SINTR) == 0)
2408 			goto out;
2409 		/*
2410 		 * If SIGCONT is default (or ignored) and process is
2411 		 * asleep, we are finished; the process should not
2412 		 * be awakened.
2413 		 */
2414 		if ((prop & SA_CONT) && action == SIG_DFL) {
2415 			thread_unlock(td);
2416 			PROC_SUNLOCK(p);
2417 			sigqueue_delete(&p->p_sigqueue, sig);
2418 			/*
2419 			 * It may be on either list in this state.
2420 			 * Remove from both for now.
2421 			 */
2422 			sigqueue_delete(&td->td_sigqueue, sig);
2423 			return;
2424 		}
2425 
2426 		/*
2427 		 * Don't awaken a sleeping thread for SIGSTOP if the
2428 		 * STOP signal is deferred.
2429 		 */
2430 		if ((prop & SA_STOP) && (td->td_flags & TDF_SBDRY))
2431 			goto out;
2432 
2433 		/*
2434 		 * Give low priority threads a better chance to run.
2435 		 */
2436 		if (td->td_priority > PUSER && !TD_IS_IDLETHREAD(td))
2437 			sched_prio(td, PUSER);
2438 
2439 		wakeup_swapper = sleepq_abort(td, intrval);
2440 	} else {
2441 		/*
2442 		 * Other states do nothing with the signal immediately,
2443 		 * other than kicking ourselves if we are running.
2444 		 * It will either never be noticed, or noticed very soon.
2445 		 */
2446 #ifdef SMP
2447 		if (TD_IS_RUNNING(td) && td != curthread)
2448 			forward_signal(td);
2449 #endif
2450 	}
2451 out:
2452 	PROC_SUNLOCK(p);
2453 	thread_unlock(td);
2454 	if (wakeup_swapper)
2455 		kick_proc0();
2456 }
2457 
2458 static void
sig_suspend_threads(struct thread * td,struct proc * p,int sending)2459 sig_suspend_threads(struct thread *td, struct proc *p, int sending)
2460 {
2461 	struct thread *td2;
2462 
2463 	PROC_LOCK_ASSERT(p, MA_OWNED);
2464 	PROC_SLOCK_ASSERT(p, MA_OWNED);
2465 
2466 	FOREACH_THREAD_IN_PROC(p, td2) {
2467 		thread_lock(td2);
2468 		td2->td_flags |= TDF_ASTPENDING | TDF_NEEDSUSPCHK;
2469 		if ((TD_IS_SLEEPING(td2) || TD_IS_SWAPPED(td2)) &&
2470 		    (td2->td_flags & TDF_SINTR)) {
2471 			if (td2->td_flags & TDF_SBDRY) {
2472 				/*
2473 				 * Once a thread is asleep with
2474 				 * TDF_SBDRY set, it should never
2475 				 * become suspended due to this check.
2476 				 */
2477 				KASSERT(!TD_IS_SUSPENDED(td2),
2478 				    ("thread with deferred stops suspended"));
2479 			} else if (!TD_IS_SUSPENDED(td2)) {
2480 				thread_suspend_one(td2);
2481 			}
2482 		} else if (!TD_IS_SUSPENDED(td2)) {
2483 			if (sending || td != td2)
2484 				td2->td_flags |= TDF_ASTPENDING;
2485 #ifdef SMP
2486 			if (TD_IS_RUNNING(td2) && td2 != td)
2487 				forward_signal(td2);
2488 #endif
2489 		}
2490 		thread_unlock(td2);
2491 	}
2492 }
2493 
2494 int
ptracestop(struct thread * td,int sig)2495 ptracestop(struct thread *td, int sig)
2496 {
2497 	struct proc *p = td->td_proc;
2498 
2499 	PROC_LOCK_ASSERT(p, MA_OWNED);
2500 	KASSERT(!(p->p_flag & P_WEXIT), ("Stopping exiting process"));
2501 	WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK,
2502 	    &p->p_mtx.lock_object, "Stopping for traced signal");
2503 
2504 	td->td_dbgflags |= TDB_XSIG;
2505 	td->td_xsig = sig;
2506 	CTR4(KTR_PTRACE, "ptracestop: tid %d (pid %d) flags %#x sig %d",
2507 	    td->td_tid, p->p_pid, td->td_dbgflags, sig);
2508 	PROC_SLOCK(p);
2509 	while ((p->p_flag & P_TRACED) && (td->td_dbgflags & TDB_XSIG)) {
2510 		if (p->p_flag & P_SINGLE_EXIT &&
2511 		    !(td->td_dbgflags & TDB_EXIT)) {
2512 			/*
2513 			 * Ignore ptrace stops except for thread exit
2514 			 * events when the process exits.
2515 			 */
2516 			td->td_dbgflags &= ~TDB_XSIG;
2517 			PROC_SUNLOCK(p);
2518 			return (sig);
2519 		}
2520 		/*
2521 		 * Just make wait() to work, the last stopped thread
2522 		 * will win.
2523 		 */
2524 		p->p_xsig = sig;
2525 		p->p_xthread = td;
2526 		p->p_flag |= (P_STOPPED_SIG|P_STOPPED_TRACE);
2527 		sig_suspend_threads(td, p, 0);
2528 		if ((td->td_dbgflags & TDB_STOPATFORK) != 0) {
2529 			td->td_dbgflags &= ~TDB_STOPATFORK;
2530 			cv_broadcast(&p->p_dbgwait);
2531 		}
2532 stopme:
2533 		thread_suspend_switch(td, p);
2534 		if (p->p_xthread == td)
2535 			p->p_xthread = NULL;
2536 		if (!(p->p_flag & P_TRACED))
2537 			break;
2538 		if (td->td_dbgflags & TDB_SUSPEND) {
2539 			if (p->p_flag & P_SINGLE_EXIT)
2540 				break;
2541 			goto stopme;
2542 		}
2543 	}
2544 	PROC_SUNLOCK(p);
2545 	return (td->td_xsig);
2546 }
2547 
2548 static void
reschedule_signals(struct proc * p,sigset_t block,int flags)2549 reschedule_signals(struct proc *p, sigset_t block, int flags)
2550 {
2551 	struct sigacts *ps;
2552 	struct thread *td;
2553 	int sig;
2554 
2555 	PROC_LOCK_ASSERT(p, MA_OWNED);
2556 	ps = p->p_sigacts;
2557 	mtx_assert(&ps->ps_mtx, (flags & SIGPROCMASK_PS_LOCKED) != 0 ?
2558 	    MA_OWNED : MA_NOTOWNED);
2559 	if (SIGISEMPTY(p->p_siglist))
2560 		return;
2561 	SIGSETAND(block, p->p_siglist);
2562 	while ((sig = sig_ffs(&block)) != 0) {
2563 		SIGDELSET(block, sig);
2564 		td = sigtd(p, sig, 0);
2565 		signotify(td);
2566 		if (!(flags & SIGPROCMASK_PS_LOCKED))
2567 			mtx_lock(&ps->ps_mtx);
2568 		if (p->p_flag & P_TRACED || SIGISMEMBER(ps->ps_sigcatch, sig))
2569 			tdsigwakeup(td, sig, SIG_CATCH,
2570 			    (SIGISMEMBER(ps->ps_sigintr, sig) ? EINTR :
2571 			     ERESTART));
2572 		if (!(flags & SIGPROCMASK_PS_LOCKED))
2573 			mtx_unlock(&ps->ps_mtx);
2574 	}
2575 }
2576 
2577 void
tdsigcleanup(struct thread * td)2578 tdsigcleanup(struct thread *td)
2579 {
2580 	struct proc *p;
2581 	sigset_t unblocked;
2582 
2583 	p = td->td_proc;
2584 	PROC_LOCK_ASSERT(p, MA_OWNED);
2585 
2586 	sigqueue_flush(&td->td_sigqueue);
2587 	if (p->p_numthreads == 1)
2588 		return;
2589 
2590 	/*
2591 	 * Since we cannot handle signals, notify signal post code
2592 	 * about this by filling the sigmask.
2593 	 *
2594 	 * Also, if needed, wake up thread(s) that do not block the
2595 	 * same signals as the exiting thread, since the thread might
2596 	 * have been selected for delivery and woken up.
2597 	 */
2598 	SIGFILLSET(unblocked);
2599 	SIGSETNAND(unblocked, td->td_sigmask);
2600 	SIGFILLSET(td->td_sigmask);
2601 	reschedule_signals(p, unblocked, 0);
2602 
2603 }
2604 
2605 /*
2606  * Defer the delivery of SIGSTOP for the current thread.  Returns true
2607  * if stops were deferred and false if they were already deferred.
2608  */
2609 int
sigdeferstop(void)2610 sigdeferstop(void)
2611 {
2612 	struct thread *td;
2613 
2614 	td = curthread;
2615 	if (td->td_flags & TDF_SBDRY)
2616 		return (0);
2617 	thread_lock(td);
2618 	td->td_flags |= TDF_SBDRY;
2619 	thread_unlock(td);
2620 	return (1);
2621 }
2622 
2623 /*
2624  * Permit the delivery of SIGSTOP for the current thread.  This does
2625  * not immediately suspend if a stop was posted.  Instead, the thread
2626  * will suspend either via ast() or a subsequent interruptible sleep.
2627  */
2628 int
sigallowstop(void)2629 sigallowstop(void)
2630 {
2631 	struct thread *td;
2632 	int prev;
2633 
2634 	td = curthread;
2635 	thread_lock(td);
2636 	prev = (td->td_flags & TDF_SBDRY) != 0;
2637 	td->td_flags &= ~TDF_SBDRY;
2638 	thread_unlock(td);
2639 	return (prev);
2640 }
2641 
2642 /*
2643  * If the current process has received a signal (should be caught or cause
2644  * termination, should interrupt current syscall), return the signal number.
2645  * Stop signals with default action are processed immediately, then cleared;
2646  * they aren't returned.  This is checked after each entry to the system for
2647  * a syscall or trap (though this can usually be done without calling issignal
2648  * by checking the pending signal masks in cursig.) The normal call
2649  * sequence is
2650  *
2651  *	while (sig = cursig(curthread))
2652  *		postsig(sig);
2653  */
2654 static int
issignal(struct thread * td)2655 issignal(struct thread *td)
2656 {
2657 	struct proc *p;
2658 	struct sigacts *ps;
2659 	struct sigqueue *queue;
2660 	sigset_t sigpending;
2661 	int sig, prop, newsig;
2662 
2663 	p = td->td_proc;
2664 	ps = p->p_sigacts;
2665 	mtx_assert(&ps->ps_mtx, MA_OWNED);
2666 	PROC_LOCK_ASSERT(p, MA_OWNED);
2667 	for (;;) {
2668 		int traced = (p->p_flag & P_TRACED) || (p->p_stops & S_SIG);
2669 
2670 		sigpending = td->td_sigqueue.sq_signals;
2671 		SIGSETOR(sigpending, p->p_sigqueue.sq_signals);
2672 		SIGSETNAND(sigpending, td->td_sigmask);
2673 
2674 		if (p->p_flag & P_PPWAIT || td->td_flags & TDF_SBDRY)
2675 			SIG_STOPSIGMASK(sigpending);
2676 		if (SIGISEMPTY(sigpending))	/* no signal to send */
2677 			return (0);
2678 		sig = sig_ffs(&sigpending);
2679 
2680 		if (p->p_stops & S_SIG) {
2681 			mtx_unlock(&ps->ps_mtx);
2682 			stopevent(p, S_SIG, sig);
2683 			mtx_lock(&ps->ps_mtx);
2684 		}
2685 
2686 		/*
2687 		 * We should see pending but ignored signals
2688 		 * only if P_TRACED was on when they were posted.
2689 		 */
2690 		if (SIGISMEMBER(ps->ps_sigignore, sig) && (traced == 0)) {
2691 			sigqueue_delete(&td->td_sigqueue, sig);
2692 			sigqueue_delete(&p->p_sigqueue, sig);
2693 			continue;
2694 		}
2695 		if (p->p_flag & P_TRACED && (p->p_flag & P_PPTRACE) == 0) {
2696 			/*
2697 			 * If traced, always stop.
2698 			 * Remove old signal from queue before the stop.
2699 			 * XXX shrug off debugger, it causes siginfo to
2700 			 * be thrown away.
2701 			 */
2702 			queue = &td->td_sigqueue;
2703 			td->td_dbgksi.ksi_signo = 0;
2704 			if (sigqueue_get(queue, sig, &td->td_dbgksi) == 0) {
2705 				queue = &p->p_sigqueue;
2706 				sigqueue_get(queue, sig, &td->td_dbgksi);
2707 			}
2708 
2709 			mtx_unlock(&ps->ps_mtx);
2710 			newsig = ptracestop(td, sig);
2711 			mtx_lock(&ps->ps_mtx);
2712 
2713 			if (sig != newsig) {
2714 
2715 				/*
2716 				 * If parent wants us to take the signal,
2717 				 * then it will leave it in p->p_xsig;
2718 				 * otherwise we just look for signals again.
2719 				*/
2720 				if (newsig == 0)
2721 					continue;
2722 				sig = newsig;
2723 
2724 				/*
2725 				 * Put the new signal into td_sigqueue. If the
2726 				 * signal is being masked, look for other
2727 				 * signals.
2728 				 */
2729 				sigqueue_add(queue, sig, NULL);
2730 				if (SIGISMEMBER(td->td_sigmask, sig))
2731 					continue;
2732 				signotify(td);
2733 			} else {
2734 				if (td->td_dbgksi.ksi_signo != 0) {
2735 					td->td_dbgksi.ksi_flags |= KSI_HEAD;
2736 					if (sigqueue_add(&td->td_sigqueue, sig,
2737 					    &td->td_dbgksi) != 0)
2738 						td->td_dbgksi.ksi_signo = 0;
2739 				}
2740 				if (td->td_dbgksi.ksi_signo == 0)
2741 					sigqueue_add(&td->td_sigqueue, sig,
2742 					    NULL);
2743 			}
2744 
2745 			/*
2746 			 * If the traced bit got turned off, go back up
2747 			 * to the top to rescan signals.  This ensures
2748 			 * that p_sig* and p_sigact are consistent.
2749 			 */
2750 			if ((p->p_flag & P_TRACED) == 0)
2751 				continue;
2752 		}
2753 
2754 		prop = __sigprop(sig);
2755 
2756 		/*
2757 		 * Decide whether the signal should be returned.
2758 		 * Return the signal's number, or fall through
2759 		 * to clear it from the pending mask.
2760 		 */
2761 		switch ((intptr_t)p->p_sigacts->ps_sigact[_SIG_IDX(sig)]) {
2762 
2763 		case (intptr_t)SIG_DFL:
2764 			/*
2765 			 * Don't take default actions on system processes.
2766 			 */
2767 			if (p->p_pid <= 1) {
2768 #ifdef DIAGNOSTIC
2769 				/*
2770 				 * Are you sure you want to ignore SIGSEGV
2771 				 * in init? XXX
2772 				 */
2773 				printf("Process (pid %lu) got signal %d\n",
2774 					(u_long)p->p_pid, sig);
2775 #endif
2776 				break;		/* == ignore */
2777 			}
2778 			/*
2779 			 * If there is a pending stop signal to process
2780 			 * with default action, stop here,
2781 			 * then clear the signal.  However,
2782 			 * if process is member of an orphaned
2783 			 * process group, ignore tty stop signals.
2784 			 */
2785 			if (prop & SA_STOP) {
2786 				if (p->p_flag & (P_TRACED|P_WEXIT) ||
2787 				    (p->p_pgrp->pg_jobc == 0 &&
2788 				     prop & SA_TTYSTOP))
2789 					break;	/* == ignore */
2790 				mtx_unlock(&ps->ps_mtx);
2791 				WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK,
2792 				    &p->p_mtx.lock_object, "Catching SIGSTOP");
2793 				p->p_flag |= P_STOPPED_SIG;
2794 				p->p_xsig = sig;
2795 				PROC_SLOCK(p);
2796 				sig_suspend_threads(td, p, 0);
2797 				thread_suspend_switch(td, p);
2798 				PROC_SUNLOCK(p);
2799 				mtx_lock(&ps->ps_mtx);
2800 				break;
2801 			} else if (prop & SA_IGNORE) {
2802 				/*
2803 				 * Except for SIGCONT, shouldn't get here.
2804 				 * Default action is to ignore; drop it.
2805 				 */
2806 				break;		/* == ignore */
2807 			} else
2808 				return (sig);
2809 			/*NOTREACHED*/
2810 
2811 		case (intptr_t)SIG_IGN:
2812 			/*
2813 			 * Masking above should prevent us ever trying
2814 			 * to take action on an ignored signal other
2815 			 * than SIGCONT, unless process is traced.
2816 			 */
2817 			if ((prop & SA_CONT) == 0 &&
2818 			    (p->p_flag & P_TRACED) == 0)
2819 				printf("issignal\n");
2820 			break;		/* == ignore */
2821 
2822 		default:
2823 			/*
2824 			 * This signal has an action, let
2825 			 * postsig() process it.
2826 			 */
2827 			return (sig);
2828 		}
2829 		sigqueue_delete(&td->td_sigqueue, sig);	/* take the signal! */
2830 		sigqueue_delete(&p->p_sigqueue, sig);
2831 	}
2832 	/* NOTREACHED */
2833 }
2834 
2835 void
thread_stopped(struct proc * p)2836 thread_stopped(struct proc *p)
2837 {
2838 	int n;
2839 
2840 	PROC_LOCK_ASSERT(p, MA_OWNED);
2841 	PROC_SLOCK_ASSERT(p, MA_OWNED);
2842 	n = p->p_suspcount;
2843 	if (p == curproc)
2844 		n++;
2845 	if ((p->p_flag & P_STOPPED_SIG) && (n == p->p_numthreads)) {
2846 		PROC_SUNLOCK(p);
2847 		p->p_flag &= ~P_WAITED;
2848 		PROC_LOCK(p->p_pptr);
2849 		childproc_stopped(p, (p->p_flag & P_TRACED) ?
2850 			CLD_TRAPPED : CLD_STOPPED);
2851 		PROC_UNLOCK(p->p_pptr);
2852 		PROC_SLOCK(p);
2853 	}
2854 }
2855 
2856 /*
2857  * Take the action for the specified signal
2858  * from the current set of pending signals.
2859  */
2860 int
postsig(sig)2861 postsig(sig)
2862 	register int sig;
2863 {
2864 	struct thread *td = curthread;
2865 	register struct proc *p = td->td_proc;
2866 	struct sigacts *ps;
2867 	sig_t action;
2868 	ksiginfo_t ksi;
2869 	sigset_t returnmask;
2870 
2871 	KASSERT(sig != 0, ("postsig"));
2872 
2873 	PROC_LOCK_ASSERT(p, MA_OWNED);
2874 	ps = p->p_sigacts;
2875 	mtx_assert(&ps->ps_mtx, MA_OWNED);
2876 	ksiginfo_init(&ksi);
2877 	if (sigqueue_get(&td->td_sigqueue, sig, &ksi) == 0 &&
2878 	    sigqueue_get(&p->p_sigqueue, sig, &ksi) == 0)
2879 		return (0);
2880 	ksi.ksi_signo = sig;
2881 	if (ksi.ksi_code == SI_TIMER)
2882 		itimer_accept(p, ksi.ksi_timerid, &ksi);
2883 	action = ps->ps_sigact[_SIG_IDX(sig)];
2884 #ifdef KTRACE
2885 	if (KTRPOINT(td, KTR_PSIG))
2886 		ktrpsig(sig, action, td->td_pflags & TDP_OLDMASK ?
2887 		    &td->td_oldsigmask : &td->td_sigmask, ksi.ksi_code);
2888 #endif
2889 	if (p->p_stops & S_SIG) {
2890 		mtx_unlock(&ps->ps_mtx);
2891 		stopevent(p, S_SIG, sig);
2892 		mtx_lock(&ps->ps_mtx);
2893 	}
2894 
2895 	if (action == SIG_DFL) {
2896 		/*
2897 		 * Default action, where the default is to kill
2898 		 * the process.  (Other cases were ignored above.)
2899 		 */
2900 		mtx_unlock(&ps->ps_mtx);
2901 		sigexit(td, sig);
2902 		/* NOTREACHED */
2903 	} else {
2904 		/*
2905 		 * If we get here, the signal must be caught.
2906 		 */
2907 		KASSERT(action != SIG_IGN && !SIGISMEMBER(td->td_sigmask, sig),
2908 		    ("postsig action"));
2909 		/*
2910 		 * Set the new mask value and also defer further
2911 		 * occurrences of this signal.
2912 		 *
2913 		 * Special case: user has done a sigsuspend.  Here the
2914 		 * current mask is not of interest, but rather the
2915 		 * mask from before the sigsuspend is what we want
2916 		 * restored after the signal processing is completed.
2917 		 */
2918 		if (td->td_pflags & TDP_OLDMASK) {
2919 			returnmask = td->td_oldsigmask;
2920 			td->td_pflags &= ~TDP_OLDMASK;
2921 		} else
2922 			returnmask = td->td_sigmask;
2923 
2924 		if (p->p_sig == sig) {
2925 			p->p_code = 0;
2926 			p->p_sig = 0;
2927 		}
2928 		(*p->p_sysent->sv_sendsig)(action, &ksi, &returnmask);
2929 		postsig_done(sig, td, ps);
2930 	}
2931 	return (1);
2932 }
2933 
2934 /*
2935  * Kill the current process for stated reason.
2936  */
2937 void
killproc(p,why)2938 killproc(p, why)
2939 	struct proc *p;
2940 	char *why;
2941 {
2942 
2943 	PROC_LOCK_ASSERT(p, MA_OWNED);
2944 	CTR3(KTR_PROC, "killproc: proc %p (pid %d, %s)", p, p->p_pid,
2945 	    p->p_comm);
2946 	log(LOG_ERR, "pid %d (%s), uid %d, was killed: %s\n", p->p_pid,
2947 	    p->p_comm, p->p_ucred ? p->p_ucred->cr_uid : -1, why);
2948 	p->p_flag |= P_WKILLED;
2949 	kern_psignal(p, SIGKILL);
2950 }
2951 
2952 /*
2953  * Force the current process to exit with the specified signal, dumping core
2954  * if appropriate.  We bypass the normal tests for masked and caught signals,
2955  * allowing unrecoverable failures to terminate the process without changing
2956  * signal state.  Mark the accounting record with the signal termination.
2957  * If dumping core, save the signal number for the debugger.  Calls exit and
2958  * does not return.
2959  */
2960 void
sigexit(td,sig)2961 sigexit(td, sig)
2962 	struct thread *td;
2963 	int sig;
2964 {
2965 	struct proc *p = td->td_proc;
2966 
2967 	PROC_LOCK_ASSERT(p, MA_OWNED);
2968 	p->p_acflag |= AXSIG;
2969 	/*
2970 	 * We must be single-threading to generate a core dump.  This
2971 	 * ensures that the registers in the core file are up-to-date.
2972 	 * Also, the ELF dump handler assumes that the thread list doesn't
2973 	 * change out from under it.
2974 	 *
2975 	 * XXX If another thread attempts to single-thread before us
2976 	 *     (e.g. via fork()), we won't get a dump at all.
2977 	 */
2978 	if ((__sigprop(sig) & SA_CORE) && (thread_single(p, SINGLE_NO_EXIT) == 0)) {
2979 		p->p_sig = sig;
2980 		/*
2981 		 * Log signals which would cause core dumps
2982 		 * (Log as LOG_INFO to appease those who don't want
2983 		 * these messages.)
2984 		 * XXX : Todo, as well as euid, write out ruid too
2985 		 * Note that coredump() drops proc lock.
2986 		 */
2987 		if (coredump(td) == 0)
2988 			sig |= WCOREFLAG;
2989 		if (kern_logsigexit)
2990 			log(LOG_INFO,
2991 			    "pid %d (%s), uid %d: exited on signal %d%s\n",
2992 			    p->p_pid, p->p_comm,
2993 			    td->td_ucred ? td->td_ucred->cr_uid : -1,
2994 			    sig &~ WCOREFLAG,
2995 			    sig & WCOREFLAG ? " (core dumped)" : "");
2996 	} else
2997 		PROC_UNLOCK(p);
2998 	exit1(td, 0, sig);
2999 	/* NOTREACHED */
3000 }
3001 
3002 /*
3003  * Send queued SIGCHLD to parent when child process's state
3004  * is changed.
3005  */
3006 static void
sigparent(struct proc * p,int reason,int status)3007 sigparent(struct proc *p, int reason, int status)
3008 {
3009 	PROC_LOCK_ASSERT(p, MA_OWNED);
3010 	PROC_LOCK_ASSERT(p->p_pptr, MA_OWNED);
3011 
3012 	if (p->p_ksi != NULL) {
3013 		p->p_ksi->ksi_signo  = SIGCHLD;
3014 		p->p_ksi->ksi_code   = reason;
3015 		p->p_ksi->ksi_status = status;
3016 		p->p_ksi->ksi_pid    = p->p_pid;
3017 		p->p_ksi->ksi_uid    = p->p_ucred->cr_ruid;
3018 		if (KSI_ONQ(p->p_ksi))
3019 			return;
3020 	}
3021 	pksignal(p->p_pptr, SIGCHLD, p->p_ksi);
3022 }
3023 
3024 static void
childproc_jobstate(struct proc * p,int reason,int sig)3025 childproc_jobstate(struct proc *p, int reason, int sig)
3026 {
3027 	struct sigacts *ps;
3028 
3029 	PROC_LOCK_ASSERT(p, MA_OWNED);
3030 	PROC_LOCK_ASSERT(p->p_pptr, MA_OWNED);
3031 
3032 	/*
3033 	 * Wake up parent sleeping in kern_wait(), also send
3034 	 * SIGCHLD to parent, but SIGCHLD does not guarantee
3035 	 * that parent will awake, because parent may masked
3036 	 * the signal.
3037 	 */
3038 	p->p_pptr->p_flag |= P_STATCHILD;
3039 	wakeup(p->p_pptr);
3040 
3041 	ps = p->p_pptr->p_sigacts;
3042 	mtx_lock(&ps->ps_mtx);
3043 	if ((ps->ps_flag & PS_NOCLDSTOP) == 0) {
3044 		mtx_unlock(&ps->ps_mtx);
3045 		sigparent(p, reason, sig);
3046 	} else
3047 		mtx_unlock(&ps->ps_mtx);
3048 }
3049 
3050 void
childproc_stopped(struct proc * p,int reason)3051 childproc_stopped(struct proc *p, int reason)
3052 {
3053 
3054 	childproc_jobstate(p, reason, p->p_xsig);
3055 }
3056 
3057 void
childproc_continued(struct proc * p)3058 childproc_continued(struct proc *p)
3059 {
3060 	childproc_jobstate(p, CLD_CONTINUED, SIGCONT);
3061 }
3062 
3063 void
childproc_exited(struct proc * p)3064 childproc_exited(struct proc *p)
3065 {
3066 	int reason, status;
3067 
3068 	if (WCOREDUMP(p->p_xsig)) {
3069 		reason = CLD_DUMPED;
3070 		status = WTERMSIG(p->p_xsig);
3071 	} else if (WIFSIGNALED(p->p_xsig)) {
3072 		reason = CLD_KILLED;
3073 		status = WTERMSIG(p->p_xsig);
3074 	} else {
3075 		reason = CLD_EXITED;
3076 		status = p->p_xexit;
3077 	}
3078 	/*
3079 	 * XXX avoid calling wakeup(p->p_pptr), the work is
3080 	 * done in exit1().
3081 	 */
3082 	sigparent(p, reason, status);
3083 }
3084 
3085 /*
3086  * We only have 1 character for the core count in the format
3087  * string, so the range will be 0-9
3088  */
3089 #define MAX_NUM_CORES 10
3090 static int num_cores = 5;
3091 
3092 static int
sysctl_debug_num_cores_check(SYSCTL_HANDLER_ARGS)3093 sysctl_debug_num_cores_check (SYSCTL_HANDLER_ARGS)
3094 {
3095 	int error;
3096 	int new_val;
3097 
3098 	new_val = num_cores;
3099 	error = sysctl_handle_int(oidp, &new_val, 0, req);
3100 	if (error != 0 || req->newptr == NULL)
3101 		return (error);
3102 	if (new_val > MAX_NUM_CORES)
3103 		new_val = MAX_NUM_CORES;
3104 	if (new_val < 0)
3105 		new_val = 0;
3106 	num_cores = new_val;
3107 	return (0);
3108 }
3109 SYSCTL_PROC(_debug, OID_AUTO, ncores, CTLTYPE_INT|CTLFLAG_RW,
3110 	    0, sizeof(int), sysctl_debug_num_cores_check, "I", "");
3111 
3112 #define	GZ_SUFFIX	".gz"
3113 
3114 #ifdef GZIO
3115 static int compress_user_cores = 1;
3116 SYSCTL_INT(_kern, OID_AUTO, compress_user_cores, CTLFLAG_RWTUN,
3117     &compress_user_cores, 0, "Compression of user corefiles");
3118 
3119 int compress_user_cores_gzlevel = 6;
3120 SYSCTL_INT(_kern, OID_AUTO, compress_user_cores_gzlevel, CTLFLAG_RWTUN,
3121     &compress_user_cores_gzlevel, 0, "Corefile gzip compression level");
3122 #else
3123 static int compress_user_cores = 0;
3124 #endif
3125 
3126 /*
3127  * Protect the access to corefilename[] by allproc_lock.
3128  */
3129 #define	corefilename_lock	allproc_lock
3130 
3131 static char corefilename[MAXPATHLEN] = {"%N.core"};
3132 
3133 static int
sysctl_kern_corefile(SYSCTL_HANDLER_ARGS)3134 sysctl_kern_corefile(SYSCTL_HANDLER_ARGS)
3135 {
3136 	int error;
3137 
3138 	sx_xlock(&corefilename_lock);
3139 	error = sysctl_handle_string(oidp, corefilename, sizeof(corefilename),
3140 	    req);
3141 	sx_xunlock(&corefilename_lock);
3142 
3143 	return (error);
3144 }
3145 SYSCTL_PROC(_kern, OID_AUTO, corefile, CTLTYPE_STRING | CTLFLAG_RWTUN |
3146     CTLFLAG_MPSAFE, 0, 0, sysctl_kern_corefile, "A",
3147     "Process corefile name format string");
3148 
3149 /*
3150  * corefile_open(comm, uid, pid, td, compress, vpp, namep)
3151  * Expand the name described in corefilename, using name, uid, and pid
3152  * and open/create core file.
3153  * corefilename is a printf-like string, with three format specifiers:
3154  *	%N	name of process ("name")
3155  *	%P	process id (pid)
3156  *	%U	user id (uid)
3157  * For example, "%N.core" is the default; they can be disabled completely
3158  * by using "/dev/null", or all core files can be stored in "/cores/%U/%N-%P".
3159  * This is controlled by the sysctl variable kern.corefile (see above).
3160  */
3161 static int
corefile_open(const char * comm,uid_t uid,pid_t pid,struct thread * td,int compress,struct vnode ** vpp,char ** namep)3162 corefile_open(const char *comm, uid_t uid, pid_t pid, struct thread *td,
3163     int compress, struct vnode **vpp, char **namep)
3164 {
3165 	struct nameidata nd;
3166 	struct sbuf sb;
3167 	const char *format;
3168 	char *hostname, *name;
3169 	int indexpos, i, error, cmode, flags, oflags;
3170 
3171 	hostname = NULL;
3172 	format = corefilename;
3173 	name = malloc(MAXPATHLEN, M_TEMP, M_WAITOK | M_ZERO);
3174 	indexpos = -1;
3175 	(void)sbuf_new(&sb, name, MAXPATHLEN, SBUF_FIXEDLEN);
3176 	sx_slock(&corefilename_lock);
3177 	for (i = 0; format[i] != '\0'; i++) {
3178 		switch (format[i]) {
3179 		case '%':	/* Format character */
3180 			i++;
3181 			switch (format[i]) {
3182 			case '%':
3183 				sbuf_putc(&sb, '%');
3184 				break;
3185 			case 'H':	/* hostname */
3186 				if (hostname == NULL) {
3187 					hostname = malloc(MAXHOSTNAMELEN,
3188 					    M_TEMP, M_WAITOK);
3189 				}
3190 				getcredhostname(td->td_ucred, hostname,
3191 				    MAXHOSTNAMELEN);
3192 				sbuf_printf(&sb, "%s", hostname);
3193 				break;
3194 			case 'I':	/* autoincrementing index */
3195 				sbuf_printf(&sb, "0");
3196 				indexpos = sbuf_len(&sb) - 1;
3197 				break;
3198 			case 'N':	/* process name */
3199 				sbuf_printf(&sb, "%s", comm);
3200 				break;
3201 			case 'P':	/* process id */
3202 				sbuf_printf(&sb, "%u", pid);
3203 				break;
3204 			case 'U':	/* user id */
3205 				sbuf_printf(&sb, "%u", uid);
3206 				break;
3207 			default:
3208 				log(LOG_ERR,
3209 				    "Unknown format character %c in "
3210 				    "corename `%s'\n", format[i], format);
3211 				break;
3212 			}
3213 			break;
3214 		default:
3215 			sbuf_putc(&sb, format[i]);
3216 			break;
3217 		}
3218 	}
3219 	sx_sunlock(&corefilename_lock);
3220 	free(hostname, M_TEMP);
3221 	if (compress)
3222 		sbuf_printf(&sb, GZ_SUFFIX);
3223 	if (sbuf_error(&sb) != 0) {
3224 		log(LOG_ERR, "pid %ld (%s), uid (%lu): corename is too "
3225 		    "long\n", (long)pid, comm, (u_long)uid);
3226 		sbuf_delete(&sb);
3227 		free(name, M_TEMP);
3228 		return (ENOMEM);
3229 	}
3230 	sbuf_finish(&sb);
3231 	sbuf_delete(&sb);
3232 
3233 	cmode = S_IRUSR | S_IWUSR;
3234 	oflags = VN_OPEN_NOAUDIT | VN_OPEN_NAMECACHE |
3235 	    (capmode_coredump ? VN_OPEN_NOCAPCHECK : 0);
3236 
3237 	/*
3238 	 * If the core format has a %I in it, then we need to check
3239 	 * for existing corefiles before returning a name.
3240 	 * To do this we iterate over 0..num_cores to find a
3241 	 * non-existing core file name to use.
3242 	 */
3243 	if (indexpos != -1) {
3244 		for (i = 0; i < num_cores; i++) {
3245 			flags = O_CREAT | O_EXCL | FWRITE | O_NOFOLLOW;
3246 			name[indexpos] = '0' + i;
3247 			NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, name, td);
3248 			error = vn_open_cred(&nd, &flags, cmode, oflags,
3249 			    td->td_ucred, NULL);
3250 			if (error) {
3251 				if (error == EEXIST)
3252 					continue;
3253 				log(LOG_ERR,
3254 				    "pid %d (%s), uid (%u):  Path `%s' failed "
3255 				    "on initial open test, error = %d\n",
3256 				    pid, comm, uid, name, error);
3257 			}
3258 			goto out;
3259 		}
3260 	}
3261 
3262 	flags = O_CREAT | FWRITE | O_NOFOLLOW;
3263 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, name, td);
3264 	error = vn_open_cred(&nd, &flags, cmode, oflags, td->td_ucred, NULL);
3265 out:
3266 	if (error) {
3267 #ifdef AUDIT
3268 		audit_proc_coredump(td, name, error);
3269 #endif
3270 		free(name, M_TEMP);
3271 		return (error);
3272 	}
3273 	NDFREE(&nd, NDF_ONLY_PNBUF);
3274 	*vpp = nd.ni_vp;
3275 	*namep = name;
3276 	return (0);
3277 }
3278 
3279 static int
coredump_sanitise_path(const char * path)3280 coredump_sanitise_path(const char *path)
3281 {
3282 	size_t i;
3283 
3284 	/*
3285 	 * Only send a subset of ASCII to devd(8) because it
3286 	 * might pass these strings to sh -c.
3287 	 */
3288 	for (i = 0; path[i]; i++)
3289 		if (!(isalpha(path[i]) || isdigit(path[i])) &&
3290 		    path[i] != '/' && path[i] != '.' &&
3291 		    path[i] != '-')
3292 			return (0);
3293 
3294 	return (1);
3295 }
3296 
3297 /*
3298  * Dump a process' core.  The main routine does some
3299  * policy checking, and creates the name of the coredump;
3300  * then it passes on a vnode and a size limit to the process-specific
3301  * coredump routine if there is one; if there _is not_ one, it returns
3302  * ENOSYS; otherwise it returns the error from the process-specific routine.
3303  */
3304 
3305 static int
coredump(struct thread * td)3306 coredump(struct thread *td)
3307 {
3308 	struct proc *p = td->td_proc;
3309 	struct ucred *cred = td->td_ucred;
3310 	struct vnode *vp;
3311 	struct flock lf;
3312 	struct vattr vattr;
3313 	int error, error1, locked;
3314 	char *name;			/* name of corefile */
3315 	void *rl_cookie;
3316 	off_t limit;
3317 	char *data = NULL;
3318 	char *fullpath, *freepath = NULL;
3319 	size_t len;
3320 	static const char comm_name[] = "comm=";
3321 	static const char core_name[] = "core=";
3322 
3323 	PROC_LOCK_ASSERT(p, MA_OWNED);
3324 	MPASS((p->p_flag & P_HADTHREADS) == 0 || p->p_singlethread == td);
3325 	_STOPEVENT(p, S_CORE, 0);
3326 
3327 	if (!do_coredump || (!sugid_coredump && (p->p_flag & P_SUGID) != 0) ||
3328 	    (p->p_flag2 & P2_NOTRACE) != 0) {
3329 		PROC_UNLOCK(p);
3330 		return (EFAULT);
3331 	}
3332 
3333 	/*
3334 	 * Note that the bulk of limit checking is done after
3335 	 * the corefile is created.  The exception is if the limit
3336 	 * for corefiles is 0, in which case we don't bother
3337 	 * creating the corefile at all.  This layout means that
3338 	 * a corefile is truncated instead of not being created,
3339 	 * if it is larger than the limit.
3340 	 */
3341 	limit = (off_t)lim_cur(td, RLIMIT_CORE);
3342 	if (limit == 0 || racct_get_available(p, RACCT_CORE) == 0) {
3343 		PROC_UNLOCK(p);
3344 		return (EFBIG);
3345 	}
3346 	PROC_UNLOCK(p);
3347 
3348 	error = corefile_open(p->p_comm, cred->cr_uid, p->p_pid, td,
3349 	    compress_user_cores, &vp, &name);
3350 	if (error != 0)
3351 		return (error);
3352 
3353 	/*
3354 	 * Don't dump to non-regular files or files with links.
3355 	 * Do not dump into system files.
3356 	 */
3357 	if (vp->v_type != VREG || VOP_GETATTR(vp, &vattr, cred) != 0 ||
3358 	    vattr.va_nlink != 1 || (vp->v_vflag & VV_SYSTEM) != 0) {
3359 		VOP_UNLOCK(vp, 0);
3360 		error = EFAULT;
3361 		goto out;
3362 	}
3363 
3364 	VOP_UNLOCK(vp, 0);
3365 
3366 	/* Postpone other writers, including core dumps of other processes. */
3367 	rl_cookie = vn_rangelock_wlock(vp, 0, OFF_MAX);
3368 
3369 	lf.l_whence = SEEK_SET;
3370 	lf.l_start = 0;
3371 	lf.l_len = 0;
3372 	lf.l_type = F_WRLCK;
3373 	locked = (VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &lf, F_FLOCK) == 0);
3374 
3375 	VATTR_NULL(&vattr);
3376 	vattr.va_size = 0;
3377 	if (set_core_nodump_flag)
3378 		vattr.va_flags = UF_NODUMP;
3379 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3380 	VOP_SETATTR(vp, &vattr, cred);
3381 	VOP_UNLOCK(vp, 0);
3382 	PROC_LOCK(p);
3383 	p->p_acflag |= ACORE;
3384 	PROC_UNLOCK(p);
3385 
3386 	if (p->p_sysent->sv_coredump != NULL) {
3387 		error = p->p_sysent->sv_coredump(td, vp, limit,
3388 		    compress_user_cores ? IMGACT_CORE_COMPRESS : 0);
3389 	} else {
3390 		error = ENOSYS;
3391 	}
3392 
3393 	if (locked) {
3394 		lf.l_type = F_UNLCK;
3395 		VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &lf, F_FLOCK);
3396 	}
3397 	vn_rangelock_unlock(vp, rl_cookie);
3398 
3399 	/*
3400 	 * Notify the userland helper that a process triggered a core dump.
3401 	 * This allows the helper to run an automated debugging session.
3402 	 */
3403 	if (error != 0 || coredump_devctl == 0)
3404 		goto out;
3405 	len = MAXPATHLEN * 2 + sizeof(comm_name) - 1 +
3406 	    sizeof(' ') + sizeof(core_name) - 1;
3407 	data = malloc(len, M_TEMP, M_WAITOK);
3408 	if (vn_fullpath_global(td, p->p_textvp, &fullpath, &freepath) != 0)
3409 		goto out;
3410 	if (!coredump_sanitise_path(fullpath))
3411 		goto out;
3412 	snprintf(data, len, "%s%s ", comm_name, fullpath);
3413 	free(freepath, M_TEMP);
3414 	freepath = NULL;
3415 	if (vn_fullpath_global(td, vp, &fullpath, &freepath) != 0)
3416 		goto out;
3417 	if (!coredump_sanitise_path(fullpath))
3418 		goto out;
3419 	strlcat(data, core_name, len);
3420 	strlcat(data, fullpath, len);
3421 	devctl_notify("kernel", "signal", "coredump", data);
3422 out:
3423 	error1 = vn_close(vp, FWRITE, cred, td);
3424 	if (error == 0)
3425 		error = error1;
3426 #ifdef AUDIT
3427 	audit_proc_coredump(td, name, error);
3428 #endif
3429 	free(freepath, M_TEMP);
3430 	free(data, M_TEMP);
3431 	free(name, M_TEMP);
3432 	return (error);
3433 }
3434 
3435 /*
3436  * Nonexistent system call-- signal process (may want to handle it).  Flag
3437  * error in case process won't see signal immediately (blocked or ignored).
3438  */
3439 #ifndef _SYS_SYSPROTO_H_
3440 struct nosys_args {
3441 	int	dummy;
3442 };
3443 #endif
3444 /* ARGSUSED */
3445 int
nosys(td,args)3446 nosys(td, args)
3447 	struct thread *td;
3448 	struct nosys_args *args;
3449 {
3450 	struct proc *p = td->td_proc;
3451 
3452 	PROC_LOCK(p);
3453 	tdsignal(td, SIGSYS);
3454 	PROC_UNLOCK(p);
3455 	return (ENOSYS);
3456 }
3457 
3458 /*
3459  * Send a SIGIO or SIGURG signal to a process or process group using stored
3460  * credentials rather than those of the current process.
3461  */
3462 void
pgsigio(sigiop,sig,checkctty)3463 pgsigio(sigiop, sig, checkctty)
3464 	struct sigio **sigiop;
3465 	int sig, checkctty;
3466 {
3467 	ksiginfo_t ksi;
3468 	struct sigio *sigio;
3469 
3470 	ksiginfo_init(&ksi);
3471 	ksi.ksi_signo = sig;
3472 	ksi.ksi_code = SI_KERNEL;
3473 
3474 	SIGIO_LOCK();
3475 	sigio = *sigiop;
3476 	if (sigio == NULL) {
3477 		SIGIO_UNLOCK();
3478 		return;
3479 	}
3480 	if (sigio->sio_pgid > 0) {
3481 		PROC_LOCK(sigio->sio_proc);
3482 		if (CANSIGIO(sigio->sio_ucred, sigio->sio_proc->p_ucred))
3483 			kern_psignal(sigio->sio_proc, sig);
3484 		PROC_UNLOCK(sigio->sio_proc);
3485 	} else if (sigio->sio_pgid < 0) {
3486 		struct proc *p;
3487 
3488 		PGRP_LOCK(sigio->sio_pgrp);
3489 		LIST_FOREACH(p, &sigio->sio_pgrp->pg_members, p_pglist) {
3490 			PROC_LOCK(p);
3491 			if (p->p_state == PRS_NORMAL &&
3492 			    CANSIGIO(sigio->sio_ucred, p->p_ucred) &&
3493 			    (checkctty == 0 || (p->p_flag & P_CONTROLT)))
3494 				kern_psignal(p, sig);
3495 			PROC_UNLOCK(p);
3496 		}
3497 		PGRP_UNLOCK(sigio->sio_pgrp);
3498 	}
3499 	SIGIO_UNLOCK();
3500 }
3501 
3502 static int
filt_sigattach(struct knote * kn)3503 filt_sigattach(struct knote *kn)
3504 {
3505 	struct proc *p = curproc;
3506 
3507 	kn->kn_ptr.p_proc = p;
3508 	kn->kn_flags |= EV_CLEAR;		/* automatically set */
3509 
3510 	knlist_add(&p->p_klist, kn, 0);
3511 
3512 	return (0);
3513 }
3514 
3515 static void
filt_sigdetach(struct knote * kn)3516 filt_sigdetach(struct knote *kn)
3517 {
3518 	struct proc *p = kn->kn_ptr.p_proc;
3519 
3520 	knlist_remove(&p->p_klist, kn, 0);
3521 }
3522 
3523 /*
3524  * signal knotes are shared with proc knotes, so we apply a mask to
3525  * the hint in order to differentiate them from process hints.  This
3526  * could be avoided by using a signal-specific knote list, but probably
3527  * isn't worth the trouble.
3528  */
3529 static int
filt_signal(struct knote * kn,long hint)3530 filt_signal(struct knote *kn, long hint)
3531 {
3532 
3533 	if (hint & NOTE_SIGNAL) {
3534 		hint &= ~NOTE_SIGNAL;
3535 
3536 		if (kn->kn_id == hint)
3537 			kn->kn_data++;
3538 	}
3539 	return (kn->kn_data != 0);
3540 }
3541 
3542 struct sigacts *
sigacts_alloc(void)3543 sigacts_alloc(void)
3544 {
3545 	struct sigacts *ps;
3546 
3547 	ps = malloc(sizeof(struct sigacts), M_SUBPROC, M_WAITOK | M_ZERO);
3548 	refcount_init(&ps->ps_refcnt, 1);
3549 	mtx_init(&ps->ps_mtx, "sigacts", NULL, MTX_DEF);
3550 	return (ps);
3551 }
3552 
3553 void
sigacts_free(struct sigacts * ps)3554 sigacts_free(struct sigacts *ps)
3555 {
3556 
3557 	if (refcount_release(&ps->ps_refcnt) == 0)
3558 		return;
3559 	mtx_destroy(&ps->ps_mtx);
3560 	free(ps, M_SUBPROC);
3561 }
3562 
3563 struct sigacts *
sigacts_hold(struct sigacts * ps)3564 sigacts_hold(struct sigacts *ps)
3565 {
3566 
3567 	refcount_acquire(&ps->ps_refcnt);
3568 	return (ps);
3569 }
3570 
3571 void
sigacts_copy(struct sigacts * dest,struct sigacts * src)3572 sigacts_copy(struct sigacts *dest, struct sigacts *src)
3573 {
3574 
3575 	KASSERT(dest->ps_refcnt == 1, ("sigacts_copy to shared dest"));
3576 	mtx_lock(&src->ps_mtx);
3577 	bcopy(src, dest, offsetof(struct sigacts, ps_refcnt));
3578 	mtx_unlock(&src->ps_mtx);
3579 }
3580 
3581 int
sigacts_shared(struct sigacts * ps)3582 sigacts_shared(struct sigacts *ps)
3583 {
3584 
3585 	return (ps->ps_refcnt > 1);
3586 }
3587