signal.c 7.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
A
Anton Ivanov 已提交
2 3
 * Copyright (C) 2015 Anton Ivanov (aivanov@{brocade.com,kot-begemot.co.uk})
 * Copyright (C) 2015 Thomas Meyer (thomas@m3y3r.de)
L
Linus Torvalds 已提交
4
 * Copyright (C) 2004 PathScale, Inc
J
Jeff Dike 已提交
5
 * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
6 7 8
 * Licensed under the GPL
 */

9 10
#include <stdlib.h>
#include <stdarg.h>
J
Jeff Dike 已提交
11 12 13
#include <errno.h>
#include <signal.h>
#include <strings.h>
14 15 16 17
#include <as-layout.h>
#include <kern_util.h>
#include <os.h>
#include <sysdep/mcontext.h>
L
Linus Torvalds 已提交
18

19
void (*sig_info[NSIG])(int, struct siginfo *, struct uml_pt_regs *) = {
J
Jeff Dike 已提交
20 21 22 23 24 25 26
	[SIGTRAP]	= relay_signal,
	[SIGFPE]	= relay_signal,
	[SIGILL]	= relay_signal,
	[SIGWINCH]	= winch,
	[SIGBUS]	= bus_handler,
	[SIGSEGV]	= segv_handler,
	[SIGIO]		= sigio_handler,
A
Anton Ivanov 已提交
27 28
	[SIGALRM]	= timer_handler
};
J
Jeff Dike 已提交
29

R
Richard Weinberger 已提交
30
static void sig_handler_common(int sig, struct siginfo *si, mcontext_t *mc)
J
Jeff Dike 已提交
31
{
32 33
	struct uml_pt_regs r;
	int save_errno = errno;
J
Jeff Dike 已提交
34

35
	r.is_user = 0;
J
Jeff Dike 已提交
36
	if (sig == SIGSEGV) {
37
		/* For segfaults, we want the data from the sigcontext. */
A
Al Viro 已提交
38
		get_regs_from_mc(&r, mc);
39
		GET_FAULTINFO_FROM_MC(r.faultinfo, mc);
40
	}
J
Jeff Dike 已提交
41

42
	/* enable signals if sig isn't IRQ signal */
A
Anton Ivanov 已提交
43
	if ((sig != SIGIO) && (sig != SIGWINCH) && (sig != SIGALRM))
J
Jeff Dike 已提交
44 45
		unblock_signals();

46
	(*sig_info[sig])(sig, si, &r);
J
Jeff Dike 已提交
47 48 49 50

	errno = save_errno;
}

J
Jeff Dike 已提交
51
/*
J
Jeff Dike 已提交
52
 * These are the asynchronous signals.  SIGPROF is excluded because we want to
53 54 55 56 57 58 59
 * be able to profile all of UML, not just the non-critical sections.  If
 * profiling is not thread-safe, then that is not my problem.  We can disable
 * profiling when SMP is enabled in that case.
 */
#define SIGIO_BIT 0
#define SIGIO_MASK (1 << SIGIO_BIT)

A
Anton Ivanov 已提交
60 61
#define SIGALRM_BIT 1
#define SIGALRM_MASK (1 << SIGALRM_BIT)
62

J
Jeff Dike 已提交
63
static int signals_enabled;
J
Jeff Dike 已提交
64
static unsigned int signals_pending;
65
static unsigned int signals_active = 0;
66

R
Richard Weinberger 已提交
67
void sig_handler(int sig, struct siginfo *si, mcontext_t *mc)
L
Linus Torvalds 已提交
68
{
69 70 71
	int enabled;

	enabled = signals_enabled;
J
Jeff Dike 已提交
72
	if (!enabled && (sig == SIGIO)) {
J
Jeff Dike 已提交
73
		signals_pending |= SIGIO_MASK;
74 75 76 77 78
		return;
	}

	block_signals();

79
	sig_handler_common(sig, si, mc);
80 81

	set_signals(enabled);
L
Linus Torvalds 已提交
82 83
}

A
Anton Ivanov 已提交
84
static void timer_real_alarm_handler(mcontext_t *mc)
L
Linus Torvalds 已提交
85
{
86
	struct uml_pt_regs regs;
J
Jeff Dike 已提交
87

88
	if (mc != NULL)
A
Al Viro 已提交
89
		get_regs_from_mc(&regs, mc);
A
Anton Ivanov 已提交
90
	timer_handler(SIGALRM, NULL, &regs);
91 92
}

