signal_64.c 13.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *  Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
 *
 *  1997-11-28  Modified for POSIX.1b signals by Richard Henderson
 *  2000-06-20  Pentium III FXSR, SSE support by Gareth Hughes
 *  2000-2002   x86-64 support by Andi Kleen
 */

#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/kernel.h>
#include <linux/signal.h>
#include <linux/errno.h>
#include <linux/wait.h>
#include <linux/ptrace.h>
R
Roland McGrath 已提交
18
#include <linux/tracehook.h>
L
Linus Torvalds 已提交
19 20 21 22
#include <linux/unistd.h>
#include <linux/stddef.h>
#include <linux/personality.h>
#include <linux/compiler.h>
23 24
#include <linux/uaccess.h>

25
#include <asm/processor.h>
L
Linus Torvalds 已提交
26 27 28
#include <asm/ucontext.h>
#include <asm/i387.h>
#include <asm/proto.h>
29
#include <asm/ia32_unistd.h>
30
#include <asm/mce.h>
R
Roland McGrath 已提交
31
#include <asm/syscall.h>
32
#include <asm/syscalls.h>
33
#include "sigframe.h"
L
Linus Torvalds 已提交
34 35 36

#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))

37 38 39 40 41 42 43 44 45 46 47
#define __FIX_EFLAGS	(X86_EFLAGS_AC | X86_EFLAGS_OF | \
			 X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \
			 X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \
			 X86_EFLAGS_CF)

#ifdef CONFIG_X86_32
# define FIX_EFLAGS	(__FIX_EFLAGS | X86_EFLAGS_RF)
#else
# define FIX_EFLAGS	__FIX_EFLAGS
#endif

L
Linus Torvalds 已提交
48 49 50 51
asmlinkage long
sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
		struct pt_regs *regs)
{
52
	return do_sigaltstack(uss, uoss, regs->sp);
L
Linus Torvalds 已提交
53 54 55 56 57 58
}

/*
 * Do a signal return; undo the signal stack.
 */
static int
59 60
restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
		   unsigned long *pax)
L
Linus Torvalds 已提交
61 62 63 64 65 66
{
	unsigned int err = 0;

	/* Always make any pending restarted system calls return -EINTR */
	current_thread_info()->restart_block.fn = do_no_restart_syscall;

67
#define COPY(x)		(err |= __get_user(regs->x, &sc->x))
L
Linus Torvalds 已提交
68

69 70
	COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
	COPY(dx); COPY(cx); COPY(ip);
L
Linus Torvalds 已提交
71 72 73 74 75 76 77 78 79
	COPY(r8);
	COPY(r9);
	COPY(r10);
	COPY(r11);
	COPY(r12);
	COPY(r13);
	COPY(r14);
	COPY(r15);

80 81 82 83 84 85 86 87 88
	/* Kernel saves and restores only the CS segment register on signals,
	 * which is the bare minimum needed to allow mixed 32/64-bit code.
	 * App's signal handler can save/restore other segments if needed. */
	{
		unsigned cs;
		err |= __get_user(cs, &sc->cs);
		regs->cs = cs | 3;	/* Force into user mode */
	}

L
Linus Torvalds 已提交
89 90
	{
		unsigned int tmpflags;
91
		err |= __get_user(tmpflags, &sc->flags);
92
		regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
93
		regs->orig_ax = -1;		/* disable syscall checks */
L
Linus Torvalds 已提交
94 95 96
	}

	{
97 98
		void __user *buf;

L
Linus Torvalds 已提交
99
		err |= __get_user(buf, &sc->fpstate);
100
		err |= restore_i387_xstate(buf);
L
Linus Torvalds 已提交
101 102
	}

103
	err |= __get_user(*pax, &sc->ax);
L
Linus Torvalds 已提交
104 105 106
	return err;
}

