123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595 |
- /* Copyright (C) 2014 Stony Brook University
- This file is part of Graphene Library OS.
- Graphene Library OS is free software: you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public License
- as published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- Graphene Library OS is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
- /*
- * db_signal.c
- *
- * This file contains APIs to set up handlers of exceptions issued by the
- * host, and the methods to pass the exceptions to the upcalls.
- */
- #include "pal_defs.h"
- #include "pal_freebsd_defs.h"
- #include "pal.h"
- #include "pal_internal.h"
- #include "pal_freebsd.h"
- #include "pal_error.h"
- #include "pal_security.h"
- #include "api.h"
- #include "list.h"
- #include <atomic.h>
- #include <sigset.h>
- #include "signal.h"
- #include <ucontext.h>
- #include <errno.h>
- typedef void (*PAL_UPCALL) (PAL_PTR, PAL_NUM, PAL_CONTEXT *);
- int set_sighandler (int * sigs, int nsig, void * handler)
- {
- struct sigaction action;
- action.sa_handler = (void (*)(int)) handler;
- action.sa_flags = SA_SIGINFO;
- __sigemptyset((_sigset_t *) &action.sa_mask);
- __sigaddset((_sigset_t *) &action.sa_mask, SIGCONT);
- for (int i = 0 ; i < nsig ; i++) {
- if (sigs[i] == SIGCHLD)
- action.sa_flags |= SA_NOCLDSTOP|SA_NOCLDWAIT;
- #if defined(__i386__)
- int ret = INLINE_SYSCALL(sigaction, 3, sigs[i], &action, NULL)
- #else
- int ret = INLINE_SYSCALL(sigaction, 4, sigs[i], &action, NULL,
- sizeof(sigset_t));
- #endif
- if (IS_ERR(ret))
- return -PAL_ERROR_DENIED;
- action.sa_flags &= ~(SA_NOCLDSTOP|SA_NOCLDWAIT);
- }
- bool maskset = false;
- int ret = 0;
- _sigset_t mask;
- __sigemptyset(&mask);
- for (int i = 0 ; i < nsig ; i++)
- if (__sigismember(&bsd_state.sigset, sigs[i])) {
- __sigdelset(&bsd_state.sigset, sigs[i]);
- __sigaddset(&mask, sigs[i]);
- maskset = true;
- }
- if (maskset) {
- #if defined(__i386__)
- ret = INLINE_SYSCALL(sigprocmask, 3, SIG_UNBLOCK, &mask, NULL)
- #else
- ret = INLINE_SYSCALL(sigprocmask, 4, SIG_UNBLOCK, &mask, NULL,
- sizeof(sigset_t));
- #endif
- }
- if (IS_ERR(ret))
- return -PAL_ERROR_DENIED;
- return 0;
- }
- int block_signals (int * sigs, int nsig)
- {
- bool maskset = false;
- int ret = 0;
- _sigset_t mask;
- __sigemptyset(&mask);
- for (int i = 0 ; i < nsig ; i++)
- if (!__sigismember(&bsd_state.sigset, sigs[i])) {
- __sigaddset(&bsd_state.sigset, sigs[i]);
- __sigaddset(&mask, sigs[i]);
- maskset = true;
- }
- if (maskset) {
- #if defined(__i386__)
- ret = INLINE_SYSCALL(sigprocmask, 3, SIG_BLOCK, &mask, NULL)
- #else
- ret = INLINE_SYSCALL(sigprocmask, 4, SIG_BLOCK, &mask, NULL,
- sizeof(sigset_t));
- #endif
- }
- if (IS_ERR(ret))
- return -PAL_ERROR_DENIED;
- return 0;
- }
- int unblock_signals (int * sigs, int nsig)
- {
- bool maskset = false;
- int ret = 0;
- _sigset_t mask;
- __sigemptyset(&mask);
- for (int i = 0 ; i < nsig ; i++)
- if (__sigismember(&bsd_state.sigset, sigs[i])) {
- __sigdelset(&bsd_state.sigset, sigs[i]);
- __sigaddset(&mask, sigs[i]);
- maskset = true;
- }
- if (maskset) {
- #if defined(__i386__)
- ret = INLINE_SYSCALL(sigprocmask, 3, SIG_UNBLOCK, &mask, NULL)
- #else
- ret = INLINE_SYSCALL(sigprocmask, 4, SIG_UNBLOCK, &mask, NULL,
- sizeof(sigset_t));
- #endif
- }
- if (IS_ERR(ret))
- return -PAL_ERROR_DENIED;
- return 0;
- }
- int unset_sighandler (int * sigs, int nsig)
- {
- for (int i = 0 ; i < nsig ; i++) {
- #if defined(__i386__)
- int ret = INLINE_SYSCALL(sigaction, 4, sigs[i], SIG_DFL, NULL)
- #else
- int ret = INLINE_SYSCALL(sigaction, 4, sigs[i], SIG_DFL, NULL,
- sizeof(_sigset_t));
- #endif
- if (IS_ERR(ret))
- return -PAL_ERROR_DENIED;
- }
- return 0;
- }
- struct exception_handler {
- struct mutex_handle lock;
- int flags;
- PAL_UPCALL upcall;
- } __attribute__((aligned(sizeof(int))));
- struct exception_event {
- int event_num;
- int flags;
- PAL_CONTEXT context;
- ucontext_t * uc;
- void * eframe;
- };
- #define DECLARE_HANDLER_HEAD(event) \
- static struct exception_handler handler_##event = \
- { .lock = MUTEX_HANDLE_INIT, \
- .upcall = NULL, \
- .flags = 0, };
- DECLARE_HANDLER_HEAD(DivZero);
- DECLARE_HANDLER_HEAD(MemFault);
- DECLARE_HANDLER_HEAD(Illegal);
- DECLARE_HANDLER_HEAD(Quit);
- DECLARE_HANDLER_HEAD(Suspend);
- DECLARE_HANDLER_HEAD(Resume);
- DECLARE_HANDLER_HEAD(Failure);
- struct exception_handler * pal_handlers [PAL_EVENT_NUM_BOUND] = {
- NULL, /* reserved */
- &handler_DivZero,
- &handler_MemFault,
- &handler_Illegal,
- &handler_Quit,
- &handler_Suspend,
- &handler_Resume,
- &handler_Failure,
- };
- static int get_event_num (int signum)
- {
- switch(signum) {
- case SIGFPE: return PAL_EVENT_ARITHMETIC_ERROR;
- case SIGSEGV: case SIGBUS: return PAL_EVENT_MEMFAULT;
- case SIGILL: return PAL_EVENT_ILLEGAL;
- case SIGTERM: return PAL_EVENT_QUIT;
- case SIGINT: return PAL_EVENT_SUSPEND;
- case SIGCONT: return PAL_EVENT_RESUME;
- default: return -1;
- }
- }
- static void _DkGenericEventTrigger (int event_num, PAL_UPCALL upcall,
- int flags, PAL_NUM arg,
- struct pal_frame * frame,
- ucontext_t * uc, void * eframe)
- {
- struct exception_event event;
- event.event_num = event_num;
- event.flags = flags;
- if (uc) {
- event.context.r8 = uc->uc_mcontext.mc_r8;
- event.context.r9 = uc->uc_mcontext.mc_r9;
- event.context.r10 = uc->uc_mcontext.mc_r10;
- event.context.r11 = uc->uc_mcontext.mc_r11;
- event.context.r12 = uc->uc_mcontext.mc_r12;
- event.context.r13 = uc->uc_mcontext.mc_r13;
- event.context.r14 = uc->uc_mcontext.mc_r14;
- event.context.r15 = uc->uc_mcontext.mc_r15;
- event.context.rdi = uc->uc_mcontext.mc_rdi;
- event.context.rsi = uc->uc_mcontext.mc_rsi;
- event.context.rbp = uc->uc_mcontext.mc_rbp;
- event.context.rbx = uc->uc_mcontext.mc_rbx;
- event.context.rdx = uc->uc_mcontext.mc_rdx;
- event.context.rax = uc->uc_mcontext.mc_rax;
- event.context.rcx = uc->uc_mcontext.mc_rcx;
- event.context.rsp = uc->uc_mcontext.mc_rsp;
- event.context.rip = uc->uc_mcontext.mc_rip;
- event.context.efl = uc->uc_mcontext.mc_flags;
- event.context.err = uc->uc_mcontext.mc_err;
- event.context.trapno = uc->uc_mcontext.mc_trapno;
- event.context.csgsfs = 0;
- event.context.oldmask = 0;
- event.context.cr2 = 0;
- }
- if (frame) {
- event.context.r15 = frame->arch.r15;
- event.context.r14 = frame->arch.r14;
- event.context.r13 = frame->arch.r13;
- event.context.r12 = frame->arch.r12;
- event.context.rdi = frame->arch.rdi;
- event.context.rsi = frame->arch.rsi;
- event.context.rbx = frame->arch.rbx;
- /* find last frame */
- event.context.rsp = frame->arch.rbp + sizeof(unsigned long) * 2;
- event.context.rbp = ((unsigned long *) frame->arch.rbp)[0];
- event.context.rip = ((unsigned long *) frame->arch.rbp)[1];
- }
- event.uc = uc;
- event.eframe = eframe;
- (*upcall) (&event, arg, &event.context);
- }
- static bool _DkGenericSignalHandle (int event_num, siginfo_t * info,
- struct pal_frame * frame,
- ucontext_t * uc, void * eframe)
- {
- struct exception_handler * handler = pal_handlers[event_num];
- _DkMutexLock(&handler->lock);
- PAL_UPCALL upcall = handler->upcall;
- int flags = handler->flags;
- _DkMutexUnlock(&handler->lock);
- if (upcall) {
- PAL_NUM arg = 0;
- if (event_num == PAL_EVENT_ARITHMETIC_ERROR ||
- event_num == PAL_EVENT_MEMFAULT ||
- event_num == PAL_EVENT_ILLEGAL)
- arg = (PAL_NUM) (info ? info->si_addr : 0);
- _DkGenericEventTrigger(event_num, upcall, flags, arg, frame,
- uc, eframe);
- return true;
- }
- return false;
- }
- #define ADDR_IN_PAL(addr) \
- ((void*)(addr) > TEXT_START && (void*)(addr) < TEXT_END)
- static struct pal_frame * get_frame (ucontext_t * uc)
- {
- unsigned long rip = uc->uc_mcontext.mc_rip;
- unsigned long rbp = uc->uc_mcontext.mc_rbp;
- unsigned long last_rbp = rbp - 1024;
- if (!ADDR_IN_PAL(rip))
- return NULL;
- while (ADDR_IN_PAL(((unsigned long *) rbp)[1])) {
- last_rbp = rbp;
- rbp = *(unsigned long *) rbp;
- }
- /* search frame record in the top frame of PAL */
- for (unsigned long ptr = rbp - sizeof(unsigned long) ;
- ptr > last_rbp ; ptr -= 8) {
- struct pal_frame * frame = (struct pal_frame *) ptr;
- if (frame->identifier == PAL_FRAME_IDENTIFIER)
- return frame;
- }
- return NULL;
- }
- static void return_frame (struct pal_frame * frame, int err)
- {
- if (err)
- _DkRaiseFailure(err);
- __clear_frame(frame);
- arch_restore_frame(&frame->arch);
- asm volatile ("xor %%rax, %%rax\r\n"
- "leaveq\r\n"
- "retq\r\n" ::: "memory");
- }
- static void _DkGenericSighandler (int signum, siginfo_t * info,
- ucontext_t * uc)
- {
- #if 0
- /* resurrect this code if signal handler is giving segmentation fault */
- if (signum == SIGSEGV) {
- int pid = INLINE_SYSCALL(getpid, 0);
- char msg[24] = "--- SIGSEGV --- [ ]\n";
- msg[17] = '0' + pid / 10000;
- msg[18] = '0' + (pid / 1000) % 10;
- msg[19] = '0' + (pid / 100) % 10;
- msg[20] = '0' + (pid / 10) % 10;
- msg[21] = '0' + pid % 10;
- INLINE_SYSCALL(write, 3, 1, msg, 24);
- }
- #endif
- struct pal_frame * frame = get_frame(uc);
- void * eframe;
- asm volatile ("movq %%rbp, %0" : "=r"(eframe));
- if (frame && frame->func != &_DkGenericSighandler &&
- signum != SIGCONT &&
- signum != SIGINT &&
- signum != SIGTERM) {
- return_frame(frame, PAL_ERROR_BADADDR);
- return;
- }
- int event_num = get_event_num(signum);
- if (event_num == -1)
- return;
- _DkGenericSignalHandle(event_num, info, frame, uc, eframe);
- }
- static void _DkTerminateSighandler (int signum, siginfo_t * info,
- ucontext_t * uc)
- {
- struct pal_frame * frame = get_frame(uc);
- void * eframe;
- asm volatile ("movq %%rbp, %0" : "=r"(eframe));
- int event_num = get_event_num(signum);
- if (event_num == -1)
- return;
- if (!_DkGenericSignalHandle(event_num, NULL, frame, uc, eframe))
- _DkThreadExit();
- }
- static void _DkPipeSighandler (int signum, siginfo_t * info,
- ucontext_t * uc)
- {
- struct pal_frame * frame = get_frame(uc);
- if (frame)
- return_frame(frame, PAL_ERROR_CONNFAILED);
- }
- void _DkRaiseFailure (int error)
- {
- _DkMutexLock(&handler_Failure.lock);
- PAL_UPCALL upcall = handler_Failure.upcall;
- int flags = handler_Failure.flags;
- _DkMutexUnlock(&handler_Failure.lock);
- if (upcall)
- _DkGenericEventTrigger(PAL_EVENT_FAILURE, upcall, flags, error,
- NULL, NULL, NULL);
- }
- struct signal_ops {
- int signum[3];
- void (*handler) (int signum, siginfo_t * info, ucontext_t * uc);
- };
- struct signal_ops on_signals[PAL_EVENT_NUM_BOUND] = {
- /* DivZero */ { .signum = { SIGFPE, 0 },
- .handler = _DkGenericSighandler },
- /* MemFault */ { .signum = { SIGSEGV, SIGBUS, 0 },
- .handler = _DkGenericSighandler },
- /* Illegal */ { .signum = { SIGILL, 0 },
- .handler = _DkGenericSighandler },
- /* Quit */ { .signum = { SIGTERM, 0, 0 },
- .handler = _DkTerminateSighandler },
- /* Suspend */ { .signum = { SIGINT, 0 },
- .handler = _DkTerminateSighandler },
- /* Resume */ { .signum = { SIGCONT, 0 },
- .handler = _DkGenericSighandler },
- };
- static int _DkPersistentSighandlerSetup (int event_num)
- {
- int nsigs, * sigs = on_signals[event_num].signum;
- for (nsigs = 0 ; sigs[nsigs] ; nsigs++);
- void * sighandler = on_signals[event_num].handler;
- int ret = set_sighandler (sigs, nsigs, sighandler);
- if (ret < 0)
- return ret;
- return 0;
- }
- static int _DkPersistentEventUpcall (int event_num, PAL_UPCALL upcall,
- int flags)
- {
- struct exception_handler * handler = pal_handlers[event_num];
- _DkMutexLock(&handler->lock);
- handler->upcall = upcall;
- handler->flags = flags;
- _DkMutexUnlock(&handler->lock);
- return _DkPersistentSighandlerSetup(event_num);
- }
- static int _DkGenericEventUpcall (int event_num, PAL_UPCALL upcall,
- int flags)
- {
- int nsigs, * sigs = on_signals[event_num].signum;
- for (nsigs = 0 ; sigs[nsigs] ; nsigs++);
- void * sighandler = on_signals[event_num].handler;
- struct exception_handler * handler = pal_handlers[event_num];
- int ret = 0;
- _DkMutexLock(&handler->lock);
- handler->upcall = upcall;
- handler->flags = flags;
- _DkMutexUnlock(&handler->lock);
- if (upcall)
- ret = set_sighandler (sigs, nsigs, sighandler);
- else
- ret = block_signals (sigs, nsigs);
- return ret;
- }
- static int _DkDummyEventUpcall (int event_num, PAL_UPCALL upcall,
- int flags)
- {
- struct exception_handler * handler = pal_handlers[event_num];
- _DkMutexLock(&handler->lock);
- handler->upcall = upcall;
- handler->flags = flags;
- _DkMutexUnlock(&handler->lock);
- return 0;
- }
- typedef void (*PAL_UPCALL) (PAL_PTR, PAL_NUM, PAL_CONTEXT *);
- int (*_DkExceptionHandlers[PAL_EVENT_NUM_BOUND])
- (int, PAL_UPCALL, int) = {
- /* reserved */ NULL,
- /* DivZero */ &_DkPersistentEventUpcall,
- /* MemFault */ &_DkPersistentEventUpcall,
- /* Illegal */ &_DkPersistentEventUpcall,
- /* Quit */ &_DkGenericEventUpcall,
- /* Suspend */ &_DkGenericEventUpcall,
- /* Resume */ &_DkGenericEventUpcall,
- /* Failure */ &_DkDummyEventUpcall,
- };
- static void _DkCompatibilitySighandler (int signum, siginfo_t * info,
- ucontext_t * uc)
- {
- /* not implemented */
- }
- void signal_setup (void)
- {
- int ret, sig;
- __sigemptyset(&bsd_state.sigset);
- struct sigaction action;
- action.sa_handler = (void (*)(int)) SIG_IGN;
- action.sa_flags = 0;
- #if defined(__i386__)
- ret = INLINE_SYSCALL(sigaction, 3, SIGCHLD, &action, NULL)
- #else
- ret = INLINE_SYSCALL(sigaction, 4, SIGCHLD, &action, NULL,
- sizeof(sigset_t));
- #endif
- if (IS_ERR(ret)) {
- ret = -PAL_ERROR_DENIED;
- goto err;
- }
- if ((ret = _DkPersistentEventUpcall(PAL_EVENT_ARITHMETIC_ERROR, NULL, 0)) < 0)
- goto err;
- if ((ret = _DkPersistentEventUpcall(PAL_EVENT_MEMFAULT, NULL, 0)) < 0)
- goto err;
- if ((ret = _DkPersistentEventUpcall(PAL_EVENT_ILLEGAL, NULL, 0)) < 0)
- goto err;
- sig = SIGPIPE;
- if ((ret = set_sighandler(&sig, 1, &_DkPipeSighandler)) < 0)
- goto err;
- sig = SIGSYS;
- if ((ret = set_sighandler(&sig, 1, &_DkCompatibilitySighandler)) < 0)
- goto err;
- return;
- err:
- INIT_FAIL(-ret, "cannot setup signal handlers");
- }
- void _DkExceptionReturn (void * event)
- {
- const struct exception_event * e = (const struct exception_event *) event;
- if (e->uc) {
- /* copy the context back to ucontext */
- e->uc->uc_mcontext.mc_r8 = e->context.r8;
- e->uc->uc_mcontext.mc_r9 = e->context.r9;
- e->uc->uc_mcontext.mc_r10 = e->context.r10;
- e->uc->uc_mcontext.mc_r11 = e->context.r11;
- e->uc->uc_mcontext.mc_r12 = e->context.r12;
- e->uc->uc_mcontext.mc_r13 = e->context.r13;
- e->uc->uc_mcontext.mc_r14 = e->context.r14;
- e->uc->uc_mcontext.mc_r15 = e->context.r15;
- e->uc->uc_mcontext.mc_rdi = e->context.rdi;
- e->uc->uc_mcontext.mc_rsi = e->context.rsi;
- e->uc->uc_mcontext.mc_rbp = e->context.rbp;
- e->uc->uc_mcontext.mc_rbx = e->context.rbx;
- e->uc->uc_mcontext.mc_rdx = e->context.rdx;
- e->uc->uc_mcontext.mc_rax = e->context.rax;
- e->uc->uc_mcontext.mc_rcx = e->context.rcx;
- e->uc->uc_mcontext.mc_rsp = e->context.rsp;
- e->uc->uc_mcontext.mc_rip = e->context.rip;
- e->uc->uc_mcontext.mc_flags = e->context.efl;
- e->uc->uc_mcontext.mc_err = e->context.err;
- e->uc->uc_mcontext.mc_trapno = e->context.trapno;
- /* return to the frame of exception handler */
- asm volatile ("movq %0, %%rbp\r\n"
- "leaveq\r\n"
- "retq\r\n" :: "r"(e->eframe) : "memory");
- }
- }
|