signal.c 23.1 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 12
#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/smp.h>
L
Linus Torvalds 已提交
13 14 15 16
#include <linux/kernel.h>
#include <linux/signal.h>
#include <linux/errno.h>
#include <linux/wait.h>
17
#include <linux/ptrace.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>
23

L
Linus Torvalds 已提交
24 25 26
#include <asm/processor.h>
#include <asm/ucontext.h>
#include <asm/i387.h>
R
Roland McGrath 已提交
27
#include <asm/vdso.h>
28 29 30 31 32 33 34

#ifdef CONFIG_X86_64
#include <asm/proto.h>
#include <asm/ia32_unistd.h>
#include <asm/mce.h>
#endif /* CONFIG_X86_64 */

35
#include <asm/syscall.h>
36
#include <asm/syscalls.h>
37

38
#include <asm/sigframe.h>
L
Linus Torvalds 已提交
39 40 41

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

42 43 44 45 46 47 48 49 50 51 52
#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

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
#define COPY(x)			{		\
	err |= __get_user(regs->x, &sc->x);	\
}

#define COPY_SEG(seg)		{			\
		unsigned short tmp;			\
		err |= __get_user(tmp, &sc->seg);	\
		regs->seg = tmp;			\
}

#define COPY_SEG_CPL3(seg)	{			\
		unsigned short tmp;			\
		err |= __get_user(tmp, &sc->seg);	\
		regs->seg = tmp | 3;			\
}

#define GET_SEG(seg)		{			\
		unsigned short tmp;			\
		err |= __get_user(tmp, &sc->seg);	\
		loadsegment(seg, tmp);			\
}

static int
restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
		   unsigned long *pax)
{
	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;

#ifdef CONFIG_X86_32
	GET_SEG(gs);
	COPY_SEG(fs);
	COPY_SEG(es);
	COPY_SEG(ds);
#endif /* CONFIG_X86_32 */

	COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
	COPY(dx); COPY(cx); COPY(ip);

#ifdef CONFIG_X86_64
	COPY(r8);
	COPY(r9);
	COPY(r10);
	COPY(r11);
	COPY(r12);
	COPY(r13);
	COPY(r14);
	COPY(r15);
#endif /* CONFIG_X86_64 */

#ifdef CONFIG_X86_32
	COPY_SEG_CPL3(cs);
	COPY_SEG_CPL3(ss);
#else /* !CONFIG_X86_32 */
	/* 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);
#endif /* CONFIG_X86_32 */

	err |= __get_user(tmpflags, &sc->flags);
	regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
	regs->orig_ax = -1;		/* disable syscall checks */

	err |= __get_user(buf, &sc->fpstate);
	err |= restore_i387_xstate(buf);

	err |= __get_user(*pax, &sc->ax);
	return err;
}

static int
setup_sigcontext(struct sigcontext __user *sc, void __user *fpstate,
		 struct pt_regs *regs, unsigned long mask)
{
	int err = 0;

#ifdef CONFIG_X86_32
	{
		unsigned int tmp;

		savesegment(gs, tmp);
		err |= __put_user(tmp, (unsigned int __user *)&sc->gs);
	}
	err |= __put_user(regs->fs, (unsigned int __user *)&sc->fs);
	err |= __put_user(regs->es, (unsigned int __user *)&sc->es);
	err |= __put_user(regs->ds, (unsigned int __user *)&sc->ds);
#endif /* CONFIG_X86_32 */

	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);
#ifdef CONFIG_X86_64
	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);
#endif /* CONFIG_X86_64 */

	err |= __put_user(current->thread.trap_no, &sc->trapno);
	err |= __put_user(current->thread.error_code, &sc->err);
	err |= __put_user(regs->ip, &sc->ip);
#ifdef CONFIG_X86_32
	err |= __put_user(regs->cs, (unsigned int __user *)&sc->cs);
	err |= __put_user(regs->flags, &sc->flags);
	err |= __put_user(regs->sp, &sc->sp_at_signal);
	err |= __put_user(regs->ss, (unsigned int __user *)&sc->ss);
#else /* !CONFIG_X86_32 */
	err |= __put_user(regs->flags, &sc->flags);
	err |= __put_user(regs->cs, &sc->cs);
	err |= __put_user(0, &sc->gs);
	err |= __put_user(0, &sc->fs);
