Retro68/gcc/libgo/runtime/go-signal.c

552 lines
11 KiB
C
Raw Normal View History

2012-03-27 23:13:14 +00:00
/* go-signal.c -- signal handling for Go.
Copyright 2009 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file. */
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
#include "runtime.h"
#include "go-assert.h"
#include "go-panic.h"
2014-09-21 17:33:12 +00:00
#include "signal_unix.h"
2012-03-27 23:13:14 +00:00
#ifndef SA_RESTART
#define SA_RESTART 0
#endif
#ifdef USING_SPLIT_STACK
extern void __splitstack_getcontext(void *context[10]);
extern void __splitstack_setcontext(void *context[10]);
#endif
#define N SigNotify
#define K SigKill
#define T SigThrow
#define P SigPanic
#define D SigDefault
/* Signal actions. This collects the sigtab tables for several
2017-04-10 11:32:00 +00:00
different targets from the master library. SIGKILL and SIGSTOP are
not listed, as we don't want to set signal handlers for them. */
2012-03-27 23:13:14 +00:00
SigTab runtime_sigtab[] = {
#ifdef SIGHUP
2017-04-10 11:32:00 +00:00
{ SIGHUP, N + K, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGINT
2017-04-10 11:32:00 +00:00
{ SIGINT, N + K, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGQUIT
2017-04-10 11:32:00 +00:00
{ SIGQUIT, N + T, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGILL
2017-04-10 11:32:00 +00:00
{ SIGILL, T, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGTRAP
2017-04-10 11:32:00 +00:00
{ SIGTRAP, T, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGABRT
2017-04-10 11:32:00 +00:00
{ SIGABRT, N + T, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGBUS
2017-04-10 11:32:00 +00:00
{ SIGBUS, P, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGFPE
2017-04-10 11:32:00 +00:00
{ SIGFPE, P, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGUSR1
2017-04-10 11:32:00 +00:00
{ SIGUSR1, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGSEGV
2017-04-10 11:32:00 +00:00
{ SIGSEGV, P, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGUSR2
2017-04-10 11:32:00 +00:00
{ SIGUSR2, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGPIPE
2017-04-10 11:32:00 +00:00
{ SIGPIPE, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGALRM
2017-04-10 11:32:00 +00:00
{ SIGALRM, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGTERM
2017-04-10 11:32:00 +00:00
{ SIGTERM, N + K, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGSTKFLT
2017-04-10 11:32:00 +00:00
{ SIGSTKFLT, T, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGCHLD
2017-04-10 11:32:00 +00:00
{ SIGCHLD, N, NULL },
#endif
#ifdef SIGCONT
{ SIGCONT, N + D, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGTSTP
2017-04-10 11:32:00 +00:00
{ SIGTSTP, N + D, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGTTIN
2017-04-10 11:32:00 +00:00
{ SIGTTIN, N + D, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGTTOU
2017-04-10 11:32:00 +00:00
{ SIGTTOU, N + D, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGURG
2017-04-10 11:32:00 +00:00
{ SIGURG, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGXCPU
2017-04-10 11:32:00 +00:00
{ SIGXCPU, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGXFSZ
2017-04-10 11:32:00 +00:00
{ SIGXFSZ, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGVTALRM
2017-04-10 11:32:00 +00:00
{ SIGVTALRM, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGPROF
2017-04-10 11:32:00 +00:00
{ SIGPROF, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGWINCH
2017-04-10 11:32:00 +00:00
{ SIGWINCH, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGIO
2017-04-10 11:32:00 +00:00
{ SIGIO, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGPWR
2017-04-10 11:32:00 +00:00
{ SIGPWR, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGSYS
2017-04-10 11:32:00 +00:00
{ SIGSYS, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGEMT
2017-04-10 11:32:00 +00:00
{ SIGEMT, T, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGINFO
2017-04-10 11:32:00 +00:00
{ SIGINFO, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
#ifdef SIGTHR
2017-04-10 11:32:00 +00:00
{ SIGTHR, N, NULL },
2012-03-27 23:13:14 +00:00
#endif
2017-04-10 11:32:00 +00:00
{ -1, 0, NULL }
2012-03-27 23:13:14 +00:00
};
#undef N
#undef K
#undef T
#undef P
#undef D
/* Handle a signal, for cases where we don't panic. We can split the
stack here. */
2014-09-21 17:33:12 +00:00
void
runtime_sighandler (int sig, Siginfo *info,
void *context __attribute__ ((unused)), G *gp)
2012-03-27 23:13:14 +00:00
{
2014-09-21 17:33:12 +00:00
M *m;
2012-03-27 23:13:14 +00:00
int i;
2014-09-21 17:33:12 +00:00
m = runtime_m ();
2012-03-27 23:13:14 +00:00
#ifdef SIGPROF
if (sig == SIGPROF)
{
2014-09-21 17:33:12 +00:00
if (m != NULL && gp != m->g0 && gp != m->gsignal)
runtime_sigprof ();
2012-03-27 23:13:14 +00:00
return;
}
#endif
2014-09-21 17:33:12 +00:00
if (m == NULL)
{
runtime_badsignal (sig);
return;
}
2012-03-27 23:13:14 +00:00
for (i = 0; runtime_sigtab[i].sig != -1; ++i)
{
SigTab *t;
2014-09-21 17:33:12 +00:00
bool notify, crash;
2012-03-27 23:13:14 +00:00
t = &runtime_sigtab[i];
if (t->sig != sig)
continue;
2014-09-21 17:33:12 +00:00
notify = false;
#ifdef SA_SIGINFO
notify = info != NULL && info->si_code == SI_USER;
#endif
if (notify || (t->flags & SigNotify) != 0)
2012-03-27 23:13:14 +00:00
{
if (__go_sigsend (sig))
return;
}
if ((t->flags & SigKill) != 0)
runtime_exit (2);
if ((t->flags & SigThrow) == 0)
return;
runtime_startpanic ();
2014-09-21 17:33:12 +00:00
{
const char *name = NULL;
#ifdef HAVE_STRSIGNAL
name = strsignal (sig);
#endif
if (name == NULL)
runtime_printf ("Signal %d\n", sig);
else
runtime_printf ("%s\n", name);
}
if (m->lockedg != NULL && m->ncgo > 0 && gp == m->g0)
{
runtime_printf("signal arrived during cgo execution\n");
gp = m->lockedg;
}
2012-03-27 23:13:14 +00:00
2014-09-21 17:33:12 +00:00
runtime_printf ("\n");
2012-03-27 23:13:14 +00:00
2014-09-21 17:33:12 +00:00
if (runtime_gotraceback (&crash))
{
G *g;
2012-03-27 23:13:14 +00:00
2014-09-21 17:33:12 +00:00
g = runtime_g ();
runtime_traceback ();
runtime_tracebackothers (g);
2012-03-27 23:13:14 +00:00
2014-09-21 17:33:12 +00:00
/* The gc library calls runtime_dumpregs here, and provides
a function that prints the registers saved in context in
a readable form. */
}
2012-03-27 23:13:14 +00:00
2014-09-21 17:33:12 +00:00
if (crash)
runtime_crash ();
2012-03-27 23:13:14 +00:00
runtime_exit (2);
}
__builtin_unreachable ();
}
/* The start of handling a signal which panics. */
static void
2015-08-28 15:33:40 +00:00
sig_panic_leadin (G *gp)
2012-03-27 23:13:14 +00:00
{
int i;
sigset_t clear;
2015-08-28 15:33:40 +00:00
if (!runtime_canpanic (gp))
runtime_throw ("unexpected signal during runtime execution");
2012-03-27 23:13:14 +00:00
/* The signal handler blocked signals; unblock them. */
i = sigfillset (&clear);
__go_assert (i == 0);
2014-09-21 17:33:12 +00:00
i = pthread_sigmask (SIG_UNBLOCK, &clear, NULL);
2012-03-27 23:13:14 +00:00
__go_assert (i == 0);
}
#ifdef SA_SIGINFO
/* Signal dispatch for signals which panic, on systems which support
SA_SIGINFO. This is called on the thread stack, and as such it is
permitted to split the stack. */
static void
2014-09-21 17:33:12 +00:00
sig_panic_info_handler (int sig, Siginfo *info, void *context)
2012-03-27 23:13:14 +00:00
{
2014-09-21 17:33:12 +00:00
G *g;
g = runtime_g ();
if (g == NULL || info->si_code == SI_USER)
2012-03-27 23:13:14 +00:00
{
2014-09-21 17:33:12 +00:00
runtime_sighandler (sig, info, context, g);
2012-03-27 23:13:14 +00:00
return;
}
2014-09-21 17:33:12 +00:00
g->sig = sig;
g->sigcode0 = info->si_code;
g->sigcode1 = (uintptr_t) info->si_addr;
/* It would be nice to set g->sigpc here as the gc library does, but
I don't know how to get it portably. */
2015-08-28 15:33:40 +00:00
sig_panic_leadin (g);
2012-03-27 23:13:14 +00:00
switch (sig)
{
#ifdef SIGBUS
case SIGBUS:
2015-08-28 15:33:40 +00:00
if ((info->si_code == BUS_ADRERR && (uintptr_t) info->si_addr < 0x1000)
|| g->paniconfault)
2012-03-27 23:13:14 +00:00
runtime_panicstring ("invalid memory address or "
"nil pointer dereference");
runtime_printf ("unexpected fault address %p\n", info->si_addr);
runtime_throw ("fault");
#endif
#ifdef SIGSEGV
case SIGSEGV:
2015-08-28 15:33:40 +00:00
if (((info->si_code == 0
|| info->si_code == SEGV_MAPERR
|| info->si_code == SEGV_ACCERR)
&& (uintptr_t) info->si_addr < 0x1000)
|| g->paniconfault)
2012-03-27 23:13:14 +00:00
runtime_panicstring ("invalid memory address or "
"nil pointer dereference");
runtime_printf ("unexpected fault address %p\n", info->si_addr);
runtime_throw ("fault");
#endif
#ifdef SIGFPE
case SIGFPE:
switch (info->si_code)
{
case FPE_INTDIV:
runtime_panicstring ("integer divide by zero");
case FPE_INTOVF:
runtime_panicstring ("integer overflow");
}
runtime_panicstring ("floating point error");
#endif
}
/* All signals with SigPanic should be in cases above, and this
handler should only be invoked for those signals. */
__builtin_unreachable ();
}
#else /* !defined (SA_SIGINFO) */
static void
sig_panic_handler (int sig)
{
2014-09-21 17:33:12 +00:00
G *g;
g = runtime_g ();
if (g == NULL)
2012-03-27 23:13:14 +00:00
{
2014-09-21 17:33:12 +00:00
runtime_sighandler (sig, NULL, NULL, g);
2012-03-27 23:13:14 +00:00
return;
}
2014-09-21 17:33:12 +00:00
g->sig = sig;
g->sigcode0 = 0;
g->sigcode1 = 0;
2015-08-28 15:33:40 +00:00
sig_panic_leadin (g);
2012-03-27 23:13:14 +00:00
switch (sig)
{
#ifdef SIGBUS
case SIGBUS:
runtime_panicstring ("invalid memory address or "
"nil pointer dereference");
#endif
#ifdef SIGSEGV
case SIGSEGV:
runtime_panicstring ("invalid memory address or "
"nil pointer dereference");
#endif
#ifdef SIGFPE
case SIGFPE:
runtime_panicstring ("integer divide by zero or floating point error");
#endif
}
/* All signals with SigPanic should be in cases above, and this
handler should only be invoked for those signals. */
__builtin_unreachable ();
}
#endif /* !defined (SA_SIGINFO) */
/* A signal handler used for signals which are not going to panic.
This is called on the alternate signal stack so it may not split
the stack. */
static void
2014-09-21 17:33:12 +00:00
sig_tramp_info (int, Siginfo *, void *) __attribute__ ((no_split_stack));
2012-03-27 23:13:14 +00:00
static void
2014-09-21 17:33:12 +00:00
sig_tramp_info (int sig, Siginfo *info, void *context)
2012-03-27 23:13:14 +00:00
{
G *gp;
M *mp;
2014-09-21 17:33:12 +00:00
#ifdef USING_SPLIT_STACK
void *stack_context[10];
#endif
2012-03-27 23:13:14 +00:00
/* We are now running on the stack registered via sigaltstack.
(Actually there is a small span of time between runtime_siginit
and sigaltstack when the program starts.) */
gp = runtime_g ();
mp = runtime_m ();
if (gp != NULL)
{
#ifdef USING_SPLIT_STACK
2014-09-21 17:33:12 +00:00
__splitstack_getcontext (&stack_context[0]);
2012-03-27 23:13:14 +00:00
#endif
}
if (gp != NULL && mp->gsignal != NULL)
{
/* We are running on the signal stack. Set the split stack
context so that the stack guards are checked correctly. */
#ifdef USING_SPLIT_STACK
__splitstack_setcontext (&mp->gsignal->stack_context[0]);
#endif
}
2014-09-21 17:33:12 +00:00
runtime_sighandler (sig, info, context, gp);
2012-03-27 23:13:14 +00:00
/* We are going to return back to the signal trampoline and then to
whatever we were doing before we got the signal. Restore the
split stack context so that stack guards are checked
correctly. */
if (gp != NULL)
{
#ifdef USING_SPLIT_STACK
2014-09-21 17:33:12 +00:00
__splitstack_setcontext (&stack_context[0]);
2012-03-27 23:13:14 +00:00
#endif
}
}
2014-09-21 17:33:12 +00:00
#ifndef SA_SIGINFO
static void sig_tramp (int sig) __attribute__ ((no_split_stack));
static void
sig_tramp (int sig)
{
sig_tramp_info (sig, NULL, NULL);
}
#endif
2012-03-27 23:13:14 +00:00
void
2014-09-21 17:33:12 +00:00
runtime_setsig (int32 i, GoSighandler *fn, bool restart)
2012-03-27 23:13:14 +00:00
{
struct sigaction sa;
int r;
SigTab *t;
memset (&sa, 0, sizeof sa);
r = sigfillset (&sa.sa_mask);
__go_assert (r == 0);
t = &runtime_sigtab[i];
if ((t->flags & SigPanic) == 0)
{
2014-09-21 17:33:12 +00:00
#ifdef SA_SIGINFO
sa.sa_flags = SA_ONSTACK | SA_SIGINFO;
if (fn == runtime_sighandler)
fn = (void *) sig_tramp_info;
sa.sa_sigaction = (void *) fn;
#else
2012-03-27 23:13:14 +00:00
sa.sa_flags = SA_ONSTACK;
2014-09-21 17:33:12 +00:00
if (fn == runtime_sighandler)
fn = (void *) sig_tramp;
sa.sa_handler = (void *) fn;
#endif
2012-03-27 23:13:14 +00:00
}
else
{
#ifdef SA_SIGINFO
sa.sa_flags = SA_SIGINFO;
2014-09-21 17:33:12 +00:00
if (fn == runtime_sighandler)
fn = (void *) sig_panic_info_handler;
sa.sa_sigaction = (void *) fn;
2012-03-27 23:13:14 +00:00
#else
sa.sa_flags = 0;
2014-09-21 17:33:12 +00:00
if (fn == runtime_sighandler)
fn = (void *) sig_panic_handler;
sa.sa_handler = (void *) fn;
2012-03-27 23:13:14 +00:00
#endif
}
if (restart)
sa.sa_flags |= SA_RESTART;
if (sigaction (t->sig, &sa, NULL) != 0)
__go_assert (0);
}
2014-09-21 17:33:12 +00:00
GoSighandler*
runtime_getsig (int32 i)
{
struct sigaction sa;
int r;
SigTab *t;
memset (&sa, 0, sizeof sa);
r = sigemptyset (&sa.sa_mask);
__go_assert (r == 0);
t = &runtime_sigtab[i];
if (sigaction (t->sig, NULL, &sa) != 0)
runtime_throw ("sigaction read failure");
if ((void *) sa.sa_handler == sig_tramp_info)
return runtime_sighandler;
#ifdef SA_SIGINFO
if ((void *) sa.sa_handler == sig_panic_info_handler)
return runtime_sighandler;
#else
if ((void *) sa.sa_handler == sig_tramp
|| (void *) sa.sa_handler == sig_panic_handler)
return runtime_sighandler;
#endif
return (void *) sa.sa_handler;
}
2012-03-27 23:13:14 +00:00
/* Used by the os package to raise SIGPIPE. */
2014-09-21 17:33:12 +00:00
void os_sigpipe (void) __asm__ (GOSYM_PREFIX "os.sigpipe");
2012-03-27 23:13:14 +00:00
void
os_sigpipe (void)
{
struct sigaction sa;
int i;
2017-04-10 11:32:00 +00:00
if (__go_sigsend (SIGPIPE))
return;
2012-03-27 23:13:14 +00:00
memset (&sa, 0, sizeof sa);
sa.sa_handler = SIG_DFL;
i = sigemptyset (&sa.sa_mask);
__go_assert (i == 0);
if (sigaction (SIGPIPE, &sa, NULL) != 0)
abort ();
raise (SIGPIPE);
}
void
runtime_setprof(bool on)
{
USED(on);
}