Home | History | Annotate | Line # | Download | only in common
linux_signal.c revision 1.47.2.6
      1  1.47.2.6      yamt /*	$NetBSD: linux_signal.c,v 1.47.2.6 2007/12/07 17:28:24 yamt Exp $	*/
      2  1.47.2.3      yamt 
      3      1.16      fvdl /*-
      4      1.16      fvdl  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
      5       1.1      fvdl  * All rights reserved.
      6       1.1      fvdl  *
      7      1.16      fvdl  * This code is derived from software contributed to The NetBSD Foundation
      8      1.16      fvdl  * by Frank van der Linden and Eric Haszlakiewicz.
      9      1.16      fvdl  *
     10       1.1      fvdl  * Redistribution and use in source and binary forms, with or without
     11       1.1      fvdl  * modification, are permitted provided that the following conditions
     12       1.1      fvdl  * are met:
     13       1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     14       1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     15       1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     17       1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     18       1.1      fvdl  * 3. All advertising materials mentioning features or use of this software
     19       1.1      fvdl  *    must display the following acknowledgement:
     20      1.16      fvdl  *	This product includes software developed by the NetBSD
     21      1.16      fvdl  *	Foundation, Inc. and its contributors.
     22      1.16      fvdl  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.16      fvdl  *    contributors may be used to endorse or promote products derived
     24      1.16      fvdl  *    from this software without specific prior written permission.
     25       1.1      fvdl  *
     26      1.16      fvdl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.16      fvdl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.16      fvdl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.16      fvdl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.16      fvdl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.16      fvdl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.16      fvdl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.16      fvdl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.16      fvdl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.16      fvdl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.16      fvdl  * POSSIBILITY OF SUCH DAMAGE.
     37      1.16      fvdl  */
     38      1.16      fvdl /*
     39       1.1      fvdl  * heavily from: svr4_signal.c,v 1.7 1995/01/09 01:04:21 christos Exp
     40       1.1      fvdl  */
     41       1.1      fvdl 
     42      1.14       erh /*
     43      1.14       erh  *   Functions in multiarch:
     44      1.14       erh  *	linux_sys_signal	: linux_sig_notalpha.c
     45      1.14       erh  *	linux_sys_siggetmask	: linux_sig_notalpha.c
     46      1.14       erh  *	linux_sys_sigsetmask	: linux_sig_notalpha.c
     47      1.14       erh  *	linux_sys_pause		: linux_sig_notalpha.c
     48      1.14       erh  *	linux_sys_sigaction	: linux_sigaction.c
     49      1.14       erh  *
     50      1.14       erh  */
     51      1.14       erh 
     52      1.14       erh /*
     53      1.14       erh  *   Unimplemented:
     54      1.14       erh  *	linux_sys_rt_sigtimedwait	: sigsuspend w/timeout.
     55      1.14       erh  */
     56      1.32     lukem 
     57      1.32     lukem #include <sys/cdefs.h>
     58  1.47.2.6      yamt __KERNEL_RCSID(0, "$NetBSD: linux_signal.c,v 1.47.2.6 2007/12/07 17:28:24 yamt Exp $");
     59      1.21  drochner 
     60      1.21  drochner #define COMPAT_LINUX 1
     61      1.14       erh 
     62       1.1      fvdl #include <sys/param.h>
     63       1.1      fvdl #include <sys/systm.h>
     64       1.1      fvdl #include <sys/namei.h>
     65       1.1      fvdl #include <sys/proc.h>
     66       1.1      fvdl #include <sys/filedesc.h>
     67       1.1      fvdl #include <sys/ioctl.h>
     68       1.1      fvdl #include <sys/mount.h>
     69       1.1      fvdl #include <sys/kernel.h>
     70       1.1      fvdl #include <sys/signal.h>
     71       1.1      fvdl #include <sys/signalvar.h>
     72       1.1      fvdl #include <sys/malloc.h>
     73       1.1      fvdl 
     74       1.1      fvdl #include <sys/syscallargs.h>
     75       1.1      fvdl 
     76      1.15  christos #include <compat/linux/common/linux_types.h>
     77      1.15  christos #include <compat/linux/common/linux_signal.h>
     78  1.47.2.1      yamt #include <compat/linux/common/linux_exec.h> /* For emul_linux */
     79  1.47.2.1      yamt #include <compat/linux/common/linux_machdep.h> /* For LINUX_NPTL */
     80  1.47.2.1      yamt #include <compat/linux/common/linux_emuldata.h> /* for linux_emuldata */
     81      1.17       erh #include <compat/linux/common/linux_siginfo.h>
     82      1.45      fvdl #include <compat/linux/common/linux_sigevent.h>
     83      1.15  christos #include <compat/linux/common/linux_util.h>
     84  1.47.2.5      yamt #include <compat/linux/common/linux_ipc.h>
     85  1.47.2.5      yamt #include <compat/linux/common/linux_sem.h>
     86      1.15  christos 
     87       1.1      fvdl #include <compat/linux/linux_syscallargs.h>
     88       1.1      fvdl 
     89      1.14       erh /* Locally used defines (in bsd<->linux conversion functions): */
     90      1.11     perry #define	linux_sigemptyset(s)	memset((s), 0, sizeof(*(s)))
     91      1.20     itohy #define	linux_sigismember(s, n)	((s)->sig[((n) - 1) / LINUX__NSIG_BPW]	\
     92      1.20     itohy 					& (1 << ((n) - 1) % LINUX__NSIG_BPW))
     93      1.20     itohy #define	linux_sigaddset(s, n)	((s)->sig[((n) - 1) / LINUX__NSIG_BPW]	\
     94      1.20     itohy 					|= (1 << ((n) - 1) % LINUX__NSIG_BPW))
     95       1.6   mycroft 
     96      1.36  christos #ifdef DEBUG_LINUX
     97      1.36  christos #define DPRINTF(a)	uprintf a
     98      1.36  christos #else
     99      1.36  christos #define DPRINTF(a)
    100      1.36  christos #endif
    101      1.36  christos 
    102      1.37  christos extern const int native_to_linux_signo[];
    103      1.37  christos extern const int linux_to_native_signo[];
    104       1.6   mycroft 
    105      1.14       erh /*
    106      1.20     itohy  * Convert between Linux and BSD signal sets.
    107      1.14       erh  */
    108      1.20     itohy #if LINUX__NSIG_WORDS > 1
    109       1.6   mycroft void
    110      1.33  christos linux_old_extra_to_native_sigset(bss, lss, extra)
    111      1.33  christos 	sigset_t *bss;
    112      1.14       erh 	const linux_old_sigset_t *lss;
    113      1.20     itohy 	const unsigned long *extra;
    114      1.20     itohy {
    115      1.20     itohy 	linux_sigset_t lsnew;
    116      1.20     itohy 
    117      1.20     itohy 	/* convert old sigset to new sigset */
    118      1.20     itohy 	linux_sigemptyset(&lsnew);
    119      1.20     itohy 	lsnew.sig[0] = *lss;
    120      1.20     itohy 	if (extra)
    121      1.33  christos 		memcpy(&lsnew.sig[1], extra,
    122      1.33  christos 		    sizeof(linux_sigset_t) - sizeof(linux_old_sigset_t));
    123      1.20     itohy 
    124      1.33  christos 	linux_to_native_sigset(bss, &lsnew);
    125      1.20     itohy }
    126      1.20     itohy 
    127      1.20     itohy void
    128      1.33  christos native_to_linux_old_extra_sigset(lss, extra, bss)
    129      1.20     itohy 	linux_old_sigset_t *lss;
    130      1.20     itohy 	unsigned long *extra;
    131      1.33  christos 	const sigset_t *bss;
    132      1.20     itohy {
    133      1.20     itohy 	linux_sigset_t lsnew;
    134      1.20     itohy 
    135      1.33  christos 	native_to_linux_sigset(&lsnew, bss);
    136      1.20     itohy 
    137      1.20     itohy 	/* convert new sigset to old sigset */
    138      1.20     itohy 	*lss = lsnew.sig[0];
    139      1.20     itohy 	if (extra)
    140      1.33  christos 		memcpy(extra, &lsnew.sig[1],
    141      1.33  christos 		    sizeof(linux_sigset_t) - sizeof(linux_old_sigset_t));
    142      1.20     itohy }
    143      1.43      manu #endif /* LINUX__NSIG_WORDS > 1 */
    144      1.20     itohy 
    145      1.20     itohy void
    146      1.33  christos linux_to_native_sigset(bss, lss)
    147      1.33  christos 	sigset_t *bss;
    148      1.20     itohy 	const linux_sigset_t *lss;
    149       1.1      fvdl {
    150       1.1      fvdl 	int i, newsig;
    151       1.1      fvdl 
    152       1.6   mycroft 	sigemptyset(bss);
    153      1.20     itohy 	for (i = 1; i < LINUX__NSIG; i++) {
    154       1.6   mycroft 		if (linux_sigismember(lss, i)) {
    155      1.37  christos 			newsig = linux_to_native_signo[i];
    156       1.1      fvdl 			if (newsig)
    157       1.6   mycroft 				sigaddset(bss, newsig);
    158       1.1      fvdl 		}
    159       1.1      fvdl 	}
    160       1.1      fvdl }
    161       1.1      fvdl 
    162       1.1      fvdl void
    163      1.33  christos native_to_linux_sigset(lss, bss)
    164      1.33  christos 	linux_sigset_t *lss;
    165       1.1      fvdl 	const sigset_t *bss;
    166       1.1      fvdl {
    167       1.1      fvdl 	int i, newsig;
    168      1.20     itohy 
    169       1.6   mycroft 	linux_sigemptyset(lss);
    170       1.6   mycroft 	for (i = 1; i < NSIG; i++) {
    171       1.6   mycroft 		if (sigismember(bss, i)) {
    172      1.37  christos 			newsig = native_to_linux_signo[i];
    173       1.1      fvdl 			if (newsig)
    174       1.6   mycroft 				linux_sigaddset(lss, newsig);
    175       1.1      fvdl 		}
    176       1.1      fvdl 	}
    177       1.1      fvdl }
    178       1.1      fvdl 
    179      1.34  christos unsigned int
    180      1.34  christos native_to_linux_sigflags(bsf)
    181      1.34  christos 	const int bsf;
    182      1.33  christos {
    183      1.34  christos 	unsigned int lsf = 0;
    184      1.34  christos 	if ((bsf & SA_NOCLDSTOP) != 0)
    185      1.34  christos 		lsf |= LINUX_SA_NOCLDSTOP;
    186      1.34  christos 	if ((bsf & SA_NOCLDWAIT) != 0)
    187      1.34  christos 		lsf |= LINUX_SA_NOCLDWAIT;
    188      1.34  christos 	if ((bsf & SA_ONSTACK) != 0)
    189      1.34  christos 		lsf |= LINUX_SA_ONSTACK;
    190      1.34  christos 	if ((bsf & SA_RESTART) != 0)
    191      1.34  christos 		lsf |= LINUX_SA_RESTART;
    192      1.34  christos 	if ((bsf & SA_NODEFER) != 0)
    193      1.34  christos 		lsf |= LINUX_SA_NOMASK;
    194      1.34  christos 	if ((bsf & SA_RESETHAND) != 0)
    195      1.34  christos 		lsf |= LINUX_SA_ONESHOT;
    196      1.34  christos 	if ((bsf & SA_SIGINFO) != 0)
    197      1.34  christos 		lsf |= LINUX_SA_SIGINFO;
    198      1.34  christos 	return lsf;
    199      1.33  christos }
    200      1.33  christos 
    201      1.34  christos int
    202      1.34  christos linux_to_native_sigflags(lsf)
    203      1.34  christos 	const unsigned long lsf;
    204      1.33  christos {
    205      1.34  christos 	int bsf = 0;
    206      1.34  christos 	if ((lsf & LINUX_SA_NOCLDSTOP) != 0)
    207      1.34  christos 		bsf |= SA_NOCLDSTOP;
    208      1.34  christos 	if ((lsf & LINUX_SA_NOCLDWAIT) != 0)
    209      1.34  christos 		bsf |= SA_NOCLDWAIT;
    210      1.34  christos 	if ((lsf & LINUX_SA_ONSTACK) != 0)
    211      1.34  christos 		bsf |= SA_ONSTACK;
    212      1.34  christos 	if ((lsf & LINUX_SA_RESTART) != 0)
    213      1.34  christos 		bsf |= SA_RESTART;
    214      1.34  christos 	if ((lsf & LINUX_SA_ONESHOT) != 0)
    215      1.34  christos 		bsf |= SA_RESETHAND;
    216      1.34  christos 	if ((lsf & LINUX_SA_NOMASK) != 0)
    217      1.34  christos 		bsf |= SA_NODEFER;
    218      1.34  christos 	if ((lsf & LINUX_SA_SIGINFO) != 0)
    219      1.34  christos 		bsf |= SA_SIGINFO;
    220  1.47.2.2      yamt 	if ((lsf & ~LINUX_SA_ALLBITS) != 0) {
    221      1.36  christos 		DPRINTF(("linux_old_to_native_sigflags: "
    222      1.36  christos 		    "%lx extra bits ignored\n", lsf));
    223  1.47.2.2      yamt 	}
    224      1.34  christos 	return bsf;
    225      1.33  christos }
    226      1.33  christos 
    227       1.1      fvdl /*
    228      1.46      manu  * Convert between Linux and BSD sigaction structures.
    229       1.1      fvdl  */
    230       1.1      fvdl void
    231      1.33  christos linux_old_to_native_sigaction(bsa, lsa)
    232      1.14       erh 	struct sigaction *bsa;
    233      1.33  christos 	const struct linux_old_sigaction *lsa;
    234      1.14       erh {
    235      1.39  christos 	bsa->sa_handler = lsa->linux_sa_handler;
    236      1.39  christos 	linux_old_to_native_sigset(&bsa->sa_mask, &lsa->linux_sa_mask);
    237      1.39  christos 	bsa->sa_flags = linux_to_native_sigflags(lsa->linux_sa_flags);
    238      1.14       erh }
    239      1.14       erh 
    240      1.14       erh void
    241      1.33  christos native_to_linux_old_sigaction(lsa, bsa)
    242      1.14       erh 	struct linux_old_sigaction *lsa;
    243      1.33  christos 	const struct sigaction *bsa;
    244      1.14       erh {
    245      1.39  christos 	lsa->linux_sa_handler = bsa->sa_handler;
    246      1.39  christos 	native_to_linux_old_sigset(&lsa->linux_sa_mask, &bsa->sa_mask);
    247      1.39  christos 	lsa->linux_sa_flags = native_to_linux_sigflags(bsa->sa_flags);
    248      1.34  christos #ifndef __alpha__
    249      1.39  christos 	lsa->linux_sa_restorer = NULL;
    250      1.34  christos #endif
    251      1.14       erh }
    252      1.14       erh 
    253      1.14       erh /* ...and the new sigaction conversion funcs. */
    254      1.14       erh void
    255      1.33  christos linux_to_native_sigaction(bsa, lsa)
    256       1.1      fvdl 	struct sigaction *bsa;
    257      1.33  christos 	const struct linux_sigaction *lsa;
    258       1.1      fvdl {
    259      1.39  christos 	bsa->sa_handler = lsa->linux_sa_handler;
    260      1.39  christos 	linux_to_native_sigset(&bsa->sa_mask, &lsa->linux_sa_mask);
    261      1.39  christos 	bsa->sa_flags = linux_to_native_sigflags(lsa->linux_sa_flags);
    262       1.1      fvdl }
    263       1.1      fvdl 
    264       1.1      fvdl void
    265      1.33  christos native_to_linux_sigaction(lsa, bsa)
    266       1.1      fvdl 	struct linux_sigaction *lsa;
    267      1.33  christos 	const struct sigaction *bsa;
    268       1.1      fvdl {
    269      1.39  christos 	lsa->linux_sa_handler = bsa->sa_handler;
    270      1.39  christos 	native_to_linux_sigset(&lsa->linux_sa_mask, &bsa->sa_mask);
    271      1.39  christos 	lsa->linux_sa_flags = native_to_linux_sigflags(bsa->sa_flags);
    272      1.34  christos #ifndef __alpha__
    273      1.39  christos 	lsa->linux_sa_restorer = NULL;
    274      1.34  christos #endif
    275       1.1      fvdl }
    276       1.1      fvdl 
    277      1.14       erh /* ----------------------------------------------------------------------- */
    278       1.1      fvdl 
    279       1.1      fvdl /*
    280       1.1      fvdl  * The Linux sigaction() system call. Do the usual conversions,
    281       1.1      fvdl  * and just call sigaction(). Some flags and values are silently
    282       1.1      fvdl  * ignored (see above).
    283       1.1      fvdl  */
    284       1.1      fvdl int
    285  1.47.2.2      yamt linux_sys_rt_sigaction(struct lwp *l, void *v, register_t *retval)
    286       1.8   thorpej {
    287      1.14       erh 	struct linux_sys_rt_sigaction_args /* {
    288       1.1      fvdl 		syscallarg(int) signum;
    289      1.12   mycroft 		syscallarg(const struct linux_sigaction *) nsa;
    290       1.1      fvdl 		syscallarg(struct linux_sigaction *) osa;
    291      1.14       erh 		syscallarg(size_t) sigsetsize;
    292       1.8   thorpej 	} */ *uap = v;
    293      1.12   mycroft 	struct linux_sigaction nlsa, olsa;
    294      1.12   mycroft 	struct sigaction nbsa, obsa;
    295      1.25      tron 	int error, sig;
    296      1.46      manu 	void *tramp = NULL;
    297      1.46      manu 	int vers = 0;
    298      1.47       mrg #if defined __amd64__
    299  1.47.2.3      yamt 	struct sigacts *ps = l->l_proc->p_sigacts;
    300      1.46      manu #endif
    301       1.1      fvdl 
    302      1.14       erh 	if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
    303      1.14       erh 		return (EINVAL);
    304      1.14       erh 
    305      1.12   mycroft 	if (SCARG(uap, nsa)) {
    306      1.12   mycroft 		error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
    307      1.12   mycroft 		if (error)
    308      1.12   mycroft 			return (error);
    309      1.33  christos 		linux_to_native_sigaction(&nbsa, &nlsa);
    310      1.12   mycroft 	}
    311      1.46      manu 
    312      1.25      tron 	sig = SCARG(uap, signum);
    313      1.25      tron 	if (sig < 0 || sig >= LINUX__NSIG)
    314      1.25      tron 		return (EINVAL);
    315      1.37  christos 	if (sig > 0 && !linux_to_native_signo[sig]) {
    316      1.29        tv 		/* Pretend that we did something useful for unknown signals. */
    317      1.29        tv 		obsa.sa_handler = SIG_IGN;
    318      1.29        tv 		sigemptyset(&obsa.sa_mask);
    319      1.29        tv 		obsa.sa_flags = 0;
    320      1.29        tv 	} else {
    321      1.46      manu #if defined __amd64__
    322      1.46      manu 		if (nlsa.linux_sa_flags & LINUX_SA_RESTORER) {
    323      1.46      manu 			if ((tramp = nlsa.linux_sa_restorer) != NULL)
    324      1.46      manu 				vers = 2; /* XXX arch dependant */
    325      1.46      manu 		}
    326      1.46      manu #endif
    327      1.46      manu 
    328  1.47.2.3      yamt 		error = sigaction1(l, linux_to_native_signo[sig],
    329      1.38   thorpej 		    SCARG(uap, nsa) ? &nbsa : NULL,
    330      1.38   thorpej 		    SCARG(uap, osa) ? &obsa : NULL,
    331      1.46      manu 		    tramp, vers);
    332      1.29        tv 		if (error)
    333      1.29        tv 			return (error);
    334      1.29        tv 	}
    335      1.12   mycroft 	if (SCARG(uap, osa)) {
    336      1.33  christos 		native_to_linux_sigaction(&olsa, &obsa);
    337      1.46      manu 
    338      1.46      manu #if defined __amd64__
    339      1.46      manu 		if (ps->sa_sigdesc[sig].sd_vers != 0) {
    340      1.46      manu 			olsa.linux_sa_restorer = ps->sa_sigdesc[sig].sd_tramp;
    341      1.46      manu 			olsa.linux_sa_flags |= LINUX_SA_RESTORER;
    342      1.46      manu 		}
    343      1.46      manu #endif
    344      1.46      manu 
    345      1.12   mycroft 		error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
    346      1.12   mycroft 		if (error)
    347      1.12   mycroft 			return (error);
    348       1.1      fvdl 	}
    349      1.12   mycroft 	return (0);
    350       1.1      fvdl }
    351       1.1      fvdl 
    352       1.1      fvdl int
    353  1.47.2.3      yamt linux_sigprocmask1(l, how, set, oset)
    354  1.47.2.3      yamt 	struct lwp *l;
    355      1.17       erh 	int how;
    356      1.17       erh 	const linux_old_sigset_t *set;
    357      1.17       erh 	linux_old_sigset_t *oset;
    358       1.8   thorpej {
    359  1.47.2.3      yamt 	struct proc *p = l->l_proc;
    360      1.14       erh 	linux_old_sigset_t nlss, olss;
    361      1.12   mycroft 	sigset_t nbss, obss;
    362      1.12   mycroft 	int error;
    363       1.1      fvdl 
    364      1.17       erh 	switch (how) {
    365       1.1      fvdl 	case LINUX_SIG_BLOCK:
    366      1.12   mycroft 		how = SIG_BLOCK;
    367       1.1      fvdl 		break;
    368       1.1      fvdl 	case LINUX_SIG_UNBLOCK:
    369      1.12   mycroft 		how = SIG_UNBLOCK;
    370       1.1      fvdl 		break;
    371       1.1      fvdl 	case LINUX_SIG_SETMASK:
    372      1.12   mycroft 		how = SIG_SETMASK;
    373       1.1      fvdl 		break;
    374       1.1      fvdl 	default:
    375      1.12   mycroft 		return (EINVAL);
    376       1.1      fvdl 	}
    377       1.1      fvdl 
    378      1.17       erh 	if (set) {
    379      1.17       erh 		error = copyin(set, &nlss, sizeof(nlss));
    380      1.12   mycroft 		if (error)
    381      1.12   mycroft 			return (error);
    382      1.33  christos 		linux_old_to_native_sigset(&nbss, &nlss);
    383      1.12   mycroft 	}
    384  1.47.2.3      yamt 	mutex_enter(&p->p_smutex);
    385  1.47.2.3      yamt 	error = sigprocmask1(l, how,
    386      1.27      tron 	    set ? &nbss : NULL, oset ? &obss : NULL);
    387  1.47.2.3      yamt 	mutex_exit(&p->p_smutex);
    388      1.12   mycroft 	if (error)
    389      1.42     perry 		return (error);
    390      1.17       erh 	if (oset) {
    391      1.33  christos 		native_to_linux_old_sigset(&olss, &obss);
    392      1.17       erh 		error = copyout(&olss, oset, sizeof(olss));
    393      1.12   mycroft 		if (error)
    394      1.12   mycroft 			return (error);
    395      1.42     perry 	}
    396      1.12   mycroft 	return (error);
    397      1.17       erh }
    398      1.17       erh 
    399      1.17       erh int
    400  1.47.2.2      yamt linux_sys_rt_sigprocmask(struct lwp *l, void *v, register_t *retval)
    401      1.17       erh {
    402      1.17       erh 	struct linux_sys_rt_sigprocmask_args /* {
    403      1.17       erh 		syscallarg(int) how;
    404      1.17       erh 		syscallarg(const linux_sigset_t *) set;
    405      1.17       erh 		syscallarg(linux_sigset_t *) oset;
    406      1.17       erh 		syscallarg(size_t) sigsetsize;
    407      1.17       erh 	} */ *uap = v;
    408      1.24      fvdl 	linux_sigset_t nlss, olss, *oset;
    409      1.24      fvdl 	const linux_sigset_t *set;
    410  1.47.2.3      yamt 	struct proc *p = l->l_proc;
    411      1.24      fvdl 	sigset_t nbss, obss;
    412      1.24      fvdl 	int error, how;
    413      1.24      fvdl 
    414      1.24      fvdl 	if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
    415      1.24      fvdl 		return (EINVAL);
    416      1.24      fvdl 
    417      1.24      fvdl 	switch (SCARG(uap, how)) {
    418      1.24      fvdl 	case LINUX_SIG_BLOCK:
    419      1.24      fvdl 		how = SIG_BLOCK;
    420      1.24      fvdl 		break;
    421      1.24      fvdl 	case LINUX_SIG_UNBLOCK:
    422      1.24      fvdl 		how = SIG_UNBLOCK;
    423      1.24      fvdl 		break;
    424      1.24      fvdl 	case LINUX_SIG_SETMASK:
    425      1.24      fvdl 		how = SIG_SETMASK;
    426      1.24      fvdl 		break;
    427      1.24      fvdl 	default:
    428      1.24      fvdl 		return (EINVAL);
    429      1.17       erh 	}
    430      1.17       erh 
    431      1.24      fvdl 	set = SCARG(uap, set);
    432      1.24      fvdl 	oset = SCARG(uap, oset);
    433      1.24      fvdl 
    434      1.24      fvdl 	if (set) {
    435      1.24      fvdl 		error = copyin(set, &nlss, sizeof(nlss));
    436      1.24      fvdl 		if (error)
    437      1.24      fvdl 			return (error);
    438      1.33  christos 		linux_to_native_sigset(&nbss, &nlss);
    439      1.24      fvdl 	}
    440  1.47.2.3      yamt 	mutex_enter(&p->p_smutex);
    441  1.47.2.3      yamt 	error = sigprocmask1(l, how,
    442      1.27      tron 	    set ? &nbss : NULL, oset ? &obss : NULL);
    443  1.47.2.3      yamt 	mutex_exit(&p->p_smutex);
    444      1.28      tron 	if (!error && oset) {
    445      1.33  christos 		native_to_linux_sigset(&olss, &obss);
    446      1.24      fvdl 		error = copyout(&olss, oset, sizeof(olss));
    447      1.42     perry 	}
    448      1.24      fvdl 	return (error);
    449       1.1      fvdl }
    450       1.1      fvdl 
    451       1.1      fvdl int
    452  1.47.2.2      yamt linux_sys_rt_sigpending(struct lwp *l, void *v, register_t *retval)
    453       1.1      fvdl {
    454      1.14       erh 	struct linux_sys_rt_sigpending_args /* {
    455      1.14       erh 		syscallarg(linux_sigset_t *) set;
    456      1.14       erh 		syscallarg(size_t) sigsetsize;
    457      1.14       erh 	} */ *uap = v;
    458      1.12   mycroft 	sigset_t bss;
    459      1.12   mycroft 	linux_sigset_t lss;
    460       1.6   mycroft 
    461      1.14       erh 	if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
    462      1.14       erh 		return (EINVAL);
    463      1.14       erh 
    464  1.47.2.3      yamt 	sigpending1(l, &bss);
    465      1.33  christos 	native_to_linux_sigset(&lss, &bss);
    466      1.14       erh 	return copyout(&lss, SCARG(uap, set), sizeof(lss));
    467       1.1      fvdl }
    468      1.24      fvdl 
    469      1.43      manu #ifndef __amd64__
    470       1.1      fvdl int
    471  1.47.2.2      yamt linux_sys_sigpending(struct lwp *l, void *v, register_t *retval)
    472       1.8   thorpej {
    473       1.9   mycroft 	struct linux_sys_sigpending_args /* {
    474      1.14       erh 		syscallarg(linux_old_sigset_t *) mask;
    475       1.8   thorpej 	} */ *uap = v;
    476      1.12   mycroft 	sigset_t bss;
    477      1.14       erh 	linux_old_sigset_t lss;
    478       1.1      fvdl 
    479  1.47.2.3      yamt 	sigpending1(l, &bss);
    480      1.33  christos 	native_to_linux_old_sigset(&lss, &bss);
    481      1.12   mycroft 	return copyout(&lss, SCARG(uap, set), sizeof(lss));
    482       1.1      fvdl }
    483       1.1      fvdl 
    484       1.1      fvdl int
    485  1.47.2.2      yamt linux_sys_sigsuspend(struct lwp *l, void *v, register_t *retval)
    486       1.8   thorpej {
    487       1.9   mycroft 	struct linux_sys_sigsuspend_args /* {
    488  1.47.2.4      yamt 		syscallarg(void *) restart;
    489       1.3      fvdl 		syscallarg(int) oldmask;
    490       1.1      fvdl 		syscallarg(int) mask;
    491       1.8   thorpej 	} */ *uap = v;
    492      1.14       erh 	linux_old_sigset_t lss;
    493      1.14       erh 	sigset_t bss;
    494      1.14       erh 
    495      1.14       erh 	lss = SCARG(uap, mask);
    496      1.33  christos 	linux_old_to_native_sigset(&bss, &lss);
    497  1.47.2.3      yamt 	return (sigsuspend1(l, &bss));
    498      1.14       erh }
    499      1.43      manu #endif /* __amd64__ */
    500      1.43      manu 
    501      1.14       erh int
    502  1.47.2.2      yamt linux_sys_rt_sigsuspend(struct lwp *l, void *v, register_t *retval)
    503      1.14       erh {
    504      1.14       erh 	struct linux_sys_rt_sigsuspend_args /* {
    505      1.14       erh 		syscallarg(linux_sigset_t *) unewset;
    506      1.14       erh 		syscallarg(size_t) sigsetsize;
    507      1.14       erh 	} */ *uap = v;
    508      1.12   mycroft 	linux_sigset_t lss;
    509      1.12   mycroft 	sigset_t bss;
    510      1.14       erh 	int error;
    511      1.14       erh 
    512      1.14       erh 	if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
    513      1.14       erh 		return (EINVAL);
    514      1.14       erh 
    515      1.14       erh 	error = copyin(SCARG(uap, unewset), &lss, sizeof(linux_sigset_t));
    516      1.14       erh 	if (error)
    517      1.14       erh 		return (error);
    518      1.14       erh 
    519      1.33  christos 	linux_to_native_sigset(&bss, &lss);
    520      1.14       erh 
    521  1.47.2.3      yamt 	return (sigsuspend1(l, &bss));
    522       1.3      fvdl }
    523       1.3      fvdl 
    524       1.3      fvdl /*
    525      1.14       erh  * Once more: only a signal conversion is needed.
    526      1.14       erh  * Note: also used as sys_rt_queueinfo.  The info field is ignored.
    527       1.3      fvdl  */
    528       1.3      fvdl int
    529      1.40   thorpej linux_sys_rt_queueinfo(l, v, retval)
    530      1.40   thorpej 	struct lwp *l;
    531      1.14       erh 	void *v;
    532       1.3      fvdl 	register_t *retval;
    533      1.14       erh {
    534      1.14       erh 	/* XXX XAX This isn't this really int, int, siginfo_t *, is it? */
    535      1.14       erh #if 0
    536      1.14       erh 	struct linux_sys_rt_queueinfo_args /* {
    537      1.14       erh 		syscallarg(int) pid;
    538      1.14       erh 		syscallarg(int) signum;
    539      1.14       erh 		syscallarg(siginfo_t *) uinfo;
    540      1.14       erh 	} */ *uap = v;
    541      1.14       erh #endif
    542       1.3      fvdl 
    543      1.14       erh 	/* XXX To really implement this we need to	*/
    544      1.14       erh 	/* XXX keep a list of queued signals somewhere.	*/
    545      1.40   thorpej 	return (linux_sys_kill(l, v, retval));
    546       1.1      fvdl }
    547       1.1      fvdl 
    548       1.1      fvdl int
    549      1.40   thorpej linux_sys_kill(l, v, retval)
    550      1.40   thorpej 	struct lwp *l;
    551       1.8   thorpej 	void *v;
    552       1.8   thorpej 	register_t *retval;
    553       1.8   thorpej {
    554       1.9   mycroft 	struct linux_sys_kill_args /* {
    555       1.1      fvdl 		syscallarg(int) pid;
    556       1.1      fvdl 		syscallarg(int) signum;
    557       1.8   thorpej 	} */ *uap = v;
    558      1.40   thorpej 
    559       1.9   mycroft 	struct sys_kill_args ka;
    560      1.25      tron 	int sig;
    561       1.6   mycroft 
    562       1.6   mycroft 	SCARG(&ka, pid) = SCARG(uap, pid);
    563      1.25      tron 	sig = SCARG(uap, signum);
    564      1.25      tron 	if (sig < 0 || sig >= LINUX__NSIG)
    565      1.25      tron 		return (EINVAL);
    566      1.37  christos 	SCARG(&ka, signum) = linux_to_native_signo[sig];
    567      1.40   thorpej 	return sys_kill(l, &ka, retval);
    568       1.1      fvdl }
    569      1.30  christos 
    570      1.30  christos #ifdef LINUX_SS_ONSTACK
    571  1.47.2.6      yamt static void linux_to_native_sigaltstack(struct sigaltstack *,
    572  1.47.2.6      yamt     const struct linux_sigaltstack *);
    573      1.30  christos 
    574      1.30  christos static void
    575      1.30  christos linux_to_native_sigaltstack(bss, lss)
    576      1.30  christos 	struct sigaltstack *bss;
    577      1.30  christos 	const struct linux_sigaltstack *lss;
    578      1.30  christos {
    579      1.30  christos 	bss->ss_sp = lss->ss_sp;
    580      1.30  christos 	bss->ss_size = lss->ss_size;
    581      1.30  christos 	if (lss->ss_flags & LINUX_SS_ONSTACK)
    582      1.30  christos 	    bss->ss_flags = SS_ONSTACK;
    583      1.30  christos 	else if (lss->ss_flags & LINUX_SS_DISABLE)
    584      1.30  christos 	    bss->ss_flags = SS_DISABLE;
    585      1.30  christos 	else
    586      1.30  christos 	    bss->ss_flags = 0;
    587      1.30  christos }
    588      1.30  christos 
    589      1.41  christos void
    590      1.30  christos native_to_linux_sigaltstack(lss, bss)
    591      1.30  christos 	struct linux_sigaltstack *lss;
    592      1.30  christos 	const struct sigaltstack *bss;
    593      1.30  christos {
    594      1.30  christos 	lss->ss_sp = bss->ss_sp;
    595      1.30  christos 	lss->ss_size = bss->ss_size;
    596      1.30  christos 	if (bss->ss_flags & SS_ONSTACK)
    597      1.30  christos 	    lss->ss_flags = LINUX_SS_ONSTACK;
    598      1.30  christos 	else if (bss->ss_flags & SS_DISABLE)
    599      1.30  christos 	    lss->ss_flags = LINUX_SS_DISABLE;
    600      1.30  christos 	else
    601      1.30  christos 	    lss->ss_flags = 0;
    602      1.30  christos }
    603      1.30  christos 
    604      1.30  christos int
    605  1.47.2.2      yamt linux_sys_sigaltstack(struct lwp *l, void *v, register_t *retval)
    606      1.30  christos {
    607      1.30  christos 	struct linux_sys_sigaltstack_args /* {
    608      1.30  christos 		syscallarg(const struct linux_sigaltstack *) ss;
    609      1.30  christos 		syscallarg(struct linux_sigaltstack *) oss;
    610      1.30  christos 	} */ *uap = v;
    611      1.30  christos 	struct linux_sigaltstack ss;
    612  1.47.2.1      yamt 	struct sigaltstack nss;
    613  1.47.2.3      yamt 	struct proc *p = l->l_proc;
    614  1.47.2.3      yamt 	int error = 0;
    615      1.30  christos 
    616  1.47.2.1      yamt 	if (SCARG(uap, oss)) {
    617  1.47.2.3      yamt 		native_to_linux_sigaltstack(&ss, &l->l_sigstk);
    618  1.47.2.1      yamt 		if ((error = copyout(&ss, SCARG(uap, oss), sizeof(ss))) != 0)
    619  1.47.2.1      yamt 			return error;
    620  1.47.2.1      yamt 	}
    621  1.47.2.1      yamt 
    622      1.30  christos 	if (SCARG(uap, ss) != NULL) {
    623      1.30  christos 		if ((error = copyin(SCARG(uap, ss), &ss, sizeof(ss))) != 0)
    624      1.30  christos 			return error;
    625      1.30  christos 		linux_to_native_sigaltstack(&nss, &ss);
    626      1.30  christos 
    627  1.47.2.3      yamt 		mutex_enter(&p->p_smutex);
    628  1.47.2.3      yamt 
    629  1.47.2.1      yamt 		if (nss.ss_flags & ~SS_ALLBITS)
    630  1.47.2.3      yamt 			error = EINVAL;
    631  1.47.2.3      yamt 		else if (nss.ss_flags & SS_DISABLE) {
    632  1.47.2.3      yamt 			if (l->l_sigstk.ss_flags & SS_ONSTACK)
    633  1.47.2.3      yamt 				error = EINVAL;
    634  1.47.2.3      yamt 		} else if (nss.ss_size < LINUX_MINSIGSTKSZ)
    635  1.47.2.3      yamt 			error = ENOMEM;
    636      1.30  christos 
    637  1.47.2.3      yamt 		if (error == 0)
    638  1.47.2.3      yamt 			l->l_sigstk = nss;
    639  1.47.2.3      yamt 
    640  1.47.2.3      yamt 		mutex_exit(&p->p_smutex);
    641      1.30  christos 	}
    642  1.47.2.1      yamt 
    643  1.47.2.3      yamt 	return error;
    644      1.30  christos }
    645      1.44       jmc #endif /* LINUX_SS_ONSTACK */
    646  1.47.2.1      yamt 
    647  1.47.2.1      yamt #ifdef LINUX_NPTL
    648  1.47.2.1      yamt int
    649  1.47.2.1      yamt linux_sys_tkill(l, v, retval)
    650  1.47.2.1      yamt 	struct lwp *l;
    651  1.47.2.1      yamt 	void *v;
    652  1.47.2.1      yamt 	register_t *retval;
    653  1.47.2.1      yamt {
    654  1.47.2.1      yamt 	struct linux_sys_tkill_args /* {
    655  1.47.2.1      yamt 		syscallarg(int) tid;
    656  1.47.2.1      yamt 		syscallarg(int) sig;
    657  1.47.2.1      yamt 	} */ *uap = v;
    658  1.47.2.1      yamt 	struct linux_sys_kill_args cup;
    659  1.47.2.1      yamt 
    660  1.47.2.1      yamt 	/* We use the PID as the TID ... */
    661  1.47.2.1      yamt 	SCARG(&cup, pid) = SCARG(uap, tid);
    662  1.47.2.1      yamt 	SCARG(&cup, signum) = SCARG(uap, sig);
    663  1.47.2.1      yamt 
    664  1.47.2.1      yamt 	return linux_sys_kill(l, &cup, retval);
    665  1.47.2.1      yamt }
    666  1.47.2.1      yamt 
    667  1.47.2.1      yamt int
    668  1.47.2.1      yamt linux_sys_tgkill(l, v, retval)
    669  1.47.2.1      yamt 	struct lwp *l;
    670  1.47.2.1      yamt 	void *v;
    671  1.47.2.1      yamt 	register_t *retval;
    672  1.47.2.1      yamt {
    673  1.47.2.1      yamt 	struct linux_sys_tgkill_args /* {
    674  1.47.2.1      yamt 		syscallarg(int) tgid;
    675  1.47.2.1      yamt 		syscallarg(int) tid;
    676  1.47.2.1      yamt 		syscallarg(int) sig;
    677  1.47.2.1      yamt 	} */ *uap = v;
    678  1.47.2.1      yamt 	struct linux_sys_kill_args cup;
    679  1.47.2.1      yamt 	struct linux_emuldata *led;
    680  1.47.2.1      yamt 	struct proc *p;
    681  1.47.2.1      yamt 
    682  1.47.2.1      yamt 	SCARG(&cup, pid) = SCARG(uap, tid);
    683  1.47.2.1      yamt 	SCARG(&cup, signum) = SCARG(uap, sig);
    684  1.47.2.1      yamt 
    685  1.47.2.1      yamt 	if (SCARG(uap, tgid) == -1)
    686  1.47.2.1      yamt 		return linux_sys_kill(l, &cup, retval);
    687  1.47.2.1      yamt 
    688  1.47.2.1      yamt 	/* We use the PID as the TID, but make sure the group ID is right */
    689  1.47.2.1      yamt 	if ((p = pfind(SCARG(uap, tid))) == NULL)
    690  1.47.2.1      yamt 		return ESRCH;
    691  1.47.2.1      yamt 
    692  1.47.2.1      yamt 	if (p->p_emul != &emul_linux)
    693  1.47.2.1      yamt 		return ESRCH;
    694  1.47.2.1      yamt 
    695  1.47.2.1      yamt 	led = p->p_emuldata;
    696  1.47.2.1      yamt 
    697  1.47.2.1      yamt 	if (led->s->group_pid != SCARG(uap, tgid))
    698  1.47.2.1      yamt 		return ESRCH;
    699  1.47.2.1      yamt 
    700  1.47.2.1      yamt 	return linux_sys_kill(l, &cup, retval);
    701  1.47.2.1      yamt }
    702  1.47.2.1      yamt #endif /* LINUX_NPTL */
    703