A
Anton Ivanov 已提交
93
void timer_alarm_handler(int sig, struct siginfo *unused_si, mcontext_t *mc)
94 95 96 97
{
	int enabled;

	enabled = signals_enabled;
J
Jeff Dike 已提交
98
	if (!signals_enabled) {
A
Anton Ivanov 已提交
99
		signals_pending |= SIGALRM_MASK;
100 101 102 103 104
		return;
	}

	block_signals();

105 106
	signals_active |= SIGALRM_MASK;

A
Anton Ivanov 已提交
107
	timer_real_alarm_handler(mc);
108 109 110

	signals_active &= ~SIGALRM_MASK;

111
	set_signals(enabled);
L
Linus Torvalds 已提交
112 113
}

A
Anton Ivanov 已提交
114 115 116 117 118
void deliver_alarm(void) {
    timer_alarm_handler(SIGALRM, NULL, NULL);
}

void timer_set_signal_handler(void)
J
Jeff Dike 已提交
119
{
A
Anton Ivanov 已提交
120
	set_handler(SIGALRM);
J
Jeff Dike 已提交
121 122
}

123 124
void set_sigstack(void *sig_stack, int size)
{
125 126 127 128 129
	stack_t stack = {
		.ss_flags = 0,
		.ss_sp = sig_stack,
		.ss_size = size - sizeof(void *)
	};
130

J
Jeff Dike 已提交
131
	if (sigaltstack(&stack, NULL) != 0)
132 133 134
		panic("enabling signal stack failed, errno = %d\n", errno);
}

R
Richard Weinberger 已提交
135
static void (*handlers[_NSIG])(int sig, struct siginfo *si, mcontext_t *mc) = {
136 137 138 139 140 141 142 143
	[SIGSEGV] = sig_handler,
	[SIGBUS] = sig_handler,
	[SIGILL] = sig_handler,
	[SIGFPE] = sig_handler,
	[SIGTRAP] = sig_handler,

	[SIGIO] = sig_handler,
	[SIGWINCH] = sig_handler,
A
Anton Ivanov 已提交
144
	[SIGALRM] = timer_alarm_handler
145
};
146

147
static void hard_handler(int sig, siginfo_t *si, void *p)
J
Jeff Dike 已提交
148
{
149 150
	struct ucontext *uc = p;
	mcontext_t *mc = &uc->uc_mcontext;
J
Jeff Dike 已提交
151
	unsigned long pending = 1UL << sig;
J
Jeff Dike 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165

	do {
		int nested, bail;

		/*
		 * pending comes back with one bit set for each
		 * interrupt that arrived while setting up the stack,
		 * plus a bit for this interrupt, plus the zero bit is
		 * set if this is a nested interrupt.
		 * If bail is true, then we interrupted another
		 * handler setting up the stack.  In this case, we
		 * have to return, and the upper handler will deal
		 * with this interrupt.
		 */
J
Jeff Dike 已提交
166
		bail = to_irq_stack(&pending);
J
Jeff Dike 已提交
167
		if (bail)
J
Jeff Dike 已提交
168 169 170 171 172
			return;

		nested = pending & 1;
		pending &= ~1;

J
Jeff Dike 已提交
173
		while ((sig = ffs(pending)) != 0){
J
Jeff Dike 已提交
174 175
			sig--;
			pending &= ~(1 << sig);
R
Richard Weinberger 已提交
176
			(*handlers[sig])(sig, (struct siginfo *)si, mc);
J
Jeff Dike 已提交
177 178
		}

J
Jeff Dike 已提交
179 180
		/*
		 * Again, pending comes back with a mask of signals
J
Jeff Dike 已提交
181 182 183 184
		 * that arrived while tearing down the stack.  If this
		 * is non-zero, we just go back, set up the stack
		 * again, and handle the new interrupts.
		 */
J
Jeff Dike 已提交
185
		if (!nested)
J
Jeff Dike 已提交
186
			pending = from_irq_stack(nested);
J
Jeff Dike 已提交
187
	} while (pending);
J
Jeff Dike 已提交
188 189
}

