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