Split compat/linux/linux_signal.c into i386, common and multi-architecture parts.
This commit is contained in:
parent
7588fef564
commit
fcaf5df8c2
|
@ -1,4 +1,40 @@
|
|||
/* $NetBSD: linux_sigarray.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
/* $NetBSD: linux_sigarray.c,v 1.14 1998/10/01 02:27:33 erh Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Eric Haszlakiewicz.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
|
@ -35,63 +71,10 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/signal.h>
|
||||
#include <sys/signalvar.h>
|
||||
#include <sys/malloc.h>
|
||||
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
#include <compat/linux/linux_types.h>
|
||||
#include <compat/linux/linux_signal.h>
|
||||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
LINUX_SIGINT,
|
||||
LINUX_SIGQUIT,
|
||||
LINUX_SIGILL,
|
||||
LINUX_SIGTRAP,
|
||||
LINUX_SIGABRT,
|
||||
0, /* SIGEMT */
|
||||
LINUX_SIGFPE,
|
||||
LINUX_SIGKILL,
|
||||
LINUX_SIGBUS,
|
||||
LINUX_SIGSEGV,
|
||||
0, /* SIGSEGV */
|
||||
LINUX_SIGPIPE,
|
||||
LINUX_SIGALRM,
|
||||
LINUX_SIGTERM,
|
||||
LINUX_SIGURG,
|
||||
LINUX_SIGSTOP,
|
||||
LINUX_SIGTSTP,
|
||||
LINUX_SIGCONT,
|
||||
LINUX_SIGCHLD,
|
||||
LINUX_SIGTTIN,
|
||||
LINUX_SIGTTOU,
|
||||
LINUX_SIGIO,
|
||||
LINUX_SIGXCPU,
|
||||
LINUX_SIGXFSZ,
|
||||
LINUX_SIGVTALRM,
|
||||
LINUX_SIGPROF,
|
||||
LINUX_SIGWINCH,
|
||||
0, /* SIGINFO */
|
||||
LINUX_SIGUSR1,
|
||||
LINUX_SIGUSR2,
|
||||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
|
@ -128,330 +111,3 @@ int linux_to_native_sig[LINUX_NSIG] = {
|
|||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
sigemptyset(bss);
|
||||
for (i = 1; i < LINUX_NSIG; i++) {
|
||||
if (linux_sigismember(lss, i)) {
|
||||
newsig = linux_to_native_sig[i];
|
||||
if (newsig)
|
||||
sigaddset(bss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
linux_sigemptyset(lss);
|
||||
for (i = 1; i < NSIG; i++) {
|
||||
if (sigismember(bss, i)) {
|
||||
newsig = native_to_linux_sig[i];
|
||||
if (newsig)
|
||||
linux_sigaddset(lss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
* and just call sigaction(). Some flags and values are silently
|
||||
* ignored (see above).
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigaction(&nlsa, &nbsa);
|
||||
}
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, signum)],
|
||||
SCARG(uap, nsa) ? &nbsa : 0, SCARG(uap, osa) ? &obsa : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, osa)) {
|
||||
native_to_linux_sigaction(&obsa, &olsa);
|
||||
error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
* library actually calls sigaction, so I doubt this one is ever used.
|
||||
* But hey, it can't hurt having it here. The same restrictions as for
|
||||
* sigaction() apply.
|
||||
*/
|
||||
int
|
||||
linux_sys_signal(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_signal_args /* {
|
||||
syscallarg(int) sig;
|
||||
syscallarg(linux_handler_t) handler;
|
||||
} */ *uap = v;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
nbsa.sa_handler = SCARG(uap, handler);
|
||||
sigemptyset(&nbsa.sa_mask);
|
||||
nbsa.sa_flags = SA_RESETHAND | SA_NODEFER;
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, sig)],
|
||||
&nbsa, &obsa);
|
||||
if (error)
|
||||
return (error);
|
||||
*retval = (int)obsa.sa_handler;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
||||
switch (SCARG(uap, how)) {
|
||||
case LINUX_SIG_BLOCK:
|
||||
how = SIG_BLOCK;
|
||||
break;
|
||||
case LINUX_SIG_UNBLOCK:
|
||||
how = SIG_UNBLOCK;
|
||||
break;
|
||||
case LINUX_SIG_SETMASK:
|
||||
how = SIG_SETMASK;
|
||||
break;
|
||||
default:
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
if (SCARG(uap, set)) {
|
||||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
linux_sys_siggetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The following three functions fiddle with a process' signal mask.
|
||||
* Convert the signal masks because of the different signal
|
||||
* values for Linux. The need for this is the reason why
|
||||
* they are here, and have not been mapped directly.
|
||||
*/
|
||||
int
|
||||
linux_sys_sigsetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsuspend_args /* {
|
||||
syscallarg(caddr_t) restart;
|
||||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
* of sigsuspend(2).
|
||||
*/
|
||||
int
|
||||
linux_sys_pause(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
|
||||
return (sigsuspend1(p, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_kill_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
} */ *uap = v;
|
||||
struct sys_kill_args ka;
|
||||
|
||||
SCARG(&ka, pid) = SCARG(uap, pid);
|
||||
SCARG(&ka, signum) = linux_to_native_sig[SCARG(uap, signum)];
|
||||
return sys_kill(p, &ka, retval);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,40 @@
|
|||
/* $NetBSD: linux_sig_notalpha.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
/* $NetBSD: linux_sig_notalpha.c,v 1.14 1998/10/01 02:27:34 erh Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Eric Haszlakiewicz.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
|
@ -35,15 +71,12 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/signal.h>
|
||||
#include <sys/signalvar.h>
|
||||
#include <sys/malloc.h>
|
||||
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
|
@ -52,212 +85,8 @@
|
|||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
LINUX_SIGINT,
|
||||
LINUX_SIGQUIT,
|
||||
LINUX_SIGILL,
|
||||
LINUX_SIGTRAP,
|
||||
LINUX_SIGABRT,
|
||||
0, /* SIGEMT */
|
||||
LINUX_SIGFPE,
|
||||
LINUX_SIGKILL,
|
||||
LINUX_SIGBUS,
|
||||
LINUX_SIGSEGV,
|
||||
0, /* SIGSEGV */
|
||||
LINUX_SIGPIPE,
|
||||
LINUX_SIGALRM,
|
||||
LINUX_SIGTERM,
|
||||
LINUX_SIGURG,
|
||||
LINUX_SIGSTOP,
|
||||
LINUX_SIGTSTP,
|
||||
LINUX_SIGCONT,
|
||||
LINUX_SIGCHLD,
|
||||
LINUX_SIGTTIN,
|
||||
LINUX_SIGTTOU,
|
||||
LINUX_SIGIO,
|
||||
LINUX_SIGXCPU,
|
||||
LINUX_SIGXFSZ,
|
||||
LINUX_SIGVTALRM,
|
||||
LINUX_SIGPROF,
|
||||
LINUX_SIGWINCH,
|
||||
0, /* SIGINFO */
|
||||
LINUX_SIGUSR1,
|
||||
LINUX_SIGUSR2,
|
||||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
SIGHUP,
|
||||
SIGINT,
|
||||
SIGQUIT,
|
||||
SIGILL,
|
||||
SIGTRAP,
|
||||
SIGABRT,
|
||||
SIGBUS,
|
||||
SIGFPE,
|
||||
SIGKILL,
|
||||
SIGUSR1,
|
||||
SIGSEGV,
|
||||
SIGUSR2,
|
||||
SIGPIPE,
|
||||
SIGALRM,
|
||||
SIGTERM,
|
||||
0, /* SIGSTKFLT */
|
||||
SIGCHLD,
|
||||
SIGCONT,
|
||||
SIGSTOP,
|
||||
SIGTSTP,
|
||||
SIGTTIN,
|
||||
SIGTTOU,
|
||||
SIGURG,
|
||||
SIGXCPU,
|
||||
SIGXFSZ,
|
||||
SIGVTALRM,
|
||||
SIGPROF,
|
||||
SIGWINCH,
|
||||
SIGIO,
|
||||
SIGPWR,
|
||||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
sigemptyset(bss);
|
||||
for (i = 1; i < LINUX_NSIG; i++) {
|
||||
if (linux_sigismember(lss, i)) {
|
||||
newsig = linux_to_native_sig[i];
|
||||
if (newsig)
|
||||
sigaddset(bss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
linux_sigemptyset(lss);
|
||||
for (i = 1; i < NSIG; i++) {
|
||||
if (sigismember(bss, i)) {
|
||||
newsig = native_to_linux_sig[i];
|
||||
if (newsig)
|
||||
linux_sigaddset(lss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
* and just call sigaction(). Some flags and values are silently
|
||||
* ignored (see above).
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigaction(&nlsa, &nbsa);
|
||||
}
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, signum)],
|
||||
SCARG(uap, nsa) ? &nbsa : 0, SCARG(uap, osa) ? &obsa : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, osa)) {
|
||||
native_to_linux_sigaction(&obsa, &olsa);
|
||||
error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
/* Used on: arm, i386, m68k, mips, sparc, sparc64 */
|
||||
/* Not used on: alpha */
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
|
@ -289,54 +118,6 @@ linux_sys_signal(p, v, retval)
|
|||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
||||
switch (SCARG(uap, how)) {
|
||||
case LINUX_SIG_BLOCK:
|
||||
how = SIG_BLOCK;
|
||||
break;
|
||||
case LINUX_SIG_UNBLOCK:
|
||||
how = SIG_UNBLOCK;
|
||||
break;
|
||||
case LINUX_SIG_SETMASK:
|
||||
how = SIG_SETMASK;
|
||||
break;
|
||||
default:
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
if (SCARG(uap, set)) {
|
||||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
|
@ -346,14 +127,13 @@ linux_sys_siggetmask(p, v, retval)
|
|||
register_t *retval;
|
||||
{
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
linux_old_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
native_to_linux_old_sigset(&bss, &lss);
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
@ -370,57 +150,22 @@ linux_sys_sigsetmask(p, v, retval)
|
|||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
syscallarg(linux_old_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
linux_old_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
linux_old_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
native_to_linux_old_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsuspend_args /* {
|
||||
syscallarg(caddr_t) restart;
|
||||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
|
@ -435,23 +180,3 @@ linux_sys_pause(p, v, retval)
|
|||
|
||||
return (sigsuspend1(p, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_kill_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
} */ *uap = v;
|
||||
struct sys_kill_args ka;
|
||||
|
||||
SCARG(&ka, pid) = SCARG(uap, pid);
|
||||
SCARG(&ka, signum) = linux_to_native_sig[SCARG(uap, signum)];
|
||||
return sys_kill(p, &ka, retval);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,40 @@
|
|||
/* $NetBSD: linux_sigaction.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
/* $NetBSD: linux_sigaction.c,v 1.14 1998/10/01 02:27:34 erh Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Eric Haszlakiewicz.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
|
@ -35,15 +71,12 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/signal.h>
|
||||
#include <sys/signalvar.h>
|
||||
#include <sys/malloc.h>
|
||||
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
|
@ -52,178 +85,12 @@
|
|||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
LINUX_SIGINT,
|
||||
LINUX_SIGQUIT,
|
||||
LINUX_SIGILL,
|
||||
LINUX_SIGTRAP,
|
||||
LINUX_SIGABRT,
|
||||
0, /* SIGEMT */
|
||||
LINUX_SIGFPE,
|
||||
LINUX_SIGKILL,
|
||||
LINUX_SIGBUS,
|
||||
LINUX_SIGSEGV,
|
||||
0, /* SIGSEGV */
|
||||
LINUX_SIGPIPE,
|
||||
LINUX_SIGALRM,
|
||||
LINUX_SIGTERM,
|
||||
LINUX_SIGURG,
|
||||
LINUX_SIGSTOP,
|
||||
LINUX_SIGTSTP,
|
||||
LINUX_SIGCONT,
|
||||
LINUX_SIGCHLD,
|
||||
LINUX_SIGTTIN,
|
||||
LINUX_SIGTTOU,
|
||||
LINUX_SIGIO,
|
||||
LINUX_SIGXCPU,
|
||||
LINUX_SIGXFSZ,
|
||||
LINUX_SIGVTALRM,
|
||||
LINUX_SIGPROF,
|
||||
LINUX_SIGWINCH,
|
||||
0, /* SIGINFO */
|
||||
LINUX_SIGUSR1,
|
||||
LINUX_SIGUSR2,
|
||||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
SIGHUP,
|
||||
SIGINT,
|
||||
SIGQUIT,
|
||||
SIGILL,
|
||||
SIGTRAP,
|
||||
SIGABRT,
|
||||
SIGBUS,
|
||||
SIGFPE,
|
||||
SIGKILL,
|
||||
SIGUSR1,
|
||||
SIGSEGV,
|
||||
SIGUSR2,
|
||||
SIGPIPE,
|
||||
SIGALRM,
|
||||
SIGTERM,
|
||||
0, /* SIGSTKFLT */
|
||||
SIGCHLD,
|
||||
SIGCONT,
|
||||
SIGSTOP,
|
||||
SIGTSTP,
|
||||
SIGTTIN,
|
||||
SIGTTOU,
|
||||
SIGURG,
|
||||
SIGXCPU,
|
||||
SIGXFSZ,
|
||||
SIGVTALRM,
|
||||
SIGPROF,
|
||||
SIGWINCH,
|
||||
SIGIO,
|
||||
SIGPWR,
|
||||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
sigemptyset(bss);
|
||||
for (i = 1; i < LINUX_NSIG; i++) {
|
||||
if (linux_sigismember(lss, i)) {
|
||||
newsig = linux_to_native_sig[i];
|
||||
if (newsig)
|
||||
sigaddset(bss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
linux_sigemptyset(lss);
|
||||
for (i = 1; i < NSIG; i++) {
|
||||
if (sigismember(bss, i)) {
|
||||
newsig = native_to_linux_sig[i];
|
||||
if (newsig)
|
||||
linux_sigaddset(lss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
}
|
||||
|
||||
/* Used on: arm, i386, m68k, mips, ppc */
|
||||
/* Not used on: alpha, sparc, sparc64 */
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
* and just call sigaction(). Some flags and values are silently
|
||||
* ignored (see above).
|
||||
* and just call sigaction().
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
|
@ -233,225 +100,31 @@ linux_sys_sigaction(p, v, retval)
|
|||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
syscallarg(const struct linux_old_sigaction *) nsa;
|
||||
syscallarg(struct linux_old_sigaction *) osa;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct linux_old_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
/* XXX XAX handle switch to RT signal handler */
|
||||
/* XXX XAX and update emuldata->ps_siginfo. */
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigaction(&nlsa, &nbsa);
|
||||
linux_old_to_native_sigaction(&nlsa, &nbsa);
|
||||
}
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, signum)],
|
||||
SCARG(uap, nsa) ? &nbsa : 0, SCARG(uap, osa) ? &obsa : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, osa)) {
|
||||
native_to_linux_sigaction(&obsa, &olsa);
|
||||
native_to_linux_old_sigaction(&obsa, &olsa);
|
||||
error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
* library actually calls sigaction, so I doubt this one is ever used.
|
||||
* But hey, it can't hurt having it here. The same restrictions as for
|
||||
* sigaction() apply.
|
||||
*/
|
||||
int
|
||||
linux_sys_signal(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_signal_args /* {
|
||||
syscallarg(int) sig;
|
||||
syscallarg(linux_handler_t) handler;
|
||||
} */ *uap = v;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
nbsa.sa_handler = SCARG(uap, handler);
|
||||
sigemptyset(&nbsa.sa_mask);
|
||||
nbsa.sa_flags = SA_RESETHAND | SA_NODEFER;
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, sig)],
|
||||
&nbsa, &obsa);
|
||||
if (error)
|
||||
return (error);
|
||||
*retval = (int)obsa.sa_handler;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
||||
switch (SCARG(uap, how)) {
|
||||
case LINUX_SIG_BLOCK:
|
||||
how = SIG_BLOCK;
|
||||
break;
|
||||
case LINUX_SIG_UNBLOCK:
|
||||
how = SIG_UNBLOCK;
|
||||
break;
|
||||
case LINUX_SIG_SETMASK:
|
||||
how = SIG_SETMASK;
|
||||
break;
|
||||
default:
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
if (SCARG(uap, set)) {
|
||||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
linux_sys_siggetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The following three functions fiddle with a process' signal mask.
|
||||
* Convert the signal masks because of the different signal
|
||||
* values for Linux. The need for this is the reason why
|
||||
* they are here, and have not been mapped directly.
|
||||
*/
|
||||
int
|
||||
linux_sys_sigsetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsuspend_args /* {
|
||||
syscallarg(caddr_t) restart;
|
||||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
* of sigsuspend(2).
|
||||
*/
|
||||
int
|
||||
linux_sys_pause(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
|
||||
return (sigsuspend1(p, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_kill_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
} */ *uap = v;
|
||||
struct sys_kill_args ka;
|
||||
|
||||
SCARG(&ka, pid) = SCARG(uap, pid);
|
||||
SCARG(&ka, signum) = linux_to_native_sig[SCARG(uap, signum)];
|
||||
return sys_kill(p, &ka, retval);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/* $NetBSD: linux_signal.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
/* $NetBSD: linux_signal.c,v 1.14 1998/10/01 02:27:33 erh Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1998 Eric Haszlakiewicz
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
* All rights reserved.
|
||||
*
|
||||
|
@ -33,6 +34,21 @@
|
|||
* heavily from: svr4_signal.c,v 1.7 1995/01/09 01:04:21 christos Exp
|
||||
*/
|
||||
|
||||
/*
|
||||
* Functions in multiarch:
|
||||
* linux_sys_signal : linux_sig_notalpha.c
|
||||
* linux_sys_siggetmask : linux_sig_notalpha.c
|
||||
* linux_sys_sigsetmask : linux_sig_notalpha.c
|
||||
* linux_sys_pause : linux_sig_notalpha.c
|
||||
* linux_sys_sigaction : linux_sigaction.c
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* Unimplemented:
|
||||
* linux_sys_rt_sigtimedwait : sigsuspend w/timeout.
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
|
@ -52,11 +68,15 @@
|
|||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
/* Locally used defines (in bsd<->linux conversion functions): */
|
||||
/* XXX XAX rename to linux_old. Add stuff for new type linux_sigset_t
|
||||
handle _NSIG_WORDS > 1 */
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
/* Note: linux_to_native_sig[] is in <arch>/linux_sigarray.c */
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
|
@ -93,48 +113,13 @@ int native_to_linux_sig[NSIG] = {
|
|||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
SIGHUP,
|
||||
SIGINT,
|
||||
SIGQUIT,
|
||||
SIGILL,
|
||||
SIGTRAP,
|
||||
SIGABRT,
|
||||
SIGBUS,
|
||||
SIGFPE,
|
||||
SIGKILL,
|
||||
SIGUSR1,
|
||||
SIGSEGV,
|
||||
SIGUSR2,
|
||||
SIGPIPE,
|
||||
SIGALRM,
|
||||
SIGTERM,
|
||||
0, /* SIGSTKFLT */
|
||||
SIGCHLD,
|
||||
SIGCONT,
|
||||
SIGSTOP,
|
||||
SIGTSTP,
|
||||
SIGTTIN,
|
||||
SIGTTOU,
|
||||
SIGURG,
|
||||
SIGXCPU,
|
||||
SIGXFSZ,
|
||||
SIGVTALRM,
|
||||
SIGPROF,
|
||||
SIGWINCH,
|
||||
SIGIO,
|
||||
SIGPWR,
|
||||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
/*
|
||||
* Ok, we know that Linux and BSD signals both are just an unsigned int.
|
||||
* Don't bother to use the sigismember() stuff for now.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
linux_old_to_native_sigset(lss, bss)
|
||||
const linux_old_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
@ -150,9 +135,9 @@ linux_to_native_sigset(lss, bss)
|
|||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
native_to_linux_old_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
linux_old_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
|
@ -167,10 +152,66 @@ native_to_linux_sigset(bss, lss)
|
|||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
* Convert between Linux and BSD sigaction structures. Linux sometimes
|
||||
* has one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_old_to_native_sigaction(lsa, bsa)
|
||||
struct linux_old_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_old_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
if ((lsa->sa_flags & LINUX_SA_SIGINFO) != 0)
|
||||
bsa->sa_flags |= SA_SIGINFO;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_old_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_old_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_old_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_old_sigaction *lsa;
|
||||
{
|
||||
|
||||
/* Clear sa_flags and sa_restorer (if it exists) */
|
||||
bzero(lsa, sizeof(struct linux_old_sigaction));
|
||||
|
||||
/* ...and fill in the mask and flags */
|
||||
native_to_linux_old_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
if ((bsa->sa_flags & SA_SIGINFO) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_SIGINFO;
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
}
|
||||
|
||||
/* ...and the new sigaction conversion funcs. */
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
|
@ -189,6 +230,8 @@ linux_to_native_sigaction(lsa, bsa)
|
|||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
if ((lsa->sa_flags & LINUX_SA_SIGINFO) != 0)
|
||||
bsa->sa_flags |= SA_SIGINFO;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
|
@ -203,9 +246,11 @@ native_to_linux_sigaction(bsa, lsa)
|
|||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
/* Clear sa_flags and sa_restorer (if it exists) */
|
||||
bzero(lsa, sizeof(struct linux_sigaction));
|
||||
|
||||
/* ...and fill in the mask and flags */
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
|
@ -216,9 +261,12 @@ native_to_linux_sigaction(bsa, lsa)
|
|||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
if ((bsa->sa_flags & SA_SIGINFO) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_SIGINFO;
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------- */
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
|
@ -226,20 +274,25 @@ native_to_linux_sigaction(bsa, lsa)
|
|||
* ignored (see above).
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
linux_sys_rt_sigaction(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
struct linux_sys_rt_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
syscallarg(size_t) sigsetsize;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
/* XXX XAX linux_sigset_t or struct linux_sigaction here? */
|
||||
if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
|
||||
return (EINVAL);
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
|
@ -259,36 +312,18 @@ linux_sys_sigaction(p, v, retval)
|
|||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
* library actually calls sigaction, so I doubt this one is ever used.
|
||||
* But hey, it can't hurt having it here. The same restrictions as for
|
||||
* sigaction() apply.
|
||||
*/
|
||||
int
|
||||
linux_sys_signal(p, v, retval)
|
||||
linux_sys_rt_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_signal_args /* {
|
||||
syscallarg(int) sig;
|
||||
syscallarg(linux_handler_t) handler;
|
||||
} */ *uap = v;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
nbsa.sa_handler = SCARG(uap, handler);
|
||||
sigemptyset(&nbsa.sa_mask);
|
||||
nbsa.sa_flags = SA_RESETHAND | SA_NODEFER;
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, sig)],
|
||||
&nbsa, &obsa);
|
||||
if (error)
|
||||
return (error);
|
||||
*retval = (int)obsa.sa_handler;
|
||||
return (0);
|
||||
/* Use non-rt function: sigsetsize is ignored. */
|
||||
/* Assume sizeof(linux_sigset_t) == sizeof(linux_old_sigset_t) */
|
||||
return(linux_sys_sigprocmask(p, v, retval));
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
|
@ -297,10 +332,10 @@ linux_sys_sigprocmask(p, v, retval)
|
|||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
syscallarg(const linux_old_sigset_t *) set;
|
||||
syscallarg(linux_old_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
linux_old_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
@ -323,14 +358,14 @@ linux_sys_sigprocmask(p, v, retval)
|
|||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
linux_old_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
native_to_linux_old_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
|
@ -338,54 +373,26 @@ linux_sys_sigprocmask(p, v, retval)
|
|||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
linux_sys_siggetmask(p, v, retval)
|
||||
linux_sys_rt_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_rt_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
syscallarg(size_t) sigsetsize;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
|
||||
return (EINVAL);
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
return (0);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The following three functions fiddle with a process' signal mask.
|
||||
* Convert the signal masks because of the different signal
|
||||
* values for Linux. The need for this is the reason why
|
||||
* they are here, and have not been mapped directly.
|
||||
*/
|
||||
int
|
||||
linux_sys_sigsetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
|
@ -393,13 +400,13 @@ linux_sys_sigpending(p, v, retval)
|
|||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
syscallarg(linux_old_sigset_t *) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
linux_old_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
native_to_linux_old_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
|
@ -414,31 +421,63 @@ linux_sys_sigsuspend(p, v, retval)
|
|||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_old_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_old_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
int
|
||||
linux_sys_rt_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_rt_sigsuspend_args /* {
|
||||
syscallarg(linux_sigset_t *) unewset;
|
||||
syscallarg(size_t) sigsetsize;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
int error;
|
||||
|
||||
if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
|
||||
return (EINVAL);
|
||||
|
||||
error = copyin(SCARG(uap, unewset), &lss, sizeof(linux_sigset_t));
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
* of sigsuspend(2).
|
||||
* Once more: only a signal conversion is needed.
|
||||
* Note: also used as sys_rt_queueinfo. The info field is ignored.
|
||||
*/
|
||||
int
|
||||
linux_sys_pause(p, v, retval)
|
||||
linux_sys_rt_queueinfo(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
{
|
||||
/* XXX XAX This isn't this really int, int, siginfo_t *, is it? */
|
||||
#if 0
|
||||
struct linux_sys_rt_queueinfo_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
syscallarg(siginfo_t *) uinfo;
|
||||
} */ *uap = v;
|
||||
#endif
|
||||
|
||||
return (sigsuspend1(p, 0));
|
||||
/* XXX To really implement this we need to */
|
||||
/* XXX keep a list of queued signals somewhere. */
|
||||
return (linux_sys_kill(p, v, retval));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
|
|
|
@ -1,4 +1,40 @@
|
|||
/* $NetBSD: linux_sigarray.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
/* $NetBSD: linux_sigarray.c,v 1.14 1998/10/01 02:27:33 erh Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Eric Haszlakiewicz.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
|
@ -35,63 +71,10 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/signal.h>
|
||||
#include <sys/signalvar.h>
|
||||
#include <sys/malloc.h>
|
||||
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
#include <compat/linux/linux_types.h>
|
||||
#include <compat/linux/linux_signal.h>
|
||||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
LINUX_SIGINT,
|
||||
LINUX_SIGQUIT,
|
||||
LINUX_SIGILL,
|
||||
LINUX_SIGTRAP,
|
||||
LINUX_SIGABRT,
|
||||
0, /* SIGEMT */
|
||||
LINUX_SIGFPE,
|
||||
LINUX_SIGKILL,
|
||||
LINUX_SIGBUS,
|
||||
LINUX_SIGSEGV,
|
||||
0, /* SIGSEGV */
|
||||
LINUX_SIGPIPE,
|
||||
LINUX_SIGALRM,
|
||||
LINUX_SIGTERM,
|
||||
LINUX_SIGURG,
|
||||
LINUX_SIGSTOP,
|
||||
LINUX_SIGTSTP,
|
||||
LINUX_SIGCONT,
|
||||
LINUX_SIGCHLD,
|
||||
LINUX_SIGTTIN,
|
||||
LINUX_SIGTTOU,
|
||||
LINUX_SIGIO,
|
||||
LINUX_SIGXCPU,
|
||||
LINUX_SIGXFSZ,
|
||||
LINUX_SIGVTALRM,
|
||||
LINUX_SIGPROF,
|
||||
LINUX_SIGWINCH,
|
||||
0, /* SIGINFO */
|
||||
LINUX_SIGUSR1,
|
||||
LINUX_SIGUSR2,
|
||||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
|
@ -128,330 +111,3 @@ int linux_to_native_sig[LINUX_NSIG] = {
|
|||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
sigemptyset(bss);
|
||||
for (i = 1; i < LINUX_NSIG; i++) {
|
||||
if (linux_sigismember(lss, i)) {
|
||||
newsig = linux_to_native_sig[i];
|
||||
if (newsig)
|
||||
sigaddset(bss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
linux_sigemptyset(lss);
|
||||
for (i = 1; i < NSIG; i++) {
|
||||
if (sigismember(bss, i)) {
|
||||
newsig = native_to_linux_sig[i];
|
||||
if (newsig)
|
||||
linux_sigaddset(lss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
* and just call sigaction(). Some flags and values are silently
|
||||
* ignored (see above).
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigaction(&nlsa, &nbsa);
|
||||
}
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, signum)],
|
||||
SCARG(uap, nsa) ? &nbsa : 0, SCARG(uap, osa) ? &obsa : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, osa)) {
|
||||
native_to_linux_sigaction(&obsa, &olsa);
|
||||
error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
* library actually calls sigaction, so I doubt this one is ever used.
|
||||
* But hey, it can't hurt having it here. The same restrictions as for
|
||||
* sigaction() apply.
|
||||
*/
|
||||
int
|
||||
linux_sys_signal(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_signal_args /* {
|
||||
syscallarg(int) sig;
|
||||
syscallarg(linux_handler_t) handler;
|
||||
} */ *uap = v;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
nbsa.sa_handler = SCARG(uap, handler);
|
||||
sigemptyset(&nbsa.sa_mask);
|
||||
nbsa.sa_flags = SA_RESETHAND | SA_NODEFER;
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, sig)],
|
||||
&nbsa, &obsa);
|
||||
if (error)
|
||||
return (error);
|
||||
*retval = (int)obsa.sa_handler;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
||||
switch (SCARG(uap, how)) {
|
||||
case LINUX_SIG_BLOCK:
|
||||
how = SIG_BLOCK;
|
||||
break;
|
||||
case LINUX_SIG_UNBLOCK:
|
||||
how = SIG_UNBLOCK;
|
||||
break;
|
||||
case LINUX_SIG_SETMASK:
|
||||
how = SIG_SETMASK;
|
||||
break;
|
||||
default:
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
if (SCARG(uap, set)) {
|
||||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
linux_sys_siggetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The following three functions fiddle with a process' signal mask.
|
||||
* Convert the signal masks because of the different signal
|
||||
* values for Linux. The need for this is the reason why
|
||||
* they are here, and have not been mapped directly.
|
||||
*/
|
||||
int
|
||||
linux_sys_sigsetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsuspend_args /* {
|
||||
syscallarg(caddr_t) restart;
|
||||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
* of sigsuspend(2).
|
||||
*/
|
||||
int
|
||||
linux_sys_pause(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
|
||||
return (sigsuspend1(p, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_kill_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
} */ *uap = v;
|
||||
struct sys_kill_args ka;
|
||||
|
||||
SCARG(&ka, pid) = SCARG(uap, pid);
|
||||
SCARG(&ka, signum) = linux_to_native_sig[SCARG(uap, signum)];
|
||||
return sys_kill(p, &ka, retval);
|
||||
}
|
||||
|
|
|
@ -1,457 +0,0 @@
|
|||
/* $NetBSD: linux_signal.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed for the NetBSD Project
|
||||
* by Frank van der Linden
|
||||
* 4. The name of the author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* heavily from: svr4_signal.c,v 1.7 1995/01/09 01:04:21 christos Exp
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/signal.h>
|
||||
#include <sys/signalvar.h>
|
||||
#include <sys/malloc.h>
|
||||
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
#include <compat/linux/linux_types.h>
|
||||
#include <compat/linux/linux_signal.h>
|
||||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
LINUX_SIGINT,
|
||||
LINUX_SIGQUIT,
|
||||
LINUX_SIGILL,
|
||||
LINUX_SIGTRAP,
|
||||
LINUX_SIGABRT,
|
||||
0, /* SIGEMT */
|
||||
LINUX_SIGFPE,
|
||||
LINUX_SIGKILL,
|
||||
LINUX_SIGBUS,
|
||||
LINUX_SIGSEGV,
|
||||
0, /* SIGSEGV */
|
||||
LINUX_SIGPIPE,
|
||||
LINUX_SIGALRM,
|
||||
LINUX_SIGTERM,
|
||||
LINUX_SIGURG,
|
||||
LINUX_SIGSTOP,
|
||||
LINUX_SIGTSTP,
|
||||
LINUX_SIGCONT,
|
||||
LINUX_SIGCHLD,
|
||||
LINUX_SIGTTIN,
|
||||
LINUX_SIGTTOU,
|
||||
LINUX_SIGIO,
|
||||
LINUX_SIGXCPU,
|
||||
LINUX_SIGXFSZ,
|
||||
LINUX_SIGVTALRM,
|
||||
LINUX_SIGPROF,
|
||||
LINUX_SIGWINCH,
|
||||
0, /* SIGINFO */
|
||||
LINUX_SIGUSR1,
|
||||
LINUX_SIGUSR2,
|
||||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
SIGHUP,
|
||||
SIGINT,
|
||||
SIGQUIT,
|
||||
SIGILL,
|
||||
SIGTRAP,
|
||||
SIGABRT,
|
||||
SIGBUS,
|
||||
SIGFPE,
|
||||
SIGKILL,
|
||||
SIGUSR1,
|
||||
SIGSEGV,
|
||||
SIGUSR2,
|
||||
SIGPIPE,
|
||||
SIGALRM,
|
||||
SIGTERM,
|
||||
0, /* SIGSTKFLT */
|
||||
SIGCHLD,
|
||||
SIGCONT,
|
||||
SIGSTOP,
|
||||
SIGTSTP,
|
||||
SIGTTIN,
|
||||
SIGTTOU,
|
||||
SIGURG,
|
||||
SIGXCPU,
|
||||
SIGXFSZ,
|
||||
SIGVTALRM,
|
||||
SIGPROF,
|
||||
SIGWINCH,
|
||||
SIGIO,
|
||||
SIGPWR,
|
||||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
sigemptyset(bss);
|
||||
for (i = 1; i < LINUX_NSIG; i++) {
|
||||
if (linux_sigismember(lss, i)) {
|
||||
newsig = linux_to_native_sig[i];
|
||||
if (newsig)
|
||||
sigaddset(bss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
linux_sigemptyset(lss);
|
||||
for (i = 1; i < NSIG; i++) {
|
||||
if (sigismember(bss, i)) {
|
||||
newsig = native_to_linux_sig[i];
|
||||
if (newsig)
|
||||
linux_sigaddset(lss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
* and just call sigaction(). Some flags and values are silently
|
||||
* ignored (see above).
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigaction(&nlsa, &nbsa);
|
||||
}
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, signum)],
|
||||
SCARG(uap, nsa) ? &nbsa : 0, SCARG(uap, osa) ? &obsa : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, osa)) {
|
||||
native_to_linux_sigaction(&obsa, &olsa);
|
||||
error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
* library actually calls sigaction, so I doubt this one is ever used.
|
||||
* But hey, it can't hurt having it here. The same restrictions as for
|
||||
* sigaction() apply.
|
||||
*/
|
||||
int
|
||||
linux_sys_signal(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_signal_args /* {
|
||||
syscallarg(int) sig;
|
||||
syscallarg(linux_handler_t) handler;
|
||||
} */ *uap = v;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
nbsa.sa_handler = SCARG(uap, handler);
|
||||
sigemptyset(&nbsa.sa_mask);
|
||||
nbsa.sa_flags = SA_RESETHAND | SA_NODEFER;
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, sig)],
|
||||
&nbsa, &obsa);
|
||||
if (error)
|
||||
return (error);
|
||||
*retval = (int)obsa.sa_handler;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
||||
switch (SCARG(uap, how)) {
|
||||
case LINUX_SIG_BLOCK:
|
||||
how = SIG_BLOCK;
|
||||
break;
|
||||
case LINUX_SIG_UNBLOCK:
|
||||
how = SIG_UNBLOCK;
|
||||
break;
|
||||
case LINUX_SIG_SETMASK:
|
||||
how = SIG_SETMASK;
|
||||
break;
|
||||
default:
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
if (SCARG(uap, set)) {
|
||||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
linux_sys_siggetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The following three functions fiddle with a process' signal mask.
|
||||
* Convert the signal masks because of the different signal
|
||||
* values for Linux. The need for this is the reason why
|
||||
* they are here, and have not been mapped directly.
|
||||
*/
|
||||
int
|
||||
linux_sys_sigsetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsuspend_args /* {
|
||||
syscallarg(caddr_t) restart;
|
||||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
* of sigsuspend(2).
|
||||
*/
|
||||
int
|
||||
linux_sys_pause(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
|
||||
return (sigsuspend1(p, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_kill_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
} */ *uap = v;
|
||||
struct sys_kill_args ka;
|
||||
|
||||
SCARG(&ka, pid) = SCARG(uap, pid);
|
||||
SCARG(&ka, signum) = linux_to_native_sig[SCARG(uap, signum)];
|
||||
return sys_kill(p, &ka, retval);
|
||||
}
|
|
@ -1,4 +1,40 @@
|
|||
/* $NetBSD: linux_sig_notalpha.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
/* $NetBSD: linux_sig_notalpha.c,v 1.14 1998/10/01 02:27:34 erh Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Eric Haszlakiewicz.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
|
@ -35,15 +71,12 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/signal.h>
|
||||
#include <sys/signalvar.h>
|
||||
#include <sys/malloc.h>
|
||||
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
|
@ -52,212 +85,8 @@
|
|||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
LINUX_SIGINT,
|
||||
LINUX_SIGQUIT,
|
||||
LINUX_SIGILL,
|
||||
LINUX_SIGTRAP,
|
||||
LINUX_SIGABRT,
|
||||
0, /* SIGEMT */
|
||||
LINUX_SIGFPE,
|
||||
LINUX_SIGKILL,
|
||||
LINUX_SIGBUS,
|
||||
LINUX_SIGSEGV,
|
||||
0, /* SIGSEGV */
|
||||
LINUX_SIGPIPE,
|
||||
LINUX_SIGALRM,
|
||||
LINUX_SIGTERM,
|
||||
LINUX_SIGURG,
|
||||
LINUX_SIGSTOP,
|
||||
LINUX_SIGTSTP,
|
||||
LINUX_SIGCONT,
|
||||
LINUX_SIGCHLD,
|
||||
LINUX_SIGTTIN,
|
||||
LINUX_SIGTTOU,
|
||||
LINUX_SIGIO,
|
||||
LINUX_SIGXCPU,
|
||||
LINUX_SIGXFSZ,
|
||||
LINUX_SIGVTALRM,
|
||||
LINUX_SIGPROF,
|
||||
LINUX_SIGWINCH,
|
||||
0, /* SIGINFO */
|
||||
LINUX_SIGUSR1,
|
||||
LINUX_SIGUSR2,
|
||||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
SIGHUP,
|
||||
SIGINT,
|
||||
SIGQUIT,
|
||||
SIGILL,
|
||||
SIGTRAP,
|
||||
SIGABRT,
|
||||
SIGBUS,
|
||||
SIGFPE,
|
||||
SIGKILL,
|
||||
SIGUSR1,
|
||||
SIGSEGV,
|
||||
SIGUSR2,
|
||||
SIGPIPE,
|
||||
SIGALRM,
|
||||
SIGTERM,
|
||||
0, /* SIGSTKFLT */
|
||||
SIGCHLD,
|
||||
SIGCONT,
|
||||
SIGSTOP,
|
||||
SIGTSTP,
|
||||
SIGTTIN,
|
||||
SIGTTOU,
|
||||
SIGURG,
|
||||
SIGXCPU,
|
||||
SIGXFSZ,
|
||||
SIGVTALRM,
|
||||
SIGPROF,
|
||||
SIGWINCH,
|
||||
SIGIO,
|
||||
SIGPWR,
|
||||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
sigemptyset(bss);
|
||||
for (i = 1; i < LINUX_NSIG; i++) {
|
||||
if (linux_sigismember(lss, i)) {
|
||||
newsig = linux_to_native_sig[i];
|
||||
if (newsig)
|
||||
sigaddset(bss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
linux_sigemptyset(lss);
|
||||
for (i = 1; i < NSIG; i++) {
|
||||
if (sigismember(bss, i)) {
|
||||
newsig = native_to_linux_sig[i];
|
||||
if (newsig)
|
||||
linux_sigaddset(lss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
* and just call sigaction(). Some flags and values are silently
|
||||
* ignored (see above).
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigaction(&nlsa, &nbsa);
|
||||
}
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, signum)],
|
||||
SCARG(uap, nsa) ? &nbsa : 0, SCARG(uap, osa) ? &obsa : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, osa)) {
|
||||
native_to_linux_sigaction(&obsa, &olsa);
|
||||
error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
/* Used on: arm, i386, m68k, mips, sparc, sparc64 */
|
||||
/* Not used on: alpha */
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
|
@ -289,54 +118,6 @@ linux_sys_signal(p, v, retval)
|
|||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
||||
switch (SCARG(uap, how)) {
|
||||
case LINUX_SIG_BLOCK:
|
||||
how = SIG_BLOCK;
|
||||
break;
|
||||
case LINUX_SIG_UNBLOCK:
|
||||
how = SIG_UNBLOCK;
|
||||
break;
|
||||
case LINUX_SIG_SETMASK:
|
||||
how = SIG_SETMASK;
|
||||
break;
|
||||
default:
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
if (SCARG(uap, set)) {
|
||||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
|
@ -346,14 +127,13 @@ linux_sys_siggetmask(p, v, retval)
|
|||
register_t *retval;
|
||||
{
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
linux_old_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
native_to_linux_old_sigset(&bss, &lss);
|
||||
return (0);
|
||||
}
|
||||
|
||||
|
@ -370,57 +150,22 @@ linux_sys_sigsetmask(p, v, retval)
|
|||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
syscallarg(linux_old_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
linux_old_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
linux_old_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
native_to_linux_old_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsuspend_args /* {
|
||||
syscallarg(caddr_t) restart;
|
||||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
|
@ -435,23 +180,3 @@ linux_sys_pause(p, v, retval)
|
|||
|
||||
return (sigsuspend1(p, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_kill_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
} */ *uap = v;
|
||||
struct sys_kill_args ka;
|
||||
|
||||
SCARG(&ka, pid) = SCARG(uap, pid);
|
||||
SCARG(&ka, signum) = linux_to_native_sig[SCARG(uap, signum)];
|
||||
return sys_kill(p, &ka, retval);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,40 @@
|
|||
/* $NetBSD: linux_sigaction.c,v 1.13 1998/09/29 14:15:49 tv Exp $ */
|
||||
/* $NetBSD: linux_sigaction.c,v 1.14 1998/10/01 02:27:34 erh Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Eric Haszlakiewicz.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
||||
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995 Frank van der Linden
|
||||
|
@ -35,15 +71,12 @@
|
|||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/namei.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/signal.h>
|
||||
#include <sys/signalvar.h>
|
||||
#include <sys/malloc.h>
|
||||
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
|
@ -52,178 +85,12 @@
|
|||
#include <compat/linux/linux_syscallargs.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
#define linux_sigmask(n) (1 << ((n) - 1))
|
||||
#define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
||||
#define linux_sigismember(s, n) (*(s) & linux_sigmask(n))
|
||||
#define linux_sigaddset(s, n) (*(s) |= linux_sigmask(n))
|
||||
|
||||
int native_to_linux_sig[NSIG] = {
|
||||
0,
|
||||
LINUX_SIGHUP,
|
||||
LINUX_SIGINT,
|
||||
LINUX_SIGQUIT,
|
||||
LINUX_SIGILL,
|
||||
LINUX_SIGTRAP,
|
||||
LINUX_SIGABRT,
|
||||
0, /* SIGEMT */
|
||||
LINUX_SIGFPE,
|
||||
LINUX_SIGKILL,
|
||||
LINUX_SIGBUS,
|
||||
LINUX_SIGSEGV,
|
||||
0, /* SIGSEGV */
|
||||
LINUX_SIGPIPE,
|
||||
LINUX_SIGALRM,
|
||||
LINUX_SIGTERM,
|
||||
LINUX_SIGURG,
|
||||
LINUX_SIGSTOP,
|
||||
LINUX_SIGTSTP,
|
||||
LINUX_SIGCONT,
|
||||
LINUX_SIGCHLD,
|
||||
LINUX_SIGTTIN,
|
||||
LINUX_SIGTTOU,
|
||||
LINUX_SIGIO,
|
||||
LINUX_SIGXCPU,
|
||||
LINUX_SIGXFSZ,
|
||||
LINUX_SIGVTALRM,
|
||||
LINUX_SIGPROF,
|
||||
LINUX_SIGWINCH,
|
||||
0, /* SIGINFO */
|
||||
LINUX_SIGUSR1,
|
||||
LINUX_SIGUSR2,
|
||||
LINUX_SIGPWR,
|
||||
};
|
||||
|
||||
int linux_to_native_sig[LINUX_NSIG] = {
|
||||
0,
|
||||
SIGHUP,
|
||||
SIGINT,
|
||||
SIGQUIT,
|
||||
SIGILL,
|
||||
SIGTRAP,
|
||||
SIGABRT,
|
||||
SIGBUS,
|
||||
SIGFPE,
|
||||
SIGKILL,
|
||||
SIGUSR1,
|
||||
SIGSEGV,
|
||||
SIGUSR2,
|
||||
SIGPIPE,
|
||||
SIGALRM,
|
||||
SIGTERM,
|
||||
0, /* SIGSTKFLT */
|
||||
SIGCHLD,
|
||||
SIGCONT,
|
||||
SIGSTOP,
|
||||
SIGTSTP,
|
||||
SIGTTIN,
|
||||
SIGTTOU,
|
||||
SIGURG,
|
||||
SIGXCPU,
|
||||
SIGXFSZ,
|
||||
SIGVTALRM,
|
||||
SIGPROF,
|
||||
SIGWINCH,
|
||||
SIGIO,
|
||||
SIGPWR,
|
||||
0, /* SIGUNUSED */
|
||||
};
|
||||
|
||||
/* linux_signal.c */
|
||||
void linux_to_native_sigaction __P((struct linux_sigaction *, struct sigaction *));
|
||||
void native_to_linux_sigaction __P((struct sigaction *, struct linux_sigaction *));
|
||||
|
||||
void
|
||||
linux_to_native_sigset(lss, bss)
|
||||
const linux_sigset_t *lss;
|
||||
sigset_t *bss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
sigemptyset(bss);
|
||||
for (i = 1; i < LINUX_NSIG; i++) {
|
||||
if (linux_sigismember(lss, i)) {
|
||||
newsig = linux_to_native_sig[i];
|
||||
if (newsig)
|
||||
sigaddset(bss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigset(bss, lss)
|
||||
const sigset_t *bss;
|
||||
linux_sigset_t *lss;
|
||||
{
|
||||
int i, newsig;
|
||||
|
||||
linux_sigemptyset(lss);
|
||||
for (i = 1; i < NSIG; i++) {
|
||||
if (sigismember(bss, i)) {
|
||||
newsig = native_to_linux_sig[i];
|
||||
if (newsig)
|
||||
linux_sigaddset(lss, newsig);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert between Linux and BSD sigaction structures. Linux has
|
||||
* one extra field (sa_restorer) which we don't support.
|
||||
*/
|
||||
void
|
||||
linux_to_native_sigaction(lsa, bsa)
|
||||
struct linux_sigaction *lsa;
|
||||
struct sigaction *bsa;
|
||||
{
|
||||
|
||||
bsa->sa_handler = lsa->sa_handler;
|
||||
linux_to_native_sigset(&lsa->sa_mask, &bsa->sa_mask);
|
||||
bsa->sa_flags = 0;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOCLDSTOP) != 0)
|
||||
bsa->sa_flags |= SA_NOCLDSTOP;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONSTACK) != 0)
|
||||
bsa->sa_flags |= SA_ONSTACK;
|
||||
if ((lsa->sa_flags & LINUX_SA_RESTART) != 0)
|
||||
bsa->sa_flags |= SA_RESTART;
|
||||
if ((lsa->sa_flags & LINUX_SA_ONESHOT) != 0)
|
||||
bsa->sa_flags |= SA_RESETHAND;
|
||||
if ((lsa->sa_flags & LINUX_SA_NOMASK) != 0)
|
||||
bsa->sa_flags |= SA_NODEFER;
|
||||
#ifdef DEBUG
|
||||
if ((lsa->sa_flags & ~LINUX_SA_ALLBITS) != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: extra bits ignored\n");
|
||||
if (lsa->sa_restorer != 0)
|
||||
/*XXX*/ printf("linux_to_native_sigaction: sa_restorer ignored\n");
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
native_to_linux_sigaction(bsa, lsa)
|
||||
struct sigaction *bsa;
|
||||
struct linux_sigaction *lsa;
|
||||
{
|
||||
|
||||
lsa->sa_handler = bsa->sa_handler;
|
||||
native_to_linux_sigset(&bsa->sa_mask, &lsa->sa_mask);
|
||||
lsa->sa_flags = 0;
|
||||
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOCLDSTOP;
|
||||
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONSTACK;
|
||||
if ((bsa->sa_flags & SA_RESTART) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_RESTART;
|
||||
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_NOMASK;
|
||||
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
||||
lsa->sa_flags |= LINUX_SA_ONESHOT;
|
||||
lsa->sa_restorer = NULL;
|
||||
}
|
||||
|
||||
/* Used on: arm, i386, m68k, mips, ppc */
|
||||
/* Not used on: alpha, sparc, sparc64 */
|
||||
|
||||
/*
|
||||
* The Linux sigaction() system call. Do the usual conversions,
|
||||
* and just call sigaction(). Some flags and values are silently
|
||||
* ignored (see above).
|
||||
* and just call sigaction().
|
||||
*/
|
||||
int
|
||||
linux_sys_sigaction(p, v, retval)
|
||||
|
@ -233,225 +100,31 @@ linux_sys_sigaction(p, v, retval)
|
|||
{
|
||||
struct linux_sys_sigaction_args /* {
|
||||
syscallarg(int) signum;
|
||||
syscallarg(const struct linux_sigaction *) nsa;
|
||||
syscallarg(struct linux_sigaction *) osa;
|
||||
syscallarg(const struct linux_old_sigaction *) nsa;
|
||||
syscallarg(struct linux_old_sigaction *) osa;
|
||||
} */ *uap = v;
|
||||
struct linux_sigaction nlsa, olsa;
|
||||
struct linux_old_sigaction nlsa, olsa;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
/* XXX XAX handle switch to RT signal handler */
|
||||
/* XXX XAX and update emuldata->ps_siginfo. */
|
||||
|
||||
if (SCARG(uap, nsa)) {
|
||||
error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigaction(&nlsa, &nbsa);
|
||||
linux_old_to_native_sigaction(&nlsa, &nbsa);
|
||||
}
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, signum)],
|
||||
SCARG(uap, nsa) ? &nbsa : 0, SCARG(uap, osa) ? &obsa : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, osa)) {
|
||||
native_to_linux_sigaction(&obsa, &olsa);
|
||||
native_to_linux_old_sigaction(&obsa, &olsa);
|
||||
error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The Linux signal() system call. I think that the signal() in the C
|
||||
* library actually calls sigaction, so I doubt this one is ever used.
|
||||
* But hey, it can't hurt having it here. The same restrictions as for
|
||||
* sigaction() apply.
|
||||
*/
|
||||
int
|
||||
linux_sys_signal(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_signal_args /* {
|
||||
syscallarg(int) sig;
|
||||
syscallarg(linux_handler_t) handler;
|
||||
} */ *uap = v;
|
||||
struct sigaction nbsa, obsa;
|
||||
int error;
|
||||
|
||||
nbsa.sa_handler = SCARG(uap, handler);
|
||||
sigemptyset(&nbsa.sa_mask);
|
||||
nbsa.sa_flags = SA_RESETHAND | SA_NODEFER;
|
||||
error = sigaction1(p, linux_to_native_sig[SCARG(uap, sig)],
|
||||
&nbsa, &obsa);
|
||||
if (error)
|
||||
return (error);
|
||||
*retval = (int)obsa.sa_handler;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigprocmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigprocmask_args /* {
|
||||
syscallarg(int) how;
|
||||
syscallarg(const linux_sigset_t *) set;
|
||||
syscallarg(linux_sigset_t *) oset;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t nlss, olss;
|
||||
sigset_t nbss, obss;
|
||||
int how;
|
||||
int error;
|
||||
|
||||
switch (SCARG(uap, how)) {
|
||||
case LINUX_SIG_BLOCK:
|
||||
how = SIG_BLOCK;
|
||||
break;
|
||||
case LINUX_SIG_UNBLOCK:
|
||||
how = SIG_UNBLOCK;
|
||||
break;
|
||||
case LINUX_SIG_SETMASK:
|
||||
how = SIG_SETMASK;
|
||||
break;
|
||||
default:
|
||||
return (EINVAL);
|
||||
}
|
||||
|
||||
if (SCARG(uap, set)) {
|
||||
error = copyin(SCARG(uap, set), &nlss, sizeof(nlss));
|
||||
if (error)
|
||||
return (error);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
}
|
||||
error = sigprocmask1(p, how,
|
||||
SCARG(uap, set) ? &nbss : 0, SCARG(uap, oset) ? &obss : 0);
|
||||
if (error)
|
||||
return (error);
|
||||
if (SCARG(uap, oset)) {
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
error = copyout(&olss, SCARG(uap, oset), sizeof(olss));
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
int
|
||||
linux_sys_siggetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
int error;
|
||||
|
||||
error = sigprocmask1(p, SIG_SETMASK, 0, &bss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
*retval = lss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* The following three functions fiddle with a process' signal mask.
|
||||
* Convert the signal masks because of the different signal
|
||||
* values for Linux. The need for this is the reason why
|
||||
* they are here, and have not been mapped directly.
|
||||
*/
|
||||
int
|
||||
linux_sys_sigsetmask(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsetmask_args /* {
|
||||
syscallarg(linux_sigset_t) mask;
|
||||
} */ *uap = v;
|
||||
sigset_t nbss, obss;
|
||||
linux_sigset_t nlss, olss;
|
||||
int error;
|
||||
|
||||
nlss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&nlss, &nbss);
|
||||
error = sigprocmask1(p, SIG_SETMASK, &nbss, &obss);
|
||||
if (error)
|
||||
return (error);
|
||||
native_to_linux_sigset(&obss, &olss);
|
||||
*retval = olss;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigpending(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigpending_args /* {
|
||||
syscallarg(linux_sigset_t *) set;
|
||||
} */ *uap = v;
|
||||
sigset_t bss;
|
||||
linux_sigset_t lss;
|
||||
|
||||
sigpending1(p, &bss);
|
||||
native_to_linux_sigset(&bss, &lss);
|
||||
return copyout(&lss, SCARG(uap, set), sizeof(lss));
|
||||
}
|
||||
|
||||
int
|
||||
linux_sys_sigsuspend(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_sigsuspend_args /* {
|
||||
syscallarg(caddr_t) restart;
|
||||
syscallarg(int) oldmask;
|
||||
syscallarg(int) mask;
|
||||
} */ *uap = v;
|
||||
linux_sigset_t lss;
|
||||
sigset_t bss;
|
||||
|
||||
lss = SCARG(uap, mask);
|
||||
linux_to_native_sigset(&lss, &bss);
|
||||
return (sigsuspend1(p, &bss));
|
||||
}
|
||||
|
||||
/*
|
||||
* The deprecated pause(2), which is really just an instance
|
||||
* of sigsuspend(2).
|
||||
*/
|
||||
int
|
||||
linux_sys_pause(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
|
||||
return (sigsuspend1(p, 0));
|
||||
}
|
||||
|
||||
/*
|
||||
* Once more: only a signal conversion is needed.
|
||||
*/
|
||||
int
|
||||
linux_sys_kill(p, v, retval)
|
||||
register struct proc *p;
|
||||
void *v;
|
||||
register_t *retval;
|
||||
{
|
||||
struct linux_sys_kill_args /* {
|
||||
syscallarg(int) pid;
|
||||
syscallarg(int) signum;
|
||||
} */ *uap = v;
|
||||
struct sys_kill_args ka;
|
||||
|
||||
SCARG(&ka, pid) = SCARG(uap, pid);
|
||||
SCARG(&ka, signum) = linux_to_native_sig[SCARG(uap, signum)];
|
||||
return sys_kill(p, &ka, retval);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue