Remove superfluous conditional.
[dragonfly.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  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)kern_sig.c  8.7 (Berkeley) 4/18/94
39  * $FreeBSD: src/sys/kern/kern_sig.c,v 1.72.2.17 2003/05/16 16:34:34 obrien Exp $
40  * $DragonFly: src/sys/kern/kern_sig.c,v 1.71 2007/02/22 15:50:49 corecode Exp $
41  */
42
43 #include "opt_ktrace.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/sysproto.h>
49 #include <sys/signalvar.h>
50 #include <sys/resourcevar.h>
51 #include <sys/vnode.h>
52 #include <sys/event.h>
53 #include <sys/proc.h>
54 #include <sys/nlookup.h>
55 #include <sys/pioctl.h>
56 #include <sys/systm.h>
57 #include <sys/acct.h>
58 #include <sys/fcntl.h>
59 #include <sys/lock.h>
60 #include <sys/wait.h>
61 #include <sys/ktrace.h>
62 #include <sys/syslog.h>
63 #include <sys/stat.h>
64 #include <sys/sysent.h>
65 #include <sys/sysctl.h>
66 #include <sys/malloc.h>
67 #include <sys/interrupt.h>
68 #include <sys/unistd.h>
69 #include <sys/kern_syscall.h>
70 #include <sys/vkernel.h>
71 #include <sys/thread2.h>
72
73 #include <machine/cpu.h>
74 #include <machine/smp.h>
75
76 static int      coredump(struct lwp *, int);
77 static char     *expand_name(const char *, uid_t, pid_t);
78 static int      dokillpg(int sig, int pgid, int all);
79 static int      sig_ffs(sigset_t *set);
80 static int      sigprop(int sig);
81 static void     lwp_signotify(struct lwp *lp);
82 #ifdef SMP
83 static void     signotify_remote(void *arg);
84 #endif
85 static int      kern_sigtimedwait(sigset_t set, siginfo_t *info,
86                     struct timespec *timeout);
87
88 static int      filt_sigattach(struct knote *kn);
89 static void     filt_sigdetach(struct knote *kn);
90 static int      filt_signal(struct knote *kn, long hint);
91
92 struct filterops sig_filtops =
93         { 0, filt_sigattach, filt_sigdetach, filt_signal };
94
95 static int      kern_logsigexit = 1;
96 SYSCTL_INT(_kern, KERN_LOGSIGEXIT, logsigexit, CTLFLAG_RW, 
97     &kern_logsigexit, 0, 
98     "Log processes quitting on abnormal signals to syslog(3)");
99
100 /*
101  * Can process p, with pcred pc, send the signal sig to process q?
102  */
103 #define CANSIGNAL(q, sig) \
104         (!p_trespass(curproc->p_ucred, (q)->p_ucred) || \
105         ((sig) == SIGCONT && (q)->p_session == curproc->p_session))
106
107 /*
108  * Policy -- Can real uid ruid with ucred uc send a signal to process q?
109  */
110 #define CANSIGIO(ruid, uc, q) \
111         ((uc)->cr_uid == 0 || \
112             (ruid) == (q)->p_ucred->cr_ruid || \
113             (uc)->cr_uid == (q)->p_ucred->cr_ruid || \
114             (ruid) == (q)->p_ucred->cr_uid || \
115             (uc)->cr_uid == (q)->p_ucred->cr_uid)
116
117 int sugid_coredump;
118 SYSCTL_INT(_kern, OID_AUTO, sugid_coredump, CTLFLAG_RW, 
119         &sugid_coredump, 0, "Enable coredumping set user/group ID processes");
120
121 static int      do_coredump = 1;
122 SYSCTL_INT(_kern, OID_AUTO, coredump, CTLFLAG_RW,
123         &do_coredump, 0, "Enable/Disable coredumps");
124
125 /*
126  * Signal properties and actions.
127  * The array below categorizes the signals and their default actions
128  * according to the following properties:
129  */
130 #define SA_KILL         0x01            /* terminates process by default */
131 #define SA_CORE         0x02            /* ditto and coredumps */
132 #define SA_STOP         0x04            /* suspend process */
133 #define SA_TTYSTOP      0x08            /* ditto, from tty */
134 #define SA_IGNORE       0x10            /* ignore by default */
135 #define SA_CONT         0x20            /* continue if suspended */
136 #define SA_CANTMASK     0x40            /* non-maskable, catchable */
137 #define SA_CKPT         0x80            /* checkpoint process */
138
139
140 static int sigproptbl[NSIG] = {
141         SA_KILL,                /* SIGHUP */
142         SA_KILL,                /* SIGINT */
143         SA_KILL|SA_CORE,        /* SIGQUIT */
144         SA_KILL|SA_CORE,        /* SIGILL */
145         SA_KILL|SA_CORE,        /* SIGTRAP */
146         SA_KILL|SA_CORE,        /* SIGABRT */
147         SA_KILL|SA_CORE,        /* SIGEMT */
148         SA_KILL|SA_CORE,        /* SIGFPE */
149         SA_KILL,                /* SIGKILL */
150         SA_KILL|SA_CORE,        /* SIGBUS */
151         SA_KILL|SA_CORE,        /* SIGSEGV */
152         SA_KILL|SA_CORE,        /* SIGSYS */
153         SA_KILL,                /* SIGPIPE */
154         SA_KILL,                /* SIGALRM */
155         SA_KILL,                /* SIGTERM */
156         SA_IGNORE,              /* SIGURG */
157         SA_STOP,                /* SIGSTOP */
158         SA_STOP|SA_TTYSTOP,     /* SIGTSTP */
159         SA_IGNORE|SA_CONT,      /* SIGCONT */
160         SA_IGNORE,              /* SIGCHLD */
161         SA_STOP|SA_TTYSTOP,     /* SIGTTIN */
162         SA_STOP|SA_TTYSTOP,     /* SIGTTOU */
163         SA_IGNORE,              /* SIGIO */
164         SA_KILL,                /* SIGXCPU */
165         SA_KILL,                /* SIGXFSZ */
166         SA_KILL,                /* SIGVTALRM */
167         SA_KILL,                /* SIGPROF */
168         SA_IGNORE,              /* SIGWINCH  */
169         SA_IGNORE,              /* SIGINFO */
170         SA_KILL,                /* SIGUSR1 */
171         SA_KILL,                /* SIGUSR2 */
172         SA_IGNORE,              /* SIGTHR */
173         SA_CKPT,                /* SIGCKPT */ 
174         SA_KILL|SA_CKPT,        /* SIGCKPTEXIT */  
175         SA_IGNORE,
176         SA_IGNORE,
177         SA_IGNORE,
178         SA_IGNORE,
179         SA_IGNORE,
180         SA_IGNORE,
181         SA_IGNORE,
182         SA_IGNORE,
183         SA_IGNORE,
184         SA_IGNORE,
185         SA_IGNORE,
186         SA_IGNORE,
187         SA_IGNORE,
188         SA_IGNORE,
189         SA_IGNORE,
190         SA_IGNORE,
191         SA_IGNORE,
192         SA_IGNORE,
193         SA_IGNORE,
194         SA_IGNORE,
195         SA_IGNORE,
196         SA_IGNORE,
197         SA_IGNORE,
198         SA_IGNORE,
199         SA_IGNORE,
200         SA_IGNORE,
201         SA_IGNORE,
202         SA_IGNORE,
203         SA_IGNORE,
204         SA_IGNORE,
205
206 };
207
208 static __inline int
209 sigprop(int sig)
210 {
211
212         if (sig > 0 && sig < NSIG)
213                 return (sigproptbl[_SIG_IDX(sig)]);
214         return (0);
215 }
216
217 static __inline int
218 sig_ffs(sigset_t *set)
219 {
220         int i;
221
222         for (i = 0; i < _SIG_WORDS; i++)
223                 if (set->__bits[i])
224                         return (ffs(set->__bits[i]) + (i * 32));
225         return (0);
226 }
227
228 int
229 kern_sigaction(int sig, struct sigaction *act, struct sigaction *oact)
230 {
231         struct thread *td = curthread;
232         struct proc *p = td->td_proc;
233         struct lwp *lp;
234         struct sigacts *ps = p->p_sigacts;
235
236         if (sig <= 0 || sig > _SIG_MAXSIG)
237                 return (EINVAL);
238
239         if (oact) {
240                 oact->sa_handler = ps->ps_sigact[_SIG_IDX(sig)];
241                 oact->sa_mask = ps->ps_catchmask[_SIG_IDX(sig)];
242                 oact->sa_flags = 0;
243                 if (SIGISMEMBER(ps->ps_sigonstack, sig))
244                         oact->sa_flags |= SA_ONSTACK;
245                 if (!SIGISMEMBER(ps->ps_sigintr, sig))
246                         oact->sa_flags |= SA_RESTART;
247                 if (SIGISMEMBER(ps->ps_sigreset, sig))
248                         oact->sa_flags |= SA_RESETHAND;
249                 if (SIGISMEMBER(ps->ps_signodefer, sig))
250                         oact->sa_flags |= SA_NODEFER;
251                 if (SIGISMEMBER(ps->ps_siginfo, sig))
252                         oact->sa_flags |= SA_SIGINFO;
253                 if (SIGISMEMBER(ps->ps_sigmailbox, sig))
254                         oact->sa_flags |= SA_MAILBOX;
255                 if (sig == SIGCHLD && p->p_procsig->ps_flag & PS_NOCLDSTOP)
256                         oact->sa_flags |= SA_NOCLDSTOP;
257                 if (sig == SIGCHLD && p->p_procsig->ps_flag & PS_NOCLDWAIT)
258                         oact->sa_flags |= SA_NOCLDWAIT;
259         }
260         if (act) {
261                 /*
262                  * Check for invalid requests.  KILL and STOP cannot be
263                  * caught.
264                  */
265                 if (sig == SIGKILL || sig == SIGSTOP) {
266                         if (act->sa_handler != SIG_DFL)
267                                 return (EINVAL);
268 #if 0
269                         /* (not needed, SIG_DFL forces action to occur) */
270                         if (act->sa_flags & SA_MAILBOX)
271                                 return (EINVAL);
272 #endif
273                 }
274
275                 /*
276                  * Change setting atomically.
277                  */
278                 crit_enter();
279
280                 ps->ps_catchmask[_SIG_IDX(sig)] = act->sa_mask;
281                 SIG_CANTMASK(ps->ps_catchmask[_SIG_IDX(sig)]);
282                 if (act->sa_flags & SA_SIGINFO) {
283                         ps->ps_sigact[_SIG_IDX(sig)] =
284                             (__sighandler_t *)act->sa_sigaction;
285                         SIGADDSET(ps->ps_siginfo, sig);
286                 } else {
287                         ps->ps_sigact[_SIG_IDX(sig)] = act->sa_handler;
288                         SIGDELSET(ps->ps_siginfo, sig);
289                 }
290                 if (!(act->sa_flags & SA_RESTART))
291                         SIGADDSET(ps->ps_sigintr, sig);
292                 else
293                         SIGDELSET(ps->ps_sigintr, sig);
294                 if (act->sa_flags & SA_ONSTACK)
295                         SIGADDSET(ps->ps_sigonstack, sig);
296                 else
297                         SIGDELSET(ps->ps_sigonstack, sig);
298                 if (act->sa_flags & SA_RESETHAND)
299                         SIGADDSET(ps->ps_sigreset, sig);
300                 else
301                         SIGDELSET(ps->ps_sigreset, sig);
302                 if (act->sa_flags & SA_NODEFER)
303                         SIGADDSET(ps->ps_signodefer, sig);
304                 else
305                         SIGDELSET(ps->ps_signodefer, sig);
306                 if (act->sa_flags & SA_MAILBOX)
307                         SIGADDSET(ps->ps_sigmailbox, sig);
308                 else
309                         SIGDELSET(ps->ps_sigmailbox, sig);
310                 if (sig == SIGCHLD) {
311                         if (act->sa_flags & SA_NOCLDSTOP)
312                                 p->p_procsig->ps_flag |= PS_NOCLDSTOP;
313                         else
314                                 p->p_procsig->ps_flag &= ~PS_NOCLDSTOP;
315                         if (act->sa_flags & SA_NOCLDWAIT) {
316                                 /*
317                                  * Paranoia: since SA_NOCLDWAIT is implemented
318                                  * by reparenting the dying child to PID 1 (and
319                                  * trust it to reap the zombie), PID 1 itself
320                                  * is forbidden to set SA_NOCLDWAIT.
321                                  */
322                                 if (p->p_pid == 1)
323                                         p->p_procsig->ps_flag &= ~PS_NOCLDWAIT;
324                                 else
325                                         p->p_procsig->ps_flag |= PS_NOCLDWAIT;
326                         } else {
327                                 p->p_procsig->ps_flag &= ~PS_NOCLDWAIT;
328                         }
329                 }
330                 /*
331                  * Set bit in p_sigignore for signals that are set to SIG_IGN,
332                  * and for signals set to SIG_DFL where the default is to
333                  * ignore. However, don't put SIGCONT in p_sigignore, as we
334                  * have to restart the process.
335                  */
336                 if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN ||
337                     (sigprop(sig) & SA_IGNORE &&
338                      ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL)) {
339                         /* never to be seen again */
340                         SIGDELSET(p->p_siglist, sig);
341                         /*
342                          * Remove the signal also from the thread lists.
343                          */
344                         FOREACH_LWP_IN_PROC(lp, p) {
345                                 SIGDELSET(lp->lwp_siglist, sig);
346                         }
347                         if (sig != SIGCONT)
348                                 /* easier in ksignal */
349                                 SIGADDSET(p->p_sigignore, sig);
350                         SIGDELSET(p->p_sigcatch, sig);
351                 } else {
352                         SIGDELSET(p->p_sigignore, sig);
353                         if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL)
354                                 SIGDELSET(p->p_sigcatch, sig);
355                         else
356                                 SIGADDSET(p->p_sigcatch, sig);
357                 }
358
359                 crit_exit();
360         }
361         return (0);
362 }
363
364 int
365 sys_sigaction(struct sigaction_args *uap)
366 {
367         struct sigaction act, oact;
368         struct sigaction *actp, *oactp;
369         int error;
370
371         actp = (uap->act != NULL) ? &act : NULL;
372         oactp = (uap->oact != NULL) ? &oact : NULL;
373         if (actp) {
374                 error = copyin(uap->act, actp, sizeof(act));
375                 if (error)
376                         return (error);
377         }
378         error = kern_sigaction(uap->sig, actp, oactp);
379         if (oactp && !error) {
380                 error = copyout(oactp, uap->oact, sizeof(oact));
381         }
382         return (error);
383 }
384
385 /*
386  * Initialize signal state for process 0;
387  * set to ignore signals that are ignored by default.
388  */
389 void
390 siginit(struct proc *p)
391 {
392         int i;
393
394         for (i = 1; i <= NSIG; i++)
395                 if (sigprop(i) & SA_IGNORE && i != SIGCONT)
396                         SIGADDSET(p->p_sigignore, i);
397 }
398
399 /*
400  * Reset signals for an exec of the specified process.
401  */
402 void
403 execsigs(struct proc *p)
404 {
405         struct sigacts *ps = p->p_sigacts;
406         struct lwp *lp;
407         int sig;
408
409         lp = ONLY_LWP_IN_PROC(p);
410
411         /*
412          * Reset caught signals.  Held signals remain held
413          * through p_sigmask (unless they were caught,
414          * and are now ignored by default).
415          */
416         while (SIGNOTEMPTY(p->p_sigcatch)) {
417                 sig = sig_ffs(&p->p_sigcatch);
418                 SIGDELSET(p->p_sigcatch, sig);
419                 if (sigprop(sig) & SA_IGNORE) {
420                         if (sig != SIGCONT)
421                                 SIGADDSET(p->p_sigignore, sig);
422                         SIGDELSET(p->p_siglist, sig);
423                         SIGDELSET(lp->lwp_siglist, sig);
424                 }
425                 ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
426         }
427
428         /*
429          * Reset stack state to the user stack.
430          * Clear set of signals caught on the signal stack.
431          */
432         lp->lwp_sigstk.ss_flags = SS_DISABLE;
433         lp->lwp_sigstk.ss_size = 0;
434         lp->lwp_sigstk.ss_sp = 0;
435         lp->lwp_flag &= ~LWP_ALTSTACK;
436         /*
437          * Reset no zombies if child dies flag as Solaris does.
438          */
439         p->p_procsig->ps_flag &= ~PS_NOCLDWAIT;
440 }
441
442 /*
443  * kern_sigprocmask() - MP SAFE ONLY IF p == curproc
444  *
445  *      Manipulate signal mask.  This routine is MP SAFE *ONLY* if
446  *      p == curproc.
447  */
448 int
449 kern_sigprocmask(int how, sigset_t *set, sigset_t *oset)
450 {
451         struct thread *td = curthread;
452         struct lwp *lp = td->td_lwp;
453         int error;
454
455         if (oset != NULL)
456                 *oset = lp->lwp_sigmask;
457
458         error = 0;
459         if (set != NULL) {
460                 switch (how) {
461                 case SIG_BLOCK:
462                         SIG_CANTMASK(*set);
463                         SIGSETOR(lp->lwp_sigmask, *set);
464                         break;
465                 case SIG_UNBLOCK:
466                         SIGSETNAND(lp->lwp_sigmask, *set);
467                         break;
468                 case SIG_SETMASK:
469                         SIG_CANTMASK(*set);
470                         lp->lwp_sigmask = *set;
471                         break;
472                 default:
473                         error = EINVAL;
474                         break;
475                 }
476         }
477         return (error);
478 }
479
480 /*
481  * sigprocmask() - MP SAFE
482  */
483 int
484 sys_sigprocmask(struct sigprocmask_args *uap)
485 {
486         sigset_t set, oset;
487         sigset_t *setp, *osetp;
488         int error;
489
490         setp = (uap->set != NULL) ? &set : NULL;
491         osetp = (uap->oset != NULL) ? &oset : NULL;
492         if (setp) {
493                 error = copyin(uap->set, setp, sizeof(set));
494                 if (error)
495                         return (error);
496         }
497         error = kern_sigprocmask(uap->how, setp, osetp);
498         if (osetp && !error) {
499                 error = copyout(osetp, uap->oset, sizeof(oset));
500         }
501         return (error);
502 }
503
504 int
505 kern_sigpending(struct __sigset *set)
506 {
507         struct lwp *lp = curthread->td_lwp;
508
509         *set = lwp_sigpend(lp);
510
511         return (0);
512 }
513
514 int
515 sys_sigpending(struct sigpending_args *uap)
516 {
517         sigset_t set;
518         int error;
519
520         error = kern_sigpending(&set);
521
522         if (error == 0)
523                 error = copyout(&set, uap->set, sizeof(set));
524         return (error);
525 }
526
527 /*
528  * Suspend process until signal, providing mask to be set
529  * in the meantime.
530  */
531 int
532 kern_sigsuspend(struct __sigset *set)
533 {
534         struct thread *td = curthread;
535         struct lwp *lp = td->td_lwp;
536         struct proc *p = td->td_proc;
537         struct sigacts *ps = p->p_sigacts;
538
539         /*
540          * When returning from sigsuspend, we want
541          * the old mask to be restored after the
542          * signal handler has finished.  Thus, we
543          * save it here and mark the sigacts structure
544          * to indicate this.
545          */
546         lp->lwp_oldsigmask = lp->lwp_sigmask;
547         lp->lwp_flag |= LWP_OLDMASK;
548
549         SIG_CANTMASK(*set);
550         lp->lwp_sigmask = *set;
551         while (tsleep(ps, PCATCH, "pause", 0) == 0)
552                 /* void */;
553         /* always return EINTR rather than ERESTART... */
554         return (EINTR);
555 }
556
557 /*
558  * Note nonstandard calling convention: libc stub passes mask, not
559  * pointer, to save a copyin.
560  */
561 int
562 sys_sigsuspend(struct sigsuspend_args *uap)
563 {
564         sigset_t mask;
565         int error;
566
567         error = copyin(uap->sigmask, &mask, sizeof(mask));
568         if (error)
569                 return (error);
570
571         error = kern_sigsuspend(&mask);
572
573         return (error);
574 }
575
576 int
577 kern_sigaltstack(struct sigaltstack *ss, struct sigaltstack *oss)
578 {
579         struct thread *td = curthread;
580         struct lwp *lp = td->td_lwp;
581         struct proc *p = td->td_proc;
582
583         if ((lp->lwp_flag & LWP_ALTSTACK) == 0)
584                 lp->lwp_sigstk.ss_flags |= SS_DISABLE;
585
586         if (oss)
587                 *oss = lp->lwp_sigstk;
588
589         if (ss) {
590                 if (ss->ss_flags & SS_DISABLE) {
591                         if (lp->lwp_sigstk.ss_flags & SS_ONSTACK)
592                                 return (EINVAL);
593                         lp->lwp_flag &= ~LWP_ALTSTACK;
594                         lp->lwp_sigstk.ss_flags = ss->ss_flags;
595                 } else {
596                         if (ss->ss_size < p->p_sysent->sv_minsigstksz)
597                                 return (ENOMEM);
598                         lp->lwp_flag |= LWP_ALTSTACK;
599                         lp->lwp_sigstk = *ss;
600                 }
601         }
602
603         return (0);
604 }
605
606 int
607 sys_sigaltstack(struct sigaltstack_args *uap)
608 {
609         stack_t ss, oss;
610         int error;
611
612         if (uap->ss) {
613                 error = copyin(uap->ss, &ss, sizeof(ss));
614                 if (error)
615                         return (error);
616         }
617
618         error = kern_sigaltstack(uap->ss ? &ss : NULL,
619             uap->oss ? &oss : NULL);
620
621         if (error == 0 && uap->oss)
622                 error = copyout(&oss, uap->oss, sizeof(*uap->oss));
623         return (error);
624 }
625
626 /*
627  * Common code for kill process group/broadcast kill.
628  * cp is calling process.
629  */
630 struct killpg_info {
631         int nfound;
632         int sig;
633 };
634
635 static int killpg_all_callback(struct proc *p, void *data);
636
637 static int
638 dokillpg(int sig, int pgid, int all)
639 {
640         struct killpg_info info;
641         struct proc *cp = curproc;
642         struct proc *p;
643         struct pgrp *pgrp;
644
645         info.nfound = 0;
646         info.sig = sig;
647
648         if (all) {
649                 /*
650                  * broadcast
651                  */
652                 allproc_scan(killpg_all_callback, &info);
653         } else {
654                 if (pgid == 0) {
655                         /*
656                          * zero pgid means send to my process group.
657                          */
658                         pgrp = cp->p_pgrp;
659                 } else {
660                         pgrp = pgfind(pgid);
661                         if (pgrp == NULL)
662                                 return (ESRCH);
663                 }
664                 lockmgr(&pgrp->pg_lock, LK_EXCLUSIVE);
665                 LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
666                         if (p->p_pid <= 1 || 
667                             p->p_stat == SZOMB ||
668                             (p->p_flag & P_SYSTEM) ||
669                             !CANSIGNAL(p, sig)) {
670                                 continue;
671                         }
672                         ++info.nfound;
673                         if (sig)
674                                 ksignal(p, sig);
675                 }
676                 lockmgr(&pgrp->pg_lock, LK_RELEASE);
677         }
678         return (info.nfound ? 0 : ESRCH);
679 }
680
681 static int
682 killpg_all_callback(struct proc *p, void *data)
683 {
684         struct killpg_info *info = data;
685
686         if (p->p_pid <= 1 || (p->p_flag & P_SYSTEM) ||
687             p == curproc || !CANSIGNAL(p, info->sig)) {
688                 return (0);
689         }
690         ++info->nfound;
691         if (info->sig)
692                 ksignal(p, info->sig);
693         return(0);
694 }
695
696 int
697 kern_kill(int sig, int pid)
698 {
699         struct thread *td = curthread;
700         struct proc *p = td->td_proc;
701
702         if ((u_int)sig > _SIG_MAXSIG)
703                 return (EINVAL);
704         if (pid > 0) {
705                 /* kill single process */
706                 if ((p = pfind(pid)) == NULL)
707                         return (ESRCH);
708                 if (!CANSIGNAL(p, sig))
709                         return (EPERM);
710                 if (sig)
711                         ksignal(p, sig);
712                 return (0);
713         }
714         switch (pid) {
715         case -1:                /* broadcast signal */
716                 return (dokillpg(sig, 0, 1));
717         case 0:                 /* signal own process group */
718                 return (dokillpg(sig, 0, 0));
719         default:                /* negative explicit process group */
720                 return (dokillpg(sig, -pid, 0));
721         }
722         /* NOTREACHED */
723 }
724
725 int
726 sys_kill(struct kill_args *uap)
727 {
728         int error;
729
730         error = kern_kill(uap->signum, uap->pid);
731
732         return (error);
733 }
734
735 /*
736  * Send a signal to a process group.
737  */
738 void
739 gsignal(int pgid, int sig)
740 {
741         struct pgrp *pgrp;
742
743         if (pgid && (pgrp = pgfind(pgid)))
744                 pgsignal(pgrp, sig, 0);
745 }
746
747 /*
748  * Send a signal to a process group.  If checktty is 1,
749  * limit to members which have a controlling terminal.
750  *
751  * pg_lock interlocks against a fork that might be in progress, to
752  * ensure that the new child process picks up the signal.
753  */
754 void
755 pgsignal(struct pgrp *pgrp, int sig, int checkctty)
756 {
757         struct proc *p;
758
759         if (pgrp) {
760                 lockmgr(&pgrp->pg_lock, LK_EXCLUSIVE);
761                 LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
762                         if (checkctty == 0 || p->p_flag & P_CONTROLT)
763                                 ksignal(p, sig);
764                 }
765                 lockmgr(&pgrp->pg_lock, LK_RELEASE);
766         }
767 }
768
769 /*
770  * Send a signal caused by a trap to the current process.
771  * If it will be caught immediately, deliver it with correct code.
772  * Otherwise, post it normally.
773  */
774 void
775 trapsignal(struct lwp *lp, int sig, u_long code)
776 {
777         struct proc *p = lp->lwp_proc;
778         struct sigacts *ps = p->p_sigacts;
779
780         /*
781          * If we are a virtual kernel running an emulated user process
782          * context, switch back to the virtual kernel context before
783          * trying to post the signal.
784          */
785         if (p->p_vkernel && p->p_vkernel->vk_current) {
786                 struct trapframe *tf = curthread->td_lwp->lwp_md.md_regs;
787                 tf->tf_trapno = 0;
788                 vkernel_trap(p, tf);
789         }
790
791
792         if ((p->p_flag & P_TRACED) == 0 && SIGISMEMBER(p->p_sigcatch, sig) &&
793             !SIGISMEMBER(lp->lwp_sigmask, sig)) {
794                 lp->lwp_ru.ru_nsignals++;
795 #ifdef KTRACE
796                 if (KTRPOINT(lp->lwp_thread, KTR_PSIG))
797                         ktrpsig(p, sig, ps->ps_sigact[_SIG_IDX(sig)],
798                                 &lp->lwp_sigmask, code);
799 #endif
800                 (*p->p_sysent->sv_sendsig)(ps->ps_sigact[_SIG_IDX(sig)], sig,
801                                                 &lp->lwp_sigmask, code);
802                 SIGSETOR(lp->lwp_sigmask, ps->ps_catchmask[_SIG_IDX(sig)]);
803                 if (!SIGISMEMBER(ps->ps_signodefer, sig))
804                         SIGADDSET(lp->lwp_sigmask, sig);
805                 if (SIGISMEMBER(ps->ps_sigreset, sig)) {
806                         /*
807                          * See kern_sigaction() for origin of this code.
808                          */
809                         SIGDELSET(p->p_sigcatch, sig);
810                         if (sig != SIGCONT &&
811                             sigprop(sig) & SA_IGNORE)
812                                 SIGADDSET(p->p_sigignore, sig);
813                         ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
814                 }
815         } else {
816                 lp->lwp_code = code;    /* XXX for core dump/debugger */
817                 lp->lwp_sig = sig;      /* XXX to verify code */
818                 lwpsignal(p, lp, sig);
819         }
820 }
821
822 /*
823  * Find a suitable lwp to deliver the signal to.
824  *
825  * Returns NULL if all lwps hold the signal blocked.
826  */
827 static struct lwp *
828 find_lwp_for_signal(struct proc *p, int sig)
829 {
830         struct lwp *lp;
831         struct lwp *run, *sleep, *stop;
832
833         /*
834          * If the running/preempted thread belongs to the proc to which
835          * the signal is being delivered and this thread does not block
836          * the signal, then we can avoid a context switch by delivering
837          * the signal to this thread, because it will return to userland
838          * soon anyways.
839          */
840         lp = lwkt_preempted_proc();
841         if (lp != NULL && lp->lwp_proc == p && !SIGISMEMBER(lp->lwp_sigmask, sig))
842                 return (lp);
843
844         run = sleep = stop = NULL;
845         FOREACH_LWP_IN_PROC(lp, p) {
846                 /*
847                  * If the signal is being blocked by the lwp, then this
848                  * lwp is not eligible for receiving the signal.
849                  */
850                 if (SIGISMEMBER(lp->lwp_sigmask, sig))
851                         continue;
852
853                 switch (lp->lwp_stat) {
854                 case LSRUN:
855                         run = lp;
856                         break;
857
858                 case LSSTOP:
859                         stop = lp;
860                         break;
861
862                 case LSSLEEP:
863                         if (lp->lwp_flag & LWP_SINTR)
864                                 sleep = lp;
865                         break;
866                 }
867         }
868
869         if (run != NULL)
870                 return (run);
871         else if (sleep != NULL)
872                 return (sleep);
873         else
874                 return (stop);
875 }
876
877 /*
878  * Send the signal to the process.  If the signal has an action, the action
879  * is usually performed by the target process rather than the caller; we add
880  * the signal to the set of pending signals for the process.
881  *
882  * Exceptions:
883  *   o When a stop signal is sent to a sleeping process that takes the
884  *     default action, the process is stopped without awakening it.
885  *   o SIGCONT restarts stopped processes (or puts them back to sleep)
886  *     regardless of the signal action (eg, blocked or ignored).
887  *
888  * Other ignored signals are discarded immediately.
889  */
890 void
891 ksignal(struct proc *p, int sig)
892 {
893         lwpsignal(p, NULL, sig);
894 }
895
896 /*
897  * The core for ksignal.  lp may be NULL, then a suitable thread
898  * will be chosen.  If not, lp MUST be a member of p.
899  */
900 void
901 lwpsignal(struct proc *p, struct lwp *lp, int sig)
902 {
903         int prop;
904         sig_t action;
905
906         if (sig > _SIG_MAXSIG || sig <= 0) {
907                 kprintf("lwpsignal: signal %d\n", sig);
908                 panic("lwpsignal signal number");
909         }
910
911         KKASSERT(lp == NULL || lp->lwp_proc == p);
912
913         crit_enter();
914         KNOTE(&p->p_klist, NOTE_SIGNAL | sig);
915         crit_exit();
916
917         prop = sigprop(sig);
918
919         /*
920          * If proc is traced, always give parent a chance;
921          * if signal event is tracked by procfs, give *that*
922          * a chance, as well.
923          */
924         if ((p->p_flag & P_TRACED) || (p->p_stops & S_SIG)) {
925                 action = SIG_DFL;
926         } else {
927                 /*
928                  * If the signal is being ignored,
929                  * then we forget about it immediately.
930                  * (Note: we don't set SIGCONT in p_sigignore,
931                  * and if it is set to SIG_IGN,
932                  * action will be SIG_DFL here.)
933                  */
934                 if (SIGISMEMBER(p->p_sigignore, sig) || (p->p_flag & P_WEXIT))
935                         return;
936                 if (SIGISMEMBER(p->p_sigcatch, sig))
937                         action = SIG_CATCH;
938                 else
939                         action = SIG_DFL;
940         }
941
942         /*
943          * If continuing, clear any pending STOP signals.
944          */
945         if (prop & SA_CONT)
946                 SIG_STOPSIGMASK(p->p_siglist);
947         
948         if (prop & SA_STOP) {
949                 /*
950                  * If sending a tty stop signal to a member of an orphaned
951                  * process group, discard the signal here if the action
952                  * is default; don't stop the process below if sleeping,
953                  * and don't clear any pending SIGCONT.
954                  */
955                 if (prop & SA_TTYSTOP && p->p_pgrp->pg_jobc == 0 &&
956                     action == SIG_DFL) {
957                         return;
958                 }
959                 SIG_CONTSIGMASK(p->p_siglist);
960         }
961
962         crit_enter();
963
964         if (p->p_stat == SSTOP) {
965                 /*
966                  * Nobody can handle this signal, so add it to the process
967                  * pending list.
968                  */
969                 SIGADDSET(p->p_siglist, sig);
970
971                 /*
972                  * If the process is stopped and is being traced, then no
973                  * further action is necessary.
974                  */
975                 if (p->p_flag & P_TRACED)
976                         goto out;
977
978                 /*
979                  * If the process is stopped and receives a KILL signal,
980                  * make the process runnable.
981                  */
982                 if (sig == SIGKILL) {
983                         proc_unstop(p);
984                         goto active_process;
985                 }
986
987                 /*
988                  * If the process is stopped and receives a CONT signal,
989                  * then try to make the process runnable again.
990                  */
991                 if (prop & SA_CONT) {
992                         /*
993                          * If SIGCONT is default (or ignored), we continue the
994                          * process but don't leave the signal in p_siglist, as
995                          * it has no further action.  If SIGCONT is held, we
996                          * continue the process and leave the signal in
997                          * p_siglist.  If the process catches SIGCONT, let it
998                          * handle the signal itself.
999                          */
1000                         /* XXX what if the signal is being held blocked? */
1001                         if (action == SIG_DFL)
1002                                 SIGDELSET(p->p_siglist, sig);
1003                         proc_unstop(p);
1004                         if (action == SIG_CATCH)
1005                                 goto active_process;
1006                         goto out;
1007                 }
1008
1009                 /*
1010                  * If the process is stopped and receives another STOP
1011                  * signal, we do not need to stop it again.  If we did
1012                  * the shell could get confused.
1013                  *
1014                  * However, if the current/preempted lwp is part of the
1015                  * process receiving the signal, we need to keep it,
1016                  * so that this lwp can stop in issignal() later, as
1017                  * we don't want to wait until it reaches userret!
1018                  */
1019                 if (prop & SA_STOP) {
1020                         if (lwkt_preempted_proc() == NULL ||
1021                             lwkt_preempted_proc()->lwp_proc != p)
1022                                 SIGDELSET(p->p_siglist, sig);
1023                 }
1024
1025                 /*
1026                  * Otherwise the process is stopped and it received some
1027                  * signal, which does not change its stopped state.
1028                  *
1029                  * We have to select one thread to set LWP_BREAKTSLEEP,
1030                  * so that the current signal will break the sleep
1031                  * as soon as a SA_CONT signal will unstop the process.
1032                  */
1033                 if (lp == NULL)
1034                         lp = find_lwp_for_signal(p, sig);
1035                 if (lp != NULL &&
1036                     (lp->lwp_stat == LSSLEEP || lp->lwp_stat == LSSTOP))
1037                         lp->lwp_flag |= LWP_BREAKTSLEEP;
1038                 goto out;
1039
1040                 /* NOTREACHED */
1041         }
1042         /* else not stopped */
1043 active_process:
1044
1045         if (lp == NULL)
1046                 lp = find_lwp_for_signal(p, sig);
1047
1048         /*
1049          * If lp == NULL, there is no thread available which does
1050          * not block the signal.  If lp is set, it might be a thread
1051          * specific signal, so we have to check for the thread ignoring
1052          * the signal.
1053          *
1054          * If so, defer further processing for this signal.
1055          * Add the signal to the process pending list.
1056          */
1057         if (lp == NULL || SIGISMEMBER(lp->lwp_sigmask, sig)) {
1058                 SIGADDSET(p->p_siglist, sig);
1059                 goto out;
1060         }
1061         /* else we have a lwp to deliver the signal to */
1062
1063         if (p->p_nice > NZERO && action == SIG_DFL && (prop & SA_KILL) &&
1064             (p->p_flag & P_TRACED) == 0) {
1065                 p->p_nice = NZERO;
1066         }
1067
1068         /*
1069          * If the process receives a STOP signal which indeed needs to
1070          * stop the process, do so.  If the process chose to catch the
1071          * signal, it will be treated like any other signal.
1072          */
1073         if ((prop & SA_STOP) && action == SIG_DFL) {
1074                 /*
1075                  * If a child holding parent blocked, stopping
1076                  * could cause deadlock.  Take no action at this
1077                  * time.
1078                  */
1079                 if (p->p_flag & P_PPWAIT) {
1080                         SIGADDSET(p->p_siglist, sig);
1081                         goto out;
1082                 }
1083
1084                 /*
1085                  * Do not actually try to manipulate the process, but simply
1086                  * stop it.  Lwps will stop as soon as they safely can.
1087                  */
1088                 p->p_xstat = sig;
1089                 proc_stop(p, 1);
1090                 goto out;
1091         }
1092
1093         /*
1094          * If it is a CONT signal with default action, just ignore it.
1095          */
1096         if ((prop & SA_CONT) && action == SIG_DFL)
1097                 goto out;
1098
1099         /*
1100          * Mark signal pending at this specific thread.
1101          */
1102         SIGADDSET(lp->lwp_siglist, sig);
1103
1104         lwp_signotify(lp);
1105
1106 out:
1107         crit_exit();
1108 }
1109
1110 static void
1111 lwp_signotify(struct lwp *lp)
1112 {
1113         crit_enter();
1114         if (lp->lwp_stat == LSSLEEP || lp->lwp_stat == LSSTOP) {
1115                 /*
1116                  * Thread is in tsleep.
1117                  */
1118
1119                 /*
1120                  * If the thread is sleeping uninterruptibly
1121                  * we can't interrupt the sleep... the signal will
1122                  * be noticed when the lwp returns through
1123                  * trap() or syscall().
1124                  *
1125                  * Otherwise the signal can interrupt the sleep.
1126                  *
1127                  * If the process is traced, the lwp will handle the
1128                  * tracing in issignal() when it returns to userland.
1129                  */
1130                 if (lp->lwp_flag & LWP_SINTR) {
1131                         /*
1132                          * Make runnable and break out of any tsleep as well.
1133                          */
1134                         lp->lwp_flag |= LWP_BREAKTSLEEP;
1135                         setrunnable(lp);
1136                 }
1137         } else {
1138                 /*
1139                  * Otherwise the thread is running
1140                  *
1141                  * LSRUN does nothing with the signal, other than kicking
1142                  * ourselves if we are running.
1143                  * SZOMB and SIDL mean that it will either never be noticed,
1144                  * or noticed very soon.
1145                  *
1146                  * Note that lwp_thread may be NULL or may not be completely
1147                  * initialized if the process is in the SIDL or SZOMB state.
1148                  *
1149                  * For SMP we may have to forward the request to another cpu.
1150                  * YYY the MP lock prevents the target process from moving
1151                  * to another cpu, see kern/kern_switch.c
1152                  *
1153                  * If the target thread is waiting on its message port,
1154                  * wakeup the target thread so it can check (or ignore)
1155                  * the new signal.  YYY needs cleanup.
1156                  */
1157                 if (lp == lwkt_preempted_proc()) {
1158                         signotify();
1159                 } else if (lp->lwp_stat == LSRUN) {
1160                         struct thread *td = lp->lwp_thread;
1161                         struct proc *p = lp->lwp_proc;
1162
1163                         KASSERT(td != NULL,
1164                             ("pid %d/%d NULL lwp_thread stat %d flags %08x/%08x",
1165                             p->p_pid, lp->lwp_tid, lp->lwp_stat,
1166                             p->p_flag, lp->lwp_flag));
1167
1168 #ifdef SMP
1169                         if (td->td_gd != mycpu)
1170                                 lwkt_send_ipiq(td->td_gd, signotify_remote, lp);
1171                         else
1172 #endif
1173                         if (td->td_msgport.mp_flags & MSGPORTF_WAITING)
1174                                 lwkt_schedule(td);
1175                 }
1176         }
1177         crit_exit();
1178 }
1179
1180 #ifdef SMP
1181
1182 /*
1183  * This function is called via an IPI.  We will be in a critical section but
1184  * the MP lock will NOT be held.  Also note that by the time the ipi message
1185  * gets to us the process 'p' (arg) may no longer be scheduled or even valid.
1186  */
1187 static void
1188 signotify_remote(void *arg)
1189 {
1190         struct lwp *lp = arg;
1191
1192         if (lp == lwkt_preempted_proc()) {
1193                 signotify();
1194         } else {
1195                 struct thread *td = lp->lwp_thread;
1196                 if (td->td_msgport.mp_flags & MSGPORTF_WAITING)
1197                         lwkt_schedule(td);
1198         }
1199 }
1200
1201 #endif
1202
1203 void
1204 proc_stop(struct proc *p, int notify)
1205 {
1206         struct lwp *lp, *preempted;
1207         int stopped;
1208
1209         /* If somebody raced us, be happy with it */
1210         if (p->p_stat == SSTOP)
1211                 return;
1212
1213         p->p_stat = SSTOP;
1214
1215         preempted = lwkt_preempted_proc();
1216         stopped = 0;
1217         FOREACH_LWP_IN_PROC(lp, p) {
1218                 switch (lp->lwp_stat) {
1219                 case LSSTOP:
1220                         /*
1221                          * Do nothing, we are already counted in
1222                          * p_nstopped.
1223                          */
1224                         break;
1225
1226                 case LSSLEEP:
1227                         /*
1228                          * We're sleeping, but we will stop before
1229                          * returning to userspace, so count us
1230                          * as stopped as well.  Don't increment
1231                          * p_nstopped, that will happen in tstop().
1232                          */
1233                         ++stopped;
1234                         break;
1235
1236                 case LSRUN:
1237                         lwp_signotify(lp);
1238                         /*
1239                          * No need to wait for the preempted/current
1240                          * lwp.  It will stop on return to userland
1241                          * later, so consider it as stopped.
1242                          */
1243                         if (lp == preempted)
1244                                 ++stopped;
1245                         break;
1246                 }
1247         }
1248
1249         while (p->p_nstopped + stopped < p->p_nthreads)
1250                 tsleep(&p->p_nstopped, 0, "pstop", hz);
1251
1252         p->p_flag &= ~P_WAITED;
1253         wakeup(p->p_pptr);
1254         if (notify > 1 ||
1255             (notify && (p->p_pptr->p_procsig->ps_flag & PS_NOCLDSTOP) == 0))
1256                 ksignal(p->p_pptr, SIGCHLD);
1257 }
1258
1259 void
1260 proc_unstop(struct proc *p)
1261 {
1262         struct lwp *lp;
1263
1264         if (p->p_stat != SSTOP)
1265                 return;
1266         p->p_stat = SACTIVE;
1267
1268         FOREACH_LWP_IN_PROC(lp, p) {
1269                 switch (lp->lwp_stat) {
1270                 case LSRUN:
1271                         /*
1272                          * Uh?  Not stopped?  Well, I guess that's okay.
1273                          */
1274                         if (bootverbose)
1275                                 kprintf("proc_unstop: lwp %d/%d not sleeping\n",
1276                                         p->p_pid, lp->lwp_tid);
1277                         break;
1278
1279                 case LSSTOP:
1280                         setrunnable(lp);
1281                         break;
1282
1283                 case LSSLEEP:
1284                         /*
1285                          * Still sleeping.  Don't bother waking it up.
1286                          */
1287                         break;
1288                 }
1289         }
1290 }
1291
1292 static int
1293 kern_sigtimedwait(sigset_t waitset, siginfo_t *info, struct timespec *timeout)
1294 {
1295         sigset_t savedmask, set;
1296         struct proc *p = curproc;
1297         struct lwp *lp = curthread->td_lwp;
1298         int error, sig, hz, timevalid = 0;
1299         struct timespec rts, ets, ts;
1300         struct timeval tv;
1301
1302         error = 0;
1303         sig = 0;
1304         SIG_CANTMASK(waitset);
1305         savedmask = lp->lwp_sigmask;
1306
1307         if (timeout) {
1308                 if (timeout->tv_sec >= 0 && timeout->tv_nsec >= 0 &&
1309                     timeout->tv_nsec < 1000000000) {
1310                         timevalid = 1;
1311                         getnanouptime(&rts);
1312                         ets = rts;
1313                         timespecadd(&ets, timeout);
1314                 }
1315         }
1316
1317         for (;;) {
1318                 set = lwp_sigpend(lp);
1319                 SIGSETAND(set, waitset);
1320                 if ((sig = sig_ffs(&set)) != 0) {
1321                         SIGFILLSET(lp->lwp_sigmask);
1322                         SIGDELSET(lp->lwp_sigmask, sig);
1323                         SIG_CANTMASK(lp->lwp_sigmask);
1324                         sig = issignal(lp);
1325                         /*
1326                          * It may be a STOP signal, in the case, issignal
1327                          * returns 0, because we may stop there, and new
1328                          * signal can come in, we should restart if we got
1329                          * nothing.
1330                          */
1331                         if (sig == 0)
1332                                 continue;
1333                         else
1334                                 break;
1335                 }
1336
1337                 /*
1338                  * Previous checking got nothing, and we retried but still
1339                  * got nothing, we should return the error status.
1340                  */
1341                 if (error)
1342                         break;
1343
1344                 /*
1345                  * POSIX says this must be checked after looking for pending
1346                  * signals.
1347                  */
1348                 if (timeout) {
1349                         if (!timevalid) {
1350                                 error = EINVAL;
1351                                 break;
1352                         }
1353                         getnanouptime(&rts);
1354                         if (timespeccmp(&rts, &ets, >=)) {
1355                                 error = EAGAIN;
1356                                 break;
1357                         }
1358                         ts = ets;
1359                         timespecsub(&ts, &rts);
1360                         TIMESPEC_TO_TIMEVAL(&tv, &ts);
1361                         hz = tvtohz_high(&tv);
1362                 } else
1363                         hz = 0;
1364
1365                 lp->lwp_sigmask = savedmask;
1366                 SIGSETNAND(lp->lwp_sigmask, waitset);
1367                 error = tsleep(&p->p_sigacts, PCATCH, "sigwt", hz);
1368                 if (timeout) {
1369                         if (error == ERESTART) {
1370                                 /* can not restart a timeout wait. */
1371                                 error = EINTR;
1372                         } else if (error == EAGAIN) {
1373                                 /* will calculate timeout by ourself. */
1374                                 error = 0;
1375                         }
1376                 }
1377                 /* Retry ... */
1378         }
1379
1380         lp->lwp_sigmask = savedmask;
1381         if (sig) {
1382                 error = 0;
1383                 bzero(info, sizeof(*info));
1384                 info->si_signo = sig;
1385                 lwp_delsig(lp, sig);    /* take the signal! */
1386
1387                 if (sig == SIGKILL)
1388                         sigexit(p, sig);
1389         }
1390         return (error);
1391 }
1392
1393 int
1394 sys_sigtimedwait(struct sigtimedwait_args *uap)
1395 {
1396         struct timespec ts;
1397         struct timespec *timeout;
1398         sigset_t set;
1399         siginfo_t info;
1400         int error;
1401
1402         if (uap->timeout) {
1403                 error = copyin(uap->timeout, &ts, sizeof(ts));
1404                 if (error)
1405                         return (error);
1406                 timeout = &ts;
1407         } else {
1408                 timeout = NULL;
1409         }
1410         error = copyin(uap->set, &set, sizeof(set));
1411         if (error)
1412                 return (error);
1413         error = kern_sigtimedwait(set, &info, timeout);
1414         if (error)
1415                 return (error);
1416         if (uap->info)
1417                 error = copyout(&info, uap->info, sizeof(info));
1418         /* Repost if we got an error. */
1419         /*
1420          * XXX lwp
1421          *
1422          * This could transform a thread-specific signal to another
1423          * thread / process pending signal.
1424          */
1425         if (error)
1426                 ksignal(curproc, info.si_signo);
1427         else
1428                 uap->sysmsg_result = info.si_signo;
1429         return (error);
1430 }
1431
1432 int
1433 sys_sigwaitinfo(struct sigwaitinfo_args *uap)
1434 {
1435         siginfo_t info;
1436         sigset_t set;
1437         int error;
1438
1439         error = copyin(uap->set, &set, sizeof(set));
1440         if (error)
1441                 return (error);
1442         error = kern_sigtimedwait(set, &info, NULL);
1443         if (error)
1444                 return (error);
1445         if (uap->info)
1446                 error = copyout(&info, uap->info, sizeof(info));
1447         /* Repost if we got an error. */
1448         /*
1449          * XXX lwp
1450          *
1451          * This could transform a thread-specific signal to another
1452          * thread / process pending signal.
1453          */
1454         if (error)
1455                 ksignal(curproc, info.si_signo);
1456         else
1457                 uap->sysmsg_result = info.si_signo;
1458         return (error);
1459 }
1460
1461 /*
1462  * If the current process has received a signal that would interrupt a
1463  * system call, return EINTR or ERESTART as appropriate.
1464  */
1465 int
1466 iscaught(struct lwp *lp)
1467 {
1468         struct proc *p = lp->lwp_proc;
1469         int sig;
1470
1471         if (p) {
1472                 if ((sig = CURSIG(lp)) != 0) {
1473                         if (SIGISMEMBER(p->p_sigacts->ps_sigintr, sig))
1474                                 return (EINTR);                        
1475                         return (ERESTART);     
1476                 }                         
1477         }
1478         return(EWOULDBLOCK);
1479 }
1480
1481 /*
1482  * If the current process has received a signal (should be caught or cause
1483  * termination, should interrupt current syscall), return the signal number.
1484  * Stop signals with default action are processed immediately, then cleared;
1485  * they aren't returned.  This is checked after each entry to the system for
1486  * a syscall or trap (though this can usually be done without calling issignal
1487  * by checking the pending signal masks in the CURSIG macro.) The normal call
1488  * sequence is
1489  *
1490  * This routine is called via CURSIG/__cursig and the MP lock might not be
1491  * held.  Obtain the MP lock for the duration of the operation.
1492  *
1493  *      while (sig = CURSIG(curproc))
1494  *              postsig(sig);
1495  */
1496 int
1497 issignal(struct lwp *lp)
1498 {
1499         struct proc *p = lp->lwp_proc;
1500         sigset_t mask;
1501         int sig, prop;
1502
1503         get_mplock();
1504         for (;;) {
1505                 int traced = (p->p_flag & P_TRACED) || (p->p_stops & S_SIG);
1506
1507                 mask = lwp_sigpend(lp);
1508                 SIGSETNAND(mask, lp->lwp_sigmask);
1509                 if (p->p_flag & P_PPWAIT)
1510                         SIG_STOPSIGMASK(mask);
1511                 if (SIGISEMPTY(mask)) {         /* no signal to send */
1512                         rel_mplock();
1513                         return (0);
1514                 }
1515                 sig = sig_ffs(&mask);
1516
1517                 STOPEVENT(p, S_SIG, sig);
1518
1519                 /*
1520                  * We should see pending but ignored signals
1521                  * only if P_TRACED was on when they were posted.
1522                  */
1523                 if (SIGISMEMBER(p->p_sigignore, sig) && (traced == 0)) {
1524                         lwp_delsig(lp, sig);
1525                         continue;
1526                 }
1527                 if ((p->p_flag & P_TRACED) && (p->p_flag & P_PPWAIT) == 0) {
1528                         /*
1529                          * If traced, always stop, and stay stopped until
1530                          * released by the parent.
1531                          *
1532                          * NOTE: SSTOP may get cleared during the loop,
1533                          * but we do not re-notify the parent if we have 
1534                          * to loop several times waiting for the parent
1535                          * to let us continue.
1536                          *
1537                          * XXX not sure if this is still true
1538                          */
1539                         p->p_xstat = sig;
1540                         proc_stop(p, 2);
1541                         do {
1542                                 tstop();
1543                         } while (!trace_req(p) && (p->p_flag & P_TRACED));
1544
1545                         /*
1546                          * If parent wants us to take the signal,
1547                          * then it will leave it in p->p_xstat;
1548                          * otherwise we just look for signals again.
1549                          */
1550                         lwp_delsig(lp, sig);    /* clear old signal */
1551                         sig = p->p_xstat;
1552                         if (sig == 0)
1553                                 continue;
1554
1555                         /*
1556                          * Put the new signal into p_siglist.  If the
1557                          * signal is being masked, look for other signals.
1558                          *
1559                          * XXX lwp might need a call to ksignal()
1560                          */
1561                         SIGADDSET(p->p_siglist, sig);
1562                         if (SIGISMEMBER(lp->lwp_sigmask, sig))
1563                                 continue;
1564
1565                         /*
1566                          * If the traced bit got turned off, go back up
1567                          * to the top to rescan signals.  This ensures
1568                          * that p_sig* and ps_sigact are consistent.
1569                          */
1570                         if ((p->p_flag & P_TRACED) == 0)
1571                                 continue;
1572                 }
1573
1574                 prop = sigprop(sig);
1575
1576                 /*
1577                  * Decide whether the signal should be returned.
1578                  * Return the signal's number, or fall through
1579                  * to clear it from the pending mask.
1580                  */
1581                 switch ((int)(intptr_t)p->p_sigacts->ps_sigact[_SIG_IDX(sig)]) {
1582                 case (int)SIG_DFL:
1583                         /*
1584                          * Don't take default actions on system processes.
1585                          */
1586                         if (p->p_pid <= 1) {
1587 #ifdef DIAGNOSTIC
1588                                 /*
1589                                  * Are you sure you want to ignore SIGSEGV
1590                                  * in init? XXX
1591                                  */
1592                                 kprintf("Process (pid %lu) got signal %d\n",
1593                                         (u_long)p->p_pid, sig);
1594 #endif
1595                                 break;          /* == ignore */
1596                         }
1597
1598                         /*
1599                          * Handle the in-kernel checkpoint action
1600                          */
1601                         if (prop & SA_CKPT) {
1602                                 checkpoint_signal_handler(lp);
1603                                 break;
1604                         }
1605
1606                         /*
1607                          * If there is a pending stop signal to process
1608                          * with default action, stop here,
1609                          * then clear the signal.  However,
1610                          * if process is member of an orphaned
1611                          * process group, ignore tty stop signals.
1612                          */
1613                         if (prop & SA_STOP) {
1614                                 if (p->p_flag & P_TRACED ||
1615                                     (p->p_pgrp->pg_jobc == 0 &&
1616                                     prop & SA_TTYSTOP))
1617                                         break;  /* == ignore */
1618                                 while (p->p_stat == SSTOP) {
1619                                         tstop();
1620                                 }
1621                                 break;
1622                         } else if (prop & SA_IGNORE) {
1623                                 /*
1624                                  * Except for SIGCONT, shouldn't get here.
1625                                  * Default action is to ignore; drop it.
1626                                  */
1627                                 break;          /* == ignore */
1628                         } else {
1629                                 rel_mplock();
1630                                 return (sig);
1631                         }
1632
1633                         /*NOTREACHED*/
1634
1635                 case (int)SIG_IGN:
1636                         /*
1637                          * Masking above should prevent us ever trying
1638                          * to take action on an ignored signal other
1639                          * than SIGCONT, unless process is traced.
1640                          */
1641                         if ((prop & SA_CONT) == 0 &&
1642                             (p->p_flag & P_TRACED) == 0)
1643                                 kprintf("issignal\n");
1644                         break;          /* == ignore */
1645
1646                 default:
1647                         /*
1648                          * This signal has an action, let
1649                          * postsig() process it.
1650                          */
1651                         rel_mplock();
1652                         return (sig);
1653                 }
1654                 lwp_delsig(lp, sig);            /* take the signal! */
1655         }
1656         /* NOTREACHED */
1657 }
1658
1659 /*
1660  * Take the action for the specified signal
1661  * from the current set of pending signals.
1662  */
1663 void
1664 postsig(int sig)
1665 {
1666         struct lwp *lp = curthread->td_lwp;
1667         struct proc *p = lp->lwp_proc;
1668         struct sigacts *ps = p->p_sigacts;
1669         sig_t action;
1670         sigset_t returnmask;
1671         int code;
1672
1673         KASSERT(sig != 0, ("postsig"));
1674
1675         /*
1676          * If we are a virtual kernel running an emulated user process
1677          * context, switch back to the virtual kernel context before
1678          * trying to post the signal.
1679          */
1680         if (p->p_vkernel && p->p_vkernel->vk_current) {
1681                 struct trapframe *tf = curthread->td_lwp->lwp_md.md_regs;
1682                 tf->tf_trapno = 0;
1683                 vkernel_trap(p, tf);
1684         }
1685
1686         lwp_delsig(lp, sig);
1687         action = ps->ps_sigact[_SIG_IDX(sig)];
1688 #ifdef KTRACE
1689         if (KTRPOINT(lp->lwp_thread, KTR_PSIG))
1690                 ktrpsig(p, sig, action, lp->lwp_flag & LWP_OLDMASK ?
1691                         &lp->lwp_oldsigmask : &lp->lwp_sigmask, 0);
1692 #endif
1693         STOPEVENT(p, S_SIG, sig);
1694
1695         if (action == SIG_DFL) {
1696                 /*
1697                  * Default action, where the default is to kill
1698                  * the process.  (Other cases were ignored above.)
1699                  */
1700                 sigexit(p, sig);
1701                 /* NOTREACHED */
1702         } else {
1703                 /*
1704                  * If we get here, the signal must be caught.
1705                  */
1706                 KASSERT(action != SIG_IGN && !SIGISMEMBER(lp->lwp_sigmask, sig),
1707                     ("postsig action"));
1708
1709                 crit_enter();
1710
1711                 /*
1712                  * Reset the signal handler if asked to
1713                  */
1714                 if (SIGISMEMBER(ps->ps_sigreset, sig)) {
1715                         /*
1716                          * See kern_sigaction() for origin of this code.
1717                          */
1718                         SIGDELSET(p->p_sigcatch, sig);
1719                         if (sig != SIGCONT &&
1720                             sigprop(sig) & SA_IGNORE)
1721                                 SIGADDSET(p->p_sigignore, sig);
1722                         ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
1723                 }
1724
1725                 /*
1726                  * Handle the mailbox case.  Copyout to the appropriate
1727                  * location but do not generate a signal frame.  The system
1728                  * call simply returns EINTR and the user is responsible for
1729                  * polling the mailbox.
1730                  */
1731                 if (SIGISMEMBER(ps->ps_sigmailbox, sig)) {
1732                         int sig_copy = sig;
1733                         copyout(&sig_copy, (void *)action, sizeof(int));
1734                         curproc->p_flag |= P_MAILBOX;
1735                         crit_exit();
1736                         goto done;
1737                 }
1738
1739                 /*
1740                  * Set the signal mask and calculate the mask to restore
1741                  * when the signal function returns.
1742                  *
1743                  * Special case: user has done a sigsuspend.  Here the
1744                  * current mask is not of interest, but rather the
1745                  * mask from before the sigsuspend is what we want
1746                  * restored after the signal processing is completed.
1747                  */
1748                 if (lp->lwp_flag & LWP_OLDMASK) {
1749                         returnmask = lp->lwp_oldsigmask;
1750                         lp->lwp_flag &= ~LWP_OLDMASK;
1751                 } else {
1752                         returnmask = lp->lwp_sigmask;
1753                 }
1754
1755                 SIGSETOR(lp->lwp_sigmask, ps->ps_catchmask[_SIG_IDX(sig)]);
1756                 if (!SIGISMEMBER(ps->ps_signodefer, sig))
1757                         SIGADDSET(lp->lwp_sigmask, sig);
1758
1759                 crit_exit();
1760                 lp->lwp_ru.ru_nsignals++;
1761                 if (lp->lwp_sig != sig) {
1762                         code = 0;
1763                 } else {
1764                         code = lp->lwp_code;
1765                         lp->lwp_code = 0;
1766                         lp->lwp_sig = 0;
1767                 }
1768                 (*p->p_sysent->sv_sendsig)(action, sig, &returnmask, code);
1769         }
1770 done:
1771         ;
1772 }
1773
1774 /*
1775  * Kill the current process for stated reason.
1776  */
1777 void
1778 killproc(struct proc *p, char *why)
1779 {
1780         log(LOG_ERR, "pid %d (%s), uid %d, was killed: %s\n", 
1781                 p->p_pid, p->p_comm,
1782                 p->p_ucred ? p->p_ucred->cr_uid : -1, why);
1783         ksignal(p, SIGKILL);
1784 }
1785
1786 /*
1787  * Force the current process to exit with the specified signal, dumping core
1788  * if appropriate.  We bypass the normal tests for masked and caught signals,
1789  * allowing unrecoverable failures to terminate the process without changing
1790  * signal state.  Mark the accounting record with the signal termination.
1791  * If dumping core, save the signal number for the debugger.  Calls exit and
1792  * does not return.
1793  */
1794 void
1795 sigexit(struct proc *p, int sig)
1796 {
1797         struct lwp *lp = FIRST_LWP_IN_PROC(p);  /* XXX lwp */
1798
1799         p->p_acflag |= AXSIG;
1800         if (sigprop(sig) & SA_CORE) {
1801                 lp->lwp_sig = sig;
1802                 /*
1803                  * Log signals which would cause core dumps
1804                  * (Log as LOG_INFO to appease those who don't want
1805                  * these messages.)
1806                  * XXX : Todo, as well as euid, write out ruid too
1807                  */
1808                 if (coredump(lp, sig) == 0)
1809                         sig |= WCOREFLAG;
1810                 if (kern_logsigexit)
1811                         log(LOG_INFO,
1812                             "pid %d (%s), uid %d: exited on signal %d%s\n",
1813                             p->p_pid, p->p_comm,
1814                             p->p_ucred ? p->p_ucred->cr_uid : -1,
1815                             sig &~ WCOREFLAG,
1816                             sig & WCOREFLAG ? " (core dumped)" : "");
1817         }
1818         exit1(W_EXITCODE(0, sig));
1819         /* NOTREACHED */
1820 }
1821
1822 static char corefilename[MAXPATHLEN+1] = {"%N.core"};
1823 SYSCTL_STRING(_kern, OID_AUTO, corefile, CTLFLAG_RW, corefilename,
1824               sizeof(corefilename), "process corefile name format string");
1825
1826 /*
1827  * expand_name(name, uid, pid)
1828  * Expand the name described in corefilename, using name, uid, and pid.
1829  * corefilename is a kprintf-like string, with three format specifiers:
1830  *      %N      name of process ("name")
1831  *      %P      process id (pid)
1832  *      %U      user id (uid)
1833  * For example, "%N.core" is the default; they can be disabled completely
1834  * by using "/dev/null", or all core files can be stored in "/cores/%U/%N-%P".
1835  * This is controlled by the sysctl variable kern.corefile (see above).
1836  */
1837
1838 static char *
1839 expand_name(const char *name, uid_t uid, pid_t pid)
1840 {
1841         char *temp;
1842         char buf[11];           /* Buffer for pid/uid -- max 4B */
1843         int i, n;
1844         char *format = corefilename;
1845         size_t namelen;
1846
1847         temp = kmalloc(MAXPATHLEN + 1, M_TEMP, M_NOWAIT);
1848         if (temp == NULL)
1849                 return NULL;
1850         namelen = strlen(name);
1851         for (i = 0, n = 0; n < MAXPATHLEN && format[i]; i++) {
1852                 int l;
1853                 switch (format[i]) {
1854                 case '%':       /* Format character */
1855                         i++;
1856                         switch (format[i]) {
1857                         case '%':
1858                                 temp[n++] = '%';
1859                                 break;
1860                         case 'N':       /* process name */
1861                                 if ((n + namelen) > MAXPATHLEN) {
1862                                         log(LOG_ERR, "pid %d (%s), uid (%u):  Path `%s%s' is too long\n",
1863                                             pid, name, uid, temp, name);
1864                                         kfree(temp, M_TEMP);
1865                                         return NULL;
1866                                 }
1867                                 memcpy(temp+n, name, namelen);
1868                                 n += namelen;
1869                                 break;
1870                         case 'P':       /* process id */
1871                                 l = ksprintf(buf, "%u", pid);
1872                                 if ((n + l) > MAXPATHLEN) {
1873                                         log(LOG_ERR, "pid %d (%s), uid (%u):  Path `%s%s' is too long\n",
1874                                             pid, name, uid, temp, name);
1875                                         kfree(temp, M_TEMP);
1876                                         return NULL;
1877                                 }
1878                                 memcpy(temp+n, buf, l);
1879                                 n += l;
1880                                 break;
1881                         case 'U':       /* user id */
1882                                 l = ksprintf(buf, "%u", uid);
1883                                 if ((n + l) > MAXPATHLEN) {
1884                                         log(LOG_ERR, "pid %d (%s), uid (%u):  Path `%s%s' is too long\n",
1885                                             pid, name, uid, temp, name);
1886                                         kfree(temp, M_TEMP);
1887                                         return NULL;
1888                                 }
1889                                 memcpy(temp+n, buf, l);
1890                                 n += l;
1891                                 break;
1892                         default:
1893                                 log(LOG_ERR, "Unknown format character %c in `%s'\n", format[i], format);
1894                         }
1895                         break;
1896                 default:
1897                         temp[n++] = format[i];
1898                 }
1899         }
1900         temp[n] = '\0';
1901         return temp;
1902 }
1903
1904 /*
1905  * Dump a process' core.  The main routine does some
1906  * policy checking, and creates the name of the coredump;
1907  * then it passes on a vnode and a size limit to the process-specific
1908  * coredump routine if there is one; if there _is not_ one, it returns
1909  * ENOSYS; otherwise it returns the error from the process-specific routine.
1910  *
1911  * The parameter `lp' is the lwp which triggered the coredump.
1912  */
1913
1914 static int
1915 coredump(struct lwp *lp, int sig)
1916 {
1917         struct proc *p = lp->lwp_proc;
1918         struct vnode *vp;
1919         struct ucred *cred = p->p_ucred;
1920         struct flock lf;
1921         struct nlookupdata nd;
1922         struct vattr vattr;
1923         int error, error1;
1924         char *name;                     /* name of corefile */
1925         off_t limit;
1926         
1927         STOPEVENT(p, S_CORE, 0);
1928
1929         if (((sugid_coredump == 0) && p->p_flag & P_SUGID) || do_coredump == 0)
1930                 return (EFAULT);
1931         
1932         /*
1933          * Note that the bulk of limit checking is done after
1934          * the corefile is created.  The exception is if the limit
1935          * for corefiles is 0, in which case we don't bother
1936          * creating the corefile at all.  This layout means that
1937          * a corefile is truncated instead of not being created,
1938          * if it is larger than the limit.
1939          */
1940         limit = p->p_rlimit[RLIMIT_CORE].rlim_cur;
1941         if (limit == 0)
1942                 return EFBIG;
1943
1944         name = expand_name(p->p_comm, p->p_ucred->cr_uid, p->p_pid);
1945         if (name == NULL)
1946                 return (EINVAL);
1947         error = nlookup_init(&nd, name, UIO_SYSSPACE, NLC_LOCKVP);
1948         if (error == 0)
1949                 error = vn_open(&nd, NULL, O_CREAT | FWRITE | O_NOFOLLOW, S_IRUSR | S_IWUSR);
1950         kfree(name, M_TEMP);
1951         if (error) {
1952                 nlookup_done(&nd);
1953                 return (error);
1954         }
1955         vp = nd.nl_open_vp;
1956         nd.nl_open_vp = NULL;
1957         nlookup_done(&nd);
1958
1959         vn_unlock(vp);
1960         lf.l_whence = SEEK_SET;
1961         lf.l_start = 0;
1962         lf.l_len = 0;
1963         lf.l_type = F_WRLCK;
1964         error = VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &lf, 0);
1965         if (error)
1966                 goto out2;
1967
1968         /* Don't dump to non-regular files or files with links. */
1969         if (vp->v_type != VREG ||
1970             VOP_GETATTR(vp, &vattr) || vattr.va_nlink != 1) {
1971                 error = EFAULT;
1972                 goto out1;
1973         }
1974
1975         VATTR_NULL(&vattr);
1976         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1977         vattr.va_size = 0;
1978         VOP_SETATTR(vp, &vattr, cred);
1979         p->p_acflag |= ACORE;
1980         vn_unlock(vp);
1981
1982         error = p->p_sysent->sv_coredump ?
1983                   p->p_sysent->sv_coredump(lp, sig, vp, limit) : ENOSYS;
1984
1985 out1:
1986         lf.l_type = F_UNLCK;
1987         VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &lf, 0);
1988 out2:
1989         error1 = vn_close(vp, FWRITE);
1990         if (error == 0)
1991                 error = error1;
1992         return (error);
1993 }
1994
1995 /*
1996  * Nonexistent system call-- signal process (may want to handle it).
1997  * Flag error in case process won't see signal immediately (blocked or ignored).
1998  */
1999 /* ARGSUSED */
2000 int
2001 sys_nosys(struct nosys_args *args)
2002 {
2003         lwpsignal(curproc, curthread->td_lwp, SIGSYS);
2004         return (EINVAL);
2005 }
2006
2007 /*
2008  * Send a SIGIO or SIGURG signal to a process or process group using
2009  * stored credentials rather than those of the current process.
2010  */
2011 void
2012 pgsigio(struct sigio *sigio, int sig, int checkctty)
2013 {
2014         if (sigio == NULL)
2015                 return;
2016                 
2017         if (sigio->sio_pgid > 0) {
2018                 if (CANSIGIO(sigio->sio_ruid, sigio->sio_ucred,
2019                              sigio->sio_proc))
2020                         ksignal(sigio->sio_proc, sig);
2021         } else if (sigio->sio_pgid < 0) {
2022                 struct proc *p;
2023
2024                 lockmgr(&sigio->sio_pgrp->pg_lock, LK_EXCLUSIVE);
2025                 LIST_FOREACH(p, &sigio->sio_pgrp->pg_members, p_pglist) {
2026                         if (CANSIGIO(sigio->sio_ruid, sigio->sio_ucred, p) &&
2027                             (checkctty == 0 || (p->p_flag & P_CONTROLT)))
2028                                 ksignal(p, sig);
2029                 }
2030                 lockmgr(&sigio->sio_pgrp->pg_lock, LK_RELEASE);
2031         }
2032 }
2033
2034 static int
2035 filt_sigattach(struct knote *kn)
2036 {
2037         struct proc *p = curproc;
2038
2039         kn->kn_ptr.p_proc = p;
2040         kn->kn_flags |= EV_CLEAR;               /* automatically set */
2041
2042         /* XXX lock the proc here while adding to the list? */
2043         SLIST_INSERT_HEAD(&p->p_klist, kn, kn_selnext);
2044
2045         return (0);
2046 }
2047
2048 static void
2049 filt_sigdetach(struct knote *kn)
2050 {
2051         struct proc *p = kn->kn_ptr.p_proc;
2052
2053         SLIST_REMOVE(&p->p_klist, kn, knote, kn_selnext);
2054 }
2055
2056 /*
2057  * signal knotes are shared with proc knotes, so we apply a mask to 
2058  * the hint in order to differentiate them from process hints.  This
2059  * could be avoided by using a signal-specific knote list, but probably
2060  * isn't worth the trouble.
2061  */
2062 static int
2063 filt_signal(struct knote *kn, long hint)
2064 {
2065         if (hint & NOTE_SIGNAL) {
2066                 hint &= ~NOTE_SIGNAL;
2067
2068                 if (kn->kn_id == hint)
2069                         kn->kn_data++;
2070         }
2071         return (kn->kn_data != 0);
2072 }