blob: ddf6123a55c89ab6ea0ab0550bf830bdb90c8349 [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
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
4 *
5 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
6 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
7 * 2000-2002 x86-64 support by Andi Kleen
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/sched.h>
11#include <linux/mm.h>
12#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/signal.h>
15#include <linux/errno.h>
16#include <linux/wait.h>
17#include <linux/ptrace.h>
18#include <linux/unistd.h>
19#include <linux/stddef.h>
20#include <linux/personality.h>
21#include <linux/compiler.h>
Harvey Harrison1a176802008-02-08 12:09:59 -080022#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/ucontext.h>
24#include <asm/uaccess.h>
25#include <asm/i387.h>
26#include <asm/proto.h>
Oliver Korpillac5924b72005-05-27 12:52:55 -070027#include <asm/ia32_unistd.h>
Tim Hockine02e68d2007-07-21 17:10:36 +020028#include <asm/mce.h>
Harvey Harrison123a6342008-02-08 12:10:00 -080029#include "sigframe.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
32
Harvey Harrison1a176802008-02-08 12:09:59 -080033#define __FIX_EFLAGS (X86_EFLAGS_AC | X86_EFLAGS_OF | \
34 X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \
35 X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \
36 X86_EFLAGS_CF)
37
38#ifdef CONFIG_X86_32
39# define FIX_EFLAGS (__FIX_EFLAGS | X86_EFLAGS_RF)
40#else
41# define FIX_EFLAGS __FIX_EFLAGS
42#endif
43
Roland McGrath0928d6e2005-06-23 00:08:37 -070044int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 sigset_t *set, struct pt_regs * regs);
Roland McGrath0928d6e2005-06-23 00:08:37 -070046int ia32_setup_frame(int sig, struct k_sigaction *ka,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 sigset_t *set, struct pt_regs * regs);
48
49asmlinkage long
Linus Torvalds1da177e2005-04-16 15:20:36 -070050sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
51 struct pt_regs *regs)
52{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010053 return do_sigaltstack(uss, uoss, regs->sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
Linus Torvaldsb30f3ae2008-07-24 15:43:44 -070056/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * Do a signal return; undo the signal stack.
58 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static int
Harvey Harrison866bc132008-02-08 12:10:02 -080060restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
61 unsigned long *pax)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 unsigned int err = 0;
64
65 /* Always make any pending restarted system calls return -EINTR */
66 current_thread_info()->restart_block.fn = do_no_restart_syscall;
67
68#define COPY(x) err |= __get_user(regs->x, &sc->x)
69
H. Peter Anvin742fa542008-01-30 13:30:56 +010070 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
71 COPY(dx); COPY(cx); COPY(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 COPY(r8);
73 COPY(r9);
74 COPY(r10);
75 COPY(r11);
76 COPY(r12);
77 COPY(r13);
78 COPY(r14);
79 COPY(r15);
80
Bryan Forde4e5d322005-11-05 17:25:54 +010081 /* Kernel saves and restores only the CS segment register on signals,
82 * which is the bare minimum needed to allow mixed 32/64-bit code.
83 * App's signal handler can save/restore other segments if needed. */
84 {
85 unsigned cs;
86 err |= __get_user(cs, &sc->cs);
87 regs->cs = cs | 3; /* Force into user mode */
88 }
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 {
91 unsigned int tmpflags;
H. Peter Anvin742fa542008-01-30 13:30:56 +010092 err |= __get_user(tmpflags, &sc->flags);
Harvey Harrison1a176802008-02-08 12:09:59 -080093 regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010094 regs->orig_ax = -1; /* disable syscall checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
97 {
98 struct _fpstate __user * buf;
99 err |= __get_user(buf, &sc->fpstate);
Suresh Siddhaab513702008-07-29 10:29:22 -0700100 err |= restore_i387_xstate(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
102
Harvey Harrison866bc132008-02-08 12:10:02 -0800103 err |= __get_user(*pax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
108{
109 struct rt_sigframe __user *frame;
110 sigset_t set;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100111 unsigned long ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Harvey Harrison2d19c452008-02-08 12:10:00 -0800113 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
114 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 goto badframe;
Harvey Harrison2d19c452008-02-08 12:10:00 -0800116 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 sigdelsetmask(&set, ~_BLOCKABLE);
120 spin_lock_irq(&current->sighand->siglock);
121 current->blocked = set;
122 recalc_sigpending();
123 spin_unlock_irq(&current->sighand->siglock);
124
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100125 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 goto badframe;
127
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100128 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto badframe;
130
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100131 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133badframe:
134 signal_fault(regs,frame,"sigreturn");
135 return 0;
136}
137
138/*
139 * Set up a signal frame.
140 */
141
142static inline int
143setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs, unsigned long mask, struct task_struct *me)
144{
145 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Bryan Forde4e5d322005-11-05 17:25:54 +0100147 err |= __put_user(regs->cs, &sc->cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 err |= __put_user(0, &sc->gs);
149 err |= __put_user(0, &sc->fs);
150
H. Peter Anvin742fa542008-01-30 13:30:56 +0100151 err |= __put_user(regs->di, &sc->di);
152 err |= __put_user(regs->si, &sc->si);
153 err |= __put_user(regs->bp, &sc->bp);
154 err |= __put_user(regs->sp, &sc->sp);
155 err |= __put_user(regs->bx, &sc->bx);
156 err |= __put_user(regs->dx, &sc->dx);
157 err |= __put_user(regs->cx, &sc->cx);
158 err |= __put_user(regs->ax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 err |= __put_user(regs->r8, &sc->r8);
160 err |= __put_user(regs->r9, &sc->r9);
161 err |= __put_user(regs->r10, &sc->r10);
162 err |= __put_user(regs->r11, &sc->r11);
163 err |= __put_user(regs->r12, &sc->r12);
164 err |= __put_user(regs->r13, &sc->r13);
165 err |= __put_user(regs->r14, &sc->r14);
166 err |= __put_user(regs->r15, &sc->r15);
167 err |= __put_user(me->thread.trap_no, &sc->trapno);
168 err |= __put_user(me->thread.error_code, &sc->err);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100169 err |= __put_user(regs->ip, &sc->ip);
170 err |= __put_user(regs->flags, &sc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 err |= __put_user(mask, &sc->oldmask);
172 err |= __put_user(me->thread.cr2, &sc->cr2);
173
174 return err;
175}
176
177/*
178 * Determine which stack to use..
179 */
180
181static void __user *
182get_stack(struct k_sigaction *ka, struct pt_regs *regs, unsigned long size)
183{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100184 unsigned long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* Default to using normal stack - redzone*/
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100187 sp = regs->sp - 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 /* This is the X/Open sanctioned signal stack switching. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (ka->sa.sa_flags & SA_ONSTACK) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100191 if (sas_ss_flags(sp) == 0)
192 sp = current->sas_ss_sp + current->sas_ss_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100195 return (void __user *)round_down(sp - size, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Roland McGrath0928d6e2005-06-23 00:08:37 -0700198static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 sigset_t *set, struct pt_regs * regs)
200{
201 struct rt_sigframe __user *frame;
Suresh Siddhaab513702008-07-29 10:29:22 -0700202 void __user *fp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 int err = 0;
204 struct task_struct *me = current;
205
206 if (used_math()) {
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700207 fp = get_stack(ka, regs, sig_xstate_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 frame = (void __user *)round_down(
209 (unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;
210
211 if (!access_ok(VERIFY_WRITE, fp, sizeof(struct _fpstate)))
212 goto give_sigsegv;
213
Suresh Siddhaab513702008-07-29 10:29:22 -0700214 if (save_i387_xstate(fp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 err |= -1;
216 } else
217 frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;
218
219 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
220 goto give_sigsegv;
221
222 if (ka->sa.sa_flags & SA_SIGINFO) {
223 err |= copy_siginfo_to_user(&frame->info, info);
224 if (err)
225 goto give_sigsegv;
226 }
227
228 /* Create the ucontext. */
229 err |= __put_user(0, &frame->uc.uc_flags);
230 err |= __put_user(0, &frame->uc.uc_link);
231 err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100232 err |= __put_user(sas_ss_flags(regs->sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 &frame->uc.uc_stack.ss_flags);
234 err |= __put_user(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
235 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0], me);
236 err |= __put_user(fp, &frame->uc.uc_mcontext.fpstate);
237 if (sizeof(*set) == 16) {
238 __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
239 __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
240 } else
241 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
242
243 /* Set up to return from userspace. If provided, use a stub
244 already in userspace. */
245 /* x86-64 should always use SA_RESTORER. */
246 if (ka->sa.sa_flags & SA_RESTORER) {
247 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
248 } else {
249 /* could use a vstub here */
250 goto give_sigsegv;
251 }
252
253 if (err)
254 goto give_sigsegv;
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* Set up registers for signal handler */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100257 regs->di = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* In case the signal handler was declared without prototypes */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100259 regs->ax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 /* This also works for non SA_SIGINFO handlers because they expect the
262 next argument after the signal number on the stack. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100263 regs->si = (unsigned long)&frame->info;
264 regs->dx = (unsigned long)&frame->uc;
265 regs->ip = (unsigned long) ka->sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100267 regs->sp = (unsigned long)frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Bryan Forde4e5d322005-11-05 17:25:54 +0100269 /* Set up the CS register to run signal handlers in 64-bit mode,
270 even if the handler happens to be interrupting 32-bit code. */
271 regs->cs = __USER_CS;
272
Andi Kleen1d001df2006-09-26 10:52:26 +0200273 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275give_sigsegv:
276 force_sigsegv(sig, current);
Andi Kleen1d001df2006-09-26 10:52:26 +0200277 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
280/*
Roland McGrath40f09332008-02-28 19:57:07 -0800281 * Return -1L or the syscall number that @regs is executing.
282 */
283static long current_syscall(struct pt_regs *regs)
284{
285 /*
286 * We always sign-extend a -1 value being set here,
287 * so this is always either -1L or a syscall number.
288 */
289 return regs->orig_ax;
290}
291
292/*
293 * Return a value that is -EFOO if the system call in @regs->orig_ax
294 * returned an error. This only works for @regs from @current.
295 */
296static long current_syscall_ret(struct pt_regs *regs)
297{
298#ifdef CONFIG_IA32_EMULATION
299 if (test_thread_flag(TIF_IA32))
300 /*
301 * Sign-extend the value so (int)-EFOO becomes (long)-EFOO
302 * and will match correctly in comparisons.
303 */
304 return (int) regs->ax;
305#endif
306 return regs->ax;
307}
308
309/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * OK, we're invoking a handler
311 */
312
Roland McGrath0928d6e2005-06-23 00:08:37 -0700313static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800315 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Roland McGrath0928d6e2005-06-23 00:08:37 -0700317 int ret;
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* Are we from a system call? */
Roland McGrath40f09332008-02-28 19:57:07 -0800320 if (current_syscall(regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* If so, check system call restarting.. */
Roland McGrath40f09332008-02-28 19:57:07 -0800322 switch (current_syscall_ret(regs)) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800323 case -ERESTART_RESTARTBLOCK:
324 case -ERESTARTNOHAND:
325 regs->ax = -EINTR;
326 break;
327
328 case -ERESTARTSYS:
329 if (!(ka->sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100330 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800332 }
333 /* fallthrough */
334 case -ERESTARTNOINTR:
335 regs->ax = regs->orig_ax;
336 regs->ip -= 2;
337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 }
340
Andi Kleend61915d2005-04-16 15:25:00 -0700341 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100342 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
343 * flag so that register information in the sigcontext is correct.
Andi Kleend61915d2005-04-16 15:25:00 -0700344 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100345 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100346 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100347 regs->flags &= ~X86_EFLAGS_TF;
Andi Kleend61915d2005-04-16 15:25:00 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349#ifdef CONFIG_IA32_EMULATION
350 if (test_thread_flag(TIF_IA32)) {
351 if (ka->sa.sa_flags & SA_SIGINFO)
Roland McGrath0928d6e2005-06-23 00:08:37 -0700352 ret = ia32_setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 else
Roland McGrath0928d6e2005-06-23 00:08:37 -0700354 ret = ia32_setup_frame(sig, ka, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 } else
356#endif
Roland McGrath0928d6e2005-06-23 00:08:37 -0700357 ret = setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Andi Kleen1d001df2006-09-26 10:52:26 +0200359 if (ret == 0) {
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700360 /*
Roland McGrath55928e32008-04-19 14:27:56 -0700361 * This has nothing to do with segment registers,
362 * despite the name. This magic affects uaccess.h
363 * macros' behavior. Reset it to the normal setting.
364 */
365 set_fs(USER_DS);
366
367 /*
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700368 * Clear the direction flag as per the ABI for function entry.
369 */
370 regs->flags &= ~X86_EFLAGS_DF;
371
372 /*
373 * Clear TF when entering the signal handler, but
374 * notify any tracer that was single-stepping it.
375 * The tracer may want to single-step inside the
376 * handler too.
377 */
378 regs->flags &= ~X86_EFLAGS_TF;
379 if (test_thread_flag(TIF_SINGLESTEP))
380 ptrace_notify(SIGTRAP);
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 spin_lock_irq(&current->sighand->siglock);
383 sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
Steven Rostedt69be8f12005-08-29 11:44:09 -0400384 if (!(ka->sa.sa_flags & SA_NODEFER))
385 sigaddset(&current->blocked,sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 recalc_sigpending();
387 spin_unlock_irq(&current->sighand->siglock);
388 }
Roland McGrath0928d6e2005-06-23 00:08:37 -0700389
390 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393/*
394 * Note that 'init' is a special process: it doesn't get signals it doesn't
395 * want to handle. Thus you cannot kill init even with a SIGKILL even by
396 * mistake.
397 */
Andi Kleen1d001df2006-09-26 10:52:26 +0200398static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 struct k_sigaction ka;
401 siginfo_t info;
402 int signr;
Andi Kleen1d001df2006-09-26 10:52:26 +0200403 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /*
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800406 * We want the common case to go fast, which is why we may in certain
407 * cases get here from kernel mode. Just return without doing anything
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * if so.
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800409 * X86_32: vm86 regs switched out by assembly code before reaching
410 * here, so testing against kernel CS suffices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700412 if (!user_mode(regs))
Andi Kleen1d001df2006-09-26 10:52:26 +0200413 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700415 if (current_thread_info()->status & TS_RESTORE_SIGMASK)
Andi Kleen1d001df2006-09-26 10:52:26 +0200416 oldset = &current->saved_sigmask;
417 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 oldset = &current->blocked;
419
420 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
421 if (signr > 0) {
Simon Arlott676b1852007-10-20 01:25:36 +0200422 /* Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * signal to user space. The processor register will
424 * have been cleared if the watchpoint triggered
425 * inside the kernel.
426 */
427 if (current->thread.debugreg7)
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700428 set_debugreg(current->thread.debugreg7, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 /* Whee! Actually deliver the signal. */
Andi Kleen1d001df2006-09-26 10:52:26 +0200431 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700432 /*
433 * A signal was successfully delivered; the saved
Andi Kleen1d001df2006-09-26 10:52:26 +0200434 * sigmask will have been stored in the signal frame,
435 * and will be restored by sigreturn, so we can simply
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700436 * clear the TS_RESTORE_SIGMASK flag.
437 */
438 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200439 }
440 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* Did we come from a system call? */
Roland McGrath40f09332008-02-28 19:57:07 -0800444 if (current_syscall(regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /* Restart the system call - no handlers present */
Roland McGrath40f09332008-02-28 19:57:07 -0800446 switch (current_syscall_ret(regs)) {
Andi Kleen1d001df2006-09-26 10:52:26 +0200447 case -ERESTARTNOHAND:
448 case -ERESTARTSYS:
449 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100450 regs->ax = regs->orig_ax;
451 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200452 break;
453 case -ERESTART_RESTARTBLOCK:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100454 regs->ax = test_thread_flag(TIF_IA32) ?
Andi Kleen607a1682005-05-20 14:27:58 -0700455 __NR_ia32_restart_syscall :
456 __NR_restart_syscall;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100457 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200458 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460 }
Andi Kleen1d001df2006-09-26 10:52:26 +0200461
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800462 /*
463 * If there's no signal to deliver, we just put the saved sigmask
464 * back.
465 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700466 if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
467 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200468 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800472void do_notify_resume(struct pt_regs *regs, void *unused,
473 __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Tim Hockine02e68d2007-07-21 17:10:36 +0200475#ifdef CONFIG_X86_MCE
476 /* notify userspace of pending MCEs */
477 if (thread_info_flags & _TIF_MCE_NOTIFY)
478 mce_notify_user();
479#endif /* CONFIG_X86_MCE */
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700482 if (thread_info_flags & _TIF_SIGPENDING)
Andi Kleen1d001df2006-09-26 10:52:26 +0200483 do_signal(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
487{
488 struct task_struct *me = current;
Andi Kleen03252912008-01-30 13:33:18 +0100489 if (show_unhandled_signals && printk_ratelimit()) {
490 printk("%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100491 me->comm,me->pid,where,frame,regs->ip,regs->sp,regs->orig_ax);
Andi Kleen03252912008-01-30 13:33:18 +0100492 print_vma_addr(" in ", regs->ip);
493 printk("\n");
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 force_sig(SIGSEGV, me);
497}