2 * Copyright (C) 2004 PathScale, Inc
3 * Licensed under the GPL
15 #include "signal_kern.h"
16 #include "sysdep/sigcontext.h"
17 #include "sysdep/barrier.h"
18 #include "sigcontext.h"
22 /* These are the asynchronous signals. SIGVTALRM and SIGARLM are handled
23 * together under SIGVTALRM_BIT. SIGPROF is excluded because we want to
24 * be able to profile all of UML, not just the non-critical sections. If
25 * profiling is not thread-safe, then that is not my problem. We can disable
26 * profiling when SMP is enabled in that case.
29 #define SIGIO_MASK (1 << SIGIO_BIT)
31 #define SIGVTALRM_BIT 1
32 #define SIGVTALRM_MASK (1 << SIGVTALRM_BIT)
35 #define SIGALRM_MASK (1 << SIGALRM_BIT)
37 /* These are used by both the signal handlers and
38 * block/unblock_signals. I don't want modifications cached in a
39 * register - they must go straight to memory.
41 static volatile int signals_enabled = 1;
42 static volatile int pending = 0;
44 void sig_handler(int sig, struct sigcontext *sc)
48 enabled = signals_enabled;
49 if(!enabled && (sig == SIGIO)){
50 pending |= SIGIO_MASK;
56 CHOOSE_MODE_PROC(sig_handler_common_tt, sig_handler_common_skas,
62 static void real_alarm_handler(int sig, struct sigcontext *sc)
67 CHOOSE_MODE_PROC(sig_handler_common_tt, sig_handler_common_skas,
75 void alarm_handler(int sig, struct sigcontext *sc)
79 enabled = signals_enabled;
82 pending |= SIGVTALRM_MASK;
83 else pending |= SIGALRM_MASK;
90 real_alarm_handler(sig, sc);
94 void set_sigstack(void *sig_stack, int size)
96 stack_t stack = ((stack_t) { .ss_flags = 0,
97 .ss_sp = (__ptr_t) sig_stack,
98 .ss_size = size - sizeof(void *) });
100 if(sigaltstack(&stack, NULL) != 0)
101 panic("enabling signal stack failed, errno = %d\n", errno);
104 void remove_sigstack(void)
106 stack_t stack = ((stack_t) { .ss_flags = SS_DISABLE,
110 if(sigaltstack(&stack, NULL) != 0)
111 panic("disabling signal stack failed, errno = %d\n", errno);
114 void (*handlers[_NSIG])(int sig, struct sigcontext *sc);
116 extern void hard_handler(int sig);
118 void set_handler(int sig, void (*handler)(int), int flags, ...)
120 struct sigaction action;
125 handlers[sig] = (void (*)(int, struct sigcontext *)) handler;
126 action.sa_handler = hard_handler;
128 sigemptyset(&action.sa_mask);
131 while((mask = va_arg(ap, int)) != -1)
132 sigaddset(&action.sa_mask, mask);
135 action.sa_flags = flags;
136 action.sa_restorer = NULL;
137 if(sigaction(sig, &action, NULL) < 0)
138 panic("sigaction failed - errno = %d\n", errno);
140 sigemptyset(&sig_mask);
141 sigaddset(&sig_mask, sig);
142 if(sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
143 panic("sigprocmask failed - errno = %d\n", errno);
146 int change_sig(int signal, int on)
148 sigset_t sigset, old;
150 sigemptyset(&sigset);
151 sigaddset(&sigset, signal);
152 sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, &old);
153 return(!sigismember(&old, signal));
156 void block_signals(void)
159 /* This must return with signals disabled, so this barrier
160 * ensures that writes are flushed out before the return.
161 * This might matter if gcc figures out how to inline this and
162 * decides to shuffle this code into the caller.
167 void unblock_signals(void)
171 if(signals_enabled == 1)
174 /* We loop because the IRQ handler returns with interrupts off. So,
175 * interrupts may have arrived and we need to re-enable them and
179 /* Save and reset save_pending after enabling signals. This
180 * way, pending won't be changed while we're reading it.
184 /* Setting signals_enabled and reading pending must
185 * happen in this order.
189 save_pending = pending;
190 if(save_pending == 0){
191 /* This must return with signals enabled, so
192 * this barrier ensures that writes are
193 * flushed out before the return. This might
194 * matter if gcc figures out how to inline
195 * this (unlikely, given its size) and decides
196 * to shuffle this code into the caller.
204 /* We have pending interrupts, so disable signals, as the
205 * handlers expect them off when they are called. They will
206 * be enabled again above.
211 /* Deal with SIGIO first because the alarm handler might
212 * schedule, leaving the pending SIGIO stranded until we come
215 if(save_pending & SIGIO_MASK)
216 CHOOSE_MODE_PROC(sig_handler_common_tt,
217 sig_handler_common_skas, SIGIO, NULL);
219 if(save_pending & SIGALRM_MASK)
220 real_alarm_handler(SIGALRM, NULL);
222 if(save_pending & SIGVTALRM_MASK)
223 real_alarm_handler(SIGVTALRM, NULL);
227 int get_signals(void)
229 return signals_enabled;
232 int set_signals(int enable)
235 if(signals_enabled == enable)
238 ret = signals_enabled;
241 else block_signals();