ia32_signal.c 12.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  linux/arch/x86_64/ia32/ia32_signal.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 *  1997-11-28  Modified for POSIX.1b signals by Richard Henderson
 *  2000-06-20  Pentium III FXSR, SSE support by Gareth Hughes
 *  2000-12-*   x86-64 compatibility mode signal handling by Andi Kleen
 */

#include <linux/sched.h>
#include <linux/mm.h>
#include <linux/smp.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/wait.h>
#include <linux/unistd.h>
#include <linux/stddef.h>
#include <linux/personality.h>
#include <linux/compat.h>
21
#include <linux/binfmts.h>
L
Linus Torvalds 已提交
22 23 24
#include <asm/ucontext.h>
#include <asm/uaccess.h>
#include <asm/i387.h>
25
#include <asm/fpu-internal.h>
L
Linus Torvalds 已提交
26 27 28 29 30
#include <asm/ptrace.h>
#include <asm/ia32_unistd.h>
#include <asm/user32.h>
#include <asm/sigcontext32.h>
#include <asm/proto.h>
R
Roland McGrath 已提交
31
#include <asm/vdso.h>
32
#include <asm/sigframe.h>
33
#include <asm/sighandling.h>
34
#include <asm/sys_ia32.h>
35
#include <asm/smap.h>
36

L
Linus Torvalds 已提交
37 38
int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from)
{
39
	int err = 0;
40
	bool ia32 = test_thread_flag(TIF_IA32);
41 42

	if (!access_ok(VERIFY_WRITE, to, sizeof(compat_siginfo_t)))
L
Linus Torvalds 已提交
43 44
		return -EFAULT;

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
	put_user_try {
		/* If you change siginfo_t structure, please make sure that
		   this code is fixed accordingly.
		   It should never copy any pad contained in the structure
		   to avoid security leaks, but must copy the generic
		   3 ints plus the relevant union member.  */
		put_user_ex(from->si_signo, &to->si_signo);
		put_user_ex(from->si_errno, &to->si_errno);
		put_user_ex((short)from->si_code, &to->si_code);

		if (from->si_code < 0) {
			put_user_ex(from->si_pid, &to->si_pid);
			put_user_ex(from->si_uid, &to->si_uid);
			put_user_ex(ptr_to_compat(from->si_ptr), &to->si_ptr);
		} else {
			/*
			 * First 32bits of unions are always present:
			 * si_pid === si_band === si_tid === si_addr(LS half)
			 */
			put_user_ex(from->_sifields._pad[0],
					  &to->_sifields._pad[0]);
			switch (from->si_code >> 16) {
			case __SI_FAULT >> 16:
				break;
69 70 71 72
			case __SI_SYS >> 16:
				put_user_ex(from->si_syscall, &to->si_syscall);
				put_user_ex(from->si_arch, &to->si_arch);
				break;
73
			case __SI_CHLD >> 16:
H
H. Peter Anvin 已提交
74 75 76 77 78 79 80
				if (ia32) {
					put_user_ex(from->si_utime, &to->si_utime);
					put_user_ex(from->si_stime, &to->si_stime);
				} else {
					put_user_ex(from->si_utime, &to->_sifields._sigchld_x32._utime);
					put_user_ex(from->si_stime, &to->_sifields._sigchld_x32._stime);
				}
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
				put_user_ex(from->si_status, &to->si_status);
				/* FALL THROUGH */
			default:
			case __SI_KILL >> 16:
				put_user_ex(from->si_uid, &to->si_uid);
				break;
			case __SI_POLL >> 16:
				put_user_ex(from->si_fd, &to->si_fd);
				break;
			case __SI_TIMER >> 16:
				put_user_ex(from->si_overrun, &to->si_overrun);
				put_user_ex(ptr_to_compat(from->si_ptr),
					    &to->si_ptr);
				break;
				 /* This is not generated by the kernel as of now.  */
			case __SI_RT >> 16:
			case __SI_MESGQ >> 16:
				put_user_ex(from->si_uid, &to->si_uid);
				put_user_ex(from->si_int, &to->si_int);
				break;
			}
L
Linus Torvalds 已提交
102
		}
103 104
	} put_user_catch(err);

L
Linus Torvalds 已提交
105 106 107 108 109
	return err;
}

