blob: cf1a471a18a2f7dc1178810fc80d8c3b6462c46a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/x86_64/ia32/ia32_signal.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
6 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
7 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
8 * 2000-12-* x86-64 compatibility mode signal handling by Andi Kleen
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11#include <linux/sched.h>
12#include <linux/mm.h>
13#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/unistd.h>
18#include <linux/stddef.h>
19#include <linux/personality.h>
20#include <linux/compat.h>
Andi Kleen9fbbd4d2007-02-13 13:26:26 +010021#include <linux/binfmts.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/ucontext.h>
23#include <asm/uaccess.h>
24#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080025#include <asm/fpu-internal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/ptrace.h>
27#include <asm/ia32_unistd.h>
28#include <asm/user32.h>
29#include <asm/sigcontext32.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/proto.h>
Roland McGrathaf65d642008-01-30 13:30:43 +010031#include <asm/vdso.h>
Hiroshi Shimamotod98f9d82008-12-17 18:52:45 -080032#include <asm/sigframe.h>
H. Peter Anvinf28f0c22012-02-19 07:38:43 -080033#include <asm/sighandling.h>
Jaswinder Singh Rajput2f06de02008-12-27 21:37:10 +053034#include <asm/sys_ia32.h>
H. Peter Anvin49b8c692012-09-21 17:18:44 -070035#include <asm/smap.h>
Hiroshi Shimamotod98f9d82008-12-17 18:52:45 -080036
H. Peter Anvinf28f0c22012-02-19 07:38:43 -080037#define FIX_EFLAGS __FIX_EFLAGS
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39int copy_siginfo_to_user32(compat_siginfo_t __user *to, siginfo_t *from)
40{
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -080041 int err = 0;
Suresh Siddha0b91f452012-06-14 18:07:15 -070042 bool ia32 = test_thread_flag(TIF_IA32);
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +010043
44 if (!access_ok(VERIFY_WRITE, to, sizeof(compat_siginfo_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 return -EFAULT;
46
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -080047 put_user_try {
48 /* If you change siginfo_t structure, please make sure that
49 this code is fixed accordingly.
50 It should never copy any pad contained in the structure
51 to avoid security leaks, but must copy the generic
52 3 ints plus the relevant union member. */
53 put_user_ex(from->si_signo, &to->si_signo);
54 put_user_ex(from->si_errno, &to->si_errno);
55 put_user_ex((short)from->si_code, &to->si_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -080057 if (from->si_code < 0) {
58 put_user_ex(from->si_pid, &to->si_pid);
59 put_user_ex(from->si_uid, &to->si_uid);
60 put_user_ex(ptr_to_compat(from->si_ptr), &to->si_ptr);
61 } else {
62 /*
63 * First 32bits of unions are always present:
64 * si_pid === si_band === si_tid === si_addr(LS half)
65 */
66 put_user_ex(from->_sifields._pad[0],
67 &to->_sifields._pad[0]);
68 switch (from->si_code >> 16) {
69 case __SI_FAULT >> 16:
70 break;
Will Drewrya0727e82012-04-12 16:48:00 -050071 case __SI_SYS >> 16:
72 put_user_ex(from->si_syscall, &to->si_syscall);
73 put_user_ex(from->si_arch, &to->si_arch);
74 break;
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -080075 case __SI_CHLD >> 16:
H. Peter Anvine7084fd2012-03-05 13:40:24 -080076 if (ia32) {
77 put_user_ex(from->si_utime, &to->si_utime);
78 put_user_ex(from->si_stime, &to->si_stime);
79 } else {
80 put_user_ex(from->si_utime, &to->_sifields._sigchld_x32._utime);
81 put_user_ex(from->si_stime, &to->_sifields._sigchld_x32._stime);
82 }
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -080083 put_user_ex(from->si_status, &to->si_status);
84 /* FALL THROUGH */
85 default:
86 case __SI_KILL >> 16:
87 put_user_ex(from->si_uid, &to->si_uid);
88 break;
89 case __SI_POLL >> 16:
90 put_user_ex(from->si_fd, &to->si_fd);
91 break;
92 case __SI_TIMER >> 16:
93 put_user_ex(from->si_overrun, &to->si_overrun);
94 put_user_ex(ptr_to_compat(from->si_ptr),
95 &to->si_ptr);
96 break;
97 /* This is not generated by the kernel as of now. */
98 case __SI_RT >> 16:
99 case __SI_MESGQ >> 16:
100 put_user_ex(from->si_uid, &to->si_uid);
101 put_user_ex(from->si_int, &to->si_int);
102 break;
103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800105 } put_user_catch(err);
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return err;
108}
109
110int copy_siginfo_from_user32(siginfo_t *to, compat_siginfo_t __user *from)
111{
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800112 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 u32 ptr32;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100114
115 if (!access_ok(VERIFY_READ, from, sizeof(compat_siginfo_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return -EFAULT;
117
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800118 get_user_try {
119 get_user_ex(to->si_signo, &from->si_signo);
120 get_user_ex(to->si_errno, &from->si_errno);
121 get_user_ex(to->si_code, &from->si_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800123 get_user_ex(to->si_pid, &from->si_pid);
124 get_user_ex(to->si_uid, &from->si_uid);
125 get_user_ex(ptr32, &from->si_ptr);
126 to->si_ptr = compat_ptr(ptr32);
127 } get_user_catch(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 return err;
130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*
133 * Do a signal return; undo the signal stack.
134 */
Hiroshi Shimamotoa967bb32009-02-20 19:00:54 -0800135#define loadsegment_gs(v) load_gs_index(v)
136#define loadsegment_fs(v) loadsegment(fs, v)
137#define loadsegment_ds(v) loadsegment(ds, v)
138#define loadsegment_es(v) loadsegment(es, v)
139
140#define get_user_seg(seg) ({ unsigned int v; savesegment(seg, v); v; })
141#define set_user_seg(seg, v) loadsegment_##seg(v)
142
Hiroshi Shimamotob78a5b52008-11-17 15:44:50 -0800143#define COPY(x) { \
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800144 get_user_ex(regs->x, &sc->x); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Hiroshi Shimamoto8801ead2009-02-20 19:00:13 -0800147#define GET_SEG(seg) ({ \
148 unsigned short tmp; \
149 get_user_ex(tmp, &sc->seg); \
150 tmp; \
151})
152
153#define COPY_SEG_CPL3(seg) do { \
154 regs->seg = GET_SEG(seg) | 3; \
155} while (0)
Hiroshi Shimamotod71a68d2008-11-17 15:47:06 -0800156
Hiroshi Shimamoto8c6e5ce2008-11-17 15:47:48 -0800157#define RELOAD_SEG(seg) { \
Hiroshi Shimamotoa967bb32009-02-20 19:00:54 -0800158 unsigned int pre = GET_SEG(seg); \
159 unsigned int cur = get_user_seg(seg); \
Hiroshi Shimamoto8c6e5ce2008-11-17 15:47:48 -0800160 pre |= 3; \
161 if (pre != cur) \
Hiroshi Shimamotoa967bb32009-02-20 19:00:54 -0800162 set_user_seg(seg, pre); \
Hiroshi Shimamoto8c6e5ce2008-11-17 15:47:48 -0800163}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100165static int ia32_restore_sigcontext(struct pt_regs *regs,
166 struct sigcontext_ia32 __user *sc,
Hiroshi Shimamoto047ce932008-11-17 15:48:27 -0800167 unsigned int *pax)
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100168{
Hiroshi Shimamotoa967bb32009-02-20 19:00:54 -0800169 unsigned int tmpflags, err = 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700170 void __user *buf;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100171 u32 tmp;
172
173 /* Always make any pending restarted system calls return -EINTR */
174 current_thread_info()->restart_block.fn = do_no_restart_syscall;
175
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800176 get_user_try {
177 /*
178 * Reload fs and gs if they have changed in the signal
179 * handler. This does not handle long fs/gs base changes in
180 * the handler, but does not clobber them at least in the
181 * normal case.
182 */
Hiroshi Shimamotoa967bb32009-02-20 19:00:54 -0800183 RELOAD_SEG(gs);
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800184 RELOAD_SEG(fs);
185 RELOAD_SEG(ds);
186 RELOAD_SEG(es);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800188 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
189 COPY(dx); COPY(cx); COPY(ip);
190 /* Don't touch extended registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800192 COPY_SEG_CPL3(cs);
193 COPY_SEG_CPL3(ss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800195 get_user_ex(tmpflags, &sc->flags);
196 regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
197 /* disable syscall checks */
198 regs->orig_ax = -1;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100199
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800200 get_user_ex(tmp, &sc->fpstate);
201 buf = compat_ptr(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800203 get_user_ex(*pax, &sc->ax);
204 } get_user_catch(err);
205
H. Peter Anvin49b8c692012-09-21 17:18:44 -0700206 err |= restore_xstate_sig(buf, 1);
H. Peter Anvin5e883532012-09-21 12:43:15 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Al Viro3fe26fa2012-11-12 14:32:42 -0500211asmlinkage long sys32_sigreturn(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Al Viro3fe26fa2012-11-12 14:32:42 -0500213 struct pt_regs *regs = current_pt_regs();
Hiroshi Shimamoto3b0d29e2008-12-17 18:51:46 -0800214 struct sigframe_ia32 __user *frame = (struct sigframe_ia32 __user *)(regs->sp-8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 sigset_t set;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100216 unsigned int ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
219 goto badframe;
220 if (__get_user(set.sig[0], &frame->sc.oldmask)
221 || (_COMPAT_NSIG_WORDS > 1
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100222 && __copy_from_user((((char *) &set.sig) + 4),
223 &frame->extramask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 sizeof(frame->extramask))))
225 goto badframe;
226
Oleg Nesterov905f29e2011-07-10 21:27:24 +0200227 set_current_blocked(&set);
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100228
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100229 if (ia32_restore_sigcontext(regs, &frame->sc, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 goto badframe;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100231 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233badframe:
234 signal_fault(regs, frame, "32bit sigreturn");
235 return 0;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100236}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Al Viro3fe26fa2012-11-12 14:32:42 -0500238asmlinkage long sys32_rt_sigreturn(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Al Viro3fe26fa2012-11-12 14:32:42 -0500240 struct pt_regs *regs = current_pt_regs();
Hiroshi Shimamoto3b0d29e2008-12-17 18:51:46 -0800241 struct rt_sigframe_ia32 __user *frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 sigset_t set;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100243 unsigned int ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Hiroshi Shimamoto3b0d29e2008-12-17 18:51:46 -0800245 frame = (struct rt_sigframe_ia32 __user *)(regs->sp - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
248 goto badframe;
249 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
250 goto badframe;
251
Oleg Nesterov905f29e2011-07-10 21:27:24 +0200252 set_current_blocked(&set);
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100253
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100254 if (ia32_restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 goto badframe;
256
Al Viro90268432012-12-14 14:47:53 -0500257 if (compat_restore_altstack(&frame->uc.uc_stack))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 goto badframe;
259
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100260 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262badframe:
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100263 signal_fault(regs, frame, "32bit rt sigreturn");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return 0;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100265}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/*
268 * Set up a signal frame.
269 */
270
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100271static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc,
Suresh Siddhaab513702008-07-29 10:29:22 -0700272 void __user *fpstate,
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100273 struct pt_regs *regs, unsigned int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Hiroshi Shimamotoa967bb32009-02-20 19:00:54 -0800275 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800277 put_user_try {
Hiroshi Shimamotoa967bb32009-02-20 19:00:54 -0800278 put_user_ex(get_user_seg(gs), (unsigned int __user *)&sc->gs);
279 put_user_ex(get_user_seg(fs), (unsigned int __user *)&sc->fs);
280 put_user_ex(get_user_seg(ds), (unsigned int __user *)&sc->ds);
281 put_user_ex(get_user_seg(es), (unsigned int __user *)&sc->es);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800283 put_user_ex(regs->di, &sc->di);
284 put_user_ex(regs->si, &sc->si);
285 put_user_ex(regs->bp, &sc->bp);
286 put_user_ex(regs->sp, &sc->sp);
287 put_user_ex(regs->bx, &sc->bx);
288 put_user_ex(regs->dx, &sc->dx);
289 put_user_ex(regs->cx, &sc->cx);
290 put_user_ex(regs->ax, &sc->ax);
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530291 put_user_ex(current->thread.trap_nr, &sc->trapno);
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800292 put_user_ex(current->thread.error_code, &sc->err);
293 put_user_ex(regs->ip, &sc->ip);
294 put_user_ex(regs->cs, (unsigned int __user *)&sc->cs);
295 put_user_ex(regs->flags, &sc->flags);
296 put_user_ex(regs->sp, &sc->sp_at_signal);
297 put_user_ex(regs->ss, (unsigned int __user *)&sc->ss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800299 put_user_ex(ptr_to_compat(fpstate), &sc->fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800301 /* non-iBCS2 extensions.. */
302 put_user_ex(mask, &sc->oldmask);
303 put_user_ex(current->thread.cr2, &sc->cr2);
304 } put_user_catch(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 return err;
307}
308
309/*
310 * Determine which stack to use..
311 */
Al Viro235b8022012-11-09 23:51:47 -0500312static void __user *get_sigframe(struct ksignal *ksig, struct pt_regs *regs,
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700313 size_t frame_size,
Mathias Krause0ff8fef2012-09-02 23:31:42 +0200314 void __user **fpstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100316 unsigned long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /* Default to using normal stack */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100319 sp = regs->sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /* This is the X/Open sanctioned signal stack switching. */
Al Viro235b8022012-11-09 23:51:47 -0500322 if (ksig->ka.sa.sa_flags & SA_ONSTACK)
323 sp = sigsp(sp, ksig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* This is the legacy signal stack switching. */
Hiroshi Shimamoto8bee3f02008-12-16 14:04:43 -0800325 else if ((regs->ss & 0xffff) != __USER32_DS &&
Al Viro235b8022012-11-09 23:51:47 -0500326 !(ksig->ka.sa.sa_flags & SA_RESTORER) &&
327 ksig->ka.sa.sa_restorer)
328 sp = (unsigned long) ksig->ka.sa.sa_restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700330 if (used_math()) {
Suresh Siddha72a671c2012-07-24 16:05:29 -0700331 unsigned long fx_aligned, math_size;
332
333 sp = alloc_mathframe(sp, 1, &fx_aligned, &math_size);
Mathias Krause0ff8fef2012-09-02 23:31:42 +0200334 *fpstate = (struct _fpstate_ia32 __user *) sp;
Suresh Siddha72a671c2012-07-24 16:05:29 -0700335 if (save_xstate_sig(*fpstate, (void __user *)fx_aligned,
336 math_size) < 0)
Hiroshi Shimamoto99ea1b932008-11-05 18:32:54 -0800337 return (void __user *) -1L;
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700338 }
339
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100340 sp -= frame_size;
Markus F.X.J. Oberhumerd347f372005-10-09 18:54:23 +0200341 /* Align the stack pointer according to the i386 ABI,
342 * i.e. so that on function entry ((sp + 4) & 15) == 0. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100343 sp = ((sp + 4) & -16ul) - 4;
344 return (void __user *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Al Viro235b8022012-11-09 23:51:47 -0500347int ia32_setup_frame(int sig, struct ksignal *ksig,
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100348 compat_sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Hiroshi Shimamoto3b0d29e2008-12-17 18:51:46 -0800350 struct sigframe_ia32 __user *frame;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100351 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int err = 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700353 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100355 /* copy_to_user optimizes that into a single 8 byte store */
356 static const struct {
357 u16 poplmovl;
358 u32 val;
359 u16 int80;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100360 } __attribute__((packed)) code = {
361 0xb858, /* popl %eax ; movl $...,%eax */
362 __NR_ia32_sigreturn,
363 0x80cd, /* int $0x80 */
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100364 };
365
Al Viro235b8022012-11-09 23:51:47 -0500366 frame = get_sigframe(ksig, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700369 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700371 if (__put_user(sig, &frame->sig))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700372 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700374 if (ia32_setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700375 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (_COMPAT_NSIG_WORDS > 1) {
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700378 if (__copy_to_user(frame->extramask, &set->sig[1],
379 sizeof(frame->extramask)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700380 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Al Viro235b8022012-11-09 23:51:47 -0500383 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
384 restorer = ksig->ka.sa.sa_restorer;
Roland McGrathaf65d642008-01-30 13:30:43 +0100385 } else {
386 /* Return stub is in 32bit vsyscall page */
Roland McGrath1a3e4ca2008-04-09 01:29:27 -0700387 if (current->mm->context.vdso)
Roland McGrathaf65d642008-01-30 13:30:43 +0100388 restorer = VDSO32_SYMBOL(current->mm->context.vdso,
389 sigreturn);
390 else
Jan Engelhardtade1af72008-01-30 13:33:23 +0100391 restorer = &frame->retcode;
Roland McGrathaf65d642008-01-30 13:30:43 +0100392 }
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100393
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800394 put_user_try {
395 put_user_ex(ptr_to_compat(restorer), &frame->pretcode);
396
397 /*
398 * These are actually not used anymore, but left because some
399 * gdb versions depend on them as a marker.
400 */
Mathias Krause0ff8fef2012-09-02 23:31:42 +0200401 put_user_ex(*((u64 *)&code), (u64 __user *)frame->retcode);
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800402 } put_user_catch(err);
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (err)
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700405 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* Set up registers for signal handler */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100408 regs->sp = (unsigned long) frame;
Al Viro235b8022012-11-09 23:51:47 -0500409 regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Andi Kleen536e3ee2006-09-26 10:52:41 +0200411 /* Make -mregparm=3 work */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100412 regs->ax = sig;
413 regs->dx = 0;
414 regs->cx = 0;
Andi Kleen536e3ee2006-09-26 10:52:41 +0200415
Jeremy Fitzhardingeb6edbb12008-08-19 13:04:19 -0700416 loadsegment(ds, __USER32_DS);
417 loadsegment(es, __USER32_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100419 regs->cs = __USER32_CS;
420 regs->ss = __USER32_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Andi Kleen1d001df2006-09-26 10:52:26 +0200422 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Al Viro235b8022012-11-09 23:51:47 -0500425int ia32_setup_rt_frame(int sig, struct ksignal *ksig,
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100426 compat_sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Hiroshi Shimamoto3b0d29e2008-12-17 18:51:46 -0800428 struct rt_sigframe_ia32 __user *frame;
Roland McGrathaf65d642008-01-30 13:30:43 +0100429 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int err = 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700431 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100433 /* __copy_to_user optimizes that into a single 8 byte store */
434 static const struct {
435 u8 movl;
436 u32 val;
437 u16 int80;
Hiroshi Shimamoto9cc3c492008-11-11 19:11:39 -0800438 u8 pad;
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100439 } __attribute__((packed)) code = {
440 0xb8,
441 __NR_ia32_rt_sigreturn,
442 0x80cd,
443 0,
444 };
445
Al Viro235b8022012-11-09 23:51:47 -0500446 frame = get_sigframe(ksig, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700449 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800451 put_user_try {
452 put_user_ex(sig, &frame->sig);
453 put_user_ex(ptr_to_compat(&frame->info), &frame->pinfo);
454 put_user_ex(ptr_to_compat(&frame->uc), &frame->puc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800456 /* Create the ucontext. */
457 if (cpu_has_xsave)
458 put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
459 else
460 put_user_ex(0, &frame->uc.uc_flags);
461 put_user_ex(0, &frame->uc.uc_link);
Al Viroc40702c2012-11-20 14:24:26 -0500462 err |= __compat_save_altstack(&frame->uc.uc_stack, regs->sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Al Viro235b8022012-11-09 23:51:47 -0500464 if (ksig->ka.sa.sa_flags & SA_RESTORER)
465 restorer = ksig->ka.sa.sa_restorer;
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800466 else
467 restorer = VDSO32_SYMBOL(current->mm->context.vdso,
468 rt_sigreturn);
469 put_user_ex(ptr_to_compat(restorer), &frame->pretcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800471 /*
472 * Not actually used anymore, but left because some gdb
473 * versions need it.
474 */
Mathias Krause0ff8fef2012-09-02 23:31:42 +0200475 put_user_ex(*((u64 *)&code), (u64 __user *)frame->retcode);
Hiroshi Shimamoto3b4b7572009-01-23 15:50:38 -0800476 } put_user_catch(err);
477
Al Viro235b8022012-11-09 23:51:47 -0500478 err |= copy_siginfo_to_user32(&frame->info, &ksig->info);
H. Peter Anvin5e883532012-09-21 12:43:15 -0700479 err |= ia32_setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
480 regs, set->sig[0]);
481 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (err)
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700484 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 /* Set up registers for signal handler */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100487 regs->sp = (unsigned long) frame;
Al Viro235b8022012-11-09 23:51:47 -0500488 regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Albert Cahalana7aacdf2006-10-29 22:26:17 -0500490 /* Make -mregparm=3 work */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100491 regs->ax = sig;
492 regs->dx = (unsigned long) &frame->info;
493 regs->cx = (unsigned long) &frame->uc;
Albert Cahalana7aacdf2006-10-29 22:26:17 -0500494
Jeremy Fitzhardingeb6edbb12008-08-19 13:04:19 -0700495 loadsegment(ds, __USER32_DS);
496 loadsegment(es, __USER32_DS);
Thomas Gleixner99b9cdf2008-01-30 13:30:07 +0100497
498 regs->cs = __USER32_CS;
499 regs->ss = __USER32_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Andi Kleen1d001df2006-09-26 10:52:26 +0200501 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}