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

A
Al Viro 已提交
7 8

#include <linux/personality.h>
9
#include <linux/ptrace.h>
A
Al Viro 已提交
10
#include <linux/kernel.h>
11 12 13
#include <asm/unistd.h>
#include <asm/uaccess.h>
#include <asm/ucontext.h>
14 15
#include <frame_kern.h>
#include <skas.h>
L
Linus Torvalds 已提交
16

A
Al Viro 已提交
17 18
#ifdef CONFIG_X86_32

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * FPU tag word conversions.
 */

static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
{
	unsigned int tmp; /* to avoid 16 bit prefixes in the code */

	/* Transform each pair of bits into 01 (valid) or 00 (empty) */
	tmp = ~twd;
	tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
	/* and move the valid bits to the lower byte. */
	tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
	tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
	tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
	return tmp;
}

static inline unsigned long twd_fxsr_to_i387(struct user_fxsr_struct *fxsave)
{
	struct _fpxreg *st = NULL;
	unsigned long twd = (unsigned long) fxsave->twd;
	unsigned long tag;
	unsigned long ret = 0xffff0000;
	int i;

45
#define FPREG_ADDR(f, n)	((char *)&(f)->st_space + (n) * 16)
46 47 48 49 50 51 52 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

	for (i = 0; i < 8; i++) {
		if (twd & 0x1) {
			st = (struct _fpxreg *) FPREG_ADDR(fxsave, i);

			switch (st->exponent & 0x7fff) {
			case 0x7fff:
				tag = 2;		/* Special */
				break;
			case 0x0000:
				if ( !st->significand[0] &&
				     !st->significand[1] &&
				     !st->significand[2] &&
				     !st->significand[3] ) {
					tag = 1;	/* Zero */
				} else {
					tag = 2;	/* Special */
				}
				break;
			default:
				if (st->significand[3] & 0x8000) {
					tag = 0;	/* Valid */
				} else {
					tag = 2;	/* Special */
				}
				break;
			}
		} else {
			tag = 3;			/* Empty */
		}
		ret |= (tag << (2 * i));
		twd = twd >> 1;
	}
	return ret;
}

static int convert_fxsr_to_user(struct _fpstate __user *buf,
				struct user_fxsr_struct *fxsave)
{
	unsigned long env[7];
	struct _fpreg __user *to;
	struct _fpxreg *from;
	int i;

	env[0] = (unsigned long)fxsave->cwd | 0xffff0000ul;
	env[1] = (unsigned long)fxsave->swd | 0xffff0000ul;
	env[2] = twd_fxsr_to_i387(fxsave);
	env[3] = fxsave->fip;
	env[4] = fxsave->fcs | ((unsigned long)fxsave->fop << 16);
	env[5] = fxsave->foo;
	env[6] = fxsave->fos;

	if (__copy_to_user(buf, env, 7 * sizeof(unsigned long)))
		return 1;

	to = &buf->_st[0];
	from = (struct _fpxreg *) &fxsave->st_space[0];
	for (i = 0; i < 8; i++, to++, from++) {
		unsigned long __user *t = (unsigned long __user *)to;
		unsigned long *f = (unsigned long *)from;

		if (__put_user(*f, t) ||
				__put_user(*(f + 1), t + 1) ||
				__put_user(from->exponent, &to->exponent))
			return 1;
	}
	return 0;
}

static int convert_fxsr_from_user(struct user_fxsr_struct *fxsave,
				  struct _fpstate __user *buf)
{
	unsigned long env[7];
	struct _fpxreg *to;
	struct _fpreg __user *from;
	int i;

	if (copy_from_user( env, buf, 7 * sizeof(long)))
		return 1;

	fxsave->cwd = (unsigned short)(env[0] & 0xffff);
	fxsave->swd = (unsigned short)(env[1] & 0xffff);
	fxsave->twd = twd_i387_to_fxsr((unsigned short)(env[2] & 0xffff));
	fxsave->fip = env[3];
	fxsave->fop = (unsigned short)((env[4] & 0xffff0000ul) >> 16);
	fxsave->fcs = (env[4] & 0xffff);
	fxsave->foo = env[5];
	fxsave->fos = env[6];

