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

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

12 13 14
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/smp.h>
L
Linus Torvalds 已提交
15 16 17
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/wait.h>
R
Roland McGrath 已提交
18
#include <linux/tracehook.h>
19 20 21 22
#include <linux/unistd.h>
#include <linux/stddef.h>
#include <linux/personality.h>
#include <linux/uaccess.h>
A
Avi Kivity 已提交
23
#include <linux/user-return-notifier.h>
24
#include <linux/uprobes.h>
25
#include <linux/context_tracking.h>
26

L
Linus Torvalds 已提交
27 28 29
#include <asm/processor.h>
#include <asm/ucontext.h>
#include <asm/i387.h>
30
#include <asm/fpu-internal.h>
R
Roland McGrath 已提交
31
#include <asm/vdso.h>
32
#include <asm/mce.h>
33
#include <asm/sighandling.h>
34 35 36 37

#ifdef CONFIG_X86_64
#include <asm/proto.h>
#include <asm/ia32_unistd.h>
38
#include <asm/sys_ia32.h>
39 40
#endif /* CONFIG_X86_64 */

41
#include <asm/syscall.h>
42
#include <asm/syscalls.h>
43

44
#include <asm/sigframe.h>
L
Linus Torvalds 已提交
45

T
Tejun Heo 已提交
46 47 48
#define COPY(x)			do {			\
	get_user_ex(regs->x, &sc->x);			\
} while (0)
49

T
Tejun Heo 已提交
50 51 52 53 54
#define GET_SEG(seg)		({			\
	unsigned short tmp;				\
	get_user_ex(tmp, &sc->seg);			\
	tmp;						\
})
55

T
Tejun Heo 已提交
56 57 58
#define COPY_SEG(seg)		do {			\
	regs->seg = GET_SEG(seg);			\
} while (0)
59

T
Tejun Heo 已提交
60 61 62
#define COPY_SEG_CPL3(seg)	do {			\
	regs->seg = GET_SEG(seg) | 3;			\
} while (0)
63

64 65
int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
		       unsigned long *pax)
66 67 68 69 70 71 72 73
{
	void __user *buf;
	unsigned int tmpflags;
	unsigned int err = 0;

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

74 75
	get_user_try {

76
#ifdef CONFIG_X86_32
T
Tejun Heo 已提交
77
		set_user_gs(regs, GET_SEG(gs));
78 79 80
		COPY_SEG(fs);
		COPY_SEG(es);
		COPY_SEG(ds);
81 82
#endif /* CONFIG_X86_32 */

83 84
		COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
		COPY(dx); COPY(cx); COPY(ip);
85 86

#ifdef CONFIG_X86_64
87 88 89 90 91 92 93 94
		COPY(r8);
		COPY(r9);
		COPY(r10);
		COPY(r11);
		COPY(r12);
		COPY(r13);
		COPY(r14);
		COPY(r15);
95 96 97
#endif /* CONFIG_X86_64 */

#ifdef CONFIG_X86_32
98 99
		COPY_SEG_CPL3(cs);
		COPY_SEG_CPL3(ss);
100
#else /* !CONFIG_X86_32 */
101 102 103 104
		/* 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. */
		COPY_SEG_CPL3(cs);
105 106
#endif /* CONFIG_X86_32 */

107 108 109 110 111
		get_user_ex(tmpflags, &sc->flags);
		regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
		regs->orig_ax = -1;		/* disable syscall checks */

		get_user_ex(buf, &sc->fpstate);
112

113 114
		get_user_ex(*pax, &sc->ax);
	} get_user_catch(err);
115

116
	err |= restore_xstate_sig(buf, config_enabled(CONFIG_X86_32));
117

118 119 120
	return err;
}

121 122
int setup_sigcontext(struct sigcontext __user *sc, void __user *fpstate,
		     struct pt_regs *regs, unsigned long mask)
