blob: d92373630963f980fb5471a0d96d903b5d4b18bf [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 *
4 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
5 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
6 */
Ingo Molnar7e907f42008-03-06 10:33:08 +01007#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/personality.h>
Andi Kleen9fbbd4d2007-02-13 13:26:26 +010010#include <linux/binfmts.h>
Ingo Molnar7e907f42008-03-06 10:33:08 +010011#include <linux/suspend.h>
12#include <linux/kernel.h>
13#include <linux/ptrace.h>
14#include <linux/signal.h>
15#include <linux/stddef.h>
16#include <linux/unistd.h>
17#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/wait.h>
20#include <linux/elf.h>
21#include <linux/smp.h>
22#include <linux/mm.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/processor.h>
25#include <asm/ucontext.h>
26#include <asm/uaccess.h>
27#include <asm/i387.h>
Roland McGrath6c3652e2008-01-30 13:30:42 +010028#include <asm/vdso.h>
Ingo Molnar7e907f42008-03-06 10:33:08 +010029
Harvey Harrison123a6342008-02-08 12:10:00 -080030#include "sigframe.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
33
Harvey Harrison1a176802008-02-08 12:09:59 -080034#define __FIX_EFLAGS (X86_EFLAGS_AC | X86_EFLAGS_OF | \
35 X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \
36 X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \
37 X86_EFLAGS_CF)
38
39#ifdef CONFIG_X86_32
40# define FIX_EFLAGS (__FIX_EFLAGS | X86_EFLAGS_RF)
41#else
42# define FIX_EFLAGS __FIX_EFLAGS
43#endif
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
46 * Atomically swap in the new signal mask, and wait for a signal.
47 */
48asmlinkage int
49sys_sigsuspend(int history0, int history1, old_sigset_t mask)
50{
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 mask &= _BLOCKABLE;
52 spin_lock_irq(&current->sighand->siglock);
David Howells283828f2006-01-18 17:44:00 -080053 current->saved_sigmask = current->blocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 siginitset(&current->blocked, mask);
55 recalc_sigpending();
56 spin_unlock_irq(&current->sighand->siglock);
57
David Howells283828f2006-01-18 17:44:00 -080058 current->state = TASK_INTERRUPTIBLE;
59 schedule();
Roland McGrath5a8da0e2008-04-30 00:53:10 -070060 set_restore_sigmask();
Ingo Molnar7e907f42008-03-06 10:33:08 +010061
David Howells283828f2006-01-18 17:44:00 -080062 return -ERESTARTNOHAND;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Ingo Molnar7e907f42008-03-06 10:33:08 +010065asmlinkage int
Linus Torvalds1da177e2005-04-16 15:20:36 -070066sys_sigaction(int sig, const struct old_sigaction __user *act,
67 struct old_sigaction __user *oact)
68{
69 struct k_sigaction new_ka, old_ka;
70 int ret;
71
72 if (act) {
73 old_sigset_t mask;
Ingo Molnar7e907f42008-03-06 10:33:08 +010074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
76 __get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
77 __get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
78 return -EFAULT;
Ingo Molnar7e907f42008-03-06 10:33:08 +010079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 __get_user(new_ka.sa.sa_flags, &act->sa_flags);
81 __get_user(mask, &act->sa_mask);
82 siginitset(&new_ka.sa.sa_mask, mask);
83 }
84
85 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
86
87 if (!ret && oact) {
88 if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
89 __put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
90 __put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
91 return -EFAULT;
Ingo Molnar7e907f42008-03-06 10:33:08 +010092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
94 __put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
95 }
96
97 return ret;
98}
99
Ingo Molnar7e907f42008-03-06 10:33:08 +0100100asmlinkage int sys_sigaltstack(unsigned long bx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Ingo Molnar7e907f42008-03-06 10:33:08 +0100102 /*
103 * This is needed to make gcc realize it doesn't own the
104 * "struct pt_regs"
105 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100106 struct pt_regs *regs = (struct pt_regs *)&bx;
107 const stack_t __user *uss = (const stack_t __user *)bx;
108 stack_t __user *uoss = (stack_t __user *)regs->cx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100110 return do_sigaltstack(uss, uoss, regs->sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113
114/*
115 * Do a signal return; undo the signal stack.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static int
Harvey Harrison866bc132008-02-08 12:10:02 -0800118restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
119 unsigned long *pax)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 unsigned int err = 0;
122
123 /* Always make any pending restarted system calls return -EINTR */
124 current_thread_info()->restart_block.fn = do_no_restart_syscall;
125
H. Peter Anvin742fa542008-01-30 13:30:56 +0100126#define COPY(x) err |= __get_user(regs->x, &sc->x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128#define COPY_SEG(seg) \
129 { unsigned short tmp; \
130 err |= __get_user(tmp, &sc->seg); \
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100131 regs->seg = tmp; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133#define COPY_SEG_STRICT(seg) \
134 { unsigned short tmp; \
135 err |= __get_user(tmp, &sc->seg); \
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100136 regs->seg = tmp|3; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138#define GET_SEG(seg) \
139 { unsigned short tmp; \
140 err |= __get_user(tmp, &sc->seg); \
Ingo Molnar7e907f42008-03-06 10:33:08 +0100141 loadsegment(seg, tmp); }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +0100143 GET_SEG(gs);
144 COPY_SEG(fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 COPY_SEG(es);
146 COPY_SEG(ds);
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800147 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
148 COPY(dx); COPY(cx); COPY(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 COPY_SEG_STRICT(cs);
150 COPY_SEG_STRICT(ss);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 {
153 unsigned int tmpflags;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100154
H. Peter Anvin742fa542008-01-30 13:30:56 +0100155 err |= __get_user(tmpflags, &sc->flags);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100156 regs->flags = (regs->flags & ~FIX_EFLAGS) |
157 (tmpflags & FIX_EFLAGS);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100158 regs->orig_ax = -1; /* disable syscall checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
161 {
Ingo Molnar7e907f42008-03-06 10:33:08 +0100162 struct _fpstate __user *buf;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 err |= __get_user(buf, &sc->fpstate);
165 if (buf) {
166 if (!access_ok(VERIFY_READ, buf, sizeof(*buf)))
167 goto badframe;
168 err |= restore_i387(buf);
169 } else {
170 struct task_struct *me = current;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (used_math()) {
173 clear_fpu(me);
174 clear_used_math();
175 }
176 }
177 }
178
Harvey Harrison866bc132008-02-08 12:10:02 -0800179 err |= __get_user(*pax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return err;
181
182badframe:
183 return 1;
184}
185
Harvey Harrison866bc132008-02-08 12:10:02 -0800186asmlinkage unsigned long sys_sigreturn(unsigned long __unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Ingo Molnar7e907f42008-03-06 10:33:08 +0100188 struct sigframe __user *frame;
189 struct pt_regs *regs;
Harvey Harrison866bc132008-02-08 12:10:02 -0800190 unsigned long ax;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100191 sigset_t set;
192
193 regs = (struct pt_regs *) &__unused;
194 frame = (struct sigframe __user *)(regs->sp - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
197 goto badframe;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100198 if (__get_user(set.sig[0], &frame->sc.oldmask) || (_NSIG_WORDS > 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 && __copy_from_user(&set.sig[1], &frame->extramask,
200 sizeof(frame->extramask))))
201 goto badframe;
202
203 sigdelsetmask(&set, ~_BLOCKABLE);
204 spin_lock_irq(&current->sighand->siglock);
205 current->blocked = set;
206 recalc_sigpending();
207 spin_unlock_irq(&current->sighand->siglock);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100208
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100209 if (restore_sigcontext(regs, &frame->sc, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 goto badframe;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100211 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213badframe:
Andi Kleen03252912008-01-30 13:33:18 +0100214 if (show_unhandled_signals && printk_ratelimit()) {
Ingo Molnar97b44ae2008-03-06 10:43:17 +0100215 printk(KERN_INFO "%s%s[%d] bad frame in sigreturn frame:"
216 "%p ip:%lx sp:%lx oeax:%lx",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700217 task_pid_nr(current) > 1 ? KERN_INFO : KERN_EMERG,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100218 current->comm, task_pid_nr(current), frame, regs->ip,
219 regs->sp, regs->orig_ax);
Andi Kleen03252912008-01-30 13:33:18 +0100220 print_vma_addr(" in ", regs->ip);
Ingo Molnar97b44ae2008-03-06 10:43:17 +0100221 printk(KERN_CONT "\n");
Andi Kleen03252912008-01-30 13:33:18 +0100222 }
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 force_sig(SIGSEGV, current);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return 0;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100227}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229asmlinkage int sys_rt_sigreturn(unsigned long __unused)
230{
Harvey Harrison2d19c452008-02-08 12:10:00 -0800231 struct pt_regs *regs = (struct pt_regs *)&__unused;
232 struct rt_sigframe __user *frame;
Harvey Harrison866bc132008-02-08 12:10:02 -0800233 unsigned long ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 sigset_t set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Harvey Harrison2d19c452008-02-08 12:10:00 -0800236 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
238 goto badframe;
239 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
240 goto badframe;
241
242 sigdelsetmask(&set, ~_BLOCKABLE);
243 spin_lock_irq(&current->sighand->siglock);
244 current->blocked = set;
245 recalc_sigpending();
246 spin_unlock_irq(&current->sighand->siglock);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100247
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100248 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 goto badframe;
250
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100251 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 goto badframe;
253
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100254 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256badframe:
257 force_sig(SIGSEGV, current);
258 return 0;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261/*
262 * Set up a signal frame.
263 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264static int
265setup_sigcontext(struct sigcontext __user *sc, struct _fpstate __user *fpstate,
266 struct pt_regs *regs, unsigned long mask)
267{
268 int tmp, err = 0;
269
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100270 err |= __put_user(regs->fs, (unsigned int __user *)&sc->fs);
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +0100271 savesegment(gs, tmp);
272 err |= __put_user(tmp, (unsigned int __user *)&sc->gs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100274 err |= __put_user(regs->es, (unsigned int __user *)&sc->es);
275 err |= __put_user(regs->ds, (unsigned int __user *)&sc->ds);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100276 err |= __put_user(regs->di, &sc->di);
277 err |= __put_user(regs->si, &sc->si);
278 err |= __put_user(regs->bp, &sc->bp);
279 err |= __put_user(regs->sp, &sc->sp);
280 err |= __put_user(regs->bx, &sc->bx);
281 err |= __put_user(regs->dx, &sc->dx);
282 err |= __put_user(regs->cx, &sc->cx);
283 err |= __put_user(regs->ax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 err |= __put_user(current->thread.trap_no, &sc->trapno);
285 err |= __put_user(current->thread.error_code, &sc->err);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100286 err |= __put_user(regs->ip, &sc->ip);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100287 err |= __put_user(regs->cs, (unsigned int __user *)&sc->cs);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100288 err |= __put_user(regs->flags, &sc->flags);
289 err |= __put_user(regs->sp, &sc->sp_at_signal);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100290 err |= __put_user(regs->ss, (unsigned int __user *)&sc->ss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 tmp = save_i387(fpstate);
293 if (tmp < 0)
Ingo Molnar7e907f42008-03-06 10:33:08 +0100294 err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 else
Ingo Molnar7e907f42008-03-06 10:33:08 +0100296 err |= __put_user(tmp ? fpstate : NULL, &sc->fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* non-iBCS2 extensions.. */
299 err |= __put_user(mask, &sc->oldmask);
300 err |= __put_user(current->thread.cr2, &sc->cr2);
301
302 return err;
303}
304
305/*
306 * Determine which stack to use..
307 */
308static inline void __user *
Ingo Molnar7e907f42008-03-06 10:33:08 +0100309get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100311 unsigned long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /* Default to using normal stack */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100314 sp = regs->sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Roland McGrath83bd0102008-01-30 13:30:06 +0100316 /*
317 * If we are on the alternate signal stack and would overflow it, don't.
318 * Return an always-bogus address instead so we will die with SIGSEGV.
319 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100320 if (on_sig_stack(sp) && !likely(on_sig_stack(sp - frame_size)))
Roland McGrath83bd0102008-01-30 13:30:06 +0100321 return (void __user *) -1L;
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* This is the X/Open sanctioned signal stack switching. */
324 if (ka->sa.sa_flags & SA_ONSTACK) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100325 if (sas_ss_flags(sp) == 0)
326 sp = current->sas_ss_sp + current->sas_ss_size;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100327 } else {
328 /* This is the legacy signal stack switching. */
329 if ((regs->ss & 0xffff) != __USER_DS &&
330 !(ka->sa.sa_flags & SA_RESTORER) &&
331 ka->sa.sa_restorer)
332 sp = (unsigned long) ka->sa.sa_restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100335 sp -= frame_size;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100336 /*
337 * Align the stack pointer according to the i386 ABI,
338 * i.e. so that on function entry ((sp + 4) & 15) == 0.
339 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100340 sp = ((sp + 4) & -16ul) - 4;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100341
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100342 return (void __user *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Ingo Molnar7e907f42008-03-06 10:33:08 +0100345static int
346setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
347 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100350 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 int err = 0;
352 int usig;
353
354 frame = get_sigframe(ka, regs, sizeof(*frame));
355
356 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
357 goto give_sigsegv;
358
359 usig = current_thread_info()->exec_domain
360 && current_thread_info()->exec_domain->signal_invmap
361 && sig < 32
362 ? current_thread_info()->exec_domain->signal_invmap[sig]
363 : sig;
364
365 err = __put_user(usig, &frame->sig);
366 if (err)
367 goto give_sigsegv;
368
369 err = setup_sigcontext(&frame->sc, &frame->fpstate, regs, set->sig[0]);
370 if (err)
371 goto give_sigsegv;
372
373 if (_NSIG_WORDS > 1) {
374 err = __copy_to_user(&frame->extramask, &set->sig[1],
375 sizeof(frame->extramask));
376 if (err)
377 goto give_sigsegv;
378 }
379
Roland McGrath1a3e4ca2008-04-09 01:29:27 -0700380 if (current->mm->context.vdso)
Roland McGrath6c3652e2008-01-30 13:30:42 +0100381 restorer = VDSO32_SYMBOL(current->mm->context.vdso, sigreturn);
Andi Kleen9fbbd4d2007-02-13 13:26:26 +0100382 else
Jan Engelhardtade1af72008-01-30 13:33:23 +0100383 restorer = &frame->retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (ka->sa.sa_flags & SA_RESTORER)
385 restorer = ka->sa.sa_restorer;
386
387 /* Set up to return from userspace. */
388 err |= __put_user(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100391 * This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 *
393 * WE DO NOT USE IT ANY MORE! It's only left here for historical
394 * reasons and because gdb uses it as a signature to notice
395 * signal handler stack frames.
396 */
397 err |= __put_user(0xb858, (short __user *)(frame->retcode+0));
398 err |= __put_user(__NR_sigreturn, (int __user *)(frame->retcode+2));
399 err |= __put_user(0x80cd, (short __user *)(frame->retcode+6));
400
401 if (err)
402 goto give_sigsegv;
403
404 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100405 regs->sp = (unsigned long)frame;
406 regs->ip = (unsigned long)ka->sa.sa_handler;
407 regs->ax = (unsigned long)sig;
Harvey Harrison92bc2052008-02-08 12:09:56 -0800408 regs->dx = 0;
409 regs->cx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100411 regs->ds = __USER_DS;
412 regs->es = __USER_DS;
413 regs->ss = __USER_DS;
414 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
David Howells283828f2006-01-18 17:44:00 -0800416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418give_sigsegv:
419 force_sigsegv(sig, current);
David Howells283828f2006-01-18 17:44:00 -0800420 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
Roland McGrath7c1def12005-06-23 00:08:21 -0700423static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
Ingo Molnar7e907f42008-03-06 10:33:08 +0100424 sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct rt_sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100427 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int err = 0;
429 int usig;
430
431 frame = get_sigframe(ka, regs, sizeof(*frame));
432
433 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
434 goto give_sigsegv;
435
436 usig = current_thread_info()->exec_domain
437 && current_thread_info()->exec_domain->signal_invmap
438 && sig < 32
439 ? current_thread_info()->exec_domain->signal_invmap[sig]
440 : sig;
441
442 err |= __put_user(usig, &frame->sig);
443 err |= __put_user(&frame->info, &frame->pinfo);
444 err |= __put_user(&frame->uc, &frame->puc);
445 err |= copy_siginfo_to_user(&frame->info, info);
446 if (err)
447 goto give_sigsegv;
448
449 /* Create the ucontext. */
450 err |= __put_user(0, &frame->uc.uc_flags);
451 err |= __put_user(0, &frame->uc.uc_link);
452 err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100453 err |= __put_user(sas_ss_flags(regs->sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 &frame->uc.uc_stack.ss_flags);
455 err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
456 err |= setup_sigcontext(&frame->uc.uc_mcontext, &frame->fpstate,
Ingo Molnar7e907f42008-03-06 10:33:08 +0100457 regs, set->sig[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
459 if (err)
460 goto give_sigsegv;
461
462 /* Set up to return from userspace. */
Roland McGrath6c3652e2008-01-30 13:30:42 +0100463 restorer = VDSO32_SYMBOL(current->mm->context.vdso, rt_sigreturn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (ka->sa.sa_flags & SA_RESTORER)
465 restorer = ka->sa.sa_restorer;
466 err |= __put_user(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100469 * This is movl $__NR_rt_sigreturn, %ax ; int $0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *
471 * WE DO NOT USE IT ANY MORE! It's only left here for historical
472 * reasons and because gdb uses it as a signature to notice
473 * signal handler stack frames.
474 */
475 err |= __put_user(0xb8, (char __user *)(frame->retcode+0));
476 err |= __put_user(__NR_rt_sigreturn, (int __user *)(frame->retcode+1));
477 err |= __put_user(0x80cd, (short __user *)(frame->retcode+5));
478
479 if (err)
480 goto give_sigsegv;
481
482 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100483 regs->sp = (unsigned long)frame;
484 regs->ip = (unsigned long)ka->sa.sa_handler;
485 regs->ax = (unsigned long)usig;
486 regs->dx = (unsigned long)&frame->info;
487 regs->cx = (unsigned long)&frame->uc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100489 regs->ds = __USER_DS;
490 regs->es = __USER_DS;
491 regs->ss = __USER_DS;
492 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
David Howells283828f2006-01-18 17:44:00 -0800494 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496give_sigsegv:
497 force_sigsegv(sig, current);
David Howells283828f2006-01-18 17:44:00 -0800498 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501/*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100502 * OK, we're invoking a handler:
503 */
Roland McGrath7c1def12005-06-23 00:08:21 -0700504static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800506 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Roland McGrath7c1def12005-06-23 00:08:21 -0700508 int ret;
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* Are we from a system call? */
Harvey Harrison9902a702008-02-08 12:09:57 -0800511 if ((long)regs->orig_ax >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* If so, check system call restarting.. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100513 switch (regs->ax) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800514 case -ERESTART_RESTARTBLOCK:
515 case -ERESTARTNOHAND:
516 regs->ax = -EINTR;
517 break;
518
519 case -ERESTARTSYS:
520 if (!(ka->sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100521 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800523 }
524 /* fallthrough */
525 case -ERESTARTNOINTR:
526 regs->ax = regs->orig_ax;
527 regs->ip -= 2;
528 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 }
531
532 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100533 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
534 * flag so that register information in the sigcontext is correct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100536 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100537 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100538 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* Set up the stack frame */
541 if (ka->sa.sa_flags & SA_SIGINFO)
Roland McGrath7c1def12005-06-23 00:08:21 -0700542 ret = setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 else
Roland McGrath7c1def12005-06-23 00:08:21 -0700544 ret = setup_frame(sig, ka, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Ingo Molnar7e907f42008-03-06 10:33:08 +0100546 if (ret)
547 return ret;
Roland McGrath7c1def12005-06-23 00:08:21 -0700548
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700549 /*
550 * Clear the direction flag as per the ABI for function entry.
551 */
552 regs->flags &= ~X86_EFLAGS_DF;
553
554 /*
555 * Clear TF when entering the signal handler, but
556 * notify any tracer that was single-stepping it.
557 * The tracer may want to single-step inside the
558 * handler too.
559 */
560 regs->flags &= ~X86_EFLAGS_TF;
561 if (test_thread_flag(TIF_SINGLESTEP))
562 ptrace_notify(SIGTRAP);
563
Ingo Molnar7e907f42008-03-06 10:33:08 +0100564 spin_lock_irq(&current->sighand->siglock);
565 sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
566 if (!(ka->sa.sa_flags & SA_NODEFER))
567 sigaddset(&current->blocked, sig);
568 recalc_sigpending();
569 spin_unlock_irq(&current->sighand->siglock);
570
571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
574/*
575 * Note that 'init' is a special process: it doesn't get signals it doesn't
576 * want to handle. Thus you cannot kill init even with a SIGKILL even by
577 * mistake.
578 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100579static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800581 struct k_sigaction ka;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 siginfo_t info;
583 int signr;
David Howells283828f2006-01-18 17:44:00 -0800584 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 /*
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800587 * We want the common case to go fast, which is why we may in certain
588 * cases get here from kernel mode. Just return without doing anything
589 * if so.
590 * X86_32: vm86 regs switched out by assembly code before reaching
591 * here, so testing against kernel CS suffices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
Vincent Hanquez717b5942005-06-23 00:08:45 -0700593 if (!user_mode(regs))
David Howells283828f2006-01-18 17:44:00 -0800594 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700596 if (current_thread_info()->status & TS_RESTORE_SIGMASK)
David Howells283828f2006-01-18 17:44:00 -0800597 oldset = &current->saved_sigmask;
598 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 oldset = &current->blocked;
600
601 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
602 if (signr > 0) {
Ingo Molnar7e907f42008-03-06 10:33:08 +0100603 /*
604 * Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 * signal to user space. The processor register will
606 * have been cleared if the watchpoint triggered
607 * inside the kernel.
608 */
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800609 if (current->thread.debugreg7)
Roland McGrath0f534092008-01-30 13:30:59 +0100610 set_debugreg(current->thread.debugreg7, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Ingo Molnar7e907f42008-03-06 10:33:08 +0100612 /* Whee! Actually deliver the signal. */
David Howells283828f2006-01-18 17:44:00 -0800613 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
Ingo Molnar7e907f42008-03-06 10:33:08 +0100614 /*
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700615 * A signal was successfully delivered; the saved
David Howells283828f2006-01-18 17:44:00 -0800616 * sigmask will have been stored in the signal frame,
617 * and will be restored by sigreturn, so we can simply
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700618 * clear the TS_RESTORE_SIGMASK flag.
Ingo Molnar7e907f42008-03-06 10:33:08 +0100619 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700620 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
David Howells283828f2006-01-18 17:44:00 -0800621 }
David Howells283828f2006-01-18 17:44:00 -0800622 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /* Did we come from a system call? */
Harvey Harrison9902a702008-02-08 12:09:57 -0800626 if ((long)regs->orig_ax >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Restart the system call - no handlers present */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100628 switch (regs->ax) {
David Howells283828f2006-01-18 17:44:00 -0800629 case -ERESTARTNOHAND:
630 case -ERESTARTSYS:
631 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100632 regs->ax = regs->orig_ax;
633 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800634 break;
635
636 case -ERESTART_RESTARTBLOCK:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100637 regs->ax = __NR_restart_syscall;
638 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800639 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641 }
David Howells283828f2006-01-18 17:44:00 -0800642
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800643 /*
644 * If there's no signal to deliver, we just put the saved sigmask
645 * back.
646 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700647 if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
648 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
David Howells283828f2006-01-18 17:44:00 -0800649 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/*
654 * notification of userspace execution resumption
David Howells283828f2006-01-18 17:44:00 -0800655 * - triggered by the TIF_WORK_MASK flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100657void
658do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 /* Pending single-step? */
661 if (thread_info_flags & _TIF_SINGLESTEP) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800662 regs->flags |= X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 clear_thread_flag(TIF_SINGLESTEP);
664 }
David Howells283828f2006-01-18 17:44:00 -0800665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700667 if (thread_info_flags & _TIF_SIGPENDING)
David Howells283828f2006-01-18 17:44:00 -0800668 do_signal(regs);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100669
670 if (thread_info_flags & _TIF_HRTICK_RESCHED)
671 hrtick_resched();
Ingo Molnar7e907f42008-03-06 10:33:08 +0100672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 clear_thread_flag(TIF_IRET);
674}