	to = (struct _fpxreg *) &fxsave->st_space[0];
	from = &buf->_st[0];
	for (i = 0; i < 8; i++, to++, from++) {
		unsigned long *t = (unsigned long *)to;
		unsigned long __user *f = (unsigned long __user *)from;

		if (__get_user(*t, f) ||
		    __get_user(*(t + 1), f + 1) ||
		    __get_user(to->exponent, &from->exponent))
			return 1;
	}
	return 0;
}

extern int have_fpx_regs;

A
Al Viro 已提交
151 152
#endif

153 154
static int copy_sc_from_user(struct pt_regs *regs,
			     struct sigcontext __user *from)
L
Linus Torvalds 已提交
155
{
156
	struct sigcontext sc;
J
Jeff Dike 已提交
157
	int err, pid;
L
Linus Torvalds 已提交
158

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

L
Linus Torvalds 已提交
162
	err = copy_from_user(&sc, from, sizeof(sc));
J
Jeff Dike 已提交
163
	if (err)
J
Jeff Dike 已提交
164
		return err;
L
Linus Torvalds 已提交
165

166 167
#define GETREG(regno, regname) regs->regs.gp[HOST_##regno] = sc.regname

A
Al Viro 已提交
168
#ifdef CONFIG_X86_32
169 170 171 172
	GETREG(GS, gs);
	GETREG(FS, fs);
	GETREG(ES, es);
	GETREG(DS, ds);
A
Al Viro 已提交
173
#endif
174 175 176
	GETREG(DI, di);
	GETREG(SI, si);
	GETREG(BP, bp);
177
	GETREG(SP, sp);
178 179 180 181
	GETREG(BX, bx);
	GETREG(DX, dx);
	GETREG(CX, cx);
	GETREG(AX, ax);
182
	GETREG(IP, ip);
A
Al Viro 已提交
183 184 185 186 187 188 189 190 191 192 193 194

#ifdef CONFIG_X86_64
	GETREG(R8, r8);
	GETREG(R9, r9);
	GETREG(R10, r10);
	GETREG(R11, r11);
	GETREG(R12, r12);
	GETREG(R13, r13);
	GETREG(R14, r14);
	GETREG(R15, r15);
#endif

195 196
	GETREG(CS, cs);
	GETREG(EFLAGS, flags);
A
Al Viro 已提交
197
#ifdef CONFIG_X86_32
198
	GETREG(SS, ss);
A
Al Viro 已提交
199
#endif
200 201

#undef GETREG
A
Al Viro 已提交
202 203 204

	pid = userspace_pid[current_thread_info()->cpu];
#ifdef CONFIG_X86_32
205 206
	if (have_fpx_regs) {
		struct user_fxsr_struct fpx;
L
Linus Torvalds 已提交
207

W
WANG Cong 已提交
208 209
		err = copy_from_user(&fpx,
			&((struct _fpstate __user *)sc.fpstate)->_fxsr_env[0],
210 211 212 213 214 215 216 217
				     sizeof(struct user_fxsr_struct));
		if (err)
			return 1;

		err = convert_fxsr_from_user(&fpx, sc.fpstate);
		if (err)
			return 1;

J
Jeff Dike 已提交
218
		err = restore_fpx_registers(pid, (unsigned long *) &fpx);
219 220 221 222 223 224
		if (err < 0) {
			printk(KERN_ERR "copy_sc_from_user - "
			       "restore_fpx_registers failed, errno = %d\n",
			       -err);
			return 1;
		}
A
Al Viro 已提交
225 226 227
	} else
#endif
	{
228 229 230 231 232 233 234
		struct user_i387_struct fp;

		err = copy_from_user(&fp, sc.fpstate,
				     sizeof(struct user_i387_struct));
		if (err)
			return 1;

J
Jeff Dike 已提交
235
		err = restore_fp_registers(pid, (unsigned long *) &fp);
236 237 238 239 240 241
		if (err < 0) {
			printk(KERN_ERR "copy_sc_from_user - "
			       "restore_fp_registers failed, errno = %d\n",
			       -err);
			return 1;
		}
L
Linus Torvalds 已提交
242
	}
J
Jeff Dike 已提交
243
	return 0;
L
Linus Torvalds 已提交
244 245
}

