blob: 963236f2c3c1a015b03046a931875f5ad83079e0 [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>
Roland McGrath36a03302008-03-14 17:46:38 -070018#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/unistd.h>
20#include <linux/stddef.h>
21#include <linux/personality.h>
22#include <linux/compiler.h>
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -030023#include <linux/uaccess.h>
24
Harvey Harrison1a176802008-02-08 12:09:59 -080025#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/ucontext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/i387.h>
28#include <asm/proto.h>
Oliver Korpillac5924b72005-05-27 12:52:55 -070029#include <asm/ia32_unistd.h>
Tim Hockine02e68d2007-07-21 17:10:36 +020030#include <asm/mce.h>
Roland McGrath4dfcbb92008-04-19 15:37:09 -070031#include <asm/syscall.h>
Jaswinder Singhbbc1f692008-07-21 21:34:13 +053032#include <asm/syscalls.h>
Harvey Harrison123a6342008-02-08 12:10:00 -080033#include "sigframe.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
36
Harvey Harrison1a176802008-02-08 12:09:59 -080037#define __FIX_EFLAGS (X86_EFLAGS_AC | X86_EFLAGS_OF | \
38 X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \
39 X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \
40 X86_EFLAGS_CF)
41
42#ifdef CONFIG_X86_32
43# define FIX_EFLAGS (__FIX_EFLAGS | X86_EFLAGS_RF)
44#else
45# define FIX_EFLAGS __FIX_EFLAGS
46#endif
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048asmlinkage long
Linus Torvalds1da177e2005-04-16 15:20:36 -070049sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
50 struct pt_regs *regs)
51{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010052 return do_sigaltstack(uss, uoss, regs->sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Linus Torvaldsb30f3ae2008-07-24 15:43:44 -070055/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * Do a signal return; undo the signal stack.
57 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static int
Harvey Harrison866bc132008-02-08 12:10:02 -080059restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
60 unsigned long *pax)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 unsigned int err = 0;
63
64 /* Always make any pending restarted system calls return -EINTR */
65 current_thread_info()->restart_block.fn = do_no_restart_syscall;
66
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -030067#define COPY(x) (err |= __get_user(regs->x, &sc->x))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
H. Peter Anvin742fa542008-01-30 13:30:56 +010069 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
70 COPY(dx); COPY(cx); COPY(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 COPY(r8);
72 COPY(r9);
73 COPY(r10);
74 COPY(r11);
75 COPY(r12);
76 COPY(r13);
77 COPY(r14);
78 COPY(r15);
79
Bryan Forde4e5d322005-11-05 17:25:54 +010080 /* Kernel saves and restores only the CS segment register on signals,
81 * which is the bare minimum needed to allow mixed 32/64-bit code.
82 * App's signal handler can save/restore other segments if needed. */
83 {
84 unsigned cs;
85 err |= __get_user(cs, &sc->cs);
86 regs->cs = cs | 3; /* Force into user mode */
87 }
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 {
90 unsigned int tmpflags;
H. Peter Anvin742fa542008-01-30 13:30:56 +010091 err |= __get_user(tmpflags, &sc->flags);
Harvey Harrison1a176802008-02-08 12:09:59 -080092 regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010093 regs->orig_ax = -1; /* disable syscall checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }
95
96 {
Hiroshi Shimamoto0c40ed72008-09-09 17:21:17 -070097 void __user *buf;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 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
Hiroshi Shimamotoe6babb62008-09-12 17:03:31 -0700107static long do_rt_sigreturn(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 struct rt_sigframe __user *frame;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100110 unsigned long ax;
Hiroshi Shimamotoe6babb62008-09-12 17:03:31 -0700111 sigset_t set;
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);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300124
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:
Hiroshi Shimamotoe6babb62008-09-12 17:03:31 -0700134 signal_fault(regs, frame, "rt_sigreturn");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return 0;
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300136}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Hiroshi Shimamotoe6babb62008-09-12 17:03:31 -0700138asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
139{
140 return do_rt_sigreturn(regs);
141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
144 * Set up a signal frame.
145 */
146
147static inline int
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300148setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
149 unsigned long mask, struct task_struct *me)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Bryan Forde4e5d322005-11-05 17:25:54 +0100153 err |= __put_user(regs->cs, &sc->cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 err |= __put_user(0, &sc->gs);
155 err |= __put_user(0, &sc->fs);
156
H. Peter Anvin742fa542008-01-30 13:30:56 +0100157 err |= __put_user(regs->di, &sc->di);
158 err |= __put_user(regs->si, &sc->si);
159 err |= __put_user(regs->bp, &sc->bp);
160 err |= __put_user(regs->sp, &sc->sp);
161 err |= __put_user(regs->bx, &sc->bx);
162 err |= __put_user(regs->dx, &sc->dx);
163 err |= __put_user(regs->cx, &sc->cx);
164 err |= __put_user(regs->ax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 err |= __put_user(regs->r8, &sc->r8);
166 err |= __put_user(regs->r9, &sc->r9);
167 err |= __put_user(regs->r10, &sc->r10);
168 err |= __put_user(regs->r11, &sc->r11);
169 err |= __put_user(regs->r12, &sc->r12);
170 err |= __put_user(regs->r13, &sc->r13);
171 err |= __put_user(regs->r14, &sc->r14);
172 err |= __put_user(regs->r15, &sc->r15);
173 err |= __put_user(me->thread.trap_no, &sc->trapno);
174 err |= __put_user(me->thread.error_code, &sc->err);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100175 err |= __put_user(regs->ip, &sc->ip);
176 err |= __put_user(regs->flags, &sc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 err |= __put_user(mask, &sc->oldmask);
178 err |= __put_user(me->thread.cr2, &sc->cr2);
179
180 return err;
181}
182
183/*
184 * Determine which stack to use..
185 */
186
187static void __user *
188get_stack(struct k_sigaction *ka, struct pt_regs *regs, unsigned long size)
189{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100190 unsigned long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /* Default to using normal stack - redzone*/
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100193 sp = regs->sp - 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 /* This is the X/Open sanctioned signal stack switching. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (ka->sa.sa_flags & SA_ONSTACK) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100197 if (sas_ss_flags(sp) == 0)
198 sp = current->sas_ss_sp + current->sas_ss_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700201 return (void __user *)round_down(sp - size, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700204static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
205 sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 struct rt_sigframe __user *frame;
Suresh Siddhaab513702008-07-29 10:29:22 -0700208 void __user *fp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int err = 0;
210 struct task_struct *me = current;
211
212 if (used_math()) {
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700213 fp = get_stack(ka, regs, sig_xstate_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 frame = (void __user *)round_down(
215 (unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;
216
Suresh Siddhaab513702008-07-29 10:29:22 -0700217 if (save_i387_xstate(fp) < 0)
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700218 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 } else
220 frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;
221
222 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700223 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300225 if (ka->sa.sa_flags & SA_SIGINFO) {
Hiroshi Shimamoto2ba48e12008-09-12 17:02:53 -0700226 if (copy_siginfo_to_user(&frame->info, info))
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700227 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* Create the ucontext. */
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700231 if (cpu_has_xsave)
232 err |= __put_user(UC_FP_XSTATE, &frame->uc.uc_flags);
233 else
234 err |= __put_user(0, &frame->uc.uc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 err |= __put_user(0, &frame->uc.uc_link);
236 err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100237 err |= __put_user(sas_ss_flags(regs->sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 &frame->uc.uc_stack.ss_flags);
239 err |= __put_user(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
240 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0], me);
241 err |= __put_user(fp, &frame->uc.uc_mcontext.fpstate);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300242 if (sizeof(*set) == 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300244 __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 } else
246 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
247
248 /* Set up to return from userspace. If provided, use a stub
249 already in userspace. */
250 /* x86-64 should always use SA_RESTORER. */
251 if (ka->sa.sa_flags & SA_RESTORER) {
252 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
253 } else {
254 /* could use a vstub here */
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700255 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
258 if (err)
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700259 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* Set up registers for signal handler */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100262 regs->di = sig;
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300263 /* In case the signal handler was declared without prototypes */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100264 regs->ax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /* This also works for non SA_SIGINFO handlers because they expect the
267 next argument after the signal number on the stack. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100268 regs->si = (unsigned long)&frame->info;
269 regs->dx = (unsigned long)&frame->uc;
270 regs->ip = (unsigned long) ka->sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100272 regs->sp = (unsigned long)frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Bryan Forde4e5d322005-11-05 17:25:54 +0100274 /* Set up the CS register to run signal handlers in 64-bit mode,
275 even if the handler happens to be interrupting 32-bit code. */
276 regs->cs = __USER_CS;
277
Andi Kleen1d001df2006-09-26 10:52:26 +0200278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281/*
282 * OK, we're invoking a handler
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300283 */
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700284static int
285setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
286 sigset_t *set, struct pt_regs *regs)
287{
288 int ret;
289
290#ifdef CONFIG_IA32_EMULATION
291 if (test_thread_flag(TIF_IA32)) {
292 if (ka->sa.sa_flags & SA_SIGINFO)
293 ret = ia32_setup_rt_frame(sig, ka, info, set, regs);
294 else
295 ret = ia32_setup_frame(sig, ka, set, regs);
296 } else
297#endif
298 ret = __setup_rt_frame(sig, ka, info, set, regs);
299
Hiroshi Shimamoto3d0aedd2008-09-12 17:01:09 -0700300 if (ret) {
301 force_sigsegv(sig, current);
302 return -EFAULT;
303 }
304
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700305 return ret;
306}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Roland McGrath0928d6e2005-06-23 00:08:37 -0700308static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800310 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Roland McGrath0928d6e2005-06-23 00:08:37 -0700312 int ret;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* Are we from a system call? */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700315 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* If so, check system call restarting.. */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700317 switch (syscall_get_error(current, regs)) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800318 case -ERESTART_RESTARTBLOCK:
319 case -ERESTARTNOHAND:
320 regs->ax = -EINTR;
321 break;
322
323 case -ERESTARTSYS:
324 if (!(ka->sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100325 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800327 }
328 /* fallthrough */
329 case -ERESTARTNOINTR:
330 regs->ax = regs->orig_ax;
331 regs->ip -= 2;
332 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334 }
335
Andi Kleend61915d2005-04-16 15:25:00 -0700336 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100337 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
338 * flag so that register information in the sigcontext is correct.
Andi Kleend61915d2005-04-16 15:25:00 -0700339 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100340 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100341 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100342 regs->flags &= ~X86_EFLAGS_TF;
Andi Kleend61915d2005-04-16 15:25:00 -0700343
Roland McGrath0928d6e2005-06-23 00:08:37 -0700344 ret = setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Hiroshi Shimamoto764e8d12008-09-09 17:22:12 -0700346 if (ret)
347 return ret;
Roland McGrath55928e32008-04-19 14:27:56 -0700348
Hiroshi Shimamoto86d32372008-09-23 17:22:32 -0700349#ifdef CONFIG_X86_64
Hiroshi Shimamoto764e8d12008-09-09 17:22:12 -0700350 /*
351 * This has nothing to do with segment registers,
352 * despite the name. This magic affects uaccess.h
353 * macros' behavior. Reset it to the normal setting.
354 */
355 set_fs(USER_DS);
Hiroshi Shimamoto86d32372008-09-23 17:22:32 -0700356#endif
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700357
Hiroshi Shimamoto764e8d12008-09-09 17:22:12 -0700358 /*
359 * Clear the direction flag as per the ABI for function entry.
360 */
361 regs->flags &= ~X86_EFLAGS_DF;
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700362
Hiroshi Shimamoto764e8d12008-09-09 17:22:12 -0700363 /*
364 * Clear TF when entering the signal handler, but
365 * notify any tracer that was single-stepping it.
366 * The tracer may want to single-step inside the
367 * handler too.
368 */
369 regs->flags &= ~X86_EFLAGS_TF;
Roland McGrath36a03302008-03-14 17:46:38 -0700370
Hiroshi Shimamoto764e8d12008-09-09 17:22:12 -0700371 spin_lock_irq(&current->sighand->siglock);
372 sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
373 if (!(ka->sa.sa_flags & SA_NODEFER))
374 sigaddset(&current->blocked, sig);
375 recalc_sigpending();
376 spin_unlock_irq(&current->sighand->siglock);
Roland McGrath0928d6e2005-06-23 00:08:37 -0700377
Hiroshi Shimamoto764e8d12008-09-09 17:22:12 -0700378 tracehook_signal_handler(sig, info, ka, regs,
379 test_thread_flag(TIF_SINGLESTEP));
380
381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700384#define NR_restart_syscall \
385 test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386/*
387 * Note that 'init' is a special process: it doesn't get signals it doesn't
388 * want to handle. Thus you cannot kill init even with a SIGKILL even by
389 * mistake.
390 */
Andi Kleen1d001df2006-09-26 10:52:26 +0200391static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct k_sigaction ka;
394 siginfo_t info;
395 int signr;
Andi Kleen1d001df2006-09-26 10:52:26 +0200396 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /*
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800399 * We want the common case to go fast, which is why we may in certain
400 * cases get here from kernel mode. Just return without doing anything
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * if so.
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800402 * X86_32: vm86 regs switched out by assembly code before reaching
403 * here, so testing against kernel CS suffices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700405 if (!user_mode(regs))
Andi Kleen1d001df2006-09-26 10:52:26 +0200406 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700408 if (current_thread_info()->status & TS_RESTORE_SIGMASK)
Andi Kleen1d001df2006-09-26 10:52:26 +0200409 oldset = &current->saved_sigmask;
410 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 oldset = &current->blocked;
412
413 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
414 if (signr > 0) {
Hiroshi Shimamoto5fd93332008-09-23 17:19:44 -0700415 /*
416 * Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * signal to user space. The processor register will
418 * have been cleared if the watchpoint triggered
419 * inside the kernel.
420 */
421 if (current->thread.debugreg7)
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700422 set_debugreg(current->thread.debugreg7, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Hiroshi Shimamoto5fd93332008-09-23 17:19:44 -0700424 /* Whee! Actually deliver the signal. */
Andi Kleen1d001df2006-09-26 10:52:26 +0200425 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700426 /*
427 * A signal was successfully delivered; the saved
Andi Kleen1d001df2006-09-26 10:52:26 +0200428 * sigmask will have been stored in the signal frame,
429 * and will be restored by sigreturn, so we can simply
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700430 * clear the TS_RESTORE_SIGMASK flag.
431 */
432 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200433 }
434 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /* Did we come from a system call? */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700438 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 /* Restart the system call - no handlers present */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700440 switch (syscall_get_error(current, regs)) {
Andi Kleen1d001df2006-09-26 10:52:26 +0200441 case -ERESTARTNOHAND:
442 case -ERESTARTSYS:
443 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100444 regs->ax = regs->orig_ax;
445 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200446 break;
Hiroshi Shimamoto5fd93332008-09-23 17:19:44 -0700447
Andi Kleen1d001df2006-09-26 10:52:26 +0200448 case -ERESTART_RESTARTBLOCK:
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700449 regs->ax = NR_restart_syscall;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100450 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200451 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453 }
Andi Kleen1d001df2006-09-26 10:52:26 +0200454
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800455 /*
456 * If there's no signal to deliver, we just put the saved sigmask
457 * back.
458 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700459 if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
460 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200461 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700465/*
466 * notification of userspace execution resumption
467 * - triggered by the TIF_WORK_MASK flags
468 */
469void
470do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700472#if defined(CONFIG_X86_64) && defined(CONFIG_X86_MCE)
Tim Hockine02e68d2007-07-21 17:10:36 +0200473 /* notify userspace of pending MCEs */
474 if (thread_info_flags & _TIF_MCE_NOTIFY)
475 mce_notify_user();
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700476#endif /* CONFIG_X86_64 && CONFIG_X86_MCE */
Tim Hockine02e68d2007-07-21 17:10:36 +0200477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700479 if (thread_info_flags & _TIF_SIGPENDING)
Andi Kleen1d001df2006-09-26 10:52:26 +0200480 do_signal(regs);
Roland McGrath59e52132008-04-19 19:10:57 -0700481
482 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
483 clear_thread_flag(TIF_NOTIFY_RESUME);
484 tracehook_notify_resume(regs);
485 }
Hiroshi Shimamotoee847c52008-09-23 17:21:45 -0700486
487#ifdef CONFIG_X86_32
488 clear_thread_flag(TIF_IRET);
489#endif /* CONFIG_X86_32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300493{
494 struct task_struct *me = current;
Hiroshi Shimamotob2994ef2008-09-09 17:18:50 -0700495
Andi Kleen03252912008-01-30 13:33:18 +0100496 if (show_unhandled_signals && printk_ratelimit()) {
Hiroshi Shimamotob2994ef2008-09-09 17:18:50 -0700497 printk(KERN_INFO
498 "%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
499 me->comm, me->pid, where, frame,
500 regs->ip, regs->sp, regs->orig_ax);
Andi Kleen03252912008-01-30 13:33:18 +0100501 print_vma_addr(" in ", regs->ip);
Hiroshi Shimamotob2994ef2008-09-09 17:18:50 -0700502 printk(KERN_CONT "\n");
Andi Kleen03252912008-01-30 13:33:18 +0100503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300505 force_sig(SIGSEGV, me);
506}