2005-01-05 22:34:37 +00:00
|
|
|
/*-
|
1999-01-30 06:29:48 +00:00
|
|
|
* Copyright (c) 1998 Mark Newton
|
|
|
|
* Copyright (c) 1994 Christos Zoulas
|
|
|
|
* 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. 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-10 21:44:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/filedesc.h>
|
2001-05-01 08:13:21 +00:00
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/proc.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/signalvar.h>
|
2003-04-22 18:23:49 +00:00
|
|
|
#include <sys/syscallsubr.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
#include <sys/sysproto.h>
|
|
|
|
|
2000-12-03 01:56:15 +00:00
|
|
|
#include <machine/cpu.h>
|
|
|
|
|
2000-08-31 22:54:09 +00:00
|
|
|
#include <compat/svr4/svr4.h>
|
|
|
|
#include <compat/svr4/svr4_types.h>
|
|
|
|
#include <compat/svr4/svr4_signal.h>
|
|
|
|
#include <compat/svr4/svr4_proto.h>
|
|
|
|
#include <compat/svr4/svr4_util.h>
|
|
|
|
#include <compat/svr4/svr4_ucontext.h>
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
#define svr4_sigmask(n) (1 << (((n) - 1) & 31))
|
|
|
|
#define svr4_sigword(n) (((n) - 1) >> 5)
|
|
|
|
#define svr4_sigemptyset(s) memset((s), 0, sizeof(*(s)))
|
|
|
|
#define svr4_sigismember(s, n) ((s)->bits[svr4_sigword(n)] & svr4_sigmask(n))
|
|
|
|
#define svr4_sigaddset(s, n) ((s)->bits[svr4_sigword(n)] |= svr4_sigmask(n))
|
|
|
|
|
2002-03-20 05:48:58 +00:00
|
|
|
void svr4_to_bsd_sigaction(const struct svr4_sigaction *, struct sigaction *);
|
|
|
|
void bsd_to_svr4_sigaction(const struct sigaction *, struct svr4_sigaction *);
|
|
|
|
void svr4_sigfillset(svr4_sigset_t *);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2005-02-25 19:34:10 +00:00
|
|
|
int bsd_to_svr4_sig[SVR4_NSIG] = {
|
|
|
|
0,
|
1999-01-30 06:29:48 +00:00
|
|
|
SVR4_SIGHUP,
|
|
|
|
SVR4_SIGINT,
|
|
|
|
SVR4_SIGQUIT,
|
|
|
|
SVR4_SIGILL,
|
|
|
|
SVR4_SIGTRAP,
|
|
|
|
SVR4_SIGABRT,
|
|
|
|
SVR4_SIGEMT,
|
|
|
|
SVR4_SIGFPE,
|
|
|
|
SVR4_SIGKILL,
|
|
|
|
SVR4_SIGBUS,
|
|
|
|
SVR4_SIGSEGV,
|
|
|
|
SVR4_SIGSYS,
|
|
|
|
SVR4_SIGPIPE,
|
|
|
|
SVR4_SIGALRM,
|
|
|
|
SVR4_SIGTERM,
|
|
|
|
SVR4_SIGURG,
|
|
|
|
SVR4_SIGSTOP,
|
|
|
|
SVR4_SIGTSTP,
|
|
|
|
SVR4_SIGCONT,
|
|
|
|
SVR4_SIGCHLD,
|
|
|
|
SVR4_SIGTTIN,
|
|
|
|
SVR4_SIGTTOU,
|
|
|
|
SVR4_SIGIO,
|
|
|
|
SVR4_SIGXCPU,
|
|
|
|
SVR4_SIGXFSZ,
|
|
|
|
SVR4_SIGVTALRM,
|
|
|
|
SVR4_SIGPROF,
|
|
|
|
SVR4_SIGWINCH,
|
|
|
|
0, /* SIGINFO */
|
|
|
|
SVR4_SIGUSR1,
|
|
|
|
SVR4_SIGUSR2,
|
|
|
|
};
|
|
|
|
|
2005-02-25 19:34:10 +00:00
|
|
|
int svr4_to_bsd_sig[SVR4_NSIG] = {
|
|
|
|
0,
|
1999-01-30 06:29:48 +00:00
|
|
|
SIGHUP,
|
|
|
|
SIGINT,
|
|
|
|
SIGQUIT,
|
|
|
|
SIGILL,
|
|
|
|
SIGTRAP,
|
|
|
|
SIGABRT,
|
|
|
|
SIGEMT,
|
|
|
|
SIGFPE,
|
|
|
|
SIGKILL,
|
|
|
|
SIGBUS,
|
|
|
|
SIGSEGV,
|
|
|
|
SIGSYS,
|
|
|
|
SIGPIPE,
|
|
|
|
SIGALRM,
|
|
|
|
SIGTERM,
|
|
|
|
SIGUSR1,
|
|
|
|
SIGUSR2,
|
|
|
|
SIGCHLD,
|
|
|
|
0, /* XXX NetBSD uses SIGPWR here, but we don't seem to have one */
|
|
|
|
SIGWINCH,
|
|
|
|
SIGURG,
|
|
|
|
SIGIO,
|
|
|
|
SIGSTOP,
|
|
|
|
SIGTSTP,
|
|
|
|
SIGCONT,
|
|
|
|
SIGTTIN,
|
|
|
|
SIGTTOU,
|
|
|
|
SIGVTALRM,
|
|
|
|
SIGPROF,
|
|
|
|
SIGXCPU,
|
|
|
|
SIGXFSZ,
|
|
|
|
};
|
|
|
|
|
2000-01-15 15:38:17 +00:00
|
|
|
void
|
|
|
|
svr4_sigfillset(s)
|
|
|
|
svr4_sigset_t *s;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
svr4_sigemptyset(s);
|
2005-02-25 19:34:10 +00:00
|
|
|
for (i = 1; i < SVR4_NSIG; i++)
|
2000-01-15 15:38:17 +00:00
|
|
|
if (svr4_to_bsd_sig[i] != 0)
|
|
|
|
svr4_sigaddset(s, i);
|
|
|
|
}
|
|
|
|
|
1999-01-30 06:29:48 +00:00
|
|
|
void
|
|
|
|
svr4_to_bsd_sigset(sss, bss)
|
|
|
|
const svr4_sigset_t *sss;
|
|
|
|
sigset_t *bss;
|
|
|
|
{
|
|
|
|
int i, newsig;
|
|
|
|
|
1999-09-29 15:12:18 +00:00
|
|
|
SIGEMPTYSET(*bss);
|
2005-02-25 19:34:10 +00:00
|
|
|
for (i = 1; i < SVR4_NSIG; i++)
|
|
|
|
if (svr4_sigismember(sss, i)) {
|
2000-01-15 15:38:17 +00:00
|
|
|
newsig = svr4_to_bsd_sig[i];
|
1999-01-30 06:29:48 +00:00
|
|
|
if (newsig)
|
1999-09-29 15:12:18 +00:00
|
|
|
SIGADDSET(*bss, newsig);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bsd_to_svr4_sigset(bss, sss)
|
|
|
|
const sigset_t *bss;
|
|
|
|
svr4_sigset_t *sss;
|
|
|
|
{
|
|
|
|
int i, newsig;
|
|
|
|
|
|
|
|
svr4_sigemptyset(sss);
|
2005-02-25 19:34:10 +00:00
|
|
|
for (i = 1; i < SVR4_NSIG; i++) {
|
1999-09-29 15:12:18 +00:00
|
|
|
if (SIGISMEMBER(*bss, i)) {
|
2005-02-25 19:34:10 +00:00
|
|
|
newsig = bsd_to_svr4_sig[i];
|
1999-01-30 06:29:48 +00:00
|
|
|
if (newsig)
|
|
|
|
svr4_sigaddset(sss, newsig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: Only a subset of the flags is currently implemented.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
svr4_to_bsd_sigaction(ssa, bsa)
|
|
|
|
const struct svr4_sigaction *ssa;
|
|
|
|
struct sigaction *bsa;
|
|
|
|
{
|
|
|
|
|
1999-07-06 06:55:29 +00:00
|
|
|
bsa->sa_handler = (sig_t) ssa->ssa_handler;
|
|
|
|
svr4_to_bsd_sigset(&ssa->ssa_mask, &bsa->sa_mask);
|
1999-01-30 06:29:48 +00:00
|
|
|
bsa->sa_flags = 0;
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & SVR4_SA_ONSTACK) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
bsa->sa_flags |= SA_ONSTACK;
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & SVR4_SA_RESETHAND) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
bsa->sa_flags |= SA_RESETHAND;
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & SVR4_SA_RESTART) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
bsa->sa_flags |= SA_RESTART;
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & SVR4_SA_SIGINFO) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
DPRINTF(("svr4_to_bsd_sigaction: SA_SIGINFO ignored\n"));
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & SVR4_SA_NOCLDSTOP) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
bsa->sa_flags |= SA_NOCLDSTOP;
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & SVR4_SA_NODEFER) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
bsa->sa_flags |= SA_NODEFER;
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & SVR4_SA_NOCLDWAIT) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
bsa->sa_flags |= SA_NOCLDWAIT;
|
1999-07-06 06:55:29 +00:00
|
|
|
if ((ssa->ssa_flags & ~SVR4_SA_ALLBITS) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
DPRINTF(("svr4_to_bsd_sigaction: extra bits ignored\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bsd_to_svr4_sigaction(bsa, ssa)
|
|
|
|
const struct sigaction *bsa;
|
|
|
|
struct svr4_sigaction *ssa;
|
|
|
|
{
|
|
|
|
|
1999-07-06 06:55:29 +00:00
|
|
|
ssa->ssa_handler = (svr4_sig_t) bsa->sa_handler;
|
|
|
|
bsd_to_svr4_sigset(&bsa->sa_mask, &ssa->ssa_mask);
|
|
|
|
ssa->ssa_flags = 0;
|
1999-01-30 06:29:48 +00:00
|
|
|
if ((bsa->sa_flags & SA_ONSTACK) != 0)
|
1999-07-06 06:55:29 +00:00
|
|
|
ssa->ssa_flags |= SVR4_SA_ONSTACK;
|
1999-01-30 06:29:48 +00:00
|
|
|
if ((bsa->sa_flags & SA_RESETHAND) != 0)
|
1999-07-06 06:55:29 +00:00
|
|
|
ssa->ssa_flags |= SVR4_SA_RESETHAND;
|
1999-01-30 06:29:48 +00:00
|
|
|
if ((bsa->sa_flags & SA_RESTART) != 0)
|
1999-07-06 06:55:29 +00:00
|
|
|
ssa->ssa_flags |= SVR4_SA_RESTART;
|
1999-01-30 06:29:48 +00:00
|
|
|
if ((bsa->sa_flags & SA_NODEFER) != 0)
|
1999-07-06 06:55:29 +00:00
|
|
|
ssa->ssa_flags |= SVR4_SA_NODEFER;
|
1999-01-30 06:29:48 +00:00
|
|
|
if ((bsa->sa_flags & SA_NOCLDSTOP) != 0)
|
1999-07-06 06:55:29 +00:00
|
|
|
ssa->ssa_flags |= SVR4_SA_NOCLDSTOP;
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
svr4_to_bsd_sigaltstack(sss, bss)
|
|
|
|
const struct svr4_sigaltstack *sss;
|
|
|
|
struct sigaltstack *bss;
|
|
|
|
{
|
|
|
|
|
|
|
|
bss->ss_sp = sss->ss_sp;
|
|
|
|
bss->ss_size = sss->ss_size;
|
|
|
|
bss->ss_flags = 0;
|
|
|
|
if ((sss->ss_flags & SVR4_SS_DISABLE) != 0)
|
|
|
|
bss->ss_flags |= SS_DISABLE;
|
|
|
|
if ((sss->ss_flags & SVR4_SS_ONSTACK) != 0)
|
|
|
|
bss->ss_flags |= SS_ONSTACK;
|
Add GIANT_REQUIRED and WITNESS sleep warnings to uprintf() and tprintf(),
as they both interact with the tty code (!MPSAFE) and may sleep if the
tty buffer is full (per comment).
Modify all consumers of uprintf() and tprintf() to hold Giant around
calls into these functions. In most cases, this means adding an
acquisition of Giant immediately around the function. In some cases
(nfs_timer()), it means acquiring Giant higher up in the callout.
With these changes, UFS no longer panics on SMP when either blocks are
exhausted or inodes are exhausted under load due to races in the tty
code when running without Giant.
NB: Some reduction in calls to uprintf() in the svr4 code is probably
desirable.
NB: In the case of nfs_timer(), calling uprintf() while holding a mutex,
or even in a callout at all, is a bad idea, and will generate warnings
and potential upset. This needs to be fixed, but was a problem before
this change.
NB: uprintf()/tprintf() sleeping is generally a bad ideas, as is having
non-MPSAFE tty code.
MFC after: 1 week
2005-09-19 16:51:43 +00:00
|
|
|
if ((sss->ss_flags & ~SVR4_SS_ALLBITS) != 0) {
|
|
|
|
mtx_lock(&Giant);
|
1999-01-30 06:29:48 +00:00
|
|
|
/*XXX*/ uprintf("svr4_to_bsd_sigaltstack: extra bits ignored\n");
|
Add GIANT_REQUIRED and WITNESS sleep warnings to uprintf() and tprintf(),
as they both interact with the tty code (!MPSAFE) and may sleep if the
tty buffer is full (per comment).
Modify all consumers of uprintf() and tprintf() to hold Giant around
calls into these functions. In most cases, this means adding an
acquisition of Giant immediately around the function. In some cases
(nfs_timer()), it means acquiring Giant higher up in the callout.
With these changes, UFS no longer panics on SMP when either blocks are
exhausted or inodes are exhausted under load due to races in the tty
code when running without Giant.
NB: Some reduction in calls to uprintf() in the svr4 code is probably
desirable.
NB: In the case of nfs_timer(), calling uprintf() while holding a mutex,
or even in a callout at all, is a bad idea, and will generate warnings
and potential upset. This needs to be fixed, but was a problem before
this change.
NB: uprintf()/tprintf() sleeping is generally a bad ideas, as is having
non-MPSAFE tty code.
MFC after: 1 week
2005-09-19 16:51:43 +00:00
|
|
|
mtx_unlock(&Giant);
|
|
|
|
}
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bsd_to_svr4_sigaltstack(bss, sss)
|
|
|
|
const struct sigaltstack *bss;
|
|
|
|
struct svr4_sigaltstack *sss;
|
|
|
|
{
|
|
|
|
|
|
|
|
sss->ss_sp = bss->ss_sp;
|
|
|
|
sss->ss_size = bss->ss_size;
|
|
|
|
sss->ss_flags = 0;
|
|
|
|
if ((bss->ss_flags & SS_DISABLE) != 0)
|
|
|
|
sss->ss_flags |= SVR4_SS_DISABLE;
|
|
|
|
if ((bss->ss_flags & SS_ONSTACK) != 0)
|
|
|
|
sss->ss_flags |= SVR4_SS_ONSTACK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_sigaction(td, uap)
|
|
|
|
register struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_sigaction_args *uap;
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
struct svr4_sigaction isa;
|
|
|
|
struct sigaction nbsa, obsa;
|
|
|
|
struct sigaction *nbsap;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
2003-10-20 10:38:48 +00:00
|
|
|
if (uap->signum < 0 || uap->signum >= SVR4_NSIG)
|
|
|
|
return (EINVAL);
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
DPRINTF(("@@@ svr4_sys_sigaction(%d, %d, %d)\n", td->td_proc->p_pid,
|
2002-12-14 01:56:26 +00:00
|
|
|
uap->signum,
|
|
|
|
SVR4_SVR42BSD_SIG(uap->signum)));
|
2000-01-15 15:38:17 +00:00
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
if (uap->nsa != NULL) {
|
|
|
|
if ((error = copyin(uap->nsa, &isa, sizeof(isa))) != 0)
|
|
|
|
return (error);
|
|
|
|
svr4_to_bsd_sigaction(&isa, &nbsa);
|
|
|
|
nbsap = &nbsa;
|
1999-01-30 06:29:48 +00:00
|
|
|
} else
|
2003-04-22 18:23:49 +00:00
|
|
|
nbsap = NULL;
|
2000-01-15 15:38:17 +00:00
|
|
|
#if defined(DEBUG_SVR4)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
DPRINTF(("\tssa_mask[%d] = %lx\n", i,
|
2003-04-22 18:23:49 +00:00
|
|
|
isa.ssa_mask.bits[i]));
|
|
|
|
DPRINTF(("\tssa_handler = %p\n", isa.ssa_handler));
|
2000-01-15 15:38:17 +00:00
|
|
|
}
|
|
|
|
#endif
|
2003-04-22 18:23:49 +00:00
|
|
|
error = kern_sigaction(td, SVR4_SVR42BSD_SIG(uap->signum), nbsap, &obsa,
|
|
|
|
0);
|
|
|
|
if (error == 0 && uap->osa != NULL) {
|
|
|
|
bsd_to_svr4_sigaction(&obsa, &isa);
|
|
|
|
error = copyout(&isa, uap->osa, sizeof(isa));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
2003-04-22 18:23:49 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_sigaltstack(td, uap)
|
|
|
|
register struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_sigaltstack_args *uap;
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
struct svr4_sigaltstack sss;
|
|
|
|
struct sigaltstack nbss, obss, *nbssp;
|
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
if (uap->nss != NULL) {
|
|
|
|
if ((error = copyin(uap->nss, &sss, sizeof(sss))) != 0)
|
|
|
|
return (error);
|
|
|
|
svr4_to_bsd_sigaltstack(&sss, &nbss);
|
|
|
|
nbssp = &nbss;
|
|
|
|
} else
|
|
|
|
nbssp = NULL;
|
|
|
|
error = kern_sigaltstack(td, nbssp, &obss);
|
|
|
|
if (error == 0 && uap->oss != NULL) {
|
|
|
|
bsd_to_svr4_sigaltstack(&obss, &sss);
|
|
|
|
error = copyout(&sss, uap->oss, sizeof(sss));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
2003-04-22 18:23:49 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stolen from the ibcs2 one
|
|
|
|
*/
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_signal(td, uap)
|
|
|
|
register struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_signal_args *uap;
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
struct proc *p;
|
1999-09-29 15:12:18 +00:00
|
|
|
int signum;
|
2003-04-22 18:23:49 +00:00
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
p = td->td_proc;
|
|
|
|
DPRINTF(("@@@ svr4_sys_signal(%d)\n", p->p_pid));
|
2000-01-15 15:38:17 +00:00
|
|
|
|
2003-10-20 10:38:48 +00:00
|
|
|
signum = SVR4_SIGNO(uap->signum);
|
|
|
|
if (signum < 0 || signum >= SVR4_NSIG) {
|
|
|
|
if (SVR4_SIGCALL(uap->signum) == SVR4_SIGNAL_MASK ||
|
|
|
|
SVR4_SIGCALL(uap->signum) == SVR4_SIGDEFER_MASK)
|
|
|
|
td->td_retval[0] = (int)SVR4_SIG_ERR;
|
1999-01-30 06:29:48 +00:00
|
|
|
return (EINVAL);
|
2003-10-20 10:38:48 +00:00
|
|
|
}
|
|
|
|
signum = SVR4_SVR42BSD_SIG(signum);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (SVR4_SIGCALL(uap->signum)) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case SVR4_SIGDEFER_MASK:
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->handler == SVR4_SIG_HOLD)
|
1999-01-30 06:29:48 +00:00
|
|
|
goto sighold;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
|
|
|
case SVR4_SIGNAL_MASK:
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
struct sigaction nbsa, obsa;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
nbsa.sa_handler = (sig_t) uap->handler;
|
|
|
|
SIGEMPTYSET(nbsa.sa_mask);
|
|
|
|
nbsa.sa_flags = 0;
|
1999-01-30 06:29:48 +00:00
|
|
|
if (signum != SIGALRM)
|
2003-04-22 18:23:49 +00:00
|
|
|
nbsa.sa_flags = SA_RESTART;
|
|
|
|
error = kern_sigaction(td, signum, &nbsa, &obsa, 0);
|
|
|
|
if (error != 0) {
|
1999-01-30 06:29:48 +00:00
|
|
|
DPRINTF(("signal: sigaction failed: %d\n",
|
|
|
|
error));
|
2003-04-22 18:23:49 +00:00
|
|
|
td->td_retval[0] = (int)SVR4_SIG_ERR;
|
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
2003-04-22 18:23:49 +00:00
|
|
|
td->td_retval[0] = (int)obsa.sa_handler;
|
|
|
|
return (0);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_SIGHOLD_MASK:
|
|
|
|
sighold:
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
sigset_t set;
|
|
|
|
|
|
|
|
SIGEMPTYSET(set);
|
|
|
|
SIGADDSET(set, signum);
|
|
|
|
return (kern_sigprocmask(td, SIG_BLOCK, &set, NULL, 0));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_SIGRELSE_MASK:
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
sigset_t set;
|
|
|
|
|
|
|
|
SIGEMPTYSET(set);
|
|
|
|
SIGADDSET(set, signum);
|
|
|
|
return (kern_sigprocmask(td, SIG_UNBLOCK, &set, NULL,
|
|
|
|
0));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_SIGIGNORE_MASK:
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
struct sigaction sa;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
sa.sa_handler = SIG_IGN;
|
1999-09-29 15:12:18 +00:00
|
|
|
SIGEMPTYSET(sa.sa_mask);
|
1999-01-30 06:29:48 +00:00
|
|
|
sa.sa_flags = 0;
|
2003-04-22 18:23:49 +00:00
|
|
|
error = kern_sigaction(td, signum, &sa, NULL, 0);
|
|
|
|
if (error != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
DPRINTF(("sigignore: sigaction failed\n"));
|
2003-04-22 18:23:49 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case SVR4_SIGPAUSE_MASK:
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
sigset_t mask;
|
|
|
|
|
|
|
|
PROC_LOCK(p);
|
|
|
|
mask = td->td_sigmask;
|
|
|
|
PROC_UNLOCK(p);
|
|
|
|
SIGDELSET(mask, signum);
|
|
|
|
return kern_sigsuspend(td, mask);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return (ENOSYS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_sigprocmask(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_sigprocmask_args *uap;
|
|
|
|
{
|
|
|
|
svr4_sigset_t sss;
|
2003-04-22 18:23:49 +00:00
|
|
|
sigset_t oss, nss;
|
|
|
|
sigset_t *nssp;
|
|
|
|
int error;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
if (uap->set != NULL) {
|
|
|
|
if ((error = copyin(uap->set, &sss, sizeof(sss))) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
2003-04-22 18:23:49 +00:00
|
|
|
svr4_to_bsd_sigset(&sss, &nss);
|
|
|
|
nssp = &nss;
|
|
|
|
} else
|
|
|
|
nssp = NULL;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
/* SVR/4 sigprocmask flag values are the same as the FreeBSD values. */
|
|
|
|
error = kern_sigprocmask(td, uap->how, nssp, &oss, 0);
|
|
|
|
if (error == 0 && uap->oset != NULL) {
|
|
|
|
bsd_to_svr4_sigset(&oss, &sss);
|
|
|
|
error = copyout(&sss, uap->oset, sizeof(sss));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
2003-04-22 18:23:49 +00:00
|
|
|
return (error);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_sigpending(td, uap)
|
|
|
|
struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_sigpending_args *uap;
|
|
|
|
{
|
2003-04-17 22:02:47 +00:00
|
|
|
struct proc *p;
|
1999-01-30 06:29:48 +00:00
|
|
|
sigset_t bss;
|
|
|
|
svr4_sigset_t sss;
|
|
|
|
|
2003-04-17 22:02:47 +00:00
|
|
|
p = td->td_proc;
|
|
|
|
DPRINTF(("@@@ svr4_sys_sigpending(%d)\n", p->p_pid));
|
2002-12-14 01:56:26 +00:00
|
|
|
switch (uap->what) {
|
1999-01-30 06:29:48 +00:00
|
|
|
case 1: /* sigpending */
|
2002-12-14 01:56:26 +00:00
|
|
|
if (uap->mask == NULL)
|
1999-01-30 06:29:48 +00:00
|
|
|
return 0;
|
2003-04-17 22:02:47 +00:00
|
|
|
PROC_LOCK(p);
|
|
|
|
bss = p->p_siglist;
|
2003-03-31 22:49:17 +00:00
|
|
|
SIGSETOR(bss, td->td_siglist);
|
|
|
|
SIGSETAND(bss, td->td_sigmask);
|
2003-04-17 22:02:47 +00:00
|
|
|
PROC_UNLOCK(p);
|
1999-01-30 06:29:48 +00:00
|
|
|
bsd_to_svr4_sigset(&bss, &sss);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: /* sigfillset */
|
|
|
|
svr4_sigfillset(&sss);
|
2000-01-15 15:38:17 +00:00
|
|
|
#if defined(DEBUG_SVR4)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
DPRINTF(("new sigset[%d] = %lx\n", i, (long)sss.bits[i]));
|
|
|
|
}
|
|
|
|
#endif
|
1999-01-30 06:29:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
return copyout(&sss, uap->mask, sizeof(sss));
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_sigsuspend(td, uap)
|
|
|
|
register struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_sigsuspend_args *uap;
|
|
|
|
{
|
|
|
|
svr4_sigset_t sss;
|
2003-04-22 18:23:49 +00:00
|
|
|
sigset_t bss;
|
1999-01-30 06:29:48 +00:00
|
|
|
int error;
|
|
|
|
|
2002-12-14 01:56:26 +00:00
|
|
|
if ((error = copyin(uap->ss, &sss, sizeof(sss))) != 0)
|
1999-01-30 06:29:48 +00:00
|
|
|
return error;
|
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
svr4_to_bsd_sigset(&sss, &bss);
|
|
|
|
return kern_sigsuspend(td, bss);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_kill(td, uap)
|
|
|
|
register struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_kill_args *uap;
|
|
|
|
{
|
|
|
|
struct kill_args ka;
|
|
|
|
|
2003-10-20 10:38:48 +00:00
|
|
|
if (uap->signum < 0 || uap->signum >= SVR4_NSIG)
|
|
|
|
return (EINVAL);
|
2002-12-14 01:56:26 +00:00
|
|
|
ka.pid = uap->pid;
|
|
|
|
ka.signum = SVR4_SVR42BSD_SIG(uap->signum);
|
2005-02-13 17:37:20 +00:00
|
|
|
return kill(td, &ka);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_context(td, uap)
|
|
|
|
register struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_context_args *uap;
|
|
|
|
{
|
|
|
|
struct svr4_ucontext uc;
|
2003-04-22 18:23:49 +00:00
|
|
|
int error, onstack;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
switch (uap->func) {
|
|
|
|
case 0:
|
|
|
|
DPRINTF(("getcontext(%p)\n", uap->uc));
|
2003-04-22 18:23:49 +00:00
|
|
|
PROC_LOCK(td->td_proc);
|
|
|
|
onstack = sigonstack(cpu_getstack(td));
|
2001-09-12 08:38:13 +00:00
|
|
|
PROC_UNLOCK(td->td_proc);
|
2003-04-22 18:23:49 +00:00
|
|
|
svr4_getcontext(td, &uc, &td->td_sigmask, onstack);
|
1999-01-30 06:29:48 +00:00
|
|
|
return copyout(&uc, uap->uc, sizeof(uc));
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
DPRINTF(("setcontext(%p)\n", uap->uc));
|
|
|
|
if ((error = copyin(uap->uc, &uc, sizeof(uc))) != 0)
|
|
|
|
return error;
|
2000-01-15 15:38:17 +00:00
|
|
|
DPRINTF(("uc_flags = %lx\n", uc.uc_flags));
|
|
|
|
#if defined(DEBUG_SVR4)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
DPRINTF(("uc_sigmask[%d] = %lx\n", i,
|
|
|
|
uc.uc_sigmask.bits[i]));
|
|
|
|
}
|
|
|
|
#endif
|
2001-09-12 08:38:13 +00:00
|
|
|
return svr4_setcontext(td, &uc);
|
1999-01-30 06:29:48 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
DPRINTF(("context(%d, %p)\n", uap->func,
|
|
|
|
uap->uc));
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
svr4_sys_pause(td, uap)
|
|
|
|
register struct thread *td;
|
1999-01-30 06:29:48 +00:00
|
|
|
struct svr4_sys_pause_args *uap;
|
|
|
|
{
|
2003-04-22 18:23:49 +00:00
|
|
|
sigset_t mask;
|
1999-01-30 06:29:48 +00:00
|
|
|
|
2003-04-22 18:23:49 +00:00
|
|
|
PROC_LOCK(td->td_proc);
|
|
|
|
mask = td->td_sigmask;
|
|
|
|
PROC_UNLOCK(td->td_proc);
|
|
|
|
return kern_sigsuspend(td, mask);
|
1999-01-30 06:29:48 +00:00
|
|
|
}
|