246
static int copy_sc_to_user(struct sigcontext __user *to,
A
Al Viro 已提交
247 248
			   struct _fpstate __user *to_fp, struct pt_regs *regs,
			   unsigned long mask)
L
Linus Torvalds 已提交
249
{
J
Jeff Dike 已提交
250
	struct sigcontext sc;
251
	struct faultinfo * fi = &current->thread.arch.faultinfo;
J
Jeff Dike 已提交
252
	int err, pid;
253
	memset(&sc, 0, sizeof(struct sigcontext));
L
Linus Torvalds 已提交
254

A
Al Viro 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
#define PUTREG(regno, regname) sc.regname = regs->regs.gp[HOST_##regno]

#ifdef CONFIG_X86_32
	PUTREG(GS, gs);
	PUTREG(FS, fs);
	PUTREG(ES, es);
	PUTREG(DS, ds);
#endif
	PUTREG(DI, di);
	PUTREG(SI, si);
	PUTREG(BP, bp);
	PUTREG(SP, sp);
	PUTREG(BX, bx);
	PUTREG(DX, dx);
	PUTREG(CX, cx);
	PUTREG(AX, ax);
#ifdef CONFIG_X86_64
	PUTREG(R8, r8);
	PUTREG(R9, r9);
	PUTREG(R10, r10);
	PUTREG(R11, r11);
	PUTREG(R12, r12);
	PUTREG(R13, r13);
	PUTREG(R14, r14);
	PUTREG(R15, r15);
#endif

J
Jeff Dike 已提交
282 283 284
	sc.cr2 = fi->cr2;
	sc.err = fi->error_code;
	sc.trapno = fi->trap_no;
A
Al Viro 已提交
285 286 287 288 289 290 291 292 293
	PUTREG(IP, ip);
	PUTREG(CS, cs);
	PUTREG(EFLAGS, flags);
#ifdef CONFIG_X86_32
	PUTREG(SP, sp_at_signal);
	PUTREG(SS, ss);
#endif
#undef PUTREG
	sc.oldmask = mask;
L
Linus Torvalds 已提交
294 295
	sc.fpstate = to_fp;

A
Al Viro 已提交
296 297 298 299
	err = copy_to_user(to, &sc, sizeof(struct sigcontext));
	if (err)
		return 1;

J
Jeff Dike 已提交
300
	pid = userspace_pid[current_thread_info()->cpu];
A
Al Viro 已提交
301 302

#ifdef CONFIG_X86_32
303 304 305
	if (have_fpx_regs) {
		struct user_fxsr_struct fpx;

J
Jeff Dike 已提交
306
		err = save_fpx_registers(pid, (unsigned long *) &fpx);
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
		if (err < 0){
			printk(KERN_ERR "copy_sc_to_user - save_fpx_registers "
			       "failed, errno = %d\n", err);
			return 1;
		}

		err = convert_fxsr_to_user(to_fp, &fpx);
		if (err)
			return 1;

		err |= __put_user(fpx.swd, &to_fp->status);
		err |= __put_user(X86_FXSR_MAGIC, &to_fp->magic);
		if (err)
			return 1;

		if (copy_to_user(&to_fp->_fxsr_env[0], &fpx,
				 sizeof(struct user_fxsr_struct)))
			return 1;
A
Al Viro 已提交
325 326 327
	} else
#endif
	{
328 329
		struct user_i387_struct fp;

J
Jeff Dike 已提交
330
		err = save_fp_registers(pid, (unsigned long *) &fp);
331 332 333
		if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct)))
			return 1;
	}