123 124 125
{
	int err = 0;

126
	put_user_try {
127

128
#ifdef CONFIG_X86_32
T
Tejun Heo 已提交
129
		put_user_ex(get_user_gs(regs), (unsigned int __user *)&sc->gs);
130 131 132
		put_user_ex(regs->fs, (unsigned int __user *)&sc->fs);
		put_user_ex(regs->es, (unsigned int __user *)&sc->es);
		put_user_ex(regs->ds, (unsigned int __user *)&sc->ds);
133 134
#endif /* CONFIG_X86_32 */

135 136 137 138 139 140 141 142
		put_user_ex(regs->di, &sc->di);
		put_user_ex(regs->si, &sc->si);
		put_user_ex(regs->bp, &sc->bp);
		put_user_ex(regs->sp, &sc->sp);
		put_user_ex(regs->bx, &sc->bx);
		put_user_ex(regs->dx, &sc->dx);
		put_user_ex(regs->cx, &sc->cx);
		put_user_ex(regs->ax, &sc->ax);
143
#ifdef CONFIG_X86_64
144 145 146 147 148 149 150 151
		put_user_ex(regs->r8, &sc->r8);
		put_user_ex(regs->r9, &sc->r9);
		put_user_ex(regs->r10, &sc->r10);
		put_user_ex(regs->r11, &sc->r11);
		put_user_ex(regs->r12, &sc->r12);
		put_user_ex(regs->r13, &sc->r13);
		put_user_ex(regs->r14, &sc->r14);
		put_user_ex(regs->r15, &sc->r15);
152 153
#endif /* CONFIG_X86_64 */

154
		put_user_ex(current->thread.trap_nr, &sc->trapno);
155 156
		put_user_ex(current->thread.error_code, &sc->err);
		put_user_ex(regs->ip, &sc->ip);
157
#ifdef CONFIG_X86_32
158 159 160 161
		put_user_ex(regs->cs, (unsigned int __user *)&sc->cs);
		put_user_ex(regs->flags, &sc->flags);
		put_user_ex(regs->sp, &sc->sp_at_signal);
		put_user_ex(regs->ss, (unsigned int __user *)&sc->ss);
162
#else /* !CONFIG_X86_32 */
163 164 165 166
		put_user_ex(regs->flags, &sc->flags);
		put_user_ex(regs->cs, &sc->cs);
		put_user_ex(0, &sc->gs);
		put_user_ex(0, &sc->fs);
167 168
#endif /* CONFIG_X86_32 */

169
		put_user_ex(fpstate, &sc->fpstate);
170

171 172 173 174
		/* non-iBCS2 extensions.. */
		put_user_ex(mask, &sc->oldmask);
		put_user_ex(current->thread.cr2, &sc->cr2);
	} put_user_catch(err);
175 176 177 178

	return err;
}

L
Linus Torvalds 已提交
179
/*
180
 * Set up a signal frame.
L
Linus Torvalds 已提交
181 182 183 184 185
 */

/*
 * Determine which stack to use..
 */
186 187 188 189 190 191 192 193 194 195 196 197 198 199
static unsigned long align_sigframe(unsigned long sp)
{
#ifdef CONFIG_X86_32
	/*
	 * Align the stack pointer according to the i386 ABI,
	 * i.e. so that on function entry ((sp + 4) & 15) == 0.
	 */
	sp = ((sp + 4) & -16ul) - 4;
#else /* !CONFIG_X86_32 */
	sp = round_down(sp, 16) - 8;
#endif
	return sp;
}

L
Linus Torvalds 已提交
200
static inline void __user *
201
get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size,
202
	     void __user **fpstate)
L
Linus Torvalds 已提交
203 204
{
	/* Default to using normal stack */
205
	unsigned long math_size = 0;
206
	unsigned long sp = regs->sp;
207
	unsigned long buf_fx = 0;
208
	int onsigstack = on_sig_stack(sp);
209 210

	/* redzone */
211 212
	if (config_enabled(CONFIG_X86_64))
		sp -= 128;
L
Linus Torvalds 已提交
213

214 215 216
	if (!onsigstack) {
		/* This is the X/Open sanctioned signal stack switching.  */
		if (ka->sa.sa_flags & SA_ONSTACK) {
217
			if (current->sas_ss_size)
218
				sp = current->sas_ss_sp + current->sas_ss_size;
219 220 221 222 223
		} else if (config_enabled(CONFIG_X86_32) &&
			   (regs->ss & 0xffff) != __USER_DS &&
			   !(ka->sa.sa_flags & SA_RESTORER) &&
			   ka->sa.sa_restorer) {
				/* This is the legacy signal stack switching. */
224 225
				sp = (unsigned long) ka->sa.sa_restorer;
		}
L
Linus Torvalds 已提交
226 227
	}

228
	if (used_math()) {
229 230
		sp = alloc_mathframe(sp, config_enabled(CONFIG_X86_32),
				     &buf_fx, &math_size);
231
		*fpstate = (void __user *)sp;
232 233
	}

234 235 236 237 238 239 240 241 242
	sp = align_sigframe(sp - frame_size);

	/*
	 * If we are on the alternate signal stack and would overflow it, don't.
	 * Return an always-bogus address instead so we will die with SIGSEGV.
	 */
	if (onsigstack && !likely(on_sig_stack(sp)))
		return (void __user *)-1L;

243 244 245
	/* save i387 and extended state */
	if (used_math() &&
	    save_xstate_sig(*fpstate, (void __user *)buf_fx, math_size) < 0)
246 247 248
		return (void __user *)-1L;

	return (void __user *)sp;
L
Linus Torvalds 已提交
249 250
}

