ia32_signal.c 10.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12
/*
 *  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>
13
#include <linux/sched/task_stack.h>
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22
#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>
23
#include <linux/binfmts.h>
L
Linus Torvalds 已提交
24
#include <asm/ucontext.h>
25
#include <linux/uaccess.h>
26
#include <asm/fpu/internal.h>
27
#include <asm/fpu/signal.h>
L
Linus Torvalds 已提交
28 29 30
#include <asm/ptrace.h>
#include <asm/ia32_unistd.h>
#include <asm/user32.h>
31
#include <uapi/asm/sigcontext.h>
L
Linus Torvalds 已提交
32
#include <asm/proto.h>
R
Roland McGrath 已提交
33
#include <asm/vdso.h>
34
#include <asm/sigframe.h>
35
#include <asm/sighandling.h>
36
#include <asm/smap.h>
37

L
Linus Torvalds 已提交
38 39 40
/*
 * Do a signal return; undo the signal stack.
 */
41 42 43 44 45 46 47 48
#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)

49
#define COPY(x)			{		\
50
	get_user_ex(regs->x, &sc->x);		\
L
Linus Torvalds 已提交
51 52
}

53 54 55 56 57 58 59 60 61
#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 已提交
62

63
#define RELOAD_SEG(seg)		{		\
64 65
	unsigned int pre = GET_SEG(seg);	\
	unsigned int cur = get_user_seg(seg);	\
66 67
	pre |= 3;				\
	if (pre != cur)				\
68
		set_user_seg(seg, pre);		\
69
}
70 71

static int ia32_restore_sigcontext(struct pt_regs *regs,
72
				   struct sigcontext_32 __user *sc)
73
{
74
	unsigned int tmpflags, err = 0;
75
	void __user *buf;
76 77 78
	u32 tmp;

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

81 82 83 84 85 86 87
	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.
		 */
88
		RELOAD_SEG(gs);
89 90 91 92 93
		RELOAD_SEG(fs);
		RELOAD_SEG(ds);
		RELOAD_SEG(es);

		COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
94
		COPY(dx); COPY(cx); COPY(ip); COPY(ax);
95 96 97 98 99 100 101 102 103 104 105 106 107 108
		/* 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);

109
	err |= fpu__restore_sig(buf, 1);
110

111 112
	force_iret();

L
Linus Torvalds 已提交
113 114 115
	return err;
}

116
asmlinkage long sys32_sigreturn(void)
L
Linus Torvalds 已提交
117
{
118
	struct pt_regs *regs = current_pt_regs();
119
	struct sigframe_ia32 __user *frame = (struct sigframe_ia32 __user *)(regs->sp-8);
L
Linus Torvalds 已提交
120 121
	sigset_t set;

122
	if (!access_ok(frame, sizeof(*frame)))
L
Linus Torvalds 已提交
123 124 125
		goto badframe;
	if (__get_user(set.sig[0], &frame->sc.oldmask)
	    || (_COMPAT_NSIG_WORDS > 1
126 127
		&& __copy_from_user((((char *) &set.sig) + 4),
				    &frame->extramask,
L
Linus Torvalds 已提交
128 129 130
				    sizeof(frame->extramask))))
		goto badframe;

131
	set_current_blocked(&set);
132

133
	if (ia32_restore_sigcontext(regs, &frame->sc))
L
Linus Torvalds 已提交
134
		goto badframe;
135
	return regs->ax;
L
Linus Torvalds 已提交
136 137 138 139

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

142
asmlinkage long sys32_rt_sigreturn(void)
L
Linus Torvalds 已提交
143
{
144
	struct pt_regs *regs = current_pt_regs();
145
	struct rt_sigframe_ia32 __user *frame;
L
Linus Torvalds 已提交
146 147
	sigset_t set;

148
	frame = (struct rt_sigframe_ia32 __user *)(regs->sp - 4);
L
Linus Torvalds 已提交
149

150
	if (!access_ok(frame, sizeof(*frame)))
L
Linus Torvalds 已提交
151 152 153 154
		goto badframe;
	if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
		goto badframe;

155
	set_current_blocked(&set);
156

157
	if (ia32_restore_sigcontext(regs, &frame->uc.uc_mcontext))
L
Linus Torvalds 已提交
158 159
		goto badframe;

A
Al Viro 已提交
160
	if (compat_restore_altstack(&frame->uc.uc_stack))
L
Linus Torvalds 已提交
161 162
		goto badframe;

163
	return regs->ax;
L
Linus Torvalds 已提交
164 165

badframe:
166
	signal_fault(regs, frame, "32bit rt sigreturn");
L
Linus Torvalds 已提交
167
	return 0;
168
}
L
Linus Torvalds 已提交
169 170 171 172 173

/*
 * Set up a signal frame.
 */

174
static int ia32_setup_sigcontext(struct sigcontext_32 __user *sc,
175
				 void __user *fpstate,
176
				 struct pt_regs *regs, unsigned int mask)
L
Linus Torvalds 已提交
177
{
178
	int err = 0;
L
Linus Torvalds 已提交
179

180
	put_user_try {
181 182 183 184
		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);
185 186 187 188 189 190 191 192 193

		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);
194
		put_user_ex(current->thread.trap_nr, &sc->trapno);
195 196 197 198 199 200 201 202 203 204 205 206 207
		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 已提交
208 209 210 211 212 213 214

	return err;
}