107
static long do_rt_sigreturn(struct pt_regs *regs)
L
Linus Torvalds 已提交
108 109
{
	struct rt_sigframe __user *frame;
110
	unsigned long ax;
111
	sigset_t set;
L
Linus Torvalds 已提交
112

113 114
	frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
L
Linus Torvalds 已提交
115
		goto badframe;
116
	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
L
Linus Torvalds 已提交
117 118 119 120 121 122 123
		goto badframe;

	sigdelsetmask(&set, ~_BLOCKABLE);
	spin_lock_irq(&current->sighand->siglock);
	current->blocked = set;
	recalc_sigpending();
	spin_unlock_irq(&current->sighand->siglock);
124

125
	if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
L
Linus Torvalds 已提交
126 127
		goto badframe;

128
	if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
L
Linus Torvalds 已提交
129 130
		goto badframe;

131
	return ax;
L
Linus Torvalds 已提交
132 133

badframe:
134
	signal_fault(regs, frame, "rt_sigreturn");
L
Linus Torvalds 已提交
135
	return 0;
136
}
L
Linus Torvalds 已提交
137

138 139 140 141 142
asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
{
	return do_rt_sigreturn(regs);
}

L
Linus Torvalds 已提交
143 144 145 146 147
/*
 * Set up a signal frame.
 */

static inline int
148 149
setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
		unsigned long mask, struct task_struct *me)
L
Linus Torvalds 已提交
150 151 152
{
	int err = 0;

153
	err |= __put_user(regs->cs, &sc->cs);
L
Linus Torvalds 已提交
154 155 156
	err |= __put_user(0, &sc->gs);
	err |= __put_user(0, &sc->fs);

157 158 159 160 161 162 163 164
	err |= __put_user(regs->di, &sc->di);
	err |= __put_user(regs->si, &sc->si);
	err |= __put_user(regs->bp, &sc->bp);
	err |= __put_user(regs->sp, &sc->sp);
	err |= __put_user(regs->bx, &sc->bx);
	err |= __put_user(regs->dx, &sc->dx);
	err |= __put_user(regs->cx, &sc->cx);
	err |= __put_user(regs->ax, &sc->ax);
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174
	err |= __put_user(regs->r8, &sc->r8);
	err |= __put_user(regs->r9, &sc->r9);
	err |= __put_user(regs->r10, &sc->r10);
	err |= __put_user(regs->r11, &sc->r11);
	err |= __put_user(regs->r12, &sc->r12);
	err |= __put_user(regs->r13, &sc->r13);
	err |= __put_user(regs->r14, &sc->r14);
	err |= __put_user(regs->r15, &sc->r15);
	err |= __put_user(me->thread.trap_no, &sc->trapno);
	err |= __put_user(me->thread.error_code, &sc->err);
175 176
	err |= __put_user(regs->ip, &sc->ip);
	err |= __put_user(regs->flags, &sc->flags);
L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189
	err |= __put_user(mask, &sc->oldmask);
	err |= __put_user(me->thread.cr2, &sc->cr2);

	return err;
}

/*
 * Determine which stack to use..
 */

static void __user *
get_stack(struct k_sigaction *ka, struct pt_regs *regs, unsigned long size)
{
190
	unsigned long sp;
L
Linus Torvalds 已提交
191 192

	/* Default to using normal stack - redzone*/
193
	sp = regs->sp - 128;
L
Linus Torvalds 已提交
194 195 196

	/* This is the X/Open sanctioned signal stack switching.  */
	if (ka->sa.sa_flags & SA_ONSTACK) {
197 198
		if (sas_ss_flags(sp) == 0)
			sp = current->sas_ss_sp + current->sas_ss_size;
L
Linus Torvalds 已提交
199 200
	}

201
	return (void __user *)round_down(sp - size, 64);
L
Linus Torvalds 已提交
202 203
}

204 205
static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
			    sigset_t *set, struct pt_regs *regs)