L
Linus Torvalds 已提交
334

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

A
Al Viro 已提交
338
#ifdef CONFIG_X86_32
J
Jeff Dike 已提交
339 340 341
static int copy_ucontext_to_user(struct ucontext __user *uc,
				 struct _fpstate __user *fp, sigset_t *set,
				 unsigned long sp)
L
Linus Torvalds 已提交
342 343 344
{
	int err = 0;

345
	err |= __save_altstack(&uc->uc_stack, sp);
A
Al Viro 已提交
346
	err |= copy_sc_to_user(&uc->uc_mcontext, fp, &current->thread.regs, 0);
L
Linus Torvalds 已提交
347
	err |= copy_to_user(&uc->uc_sigmask, set, sizeof(*set));
J
Jeff Dike 已提交
348
	return err;
L
Linus Torvalds 已提交
349 350 351 352
}

struct sigframe
{
A
Al Viro 已提交
353
	char __user *pretcode;
L
Linus Torvalds 已提交
354 355 356 357 358 359 360 361 362
	int sig;
	struct sigcontext sc;
	struct _fpstate fpstate;
	unsigned long extramask[_NSIG_WORDS-1];
	char retcode[8];
};

struct rt_sigframe
{
A
Al Viro 已提交
363
	char __user *pretcode;
L
Linus Torvalds 已提交
364
	int sig;
A
Al Viro 已提交
365 366
	struct siginfo __user *pinfo;
	void __user *puc;
L
Linus Torvalds 已提交
367 368 369 370 371 372 373 374 375 376 377
	struct siginfo info;
	struct ucontext uc;
	struct _fpstate fpstate;
	char retcode[8];
};

int setup_signal_stack_sc(unsigned long stack_top, int sig,
			  struct k_sigaction *ka, struct pt_regs *regs,
			  sigset_t *mask)
{
	struct sigframe __user *frame;
A
Al Viro 已提交
378
	void __user *restorer;
L
Linus Torvalds 已提交
379 380
	int err = 0;

381 382
	/* This is the same calculation as i386 - ((sp + 4) & 15) == 0 */
	stack_top = ((stack_top + 4) & -16UL) - 4;
A
Al Viro 已提交
383
	frame = (struct sigframe __user *) stack_top - 1;
L
Linus Torvalds 已提交
384 385 386
	if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
		return 1;

A
Al Viro 已提交
387
	restorer = frame->retcode;
J
Jeff Dike 已提交
388
	if (ka->sa.sa_flags & SA_RESTORER)
L
Linus Torvalds 已提交
389 390 391 392
		restorer = ka->sa.sa_restorer;

	err |= __put_user(restorer, &frame->pretcode);
	err |= __put_user(sig, &frame->sig);
A
Al Viro 已提交
393
	err |= copy_sc_to_user(&frame->sc, &frame->fpstate, regs, mask->sig[0]);
L
Linus Torvalds 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
	if (_NSIG_WORDS > 1)
		err |= __copy_to_user(&frame->extramask, &mask->sig[1],
				      sizeof(frame->extramask));

	/*
	 * This is popl %eax ; movl $,%eax ; 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.
	 */
	err |= __put_user(0xb858, (short __user *)(frame->retcode+0));
	err |= __put_user(__NR_sigreturn, (int __user *)(frame->retcode+2));
	err |= __put_user(0x80cd, (short __user *)(frame->retcode+6));

J
Jeff Dike 已提交
409
	if (err)
410
		return err;
L
Linus Torvalds 已提交
411 412 413

	PT_REGS_SP(regs) = (unsigned long) frame;
	PT_REGS_IP(regs) = (unsigned long) ka->sa.sa_handler;
414 415 416
	PT_REGS_AX(regs) = (unsigned long) sig;
	PT_REGS_DX(regs) = (unsigned long) 0;
	PT_REGS_CX(regs) = (unsigned long) 0;
417
	return 0;
L
Linus Torvalds 已提交
418 419 420 421 422 423 424
}

