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