L
Linus Torvalds 已提交
206 207
{
	struct rt_sigframe __user *frame;
208
	void __user *fp = NULL;
L
Linus Torvalds 已提交
209 210 211 212
	int err = 0;
	struct task_struct *me = current;

	if (used_math()) {
213
		fp = get_stack(ka, regs, sig_xstate_size);
L
Linus Torvalds 已提交
214 215 216
		frame = (void __user *)round_down(
			(unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;

217
		if (save_i387_xstate(fp) < 0)
218
			return -EFAULT;
L
Linus Torvalds 已提交
219 220 221 222
	} else
		frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;

	if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
223
		return -EFAULT;
L
Linus Torvalds 已提交
224

225
	if (ka->sa.sa_flags & SA_SIGINFO) {
226
		if (copy_siginfo_to_user(&frame->info, info))
227
			return -EFAULT;
L
Linus Torvalds 已提交
228
	}
229

L
Linus Torvalds 已提交
230
	/* Create the ucontext.  */
231 232 233 234
	if (cpu_has_xsave)
		err |= __put_user(UC_FP_XSTATE, &frame->uc.uc_flags);
	else
		err |= __put_user(0, &frame->uc.uc_flags);
L
Linus Torvalds 已提交
235 236
	err |= __put_user(0, &frame->uc.uc_link);
	err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
237
	err |= __put_user(sas_ss_flags(regs->sp),
L
Linus Torvalds 已提交
238 239 240 241
			  &frame->uc.uc_stack.ss_flags);
	err |= __put_user(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
	err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0], me);
	err |= __put_user(fp, &frame->uc.uc_mcontext.fpstate);
242
	if (sizeof(*set) == 16) {
L
Linus Torvalds 已提交
243
		__put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
244
		__put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
L
Linus Torvalds 已提交
245 246 247 248 249 250 251 252 253 254
	} else
		err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));

	/* Set up to return from userspace.  If provided, use a stub
	   already in userspace.  */
	/* x86-64 should always use SA_RESTORER. */
	if (ka->sa.sa_flags & SA_RESTORER) {
		err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
	} else {
		/* could use a vstub here */
255
		return -EFAULT;
L
Linus Torvalds 已提交
256 257 258
	}

	if (err)
259
		return -EFAULT;
L
Linus Torvalds 已提交
260 261

	/* Set up registers for signal handler */
262
	regs->di = sig;
263
	/* In case the signal handler was declared without prototypes */
264
	regs->ax = 0;
L
Linus Torvalds 已提交
265 266 267

	/* This also works for non SA_SIGINFO handlers because they expect the
	   next argument after the signal number on the stack. */
268 269 270
	regs->si = (unsigned long)&frame->info;
	regs->dx = (unsigned long)&frame->uc;
	regs->ip = (unsigned long) ka->sa.sa_handler;
L
Linus Torvalds 已提交
271

272
	regs->sp = (unsigned long)frame;
L
Linus Torvalds 已提交
273

274 275 276 277
	/* Set up the CS register to run signal handlers in 64-bit mode,
	   even if the handler happens to be interrupting 32-bit code. */
	regs->cs = __USER_CS;

A
Andi Kleen 已提交
278
	return 0;
L
Linus Torvalds 已提交
279 280 281 282
}

/*
 * OK, we're invoking a handler
283
 */
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
static int
setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
	       sigset_t *set, struct pt_regs *regs)
{
	int ret;

#ifdef CONFIG_IA32_EMULATION
	if (test_thread_flag(TIF_IA32)) {
		if (ka->sa.sa_flags & SA_SIGINFO)
			ret = ia32_setup_rt_frame(sig, ka, info, set, regs);
		else
			ret = ia32_setup_frame(sig, ka, set, regs);
	} else
#endif
	ret = __setup_rt_frame(sig, ka, info, set, regs);

300 301 302 303 304
	if (ret) {
		force_sigsegv(sig, current);
		return -EFAULT;
	}

305 306
	return ret;
}
L
Linus Torvalds 已提交
307

308
static int
L
Linus Torvalds 已提交
309
handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
310
	      sigset_t *oldset, struct pt_regs *regs)