int setup_signal_stack_si(unsigned long stack_top, int sig,
			  struct k_sigaction *ka, struct pt_regs *regs,
			  siginfo_t *info, sigset_t *mask)
{
	struct rt_sigframe __user *frame;
A
Al Viro 已提交
425
	void __user *restorer;
L
Linus Torvalds 已提交
426 427 428
	int err = 0;

	stack_top &= -8UL;
A
Al Viro 已提交
429
	frame = (struct rt_sigframe __user *) stack_top - 1;
L
Linus Torvalds 已提交
430 431 432
	if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
		return 1;

A
Al Viro 已提交
433
	restorer = frame->retcode;
J
Jeff Dike 已提交
434
	if (ka->sa.sa_flags & SA_RESTORER)
L
Linus Torvalds 已提交
435 436 437 438 439 440 441 442
		restorer = ka->sa.sa_restorer;

	err |= __put_user(restorer, &frame->pretcode);
	err |= __put_user(sig, &frame->sig);
	err |= __put_user(&frame->info, &frame->pinfo);
	err |= __put_user(&frame->uc, &frame->puc);
	err |= copy_siginfo_to_user(&frame->info, info);
	err |= copy_ucontext_to_user(&frame->uc, &frame->fpstate, mask,
443
					PT_REGS_SP(regs));
L
Linus Torvalds 已提交
444 445 446 447 448 449 450 451 452 453 454 455

	/*
	 * This is movl $,%eax ; 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.
	 */
	err |= __put_user(0xb8, (char __user *)(frame->retcode+0));
	err |= __put_user(__NR_rt_sigreturn, (int __user *)(frame->retcode+1));
	err |= __put_user(0x80cd, (short __user *)(frame->retcode+5));

J
Jeff Dike 已提交
456
	if (err)
457
		return err;
L
Linus Torvalds 已提交
458

459
	PT_REGS_SP(regs) = (unsigned long) frame;
L
Linus Torvalds 已提交
460
	PT_REGS_IP(regs) = (unsigned long) ka->sa.sa_handler;
461 462 463
	PT_REGS_AX(regs) = (unsigned long) sig;
	PT_REGS_DX(regs) = (unsigned long) &frame->info;
	PT_REGS_CX(regs) = (unsigned long) &frame->uc;
464
	return 0;
L
Linus Torvalds 已提交
465 466
}

467
long sys_sigreturn(void)
L
Linus Torvalds 已提交
468 469
{
	unsigned long sp = PT_REGS_SP(&current->thread.regs);
A
Al Viro 已提交
470
	struct sigframe __user *frame = (struct sigframe __user *)(sp - 8);
L
Linus Torvalds 已提交
471 472 473 474 475 476
	sigset_t set;
	struct sigcontext __user *sc = &frame->sc;
	unsigned long __user *oldmask = &sc->oldmask;
	unsigned long __user *extramask = frame->extramask;
	int sig_size = (_NSIG_WORDS - 1) * sizeof(unsigned long);

J
Jeff Dike 已提交
477 478
	if (copy_from_user(&set.sig[0], oldmask, sizeof(set.sig[0])) ||
	    copy_from_user(&set.sig[1], extramask, sig_size))
L
Linus Torvalds 已提交
479 480
		goto segfault;

481
	set_current_blocked(&set);
L
Linus Torvalds 已提交
482

J
Jeff Dike 已提交
483
	if (copy_sc_from_user(&current->thread.regs, sc))
L
Linus Torvalds 已提交
484 485 486 487
		goto segfault;

	/* Avoid ERESTART handling */
	PT_REGS_SYSCALL_NR(&current->thread.regs) = -1;
J
Jeff Dike 已提交
488
	return PT_REGS_SYSCALL_RET(&current->thread.regs);
L
Linus Torvalds 已提交
489 490 491 492 493 494

 segfault:
	force_sig(SIGSEGV, current);
	return 0;
}

A
Al Viro 已提交
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
#else

