2013-03-06 10:29:49 +01:00
|
|
|
/**
|
|
|
|
* Native CPU irq.h implementation
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Ludwig Ortmann
|
|
|
|
*
|
2013-11-22 20:47:05 +01:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser General
|
2013-06-18 17:21:38 +02:00
|
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
|
|
* details.
|
2013-03-06 10:29:49 +01:00
|
|
|
*
|
2013-03-13 21:56:56 +01:00
|
|
|
* @ingroup native_cpu
|
|
|
|
* @ingroup irq
|
2013-03-06 10:29:49 +01:00
|
|
|
* @{
|
|
|
|
* @file
|
|
|
|
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
|
|
|
|
*/
|
2013-11-07 17:23:08 +01:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
#include <err.h>
|
2013-05-14 18:31:47 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2013-09-30 15:31:40 +02:00
|
|
|
#include <stdlib.h>
|
2013-05-14 18:31:47 +02:00
|
|
|
|
2013-09-30 14:07:10 +02:00
|
|
|
#ifdef HAVE_VALGRIND_H
|
|
|
|
#include <valgrind.h>
|
|
|
|
#define VALGRIND_DEBUG DEBUG
|
|
|
|
#elif defined(HAVE_VALGRIND_VALGRIND_H)
|
|
|
|
#include <valgrind/valgrind.h>
|
|
|
|
#define VALGRIND_DEBUG DEBUG
|
|
|
|
#else
|
|
|
|
#define VALGRIND_STACK_REGISTER(...)
|
|
|
|
#define VALGRIND_DEBUG(...)
|
|
|
|
#endif
|
|
|
|
|
2013-06-03 13:10:42 +02:00
|
|
|
// __USE_GNU for gregs[REG_EIP] access under Linux
|
2013-05-14 18:31:47 +02:00
|
|
|
#define __USE_GNU
|
|
|
|
#include <signal.h>
|
|
|
|
#undef __USE_GNU
|
2013-03-06 01:08:15 +01:00
|
|
|
|
2013-05-14 18:31:47 +02:00
|
|
|
#include "irq.h"
|
2013-03-06 01:08:15 +01:00
|
|
|
#include "cpu.h"
|
|
|
|
|
2013-10-23 22:43:58 +02:00
|
|
|
#include "lpm.h"
|
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
#include "native_internal.h"
|
|
|
|
|
2013-09-30 15:31:40 +02:00
|
|
|
#define ENABLE_DEBUG (0)
|
2013-03-06 01:08:15 +01:00
|
|
|
#include "debug.h"
|
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
extern volatile tcb_t *active_thread;
|
2013-03-06 01:08:15 +01:00
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
volatile int native_interrupts_enabled;
|
2013-09-30 15:31:40 +02:00
|
|
|
volatile int _native_in_isr;
|
|
|
|
volatile int _native_in_syscall;
|
2013-11-07 17:23:08 +01:00
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
static sigset_t _native_sig_set, _native_sig_set_dint;
|
2013-03-06 01:08:15 +01:00
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
char __isr_stack[SIGSTKSZ];
|
|
|
|
ucontext_t native_isr_context;
|
2013-05-14 18:31:47 +02:00
|
|
|
ucontext_t *_native_cur_ctx, *_native_isr_ctx;
|
2013-11-07 17:23:08 +01:00
|
|
|
|
|
|
|
volatile unsigned int _native_saved_eip;
|
|
|
|
volatile int _native_sigpend;
|
|
|
|
int _sig_pipefd[2];
|
2013-05-14 18:31:47 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
struct int_handler_t {
|
|
|
|
void (*func)(void);
|
|
|
|
};
|
|
|
|
static struct int_handler_t native_irq_handlers[255];
|
2013-05-14 18:31:47 +02:00
|
|
|
char sigalt_stk[SIGSTKSZ];
|
2013-04-15 20:08:46 +02:00
|
|
|
|
|
|
|
void print_thread_sigmask(ucontext_t *cp)
|
|
|
|
{
|
|
|
|
sigset_t *p = &cp->uc_sigmask;
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigemptyset(p) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "print_thread_sigmask: sigemptyset");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
for (int i = 1; i < (NSIG); i++) {
|
|
|
|
if (native_irq_handlers[i].func != NULL) {
|
2013-04-15 20:08:46 +02:00
|
|
|
printf("%s: %s\n",
|
2013-06-21 03:52:57 +02:00
|
|
|
strsignal(i),
|
2013-11-22 13:49:40 +01:00
|
|
|
(sigismember(&_native_sig_set, i) ? "blocked" : "unblocked")
|
2013-04-15 20:08:46 +02:00
|
|
|
);
|
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigismember(p, i)) {
|
2013-04-15 20:08:46 +02:00
|
|
|
printf("%s: pending\n", strsignal(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_sigmasks(void)
|
|
|
|
{
|
|
|
|
ucontext_t *p;
|
|
|
|
//tcb_t *cb = NULL;
|
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
for (int i = 0; i < MAXTHREADS; i++) {
|
|
|
|
if (sched_threads[i] != NULL) {
|
2013-04-15 20:08:46 +02:00
|
|
|
printf("%s:\n", sched_threads[i]->name);
|
|
|
|
//print_thread_sigmask(sched_threads[i]->sp);
|
2013-06-21 03:52:57 +02:00
|
|
|
p = (ucontext_t *)(sched_threads[i]->stack_start);
|
2013-04-15 20:08:46 +02:00
|
|
|
print_thread_sigmask(p);
|
|
|
|
puts("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void native_print_signals()
|
|
|
|
{
|
|
|
|
sigset_t p, q;
|
|
|
|
puts("native signals:\n");
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigemptyset(&p) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_print_signals: sigemptyset");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigpending(&p) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_print_signals: sigpending");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigprocmask(SIG_SETMASK, NULL, &q) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_print_signals(): sigprocmask");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
for (int i = 1; i < (NSIG); i++) {
|
|
|
|
if (native_irq_handlers[i].func != NULL || i == SIGUSR1) {
|
2013-05-21 10:53:59 +02:00
|
|
|
printf("%s: %s in active thread\n",
|
2013-06-21 03:52:57 +02:00
|
|
|
strsignal(i),
|
2013-11-22 13:49:40 +01:00
|
|
|
(sigismember(&_native_sig_set, i) ? "blocked" : "unblocked")
|
2013-04-15 20:08:46 +02:00
|
|
|
);
|
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigismember(&p, i)) {
|
2013-04-15 20:08:46 +02:00
|
|
|
printf("%s: pending\n", strsignal(i));
|
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigismember(&q, i)) {
|
2013-05-21 10:53:59 +02:00
|
|
|
printf("%s: blocked in this context\n", strsignal(i));
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-13 21:56:56 +01:00
|
|
|
/**
|
|
|
|
* block signals
|
|
|
|
*/
|
2013-03-06 01:08:15 +01:00
|
|
|
unsigned disableIRQ(void)
|
|
|
|
{
|
|
|
|
unsigned int prev_state;
|
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
_native_syscall_enter();
|
2013-03-06 01:08:15 +01:00
|
|
|
DEBUG("disableIRQ()\n");
|
|
|
|
|
2013-06-26 23:29:09 +02:00
|
|
|
if (_native_in_isr == 1) {
|
|
|
|
DEBUG("disableIRQ + _native_in_isr\n");
|
|
|
|
}
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
if (sigprocmask(SIG_SETMASK, &_native_sig_set_dint, NULL) == -1) {
|
|
|
|
err(EXIT_FAILURE, "disableIRQ(): sigprocmask()");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
prev_state = native_interrupts_enabled;
|
|
|
|
native_interrupts_enabled = 0;
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-05-14 18:31:47 +02:00
|
|
|
DEBUG("disableIRQ(): return\n");
|
2013-11-07 17:23:08 +01:00
|
|
|
_native_syscall_leave();
|
2013-03-06 01:08:15 +01:00
|
|
|
|
|
|
|
return prev_state;
|
|
|
|
}
|
|
|
|
|
2013-03-13 21:56:56 +01:00
|
|
|
/**
|
|
|
|
* unblock signals
|
|
|
|
*/
|
2013-03-06 01:08:15 +01:00
|
|
|
unsigned enableIRQ(void)
|
|
|
|
{
|
|
|
|
unsigned int prev_state;
|
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
_native_syscall_enter();
|
2013-03-06 01:08:15 +01:00
|
|
|
DEBUG("enableIRQ()\n");
|
|
|
|
|
2013-06-26 23:29:09 +02:00
|
|
|
if (_native_in_isr == 1) {
|
|
|
|
DEBUG("enableIRQ + _native_in_isr\n");
|
|
|
|
}
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
if (sigprocmask(SIG_SETMASK, &_native_sig_set, NULL) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "enableIRQ(): sigprocmask()");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
prev_state = native_interrupts_enabled;
|
|
|
|
native_interrupts_enabled = 1;
|
2013-11-07 17:23:08 +01:00
|
|
|
_native_syscall_leave();
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-05-14 18:31:47 +02:00
|
|
|
DEBUG("enableIRQ(): return\n");
|
2013-04-15 20:08:46 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
return prev_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
void restoreIRQ(unsigned state)
|
|
|
|
{
|
|
|
|
DEBUG("restoreIRQ()\n");
|
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (state == 1) {
|
2013-03-06 01:08:15 +01:00
|
|
|
enableIRQ();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
disableIRQ();
|
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int inISR(void)
|
|
|
|
{
|
2013-05-14 18:31:47 +02:00
|
|
|
DEBUG("inISR(): %i\n", _native_in_isr);
|
|
|
|
return _native_in_isr;
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void dINT(void)
|
|
|
|
{
|
|
|
|
disableIRQ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void eINT(void)
|
|
|
|
{
|
|
|
|
enableIRQ();
|
|
|
|
}
|
|
|
|
|
2013-05-14 18:31:47 +02:00
|
|
|
int _native_popsig(void)
|
|
|
|
{
|
|
|
|
int nread, nleft, i;
|
|
|
|
int sig;
|
|
|
|
|
|
|
|
nleft = sizeof(int);
|
|
|
|
i = 0;
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
while ((nleft > 0) && ((nread = real_read(_sig_pipefd[0], ((uint8_t*)&sig) + i, nleft)) != -1)) {
|
2013-05-14 18:31:47 +02:00
|
|
|
i += nread;
|
|
|
|
nleft -= nread;
|
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (nread == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "_native_popsig(): real_read()");
|
2013-05-14 18:31:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return sig;
|
|
|
|
}
|
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
/**
|
2013-05-14 18:31:47 +02:00
|
|
|
* call signal handlers,
|
2013-03-06 01:08:15 +01:00
|
|
|
* restore user context
|
|
|
|
*/
|
|
|
|
void native_irq_handler()
|
|
|
|
{
|
2013-05-14 18:31:47 +02:00
|
|
|
int sig;
|
|
|
|
|
|
|
|
DEBUG("\n\n\t\tnative_irq_handler\n\n");
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
while (_native_sigpend > 0) {
|
2013-05-14 18:31:47 +02:00
|
|
|
|
|
|
|
sig = _native_popsig();
|
|
|
|
_native_sigpend--;
|
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (native_irq_handlers[sig].func != NULL) {
|
2013-05-14 18:31:47 +02:00
|
|
|
DEBUG("calling interrupt handler for %i\n", sig);
|
|
|
|
native_irq_handlers[sig].func();
|
|
|
|
}
|
2013-06-24 22:37:35 +02:00
|
|
|
else if (sig == SIGUSR1) {
|
2013-05-14 18:31:47 +02:00
|
|
|
DEBUG("ignoring SIGUSR1\n");
|
|
|
|
}
|
|
|
|
else {
|
2013-08-08 11:08:33 +02:00
|
|
|
DEBUG("XXX: no handler for signal %i\n", sig);
|
2013-05-14 18:31:47 +02:00
|
|
|
errx(1, "XXX: this should not have happened!\n");
|
|
|
|
}
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2014-01-22 18:23:10 +01:00
|
|
|
DEBUG("native_irq_handler(): return\n");
|
2013-03-06 01:08:15 +01:00
|
|
|
cpu_switch_context_exit();
|
|
|
|
}
|
|
|
|
|
2013-11-08 13:14:44 +01:00
|
|
|
void isr_set_sigmask(ucontext_t *ctx)
|
|
|
|
{
|
2013-11-22 13:49:40 +01:00
|
|
|
ctx->uc_sigmask = _native_sig_set_dint;
|
2013-11-08 13:14:44 +01:00
|
|
|
}
|
2013-03-06 01:08:15 +01:00
|
|
|
|
|
|
|
/**
|
2013-05-14 18:31:47 +02:00
|
|
|
* save signal, return to _native_sig_leave_tramp if possible
|
2013-03-06 01:08:15 +01:00
|
|
|
*/
|
|
|
|
void native_isr_entry(int sig, siginfo_t *info, void *context)
|
|
|
|
{
|
2013-08-04 04:06:31 +02:00
|
|
|
(void) info; /* unused at the moment */
|
2013-11-07 17:23:08 +01:00
|
|
|
//printf("\n\033[33m\n\t\tnative_isr_entry(%i)\n\n\033[0m", sig);
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
/* save the signal */
|
2013-11-07 17:23:08 +01:00
|
|
|
if (real_write(_sig_pipefd[1], &sig, sizeof(int)) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_isr_entry(): real_write()");
|
2013-05-14 18:31:47 +02:00
|
|
|
}
|
|
|
|
_native_sigpend++;
|
2013-11-07 17:23:08 +01:00
|
|
|
//real_write(STDOUT_FILENO, "sigpend\n", 8);
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-11-20 15:39:08 +01:00
|
|
|
native_isr_context.uc_stack.ss_sp = __isr_stack;
|
|
|
|
native_isr_context.uc_stack.ss_size = SIGSTKSZ;
|
|
|
|
native_isr_context.uc_stack.ss_flags = 0;
|
2013-05-14 18:31:47 +02:00
|
|
|
makecontext(&native_isr_context, native_irq_handler, 0);
|
2013-06-21 03:52:57 +02:00
|
|
|
_native_cur_ctx = (ucontext_t *)active_thread->sp;
|
2013-03-06 01:08:15 +01:00
|
|
|
|
2013-09-30 15:47:04 +02:00
|
|
|
/* XXX: Workaround safety check - whenever this happens it really
|
|
|
|
* indicates a bug in disableIRQ */
|
|
|
|
if (native_interrupts_enabled == 0) {
|
2013-11-07 17:23:08 +01:00
|
|
|
//printf("interrupts are off, but I caught a signal.\n");
|
2013-09-30 15:47:04 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-11-20 19:50:07 +01:00
|
|
|
if (_native_in_isr != 0) {
|
|
|
|
//real_write(STDOUT_FILENO, "interrupts in ISR!!\n", 20);
|
|
|
|
return;
|
|
|
|
}
|
2013-09-30 15:47:04 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (_native_in_syscall == 0) {
|
2013-05-14 18:31:47 +02:00
|
|
|
DEBUG("\n\n\t\treturn to _native_sig_leave_tramp\n\n");
|
2014-01-21 16:17:04 +01:00
|
|
|
/* disable interrupts in context */
|
2014-01-21 12:22:55 +01:00
|
|
|
isr_set_sigmask((ucontext_t *)context);
|
2013-10-16 15:33:04 +02:00
|
|
|
_native_in_isr = 1;
|
2014-01-21 16:17:04 +01:00
|
|
|
#ifdef __MACH__
|
2013-06-21 03:52:57 +02:00
|
|
|
_native_saved_eip = ((ucontext_t *)context)->uc_mcontext->__ss.__eip;
|
|
|
|
((ucontext_t *)context)->uc_mcontext->__ss.__eip = (unsigned int)&_native_sig_leave_tramp;
|
2013-06-03 13:23:57 +02:00
|
|
|
#elif BSD
|
2013-06-21 03:52:57 +02:00
|
|
|
_native_saved_eip = ((struct sigcontext *)context)->sc_eip;
|
|
|
|
((struct sigcontext *)context)->sc_eip = (unsigned int)&_native_sig_leave_tramp;
|
2013-05-15 17:45:43 +02:00
|
|
|
#else
|
2014-01-21 16:17:04 +01:00
|
|
|
//printf("\n\033[31mEIP:\t%p\ngo switching\n\n\033[0m", (void*)((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP]);
|
|
|
|
_native_saved_eip = ((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP];
|
|
|
|
((ucontext_t *)context)->uc_mcontext.gregs[REG_EIP] = (unsigned int)&_native_sig_leave_tramp;
|
2013-05-15 17:45:43 +02:00
|
|
|
#endif
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
|
|
|
else {
|
2013-05-14 18:31:47 +02:00
|
|
|
DEBUG("\n\n\t\treturn to syscall\n\n");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-03-13 21:56:56 +01:00
|
|
|
* register signal/interrupt handler for signal sig
|
|
|
|
*
|
|
|
|
* TODO: use appropriate data structure for signal
|
2013-03-06 01:08:15 +01:00
|
|
|
* handlers.
|
|
|
|
*/
|
2013-08-15 23:06:48 +02:00
|
|
|
int register_interrupt(int sig, void (*handler)(void))
|
2013-03-06 01:08:15 +01:00
|
|
|
{
|
2013-11-22 13:49:40 +01:00
|
|
|
DEBUG("register_interrupt()\n");
|
2013-03-06 01:08:15 +01:00
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
_native_syscall_enter();
|
|
|
|
if (sigdelset(&_native_sig_set, sig)) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "register_interrupt: sigdelset");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-11-22 13:49:40 +01:00
|
|
|
if (sigaddset(&_native_sig_set_dint, sig)) {
|
|
|
|
err(EXIT_FAILURE, "register_interrupt: sigaddset");
|
|
|
|
}
|
2013-03-06 01:08:15 +01:00
|
|
|
|
|
|
|
native_irq_handlers[sig].func = handler;
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
/* set current dINT sigmask for all signals */
|
|
|
|
struct sigaction sa;
|
2013-08-15 23:13:57 +02:00
|
|
|
sa.sa_sigaction = native_isr_entry;
|
2013-11-22 13:49:40 +01:00
|
|
|
sa.sa_mask = _native_sig_set_dint;
|
2013-05-14 18:31:47 +02:00
|
|
|
sa.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
|
2013-11-22 13:49:40 +01:00
|
|
|
for (int i = 0; i < 255; i++) {
|
|
|
|
if (native_irq_handlers[i].func != NULL) {
|
|
|
|
if (sigaction(sig, &sa, NULL)) {
|
|
|
|
err(EXIT_FAILURE, "register_interrupt: sigaction");
|
|
|
|
}
|
|
|
|
}
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-11-22 13:49:40 +01:00
|
|
|
_native_syscall_leave();
|
2013-03-06 01:08:15 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-03-13 21:56:56 +01:00
|
|
|
* empty signal mask
|
2013-03-06 01:08:15 +01:00
|
|
|
*/
|
|
|
|
int unregister_interrupt(int sig)
|
|
|
|
{
|
|
|
|
DEBUG("XXX: unregister_interrupt()\n");
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
_native_syscall_enter();
|
|
|
|
if (sigaddset(&_native_sig_set, sig) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "unregister_interrupt: sigaddset");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-11-22 13:49:40 +01:00
|
|
|
if (sigdelset(&_native_sig_set_dint, sig) == -1) {
|
|
|
|
err(EXIT_FAILURE, "unregister_interrupt: sigdelset");
|
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
native_irq_handlers[sig].func = NULL;
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
/* reset signal handler for sig */
|
|
|
|
struct sigaction sa;
|
|
|
|
sa.sa_handler = SIG_IGN; /* there may be late signals, so we need to ignore those */
|
|
|
|
sa.sa_mask = _native_sig_set_dint;
|
2013-05-14 18:31:47 +02:00
|
|
|
sa.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigaction(sig, &sa, NULL)) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "unregister_interrupt: sigaction");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-11-22 13:49:40 +01:00
|
|
|
/* change sigmask for remaining signal handlers */
|
|
|
|
sa.sa_sigaction = native_isr_entry;
|
|
|
|
for (int i = 0; i < 255; i++) {
|
|
|
|
if (native_irq_handlers[i].func != NULL) {
|
|
|
|
if (sigaction(sig, &sa, NULL)) {
|
|
|
|
err(EXIT_FAILURE, "register_interrupt: sigaction");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_native_syscall_leave();
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
void shutdown(int sig, siginfo_t *info, void *context)
|
2013-10-23 22:43:58 +02:00
|
|
|
{
|
2013-11-22 13:49:40 +01:00
|
|
|
(void)sig;
|
|
|
|
(void)info;
|
|
|
|
(void)context;
|
|
|
|
|
2013-10-23 22:43:58 +02:00
|
|
|
lpm_set(LPM_OFF);
|
|
|
|
}
|
2013-03-06 01:08:15 +01:00
|
|
|
|
|
|
|
/**
|
2013-03-13 21:56:56 +01:00
|
|
|
* register internal signal handler,
|
|
|
|
* initalize local variables
|
|
|
|
*
|
2013-03-06 01:08:15 +01:00
|
|
|
* TODO: see register_interrupt
|
|
|
|
*/
|
|
|
|
void native_interrupt_init(void)
|
|
|
|
{
|
|
|
|
struct sigaction sa;
|
|
|
|
DEBUG("XXX: native_interrupt_init()\n");
|
|
|
|
|
2013-09-30 14:07:10 +02:00
|
|
|
VALGRIND_STACK_REGISTER(__isr_stack, __isr_stack + sizeof(__isr_stack));
|
|
|
|
VALGRIND_DEBUG("VALGRIND_STACK_REGISTER(%p, %p)\n", __isr_stack, (void*)((int)__isr_stack + sizeof(__isr_stack)));
|
|
|
|
|
2013-04-15 20:08:46 +02:00
|
|
|
native_interrupts_enabled = 1;
|
2013-05-14 18:31:47 +02:00
|
|
|
_native_sigpend = 0;
|
2013-04-15 20:08:46 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
for (int i = 0; i < 255; i++) {
|
2013-03-06 01:08:15 +01:00
|
|
|
native_irq_handlers[i].func = NULL;
|
|
|
|
}
|
|
|
|
|
2013-08-15 23:13:57 +02:00
|
|
|
sa.sa_sigaction = native_isr_entry;
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-11-20 21:47:59 +01:00
|
|
|
if (sigfillset(&sa.sa_mask) == -1) {
|
|
|
|
err(EXIT_FAILURE, "native_interrupt_init: sigfillset");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-05-14 18:31:47 +02:00
|
|
|
sa.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
|
2013-03-06 01:08:15 +01:00
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
/* get current process interrupt masks */
|
|
|
|
if (sigprocmask(SIG_SETMASK, NULL, &_native_sig_set) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_interrupt_init(): sigprocmask");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
2013-11-22 13:49:40 +01:00
|
|
|
if (sigprocmask(SIG_SETMASK, NULL, &_native_sig_set_dint) == -1) {
|
|
|
|
err(EXIT_FAILURE, "native_isr_entry(): sigprocmask");
|
|
|
|
}
|
2013-04-15 20:08:46 +02:00
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
/* SIGUSR1 is intended for debugging purposes and shall always be
|
|
|
|
* enabled */
|
|
|
|
if (sigdelset(&_native_sig_set, SIGUSR1) == -1) {
|
|
|
|
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
|
|
|
|
}
|
|
|
|
if (sigdelset(&_native_sig_set_dint, SIGUSR1) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
/* SIGUSR1 is handled like a regular interrupt */
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigaction(SIGUSR1, &sa, NULL)) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_interrupt_init: sigaction");
|
2013-03-06 01:08:15 +01:00
|
|
|
}
|
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (getcontext(&native_isr_context) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_isr_entry(): getcontext()");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
|
|
|
|
2013-05-14 18:31:47 +02:00
|
|
|
native_isr_context.uc_stack.ss_sp = __isr_stack;
|
|
|
|
native_isr_context.uc_stack.ss_size = SIGSTKSZ;
|
|
|
|
native_isr_context.uc_stack.ss_flags = 0;
|
|
|
|
_native_isr_ctx = &native_isr_context;
|
|
|
|
|
|
|
|
static stack_t sigstk;
|
|
|
|
sigstk.ss_sp = sigalt_stk;
|
|
|
|
sigstk.ss_size = SIGSTKSZ;
|
|
|
|
sigstk.ss_flags = 0;
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-06-24 22:37:35 +02:00
|
|
|
if (sigaltstack(&sigstk, NULL) < 0) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "main: sigaltstack");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
2013-06-21 03:52:57 +02:00
|
|
|
|
2013-05-14 18:31:47 +02:00
|
|
|
makecontext(&native_isr_context, native_irq_handler, 0);
|
|
|
|
|
|
|
|
_native_in_syscall = 0;
|
2013-04-15 20:08:46 +02:00
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
if (pipe(_sig_pipefd) == -1) {
|
2013-11-20 15:25:11 +01:00
|
|
|
err(EXIT_FAILURE, "native_interrupt_init(): pipe()");
|
2013-04-15 20:08:46 +02:00
|
|
|
}
|
|
|
|
|
2013-11-22 13:49:40 +01:00
|
|
|
/* allow for ctrl+c to shut down gracefully always */
|
|
|
|
//register_interrupt(SIGINT, shutdown);
|
|
|
|
sa.sa_sigaction = shutdown;
|
|
|
|
if (sigdelset(&_native_sig_set, SIGINT) == -1) {
|
|
|
|
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
|
|
|
|
}
|
|
|
|
if (sigdelset(&_native_sig_set_dint, SIGINT) == -1) {
|
|
|
|
err(EXIT_FAILURE, "native_interrupt_init: sigdelset");
|
|
|
|
}
|
|
|
|
if (sigaction(SIGINT, &sa, NULL)) {
|
|
|
|
err(EXIT_FAILURE, "native_interrupt_init: sigaction");
|
|
|
|
}
|
2013-10-23 22:43:58 +02:00
|
|
|
|
2013-11-07 17:23:08 +01:00
|
|
|
|
2013-03-06 01:08:15 +01:00
|
|
|
puts("RIOT native interrupts/signals initialized.");
|
|
|
|
}
|
2013-03-13 21:56:56 +01:00
|
|
|
/** @} */
|