drm/i915: Mark the context and address space as closed
[linux/fpc-iii.git] / arch / um / os-Linux / signal.c
blob8acaf4e384c0fc45612819f18b97cfe1ce3e1771
1 /*
2 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk})
3 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de)
4 * Copyright (C) 2004 PathScale, Inc
5 * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
6 * Licensed under the GPL
7 */
9 #include <stdlib.h>
10 #include <stdarg.h>
11 #include <errno.h>
12 #include <signal.h>
13 #include <strings.h>
14 #include <as-layout.h>
15 #include <kern_util.h>
16 #include <os.h>
17 #include <sysdep/mcontext.h>
19 void (*sig_info[NSIG])(int, struct siginfo *, struct uml_pt_regs *) = {
20 [SIGTRAP] = relay_signal,
21 [SIGFPE] = relay_signal,
22 [SIGILL] = relay_signal,
23 [SIGWINCH] = winch,
24 [SIGBUS] = bus_handler,
25 [SIGSEGV] = segv_handler,
26 [SIGIO] = sigio_handler,
27 [SIGALRM] = timer_handler
30 static void sig_handler_common(int sig, struct siginfo *si, mcontext_t *mc)
32 struct uml_pt_regs *r;
33 int save_errno = errno;
35 r = malloc(sizeof(struct uml_pt_regs));
36 if (!r)
37 panic("out of memory");
39 r->is_user = 0;
40 if (sig == SIGSEGV) {
41 /* For segfaults, we want the data from the sigcontext. */
42 get_regs_from_mc(r, mc);
43 GET_FAULTINFO_FROM_MC(r->faultinfo, mc);
46 /* enable signals if sig isn't IRQ signal */
47 if ((sig != SIGIO) && (sig != SIGWINCH) && (sig != SIGALRM))
48 unblock_signals();
50 (*sig_info[sig])(sig, si, r);
52 errno = save_errno;
54 free(r);
58 * These are the asynchronous signals. SIGPROF is excluded because we want to
59 * be able to profile all of UML, not just the non-critical sections. If
60 * profiling is not thread-safe, then that is not my problem. We can disable
61 * profiling when SMP is enabled in that case.
63 #define SIGIO_BIT 0
64 #define SIGIO_MASK (1 << SIGIO_BIT)
66 #define SIGALRM_BIT 1
67 #define SIGALRM_MASK (1 << SIGALRM_BIT)
69 static int signals_enabled;
70 static unsigned int signals_pending;
71 static unsigned int signals_active = 0;
73 void sig_handler(int sig, struct siginfo *si, mcontext_t *mc)
75 int enabled;
77 enabled = signals_enabled;
78 if (!enabled && (sig == SIGIO)) {
79 signals_pending |= SIGIO_MASK;
80 return;
83 block_signals();
85 sig_handler_common(sig, si, mc);
87 set_signals(enabled);
90 static void timer_real_alarm_handler(mcontext_t *mc)
92 struct uml_pt_regs *regs;
94 regs = malloc(sizeof(struct uml_pt_regs));
95 if (!regs)
96 panic("out of memory");
98 if (mc != NULL)
99 get_regs_from_mc(regs, mc);
100 timer_handler(SIGALRM, NULL, regs);
102 free(regs);
105 void timer_alarm_handler(int sig, struct siginfo *unused_si, mcontext_t *mc)
107 int enabled;
109 enabled = signals_enabled;
110 if (!signals_enabled) {
111 signals_pending |= SIGALRM_MASK;
112 return;
115 block_signals();
117 signals_active |= SIGALRM_MASK;
119 timer_real_alarm_handler(mc);
121 signals_active &= ~SIGALRM_MASK;
123 set_signals(enabled);
126 void deliver_alarm(void) {
127 timer_alarm_handler(SIGALRM, NULL, NULL);
130 void timer_set_signal_handler(void)
132 set_handler(SIGALRM);
135 void set_sigstack(void *sig_stack, int size)
137 stack_t stack = {
138 .ss_flags = 0,
139 .ss_sp = sig_stack,
140 .ss_size = size - sizeof(void *)
143 if (sigaltstack(&stack, NULL) != 0)
144 panic("enabling signal stack failed, errno = %d\n", errno);
147 static void (*handlers[_NSIG])(int sig, struct siginfo *si, mcontext_t *mc) = {
148 [SIGSEGV] = sig_handler,
149 [SIGBUS] = sig_handler,
150 [SIGILL] = sig_handler,
151 [SIGFPE] = sig_handler,
152 [SIGTRAP] = sig_handler,
154 [SIGIO] = sig_handler,
155 [SIGWINCH] = sig_handler,
156 [SIGALRM] = timer_alarm_handler
159 static void hard_handler(int sig, siginfo_t *si, void *p)
161 struct ucontext *uc = p;
162 mcontext_t *mc = &uc->uc_mcontext;
163 unsigned long pending = 1UL << sig;
165 do {
166 int nested, bail;
169 * pending comes back with one bit set for each
170 * interrupt that arrived while setting up the stack,
171 * plus a bit for this interrupt, plus the zero bit is
172 * set if this is a nested interrupt.
173 * If bail is true, then we interrupted another
174 * handler setting up the stack. In this case, we
175 * have to return, and the upper handler will deal
176 * with this interrupt.
178 bail = to_irq_stack(&pending);
179 if (bail)
180 return;
182 nested = pending & 1;
183 pending &= ~1;
185 while ((sig = ffs(pending)) != 0){
186 sig--;
187 pending &= ~(1 << sig);
188 (*handlers[sig])(sig, (struct siginfo *)si, mc);
192 * Again, pending comes back with a mask of signals
193 * that arrived while tearing down the stack. If this
194 * is non-zero, we just go back, set up the stack
195 * again, and handle the new interrupts.
197 if (!nested)
198 pending = from_irq_stack(nested);
199 } while (pending);
202 void set_handler(int sig)
204 struct sigaction action;
205 int flags = SA_SIGINFO | SA_ONSTACK;
206 sigset_t sig_mask;
208 action.sa_sigaction = hard_handler;
210 /* block irq ones */
211 sigemptyset(&action.sa_mask);
212 sigaddset(&action.sa_mask, SIGIO);
213 sigaddset(&action.sa_mask, SIGWINCH);
214 sigaddset(&action.sa_mask, SIGALRM);
216 if (sig == SIGSEGV)
217 flags |= SA_NODEFER;
219 if (sigismember(&action.sa_mask, sig))
220 flags |= SA_RESTART; /* if it's an irq signal */
222 action.sa_flags = flags;
223 action.sa_restorer = NULL;
224 if (sigaction(sig, &action, NULL) < 0)
225 panic("sigaction failed - errno = %d\n", errno);
227 sigemptyset(&sig_mask);
228 sigaddset(&sig_mask, sig);
229 if (sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
230 panic("sigprocmask failed - errno = %d\n", errno);
233 int change_sig(int signal, int on)
235 sigset_t sigset;
237 sigemptyset(&sigset);
238 sigaddset(&sigset, signal);
239 if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
240 return -errno;
242 return 0;
245 void block_signals(void)
247 signals_enabled = 0;
249 * This must return with signals disabled, so this barrier
250 * ensures that writes are flushed out before the return.
251 * This might matter if gcc figures out how to inline this and
252 * decides to shuffle this code into the caller.
254 barrier();
257 void unblock_signals(void)
259 int save_pending;
261 if (signals_enabled == 1)
262 return;
265 * We loop because the IRQ handler returns with interrupts off. So,
266 * interrupts may have arrived and we need to re-enable them and
267 * recheck signals_pending.
269 while (1) {
271 * Save and reset save_pending after enabling signals. This
272 * way, signals_pending won't be changed while we're reading it.
274 signals_enabled = 1;
277 * Setting signals_enabled and reading signals_pending must
278 * happen in this order.
280 barrier();
282 save_pending = signals_pending;
283 if (save_pending == 0)
284 return;
286 signals_pending = 0;
289 * We have pending interrupts, so disable signals, as the
290 * handlers expect them off when they are called. They will
291 * be enabled again above.
294 signals_enabled = 0;
297 * Deal with SIGIO first because the alarm handler might
298 * schedule, leaving the pending SIGIO stranded until we come
299 * back here.
301 * SIGIO's handler doesn't use siginfo or mcontext,
302 * so they can be NULL.
304 if (save_pending & SIGIO_MASK)
305 sig_handler_common(SIGIO, NULL, NULL);
307 /* Do not reenter the handler */
309 if ((save_pending & SIGALRM_MASK) && (!(signals_active & SIGALRM_MASK)))
310 timer_real_alarm_handler(NULL);
312 /* Rerun the loop only if there is still pending SIGIO and not in TIMER handler */
314 if (!(signals_pending & SIGIO_MASK) && (signals_active & SIGALRM_MASK))
315 return;
320 int get_signals(void)
322 return signals_enabled;
325 int set_signals(int enable)
327 int ret;
328 if (signals_enabled == enable)
329 return enable;
331 ret = signals_enabled;
332 if (enable)
333 unblock_signals();
334 else block_signals();
336 return ret;
339 int os_is_signal_stack(void)
341 stack_t ss;
342 sigaltstack(NULL, &ss);
344 return ss.ss_flags & SS_ONSTACK;