251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
#ifdef CONFIG_X86_32
static const struct {
	u16 poplmovl;
	u32 val;
	u16 int80;
} __attribute__((packed)) retcode = {
	0xb858,		/* popl %eax; movl $..., %eax */
	__NR_sigreturn,
	0x80cd,		/* int $0x80 */
};

static const struct {
	u8  movl;
	u32 val;
	u16 int80;
	u8  pad;
} __attribute__((packed)) rt_retcode = {
	0xb8,		/* movl $..., %eax */
	__NR_rt_sigreturn,
	0x80cd,		/* int $0x80 */
	0
};

274
static int
A
Al Viro 已提交
275
__setup_frame(int sig, struct ksignal *ksig, sigset_t *set,
276
	      struct pt_regs *regs)
L
Linus Torvalds 已提交
277 278
{
	struct sigframe __user *frame;
279
	void __user *restorer;
L
Linus Torvalds 已提交
280
	int err = 0;
281
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
282

A
Al Viro 已提交
283
	frame = get_sigframe(&ksig->ka, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
284 285

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

288
	if (__put_user(sig, &frame->sig))
289
		return -EFAULT;
L
Linus Torvalds 已提交
290

291
	if (setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]))
292
		return -EFAULT;
L
Linus Torvalds 已提交
293 294

	if (_NSIG_WORDS > 1) {
295 296
		if (__copy_to_user(&frame->extramask, &set->sig[1],
				   sizeof(frame->extramask)))
297
			return -EFAULT;
L
Linus Torvalds 已提交
298 299
	}

300
	if (current->mm->context.vdso)
301 302
		restorer = current->mm->context.vdso +
			selected_vdso32->sym___kernel_sigreturn;
303
	else
J
Jan Engelhardt 已提交
304
		restorer = &frame->retcode;
A
Al Viro 已提交
305 306
	if (ksig->ka.sa.sa_flags & SA_RESTORER)
		restorer = ksig->ka.sa.sa_restorer;
L
Linus Torvalds 已提交
307 308 309

	/* Set up to return from userspace.  */
	err |= __put_user(restorer, &frame->pretcode);
310

L
Linus Torvalds 已提交
311
	/*
312
	 * This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
L
Linus Torvalds 已提交
313 314 315 316 317
	 *
	 * WE DO NOT USE IT ANY MORE! It's only left here for historical
	 * reasons and because gdb uses it as a signature to notice
	 * signal handler stack frames.
	 */
318
	err |= __put_user(*((u64 *)&retcode), (u64 *)frame->retcode);
L
Linus Torvalds 已提交
319 320

	if (err)
321
		return -EFAULT;
L
Linus Torvalds 已提交
322 323

	/* Set up registers for signal handler */
324
	regs->sp = (unsigned long)frame;
A
Al Viro 已提交
325
	regs->ip = (unsigned long)ksig->ka.sa.sa_handler;
326
	regs->ax = (unsigned long)sig;
327 328
	regs->dx = 0;
	regs->cx = 0;
L
Linus Torvalds 已提交
329

330 331 332 333
	regs->ds = __USER_DS;
	regs->es = __USER_DS;
	regs->ss = __USER_DS;
	regs->cs = __USER_CS;
L
Linus Torvalds 已提交
334

335
	return 0;
L
Linus Torvalds 已提交
336 337
}

A
Al Viro 已提交
338
static int __setup_rt_frame(int sig, struct ksignal *ksig,
339
			    sigset_t *set, struct pt_regs *regs)