#endif /* CONFIG_X86_32 */

	err |= __put_user(fpstate, &sc->fpstate);

	/* non-iBCS2 extensions.. */
	err |= __put_user(mask, &sc->oldmask);
	err |= __put_user(current->thread.cr2, &sc->cr2);

	return err;
}

L
Linus Torvalds 已提交
189
/*
190
 * Set up a signal frame.
L
Linus Torvalds 已提交
191
 */
192
#ifdef CONFIG_X86_32
193 194 195 196 197 198 199 200 201
static const struct {
	u16 poplmovl;
	u32 val;
	u16 int80;
} __attribute__((packed)) retcode = {
	0xb858,		/* popl %eax; movl $..., %eax */
	__NR_sigreturn,
	0x80cd,		/* int $0x80 */
};
202

203 204 205 206 207 208 209 210 211 212 213
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
};
L
Linus Torvalds 已提交
214 215 216 217 218

/*
 * Determine which stack to use..
 */
static inline void __user *
219
get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size,
220
	     void **fpstate)
L
Linus Torvalds 已提交
221
{
222
	unsigned long sp;
L
Linus Torvalds 已提交
223 224

	/* Default to using normal stack */
225
	sp = regs->sp;
L
Linus Torvalds 已提交
226

227 228 229 230
	/*
	 * 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.
	 */
231
	if (on_sig_stack(sp) && !likely(on_sig_stack(sp - frame_size)))
232 233
		return (void __user *) -1L;

L
Linus Torvalds 已提交
234 235
	/* This is the X/Open sanctioned signal stack switching.  */
	if (ka->sa.sa_flags & SA_ONSTACK) {
236 237
		if (sas_ss_flags(sp) == 0)
			sp = current->sas_ss_sp + current->sas_ss_size;
238 239 240 241 242 243
	} else {
		/* This is the legacy signal stack switching. */
		if ((regs->ss & 0xffff) != __USER_DS &&
			!(ka->sa.sa_flags & SA_RESTORER) &&
				ka->sa.sa_restorer)
			sp = (unsigned long) ka->sa.sa_restorer;
L
Linus Torvalds 已提交
244 245
	}

246 247 248
	if (used_math()) {
		sp = sp - sig_xstate_size;
		*fpstate = (struct _fpstate *) sp;
249 250
		if (save_i387_xstate(*fpstate) < 0)
			return (void __user *)-1L;
251 252
	}

253
	sp -= frame_size;
254 255 256 257
	/*
	 * Align the stack pointer according to the i386 ABI,
	 * i.e. so that on function entry ((sp + 4) & 15) == 0.
	 */
258
	sp = ((sp + 4) & -16ul) - 4;
259

260
	return (void __user *) sp;
L
Linus Torvalds 已提交
261 262
}

263
static int
264 265
__setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
	      struct pt_regs *regs)
L
Linus Torvalds 已提交
266 267
{
	struct sigframe __user *frame;
268
	void __user *restorer;
L
Linus Torvalds 已提交
269
	int err = 0;
270
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
271

272
	frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
273 274

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

277
	if (__put_user(sig, &frame->sig))
278
		return -EFAULT;
L
Linus Torvalds 已提交
279

280
	if (setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]))
281
		return -EFAULT;
L
Linus Torvalds 已提交
282 283

	if (_NSIG_WORDS > 1) {
284 285
		if (__copy_to_user(&frame->extramask, &set->sig[1],
				   sizeof(frame->extramask)))
286
			return -EFAULT;
L
Linus Torvalds 已提交
287 288
	}

289
	if (current->mm->context.vdso)
R
Roland McGrath 已提交
290
		restorer = VDSO32_SYMBOL(current->mm->context.vdso, sigreturn);
291
	else
J
Jan Engelhardt 已提交
292
		restorer = &frame->retcode;
L
Linus Torvalds 已提交
293 294 295 296 297
	if (ka->sa.sa_flags & SA_RESTORER)
		restorer = ka->sa.sa_restorer;

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

L
Linus Torvalds 已提交
299
	/*
300
	 * This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
L
Linus Torvalds 已提交
301 302 303 304 305
	 *
	 * 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.
	 */
306
	err |= __put_user(*((u64 *)&retcode), (u64 *)frame->retcode);
L
Linus Torvalds 已提交
307 308

	if (err)
309
		return -EFAULT;
