X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fkern%2Fsignal.c;h=dbe1261f2053381e7a4127e67ee084504f00bca3;hb=cf5af2b25de263a964bf29a7465cdfe536d32e59;hp=c21de17875e32d38b582d00824ab87ec8615a1b2;hpb=4cc44c9888a0336b9d01121ec0b7ad95f4a76195;p=bertos.git diff --git a/bertos/kern/signal.c b/bertos/kern/signal.c index c21de178..dbe1261f 100644 --- a/bertos/kern/signal.c +++ b/bertos/kern/signal.c @@ -26,9 +26,8 @@ * invalidate any other reasons why the executable file might be covered by * the GNU General Public License. * - * Copyright 2004 Develer S.r.l. (http://www.develer.com/) + * Copyright 2004, 2008 Develer S.r.l. (http://www.develer.com/) * Copyright 1999, 2000, 2001 Bernie Innocenti - * * --> * * \brief IPC signals implementation. @@ -93,31 +92,37 @@ * - Do not sleep between starting the asynchronous task that will fire * SIG_SINGLE, and the call to sig_wait(). * - Do not call system functions that may implicitly sleep, such as - * timer_delayTickes(). + * timer_delayTicks(). * * \version $Id$ - * * \author Bernie Innocenti */ #include "signal.h" +#include "cfg/cfg_timer.h" #include -#include +#include + +#include #include #include - + #if CONFIG_KERN_SIGNALS +// Check config dependencies +CONFIG_DEPEND(CONFIG_KERN_SIGNALS, CONFIG_KERN); + /** * Check if any of the signals in \a sigs has occurred and clear them. + * * \return the signals that have occurred. */ sigmask_t sig_check(sigmask_t sigs) { sigmask_t result; - cpuflags_t flags; + cpu_flags_t flags; IRQ_SAVE_DISABLE(flags); result = CurrentProcess->sig_recv & sigs; @@ -135,20 +140,51 @@ sigmask_t sig_check(sigmask_t sigs) sigmask_t sig_wait(sigmask_t sigs) { sigmask_t result; - cpuflags_t flags; + cpu_flags_t flags; + /* Sleeping with IRQs disabled or preemption forbidden is illegal */ + IRQ_ASSERT_ENABLED(); + ASSERT(proc_preemptAllowed()); + + /* + * This is subtle: there's a race condition where a concurrent + * process or an interrupt may call sig_signal() to set a bit in + * Process.sig_recv just after we have checked for it, but before + * we've set Process.sig_wait to let them know we want to be awaken. + * + * In this case, we'd deadlock with the signal bit already set + * and the process never being reinserted into the ready list. + */ + // FIXME: just use IRQ_DISABLE() here IRQ_SAVE_DISABLE(flags); /* Loop until we get at least one of the signals */ while (!(result = CurrentProcess->sig_recv & sigs)) { - /* go to sleep and proc_schedule() another process */ + /* + * Tell "them" that we want to be awaken when any of these + * signals arrives. + */ CurrentProcess->sig_wait = sigs; - proc_schedule(); - /* When we come back here, a signal must be arrived */ + /* + * Go to sleep and proc_switch() to another process. + * + * We re-enable IRQs because proc_switch() does not + * guarantee to save and restore the interrupt mask. + */ + IRQ_RESTORE(flags); + proc_switch(); + IRQ_SAVE_DISABLE(flags); + + /* + * When we come back here, the wait mask must have been + * cleared by someone through sig_signal(), and at least + * one of the signals we were expecting must have been + * delivered to us. + */ ASSERT(!CurrentProcess->sig_wait); - ASSERT(CurrentProcess->sig_recv); + ASSERT(CurrentProcess->sig_recv & sigs); } /* Signals found: clear them and return */ @@ -158,6 +194,9 @@ sigmask_t sig_wait(sigmask_t sigs) return result; } +#if CONFIG_TIMER_EVENTS + +#include /** * Sleep until any of the signals in \a sigs or \a timeout ticks elapse. * If the timeout elapse a SIG_TIMEOUT is added to the received signal(s). @@ -168,7 +207,7 @@ sigmask_t sig_waitTimeout(sigmask_t sigs, ticks_t timeout) { Timer t; sigmask_t res; - cpuflags_t flags; + cpu_flags_t flags; ASSERT(!sig_check(SIG_TIMEOUT)); ASSERT(!(sigs & SIG_TIMEOUT)); @@ -188,6 +227,8 @@ sigmask_t sig_waitTimeout(sigmask_t sigs, ticks_t timeout) return res; } +#endif // CONFIG_TIMER_EVENTS + /** * Send the signals \a sigs to the process \a proc. @@ -197,7 +238,9 @@ sigmask_t sig_waitTimeout(sigmask_t sigs, ticks_t timeout) */ void sig_signal(Process *proc, sigmask_t sigs) { - cpuflags_t flags; + cpu_flags_t flags; + + /* See comment in sig_wait() for why this protection is necessary */ IRQ_SAVE_DISABLE(flags); /* Set the signals */ @@ -215,4 +258,3 @@ void sig_signal(Process *proc, sigmask_t sigs) } #endif /* CONFIG_KERN_SIGNALS */ -