Home | History | Annotate | Line # | Download | only in kern
sys_sig.c revision 1.2
      1  1.2  ad /*	$NetBSD: sys_sig.c,v 1.2 2007/02/09 21:55:31 ad Exp $	*/
      2  1.2  ad 
      3  1.2  ad /*-
      4  1.2  ad  * Copyright (c) 2006 The NetBSD Foundation, Inc.
      5  1.2  ad  * All rights reserved.
      6  1.2  ad  *
      7  1.2  ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.2  ad  * by Andrew Doran.
      9  1.2  ad  *
     10  1.2  ad  * Redistribution and use in source and binary forms, with or without
     11  1.2  ad  * modification, are permitted provided that the following conditions
     12  1.2  ad  * are met:
     13  1.2  ad  * 1. Redistributions of source code must retain the above copyright
     14  1.2  ad  *    notice, this list of conditions and the following disclaimer.
     15  1.2  ad  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.2  ad  *    notice, this list of conditions and the following disclaimer in the
     17  1.2  ad  *    documentation and/or other materials provided with the distribution.
     18  1.2  ad  * 3. All advertising materials mentioning features or use of this software
     19  1.2  ad  *    must display the following acknowledgement:
     20  1.2  ad  *	This product includes software developed by the NetBSD
     21  1.2  ad  *	Foundation, Inc. and its contributors.
     22  1.2  ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.2  ad  *    contributors may be used to endorse or promote products derived
     24  1.2  ad  *    from this software without specific prior written permission.
     25  1.2  ad  *
     26  1.2  ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.2  ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.2  ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.2  ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.2  ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.2  ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.2  ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.2  ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.2  ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.2  ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.2  ad  * POSSIBILITY OF SUCH DAMAGE.
     37  1.2  ad  */
     38  1.2  ad 
     39  1.2  ad /*
     40  1.2  ad  * Copyright (c) 1982, 1986, 1989, 1991, 1993
     41  1.2  ad  *	The Regents of the University of California.  All rights reserved.
     42  1.2  ad  * (c) UNIX System Laboratories, Inc.
     43  1.2  ad  * All or some portions of this file are derived from material licensed
     44  1.2  ad  * to the University of California by American Telephone and Telegraph
     45  1.2  ad  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     46  1.2  ad  * the permission of UNIX System Laboratories, Inc.
     47  1.2  ad  *
     48  1.2  ad  * Redistribution and use in source and binary forms, with or without
     49  1.2  ad  * modification, are permitted provided that the following conditions
     50  1.2  ad  * are met:
     51  1.2  ad  * 1. Redistributions of source code must retain the above copyright
     52  1.2  ad  *    notice, this list of conditions and the following disclaimer.
     53  1.2  ad  * 2. Redistributions in binary form must reproduce the above copyright
     54  1.2  ad  *    notice, this list of conditions and the following disclaimer in the
     55  1.2  ad  *    documentation and/or other materials provided with the distribution.
     56  1.2  ad  * 3. Neither the name of the University nor the names of its contributors
     57  1.2  ad  *    may be used to endorse or promote products derived from this software
     58  1.2  ad  *    without specific prior written permission.
     59  1.2  ad  *
     60  1.2  ad  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     61  1.2  ad  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     62  1.2  ad  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     63  1.2  ad  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     64  1.2  ad  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     65  1.2  ad  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     66  1.2  ad  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     67  1.2  ad  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     68  1.2  ad  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     69  1.2  ad  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     70  1.2  ad  * SUCH DAMAGE.
     71  1.2  ad  *
     72  1.2  ad  *	@(#)kern_sig.c	8.14 (Berkeley) 5/14/95
     73  1.2  ad  */
     74  1.2  ad 
     75  1.2  ad #include <sys/cdefs.h>
     76  1.2  ad __KERNEL_RCSID(0, "$NetBSD: sys_sig.c,v 1.2 2007/02/09 21:55:31 ad Exp $");
     77  1.2  ad 
     78  1.2  ad #include "opt_ptrace.h"
     79  1.2  ad #include "opt_compat_netbsd.h"
     80  1.2  ad #include "opt_compat_netbsd32.h"
     81  1.2  ad 
     82  1.2  ad #include <sys/param.h>
     83  1.2  ad #include <sys/kernel.h>
     84  1.2  ad #include <sys/signalvar.h>
     85  1.2  ad #include <sys/proc.h>
     86  1.2  ad #include <sys/pool.h>
     87  1.2  ad #include <sys/syscallargs.h>
     88  1.2  ad #include <sys/kauth.h>
     89  1.2  ad #include <sys/wait.h>
     90  1.2  ad #include <sys/kmem.h>
     91  1.2  ad 
     92  1.2  ad #ifdef COMPAT_16
     93  1.2  ad /* ARGSUSED */
     94  1.2  ad int
     95  1.2  ad compat_16_sys___sigaction14(struct lwp *l, void *v, register_t *retval)
     96  1.2  ad {
     97  1.2  ad 	struct compat_16_sys___sigaction14_args /* {
     98  1.2  ad 		syscallarg(int)				signum;
     99  1.2  ad 		syscallarg(const struct sigaction *)	nsa;
    100  1.2  ad 		syscallarg(struct sigaction *)		osa;
    101  1.2  ad 	} */ *uap = v;
    102  1.2  ad 	struct sigaction	nsa, osa;
    103  1.2  ad 	int			error;
    104  1.2  ad 
    105  1.2  ad 	if (SCARG(uap, nsa)) {
    106  1.2  ad 		error = copyin(SCARG(uap, nsa), &nsa, sizeof(nsa));
    107  1.2  ad 		if (error)
    108  1.2  ad 			return (error);
    109  1.2  ad 	}
    110  1.2  ad 	error = sigaction1(l, SCARG(uap, signum),
    111  1.2  ad 	    SCARG(uap, nsa) ? &nsa : 0, SCARG(uap, osa) ? &osa : 0,
    112  1.2  ad 	    NULL, 0);
    113  1.2  ad 	if (error)
    114  1.2  ad 		return (error);
    115  1.2  ad 	if (SCARG(uap, osa)) {
    116  1.2  ad 		error = copyout(&osa, SCARG(uap, osa), sizeof(osa));
    117  1.2  ad 		if (error)
    118  1.2  ad 			return (error);
    119  1.2  ad 	}
    120  1.2  ad 	return (0);
    121  1.2  ad }
    122  1.2  ad #endif
    123  1.2  ad 
    124  1.2  ad /* ARGSUSED */
    125  1.2  ad int
    126  1.2  ad sys___sigaction_sigtramp(struct lwp *l, void *v, register_t *retval)
    127  1.2  ad {
    128  1.2  ad 	struct sys___sigaction_sigtramp_args /* {
    129  1.2  ad 		syscallarg(int)				signum;
    130  1.2  ad 		syscallarg(const struct sigaction *)	nsa;
    131  1.2  ad 		syscallarg(struct sigaction *)		osa;
    132  1.2  ad 		syscallarg(void *)			tramp;
    133  1.2  ad 		syscallarg(int)				vers;
    134  1.2  ad 	} */ *uap = v;
    135  1.2  ad 	struct sigaction nsa, osa;
    136  1.2  ad 	int error;
    137  1.2  ad 
    138  1.2  ad 	if (SCARG(uap, nsa)) {
    139  1.2  ad 		error = copyin(SCARG(uap, nsa), &nsa, sizeof(nsa));
    140  1.2  ad 		if (error)
    141  1.2  ad 			return (error);
    142  1.2  ad 	}
    143  1.2  ad 	error = sigaction1(l, SCARG(uap, signum),
    144  1.2  ad 	    SCARG(uap, nsa) ? &nsa : 0, SCARG(uap, osa) ? &osa : 0,
    145  1.2  ad 	    SCARG(uap, tramp), SCARG(uap, vers));
    146  1.2  ad 	if (error)
    147  1.2  ad 		return (error);
    148  1.2  ad 	if (SCARG(uap, osa)) {
    149  1.2  ad 		error = copyout(&osa, SCARG(uap, osa), sizeof(osa));
    150  1.2  ad 		if (error)
    151  1.2  ad 			return (error);
    152  1.2  ad 	}
    153  1.2  ad 	return (0);
    154  1.2  ad }
    155  1.2  ad 
    156  1.2  ad /*
    157  1.2  ad  * Manipulate signal mask.  Note that we receive new mask, not pointer, and
    158  1.2  ad  * return old mask as return value; the library stub does the rest.
    159  1.2  ad  */
    160  1.2  ad int
    161  1.2  ad sys___sigprocmask14(struct lwp *l, void *v, register_t *retval)
    162  1.2  ad {
    163  1.2  ad 	struct sys___sigprocmask14_args /* {
    164  1.2  ad 		syscallarg(int)			how;
    165  1.2  ad 		syscallarg(const sigset_t *)	set;
    166  1.2  ad 		syscallarg(sigset_t *)		oset;
    167  1.2  ad 	} */ *uap = v;
    168  1.2  ad 	struct proc	*p = l->l_proc;
    169  1.2  ad 	sigset_t	nss, oss;
    170  1.2  ad 	int		error;
    171  1.2  ad 
    172  1.2  ad 	if (SCARG(uap, set)) {
    173  1.2  ad 		error = copyin(SCARG(uap, set), &nss, sizeof(nss));
    174  1.2  ad 		if (error)
    175  1.2  ad 			return (error);
    176  1.2  ad 	}
    177  1.2  ad 	mutex_enter(&p->p_smutex);
    178  1.2  ad 	error = sigprocmask1(l, SCARG(uap, how),
    179  1.2  ad 	    SCARG(uap, set) ? &nss : 0, SCARG(uap, oset) ? &oss : 0);
    180  1.2  ad 	mutex_exit(&p->p_smutex);
    181  1.2  ad 	if (error)
    182  1.2  ad 		return (error);
    183  1.2  ad 	if (SCARG(uap, oset)) {
    184  1.2  ad 		error = copyout(&oss, SCARG(uap, oset), sizeof(oss));
    185  1.2  ad 		if (error)
    186  1.2  ad 			return (error);
    187  1.2  ad 	}
    188  1.2  ad 	return (0);
    189  1.2  ad }
    190  1.2  ad 
    191  1.2  ad /* ARGSUSED */
    192  1.2  ad int
    193  1.2  ad sys___sigpending14(struct lwp *l, void *v, register_t *retval)
    194  1.2  ad {
    195  1.2  ad 	struct sys___sigpending14_args /* {
    196  1.2  ad 		syscallarg(sigset_t *)	set;
    197  1.2  ad 	} */ *uap = v;
    198  1.2  ad 	sigset_t ss;
    199  1.2  ad 
    200  1.2  ad 	sigpending1(l, &ss);
    201  1.2  ad 	return (copyout(&ss, SCARG(uap, set), sizeof(ss)));
    202  1.2  ad }
    203  1.2  ad 
    204  1.2  ad /*
    205  1.2  ad  * Suspend process until signal, providing mask to be set in the meantime.
    206  1.2  ad  * Note nonstandard calling convention: libc stub passes mask, not pointer,
    207  1.2  ad  * to save a copyin.
    208  1.2  ad  */
    209  1.2  ad /* ARGSUSED */
    210  1.2  ad int
    211  1.2  ad sys___sigsuspend14(struct lwp *l, void *v, register_t *retval)
    212  1.2  ad {
    213  1.2  ad 	struct sys___sigsuspend14_args /* {
    214  1.2  ad 		syscallarg(const sigset_t *)	set;
    215  1.2  ad 	} */ *uap = v;
    216  1.2  ad 	sigset_t	ss;
    217  1.2  ad 	int		error;
    218  1.2  ad 
    219  1.2  ad 	if (SCARG(uap, set)) {
    220  1.2  ad 		error = copyin(SCARG(uap, set), &ss, sizeof(ss));
    221  1.2  ad 		if (error)
    222  1.2  ad 			return (error);
    223  1.2  ad 	}
    224  1.2  ad 
    225  1.2  ad 	return (sigsuspend1(l, SCARG(uap, set) ? &ss : 0));
    226  1.2  ad }
    227  1.2  ad 
    228  1.2  ad /* ARGSUSED */
    229  1.2  ad int
    230  1.2  ad sys___sigaltstack14(struct lwp *l, void *v, register_t *retval)
    231  1.2  ad {
    232  1.2  ad 	struct sys___sigaltstack14_args /* {
    233  1.2  ad 		syscallarg(const struct sigaltstack *)	nss;
    234  1.2  ad 		syscallarg(struct sigaltstack *)	oss;
    235  1.2  ad 	} */ *uap = v;
    236  1.2  ad 	struct sigaltstack	nss, oss;
    237  1.2  ad 	int			error;
    238  1.2  ad 
    239  1.2  ad 	if (SCARG(uap, nss)) {
    240  1.2  ad 		error = copyin(SCARG(uap, nss), &nss, sizeof(nss));
    241  1.2  ad 		if (error)
    242  1.2  ad 			return (error);
    243  1.2  ad 	}
    244  1.2  ad 	error = sigaltstack1(l,
    245  1.2  ad 	    SCARG(uap, nss) ? &nss : 0, SCARG(uap, oss) ? &oss : 0);
    246  1.2  ad 	if (error)
    247  1.2  ad 		return (error);
    248  1.2  ad 	if (SCARG(uap, oss)) {
    249  1.2  ad 		error = copyout(&oss, SCARG(uap, oss), sizeof(oss));
    250  1.2  ad 		if (error)
    251  1.2  ad 			return (error);
    252  1.2  ad 	}
    253  1.2  ad 	return (0);
    254  1.2  ad }
    255  1.2  ad 
    256  1.2  ad /* ARGSUSED */
    257  1.2  ad int
    258  1.2  ad sys_kill(struct lwp *l, void *v, register_t *retval)
    259  1.2  ad {
    260  1.2  ad 	struct sys_kill_args /* {
    261  1.2  ad 		syscallarg(int)	pid;
    262  1.2  ad 		syscallarg(int)	signum;
    263  1.2  ad 	} */ *uap = v;
    264  1.2  ad 	struct proc	*p;
    265  1.2  ad 	ksiginfo_t	ksi;
    266  1.2  ad 	int signum = SCARG(uap, signum);
    267  1.2  ad 	int error;
    268  1.2  ad 
    269  1.2  ad 	if ((u_int)signum >= NSIG)
    270  1.2  ad 		return (EINVAL);
    271  1.2  ad 	KSI_INIT(&ksi);
    272  1.2  ad 	ksi.ksi_signo = signum;
    273  1.2  ad 	ksi.ksi_code = SI_USER;
    274  1.2  ad 	ksi.ksi_pid = l->l_proc->p_pid;
    275  1.2  ad 	ksi.ksi_uid = kauth_cred_geteuid(l->l_cred);
    276  1.2  ad 	if (SCARG(uap, pid) > 0) {
    277  1.2  ad 		/* kill single process */
    278  1.2  ad 		if ((p = p_find(SCARG(uap, pid), PFIND_UNLOCK_FAIL)) == NULL)
    279  1.2  ad 			return (ESRCH);
    280  1.2  ad 		mutex_enter(&p->p_mutex);
    281  1.2  ad 		error = kauth_authorize_process(l->l_cred,
    282  1.2  ad 		    KAUTH_PROCESS_CANSIGNAL, p, (void *)(uintptr_t)signum,
    283  1.2  ad 		    NULL, NULL);
    284  1.2  ad 		if (!error && signum) {
    285  1.2  ad 			mutex_enter(&proclist_mutex);
    286  1.2  ad 			mutex_enter(&p->p_smutex);
    287  1.2  ad 			kpsignal2(p, &ksi);
    288  1.2  ad 			mutex_exit(&p->p_smutex);
    289  1.2  ad 			mutex_exit(&proclist_mutex);
    290  1.2  ad 		}
    291  1.2  ad 		mutex_exit(&p->p_mutex);
    292  1.2  ad 		rw_exit(&proclist_lock);
    293  1.2  ad 		return (error);
    294  1.2  ad 	}
    295  1.2  ad 	switch (SCARG(uap, pid)) {
    296  1.2  ad 	case -1:		/* broadcast signal */
    297  1.2  ad 		return (killpg1(l, &ksi, 0, 1));
    298  1.2  ad 	case 0:			/* signal own process group */
    299  1.2  ad 		return (killpg1(l, &ksi, 0, 0));
    300  1.2  ad 	default:		/* negative explicit process group */
    301  1.2  ad 		return (killpg1(l, &ksi, -SCARG(uap, pid), 0));
    302  1.2  ad 	}
    303  1.2  ad 	/* NOTREACHED */
    304  1.2  ad }
    305  1.2  ad 
    306  1.2  ad /*
    307  1.2  ad  * Nonexistent system call-- signal process (may want to handle it).  Flag
    308  1.2  ad  * error in case process won't see signal immediately (blocked or ignored).
    309  1.2  ad  *
    310  1.2  ad  * XXX This should not be here.
    311  1.2  ad  */
    312  1.2  ad #ifndef PTRACE
    313  1.2  ad __weak_alias(sys_ptrace, sys_nosys);
    314  1.2  ad #endif
    315  1.2  ad 
    316  1.2  ad /* ARGSUSED */
    317  1.2  ad int
    318  1.2  ad sys_nosys(struct lwp *l, void *v, register_t *retval)
    319  1.2  ad {
    320  1.2  ad 
    321  1.2  ad 	mutex_enter(&proclist_mutex);
    322  1.2  ad 	psignal(l->l_proc, SIGSYS);
    323  1.2  ad 	mutex_exit(&proclist_mutex);
    324  1.2  ad 	return (ENOSYS);
    325  1.2  ad }
    326  1.2  ad 
    327  1.2  ad /* ARGSUSED */
    328  1.2  ad int
    329  1.2  ad sys_getcontext(struct lwp *l, void *v, register_t *retval)
    330  1.2  ad {
    331  1.2  ad 	struct sys_getcontext_args /* {
    332  1.2  ad 		syscallarg(struct __ucontext *) ucp;
    333  1.2  ad 	} */ *uap = v;
    334  1.2  ad 	struct proc *p = l->l_proc;
    335  1.2  ad 	ucontext_t uc;
    336  1.2  ad 
    337  1.2  ad 	mutex_enter(&p->p_smutex);
    338  1.2  ad 	getucontext(l, &uc);
    339  1.2  ad 	mutex_exit(&p->p_smutex);
    340  1.2  ad 
    341  1.2  ad 	return (copyout(&uc, SCARG(uap, ucp), sizeof (*SCARG(uap, ucp))));
    342  1.2  ad }
    343  1.2  ad 
    344  1.2  ad /* ARGSUSED */
    345  1.2  ad int
    346  1.2  ad sys_setcontext(struct lwp *l, void *v, register_t *retval)
    347  1.2  ad {
    348  1.2  ad 	struct sys_setcontext_args /* {
    349  1.2  ad 		syscallarg(const ucontext_t *) ucp;
    350  1.2  ad 	} */ *uap = v;
    351  1.2  ad 	struct proc *p = l->l_proc;
    352  1.2  ad 	ucontext_t uc;
    353  1.2  ad 	int error;
    354  1.2  ad 
    355  1.2  ad 	error = copyin(SCARG(uap, ucp), &uc, sizeof (uc));
    356  1.2  ad 	if (error)
    357  1.2  ad 		return (error);
    358  1.2  ad 	if (!(uc.uc_flags & _UC_CPU))
    359  1.2  ad 		return (EINVAL);
    360  1.2  ad 	mutex_enter(&p->p_smutex);
    361  1.2  ad 	error = setucontext(l, &uc);
    362  1.2  ad 	mutex_exit(&p->p_smutex);
    363  1.2  ad 	if (error)
    364  1.2  ad  		return (error);
    365  1.2  ad 
    366  1.2  ad 	return (EJUSTRETURN);
    367  1.2  ad }
    368  1.2  ad 
    369  1.2  ad /*
    370  1.2  ad  * sigtimedwait(2) system call, used also for implementation
    371  1.2  ad  * of sigwaitinfo() and sigwait().
    372  1.2  ad  *
    373  1.2  ad  * This only handles single LWP in signal wait. libpthread provides
    374  1.2  ad  * it's own sigtimedwait() wrapper to DTRT WRT individual threads.
    375  1.2  ad  */
    376  1.2  ad int
    377  1.2  ad sys___sigtimedwait(struct lwp *l, void *v, register_t *retval)
    378  1.2  ad {
    379  1.2  ad 
    380  1.2  ad 	return __sigtimedwait1(l, v, retval, copyout, copyin, copyout);
    381  1.2  ad }
    382  1.2  ad 
    383  1.2  ad int
    384  1.2  ad sigaction1(struct lwp *l, int signum, const struct sigaction *nsa,
    385  1.2  ad 	struct sigaction *osa, const void *tramp, int vers)
    386  1.2  ad {
    387  1.2  ad 	struct proc *p;
    388  1.2  ad 	struct sigacts *ps;
    389  1.2  ad 	sigset_t tset;
    390  1.2  ad 	int prop, error;
    391  1.2  ad 	ksiginfoq_t kq;
    392  1.2  ad 
    393  1.2  ad 	if (signum <= 0 || signum >= NSIG)
    394  1.2  ad 		return (EINVAL);
    395  1.2  ad 
    396  1.2  ad 	p = l->l_proc;
    397  1.2  ad 	error = 0;
    398  1.2  ad 	ksiginfo_queue_init(&kq);
    399  1.2  ad 
    400  1.2  ad 	/*
    401  1.2  ad 	 * Trampoline ABI version 0 is reserved for the legacy kernel
    402  1.2  ad 	 * provided on-stack trampoline.  Conversely, if we are using a
    403  1.2  ad 	 * non-0 ABI version, we must have a trampoline.  Only validate the
    404  1.2  ad 	 * vers if a new sigaction was supplied. Emulations use legacy
    405  1.2  ad 	 * kernel trampolines with version 0, alternatively check for that
    406  1.2  ad 	 * too.
    407  1.2  ad 	 */
    408  1.2  ad 	if ((vers != 0 && tramp == NULL) ||
    409  1.2  ad #ifdef SIGTRAMP_VALID
    410  1.2  ad 	    (nsa != NULL &&
    411  1.2  ad 	    ((vers == 0) ?
    412  1.2  ad 		(p->p_emul->e_sigcode == NULL) :
    413  1.2  ad 		!SIGTRAMP_VALID(vers))) ||
    414  1.2  ad #endif
    415  1.2  ad 	    (vers == 0 && tramp != NULL)) {
    416  1.2  ad 		return (EINVAL);
    417  1.2  ad 	}
    418  1.2  ad 
    419  1.2  ad 	mutex_enter(&p->p_mutex);	/* p_flag */
    420  1.2  ad 	mutex_enter(&p->p_smutex);
    421  1.2  ad 
    422  1.2  ad 	ps = p->p_sigacts;
    423  1.2  ad 	if (osa)
    424  1.2  ad 		*osa = SIGACTION_PS(ps, signum);
    425  1.2  ad 	if (!nsa)
    426  1.2  ad 		goto out;
    427  1.2  ad 
    428  1.2  ad 	prop = sigprop[signum];
    429  1.2  ad 	if ((nsa->sa_flags & ~SA_ALLBITS) || (prop & SA_CANTMASK)) {
    430  1.2  ad 		error = EINVAL;
    431  1.2  ad 		goto out;
    432  1.2  ad 	}
    433  1.2  ad 
    434  1.2  ad 	SIGACTION_PS(ps, signum) = *nsa;
    435  1.2  ad 	ps->sa_sigdesc[signum].sd_tramp = tramp;
    436  1.2  ad 	ps->sa_sigdesc[signum].sd_vers = vers;
    437  1.2  ad 	sigminusset(&sigcantmask, &SIGACTION_PS(ps, signum).sa_mask);
    438  1.2  ad 
    439  1.2  ad 	if ((prop & SA_NORESET) != 0)
    440  1.2  ad 		SIGACTION_PS(ps, signum).sa_flags &= ~SA_RESETHAND;
    441  1.2  ad 
    442  1.2  ad 	if (signum == SIGCHLD) {
    443  1.2  ad 		if (nsa->sa_flags & SA_NOCLDSTOP)
    444  1.2  ad 			p->p_sflag |= PS_NOCLDSTOP;
    445  1.2  ad 		else
    446  1.2  ad 			p->p_sflag &= ~PS_NOCLDSTOP;
    447  1.2  ad 		if (nsa->sa_flags & SA_NOCLDWAIT) {
    448  1.2  ad 			/*
    449  1.2  ad 			 * Paranoia: since SA_NOCLDWAIT is implemented by
    450  1.2  ad 			 * reparenting the dying child to PID 1 (and trust
    451  1.2  ad 			 * it to reap the zombie), PID 1 itself is forbidden
    452  1.2  ad 			 * to set SA_NOCLDWAIT.
    453  1.2  ad 			 */
    454  1.2  ad 			if (p->p_pid == 1)
    455  1.2  ad 				p->p_flag &= ~P_NOCLDWAIT;
    456  1.2  ad 			else
    457  1.2  ad 				p->p_flag |= P_NOCLDWAIT;
    458  1.2  ad 		} else
    459  1.2  ad 			p->p_flag &= ~P_NOCLDWAIT;
    460  1.2  ad 
    461  1.2  ad 		if (nsa->sa_handler == SIG_IGN) {
    462  1.2  ad 			/*
    463  1.2  ad 			 * Paranoia: same as above.
    464  1.2  ad 			 */
    465  1.2  ad 			if (p->p_pid == 1)
    466  1.2  ad 				p->p_flag &= ~P_CLDSIGIGN;
    467  1.2  ad 			else
    468  1.2  ad 				p->p_flag |= P_CLDSIGIGN;
    469  1.2  ad 		} else
    470  1.2  ad 			p->p_flag &= ~P_CLDSIGIGN;
    471  1.2  ad 	}
    472  1.2  ad 
    473  1.2  ad 	if ((nsa->sa_flags & SA_NODEFER) == 0)
    474  1.2  ad 		sigaddset(&SIGACTION_PS(ps, signum).sa_mask, signum);
    475  1.2  ad 	else
    476  1.2  ad 		sigdelset(&SIGACTION_PS(ps, signum).sa_mask, signum);
    477  1.2  ad 
    478  1.2  ad 	/*
    479  1.2  ad 	 * Set bit in p_sigctx.ps_sigignore for signals that are set to
    480  1.2  ad 	 * SIG_IGN, and for signals set to SIG_DFL where the default is to
    481  1.2  ad 	 * ignore. However, don't put SIGCONT in p_sigctx.ps_sigignore, as
    482  1.2  ad 	 * we have to restart the process.
    483  1.2  ad 	 */
    484  1.2  ad 	if (nsa->sa_handler == SIG_IGN ||
    485  1.2  ad 	    (nsa->sa_handler == SIG_DFL && (prop & SA_IGNORE) != 0)) {
    486  1.2  ad 		/* Never to be seen again. */
    487  1.2  ad 		sigemptyset(&tset);
    488  1.2  ad 		sigaddset(&tset, signum);
    489  1.2  ad 		sigclearall(p, &tset, &kq);
    490  1.2  ad 		if (signum != SIGCONT) {
    491  1.2  ad 			/* Easier in psignal */
    492  1.2  ad 			sigaddset(&p->p_sigctx.ps_sigignore, signum);
    493  1.2  ad 		}
    494  1.2  ad 		sigdelset(&p->p_sigctx.ps_sigcatch, signum);
    495  1.2  ad 	} else {
    496  1.2  ad 		sigdelset(&p->p_sigctx.ps_sigignore, signum);
    497  1.2  ad 		if (nsa->sa_handler == SIG_DFL)
    498  1.2  ad 			sigdelset(&p->p_sigctx.ps_sigcatch, signum);
    499  1.2  ad 		else
    500  1.2  ad 			sigaddset(&p->p_sigctx.ps_sigcatch, signum);
    501  1.2  ad 	}
    502  1.2  ad 
    503  1.2  ad 	/*
    504  1.2  ad 	 * Previously held signals may now have become visible.  Ensure that
    505  1.2  ad 	 * we check for them before returning to userspace.
    506  1.2  ad 	 */
    507  1.2  ad 	lwp_lock(l);
    508  1.2  ad 	l->l_flag |= L_PENDSIG;
    509  1.2  ad 	lwp_unlock(l);
    510  1.2  ad  out:
    511  1.2  ad 	mutex_exit(&p->p_smutex);
    512  1.2  ad 	mutex_exit(&p->p_mutex);
    513  1.2  ad 	ksiginfo_queue_drain(&kq);
    514  1.2  ad 
    515  1.2  ad 	return (error);
    516  1.2  ad }
    517  1.2  ad 
    518  1.2  ad int
    519  1.2  ad sigprocmask1(struct lwp *l, int how, const sigset_t *nss, sigset_t *oss)
    520  1.2  ad {
    521  1.2  ad 	int more;
    522  1.2  ad 
    523  1.2  ad 	LOCK_ASSERT(mutex_owned(&l->l_proc->p_smutex));
    524  1.2  ad 
    525  1.2  ad 	if (oss)
    526  1.2  ad 		*oss = l->l_sigmask;
    527  1.2  ad 	if (nss) {
    528  1.2  ad 		switch (how) {
    529  1.2  ad 		case SIG_BLOCK:
    530  1.2  ad 			sigplusset(nss, &l->l_sigmask);
    531  1.2  ad 			more = 0;
    532  1.2  ad 			break;
    533  1.2  ad 		case SIG_UNBLOCK:
    534  1.2  ad 			sigminusset(nss, &l->l_sigmask);
    535  1.2  ad 			more = 1;
    536  1.2  ad 			break;
    537  1.2  ad 		case SIG_SETMASK:
    538  1.2  ad 			l->l_sigmask = *nss;
    539  1.2  ad 			more = 1;
    540  1.2  ad 			break;
    541  1.2  ad 		default:
    542  1.2  ad 			return (EINVAL);
    543  1.2  ad 		}
    544  1.2  ad 		sigminusset(&sigcantmask, &l->l_sigmask);
    545  1.2  ad 		if (more) {
    546  1.2  ad 			/*
    547  1.2  ad 			 * Check for pending signals on return to user.
    548  1.2  ad 			 */
    549  1.2  ad 			lwp_lock(l);
    550  1.2  ad 			l->l_flag |= L_PENDSIG;
    551  1.2  ad 			lwp_unlock(l);
    552  1.2  ad 		}
    553  1.2  ad 	}
    554  1.2  ad 
    555  1.2  ad 	return (0);
    556  1.2  ad }
    557  1.2  ad 
    558  1.2  ad void
    559  1.2  ad sigpending1(struct lwp *l, sigset_t *ss)
    560  1.2  ad {
    561  1.2  ad 	struct proc *p = l->l_proc;
    562  1.2  ad 
    563  1.2  ad 	mutex_enter(&p->p_smutex);
    564  1.2  ad 	*ss = l->l_sigpend.sp_set;
    565  1.2  ad 	sigplusset(&p->p_sigpend.sp_set, ss);
    566  1.2  ad 	sigminusset(&l->l_sigmask, ss);
    567  1.2  ad 	mutex_exit(&p->p_smutex);
    568  1.2  ad }
    569  1.2  ad 
    570  1.2  ad int
    571  1.2  ad sigsuspend1(struct lwp *l, const sigset_t *ss)
    572  1.2  ad {
    573  1.2  ad 	struct proc *p;
    574  1.2  ad 
    575  1.2  ad 	p = l->l_proc;
    576  1.2  ad 
    577  1.2  ad 	if (ss) {
    578  1.2  ad 		/*
    579  1.2  ad 		 * When returning from sigpause, we want
    580  1.2  ad 		 * the old mask to be restored after the
    581  1.2  ad 		 * signal handler has finished.  Thus, we
    582  1.2  ad 		 * save it here and mark the sigctx structure
    583  1.2  ad 		 * to indicate this.
    584  1.2  ad 		 */
    585  1.2  ad 		mutex_enter(&p->p_smutex);
    586  1.2  ad 		l->l_sigrestore = 1;
    587  1.2  ad 		l->l_sigoldmask = l->l_sigmask;
    588  1.2  ad 		l->l_sigmask = *ss;
    589  1.2  ad 		sigminusset(&sigcantmask, &l->l_sigmask);
    590  1.2  ad 
    591  1.2  ad 		/* Check for pending signals when sleeping. */
    592  1.2  ad 		lwp_lock(l);
    593  1.2  ad 		l->l_flag |= L_PENDSIG;
    594  1.2  ad 		lwp_unlock(l);
    595  1.2  ad 		mutex_exit(&p->p_smutex);
    596  1.2  ad 	}
    597  1.2  ad 
    598  1.2  ad 	while (kpause("pause", TRUE, 0, NULL) == 0)
    599  1.2  ad 		;
    600  1.2  ad 
    601  1.2  ad 	/* always return EINTR rather than ERESTART... */
    602  1.2  ad 	return (EINTR);
    603  1.2  ad }
    604  1.2  ad 
    605  1.2  ad int
    606  1.2  ad sigaltstack1(struct lwp *l, const struct sigaltstack *nss,
    607  1.2  ad 	     struct sigaltstack *oss)
    608  1.2  ad {
    609  1.2  ad 	struct proc *p = l->l_proc;
    610  1.2  ad 	int error = 0;
    611  1.2  ad 
    612  1.2  ad 	mutex_enter(&p->p_smutex);
    613  1.2  ad 
    614  1.2  ad 	if (oss)
    615  1.2  ad 		*oss = l->l_sigstk;
    616  1.2  ad 
    617  1.2  ad 	if (nss) {
    618  1.2  ad 		if (nss->ss_flags & ~SS_ALLBITS)
    619  1.2  ad 			error = EINVAL;
    620  1.2  ad 		else if (nss->ss_flags & SS_DISABLE) {
    621  1.2  ad 			if (l->l_sigstk.ss_flags & SS_ONSTACK)
    622  1.2  ad 				error = EINVAL;
    623  1.2  ad 		} else if (nss->ss_size < MINSIGSTKSZ)
    624  1.2  ad 			error = ENOMEM;
    625  1.2  ad 
    626  1.2  ad 		if (!error)
    627  1.2  ad 			l->l_sigstk = *nss;
    628  1.2  ad 	}
    629  1.2  ad 
    630  1.2  ad 	mutex_exit(&p->p_smutex);
    631  1.2  ad 
    632  1.2  ad 	return (error);
    633  1.2  ad }
    634  1.2  ad 
    635  1.2  ad int
    636  1.2  ad __sigtimedwait1(struct lwp *l, void *v, register_t *retval,
    637  1.2  ad     copyout_t put_info, copyin_t fetch_timeout, copyout_t put_timeout)
    638  1.2  ad {
    639  1.2  ad 	struct sys___sigtimedwait_args /* {
    640  1.2  ad 		syscallarg(const sigset_t *) set;
    641  1.2  ad 		syscallarg(siginfo_t *) info;
    642  1.2  ad 		syscallarg(struct timespec *) timeout;
    643  1.2  ad 	} */ *uap = v;
    644  1.2  ad 	struct proc *p = l->l_proc;
    645  1.2  ad 	int error, signum;
    646  1.2  ad 	int timo = 0;
    647  1.2  ad 	struct timespec ts, tsstart, tsnow;
    648  1.2  ad 	ksiginfo_t *ksi;
    649  1.2  ad 
    650  1.2  ad 	memset(&tsstart, 0, sizeof tsstart);	 /* XXX gcc */
    651  1.2  ad 
    652  1.2  ad 	/*
    653  1.2  ad 	 * Calculate timeout, if it was specified.
    654  1.2  ad 	 */
    655  1.2  ad 	if (SCARG(uap, timeout)) {
    656  1.2  ad 		uint64_t ms;
    657  1.2  ad 
    658  1.2  ad 		if ((error = (*fetch_timeout)(SCARG(uap, timeout), &ts, sizeof(ts))))
    659  1.2  ad 			return (error);
    660  1.2  ad 
    661  1.2  ad 		ms = (ts.tv_sec * 1000) + (ts.tv_nsec / 1000000);
    662  1.2  ad 		timo = mstohz(ms);
    663  1.2  ad 		if (timo == 0 && ts.tv_sec == 0 && ts.tv_nsec > 0)
    664  1.2  ad 			timo = 1;
    665  1.2  ad 		if (timo <= 0)
    666  1.2  ad 			return (EAGAIN);
    667  1.2  ad 
    668  1.2  ad 		/*
    669  1.2  ad 		 * Remember current uptime, it would be used in
    670  1.2  ad 		 * ECANCELED/ERESTART case.
    671  1.2  ad 		 */
    672  1.2  ad 		getnanouptime(&tsstart);
    673  1.2  ad 	}
    674  1.2  ad 
    675  1.2  ad 	error = copyin(SCARG(uap, set), &l->l_sigwaitset,
    676  1.2  ad 	    sizeof(l->l_sigwaitset));
    677  1.2  ad 	if (error != 0)
    678  1.2  ad 		return (error);
    679  1.2  ad 
    680  1.2  ad 	/*
    681  1.2  ad 	 * Silently ignore SA_CANTMASK signals. psignal1() would ignore
    682  1.2  ad 	 * SA_CANTMASK signals in waitset, we do this only for the below
    683  1.2  ad 	 * siglist check.
    684  1.2  ad 	 */
    685  1.2  ad 	sigminusset(&sigcantmask, &l->l_sigwaitset);
    686  1.2  ad 
    687  1.2  ad 	/*
    688  1.2  ad 	 * Allocate a ksi up front.  We can't sleep with the mutex held.
    689  1.2  ad 	 */
    690  1.2  ad 	KERNEL_LOCK(1, l);	/* XXXSMP ksiginfo_alloc() -> pool_get()  */
    691  1.2  ad 	ksi = ksiginfo_alloc(p, NULL, PR_WAITOK);
    692  1.2  ad 	KERNEL_UNLOCK_ONE(l);	/* XXXSMP */
    693  1.2  ad 	if (ksi == NULL)
    694  1.2  ad 		return (ENOMEM);
    695  1.2  ad 
    696  1.2  ad 	mutex_enter(&p->p_smutex);
    697  1.2  ad 
    698  1.2  ad 	if ((signum = sigget(&p->p_sigpend, ksi, 0, &l->l_sigwaitset)) == 0)
    699  1.2  ad 		signum = sigget(&l->l_sigpend, ksi, 0, &l->l_sigwaitset);
    700  1.2  ad 
    701  1.2  ad 	if (signum != 0) {
    702  1.2  ad 		/*
    703  1.2  ad 		 * We found a pending signal - copy it out to the user.
    704  1.2  ad 		 */
    705  1.2  ad 		mutex_exit(&p->p_smutex);
    706  1.2  ad 		goto out;
    707  1.2  ad 	}
    708  1.2  ad 
    709  1.2  ad 	/*
    710  1.2  ad 	 * Set up the sigwait list.
    711  1.2  ad 	 */
    712  1.2  ad 	l->l_sigwaited = ksi;
    713  1.2  ad 	LIST_INSERT_HEAD(&p->p_sigwaiters, l, l_sigwaiter);
    714  1.2  ad 
    715  1.2  ad 	/*
    716  1.2  ad 	 * Wait for signal to arrive. We can either be woken up or time out.
    717  1.2  ad 	 */
    718  1.2  ad 	error = cv_timedwait_sig(&l->l_sigcv, &p->p_smutex, timo);
    719  1.2  ad 
    720  1.2  ad 	/*
    721  1.2  ad 	 * Need to find out if we woke as a result of lwp_wakeup() or a
    722  1.2  ad 	 * signal outside our wait set.
    723  1.2  ad 	 */
    724  1.2  ad 	if (l->l_sigwaited != NULL) {
    725  1.2  ad 		if (error == EINTR) {
    726  1.2  ad 			/* wakeup via _lwp_wakeup() */
    727  1.2  ad 			error = ECANCELED;
    728  1.2  ad 		} else if (!error) {
    729  1.2  ad 			/* spurious wakeup - arrange for syscall restart */
    730  1.2  ad 			error = ERESTART;
    731  1.2  ad 		}
    732  1.2  ad 		l->l_sigwaited = NULL;
    733  1.2  ad 		LIST_REMOVE(l, l_sigwaiter);
    734  1.2  ad 	}
    735  1.2  ad 
    736  1.2  ad 	mutex_exit(&p->p_smutex);
    737  1.2  ad 
    738  1.2  ad 	/*
    739  1.2  ad 	 * If the sleep was interrupted (either by signal or wakeup), update
    740  1.2  ad 	 * the timeout and copyout new value back.  It would be used when
    741  1.2  ad 	 * the syscall would be restarted or called again.
    742  1.2  ad 	 */
    743  1.2  ad 	if (timo && (error == ERESTART || error == ECANCELED)) {
    744  1.2  ad 		getnanouptime(&tsnow);
    745  1.2  ad 
    746  1.2  ad 		/* compute how much time has passed since start */
    747  1.2  ad 		timespecsub(&tsnow, &tsstart, &tsnow);
    748  1.2  ad 		/* substract passed time from timeout */
    749  1.2  ad 		timespecsub(&ts, &tsnow, &ts);
    750  1.2  ad 
    751  1.2  ad 		if (ts.tv_sec < 0)
    752  1.2  ad 			error = EAGAIN;
    753  1.2  ad 		else {
    754  1.2  ad 			/* copy updated timeout to userland */
    755  1.2  ad 			error = (*put_timeout)(&ts, SCARG(uap, timeout),
    756  1.2  ad 			    sizeof(ts));
    757  1.2  ad 		}
    758  1.2  ad 	}
    759  1.2  ad 
    760  1.2  ad 	/*
    761  1.2  ad 	 * If a signal from the wait set arrived, copy it to userland.
    762  1.2  ad 	 * Copy only the used part of siginfo, the padding part is
    763  1.2  ad 	 * left unchanged (userland is not supposed to touch it anyway).
    764  1.2  ad 	 */
    765  1.2  ad  out:
    766  1.2  ad 	if (error == 0)
    767  1.2  ad 		error = (*put_info)(&ksi->ksi_info, SCARG(uap, info),
    768  1.2  ad 		    sizeof(ksi->ksi_info));
    769  1.2  ad 
    770  1.2  ad 	KERNEL_LOCK(1, l);	/* XXXSMP ksiginfo_free() -> pool_put()  */
    771  1.2  ad 	ksiginfo_free(ksi);
    772  1.2  ad 	KERNEL_UNLOCK_ONE(l);	/* XXXSMP */
    773  1.2  ad 
    774  1.2  ad 	return error;
    775  1.2  ad }
    776