signal.c 6.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * Copyright (C) 2004 PathScale, Inc
J
Jeff Dike 已提交
3
 * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
4 5 6
 * Licensed under the GPL
 */

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

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

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

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

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

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

	errno = save_errno;
}

J
Jeff Dike 已提交
50
/*
J
Jeff Dike 已提交
51
 * These are the asynchronous signals.  SIGPROF is excluded because we want to
52 53 54 55 56 57 58 59 60 61
 * 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)

#define SIGVTALRM_BIT 1
#define SIGVTALRM_MASK (1 << SIGVTALRM_BIT)

J
Jeff Dike 已提交
62
static int signals_enabled;
J
Jeff Dike 已提交
63
static unsigned int signals_pending;
64

65
void sig_handler(int sig, mcontext_t *mc)
L
Linus Torvalds 已提交
66
{
67 68 69
	int enabled;

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

	block_signals();

77
	sig_handler_common(sig, mc);
78 79

	set_signals(enabled);
L
Linus Torvalds 已提交
80 81
}

82
static void real_alarm_handler(mcontext_t *mc)
L
Linus Torvalds 已提交
83
{
84
	struct uml_pt_regs regs;
J
Jeff Dike 已提交
85

86
	if (mc != NULL)
A
Al Viro 已提交
87
		get_regs_from_mc(&regs, mc);
88
	regs.is_user = 0;
J
Jeff Dike 已提交
89
	unblock_signals();
J
Jeff Dike 已提交
90
	timer_handler(SIGVTALRM, &regs);
91 92
}

93
void alarm_handler(int sig, mcontext_t *mc)
94 95 96 97
{
	int enabled;

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

	block_signals();

105
	real_alarm_handler(mc);
106
	set_signals(enabled);
L
Linus Torvalds 已提交
107 108
}

J
Jeff Dike 已提交
109 110
void timer_init(void)
{
111
	set_handler(SIGVTALRM);
J
Jeff Dike 已提交
112 113
}

114 115 116 117 118 119
void set_sigstack(void *sig_stack, int size)
{
	stack_t stack = ((stack_t) { .ss_flags	= 0,
				     .ss_sp	= (__ptr_t) sig_stack,
				     .ss_size 	= size - sizeof(void *) });

J
Jeff Dike 已提交
120
	if (sigaltstack(&stack, NULL) != 0)
121 122 123
		panic("enabling signal stack failed, errno = %d\n", errno);
}

124
static void (*handlers[_NSIG])(int sig, mcontext_t *mc) = {
125 126 127 128 129 130 131 132 133 134
	[SIGSEGV] = sig_handler,
	[SIGBUS] = sig_handler,
	[SIGILL] = sig_handler,
	[SIGFPE] = sig_handler,
	[SIGTRAP] = sig_handler,

	[SIGIO] = sig_handler,
	[SIGWINCH] = sig_handler,
	[SIGVTALRM] = alarm_handler
};
135

136 137

static void hard_handler(int sig, siginfo_t *info, void *p)
J
Jeff Dike 已提交
138
{
139 140
	struct ucontext *uc = p;
	mcontext_t *mc = &uc->uc_mcontext;
J
Jeff Dike 已提交
141
	unsigned long pending = 1UL << sig;
J
Jeff Dike 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155

	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 已提交
156
		bail = to_irq_stack(&pending);
J
Jeff Dike 已提交
157
		if (bail)
J
Jeff Dike 已提交
158 159 160 161 162
			return;

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

J
Jeff Dike 已提交
163
		while ((sig = ffs(pending)) != 0){
J
Jeff Dike 已提交
164 165
			sig--;
			pending &= ~(1 << sig);
166
			(*handlers[sig])(sig, mc);
J
Jeff Dike 已提交
167 168
		}

J
Jeff Dike 已提交
169 170
		/*
		 * Again, pending comes back with a mask of signals
J
Jeff Dike 已提交
171 172 173 174
		 * 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 已提交
175
		if (!nested)
J
Jeff Dike 已提交
176
			pending = from_irq_stack(nested);
J
Jeff Dike 已提交
177
	} while (pending);
J
Jeff Dike 已提交
178 179
}

180
void set_handler(int sig)
181 182
{
	struct sigaction action;
A
Al Viro 已提交
183
	int flags = SA_SIGINFO | SA_ONSTACK;
184
	sigset_t sig_mask;
185

186
	action.sa_sigaction = hard_handler;
187

A
Al Viro 已提交
188
	/* block irq ones */
