blob: 690cc616ac075abe7abffa12188c4e55e18aba31 [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 {
Suresh Siddhaab513702008-07-29 10:29:22 -0700162 void __user *buf;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 err |= __get_user(buf, &sc->fpstate);
Suresh Siddhaab513702008-07-29 10:29:22 -0700165 err |= restore_i387_xstate(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
Harvey Harrison866bc132008-02-08 12:10:02 -0800168 err |= __get_user(*pax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Harvey Harrison866bc132008-02-08 12:10:02 -0800172asmlinkage unsigned long sys_sigreturn(unsigned long __unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Ingo Molnar7e907f42008-03-06 10:33:08 +0100174 struct sigframe __user *frame;
175 struct pt_regs *regs;
Harvey Harrison866bc132008-02-08 12:10:02 -0800176 unsigned long ax;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100177 sigset_t set;
178
179 regs = (struct pt_regs *) &__unused;
180 frame = (struct sigframe __user *)(regs->sp - 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
183 goto badframe;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100184 if (__get_user(set.sig[0], &frame->sc.oldmask) || (_NSIG_WORDS > 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 && __copy_from_user(&set.sig[1], &frame->extramask,
186 sizeof(frame->extramask))))
187 goto badframe;
188
189 sigdelsetmask(&set, ~_BLOCKABLE);
190 spin_lock_irq(&current->sighand->siglock);
191 current->blocked = set;
192 recalc_sigpending();
193 spin_unlock_irq(&current->sighand->siglock);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100194
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100195 if (restore_sigcontext(regs, &frame->sc, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 goto badframe;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100197 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199badframe:
Andi Kleen03252912008-01-30 13:33:18 +0100200 if (show_unhandled_signals && printk_ratelimit()) {
Hiroshi Shimamoto1181f8b2008-07-03 13:12:13 -0700201 printk("%s%s[%d] bad frame in sigreturn frame:"
Ingo Molnar97b44ae2008-03-06 10:43:17 +0100202 "%p ip:%lx sp:%lx oeax:%lx",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700203 task_pid_nr(current) > 1 ? KERN_INFO : KERN_EMERG,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100204 current->comm, task_pid_nr(current), frame, regs->ip,
205 regs->sp, regs->orig_ax);
Andi Kleen03252912008-01-30 13:33:18 +0100206 print_vma_addr(" in ", regs->ip);
Ingo Molnar97b44ae2008-03-06 10:43:17 +0100207 printk(KERN_CONT "\n");
Andi Kleen03252912008-01-30 13:33:18 +0100208 }
Masoud Asgharifard Sharbianiabd4f752007-07-22 11:12:28 +0200209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 force_sig(SIGSEGV, current);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100213}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215asmlinkage int sys_rt_sigreturn(unsigned long __unused)
216{
Harvey Harrison2d19c452008-02-08 12:10:00 -0800217 struct pt_regs *regs = (struct pt_regs *)&__unused;
218 struct rt_sigframe __user *frame;
Harvey Harrison866bc132008-02-08 12:10:02 -0800219 unsigned long ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 sigset_t set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Harvey Harrison2d19c452008-02-08 12:10:00 -0800222 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
224 goto badframe;
225 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
226 goto badframe;
227
228 sigdelsetmask(&set, ~_BLOCKABLE);
229 spin_lock_irq(&current->sighand->siglock);
230 current->blocked = set;
231 recalc_sigpending();
232 spin_unlock_irq(&current->sighand->siglock);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100233
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100234 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 goto badframe;
236
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100237 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 goto badframe;
239
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100240 return ax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242badframe:
243 force_sig(SIGSEGV, current);
244 return 0;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/*
248 * Set up a signal frame.
249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static int
Suresh Siddhaab513702008-07-29 10:29:22 -0700251setup_sigcontext(struct sigcontext __user *sc, void __user *fpstate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct pt_regs *regs, unsigned long mask)
253{
254 int tmp, err = 0;
255
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100256 err |= __put_user(regs->fs, (unsigned int __user *)&sc->fs);
Jeremy Fitzhardinge464d1a72007-02-13 13:26:20 +0100257 savesegment(gs, tmp);
258 err |= __put_user(tmp, (unsigned int __user *)&sc->gs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100260 err |= __put_user(regs->es, (unsigned int __user *)&sc->es);
261 err |= __put_user(regs->ds, (unsigned int __user *)&sc->ds);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100262 err |= __put_user(regs->di, &sc->di);
263 err |= __put_user(regs->si, &sc->si);
264 err |= __put_user(regs->bp, &sc->bp);
265 err |= __put_user(regs->sp, &sc->sp);
266 err |= __put_user(regs->bx, &sc->bx);
267 err |= __put_user(regs->dx, &sc->dx);
268 err |= __put_user(regs->cx, &sc->cx);
269 err |= __put_user(regs->ax, &sc->ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 err |= __put_user(current->thread.trap_no, &sc->trapno);
271 err |= __put_user(current->thread.error_code, &sc->err);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100272 err |= __put_user(regs->ip, &sc->ip);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100273 err |= __put_user(regs->cs, (unsigned int __user *)&sc->cs);
H. Peter Anvin742fa542008-01-30 13:30:56 +0100274 err |= __put_user(regs->flags, &sc->flags);
275 err |= __put_user(regs->sp, &sc->sp_at_signal);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100276 err |= __put_user(regs->ss, (unsigned int __user *)&sc->ss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Suresh Siddhaab513702008-07-29 10:29:22 -0700278 tmp = save_i387_xstate(fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (tmp < 0)
Ingo Molnar7e907f42008-03-06 10:33:08 +0100280 err = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 else
Ingo Molnar7e907f42008-03-06 10:33:08 +0100282 err |= __put_user(tmp ? fpstate : NULL, &sc->fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* non-iBCS2 extensions.. */
285 err |= __put_user(mask, &sc->oldmask);
286 err |= __put_user(current->thread.cr2, &sc->cr2);
287
288 return err;
289}
290
291/*
292 * Determine which stack to use..
293 */
294static inline void __user *
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700295get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size,
Suresh Siddhaab513702008-07-29 10:29:22 -0700296 void **fpstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100298 unsigned long sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /* Default to using normal stack */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100301 sp = regs->sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Roland McGrath83bd0102008-01-30 13:30:06 +0100303 /*
304 * If we are on the alternate signal stack and would overflow it, don't.
305 * Return an always-bogus address instead so we will die with SIGSEGV.
306 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100307 if (on_sig_stack(sp) && !likely(on_sig_stack(sp - frame_size)))
Roland McGrath83bd0102008-01-30 13:30:06 +0100308 return (void __user *) -1L;
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* This is the X/Open sanctioned signal stack switching. */
311 if (ka->sa.sa_flags & SA_ONSTACK) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100312 if (sas_ss_flags(sp) == 0)
313 sp = current->sas_ss_sp + current->sas_ss_size;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100314 } else {
315 /* This is the legacy signal stack switching. */
316 if ((regs->ss & 0xffff) != __USER_DS &&
317 !(ka->sa.sa_flags & SA_RESTORER) &&
318 ka->sa.sa_restorer)
319 sp = (unsigned long) ka->sa.sa_restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700322 if (used_math()) {
323 sp = sp - sig_xstate_size;
324 *fpstate = (struct _fpstate *) sp;
325 }
326
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100327 sp -= frame_size;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100328 /*
329 * Align the stack pointer according to the i386 ABI,
330 * i.e. so that on function entry ((sp + 4) & 15) == 0.
331 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100332 sp = ((sp + 4) & -16ul) - 4;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100333
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100334 return (void __user *) sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Ingo Molnar7e907f42008-03-06 10:33:08 +0100337static int
338setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
339 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 struct sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100342 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 int err = 0;
344 int usig;
Suresh Siddhaab513702008-07-29 10:29:22 -0700345 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700347 frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
350 goto give_sigsegv;
351
352 usig = current_thread_info()->exec_domain
353 && current_thread_info()->exec_domain->signal_invmap
354 && sig < 32
355 ? current_thread_info()->exec_domain->signal_invmap[sig]
356 : sig;
357
358 err = __put_user(usig, &frame->sig);
359 if (err)
360 goto give_sigsegv;
361
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700362 err = setup_sigcontext(&frame->sc, fpstate, regs, set->sig[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (err)
364 goto give_sigsegv;
365
366 if (_NSIG_WORDS > 1) {
367 err = __copy_to_user(&frame->extramask, &set->sig[1],
368 sizeof(frame->extramask));
369 if (err)
370 goto give_sigsegv;
371 }
372
Roland McGrath1a3e4ca2008-04-09 01:29:27 -0700373 if (current->mm->context.vdso)
Roland McGrath6c3652e2008-01-30 13:30:42 +0100374 restorer = VDSO32_SYMBOL(current->mm->context.vdso, sigreturn);
Andi Kleen9fbbd4d2007-02-13 13:26:26 +0100375 else
Jan Engelhardtade1af72008-01-30 13:33:23 +0100376 restorer = &frame->retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (ka->sa.sa_flags & SA_RESTORER)
378 restorer = ka->sa.sa_restorer;
379
380 /* Set up to return from userspace. */
381 err |= __put_user(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100384 * This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 *
386 * WE DO NOT USE IT ANY MORE! It's only left here for historical
387 * reasons and because gdb uses it as a signature to notice
388 * signal handler stack frames.
389 */
390 err |= __put_user(0xb858, (short __user *)(frame->retcode+0));
391 err |= __put_user(__NR_sigreturn, (int __user *)(frame->retcode+2));
392 err |= __put_user(0x80cd, (short __user *)(frame->retcode+6));
393
394 if (err)
395 goto give_sigsegv;
396
397 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100398 regs->sp = (unsigned long)frame;
399 regs->ip = (unsigned long)ka->sa.sa_handler;
400 regs->ax = (unsigned long)sig;
Harvey Harrison92bc2052008-02-08 12:09:56 -0800401 regs->dx = 0;
402 regs->cx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100404 regs->ds = __USER_DS;
405 regs->es = __USER_DS;
406 regs->ss = __USER_DS;
407 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
David Howells283828f2006-01-18 17:44:00 -0800409 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411give_sigsegv:
412 force_sigsegv(sig, current);
David Howells283828f2006-01-18 17:44:00 -0800413 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Roland McGrath7c1def12005-06-23 00:08:21 -0700416static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
Ingo Molnar7e907f42008-03-06 10:33:08 +0100417 sigset_t *set, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 struct rt_sigframe __user *frame;
Ingo Molnar7e907f42008-03-06 10:33:08 +0100420 void __user *restorer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int err = 0;
422 int usig;
Suresh Siddhaab513702008-07-29 10:29:22 -0700423 void __user *fpstate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700425 frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
428 goto give_sigsegv;
429
430 usig = current_thread_info()->exec_domain
431 && current_thread_info()->exec_domain->signal_invmap
432 && sig < 32
433 ? current_thread_info()->exec_domain->signal_invmap[sig]
434 : sig;
435
436 err |= __put_user(usig, &frame->sig);
437 err |= __put_user(&frame->info, &frame->pinfo);
438 err |= __put_user(&frame->uc, &frame->puc);
439 err |= copy_siginfo_to_user(&frame->info, info);
440 if (err)
441 goto give_sigsegv;
442
443 /* Create the ucontext. */
444 err |= __put_user(0, &frame->uc.uc_flags);
445 err |= __put_user(0, &frame->uc.uc_link);
446 err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100447 err |= __put_user(sas_ss_flags(regs->sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 &frame->uc.uc_stack.ss_flags);
449 err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
Suresh Siddha3c1c7f12008-07-29 10:29:21 -0700450 err |= setup_sigcontext(&frame->uc.uc_mcontext, fpstate,
Ingo Molnar7e907f42008-03-06 10:33:08 +0100451 regs, set->sig[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
453 if (err)
454 goto give_sigsegv;
455
456 /* Set up to return from userspace. */
Roland McGrath6c3652e2008-01-30 13:30:42 +0100457 restorer = VDSO32_SYMBOL(current->mm->context.vdso, rt_sigreturn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (ka->sa.sa_flags & SA_RESTORER)
459 restorer = ka->sa.sa_restorer;
460 err |= __put_user(restorer, &frame->pretcode);
Ingo Molnar7e907f42008-03-06 10:33:08 +0100461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100463 * This is movl $__NR_rt_sigreturn, %ax ; int $0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 *
465 * WE DO NOT USE IT ANY MORE! It's only left here for historical
466 * reasons and because gdb uses it as a signature to notice
467 * signal handler stack frames.
468 */
469 err |= __put_user(0xb8, (char __user *)(frame->retcode+0));
470 err |= __put_user(__NR_rt_sigreturn, (int __user *)(frame->retcode+1));
471 err |= __put_user(0x80cd, (short __user *)(frame->retcode+5));
472
473 if (err)
474 goto give_sigsegv;
475
476 /* Set up registers for signal handler */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100477 regs->sp = (unsigned long)frame;
478 regs->ip = (unsigned long)ka->sa.sa_handler;
479 regs->ax = (unsigned long)usig;
480 regs->dx = (unsigned long)&frame->info;
481 regs->cx = (unsigned long)&frame->uc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100483 regs->ds = __USER_DS;
484 regs->es = __USER_DS;
485 regs->ss = __USER_DS;
486 regs->cs = __USER_CS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
David Howells283828f2006-01-18 17:44:00 -0800488 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490give_sigsegv:
491 force_sigsegv(sig, current);
David Howells283828f2006-01-18 17:44:00 -0800492 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495/*
Ingo Molnar7e907f42008-03-06 10:33:08 +0100496 * OK, we're invoking a handler:
497 */
Roland McGrath7c1def12005-06-23 00:08:21 -0700498static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800500 sigset_t *oldset, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Roland McGrath7c1def12005-06-23 00:08:21 -0700502 int ret;
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /* Are we from a system call? */
Harvey Harrison9902a702008-02-08 12:09:57 -0800505 if ((long)regs->orig_ax >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* If so, check system call restarting.. */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100507 switch (regs->ax) {
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800508 case -ERESTART_RESTARTBLOCK:
509 case -ERESTARTNOHAND:
510 regs->ax = -EINTR;
511 break;
512
513 case -ERESTARTSYS:
514 if (!(ka->sa.sa_flags & SA_RESTART)) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100515 regs->ax = -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800517 }
518 /* fallthrough */
519 case -ERESTARTNOINTR:
520 regs->ax = regs->orig_ax;
521 regs->ip -= 2;
522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
524 }
525
526 /*
Roland McGrathe1f28772008-01-30 13:30:50 +0100527 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
528 * flag so that register information in the sigcontext is correct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100530 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
Roland McGrathe1f28772008-01-30 13:30:50 +0100531 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100532 regs->flags &= ~X86_EFLAGS_TF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 /* Set up the stack frame */
535 if (ka->sa.sa_flags & SA_SIGINFO)
Roland McGrath7c1def12005-06-23 00:08:21 -0700536 ret = setup_rt_frame(sig, ka, info, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 else
Roland McGrath7c1def12005-06-23 00:08:21 -0700538 ret = setup_frame(sig, ka, oldset, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Ingo Molnar7e907f42008-03-06 10:33:08 +0100540 if (ret)
541 return ret;
Roland McGrath7c1def12005-06-23 00:08:21 -0700542
Roland McGrath8b9c5ff2008-04-19 14:26:54 -0700543 /*
544 * Clear the direction flag as per the ABI for function entry.
545 */
546 regs->flags &= ~X86_EFLAGS_DF;
547
548 /*
549 * Clear TF when entering the signal handler, but
550 * notify any tracer that was single-stepping it.
551 * The tracer may want to single-step inside the
552 * handler too.
553 */
554 regs->flags &= ~X86_EFLAGS_TF;
555 if (test_thread_flag(TIF_SINGLESTEP))
556 ptrace_notify(SIGTRAP);
557
Ingo Molnar7e907f42008-03-06 10:33:08 +0100558 spin_lock_irq(&current->sighand->siglock);
559 sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
560 if (!(ka->sa.sa_flags & SA_NODEFER))
561 sigaddset(&current->blocked, sig);
562 recalc_sigpending();
563 spin_unlock_irq(&current->sighand->siglock);
564
565 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568/*
569 * Note that 'init' is a special process: it doesn't get signals it doesn't
570 * want to handle. Thus you cannot kill init even with a SIGKILL even by
571 * mistake.
572 */
Harvey Harrison75604d72008-01-30 13:31:17 +0100573static void do_signal(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800575 struct k_sigaction ka;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 siginfo_t info;
577 int signr;
David Howells283828f2006-01-18 17:44:00 -0800578 sigset_t *oldset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /*
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800581 * We want the common case to go fast, which is why we may in certain
582 * cases get here from kernel mode. Just return without doing anything
583 * if so.
584 * X86_32: vm86 regs switched out by assembly code before reaching
585 * here, so testing against kernel CS suffices.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
Vincent Hanquez717b5942005-06-23 00:08:45 -0700587 if (!user_mode(regs))
David Howells283828f2006-01-18 17:44:00 -0800588 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700590 if (current_thread_info()->status & TS_RESTORE_SIGMASK)
David Howells283828f2006-01-18 17:44:00 -0800591 oldset = &current->saved_sigmask;
592 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 oldset = &current->blocked;
594
595 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
596 if (signr > 0) {
Ingo Molnar7e907f42008-03-06 10:33:08 +0100597 /*
598 * Re-enable any watchpoints before delivering the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * signal to user space. The processor register will
600 * have been cleared if the watchpoint triggered
601 * inside the kernel.
602 */
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800603 if (current->thread.debugreg7)
Roland McGrath0f534092008-01-30 13:30:59 +0100604 set_debugreg(current->thread.debugreg7, 7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Ingo Molnar7e907f42008-03-06 10:33:08 +0100606 /* Whee! Actually deliver the signal. */
David Howells283828f2006-01-18 17:44:00 -0800607 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
Ingo Molnar7e907f42008-03-06 10:33:08 +0100608 /*
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700609 * A signal was successfully delivered; the saved
David Howells283828f2006-01-18 17:44:00 -0800610 * sigmask will have been stored in the signal frame,
611 * and will be restored by sigreturn, so we can simply
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700612 * clear the TS_RESTORE_SIGMASK flag.
Ingo Molnar7e907f42008-03-06 10:33:08 +0100613 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700614 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
David Howells283828f2006-01-18 17:44:00 -0800615 }
David Howells283828f2006-01-18 17:44:00 -0800616 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* Did we come from a system call? */
Harvey Harrison9902a702008-02-08 12:09:57 -0800620 if ((long)regs->orig_ax >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* Restart the system call - no handlers present */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100622 switch (regs->ax) {
David Howells283828f2006-01-18 17:44:00 -0800623 case -ERESTARTNOHAND:
624 case -ERESTARTSYS:
625 case -ERESTARTNOINTR:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100626 regs->ax = regs->orig_ax;
627 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800628 break;
629
630 case -ERESTART_RESTARTBLOCK:
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100631 regs->ax = __NR_restart_syscall;
632 regs->ip -= 2;
David Howells283828f2006-01-18 17:44:00 -0800633 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 }
David Howells283828f2006-01-18 17:44:00 -0800636
Harvey Harrisonac66f3f2008-02-08 12:09:58 -0800637 /*
638 * If there's no signal to deliver, we just put the saved sigmask
639 * back.
640 */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700641 if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
642 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
David Howells283828f2006-01-18 17:44:00 -0800643 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/*
648 * notification of userspace execution resumption
David Howells283828f2006-01-18 17:44:00 -0800649 * - triggered by the TIF_WORK_MASK flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 */
Ingo Molnar7e907f42008-03-06 10:33:08 +0100651void
652do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /* deal with pending signal delivery */
Roland McGrath5a8da0e2008-04-30 00:53:10 -0700655 if (thread_info_flags & _TIF_SIGPENDING)
David Howells283828f2006-01-18 17:44:00 -0800656 do_signal(regs);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 clear_thread_flag(TIF_IRET);
659}