/*
 * Determine which stack to use..
 */
A
Al Viro 已提交
215
static void __user *get_sigframe(struct ksignal *ksig, struct pt_regs *regs,
216
				 size_t frame_size,
217
				 void __user **fpstate)
L
Linus Torvalds 已提交
218
{
219
	unsigned long sp, fx_aligned, math_size;
L
Linus Torvalds 已提交
220 221

	/* Default to using normal stack */
222
	sp = regs->sp;
L
Linus Torvalds 已提交
223 224

	/* This is the X/Open sanctioned signal stack switching.  */
A
Al Viro 已提交
225 226
	if (ksig->ka.sa.sa_flags & SA_ONSTACK)
		sp = sigsp(sp, ksig);
L
Linus Torvalds 已提交
227
	/* This is the legacy signal stack switching. */
228
	else if (regs->ss != __USER32_DS &&
A
Al Viro 已提交
229 230 231
		!(ksig->ka.sa.sa_flags & SA_RESTORER) &&
		 ksig->ka.sa.sa_restorer)
		sp = (unsigned long) ksig->ka.sa.sa_restorer;
L
Linus Torvalds 已提交
232

233 234 235 236 237
	sp = fpu__alloc_mathframe(sp, 1, &fx_aligned, &math_size);
	*fpstate = (struct _fpstate_32 __user *) sp;
	if (copy_fpstate_to_sigframe(*fpstate, (void __user *)fx_aligned,
				     math_size) < 0)
		return (void __user *) -1L;
238

239
	sp -= frame_size;
240 241
	/* Align the stack pointer according to the i386 ABI,
	 * i.e. so that on function entry ((sp + 4) & 15) == 0. */
242 243
	sp = ((sp + 4) & -16ul) - 4;
	return (void __user *) sp;
L
Linus Torvalds 已提交
244 245
}

A
Al Viro 已提交
246
int ia32_setup_frame(int sig, struct ksignal *ksig,
247
		     compat_sigset_t *set, struct pt_regs *regs)