L
Linus Torvalds 已提交
310 311

	/* Set up registers for signal handler */
312 313 314
	regs->sp = (unsigned long)frame;
	regs->ip = (unsigned long)ka->sa.sa_handler;
	regs->ax = (unsigned long)sig;
315 316
	regs->dx = 0;
	regs->cx = 0;
L
Linus Torvalds 已提交
317

318 319 320 321
	regs->ds = __USER_DS;
	regs->es = __USER_DS;
	regs->ss = __USER_DS;
	regs->cs = __USER_CS;
L
Linus Torvalds 已提交
322

323
	return 0;
L
Linus Torvalds 已提交
324 325
}

326 327
static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
			    sigset_t *set, struct pt_regs *regs)
L
Linus Torvalds 已提交
328 329
{
	struct rt_sigframe __user *frame;
330
	void __user *restorer;
L
Linus Torvalds 已提交
331
	int err = 0;
332
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
333

334
	frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
335 336

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

339
	err |= __put_user(sig, &frame->sig);
L
Linus Torvalds 已提交
340 341 342 343
	err |= __put_user(&frame->info, &frame->pinfo);
	err |= __put_user(&frame->uc, &frame->puc);
	err |= copy_siginfo_to_user(&frame->info, info);
	if (err)
344
		return -EFAULT;
L
Linus Torvalds 已提交
345 346

	/* Create the ucontext.  */
347 348 349 350
	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 已提交
351 352
	err |= __put_user(0, &frame->uc.uc_link);
	err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
353
	err |= __put_user(sas_ss_flags(regs->sp),
L
Linus Torvalds 已提交
354 355
			  &frame->uc.uc_stack.ss_flags);
	err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
356
	err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
357
				regs, set->sig[0]);
L
Linus Torvalds 已提交
358 359
	err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
	if (err)
360
		return -EFAULT;
L
Linus Torvalds 已提交
361 362

	/* Set up to return from userspace.  */
R
Roland McGrath 已提交
363
	restorer = VDSO32_SYMBOL(current->mm->context.vdso, rt_sigreturn);
L
Linus Torvalds 已提交
364 365 366
	if (ka->sa.sa_flags & SA_RESTORER)
		restorer = ka->sa.sa_restorer;
	err |= __put_user(restorer, &frame->pretcode);
367

L
Linus Torvalds 已提交
368
	/*
369
	 * This is movl $__NR_rt_sigreturn, %ax ; int $0x80
L
Linus Torvalds 已提交
370 371 372 373 374
	 *
	 * 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.
	 */
375
	err |= __put_user(*((u64 *)&rt_retcode), (u64 *)frame->retcode);
L
Linus Torvalds 已提交
376 377

	if (err)
378
		return -EFAULT;
L
Linus Torvalds 已提交
379 380

	/* Set up registers for signal handler */
381 382
	regs->sp = (unsigned long)frame;
	regs->ip = (unsigned long)ka->sa.sa_handler;
383
	regs->ax = (unsigned long)sig;
384 385
	regs->dx = (unsigned long)&frame->info;
	regs->cx = (unsigned long)&frame->uc;
L
Linus Torvalds 已提交
386

387 388 389 390
	regs->ds = __USER_DS;
	regs->es = __USER_DS;
	regs->ss = __USER_DS;
	regs->cs = __USER_CS;
L
Linus Torvalds 已提交
391

392
	return 0;
L
Linus Torvalds 已提交
393
}
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
#else /* !CONFIG_X86_32 */
/*
 * Determine which stack to use..
 */
static void __user *
get_stack(struct k_sigaction *ka, unsigned long sp, unsigned long size)
{
	/* Default to using normal stack - redzone*/
	sp -= 128;

	/* This is the X/Open sanctioned signal stack switching.  */
	if (ka->sa.sa_flags & SA_ONSTACK) {
		if (sas_ss_flags(sp) == 0)
			sp = current->sas_ss_sp + current->sas_ss_size;
	}

	return (void __user *)round_down(sp - size, 64);
}