int copy_siginfo_from_user32(siginfo_t *to, compat_siginfo_t __user *from)
{
110
	int err = 0;
L
Linus Torvalds 已提交
111
	u32 ptr32;
112 113

	if (!access_ok(VERIFY_READ, from, sizeof(compat_siginfo_t)))
L
Linus Torvalds 已提交
114 115
		return -EFAULT;

116 117 118 119
	get_user_try {
		get_user_ex(to->si_signo, &from->si_signo);
		get_user_ex(to->si_errno, &from->si_errno);
		get_user_ex(to->si_code, &from->si_code);
L
Linus Torvalds 已提交
120

121 122 123 124 125
		get_user_ex(to->si_pid, &from->si_pid);
		get_user_ex(to->si_uid, &from->si_uid);
		get_user_ex(ptr32, &from->si_ptr);
		to->si_ptr = compat_ptr(ptr32);
	} get_user_catch(err);
L
Linus Torvalds 已提交
126 127 128 129 130 131 132

	return err;
}

/*
 * Do a signal return; undo the signal stack.
 */
133 134 135 136 137 138 139 140
#define loadsegment_gs(v)	load_gs_index(v)
#define loadsegment_fs(v)	loadsegment(fs, v)
#define loadsegment_ds(v)	loadsegment(ds, v)
#define loadsegment_es(v)	loadsegment(es, v)

#define get_user_seg(seg)	({ unsigned int v; savesegment(seg, v); v; })
#define set_user_seg(seg, v)	loadsegment_##seg(v)

141
#define COPY(x)			{		\
142
	get_user_ex(regs->x, &sc->x);		\
L
Linus Torvalds 已提交
143 144
}

145 146 147 148 149 150 151 152 153
#define GET_SEG(seg)		({			\
	unsigned short tmp;				\
	get_user_ex(tmp, &sc->seg);			\
	tmp;						\
})

#define COPY_SEG_CPL3(seg)	do {			\
	regs->seg = GET_SEG(seg) | 3;			\
} while (0)
L
Linus Torvalds 已提交
154

155
#define RELOAD_SEG(seg)		{		\
156 157
	unsigned int pre = GET_SEG(seg);	\
	unsigned int cur = get_user_seg(seg);	\
158 159
	pre |= 3;				\
	if (pre != cur)				\
160
		set_user_seg(seg, pre);		\
161
}
162 163 164

static int ia32_restore_sigcontext(struct pt_regs *regs,
				   struct sigcontext_ia32 __user *sc,
165
				   unsigned int *pax)
