blob: a86d7cc2c2d82fa7d0e5c13d1f3188efcd660fba [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>
Richard Weinberger57a05d82016-06-12 22:03:16 +020018#include <um_malloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Sergei Trofimovich72383d42012-12-30 01:37:31 +030020void (*sig_info[NSIG])(int, struct siginfo *, struct uml_pt_regs *) = {
Jeff Dike75ada8f2008-02-04 22:31:12 -080021 [SIGTRAP] = relay_signal,
22 [SIGFPE] = relay_signal,
23 [SIGILL] = relay_signal,
24 [SIGWINCH] = winch,
25 [SIGBUS] = bus_handler,
26 [SIGSEGV] = segv_handler,
27 [SIGIO] = sigio_handler,
Anton Ivanov2eb5f312015-11-02 16:16:37 +000028 [SIGALRM] = timer_handler
29};
Jeff Dike75ada8f2008-02-04 22:31:12 -080030
Richard Weinberger9a8c1352013-07-19 11:31:36 +020031static void sig_handler_common(int sig, struct siginfo *si, mcontext_t *mc)
Jeff Dike75ada8f2008-02-04 22:31:12 -080032{
Eli Cooperb6024b22016-03-20 00:58:40 +080033 struct uml_pt_regs *r;
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080034 int save_errno = errno;
Jeff Dike75ada8f2008-02-04 22:31:12 -080035
Richard Weinberger57a05d82016-06-12 22:03:16 +020036 r = uml_kmalloc(sizeof(struct uml_pt_regs), UM_GFP_ATOMIC);
Eli Cooperb6024b22016-03-20 00:58:40 +080037 if (!r)
38 panic("out of memory");
39
40 r->is_user = 0;
Jeff Dike75ada8f2008-02-04 22:31:12 -080041 if (sig == SIGSEGV) {
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080042 /* For segfaults, we want the data from the sigcontext. */
Eli Cooperb6024b22016-03-20 00:58:40 +080043 get_regs_from_mc(r, mc);
44 GET_FAULTINFO_FROM_MC(r->faultinfo, mc);
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080045 }
Jeff Dike75ada8f2008-02-04 22:31:12 -080046
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080047 /* enable signals if sig isn't IRQ signal */
Anton Ivanov2eb5f312015-11-02 16:16:37 +000048 if ((sig != SIGIO) && (sig != SIGWINCH) && (sig != SIGALRM))
Jeff Dike75ada8f2008-02-04 22:31:12 -080049 unblock_signals();
50
Eli Cooperb6024b22016-03-20 00:58:40 +080051 (*sig_info[sig])(sig, si, r);
Jeff Dike75ada8f2008-02-04 22:31:12 -080052
53 errno = save_errno;
Eli Cooperb6024b22016-03-20 00:58:40 +080054
55 free(r);
Jeff Dike75ada8f2008-02-04 22:31:12 -080056}
57
Jeff Dikeba180fd2007-10-16 01:27:00 -070058/*
Jeff Dike61b63c52007-10-16 01:27:27 -070059 * These are the asynchronous signals. SIGPROF is excluded because we want to
Jeff Dike1d7173b2006-01-18 17:42:49 -080060 * be able to profile all of UML, not just the non-critical sections. If
61 * profiling is not thread-safe, then that is not my problem. We can disable
62 * profiling when SMP is enabled in that case.
63 */
64#define SIGIO_BIT 0
65#define SIGIO_MASK (1 << SIGIO_BIT)
66
Anton Ivanov2eb5f312015-11-02 16:16:37 +000067#define SIGALRM_BIT 1
68#define SIGALRM_MASK (1 << SIGALRM_BIT)
Jeff Dike1d7173b2006-01-18 17:42:49 -080069
Jeff Dikefce8c412008-02-04 22:31:09 -080070static int signals_enabled;
Jeff Dikecfef8f32008-02-04 22:31:16 -080071static unsigned int signals_pending;
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +000072static unsigned int signals_active = 0;
Jeff Dike1d7173b2006-01-18 17:42:49 -080073
Richard Weinberger9a8c1352013-07-19 11:31:36 +020074void sig_handler(int sig, struct siginfo *si, mcontext_t *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Jeff Dike1d7173b2006-01-18 17:42:49 -080076 int enabled;
77
Jeff Dike1d7173b2006-01-18 17:42:49 -080078 enabled = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -070079 if (!enabled && (sig == SIGIO)) {
Jeff Dikecfef8f32008-02-04 22:31:16 -080080 signals_pending |= SIGIO_MASK;
Jeff Dike1d7173b2006-01-18 17:42:49 -080081 return;
82 }
83
84 block_signals();
85
Martin Pärteld3c1cfc2012-08-02 00:49:17 +020086 sig_handler_common(sig, si, mc);
Jeff Dike1d7173b2006-01-18 17:42:49 -080087
88 set_signals(enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Anton Ivanov2eb5f312015-11-02 16:16:37 +000091static void timer_real_alarm_handler(mcontext_t *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Eli Cooperb6024b22016-03-20 00:58:40 +080093 struct uml_pt_regs *regs;
94
Richard Weinberger57a05d82016-06-12 22:03:16 +020095 regs = uml_kmalloc(sizeof(struct uml_pt_regs), UM_GFP_ATOMIC);
Eli Cooperb6024b22016-03-20 00:58:40 +080096 if (!regs)
97 panic("out of memory");
Jeff Dike2ea5bc52007-05-10 22:22:32 -070098
Al Viro248b74c2011-08-18 20:05:09 +010099 if (mc != NULL)
Eli Cooperb6024b22016-03-20 00:58:40 +0800100 get_regs_from_mc(regs, mc);
101 timer_handler(SIGALRM, NULL, regs);
102
103 free(regs);
Jeff Dike1d7173b2006-01-18 17:42:49 -0800104}
105
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000106void timer_alarm_handler(int sig, struct siginfo *unused_si, mcontext_t *mc)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800107{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800108 int enabled;
109
Jeff Dike1d7173b2006-01-18 17:42:49 -0800110 enabled = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700111 if (!signals_enabled) {
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000112 signals_pending |= SIGALRM_MASK;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800113 return;
114 }
115
116 block_signals();
117
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000118 signals_active |= SIGALRM_MASK;
119
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000120 timer_real_alarm_handler(mc);
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000121
122 signals_active &= ~SIGALRM_MASK;
123
Jeff Dike1d7173b2006-01-18 17:42:49 -0800124 set_signals(enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000127void deliver_alarm(void) {
128 timer_alarm_handler(SIGALRM, NULL, NULL);
129}
130
131void timer_set_signal_handler(void)
Jeff Dike78a26e22007-10-16 01:27:23 -0700132{
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000133 set_handler(SIGALRM);
Jeff Dike78a26e22007-10-16 01:27:23 -0700134}
135
Gennady Sharapov0805d892006-01-08 01:01:29 -0800136void set_sigstack(void *sig_stack, int size)
137{
Hans-Werner Hilse9a755512015-06-11 11:29:18 +0200138 stack_t stack = {
139 .ss_flags = 0,
140 .ss_sp = sig_stack,
141 .ss_size = size - sizeof(void *)
142 };
Gennady Sharapov0805d892006-01-08 01:01:29 -0800143
Jeff Dikeba180fd2007-10-16 01:27:00 -0700144 if (sigaltstack(&stack, NULL) != 0)
Gennady Sharapov0805d892006-01-08 01:01:29 -0800145 panic("enabling signal stack failed, errno = %d\n", errno);
146}
147
Richard Weinberger9a8c1352013-07-19 11:31:36 +0200148static void (*handlers[_NSIG])(int sig, struct siginfo *si, mcontext_t *mc) = {
Al Viro00361682011-08-18 20:04:39 +0100149 [SIGSEGV] = sig_handler,
150 [SIGBUS] = sig_handler,
151 [SIGILL] = sig_handler,
152 [SIGFPE] = sig_handler,
153 [SIGTRAP] = sig_handler,
154
155 [SIGIO] = sig_handler,
156 [SIGWINCH] = sig_handler,
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000157 [SIGALRM] = timer_alarm_handler
Al Viro00361682011-08-18 20:04:39 +0100158};
Jeff Dike4b84c692006-09-25 23:33:04 -0700159
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200160static void hard_handler(int sig, siginfo_t *si, void *p)
Jeff Dikec14b8492007-05-10 22:22:34 -0700161{
Al Viro248b74c2011-08-18 20:05:09 +0100162 struct ucontext *uc = p;
163 mcontext_t *mc = &uc->uc_mcontext;
Jeff Dike508a9272007-09-18 22:46:49 -0700164 unsigned long pending = 1UL << sig;
Jeff Dikec14b8492007-05-10 22:22:34 -0700165
166 do {
167 int nested, bail;
168
169 /*
170 * pending comes back with one bit set for each
171 * interrupt that arrived while setting up the stack,
172 * plus a bit for this interrupt, plus the zero bit is
173 * set if this is a nested interrupt.
174 * If bail is true, then we interrupted another
175 * handler setting up the stack. In this case, we
176 * have to return, and the upper handler will deal
177 * with this interrupt.
178 */
Jeff Dike508a9272007-09-18 22:46:49 -0700179 bail = to_irq_stack(&pending);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700180 if (bail)
Jeff Dikec14b8492007-05-10 22:22:34 -0700181 return;
182
183 nested = pending & 1;
184 pending &= ~1;
185
Jeff Dikeba180fd2007-10-16 01:27:00 -0700186 while ((sig = ffs(pending)) != 0){
Jeff Dikec14b8492007-05-10 22:22:34 -0700187 sig--;
188 pending &= ~(1 << sig);
Richard Weinberger9a8c1352013-07-19 11:31:36 +0200189 (*handlers[sig])(sig, (struct siginfo *)si, mc);
Jeff Dikec14b8492007-05-10 22:22:34 -0700190 }
191
Jeff Dikeba180fd2007-10-16 01:27:00 -0700192 /*
193 * Again, pending comes back with a mask of signals
Jeff Dikec14b8492007-05-10 22:22:34 -0700194 * that arrived while tearing down the stack. If this
195 * is non-zero, we just go back, set up the stack
196 * again, and handle the new interrupts.
197 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700198 if (!nested)
Jeff Dikec14b8492007-05-10 22:22:34 -0700199 pending = from_irq_stack(nested);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700200 } while (pending);
Jeff Dikec14b8492007-05-10 22:22:34 -0700201}
202
Al Viro00361682011-08-18 20:04:39 +0100203void set_handler(int sig)
Gennady Sharapov0805d892006-01-08 01:01:29 -0800204{
205 struct sigaction action;
Al Viroe87df982011-08-18 20:04:29 +0100206 int flags = SA_SIGINFO | SA_ONSTACK;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800207 sigset_t sig_mask;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800208
Al Viro7eb12252011-08-18 20:03:39 +0100209 action.sa_sigaction = hard_handler;
Jeff Dike4b84c692006-09-25 23:33:04 -0700210
Al Viroe87df982011-08-18 20:04:29 +0100211 /* block irq ones */
Gennady Sharapov0805d892006-01-08 01:01:29 -0800212 sigemptyset(&action.sa_mask);
Al Viroe87df982011-08-18 20:04:29 +0100213 sigaddset(&action.sa_mask, SIGIO);
214 sigaddset(&action.sa_mask, SIGWINCH);
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000215 sigaddset(&action.sa_mask, SIGALRM);
Jeff Dike4b84c692006-09-25 23:33:04 -0700216
Jeff Dikee6a2d1f2008-02-04 22:31:13 -0800217 if (sig == SIGSEGV)
218 flags |= SA_NODEFER;
219
Al Viroe87df982011-08-18 20:04:29 +0100220 if (sigismember(&action.sa_mask, sig))
221 flags |= SA_RESTART; /* if it's an irq signal */
222
223 action.sa_flags = flags;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800224 action.sa_restorer = NULL;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700225 if (sigaction(sig, &action, NULL) < 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800226 panic("sigaction failed - errno = %d\n", errno);
227
228 sigemptyset(&sig_mask);
229 sigaddset(&sig_mask, sig);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700230 if (sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800231 panic("sigprocmask failed - errno = %d\n", errno);
Gennady Sharapov0805d892006-01-08 01:01:29 -0800232}
233
234int change_sig(int signal, int on)
235{
Jeff Dikecfef8f32008-02-04 22:31:16 -0800236 sigset_t sigset;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800237
238 sigemptyset(&sigset);
239 sigaddset(&sigset, signal);
Jeff Dikecfef8f32008-02-04 22:31:16 -0800240 if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
WANG Congc9a30722008-02-04 22:30:35 -0800241 return -errno;
Jeff Dikecfef8f32008-02-04 22:31:16 -0800242
243 return 0;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800244}
245
Gennady Sharapov0805d892006-01-08 01:01:29 -0800246void block_signals(void)
247{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800248 signals_enabled = 0;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700249 /*
250 * This must return with signals disabled, so this barrier
Jeff Dike53b17332006-11-02 22:07:22 -0800251 * ensures that writes are flushed out before the return.
252 * This might matter if gcc figures out how to inline this and
253 * decides to shuffle this code into the caller.
254 */
Jeff Dikefce8c412008-02-04 22:31:09 -0800255 barrier();
Gennady Sharapov0805d892006-01-08 01:01:29 -0800256}
257
258void unblock_signals(void)
259{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800260 int save_pending;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800261
Jeff Dikeba180fd2007-10-16 01:27:00 -0700262 if (signals_enabled == 1)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800263 return;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800264
Jeff Dikeba180fd2007-10-16 01:27:00 -0700265 /*
266 * We loop because the IRQ handler returns with interrupts off. So,
Jeff Dike1d7173b2006-01-18 17:42:49 -0800267 * interrupts may have arrived and we need to re-enable them and
Jeff Dikecfef8f32008-02-04 22:31:16 -0800268 * recheck signals_pending.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800269 */
Jeff Dike5134d8f2008-02-08 04:22:08 -0800270 while (1) {
Jeff Dikeba180fd2007-10-16 01:27:00 -0700271 /*
272 * Save and reset save_pending after enabling signals. This
Jeff Dikecfef8f32008-02-04 22:31:16 -0800273 * way, signals_pending won't be changed while we're reading it.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800274 */
275 signals_enabled = 1;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800276
Jeff Dikeba180fd2007-10-16 01:27:00 -0700277 /*
Jeff Dikecfef8f32008-02-04 22:31:16 -0800278 * Setting signals_enabled and reading signals_pending must
Jeff Dike53b17332006-11-02 22:07:22 -0800279 * happen in this order.
280 */
Jeff Dikefce8c412008-02-04 22:31:09 -0800281 barrier();
Jeff Dike53b17332006-11-02 22:07:22 -0800282
Jeff Dikecfef8f32008-02-04 22:31:16 -0800283 save_pending = signals_pending;
Jeff Dikefce8c412008-02-04 22:31:09 -0800284 if (save_pending == 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800285 return;
286
Jeff Dikecfef8f32008-02-04 22:31:16 -0800287 signals_pending = 0;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800288
Jeff Dikeba180fd2007-10-16 01:27:00 -0700289 /*
290 * We have pending interrupts, so disable signals, as the
Jeff Dike1d7173b2006-01-18 17:42:49 -0800291 * handlers expect them off when they are called. They will
292 * be enabled again above.
293 */
294
295 signals_enabled = 0;
296
Jeff Dikeba180fd2007-10-16 01:27:00 -0700297 /*
298 * Deal with SIGIO first because the alarm handler might
Jeff Dike1d7173b2006-01-18 17:42:49 -0800299 * schedule, leaving the pending SIGIO stranded until we come
300 * back here.
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200301 *
302 * SIGIO's handler doesn't use siginfo or mcontext,
303 * so they can be NULL.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800304 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700305 if (save_pending & SIGIO_MASK)
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200306 sig_handler_common(SIGIO, NULL, NULL);
Jeff Dike1d7173b2006-01-18 17:42:49 -0800307
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000308 /* Do not reenter the handler */
309
310 if ((save_pending & SIGALRM_MASK) && (!(signals_active & SIGALRM_MASK)))
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000311 timer_real_alarm_handler(NULL);
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000312
313 /* Rerun the loop only if there is still pending SIGIO and not in TIMER handler */
314
315 if (!(signals_pending & SIGIO_MASK) && (signals_active & SIGALRM_MASK))
316 return;
317
Jeff Dike1d7173b2006-01-18 17:42:49 -0800318 }
Gennady Sharapov0805d892006-01-08 01:01:29 -0800319}
320
321int get_signals(void)
322{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800323 return signals_enabled;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800324}
325
326int set_signals(int enable)
327{
Gennady Sharapov0805d892006-01-08 01:01:29 -0800328 int ret;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700329 if (signals_enabled == enable)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800330 return enable;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800331
Jeff Dike1d7173b2006-01-18 17:42:49 -0800332 ret = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700333 if (enable)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800334 unblock_signals();
335 else block_signals();
Gennady Sharapov0805d892006-01-08 01:01:29 -0800336
Jeff Dike1d7173b2006-01-18 17:42:49 -0800337 return ret;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800338}
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200339
340int os_is_signal_stack(void)
341{
342 stack_t ss;
343 sigaltstack(NULL, &ss);
344
345 return ss.ss_flags & SS_ONSTACK;
346}