static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
			    sigset_t *set, struct pt_regs *regs)
{
	struct rt_sigframe __user *frame;
	void __user *fp = NULL;
	int err = 0;
	struct task_struct *me = current;

	if (used_math()) {
		fp = get_stack(ka, regs->sp, sig_xstate_size);
		frame = (void __user *)round_down(
			(unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;

		if (save_i387_xstate(fp) < 0)
			return -EFAULT;
	} else
		frame = get_stack(ka, regs->sp, sizeof(struct rt_sigframe)) - 8;

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

	if (ka->sa.sa_flags & SA_SIGINFO) {
		if (copy_siginfo_to_user(&frame->info, info))
			return -EFAULT;
	}

	/* Create the ucontext.  */
	if (cpu_has_xsave)
		err |= __put_user(UC_FP_XSTATE, &frame->uc.uc_flags);
	else
		err |= __put_user(0, &frame->uc.uc_flags);
	err |= __put_user(0, &frame->uc.uc_link);
	err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
	err |= __put_user(sas_ss_flags(regs->sp),
			  &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, fp, regs, set->sig[0]);
	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 */
		return -EFAULT;
	}

	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;
	regs->ip = (unsigned long) ka->sa.sa_handler;

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

486
#ifdef CONFIG_X86_32
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
/*
 * Atomically swap in the new signal mask, and wait for a signal.
 */
asmlinkage int
sys_sigsuspend(int history0, int history1, old_sigset_t mask)
{
	mask &= _BLOCKABLE;
	spin_lock_irq(&current->sighand->siglock);
	current->saved_sigmask = current->blocked;
	siginitset(&current->blocked, mask);
	recalc_sigpending();
	spin_unlock_irq(&current->sighand->siglock);

	current->state = TASK_INTERRUPTIBLE;
	schedule();
	set_restore_sigmask();

	return -ERESTARTNOHAND;
}

asmlinkage int
sys_sigaction(int sig, const struct old_sigaction __user *act,
	      struct old_sigaction __user *oact)
{
	struct k_sigaction new_ka, old_ka;
	int ret;

	if (act) {
		old_sigset_t mask;

		if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
		    __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
		    __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
			return -EFAULT;

		__get_user(new_ka.sa.sa_flags, &act->sa_flags);
		__get_user(mask, &act->sa_mask);
		siginitset(&new_ka.sa.sa_mask, mask);
	}

	ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);

	if (!ret && oact) {
		if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
		    __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
		    __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
			return -EFAULT;

		__put_user(old_ka.sa.sa_flags, &oact->sa_flags);
		__put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
	}

	return ret;
}
541
#endif /* CONFIG_X86_32 */
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567

#ifdef CONFIG_X86_32
asmlinkage int sys_sigaltstack(unsigned long bx)
{
	/*
	 * This is needed to make gcc realize it doesn't own the
	 * "struct pt_regs"
	 */
	struct pt_regs *regs = (struct pt_regs *)&bx;
	const stack_t __user *uss = (const stack_t __user *)bx;
	stack_t __user *uoss = (stack_t __user *)regs->cx;

	return do_sigaltstack(uss, uoss, regs->sp);
}
#else /* !CONFIG_X86_32 */
asmlinkage long
sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
		struct pt_regs *regs)
{
	return do_sigaltstack(uss, uoss, regs->sp);
}
#endif /* CONFIG_X86_32 */

/*
 * Do a signal return; undo the signal stack.
 */
568
#ifdef CONFIG_X86_32
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
asmlinkage unsigned long sys_sigreturn(unsigned long __unused)
{
	struct sigframe __user *frame;
	struct pt_regs *regs;
	unsigned long ax;
	sigset_t set;

	regs = (struct pt_regs *) &__unused;
	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;

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

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

badframe:
597
	signal_fault(regs, frame, "sigreturn");
598 599 600

	return 0;
}
601
#endif /* CONFIG_X86_32 */
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634

static long do_rt_sigreturn(struct pt_regs *regs)
{
	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;

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

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

	if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
		goto badframe;

	return ax;

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

#ifdef CONFIG_X86_32
635
asmlinkage int sys_rt_sigreturn(struct pt_regs regs)
636
{
637
	return do_rt_sigreturn(&regs);
638 639 640 641 642 643 644
}
#else /* !CONFIG_X86_32 */
asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
{
	return do_rt_sigreturn(regs);
}
#endif /* CONFIG_X86_32 */
L
Linus Torvalds 已提交
645 646

/*
647 648
 * OK, we're invoking a handler:
 */
649 650
static int signr_convert(int sig)
{
651
#ifdef CONFIG_X86_32
652 653 654 655
	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];
656
#endif /* CONFIG_X86_32 */
657 658 659
	return sig;
}