L
Linus Torvalds 已提交
340 341
{
	struct rt_sigframe __user *frame;
342
	void __user *restorer;
L
Linus Torvalds 已提交
343
	int err = 0;
344
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
345

A
Al Viro 已提交
346
	frame = get_sigframe(&ksig->ka, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
347 348

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

351 352 353 354 355 356 357 358 359 360 361
	put_user_try {
		put_user_ex(sig, &frame->sig);
		put_user_ex(&frame->info, &frame->pinfo);
		put_user_ex(&frame->uc, &frame->puc);

		/* Create the ucontext.  */
		if (cpu_has_xsave)
			put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
		else
			put_user_ex(0, &frame->uc.uc_flags);
		put_user_ex(0, &frame->uc.uc_link);
362
		save_altstack_ex(&frame->uc.uc_stack, regs->sp);
363 364

		/* Set up to return from userspace.  */
365
		restorer = current->mm->context.vdso +
366
			selected_vdso32->sym___kernel_rt_sigreturn;
A
Al Viro 已提交
367 368
		if (ksig->ka.sa.sa_flags & SA_RESTORER)
			restorer = ksig->ka.sa.sa_restorer;
369 370 371 372 373 374 375 376 377 378 379
		put_user_ex(restorer, &frame->pretcode);

		/*
		 * This is movl $__NR_rt_sigreturn, %ax ; int $0x80
		 *
		 * WE DO NOT USE IT ANY MORE! It's only left here for historical
		 * reasons and because gdb uses it as a signature to notice
		 * signal handler stack frames.
		 */
		put_user_ex(*((u64 *)&rt_retcode), (u64 *)frame->retcode);
	} put_user_catch(err);
380
	
A
Al Viro 已提交
381
	err |= copy_siginfo_to_user(&frame->info, &ksig->info);
382 383 384
	err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
				regs, set->sig[0]);
	err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
L
Linus Torvalds 已提交
385 386

	if (err)
387
		return -EFAULT;
L
Linus Torvalds 已提交
388 389

	/* Set up registers for signal handler */
390
	regs->sp = (unsigned long)frame;
A
Al Viro 已提交
391
	regs->ip = (unsigned long)ksig->ka.sa.sa_handler;
392
	regs->ax = (unsigned long)sig;
393 394
	regs->dx = (unsigned long)&frame->info;
	regs->cx = (unsigned long)&frame->uc;
L
Linus Torvalds 已提交
395

396 397 398 399
	regs->ds = __USER_DS;
	regs->es = __USER_DS;
	regs->ss = __USER_DS;
	regs->cs = __USER_CS;
L
Linus Torvalds 已提交
400

401
	return 0;
L
Linus Torvalds 已提交
402
}
403
#else /* !CONFIG_X86_32 */
A
Al Viro 已提交
404
static int __setup_rt_frame(int sig, struct ksignal *ksig,
405 406 407 408 409 410
			    sigset_t *set, struct pt_regs *regs)
{
	struct rt_sigframe __user *frame;
	void __user *fp = NULL;
	int err = 0;

A
Al Viro 已提交
411
	frame = get_sigframe(&ksig->ka, regs, sizeof(struct rt_sigframe), &fp);
412 413 414 415

	if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
		return -EFAULT;

A
Al Viro 已提交
416 417
	if (ksig->ka.sa.sa_flags & SA_SIGINFO) {
		if (copy_siginfo_to_user(&frame->info, &ksig->info))
418 419 420
			return -EFAULT;
	}

421 422 423 424 425 426 427
	put_user_try {
		/* Create the ucontext.  */
		if (cpu_has_xsave)
			put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
		else
			put_user_ex(0, &frame->uc.uc_flags);
		put_user_ex(0, &frame->uc.uc_link);
428
		save_altstack_ex(&frame->uc.uc_stack, regs->sp);
429 430 431 432

		/* Set up to return from userspace.  If provided, use a stub
		   already in userspace.  */
		/* x86-64 should always use SA_RESTORER. */
A
Al Viro 已提交
433 434
		if (ksig->ka.sa.sa_flags & SA_RESTORER) {
			put_user_ex(ksig->ka.sa.sa_restorer, &frame->pretcode);
435 436 437 438 439
		} else {
			/* could use a vstub here */
			err |= -EFAULT;
		}
	} put_user_catch(err);
440

441 442 443
	err |= setup_sigcontext(&frame->uc.uc_mcontext, fp, regs, set->sig[0]);
	err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));

