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.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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. 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.
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
34 * @(#)kern_sig.c 8.7 (Berkeley) 4/18/94
35 * $FreeBSD: src/sys/kern/kern_sig.c,v 1.72.2.17 2003/05/16 16:34:34 obrien Exp $
38 #include "opt_ktrace.h"
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/kernel.h>
43 #include <sys/sysproto.h>
44 #include <sys/signalvar.h>
45 #include <sys/resourcevar.h>
46 #include <sys/vnode.h>
47 #include <sys/event.h>
49 #include <sys/nlookup.h>
50 #include <sys/pioctl.h>
52 #include <sys/fcntl.h>
55 #include <sys/ktrace.h>
56 #include <sys/syslog.h>
58 #include <sys/sysent.h>
59 #include <sys/sysctl.h>
60 #include <sys/malloc.h>
61 #include <sys/interrupt.h>
62 #include <sys/unistd.h>
63 #include <sys/kern_syscall.h>
64 #include <sys/vkernel.h>
66 #include <sys/signal2.h>
67 #include <sys/thread2.h>
68 #include <sys/spinlock2.h>
70 #include <machine/cpu.h>
71 #include <machine/smp.h>
73 static int coredump(struct lwp
*, int);
74 static char *expand_name(const char *, uid_t
, pid_t
);
75 static int dokillpg(int sig
, int pgid
, int all
);
76 static int sig_ffs(sigset_t
*set
);
77 static int sigprop(int sig
);
78 static void lwp_signotify(struct lwp
*lp
);
79 static void lwp_signotify_remote(void *arg
);
80 static int kern_sigtimedwait(sigset_t set
, siginfo_t
*info
,
81 struct timespec
*timeout
);
82 static void proc_stopwait(struct proc
*p
);
84 static int filt_sigattach(struct knote
*kn
);
85 static void filt_sigdetach(struct knote
*kn
);
86 static int filt_signal(struct knote
*kn
, long hint
);
88 struct filterops sig_filtops
=
89 { FILTEROP_MPSAFE
, filt_sigattach
, filt_sigdetach
, filt_signal
};
91 static int kern_logsigexit
= 1;
92 SYSCTL_INT(_kern
, KERN_LOGSIGEXIT
, logsigexit
, CTLFLAG_RW
,
94 "Log processes quitting on abnormal signals to syslog(3)");
97 * Can process p send the signal sig to process q? Only processes within
98 * the current reaper or children of the current reaper can be signaled.
99 * Normally the reaper itself cannot be signalled, unless initok is set.
101 #define CANSIGNAL(q, sig, initok) \
102 ((!p_trespass(curproc->p_ucred, (q)->p_ucred) && \
103 reaper_sigtest(curproc, p, initok)) || \
104 ((sig) == SIGCONT && (q)->p_session == curproc->p_session))
107 * Policy -- Can real uid ruid with ucred uc send a signal to process q?
109 #define CANSIGIO(ruid, uc, q) \
110 ((uc)->cr_uid == 0 || \
111 (ruid) == (q)->p_ucred->cr_ruid || \
112 (uc)->cr_uid == (q)->p_ucred->cr_ruid || \
113 (ruid) == (q)->p_ucred->cr_uid || \
114 (uc)->cr_uid == (q)->p_ucred->cr_uid)
117 SYSCTL_INT(_kern
, OID_AUTO
, sugid_coredump
, CTLFLAG_RW
,
118 &sugid_coredump
, 0, "Enable coredumping set user/group ID processes");
120 static int do_coredump
= 1;
121 SYSCTL_INT(_kern
, OID_AUTO
, coredump
, CTLFLAG_RW
,
122 &do_coredump
, 0, "Enable/Disable coredumps");
125 * Signal properties and actions.
126 * The array below categorizes the signals and their default actions
127 * according to the following properties:
129 #define SA_KILL 0x01 /* terminates process by default */
130 #define SA_CORE 0x02 /* ditto and coredumps */
131 #define SA_STOP 0x04 /* suspend process */
132 #define SA_TTYSTOP 0x08 /* ditto, from tty */
133 #define SA_IGNORE 0x10 /* ignore by default */
134 #define SA_CONT 0x20 /* continue if suspended */
135 #define SA_CANTMASK 0x40 /* non-maskable, catchable */
136 #define SA_CKPT 0x80 /* checkpoint process */
139 static int sigproptbl
[NSIG
] = {
140 SA_KILL
, /* SIGHUP */
141 SA_KILL
, /* SIGINT */
142 SA_KILL
|SA_CORE
, /* SIGQUIT */
143 SA_KILL
|SA_CORE
, /* SIGILL */
144 SA_KILL
|SA_CORE
, /* SIGTRAP */
145 SA_KILL
|SA_CORE
, /* SIGABRT */
146 SA_KILL
|SA_CORE
, /* SIGEMT */
147 SA_KILL
|SA_CORE
, /* SIGFPE */
148 SA_KILL
, /* SIGKILL */
149 SA_KILL
|SA_CORE
, /* SIGBUS */
150 SA_KILL
|SA_CORE
, /* SIGSEGV */
151 SA_KILL
|SA_CORE
, /* SIGSYS */
152 SA_KILL
, /* SIGPIPE */
153 SA_KILL
, /* SIGALRM */
154 SA_KILL
, /* SIGTERM */
155 SA_IGNORE
, /* SIGURG */
156 SA_STOP
, /* SIGSTOP */
157 SA_STOP
|SA_TTYSTOP
, /* SIGTSTP */
158 SA_IGNORE
|SA_CONT
, /* SIGCONT */
159 SA_IGNORE
, /* SIGCHLD */
160 SA_STOP
|SA_TTYSTOP
, /* SIGTTIN */
161 SA_STOP
|SA_TTYSTOP
, /* SIGTTOU */
162 SA_IGNORE
, /* SIGIO */
163 SA_KILL
, /* SIGXCPU */
164 SA_KILL
, /* SIGXFSZ */
165 SA_KILL
, /* SIGVTALRM */
166 SA_KILL
, /* SIGPROF */
167 SA_IGNORE
, /* SIGWINCH */
168 SA_IGNORE
, /* SIGINFO */
169 SA_KILL
, /* SIGUSR1 */
170 SA_KILL
, /* SIGUSR2 */
171 SA_IGNORE
, /* SIGTHR */
172 SA_CKPT
, /* SIGCKPT */
173 SA_KILL
|SA_CKPT
, /* SIGCKPTEXIT */
211 if (sig
> 0 && sig
< NSIG
)
212 return (sigproptbl
[_SIG_IDX(sig
)]);
217 sig_ffs(sigset_t
*set
)
221 for (i
= 0; i
< _SIG_WORDS
; i
++)
223 return (ffs(set
->__bits
[i
]) + (i
* 32));
231 kern_sigaction(int sig
, struct sigaction
*act
, struct sigaction
*oact
)
233 struct thread
*td
= curthread
;
234 struct proc
*p
= td
->td_proc
;
236 struct sigacts
*ps
= p
->p_sigacts
;
238 if (sig
<= 0 || sig
> _SIG_MAXSIG
)
241 lwkt_gettoken(&p
->p_token
);
244 oact
->sa_handler
= ps
->ps_sigact
[_SIG_IDX(sig
)];
245 oact
->sa_mask
= ps
->ps_catchmask
[_SIG_IDX(sig
)];
247 if (SIGISMEMBER(ps
->ps_sigonstack
, sig
))
248 oact
->sa_flags
|= SA_ONSTACK
;
249 if (!SIGISMEMBER(ps
->ps_sigintr
, sig
))
250 oact
->sa_flags
|= SA_RESTART
;
251 if (SIGISMEMBER(ps
->ps_sigreset
, sig
))
252 oact
->sa_flags
|= SA_RESETHAND
;
253 if (SIGISMEMBER(ps
->ps_signodefer
, sig
))
254 oact
->sa_flags
|= SA_NODEFER
;
255 if (SIGISMEMBER(ps
->ps_siginfo
, sig
))
256 oact
->sa_flags
|= SA_SIGINFO
;
257 if (sig
== SIGCHLD
&& p
->p_sigacts
->ps_flag
& PS_NOCLDSTOP
)
258 oact
->sa_flags
|= SA_NOCLDSTOP
;
259 if (sig
== SIGCHLD
&& p
->p_sigacts
->ps_flag
& PS_NOCLDWAIT
)
260 oact
->sa_flags
|= SA_NOCLDWAIT
;
264 * Check for invalid requests. KILL and STOP cannot be
267 if (sig
== SIGKILL
|| sig
== SIGSTOP
) {
268 if (act
->sa_handler
!= SIG_DFL
) {
269 lwkt_reltoken(&p
->p_token
);
275 * Change setting atomically.
277 ps
->ps_catchmask
[_SIG_IDX(sig
)] = act
->sa_mask
;
278 SIG_CANTMASK(ps
->ps_catchmask
[_SIG_IDX(sig
)]);
279 if (act
->sa_flags
& SA_SIGINFO
) {
280 ps
->ps_sigact
[_SIG_IDX(sig
)] =
281 (__sighandler_t
*)act
->sa_sigaction
;
282 SIGADDSET(ps
->ps_siginfo
, sig
);
284 ps
->ps_sigact
[_SIG_IDX(sig
)] = act
->sa_handler
;
285 SIGDELSET(ps
->ps_siginfo
, sig
);
287 if (!(act
->sa_flags
& SA_RESTART
))
288 SIGADDSET(ps
->ps_sigintr
, sig
);
290 SIGDELSET(ps
->ps_sigintr
, sig
);
291 if (act
->sa_flags
& SA_ONSTACK
)
292 SIGADDSET(ps
->ps_sigonstack
, sig
);
294 SIGDELSET(ps
->ps_sigonstack
, sig
);
295 if (act
->sa_flags
& SA_RESETHAND
)
296 SIGADDSET(ps
->ps_sigreset
, sig
);
298 SIGDELSET(ps
->ps_sigreset
, sig
);
299 if (act
->sa_flags
& SA_NODEFER
)
300 SIGADDSET(ps
->ps_signodefer
, sig
);
302 SIGDELSET(ps
->ps_signodefer
, sig
);
303 if (sig
== SIGCHLD
) {
304 if (act
->sa_flags
& SA_NOCLDSTOP
)
305 p
->p_sigacts
->ps_flag
|= PS_NOCLDSTOP
;
307 p
->p_sigacts
->ps_flag
&= ~PS_NOCLDSTOP
;
308 if (act
->sa_flags
& SA_NOCLDWAIT
) {
310 * Paranoia: since SA_NOCLDWAIT is implemented
311 * by reparenting the dying child to PID 1 (and
312 * trust it to reap the zombie), PID 1 itself
313 * is forbidden to set SA_NOCLDWAIT.
316 p
->p_sigacts
->ps_flag
&= ~PS_NOCLDWAIT
;
318 p
->p_sigacts
->ps_flag
|= PS_NOCLDWAIT
;
320 p
->p_sigacts
->ps_flag
&= ~PS_NOCLDWAIT
;
322 if (ps
->ps_sigact
[_SIG_IDX(SIGCHLD
)] == SIG_IGN
)
323 ps
->ps_flag
|= PS_CLDSIGIGN
;
325 ps
->ps_flag
&= ~PS_CLDSIGIGN
;
328 * Set bit in p_sigignore for signals that are set to SIG_IGN,
329 * and for signals set to SIG_DFL where the default is to
330 * ignore. However, don't put SIGCONT in p_sigignore, as we
331 * have to restart the process.
333 * Also remove the signal from the process and lwp signal
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 SIGDELSET_ATOMIC(p
->p_siglist
, sig
);
340 FOREACH_LWP_IN_PROC(lp
, p
) {
341 spin_lock(&lp
->lwp_spin
);
342 SIGDELSET(lp
->lwp_siglist
, sig
);
343 spin_unlock(&lp
->lwp_spin
);
345 if (sig
!= SIGCONT
) {
346 /* easier in ksignal */
347 SIGADDSET(p
->p_sigignore
, sig
);
349 SIGDELSET(p
->p_sigcatch
, sig
);
351 SIGDELSET(p
->p_sigignore
, sig
);
352 if (ps
->ps_sigact
[_SIG_IDX(sig
)] == SIG_DFL
)
353 SIGDELSET(p
->p_sigcatch
, sig
);
355 SIGADDSET(p
->p_sigcatch
, sig
);
358 lwkt_reltoken(&p
->p_token
);
363 sys_sigaction(struct sigaction_args
*uap
)
365 struct sigaction act
, oact
;
366 struct sigaction
*actp
, *oactp
;
369 actp
= (uap
->act
!= NULL
) ? &act
: NULL
;
370 oactp
= (uap
->oact
!= NULL
) ? &oact
: NULL
;
372 error
= copyin(uap
->act
, actp
, sizeof(act
));
376 error
= kern_sigaction(uap
->sig
, actp
, oactp
);
377 if (oactp
&& !error
) {
378 error
= copyout(oactp
, uap
->oact
, sizeof(oact
));
384 * Initialize signal state for process 0;
385 * set to ignore signals that are ignored by default.
388 siginit(struct proc
*p
)
392 for (i
= 1; i
<= NSIG
; i
++)
393 if (sigprop(i
) & SA_IGNORE
&& i
!= SIGCONT
)
394 SIGADDSET(p
->p_sigignore
, i
);
398 * Reset signals for an exec of the specified process.
401 execsigs(struct proc
*p
)
403 struct sigacts
*ps
= p
->p_sigacts
;
407 lp
= ONLY_LWP_IN_PROC(p
);
410 * Reset caught signals. Held signals remain held
411 * through p_sigmask (unless they were caught,
412 * and are now ignored by default).
414 while (SIGNOTEMPTY(p
->p_sigcatch
)) {
415 sig
= sig_ffs(&p
->p_sigcatch
);
416 SIGDELSET(p
->p_sigcatch
, sig
);
417 if (sigprop(sig
) & SA_IGNORE
) {
419 SIGADDSET(p
->p_sigignore
, sig
);
420 SIGDELSET_ATOMIC(p
->p_siglist
, sig
);
421 /* don't need spinlock */
422 SIGDELSET(lp
->lwp_siglist
, sig
);
424 ps
->ps_sigact
[_SIG_IDX(sig
)] = SIG_DFL
;
428 * Reset stack state to the user stack.
429 * Clear set of signals caught on the signal stack.
431 lp
->lwp_sigstk
.ss_flags
= SS_DISABLE
;
432 lp
->lwp_sigstk
.ss_size
= 0;
433 lp
->lwp_sigstk
.ss_sp
= NULL
;
434 lp
->lwp_flags
&= ~LWP_ALTSTACK
;
436 * Reset no zombies if child dies flag as Solaris does.
438 p
->p_sigacts
->ps_flag
&= ~(PS_NOCLDWAIT
| PS_CLDSIGIGN
);
439 if (ps
->ps_sigact
[_SIG_IDX(SIGCHLD
)] == SIG_IGN
)
440 ps
->ps_sigact
[_SIG_IDX(SIGCHLD
)] = SIG_DFL
;
444 * kern_sigprocmask() - MP SAFE ONLY IF p == curproc
446 * Manipulate signal mask. This routine is MP SAFE *ONLY* if
450 kern_sigprocmask(int how
, sigset_t
*set
, sigset_t
*oset
)
452 struct thread
*td
= curthread
;
453 struct lwp
*lp
= td
->td_lwp
;
454 struct proc
*p
= td
->td_proc
;
457 lwkt_gettoken(&p
->p_token
);
460 *oset
= lp
->lwp_sigmask
;
467 SIGSETOR(lp
->lwp_sigmask
, *set
);
470 SIGSETNAND(lp
->lwp_sigmask
, *set
);
474 lp
->lwp_sigmask
= *set
;
482 lwkt_reltoken(&p
->p_token
);
493 sys_sigprocmask(struct sigprocmask_args
*uap
)
496 sigset_t
*setp
, *osetp
;
499 setp
= (uap
->set
!= NULL
) ? &set
: NULL
;
500 osetp
= (uap
->oset
!= NULL
) ? &oset
: NULL
;
502 error
= copyin(uap
->set
, setp
, sizeof(set
));
506 error
= kern_sigprocmask(uap
->how
, setp
, osetp
);
507 if (osetp
&& !error
) {
508 error
= copyout(osetp
, uap
->oset
, sizeof(oset
));
517 kern_sigpending(struct __sigset
*set
)
519 struct lwp
*lp
= curthread
->td_lwp
;
521 *set
= lwp_sigpend(lp
);
530 sys_sigpending(struct sigpending_args
*uap
)
535 error
= kern_sigpending(&set
);
538 error
= copyout(&set
, uap
->set
, sizeof(set
));
543 * Suspend process until signal, providing mask to be set
549 kern_sigsuspend(struct __sigset
*set
)
551 struct thread
*td
= curthread
;
552 struct lwp
*lp
= td
->td_lwp
;
553 struct proc
*p
= td
->td_proc
;
554 struct sigacts
*ps
= p
->p_sigacts
;
557 * When returning from sigsuspend, we want
558 * the old mask to be restored after the
559 * signal handler has finished. Thus, we
560 * save it here and mark the sigacts structure
563 lp
->lwp_oldsigmask
= lp
->lwp_sigmask
;
564 lp
->lwp_flags
|= LWP_OLDMASK
;
567 lp
->lwp_sigmask
= *set
;
568 while (tsleep(ps
, PCATCH
, "pause", 0) == 0)
570 /* always return EINTR rather than ERESTART... */
575 * Note nonstandard calling convention: libc stub passes mask, not
576 * pointer, to save a copyin.
581 sys_sigsuspend(struct sigsuspend_args
*uap
)
586 error
= copyin(uap
->sigmask
, &mask
, sizeof(mask
));
590 error
= kern_sigsuspend(&mask
);
599 kern_sigaltstack(struct sigaltstack
*ss
, struct sigaltstack
*oss
)
601 struct thread
*td
= curthread
;
602 struct lwp
*lp
= td
->td_lwp
;
603 struct proc
*p
= td
->td_proc
;
605 if ((lp
->lwp_flags
& LWP_ALTSTACK
) == 0)
606 lp
->lwp_sigstk
.ss_flags
|= SS_DISABLE
;
609 *oss
= lp
->lwp_sigstk
;
612 if (ss
->ss_flags
& ~SS_DISABLE
)
614 if (ss
->ss_flags
& SS_DISABLE
) {
615 if (lp
->lwp_sigstk
.ss_flags
& SS_ONSTACK
)
617 lp
->lwp_flags
&= ~LWP_ALTSTACK
;
618 lp
->lwp_sigstk
.ss_flags
= ss
->ss_flags
;
620 if (ss
->ss_size
< p
->p_sysent
->sv_minsigstksz
)
622 lp
->lwp_flags
|= LWP_ALTSTACK
;
623 lp
->lwp_sigstk
= *ss
;
634 sys_sigaltstack(struct sigaltstack_args
*uap
)
640 error
= copyin(uap
->ss
, &ss
, sizeof(ss
));
645 error
= kern_sigaltstack(uap
->ss
? &ss
: NULL
, uap
->oss
? &oss
: NULL
);
647 if (error
== 0 && uap
->oss
)
648 error
= copyout(&oss
, uap
->oss
, sizeof(*uap
->oss
));
653 * Common code for kill process group/broadcast kill.
654 * cp is calling process.
661 static int killpg_all_callback(struct proc
*p
, void *data
);
664 dokillpg(int sig
, int pgid
, int all
)
666 struct killpg_info info
;
667 struct proc
*cp
= curproc
;
678 allproc_scan(killpg_all_callback
, &info
, 0);
682 * zero pgid means send to my process group.
693 * Must interlock all signals against fork
695 lockmgr(&pgrp
->pg_lock
, LK_EXCLUSIVE
);
696 LIST_FOREACH(p
, &pgrp
->pg_members
, p_pglist
) {
698 p
->p_stat
== SZOMB
||
699 (p
->p_flags
& P_SYSTEM
) ||
700 !CANSIGNAL(p
, sig
, 0)) {
707 lockmgr(&pgrp
->pg_lock
, LK_RELEASE
);
710 return (info
.nfound
? 0 : ESRCH
);
714 killpg_all_callback(struct proc
*p
, void *data
)
716 struct killpg_info
*info
= data
;
718 if (p
->p_pid
<= 1 || (p
->p_flags
& P_SYSTEM
) ||
719 p
== curproc
|| !CANSIGNAL(p
, info
->sig
, 0)) {
724 ksignal(p
, info
->sig
);
729 * Send a general signal to a process or LWPs within that process.
731 * Note that new signals cannot be sent if a process is exiting or already
732 * a zombie, but we return success anyway as userland is likely to not handle
738 kern_kill(int sig
, pid_t pid
, lwpid_t tid
)
742 if ((u_int
)sig
> _SIG_MAXSIG
)
747 struct lwp
*lp
= NULL
;
750 * Send a signal to a single process. If the kill() is
751 * racing an exiting process which has not yet been reaped
752 * act as though the signal was delivered successfully but
753 * don't actually try to deliver the signal.
755 if ((p
= pfind(pid
)) == NULL
) {
756 if ((p
= zpfind(pid
)) == NULL
)
762 lwkt_gettoken_shared(&p
->p_token
);
763 if (!CANSIGNAL(p
, sig
, 1)) {
764 lwkt_reltoken(&p
->p_token
);
768 lwkt_reltoken(&p
->p_token
);
772 * NOP if the process is exiting. Note that lwpsignal() is
773 * called directly with P_WEXIT set to kill individual LWPs
774 * during exit, which is allowed.
776 if (p
->p_flags
& P_WEXIT
) {
781 lwkt_gettoken_shared(&p
->p_token
);
782 lp
= lwp_rb_tree_RB_LOOKUP(&p
->p_lwp_tree
, tid
);
784 lwkt_reltoken(&p
->p_token
);
789 lwkt_reltoken(&p
->p_token
);
792 lwpsignal(p
, lp
, sig
);
801 * If we come here, pid is a special broadcast pid.
802 * This doesn't mix with a tid.
808 case -1: /* broadcast signal */
809 t
= (dokillpg(sig
, 0, 1));
811 case 0: /* signal own process group */
812 t
= (dokillpg(sig
, 0, 0));
814 default: /* negative explicit process group */
815 t
= (dokillpg(sig
, -pid
, 0));
822 sys_kill(struct kill_args
*uap
)
826 error
= kern_kill(uap
->signum
, uap
->pid
, -1);
831 sys_lwp_kill(struct lwp_kill_args
*uap
)
834 pid_t pid
= uap
->pid
;
837 * A tid is mandatory for lwp_kill(), otherwise
838 * you could simply use kill().
844 * To save on a getpid() function call for intra-process
845 * signals, pid == -1 means current process.
848 pid
= curproc
->p_pid
;
850 error
= kern_kill(uap
->signum
, pid
, uap
->tid
);
855 * Send a signal to a process group.
858 gsignal(int pgid
, int sig
)
862 if (pgid
&& (pgrp
= pgfind(pgid
)))
863 pgsignal(pgrp
, sig
, 0);
867 * Send a signal to a process group. If checktty is 1,
868 * limit to members which have a controlling terminal.
870 * pg_lock interlocks against a fork that might be in progress, to
871 * ensure that the new child process picks up the signal.
874 pgsignal(struct pgrp
*pgrp
, int sig
, int checkctty
)
879 * Must interlock all signals against fork
883 lockmgr(&pgrp
->pg_lock
, LK_EXCLUSIVE
);
884 LIST_FOREACH(p
, &pgrp
->pg_members
, p_pglist
) {
885 if (checkctty
== 0 || p
->p_flags
& P_CONTROLT
)
888 lockmgr(&pgrp
->pg_lock
, LK_RELEASE
);
894 * Send a signal caused by a trap to the current lwp. If it will be caught
895 * immediately, deliver it with correct code. Otherwise, post it normally.
897 * These signals may ONLY be delivered to the specified lwp and may never
898 * be delivered to the process generically.
901 trapsignal(struct lwp
*lp
, int sig
, u_long code
)
903 struct proc
*p
= lp
->lwp_proc
;
904 struct sigacts
*ps
= p
->p_sigacts
;
907 * If we are a virtual kernel running an emulated user process
908 * context, switch back to the virtual kernel context before
909 * trying to post the signal.
911 if (lp
->lwp_vkernel
&& lp
->lwp_vkernel
->ve
) {
912 struct trapframe
*tf
= lp
->lwp_md
.md_regs
;
914 vkernel_trap(lp
, tf
);
917 if ((p
->p_flags
& P_TRACED
) == 0 && SIGISMEMBER(p
->p_sigcatch
, sig
) &&
918 !SIGISMEMBER(lp
->lwp_sigmask
, sig
)) {
919 lp
->lwp_ru
.ru_nsignals
++;
921 if (KTRPOINT(lp
->lwp_thread
, KTR_PSIG
))
922 ktrpsig(lp
, sig
, ps
->ps_sigact
[_SIG_IDX(sig
)],
923 &lp
->lwp_sigmask
, code
);
925 (*p
->p_sysent
->sv_sendsig
)(ps
->ps_sigact
[_SIG_IDX(sig
)], sig
,
926 &lp
->lwp_sigmask
, code
);
927 SIGSETOR(lp
->lwp_sigmask
, ps
->ps_catchmask
[_SIG_IDX(sig
)]);
928 if (!SIGISMEMBER(ps
->ps_signodefer
, sig
))
929 SIGADDSET(lp
->lwp_sigmask
, sig
);
930 if (SIGISMEMBER(ps
->ps_sigreset
, sig
)) {
932 * See kern_sigaction() for origin of this code.
934 SIGDELSET(p
->p_sigcatch
, sig
);
935 if (sig
!= SIGCONT
&&
936 sigprop(sig
) & SA_IGNORE
)
937 SIGADDSET(p
->p_sigignore
, sig
);
938 ps
->ps_sigact
[_SIG_IDX(sig
)] = SIG_DFL
;
941 lp
->lwp_code
= code
; /* XXX for core dump/debugger */
942 lp
->lwp_sig
= sig
; /* XXX to verify code */
943 lwpsignal(p
, lp
, sig
);
948 * Find a suitable lwp to deliver the signal to. Returns NULL if all
949 * lwps hold the signal blocked.
951 * Caller must hold p->p_token.
953 * Returns a lp or NULL. If non-NULL the lp is held and its token is
957 find_lwp_for_signal(struct proc
*p
, int sig
)
960 struct lwp
*run
, *sleep
, *stop
;
963 * If the running/preempted thread belongs to the proc to which
964 * the signal is being delivered and this thread does not block
965 * the signal, then we can avoid a context switch by delivering
966 * the signal to this thread, because it will return to userland
969 lp
= lwkt_preempted_proc();
970 if (lp
!= NULL
&& lp
->lwp_proc
== p
) {
972 lwkt_gettoken(&lp
->lwp_token
);
973 if (!SIGISMEMBER(lp
->lwp_sigmask
, sig
)) {
974 /* return w/ token held */
977 lwkt_reltoken(&lp
->lwp_token
);
981 run
= sleep
= stop
= NULL
;
982 FOREACH_LWP_IN_PROC(lp
, p
) {
984 * If the signal is being blocked by the lwp, then this
985 * lwp is not eligible for receiving the signal.
988 lwkt_gettoken(&lp
->lwp_token
);
990 if (SIGISMEMBER(lp
->lwp_sigmask
, sig
)) {
991 lwkt_reltoken(&lp
->lwp_token
);
996 switch (lp
->lwp_stat
) {
1000 lwkt_reltoken(&sleep
->lwp_token
);
1006 lwkt_reltoken(&stop
->lwp_token
);
1015 if (lp
->lwp_flags
& LWP_SINTR
) {
1017 lwkt_reltoken(&lp
->lwp_token
);
1021 lwkt_reltoken(&stop
->lwp_token
);
1029 lwkt_reltoken(&lp
->lwp_token
);
1035 lwkt_reltoken(&lp
->lwp_token
);
1038 lwkt_reltoken(&lp
->lwp_token
);
1051 else if (sleep
!= NULL
)
1058 * Send the signal to the process. If the signal has an action, the action
1059 * is usually performed by the target process rather than the caller; we add
1060 * the signal to the set of pending signals for the process.
1063 * o When a stop signal is sent to a sleeping process that takes the
1064 * default action, the process is stopped without awakening it.
1065 * o SIGCONT restarts stopped processes (or puts them back to sleep)
1066 * regardless of the signal action (eg, blocked or ignored).
1068 * Other ignored signals are discarded immediately.
1070 * If the caller wishes to call this function from a hard code section the
1071 * caller must already hold p->p_token (see kern_clock.c).
1076 ksignal(struct proc
*p
, int sig
)
1078 lwpsignal(p
, NULL
, sig
);
1082 * The core for ksignal. lp may be NULL, then a suitable thread
1083 * will be chosen. If not, lp MUST be a member of p.
1085 * If the caller wishes to call this function from a hard code section the
1086 * caller must already hold p->p_token.
1091 lwpsignal(struct proc
*p
, struct lwp
*lp
, int sig
)
1097 if (sig
> _SIG_MAXSIG
|| sig
<= 0) {
1098 kprintf("lwpsignal: signal %d\n", sig
);
1099 panic("lwpsignal signal number");
1102 KKASSERT(lp
== NULL
|| lp
->lwp_proc
== p
);
1105 * We don't want to race... well, all sorts of things. Get appropriate
1108 * Don't try to deliver a generic signal to an exiting process,
1109 * the signal structures could be in flux. We check the LWP later
1115 lwkt_gettoken(&lp
->lwp_token
);
1117 lwkt_gettoken(&p
->p_token
);
1118 if (p
->p_flags
& P_WEXIT
)
1122 prop
= sigprop(sig
);
1125 * If proc is traced, always give parent a chance;
1126 * if signal event is tracked by procfs, give *that*
1127 * a chance, as well.
1129 if ((p
->p_flags
& P_TRACED
) || (p
->p_stops
& S_SIG
)) {
1133 * Do not try to deliver signals to an exiting lwp other
1134 * than SIGKILL. Note that we must still deliver the signal
1135 * if P_WEXIT is set in the process flags.
1137 if (lp
&& (lp
->lwp_mpflags
& LWP_MP_WEXIT
) && sig
!= SIGKILL
) {
1138 lwkt_reltoken(&lp
->lwp_token
);
1145 * If the signal is being ignored, then we forget about
1146 * it immediately. NOTE: We don't set SIGCONT in p_sigignore,
1147 * and if it is set to SIG_IGN, action will be SIG_DFL here.
1149 if (SIGISMEMBER(p
->p_sigignore
, sig
)) {
1151 * Even if a signal is set SIG_IGN, it may still be
1152 * lurking in a kqueue.
1154 KNOTE(&p
->p_klist
, NOTE_SIGNAL
| sig
);
1156 lwkt_reltoken(&lp
->lwp_token
);
1159 lwkt_reltoken(&p
->p_token
);
1164 if (SIGISMEMBER(p
->p_sigcatch
, sig
))
1171 * If continuing, clear any pending STOP signals for the whole
1174 if (prop
& SA_CONT
) {
1175 lwkt_gettoken(&p
->p_token
);
1176 SIG_STOPSIGMASK_ATOMIC(p
->p_siglist
);
1177 lwkt_reltoken(&p
->p_token
);
1180 if (prop
& SA_STOP
) {
1182 * If sending a tty stop signal to a member of an orphaned
1183 * process group, discard the signal here if the action
1184 * is default; don't stop the process below if sleeping,
1185 * and don't clear any pending SIGCONT.
1187 if ((prop
& SA_TTYSTOP
) && p
->p_pgrp
->pg_jobc
== 0 &&
1188 action
== SIG_DFL
) {
1190 lwkt_reltoken(&lp
->lwp_token
);
1193 lwkt_reltoken(&p
->p_token
);
1198 lwkt_gettoken(&p
->p_token
);
1199 SIG_CONTSIGMASK_ATOMIC(p
->p_siglist
);
1200 p
->p_flags
&= ~P_CONTINUED
;
1201 lwkt_reltoken(&p
->p_token
);
1204 if (p
->p_stat
== SSTOP
) {
1206 * Nobody can handle this signal, add it to the lwp or
1207 * process pending list
1209 lwkt_gettoken(&p
->p_token
);
1210 if (p
->p_stat
!= SSTOP
) {
1211 lwkt_reltoken(&p
->p_token
);
1215 spin_lock(&lp
->lwp_spin
);
1216 SIGADDSET(lp
->lwp_siglist
, sig
);
1217 spin_unlock(&lp
->lwp_spin
);
1219 SIGADDSET_ATOMIC(p
->p_siglist
, sig
);
1223 * If the process is stopped and is being traced, then no
1224 * further action is necessary.
1226 if (p
->p_flags
& P_TRACED
) {
1227 lwkt_reltoken(&p
->p_token
);
1232 * If the process is stopped and receives a KILL signal,
1233 * make the process runnable.
1235 if (sig
== SIGKILL
) {
1236 proc_unstop(p
, SSTOP
);
1237 lwkt_reltoken(&p
->p_token
);
1238 goto active_process
;
1242 * If the process is stopped and receives a CONT signal,
1243 * then try to make the process runnable again.
1245 if (prop
& SA_CONT
) {
1247 * If SIGCONT is default (or ignored), we continue the
1248 * process but don't leave the signal in p_siglist, as
1249 * it has no further action. If SIGCONT is held, we
1250 * continue the process and leave the signal in
1251 * p_siglist. If the process catches SIGCONT, let it
1252 * handle the signal itself.
1254 * XXX what if the signal is being held blocked?
1256 * Token required to interlock kern_wait().
1257 * Reparenting can also cause a race so we have to
1262 lwkt_gettoken(&q
->p_token
);
1263 p
->p_flags
|= P_CONTINUED
;
1265 if (action
== SIG_DFL
)
1266 SIGDELSET_ATOMIC(p
->p_siglist
, sig
);
1267 proc_unstop(p
, SSTOP
);
1268 lwkt_reltoken(&q
->p_token
);
1270 lwkt_reltoken(&p
->p_token
);
1271 if (action
== SIG_CATCH
)
1272 goto active_process
;
1277 * If the process is stopped and receives another STOP
1278 * signal, we do not need to stop it again. If we did
1279 * the shell could get confused.
1281 * However, if the current/preempted lwp is part of the
1282 * process receiving the signal, we need to keep it,
1283 * so that this lwp can stop in issignal() later, as
1284 * we don't want to wait until it reaches userret!
1286 if (prop
& SA_STOP
) {
1287 if (lwkt_preempted_proc() == NULL
||
1288 lwkt_preempted_proc()->lwp_proc
!= p
) {
1289 SIGDELSET_ATOMIC(p
->p_siglist
, sig
);
1294 * Otherwise the process is stopped and it received some
1295 * signal, which does not change its stopped state. When
1296 * the process is continued a wakeup(p) will be issued which
1297 * will wakeup any threads sleeping in tstop().
1299 lwkt_reltoken(&p
->p_token
);
1305 /* else not stopped */
1309 * Never deliver a lwp-specific signal to a random lwp.
1312 /* NOTE: returns lp w/ token held */
1313 lp
= find_lwp_for_signal(p
, sig
);
1315 if (SIGISMEMBER(lp
->lwp_sigmask
, sig
)) {
1316 lwkt_reltoken(&lp
->lwp_token
);
1319 /* maintain proc token */
1322 lwkt_reltoken(&p
->p_token
);
1323 /* maintain lp token */
1329 * Deliver to the process generically if (1) the signal is being
1330 * sent to any thread or (2) we could not find a thread to deliver
1334 KNOTE(&p
->p_klist
, NOTE_SIGNAL
| sig
);
1335 SIGADDSET_ATOMIC(p
->p_siglist
, sig
);
1340 * Deliver to a specific LWP whether it masks it or not. It will
1341 * not be dispatched if masked but we must still deliver it.
1343 if (p
->p_nice
> NZERO
&& action
== SIG_DFL
&& (prop
& SA_KILL
) &&
1344 (p
->p_flags
& P_TRACED
) == 0) {
1345 lwkt_gettoken(&p
->p_token
);
1347 lwkt_reltoken(&p
->p_token
);
1351 * If the process receives a STOP signal which indeed needs to
1352 * stop the process, do so. If the process chose to catch the
1353 * signal, it will be treated like any other signal.
1355 if ((prop
& SA_STOP
) && action
== SIG_DFL
) {
1357 * If a child holding parent blocked, stopping
1358 * could cause deadlock. Take no action at this
1361 lwkt_gettoken(&p
->p_token
);
1362 if (p
->p_flags
& P_PPWAIT
) {
1363 SIGADDSET_ATOMIC(p
->p_siglist
, sig
);
1364 lwkt_reltoken(&p
->p_token
);
1369 * Do not actually try to manipulate the process, but simply
1370 * stop it. Lwps will stop as soon as they safely can.
1372 * Ignore stop if the process is exiting.
1374 if ((p
->p_flags
& P_WEXIT
) == 0) {
1376 proc_stop(p
, SSTOP
);
1378 lwkt_reltoken(&p
->p_token
);
1383 * If it is a CONT signal with default action, just ignore it.
1385 if ((prop
& SA_CONT
) && action
== SIG_DFL
)
1389 * Mark signal pending at this specific thread.
1391 spin_lock(&lp
->lwp_spin
);
1392 SIGADDSET(lp
->lwp_siglist
, sig
);
1393 spin_unlock(&lp
->lwp_spin
);
1399 lwkt_reltoken(&lp
->lwp_token
);
1402 lwkt_reltoken(&p
->p_token
);
1408 * Notify the LWP that a signal has arrived. The LWP does not have to be
1409 * sleeping on the current cpu.
1411 * p->p_token and lp->lwp_token must be held on call.
1413 * We can only safely schedule the thread on its current cpu and only if
1414 * one of the SINTR flags is set. If an SINTR flag is set AND we are on
1415 * the correct cpu we are properly interlocked, otherwise we could be
1416 * racing other thread transition states (or the lwp is on the user scheduler
1417 * runq but not scheduled) and must not do anything.
1419 * Since we hold the lwp token we know the lwp cannot be ripped out from
1420 * under us so we can safely hold it to prevent it from being ripped out
1421 * from under us if we are forced to IPI another cpu to make the local
1424 * Adjustment of lp->lwp_stat can only occur when we hold the lwp_token,
1425 * which we won't in an IPI so any fixups have to be done here, effectively
1426 * replicating part of what setrunnable() does.
1429 lwp_signotify(struct lwp
*lp
)
1433 ASSERT_LWKT_TOKEN_HELD(&lp
->lwp_token
);
1434 dtd
= lp
->lwp_thread
;
1437 if (lp
== lwkt_preempted_proc()) {
1439 * lwp is on the current cpu AND it is currently running
1440 * (we preempted it).
1443 } else if (lp
->lwp_flags
& LWP_SINTR
) {
1445 * lwp is sitting in tsleep() with PCATCH set
1447 if (dtd
->td_gd
== mycpu
) {
1451 * We can only adjust lwp_stat while we hold the
1452 * lwp_token, and we won't in the IPI function.
1455 if (lp
->lwp_stat
== LSSTOP
)
1456 lp
->lwp_stat
= LSSLEEP
;
1457 lwkt_send_ipiq(dtd
->td_gd
, lwp_signotify_remote
, lp
);
1459 } else if (dtd
->td_flags
& TDF_SINTR
) {
1461 * lwp is sitting in lwkt_sleep() with PCATCH set.
1463 if (dtd
->td_gd
== mycpu
) {
1467 * We can only adjust lwp_stat while we hold the
1468 * lwp_token, and we won't in the IPI function.
1471 if (lp
->lwp_stat
== LSSTOP
)
1472 lp
->lwp_stat
= LSSLEEP
;
1473 lwkt_send_ipiq(dtd
->td_gd
, lwp_signotify_remote
, lp
);
1477 * Otherwise the lwp is either in some uninterruptible state
1478 * or it is on the userland scheduler's runqueue waiting to
1479 * be scheduled to a cpu, or it is running in userland. We
1480 * generally want to send an IPI so a running target gets the
1481 * signal ASAP, otherwise a scheduler-tick worth of latency
1484 * Issue an IPI to the remote cpu to knock it into the kernel,
1485 * remote cpu will issue the cpu-local signotify() if the IPI
1486 * preempts the desired thread.
1488 if (dtd
->td_gd
!= mycpu
) {
1490 lwkt_send_ipiq(dtd
->td_gd
, lwp_signotify_remote
, lp
);
1497 * This function is called via an IPI so we cannot call setrunnable() here
1498 * (because while we hold the lp we don't own its token, and can't get it
1501 * We are interlocked by virtue of being on the same cpu as the target. If
1502 * we still are and LWP_SINTR or TDF_SINTR is set we can safely schedule
1503 * the target thread.
1506 lwp_signotify_remote(void *arg
)
1508 struct lwp
*lp
= arg
;
1509 thread_t td
= lp
->lwp_thread
;
1511 if (lp
== lwkt_preempted_proc()) {
1514 } else if (td
->td_gd
== mycpu
) {
1515 if ((lp
->lwp_flags
& LWP_SINTR
) ||
1516 (td
->td_flags
& TDF_SINTR
)) {
1521 lwkt_send_ipiq(td
->td_gd
, lwp_signotify_remote
, lp
);
1522 /* LWPHOLD() is forwarded to the target cpu */
1527 * Caller must hold p->p_token
1530 proc_stop(struct proc
*p
, int sig
)
1535 ASSERT_LWKT_TOKEN_HELD(&p
->p_token
);
1538 * If somebody raced us, be happy with it. SCORE overrides SSTOP.
1541 if (p
->p_stat
== SCORE
|| p
->p_stat
== SZOMB
)
1544 if (p
->p_stat
== SSTOP
|| p
->p_stat
== SCORE
||
1545 p
->p_stat
== SZOMB
) {
1551 FOREACH_LWP_IN_PROC(lp
, p
) {
1553 lwkt_gettoken(&lp
->lwp_token
);
1555 switch (lp
->lwp_stat
) {
1558 * Do nothing, we are already counted in
1565 * We're sleeping, but we will stop before
1566 * returning to userspace, so count us
1567 * as stopped as well. We set LWP_MP_WSTOP
1568 * to signal the lwp that it should not
1569 * increase p_nstopped when reaching tstop().
1571 * LWP_MP_WSTOP is protected by lp->lwp_token.
1573 if ((lp
->lwp_mpflags
& LWP_MP_WSTOP
) == 0) {
1574 atomic_set_int(&lp
->lwp_mpflags
, LWP_MP_WSTOP
);
1581 * We might notify ourself, but that's not
1587 lwkt_reltoken(&lp
->lwp_token
);
1591 if (p
->p_nstopped
== p
->p_nthreads
) {
1593 * Token required to interlock kern_wait(). Reparenting can
1594 * also cause a race so we have to hold (q).
1598 lwkt_gettoken(&q
->p_token
);
1599 p
->p_flags
&= ~P_WAITED
;
1601 if ((q
->p_sigacts
->ps_flag
& PS_NOCLDSTOP
) == 0)
1602 ksignal(p
->p_pptr
, SIGCHLD
);
1603 lwkt_reltoken(&q
->p_token
);
1609 * Caller must hold p_token
1612 proc_unstop(struct proc
*p
, int sig
)
1616 ASSERT_LWKT_TOKEN_HELD(&p
->p_token
);
1618 if (p
->p_stat
!= sig
)
1621 p
->p_stat
= SACTIVE
;
1623 FOREACH_LWP_IN_PROC(lp
, p
) {
1625 lwkt_gettoken(&lp
->lwp_token
);
1627 switch (lp
->lwp_stat
) {
1630 * Uh? Not stopped? Well, I guess that's okay.
1633 kprintf("proc_unstop: lwp %d/%d not sleeping\n",
1634 p
->p_pid
, lp
->lwp_tid
);
1639 * Still sleeping. Don't bother waking it up.
1640 * However, if this thread was counted as
1641 * stopped, undo this.
1643 * Nevertheless we call setrunnable() so that it
1644 * will wake up in case a signal or timeout arrived
1647 * LWP_MP_WSTOP is protected by lp->lwp_token.
1649 if (lp
->lwp_mpflags
& LWP_MP_WSTOP
) {
1650 atomic_clear_int(&lp
->lwp_mpflags
,
1655 kprintf("proc_unstop: lwp %d/%d sleeping, not stopped\n",
1656 p
->p_pid
, lp
->lwp_tid
);
1662 * This handles any lwp's waiting in a tsleep with
1669 lwkt_reltoken(&lp
->lwp_token
);
1674 * This handles any lwp's waiting in tstop(). We have interlocked
1675 * the setting of p_stat by acquiring and releasing each lpw's
1682 * Wait for all threads except the current thread to stop.
1685 proc_stopwait(struct proc
*p
)
1687 while ((p
->p_stat
== SSTOP
|| p
->p_stat
== SCORE
) &&
1688 p
->p_nstopped
< p
->p_nthreads
- 1) {
1689 tsleep_interlock(&p
->p_nstopped
, 0);
1690 if (p
->p_nstopped
< p
->p_nthreads
- 1) {
1691 tsleep(&p
->p_nstopped
, PINTERLOCKED
, "stopwt", hz
);
1700 kern_sigtimedwait(sigset_t waitset
, siginfo_t
*info
, struct timespec
*timeout
)
1702 sigset_t savedmask
, set
;
1703 struct proc
*p
= curproc
;
1704 struct lwp
*lp
= curthread
->td_lwp
;
1705 int error
, sig
, hz
, timevalid
= 0;
1706 struct timespec rts
, ets
, ts
;
1711 ets
.tv_sec
= 0; /* silence compiler warning */
1712 ets
.tv_nsec
= 0; /* silence compiler warning */
1713 SIG_CANTMASK(waitset
);
1714 savedmask
= lp
->lwp_sigmask
;
1717 if (timeout
->tv_sec
>= 0 && timeout
->tv_nsec
>= 0 &&
1718 timeout
->tv_nsec
< 1000000000) {
1720 getnanouptime(&rts
);
1722 timespecadd(&ets
, timeout
);
1727 set
= lwp_sigpend(lp
);
1728 SIGSETAND(set
, waitset
);
1729 if ((sig
= sig_ffs(&set
)) != 0) {
1730 SIGFILLSET(lp
->lwp_sigmask
);
1731 SIGDELSET(lp
->lwp_sigmask
, sig
);
1732 SIG_CANTMASK(lp
->lwp_sigmask
);
1733 sig
= issignal(lp
, 1, 0);
1735 * It may be a STOP signal, in the case, issignal
1736 * returns 0, because we may stop there, and new
1737 * signal can come in, we should restart if we got
1747 * Previous checking got nothing, and we retried but still
1748 * got nothing, we should return the error status.
1754 * POSIX says this must be checked after looking for pending
1758 if (timevalid
== 0) {
1762 getnanouptime(&rts
);
1763 if (timespeccmp(&rts
, &ets
, >=)) {
1768 timespecsub(&ts
, &rts
);
1769 TIMESPEC_TO_TIMEVAL(&tv
, &ts
);
1770 hz
= tvtohz_high(&tv
);
1775 lp
->lwp_sigmask
= savedmask
;
1776 SIGSETNAND(lp
->lwp_sigmask
, waitset
);
1778 * We won't ever be woken up. Instead, our sleep will
1779 * be broken in lwpsignal().
1781 error
= tsleep(&p
->p_sigacts
, PCATCH
, "sigwt", hz
);
1783 if (error
== ERESTART
) {
1784 /* can not restart a timeout wait. */
1786 } else if (error
== EAGAIN
) {
1787 /* will calculate timeout by ourself. */
1794 lp
->lwp_sigmask
= savedmask
;
1797 bzero(info
, sizeof(*info
));
1798 info
->si_signo
= sig
;
1799 spin_lock(&lp
->lwp_spin
);
1800 lwp_delsig(lp
, sig
, 1); /* take the signal! */
1801 spin_unlock(&lp
->lwp_spin
);
1803 if (sig
== SIGKILL
) {
1816 sys_sigtimedwait(struct sigtimedwait_args
*uap
)
1819 struct timespec
*timeout
;
1825 error
= copyin(uap
->timeout
, &ts
, sizeof(ts
));
1832 error
= copyin(uap
->set
, &set
, sizeof(set
));
1835 error
= kern_sigtimedwait(set
, &info
, timeout
);
1839 error
= copyout(&info
, uap
->info
, sizeof(info
));
1840 /* Repost if we got an error. */
1844 * This could transform a thread-specific signal to another
1845 * thread / process pending signal.
1848 ksignal(curproc
, info
.si_signo
);
1850 uap
->sysmsg_result
= info
.si_signo
;
1859 sys_sigwaitinfo(struct sigwaitinfo_args
*uap
)
1865 error
= copyin(uap
->set
, &set
, sizeof(set
));
1868 error
= kern_sigtimedwait(set
, &info
, NULL
);
1872 error
= copyout(&info
, uap
->info
, sizeof(info
));
1873 /* Repost if we got an error. */
1877 * This could transform a thread-specific signal to another
1878 * thread / process pending signal.
1881 ksignal(curproc
, info
.si_signo
);
1883 uap
->sysmsg_result
= info
.si_signo
;
1889 * If the current process has received a signal that would interrupt a
1890 * system call, return EINTR or ERESTART as appropriate.
1893 iscaught(struct lwp
*lp
)
1895 struct proc
*p
= lp
->lwp_proc
;
1899 if ((sig
= CURSIG(lp
)) != 0) {
1900 if (SIGISMEMBER(p
->p_sigacts
->ps_sigintr
, sig
))
1905 return(EWOULDBLOCK
);
1909 * If the current lwp/proc has received a signal (should be caught or cause
1910 * termination, should interrupt current syscall), return the signal number.
1911 * Stop signals with default action are processed immediately, then cleared;
1912 * they aren't returned. This is checked after each entry to the system for
1913 * a syscall or trap (though this can usually be done without calling issignal
1914 * by checking the pending signal masks in the CURSIG macro).
1916 * This routine is called via CURSIG/__cursig. We will acquire and release
1917 * p->p_token but if the caller needs to interlock the test the caller must
1918 * also hold p->p_token.
1920 * while (sig = CURSIG(curproc))
1924 issignal(struct lwp
*lp
, int maytrace
, int *ptokp
)
1926 struct proc
*p
= lp
->lwp_proc
;
1932 int traced
= (p
->p_flags
& P_TRACED
) || (p
->p_stops
& S_SIG
);
1937 * If this process is supposed to stop, stop this thread.
1939 if (STOPLWP(p
, lp
)) {
1940 lwkt_gettoken(&p
->p_token
);
1942 lwkt_reltoken(&p
->p_token
);
1946 * Quick check without token
1948 mask
= lwp_sigpend(lp
);
1949 SIGSETNAND(mask
, lp
->lwp_sigmask
);
1950 if (p
->p_flags
& P_PPWAIT
)
1951 SIG_STOPSIGMASK(mask
);
1952 if (SIGISEMPTY(mask
)) /* no signal to send */
1956 * If the signal is a member of the process signal set
1957 * we need p_token (even if it is also a member of the
1960 sig
= sig_ffs(&mask
);
1961 if (SIGISMEMBER(p
->p_siglist
, sig
)) {
1963 * Recheck with token
1966 lwkt_gettoken(&p
->p_token
);
1968 mask
= lwp_sigpend(lp
);
1969 SIGSETNAND(mask
, lp
->lwp_sigmask
);
1970 if (p
->p_flags
& P_PPWAIT
)
1971 SIG_STOPSIGMASK(mask
);
1972 if (SIGISEMPTY(mask
)) { /* no signal to send */
1973 /* haveptok is TRUE */
1974 lwkt_reltoken(&p
->p_token
);
1977 sig
= sig_ffs(&mask
);
1980 STOPEVENT(p
, S_SIG
, sig
);
1983 * We should see pending but ignored signals
1984 * only if P_TRACED was on when they were posted.
1986 if (SIGISMEMBER(p
->p_sigignore
, sig
) && (traced
== 0)) {
1987 spin_lock(&lp
->lwp_spin
);
1988 lwp_delsig(lp
, sig
, haveptok
);
1989 spin_unlock(&lp
->lwp_spin
);
1991 lwkt_reltoken(&p
->p_token
);
1995 (p
->p_flags
& P_TRACED
) &&
1996 (p
->p_flags
& P_PPWAIT
) == 0) {
1998 * If traced, always stop, and stay stopped until
1999 * released by the parent.
2001 * NOTE: SSTOP may get cleared during the loop,
2002 * but we do not re-notify the parent if we have
2003 * to loop several times waiting for the parent
2004 * to let us continue.
2006 * XXX not sure if this is still true
2008 if (haveptok
== 0) {
2009 lwkt_gettoken(&p
->p_token
);
2013 proc_stop(p
, SSTOP
);
2016 } while (!trace_req(p
) && (p
->p_flags
& P_TRACED
));
2019 * If parent wants us to take the signal,
2020 * then it will leave it in p->p_xstat;
2021 * otherwise we just look for signals again.
2023 spin_lock(&lp
->lwp_spin
);
2024 lwp_delsig(lp
, sig
, 1); /* clear old signal */
2025 spin_unlock(&lp
->lwp_spin
);
2028 /* haveptok is TRUE */
2029 lwkt_reltoken(&p
->p_token
);
2034 * Put the new signal into p_siglist. If the
2035 * signal is being masked, look for other signals.
2037 * XXX lwp might need a call to ksignal()
2039 SIGADDSET_ATOMIC(p
->p_siglist
, sig
);
2040 if (SIGISMEMBER(lp
->lwp_sigmask
, sig
)) {
2041 /* haveptok is TRUE */
2042 lwkt_reltoken(&p
->p_token
);
2047 * If the traced bit got turned off, go back up
2048 * to the top to rescan signals. This ensures
2049 * that p_sig* and ps_sigact are consistent.
2051 if ((p
->p_flags
& P_TRACED
) == 0) {
2052 /* haveptok is TRUE */
2053 lwkt_reltoken(&p
->p_token
);
2059 * p_token may be held here
2061 prop
= sigprop(sig
);
2064 * Decide whether the signal should be returned.
2065 * Return the signal's number, or fall through
2066 * to clear it from the pending mask.
2068 switch ((intptr_t)p
->p_sigacts
->ps_sigact
[_SIG_IDX(sig
)]) {
2069 case (intptr_t)SIG_DFL
:
2071 * Don't take default actions on system processes.
2073 if (p
->p_pid
<= 1) {
2076 * Are you sure you want to ignore SIGSEGV
2079 kprintf("Process (pid %lu) got signal %d\n",
2080 (u_long
)p
->p_pid
, sig
);
2082 break; /* == ignore */
2086 * Handle the in-kernel checkpoint action
2088 if (prop
& SA_CKPT
) {
2089 if (haveptok
== 0) {
2090 lwkt_gettoken(&p
->p_token
);
2093 checkpoint_signal_handler(lp
);
2098 * If there is a pending stop signal to process
2099 * with default action, stop here,
2100 * then clear the signal. However,
2101 * if process is member of an orphaned
2102 * process group, ignore tty stop signals.
2104 if (prop
& SA_STOP
) {
2105 if (haveptok
== 0) {
2106 lwkt_gettoken(&p
->p_token
);
2109 if (p
->p_flags
& P_TRACED
||
2110 (p
->p_pgrp
->pg_jobc
== 0 &&
2112 break; /* == ignore */
2113 if ((p
->p_flags
& P_WEXIT
) == 0) {
2115 proc_stop(p
, SSTOP
);
2119 } else if (prop
& SA_IGNORE
) {
2121 * Except for SIGCONT, shouldn't get here.
2122 * Default action is to ignore; drop it.
2124 break; /* == ignore */
2129 lwkt_reltoken(&p
->p_token
);
2135 case (intptr_t)SIG_IGN
:
2137 * Masking above should prevent us ever trying
2138 * to take action on an ignored signal other
2139 * than SIGCONT, unless process is traced.
2141 if ((prop
& SA_CONT
) == 0 &&
2142 (p
->p_flags
& P_TRACED
) == 0)
2143 kprintf("issignal\n");
2144 break; /* == ignore */
2148 * This signal has an action, let
2149 * postsig() process it.
2154 lwkt_reltoken(&p
->p_token
);
2157 spin_lock(&lp
->lwp_spin
);
2158 lwp_delsig(lp
, sig
, haveptok
); /* take the signal! */
2159 spin_unlock(&lp
->lwp_spin
);
2162 lwkt_reltoken(&p
->p_token
);
2168 * Take the action for the specified signal from the current set of
2171 * haveptok indicates whether the caller is holding p->p_token. If the
2172 * caller is, we are responsible for releasing it.
2174 * This routine can only be called from the top-level trap from usermode.
2175 * It is expecting to be able to modify the top-level stack frame.
2178 postsig(int sig
, int haveptok
)
2180 struct lwp
*lp
= curthread
->td_lwp
;
2181 struct proc
*p
= lp
->lwp_proc
;
2182 struct sigacts
*ps
= p
->p_sigacts
;
2184 sigset_t returnmask
;
2187 KASSERT(sig
!= 0, ("postsig"));
2190 * If we are a virtual kernel running an emulated user process
2191 * context, switch back to the virtual kernel context before
2192 * trying to post the signal.
2194 if (lp
->lwp_vkernel
&& lp
->lwp_vkernel
->ve
) {
2195 struct trapframe
*tf
= lp
->lwp_md
.md_regs
;
2197 vkernel_trap(lp
, tf
);
2200 KNOTE(&p
->p_klist
, NOTE_SIGNAL
| sig
);
2202 spin_lock(&lp
->lwp_spin
);
2203 lwp_delsig(lp
, sig
, haveptok
);
2204 spin_unlock(&lp
->lwp_spin
);
2205 action
= ps
->ps_sigact
[_SIG_IDX(sig
)];
2207 if (KTRPOINT(lp
->lwp_thread
, KTR_PSIG
))
2208 ktrpsig(lp
, sig
, action
, lp
->lwp_flags
& LWP_OLDMASK
?
2209 &lp
->lwp_oldsigmask
: &lp
->lwp_sigmask
, 0);
2212 * We don't need p_token after this point.
2215 lwkt_reltoken(&p
->p_token
);
2217 STOPEVENT(p
, S_SIG
, sig
);
2219 if (action
== SIG_DFL
) {
2221 * Default action, where the default is to kill
2222 * the process. (Other cases were ignored above.)
2228 * If we get here, the signal must be caught.
2230 KASSERT(action
!= SIG_IGN
&& !SIGISMEMBER(lp
->lwp_sigmask
, sig
),
2231 ("postsig action"));
2234 * Reset the signal handler if asked to
2236 if (SIGISMEMBER(ps
->ps_sigreset
, sig
)) {
2238 * See kern_sigaction() for origin of this code.
2240 SIGDELSET(p
->p_sigcatch
, sig
);
2241 if (sig
!= SIGCONT
&&
2242 sigprop(sig
) & SA_IGNORE
)
2243 SIGADDSET(p
->p_sigignore
, sig
);
2244 ps
->ps_sigact
[_SIG_IDX(sig
)] = SIG_DFL
;
2248 * Set the signal mask and calculate the mask to restore
2249 * when the signal function returns.
2251 * Special case: user has done a sigsuspend. Here the
2252 * current mask is not of interest, but rather the
2253 * mask from before the sigsuspend is what we want
2254 * restored after the signal processing is completed.
2256 if (lp
->lwp_flags
& LWP_OLDMASK
) {
2257 returnmask
= lp
->lwp_oldsigmask
;
2258 lp
->lwp_flags
&= ~LWP_OLDMASK
;
2260 returnmask
= lp
->lwp_sigmask
;
2263 SIGSETOR(lp
->lwp_sigmask
, ps
->ps_catchmask
[_SIG_IDX(sig
)]);
2264 if (!SIGISMEMBER(ps
->ps_signodefer
, sig
))
2265 SIGADDSET(lp
->lwp_sigmask
, sig
);
2267 lp
->lwp_ru
.ru_nsignals
++;
2268 if (lp
->lwp_sig
!= sig
) {
2271 code
= lp
->lwp_code
;
2275 (*p
->p_sysent
->sv_sendsig
)(action
, sig
, &returnmask
, code
);
2280 * Kill the current process for stated reason.
2283 killproc(struct proc
*p
, char *why
)
2285 log(LOG_ERR
, "pid %d (%s), uid %d, was killed: %s\n",
2286 p
->p_pid
, p
->p_comm
,
2287 p
->p_ucred
? p
->p_ucred
->cr_uid
: -1, why
);
2288 ksignal(p
, SIGKILL
);
2292 * Force the current process to exit with the specified signal, dumping core
2293 * if appropriate. We bypass the normal tests for masked and caught signals,
2294 * allowing unrecoverable failures to terminate the process without changing
2295 * signal state. Mark the accounting record with the signal termination.
2296 * If dumping core, save the signal number for the debugger. Calls exit and
2299 * This routine does not return.
2302 sigexit(struct lwp
*lp
, int sig
)
2304 struct proc
*p
= lp
->lwp_proc
;
2306 lwkt_gettoken(&p
->p_token
);
2307 p
->p_acflag
|= AXSIG
;
2308 if (sigprop(sig
) & SA_CORE
) {
2312 * All threads must be stopped before we can safely coredump.
2313 * Stop threads using SCORE, which cannot be overridden.
2315 if (p
->p_stat
!= SCORE
) {
2316 proc_stop(p
, SCORE
);
2319 if (coredump(lp
, sig
) == 0)
2325 * Log signals which would cause core dumps
2326 * (Log as LOG_INFO to appease those who don't want
2328 * XXX : Todo, as well as euid, write out ruid too
2330 if (kern_logsigexit
) {
2332 "pid %d (%s), uid %d: exited on signal %d%s\n",
2333 p
->p_pid
, p
->p_comm
,
2334 p
->p_ucred
? p
->p_ucred
->cr_uid
: -1,
2336 sig
& WCOREFLAG
? " (core dumped)" : "");
2339 lwkt_reltoken(&p
->p_token
);
2340 exit1(W_EXITCODE(0, sig
));
2344 static char corefilename
[MAXPATHLEN
+1] = {"%N.core"};
2345 SYSCTL_STRING(_kern
, OID_AUTO
, corefile
, CTLFLAG_RW
, corefilename
,
2346 sizeof(corefilename
), "process corefile name format string");
2349 * expand_name(name, uid, pid)
2350 * Expand the name described in corefilename, using name, uid, and pid.
2351 * corefilename is a kprintf-like string, with three format specifiers:
2352 * %N name of process ("name")
2353 * %P process id (pid)
2355 * For example, "%N.core" is the default; they can be disabled completely
2356 * by using "/dev/null", or all core files can be stored in "/cores/%U/%N-%P".
2357 * This is controlled by the sysctl variable kern.corefile (see above).
2361 expand_name(const char *name
, uid_t uid
, pid_t pid
)
2364 char buf
[11]; /* Buffer for pid/uid -- max 4B */
2366 char *format
= corefilename
;
2369 temp
= kmalloc(MAXPATHLEN
+ 1, M_TEMP
, M_NOWAIT
);
2372 namelen
= strlen(name
);
2373 for (i
= 0, n
= 0; n
< MAXPATHLEN
&& format
[i
]; i
++) {
2375 switch (format
[i
]) {
2376 case '%': /* Format character */
2378 switch (format
[i
]) {
2382 case 'N': /* process name */
2383 if ((n
+ namelen
) > MAXPATHLEN
) {
2384 log(LOG_ERR
, "pid %d (%s), uid (%u): Path `%s%s' is too long\n",
2385 pid
, name
, uid
, temp
, name
);
2386 kfree(temp
, M_TEMP
);
2389 memcpy(temp
+n
, name
, namelen
);
2392 case 'P': /* process id */
2393 l
= ksprintf(buf
, "%u", pid
);
2394 if ((n
+ l
) > MAXPATHLEN
) {
2395 log(LOG_ERR
, "pid %d (%s), uid (%u): Path `%s%s' is too long\n",
2396 pid
, name
, uid
, temp
, name
);
2397 kfree(temp
, M_TEMP
);
2400 memcpy(temp
+n
, buf
, l
);
2403 case 'U': /* user id */
2404 l
= ksprintf(buf
, "%u", uid
);
2405 if ((n
+ l
) > MAXPATHLEN
) {
2406 log(LOG_ERR
, "pid %d (%s), uid (%u): Path `%s%s' is too long\n",
2407 pid
, name
, uid
, temp
, name
);
2408 kfree(temp
, M_TEMP
);
2411 memcpy(temp
+n
, buf
, l
);
2415 log(LOG_ERR
, "Unknown format character %c in `%s'\n", format
[i
], format
);
2419 temp
[n
++] = format
[i
];
2427 * Dump a process' core. The main routine does some
2428 * policy checking, and creates the name of the coredump;
2429 * then it passes on a vnode and a size limit to the process-specific
2430 * coredump routine if there is one; if there _is not_ one, it returns
2431 * ENOSYS; otherwise it returns the error from the process-specific routine.
2433 * The parameter `lp' is the lwp which triggered the coredump.
2437 coredump(struct lwp
*lp
, int sig
)
2439 struct proc
*p
= lp
->lwp_proc
;
2441 struct ucred
*cred
= p
->p_ucred
;
2443 struct nlookupdata nd
;
2446 char *name
; /* name of corefile */
2449 STOPEVENT(p
, S_CORE
, 0);
2451 if (((sugid_coredump
== 0) && p
->p_flags
& P_SUGID
) || do_coredump
== 0)
2455 * Note that the bulk of limit checking is done after
2456 * the corefile is created. The exception is if the limit
2457 * for corefiles is 0, in which case we don't bother
2458 * creating the corefile at all. This layout means that
2459 * a corefile is truncated instead of not being created,
2460 * if it is larger than the limit.
2462 limit
= p
->p_rlimit
[RLIMIT_CORE
].rlim_cur
;
2466 name
= expand_name(p
->p_comm
, p
->p_ucred
->cr_uid
, p
->p_pid
);
2469 error
= nlookup_init(&nd
, name
, UIO_SYSSPACE
, NLC_LOCKVP
);
2471 error
= vn_open(&nd
, NULL
,
2472 O_CREAT
| FWRITE
| O_NOFOLLOW
,
2474 kfree(name
, M_TEMP
);
2480 nd
.nl_open_vp
= NULL
;
2484 lf
.l_whence
= SEEK_SET
;
2487 lf
.l_type
= F_WRLCK
;
2488 error
= VOP_ADVLOCK(vp
, (caddr_t
)p
, F_SETLK
, &lf
, 0);
2492 /* Don't dump to non-regular files or files with links. */
2493 if (vp
->v_type
!= VREG
||
2494 VOP_GETATTR(vp
, &vattr
) || vattr
.va_nlink
!= 1) {
2499 /* Don't dump to files current user does not own */
2500 if (vattr
.va_uid
!= p
->p_ucred
->cr_uid
) {
2506 vn_lock(vp
, LK_EXCLUSIVE
| LK_RETRY
);
2508 VOP_SETATTR(vp
, &vattr
, cred
);
2509 p
->p_acflag
|= ACORE
;
2512 error
= p
->p_sysent
->sv_coredump
?
2513 p
->p_sysent
->sv_coredump(lp
, sig
, vp
, limit
) : ENOSYS
;
2516 lf
.l_type
= F_UNLCK
;
2517 VOP_ADVLOCK(vp
, (caddr_t
)p
, F_UNLCK
, &lf
, 0);
2519 error1
= vn_close(vp
, FWRITE
, NULL
);
2526 * Nonexistent system call-- signal process (may want to handle it).
2527 * Flag error in case process won't see signal immediately (blocked or ignored).
2533 sys_nosys(struct nosys_args
*args
)
2535 lwpsignal(curproc
, curthread
->td_lwp
, SIGSYS
);
2540 * Send a SIGIO or SIGURG signal to a process or process group using
2541 * stored credentials rather than those of the current process.
2544 pgsigio(struct sigio
*sigio
, int sig
, int checkctty
)
2549 if (sigio
->sio_pgid
> 0) {
2550 if (CANSIGIO(sigio
->sio_ruid
, sigio
->sio_ucred
,
2552 ksignal(sigio
->sio_proc
, sig
);
2553 } else if (sigio
->sio_pgid
< 0) {
2555 struct pgrp
*pg
= sigio
->sio_pgrp
;
2558 * Must interlock all signals against fork
2561 lockmgr(&pg
->pg_lock
, LK_EXCLUSIVE
);
2562 LIST_FOREACH(p
, &pg
->pg_members
, p_pglist
) {
2563 if (CANSIGIO(sigio
->sio_ruid
, sigio
->sio_ucred
, p
) &&
2564 (checkctty
== 0 || (p
->p_flags
& P_CONTROLT
)))
2567 lockmgr(&pg
->pg_lock
, LK_RELEASE
);
2573 filt_sigattach(struct knote
*kn
)
2575 struct proc
*p
= curproc
;
2577 kn
->kn_ptr
.p_proc
= p
;
2578 kn
->kn_flags
|= EV_CLEAR
; /* automatically set */
2580 /* XXX lock the proc here while adding to the list? */
2581 knote_insert(&p
->p_klist
, kn
);
2587 filt_sigdetach(struct knote
*kn
)
2589 struct proc
*p
= kn
->kn_ptr
.p_proc
;
2591 knote_remove(&p
->p_klist
, kn
);
2595 * signal knotes are shared with proc knotes, so we apply a mask to
2596 * the hint in order to differentiate them from process hints. This
2597 * could be avoided by using a signal-specific knote list, but probably
2598 * isn't worth the trouble.
2601 filt_signal(struct knote
*kn
, long hint
)
2603 if (hint
& NOTE_SIGNAL
) {
2604 hint
&= ~NOTE_SIGNAL
;
2606 if (kn
->kn_id
== hint
)
2609 return (kn
->kn_data
!= 0);