blob: c211153ca69a18f95d74cd6661ecffcb91e270bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Anton Ivanov2eb5f312015-11-02 16:16:37 +00002 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk})
3 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 2004 PathScale, Inc
Jeff Dikeba180fd2007-10-16 01:27:00 -07005 * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Licensed under the GPL
7 */
8
Gennady Sharapov0805d892006-01-08 01:01:29 -08009#include <stdlib.h>
Gennady Sharapov0805d892006-01-08 01:01:29 -080010#include <stdarg.h>
Jeff Dikeba180fd2007-10-16 01:27:00 -070011#include <errno.h>
12#include <signal.h>
13#include <strings.h>
Al Viro37185b32012-10-08 03:27:32 +010014#include <as-layout.h>
15#include <kern_util.h>
16#include <os.h>
17#include <sysdep/mcontext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Sergei Trofimovich72383d42012-12-30 01:37:31 +030019void (*sig_info[NSIG])(int, struct siginfo *, struct uml_pt_regs *) = {
Jeff Dike75ada8f2008-02-04 22:31:12 -080020 [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,
Anton Ivanov2eb5f312015-11-02 16:16:37 +000027 [SIGALRM] = timer_handler
28};
Jeff Dike75ada8f2008-02-04 22:31:12 -080029
Richard Weinberger9a8c1352013-07-19 11:31:36 +020030static void sig_handler_common(int sig, struct siginfo *si, mcontext_t *mc)
Jeff Dike75ada8f2008-02-04 22:31:12 -080031{
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080032 struct uml_pt_regs r;
33 int save_errno = errno;
Jeff Dike75ada8f2008-02-04 22:31:12 -080034
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080035 r.is_user = 0;
Jeff Dike75ada8f2008-02-04 22:31:12 -080036 if (sig == SIGSEGV) {
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080037 /* For segfaults, we want the data from the sigcontext. */
Al Viroab1c0cc2011-08-18 20:05:19 +010038 get_regs_from_mc(&r, mc);
Al Viro248b74c2011-08-18 20:05:09 +010039 GET_FAULTINFO_FROM_MC(r.faultinfo, mc);
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080040 }
Jeff Dike75ada8f2008-02-04 22:31:12 -080041
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080042 /* enable signals if sig isn't IRQ signal */
Anton Ivanov2eb5f312015-11-02 16:16:37 +000043 if ((sig != SIGIO) && (sig != SIGWINCH) && (sig != SIGALRM))
Jeff Dike75ada8f2008-02-04 22:31:12 -080044 unblock_signals();
45
Martin Pärteld3c1cfc2012-08-02 00:49:17 +020046 (*sig_info[sig])(sig, si, &r);
Jeff Dike75ada8f2008-02-04 22:31:12 -080047
48 errno = save_errno;
Jeff Dike75ada8f2008-02-04 22:31:12 -080049}
50
Jeff Dikeba180fd2007-10-16 01:27:00 -070051/*
Jeff Dike61b63c52007-10-16 01:27:27 -070052 * These are the asynchronous signals. SIGPROF is excluded because we want to
Jeff Dike1d7173b2006-01-18 17:42:49 -080053 * be able to profile all of UML, not just the non-critical sections. If
54 * profiling is not thread-safe, then that is not my problem. We can disable
55 * profiling when SMP is enabled in that case.
56 */
57#define SIGIO_BIT 0
58#define SIGIO_MASK (1 << SIGIO_BIT)
59
Anton Ivanov2eb5f312015-11-02 16:16:37 +000060#define SIGALRM_BIT 1
61#define SIGALRM_MASK (1 << SIGALRM_BIT)
Jeff Dike1d7173b2006-01-18 17:42:49 -080062
Jeff Dikefce8c412008-02-04 22:31:09 -080063static int signals_enabled;
Jeff Dikecfef8f32008-02-04 22:31:16 -080064static unsigned int signals_pending;
Jeff Dike1d7173b2006-01-18 17:42:49 -080065
Richard Weinberger9a8c1352013-07-19 11:31:36 +020066void sig_handler(int sig, struct siginfo *si, mcontext_t *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
Jeff Dike1d7173b2006-01-18 17:42:49 -080068 int enabled;
69
Jeff Dike1d7173b2006-01-18 17:42:49 -080070 enabled = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -070071 if (!enabled && (sig == SIGIO)) {
Jeff Dikecfef8f32008-02-04 22:31:16 -080072 signals_pending |= SIGIO_MASK;
Jeff Dike1d7173b2006-01-18 17:42:49 -080073 return;
74 }
75
76 block_signals();
77
Martin Pärteld3c1cfc2012-08-02 00:49:17 +020078 sig_handler_common(sig, si, mc);
Jeff Dike1d7173b2006-01-18 17:42:49 -080079
80 set_signals(enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Anton Ivanov2eb5f312015-11-02 16:16:37 +000083static void timer_real_alarm_handler(mcontext_t *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Jeff Dike77bf4402007-10-16 01:26:58 -070085 struct uml_pt_regs regs;
Jeff Dike2ea5bc52007-05-10 22:22:32 -070086
Al Viro248b74c2011-08-18 20:05:09 +010087 if (mc != NULL)
Al Viroab1c0cc2011-08-18 20:05:19 +010088 get_regs_from_mc(&regs, mc);
Anton Ivanov2eb5f312015-11-02 16:16:37 +000089 timer_handler(SIGALRM, NULL, &regs);
Jeff Dike1d7173b2006-01-18 17:42:49 -080090}
91
Anton Ivanov2eb5f312015-11-02 16:16:37 +000092void timer_alarm_handler(int sig, struct siginfo *unused_si, mcontext_t *mc)
Jeff Dike1d7173b2006-01-18 17:42:49 -080093{
Jeff Dike1d7173b2006-01-18 17:42:49 -080094 int enabled;
95
Jeff Dike1d7173b2006-01-18 17:42:49 -080096 enabled = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -070097 if (!signals_enabled) {
Anton Ivanov2eb5f312015-11-02 16:16:37 +000098 signals_pending |= SIGALRM_MASK;
Jeff Dike1d7173b2006-01-18 17:42:49 -080099 return;
100 }
101
102 block_signals();
103
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000104 timer_real_alarm_handler(mc);
Jeff Dike1d7173b2006-01-18 17:42:49 -0800105 set_signals(enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000108void deliver_alarm(void) {
109 timer_alarm_handler(SIGALRM, NULL, NULL);
110}
111
112void timer_set_signal_handler(void)
Jeff Dike78a26e22007-10-16 01:27:23 -0700113{
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000114 set_handler(SIGALRM);
Jeff Dike78a26e22007-10-16 01:27:23 -0700115}
116
Gennady Sharapov0805d892006-01-08 01:01:29 -0800117void set_sigstack(void *sig_stack, int size)
118{
Hans-Werner Hilse9a755512015-06-11 11:29:18 +0200119 stack_t stack = {
120 .ss_flags = 0,
121 .ss_sp = sig_stack,
122 .ss_size = size - sizeof(void *)
123 };
Gennady Sharapov0805d892006-01-08 01:01:29 -0800124
Jeff Dikeba180fd2007-10-16 01:27:00 -0700125 if (sigaltstack(&stack, NULL) != 0)
Gennady Sharapov0805d892006-01-08 01:01:29 -0800126 panic("enabling signal stack failed, errno = %d\n", errno);
127}
128
Richard Weinberger9a8c1352013-07-19 11:31:36 +0200129static void (*handlers[_NSIG])(int sig, struct siginfo *si, mcontext_t *mc) = {
Al Viro00361682011-08-18 20:04:39 +0100130 [SIGSEGV] = sig_handler,
131 [SIGBUS] = sig_handler,
132 [SIGILL] = sig_handler,
133 [SIGFPE] = sig_handler,
134 [SIGTRAP] = sig_handler,
135
136 [SIGIO] = sig_handler,
137 [SIGWINCH] = sig_handler,
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000138 [SIGALRM] = timer_alarm_handler
Al Viro00361682011-08-18 20:04:39 +0100139};
Jeff Dike4b84c692006-09-25 23:33:04 -0700140
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200141static void hard_handler(int sig, siginfo_t *si, void *p)
Jeff Dikec14b8492007-05-10 22:22:34 -0700142{
Al Viro248b74c2011-08-18 20:05:09 +0100143 struct ucontext *uc = p;
144 mcontext_t *mc = &uc->uc_mcontext;
Jeff Dike508a9272007-09-18 22:46:49 -0700145 unsigned long pending = 1UL << sig;
Jeff Dikec14b8492007-05-10 22:22:34 -0700146
147 do {
148 int nested, bail;
149
150 /*
151 * pending comes back with one bit set for each
152 * interrupt that arrived while setting up the stack,
153 * plus a bit for this interrupt, plus the zero bit is
154 * set if this is a nested interrupt.
155 * If bail is true, then we interrupted another
156 * handler setting up the stack. In this case, we
157 * have to return, and the upper handler will deal
158 * with this interrupt.
159 */
Jeff Dike508a9272007-09-18 22:46:49 -0700160 bail = to_irq_stack(&pending);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700161 if (bail)
Jeff Dikec14b8492007-05-10 22:22:34 -0700162 return;
163
164 nested = pending & 1;
165 pending &= ~1;
166
Jeff Dikeba180fd2007-10-16 01:27:00 -0700167 while ((sig = ffs(pending)) != 0){
Jeff Dikec14b8492007-05-10 22:22:34 -0700168 sig--;
169 pending &= ~(1 << sig);
Richard Weinberger9a8c1352013-07-19 11:31:36 +0200170 (*handlers[sig])(sig, (struct siginfo *)si, mc);
Jeff Dikec14b8492007-05-10 22:22:34 -0700171 }
172
Jeff Dikeba180fd2007-10-16 01:27:00 -0700173 /*
174 * Again, pending comes back with a mask of signals
Jeff Dikec14b8492007-05-10 22:22:34 -0700175 * that arrived while tearing down the stack. If this
176 * is non-zero, we just go back, set up the stack
177 * again, and handle the new interrupts.
178 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700179 if (!nested)
Jeff Dikec14b8492007-05-10 22:22:34 -0700180 pending = from_irq_stack(nested);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700181 } while (pending);
Jeff Dikec14b8492007-05-10 22:22:34 -0700182}
183
Al Viro00361682011-08-18 20:04:39 +0100184void set_handler(int sig)
Gennady Sharapov0805d892006-01-08 01:01:29 -0800185{
186 struct sigaction action;
Al Viroe87df982011-08-18 20:04:29 +0100187 int flags = SA_SIGINFO | SA_ONSTACK;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800188 sigset_t sig_mask;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800189
Al Viro7eb12252011-08-18 20:03:39 +0100190 action.sa_sigaction = hard_handler;
Jeff Dike4b84c692006-09-25 23:33:04 -0700191
Al Viroe87df982011-08-18 20:04:29 +0100192 /* block irq ones */
Gennady Sharapov0805d892006-01-08 01:01:29 -0800193 sigemptyset(&action.sa_mask);
Al Viroe87df982011-08-18 20:04:29 +0100194 sigaddset(&action.sa_mask, SIGIO);
195 sigaddset(&action.sa_mask, SIGWINCH);
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000196 sigaddset(&action.sa_mask, SIGALRM);
Jeff Dike4b84c692006-09-25 23:33:04 -0700197
Jeff Dikee6a2d1f2008-02-04 22:31:13 -0800198 if (sig == SIGSEGV)
199 flags |= SA_NODEFER;
200
Al Viroe87df982011-08-18 20:04:29 +0100201 if (sigismember(&action.sa_mask, sig))
202 flags |= SA_RESTART; /* if it's an irq signal */
203
204 action.sa_flags = flags;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800205 action.sa_restorer = NULL;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700206 if (sigaction(sig, &action, NULL) < 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800207 panic("sigaction failed - errno = %d\n", errno);
208
209 sigemptyset(&sig_mask);
210 sigaddset(&sig_mask, sig);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700211 if (sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800212 panic("sigprocmask failed - errno = %d\n", errno);
Gennady Sharapov0805d892006-01-08 01:01:29 -0800213}
214
215int change_sig(int signal, int on)
216{
Jeff Dikecfef8f32008-02-04 22:31:16 -0800217 sigset_t sigset;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800218
219 sigemptyset(&sigset);
220 sigaddset(&sigset, signal);
Jeff Dikecfef8f32008-02-04 22:31:16 -0800221 if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
WANG Congc9a30722008-02-04 22:30:35 -0800222 return -errno;
Jeff Dikecfef8f32008-02-04 22:31:16 -0800223
224 return 0;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800225}
226
Gennady Sharapov0805d892006-01-08 01:01:29 -0800227void block_signals(void)
228{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800229 signals_enabled = 0;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700230 /*
231 * This must return with signals disabled, so this barrier
Jeff Dike53b17332006-11-02 22:07:22 -0800232 * ensures that writes are flushed out before the return.
233 * This might matter if gcc figures out how to inline this and
234 * decides to shuffle this code into the caller.
235 */
Jeff Dikefce8c412008-02-04 22:31:09 -0800236 barrier();
Gennady Sharapov0805d892006-01-08 01:01:29 -0800237}
238
239void unblock_signals(void)
240{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800241 int save_pending;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800242
Jeff Dikeba180fd2007-10-16 01:27:00 -0700243 if (signals_enabled == 1)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800244 return;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800245
Jeff Dikeba180fd2007-10-16 01:27:00 -0700246 /*
247 * We loop because the IRQ handler returns with interrupts off. So,
Jeff Dike1d7173b2006-01-18 17:42:49 -0800248 * interrupts may have arrived and we need to re-enable them and
Jeff Dikecfef8f32008-02-04 22:31:16 -0800249 * recheck signals_pending.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800250 */
Jeff Dike5134d8f2008-02-08 04:22:08 -0800251 while (1) {
Jeff Dikeba180fd2007-10-16 01:27:00 -0700252 /*
253 * Save and reset save_pending after enabling signals. This
Jeff Dikecfef8f32008-02-04 22:31:16 -0800254 * way, signals_pending won't be changed while we're reading it.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800255 */
256 signals_enabled = 1;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800257
Jeff Dikeba180fd2007-10-16 01:27:00 -0700258 /*
Jeff Dikecfef8f32008-02-04 22:31:16 -0800259 * Setting signals_enabled and reading signals_pending must
Jeff Dike53b17332006-11-02 22:07:22 -0800260 * happen in this order.
261 */
Jeff Dikefce8c412008-02-04 22:31:09 -0800262 barrier();
Jeff Dike53b17332006-11-02 22:07:22 -0800263
Jeff Dikecfef8f32008-02-04 22:31:16 -0800264 save_pending = signals_pending;
Jeff Dikefce8c412008-02-04 22:31:09 -0800265 if (save_pending == 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800266 return;
267
Jeff Dikecfef8f32008-02-04 22:31:16 -0800268 signals_pending = 0;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800269
Jeff Dikeba180fd2007-10-16 01:27:00 -0700270 /*
271 * We have pending interrupts, so disable signals, as the
Jeff Dike1d7173b2006-01-18 17:42:49 -0800272 * handlers expect them off when they are called. They will
273 * be enabled again above.
274 */
275
276 signals_enabled = 0;
277
Jeff Dikeba180fd2007-10-16 01:27:00 -0700278 /*
279 * Deal with SIGIO first because the alarm handler might
Jeff Dike1d7173b2006-01-18 17:42:49 -0800280 * schedule, leaving the pending SIGIO stranded until we come
281 * back here.
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200282 *
283 * SIGIO's handler doesn't use siginfo or mcontext,
284 * so they can be NULL.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800285 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700286 if (save_pending & SIGIO_MASK)
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200287 sig_handler_common(SIGIO, NULL, NULL);
Jeff Dike1d7173b2006-01-18 17:42:49 -0800288
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000289 if (save_pending & SIGALRM_MASK)
290 timer_real_alarm_handler(NULL);
Jeff Dike1d7173b2006-01-18 17:42:49 -0800291 }
Gennady Sharapov0805d892006-01-08 01:01:29 -0800292}
293
294int get_signals(void)
295{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800296 return signals_enabled;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800297}
298
299int set_signals(int enable)
300{
Gennady Sharapov0805d892006-01-08 01:01:29 -0800301 int ret;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700302 if (signals_enabled == enable)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800303 return enable;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800304
Jeff Dike1d7173b2006-01-18 17:42:49 -0800305 ret = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700306 if (enable)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800307 unblock_signals();
308 else block_signals();
Gennady Sharapov0805d892006-01-08 01:01:29 -0800309
Jeff Dike1d7173b2006-01-18 17:42:49 -0800310 return ret;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800311}
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200312
313int os_is_signal_stack(void)
314{
315 stack_t ss;
316 sigaltstack(NULL, &ss);
317
318 return ss.ss_flags & SS_ONSTACK;
319}