444 445 446 447 448 449 450 451 452 453 454 455
	if (err)
		return -EFAULT;

	/* Set up registers for signal handler */
	regs->di = sig;
	/* In case the signal handler was declared without prototypes */
	regs->ax = 0;

	/* This also works for non SA_SIGINFO handlers because they expect the
	   next argument after the signal number on the stack. */
	regs->si = (unsigned long)&frame->info;
	regs->dx = (unsigned long)&frame->uc;
A
Al Viro 已提交
456
	regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
457 458 459 460 461 462 463 464 465 466 467

	regs->sp = (unsigned long)frame;

	/* 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;

	return 0;
}
#endif /* CONFIG_X86_32 */

A
Al Viro 已提交
468 469
static int x32_setup_rt_frame(struct ksignal *ksig,
			      compat_sigset_t *set,
470 471 472 473 474 475 476 477
			      struct pt_regs *regs)
{
#ifdef CONFIG_X86_X32_ABI
	struct rt_sigframe_x32 __user *frame;
	void __user *restorer;
	int err = 0;
	void __user *fpstate = NULL;

A
Al Viro 已提交
478
	frame = get_sigframe(&ksig->ka, regs, sizeof(*frame), &fpstate);
479 480 481 482

	if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
		return -EFAULT;

A
Al Viro 已提交
483 484
	if (ksig->ka.sa.sa_flags & SA_SIGINFO) {
		if (copy_siginfo_to_user32(&frame->info, &ksig->info))
485 486 487 488 489 490 491 492 493 494
			return -EFAULT;
	}

	put_user_try {
		/* Create the ucontext.  */
		if (cpu_has_xsave)
			put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
		else
			put_user_ex(0, &frame->uc.uc_flags);
		put_user_ex(0, &frame->uc.uc_link);
495
		compat_save_altstack_ex(&frame->uc.uc_stack, regs->sp);
496 497
		put_user_ex(0, &frame->uc.uc__pad0);

A
Al Viro 已提交
498 499
		if (ksig->ka.sa.sa_flags & SA_RESTORER) {
			restorer = ksig->ka.sa.sa_restorer;
500 501 502 503 504 505 506 507
		} else {
			/* could use a vstub here */
			restorer = NULL;
			err |= -EFAULT;
		}
		put_user_ex(restorer, &frame->pretcode);
	} put_user_catch(err);

508 509 510 511
	err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
				regs, set->sig[0]);
	err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));

512 513 514 515 516
	if (err)
		return -EFAULT;

	/* Set up registers for signal handler */
	regs->sp = (unsigned long) frame;
A
Al Viro 已提交
517
	regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
518 519

	/* We use the x32 calling convention here... */
A
Al Viro 已提交
520
	regs->di = ksig->sig;
521 522 523 524 525 526 527 528 529 530 531 532 533
	regs->si = (unsigned long) &frame->info;
	regs->dx = (unsigned long) &frame->uc;

	loadsegment(ds, __USER_DS);
	loadsegment(es, __USER_DS);

	regs->cs = __USER_CS;
	regs->ss = __USER_DS;
#endif	/* CONFIG_X86_X32_ABI */

	return 0;
}

534 535 536
/*
 * Do a signal return; undo the signal stack.
 */
537
#ifdef CONFIG_X86_32
538
asmlinkage unsigned long sys_sigreturn(void)
539
{
540
	struct pt_regs *regs = current_pt_regs();
541 542 543 544 545 546 547 548 549 550 551 552 553
	struct sigframe __user *frame;
	unsigned long ax;
	sigset_t set;

	frame = (struct sigframe __user *)(regs->sp - 8);

	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
		goto badframe;
	if (__get_user(set.sig[0], &frame->sc.oldmask) || (_NSIG_WORDS > 1
		&& __copy_from_user(&set.sig[1], &frame->extramask,
				    sizeof(frame->extramask))))
		goto badframe;

554
	set_current_blocked(&set);
555 556 557 558 559 560

	if (restore_sigcontext(regs, &frame->sc, &ax))
		goto badframe;
	return ax;

badframe:
561
	signal_fault(regs, frame, "sigreturn");
562 563 564

	return 0;
}
565
#endif /* CONFIG_X86_32 */
566