660 661
#ifdef CONFIG_X86_32

662
#define is_ia32	1
663 664
#define ia32_setup_frame	__setup_frame
#define ia32_setup_rt_frame	__setup_rt_frame
665

666 667 668 669 670 671 672 673
#else /* !CONFIG_X86_32 */

#ifdef CONFIG_IA32_EMULATION
#define is_ia32	test_thread_flag(TIF_IA32)
#else /* !CONFIG_IA32_EMULATION */
#define is_ia32	0
#endif /* CONFIG_IA32_EMULATION */

674 675 676 677 678
int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
		sigset_t *set, struct pt_regs *regs);
int ia32_setup_frame(int sig, struct k_sigaction *ka,
		sigset_t *set, struct pt_regs *regs);

679 680
#endif /* CONFIG_X86_32 */

681 682 683 684
static int
setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
	       sigset_t *set, struct pt_regs *regs)
{
685
	int usig = signr_convert(sig);
686 687 688
	int ret;

	/* Set up the stack frame */
689 690
	if (is_ia32) {
		if (ka->sa.sa_flags & SA_SIGINFO)
691
			ret = ia32_setup_rt_frame(usig, ka, info, set, regs);
692
		else
693
			ret = ia32_setup_frame(usig, ka, set, regs);
694 695
	} else
		ret = __setup_rt_frame(sig, ka, info, set, regs);
696

697 698 699 700 701
	if (ret) {
		force_sigsegv(sig, current);
		return -EFAULT;
	}

702 703 704
	return ret;
}

705
static int
L
Linus Torvalds 已提交
706
handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
707
	      sigset_t *oldset, struct pt_regs *regs)
L
Linus Torvalds 已提交
708
{
709 710
	int ret;

L
Linus Torvalds 已提交
711
	/* Are we from a system call? */
712
	if (syscall_get_nr(current, regs) >= 0) {
L
Linus Torvalds 已提交
713
		/* If so, check system call restarting.. */
714
		switch (syscall_get_error(current, regs)) {
715 716 717 718 719 720 721
		case -ERESTART_RESTARTBLOCK:
		case -ERESTARTNOHAND:
			regs->ax = -EINTR;
			break;

		case -ERESTARTSYS:
			if (!(ka->sa.sa_flags & SA_RESTART)) {
722
				regs->ax = -EINTR;
L
Linus Torvalds 已提交
723
				break;
724 725 726 727 728 729
			}
		/* fallthrough */
		case -ERESTARTNOINTR:
			regs->ax = regs->orig_ax;
			regs->ip -= 2;
			break;
L
Linus Torvalds 已提交
730 731 732 733
		}
	}

	/*
R
Roland McGrath 已提交
734 735
	 * 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 已提交
736
	 */
737
	if (unlikely(regs->flags & X86_EFLAGS_TF) &&
R
Roland McGrath 已提交
738
	    likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
739
		regs->flags &= ~X86_EFLAGS_TF;
L
Linus Torvalds 已提交
740

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

743 744
	if (ret)
		return ret;
745

746 747 748 749 750 751 752 753 754
#ifdef CONFIG_X86_64
	/*
	 * 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);
#endif

755 756 757 758 759 760 761 762 763 764 765 766 767
	/*
	 * Clear the direction flag as per the ABI for function entry.
	 */
	regs->flags &= ~X86_EFLAGS_DF;

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

768 769 770 771 772 773 774
	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);

R
Roland McGrath 已提交
775 776 777
	tracehook_signal_handler(sig, info, ka, regs,
				 test_thread_flag(TIF_SINGLESTEP));

778
	return 0;
L
Linus Torvalds 已提交
779 780
}

781
#ifdef CONFIG_X86_32
782
#define NR_restart_syscall	__NR_restart_syscall
783 784 785 786 787
#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 已提交
788 789 790 791 792
/*
 * 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.
 */