struct rt_sigframe
{
	char __user *pretcode;
	struct ucontext uc;
	struct siginfo info;
	struct _fpstate fpstate;
};

int setup_signal_stack_si(unsigned long stack_top, int sig,
			  struct k_sigaction *ka, struct pt_regs * regs,
			  siginfo_t *info, sigset_t *set)
{
	struct rt_sigframe __user *frame;
	int err = 0;

	frame = (struct rt_sigframe __user *)
		round_down(stack_top - sizeof(struct rt_sigframe), 16);
	/* Subtract 128 for a red zone and 8 for proper alignment */
	frame = (struct rt_sigframe __user *) ((unsigned long) frame - 128 - 8);

	if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
		goto out;

	if (ka->sa.sa_flags & SA_SIGINFO) {
		err |= copy_siginfo_to_user(&frame->info, info);
		if (err)
			goto out;
	}

	/* Create the ucontext.  */
	err |= __put_user(0, &frame->uc.uc_flags);
	err |= __put_user(0, &frame->uc.uc_link);
529
	err |= __save_altstack(&frame->uc.uc_stack, PT_REGS_SP(regs));
A
Al Viro 已提交
530 531 532 533
	err |= copy_sc_to_user(&frame->uc.uc_mcontext, &frame->fpstate, regs,
			       set->sig[0]);
	err |= __put_user(&frame->fpstate, &frame->uc.uc_mcontext.fpstate);
	if (sizeof(*set) == 16) {
534 535
		err |= __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
		err |= __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
A
Al Viro 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
	}
	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 */
		return err;

	if (err)
		return err;

	/* Set up registers for signal handler */
	{
		struct exec_domain *ed = current_thread_info()->exec_domain;
		if (unlikely(ed && ed->signal_invmap && sig < 32))
			sig = ed->signal_invmap[sig];
	}

	PT_REGS_SP(regs) = (unsigned long) frame;
563
	PT_REGS_DI(regs) = sig;
A
Al Viro 已提交
564
	/* In case the signal handler was declared without prototypes */
565
	PT_REGS_AX(regs) = 0;
A
Al Viro 已提交
566 567 568 569 570

	/*
	 * This also works for non SA_SIGINFO handlers because they expect the
	 * next argument after the signal number on the stack.
	 */
571 572 573
	PT_REGS_SI(regs) = (unsigned long) &frame->info;
	PT_REGS_DX(regs) = (unsigned long) &frame->uc;
	PT_REGS_IP(regs) = (unsigned long) ka->sa.sa_handler;
A
Al Viro 已提交
574 575 576 577 578
 out:
	return err;
}
#endif

579
long sys_rt_sigreturn(void)
L
Linus Torvalds 已提交
580
{
A
Al Viro 已提交
581
	unsigned long sp = PT_REGS_SP(&current->thread.regs);
J
Jeff Dike 已提交
582
	struct rt_sigframe __user *frame =
A
Al Viro 已提交
583
		(struct rt_sigframe __user *)(sp - sizeof(long));
L
Linus Torvalds 已提交
584
	struct ucontext __user *uc = &frame->uc;
A
Al Viro 已提交
585
	sigset_t set;
L
Linus Torvalds 已提交
586

A
Al Viro 已提交
587
	if (copy_from_user(&set, &uc->uc_sigmask, sizeof(set)))
L
Linus Torvalds 已提交
588 589
		goto segfault;

590
	set_current_blocked(&set);
L
Linus Torvalds 已提交
591

J
Jeff Dike 已提交
592
	if (copy_sc_from_user(&current->thread.regs, &uc->uc_mcontext))
L
Linus Torvalds 已提交
593 594 595 596
		goto segfault;

	/* Avoid ERESTART handling */
	PT_REGS_SYSCALL_NR(&current->thread.regs) = -1;
J
Jeff Dike 已提交
597
	return PT_REGS_SYSCALL_RET(&current->thread.regs);
L
Linus Torvalds 已提交
598 599 600 601 602

 segfault:
	force_sig(SIGSEGV, current);
	return 0;
}