166
{
167
	unsigned int tmpflags, err = 0;
168
	void __user *buf;
169 170 171 172 173
	u32 tmp;

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

174 175 176 177 178 179 180
	get_user_try {
		/*
		 * Reload fs and gs if they have changed in the signal
		 * handler.  This does not handle long fs/gs base changes in
		 * the handler, but does not clobber them at least in the
		 * normal case.
		 */
181
		RELOAD_SEG(gs);
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
		RELOAD_SEG(fs);
		RELOAD_SEG(ds);
		RELOAD_SEG(es);

		COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
		COPY(dx); COPY(cx); COPY(ip);
		/* Don't touch extended registers */

		COPY_SEG_CPL3(cs);
		COPY_SEG_CPL3(ss);

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

		get_user_ex(tmp, &sc->fpstate);
		buf = compat_ptr(tmp);

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

204
	err |= restore_xstate_sig(buf, 1);
205

L
Linus Torvalds 已提交
206 207 208
	return err;
}

209
asmlinkage long sys32_sigreturn(void)
L
Linus Torvalds 已提交
210
{
211
	struct pt_regs *regs = current_pt_regs();
212
	struct sigframe_ia32 __user *frame = (struct sigframe_ia32 __user *)(regs->sp-8);
L
Linus Torvalds 已提交
213
	sigset_t set;
214
	unsigned int ax;
L
Linus Torvalds 已提交
215 216 217 218 219

	if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
		goto badframe;
	if (__get_user(set.sig[0], &frame->sc.oldmask)
	    || (_COMPAT_NSIG_WORDS > 1
220 221
		&& __copy_from_user((((char *) &set.sig) + 4),
				    &frame->extramask,
L
Linus Torvalds 已提交
222 223 224
				    sizeof(frame->extramask))))
		goto badframe;

225
	set_current_blocked(&set);
226

227
	if (ia32_restore_sigcontext(regs, &frame->sc, &ax))
L
Linus Torvalds 已提交
228
		goto badframe;
229
	return ax;
L
Linus Torvalds 已提交
230 231 232 233

badframe:
	signal_fault(regs, frame, "32bit sigreturn");
	return 0;
234
}
L
Linus Torvalds 已提交
235

236
asmlinkage long sys32_rt_sigreturn(void)
L
Linus Torvalds 已提交
237
{
238
	struct pt_regs *regs = current_pt_regs();
239
	struct rt_sigframe_ia32 __user *frame;
L
Linus Torvalds 已提交
240
	sigset_t set;
241
	unsigned int ax;
L
Linus Torvalds 已提交
242

243
	frame = (struct rt_sigframe_ia32 __user *)(regs->sp - 4);
L
Linus Torvalds 已提交
244 245 246 247 248 249

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

250
	set_current_blocked(&set);
251

252
	if (ia32_restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
L
Linus Torvalds 已提交
253 254
		goto badframe;

A
Al Viro 已提交
255
	if (compat_restore_altstack(&frame->uc.uc_stack))
L
Linus Torvalds 已提交
256 257
		goto badframe;

258
	return ax;
L
Linus Torvalds 已提交
259 260

badframe:
261
	signal_fault(regs, frame, "32bit rt sigreturn");
L
Linus Torvalds 已提交
262
	return 0;
263
}
L
Linus Torvalds 已提交
264 265 266 267 268

/*
 * Set up a signal frame.
 */

269
static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc,
270
				 void __user *fpstate,
271
				 struct pt_regs *regs, unsigned int mask)
L
Linus Torvalds 已提交
272
{
273
	int err = 0;
L
Linus Torvalds 已提交
274

275
	put_user_try {
276 277 278 279
		put_user_ex(get_user_seg(gs), (unsigned int __user *)&sc->gs);
		put_user_ex(get_user_seg(fs), (unsigned int __user *)&sc->fs);
		put_user_ex(get_user_seg(ds), (unsigned int __user *)&sc->ds);
		put_user_ex(get_user_seg(es), (unsigned int __user *)&sc->es);
280 281 282 283 284 285 286 287 288

		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);
289
		put_user_ex(current->thread.trap_nr, &sc->trapno);
290 291 292 293 294 295 296 297 298 299 300 301 302
		put_user_ex(current->thread.error_code, &sc->err);
		put_user_ex(regs->ip, &sc->ip);
		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);

		put_user_ex(ptr_to_compat(fpstate), &sc->fpstate);

		/* non-iBCS2 extensions.. */
		put_user_ex(mask, &sc->oldmask);
		put_user_ex(current->thread.cr2, &sc->cr2);
	} put_user_catch(err);
L
Linus Torvalds 已提交
303 304 305 306 307 308 309

	return err;
}

/*
 * Determine which stack to use..
 */
A
Al Viro 已提交
310
static void __user *get_sigframe(struct ksignal *ksig, struct pt_regs *regs,
311
				 size_t frame_size,
312
				 void __user **fpstate)