190
void set_handler(int sig)
191 192
{
	struct sigaction action;
A
Al Viro 已提交
193
	int flags = SA_SIGINFO | SA_ONSTACK;
194
	sigset_t sig_mask;
195

196
	action.sa_sigaction = hard_handler;
197

A
Al Viro 已提交
198
	/* block irq ones */
199
	sigemptyset(&action.sa_mask);
A
Al Viro 已提交
200 201
	sigaddset(&action.sa_mask, SIGIO);
	sigaddset(&action.sa_mask, SIGWINCH);
A
Anton Ivanov 已提交
202
	sigaddset(&action.sa_mask, SIGALRM);
203

204 205 206
	if (sig == SIGSEGV)
		flags |= SA_NODEFER;

A
Al Viro 已提交
207 208 209 210
	if (sigismember(&action.sa_mask, sig))
		flags |= SA_RESTART; /* if it's an irq signal */

	action.sa_flags = flags;
211
	action.sa_restorer = NULL;
J
Jeff Dike 已提交
212
	if (sigaction(sig, &action, NULL) < 0)
213 214 215 216
		panic("sigaction failed - errno = %d\n", errno);

	sigemptyset(&sig_mask);
	sigaddset(&sig_mask, sig);
J
Jeff Dike 已提交
217
	if (sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
218
		panic("sigprocmask failed - errno = %d\n", errno);
219 220 221 222
}

int change_sig(int signal, int on)
{
J
Jeff Dike 已提交
223
	sigset_t sigset;
224 225 226

	sigemptyset(&sigset);
	sigaddset(&sigset, signal);
J
Jeff Dike 已提交
227
	if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
228
		return -errno;
J
Jeff Dike 已提交
229 230

	return 0;
231 232 233 234
}

void block_signals(void)
{
235
	signals_enabled = 0;
J
Jeff Dike 已提交
236 237
	/*
	 * This must return with signals disabled, so this barrier
J
Jeff Dike 已提交
238 239 240 241
	 * ensures that writes are flushed out before the return.
	 * This might matter if gcc figures out how to inline this and
	 * decides to shuffle this code into the caller.
	 */
J
Jeff Dike 已提交
242
	barrier();
243 244 245 246
}

void unblock_signals(void)
{
247
	int save_pending;
248

J
Jeff Dike 已提交
249
	if (signals_enabled == 1)
250
		return;
251

J
Jeff Dike 已提交
252 253
	/*
	 * We loop because the IRQ handler returns with interrupts off.  So,
254
	 * interrupts may have arrived and we need to re-enable them and
J
Jeff Dike 已提交
255
	 * recheck signals_pending.
256
	 */
J
Jeff Dike 已提交
257
	while (1) {
J
Jeff Dike 已提交
258 259
		/*
		 * Save and reset save_pending after enabling signals.  This
J
Jeff Dike 已提交
260
		 * way, signals_pending won't be changed while we're reading it.
261 262 263
		 */
		signals_enabled = 1;

J
Jeff Dike 已提交
264
		/*
J
Jeff Dike 已提交
265
		 * Setting signals_enabled and reading signals_pending must
J
Jeff Dike 已提交
266 267
		 * happen in this order.
		 */
J
Jeff Dike 已提交
268
		barrier();
J
Jeff Dike 已提交
269

J
Jeff Dike 已提交
270
		save_pending = signals_pending;
J
Jeff Dike 已提交
271
		if (save_pending == 0)
272 273
			return;

J
Jeff Dike 已提交
274
		signals_pending = 0;
275

J
Jeff Dike 已提交
276 277
		/*
		 * We have pending interrupts, so disable signals, as the
278 279 280 281 282 283
		 * handlers expect them off when they are called.  They will
		 * be enabled again above.
		 */

		signals_enabled = 0;

J
Jeff Dike 已提交
284 285
		/*
		 * Deal with SIGIO first because the alarm handler might
286 287
		 * schedule, leaving the pending SIGIO stranded until we come
		 * back here.
288 289 290
		 *
		 * SIGIO's handler doesn't use siginfo or mcontext,
		 * so they can be NULL.
291
		 */
J
Jeff Dike 已提交
292
		if (save_pending & SIGIO_MASK)
293
			sig_handler_common(SIGIO, NULL, NULL);
294

295 296 297
		/* Do not reenter the handler */

		if ((save_pending & SIGALRM_MASK) && (!(signals_active & SIGALRM_MASK)))
A
Anton Ivanov 已提交
298
			timer_real_alarm_handler(NULL);
299 300 301 302 303 304

		/* Rerun the loop only if there is still pending SIGIO and not in TIMER handler */

		if (!(signals_pending & SIGIO_MASK) && (signals_active & SIGALRM_MASK))
			return;

305
	}
306 307 308 309
}

int get_signals(void)
{
310
	return signals_enabled;
311 312 313 314 315
}

int set_signals(int enable)
{
	int ret;
J
Jeff Dike 已提交
316
	if (signals_enabled == enable)
317
		return enable;
318

319
	ret = signals_enabled;
J
Jeff Dike 已提交
320
	if (enable)
321 322
		unblock_signals();
	else block_signals();
323

324
	return ret;
325
}
326 327 328 329 330 331 332 333

int os_is_signal_stack(void)
{
	stack_t ss;
	sigaltstack(NULL, &ss);

	return ss.ss_flags & SS_ONSTACK;
}