blob: 694aa888bb1993d7d7a38f8fe09b15a607867c7c [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/*
56 * Signal frame handlers.
57 */
58
59static inline int save_i387(struct _fpstate __user *buf)
60{
61 struct task_struct *tsk = current;
62 int err = 0;
63
64 BUILD_BUG_ON(sizeof(struct user_i387_struct) !=
65 sizeof(tsk->thread.xstate->fxsave));
66
67 if ((unsigned long)buf % 16)
68 printk("save_i387: bad fpstate %p\n", buf);
69
70 if (!used_math())
71 return 0;
72 clear_used_math(); /* trigger finit */
73 if (task_thread_info(tsk)->status & TS_USEDFPU) {
74 err = save_i387_checking((struct i387_fxsave_struct __user *)
75 buf);
76 if (err)
77 return err;
78 task_thread_info(tsk)->status &= ~TS_USEDFPU;
79 stts();
80 } else {
81 if (__copy_to_user(buf, &tsk->thread.xstate->fxsave,
82 sizeof(struct i387_fxsave_struct)))
83 return -1;
84 }
85 return 1;
86}
87
88/*
89 * This restores directly out of user space. Exceptions are handled.
90 */
91static inline int restore_i387(struct _fpstate __user *buf)
92{
93 struct task_struct *tsk = current;
94 int err;
95
96 if (!used_math()) {
97 err = init_fpu(tsk);
98 if (err)
99 return err;
100 }
101
102 if (!(task_thread_info(current)->status & TS_USEDFPU)) {
103 clts();
104 task_thread_info(current)->status |= TS_USEDFPU;
105 }
Suresh Siddha6ffac1e2008-07-24 18:07:56 -0700106 err = restore_fpu_checking((__force struct i387_fxsave_struct *)buf);
107 if (unlikely(err)) {
108 /*
109 * Encountered an error while doing the restore from the
110 * user buffer, clear the fpu state.
111 */
112 clear_fpu(tsk);
113 clear_used_math();
114 }
115 return err;
Linus Torvaldsb30f3ae2008-07-24 15:43:44 -0700116}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/*
119 * Do a signal return; undo the signal stack.
120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static int
Harvey Harrison866bc132008-02-08 12:10:02 -0800122restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
123 unsigned long *pax)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 unsigned int err = 0;
126
127 /* Always make any pending restarted system calls return -EINTR */
128 current_thread_info()->restart_block.fn = do_no_restart_syscall;
129
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300130#define COPY(x) (err |= __get_user(regs->x, &sc->x))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
H. Peter Anvin742fa542008-01-30 13:30:56 +0100132 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
133 COPY(dx); COPY(cx); COPY(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 COPY(r8);
135 COPY(r9);
136 COPY(r10);
137 COPY(r11);
138 COPY(r12);
139 COPY(r13);
140 COPY(r14);
141 COPY(r15);
142
Bryan Forde4e5d322005-11-05 17:25:54 +0100143 /* Kernel saves and restores only the CS segment register on signals,
144 * which is the bare minimum needed to allow mixed 32/64-bit code.
145 * App's signal handler can save/restore other segments if needed. */
146 {
147 unsigned cs;
148 err |= __get_user(cs, &sc->cs);
149 regs->cs = cs | 3; /* Force into user mode */
150 }
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 {
153 unsigned int tmpflags;
H. Peter Anvin742fa542008-01-30 13:30:56 +0100154 err |= __get_user(tmpflags, &sc->flags);
Harvey Harrison1a176802008-02-08 12:09:59 -0800155 regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100156 regs->orig_ax = -1; /* disable syscall checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158
159 {
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300160 struct _fpstate __user *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 err |= __get_user(buf, &sc->fpstate);
162
163 if (buf) {
164 if (!access_ok(VERIFY_READ, buf, sizeof(*buf)))
165 goto badframe;
166 err |= restore_i387(buf);
167 } else {
168 struct task_struct *me = current;
169 if (used_math()) {
170 clear_fpu(me);
171 clear_used_math();
172 }
173 }
174 }
175
Harvey Harrison866bc132008-02-08 12:10:02 -0800176 err |= __get_user(*pax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return err;
178
179badframe:
180 return 1;
181}
182
183asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
184{
185 struct rt_sigframe __user *frame;
186 sigset_t set;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100187 unsigned long ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Harvey Harrison2d19c452008-02-08 12:10:00 -0800189 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
190 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 goto badframe;
Harvey Harrison2d19c452008-02-08 12:10:00 -0800192 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 goto badframe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 sigdelsetmask(&set, ~_BLOCKABLE);
196 spin_lock_irq(&current->sighand->siglock);
197 current->blocked = set;
198 recalc_sigpending();
199 spin_unlock_irq(&current->sighand->siglock);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300200
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100201 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 goto badframe;
203
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100204 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 goto badframe;
206
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100207 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209badframe:
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300210 signal_fault(regs, frame, "sigreturn");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return 0;
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214/*
215 * Set up a signal frame.
216 */
217
218static inline int
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300219setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
220 unsigned long mask, struct task_struct *me)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Bryan Forde4e5d322005-11-05 17:25:54 +0100224 err |= __put_user(regs->cs, &sc->cs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 err |= __put_user(0, &sc->gs);
226 err |= __put_user(0, &sc->fs);
227
H. Peter Anvin742fa542008-01-30 13:30:56 +0100228 err |= __put_user(regs->di, &sc->di);
229 err |= __put_user(regs->si, &sc->si);
230 err |= __put_user(regs->bp, &sc->bp);
231 err |= __put_user(regs->sp, &sc->sp);
232 err |= __put_user(regs->bx, &sc->bx);
233 err |= __put_user(regs->dx, &sc->dx);
234 err |= __put_user(regs->cx, &sc->cx);
235 err |= __put_user(regs->ax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 err |= __put_user(regs->r8, &sc->r8);
237 err |= __put_user(regs->r9, &sc->r9);
238 err |= __put_user(regs->r10, &sc->r10);
239 err |= __put_user(regs->r11, &sc->r11);
240 err |= __put_user(regs->r12, &sc->r12);
241 err |= __put_user(regs->r13, &sc->r13);
242 err |= __put_user(regs->r14, &sc->r14);
243 err |= __put_user(regs->r15, &sc->r15);
244 err |= __put_user(me->thread.trap_no, &sc->trapno);
245 err |= __put_user(me->thread.error_code, &sc->err);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100246 err |= __put_user(regs->ip, &sc->ip);
247 err |= __put_user(regs->flags, &sc->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 err |= __put_user(mask, &sc->oldmask);
249 err |= __put_user(me->thread.cr2, &sc->cr2);
250
251 return err;
252}
253
254/*
255 * Determine which stack to use..
256 */
257
258static void __user *
259get_stack(struct k_sigaction *ka, struct pt_regs *regs, unsigned long size)
260{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100261 unsigned long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* Default to using normal stack - redzone*/
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100264 sp = regs->sp - 128;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /* This is the X/Open sanctioned signal stack switching. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (ka->sa.sa_flags & SA_ONSTACK) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100268 if (sas_ss_flags(sp) == 0)
269 sp = current->sas_ss_sp + current->sas_ss_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100272 return (void __user *)round_down(sp - size, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Roland McGrath0928d6e2005-06-23 00:08:37 -0700275static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300276 sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 struct rt_sigframe __user *frame;
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300279 struct _fpstate __user *fp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 int err = 0;
281 struct task_struct *me = current;
282
283 if (used_math()) {
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300284 fp = get_stack(ka, regs, sizeof(struct _fpstate));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 frame = (void __user *)round_down(
286 (unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;
287
288 if (!access_ok(VERIFY_WRITE, fp, sizeof(struct _fpstate)))
289 goto give_sigsegv;
290
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300291 if (save_i387(fp) < 0)
292 err |= -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 } else
294 frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;
295
296 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
297 goto give_sigsegv;
298
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300299 if (ka->sa.sa_flags & SA_SIGINFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 err |= copy_siginfo_to_user(&frame->info, info);
301 if (err)
302 goto give_sigsegv;
303 }
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* Create the ucontext. */
306 err |= __put_user(0, &frame->uc.uc_flags);
307 err |= __put_user(0, &frame->uc.uc_link);
308 err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100309 err |= __put_user(sas_ss_flags(regs->sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 &frame->uc.uc_stack.ss_flags);
311 err |= __put_user(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
312 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0], me);
313 err |= __put_user(fp, &frame->uc.uc_mcontext.fpstate);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300314 if (sizeof(*set) == 16) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300316 __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 } else
318 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
319
320 /* Set up to return from userspace. If provided, use a stub
321 already in userspace. */
322 /* x86-64 should always use SA_RESTORER. */
323 if (ka->sa.sa_flags & SA_RESTORER) {
324 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
325 } else {
326 /* could use a vstub here */
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300327 goto give_sigsegv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329
330 if (err)
331 goto give_sigsegv;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* Set up registers for signal handler */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100334 regs->di = sig;
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300335 /* In case the signal handler was declared without prototypes */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100336 regs->ax = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /* This also works for non SA_SIGINFO handlers because they expect the
339 next argument after the signal number on the stack. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100340 regs->si = (unsigned long)&frame->info;
341 regs->dx = (unsigned long)&frame->uc;
342 regs->ip = (unsigned long) ka->sa.sa_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100344 regs->sp = (unsigned long)frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Bryan Forde4e5d322005-11-05 17:25:54 +0100346 /* Set up the CS register to run signal handlers in 64-bit mode,
347 even if the handler happens to be interrupting 32-bit code. */
348 regs->cs = __USER_CS;
349
Andi Kleen1d001df2006-09-26 10:52:26 +0200350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352give_sigsegv:
353 force_sigsegv(sig, current);
Andi Kleen1d001df2006-09-26 10:52:26 +0200354 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357/*
358 * OK, we're invoking a handler
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Roland McGrath0928d6e2005-06-23 00:08:37 -0700361static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800363 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Roland McGrath0928d6e2005-06-23 00:08:37 -0700365 int ret;
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /* Are we from a system call? */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700368 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /* If so, check system call restarting.. */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700370 switch (syscall_get_error(current, regs)) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800371 case -ERESTART_RESTARTBLOCK:
372 case -ERESTARTNOHAND:
373 regs->ax = -EINTR;
374 break;
375
376 case -ERESTARTSYS:
377 if (!(ka->sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100378 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800380 }
381 /* fallthrough */
382 case -ERESTARTNOINTR:
383 regs->ax = regs->orig_ax;
384 regs->ip -= 2;
385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 }
388
Andi Kleend61915d2005-04-16 15:25:00 -0700389 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100390 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
391 * flag so that register information in the sigcontext is correct.
Andi Kleend61915d2005-04-16 15:25:00 -0700392 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100393 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100394 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100395 regs->flags &= ~X86_EFLAGS_TF;
Andi Kleend61915d2005-04-16 15:25:00 -0700396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397#ifdef CONFIG_IA32_EMULATION
398 if (test_thread_flag(TIF_IA32)) {
399 if (ka->sa.sa_flags & SA_SIGINFO)
Roland McGrath0928d6e2005-06-23 00:08:37 -0700400 ret = ia32_setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 else
Roland McGrath0928d6e2005-06-23 00:08:37 -0700402 ret = ia32_setup_frame(sig, ka, oldset, regs);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300403 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#endif
Roland McGrath0928d6e2005-06-23 00:08:37 -0700405 ret = setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Andi Kleen1d001df2006-09-26 10:52:26 +0200407 if (ret == 0) {
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700408 /*
Roland McGrath55928e32008-04-19 14:27:56 -0700409 * This has nothing to do with segment registers,
410 * despite the name. This magic affects uaccess.h
411 * macros' behavior. Reset it to the normal setting.
412 */
413 set_fs(USER_DS);
414
415 /*
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700416 * Clear the direction flag as per the ABI for function entry.
417 */
418 regs->flags &= ~X86_EFLAGS_DF;
419
420 /*
421 * Clear TF when entering the signal handler, but
422 * notify any tracer that was single-stepping it.
423 * The tracer may want to single-step inside the
424 * handler too.
425 */
426 regs->flags &= ~X86_EFLAGS_TF;
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 spin_lock_irq(&current->sighand->siglock);
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300429 sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
Steven Rostedt69be8f12005-08-29 11:44:09 -0400430 if (!(ka->sa.sa_flags & SA_NODEFER))
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300431 sigaddset(&current->blocked, sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 recalc_sigpending();
433 spin_unlock_irq(&current->sighand->siglock);
Roland McGrath36a03302008-03-14 17:46:38 -0700434
435 tracehook_signal_handler(sig, info, ka, regs,
436 test_thread_flag(TIF_SINGLESTEP));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Roland McGrath0928d6e2005-06-23 00:08:37 -0700438
439 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442/*
443 * Note that 'init' is a special process: it doesn't get signals it doesn't
444 * want to handle. Thus you cannot kill init even with a SIGKILL even by
445 * mistake.
446 */
Andi Kleen1d001df2006-09-26 10:52:26 +0200447static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct k_sigaction ka;
450 siginfo_t info;
451 int signr;
Andi Kleen1d001df2006-09-26 10:52:26 +0200452 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 /*
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800455 * We want the common case to go fast, which is why we may in certain
456 * cases get here from kernel mode. Just return without doing anything
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * if so.
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800458 * X86_32: vm86 regs switched out by assembly code before reaching
459 * here, so testing against kernel CS suffices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 */
Vincent Hanquez76381fe2005-06-23 00:08:46 -0700461 if (!user_mode(regs))
Andi Kleen1d001df2006-09-26 10:52:26 +0200462 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700464 if (current_thread_info()->status & TS_RESTORE_SIGMASK)
Andi Kleen1d001df2006-09-26 10:52:26 +0200465 oldset = &current->saved_sigmask;
466 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 oldset = &current->blocked;
468
469 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
470 if (signr > 0) {
Simon Arlott676b1852007-10-20 01:25:36 +0200471 /* Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * signal to user space. The processor register will
473 * have been cleared if the watchpoint triggered
474 * inside the kernel.
475 */
476 if (current->thread.debugreg7)
Vincent Hanqueze9129e52005-06-23 00:08:46 -0700477 set_debugreg(current->thread.debugreg7, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 /* Whee! Actually deliver the signal. */
Andi Kleen1d001df2006-09-26 10:52:26 +0200480 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700481 /*
482 * A signal was successfully delivered; the saved
Andi Kleen1d001df2006-09-26 10:52:26 +0200483 * sigmask will have been stored in the signal frame,
484 * and will be restored by sigreturn, so we can simply
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700485 * clear the TS_RESTORE_SIGMASK flag.
486 */
487 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200488 }
489 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /* Did we come from a system call? */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700493 if (syscall_get_nr(current, regs) >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* Restart the system call - no handlers present */
Roland McGrath4dfcbb92008-04-19 15:37:09 -0700495 switch (syscall_get_error(current, regs)) {
Andi Kleen1d001df2006-09-26 10:52:26 +0200496 case -ERESTARTNOHAND:
497 case -ERESTARTSYS:
498 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100499 regs->ax = regs->orig_ax;
500 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200501 break;
502 case -ERESTART_RESTARTBLOCK:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100503 regs->ax = test_thread_flag(TIF_IA32) ?
Andi Kleen607a1682005-05-20 14:27:58 -0700504 __NR_ia32_restart_syscall :
505 __NR_restart_syscall;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100506 regs->ip -= 2;
Andi Kleen1d001df2006-09-26 10:52:26 +0200507 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 }
Andi Kleen1d001df2006-09-26 10:52:26 +0200510
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800511 /*
512 * If there's no signal to deliver, we just put the saved sigmask
513 * back.
514 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700515 if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
516 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
Andi Kleen1d001df2006-09-26 10:52:26 +0200517 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519}
520
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800521void do_notify_resume(struct pt_regs *regs, void *unused,
522 __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Tim Hockine02e68d2007-07-21 17:10:36 +0200524#ifdef CONFIG_X86_MCE
525 /* notify userspace of pending MCEs */
526 if (thread_info_flags & _TIF_MCE_NOTIFY)
527 mce_notify_user();
528#endif /* CONFIG_X86_MCE */
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700531 if (thread_info_flags & _TIF_SIGPENDING)
Andi Kleen1d001df2006-09-26 10:52:26 +0200532 do_signal(regs);
Roland McGrath59e52132008-04-19 19:10:57 -0700533
534 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
535 clear_thread_flag(TIF_NOTIFY_RESUME);
536 tracehook_notify_resume(regs);
537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300541{
542 struct task_struct *me = current;
Andi Kleen03252912008-01-30 13:33:18 +0100543 if (show_unhandled_signals && printk_ratelimit()) {
544 printk("%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300545 me->comm, me->pid, where, frame, regs->ip,
546 regs->sp, regs->orig_ax);
Andi Kleen03252912008-01-30 13:33:18 +0100547 print_vma_addr(" in ", regs->ip);
548 printk("\n");
549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Gustavo F. Padovancaa007d2008-07-29 02:48:54 -0300551 force_sig(SIGSEGV, me);
552}