L
Linus Torvalds 已提交
248
{
249
	struct sigframe_ia32 __user *frame;
250
	void __user *restorer;
L
Linus Torvalds 已提交
251
	int err = 0;
252
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
253

254 255 256 257 258 259 260 261 262 263 264
	/* 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 已提交
265
	frame = get_sigframe(ksig, regs, sizeof(*frame), &fpstate);
L
Linus Torvalds 已提交
266

267
	if (!access_ok(frame, sizeof(*frame)))
268
		return -EFAULT;
L
Linus Torvalds 已提交
269

270
	if (__put_user(sig, &frame->sig))
271
		return -EFAULT;
L
Linus Torvalds 已提交
272

273
	if (ia32_setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]))
274
		return -EFAULT;
L
Linus Torvalds 已提交
275 276

	if (_COMPAT_NSIG_WORDS > 1) {
277 278
		if (__copy_to_user(frame->extramask, &set->sig[1],
				   sizeof(frame->extramask)))
279
			return -EFAULT;
L
Linus Torvalds 已提交
280 281
	}

A
Al Viro 已提交
282 283
	if (ksig->ka.sa.sa_flags & SA_RESTORER) {
		restorer = ksig->ka.sa.sa_restorer;
R
Roland McGrath 已提交
284 285
	} else {
		/* Return stub is in 32bit vsyscall page */
286
		if (current->mm->context.vdso)
287
			restorer = current->mm->context.vdso +
288
				vdso_image_32.sym___kernel_sigreturn;
R
Roland McGrath 已提交
289
		else
J
Jan Engelhardt 已提交
290
			restorer = &frame->retcode;
R
Roland McGrath 已提交
291
	}
292

293 294 295 296 297 298 299
	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.
		 */
300
		put_user_ex(*((u64 *)&code), (u64 __user *)frame->retcode);
301 302
	} put_user_catch(err);

L
Linus Torvalds 已提交
303
	if (err)
304
		return -EFAULT;
L
Linus Torvalds 已提交
305 306

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

310
	/* Make -mregparm=3 work */
311 312 313
	regs->ax = sig;
	regs->dx = 0;
	regs->cx = 0;
314

315 316
	loadsegment(ds, __USER32_DS);
	loadsegment(es, __USER32_DS);
L
Linus Torvalds 已提交
317

318 319
	regs->cs = __USER32_CS;
	regs->ss = __USER32_DS;
L
Linus Torvalds 已提交
320

A
Andi Kleen 已提交
321
	return 0;
L
Linus Torvalds 已提交
322 323
}

A
Al Viro 已提交
324
int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
325
			compat_sigset_t *set, struct pt_regs *regs)
L
Linus Torvalds 已提交
326
{
327
	struct rt_sigframe_ia32 __user *frame;
R
Roland McGrath 已提交
328
	void __user *restorer;
L
Linus Torvalds 已提交
329
	int err = 0;
330
	void __user *fpstate = NULL;
L
Linus Torvalds 已提交
331

332 333 334 335 336
	/* __copy_to_user optimizes that into a single 8 byte store */
	static const struct {
		u8 movl;
		u32 val;
		u16 int80;
337
		u8  pad;
338 339 340 341 342 343 344
	} __attribute__((packed)) code = {
		0xb8,
		__NR_ia32_rt_sigreturn,
		0x80cd,
		0,
	};

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

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

350 351 352 353
	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 已提交
354

355
		/* Create the ucontext.  */
356
		if (boot_cpu_has(X86_FEATURE_XSAVE))
357 358 359 360
			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);
361
		compat_save_altstack_ex(&frame->uc.uc_stack, regs->sp);
362

A
Al Viro 已提交
363 364
		if (ksig->ka.sa.sa_flags & SA_RESTORER)
			restorer = ksig->ka.sa.sa_restorer;
365
		else
366
			restorer = current->mm->context.vdso +
367
				vdso_image_32.sym___kernel_rt_sigreturn;
368 369 370 371 372 373
		put_user_ex(ptr_to_compat(restorer), &frame->pretcode);

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

377
	err |= __copy_siginfo_to_user32(&frame->info, &ksig->info, false);
378 379 380 381
	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 已提交
382
	if (err)
383
		return -EFAULT;
L
Linus Torvalds 已提交
384 385

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

389
	/* Make -mregparm=3 work */
390 391 392
	regs->ax = sig;
	regs->dx = (unsigned long) &frame->info;
	regs->cx = (unsigned long) &frame->uc;
393

394 395
	loadsegment(ds, __USER32_DS);
	loadsegment(es, __USER32_DS);
396 397 398

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

A
Andi Kleen 已提交
400
	return 0;
L
Linus Torvalds 已提交
401
}