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