L
Linus Torvalds 已提交
311
{
312 313
	int ret;

L
Linus Torvalds 已提交
314
	/* Are we from a system call? */
R
Roland McGrath 已提交
315
	if (syscall_get_nr(current, regs) >= 0) {
L
Linus Torvalds 已提交
316
		/* If so, check system call restarting.. */
R
Roland McGrath 已提交
317
		switch (syscall_get_error(current, regs)) {
318 319 320 321
		case -ERESTART_RESTARTBLOCK:
		case -ERESTARTNOHAND:
			regs->ax = -EINTR;
			break;
L
Linus Torvalds 已提交
322

323 324 325
		case -ERESTARTSYS:
			if (!(ka->sa.sa_flags & SA_RESTART)) {
				regs->ax = -EINTR;
L
Linus Torvalds 已提交
326
				break;
327 328 329 330 331 332
			}
		/* fallthrough */
		case -ERESTARTNOINTR:
			regs->ax = regs->orig_ax;
			regs->ip -= 2;
			break;
L
Linus Torvalds 已提交
333 334 335
		}
	}

336
	/*
R
Roland McGrath 已提交
337 338
	 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
	 * flag so that register information in the sigcontext is correct.
339
	 */
340
	if (unlikely(regs->flags & X86_EFLAGS_TF) &&
R
Roland McGrath 已提交
341
	    likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
342
		regs->flags &= ~X86_EFLAGS_TF;
343

344
	ret = setup_rt_frame(sig, ka, info, oldset, regs);
L
Linus Torvalds 已提交
345

346 347
	if (ret)
		return ret;
348

349
#ifdef CONFIG_X86_64
350 351 352 353 354 355
	/*
	 * This has nothing to do with segment registers,
	 * despite the name.  This magic affects uaccess.h
	 * macros' behavior.  Reset it to the normal setting.
	 */
	set_fs(USER_DS);
356
#endif
R
Roland McGrath 已提交
357

358 359 360 361
	/*
	 * Clear the direction flag as per the ABI for function entry.
	 */
	regs->flags &= ~X86_EFLAGS_DF;
362

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
	/*
	 * Clear TF when entering the signal handler, but
	 * notify any tracer that was single-stepping it.
	 * The tracer may want to single-step inside the
	 * handler too.
	 */
	regs->flags &= ~X86_EFLAGS_TF;

	spin_lock_irq(&current->sighand->siglock);
	sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
	if (!(ka->sa.sa_flags & SA_NODEFER))
		sigaddset(&current->blocked, sig);
	recalc_sigpending();
	spin_unlock_irq(&current->sighand->siglock);

	tracehook_signal_handler(sig, info, ka, regs,
				 test_thread_flag(TIF_SINGLESTEP));

	return 0;
L
Linus Torvalds 已提交
382 383
}

384 385
#define NR_restart_syscall	\
	test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall
L
Linus Torvalds 已提交
386 387 388 389 390
/*
 * Note that 'init' is a special process: it doesn't get signals it doesn't
 * want to handle. Thus you cannot kill init even with a SIGKILL even by
 * mistake.
 */
A
Andi Kleen 已提交
391
static void do_signal(struct pt_regs *regs)
L
Linus Torvalds 已提交
392 393 394 395
{
	struct k_sigaction ka;
	siginfo_t info;
	int signr;
A
Andi Kleen 已提交
396
	sigset_t *oldset;
L
Linus Torvalds 已提交
397 398

	/*
399 400
	 * We want the common case to go fast, which is why we may in certain
	 * cases get here from kernel mode. Just return without doing anything
L
Linus Torvalds 已提交
401
	 * if so.
402 403
	 * X86_32: vm86 regs switched out by assembly code before reaching
	 * here, so testing against kernel CS suffices.
L
Linus Torvalds 已提交
404
	 */
405
	if (!user_mode(regs))
A
Andi Kleen 已提交
406
		return;
L
Linus Torvalds 已提交
407

R
Roland McGrath 已提交
408
	if (current_thread_info()->status & TS_RESTORE_SIGMASK)
A
Andi Kleen 已提交
409 410
		oldset = &current->saved_sigmask;
	else
L
Linus Torvalds 已提交
411 412 413 414
		oldset = &current->blocked;

	signr = get_signal_to_deliver(&info, &ka, regs, NULL);
	if (signr > 0) {
415 416
		/*
		 * Re-enable any watchpoints before delivering the
L
Linus Torvalds 已提交
417 418 419 420 421
		 * signal to user space. The processor register will
		 * have been cleared if the watchpoint triggered
		 * inside the kernel.
		 */
		if (current->thread.debugreg7)
422
			set_debugreg(current->thread.debugreg7, 7);
L
Linus Torvalds 已提交
423

424
		/* Whee! Actually deliver the signal.  */
A
Andi Kleen 已提交
425
		if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
R
Roland McGrath 已提交
426 427
			/*
			 * A signal was successfully delivered; the saved
A
Andi Kleen 已提交
428 429
			 * sigmask will have been stored in the signal frame,
			 * and will be restored by sigreturn, so we can simply
R
Roland McGrath 已提交
430 431 432
			 * clear the TS_RESTORE_SIGMASK flag.
			 */
			current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
A
Andi Kleen 已提交
433 434
		}
		return;
L
Linus Torvalds 已提交
435 436 437
	}

	/* Did we come from a system call? */
R
Roland McGrath 已提交
438
	if (syscall_get_nr(current, regs) >= 0) {
L
Linus Torvalds 已提交
439
		/* Restart the system call - no handlers present */
R
Roland McGrath 已提交
440
		switch (syscall_get_error(current, regs)) {
A
Andi Kleen 已提交
441 442 443
		case -ERESTARTNOHAND:
		case -ERESTARTSYS:
		case -ERESTARTNOINTR:
444 445
			regs->ax = regs->orig_ax;
			regs->ip -= 2;
A
Andi Kleen 已提交
446
			break;
447

A
Andi Kleen 已提交
448
		case -ERESTART_RESTARTBLOCK:
449
			regs->ax = NR_restart_syscall;
450
			regs->ip -= 2;
A
Andi Kleen 已提交
451
			break;
L
Linus Torvalds 已提交
452 453
		}
	}
A
Andi Kleen 已提交
454

455 456 457 458
	/*
	 * If there's no signal to deliver, we just put the saved sigmask
	 * back.
	 */
R
Roland McGrath 已提交
459 460
	if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
		current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
A
Andi Kleen 已提交
461 462
		sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
	}
