X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=os_posix.cpp;h=991ad0e7cabef3162162fd19176e2d0b6580c9d6;hb=851d0b0452234ace66a511327bd8e6f9d68fe9e9;hp=3a864720735740207346fa5b98fa4b86de4a3807;hpb=00e0021870c9bbba51376aa32554183e1c7859ba;p=apitrace diff --git a/os_posix.cpp b/os_posix.cpp index 3a86472..991ad0e 100644 --- a/os_posix.cpp +++ b/os_posix.cpp @@ -24,6 +24,7 @@ **************************************************************************/ +#include #include #include #include @@ -138,27 +139,91 @@ Abort(void) } -void -CatchInterrupts(void (*func)(int)) +static void (*gCallback)(void) = NULL; + +#define NUM_SIGNALS 16 + +struct sigaction old_actions[NUM_SIGNALS]; + +static void signal_handler(int sig, siginfo_t *info, void *context) { - struct sigaction new_action, old_action; + static int recursion_count = 0; + + fprintf(stderr, "signal_handler: sig = %i\n", sig); - new_action.sa_handler = func; - sigemptyset(&new_action.sa_mask); - new_action.sa_flags = 0; + if (recursion_count) { + fprintf(stderr, "recursion with sig %i\n", sig); + } else { + if (gCallback) { + ++recursion_count; + gCallback(); + --recursion_count; + } + } -#define SET_IF_NOT_IGNORED(sig) \ - do { \ - sigaction(sig, NULL, &old_action); \ - if (old_action.sa_handler != SIG_IGN) \ - sigaction(sig, &new_action, NULL); \ - } while (0) + struct sigaction *old_action; + if (sig >= NUM_SIGNALS) { + /* This should never happen */ + fprintf(stderr, "Unexpected signal %i\n", sig); + raise(SIGKILL); + } + old_action = &old_actions[sig]; + + if (old_action->sa_flags & SA_SIGINFO) { + // Handler is in sa_sigaction + old_action->sa_sigaction(sig, info, context); + } else { + if (old_action->sa_handler == SIG_DFL) { + fprintf(stderr, "taking default action for signal %i\n", sig); + +#if 1 + struct sigaction dfl_action; + dfl_action.sa_handler = SIG_DFL; + sigemptyset (&dfl_action.sa_mask); + dfl_action.sa_flags = 0; + sigaction(sig, &dfl_action, NULL); + + raise(sig); +#else + raise(SIGKILL); +#endif + } else if (old_action->sa_handler == SIG_IGN) { + /* ignore */ + } else { + /* dispatch to handler */ + old_action->sa_handler(sig); + } + } +} - SET_IF_NOT_IGNORED(SIGINT); - SET_IF_NOT_IGNORED(SIGHUP); - SET_IF_NOT_IGNORED(SIGTERM); +void +SetExceptionCallback(void (*callback)(void)) +{ + assert(!gCallback); + if (!gCallback) { + gCallback = callback; + + struct sigaction new_action; + new_action.sa_sigaction = signal_handler; + sigemptyset(&new_action.sa_mask); + new_action.sa_flags = SA_SIGINFO | SA_RESTART; + + + for (int sig = 1; sig < NUM_SIGNALS; ++sig) { + // SIGKILL and SIGSTOP can't be handled + if (sig != SIGKILL && sig != SIGSTOP) { + if (sigaction(sig, NULL, &old_actions[sig]) >= 0) { + sigaction(sig, &new_action, NULL); + } + } + } + } +} -#undef SET_IF_NOT_IGNORED +void +ResetExceptionCallback(void) +{ + gCallback = NULL; } } /* namespace OS */