189
	sigemptyset(&action.sa_mask);
A
Al Viro 已提交
190 191 192
	sigaddset(&action.sa_mask, SIGVTALRM);
	sigaddset(&action.sa_mask, SIGIO);
	sigaddset(&action.sa_mask, SIGWINCH);
193

194 195 196
	if (sig == SIGSEGV)
		flags |= SA_NODEFER;

A
Al Viro 已提交
197 198 199 200
	if (sigismember(&action.sa_mask, sig))
		flags |= SA_RESTART; /* if it's an irq signal */

	action.sa_flags = flags;
201
	action.sa_restorer = NULL;
J
Jeff Dike 已提交
202
	if (sigaction(sig, &action, NULL) < 0)
203 204 205 206
		panic("sigaction failed - errno = %d\n", errno);

	sigemptyset(&sig_mask);
	sigaddset(&sig_mask, sig);
J
Jeff Dike 已提交
207
	if (sigprocmask(SIG_UNBLOCK, &sig_mask, NULL) < 0)
208
		panic("sigprocmask failed - errno = %d\n", errno);
209 210 211 212
}

int change_sig(int signal, int on)
{
J
Jeff Dike 已提交
213
	sigset_t sigset;
214 215 216

	sigemptyset(&sigset);
	sigaddset(&sigset, signal);
J
Jeff Dike 已提交
217
	if (sigprocmask(on ? SIG_UNBLOCK : SIG_BLOCK, &sigset, NULL) < 0)
218
		return -errno;
J
Jeff Dike 已提交
219 220

	return 0;
221 222 223 224
}

void block_signals(void)
{
225
	signals_enabled = 0;
J
Jeff Dike 已提交
226 227
	/*
	 * This must return with signals disabled, so this barrier
J
Jeff Dike 已提交
228 229 230 231
	 * 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 已提交
232
	barrier();
233 234 235 236
}

void unblock_signals(void)
{
237
	int save_pending;
238

J
Jeff Dike 已提交
239
	if (signals_enabled == 1)
240
		return;
241

J
Jeff Dike 已提交
242 243
	/*
	 * We loop because the IRQ handler returns with interrupts off.  So,
244
	 * interrupts may have arrived and we need to re-enable them and
J
Jeff Dike 已提交
245
	 * recheck signals_pending.
246
	 */
J
Jeff Dike 已提交
247
	while (1) {
J
Jeff Dike 已提交
248 249
		/*
		 * Save and reset save_pending after enabling signals.  This
J
Jeff Dike 已提交
250
		 * way, signals_pending won't be changed while we're reading it.
251 252 253
		 */
		signals_enabled = 1;

J
Jeff Dike 已提交
254
		/*
J
Jeff Dike 已提交
255
		 * Setting signals_enabled and reading signals_pending must
J
Jeff Dike 已提交
256 257
		 * happen in this order.
		 */
J
Jeff Dike 已提交
258
		barrier();
J
Jeff Dike 已提交
259

J
Jeff Dike 已提交
260
		save_pending = signals_pending;
J
Jeff Dike 已提交
261
		if (save_pending == 0)
262 263
			return;

J
Jeff Dike 已提交
264
		signals_pending = 0;
265

J
Jeff Dike 已提交
266 267
		/*
		 * We have pending interrupts, so disable signals, as the
268 269 270 271 272 273
		 * handlers expect them off when they are called.  They will
		 * be enabled again above.
		 */

		signals_enabled = 0;

J
Jeff Dike 已提交
274 275
		/*
		 * Deal with SIGIO first because the alarm handler might
276 277 278
		 * schedule, leaving the pending SIGIO stranded until we come
		 * back here.
		 */
J
Jeff Dike 已提交
279
		if (save_pending & SIGIO_MASK)
280
			sig_handler_common(SIGIO, NULL);
281

J
Jeff Dike 已提交
282
		if (save_pending & SIGVTALRM_MASK)
J
Jeff Dike 已提交
283
			real_alarm_handler(NULL);
284
	}
285 286 287 288
}

int get_signals(void)
{
289
	return signals_enabled;
290 291 292 293 294
}

int set_signals(int enable)
{
	int ret;
J
Jeff Dike 已提交
295
	if (signals_enabled == enable)
296
		return enable;
297

298
	ret = signals_enabled;
J
Jeff Dike 已提交
299
	if (enable)
300 301
		unblock_signals();
	else block_signals();
302

303
	return ret;
304
}