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