L
Linus Torvalds 已提交
313
{
314
	unsigned long sp;
L
Linus Torvalds 已提交
315 316

	/* Default to using normal stack */
317
	sp = regs->sp;
L
Linus Torvalds 已提交
318 319

	/* This is the X/Open sanctioned signal stack switching.  */
A
Al Viro 已提交
320 321
	if (ksig->ka.sa.sa_flags & SA_ONSTACK)
		sp = sigsp(sp, ksig);
L
Linus Torvalds 已提交
322
	/* This is the legacy signal stack switching. */
323
	else if ((regs->ss & 0xffff) != __USER32_DS &&
A
Al Viro 已提交
324 325 326
		!(ksig->ka.sa.sa_flags & SA_RESTORER) &&
		 ksig->ka.sa.sa_restorer)
		sp = (unsigned long) ksig->ka.sa.sa_restorer;
L
Linus Torvalds 已提交
327

328
	if (used_math()) {
329 330 331
		unsigned long fx_aligned, math_size;

		sp = alloc_mathframe(sp, 1, &fx_aligned, &math_size);
332
		*fpstate = (struct _fpstate_ia32 __user *) sp;
333 334
		if (save_xstate_sig(*fpstate, (void __user *)fx_aligned,
				    math_size) < 0)
335
			return (void __user *) -1L;
336 337
	}

338
	sp -= frame_size;
339 340
	/* Align the stack pointer according to the i386 ABI,
	 * i.e. so that on function entry ((sp + 4) & 15) == 0. */
341 342
	sp = ((sp + 4) & -16ul) - 4;
	return (void __user *) sp;
L
Linus Torvalds 已提交
343 344
}

A
Al Viro 已提交
345
int ia32_setup_frame(int sig, struct ksignal *ksig,
346
		     compat_sigset_t *set, struct pt_regs *regs)
L
Linus Torvalds 已提交
347
{
348
	struct sigframe_ia32 __user *frame;
349
	void __user *restorer;
L
Linus Torvalds 已提交
350
	int err = 0;
351
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
352

353 354 355 356 357 358 359 360 361 362 363
	/* copy_to_user optimizes that into a single 8 byte store */
	static const struct {
		u16 poplmovl;
		u32 val;
		u16 int80;
	} __attribute__((packed)) code = {
		0xb858,		 /* popl %eax ; movl $...,%eax */
		__NR_ia32_sigreturn,
		0x80cd,		/* int $0x80 */
	};

A
Al Viro 已提交
364
	frame = get_sigframe(ksig, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
365 366

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

369
	if (__put_user(sig, &frame->sig))
370
		return -EFAULT;
L
Linus Torvalds 已提交
371

372
	if (ia32_setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]))
373
		return -EFAULT;
L
Linus Torvalds 已提交
374 375

	if (_COMPAT_NSIG_WORDS > 1) {
376 377
		if (__copy_to_user(frame->extramask, &set->sig[1],
				   sizeof(frame->extramask)))
378
			return -EFAULT;
L
Linus Torvalds 已提交
379 380
	}

A
Al Viro 已提交
381 382
	if (ksig->ka.sa.sa_flags & SA_RESTORER) {
		restorer = ksig->ka.sa.sa_restorer;
R
Roland McGrath 已提交
383 384
	} else {
		/* Return stub is in 32bit vsyscall page */
385
		if (current->mm->context.vdso)
R
Roland McGrath 已提交
386 387 388
			restorer = VDSO32_SYMBOL(current->mm->context.vdso,
						 sigreturn);
		else
J
Jan Engelhardt 已提交
389
			restorer = &frame->retcode;
R
Roland McGrath 已提交
390
	}
391

392 393 394 395 396 397 398
	put_user_try {
		put_user_ex(ptr_to_compat(restorer), &frame->pretcode);

		/*
		 * These are actually not used anymore, but left because some
		 * gdb versions depend on them as a marker.
		 */
399
		put_user_ex(*((u64 *)&code), (u64 __user *)frame->retcode);
400 401
	} put_user_catch(err);

