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