567
asmlinkage long sys_rt_sigreturn(void)
568
{
569
	struct pt_regs *regs = current_pt_regs();
570 571 572 573 574 575 576 577 578 579
	struct rt_sigframe __user *frame;
	unsigned long ax;
	sigset_t set;

	frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
		goto badframe;
	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
		goto badframe;

580
	set_current_blocked(&set);
581 582 583 584

	if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
		goto badframe;

585
	if (restore_altstack(&frame->uc.uc_stack))
586 587 588 589 590 591 592 593 594
		goto badframe;

	return ax;

badframe:
	signal_fault(regs, frame, "rt_sigreturn");
	return 0;
}

L
Linus Torvalds 已提交
595
/*
596 597
 * OK, we're invoking a handler:
 */
598 599
static int signr_convert(int sig)
{
600
#ifdef CONFIG_X86_32
601 602 603 604
	struct thread_info *info = current_thread_info();

	if (info->exec_domain && info->exec_domain->signal_invmap && sig < 32)
		return info->exec_domain->signal_invmap[sig];
605
#endif /* CONFIG_X86_32 */
606 607 608
	return sig;
}

609
static int
A
Al Viro 已提交
610
setup_rt_frame(struct ksignal *ksig, struct pt_regs *regs)
611
{
A
Al Viro 已提交
612
	int usig = signr_convert(ksig->sig);
A
Al Viro 已提交
613
	sigset_t *set = sigmask_to_save();
614
	compat_sigset_t *cset = (compat_sigset_t *) set;
615 616

	/* Set up the stack frame */
617
	if (is_ia32_frame()) {
A
Al Viro 已提交
618 619
		if (ksig->ka.sa.sa_flags & SA_SIGINFO)
			return ia32_setup_rt_frame(usig, ksig, cset, regs);
620
		else
A
Al Viro 已提交
621
			return ia32_setup_frame(usig, ksig, cset, regs);
622
	} else if (is_x32_frame()) {
A
Al Viro 已提交
623
		return x32_setup_rt_frame(ksig, cset, regs);
624
	} else {
A
Al Viro 已提交
625
		return __setup_rt_frame(ksig->sig, ksig, set, regs);
626
	}
627 628
}

629
static void
A
Al Viro 已提交
630
handle_signal(struct ksignal *ksig, struct pt_regs *regs)
L
Linus Torvalds 已提交
631
{
A
Al Viro 已提交
632
	bool failed;
L
Linus Torvalds 已提交
633
	/* Are we from a system call? */
634
	if (syscall_get_nr(current, regs) >= 0) {
L
Linus Torvalds 已提交
635
		/* If so, check system call restarting.. */
636
		switch (syscall_get_error(current, regs)) {
637 638 639 640 641 642
		case -ERESTART_RESTARTBLOCK:
		case -ERESTARTNOHAND:
			regs->ax = -EINTR;
			break;

		case -ERESTARTSYS:
A
Al Viro 已提交
643
			if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
644
				regs->ax = -EINTR;
L
Linus Torvalds 已提交
645
				break;
646 647 648 649 650 651
			}
		/* fallthrough */
		case -ERESTARTNOINTR:
			regs->ax = regs->orig_ax;
			regs->ip -= 2;
			break;
L
Linus Torvalds 已提交
652 653 654 655
		}
	}

	/*
R
Roland McGrath 已提交
656 657
	 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
	 * flag so that register information in the sigcontext is correct.
L
Linus Torvalds 已提交
658
	 */
659
	if (unlikely(regs->flags & X86_EFLAGS_TF) &&
R
Roland McGrath 已提交
660
	    likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
661
		regs->flags &= ~X86_EFLAGS_TF;
L
Linus Torvalds 已提交
662

A
Al Viro 已提交
663 664 665 666
	failed = (setup_rt_frame(ksig, regs) < 0);
	if (!failed) {
		/*
		 * Clear the direction flag as per the ABI for function entry.
667
		 *
668 669 670
		 * Clear RF when entering the signal handler, because
		 * it might disable possible debug exception from the
		 * signal handler.
671
		 *
A
Al Viro 已提交
672 673 674 675 676
		 * 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.
		 */
677
		regs->flags &= ~(X86_EFLAGS_DF|X86_EFLAGS_RF|X86_EFLAGS_TF);
678 679 680 681 682
		/*
		 * Ensure the signal handler starts with the new fpu state.
		 */
		if (used_math())
			drop_init_fpu(current);
683
	}
A
Al Viro 已提交
684
	signal_setup_done(failed, ksig, test_thread_flag(TIF_SINGLESTEP));
L
Linus Torvalds 已提交
685 686
}

