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
14 #include <as-layout.h>
15 #include <kern_util.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
,
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
));
37 panic("out of memory");
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
))
50 (*sig_info
[sig
])(sig
, si
, 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.
64 #define SIGIO_MASK (1 << SIGIO_BIT)
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
)
77 enabled
= signals_enabled
;
78 if (!enabled
&& (sig
== SIGIO
)) {
79 signals_pending
|= SIGIO_MASK
;
85 sig_handler_common(sig
, si
, mc
);
90 static void timer_real_alarm_handler(mcontext_t
*mc
)
92 struct uml_pt_regs
*regs
;
94 regs
= malloc(sizeof(struct uml_pt_regs
));
96 panic("out of memory");
99 get_regs_from_mc(regs
, mc
);
100 timer_handler(SIGALRM
, NULL
, regs
);
105 void timer_alarm_handler(int sig
, struct siginfo
*unused_si
, mcontext_t
*mc
)
109 enabled
= signals_enabled
;
110 if (!signals_enabled
) {
111 signals_pending
|= SIGALRM_MASK
;
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
)
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
;
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
);
182 nested
= pending
& 1;
185 while ((sig
= ffs(pending
)) != 0){
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.
198 pending
= from_irq_stack(nested
);
202 void set_handler(int sig
)
204 struct sigaction action
;
205 int flags
= SA_SIGINFO
| SA_ONSTACK
;
208 action
.sa_sigaction
= hard_handler
;
211 sigemptyset(&action
.sa_mask
);
212 sigaddset(&action
.sa_mask
, SIGIO
);
213 sigaddset(&action
.sa_mask
, SIGWINCH
);
214 sigaddset(&action
.sa_mask
, SIGALRM
);
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
)
237 sigemptyset(&sigset
);
238 sigaddset(&sigset
, signal
);
239 if (sigprocmask(on
? SIG_UNBLOCK
: SIG_BLOCK
, &sigset
, NULL
) < 0)
245 void block_signals(void)
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.
257 void unblock_signals(void)
261 if (signals_enabled
== 1)
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.
271 * Save and reset save_pending after enabling signals. This
272 * way, signals_pending won't be changed while we're reading it.
277 * Setting signals_enabled and reading signals_pending must
278 * happen in this order.
282 save_pending
= signals_pending
;
283 if (save_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.
297 * Deal with SIGIO first because the alarm handler might
298 * schedule, leaving the pending SIGIO stranded until we come
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
))
320 int get_signals(void)
322 return signals_enabled
;
325 int set_signals(int enable
)
328 if (signals_enabled
== enable
)
331 ret
= signals_enabled
;
334 else block_signals();
339 int os_is_signal_stack(void)
342 sigaltstack(NULL
, &ss
);
344 return ss
.ss_flags
& SS_ONSTACK
;