blob: 8acaf4e384c0fc45612819f18b97cfe1ce3e1771 [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{
Eli Cooperb6024b22016-03-20 00:58:40 +080032 struct uml_pt_regs *r;
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080033 int save_errno = errno;
Jeff Dike75ada8f2008-02-04 22:31:12 -080034
Eli Cooperb6024b22016-03-20 00:58:40 +080035 r = malloc(sizeof(struct uml_pt_regs));
36 if (!r)
37 panic("out of memory");
38
39 r->is_user = 0;
Jeff Dike75ada8f2008-02-04 22:31:12 -080040 if (sig == SIGSEGV) {
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080041 /* For segfaults, we want the data from the sigcontext. */
Eli Cooperb6024b22016-03-20 00:58:40 +080042 get_regs_from_mc(r, mc);
43 GET_FAULTINFO_FROM_MC(r->faultinfo, mc);
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080044 }
Jeff Dike75ada8f2008-02-04 22:31:12 -080045
Jeff Dikee6a2d1f2008-02-04 22:31:13 -080046 /* enable signals if sig isn't IRQ signal */
Anton Ivanov2eb5f312015-11-02 16:16:37 +000047 if ((sig != SIGIO) && (sig != SIGWINCH) && (sig != SIGALRM))
Jeff Dike75ada8f2008-02-04 22:31:12 -080048 unblock_signals();
49
Eli Cooperb6024b22016-03-20 00:58:40 +080050 (*sig_info[sig])(sig, si, r);
Jeff Dike75ada8f2008-02-04 22:31:12 -080051
52 errno = save_errno;
Eli Cooperb6024b22016-03-20 00:58:40 +080053
54 free(r);
Jeff Dike75ada8f2008-02-04 22:31:12 -080055}
56
Jeff Dikeba180fd2007-10-16 01:27:00 -070057/*
Jeff Dike61b63c52007-10-16 01:27:27 -070058 * These are the asynchronous signals. SIGPROF is excluded because we want to
Jeff Dike1d7173b2006-01-18 17:42:49 -080059 * 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.
62 */
63#define SIGIO_BIT 0
64#define SIGIO_MASK (1 << SIGIO_BIT)
65
Anton Ivanov2eb5f312015-11-02 16:16:37 +000066#define SIGALRM_BIT 1
67#define SIGALRM_MASK (1 << SIGALRM_BIT)
Jeff Dike1d7173b2006-01-18 17:42:49 -080068
Jeff Dikefce8c412008-02-04 22:31:09 -080069static int signals_enabled;
Jeff Dikecfef8f32008-02-04 22:31:16 -080070static unsigned int signals_pending;
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +000071static unsigned int signals_active = 0;
Jeff Dike1d7173b2006-01-18 17:42:49 -080072
Richard Weinberger9a8c1352013-07-19 11:31:36 +020073void sig_handler(int sig, struct siginfo *si, mcontext_t *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Jeff Dike1d7173b2006-01-18 17:42:49 -080075 int enabled;
76
Jeff Dike1d7173b2006-01-18 17:42:49 -080077 enabled = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -070078 if (!enabled && (sig == SIGIO)) {
Jeff Dikecfef8f32008-02-04 22:31:16 -080079 signals_pending |= SIGIO_MASK;
Jeff Dike1d7173b2006-01-18 17:42:49 -080080 return;
81 }
82
83 block_signals();
84
Martin Pärteld3c1cfc2012-08-02 00:49:17 +020085 sig_handler_common(sig, si, mc);
Jeff Dike1d7173b2006-01-18 17:42:49 -080086
87 set_signals(enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Anton Ivanov2eb5f312015-11-02 16:16:37 +000090static void timer_real_alarm_handler(mcontext_t *mc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Eli Cooperb6024b22016-03-20 00:58:40 +080092 struct uml_pt_regs *regs;
93
94 regs = malloc(sizeof(struct uml_pt_regs));
95 if (!regs)
96 panic("out of memory");
Jeff Dike2ea5bc52007-05-10 22:22:32 -070097
Al Viro248b74c2011-08-18 20:05:09 +010098 if (mc != NULL)
Eli Cooperb6024b22016-03-20 00:58:40 +080099 get_regs_from_mc(regs, mc);
100 timer_handler(SIGALRM, NULL, regs);
101
102 free(regs);
Jeff Dike1d7173b2006-01-18 17:42:49 -0800103}
104
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000105void timer_alarm_handler(int sig, struct siginfo *unused_si, mcontext_t *mc)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800106{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800107 int enabled;
108
Jeff Dike1d7173b2006-01-18 17:42:49 -0800109 enabled = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700110 if (!signals_enabled) {
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000111 signals_pending |= SIGALRM_MASK;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800112 return;
113 }
114
115 block_signals();
116
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000117 signals_active |= SIGALRM_MASK;
118
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000119 timer_real_alarm_handler(mc);
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000120
121 signals_active &= ~SIGALRM_MASK;
122
Jeff Dike1d7173b2006-01-18 17:42:49 -0800123 set_signals(enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000126void deliver_alarm(void) {
127 timer_alarm_handler(SIGALRM, NULL, NULL);
128}
129
130void timer_set_signal_handler(void)
Jeff Dike78a26e22007-10-16 01:27:23 -0700131{
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000132 set_handler(SIGALRM);
Jeff Dike78a26e22007-10-16 01:27:23 -0700133}
134
Gennady Sharapov0805d892006-01-08 01:01:29 -0800135void set_sigstack(void *sig_stack, int size)
136{
Hans-Werner Hilse9a755512015-06-11 11:29:18 +0200137 stack_t stack = {
138 .ss_flags = 0,
139 .ss_sp = sig_stack,
140 .ss_size = size - sizeof(void *)
141 };
Gennady Sharapov0805d892006-01-08 01:01:29 -0800142
Jeff Dikeba180fd2007-10-16 01:27:00 -0700143 if (sigaltstack(&stack, NULL) != 0)
Gennady Sharapov0805d892006-01-08 01:01:29 -0800144 panic("enabling signal stack failed, errno = %d\n", errno);
145}
146
Richard Weinberger9a8c1352013-07-19 11:31:36 +0200147static void (*handlers[_NSIG])(int sig, struct siginfo *si, mcontext_t *mc) = {
Al Viro00361682011-08-18 20:04:39 +0100148 [SIGSEGV] = sig_handler,
149 [SIGBUS] = sig_handler,
150 [SIGILL] = sig_handler,
151 [SIGFPE] = sig_handler,
152 [SIGTRAP] = sig_handler,
153
154 [SIGIO] = sig_handler,
155 [SIGWINCH] = sig_handler,
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000156 [SIGALRM] = timer_alarm_handler
Al Viro00361682011-08-18 20:04:39 +0100157};
Jeff Dike4b84c692006-09-25 23:33:04 -0700158
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200159static void hard_handler(int sig, siginfo_t *si, void *p)
Jeff Dikec14b8492007-05-10 22:22:34 -0700160{
Al Viro248b74c2011-08-18 20:05:09 +0100161 struct ucontext *uc = p;
162 mcontext_t *mc = &uc->uc_mcontext;
Jeff Dike508a9272007-09-18 22:46:49 -0700163 unsigned long pending = 1UL << sig;
Jeff Dikec14b8492007-05-10 22:22:34 -0700164
165 do {
166 int nested, bail;
167
168 /*
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.
177 */
Jeff Dike508a9272007-09-18 22:46:49 -0700178 bail = to_irq_stack(&pending);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700179 if (bail)
Jeff Dikec14b8492007-05-10 22:22:34 -0700180 return;
181
182 nested = pending & 1;
183 pending &= ~1;
184
Jeff Dikeba180fd2007-10-16 01:27:00 -0700185 while ((sig = ffs(pending)) != 0){
Jeff Dikec14b8492007-05-10 22:22:34 -0700186 sig--;
187 pending &= ~(1 << sig);
Richard Weinberger9a8c1352013-07-19 11:31:36 +0200188 (*handlers[sig])(sig, (struct siginfo *)si, mc);
Jeff Dikec14b8492007-05-10 22:22:34 -0700189 }
190
Jeff Dikeba180fd2007-10-16 01:27:00 -0700191 /*
192 * Again, pending comes back with a mask of signals
Jeff Dikec14b8492007-05-10 22:22:34 -0700193 * 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.
196 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700197 if (!nested)
Jeff Dikec14b8492007-05-10 22:22:34 -0700198 pending = from_irq_stack(nested);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700199 } while (pending);
Jeff Dikec14b8492007-05-10 22:22:34 -0700200}
201
Al Viro00361682011-08-18 20:04:39 +0100202void set_handler(int sig)
Gennady Sharapov0805d892006-01-08 01:01:29 -0800203{
204 struct sigaction action;
Al Viroe87df982011-08-18 20:04:29 +0100205 int flags = SA_SIGINFO | SA_ONSTACK;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800206 sigset_t sig_mask;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800207
Al Viro7eb12252011-08-18 20:03:39 +0100208 action.sa_sigaction = hard_handler;
Jeff Dike4b84c692006-09-25 23:33:04 -0700209
Al Viroe87df982011-08-18 20:04:29 +0100210 /* block irq ones */
Gennady Sharapov0805d892006-01-08 01:01:29 -0800211 sigemptyset(&action.sa_mask);
Al Viroe87df982011-08-18 20:04:29 +0100212 sigaddset(&action.sa_mask, SIGIO);
213 sigaddset(&action.sa_mask, SIGWINCH);
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000214 sigaddset(&action.sa_mask, SIGALRM);
Jeff Dike4b84c692006-09-25 23:33:04 -0700215
Jeff Dikee6a2d1f2008-02-04 22:31:13 -0800216 if (sig == SIGSEGV)
217 flags |= SA_NODEFER;
218
Al Viroe87df982011-08-18 20:04:29 +0100219 if (sigismember(&action.sa_mask, sig))
220 flags |= SA_RESTART; /* if it's an irq signal */
221
222 action.sa_flags = flags;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800223 action.sa_restorer = NULL;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700224 if (sigaction(sig, &action, NULL) < 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800225 panic("sigaction failed - errno = %d\n", errno);
226
227 sigemptyset(&sig_mask);
228 sigaddset(&sig_mask, sig);
Jeff Dikeba180fd2007-10-16 01:27:00 -0700229 if (sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800230 panic("sigprocmask failed - errno = %d\n", errno);
Gennady Sharapov0805d892006-01-08 01:01:29 -0800231}
232
233int change_sig(int signal, int on)
234{
Jeff Dikecfef8f32008-02-04 22:31:16 -0800235 sigset_t sigset;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800236
237 sigemptyset(&sigset);
238 sigaddset(&sigset, signal);
Jeff Dikecfef8f32008-02-04 22:31:16 -0800239 if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
WANG Congc9a30722008-02-04 22:30:35 -0800240 return -errno;
Jeff Dikecfef8f32008-02-04 22:31:16 -0800241
242 return 0;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800243}
244
Gennady Sharapov0805d892006-01-08 01:01:29 -0800245void block_signals(void)
246{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800247 signals_enabled = 0;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700248 /*
249 * This must return with signals disabled, so this barrier
Jeff Dike53b17332006-11-02 22:07:22 -0800250 * 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.
253 */
Jeff Dikefce8c412008-02-04 22:31:09 -0800254 barrier();
Gennady Sharapov0805d892006-01-08 01:01:29 -0800255}
256
257void unblock_signals(void)
258{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800259 int save_pending;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800260
Jeff Dikeba180fd2007-10-16 01:27:00 -0700261 if (signals_enabled == 1)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800262 return;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800263
Jeff Dikeba180fd2007-10-16 01:27:00 -0700264 /*
265 * We loop because the IRQ handler returns with interrupts off. So,
Jeff Dike1d7173b2006-01-18 17:42:49 -0800266 * interrupts may have arrived and we need to re-enable them and
Jeff Dikecfef8f32008-02-04 22:31:16 -0800267 * recheck signals_pending.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800268 */
Jeff Dike5134d8f2008-02-08 04:22:08 -0800269 while (1) {
Jeff Dikeba180fd2007-10-16 01:27:00 -0700270 /*
271 * Save and reset save_pending after enabling signals. This
Jeff Dikecfef8f32008-02-04 22:31:16 -0800272 * way, signals_pending won't be changed while we're reading it.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800273 */
274 signals_enabled = 1;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800275
Jeff Dikeba180fd2007-10-16 01:27:00 -0700276 /*
Jeff Dikecfef8f32008-02-04 22:31:16 -0800277 * Setting signals_enabled and reading signals_pending must
Jeff Dike53b17332006-11-02 22:07:22 -0800278 * happen in this order.
279 */
Jeff Dikefce8c412008-02-04 22:31:09 -0800280 barrier();
Jeff Dike53b17332006-11-02 22:07:22 -0800281
Jeff Dikecfef8f32008-02-04 22:31:16 -0800282 save_pending = signals_pending;
Jeff Dikefce8c412008-02-04 22:31:09 -0800283 if (save_pending == 0)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800284 return;
285
Jeff Dikecfef8f32008-02-04 22:31:16 -0800286 signals_pending = 0;
Jeff Dike1d7173b2006-01-18 17:42:49 -0800287
Jeff Dikeba180fd2007-10-16 01:27:00 -0700288 /*
289 * We have pending interrupts, so disable signals, as the
Jeff Dike1d7173b2006-01-18 17:42:49 -0800290 * handlers expect them off when they are called. They will
291 * be enabled again above.
292 */
293
294 signals_enabled = 0;
295
Jeff Dikeba180fd2007-10-16 01:27:00 -0700296 /*
297 * Deal with SIGIO first because the alarm handler might
Jeff Dike1d7173b2006-01-18 17:42:49 -0800298 * schedule, leaving the pending SIGIO stranded until we come
299 * back here.
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200300 *
301 * SIGIO's handler doesn't use siginfo or mcontext,
302 * so they can be NULL.
Jeff Dike1d7173b2006-01-18 17:42:49 -0800303 */
Jeff Dikeba180fd2007-10-16 01:27:00 -0700304 if (save_pending & SIGIO_MASK)
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200305 sig_handler_common(SIGIO, NULL, NULL);
Jeff Dike1d7173b2006-01-18 17:42:49 -0800306
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000307 /* Do not reenter the handler */
308
309 if ((save_pending & SIGALRM_MASK) && (!(signals_active & SIGALRM_MASK)))
Anton Ivanov2eb5f312015-11-02 16:16:37 +0000310 timer_real_alarm_handler(NULL);
Anton Ivanovd5e3f5c2015-12-21 11:28:02 +0000311
312 /* Rerun the loop only if there is still pending SIGIO and not in TIMER handler */
313
314 if (!(signals_pending & SIGIO_MASK) && (signals_active & SIGALRM_MASK))
315 return;
316
Jeff Dike1d7173b2006-01-18 17:42:49 -0800317 }
Gennady Sharapov0805d892006-01-08 01:01:29 -0800318}
319
320int get_signals(void)
321{
Jeff Dike1d7173b2006-01-18 17:42:49 -0800322 return signals_enabled;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800323}
324
325int set_signals(int enable)
326{
Gennady Sharapov0805d892006-01-08 01:01:29 -0800327 int ret;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700328 if (signals_enabled == enable)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800329 return enable;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800330
Jeff Dike1d7173b2006-01-18 17:42:49 -0800331 ret = signals_enabled;
Jeff Dikeba180fd2007-10-16 01:27:00 -0700332 if (enable)
Jeff Dike1d7173b2006-01-18 17:42:49 -0800333 unblock_signals();
334 else block_signals();
Gennady Sharapov0805d892006-01-08 01:01:29 -0800335
Jeff Dike1d7173b2006-01-18 17:42:49 -0800336 return ret;
Gennady Sharapov0805d892006-01-08 01:01:29 -0800337}
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200338
339int os_is_signal_stack(void)
340{
341 stack_t ss;
342 sigaltstack(NULL, &ss);
343
344 return ss.ss_flags & SS_ONSTACK;
345}