blob: 69562992e457456eaa4a861de85f6faf4eba8278 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -08003 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
6 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -08007 * 2000-2002 x86-64 support by Andi Kleen
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Joe Perchesc767a542012-05-21 19:50:07 -07009
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Ingo Molnar7e907f42008-03-06 10:33:08 +010012#include <linux/sched.h>
Ingo Molnar7e907f42008-03-06 10:33:08 +010013#include <linux/mm.h>
Hiroshi Shimamoto5c9b3a02008-11-21 17:36:41 -080014#include <linux/smp.h>
15#include <linux/kernel.h>
Hiroshi Shimamoto5c9b3a02008-11-21 17:36:41 -080016#include <linux/errno.h>
17#include <linux/wait.h>
Hiroshi Shimamoto5c9b3a02008-11-21 17:36:41 -080018#include <linux/tracehook.h>
19#include <linux/unistd.h>
20#include <linux/stddef.h>
21#include <linux/personality.h>
22#include <linux/uaccess.h>
Avi Kivity7c68af62009-09-19 09:40:22 +030023#include <linux/user-return-notifier.h>
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +053024#include <linux/uprobes.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010025#include <linux/context_tracking.h>
Ingo Molnar7e907f42008-03-06 10:33:08 +010026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/processor.h>
28#include <asm/ucontext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080030#include <asm/fpu-internal.h>
Roland McGrath6c3652e2008-01-30 13:30:42 +010031#include <asm/vdso.h>
Andi Kleen4efc0672009-04-28 19:07:31 +020032#include <asm/mce.h>
H. Peter Anvinf28f0c22012-02-19 07:38:43 -080033#include <asm/sighandling.h>
Hiroshi Shimamoto5c9b3a02008-11-21 17:36:41 -080034
35#ifdef CONFIG_X86_64
36#include <asm/proto.h>
37#include <asm/ia32_unistd.h>
H. Peter Anvinc5a37392012-02-19 09:41:09 -080038#include <asm/sys_ia32.h>
Hiroshi Shimamoto5c9b3a02008-11-21 17:36:41 -080039#endif /* CONFIG_X86_64 */
40
Hiroshi Shimamotobb579252008-09-05 16:26:55 -070041#include <asm/syscall.h>
Jaswinder Singhbbc1f692008-07-21 21:34:13 +053042#include <asm/syscalls.h>
Ingo Molnar7e907f42008-03-06 10:33:08 +010043
Hiroshi Shimamoto41af86f2008-12-17 18:50:32 -080044#include <asm/sigframe.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Harvey Harrison1a176802008-02-08 12:09:59 -080046#ifdef CONFIG_X86_32
47# define FIX_EFLAGS (__FIX_EFLAGS | X86_EFLAGS_RF)
48#else
49# define FIX_EFLAGS __FIX_EFLAGS
50#endif
51
Tejun Heod9a89a22009-02-09 22:17:40 +090052#define COPY(x) do { \
53 get_user_ex(regs->x, &sc->x); \
54} while (0)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080055
Tejun Heod9a89a22009-02-09 22:17:40 +090056#define GET_SEG(seg) ({ \
57 unsigned short tmp; \
58 get_user_ex(tmp, &sc->seg); \
59 tmp; \
60})
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080061
Tejun Heod9a89a22009-02-09 22:17:40 +090062#define COPY_SEG(seg) do { \
63 regs->seg = GET_SEG(seg); \
64} while (0)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080065
Tejun Heod9a89a22009-02-09 22:17:40 +090066#define COPY_SEG_CPL3(seg) do { \
67 regs->seg = GET_SEG(seg) | 3; \
68} while (0)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080069
H. Peter Anvin85139422012-02-19 07:43:09 -080070int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
71 unsigned long *pax)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080072{
73 void __user *buf;
74 unsigned int tmpflags;
75 unsigned int err = 0;
76
77 /* Always make any pending restarted system calls return -EINTR */
78 current_thread_info()->restart_block.fn = do_no_restart_syscall;
79
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080080 get_user_try {
81
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080082#ifdef CONFIG_X86_32
Tejun Heod9a89a22009-02-09 22:17:40 +090083 set_user_gs(regs, GET_SEG(gs));
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080084 COPY_SEG(fs);
85 COPY_SEG(es);
86 COPY_SEG(ds);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080087#endif /* CONFIG_X86_32 */
88
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080089 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
90 COPY(dx); COPY(cx); COPY(ip);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080091
92#ifdef CONFIG_X86_64
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080093 COPY(r8);
94 COPY(r9);
95 COPY(r10);
96 COPY(r11);
97 COPY(r12);
98 COPY(r13);
99 COPY(r14);
100 COPY(r15);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800101#endif /* CONFIG_X86_64 */
102
103#ifdef CONFIG_X86_32
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800104 COPY_SEG_CPL3(cs);
105 COPY_SEG_CPL3(ss);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800106#else /* !CONFIG_X86_32 */
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800107 /* Kernel saves and restores only the CS segment register on signals,
108 * which is the bare minimum needed to allow mixed 32/64-bit code.
109 * App's signal handler can save/restore other segments if needed. */
110 COPY_SEG_CPL3(cs);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800111#endif /* CONFIG_X86_32 */
112
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800113 get_user_ex(tmpflags, &sc->flags);
114 regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
115 regs->orig_ax = -1; /* disable syscall checks */
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800116
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800117 get_user_ex(buf, &sc->fpstate);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800118
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800119 get_user_ex(*pax, &sc->ax);
120 } get_user_catch(err);
121
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700122 err |= restore_xstate_sig(buf, config_enabled(CONFIG_X86_32));
H. Peter Anvin5e883532012-09-21 12:43:15 -0700123
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800124 return err;
125}
126
H. Peter Anvin85139422012-02-19 07:43:09 -0800127int setup_sigcontext(struct sigcontext __user *sc, void __user *fpstate,
128 struct pt_regs *regs, unsigned long mask)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800129{
130 int err = 0;
131
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800132 put_user_try {
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800133
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800134#ifdef CONFIG_X86_32
Tejun Heod9a89a22009-02-09 22:17:40 +0900135 put_user_ex(get_user_gs(regs), (unsigned int __user *)&sc->gs);
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800136 put_user_ex(regs->fs, (unsigned int __user *)&sc->fs);
137 put_user_ex(regs->es, (unsigned int __user *)&sc->es);
138 put_user_ex(regs->ds, (unsigned int __user *)&sc->ds);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800139#endif /* CONFIG_X86_32 */
140
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800141 put_user_ex(regs->di, &sc->di);
142 put_user_ex(regs->si, &sc->si);
143 put_user_ex(regs->bp, &sc->bp);
144 put_user_ex(regs->sp, &sc->sp);
145 put_user_ex(regs->bx, &sc->bx);
146 put_user_ex(regs->dx, &sc->dx);
147 put_user_ex(regs->cx, &sc->cx);
148 put_user_ex(regs->ax, &sc->ax);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800149#ifdef CONFIG_X86_64
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800150 put_user_ex(regs->r8, &sc->r8);
151 put_user_ex(regs->r9, &sc->r9);
152 put_user_ex(regs->r10, &sc->r10);
153 put_user_ex(regs->r11, &sc->r11);
154 put_user_ex(regs->r12, &sc->r12);
155 put_user_ex(regs->r13, &sc->r13);
156 put_user_ex(regs->r14, &sc->r14);
157 put_user_ex(regs->r15, &sc->r15);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800158#endif /* CONFIG_X86_64 */
159
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530160 put_user_ex(current->thread.trap_nr, &sc->trapno);
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800161 put_user_ex(current->thread.error_code, &sc->err);
162 put_user_ex(regs->ip, &sc->ip);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800163#ifdef CONFIG_X86_32
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800164 put_user_ex(regs->cs, (unsigned int __user *)&sc->cs);
165 put_user_ex(regs->flags, &sc->flags);
166 put_user_ex(regs->sp, &sc->sp_at_signal);
167 put_user_ex(regs->ss, (unsigned int __user *)&sc->ss);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800168#else /* !CONFIG_X86_32 */
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800169 put_user_ex(regs->flags, &sc->flags);
170 put_user_ex(regs->cs, &sc->cs);
171 put_user_ex(0, &sc->gs);
172 put_user_ex(0, &sc->fs);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800173#endif /* CONFIG_X86_32 */
174
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800175 put_user_ex(fpstate, &sc->fpstate);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800176
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800177 /* non-iBCS2 extensions.. */
178 put_user_ex(mask, &sc->oldmask);
179 put_user_ex(current->thread.cr2, &sc->cr2);
180 } put_user_catch(err);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800181
182 return err;
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * Set up a signal frame.
187 */
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800188
189/*
190 * Determine which stack to use..
191 */
Hiroshi Shimamoto1fae0272009-02-27 10:30:32 -0800192static unsigned long align_sigframe(unsigned long sp)
193{
194#ifdef CONFIG_X86_32
195 /*
196 * Align the stack pointer according to the i386 ABI,
197 * i.e. so that on function entry ((sp + 4) & 15) == 0.
198 */
199 sp = ((sp + 4) & -16ul) - 4;
200#else /* !CONFIG_X86_32 */
201 sp = round_down(sp, 16) - 8;
202#endif
203 return sp;
204}
205
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800206static inline void __user *
207get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size,
208 void __user **fpstate)
209{
210 /* Default to using normal stack */
Suresh Siddha72a671c2012-07-24 16:05:29 -0700211 unsigned long math_size = 0;
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800212 unsigned long sp = regs->sp;
Suresh Siddha72a671c2012-07-24 16:05:29 -0700213 unsigned long buf_fx = 0;
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700214 int onsigstack = on_sig_stack(sp);
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800215
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800216 /* redzone */
Suresh Siddha050902c2012-07-24 16:05:27 -0700217 if (config_enabled(CONFIG_X86_64))
218 sp -= 128;
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800219
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700220 if (!onsigstack) {
221 /* This is the X/Open sanctioned signal stack switching. */
222 if (ka->sa.sa_flags & SA_ONSTACK) {
Hiroshi Shimamoto0f8f3082009-03-26 10:03:08 -0700223 if (current->sas_ss_size)
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700224 sp = current->sas_ss_sp + current->sas_ss_size;
Suresh Siddha050902c2012-07-24 16:05:27 -0700225 } else if (config_enabled(CONFIG_X86_32) &&
226 (regs->ss & 0xffff) != __USER_DS &&
227 !(ka->sa.sa_flags & SA_RESTORER) &&
228 ka->sa.sa_restorer) {
229 /* This is the legacy signal stack switching. */
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700230 sp = (unsigned long) ka->sa.sa_restorer;
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700231 }
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800232 }
233
234 if (used_math()) {
Suresh Siddha72a671c2012-07-24 16:05:29 -0700235 sp = alloc_mathframe(sp, config_enabled(CONFIG_X86_32),
236 &buf_fx, &math_size);
Hiroshi Shimamoto25051702009-03-02 17:20:01 -0800237 *fpstate = (void __user *)sp;
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800238 }
239
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700240 sp = align_sigframe(sp - frame_size);
241
242 /*
243 * If we are on the alternate signal stack and would overflow it, don't.
244 * Return an always-bogus address instead so we will die with SIGSEGV.
245 */
246 if (onsigstack && !likely(on_sig_stack(sp)))
247 return (void __user *)-1L;
248
Suresh Siddha72a671c2012-07-24 16:05:29 -0700249 /* save i387 and extended state */
250 if (used_math() &&
251 save_xstate_sig(*fpstate, (void __user *)buf_fx, math_size) < 0)
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700252 return (void __user *)-1L;
253
254 return (void __user *)sp;
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800255}
256
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800257#ifdef CONFIG_X86_32
258static const struct {
259 u16 poplmovl;
260 u32 val;
261 u16 int80;
262} __attribute__((packed)) retcode = {
263 0xb858, /* popl %eax; movl $..., %eax */
264 __NR_sigreturn,
265 0x80cd, /* int $0x80 */
266};
267
268static const struct {
269 u8 movl;
270 u32 val;
271 u16 int80;
272 u8 pad;
273} __attribute__((packed)) rt_retcode = {
274 0xb8, /* movl $..., %eax */
275 __NR_rt_sigreturn,
276 0x80cd, /* int $0x80 */
277 0
278};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Ingo Molnar7e907f42008-03-06 10:33:08 +0100280static int
Al Viro235b8022012-11-09 23:51:47 -0500281__setup_frame(int sig, struct ksignal *ksig, sigset_t *set,
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700282 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100285 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 int err = 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700287 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Al Viro235b8022012-11-09 23:51:47 -0500289 frame = get_sigframe(&ksig->ka, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700292 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700294 if (__put_user(sig, &frame->sig))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700295 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700297 if (setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700298 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 if (_NSIG_WORDS > 1) {
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700301 if (__copy_to_user(&frame->extramask, &set->sig[1],
302 sizeof(frame->extramask)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700303 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305
Roland McGrath1a3e4ca2008-04-09 01:29:27 -0700306 if (current->mm->context.vdso)
Roland McGrath6c3652e2008-01-30 13:30:42 +0100307 restorer = VDSO32_SYMBOL(current->mm->context.vdso, sigreturn);
Andi Kleen9fbbd4d2007-02-13 13:26:26 +0100308 else
Jan Engelhardtade1af72008-01-30 13:33:23 +0100309 restorer = &frame->retcode;
Al Viro235b8022012-11-09 23:51:47 -0500310 if (ksig->ka.sa.sa_flags & SA_RESTORER)
311 restorer = ksig->ka.sa.sa_restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /* Set up to return from userspace. */
314 err |= __put_user(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100317 * This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 *
319 * WE DO NOT USE IT ANY MORE! It's only left here for historical
320 * reasons and because gdb uses it as a signature to notice
321 * signal handler stack frames.
322 */
Hiroshi Shimamoto4a612042008-11-11 19:09:29 -0800323 err |= __put_user(*((u64 *)&retcode), (u64 *)frame->retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 if (err)
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700326 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100329 regs->sp = (unsigned long)frame;
Al Viro235b8022012-11-09 23:51:47 -0500330 regs->ip = (unsigned long)ksig->ka.sa.sa_handler;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100331 regs->ax = (unsigned long)sig;
Harvey Harrison92bc2052008-02-08 12:09:56 -0800332 regs->dx = 0;
333 regs->cx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100335 regs->ds = __USER_DS;
336 regs->es = __USER_DS;
337 regs->ss = __USER_DS;
338 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
David Howells283828f2006-01-18 17:44:00 -0800340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Al Viro235b8022012-11-09 23:51:47 -0500343static int __setup_rt_frame(int sig, struct ksignal *ksig,
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700344 sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct rt_sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100347 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int err = 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700349 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Al Viro235b8022012-11-09 23:51:47 -0500351 frame = get_sigframe(&ksig->ka, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700354 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800356 put_user_try {
357 put_user_ex(sig, &frame->sig);
358 put_user_ex(&frame->info, &frame->pinfo);
359 put_user_ex(&frame->uc, &frame->puc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800361 /* Create the ucontext. */
362 if (cpu_has_xsave)
363 put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
364 else
365 put_user_ex(0, &frame->uc.uc_flags);
366 put_user_ex(0, &frame->uc.uc_link);
Al Viroc40702c2012-11-20 14:24:26 -0500367 err |= __save_altstack(&frame->uc.uc_stack, regs->sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800369 /* Set up to return from userspace. */
370 restorer = VDSO32_SYMBOL(current->mm->context.vdso, rt_sigreturn);
Al Viro235b8022012-11-09 23:51:47 -0500371 if (ksig->ka.sa.sa_flags & SA_RESTORER)
372 restorer = ksig->ka.sa.sa_restorer;
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800373 put_user_ex(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100374
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800375 /*
376 * This is movl $__NR_rt_sigreturn, %ax ; int $0x80
377 *
378 * WE DO NOT USE IT ANY MORE! It's only left here for historical
379 * reasons and because gdb uses it as a signature to notice
380 * signal handler stack frames.
381 */
382 put_user_ex(*((u64 *)&rt_retcode), (u64 *)frame->retcode);
383 } put_user_catch(err);
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700384
Al Viro235b8022012-11-09 23:51:47 -0500385 err |= copy_siginfo_to_user(&frame->info, &ksig->info);
H. Peter Anvin5e883532012-09-21 12:43:15 -0700386 err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
387 regs, set->sig[0]);
388 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (err)
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700391 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100394 regs->sp = (unsigned long)frame;
Al Viro235b8022012-11-09 23:51:47 -0500395 regs->ip = (unsigned long)ksig->ka.sa.sa_handler;
Hiroshi Shimamoto13ad7722008-09-05 16:28:38 -0700396 regs->ax = (unsigned long)sig;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100397 regs->dx = (unsigned long)&frame->info;
398 regs->cx = (unsigned long)&frame->uc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100400 regs->ds = __USER_DS;
401 regs->es = __USER_DS;
402 regs->ss = __USER_DS;
403 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
David Howells283828f2006-01-18 17:44:00 -0800405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800407#else /* !CONFIG_X86_32 */
Al Viro235b8022012-11-09 23:51:47 -0500408static int __setup_rt_frame(int sig, struct ksignal *ksig,
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800409 sigset_t *set, struct pt_regs *regs)
410{
411 struct rt_sigframe __user *frame;
412 void __user *fp = NULL;
413 int err = 0;
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800414
Al Viro235b8022012-11-09 23:51:47 -0500415 frame = get_sigframe(&ksig->ka, regs, sizeof(struct rt_sigframe), &fp);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800416
417 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
418 return -EFAULT;
419
Al Viro235b8022012-11-09 23:51:47 -0500420 if (ksig->ka.sa.sa_flags & SA_SIGINFO) {
421 if (copy_siginfo_to_user(&frame->info, &ksig->info))
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800422 return -EFAULT;
423 }
424
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800425 put_user_try {
426 /* Create the ucontext. */
427 if (cpu_has_xsave)
428 put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
429 else
430 put_user_ex(0, &frame->uc.uc_flags);
431 put_user_ex(0, &frame->uc.uc_link);
Al Viroc40702c2012-11-20 14:24:26 -0500432 err |= __save_altstack(&frame->uc.uc_stack, regs->sp);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800433
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800434 /* Set up to return from userspace. If provided, use a stub
435 already in userspace. */
436 /* x86-64 should always use SA_RESTORER. */
Al Viro235b8022012-11-09 23:51:47 -0500437 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
438 put_user_ex(ksig->ka.sa.sa_restorer, &frame->pretcode);
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800439 } else {
440 /* could use a vstub here */
441 err |= -EFAULT;
442 }
443 } put_user_catch(err);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800444
H. Peter Anvin5e883532012-09-21 12:43:15 -0700445 err |= setup_sigcontext(&frame->uc.uc_mcontext, fp, regs, set->sig[0]);
446 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
447
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800448 if (err)
449 return -EFAULT;
450
451 /* Set up registers for signal handler */
452 regs->di = sig;
453 /* In case the signal handler was declared without prototypes */
454 regs->ax = 0;
455
456 /* This also works for non SA_SIGINFO handlers because they expect the
457 next argument after the signal number on the stack. */
458 regs->si = (unsigned long)&frame->info;
459 regs->dx = (unsigned long)&frame->uc;
Al Viro235b8022012-11-09 23:51:47 -0500460 regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800461
462 regs->sp = (unsigned long)frame;
463
464 /* Set up the CS register to run signal handlers in 64-bit mode,
465 even if the handler happens to be interrupting 32-bit code. */
466 regs->cs = __USER_CS;
467
468 return 0;
469}
470#endif /* CONFIG_X86_32 */
471
Al Viro235b8022012-11-09 23:51:47 -0500472static int x32_setup_rt_frame(struct ksignal *ksig,
473 compat_sigset_t *set,
Suresh Siddha050902c2012-07-24 16:05:27 -0700474 struct pt_regs *regs)
475{
476#ifdef CONFIG_X86_X32_ABI
477 struct rt_sigframe_x32 __user *frame;
478 void __user *restorer;
479 int err = 0;
480 void __user *fpstate = NULL;
481
Al Viro235b8022012-11-09 23:51:47 -0500482 frame = get_sigframe(&ksig->ka, regs, sizeof(*frame), &fpstate);
Suresh Siddha050902c2012-07-24 16:05:27 -0700483
484 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
485 return -EFAULT;
486
Al Viro235b8022012-11-09 23:51:47 -0500487 if (ksig->ka.sa.sa_flags & SA_SIGINFO) {
488 if (copy_siginfo_to_user32(&frame->info, &ksig->info))
Suresh Siddha050902c2012-07-24 16:05:27 -0700489 return -EFAULT;
490 }
491
492 put_user_try {
493 /* Create the ucontext. */
494 if (cpu_has_xsave)
495 put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
496 else
497 put_user_ex(0, &frame->uc.uc_flags);
498 put_user_ex(0, &frame->uc.uc_link);
Al Viroc40702c2012-11-20 14:24:26 -0500499 err |= __compat_save_altstack(&frame->uc.uc_stack, regs->sp);
Suresh Siddha050902c2012-07-24 16:05:27 -0700500 put_user_ex(0, &frame->uc.uc__pad0);
Suresh Siddha050902c2012-07-24 16:05:27 -0700501
Al Viro235b8022012-11-09 23:51:47 -0500502 if (ksig->ka.sa.sa_flags & SA_RESTORER) {
503 restorer = ksig->ka.sa.sa_restorer;
Suresh Siddha050902c2012-07-24 16:05:27 -0700504 } else {
505 /* could use a vstub here */
506 restorer = NULL;
507 err |= -EFAULT;
508 }
509 put_user_ex(restorer, &frame->pretcode);
510 } put_user_catch(err);
511
H. Peter Anvin49b8c6952012-09-21 17:18:44 -0700512 err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
513 regs, set->sig[0]);
514 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
515
Suresh Siddha050902c2012-07-24 16:05:27 -0700516 if (err)
517 return -EFAULT;
518
519 /* Set up registers for signal handler */
520 regs->sp = (unsigned long) frame;
Al Viro235b8022012-11-09 23:51:47 -0500521 regs->ip = (unsigned long) ksig->ka.sa.sa_handler;
Suresh Siddha050902c2012-07-24 16:05:27 -0700522
523 /* We use the x32 calling convention here... */
Al Viro235b8022012-11-09 23:51:47 -0500524 regs->di = ksig->sig;
Suresh Siddha050902c2012-07-24 16:05:27 -0700525 regs->si = (unsigned long) &frame->info;
526 regs->dx = (unsigned long) &frame->uc;
527
528 loadsegment(ds, __USER_DS);
529 loadsegment(es, __USER_DS);
530
531 regs->cs = __USER_CS;
532 regs->ss = __USER_DS;
533#endif /* CONFIG_X86_X32_ABI */
534
535 return 0;
536}
537
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800538/*
539 * Do a signal return; undo the signal stack.
540 */
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -0800541#ifdef CONFIG_X86_32
Al Viro3fe26fa2012-11-12 14:32:42 -0500542unsigned long sys_sigreturn(void)
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800543{
Al Viro3fe26fa2012-11-12 14:32:42 -0500544 struct pt_regs *regs = current_pt_regs();
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800545 struct sigframe __user *frame;
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800546 unsigned long ax;
547 sigset_t set;
548
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800549 frame = (struct sigframe __user *)(regs->sp - 8);
550
551 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
552 goto badframe;
553 if (__get_user(set.sig[0], &frame->sc.oldmask) || (_NSIG_WORDS > 1
554 && __copy_from_user(&set.sig[1], &frame->extramask,
555 sizeof(frame->extramask))))
556 goto badframe;
557
Oleg Nesterov39822942011-07-10 21:27:27 +0200558 set_current_blocked(&set);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800559
560 if (restore_sigcontext(regs, &frame->sc, &ax))
561 goto badframe;
562 return ax;
563
564badframe:
Hiroshi Shimamotoae417bb2008-12-16 14:02:16 -0800565 signal_fault(regs, frame, "sigreturn");
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800566
567 return 0;
568}
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -0800569#endif /* CONFIG_X86_32 */
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800570
Al Viro3fe26fa2012-11-12 14:32:42 -0500571long sys_rt_sigreturn(void)
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800572{
Al Viro3fe26fa2012-11-12 14:32:42 -0500573 struct pt_regs *regs = current_pt_regs();
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800574 struct rt_sigframe __user *frame;
575 unsigned long ax;
576 sigset_t set;
577
578 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
579 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
580 goto badframe;
581 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
582 goto badframe;
583
Oleg Nesterove9bd3f02011-04-27 21:09:39 +0200584 set_current_blocked(&set);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800585
586 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
587 goto badframe;
588
Al Viroc40702c2012-11-20 14:24:26 -0500589 if (restore_altstack(&frame->uc.uc_stack))
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800590 goto badframe;
591
592 return ax;
593
594badframe:
595 signal_fault(regs, frame, "rt_sigreturn");
596 return 0;
597}
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100600 * OK, we're invoking a handler:
601 */
Hiroshi Shimamoto8d8c13b2008-09-24 19:10:29 -0700602static int signr_convert(int sig)
603{
Hiroshi Shimamoto96bf84b2008-10-29 18:44:08 -0700604#ifdef CONFIG_X86_32
Hiroshi Shimamoto8d8c13b2008-09-24 19:10:29 -0700605 struct thread_info *info = current_thread_info();
606
607 if (info->exec_domain && info->exec_domain->signal_invmap && sig < 32)
608 return info->exec_domain->signal_invmap[sig];
Hiroshi Shimamoto96bf84b2008-10-29 18:44:08 -0700609#endif /* CONFIG_X86_32 */
Hiroshi Shimamoto8d8c13b2008-09-24 19:10:29 -0700610 return sig;
611}
612
Roland McGrath7c1def12005-06-23 00:08:21 -0700613static int
Al Viro235b8022012-11-09 23:51:47 -0500614setup_rt_frame(struct ksignal *ksig, struct pt_regs *regs)
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700615{
Al Viro235b8022012-11-09 23:51:47 -0500616 int usig = signr_convert(ksig->sig);
Al Virob7f9a112012-05-02 09:59:21 -0400617 sigset_t *set = sigmask_to_save();
Suresh Siddha050902c2012-07-24 16:05:27 -0700618 compat_sigset_t *cset = (compat_sigset_t *) set;
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700619
620 /* Set up the stack frame */
Suresh Siddha050902c2012-07-24 16:05:27 -0700621 if (is_ia32_frame()) {
Al Viro235b8022012-11-09 23:51:47 -0500622 if (ksig->ka.sa.sa_flags & SA_SIGINFO)
623 return ia32_setup_rt_frame(usig, ksig, cset, regs);
Hiroshi Shimamoto455edbc2008-09-24 19:13:11 -0700624 else
Al Viro235b8022012-11-09 23:51:47 -0500625 return ia32_setup_frame(usig, ksig, cset, regs);
Suresh Siddha050902c2012-07-24 16:05:27 -0700626 } else if (is_x32_frame()) {
Al Viro235b8022012-11-09 23:51:47 -0500627 return x32_setup_rt_frame(ksig, cset, regs);
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800628 } else {
Al Viro235b8022012-11-09 23:51:47 -0500629 return __setup_rt_frame(ksig->sig, ksig, set, regs);
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800630 }
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700631}
632
Al Viroa610d6e2012-05-21 23:42:15 -0400633static void
Al Viro235b8022012-11-09 23:51:47 -0500634handle_signal(struct ksignal *ksig, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Al Viro235b8022012-11-09 23:51:47 -0500636 bool failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /* Are we from a system call? */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700638 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* If so, check system call restarting.. */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700640 switch (syscall_get_error(current, regs)) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800641 case -ERESTART_RESTARTBLOCK:
642 case -ERESTARTNOHAND:
643 regs->ax = -EINTR;
644 break;
645
646 case -ERESTARTSYS:
Al Viro235b8022012-11-09 23:51:47 -0500647 if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100648 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800650 }
651 /* fallthrough */
652 case -ERESTARTNOINTR:
653 regs->ax = regs->orig_ax;
654 regs->ip -= 2;
655 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 }
658
659 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100660 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
661 * flag so that register information in the sigcontext is correct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100663 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100664 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100665 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Al Viro235b8022012-11-09 23:51:47 -0500667 failed = (setup_rt_frame(ksig, regs) < 0);
668 if (!failed) {
669 /*
670 * Clear the direction flag as per the ABI for function entry.
671 */
672 regs->flags &= ~X86_EFLAGS_DF;
673 /*
674 * Clear TF when entering the signal handler, but
675 * notify any tracer that was single-stepping it.
676 * The tracer may want to single-step inside the
677 * handler too.
678 */
679 regs->flags &= ~X86_EFLAGS_TF;
Al Viroa610d6e2012-05-21 23:42:15 -0400680 }
Al Viro235b8022012-11-09 23:51:47 -0500681 signal_setup_done(failed, ksig, test_thread_flag(TIF_SINGLESTEP));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Hiroshi Shimamoto57917752008-10-29 18:46:40 -0700684#ifdef CONFIG_X86_32
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700685#define NR_restart_syscall __NR_restart_syscall
Hiroshi Shimamoto57917752008-10-29 18:46:40 -0700686#else /* !CONFIG_X86_32 */
687#define NR_restart_syscall \
688 test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall
689#endif /* CONFIG_X86_32 */
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691/*
692 * Note that 'init' is a special process: it doesn't get signals it doesn't
693 * want to handle. Thus you cannot kill init even with a SIGKILL even by
694 * mistake.
695 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100696static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Al Viro235b8022012-11-09 23:51:47 -0500698 struct ksignal ksig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Al Viro235b8022012-11-09 23:51:47 -0500700 if (get_signal(&ksig)) {
Ingo Molnar7e907f42008-03-06 10:33:08 +0100701 /* Whee! Actually deliver the signal. */
Al Viro235b8022012-11-09 23:51:47 -0500702 handle_signal(&ksig, regs);
David Howells283828f2006-01-18 17:44:00 -0800703 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* Did we come from a system call? */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700707 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /* Restart the system call - no handlers present */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700709 switch (syscall_get_error(current, regs)) {
David Howells283828f2006-01-18 17:44:00 -0800710 case -ERESTARTNOHAND:
711 case -ERESTARTSYS:
712 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100713 regs->ax = regs->orig_ax;
714 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800715 break;
716
717 case -ERESTART_RESTARTBLOCK:
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700718 regs->ax = NR_restart_syscall;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100719 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800720 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722 }
David Howells283828f2006-01-18 17:44:00 -0800723
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800724 /*
725 * If there's no signal to deliver, we just put the saved sigmask
726 * back.
727 */
Al Viro51a7b442012-05-21 23:33:55 -0400728 restore_saved_sigmask();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
731/*
732 * notification of userspace execution resumption
David Howells283828f2006-01-18 17:44:00 -0800733 * - triggered by the TIF_WORK_MASK flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100735void
736do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100738 user_exit();
Frederic Weisbeckeredf55fd2012-07-11 20:26:39 +0200739
Andi Kleenc1ebf832009-07-09 00:31:41 +0200740#ifdef CONFIG_X86_MCE
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700741 /* notify userspace of pending MCEs */
742 if (thread_info_flags & _TIF_MCE_NOTIFY)
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200743 mce_notify_process();
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700744#endif /* CONFIG_X86_64 && CONFIG_X86_MCE */
745
Oleg Nesterovdb023ea2012-09-14 19:05:46 +0200746 if (thread_info_flags & _TIF_UPROBE)
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530747 uprobe_notify_resume(regs);
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700750 if (thread_info_flags & _TIF_SIGPENDING)
David Howells283828f2006-01-18 17:44:00 -0800751 do_signal(regs);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100752
Roland McGrath59e52132008-04-19 19:10:57 -0700753 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
754 clear_thread_flag(TIF_NOTIFY_RESUME);
755 tracehook_notify_resume(regs);
756 }
Avi Kivity7c68af62009-09-19 09:40:22 +0300757 if (thread_info_flags & _TIF_USER_RETURN_NOTIFY)
758 fire_user_return_notifiers();
Roland McGrath59e52132008-04-19 19:10:57 -0700759
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100760 user_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700762
763void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
764{
765 struct task_struct *me = current;
766
767 if (show_unhandled_signals && printk_ratelimit()) {
Hiroshi Shimamotoae417bb2008-12-16 14:02:16 -0800768 printk("%s"
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700769 "%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
Hiroshi Shimamotoae417bb2008-12-16 14:02:16 -0800770 task_pid_nr(current) > 1 ? KERN_INFO : KERN_EMERG,
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700771 me->comm, me->pid, where, frame,
772 regs->ip, regs->sp, regs->orig_ax);
773 print_vma_addr(" in ", regs->ip);
Joe Perchesc767a542012-05-21 19:50:07 -0700774 pr_cont("\n");
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700775 }
776
777 force_sig(SIGSEGV, me);
778}
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800779
780#ifdef CONFIG_X86_X32_ABI
Al Viro3fe26fa2012-11-12 14:32:42 -0500781asmlinkage long sys32_x32_rt_sigreturn(void)
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800782{
Al Viro3fe26fa2012-11-12 14:32:42 -0500783 struct pt_regs *regs = current_pt_regs();
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800784 struct rt_sigframe_x32 __user *frame;
785 sigset_t set;
786 unsigned long ax;
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800787
788 frame = (struct rt_sigframe_x32 __user *)(regs->sp - 8);
789
790 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
791 goto badframe;
792 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
793 goto badframe;
794
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800795 set_current_blocked(&set);
796
797 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
798 goto badframe;
799
Al Viro90268432012-12-14 14:47:53 -0500800 if (compat_restore_altstack(&frame->uc.uc_stack))
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800801 goto badframe;
802
803 return ax;
804
805badframe:
806 signal_fault(regs, frame, "x32 rt_sigreturn");
807 return 0;
808}
809#endif