blob: bed431a38162ce287e50639228c0a1fe809004c4 [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>
Ingo Molnar7e907f42008-03-06 10:33:08 +010025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/processor.h>
27#include <asm/ucontext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/i387.h>
Linus Torvalds1361b832012-02-21 13:19:22 -080029#include <asm/fpu-internal.h>
Roland McGrath6c3652e2008-01-30 13:30:42 +010030#include <asm/vdso.h>
Andi Kleen4efc0672009-04-28 19:07:31 +020031#include <asm/mce.h>
H. Peter Anvinf28f0c22012-02-19 07:38:43 -080032#include <asm/sighandling.h>
Hiroshi Shimamoto5c9b3a02008-11-21 17:36:41 -080033
34#ifdef CONFIG_X86_64
35#include <asm/proto.h>
36#include <asm/ia32_unistd.h>
H. Peter Anvinc5a37392012-02-19 09:41:09 -080037#include <asm/sys_ia32.h>
Hiroshi Shimamoto5c9b3a02008-11-21 17:36:41 -080038#endif /* CONFIG_X86_64 */
39
Hiroshi Shimamotobb579252008-09-05 16:26:55 -070040#include <asm/syscall.h>
Jaswinder Singhbbc1f692008-07-21 21:34:13 +053041#include <asm/syscalls.h>
Ingo Molnar7e907f42008-03-06 10:33:08 +010042
Hiroshi Shimamoto41af86f2008-12-17 18:50:32 -080043#include <asm/sigframe.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Harvey Harrison1a176802008-02-08 12:09:59 -080045#ifdef CONFIG_X86_32
46# define FIX_EFLAGS (__FIX_EFLAGS | X86_EFLAGS_RF)
47#else
48# define FIX_EFLAGS __FIX_EFLAGS
49#endif
50
Tejun Heod9a89a22009-02-09 22:17:40 +090051#define COPY(x) do { \
52 get_user_ex(regs->x, &sc->x); \
53} while (0)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080054
Tejun Heod9a89a22009-02-09 22:17:40 +090055#define GET_SEG(seg) ({ \
56 unsigned short tmp; \
57 get_user_ex(tmp, &sc->seg); \
58 tmp; \
59})
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080060
Tejun Heod9a89a22009-02-09 22:17:40 +090061#define COPY_SEG(seg) do { \
62 regs->seg = GET_SEG(seg); \
63} while (0)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080064
Tejun Heod9a89a22009-02-09 22:17:40 +090065#define COPY_SEG_CPL3(seg) do { \
66 regs->seg = GET_SEG(seg) | 3; \
67} while (0)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080068
H. Peter Anvin85139422012-02-19 07:43:09 -080069int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
70 unsigned long *pax)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080071{
72 void __user *buf;
73 unsigned int tmpflags;
74 unsigned int err = 0;
75
76 /* Always make any pending restarted system calls return -EINTR */
77 current_thread_info()->restart_block.fn = do_no_restart_syscall;
78
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080079 get_user_try {
80
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080081#ifdef CONFIG_X86_32
Tejun Heod9a89a22009-02-09 22:17:40 +090082 set_user_gs(regs, GET_SEG(gs));
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080083 COPY_SEG(fs);
84 COPY_SEG(es);
85 COPY_SEG(ds);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080086#endif /* CONFIG_X86_32 */
87
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080088 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
89 COPY(dx); COPY(cx); COPY(ip);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -080090
91#ifdef CONFIG_X86_64
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -080092 COPY(r8);
93 COPY(r9);
94 COPY(r10);
95 COPY(r11);
96 COPY(r12);
97 COPY(r13);
98 COPY(r14);
99 COPY(r15);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800100#endif /* CONFIG_X86_64 */
101
102#ifdef CONFIG_X86_32
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800103 COPY_SEG_CPL3(cs);
104 COPY_SEG_CPL3(ss);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800105#else /* !CONFIG_X86_32 */
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800106 /* Kernel saves and restores only the CS segment register on signals,
107 * which is the bare minimum needed to allow mixed 32/64-bit code.
108 * App's signal handler can save/restore other segments if needed. */
109 COPY_SEG_CPL3(cs);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800110#endif /* CONFIG_X86_32 */
111
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800112 get_user_ex(tmpflags, &sc->flags);
113 regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
114 regs->orig_ax = -1; /* disable syscall checks */
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800115
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800116 get_user_ex(buf, &sc->fpstate);
117 err |= restore_i387_xstate(buf);
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
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800122 return err;
123}
124
H. Peter Anvin85139422012-02-19 07:43:09 -0800125int setup_sigcontext(struct sigcontext __user *sc, void __user *fpstate,
126 struct pt_regs *regs, unsigned long mask)
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800127{
128 int err = 0;
129
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800130 put_user_try {
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800131
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800132#ifdef CONFIG_X86_32
Tejun Heod9a89a22009-02-09 22:17:40 +0900133 put_user_ex(get_user_gs(regs), (unsigned int __user *)&sc->gs);
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800134 put_user_ex(regs->fs, (unsigned int __user *)&sc->fs);
135 put_user_ex(regs->es, (unsigned int __user *)&sc->es);
136 put_user_ex(regs->ds, (unsigned int __user *)&sc->ds);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800137#endif /* CONFIG_X86_32 */
138
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800139 put_user_ex(regs->di, &sc->di);
140 put_user_ex(regs->si, &sc->si);
141 put_user_ex(regs->bp, &sc->bp);
142 put_user_ex(regs->sp, &sc->sp);
143 put_user_ex(regs->bx, &sc->bx);
144 put_user_ex(regs->dx, &sc->dx);
145 put_user_ex(regs->cx, &sc->cx);
146 put_user_ex(regs->ax, &sc->ax);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800147#ifdef CONFIG_X86_64
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800148 put_user_ex(regs->r8, &sc->r8);
149 put_user_ex(regs->r9, &sc->r9);
150 put_user_ex(regs->r10, &sc->r10);
151 put_user_ex(regs->r11, &sc->r11);
152 put_user_ex(regs->r12, &sc->r12);
153 put_user_ex(regs->r13, &sc->r13);
154 put_user_ex(regs->r14, &sc->r14);
155 put_user_ex(regs->r15, &sc->r15);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800156#endif /* CONFIG_X86_64 */
157
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530158 put_user_ex(current->thread.trap_nr, &sc->trapno);
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800159 put_user_ex(current->thread.error_code, &sc->err);
160 put_user_ex(regs->ip, &sc->ip);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800161#ifdef CONFIG_X86_32
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800162 put_user_ex(regs->cs, (unsigned int __user *)&sc->cs);
163 put_user_ex(regs->flags, &sc->flags);
164 put_user_ex(regs->sp, &sc->sp_at_signal);
165 put_user_ex(regs->ss, (unsigned int __user *)&sc->ss);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800166#else /* !CONFIG_X86_32 */
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800167 put_user_ex(regs->flags, &sc->flags);
168 put_user_ex(regs->cs, &sc->cs);
169 put_user_ex(0, &sc->gs);
170 put_user_ex(0, &sc->fs);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800171#endif /* CONFIG_X86_32 */
172
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800173 put_user_ex(fpstate, &sc->fpstate);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800174
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800175 /* non-iBCS2 extensions.. */
176 put_user_ex(mask, &sc->oldmask);
177 put_user_ex(current->thread.cr2, &sc->cr2);
178 } put_user_catch(err);
Hiroshi Shimamoto26016572008-11-24 18:21:37 -0800179
180 return err;
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * Set up a signal frame.
185 */
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800186
187/*
188 * Determine which stack to use..
189 */
Hiroshi Shimamoto1fae0272009-02-27 10:30:32 -0800190static unsigned long align_sigframe(unsigned long sp)
191{
192#ifdef CONFIG_X86_32
193 /*
194 * Align the stack pointer according to the i386 ABI,
195 * i.e. so that on function entry ((sp + 4) & 15) == 0.
196 */
197 sp = ((sp + 4) & -16ul) - 4;
198#else /* !CONFIG_X86_32 */
199 sp = round_down(sp, 16) - 8;
200#endif
201 return sp;
202}
203
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800204static inline void __user *
205get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size,
206 void __user **fpstate)
207{
208 /* Default to using normal stack */
209 unsigned long sp = regs->sp;
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700210 int onsigstack = on_sig_stack(sp);
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800211
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800212 /* redzone */
Suresh Siddha050902c2012-07-24 16:05:27 -0700213 if (config_enabled(CONFIG_X86_64))
214 sp -= 128;
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800215
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700216 if (!onsigstack) {
217 /* This is the X/Open sanctioned signal stack switching. */
218 if (ka->sa.sa_flags & SA_ONSTACK) {
Hiroshi Shimamoto0f8f3082009-03-26 10:03:08 -0700219 if (current->sas_ss_size)
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700220 sp = current->sas_ss_sp + current->sas_ss_size;
Suresh Siddha050902c2012-07-24 16:05:27 -0700221 } else if (config_enabled(CONFIG_X86_32) &&
222 (regs->ss & 0xffff) != __USER_DS &&
223 !(ka->sa.sa_flags & SA_RESTORER) &&
224 ka->sa.sa_restorer) {
225 /* This is the legacy signal stack switching. */
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700226 sp = (unsigned long) ka->sa.sa_restorer;
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700227 }
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800228 }
229
230 if (used_math()) {
231 sp -= sig_xstate_size;
Hiroshi Shimamoto25051702009-03-02 17:20:01 -0800232#ifdef CONFIG_X86_64
233 sp = round_down(sp, 64);
234#endif /* CONFIG_X86_64 */
235 *fpstate = (void __user *)sp;
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800236 }
237
Hiroshi Shimamoto14fc9fb2009-03-19 10:56:29 -0700238 sp = align_sigframe(sp - frame_size);
239
240 /*
241 * If we are on the alternate signal stack and would overflow it, don't.
242 * Return an always-bogus address instead so we will die with SIGSEGV.
243 */
244 if (onsigstack && !likely(on_sig_stack(sp)))
245 return (void __user *)-1L;
246
247 /* save i387 state */
248 if (used_math() && save_i387_xstate(*fpstate) < 0)
249 return (void __user *)-1L;
250
251 return (void __user *)sp;
Hiroshi Shimamoto75779f02009-02-27 10:29:57 -0800252}
253
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800254#ifdef CONFIG_X86_32
255static const struct {
256 u16 poplmovl;
257 u32 val;
258 u16 int80;
259} __attribute__((packed)) retcode = {
260 0xb858, /* popl %eax; movl $..., %eax */
261 __NR_sigreturn,
262 0x80cd, /* int $0x80 */
263};
264
265static const struct {
266 u8 movl;
267 u32 val;
268 u16 int80;
269 u8 pad;
270} __attribute__((packed)) rt_retcode = {
271 0xb8, /* movl $..., %eax */
272 __NR_rt_sigreturn,
273 0x80cd, /* int $0x80 */
274 0
275};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Ingo Molnar7e907f42008-03-06 10:33:08 +0100277static int
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700278__setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
279 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100282 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 int err = 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700284 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700286 frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700289 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700291 if (__put_user(sig, &frame->sig))
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 (setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700295 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 if (_NSIG_WORDS > 1) {
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700298 if (__copy_to_user(&frame->extramask, &set->sig[1],
299 sizeof(frame->extramask)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700300 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
Roland McGrath1a3e4ca2008-04-09 01:29:27 -0700303 if (current->mm->context.vdso)
Roland McGrath6c3652e2008-01-30 13:30:42 +0100304 restorer = VDSO32_SYMBOL(current->mm->context.vdso, sigreturn);
Andi Kleen9fbbd4d2007-02-13 13:26:26 +0100305 else
Jan Engelhardtade1af72008-01-30 13:33:23 +0100306 restorer = &frame->retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (ka->sa.sa_flags & SA_RESTORER)
308 restorer = ka->sa.sa_restorer;
309
310 /* Set up to return from userspace. */
311 err |= __put_user(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100314 * This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 *
316 * WE DO NOT USE IT ANY MORE! It's only left here for historical
317 * reasons and because gdb uses it as a signature to notice
318 * signal handler stack frames.
319 */
Hiroshi Shimamoto4a612042008-11-11 19:09:29 -0800320 err |= __put_user(*((u64 *)&retcode), (u64 *)frame->retcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if (err)
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700323 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100326 regs->sp = (unsigned long)frame;
327 regs->ip = (unsigned long)ka->sa.sa_handler;
328 regs->ax = (unsigned long)sig;
Harvey Harrison92bc2052008-02-08 12:09:56 -0800329 regs->dx = 0;
330 regs->cx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100332 regs->ds = __USER_DS;
333 regs->es = __USER_DS;
334 regs->ss = __USER_DS;
335 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
David Howells283828f2006-01-18 17:44:00 -0800337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700340static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
341 sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct rt_sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100344 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 int err = 0;
Suresh Siddhaab513702008-07-29 10:29:22 -0700346 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700348 frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700351 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800353 put_user_try {
354 put_user_ex(sig, &frame->sig);
355 put_user_ex(&frame->info, &frame->pinfo);
356 put_user_ex(&frame->uc, &frame->puc);
357 err |= copy_siginfo_to_user(&frame->info, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800359 /* Create the ucontext. */
360 if (cpu_has_xsave)
361 put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
362 else
363 put_user_ex(0, &frame->uc.uc_flags);
364 put_user_ex(0, &frame->uc.uc_link);
365 put_user_ex(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
366 put_user_ex(sas_ss_flags(regs->sp),
367 &frame->uc.uc_stack.ss_flags);
368 put_user_ex(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
369 err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
370 regs, set->sig[0]);
371 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800373 /* Set up to return from userspace. */
374 restorer = VDSO32_SYMBOL(current->mm->context.vdso, rt_sigreturn);
375 if (ka->sa.sa_flags & SA_RESTORER)
376 restorer = ka->sa.sa_restorer;
377 put_user_ex(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100378
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800379 /*
380 * This is movl $__NR_rt_sigreturn, %ax ; int $0x80
381 *
382 * WE DO NOT USE IT ANY MORE! It's only left here for historical
383 * reasons and because gdb uses it as a signature to notice
384 * signal handler stack frames.
385 */
386 put_user_ex(*((u64 *)&rt_retcode), (u64 *)frame->retcode);
387 } put_user_catch(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 if (err)
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700390 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100393 regs->sp = (unsigned long)frame;
394 regs->ip = (unsigned long)ka->sa.sa_handler;
Hiroshi Shimamoto13ad7722008-09-05 16:28:38 -0700395 regs->ax = (unsigned long)sig;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100396 regs->dx = (unsigned long)&frame->info;
397 regs->cx = (unsigned long)&frame->uc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100399 regs->ds = __USER_DS;
400 regs->es = __USER_DS;
401 regs->ss = __USER_DS;
402 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
David Howells283828f2006-01-18 17:44:00 -0800404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800406#else /* !CONFIG_X86_32 */
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800407static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
408 sigset_t *set, struct pt_regs *regs)
409{
410 struct rt_sigframe __user *frame;
411 void __user *fp = NULL;
412 int err = 0;
413 struct task_struct *me = current;
414
Hiroshi Shimamoto97286a22009-02-27 10:28:48 -0800415 frame = get_sigframe(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
420 if (ka->sa.sa_flags & SA_SIGINFO) {
421 if (copy_siginfo_to_user(&frame->info, info))
422 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);
432 put_user_ex(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
433 put_user_ex(sas_ss_flags(regs->sp),
434 &frame->uc.uc_stack.ss_flags);
435 put_user_ex(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
436 err |= setup_sigcontext(&frame->uc.uc_mcontext, fp, regs, set->sig[0]);
437 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800438
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800439 /* Set up to return from userspace. If provided, use a stub
440 already in userspace. */
441 /* x86-64 should always use SA_RESTORER. */
442 if (ka->sa.sa_flags & SA_RESTORER) {
443 put_user_ex(ka->sa.sa_restorer, &frame->pretcode);
444 } else {
445 /* could use a vstub here */
446 err |= -EFAULT;
447 }
448 } put_user_catch(err);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800449
450 if (err)
451 return -EFAULT;
452
453 /* Set up registers for signal handler */
454 regs->di = sig;
455 /* In case the signal handler was declared without prototypes */
456 regs->ax = 0;
457
458 /* This also works for non SA_SIGINFO handlers because they expect the
459 next argument after the signal number on the stack. */
460 regs->si = (unsigned long)&frame->info;
461 regs->dx = (unsigned long)&frame->uc;
462 regs->ip = (unsigned long) ka->sa.sa_handler;
463
464 regs->sp = (unsigned long)frame;
465
466 /* Set up the CS register to run signal handlers in 64-bit mode,
467 even if the handler happens to be interrupting 32-bit code. */
468 regs->cs = __USER_CS;
469
470 return 0;
471}
472#endif /* CONFIG_X86_32 */
473
Suresh Siddha050902c2012-07-24 16:05:27 -0700474static int x32_setup_rt_frame(int sig, struct k_sigaction *ka,
475 siginfo_t *info, compat_sigset_t *set,
476 struct pt_regs *regs)
477{
478#ifdef CONFIG_X86_X32_ABI
479 struct rt_sigframe_x32 __user *frame;
480 void __user *restorer;
481 int err = 0;
482 void __user *fpstate = NULL;
483
484 frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
485
486 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
487 return -EFAULT;
488
489 if (ka->sa.sa_flags & SA_SIGINFO) {
490 if (copy_siginfo_to_user32(&frame->info, info))
491 return -EFAULT;
492 }
493
494 put_user_try {
495 /* Create the ucontext. */
496 if (cpu_has_xsave)
497 put_user_ex(UC_FP_XSTATE, &frame->uc.uc_flags);
498 else
499 put_user_ex(0, &frame->uc.uc_flags);
500 put_user_ex(0, &frame->uc.uc_link);
501 put_user_ex(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
502 put_user_ex(sas_ss_flags(regs->sp),
503 &frame->uc.uc_stack.ss_flags);
504 put_user_ex(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
505 put_user_ex(0, &frame->uc.uc__pad0);
506 err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
507 regs, set->sig[0]);
508 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
509
510 if (ka->sa.sa_flags & SA_RESTORER) {
511 restorer = ka->sa.sa_restorer;
512 } else {
513 /* could use a vstub here */
514 restorer = NULL;
515 err |= -EFAULT;
516 }
517 put_user_ex(restorer, &frame->pretcode);
518 } put_user_catch(err);
519
520 if (err)
521 return -EFAULT;
522
523 /* Set up registers for signal handler */
524 regs->sp = (unsigned long) frame;
525 regs->ip = (unsigned long) ka->sa.sa_handler;
526
527 /* We use the x32 calling convention here... */
528 regs->di = sig;
529 regs->si = (unsigned long) &frame->info;
530 regs->dx = (unsigned long) &frame->uc;
531
532 loadsegment(ds, __USER_DS);
533 loadsegment(es, __USER_DS);
534
535 regs->cs = __USER_CS;
536 regs->ss = __USER_DS;
537#endif /* CONFIG_X86_X32_ABI */
538
539 return 0;
540}
541
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -0800542#ifdef CONFIG_X86_32
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800543/*
544 * Atomically swap in the new signal mask, and wait for a signal.
545 */
546asmlinkage int
547sys_sigsuspend(int history0, int history1, old_sigset_t mask)
548{
Oleg Nesterov39822942011-07-10 21:27:27 +0200549 sigset_t blocked;
Oleg Nesterov39822942011-07-10 21:27:27 +0200550 siginitset(&blocked, mask);
Al Viro68f3f162012-05-21 21:42:32 -0400551 return sigsuspend(&blocked);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800552}
553
554asmlinkage int
555sys_sigaction(int sig, const struct old_sigaction __user *act,
556 struct old_sigaction __user *oact)
557{
558 struct k_sigaction new_ka, old_ka;
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800559 int ret = 0;
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800560
561 if (act) {
562 old_sigset_t mask;
563
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800564 if (!access_ok(VERIFY_READ, act, sizeof(*act)))
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800565 return -EFAULT;
566
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800567 get_user_try {
568 get_user_ex(new_ka.sa.sa_handler, &act->sa_handler);
569 get_user_ex(new_ka.sa.sa_flags, &act->sa_flags);
570 get_user_ex(mask, &act->sa_mask);
571 get_user_ex(new_ka.sa.sa_restorer, &act->sa_restorer);
572 } get_user_catch(ret);
573
574 if (ret)
575 return -EFAULT;
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800576 siginitset(&new_ka.sa.sa_mask, mask);
577 }
578
579 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
580
581 if (!ret && oact) {
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800582 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)))
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800583 return -EFAULT;
584
Hiroshi Shimamoto98e3d452009-01-23 15:50:10 -0800585 put_user_try {
586 put_user_ex(old_ka.sa.sa_handler, &oact->sa_handler);
587 put_user_ex(old_ka.sa.sa_flags, &oact->sa_flags);
588 put_user_ex(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
589 put_user_ex(old_ka.sa.sa_restorer, &oact->sa_restorer);
590 } put_user_catch(ret);
591
592 if (ret)
593 return -EFAULT;
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800594 }
595
596 return ret;
597}
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -0800598#endif /* CONFIG_X86_32 */
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800599
Brian Gerst052acad2009-12-09 19:01:54 -0500600long
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800601sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
602 struct pt_regs *regs)
603{
604 return do_sigaltstack(uss, uoss, regs->sp);
605}
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800606
607/*
608 * Do a signal return; undo the signal stack.
609 */
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -0800610#ifdef CONFIG_X86_32
Brian Gerstb12bdaf2009-02-11 16:43:58 -0500611unsigned long sys_sigreturn(struct pt_regs *regs)
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800612{
613 struct sigframe __user *frame;
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800614 unsigned long ax;
615 sigset_t set;
616
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800617 frame = (struct sigframe __user *)(regs->sp - 8);
618
619 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
620 goto badframe;
621 if (__get_user(set.sig[0], &frame->sc.oldmask) || (_NSIG_WORDS > 1
622 && __copy_from_user(&set.sig[1], &frame->extramask,
623 sizeof(frame->extramask))))
624 goto badframe;
625
Oleg Nesterov39822942011-07-10 21:27:27 +0200626 set_current_blocked(&set);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800627
628 if (restore_sigcontext(regs, &frame->sc, &ax))
629 goto badframe;
630 return ax;
631
632badframe:
Hiroshi Shimamotoae417bb2008-12-16 14:02:16 -0800633 signal_fault(regs, frame, "sigreturn");
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800634
635 return 0;
636}
Hiroshi Shimamotoe5fa2d02008-11-24 18:24:11 -0800637#endif /* CONFIG_X86_32 */
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800638
H. Peter Anvin74452502009-02-11 16:31:40 -0800639long sys_rt_sigreturn(struct pt_regs *regs)
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800640{
641 struct rt_sigframe __user *frame;
642 unsigned long ax;
643 sigset_t set;
644
645 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
646 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
647 goto badframe;
648 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
649 goto badframe;
650
Oleg Nesterove9bd3f02011-04-27 21:09:39 +0200651 set_current_blocked(&set);
Hiroshi Shimamotobfeb91a2008-11-24 18:23:12 -0800652
653 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
654 goto badframe;
655
656 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
657 goto badframe;
658
659 return ax;
660
661badframe:
662 signal_fault(regs, frame, "rt_sigreturn");
663 return 0;
664}
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666/*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100667 * OK, we're invoking a handler:
668 */
Hiroshi Shimamoto8d8c13b2008-09-24 19:10:29 -0700669static int signr_convert(int sig)
670{
Hiroshi Shimamoto96bf84b2008-10-29 18:44:08 -0700671#ifdef CONFIG_X86_32
Hiroshi Shimamoto8d8c13b2008-09-24 19:10:29 -0700672 struct thread_info *info = current_thread_info();
673
674 if (info->exec_domain && info->exec_domain->signal_invmap && sig < 32)
675 return info->exec_domain->signal_invmap[sig];
Hiroshi Shimamoto96bf84b2008-10-29 18:44:08 -0700676#endif /* CONFIG_X86_32 */
Hiroshi Shimamoto8d8c13b2008-09-24 19:10:29 -0700677 return sig;
678}
679
Roland McGrath7c1def12005-06-23 00:08:21 -0700680static int
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700681setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
Oleg Nesterov9b429622011-07-10 20:22:03 +0200682 struct pt_regs *regs)
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700683{
Hiroshi Shimamoto8d8c13b2008-09-24 19:10:29 -0700684 int usig = signr_convert(sig);
Al Virob7f9a112012-05-02 09:59:21 -0400685 sigset_t *set = sigmask_to_save();
Suresh Siddha050902c2012-07-24 16:05:27 -0700686 compat_sigset_t *cset = (compat_sigset_t *) set;
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700687
688 /* Set up the stack frame */
Suresh Siddha050902c2012-07-24 16:05:27 -0700689 if (is_ia32_frame()) {
Hiroshi Shimamoto455edbc2008-09-24 19:13:11 -0700690 if (ka->sa.sa_flags & SA_SIGINFO)
Suresh Siddha050902c2012-07-24 16:05:27 -0700691 return ia32_setup_rt_frame(usig, ka, info, cset, regs);
Hiroshi Shimamoto455edbc2008-09-24 19:13:11 -0700692 else
Suresh Siddha050902c2012-07-24 16:05:27 -0700693 return ia32_setup_frame(usig, ka, cset, regs);
694 } else if (is_x32_frame()) {
695 return x32_setup_rt_frame(usig, ka, info, cset, regs);
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800696 } else {
Al Viroa610d6e2012-05-21 23:42:15 -0400697 return __setup_rt_frame(sig, ka, info, set, regs);
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800698 }
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700699}
700
Al Viroa610d6e2012-05-21 23:42:15 -0400701static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
Oleg Nesterov9b429622011-07-10 20:22:03 +0200703 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 /* Are we from a system call? */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700706 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /* If so, check system call restarting.. */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700708 switch (syscall_get_error(current, regs)) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800709 case -ERESTART_RESTARTBLOCK:
710 case -ERESTARTNOHAND:
711 regs->ax = -EINTR;
712 break;
713
714 case -ERESTARTSYS:
715 if (!(ka->sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100716 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800718 }
719 /* fallthrough */
720 case -ERESTARTNOINTR:
721 regs->ax = regs->orig_ax;
722 regs->ip -= 2;
723 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725 }
726
727 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100728 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
729 * flag so that register information in the sigcontext is correct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100731 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100732 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100733 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Al Viroa610d6e2012-05-21 23:42:15 -0400735 if (setup_rt_frame(sig, ka, info, regs) < 0) {
736 force_sigsegv(sig, current);
737 return;
738 }
Roland McGrath7c1def12005-06-23 00:08:21 -0700739
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700740 /*
741 * Clear the direction flag as per the ABI for function entry.
742 */
743 regs->flags &= ~X86_EFLAGS_DF;
744
745 /*
746 * Clear TF when entering the signal handler, but
747 * notify any tracer that was single-stepping it.
748 * The tracer may want to single-step inside the
749 * handler too.
750 */
751 regs->flags &= ~X86_EFLAGS_TF;
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700752
Al Viroefee9842012-04-28 02:04:15 -0400753 signal_delivered(sig, info, ka, regs,
754 test_thread_flag(TIF_SINGLESTEP));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Hiroshi Shimamoto57917752008-10-29 18:46:40 -0700757#ifdef CONFIG_X86_32
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700758#define NR_restart_syscall __NR_restart_syscall
Hiroshi Shimamoto57917752008-10-29 18:46:40 -0700759#else /* !CONFIG_X86_32 */
760#define NR_restart_syscall \
761 test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall
762#endif /* CONFIG_X86_32 */
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/*
765 * Note that 'init' is a special process: it doesn't get signals it doesn't
766 * want to handle. Thus you cannot kill init even with a SIGKILL even by
767 * mistake.
768 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100769static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800771 struct k_sigaction ka;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 siginfo_t info;
773 int signr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
776 if (signr > 0) {
Ingo Molnar7e907f42008-03-06 10:33:08 +0100777 /* Whee! Actually deliver the signal. */
Oleg Nesterov9b429622011-07-10 20:22:03 +0200778 handle_signal(signr, &info, &ka, regs);
David Howells283828f2006-01-18 17:44:00 -0800779 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /* Did we come from a system call? */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700783 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /* Restart the system call - no handlers present */
Hiroshi Shimamotobb579252008-09-05 16:26:55 -0700785 switch (syscall_get_error(current, regs)) {
David Howells283828f2006-01-18 17:44:00 -0800786 case -ERESTARTNOHAND:
787 case -ERESTARTSYS:
788 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100789 regs->ax = regs->orig_ax;
790 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800791 break;
792
793 case -ERESTART_RESTARTBLOCK:
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700794 regs->ax = NR_restart_syscall;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100795 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800796 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798 }
David Howells283828f2006-01-18 17:44:00 -0800799
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800800 /*
801 * If there's no signal to deliver, we just put the saved sigmask
802 * back.
803 */
Al Viro51a7b442012-05-21 23:33:55 -0400804 restore_saved_sigmask();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
807/*
808 * notification of userspace execution resumption
David Howells283828f2006-01-18 17:44:00 -0800809 * - triggered by the TIF_WORK_MASK flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100811void
812do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Andi Kleenc1ebf832009-07-09 00:31:41 +0200814#ifdef CONFIG_X86_MCE
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700815 /* notify userspace of pending MCEs */
816 if (thread_info_flags & _TIF_MCE_NOTIFY)
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200817 mce_notify_process();
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700818#endif /* CONFIG_X86_64 && CONFIG_X86_MCE */
819
Srikar Dronamraju0326f5a2012-03-13 23:30:11 +0530820 if (thread_info_flags & _TIF_UPROBE) {
821 clear_thread_flag(TIF_UPROBE);
822 uprobe_notify_resume(regs);
823 }
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700826 if (thread_info_flags & _TIF_SIGPENDING)
David Howells283828f2006-01-18 17:44:00 -0800827 do_signal(regs);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100828
Roland McGrath59e52132008-04-19 19:10:57 -0700829 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
830 clear_thread_flag(TIF_NOTIFY_RESUME);
831 tracehook_notify_resume(regs);
832 }
Avi Kivity7c68af62009-09-19 09:40:22 +0300833 if (thread_info_flags & _TIF_USER_RETURN_NOTIFY)
834 fire_user_return_notifiers();
Roland McGrath59e52132008-04-19 19:10:57 -0700835
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700836#ifdef CONFIG_X86_32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 clear_thread_flag(TIF_IRET);
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700838#endif /* CONFIG_X86_32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700840
841void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
842{
843 struct task_struct *me = current;
844
845 if (show_unhandled_signals && printk_ratelimit()) {
Hiroshi Shimamotoae417bb2008-12-16 14:02:16 -0800846 printk("%s"
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700847 "%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
Hiroshi Shimamotoae417bb2008-12-16 14:02:16 -0800848 task_pid_nr(current) > 1 ? KERN_INFO : KERN_EMERG,
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700849 me->comm, me->pid, where, frame,
850 regs->ip, regs->sp, regs->orig_ax);
851 print_vma_addr(" in ", regs->ip);
Joe Perchesc767a542012-05-21 19:50:07 -0700852 pr_cont("\n");
Hiroshi Shimamoto72fa50f2008-09-05 16:27:11 -0700853 }
854
855 force_sig(SIGSEGV, me);
856}
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800857
858#ifdef CONFIG_X86_X32_ABI
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800859asmlinkage long sys32_x32_rt_sigreturn(struct pt_regs *regs)
860{
861 struct rt_sigframe_x32 __user *frame;
862 sigset_t set;
863 unsigned long ax;
864 struct pt_regs tregs;
865
866 frame = (struct rt_sigframe_x32 __user *)(regs->sp - 8);
867
868 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
869 goto badframe;
870 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
871 goto badframe;
872
H. Peter Anvinc5a37392012-02-19 09:41:09 -0800873 set_current_blocked(&set);
874
875 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
876 goto badframe;
877
878 tregs = *regs;
879 if (sys32_sigaltstack(&frame->uc.uc_stack, NULL, &tregs) == -EFAULT)
880 goto badframe;
881
882 return ax;
883
884badframe:
885 signal_fault(regs, frame, "x32 rt_sigreturn");
886 return 0;
887}
888#endif