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
#include <asm/ucontext.h>
#include <asm/uaccess.h>
24
#include <asm/fpu/internal.h>
L
Linus Torvalds 已提交
25 26 27 28 29
#include <asm/ptrace.h>
#include <asm/ia32_unistd.h>
#include <asm/user32.h>
#include <asm/sigcontext32.h>
#include <asm/proto.h>
R
Roland McGrath 已提交
30
#include <asm/vdso.h>
31
#include <asm/sigframe.h>
32
#include <asm/sighandling.h>
33
#include <asm/sys_ia32.h>
34
#include <asm/smap.h>
35

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

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

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	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;
68 69 70 71
			case __SI_SYS >> 16:
				put_user_ex(from->si_syscall, &to->si_syscall);
				put_user_ex(from->si_arch, &to->si_arch);
				break;
72
			case __SI_CHLD >> 16:
H
H. Peter Anvin 已提交
73 74 75 76 77 78 79
				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);
				}
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
				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 已提交
101
		}
102 103
	} put_user_catch(err);

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

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

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

115 116 117 118
	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 已提交
119

120 121 122 123 124
		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 已提交
125 126 127 128 129 130 131

	return err;
}

/*
 * Do a signal return; undo the signal stack.
 */
132 133 134 135 136 137 138 139
#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)

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

144 145 146 147 148 149 150 151 152
#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 已提交
153

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

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

	/* Always make any pending restarted system calls return -EINTR */
170
	current->restart_block.fn = do_no_restart_syscall;
171

172 173 174 175 176 177 178
	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.
		 */
179
		RELOAD_SEG(gs);
180 181 182 183 184
		RELOAD_SEG(fs);
		RELOAD_SEG(ds);
		RELOAD_SEG(es);

		COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
185
		COPY(dx); COPY(cx); COPY(ip); COPY(ax);
186 187 188 189 190 191 192 193 194 195 196 197 198 199
		/* 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_catch(err);

200
	err |= restore_xstate_sig(buf, 1);
201

202 203
	force_iret();

L
Linus Torvalds 已提交
204 205 206
	return err;
}

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

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

222
	set_current_blocked(&set);
223

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

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

233
asmlinkage long sys32_rt_sigreturn(void)
L
Linus Torvalds 已提交
234
{
235
	struct pt_regs *regs = current_pt_regs();
236
	struct rt_sigframe_ia32 __user *frame;
L
Linus Torvalds 已提交
237 238
	sigset_t set;

239
	frame = (struct rt_sigframe_ia32 __user *)(regs->sp - 4);
L
Linus Torvalds 已提交
240 241 242 243 244 245

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

246
	set_current_blocked(&set);
247

248
	if (ia32_restore_sigcontext(regs, &frame->uc.uc_mcontext))
L
Linus Torvalds 已提交
249 250
		goto badframe;

A
Al Viro 已提交
251
	if (compat_restore_altstack(&frame->uc.uc_stack))
L
Linus Torvalds 已提交
252 253
		goto badframe;

254
	return regs->ax;
L
Linus Torvalds 已提交
255 256

badframe:
257
	signal_fault(regs, frame, "32bit rt sigreturn");
L
Linus Torvalds 已提交
258
	return 0;
259
}
L
Linus Torvalds 已提交
260 261 262 263 264

/*
 * Set up a signal frame.
 */

265
static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc,
266
				 void __user *fpstate,
267
				 struct pt_regs *regs, unsigned int mask)
L
Linus Torvalds 已提交
268
{
269
	int err = 0;
L
Linus Torvalds 已提交
270

271
	put_user_try {
272 273 274 275
		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);
276 277 278 279 280 281 282 283 284

		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);
285
		put_user_ex(current->thread.trap_nr, &sc->trapno);
286 287 288 289 290 291 292 293 294 295 296 297 298
		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 已提交
299 300 301 302 303 304 305

	return err;
}

/*
 * Determine which stack to use..
 */
A
Al Viro 已提交
306
static void __user *get_sigframe(struct ksignal *ksig, struct pt_regs *regs,
307
				 size_t frame_size,
308
				 void __user **fpstate)
L
Linus Torvalds 已提交
309
{
310
	struct fpu *fpu = &current->thread.fpu;
311
	unsigned long sp;
L
Linus Torvalds 已提交
312 313

	/* Default to using normal stack */
314
	sp = regs->sp;
L
Linus Torvalds 已提交
315 316

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

325
	if (fpu->fpstate_active) {
326 327 328
		unsigned long fx_aligned, math_size;

		sp = alloc_mathframe(sp, 1, &fx_aligned, &math_size);
329
		*fpstate = (struct _fpstate_ia32 __user *) sp;
330
		if (copy_fpstate_to_sigframe(*fpstate, (void __user *)fx_aligned,
331
				    math_size) < 0)
332
			return (void __user *) -1L;
333 334
	}

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

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

350 351 352 353 354 355 356 357 358 359 360
	/* 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 已提交
361
	frame = get_sigframe(ksig, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
362 363

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

366
	if (__put_user(sig, &frame->sig))
367
		return -EFAULT;
L
Linus Torvalds 已提交
368

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

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

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

389 390 391 392 393 394 395
	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.
		 */
396
		put_user_ex(*((u64 *)&code), (u64 __user *)frame->retcode);
397 398
	} put_user_catch(err);

L
Linus Torvalds 已提交
399
	if (err)
400
		return -EFAULT;
L
Linus Torvalds 已提交
401 402

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

406
	/* Make -mregparm=3 work */
407 408 409
	regs->ax = sig;
	regs->dx = 0;
	regs->cx = 0;
410

411 412
	loadsegment(ds, __USER32_DS);
	loadsegment(es, __USER32_DS);
L
Linus Torvalds 已提交
413

414 415
	regs->cs = __USER32_CS;
	regs->ss = __USER32_DS;
L
Linus Torvalds 已提交
416

A
Andi Kleen 已提交
417
	return 0;
L
Linus Torvalds 已提交
418 419
}

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

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

A
Al Viro 已提交
441
	frame = get_sigframe(ksig, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
442 443

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

446 447 448 449
	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 已提交
450

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

A
Al Viro 已提交
459 460
		if (ksig->ka.sa.sa_flags & SA_RESTORER)
			restorer = ksig->ka.sa.sa_restorer;
461
		else
462 463
			restorer = current->mm->context.vdso +
				selected_vdso32->sym___kernel_rt_sigreturn;
464 465 466 467 468 469
		put_user_ex(ptr_to_compat(restorer), &frame->pretcode);

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

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

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

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

490 491
	loadsegment(ds, __USER32_DS);
	loadsegment(es, __USER32_DS);
492 493 494

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

A
Andi Kleen 已提交
496
	return 0;
L
Linus Torvalds 已提交
497
}