793
static void do_signal(struct pt_regs *regs)
L
Linus Torvalds 已提交
794
{
795
	struct k_sigaction ka;
L
Linus Torvalds 已提交
796 797
	siginfo_t info;
	int signr;
798
	sigset_t *oldset;
L
Linus Torvalds 已提交
799 800

	/*
801 802 803 804 805
	 * 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
	 * if so.
	 * X86_32: vm86 regs switched out by assembly code before reaching
	 * here, so testing against kernel CS suffices.
L
Linus Torvalds 已提交
806
	 */
807
	if (!user_mode(regs))
808
		return;
L
Linus Torvalds 已提交
809

R
Roland McGrath 已提交
810
	if (current_thread_info()->status & TS_RESTORE_SIGMASK)
811 812
		oldset = &current->saved_sigmask;
	else
L
Linus Torvalds 已提交
813 814 815 816
		oldset = &current->blocked;

	signr = get_signal_to_deliver(&info, &ka, regs, NULL);
	if (signr > 0) {
817 818
		/*
		 * Re-enable any watchpoints before delivering the
L
Linus Torvalds 已提交
819 820 821 822
		 * signal to user space. The processor register will
		 * have been cleared if the watchpoint triggered
		 * inside the kernel.
		 */
823
		if (current->thread.debugreg7)
824
			set_debugreg(current->thread.debugreg7, 7);
L
Linus Torvalds 已提交
825

826
		/* Whee! Actually deliver the signal.  */
827
		if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
828
			/*
R
Roland McGrath 已提交
829
			 * A signal was successfully delivered; the saved
830 831
			 * sigmask will have been stored in the signal frame,
			 * and will be restored by sigreturn, so we can simply
R
Roland McGrath 已提交
832
			 * clear the TS_RESTORE_SIGMASK flag.
833
			 */
R
Roland McGrath 已提交
834
			current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
835 836
		}
		return;
L
Linus Torvalds 已提交
837 838 839
	}

	/* Did we come from a system call? */
840
	if (syscall_get_nr(current, regs) >= 0) {
L
Linus Torvalds 已提交
841
		/* Restart the system call - no handlers present */
842
		switch (syscall_get_error(current, regs)) {
843 844 845
		case -ERESTARTNOHAND:
		case -ERESTARTSYS:
		case -ERESTARTNOINTR:
846 847
			regs->ax = regs->orig_ax;
			regs->ip -= 2;
848 849 850
			break;

		case -ERESTART_RESTARTBLOCK:
851
			regs->ax = NR_restart_syscall;
852
			regs->ip -= 2;
853
			break;
L
Linus Torvalds 已提交
854 855
		}
	}
856

857 858 859 860
	/*
	 * If there's no signal to deliver, we just put the saved sigmask
	 * back.
	 */
R
Roland McGrath 已提交
861 862
	if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
		current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
863 864
		sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
	}
L
Linus Torvalds 已提交
865 866 867 868
}

/*
 * notification of userspace execution resumption
869
 * - triggered by the TIF_WORK_MASK flags
L
Linus Torvalds 已提交
870
 */
871 872
void
do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
L
Linus Torvalds 已提交
873
{
874 875 876 877 878 879
#if defined(CONFIG_X86_64) && defined(CONFIG_X86_MCE)
	/* notify userspace of pending MCEs */
	if (thread_info_flags & _TIF_MCE_NOTIFY)
		mce_notify_user();
#endif /* CONFIG_X86_64 && CONFIG_X86_MCE */

L
Linus Torvalds 已提交
880
	/* deal with pending signal delivery */
R
Roland McGrath 已提交
881
	if (thread_info_flags & _TIF_SIGPENDING)
882
		do_signal(regs);
P
Peter Zijlstra 已提交
883

884 885 886 887 888
	if (thread_info_flags & _TIF_NOTIFY_RESUME) {
		clear_thread_flag(TIF_NOTIFY_RESUME);
		tracehook_notify_resume(regs);
	}

889
#ifdef CONFIG_X86_32
L
Linus Torvalds 已提交
890
	clear_thread_flag(TIF_IRET);
891
#endif /* CONFIG_X86_32 */
L
Linus Torvalds 已提交
892
}
893 894 895 896 897 898

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

	if (show_unhandled_signals && printk_ratelimit()) {
899
		printk("%s"
900
		       "%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
901
		       task_pid_nr(current) > 1 ? KERN_INFO : KERN_EMERG,
902 903 904 905 906 907 908 909
		       me->comm, me->pid, where, frame,
		       regs->ip, regs->sp, regs->orig_ax);
		print_vma_addr(" in ", regs->ip);
		printk(KERN_CONT "\n");
	}

	force_sig(SIGSEGV, me);
}