blob: 8fbdd23d5cc66bf14d7880b81e513b08425a4b54 [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 {
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -030097 struct _fpstate __user *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 err |= __get_user(buf, &sc->fpstate);
Suresh Siddhaab513702008-07-29 10:29:22 -070099 err |= restore_i387_xstate(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
Harvey Harrison866bc132008-02-08 12:10:02 -0800102 err |= __get_user(*pax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
107{
108 struct rt_sigframe __user *frame;
109 sigset_t set;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100110 unsigned long ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Harvey Harrison2d19c452008-02-08 12:10:00 -0800112 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
113 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 goto badframe;
Harvey Harrison2d19c452008-02-08 12:10:00 -0800115 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 sigdelsetmask(&set, ~_BLOCKABLE);
119 spin_lock_irq(&current->sighand->siglock);
120 current->blocked = set;
121 recalc_sigpending();
122 spin_unlock_irq(&current->sighand->siglock);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300123
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100124 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 goto badframe;
126
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100127 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 goto badframe;
129
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100130 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132badframe:
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300133 signal_fault(regs, frame, "sigreturn");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return 0;
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300135}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/*
138 * Set up a signal frame.
139 */
140
141static inline int
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300142setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
143 unsigned long mask, struct task_struct *me)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
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
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700195 return (void __user *)round_down(sp - size, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700198static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
199 sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
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
Suresh Siddhaab513702008-07-29 10:29:22 -0700211 if (save_i387_xstate(fp) < 0)
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300212 err |= -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 } else
214 frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;
215
216 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
217 goto give_sigsegv;
218
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300219 if (ka->sa.sa_flags & SA_SIGINFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 err |= copy_siginfo_to_user(&frame->info, info);
221 if (err)
222 goto give_sigsegv;
223 }
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* Create the ucontext. */
Suresh Siddhac37b5ef2008-07-29 10:29:25 -0700226 if (cpu_has_xsave)
227 err |= __put_user(UC_FP_XSTATE, &frame->uc.uc_flags);
228 else
229 err |= __put_user(0, &frame->uc.uc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 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);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300237 if (sizeof(*set) == 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300239 __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 } 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 */
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300250 goto give_sigsegv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
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;
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300258 /* 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/*
281 * OK, we're invoking a handler
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300282 */
Hiroshi Shimamoto1d130242008-09-05 16:28:06 -0700283static int
284setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
285 sigset_t *set, struct pt_regs *regs)
286{
287 int ret;
288
289#ifdef CONFIG_IA32_EMULATION
290 if (test_thread_flag(TIF_IA32)) {
291 if (ka->sa.sa_flags & SA_SIGINFO)
292 ret = ia32_setup_rt_frame(sig, ka, info, set, regs);
293 else
294 ret = ia32_setup_frame(sig, ka, set, regs);
295 } else
296#endif
297 ret = __setup_rt_frame(sig, ka, info, set, regs);
298
299 return ret;
300}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Roland McGrath0928d6e2005-06-23 00:08:37 -0700302static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800304 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Roland McGrath0928d6e2005-06-23 00:08:37 -0700306 int ret;
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* Are we from a system call? */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700309 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* If so, check system call restarting.. */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700311 switch (syscall_get_error(current, regs)) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800312 case -ERESTART_RESTARTBLOCK:
313 case -ERESTARTNOHAND:
314 regs->ax = -EINTR;
315 break;
316
317 case -ERESTARTSYS:
318 if (!(ka->sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100319 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800321 }
322 /* fallthrough */
323 case -ERESTARTNOINTR:
324 regs->ax = regs->orig_ax;
325 regs->ip -= 2;
326 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 }
329
Andi Kleend61915d2005-04-16 15:25:00 -0700330 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100331 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
332 * flag so that register information in the sigcontext is correct.
Andi Kleend61915d2005-04-16 15:25:00 -0700333 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100334 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100335 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100336 regs->flags &= ~X86_EFLAGS_TF;
Andi Kleend61915d2005-04-16 15:25:00 -0700337
Roland McGrath0928d6e2005-06-23 00:08:37 -0700338 ret = setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Andi Kleen1d001df2006-09-26 10:52:26 +0200340 if (ret == 0) {
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700341 /*
Roland McGrath55928e32008-04-19 14:27:56 -0700342 * This has nothing to do with segment registers,
343 * despite the name. This magic affects uaccess.h
344 * macros' behavior. Reset it to the normal setting.
345 */
346 set_fs(USER_DS);
347
348 /*
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700349 * Clear the direction flag as per the ABI for function entry.
350 */
351 regs->flags &= ~X86_EFLAGS_DF;
352
353 /*
354 * Clear TF when entering the signal handler, but
355 * notify any tracer that was single-stepping it.
356 * The tracer may want to single-step inside the
357 * handler too.
358 */
359 regs->flags &= ~X86_EFLAGS_TF;
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 spin_lock_irq(&current->sighand->siglock);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300362 sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
Steven Rostedt69be8f12005-08-29 11:44:09 -0400363 if (!(ka->sa.sa_flags & SA_NODEFER))
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300364 sigaddset(&current->blocked, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 recalc_sigpending();
366 spin_unlock_irq(&current->sighand->siglock);
Roland McGrath36a03302008-03-14 17:46:38 -0700367
368 tracehook_signal_handler(sig, info, ka, regs,
369 test_thread_flag(TIF_SINGLESTEP));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Roland McGrath0928d6e2005-06-23 00:08:37 -0700371
372 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700375#define NR_restart_syscall \
376 test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
378 * Note that 'init' is a special process: it doesn't get signals it doesn't
379 * want to handle. Thus you cannot kill init even with a SIGKILL even by
380 * mistake.
381 */
Andi Kleen1d001df2006-09-26 10:52:26 +0200382static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 struct k_sigaction ka;
385 siginfo_t info;
386 int signr;
Andi Kleen1d001df2006-09-26 10:52:26 +0200387 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 /*
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800390 * We want the common case to go fast, which is why we may in certain
391 * cases get here from kernel mode. Just return without doing anything
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * if so.
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800393 * X86_32: vm86 regs switched out by assembly code before reaching
394 * here, so testing against kernel CS suffices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700396 if (!user_mode(regs))
Andi Kleen1d001df2006-09-26 10:52:26 +0200397 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700399 if (current_thread_info()->status & TS_RESTORE_SIGMASK)
Andi Kleen1d001df2006-09-26 10:52:26 +0200400 oldset = &current->saved_sigmask;
401 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 oldset = &current->blocked;
403
404 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
405 if (signr > 0) {
Simon Arlott676b1852007-10-20 01:25:36 +0200406 /* Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 * signal to user space. The processor register will
408 * have been cleared if the watchpoint triggered
409 * inside the kernel.
410 */
411 if (current->thread.debugreg7)
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700412 set_debugreg(current->thread.debugreg7, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /* Whee! Actually deliver the signal. */
Andi Kleen1d001df2006-09-26 10:52:26 +0200415 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700416 /*
417 * A signal was successfully delivered; the saved
Andi Kleen1d001df2006-09-26 10:52:26 +0200418 * sigmask will have been stored in the signal frame,
419 * and will be restored by sigreturn, so we can simply
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700420 * clear the TS_RESTORE_SIGMASK flag.
421 */
422 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200423 }
424 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /* Did we come from a system call? */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700428 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* Restart the system call - no handlers present */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700430 switch (syscall_get_error(current, regs)) {
Andi Kleen1d001df2006-09-26 10:52:26 +0200431 case -ERESTARTNOHAND:
432 case -ERESTARTSYS:
433 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100434 regs->ax = regs->orig_ax;
435 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200436 break;
437 case -ERESTART_RESTARTBLOCK:
Hiroshi Shimamoto8fcd8e22008-09-05 16:27:39 -0700438 regs->ax = NR_restart_syscall;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100439 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442 }
Andi Kleen1d001df2006-09-26 10:52:26 +0200443
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800444 /*
445 * If there's no signal to deliver, we just put the saved sigmask
446 * back.
447 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700448 if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
449 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200450 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800454void do_notify_resume(struct pt_regs *regs, void *unused,
455 __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Tim Hockine02e68d2007-07-21 17:10:36 +0200457#ifdef CONFIG_X86_MCE
458 /* notify userspace of pending MCEs */
459 if (thread_info_flags & _TIF_MCE_NOTIFY)
460 mce_notify_user();
461#endif /* CONFIG_X86_MCE */
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700464 if (thread_info_flags & _TIF_SIGPENDING)
Andi Kleen1d001df2006-09-26 10:52:26 +0200465 do_signal(regs);
Roland McGrath59e52132008-04-19 19:10:57 -0700466
467 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
468 clear_thread_flag(TIF_NOTIFY_RESUME);
469 tracehook_notify_resume(regs);
470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300474{
475 struct task_struct *me = current;
Andi Kleen03252912008-01-30 13:33:18 +0100476 if (show_unhandled_signals && printk_ratelimit()) {
477 printk("%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300478 me->comm, me->pid, where, frame, regs->ip,
479 regs->sp, regs->orig_ax);
Andi Kleen03252912008-01-30 13:33:18 +0100480 print_vma_addr(" in ", regs->ip);
481 printk("\n");
482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300484 force_sig(SIGSEGV, me);
485}