L
Linus Torvalds 已提交
463 464
}

465 466 467 468 469 470
/*
 * notification of userspace execution resumption
 * - triggered by the TIF_WORK_MASK flags
 */
void
do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
L
Linus Torvalds 已提交
471
{
472
#if defined(CONFIG_X86_64) && defined(CONFIG_X86_MCE)
473 474 475
	/* notify userspace of pending MCEs */
	if (thread_info_flags & _TIF_MCE_NOTIFY)
		mce_notify_user();
476
#endif /* CONFIG_X86_64 && CONFIG_X86_MCE */
477

L
Linus Torvalds 已提交
478
	/* deal with pending signal delivery */
R
Roland McGrath 已提交
479
	if (thread_info_flags & _TIF_SIGPENDING)
A
Andi Kleen 已提交
480
		do_signal(regs);
481 482 483 484 485

	if (thread_info_flags & _TIF_NOTIFY_RESUME) {
		clear_thread_flag(TIF_NOTIFY_RESUME);
		tracehook_notify_resume(regs);
	}
486 487 488 489

#ifdef CONFIG_X86_32
	clear_thread_flag(TIF_IRET);
#endif /* CONFIG_X86_32 */
L
Linus Torvalds 已提交
490 491 492
}

void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
493 494
{
	struct task_struct *me = current;
495

496
	if (show_unhandled_signals && printk_ratelimit()) {
497 498 499 500
		printk(KERN_INFO
		       "%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
		       me->comm, me->pid, where, frame,
		       regs->ip, regs->sp, regs->orig_ax);
501
		print_vma_addr(" in ", regs->ip);
502
		printk(KERN_CONT "\n");
503
	}
L
Linus Torvalds 已提交
504

505 506
	force_sig(SIGSEGV, me);
}