Home | History | Annotate | Line # | Download | only in kern
kern_sig.c revision 1.113
      1  1.113       mrg /*	$NetBSD: kern_sig.c,v 1.113 2001/06/06 21:37:19 mrg Exp $	*/
      2   1.29       cgd 
      3   1.29       cgd /*
      4   1.29       cgd  * Copyright (c) 1982, 1986, 1989, 1991, 1993
      5   1.29       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.29       cgd  * (c) UNIX System Laboratories, Inc.
      7   1.29       cgd  * All or some portions of this file are derived from material licensed
      8   1.29       cgd  * to the University of California by American Telephone and Telegraph
      9   1.29       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10   1.29       cgd  * the permission of UNIX System Laboratories, Inc.
     11   1.29       cgd  *
     12   1.29       cgd  * Redistribution and use in source and binary forms, with or without
     13   1.29       cgd  * modification, are permitted provided that the following conditions
     14   1.29       cgd  * are met:
     15   1.29       cgd  * 1. Redistributions of source code must retain the above copyright
     16   1.29       cgd  *    notice, this list of conditions and the following disclaimer.
     17   1.29       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18   1.29       cgd  *    notice, this list of conditions and the following disclaimer in the
     19   1.29       cgd  *    documentation and/or other materials provided with the distribution.
     20   1.29       cgd  * 3. All advertising materials mentioning features or use of this software
     21   1.29       cgd  *    must display the following acknowledgement:
     22   1.29       cgd  *	This product includes software developed by the University of
     23   1.29       cgd  *	California, Berkeley and its contributors.
     24   1.29       cgd  * 4. Neither the name of the University nor the names of its contributors
     25   1.29       cgd  *    may be used to endorse or promote products derived from this software
     26   1.29       cgd  *    without specific prior written permission.
     27   1.29       cgd  *
     28   1.29       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29   1.29       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.29       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31   1.29       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32   1.29       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33   1.29       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34   1.29       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35   1.29       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36   1.29       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37   1.29       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38   1.29       cgd  * SUCH DAMAGE.
     39   1.29       cgd  *
     40   1.71      fvdl  *	@(#)kern_sig.c	8.14 (Berkeley) 5/14/95
     41   1.29       cgd  */
     42   1.70       mrg 
     43   1.73   thorpej #include "opt_ktrace.h"
     44   1.74   thorpej #include "opt_compat_sunos.h"
     45   1.95       eeh #include "opt_compat_netbsd32.h"
     46   1.29       cgd 
     47   1.29       cgd #define	SIGPROP		/* include signal properties table */
     48   1.29       cgd #include <sys/param.h>
     49   1.29       cgd #include <sys/signalvar.h>
     50   1.29       cgd #include <sys/resourcevar.h>
     51   1.29       cgd #include <sys/namei.h>
     52   1.29       cgd #include <sys/vnode.h>
     53   1.29       cgd #include <sys/proc.h>
     54   1.29       cgd #include <sys/systm.h>
     55   1.29       cgd #include <sys/timeb.h>
     56   1.29       cgd #include <sys/times.h>
     57   1.29       cgd #include <sys/buf.h>
     58   1.29       cgd #include <sys/acct.h>
     59   1.29       cgd #include <sys/file.h>
     60   1.29       cgd #include <sys/kernel.h>
     61   1.29       cgd #include <sys/wait.h>
     62   1.29       cgd #include <sys/ktrace.h>
     63   1.29       cgd #include <sys/syslog.h>
     64   1.29       cgd #include <sys/stat.h>
     65   1.29       cgd #include <sys/core.h>
     66   1.53  christos #include <sys/ptrace.h>
     67   1.59       cgd #include <sys/filedesc.h>
     68   1.89   thorpej #include <sys/malloc.h>
     69   1.89   thorpej #include <sys/pool.h>
     70   1.29       cgd 
     71   1.32       cgd #include <sys/mount.h>
     72   1.32       cgd #include <sys/syscallargs.h>
     73   1.32       cgd 
     74   1.29       cgd #include <machine/cpu.h>
     75   1.29       cgd 
     76   1.29       cgd #include <sys/user.h>		/* for coredump */
     77   1.52  christos 
     78   1.69       mrg #include <uvm/uvm_extern.h>
     79   1.69       mrg 
     80  1.112     lukem static void	proc_stop(struct proc *p);
     81  1.112     lukem void		killproc(struct proc *, char *);
     82  1.112     lukem static int	build_corename(struct proc *, char [MAXPATHLEN]);
     83  1.112     lukem sigset_t	contsigmask, stopsigmask, sigcantmask;
     84   1.29       cgd 
     85  1.112     lukem struct pool	sigacts_pool;	/* memory pool for sigacts structures */
     86   1.89   thorpej 
     87  1.113       mrg int	(*coredump32_hook)(struct proc *p, struct vnode *vp);
     88  1.113       mrg 
     89   1.29       cgd /*
     90   1.29       cgd  * Can process p, with pcred pc, send the signal signum to process q?
     91   1.29       cgd  */
     92  1.112     lukem #define	CANSIGNAL(p, pc, q, signum) \
     93   1.29       cgd 	((pc)->pc_ucred->cr_uid == 0 || \
     94   1.29       cgd 	    (pc)->p_ruid == (q)->p_cred->p_ruid || \
     95   1.29       cgd 	    (pc)->pc_ucred->cr_uid == (q)->p_cred->p_ruid || \
     96   1.29       cgd 	    (pc)->p_ruid == (q)->p_ucred->cr_uid || \
     97   1.29       cgd 	    (pc)->pc_ucred->cr_uid == (q)->p_ucred->cr_uid || \
     98   1.29       cgd 	    ((signum) == SIGCONT && (q)->p_session == (p)->p_session))
     99   1.29       cgd 
    100   1.89   thorpej /*
    101   1.89   thorpej  * Initialize signal-related data structures.
    102   1.89   thorpej  */
    103   1.89   thorpej void
    104  1.112     lukem signal_init(void)
    105   1.89   thorpej {
    106  1.112     lukem 
    107   1.89   thorpej 	pool_init(&sigacts_pool, sizeof(struct sigacts), 0, 0, 0, "sigapl",
    108   1.89   thorpej 	    0, pool_page_alloc_nointr, pool_page_free_nointr, M_SUBPROC);
    109   1.89   thorpej }
    110   1.89   thorpej 
    111   1.89   thorpej /*
    112  1.109  jdolecek  * Create an initial sigctx structure, using the same signal state
    113  1.109  jdolecek  * as p. If 'share' is set, share the sigctx_proc part, otherwise just
    114  1.109  jdolecek  * copy it from parent.
    115   1.89   thorpej  */
    116  1.109  jdolecek void
    117  1.112     lukem sigactsinit(struct proc *np, struct proc *pp, int share)
    118   1.89   thorpej {
    119   1.89   thorpej 	struct sigacts *ps;
    120   1.89   thorpej 
    121  1.109  jdolecek 	if (share) {
    122  1.109  jdolecek 		np->p_sigacts = pp->p_sigacts;
    123  1.109  jdolecek 		pp->p_sigacts->sa_refcnt++;
    124  1.109  jdolecek 	} else {
    125  1.109  jdolecek 		ps = pool_get(&sigacts_pool, PR_WAITOK);
    126  1.109  jdolecek 		if (pp)
    127  1.109  jdolecek 			memcpy(ps, pp->p_sigacts, sizeof(struct sigacts));
    128  1.109  jdolecek 		else
    129  1.109  jdolecek 			memset(ps, '\0', sizeof(struct sigacts));
    130  1.109  jdolecek 		ps->sa_refcnt = 1;
    131  1.109  jdolecek 		np->p_sigacts = ps;
    132  1.109  jdolecek 	}
    133   1.89   thorpej }
    134   1.89   thorpej 
    135   1.89   thorpej /*
    136  1.109  jdolecek  * Make this process not share its sigctx, maintaining all
    137   1.89   thorpej  * signal state.
    138   1.89   thorpej  */
    139   1.89   thorpej void
    140  1.112     lukem sigactsunshare(struct proc *p)
    141   1.89   thorpej {
    142  1.109  jdolecek 	struct sigacts *oldps;
    143   1.89   thorpej 
    144  1.109  jdolecek 	if (p->p_sigacts->sa_refcnt == 1)
    145   1.89   thorpej 		return;
    146   1.89   thorpej 
    147  1.109  jdolecek 	oldps = p->p_sigacts;
    148  1.109  jdolecek 	sigactsinit(p, NULL, 0);
    149  1.109  jdolecek 
    150  1.109  jdolecek 	if (--oldps->sa_refcnt == 0)
    151  1.109  jdolecek 		pool_put(&sigacts_pool, oldps);
    152   1.89   thorpej }
    153   1.89   thorpej 
    154   1.89   thorpej /*
    155  1.109  jdolecek  * Release a sigctx structure.
    156   1.89   thorpej  */
    157   1.89   thorpej void
    158  1.112     lukem sigactsfree(struct proc *p)
    159   1.89   thorpej {
    160  1.112     lukem 	struct sigacts *ps;
    161   1.89   thorpej 
    162  1.112     lukem 	ps = p->p_sigacts;
    163  1.109  jdolecek 	if (--ps->sa_refcnt > 0)
    164   1.89   thorpej 		return;
    165   1.89   thorpej 
    166   1.89   thorpej 	pool_put(&sigacts_pool, ps);
    167   1.89   thorpej }
    168   1.89   thorpej 
    169   1.79   mycroft int
    170  1.112     lukem sigaction1(struct proc *p, int signum, const struct sigaction *nsa,
    171  1.112     lukem 	struct sigaction *osa)
    172   1.79   mycroft {
    173  1.112     lukem 	struct sigacts	*ps;
    174  1.112     lukem 	int		prop;
    175   1.79   mycroft 
    176  1.112     lukem 	ps = p->p_sigacts;
    177   1.79   mycroft 	if (signum <= 0 || signum >= NSIG)
    178   1.79   mycroft 		return (EINVAL);
    179   1.79   mycroft 
    180   1.79   mycroft 	if (osa)
    181  1.109  jdolecek 		*osa = SIGACTION_PS(ps, signum);
    182   1.79   mycroft 
    183   1.79   mycroft 	if (nsa) {
    184   1.79   mycroft 		if (nsa->sa_flags & ~SA_ALLBITS)
    185   1.79   mycroft 			return (EINVAL);
    186   1.79   mycroft 
    187   1.79   mycroft 		prop = sigprop[signum];
    188   1.79   mycroft 		if (prop & SA_CANTMASK)
    189   1.79   mycroft 			return (EINVAL);
    190   1.79   mycroft 
    191  1.105   thorpej 		(void) splsched();	/* XXXSMP */
    192  1.109  jdolecek 		SIGACTION_PS(ps, signum) = *nsa;
    193  1.109  jdolecek 		sigminusset(&sigcantmask, &SIGACTION_PS(ps, signum).sa_mask);
    194   1.79   mycroft 		if ((prop & SA_NORESET) != 0)
    195  1.109  jdolecek 			SIGACTION_PS(ps, signum).sa_flags &= ~SA_RESETHAND;
    196   1.79   mycroft 		if (signum == SIGCHLD) {
    197   1.79   mycroft 			if (nsa->sa_flags & SA_NOCLDSTOP)
    198   1.79   mycroft 				p->p_flag |= P_NOCLDSTOP;
    199   1.79   mycroft 			else
    200   1.79   mycroft 				p->p_flag &= ~P_NOCLDSTOP;
    201   1.82     enami 			if (nsa->sa_flags & SA_NOCLDWAIT) {
    202   1.81  christos 				/*
    203   1.81  christos 				 * Paranoia: since SA_NOCLDWAIT is implemented
    204   1.81  christos 				 * by reparenting the dying child to PID 1 (and
    205  1.112     lukem 				 * trust it to reap the zombie), PID 1 itself
    206  1.112     lukem 				 * is forbidden to set SA_NOCLDWAIT.
    207   1.81  christos 				 */
    208   1.81  christos 				if (p->p_pid == 1)
    209   1.81  christos 					p->p_flag &= ~P_NOCLDWAIT;
    210   1.81  christos 				else
    211   1.81  christos 					p->p_flag |= P_NOCLDWAIT;
    212   1.81  christos 			} else
    213   1.81  christos 				p->p_flag &= ~P_NOCLDWAIT;
    214   1.79   mycroft 		}
    215   1.79   mycroft 		if ((nsa->sa_flags & SA_NODEFER) == 0)
    216  1.109  jdolecek 			sigaddset(&SIGACTION_PS(ps, signum).sa_mask, signum);
    217   1.79   mycroft 		else
    218  1.109  jdolecek 			sigdelset(&SIGACTION_PS(ps, signum).sa_mask, signum);
    219   1.79   mycroft 		/*
    220  1.112     lukem 	 	 * Set bit in p_sigctx.ps_sigignore for signals that are set to
    221  1.112     lukem 		 * SIG_IGN, and for signals set to SIG_DFL where the default is
    222  1.112     lukem 		 * to ignore. However, don't put SIGCONT in
    223  1.112     lukem 		 * p_sigctx.ps_sigignore, as we have to restart the process.
    224  1.112     lukem 	 	 */
    225   1.79   mycroft 		if (nsa->sa_handler == SIG_IGN ||
    226   1.79   mycroft 		    (nsa->sa_handler == SIG_DFL && (prop & SA_IGNORE) != 0)) {
    227  1.112     lukem 						/* never to be seen again */
    228  1.112     lukem 			sigdelset(&p->p_sigctx.ps_siglist, signum);
    229  1.112     lukem 			if (signum != SIGCONT) {
    230  1.112     lukem 						/* easier in psignal */
    231  1.112     lukem 				sigaddset(&p->p_sigctx.ps_sigignore, signum);
    232  1.112     lukem 			}
    233  1.109  jdolecek 			sigdelset(&p->p_sigctx.ps_sigcatch, signum);
    234   1.79   mycroft 		} else {
    235  1.109  jdolecek 			sigdelset(&p->p_sigctx.ps_sigignore, signum);
    236   1.79   mycroft 			if (nsa->sa_handler == SIG_DFL)
    237  1.109  jdolecek 				sigdelset(&p->p_sigctx.ps_sigcatch, signum);
    238   1.79   mycroft 			else
    239  1.109  jdolecek 				sigaddset(&p->p_sigctx.ps_sigcatch, signum);
    240   1.79   mycroft 		}
    241   1.79   mycroft 		(void) spl0();
    242   1.79   mycroft 	}
    243   1.79   mycroft 
    244   1.79   mycroft 	return (0);
    245   1.79   mycroft }
    246   1.79   mycroft 
    247   1.29       cgd /* ARGSUSED */
    248   1.52  christos int
    249  1.112     lukem sys___sigaction14(struct proc *p, void *v, register_t *retval)
    250   1.48   thorpej {
    251   1.98  augustss 	struct sys___sigaction14_args /* {
    252  1.112     lukem 		syscallarg(int)				signum;
    253  1.112     lukem 		syscallarg(const struct sigaction *)	nsa;
    254  1.112     lukem 		syscallarg(struct sigaction *)		osa;
    255   1.48   thorpej 	} */ *uap = v;
    256  1.112     lukem 	struct sigaction	nsa, osa;
    257  1.112     lukem 	int			error;
    258   1.29       cgd 
    259   1.79   mycroft 	if (SCARG(uap, nsa)) {
    260   1.79   mycroft 		error = copyin(SCARG(uap, nsa), &nsa, sizeof(nsa));
    261   1.52  christos 		if (error)
    262   1.29       cgd 			return (error);
    263   1.29       cgd 	}
    264   1.79   mycroft 	error = sigaction1(p, SCARG(uap, signum),
    265   1.79   mycroft 	    SCARG(uap, nsa) ? &nsa : 0, SCARG(uap, osa) ? &osa : 0);
    266   1.79   mycroft 	if (error)
    267   1.79   mycroft 		return (error);
    268   1.79   mycroft 	if (SCARG(uap, osa)) {
    269   1.79   mycroft 		error = copyout(&osa, SCARG(uap, osa), sizeof(osa));
    270   1.52  christos 		if (error)
    271   1.29       cgd 			return (error);
    272   1.29       cgd 	}
    273   1.29       cgd 	return (0);
    274   1.29       cgd }
    275   1.29       cgd 
    276   1.29       cgd /*
    277   1.29       cgd  * Initialize signal state for process 0;
    278   1.79   mycroft  * set to ignore signals that are ignored by default and disable the signal
    279   1.79   mycroft  * stack.
    280   1.29       cgd  */
    281   1.29       cgd void
    282  1.112     lukem siginit(struct proc *p)
    283   1.29       cgd {
    284  1.112     lukem 	struct sigacts	*ps;
    285  1.112     lukem 	int		signum, prop;
    286   1.79   mycroft 
    287  1.112     lukem 	ps = p->p_sigacts;
    288   1.79   mycroft 	sigemptyset(&contsigmask);
    289   1.79   mycroft 	sigemptyset(&stopsigmask);
    290   1.79   mycroft 	sigemptyset(&sigcantmask);
    291   1.85   mycroft 	for (signum = 1; signum < NSIG; signum++) {
    292   1.79   mycroft 		prop = sigprop[signum];
    293   1.79   mycroft 		if (prop & SA_CONT)
    294   1.79   mycroft 			sigaddset(&contsigmask, signum);
    295   1.79   mycroft 		if (prop & SA_STOP)
    296   1.79   mycroft 			sigaddset(&stopsigmask, signum);
    297   1.79   mycroft 		if (prop & SA_CANTMASK)
    298   1.79   mycroft 			sigaddset(&sigcantmask, signum);
    299   1.79   mycroft 		if (prop & SA_IGNORE && signum != SIGCONT)
    300  1.109  jdolecek 			sigaddset(&p->p_sigctx.ps_sigignore, signum);
    301  1.109  jdolecek 		sigemptyset(&SIGACTION_PS(ps, signum).sa_mask);
    302  1.109  jdolecek 		SIGACTION_PS(ps, signum).sa_flags = SA_RESTART;
    303   1.79   mycroft 	}
    304  1.109  jdolecek 	sigemptyset(&p->p_sigctx.ps_sigcatch);
    305   1.79   mycroft 	p->p_flag &= ~P_NOCLDSTOP;
    306   1.29       cgd 
    307   1.79   mycroft 	/*
    308   1.79   mycroft 	 * Reset stack state to the user stack.
    309   1.79   mycroft 	 */
    310  1.109  jdolecek 	p->p_sigctx.ps_sigstk.ss_flags = SS_DISABLE;
    311  1.109  jdolecek 	p->p_sigctx.ps_sigstk.ss_size = 0;
    312  1.109  jdolecek 	p->p_sigctx.ps_sigstk.ss_sp = 0;
    313   1.89   thorpej 
    314   1.89   thorpej 	/* One reference. */
    315  1.109  jdolecek 	ps->sa_refcnt = 1;
    316   1.29       cgd }
    317   1.29       cgd 
    318   1.29       cgd /*
    319   1.29       cgd  * Reset signals for an exec of the specified process.
    320   1.29       cgd  */
    321   1.29       cgd void
    322  1.112     lukem execsigs(struct proc *p)
    323   1.29       cgd {
    324  1.112     lukem 	struct sigacts	*ps;
    325  1.112     lukem 	int		signum, prop;
    326   1.29       cgd 
    327  1.112     lukem 	ps = p->p_sigacts;
    328   1.29       cgd 	/*
    329   1.29       cgd 	 * Reset caught signals.  Held signals remain held
    330  1.109  jdolecek 	 * through p_sigctx.ps_sigmask (unless they were caught,
    331   1.29       cgd 	 * and are now ignored by default).
    332   1.29       cgd 	 */
    333   1.85   mycroft 	for (signum = 1; signum < NSIG; signum++) {
    334  1.109  jdolecek 		if (sigismember(&p->p_sigctx.ps_sigcatch, signum)) {
    335   1.79   mycroft 			prop = sigprop[signum];
    336   1.79   mycroft 			if (prop & SA_IGNORE) {
    337   1.79   mycroft 				if ((prop & SA_CONT) == 0)
    338  1.112     lukem 					sigaddset(&p->p_sigctx.ps_sigignore,
    339  1.112     lukem 					    signum);
    340  1.109  jdolecek 				sigdelset(&p->p_sigctx.ps_siglist, signum);
    341   1.79   mycroft 			}
    342  1.109  jdolecek 			SIGACTION_PS(ps, signum).sa_handler = SIG_DFL;
    343   1.29       cgd 		}
    344  1.109  jdolecek 		sigemptyset(&SIGACTION_PS(ps, signum).sa_mask);
    345  1.109  jdolecek 		SIGACTION_PS(ps, signum).sa_flags = SA_RESTART;
    346   1.29       cgd 	}
    347  1.109  jdolecek 	sigemptyset(&p->p_sigctx.ps_sigcatch);
    348   1.79   mycroft 	p->p_flag &= ~P_NOCLDSTOP;
    349   1.79   mycroft 
    350   1.29       cgd 	/*
    351   1.29       cgd 	 * Reset stack state to the user stack.
    352   1.29       cgd 	 */
    353  1.109  jdolecek 	p->p_sigctx.ps_sigstk.ss_flags = SS_DISABLE;
    354  1.109  jdolecek 	p->p_sigctx.ps_sigstk.ss_size = 0;
    355  1.109  jdolecek 	p->p_sigctx.ps_sigstk.ss_sp = 0;
    356   1.29       cgd }
    357   1.29       cgd 
    358   1.79   mycroft int
    359  1.112     lukem sigprocmask1(struct proc *p, int how, const sigset_t *nss, sigset_t *oss)
    360   1.79   mycroft {
    361   1.79   mycroft 
    362   1.79   mycroft 	if (oss)
    363  1.109  jdolecek 		*oss = p->p_sigctx.ps_sigmask;
    364   1.79   mycroft 
    365   1.79   mycroft 	if (nss) {
    366  1.105   thorpej 		(void)splsched();	/* XXXSMP */
    367   1.79   mycroft 		switch (how) {
    368   1.79   mycroft 		case SIG_BLOCK:
    369  1.109  jdolecek 			sigplusset(nss, &p->p_sigctx.ps_sigmask);
    370   1.79   mycroft 			break;
    371   1.79   mycroft 		case SIG_UNBLOCK:
    372  1.109  jdolecek 			sigminusset(nss, &p->p_sigctx.ps_sigmask);
    373  1.110   thorpej 			CHECKSIGS(p);
    374   1.79   mycroft 			break;
    375   1.79   mycroft 		case SIG_SETMASK:
    376  1.109  jdolecek 			p->p_sigctx.ps_sigmask = *nss;
    377  1.110   thorpej 			CHECKSIGS(p);
    378   1.79   mycroft 			break;
    379   1.79   mycroft 		default:
    380  1.104   thorpej 			(void)spl0();	/* XXXSMP */
    381   1.79   mycroft 			return (EINVAL);
    382   1.79   mycroft 		}
    383  1.109  jdolecek 		sigminusset(&sigcantmask, &p->p_sigctx.ps_sigmask);
    384  1.104   thorpej 		(void)spl0();		/* XXXSMP */
    385   1.79   mycroft 	}
    386   1.79   mycroft 
    387   1.79   mycroft 	return (0);
    388   1.79   mycroft }
    389   1.79   mycroft 
    390   1.29       cgd /*
    391   1.29       cgd  * Manipulate signal mask.
    392   1.29       cgd  * Note that we receive new mask, not pointer,
    393   1.29       cgd  * and return old mask as return value;
    394   1.29       cgd  * the library stub does the rest.
    395   1.29       cgd  */
    396   1.52  christos int
    397  1.112     lukem sys___sigprocmask14(struct proc *p, void *v, register_t *retval)
    398   1.48   thorpej {
    399   1.79   mycroft 	struct sys___sigprocmask14_args /* {
    400  1.112     lukem 		syscallarg(int)			how;
    401  1.112     lukem 		syscallarg(const sigset_t *)	set;
    402  1.112     lukem 		syscallarg(sigset_t *)		oset;
    403   1.48   thorpej 	} */ *uap = v;
    404  1.112     lukem 	sigset_t	nss, oss;
    405  1.112     lukem 	int		error;
    406   1.29       cgd 
    407   1.79   mycroft 	if (SCARG(uap, set)) {
    408   1.79   mycroft 		error = copyin(SCARG(uap, set), &nss, sizeof(nss));
    409   1.79   mycroft 		if (error)
    410   1.79   mycroft 			return (error);
    411   1.79   mycroft 	}
    412   1.79   mycroft 	error = sigprocmask1(p, SCARG(uap, how),
    413   1.79   mycroft 	    SCARG(uap, set) ? &nss : 0, SCARG(uap, oset) ? &oss : 0);
    414   1.79   mycroft 	if (error)
    415   1.79   mycroft 		return (error);
    416   1.79   mycroft 	if (SCARG(uap, oset)) {
    417   1.79   mycroft 		error = copyout(&oss, SCARG(uap, oset), sizeof(oss));
    418   1.79   mycroft 		if (error)
    419   1.79   mycroft 			return (error);
    420   1.79   mycroft 	}
    421   1.79   mycroft 	return (0);
    422   1.79   mycroft }
    423   1.79   mycroft 
    424   1.79   mycroft void
    425  1.112     lukem sigpending1(struct proc *p, sigset_t *ss)
    426   1.79   mycroft {
    427   1.29       cgd 
    428  1.109  jdolecek 	*ss = p->p_sigctx.ps_siglist;
    429  1.109  jdolecek 	sigminusset(&p->p_sigctx.ps_sigmask, ss);
    430   1.29       cgd }
    431   1.29       cgd 
    432   1.29       cgd /* ARGSUSED */
    433   1.52  christos int
    434  1.112     lukem sys___sigpending14(struct proc *p, void *v, register_t *retval)
    435   1.29       cgd {
    436   1.98  augustss 	struct sys___sigpending14_args /* {
    437  1.112     lukem 		syscallarg(sigset_t *)	set;
    438   1.79   mycroft 	} */ *uap = v;
    439   1.79   mycroft 	sigset_t ss;
    440   1.79   mycroft 
    441   1.79   mycroft 	sigpending1(p, &ss);
    442   1.79   mycroft 	return (copyout(&ss, SCARG(uap, set), sizeof(ss)));
    443   1.79   mycroft }
    444   1.79   mycroft 
    445   1.79   mycroft int
    446  1.112     lukem sigsuspend1(struct proc *p, const sigset_t *ss)
    447   1.79   mycroft {
    448  1.112     lukem 	struct sigacts *ps;
    449   1.29       cgd 
    450  1.112     lukem 	ps = p->p_sigacts;
    451   1.79   mycroft 	if (ss) {
    452   1.79   mycroft 		/*
    453   1.79   mycroft 		 * When returning from sigpause, we want
    454   1.79   mycroft 		 * the old mask to be restored after the
    455   1.79   mycroft 		 * signal handler has finished.  Thus, we
    456  1.109  jdolecek 		 * save it here and mark the sigctx structure
    457   1.79   mycroft 		 * to indicate this.
    458   1.79   mycroft 		 */
    459  1.109  jdolecek 		p->p_sigctx.ps_oldmask = p->p_sigctx.ps_sigmask;
    460  1.109  jdolecek 		p->p_sigctx.ps_flags |= SAS_OLDMASK;
    461  1.105   thorpej 		(void) splsched();	/* XXXSMP */
    462  1.109  jdolecek 		p->p_sigctx.ps_sigmask = *ss;
    463  1.110   thorpej 		CHECKSIGS(p);
    464  1.109  jdolecek 		sigminusset(&sigcantmask, &p->p_sigctx.ps_sigmask);
    465  1.104   thorpej 		(void) spl0();		/* XXXSMP */
    466   1.79   mycroft 	}
    467   1.79   mycroft 
    468   1.79   mycroft 	while (tsleep((caddr_t) ps, PPAUSE|PCATCH, "pause", 0) == 0)
    469   1.79   mycroft 		/* void */;
    470   1.79   mycroft 	/* always return EINTR rather than ERESTART... */
    471   1.79   mycroft 	return (EINTR);
    472   1.29       cgd }
    473   1.29       cgd 
    474   1.29       cgd /*
    475   1.29       cgd  * Suspend process until signal, providing mask to be set
    476   1.29       cgd  * in the meantime.  Note nonstandard calling convention:
    477   1.29       cgd  * libc stub passes mask, not pointer, to save a copyin.
    478   1.29       cgd  */
    479   1.29       cgd /* ARGSUSED */
    480   1.29       cgd int
    481  1.112     lukem sys___sigsuspend14(struct proc *p, void *v, register_t *retval)
    482   1.48   thorpej {
    483   1.79   mycroft 	struct sys___sigsuspend14_args /* {
    484  1.112     lukem 		syscallarg(const sigset_t *)	set;
    485   1.48   thorpej 	} */ *uap = v;
    486  1.112     lukem 	sigset_t	ss;
    487  1.112     lukem 	int		error;
    488   1.79   mycroft 
    489   1.79   mycroft 	if (SCARG(uap, set)) {
    490   1.79   mycroft 		error = copyin(SCARG(uap, set), &ss, sizeof(ss));
    491   1.79   mycroft 		if (error)
    492   1.79   mycroft 			return (error);
    493   1.79   mycroft 	}
    494   1.79   mycroft 
    495   1.79   mycroft 	return (sigsuspend1(p, SCARG(uap, set) ? &ss : 0));
    496   1.79   mycroft }
    497   1.79   mycroft 
    498   1.79   mycroft int
    499  1.112     lukem sigaltstack1(struct proc *p, const struct sigaltstack *nss,
    500  1.112     lukem 	struct sigaltstack *oss)
    501   1.79   mycroft {
    502  1.112     lukem 
    503   1.79   mycroft 	if (oss)
    504  1.109  jdolecek 		*oss = p->p_sigctx.ps_sigstk;
    505   1.79   mycroft 
    506   1.79   mycroft 	if (nss) {
    507   1.79   mycroft 		if (nss->ss_flags & ~SS_ALLBITS)
    508   1.79   mycroft 			return (EINVAL);
    509   1.79   mycroft 
    510   1.79   mycroft 		if (nss->ss_flags & SS_DISABLE) {
    511  1.109  jdolecek 			if (p->p_sigctx.ps_sigstk.ss_flags & SS_ONSTACK)
    512   1.79   mycroft 				return (EINVAL);
    513   1.79   mycroft 		} else {
    514   1.79   mycroft 			if (nss->ss_size < MINSIGSTKSZ)
    515   1.79   mycroft 				return (ENOMEM);
    516   1.79   mycroft 		}
    517  1.109  jdolecek 		p->p_sigctx.ps_sigstk = *nss;
    518   1.79   mycroft 	}
    519   1.79   mycroft 
    520   1.79   mycroft 	return (0);
    521   1.29       cgd }
    522   1.29       cgd 
    523   1.29       cgd /* ARGSUSED */
    524   1.52  christos int
    525  1.112     lukem sys___sigaltstack14(struct proc *p, void *v, register_t *retval)
    526   1.48   thorpej {
    527   1.98  augustss 	struct sys___sigaltstack14_args /* {
    528  1.112     lukem 		syscallarg(const struct sigaltstack *)	nss;
    529  1.112     lukem 		syscallarg(struct sigaltstack *)	oss;
    530   1.48   thorpej 	} */ *uap = v;
    531  1.112     lukem 	struct sigaltstack	nss, oss;
    532  1.112     lukem 	int			error;
    533   1.29       cgd 
    534   1.79   mycroft 	if (SCARG(uap, nss)) {
    535   1.79   mycroft 		error = copyin(SCARG(uap, nss), &nss, sizeof(nss));
    536   1.79   mycroft 		if (error)
    537   1.79   mycroft 			return (error);
    538   1.79   mycroft 	}
    539   1.79   mycroft 	error = sigaltstack1(p,
    540   1.79   mycroft 	    SCARG(uap, nss) ? &nss : 0, SCARG(uap, oss) ? &oss : 0);
    541   1.52  christos 	if (error)
    542   1.29       cgd 		return (error);
    543   1.79   mycroft 	if (SCARG(uap, oss)) {
    544   1.79   mycroft 		error = copyout(&oss, SCARG(uap, oss), sizeof(oss));
    545   1.79   mycroft 		if (error)
    546   1.79   mycroft 			return (error);
    547   1.29       cgd 	}
    548   1.29       cgd 	return (0);
    549   1.29       cgd }
    550   1.29       cgd 
    551   1.29       cgd /* ARGSUSED */
    552   1.29       cgd int
    553  1.112     lukem sys_kill(struct proc *cp, void *v, register_t *retval)
    554   1.48   thorpej {
    555   1.98  augustss 	struct sys_kill_args /* {
    556  1.112     lukem 		syscallarg(int)	pid;
    557  1.112     lukem 		syscallarg(int)	signum;
    558   1.48   thorpej 	} */ *uap = v;
    559  1.112     lukem 	struct proc	*p;
    560  1.112     lukem 	struct pcred	*pc;
    561   1.29       cgd 
    562  1.112     lukem 	pc = cp->p_cred;
    563   1.32       cgd 	if ((u_int)SCARG(uap, signum) >= NSIG)
    564   1.29       cgd 		return (EINVAL);
    565   1.32       cgd 	if (SCARG(uap, pid) > 0) {
    566   1.29       cgd 		/* kill single process */
    567   1.32       cgd 		if ((p = pfind(SCARG(uap, pid))) == NULL)
    568   1.29       cgd 			return (ESRCH);
    569   1.32       cgd 		if (!CANSIGNAL(cp, pc, p, SCARG(uap, signum)))
    570   1.29       cgd 			return (EPERM);
    571   1.32       cgd 		if (SCARG(uap, signum))
    572   1.32       cgd 			psignal(p, SCARG(uap, signum));
    573   1.29       cgd 		return (0);
    574   1.29       cgd 	}
    575   1.32       cgd 	switch (SCARG(uap, pid)) {
    576   1.29       cgd 	case -1:		/* broadcast signal */
    577   1.32       cgd 		return (killpg1(cp, SCARG(uap, signum), 0, 1));
    578   1.29       cgd 	case 0:			/* signal own process group */
    579   1.32       cgd 		return (killpg1(cp, SCARG(uap, signum), 0, 0));
    580   1.29       cgd 	default:		/* negative explicit process group */
    581   1.32       cgd 		return (killpg1(cp, SCARG(uap, signum), -SCARG(uap, pid), 0));
    582   1.29       cgd 	}
    583   1.29       cgd 	/* NOTREACHED */
    584   1.29       cgd }
    585   1.29       cgd 
    586   1.29       cgd /*
    587   1.29       cgd  * Common code for kill process group/broadcast kill.
    588   1.29       cgd  * cp is calling process.
    589   1.29       cgd  */
    590   1.52  christos int
    591  1.112     lukem killpg1(struct proc *cp, int signum, int pgid, int all)
    592   1.29       cgd {
    593  1.112     lukem 	struct proc	*p;
    594  1.112     lukem 	struct pcred	*pc;
    595  1.112     lukem 	struct pgrp	*pgrp;
    596  1.112     lukem 	int		nfound;
    597   1.29       cgd 
    598  1.112     lukem 	pc = cp->p_cred;
    599  1.112     lukem 	nfound = 0;
    600   1.91   thorpej 	if (all) {
    601   1.29       cgd 		/*
    602   1.29       cgd 		 * broadcast
    603   1.29       cgd 		 */
    604   1.92   thorpej 		proclist_lock_read();
    605   1.31   mycroft 		for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) {
    606   1.29       cgd 			if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
    607   1.29       cgd 			    p == cp || !CANSIGNAL(cp, pc, p, signum))
    608   1.29       cgd 				continue;
    609   1.29       cgd 			nfound++;
    610   1.29       cgd 			if (signum)
    611   1.29       cgd 				psignal(p, signum);
    612   1.29       cgd 		}
    613   1.91   thorpej 		proclist_unlock_read();
    614   1.91   thorpej 	} else {
    615   1.29       cgd 		if (pgid == 0)
    616   1.29       cgd 			/*
    617   1.29       cgd 			 * zero pgid means send to my process group.
    618   1.29       cgd 			 */
    619   1.29       cgd 			pgrp = cp->p_pgrp;
    620   1.29       cgd 		else {
    621   1.29       cgd 			pgrp = pgfind(pgid);
    622   1.29       cgd 			if (pgrp == NULL)
    623   1.29       cgd 				return (ESRCH);
    624   1.29       cgd 		}
    625  1.112     lukem 		for (p = pgrp->pg_members.lh_first;
    626  1.112     lukem 		    p != 0;
    627  1.112     lukem 		    p = p->p_pglist.le_next) {
    628   1.29       cgd 			if (p->p_pid <= 1 || p->p_flag & P_SYSTEM ||
    629   1.29       cgd 			    !CANSIGNAL(cp, pc, p, signum))
    630   1.29       cgd 				continue;
    631   1.29       cgd 			nfound++;
    632   1.90   thorpej 			if (signum && P_ZOMBIE(p) == 0)
    633   1.29       cgd 				psignal(p, signum);
    634   1.29       cgd 		}
    635   1.29       cgd 	}
    636   1.29       cgd 	return (nfound ? 0 : ESRCH);
    637   1.29       cgd }
    638   1.29       cgd 
    639   1.29       cgd /*
    640   1.29       cgd  * Send a signal to a process group.
    641   1.29       cgd  */
    642   1.29       cgd void
    643  1.112     lukem gsignal(int pgid, int signum)
    644   1.29       cgd {
    645   1.29       cgd 	struct pgrp *pgrp;
    646   1.29       cgd 
    647   1.29       cgd 	if (pgid && (pgrp = pgfind(pgid)))
    648   1.29       cgd 		pgsignal(pgrp, signum, 0);
    649   1.29       cgd }
    650   1.29       cgd 
    651   1.29       cgd /*
    652   1.71      fvdl  * Send a signal to a process group. If checktty is 1,
    653   1.29       cgd  * limit to members which have a controlling terminal.
    654   1.29       cgd  */
    655   1.29       cgd void
    656  1.112     lukem pgsignal(struct pgrp *pgrp, int signum, int checkctty)
    657   1.29       cgd {
    658   1.98  augustss 	struct proc *p;
    659   1.29       cgd 
    660   1.29       cgd 	if (pgrp)
    661  1.112     lukem 		for (p = pgrp->pg_members.lh_first; p != 0;
    662  1.112     lukem 		    p = p->p_pglist.le_next)
    663   1.29       cgd 			if (checkctty == 0 || p->p_flag & P_CONTROLT)
    664   1.29       cgd 				psignal(p, signum);
    665   1.29       cgd }
    666   1.29       cgd 
    667   1.29       cgd /*
    668   1.29       cgd  * Send a signal caused by a trap to the current process.
    669   1.29       cgd  * If it will be caught immediately, deliver it with correct code.
    670   1.29       cgd  * Otherwise, post it normally.
    671   1.29       cgd  */
    672   1.29       cgd void
    673  1.112     lukem trapsignal(struct proc *p, int signum, u_long code)
    674   1.29       cgd {
    675  1.112     lukem 	struct sigacts *ps;
    676   1.29       cgd 
    677  1.112     lukem 	ps = p->p_sigacts;
    678   1.79   mycroft 	if ((p->p_flag & P_TRACED) == 0 &&
    679  1.109  jdolecek 	    sigismember(&p->p_sigctx.ps_sigcatch, signum) &&
    680  1.109  jdolecek 	    !sigismember(&p->p_sigctx.ps_sigmask, signum)) {
    681   1.29       cgd 		p->p_stats->p_ru.ru_nsignals++;
    682   1.29       cgd #ifdef KTRACE
    683   1.29       cgd 		if (KTRPOINT(p, KTR_PSIG))
    684  1.100  sommerfe 			ktrpsig(p, signum,
    685  1.109  jdolecek 			    SIGACTION_PS(ps, signum).sa_handler,
    686  1.109  jdolecek 			    &p->p_sigctx.ps_sigmask, code);
    687   1.29       cgd #endif
    688  1.109  jdolecek 		(*p->p_emul->e_sendsig)(SIGACTION_PS(ps, signum).sa_handler,
    689  1.109  jdolecek 		    signum, &p->p_sigctx.ps_sigmask, code);
    690  1.105   thorpej 		(void) splsched();	/* XXXSMP */
    691  1.112     lukem 		sigplusset(&SIGACTION_PS(ps, signum).sa_mask,
    692  1.112     lukem 		    &p->p_sigctx.ps_sigmask);
    693  1.109  jdolecek 		if (SIGACTION_PS(ps, signum).sa_flags & SA_RESETHAND) {
    694  1.109  jdolecek 			sigdelset(&p->p_sigctx.ps_sigcatch, signum);
    695   1.45   mycroft 			if (signum != SIGCONT && sigprop[signum] & SA_IGNORE)
    696  1.109  jdolecek 				sigaddset(&p->p_sigctx.ps_sigignore, signum);
    697  1.109  jdolecek 			SIGACTION_PS(ps, signum).sa_handler = SIG_DFL;
    698   1.45   mycroft 		}
    699  1.104   thorpej 		(void) spl0();		/* XXXSMP */
    700   1.29       cgd 	} else {
    701  1.109  jdolecek 		p->p_sigctx.ps_code = code;	/* XXX for core dump/debugger */
    702  1.109  jdolecek 		p->p_sigctx.ps_sig = signum;	/* XXX to verify code */
    703   1.29       cgd 		psignal(p, signum);
    704   1.29       cgd 	}
    705   1.29       cgd }
    706   1.29       cgd 
    707   1.29       cgd /*
    708   1.29       cgd  * Send the signal to the process.  If the signal has an action, the action
    709   1.29       cgd  * is usually performed by the target process rather than the caller; we add
    710   1.29       cgd  * the signal to the set of pending signals for the process.
    711   1.29       cgd  *
    712   1.29       cgd  * Exceptions:
    713   1.29       cgd  *   o When a stop signal is sent to a sleeping process that takes the
    714   1.29       cgd  *     default action, the process is stopped without awakening it.
    715   1.29       cgd  *   o SIGCONT restarts stopped processes (or puts them back to sleep)
    716   1.29       cgd  *     regardless of the signal action (eg, blocked or ignored).
    717   1.29       cgd  *
    718   1.29       cgd  * Other ignored signals are discarded immediately.
    719  1.104   thorpej  *
    720  1.104   thorpej  * XXXSMP: Invoked as psignal() or sched_psignal().
    721   1.29       cgd  */
    722   1.29       cgd void
    723  1.112     lukem psignal1(struct proc *p, int signum,
    724  1.112     lukem 	int dolock)		/* XXXSMP: works, but icky */
    725   1.29       cgd {
    726  1.112     lukem 	int	s, prop;
    727  1.112     lukem 	sig_t	action;
    728   1.29       cgd 
    729   1.79   mycroft #ifdef DIAGNOSTIC
    730   1.79   mycroft 	if (signum <= 0 || signum >= NSIG)
    731   1.29       cgd 		panic("psignal signal number");
    732  1.104   thorpej 
    733  1.104   thorpej 	/* XXXSMP: works, but icky */
    734  1.104   thorpej 	if (dolock)
    735  1.104   thorpej 		SCHED_ASSERT_UNLOCKED();
    736  1.104   thorpej 	else
    737  1.104   thorpej 		SCHED_ASSERT_LOCKED();
    738   1.79   mycroft #endif
    739   1.29       cgd 	prop = sigprop[signum];
    740   1.29       cgd 
    741   1.29       cgd 	/*
    742   1.29       cgd 	 * If proc is traced, always give parent a chance.
    743   1.29       cgd 	 */
    744   1.29       cgd 	if (p->p_flag & P_TRACED)
    745   1.29       cgd 		action = SIG_DFL;
    746   1.29       cgd 	else {
    747   1.29       cgd 		/*
    748   1.29       cgd 		 * If the signal is being ignored,
    749   1.29       cgd 		 * then we forget about it immediately.
    750  1.109  jdolecek 		 * (Note: we don't set SIGCONT in p_sigctx.ps_sigignore,
    751   1.29       cgd 		 * and if it is set to SIG_IGN,
    752   1.29       cgd 		 * action will be SIG_DFL here.)
    753   1.29       cgd 		 */
    754  1.109  jdolecek 		if (sigismember(&p->p_sigctx.ps_sigignore, signum))
    755   1.29       cgd 			return;
    756  1.109  jdolecek 		if (sigismember(&p->p_sigctx.ps_sigmask, signum))
    757   1.29       cgd 			action = SIG_HOLD;
    758  1.109  jdolecek 		else if (sigismember(&p->p_sigctx.ps_sigcatch, signum))
    759   1.29       cgd 			action = SIG_CATCH;
    760   1.44   mycroft 		else {
    761   1.29       cgd 			action = SIG_DFL;
    762   1.44   mycroft 
    763   1.44   mycroft 			if (prop & SA_KILL && p->p_nice > NZERO)
    764   1.44   mycroft 				p->p_nice = NZERO;
    765   1.44   mycroft 
    766   1.44   mycroft 			/*
    767   1.44   mycroft 			 * If sending a tty stop signal to a member of an
    768   1.44   mycroft 			 * orphaned process group, discard the signal here if
    769   1.44   mycroft 			 * the action is default; don't stop the process below
    770   1.44   mycroft 			 * if sleeping, and don't clear any pending SIGCONT.
    771   1.44   mycroft 			 */
    772   1.44   mycroft 			if (prop & SA_TTYSTOP && p->p_pgrp->pg_jobc == 0)
    773   1.44   mycroft 				return;
    774   1.44   mycroft 		}
    775   1.29       cgd 	}
    776   1.29       cgd 
    777   1.29       cgd 	if (prop & SA_CONT)
    778  1.109  jdolecek 		sigminusset(&stopsigmask, &p->p_sigctx.ps_siglist);
    779   1.29       cgd 
    780   1.44   mycroft 	if (prop & SA_STOP)
    781  1.109  jdolecek 		sigminusset(&contsigmask, &p->p_sigctx.ps_siglist);
    782   1.44   mycroft 
    783  1.109  jdolecek 	sigaddset(&p->p_sigctx.ps_siglist, signum);
    784  1.110   thorpej 
    785  1.110   thorpej 	/* CHECKSIGS() is "inlined" here. */
    786  1.109  jdolecek 	p->p_sigctx.ps_sigcheck = 1;
    787   1.29       cgd 
    788   1.29       cgd 	/*
    789   1.29       cgd 	 * Defer further processing for signals which are held,
    790   1.29       cgd 	 * except that stopped processes must be continued by SIGCONT.
    791   1.29       cgd 	 */
    792   1.29       cgd 	if (action == SIG_HOLD && ((prop & SA_CONT) == 0 || p->p_stat != SSTOP))
    793   1.29       cgd 		return;
    794  1.104   thorpej 
    795  1.104   thorpej 	/* XXXSMP: works, but icky */
    796  1.104   thorpej 	if (dolock)
    797  1.104   thorpej 		SCHED_LOCK(s);
    798  1.104   thorpej 
    799   1.29       cgd 	switch (p->p_stat) {
    800   1.29       cgd 	case SSLEEP:
    801   1.29       cgd 		/*
    802   1.29       cgd 		 * If process is sleeping uninterruptibly
    803   1.29       cgd 		 * we can't interrupt the sleep... the signal will
    804   1.29       cgd 		 * be noticed when the process returns through
    805   1.29       cgd 		 * trap() or syscall().
    806   1.29       cgd 		 */
    807   1.29       cgd 		if ((p->p_flag & P_SINTR) == 0)
    808   1.29       cgd 			goto out;
    809   1.29       cgd 		/*
    810   1.29       cgd 		 * Process is sleeping and traced... make it runnable
    811   1.29       cgd 		 * so it can discover the signal in issignal() and stop
    812   1.29       cgd 		 * for the parent.
    813   1.29       cgd 		 */
    814   1.29       cgd 		if (p->p_flag & P_TRACED)
    815   1.29       cgd 			goto run;
    816   1.29       cgd 		/*
    817   1.29       cgd 		 * If SIGCONT is default (or ignored) and process is
    818   1.29       cgd 		 * asleep, we are finished; the process should not
    819   1.29       cgd 		 * be awakened.
    820   1.29       cgd 		 */
    821   1.29       cgd 		if ((prop & SA_CONT) && action == SIG_DFL) {
    822  1.109  jdolecek 			sigdelset(&p->p_sigctx.ps_siglist, signum);
    823   1.29       cgd 			goto out;
    824   1.29       cgd 		}
    825   1.29       cgd 		/*
    826   1.29       cgd 		 * When a sleeping process receives a stop
    827   1.29       cgd 		 * signal, process immediately if possible.
    828   1.29       cgd 		 */
    829   1.34   mycroft 		if ((prop & SA_STOP) && action == SIG_DFL) {
    830   1.29       cgd 			/*
    831   1.29       cgd 			 * If a child holding parent blocked,
    832   1.29       cgd 			 * stopping could cause deadlock.
    833   1.29       cgd 			 */
    834   1.29       cgd 			if (p->p_flag & P_PPWAIT)
    835   1.29       cgd 				goto out;
    836  1.109  jdolecek 			sigdelset(&p->p_sigctx.ps_siglist, signum);
    837   1.29       cgd 			p->p_xstat = signum;
    838  1.104   thorpej 			if ((p->p_pptr->p_flag & P_NOCLDSTOP) == 0) {
    839  1.104   thorpej 				/*
    840  1.104   thorpej 				 * XXXSMP: recursive call; don't lock
    841  1.104   thorpej 				 * the second time around.
    842  1.104   thorpej 				 */
    843  1.104   thorpej 				sched_psignal(p->p_pptr, SIGCHLD);
    844  1.104   thorpej 			}
    845  1.104   thorpej 			proc_stop(p);	/* XXXSMP: recurse? */
    846   1.29       cgd 			goto out;
    847   1.34   mycroft 		}
    848   1.34   mycroft 		/*
    849   1.34   mycroft 		 * All other (caught or default) signals
    850   1.34   mycroft 		 * cause the process to run.
    851   1.34   mycroft 		 */
    852   1.34   mycroft 		goto runfast;
    853   1.29       cgd 		/*NOTREACHED*/
    854   1.29       cgd 
    855   1.29       cgd 	case SSTOP:
    856   1.29       cgd 		/*
    857   1.29       cgd 		 * If traced process is already stopped,
    858   1.29       cgd 		 * then no further action is necessary.
    859   1.29       cgd 		 */
    860   1.29       cgd 		if (p->p_flag & P_TRACED)
    861   1.29       cgd 			goto out;
    862   1.29       cgd 
    863   1.29       cgd 		/*
    864   1.29       cgd 		 * Kill signal always sets processes running.
    865   1.29       cgd 		 */
    866   1.29       cgd 		if (signum == SIGKILL)
    867   1.29       cgd 			goto runfast;
    868   1.29       cgd 
    869   1.29       cgd 		if (prop & SA_CONT) {
    870   1.29       cgd 			/*
    871   1.29       cgd 			 * If SIGCONT is default (or ignored), we continue the
    872  1.109  jdolecek 			 * process but don't leave the signal in p_sigctx.ps_siglist, as
    873   1.29       cgd 			 * it has no further action.  If SIGCONT is held, we
    874   1.29       cgd 			 * continue the process and leave the signal in
    875  1.109  jdolecek 			 * p_sigctx.ps_siglist.  If the process catches SIGCONT, let it
    876   1.29       cgd 			 * handle the signal itself.  If it isn't waiting on
    877   1.29       cgd 			 * an event, then it goes back to run state.
    878   1.29       cgd 			 * Otherwise, process goes back to sleep state.
    879   1.29       cgd 			 */
    880   1.29       cgd 			if (action == SIG_DFL)
    881  1.109  jdolecek 				sigdelset(&p->p_sigctx.ps_siglist, signum);
    882   1.29       cgd 			if (action == SIG_CATCH)
    883   1.29       cgd 				goto runfast;
    884   1.29       cgd 			if (p->p_wchan == 0)
    885   1.29       cgd 				goto run;
    886   1.29       cgd 			p->p_stat = SSLEEP;
    887   1.29       cgd 			goto out;
    888   1.29       cgd 		}
    889   1.29       cgd 
    890   1.29       cgd 		if (prop & SA_STOP) {
    891   1.29       cgd 			/*
    892   1.29       cgd 			 * Already stopped, don't need to stop again.
    893   1.29       cgd 			 * (If we did the shell could get confused.)
    894   1.29       cgd 			 */
    895  1.109  jdolecek 			sigdelset(&p->p_sigctx.ps_siglist, signum);
    896   1.29       cgd 			goto out;
    897   1.29       cgd 		}
    898   1.29       cgd 
    899   1.29       cgd 		/*
    900   1.29       cgd 		 * If process is sleeping interruptibly, then simulate a
    901   1.29       cgd 		 * wakeup so that when it is continued, it will be made
    902   1.29       cgd 		 * runnable and can look at the signal.  But don't make
    903   1.29       cgd 		 * the process runnable, leave it stopped.
    904   1.29       cgd 		 */
    905   1.29       cgd 		if (p->p_wchan && p->p_flag & P_SINTR)
    906   1.29       cgd 			unsleep(p);
    907   1.29       cgd 		goto out;
    908  1.110   thorpej #ifdef __HAVE_AST_PERPROC
    909  1.110   thorpej 	case SONPROC:
    910  1.110   thorpej 	case SRUN:
    911  1.110   thorpej 	case SIDL:
    912  1.110   thorpej 		/*
    913  1.110   thorpej 		 * SONPROC: We're running, notice the signal when
    914  1.110   thorpej 		 * we return back to userspace.
    915  1.110   thorpej 		 *
    916  1.110   thorpej 		 * SRUN, SIDL: Notice the signal when we run again
    917  1.110   thorpej 		 * and return to back to userspace.
    918  1.110   thorpej 		 */
    919  1.110   thorpej 		signotify(p);
    920  1.110   thorpej 		goto out;
    921   1.29       cgd 
    922  1.110   thorpej 	default:
    923  1.110   thorpej 		/*
    924  1.110   thorpej 		 * SDEAD, SZOMB: The signal will never be noticed.
    925  1.110   thorpej 		 */
    926  1.110   thorpej 		goto out;
    927  1.110   thorpej #else /* ! __HAVE_AST_PERPROC */
    928   1.99   thorpej 	case SONPROC:
    929   1.99   thorpej 		/*
    930   1.99   thorpej 		 * We're running; notice the signal.
    931   1.99   thorpej 		 */
    932   1.99   thorpej 		signotify(p);
    933   1.99   thorpej 		goto out;
    934   1.99   thorpej 
    935   1.29       cgd 	default:
    936   1.29       cgd 		/*
    937   1.99   thorpej 		 * SRUN, SIDL, SDEAD, SZOMB do nothing with the signal.
    938   1.29       cgd 		 * It will either never be noticed, or noticed very soon.
    939   1.29       cgd 		 */
    940   1.29       cgd 		goto out;
    941  1.110   thorpej #endif /* __HAVE_AST_PERPROC */
    942   1.29       cgd 	}
    943   1.29       cgd 	/*NOTREACHED*/
    944   1.29       cgd 
    945  1.112     lukem  runfast:
    946   1.29       cgd 	/*
    947   1.29       cgd 	 * Raise priority to at least PUSER.
    948   1.29       cgd 	 */
    949   1.29       cgd 	if (p->p_priority > PUSER)
    950   1.29       cgd 		p->p_priority = PUSER;
    951  1.112     lukem  run:
    952  1.104   thorpej 	setrunnable(p);		/* XXXSMP: recurse? */
    953  1.112     lukem  out:
    954  1.104   thorpej 	/* XXXSMP: works, but icky */
    955  1.104   thorpej 	if (dolock)
    956  1.104   thorpej 		SCHED_UNLOCK(s);
    957   1.29       cgd }
    958   1.29       cgd 
    959  1.112     lukem static __inline int firstsig(const sigset_t *);
    960   1.79   mycroft 
    961   1.79   mycroft static __inline int
    962  1.112     lukem firstsig(const sigset_t *ss)
    963   1.79   mycroft {
    964   1.79   mycroft 	int sig;
    965   1.79   mycroft 
    966   1.79   mycroft 	sig = ffs(ss->__bits[0]);
    967   1.79   mycroft 	if (sig != 0)
    968   1.79   mycroft 		return (sig);
    969   1.79   mycroft #if NSIG > 33
    970   1.79   mycroft 	sig = ffs(ss->__bits[1]);
    971   1.79   mycroft 	if (sig != 0)
    972   1.79   mycroft 		return (sig + 32);
    973   1.79   mycroft #endif
    974   1.79   mycroft #if NSIG > 65
    975   1.79   mycroft 	sig = ffs(ss->__bits[2]);
    976   1.79   mycroft 	if (sig != 0)
    977   1.79   mycroft 		return (sig + 64);
    978   1.79   mycroft #endif
    979   1.79   mycroft #if NSIG > 97
    980   1.79   mycroft 	sig = ffs(ss->__bits[3]);
    981   1.79   mycroft 	if (sig != 0)
    982   1.79   mycroft 		return (sig + 96);
    983   1.79   mycroft #endif
    984   1.79   mycroft 	return (0);
    985   1.79   mycroft }
    986   1.79   mycroft 
    987   1.29       cgd /*
    988   1.29       cgd  * If the current process has received a signal (should be caught or cause
    989   1.29       cgd  * termination, should interrupt current syscall), return the signal number.
    990   1.29       cgd  * Stop signals with default action are processed immediately, then cleared;
    991   1.29       cgd  * they aren't returned.  This is checked after each entry to the system for
    992   1.29       cgd  * a syscall or trap (though this can usually be done without calling issignal
    993   1.29       cgd  * by checking the pending signal masks in the CURSIG macro.) The normal call
    994   1.29       cgd  * sequence is
    995   1.29       cgd  *
    996   1.29       cgd  *	while (signum = CURSIG(curproc))
    997   1.29       cgd  *		postsig(signum);
    998   1.29       cgd  */
    999   1.29       cgd int
   1000  1.112     lukem issignal(struct proc *p)
   1001   1.29       cgd {
   1002  1.112     lukem 	int		s, signum, prop;
   1003  1.112     lukem 	sigset_t	ss;
   1004   1.29       cgd 
   1005   1.29       cgd 	for (;;) {
   1006   1.79   mycroft 		sigpending1(p, &ss);
   1007   1.29       cgd 		if (p->p_flag & P_PPWAIT)
   1008   1.79   mycroft 			sigminusset(&stopsigmask, &ss);
   1009   1.79   mycroft 		signum = firstsig(&ss);
   1010   1.79   mycroft 		if (signum == 0) {		 	/* no signal to send */
   1011  1.109  jdolecek 			p->p_sigctx.ps_sigcheck = 0;
   1012   1.29       cgd 			return (0);
   1013   1.79   mycroft 		}
   1014  1.112     lukem 							/* take the signal! */
   1015  1.112     lukem 		sigdelset(&p->p_sigctx.ps_siglist, signum);
   1016   1.42   mycroft 
   1017   1.29       cgd 		/*
   1018   1.29       cgd 		 * We should see pending but ignored signals
   1019   1.29       cgd 		 * only if P_TRACED was on when they were posted.
   1020   1.29       cgd 		 */
   1021  1.109  jdolecek 		if (sigismember(&p->p_sigctx.ps_sigignore, signum) &&
   1022   1.79   mycroft 		    (p->p_flag & P_TRACED) == 0)
   1023   1.29       cgd 			continue;
   1024   1.42   mycroft 
   1025   1.29       cgd 		if (p->p_flag & P_TRACED && (p->p_flag & P_PPWAIT) == 0) {
   1026   1.29       cgd 			/*
   1027   1.29       cgd 			 * If traced, always stop, and stay
   1028   1.29       cgd 			 * stopped until released by the debugger.
   1029   1.29       cgd 			 */
   1030   1.29       cgd 			p->p_xstat = signum;
   1031   1.66   mycroft 			if ((p->p_flag & P_FSTRACE) == 0)
   1032   1.66   mycroft 				psignal(p->p_pptr, SIGCHLD);
   1033   1.65   mycroft 			do {
   1034  1.104   thorpej 				SCHED_LOCK(s);
   1035  1.104   thorpej 				proc_stop(p);
   1036  1.100  sommerfe 				mi_switch(p);
   1037  1.104   thorpej 				SCHED_ASSERT_UNLOCKED();
   1038  1.104   thorpej 				splx(s);
   1039   1.65   mycroft 			} while (!trace_req(p) && p->p_flag & P_TRACED);
   1040   1.29       cgd 
   1041   1.29       cgd 			/*
   1042   1.42   mycroft 			 * If we are no longer being traced, or the parent
   1043   1.42   mycroft 			 * didn't give us a signal, look for more signals.
   1044   1.29       cgd 			 */
   1045   1.42   mycroft 			if ((p->p_flag & P_TRACED) == 0 || p->p_xstat == 0)
   1046   1.29       cgd 				continue;
   1047   1.29       cgd 
   1048   1.29       cgd 			/*
   1049   1.42   mycroft 			 * If the new signal is being masked, look for other
   1050   1.42   mycroft 			 * signals.
   1051   1.29       cgd 			 */
   1052   1.42   mycroft 			signum = p->p_xstat;
   1053  1.112     lukem 			/*
   1054  1.112     lukem 			 * `p->p_sigctx.ps_siglist |= mask' is done
   1055  1.112     lukem 			 * in setrunnable().
   1056  1.112     lukem 			 */
   1057  1.109  jdolecek 			if (sigismember(&p->p_sigctx.ps_sigmask, signum))
   1058   1.29       cgd 				continue;
   1059  1.112     lukem 							/* take the signal! */
   1060  1.112     lukem 			sigdelset(&p->p_sigctx.ps_siglist, signum);
   1061   1.29       cgd 		}
   1062   1.29       cgd 
   1063   1.42   mycroft 		prop = sigprop[signum];
   1064   1.42   mycroft 
   1065   1.29       cgd 		/*
   1066   1.29       cgd 		 * Decide whether the signal should be returned.
   1067   1.29       cgd 		 * Return the signal's number, or fall through
   1068   1.29       cgd 		 * to clear it from the pending mask.
   1069   1.29       cgd 		 */
   1070  1.109  jdolecek 		switch ((long)SIGACTION(p, signum).sa_handler) {
   1071   1.29       cgd 
   1072   1.33       cgd 		case (long)SIG_DFL:
   1073   1.29       cgd 			/*
   1074   1.29       cgd 			 * Don't take default actions on system processes.
   1075   1.29       cgd 			 */
   1076   1.29       cgd 			if (p->p_pid <= 1) {
   1077   1.29       cgd #ifdef DIAGNOSTIC
   1078   1.29       cgd 				/*
   1079   1.29       cgd 				 * Are you sure you want to ignore SIGSEGV
   1080   1.29       cgd 				 * in init? XXX
   1081   1.29       cgd 				 */
   1082   1.57  christos 				printf("Process (pid %d) got signal %d\n",
   1083   1.29       cgd 				    p->p_pid, signum);
   1084   1.29       cgd #endif
   1085   1.29       cgd 				break;		/* == ignore */
   1086   1.29       cgd 			}
   1087   1.29       cgd 			/*
   1088   1.29       cgd 			 * If there is a pending stop signal to process
   1089   1.29       cgd 			 * with default action, stop here,
   1090   1.29       cgd 			 * then clear the signal.  However,
   1091   1.29       cgd 			 * if process is member of an orphaned
   1092   1.29       cgd 			 * process group, ignore tty stop signals.
   1093   1.29       cgd 			 */
   1094   1.29       cgd 			if (prop & SA_STOP) {
   1095   1.29       cgd 				if (p->p_flag & P_TRACED ||
   1096   1.29       cgd 		    		    (p->p_pgrp->pg_jobc == 0 &&
   1097   1.29       cgd 				    prop & SA_TTYSTOP))
   1098   1.29       cgd 					break;	/* == ignore */
   1099   1.29       cgd 				p->p_xstat = signum;
   1100   1.29       cgd 				if ((p->p_pptr->p_flag & P_NOCLDSTOP) == 0)
   1101   1.29       cgd 					psignal(p->p_pptr, SIGCHLD);
   1102  1.104   thorpej 				SCHED_LOCK(s);
   1103  1.104   thorpej 				proc_stop(p);
   1104  1.100  sommerfe 				mi_switch(p);
   1105  1.104   thorpej 				SCHED_ASSERT_UNLOCKED();
   1106  1.104   thorpej 				splx(s);
   1107   1.29       cgd 				break;
   1108   1.29       cgd 			} else if (prop & SA_IGNORE) {
   1109   1.29       cgd 				/*
   1110   1.29       cgd 				 * Except for SIGCONT, shouldn't get here.
   1111   1.29       cgd 				 * Default action is to ignore; drop it.
   1112   1.29       cgd 				 */
   1113   1.29       cgd 				break;		/* == ignore */
   1114   1.29       cgd 			} else
   1115   1.42   mycroft 				goto keep;
   1116   1.29       cgd 			/*NOTREACHED*/
   1117   1.29       cgd 
   1118   1.33       cgd 		case (long)SIG_IGN:
   1119   1.29       cgd 			/*
   1120   1.29       cgd 			 * Masking above should prevent us ever trying
   1121   1.29       cgd 			 * to take action on an ignored signal other
   1122   1.29       cgd 			 * than SIGCONT, unless process is traced.
   1123   1.29       cgd 			 */
   1124   1.29       cgd 			if ((prop & SA_CONT) == 0 &&
   1125   1.29       cgd 			    (p->p_flag & P_TRACED) == 0)
   1126   1.57  christos 				printf("issignal\n");
   1127   1.29       cgd 			break;		/* == ignore */
   1128   1.29       cgd 
   1129   1.29       cgd 		default:
   1130   1.29       cgd 			/*
   1131   1.29       cgd 			 * This signal has an action, let
   1132   1.29       cgd 			 * postsig() process it.
   1133   1.29       cgd 			 */
   1134   1.42   mycroft 			goto keep;
   1135   1.29       cgd 		}
   1136   1.29       cgd 	}
   1137   1.29       cgd 	/* NOTREACHED */
   1138   1.42   mycroft 
   1139  1.112     lukem  keep:
   1140  1.112     lukem 						/* leave the signal for later */
   1141  1.112     lukem 	sigaddset(&p->p_sigctx.ps_siglist, signum);
   1142  1.110   thorpej 	CHECKSIGS(p);
   1143   1.42   mycroft 	return (signum);
   1144   1.29       cgd }
   1145   1.29       cgd 
   1146   1.29       cgd /*
   1147   1.29       cgd  * Put the argument process into the stopped state and notify the parent
   1148   1.29       cgd  * via wakeup.  Signals are handled elsewhere.  The process must not be
   1149   1.29       cgd  * on the run queue.
   1150   1.29       cgd  */
   1151  1.104   thorpej static void
   1152  1.112     lukem proc_stop(struct proc *p)
   1153   1.29       cgd {
   1154   1.29       cgd 
   1155  1.104   thorpej 	SCHED_ASSERT_LOCKED();
   1156  1.104   thorpej 
   1157   1.29       cgd 	p->p_stat = SSTOP;
   1158   1.29       cgd 	p->p_flag &= ~P_WAITED;
   1159  1.104   thorpej 	sched_wakeup((caddr_t)p->p_pptr);
   1160   1.29       cgd }
   1161   1.29       cgd 
   1162   1.29       cgd /*
   1163   1.29       cgd  * Take the action for the specified signal
   1164   1.29       cgd  * from the current set of pending signals.
   1165   1.29       cgd  */
   1166   1.29       cgd void
   1167  1.112     lukem postsig(int signum)
   1168   1.29       cgd {
   1169  1.112     lukem 	struct proc	*p;
   1170  1.112     lukem 	struct sigacts	*ps;
   1171  1.112     lukem 	sig_t		action;
   1172  1.112     lukem 	u_long		code;
   1173  1.112     lukem 	sigset_t	*returnmask;
   1174   1.29       cgd 
   1175  1.112     lukem 	p = curproc;
   1176  1.112     lukem 	ps = p->p_sigacts;
   1177   1.29       cgd #ifdef DIAGNOSTIC
   1178   1.29       cgd 	if (signum == 0)
   1179   1.29       cgd 		panic("postsig");
   1180   1.29       cgd #endif
   1181  1.106   thorpej 
   1182  1.106   thorpej 	KERNEL_PROC_LOCK(p);
   1183  1.106   thorpej 
   1184  1.109  jdolecek 	sigdelset(&p->p_sigctx.ps_siglist, signum);
   1185  1.109  jdolecek 	action = SIGACTION_PS(ps, signum).sa_handler;
   1186   1.29       cgd #ifdef KTRACE
   1187   1.29       cgd 	if (KTRPOINT(p, KTR_PSIG))
   1188  1.100  sommerfe 		ktrpsig(p,
   1189  1.109  jdolecek 		    signum, action, p->p_sigctx.ps_flags & SAS_OLDMASK ?
   1190  1.109  jdolecek 		    &p->p_sigctx.ps_oldmask : &p->p_sigctx.ps_sigmask, 0);
   1191   1.29       cgd #endif
   1192   1.29       cgd 	if (action == SIG_DFL) {
   1193   1.29       cgd 		/*
   1194   1.29       cgd 		 * Default action, where the default is to kill
   1195   1.29       cgd 		 * the process.  (Other cases were ignored above.)
   1196   1.29       cgd 		 */
   1197   1.29       cgd 		sigexit(p, signum);
   1198   1.29       cgd 		/* NOTREACHED */
   1199   1.29       cgd 	} else {
   1200   1.29       cgd 		/*
   1201   1.29       cgd 		 * If we get here, the signal must be caught.
   1202   1.29       cgd 		 */
   1203   1.29       cgd #ifdef DIAGNOSTIC
   1204  1.112     lukem 		if (action == SIG_IGN ||
   1205  1.112     lukem 		    sigismember(&p->p_sigctx.ps_sigmask, signum))
   1206   1.29       cgd 			panic("postsig action");
   1207   1.29       cgd #endif
   1208   1.29       cgd 		/*
   1209   1.29       cgd 		 * Set the new mask value and also defer further
   1210   1.29       cgd 		 * occurences of this signal.
   1211   1.29       cgd 		 *
   1212   1.29       cgd 		 * Special case: user has done a sigpause.  Here the
   1213   1.29       cgd 		 * current mask is not of interest, but rather the
   1214   1.29       cgd 		 * mask from before the sigpause is what we want
   1215   1.29       cgd 		 * restored after the signal processing is completed.
   1216   1.29       cgd 		 */
   1217  1.109  jdolecek 		if (p->p_sigctx.ps_flags & SAS_OLDMASK) {
   1218  1.109  jdolecek 			returnmask = &p->p_sigctx.ps_oldmask;
   1219  1.109  jdolecek 			p->p_sigctx.ps_flags &= ~SAS_OLDMASK;
   1220   1.29       cgd 		} else
   1221  1.109  jdolecek 			returnmask = &p->p_sigctx.ps_sigmask;
   1222   1.29       cgd 		p->p_stats->p_ru.ru_nsignals++;
   1223  1.109  jdolecek 		if (p->p_sigctx.ps_sig != signum) {
   1224   1.29       cgd 			code = 0;
   1225   1.29       cgd 		} else {
   1226  1.109  jdolecek 			code = p->p_sigctx.ps_code;
   1227  1.109  jdolecek 			p->p_sigctx.ps_code = 0;
   1228  1.109  jdolecek 			p->p_sigctx.ps_sig = 0;
   1229   1.29       cgd 		}
   1230   1.41  christos 		(*p->p_emul->e_sendsig)(action, signum, returnmask, code);
   1231  1.105   thorpej 		(void) splsched();	/* XXXSMP */
   1232  1.112     lukem 		sigplusset(&SIGACTION_PS(ps, signum).sa_mask,
   1233  1.112     lukem 		    &p->p_sigctx.ps_sigmask);
   1234  1.109  jdolecek 		if (SIGACTION_PS(ps, signum).sa_flags & SA_RESETHAND) {
   1235  1.109  jdolecek 			sigdelset(&p->p_sigctx.ps_sigcatch, signum);
   1236   1.79   mycroft 			if (signum != SIGCONT && sigprop[signum] & SA_IGNORE)
   1237  1.109  jdolecek 				sigaddset(&p->p_sigctx.ps_sigignore, signum);
   1238  1.109  jdolecek 			SIGACTION_PS(ps, signum).sa_handler = SIG_DFL;
   1239   1.79   mycroft 		}
   1240  1.104   thorpej 		(void) spl0();		/* XXXSMP */
   1241   1.29       cgd 	}
   1242  1.106   thorpej 
   1243  1.106   thorpej 	KERNEL_PROC_UNLOCK(p);
   1244   1.29       cgd }
   1245   1.29       cgd 
   1246   1.29       cgd /*
   1247   1.29       cgd  * Kill the current process for stated reason.
   1248   1.29       cgd  */
   1249   1.52  christos void
   1250  1.112     lukem killproc(struct proc *p, char *why)
   1251   1.29       cgd {
   1252   1.29       cgd 
   1253   1.29       cgd 	log(LOG_ERR, "pid %d was killed: %s\n", p->p_pid, why);
   1254   1.29       cgd 	uprintf("sorry, pid %d was killed: %s\n", p->p_pid, why);
   1255   1.29       cgd 	psignal(p, SIGKILL);
   1256   1.29       cgd }
   1257   1.29       cgd 
   1258   1.29       cgd /*
   1259   1.29       cgd  * Force the current process to exit with the specified signal, dumping core
   1260   1.29       cgd  * if appropriate.  We bypass the normal tests for masked and caught signals,
   1261   1.29       cgd  * allowing unrecoverable failures to terminate the process without changing
   1262   1.29       cgd  * signal state.  Mark the accounting record with the signal termination.
   1263   1.29       cgd  * If dumping core, save the signal number for the debugger.  Calls exit and
   1264   1.29       cgd  * does not return.
   1265   1.29       cgd  */
   1266   1.96      fair 
   1267   1.97      fair #if defined(DEBUG)
   1268   1.96      fair int	kern_logsigexit = 1;	/* not static to make public for sysctl */
   1269   1.96      fair #else
   1270   1.96      fair int	kern_logsigexit = 0;	/* not static to make public for sysctl */
   1271   1.96      fair #endif
   1272   1.96      fair 
   1273  1.102  sommerfe static	const char logcoredump[] =
   1274   1.96      fair 	"pid %d (%s), uid %d: exited on signal %d (core dumped)\n";
   1275  1.102  sommerfe static	const char lognocoredump[] =
   1276   1.96      fair 	"pid %d (%s), uid %d: exited on signal %d (core not dumped, err = %d)\n";
   1277   1.96      fair 
   1278   1.52  christos void
   1279  1.112     lukem sigexit(struct proc *p, int signum)
   1280   1.29       cgd {
   1281  1.112     lukem 	int	error, exitsig;
   1282   1.96      fair 
   1283  1.112     lukem 	exitsig = signum;
   1284   1.29       cgd 	p->p_acflag |= AXSIG;
   1285   1.29       cgd 	if (sigprop[signum] & SA_CORE) {
   1286  1.109  jdolecek 		p->p_sigctx.ps_sig = signum;
   1287  1.102  sommerfe 		if ((error = coredump(p)) == 0)
   1288  1.102  sommerfe 			exitsig |= WCOREFLAG;
   1289  1.102  sommerfe 
   1290  1.102  sommerfe 		if (kern_logsigexit) {
   1291  1.102  sommerfe 			int uid = p->p_cred && p->p_ucred ?
   1292  1.102  sommerfe 				p->p_ucred->cr_uid : -1;
   1293  1.102  sommerfe 
   1294  1.102  sommerfe 			if (error)
   1295  1.102  sommerfe 				log(LOG_INFO, lognocoredump, p->p_pid,
   1296  1.102  sommerfe 				    p->p_comm, uid, signum, error);
   1297  1.102  sommerfe 			else
   1298  1.102  sommerfe 				log(LOG_INFO, logcoredump, p->p_pid,
   1299  1.102  sommerfe 				    p->p_comm, uid, signum);
   1300   1.96      fair 		}
   1301   1.96      fair 
   1302   1.29       cgd 	}
   1303   1.96      fair 
   1304  1.102  sommerfe 	exit1(p, W_EXITCODE(0, exitsig));
   1305   1.29       cgd 	/* NOTREACHED */
   1306   1.29       cgd }
   1307   1.29       cgd 
   1308   1.29       cgd /*
   1309   1.75   nathanw  * Dump core, into a file named "progname.core" or "core" (depending on the
   1310   1.75   nathanw  * value of shortcorename), unless the process was setuid/setgid.
   1311   1.29       cgd  */
   1312   1.29       cgd int
   1313  1.112     lukem coredump(struct proc *p)
   1314   1.29       cgd {
   1315  1.112     lukem 	struct vnode		*vp;
   1316  1.112     lukem 	struct vmspace		*vm;
   1317  1.112     lukem 	struct ucred		*cred;
   1318  1.112     lukem 	struct nameidata	nd;
   1319  1.112     lukem 	struct vattr		vattr;
   1320  1.112     lukem 	int			error, error1;
   1321  1.112     lukem 	char			name[MAXPATHLEN];
   1322  1.112     lukem 	struct core		core;
   1323  1.112     lukem 
   1324  1.112     lukem 	vm = p->p_vmspace;
   1325  1.112     lukem 	cred = p->p_cred->pc_ucred;
   1326   1.29       cgd 
   1327   1.59       cgd 	/*
   1328   1.59       cgd 	 * Make sure the process has not set-id, to prevent data leaks.
   1329   1.59       cgd 	 */
   1330   1.58       mrg 	if (p->p_flag & P_SUGID)
   1331   1.59       cgd 		return (EPERM);
   1332   1.59       cgd 
   1333   1.59       cgd 	/*
   1334   1.59       cgd 	 * Refuse to core if the data + stack + user size is larger than
   1335   1.59       cgd 	 * the core dump limit.  XXX THIS IS WRONG, because of mapped
   1336   1.59       cgd 	 * data.
   1337   1.59       cgd 	 */
   1338   1.30   deraadt 	if (USPACE + ctob(vm->vm_dsize + vm->vm_ssize) >=
   1339   1.29       cgd 	    p->p_rlimit[RLIMIT_CORE].rlim_cur)
   1340   1.59       cgd 		return (EFBIG);		/* better error code? */
   1341   1.59       cgd 
   1342   1.59       cgd 	/*
   1343   1.59       cgd 	 * The core dump will go in the current working directory.  Make
   1344   1.80        pk 	 * sure that the directory is still there and that the mount flags
   1345   1.80        pk 	 * allow us to write core dumps there.
   1346   1.59       cgd 	 */
   1347   1.88   thorpej 	vp = p->p_cwdi->cwdi_cdir;
   1348   1.80        pk 	if (vp->v_mount == NULL ||
   1349   1.80        pk 	    (vp->v_mount->mnt_flag & MNT_NOCOREDUMP) != 0)
   1350   1.59       cgd 		return (EPERM);
   1351   1.59       cgd 
   1352  1.100  sommerfe 	error = build_corename(p, name);
   1353   1.94    bouyer 	if (error)
   1354   1.94    bouyer 		return error;
   1355   1.94    bouyer 
   1356   1.93    bouyer 	NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_SYSSPACE, name, p);
   1357   1.93    bouyer 	error = vn_open(&nd, O_CREAT | FWRITE | FNOSYMLINK, S_IRUSR | S_IWUSR);
   1358   1.52  christos 	if (error)
   1359   1.29       cgd 		return (error);
   1360   1.29       cgd 	vp = nd.ni_vp;
   1361   1.29       cgd 
   1362   1.29       cgd 	/* Don't dump to non-regular files or files with links. */
   1363   1.29       cgd 	if (vp->v_type != VREG ||
   1364   1.29       cgd 	    VOP_GETATTR(vp, &vattr, cred, p) || vattr.va_nlink != 1) {
   1365   1.59       cgd 		error = EINVAL;
   1366   1.29       cgd 		goto out;
   1367   1.29       cgd 	}
   1368   1.29       cgd 	VATTR_NULL(&vattr);
   1369   1.29       cgd 	vattr.va_size = 0;
   1370   1.37   mycroft 	VOP_LEASE(vp, p, cred, LEASE_WRITE);
   1371   1.29       cgd 	VOP_SETATTR(vp, &vattr, cred, p);
   1372   1.29       cgd 	p->p_acflag |= ACORE;
   1373   1.95       eeh 
   1374  1.113       mrg 	if ((p->p_flag & P_32) && coredump32_hook != NULL)
   1375  1.113       mrg 		return (*coredump32_hook)(p, vp);
   1376   1.67   mycroft #if 0
   1377   1.67   mycroft 	/*
   1378   1.67   mycroft 	 * XXX
   1379   1.67   mycroft 	 * It would be nice if we at least dumped the signal state (and made it
   1380   1.67   mycroft 	 * available at run time to the debugger, as well), but this code
   1381   1.67   mycroft 	 * hasn't actually had any effect for a long time, since we don't dump
   1382   1.67   mycroft 	 * the user area.  For now, it's dead.
   1383   1.67   mycroft 	 */
   1384   1.78     perry 	memcpy(&p->p_addr->u_kproc.kp_proc, p, sizeof(struct proc));
   1385   1.29       cgd 	fill_eproc(p, &p->p_addr->u_kproc.kp_eproc);
   1386   1.67   mycroft #endif
   1387   1.29       cgd 
   1388   1.29       cgd 	core.c_midmag = 0;
   1389   1.29       cgd 	strncpy(core.c_name, p->p_comm, MAXCOMLEN);
   1390   1.29       cgd 	core.c_nseg = 0;
   1391  1.109  jdolecek 	core.c_signo = p->p_sigctx.ps_sig;
   1392  1.109  jdolecek 	core.c_ucode = p->p_sigctx.ps_code;
   1393   1.29       cgd 	core.c_cpusize = 0;
   1394   1.29       cgd 	core.c_tsize = (u_long)ctob(vm->vm_tsize);
   1395   1.29       cgd 	core.c_dsize = (u_long)ctob(vm->vm_dsize);
   1396   1.29       cgd 	core.c_ssize = (u_long)round_page(ctob(vm->vm_ssize));
   1397   1.29       cgd 	error = cpu_coredump(p, vp, cred, &core);
   1398   1.29       cgd 	if (error)
   1399   1.29       cgd 		goto out;
   1400  1.111   nathanw 	/*
   1401  1.111   nathanw 	 * uvm_coredump() spits out all appropriate segments.
   1402  1.111   nathanw 	 * All that's left to do is to write the core header.
   1403  1.111   nathanw 	 */
   1404  1.111   nathanw 	error = uvm_coredump(p, vp, cred, &core);
   1405  1.111   nathanw 	if (error)
   1406  1.111   nathanw 		goto out;
   1407  1.111   nathanw 	error = vn_rdwr(UIO_WRITE, vp, (caddr_t)&core,
   1408  1.111   nathanw 	    (int)core.c_hdrsize, (off_t)0,
   1409  1.111   nathanw 	    UIO_SYSSPACE, IO_NODELOCKED|IO_UNIT, cred, NULL, p);
   1410  1.112     lukem  out:
   1411   1.71      fvdl 	VOP_UNLOCK(vp, 0);
   1412   1.29       cgd 	error1 = vn_close(vp, FWRITE, cred, p);
   1413   1.29       cgd 	if (error == 0)
   1414   1.29       cgd 		error = error1;
   1415   1.29       cgd 	return (error);
   1416   1.29       cgd }
   1417   1.29       cgd 
   1418   1.29       cgd /*
   1419   1.29       cgd  * Nonexistent system call-- signal process (may want to handle it).
   1420   1.29       cgd  * Flag error in case process won't see signal immediately (blocked or ignored).
   1421   1.29       cgd  */
   1422   1.29       cgd /* ARGSUSED */
   1423   1.29       cgd int
   1424  1.112     lukem sys_nosys(struct proc *p, void *v, register_t *retval)
   1425   1.29       cgd {
   1426   1.29       cgd 
   1427   1.29       cgd 	psignal(p, SIGSYS);
   1428   1.36       cgd 	return (ENOSYS);
   1429   1.94    bouyer }
   1430   1.94    bouyer 
   1431   1.94    bouyer static int
   1432  1.112     lukem build_corename(struct proc *p, char dst[MAXPATHLEN])
   1433   1.94    bouyer {
   1434  1.112     lukem 	const char	*s;
   1435  1.112     lukem 	char		*d, *end;
   1436  1.112     lukem 	int		i;
   1437  1.100  sommerfe 
   1438  1.107     enami 	for (s = p->p_limit->pl_corename, d = dst, end = d + MAXPATHLEN;
   1439   1.94    bouyer 	    *s != '\0'; s++) {
   1440   1.94    bouyer 		if (*s == '%') {
   1441  1.107     enami 			switch (*(s + 1)) {
   1442   1.94    bouyer 			case 'n':
   1443  1.107     enami 				i = snprintf(d, end - d, "%s", p->p_comm);
   1444   1.94    bouyer 				break;
   1445   1.94    bouyer 			case 'p':
   1446  1.107     enami 				i = snprintf(d, end - d, "%d", p->p_pid);
   1447   1.94    bouyer 				break;
   1448   1.94    bouyer 			case 'u':
   1449  1.107     enami 				i = snprintf(d, end - d, "%s",
   1450  1.100  sommerfe 				    p->p_pgrp->pg_session->s_login);
   1451   1.94    bouyer 				break;
   1452   1.94    bouyer 			case 't':
   1453  1.107     enami 				i = snprintf(d, end - d, "%ld",
   1454  1.100  sommerfe 				    p->p_stats->p_start.tv_sec);
   1455   1.94    bouyer 				break;
   1456   1.94    bouyer 			default:
   1457   1.94    bouyer 				goto copy;
   1458   1.94    bouyer 			}
   1459   1.94    bouyer 			d += i;
   1460   1.94    bouyer 			s++;
   1461   1.94    bouyer 		} else {
   1462  1.112     lukem  copy:			*d = *s;
   1463   1.94    bouyer 			d++;
   1464   1.94    bouyer 		}
   1465  1.107     enami 		if (d >= end)
   1466  1.107     enami 			return (ENAMETOOLONG);
   1467   1.94    bouyer 	}
   1468   1.94    bouyer 	*d = '\0';
   1469  1.107     enami 	return (0);
   1470  1.108  jdolecek }
   1471  1.108  jdolecek 
   1472  1.108  jdolecek /*
   1473  1.108  jdolecek  * Returns true if signal is ignored or masked for passed process.
   1474  1.108  jdolecek  */
   1475  1.108  jdolecek int
   1476  1.112     lukem sigismasked(struct proc *p, int sig)
   1477  1.108  jdolecek {
   1478  1.112     lukem 
   1479  1.109  jdolecek 	return sigismember(&p->p_sigctx.ps_sigignore, SIGTTOU)
   1480  1.109  jdolecek 		|| sigismember(&p->p_sigctx.ps_sigmask, SIGTTOU);
   1481   1.29       cgd }
   1482