37 #include <sys/cdefs.h>
40 #include "opt_compat.h"
41 #include "opt_kdtrace.h"
42 #include "opt_ktrace.h"
44 #include "opt_procdesc.h"
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/signalvar.h>
49 #include <sys/vnode.h>
51 #include <sys/capability.h>
52 #include <sys/condvar.h>
53 #include <sys/event.h>
54 #include <sys/fcntl.h>
55 #include <sys/imgact.h>
56 #include <sys/kernel.h>
58 #include <sys/ktrace.h>
60 #include <sys/malloc.h>
61 #include <sys/mutex.h>
62 #include <sys/namei.h>
64 #include <sys/procdesc.h>
65 #include <sys/posix4.h>
66 #include <sys/pioctl.h>
67 #include <sys/racct.h>
68 #include <sys/resourcevar.h>
71 #include <sys/sleepqueue.h>
75 #include <sys/syscallsubr.h>
76 #include <sys/sysctl.h>
77 #include <sys/sysent.h>
78 #include <sys/syslog.h>
79 #include <sys/sysproto.h>
80 #include <sys/timers.h>
81 #include <sys/unistd.h>
84 #include <vm/vm_extern.h>
89 #include <machine/cpu.h>
91 #include <security/audit/audit.h>
97 "struct proc *",
"int");
101 "struct thread *",
"struct proc *",
"int");
103 static int coredump(
struct thread *);
104 static char *
expand_name(
const char *, uid_t, pid_t,
struct thread *,
int);
105 static int killpg1(
struct thread *td,
int sig,
int pgid,
int all,
107 static int issignal(
struct thread *td,
int stop_allowed);
109 static void tdsigwakeup(
struct thread *,
int, sig_t,
int);
114 static struct thread *
sigtd(
struct proc *p,
int sig,
int prop);
126 SYSCTL_INT(_kern, KERN_LOGSIGEXIT, logsigexit, CTLFLAG_RW,
128 "Log processes quitting on abnormal signals to syslog(3)");
131 SYSCTL_INT(_kern, OID_AUTO, forcesigexit, CTLFLAG_RW,
134 static SYSCTL_NODE(_kern, OID_AUTO, sigqueue, CTLFLAG_RW, 0,
135 "POSIX real time signal");
143 SYSCTL_INT(_kern_sigqueue, OID_AUTO, preallocate, CTLFLAG_RD,
147 SYSCTL_INT(_kern_sigqueue, OID_AUTO, overflow, CTLFLAG_RD,
151 SYSCTL_INT(_kern_sigqueue, OID_AUTO, alloc_fail, CTLFLAG_RD,
161 #define CANSIGIO(cr1, cr2) \
162 ((cr1)->cr_uid == 0 || \
163 (cr1)->cr_ruid == (cr2)->cr_ruid || \
164 (cr1)->cr_uid == (cr2)->cr_ruid || \
165 (cr1)->cr_ruid == (cr2)->cr_uid || \
166 (cr1)->cr_uid == (cr2)->cr_uid)
170 &
sugid_coredump, 0,
"Allow setuid and setgid processes to dump core");
178 0,
"Enable setting the NODUMP flag on coredump files");
188 #define SA_TTYSTOP 0x08
189 #define SA_IGNORE 0x10
191 #define SA_CANTMASK 0x40
234 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
236 p31b_setcfg(CTL_P1003_1B_REALTIME_SIGNALS, _POSIX_REALTIME_SIGNALS);
237 p31b_setcfg(CTL_P1003_1B_RTSIG_MAX, SIGRTMAX - SIGRTMIN + 1);
263 if (!(ksi->ksi_flags & KSI_EXT)) {
273 SIGEMPTYSET(list->sq_signals);
274 SIGEMPTYSET(list->sq_kill);
275 TAILQ_INIT(&list->sq_list);
277 list->sq_flags = SQ_INIT;
289 struct proc *p = sq->sq_proc;
290 struct ksiginfo *ksi, *next;
293 KASSERT(sq->sq_flags & SQ_INIT, (
"sigqueue not inited"));
295 if (!SIGISMEMBER(sq->sq_signals, signo))
298 if (SIGISMEMBER(sq->sq_kill, signo)) {
300 SIGDELSET(sq->sq_kill, signo);
303 TAILQ_FOREACH_SAFE(ksi, &sq->sq_list, ksi_link, next) {
304 if (ksi->ksi_signo == signo) {
306 TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
307 ksi->ksi_sigq = NULL;
308 ksiginfo_copy(ksi, si);
318 SIGDELSET(sq->sq_signals, signo);
319 si->ksi_signo = signo;
330 if (ksi == NULL || (sq = ksi->ksi_sigq) == NULL)
334 TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
335 ksi->ksi_sigq = NULL;
336 if (!(ksi->ksi_flags & KSI_EXT) && p != NULL)
339 for (kp = TAILQ_FIRST(&sq->sq_list); kp != NULL;
340 kp = TAILQ_NEXT(kp, ksi_link)) {
341 if (kp->ksi_signo == ksi->ksi_signo)
344 if (kp == NULL && !SIGISMEMBER(sq->sq_kill, ksi->ksi_signo))
345 SIGDELSET(sq->sq_signals, ksi->ksi_signo);
351 struct proc *p = sq->sq_proc;
352 struct ksiginfo *ksi;
355 KASSERT(sq->sq_flags & SQ_INIT, (
"sigqueue not inited"));
357 if (signo == SIGKILL || signo == SIGSTOP || si == NULL) {
358 SIGADDSET(sq->sq_kill, signo);
363 if (si->ksi_flags & KSI_INS) {
364 if (si->ksi_flags & KSI_HEAD)
365 TAILQ_INSERT_HEAD(&sq->sq_list, si, ksi_link);
367 TAILQ_INSERT_TAIL(&sq->sq_list, si, ksi_link);
373 SIGADDSET(sq->sq_kill, signo);
386 ksiginfo_copy(si, ksi);
387 ksi->ksi_signo = signo;
388 if (si->ksi_flags & KSI_HEAD)
389 TAILQ_INSERT_HEAD(&sq->sq_list, ksi, ksi_link);
391 TAILQ_INSERT_TAIL(&sq->sq_list, ksi, ksi_link);
395 if ((si->ksi_flags & KSI_TRAP) != 0 ||
396 (si->ksi_flags & KSI_SIGQ) == 0) {
398 SIGADDSET(sq->sq_kill, signo);
407 SIGADDSET(sq->sq_signals, signo);
414 struct proc *p = sq->sq_proc;
417 KASSERT(sq->sq_flags & SQ_INIT, (
"sigqueue not inited"));
420 PROC_LOCK_ASSERT(p, MA_OWNED);
422 while ((ksi = TAILQ_FIRST(&sq->sq_list)) != NULL) {
423 TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
424 ksi->ksi_sigq = NULL;
429 SIGEMPTYSET(sq->sq_signals);
430 SIGEMPTYSET(sq->sq_kill);
437 struct proc *p1, *p2;
438 ksiginfo_t *ksi, *next;
440 KASSERT(src->sq_flags & SQ_INIT, (
"src sigqueue not inited"));
441 KASSERT(dst->sq_flags & SQ_INIT, (
"dst sigqueue not inited"));
445 TAILQ_FOREACH_SAFE(ksi, &src->sq_list, ksi_link, next) {
446 if (SIGISMEMBER(*set, ksi->ksi_signo)) {
447 TAILQ_REMOVE(&src->sq_list, ksi, ksi_link);
450 TAILQ_INSERT_TAIL(&dst->sq_list, ksi, ksi_link);
459 SIGSETAND(tmp, *set);
460 SIGSETOR(dst->sq_kill, tmp);
461 SIGSETNAND(src->sq_kill, tmp);
463 tmp = src->sq_signals;
464 SIGSETAND(tmp, *set);
465 SIGSETOR(dst->sq_signals, tmp);
466 SIGSETNAND(src->sq_signals, tmp);
471 sigqueue_move(sigqueue_t *src, sigqueue_t *dst,
int signo)
476 SIGADDSET(set, signo);
484 struct proc *p = sq->sq_proc;
485 ksiginfo_t *ksi, *next;
487 KASSERT(sq->sq_flags & SQ_INIT, (
"src sigqueue not inited"));
490 TAILQ_FOREACH_SAFE(ksi, &sq->sq_list, ksi_link, next) {
491 if (SIGISMEMBER(*set, ksi->ksi_signo)) {
492 TAILQ_REMOVE(&sq->sq_list, ksi, ksi_link);
493 ksi->ksi_sigq = NULL;
498 SIGSETNAND(sq->sq_kill, *set);
499 SIGSETNAND(sq->sq_signals, *set);
508 SIGADDSET(set, signo);
519 PROC_LOCK_ASSERT(p, MA_OWNED);
524 FOREACH_THREAD_IN_PROC(p, td0)
536 SIGADDSET(set, signo);
546 SIGADDSET(set, SIGSTOP);
547 SIGADDSET(set, SIGTSTP);
548 SIGADDSET(set, SIGTTIN);
549 SIGADDSET(set, SIGTTOU);
559 cursig(
struct thread *td,
int stop_allowed)
561 PROC_LOCK_ASSERT(td->td_proc, MA_OWNED);
562 KASSERT(stop_allowed == SIG_STOP_ALLOWED ||
563 stop_allowed == SIG_STOP_NOT_ALLOWED, (
"cursig: stop_allowed"));
564 mtx_assert(&td->td_proc->p_sigacts->ps_mtx, MA_OWNED);
565 THREAD_LOCK_ASSERT(td, MA_NOTOWNED);
566 return (SIGPENDING(td) ?
issignal(td, stop_allowed) : 0);
581 PROC_LOCK_ASSERT(p, MA_OWNED);
583 if (SIGPENDING(td)) {
585 td->td_flags |= TDF_NEEDSIGCHK | TDF_ASTPENDING;
593 struct thread *td = curthread;
595 return ((td->td_pflags & TDP_ALTSTACK) ?
596 #
if defined(COMPAT_43)
597 ((td->td_sigstk.ss_size == 0) ?
598 (td->td_sigstk.ss_flags & SS_ONSTACK) :
599 ((sp - (
size_t)td->td_sigstk.ss_sp) < td->td_sigstk.ss_size))
601 ((sp - (
size_t)td->td_sigstk.ss_sp) < td->td_sigstk.ss_size)
610 if (sig > 0 && sig < NSIG)
620 for (i = 0; i < _SIG_WORDS; i++)
622 return (ffs(set->__bits[i]) + (i * 32));
636 struct sigaction *act, *oact;
640 struct proc *p = td->td_proc;
642 if (!_SIG_VALID(sig))
647 mtx_lock(&ps->ps_mtx);
649 oact->sa_mask = ps->ps_catchmask[_SIG_IDX(sig)];
651 if (SIGISMEMBER(ps->ps_sigonstack, sig))
652 oact->sa_flags |= SA_ONSTACK;
653 if (!SIGISMEMBER(ps->ps_sigintr, sig))
654 oact->sa_flags |= SA_RESTART;
655 if (SIGISMEMBER(ps->ps_sigreset, sig))
656 oact->sa_flags |= SA_RESETHAND;
657 if (SIGISMEMBER(ps->ps_signodefer, sig))
658 oact->sa_flags |= SA_NODEFER;
659 if (SIGISMEMBER(ps->ps_siginfo, sig)) {
660 oact->sa_flags |= SA_SIGINFO;
662 (__siginfohandler_t *)ps->ps_sigact[_SIG_IDX(sig)];
664 oact->sa_handler = ps->ps_sigact[_SIG_IDX(sig)];
665 if (sig == SIGCHLD && ps->ps_flag & PS_NOCLDSTOP)
666 oact->sa_flags |= SA_NOCLDSTOP;
667 if (sig == SIGCHLD && ps->ps_flag & PS_NOCLDWAIT)
668 oact->sa_flags |= SA_NOCLDWAIT;
671 if ((sig == SIGKILL || sig == SIGSTOP) &&
672 act->sa_handler != SIG_DFL) {
673 mtx_unlock(&ps->ps_mtx);
682 ps->ps_catchmask[_SIG_IDX(sig)] = act->sa_mask;
683 SIG_CANTMASK(ps->ps_catchmask[_SIG_IDX(sig)]);
684 if (act->sa_flags & SA_SIGINFO) {
685 ps->ps_sigact[_SIG_IDX(sig)] =
686 (__sighandler_t *)act->sa_sigaction;
687 SIGADDSET(ps->ps_siginfo, sig);
689 ps->ps_sigact[_SIG_IDX(sig)] = act->sa_handler;
690 SIGDELSET(ps->ps_siginfo, sig);
692 if (!(act->sa_flags & SA_RESTART))
693 SIGADDSET(ps->ps_sigintr, sig);
695 SIGDELSET(ps->ps_sigintr, sig);
696 if (act->sa_flags & SA_ONSTACK)
697 SIGADDSET(ps->ps_sigonstack, sig);
699 SIGDELSET(ps->ps_sigonstack, sig);
700 if (act->sa_flags & SA_RESETHAND)
701 SIGADDSET(ps->ps_sigreset, sig);
703 SIGDELSET(ps->ps_sigreset, sig);
704 if (act->sa_flags & SA_NODEFER)
705 SIGADDSET(ps->ps_signodefer, sig);
707 SIGDELSET(ps->ps_signodefer, sig);
708 if (sig == SIGCHLD) {
709 if (act->sa_flags & SA_NOCLDSTOP)
710 ps->ps_flag |= PS_NOCLDSTOP;
712 ps->ps_flag &= ~PS_NOCLDSTOP;
713 if (act->sa_flags & SA_NOCLDWAIT) {
721 ps->ps_flag &= ~PS_NOCLDWAIT;
723 ps->ps_flag |= PS_NOCLDWAIT;
725 ps->ps_flag &= ~PS_NOCLDWAIT;
726 if (ps->ps_sigact[_SIG_IDX(SIGCHLD)] == SIG_IGN)
727 ps->ps_flag |= PS_CLDSIGIGN;
729 ps->ps_flag &= ~PS_CLDSIGIGN;
737 if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN ||
739 ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL)) {
744 SIGADDSET(ps->ps_sigignore, sig);
745 SIGDELSET(ps->ps_sigcatch, sig);
747 SIGDELSET(ps->ps_sigignore, sig);
748 if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL)
749 SIGDELSET(ps->ps_sigcatch, sig);
751 SIGADDSET(ps->ps_sigcatch, sig);
753 #ifdef COMPAT_FREEBSD4
754 if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN ||
755 ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL ||
756 (flags & KSA_FREEBSD4) == 0)
757 SIGDELSET(ps->ps_freebsd4, sig);
759 SIGADDSET(ps->ps_freebsd4, sig);
762 if (ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN ||
763 ps->ps_sigact[_SIG_IDX(sig)] == SIG_DFL ||
764 (flags & KSA_OSIGSET) == 0)
765 SIGDELSET(ps->ps_osigset, sig);
767 SIGADDSET(ps->ps_osigset, sig);
770 mtx_unlock(&ps->ps_mtx);
775 #ifndef _SYS_SYSPROTO_H_
787 struct sigaction act, oact;
788 register struct sigaction *actp, *oactp;
791 actp = (uap->act != NULL) ? &act : NULL;
792 oactp = (uap->oact != NULL) ? &oact : NULL;
794 error = copyin(uap->act, actp,
sizeof(act));
800 error = copyout(oactp, uap->oact,
sizeof(oact));
804 #ifdef COMPAT_FREEBSD4
805 #ifndef _SYS_SYSPROTO_H_
806 struct freebsd4_sigaction_args {
808 struct sigaction *act;
809 struct sigaction *oact;
813 freebsd4_sigaction(td, uap)
815 register struct freebsd4_sigaction_args *uap;
817 struct sigaction act, oact;
818 register struct sigaction *actp, *oactp;
822 actp = (uap->act != NULL) ? &act : NULL;
823 oactp = (uap->oact != NULL) ? &oact : NULL;
825 error = copyin(uap->act, actp,
sizeof(act));
831 error = copyout(oactp, uap->oact,
sizeof(oact));
837 #ifndef _SYS_SYSPROTO_H_
838 struct osigaction_args {
840 struct osigaction *nsa;
841 struct osigaction *osa;
847 register struct osigaction_args *uap;
849 struct osigaction sa;
850 struct sigaction nsa, osa;
851 register struct sigaction *nsap, *osap;
854 if (uap->signum <= 0 || uap->signum >=
ONSIG)
857 nsap = (uap->nsa != NULL) ? &nsa : NULL;
858 osap = (uap->osa != NULL) ? &osa : NULL;
861 error = copyin(uap->nsa, &sa,
sizeof(sa));
864 nsap->sa_handler = sa.sa_handler;
865 nsap->sa_flags = sa.sa_flags;
866 OSIG2SIG(sa.sa_mask, nsap->sa_mask);
869 if (osap && !error) {
870 sa.sa_handler = osap->sa_handler;
871 sa.sa_flags = osap->sa_flags;
872 SIG2OSIG(osap->sa_mask, sa.sa_mask);
873 error = copyout(&sa, uap->osa,
sizeof(sa));
878 #if !defined(__i386__)
883 struct osigreturn_args *uap;
904 mtx_lock(&ps->ps_mtx);
905 for (i = 1; i <= NSIG; i++)
907 SIGADDSET(ps->ps_sigignore, i);
908 mtx_unlock(&ps->ps_mtx);
927 PROC_LOCK_ASSERT(p, MA_OWNED);
928 td = FIRST_THREAD_IN_PROC(p);
930 mtx_lock(&ps->ps_mtx);
931 while (SIGNOTEMPTY(ps->ps_sigcatch)) {
932 sig =
sig_ffs(&ps->ps_sigcatch);
933 SIGDELSET(ps->ps_sigcatch, sig);
936 SIGADDSET(ps->ps_sigignore, sig);
939 ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
945 td->td_sigstk.ss_flags = SS_DISABLE;
946 td->td_sigstk.ss_size = 0;
947 td->td_sigstk.ss_sp = 0;
948 td->td_pflags &= ~TDP_ALTSTACK;
952 ps->ps_flag &= ~(PS_NOCLDWAIT | PS_CLDSIGIGN);
953 if (ps->ps_sigact[_SIG_IDX(SIGCHLD)] == SIG_IGN)
954 ps->ps_sigact[_SIG_IDX(SIGCHLD)] = SIG_DFL;
955 mtx_unlock(&ps->ps_mtx);
967 sigset_t new_block, oset1;
972 if (!(flags & SIGPROCMASK_PROC_LOCKED))
975 *oset = td->td_sigmask;
982 oset1 = td->td_sigmask;
983 SIGSETOR(td->td_sigmask, *set);
984 new_block = td->td_sigmask;
985 SIGSETNAND(new_block, oset1);
988 SIGSETNAND(td->td_sigmask, *set);
993 oset1 = td->td_sigmask;
994 if (flags & SIGPROCMASK_OLD)
995 SIGSETLO(td->td_sigmask, *set);
997 td->td_sigmask = *
set;
998 new_block = td->td_sigmask;
999 SIGSETNAND(new_block, oset1);
1016 if (p->p_numthreads != 1)
1021 if (!(flags & SIGPROCMASK_PROC_LOCKED))
1026 #ifndef _SYS_SYSPROTO_H_
1035 register struct thread *td;
1039 sigset_t *setp, *osetp;
1042 setp = (uap->
set != NULL) ? &set : NULL;
1043 osetp = (uap->
oset != NULL) ? &oset : NULL;
1045 error = copyin(uap->
set, setp,
sizeof(set));
1050 if (osetp && !error) {
1051 error = copyout(osetp, uap->
oset,
sizeof(oset));
1057 #ifndef _SYS_SYSPROTO_H_
1058 struct osigprocmask_args {
1064 osigprocmask(td, uap)
1065 register struct thread *td;
1066 struct osigprocmask_args *uap;
1071 OSIG2SIG(uap->mask, set);
1073 SIG2OSIG(oset, td->td_retval[0]);
1085 error = copyin(uap->set, &set,
sizeof(set));
1087 td->td_retval[0] = error;
1093 if (error == EINTR && td->td_proc->p_osrel < P_OSREL_SIGWAIT)
1095 if (error == ERESTART)
1097 td->td_retval[0] = error;
1101 error = copyout(&ksi.ksi_signo, uap->sig,
sizeof(ksi.ksi_signo));
1102 td->td_retval[0] = error;
1116 error = copyin(uap->timeout, &ts,
sizeof(ts));
1124 error = copyin(uap->set, &set,
sizeof(set));
1133 error = copyout(&ksi.ksi_info, uap->info,
sizeof(siginfo_t));
1136 td->td_retval[0] = ksi.ksi_signo;
1147 error = copyin(uap->set, &set,
sizeof(set));
1156 error = copyout(&ksi.ksi_info, uap->info,
sizeof(siginfo_t));
1159 td->td_retval[0] = ksi.ksi_signo;
1168 sigset_t saved_mask, new_block;
1170 int error, sig, timo, timevalid = 0;
1171 struct timespec rts, ets, ts;
1179 if (timeout != NULL) {
1180 if (timeout->tv_nsec >= 0 && timeout->tv_nsec < 1000000000) {
1184 timespecadd(&ets, timeout);
1189 SIG_CANTMASK(waitset);
1192 saved_mask = td->td_sigmask;
1193 SIGSETNAND(td->td_sigmask, waitset);
1195 mtx_lock(&ps->ps_mtx);
1196 sig =
cursig(td, SIG_STOP_ALLOWED);
1197 mtx_unlock(&ps->ps_mtx);
1198 if (sig != 0 && SIGISMEMBER(waitset, sig)) {
1213 if (timeout != NULL) {
1219 if (timespeccmp(&rts, &ets, >=)) {
1224 timespecsub(&ts, &rts);
1225 TIMESPEC_TO_TIMEVAL(&tv, &ts);
1231 error = msleep(ps, &p->p_mtx, PPAUSE|PCATCH,
"sigwait", timo);
1233 if (timeout != NULL) {
1234 if (error == ERESTART) {
1237 }
else if (error == EAGAIN) {
1244 new_block = saved_mask;
1245 SIGSETNAND(new_block, td->td_sigmask);
1246 td->td_sigmask = saved_mask;
1251 if (p->p_numthreads != 1)
1255 SDT_PROBE2(proc, kernel, , signal__clear, sig, ksi);
1257 if (ksi->ksi_code == SI_TIMER)
1261 if (KTRPOINT(td, KTR_PSIG)) {
1264 mtx_lock(&ps->ps_mtx);
1265 action = ps->ps_sigact[_SIG_IDX(sig)];
1266 mtx_unlock(&ps->ps_mtx);
1267 ktrpsig(sig, action, &td->td_sigmask, ksi->ksi_code);
1277 #ifndef _SYS_SYSPROTO_H_
1287 struct proc *p = td->td_proc;
1291 pending = p->p_sigqueue.sq_signals;
1292 SIGSETOR(pending, td->td_sigqueue.sq_signals);
1294 return (copyout(&pending, uap->
set,
sizeof(sigset_t)));
1298 #ifndef _SYS_SYSPROTO_H_
1299 struct osigpending_args {
1304 osigpending(td, uap)
1306 struct osigpending_args *uap;
1308 struct proc *p = td->td_proc;
1312 pending = p->p_sigqueue.sq_signals;
1313 SIGSETOR(pending, td->td_sigqueue.sq_signals);
1315 SIG2OSIG(pending, td->td_retval[0]);
1320 #if defined(COMPAT_43)
1324 #ifndef _SYS_SYSPROTO_H_
1325 struct osigvec_args {
1335 register struct osigvec_args *uap;
1338 struct sigaction nsa, osa;
1339 register struct sigaction *nsap, *osap;
1342 if (uap->signum <= 0 || uap->signum >=
ONSIG)
1344 nsap = (uap->nsv != NULL) ? &nsa : NULL;
1345 osap = (uap->osv != NULL) ? &osa : NULL;
1347 error = copyin(uap->nsv, &vec,
sizeof(vec));
1350 nsap->sa_handler = vec.sv_handler;
1351 OSIG2SIG(vec.sv_mask, nsap->sa_mask);
1352 nsap->sa_flags = vec.sv_flags;
1353 nsap->sa_flags ^= SA_RESTART;
1355 error =
kern_sigaction(td, uap->signum, nsap, osap, KSA_OSIGSET);
1356 if (osap && !error) {
1357 vec.sv_handler = osap->sa_handler;
1358 SIG2OSIG(osap->sa_mask, vec.sv_mask);
1359 vec.sv_flags = osap->sa_flags;
1360 vec.sv_flags &= ~SA_NOCLDWAIT;
1361 vec.sv_flags ^= SA_RESTART;
1362 error = copyout(&vec, uap->osv,
sizeof(vec));
1367 #ifndef _SYS_SYSPROTO_H_
1368 struct osigblock_args {
1374 register struct thread *td;
1375 struct osigblock_args *uap;
1379 OSIG2SIG(uap->mask, set);
1381 SIG2OSIG(oset, td->td_retval[0]);
1385 #ifndef _SYS_SYSPROTO_H_
1386 struct osigsetmask_args {
1391 osigsetmask(td, uap)
1393 struct osigsetmask_args *uap;
1397 OSIG2SIG(uap->mask, set);
1399 SIG2OSIG(oset, td->td_retval[0]);
1408 #ifndef _SYS_SYSPROTO_H_
1422 error = copyin(uap->
sigmask, &mask,
sizeof(mask));
1431 struct proc *p = td->td_proc;
1443 SIGPROCMASK_PROC_LOCKED);
1444 td->td_pflags |= TDP_OLDMASK;
1452 (p->p_sysent->sv_set_syscall_retval)(td, EINTR);
1453 for (has_sig = 0; !has_sig;) {
1454 while (msleep(&p->p_sigacts, &p->p_mtx, PPAUSE|PCATCH,
"pause",
1458 mtx_lock(&p->p_sigacts->ps_mtx);
1459 while ((sig =
cursig(td, SIG_STOP_ALLOWED)) != 0)
1461 mtx_unlock(&p->p_sigacts->ps_mtx);
1464 td->td_errno = EINTR;
1465 td->td_pflags |= TDP_NERRNO;
1466 return (EJUSTRETURN);
1474 #ifndef _SYS_SYSPROTO_H_
1475 struct osigsuspend_args {
1481 osigsuspend(td, uap)
1483 struct osigsuspend_args *uap;
1487 OSIG2SIG(uap->mask, mask);
1492 #if defined(COMPAT_43)
1493 #ifndef _SYS_SYSPROTO_H_
1494 struct osigstack_args {
1495 struct sigstack *nss;
1496 struct sigstack *oss;
1503 register struct osigstack_args *uap;
1505 struct sigstack nss, oss;
1508 if (uap->nss != NULL) {
1509 error = copyin(uap->nss, &nss,
sizeof(nss));
1513 oss.ss_sp = td->td_sigstk.ss_sp;
1514 oss.ss_onstack =
sigonstack(cpu_getstack(td));
1515 if (uap->nss != NULL) {
1516 td->td_sigstk.ss_sp = nss.ss_sp;
1517 td->td_sigstk.ss_size = 0;
1518 td->td_sigstk.ss_flags |= nss.ss_onstack & SS_ONSTACK;
1519 td->td_pflags |= TDP_ALTSTACK;
1521 if (uap->oss != NULL)
1522 error = copyout(&oss, uap->oss,
sizeof(oss));
1528 #ifndef _SYS_SYSPROTO_H_
1543 if (uap->ss != NULL) {
1544 error = copyin(uap->ss, &ss,
sizeof(ss));
1549 (uap->oss != NULL) ? &oss : NULL);
1552 if (uap->oss != NULL)
1553 error = copyout(&oss, uap->oss,
sizeof(stack_t));
1560 struct proc *p = td->td_proc;
1566 *oss = td->td_sigstk;
1567 oss->ss_flags = (td->td_pflags & TDP_ALTSTACK)
1568 ? ((oonstack) ? SS_ONSTACK : 0) : SS_DISABLE;
1574 if ((ss->ss_flags & ~SS_DISABLE) != 0)
1576 if (!(ss->ss_flags & SS_DISABLE)) {
1577 if (ss->ss_size < p->p_sysent->sv_minsigstksz)
1580 td->td_sigstk = *ss;
1581 td->td_pflags |= TDP_ALTSTACK;
1583 td->td_pflags &= ~TDP_ALTSTACK;
1594 killpg1(
struct thread *td,
int sig,
int pgid,
int all, ksiginfo_t *ksi)
1607 FOREACH_PROC_IN_SYSTEM(p) {
1609 if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
1610 p == td->td_proc || p->p_state == PRS_NEW) {
1620 else if (ret == ESRCH)
1631 pgrp = td->td_proc->p_pgrp;
1641 LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
1643 if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
1644 p->p_state == PRS_NEW) {
1654 else if (ret == ESRCH)
1663 #ifndef _SYS_SYSPROTO_H_
1677 AUDIT_ARG_SIGNUM(uap->
signum);
1678 AUDIT_ARG_PID(uap->
pid);
1679 if ((u_int)uap->
signum > _SIG_MAXSIG)
1682 ksiginfo_init(&ksi);
1683 ksi.ksi_signo = uap->
signum;
1684 ksi.ksi_code = SI_USER;
1685 ksi.ksi_pid = td->td_proc->p_pid;
1686 ksi.ksi_uid = td->td_ucred->cr_ruid;
1690 if ((p =
pfind(uap->
pid)) == NULL) {
1694 AUDIT_ARG_PROCESS(p);
1696 if (error == 0 && uap->
signum)
1715 struct pdkill_args *uap;
1721 AUDIT_ARG_SIGNUM(uap->signum);
1722 AUDIT_ARG_FD(uap->fd);
1723 if ((u_int)uap->signum > _SIG_MAXSIG)
1726 error = procdesc_find(td, uap->fd, CAP_PDKILL, &p);
1729 AUDIT_ARG_PROCESS(p);
1731 if (error == 0 && uap->signum)
1740 #if defined(COMPAT_43)
1741 #ifndef _SYS_SYSPROTO_H_
1742 struct okillpg_args {
1749 okillpg(
struct thread *td,
struct okillpg_args *uap)
1753 AUDIT_ARG_SIGNUM(uap->signum);
1754 AUDIT_ARG_PID(uap->pgid);
1755 if ((u_int)uap->signum > _SIG_MAXSIG)
1758 ksiginfo_init(&ksi);
1759 ksi.ksi_signo = uap->signum;
1760 ksi.ksi_code = SI_USER;
1761 ksi.ksi_pid = td->td_proc->p_pid;
1762 ksi.ksi_uid = td->td_ucred->cr_ruid;
1763 return (
killpg1(td, uap->signum, uap->pgid, 0, &ksi));
1767 #ifndef _SYS_SYSPROTO_H_
1781 if ((u_int)uap->
signum > _SIG_MAXSIG)
1791 if ((p =
pfind(uap->
pid)) == NULL) {
1796 if (error == 0 && uap->
signum != 0) {
1797 ksiginfo_init(&ksi);
1798 ksi.ksi_flags = KSI_SIGQ;
1799 ksi.ksi_signo = uap->
signum;
1800 ksi.ksi_code = SI_QUEUE;
1801 ksi.ksi_pid = td->td_proc->p_pid;
1802 ksi.ksi_uid = td->td_ucred->cr_ruid;
1803 ksi.ksi_value.sival_ptr = uap->
value;
1804 error =
pksignal(p, ksi.ksi_signo, &ksi);
1834 pgsignal(
struct pgrp *pgrp,
int sig,
int checkctty, ksiginfo_t *ksi)
1839 PGRP_LOCK_ASSERT(pgrp, MA_OWNED);
1840 LIST_FOREACH(p, &pgrp->pg_members, p_pglist) {
1842 if (p->p_state == PRS_NORMAL &&
1843 (checkctty == 0 || p->p_flag & P_CONTROLT))
1862 mtx_assert(&ps->ps_mtx, MA_OWNED);
1863 td->td_ru.ru_nsignals++;
1864 mask = ps->ps_catchmask[_SIG_IDX(sig)];
1865 if (!SIGISMEMBER(ps->ps_signodefer, sig))
1866 SIGADDSET(mask, sig);
1868 SIGPROCMASK_PROC_LOCKED | SIGPROCMASK_PS_LOCKED);
1869 if (SIGISMEMBER(ps->ps_sigreset, sig)) {
1870 SIGDELSET(ps->ps_sigcatch, sig);
1871 if (sig != SIGCONT &&
1873 SIGADDSET(ps->ps_sigignore, sig);
1874 ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
1892 sig = ksi->ksi_signo;
1893 code = ksi->ksi_code;
1894 KASSERT(_SIG_VALID(sig), (
"invalid signal"));
1898 mtx_lock(&ps->ps_mtx);
1899 if ((p->p_flag & P_TRACED) == 0 && SIGISMEMBER(ps->ps_sigcatch, sig) &&
1900 !SIGISMEMBER(td->td_sigmask, sig)) {
1902 if (KTRPOINT(curthread, KTR_PSIG))
1903 ktrpsig(sig, ps->ps_sigact[_SIG_IDX(sig)],
1904 &td->td_sigmask, code);
1906 (*p->p_sysent->sv_sendsig)(ps->ps_sigact[_SIG_IDX(sig)],
1907 ksi, &td->td_sigmask);
1909 mtx_unlock(&ps->ps_mtx);
1917 (SIGISMEMBER(td->td_sigmask, sig) ||
1918 ps->ps_sigact[_SIG_IDX(sig)] == SIG_IGN)) {
1919 SIGDELSET(td->td_sigmask, sig);
1920 SIGDELSET(ps->ps_sigcatch, sig);
1921 SIGDELSET(ps->ps_sigignore, sig);
1922 ps->ps_sigact[_SIG_IDX(sig)] = SIG_DFL;
1924 mtx_unlock(&ps->ps_mtx);
1932 static struct thread *
1933 sigtd(
struct proc *p,
int sig,
int prop)
1935 struct thread *td, *signal_td;
1937 PROC_LOCK_ASSERT(p, MA_OWNED);
1943 if (curproc == p && !SIGISMEMBER(curthread->td_sigmask, sig))
1946 FOREACH_THREAD_IN_PROC(p, td) {
1947 if (!SIGISMEMBER(td->td_sigmask, sig)) {
1952 if (signal_td == NULL)
1953 signal_td = FIRST_THREAD_IN_PROC(p);
1979 ksiginfo_init(&ksi);
1980 ksi.ksi_signo = sig;
1981 ksi.ksi_code = SI_KERNEL;
1998 if (sigev->sigev_notify == SIGEV_THREAD_ID) {
1999 td =
tdfind(sigev->sigev_notify_thread_id, p->p_pid);
2015 ksiginfo_init(&ksi);
2016 ksi.ksi_signo = sig;
2017 ksi.ksi_code = SI_KERNEL;
2032 sigqueue_t *sigqueue;
2039 MPASS(td == NULL || p == td->td_proc);
2040 PROC_LOCK_ASSERT(p, MA_OWNED);
2042 if (!_SIG_VALID(sig))
2043 panic(
"%s(): invalid signal %d", __func__, sig);
2045 KASSERT(ksi == NULL || !KSI_ONQ(ksi), (
"%s: ksi on queue", __func__));
2050 if (p->p_state == PRS_ZOMBIE) {
2051 if (ksi && (ksi->ksi_flags & KSI_INS))
2057 KNOTE_LOCKED(&p->p_klist, NOTE_SIGNAL | sig);
2061 td =
sigtd(p, sig, prop);
2062 sigqueue = &p->p_sigqueue;
2064 KASSERT(td->td_proc == p, (
"invalid thread"));
2065 sigqueue = &td->td_sigqueue;
2068 SDT_PROBE3(proc, kernel, , signal__send, td, p, sig);
2077 mtx_lock(&ps->ps_mtx);
2078 if (SIGISMEMBER(ps->ps_sigignore, sig)) {
2079 SDT_PROBE3(proc, kernel, , signal__discard, td, p, sig);
2081 mtx_unlock(&ps->ps_mtx);
2082 if (ksi && (ksi->ksi_flags & KSI_INS))
2086 if (SIGISMEMBER(td->td_sigmask, sig))
2088 else if (SIGISMEMBER(ps->ps_sigcatch, sig))
2092 if (SIGISMEMBER(ps->ps_sigintr, sig))
2096 mtx_unlock(&ps->ps_mtx);
2108 (p->p_pgrp->pg_jobc == 0) &&
2109 (action == SIG_DFL)) {
2110 if (ksi && (ksi->ksi_flags & KSI_INS))
2115 if (p->p_flag & P_CONTINUED) {
2116 p->p_flag &= ~P_CONTINUED;
2117 PROC_LOCK(p->p_pptr);
2119 PROC_UNLOCK(p->p_pptr);
2131 if (action == SIG_HOLD &&
2132 !((prop & SA_CONT) && (p->p_flag & P_STOPPED_SIG)))
2137 if (sig == SIGKILL) {
2152 if (P_SHOULDSTOP(p)) {
2153 KASSERT(!(p->p_flag & P_WEXIT),
2154 (
"signal to stopped but exiting process"));
2155 if (sig == SIGKILL) {
2160 if (p->p_flag & P_TRACED)
2167 p->p_flag &= ~P_STOPPED_SIG;
2171 if (prop & SA_CONT) {
2176 if (p->p_flag & P_TRACED)
2188 p->p_flag &= ~P_STOPPED_SIG;
2190 if (p->p_numthreads == p->p_suspcount) {
2192 p->p_flag |= P_CONTINUED;
2193 p->p_xstat = SIGCONT;
2194 PROC_LOCK(p->p_pptr);
2196 PROC_UNLOCK(p->p_pptr);
2199 if (action == SIG_DFL) {
2205 if (action == SIG_CATCH) {
2221 if (prop & SA_STOP) {
2226 if (p->p_flag & P_TRACED)
2233 p->p_flag |= P_STOPPED_SIG;
2249 if (TD_ON_SLEEPQ(td) && (td->td_flags & TDF_SINTR))
2260 }
else if (p->p_state == PRS_NORMAL) {
2261 if (p->p_flag & P_TRACED || action == SIG_CATCH) {
2266 MPASS(action == SIG_DFL);
2268 if (prop & SA_STOP) {
2269 if (p->p_flag & (P_PPWAIT|P_WEXIT))
2271 p->p_flag |= P_STOPPED_SIG;
2275 if (p->p_numthreads == p->p_suspcount) {
2307 PROC_SLOCK_ASSERT(p, MA_NOTOWNED);
2319 struct proc *p = td->td_proc;
2324 PROC_LOCK_ASSERT(p, MA_OWNED);
2333 if (action == SIG_DFL && (prop &
SA_KILL) && td->td_priority > PUSER)
2335 if (TD_ON_SLEEPQ(td)) {
2342 if ((td->td_flags & TDF_SINTR) == 0)
2349 if ((prop &
SA_CONT) && action == SIG_DFL) {
2365 if ((prop &
SA_STOP) && (td->td_flags & TDF_SBDRY))
2371 if (td->td_priority > PUSER)
2382 if (TD_IS_RUNNING(td) && td != curthread)
2399 PROC_LOCK_ASSERT(p, MA_OWNED);
2400 PROC_SLOCK_ASSERT(p, MA_OWNED);
2403 FOREACH_THREAD_IN_PROC(p, td2) {
2405 td2->td_flags |= TDF_ASTPENDING | TDF_NEEDSUSPCHK;
2406 if ((TD_IS_SLEEPING(td2) || TD_IS_SWAPPED(td2)) &&
2407 (td2->td_flags & TDF_SINTR)) {
2408 if (td2->td_flags & TDF_SBDRY) {
2414 KASSERT(!TD_IS_SUSPENDED(td2),
2415 (
"thread with deferred stops suspended"));
2416 }
else if (!TD_IS_SUSPENDED(td2)) {
2419 }
else if (!TD_IS_SUSPENDED(td2)) {
2420 if (sending || td != td2)
2421 td2->td_flags |= TDF_ASTPENDING;
2423 if (TD_IS_RUNNING(td2) && td2 != td)
2424 forward_signal(td2);
2436 struct proc *p = td->td_proc;
2438 PROC_LOCK_ASSERT(p, MA_OWNED);
2439 KASSERT(!(p->p_flag & P_WEXIT), (
"Stopping exiting process"));
2440 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK,
2441 &p->p_mtx.lock_object,
"Stopping for traced signal");
2443 td->td_dbgflags |= TDB_XSIG;
2445 CTR4(KTR_PTRACE,
"ptracestop: tid %d (pid %d) flags %#x sig %d",
2446 td->td_tid, p->p_pid, td->td_dbgflags, sig);
2448 while ((p->p_flag & P_TRACED) && (td->td_dbgflags & TDB_XSIG)) {
2449 if (p->p_flag & P_SINGLE_EXIT) {
2450 td->td_dbgflags &= ~TDB_XSIG;
2460 p->p_flag |= (P_STOPPED_SIG|P_STOPPED_TRACE);
2462 if ((td->td_dbgflags & TDB_STOPATFORK) != 0) {
2463 td->td_dbgflags &= ~TDB_STOPATFORK;
2464 cv_broadcast(&p->p_dbgwait);
2468 if (!(p->p_flag & P_TRACED)) {
2471 if (td->td_dbgflags & TDB_SUSPEND) {
2472 if (p->p_flag & P_SINGLE_EXIT)
2478 return (td->td_xsig);
2488 PROC_LOCK_ASSERT(p, MA_OWNED);
2489 if (SIGISEMPTY(p->p_siglist))
2492 SIGSETAND(block, p->p_siglist);
2493 while ((sig =
sig_ffs(&block)) != 0) {
2494 SIGDELSET(block, sig);
2495 td =
sigtd(p, sig, 0);
2497 if (!(flags & SIGPROCMASK_PS_LOCKED))
2498 mtx_lock(&ps->ps_mtx);
2499 if (p->p_flag & P_TRACED || SIGISMEMBER(ps->ps_sigcatch, sig))
2501 (SIGISMEMBER(ps->ps_sigintr, sig) ? EINTR :
2503 if (!(flags & SIGPROCMASK_PS_LOCKED))
2504 mtx_unlock(&ps->ps_mtx);
2515 PROC_LOCK_ASSERT(p, MA_OWNED);
2518 if (p->p_numthreads == 1)
2529 SIGFILLSET(unblocked);
2530 SIGSETNAND(unblocked, td->td_sigmask);
2531 SIGFILLSET(td->td_sigmask);
2546 if (td->td_flags & TDF_SBDRY)
2549 td->td_flags |= TDF_SBDRY;
2566 td->td_flags &= ~TDF_SBDRY;
2587 struct sigqueue *queue;
2588 sigset_t sigpending;
2589 int sig, prop, newsig;
2593 mtx_assert(&ps->ps_mtx, MA_OWNED);
2594 PROC_LOCK_ASSERT(p, MA_OWNED);
2596 int traced = (p->p_flag & P_TRACED) || (p->p_stops & S_SIG);
2598 sigpending = td->td_sigqueue.sq_signals;
2599 SIGSETOR(sigpending, p->p_sigqueue.sq_signals);
2600 SIGSETNAND(sigpending, td->td_sigmask);
2602 if (p->p_flag & P_PPWAIT || td->td_flags & TDF_SBDRY)
2603 SIG_STOPSIGMASK(sigpending);
2604 if (SIGISEMPTY(sigpending))
2608 if (p->p_stops & S_SIG) {
2609 mtx_unlock(&ps->ps_mtx);
2611 mtx_lock(&ps->ps_mtx);
2618 if (SIGISMEMBER(ps->ps_sigignore, sig) && (traced == 0)) {
2623 if (p->p_flag & P_TRACED && (p->p_flag & P_PPTRACE) == 0) {
2630 queue = &td->td_sigqueue;
2631 td->td_dbgksi.ksi_signo = 0;
2633 queue = &p->p_sigqueue;
2637 mtx_unlock(&ps->ps_mtx);
2639 mtx_lock(&ps->ps_mtx);
2641 if (sig != newsig) {
2657 if (SIGISMEMBER(td->td_sigmask, sig))
2661 if (td->td_dbgksi.ksi_signo != 0) {
2662 td->td_dbgksi.ksi_flags |= KSI_HEAD;
2664 &td->td_dbgksi) != 0)
2665 td->td_dbgksi.ksi_signo = 0;
2667 if (td->td_dbgksi.ksi_signo == 0)
2677 if ((p->p_flag & P_TRACED) == 0)
2688 switch ((intptr_t)p->p_sigacts->ps_sigact[_SIG_IDX(sig)]) {
2690 case (intptr_t)SIG_DFL:
2694 if (p->p_pid <= 1) {
2700 printf(
"Process (pid %lu) got signal %d\n",
2701 (u_long)p->p_pid, sig);
2713 if (p->p_flag & (P_TRACED|P_WEXIT) ||
2714 (p->p_pgrp->pg_jobc == 0 &&
2717 mtx_unlock(&ps->ps_mtx);
2718 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK,
2719 &p->p_mtx.lock_object,
"Catching SIGSTOP");
2720 p->p_flag |= P_STOPPED_SIG;
2726 mtx_lock(&ps->ps_mtx);
2738 case (intptr_t)SIG_IGN:
2745 (p->p_flag & P_TRACED) == 0)
2767 PROC_LOCK_ASSERT(p, MA_OWNED);
2768 PROC_SLOCK_ASSERT(p, MA_OWNED);
2772 if ((p->p_flag & P_STOPPED_SIG) && (n == p->p_numthreads)) {
2774 p->p_flag &= ~P_WAITED;
2775 PROC_LOCK(p->p_pptr);
2777 CLD_TRAPPED : CLD_STOPPED);
2778 PROC_UNLOCK(p->p_pptr);
2791 struct thread *td = curthread;
2792 register struct proc *p = td->td_proc;
2796 sigset_t returnmask;
2798 KASSERT(sig != 0, (
"postsig"));
2800 PROC_LOCK_ASSERT(p, MA_OWNED);
2802 mtx_assert(&ps->ps_mtx, MA_OWNED);
2803 ksiginfo_init(&ksi);
2807 ksi.ksi_signo = sig;
2808 if (ksi.ksi_code == SI_TIMER)
2810 action = ps->ps_sigact[_SIG_IDX(sig)];
2812 if (KTRPOINT(td, KTR_PSIG))
2813 ktrpsig(sig, action, td->td_pflags & TDP_OLDMASK ?
2814 &td->td_oldsigmask : &td->td_sigmask, ksi.ksi_code);
2816 if (p->p_stops & S_SIG) {
2817 mtx_unlock(&ps->ps_mtx);
2819 mtx_lock(&ps->ps_mtx);
2822 if (action == SIG_DFL) {
2827 mtx_unlock(&ps->ps_mtx);
2834 KASSERT(action != SIG_IGN && !SIGISMEMBER(td->td_sigmask, sig),
2835 (
"postsig action"));
2845 if (td->td_pflags & TDP_OLDMASK) {
2846 returnmask = td->td_oldsigmask;
2847 td->td_pflags &= ~TDP_OLDMASK;
2849 returnmask = td->td_sigmask;
2851 if (p->p_sig == sig) {
2855 (*p->p_sysent->sv_sendsig)(action, &ksi, &returnmask);
2870 PROC_LOCK_ASSERT(p, MA_OWNED);
2871 CTR3(KTR_PROC,
"killproc: proc %p (pid %d, %s)",
2872 p, p->p_pid, p->p_comm);
2873 log(LOG_ERR,
"pid %d (%s), uid %d, was killed: %s\n", p->p_pid, p->p_comm,
2874 p->p_ucred ? p->p_ucred->cr_uid : -1, why);
2875 p->p_flag |= P_WKILLED;
2892 struct proc *p = td->td_proc;
2894 PROC_LOCK_ASSERT(p, MA_OWNED);
2895 p->p_acflag |= AXSIG;
2918 "pid %d (%s), uid %d: exited on signal %d%s\n",
2919 p->p_pid, p->p_comm,
2920 td->td_ucred ? td->td_ucred->cr_uid : -1,
2922 sig & WCOREFLAG ?
" (core dumped)" :
"");
2925 exit1(td, W_EXITCODE(0, sig));
2936 PROC_LOCK_ASSERT(p, MA_OWNED);
2937 PROC_LOCK_ASSERT(p->p_pptr, MA_OWNED);
2939 if (p->p_ksi != NULL) {
2940 p->p_ksi->ksi_signo = SIGCHLD;
2941 p->p_ksi->ksi_code = reason;
2942 p->p_ksi->ksi_status = status;
2943 p->p_ksi->ksi_pid = p->p_pid;
2944 p->p_ksi->ksi_uid = p->p_ucred->cr_ruid;
2945 if (KSI_ONQ(p->p_ksi))
2948 pksignal(p->p_pptr, SIGCHLD, p->p_ksi);
2956 PROC_LOCK_ASSERT(p, MA_OWNED);
2957 PROC_LOCK_ASSERT(p->p_pptr, MA_OWNED);
2965 p->p_pptr->p_flag |= P_STATCHILD;
2968 ps = p->p_pptr->p_sigacts;
2969 mtx_lock(&ps->ps_mtx);
2970 if ((ps->ps_flag & PS_NOCLDSTOP) == 0) {
2971 mtx_unlock(&ps->ps_mtx);
2974 mtx_unlock(&ps->ps_mtx);
2994 int xstat = p->p_xstat;
2997 if (WCOREDUMP(xstat))
2998 reason = CLD_DUMPED, status = WTERMSIG(xstat);
2999 else if (WIFSIGNALED(xstat))
3000 reason = CLD_KILLED, status = WTERMSIG(xstat);
3002 reason = CLD_EXITED, status = WEXITSTATUS(xstat);
3014 #define MAX_NUM_CORES 10
3025 if (error != 0 || req->newptr == NULL)
3031 num_cores = new_val;
3034 SYSCTL_PROC(_debug, OID_AUTO, ncores, CTLTYPE_INT|CTLFLAG_RW,
3037 #if defined(COMPRESS_USER_CORES)
3038 int compress_user_cores = 1;
3039 SYSCTL_INT(_kern, OID_AUTO, compress_user_cores, CTLFLAG_RW,
3040 &compress_user_cores, 0,
"");
3042 int compress_user_cores_gzlevel = -1;
3043 SYSCTL_INT(_kern, OID_AUTO, compress_user_cores_gzlevel, CTLFLAG_RW,
3044 &compress_user_cores_gzlevel, -1,
"user core gz compression level");
3046 #define GZ_SUFFIX ".gz"
3047 #define GZ_SUFFIX_LEN 3
3051 SYSCTL_STRING(_kern, OID_AUTO, corefile, CTLFLAG_RW, corefilename,
3052 sizeof(corefilename),
"process corefile name format string");
3078 temp =
malloc(MAXPATHLEN, M_TEMP, M_NOWAIT | M_ZERO);
3082 (void)
sbuf_new(&sb, temp, MAXPATHLEN, SBUF_FIXEDLEN);
3083 for (i = 0; format[i]; i++) {
3084 switch (format[i]) {
3087 switch (format[i]) {
3092 if (hostname == NULL) {
3093 hostname =
malloc(MAXHOSTNAMELEN,
3095 if (hostname == NULL) {
3097 "pid %ld (%s), uid (%lu): "
3098 "unable to alloc memory "
3099 "for corefile hostname\n",
3124 "Unknown format character %c in "
3125 "corename `%s'\n", format[i], format);
3132 free(hostname, M_TEMP);
3133 #ifdef COMPRESS_USER_CORES
3139 log(LOG_ERR,
"pid %ld (%s), uid (%lu): corename is too "
3140 "long\n", (
long)pid, name, (u_long)uid);
3155 if (indexpos != -1) {
3156 struct nameidata nd;
3158 int flags = O_CREAT | O_EXCL | FWRITE | O_NOFOLLOW;
3159 int cmode = S_IRUSR | S_IWUSR;
3163 temp[indexpos] =
'0' + n;
3164 NDINIT(&nd, LOOKUP, NOFOLLOW | MPSAFE, UIO_SYSSPACE,
3166 error =
vn_open(&nd, &flags, cmode, NULL);
3168 if (error == EEXIST) {
3172 "pid %d (%s), uid (%u): Path `%s' failed "
3173 "on initial open test, error = %d\n",
3174 pid, name, uid, temp, error);
3178 vfslocked = NDHASGIANT(&nd);
3179 NDFREE(&nd, NDF_ONLY_PNBUF);
3180 VOP_UNLOCK(nd.ni_vp, 0);
3181 error =
vn_close(nd.ni_vp, FWRITE, td->td_ucred, td);
3182 VFS_UNLOCK_GIANT(vfslocked);
3185 "pid %d (%s), uid (%u): Path `%s' failed "
3186 "on close after initial open test, "
3188 pid, name, uid, temp, error);
3209 struct proc *p = td->td_proc;
3210 register struct vnode *vp;
3211 register struct ucred *cred = td->td_ucred;
3213 struct nameidata nd;
3215 int error, error1, flags, locked;
3222 #ifdef COMPRESS_USER_CORES
3223 compress = compress_user_cores;
3227 PROC_LOCK_ASSERT(p, MA_OWNED);
3228 MPASS((p->p_flag & P_HADTHREADS) == 0 || p->p_singlethread == td);
3229 _STOPEVENT(p, S_CORE, 0);
3231 name =
expand_name(p->p_comm, td->td_ucred->cr_uid, p->p_pid, td,
3236 audit_proc_coredump(td, NULL, EINVAL);
3243 audit_proc_coredump(td, name, EFAULT);
3257 limit = (off_t)
lim_cur(p, RLIMIT_CORE);
3261 audit_proc_coredump(td, name, EFBIG);
3269 NDINIT(&nd, LOOKUP, NOFOLLOW | MPSAFE, UIO_SYSSPACE, name, td);
3270 flags = O_CREAT | FWRITE | O_NOFOLLOW;
3271 error =
vn_open_cred(&nd, &flags, S_IRUSR | S_IWUSR, VN_OPEN_NOAUDIT,
3275 audit_proc_coredump(td, name, error);
3280 vfslocked = NDHASGIANT(&nd);
3281 NDFREE(&nd, NDF_ONLY_PNBUF);
3285 if (vp->v_type != VREG ||
3286 VOP_GETATTR(vp, &vattr, cred) || vattr.va_nlink != 1) {
3293 lf.l_whence = SEEK_SET;
3296 lf.l_type = F_WRLCK;
3297 locked = (VOP_ADVLOCK(vp, (caddr_t)p, F_SETLK, &lf, F_FLOCK) == 0);
3300 lf.l_type = F_UNLCK;
3302 VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &lf, F_FLOCK);
3303 if ((error =
vn_close(vp, FWRITE, cred, td)) != 0)
3307 VFS_UNLOCK_GIANT(vfslocked);
3314 vattr.va_flags = UF_NODUMP;
3315 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
3316 VOP_SETATTR(vp, &vattr, cred);
3320 p->p_acflag |= ACORE;
3323 error = p->p_sysent->sv_coredump ?
3324 p->p_sysent->sv_coredump(td, vp, limit, compress ? IMGACT_CORE_COMPRESS : 0) :
3328 lf.l_type = F_UNLCK;
3329 VOP_ADVLOCK(vp, (caddr_t)p, F_UNLCK, &lf, F_FLOCK);
3332 error1 =
vn_close(vp, FWRITE, cred, td);
3337 audit_proc_coredump(td, name, error);
3340 VFS_UNLOCK_GIANT(vfslocked);
3348 #ifndef _SYS_SYSPROTO_H_
3359 struct proc *p = td->td_proc;
3373 struct sigio **sigiop;
3377 struct sigio *sigio;
3379 ksiginfo_init(&ksi);
3380 ksi.ksi_signo = sig;
3381 ksi.ksi_code = SI_KERNEL;
3385 if (sigio == NULL) {
3389 if (sigio->sio_pgid > 0) {
3390 PROC_LOCK(sigio->sio_proc);
3391 if (
CANSIGIO(sigio->sio_ucred, sigio->sio_proc->p_ucred))
3393 PROC_UNLOCK(sigio->sio_proc);
3394 }
else if (sigio->sio_pgid < 0) {
3397 PGRP_LOCK(sigio->sio_pgrp);
3398 LIST_FOREACH(p, &sigio->sio_pgrp->pg_members, p_pglist) {
3400 if (p->p_state == PRS_NORMAL &&
3401 CANSIGIO(sigio->sio_ucred, p->p_ucred) &&
3402 (checkctty == 0 || (p->p_flag & P_CONTROLT)))
3406 PGRP_UNLOCK(sigio->sio_pgrp);
3414 struct proc *p = curproc;
3416 kn->kn_ptr.p_proc = p;
3417 kn->kn_flags |= EV_CLEAR;
3427 struct proc *p = kn->kn_ptr.p_proc;
3442 if (hint & NOTE_SIGNAL) {
3443 hint &= ~NOTE_SIGNAL;
3445 if (kn->kn_id == hint)
3448 return (kn->kn_data != 0);
3456 ps =
malloc(
sizeof(
struct sigacts), M_SUBPROC, M_WAITOK | M_ZERO);
3458 mtx_init(&ps->ps_mtx,
"sigacts", NULL, MTX_DEF);
3466 mtx_lock(&ps->ps_mtx);
3468 if (ps->ps_refcnt == 0) {
3470 free(ps, M_SUBPROC);
3472 mtx_unlock(&ps->ps_mtx);
3478 mtx_lock(&ps->ps_mtx);
3480 mtx_unlock(&ps->ps_mtx);
3488 KASSERT(dest->ps_refcnt == 1, (
"sigacts_copy to shared dest"));
3489 mtx_lock(&src->ps_mtx);
3490 bcopy(src, dest, offsetof(
struct sigacts, ps_refcnt));
3491 mtx_unlock(&src->ps_mtx);
3499 mtx_lock(&ps->ps_mtx);
3500 shared = ps->ps_refcnt > 1;
3501 mtx_unlock(&ps->ps_mtx);
static int sigprop(int sig)
static void sigqueue_delete_stopmask_proc(struct proc *p)
int sbuf_error(const struct sbuf *s)
static int kern_forcesigexit
SDT_PROBE_DEFINE2(proc, kernel,, signal__clear,"int","ksiginfo_t *")
void killproc(struct proc *p, char *why)
void sigacts_copy(struct sigacts *dest, struct sigacts *src)
int tvtohz(struct timeval *tv)
int kern_sigsuspend(struct thread *td, sigset_t mask)
struct sigacts * sigacts_alloc(void)
static char * expand_name(const char *, uid_t, pid_t, struct thread *, int)
int sig_ffs(sigset_t *set)
struct callout_handle timeout(timeout_t *ftn, void *arg, int to_ticks)
void sched_prio(struct thread *td, u_char prio)
rlim_t lim_cur(struct proc *p, int which)
void NDFREE(struct nameidata *ndp, const u_int flags)
int pksignal(struct proc *p, int sig, ksiginfo_t *ksi)
int sbuf_putc(struct sbuf *s, int c)
ssize_t sbuf_len(struct sbuf *s)
static int kern_logsigexit
int kern_sigtimedwait(struct thread *td, sigset_t waitset, ksiginfo_t *ksi, struct timespec *timeout)
static int issignal(struct thread *td, int stop_allowed)
void childproc_continued(struct proc *p)
static void sigparent(struct proc *p, int reason, int status)
void * malloc(unsigned long size, struct malloc_type *mtp, int flags)
int p_cansignal(struct thread *td, struct proc *p, int signum)
static uma_zone_t ksiginfo_zone
void siginit(struct proc *p)
void sigqueue_take(ksiginfo_t *ksi)
int sys_kill(struct thread *td, struct kill_args *uap)
void tdsigcleanup(struct thread *td)
void panic(const char *fmt,...)
static void filt_sigdetach(struct knote *kn)
void sigacts_free(struct sigacts *ps)
int sys_sigsuspend(struct thread *td, struct sigsuspend_args *uap)
void thread_stopped(struct proc *p)
static void sigqueue_move_set(sigqueue_t *src, sigqueue_t *dst, const sigset_t *set)
void vn_finished_write(struct mount *mp)
static void sigqueue_delete_set(sigqueue_t *sq, const sigset_t *set)
void thread_unsuspend(struct proc *p)
int sleepq_abort(struct thread *td, int intrval)
void knote(struct knlist *list, long hint, int lockflags)
void pgsignal(struct pgrp *pgrp, int sig, int checkctty, ksiginfo_t *ksi)
static void postsig_done(int sig, struct thread *td, struct sigacts *ps)
int sigonstack(size_t sp)
static int preallocate_siginfo
static void tdsigwakeup(struct thread *, int, sig_t, int)
static int killpg1(struct thread *td, int sig, int pgid, int all, ksiginfo_t *ksi)
void kern_psignal(struct proc *p, int sig)
int nosys(struct thread *td, struct nosys_args *args)
void sigqueue_flush(sigqueue_t *sq)
static struct thread * sigtd(struct proc *p, int sig, int prop)
int kern_sigprocmask(struct thread *td, int how, sigset_t *set, sigset_t *oset, int flags)
int sys_sigaction(struct thread *td, struct sigaction_args *uap)
void getnanouptime(struct timespec *tsp)
static int sigqueue_add(sigqueue_t *sq, int signo, ksiginfo_t *si)
struct proc * pfind(pid_t pid)
static int filt_sigattach(struct knote *kn)
SYSCTL_STRING(_kern, OID_AUTO, corefile, CTLFLAG_RW, corefilename, sizeof(corefilename),"process corefile name format string")
static int sysctl_debug_num_cores_check(SYSCTL_HANDLER_ARGS)
void p31b_setcfg(int num, int value)
int vn_open_cred(struct nameidata *ndp, int *flagp, int cmode, u_int vn_open_flags, struct ucred *cred, struct file *fp)
struct filterops sig_filtops
void childproc_stopped(struct proc *p, int reason)
void knlist_remove(struct knlist *knl, struct knote *kn, int islocked)
static void sigqueue_start(void)
void childproc_exited(struct proc *p)
static void childproc_jobstate(struct proc *p, int reason, int sig)
void sigqueue_delete_proc(struct proc *p, int signo)
static int signal_overflow
int sys_pdkill(struct thread *td, struct pdkill_args *uap)
void tdsignal(struct thread *td, int sig)
void exit1(struct thread *td, int rv)
uint64_t racct_get_available(struct proc *p, int resource)
int sbuf_printf(struct sbuf *s, const char *fmt,...)
int sys_sigwait(struct thread *td, struct sigwait_args *uap)
int kern_sigaltstack(struct thread *td, stack_t *ss, stack_t *oss)
static void reschedule_signals(struct proc *p, sigset_t block, int flags)
int cursig(struct thread *td, int stop_allowed)
TUNABLE_INT("kern.sigqueue.preallocate",&preallocate_siginfo)
int sys_sigaltstack(struct thread *td, struct sigaltstack_args *uap)
int ptracestop(struct thread *td, int sig)
int sysctl_handle_int(SYSCTL_HANDLER_ARGS)
int sigev_findtd(struct proc *p, struct sigevent *sigev, struct thread **ttd)
int sigacts_shared(struct sigacts *ps)
void knlist_add(struct knlist *knl, struct knote *kn, int islocked)
SDT_PROBE_DEFINE3(proc, kernel,, signal__send,"struct thread *","struct proc *","int")
static void sig_suspend_threads(struct thread *, struct proc *, int)
void log(int level, const char *fmt,...)
int thread_single(int mode)
static int signal_alloc_fail
struct pgrp * pgfind(pid_t pgid)
static int sigproptbl[NSIG]
void execsigs(struct proc *p)
struct sbuf * sbuf_new(struct sbuf *s, char *buf, int length, int flags)
void ksiginfo_free(ksiginfo_t *ksi)
void trapsignal(struct thread *td, ksiginfo_t *ksi)
ksiginfo_t * ksiginfo_alloc(int wait)
int sys_sigwaitinfo(struct thread *td, struct sigwaitinfo_args *uap)
SYSCTL_INT(_kern, KERN_LOGSIGEXIT, logsigexit, CTLFLAG_RW,&kern_logsigexit, 0,"Log processes quitting on abnormal signals to syslog(3)")
void free(void *addr, struct malloc_type *mtp)
static int filt_signal(struct knote *kn, long hint)
int vn_close(struct vnode *vp, int flags, struct ucred *file_cred, struct thread *td)
int printf(const char *fmt,...)
static int set_core_nodump_flag
void sigqueue_delete(sigqueue_t *sq, int signo)
void sbuf_delete(struct sbuf *s)
void thread_suspend_one(struct thread *td)
static int max_pending_per_proc
static char corefilename[MAXPATHLEN]
static int sugid_coredump
void mtx_init(struct mtx *m, const char *name, const char *type, int opts)
int itimer_accept(struct proc *p, int timerid, ksiginfo_t *ksi)
SYSINIT(signal, SI_SUB_P1003_1B, SI_ORDER_FIRST+3, sigqueue_start, NULL)
void sigqueue_init(sigqueue_t *list, struct proc *p)
int vn_start_write(struct vnode *vp, struct mount **mpp, int flags)
SDT_PROVIDER_DECLARE(proc)
void tdksignal(struct thread *td, int sig, ksiginfo_t *ksi)
int sys_sigprocmask(struct thread *td, struct sigprocmask_args *uap)
int sbuf_finish(struct sbuf *s)
int sys_sigtimedwait(struct thread *td, struct sigtimedwait_args *uap)
struct sigacts * sigacts_hold(struct sigacts *ps)
int tdsendsignal(struct proc *p, struct thread *td, int sig, ksiginfo_t *ksi)
static void sigqueue_delete_set_proc(struct proc *p, const sigset_t *set)
int kern_sigaction(struct thread *td, int sig, struct sigaction *act, struct sigaction *oact, int flags)
#define CANSIGIO(cr1, cr2)
static int coredump(struct thread *)
int vn_open(struct nameidata *ndp, int *flagp, int cmode, struct file *fp)
struct thread * tdfind(lwpid_t tid, pid_t pid)
void signotify(struct thread *td)
static int sigqueue_get(sigqueue_t *sq, int signo, ksiginfo_t *si)
struct proc * zpfind(pid_t pid)
void mtx_destroy(struct mtx *m)
static __inline int ksiginfo_tryfree(ksiginfo_t *ksi)
void gsignal(int pgid, int sig, ksiginfo_t *ksi)
int sys_sigqueue(struct thread *td, struct sigqueue_args *uap)
SYSCTL_PROC(_debug, OID_AUTO, ncores, CTLTYPE_INT|CTLFLAG_RW, 0, sizeof(int), sysctl_debug_num_cores_check,"I","")
int thread_suspend_check(int return_instead)
void stopevent(struct proc *p, unsigned int event, unsigned int val)
void getcredhostname(struct ucred *cred, char *buf, size_t size)
void pgsigio(struct sigio **sigiop, int sig, int checkctty)
void thread_suspend_switch(struct thread *td)
int sys_sigpending(struct thread *td, struct sigpending_args *uap)
static SYSCTL_NODE(_kern, OID_AUTO, sigqueue, CTLFLAG_RW, 0,"POSIX real time signal")
void sigexit(struct thread *td, int sig)