L
Linus Torvalds 已提交
402
	if (err)
403
		return -EFAULT;
L
Linus Torvalds 已提交
404 405

	/* Set up registers for signal handler */
406
	regs->sp = (unsigned long) frame;
A
Al Viro 已提交
407
	regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
L
Linus Torvalds 已提交
408

409
	/* Make -mregparm=3 work */
410 411 412
	regs->ax = sig;
	regs->dx = 0;
	regs->cx = 0;
413

414 415
	loadsegment(ds, __USER32_DS);
	loadsegment(es, __USER32_DS);
L
Linus Torvalds 已提交
416

417 418
	regs->cs = __USER32_CS;
	regs->ss = __USER32_DS;
L
Linus Torvalds 已提交
419

A
Andi Kleen 已提交
420
	return 0;
L
Linus Torvalds 已提交
421 422
}

A
Al Viro 已提交
423
int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
424
			compat_sigset_t *set, struct pt_regs *regs)
L
Linus Torvalds 已提交
425
{
426
	struct rt_sigframe_ia32 __user *frame;
R
Roland McGrath 已提交
427
	void __user *restorer;
L
Linus Torvalds 已提交
428
	int err = 0;
429
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
430

431 432 433 434 435
	/* __copy_to_user optimizes that into a single 8 byte store */
	static const struct {
		u8 movl;
		u32 val;
		u16 int80;
436
		u8  pad;
437 438 439 440 441 442 443
	} __attribute__((packed)) code = {
		0xb8,
		__NR_ia32_rt_sigreturn,
		0x80cd,
		0,
	};

A
Al Viro 已提交
444
	frame = get_sigframe(ksig, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
445 446

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

449 450 451 452
	put_user_try {
		put_user_ex(sig, &frame->sig);
		put_user_ex(ptr_to_compat(&frame->info), &frame->pinfo);
		put_user_ex(ptr_to_compat(&frame->uc), &frame->puc);
L
Linus Torvalds 已提交
453

454 455 456 457 458 459
		/* 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);
460
		compat_save_altstack_ex(&frame->uc.uc_stack, regs->sp);
461

A
Al Viro 已提交
462 463
		if (ksig->ka.sa.sa_flags & SA_RESTORER)
			restorer = ksig->ka.sa.sa_restorer;
464 465 466 467 468 469 470 471 472
		else
			restorer = VDSO32_SYMBOL(current->mm->context.vdso,
						 rt_sigreturn);
		put_user_ex(ptr_to_compat(restorer), &frame->pretcode);

		/*
		 * Not actually used anymore, but left because some gdb
		 * versions need it.
		 */
473
		put_user_ex(*((u64 *)&code), (u64 __user *)frame->retcode);
474
	} put_user_catch(err);
L
Linus Torvalds 已提交
475

A
Al Viro 已提交
476
	err |= copy_siginfo_to_user32(&frame->info, &ksig->info);
477 478 479 480
	err |= ia32_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 已提交
481
	if (err)
482
		return -EFAULT;
L
Linus Torvalds 已提交
483 484

	/* Set up registers for signal handler */
485
	regs->sp = (unsigned long) frame;
A
Al Viro 已提交
486
	regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
L
Linus Torvalds 已提交
487

488
	/* Make -mregparm=3 work */
489 490 491
	regs->ax = sig;
	regs->dx = (unsigned long) &frame->info;
	regs->cx = (unsigned long) &frame->uc;
492

493 494
	loadsegment(ds, __USER32_DS);
	loadsegment(es, __USER32_DS);
495 496 497

	regs->cs = __USER32_CS;
	regs->ss = __USER32_DS;
L
Linus Torvalds 已提交
498

A
Andi Kleen 已提交
499
	return 0;
L
Linus Torvalds 已提交
500
}