687
#ifdef CONFIG_X86_32
688
#define NR_restart_syscall	__NR_restart_syscall
689 690 691 692 693
#else /* !CONFIG_X86_32 */
#define NR_restart_syscall	\
	test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall
#endif /* CONFIG_X86_32 */

L
Linus Torvalds 已提交
694 695 696 697 698
/*
 * 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.
 */
699
static void do_signal(struct pt_regs *regs)
L
Linus Torvalds 已提交
700
{
A
Al Viro 已提交
701
	struct ksignal ksig;
L
Linus Torvalds 已提交
702

A
Al Viro 已提交
703
	if (get_signal(&ksig)) {
704
		/* Whee! Actually deliver the signal.  */
A
Al Viro 已提交
705
		handle_signal(&ksig, regs);
706
		return;
L
Linus Torvalds 已提交
707 708 709
	}

	/* Did we come from a system call? */
710
	if (syscall_get_nr(current, regs) >= 0) {
L
Linus Torvalds 已提交
711
		/* Restart the system call - no handlers present */
712
		switch (syscall_get_error(current, regs)) {
713 714 715
		case -ERESTARTNOHAND:
		case -ERESTARTSYS:
		case -ERESTARTNOINTR:
716 717
			regs->ax = regs->orig_ax;
			regs->ip -= 2;
718 719 720
			break;

		case -ERESTART_RESTARTBLOCK:
721
			regs->ax = NR_restart_syscall;
722
			regs->ip -= 2;
723
			break;
L
Linus Torvalds 已提交
724 725
		}
	}
726

727 728 729 730
	/*
	 * If there's no signal to deliver, we just put the saved sigmask
	 * back.
	 */
A
Al Viro 已提交
731
	restore_saved_sigmask();
L
Linus Torvalds 已提交
732 733 734 735
}

/*
 * notification of userspace execution resumption
736
 * - triggered by the TIF_WORK_MASK flags
L
Linus Torvalds 已提交
737
 */
738
__visible void
739
do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
L
Linus Torvalds 已提交
740
{
741
	user_exit();
742

743
	if (thread_info_flags & _TIF_UPROBE)
744 745
		uprobe_notify_resume(regs);

L
Linus Torvalds 已提交
746
	/* deal with pending signal delivery */
R
Roland McGrath 已提交
747
	if (thread_info_flags & _TIF_SIGPENDING)
748
		do_signal(regs);
P
Peter Zijlstra 已提交
749

750 751 752 753
	if (thread_info_flags & _TIF_NOTIFY_RESUME) {
		clear_thread_flag(TIF_NOTIFY_RESUME);
		tracehook_notify_resume(regs);
	}
A
Avi Kivity 已提交
754 755
	if (thread_info_flags & _TIF_USER_RETURN_NOTIFY)
		fire_user_return_notifiers();
756

757
	user_enter();
L
Linus Torvalds 已提交
758
}
759 760 761 762 763 764

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

	if (show_unhandled_signals && printk_ratelimit()) {
765
		printk("%s"
766
		       "%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
767
		       task_pid_nr(current) > 1 ? KERN_INFO : KERN_EMERG,
768 769 770
		       me->comm, me->pid, where, frame,
		       regs->ip, regs->sp, regs->orig_ax);
		print_vma_addr(" in ", regs->ip);
771
		pr_cont("\n");
772 773 774 775
	}

	force_sig(SIGSEGV, me);
}
776 777

#ifdef CONFIG_X86_X32_ABI
778
asmlinkage long sys32_x32_rt_sigreturn(void)
779
{
780
	struct pt_regs *regs = current_pt_regs();
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796
	struct rt_sigframe_x32 __user *frame;
	sigset_t set;
	unsigned long ax;

	frame = (struct rt_sigframe_x32 __user *)(regs->sp - 8);

	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
		goto badframe;
	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
		goto badframe;

	set_current_blocked(&set);

	if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
		goto badframe;

A
Al Viro 已提交
797
	if (compat_restore_altstack(&frame->uc.uc_stack))
798 799 800 801 802 803 804 805 806
		goto badframe;

	return ax;

badframe:
	signal_fault(regs, frame, "x32 rt_sigreturn");
	return 0;
}
#endif