2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
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
10 #include <linux/sched.h>
12 #include <linux/smp.h>
13 #include <linux/kernel.h>
14 #include <linux/signal.h>
15 #include <linux/errno.h>
16 #include <linux/wait.h>
17 #include <linux/ptrace.h>
18 #include <linux/unistd.h>
19 #include <linux/stddef.h>
20 #include <linux/personality.h>
21 #include <linux/compiler.h>
22 #include <asm/processor.h>
23 #include <asm/ucontext.h>
24 #include <asm/uaccess.h>
26 #include <asm/proto.h>
27 #include <asm/ia32_unistd.h>
29 #include <asm/syscalls.h>
32 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
34 #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 | \
40 # define FIX_EFLAGS (__FIX_EFLAGS | X86_EFLAGS_RF)
42 # define FIX_EFLAGS __FIX_EFLAGS
45 int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
46 sigset_t *set, struct pt_regs * regs);
47 int ia32_setup_frame(int sig, struct k_sigaction *ka,
48 sigset_t *set, struct pt_regs * regs);
51 sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
54 return do_sigaltstack(uss, uoss, regs->sp);
58 * Do a signal return; undo the signal stack.
61 restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
66 /* Always make any pending restarted system calls return -EINTR */
67 current_thread_info()->restart_block.fn = do_no_restart_syscall;
69 #define COPY(x) err |= __get_user(regs->x, &sc->x)
71 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
72 COPY(dx); COPY(cx); COPY(ip);
82 /* Kernel saves and restores only the CS segment register on signals,
83 * which is the bare minimum needed to allow mixed 32/64-bit code.
84 * App's signal handler can save/restore other segments if needed. */
87 err |= __get_user(cs, &sc->cs);
88 regs->cs = cs | 3; /* Force into user mode */
92 unsigned int tmpflags;
93 err |= __get_user(tmpflags, &sc->flags);
94 regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
95 regs->orig_ax = -1; /* disable syscall checks */
99 struct _fpstate __user * buf;
100 err |= __get_user(buf, &sc->fpstate);
101 err |= restore_i387_xstate(buf);
104 err |= __get_user(*pax, &sc->ax);
108 asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
110 struct rt_sigframe __user *frame;
114 frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
115 if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
117 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
120 sigdelsetmask(&set, ~_BLOCKABLE);
121 spin_lock_irq(¤t->sighand->siglock);
122 current->blocked = set;
124 spin_unlock_irq(¤t->sighand->siglock);
126 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
129 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
135 signal_fault(regs,frame,"sigreturn");
140 * Set up a signal frame.
144 setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs, unsigned long mask, struct task_struct *me)
148 err |= __put_user(regs->cs, &sc->cs);
149 err |= __put_user(0, &sc->gs);
150 err |= __put_user(0, &sc->fs);
152 err |= __put_user(regs->di, &sc->di);
153 err |= __put_user(regs->si, &sc->si);
154 err |= __put_user(regs->bp, &sc->bp);
155 err |= __put_user(regs->sp, &sc->sp);
156 err |= __put_user(regs->bx, &sc->bx);
157 err |= __put_user(regs->dx, &sc->dx);
158 err |= __put_user(regs->cx, &sc->cx);
159 err |= __put_user(regs->ax, &sc->ax);
160 err |= __put_user(regs->r8, &sc->r8);
161 err |= __put_user(regs->r9, &sc->r9);
162 err |= __put_user(regs->r10, &sc->r10);
163 err |= __put_user(regs->r11, &sc->r11);
164 err |= __put_user(regs->r12, &sc->r12);
165 err |= __put_user(regs->r13, &sc->r13);
166 err |= __put_user(regs->r14, &sc->r14);
167 err |= __put_user(regs->r15, &sc->r15);
168 err |= __put_user(me->thread.trap_no, &sc->trapno);
169 err |= __put_user(me->thread.error_code, &sc->err);
170 err |= __put_user(regs->ip, &sc->ip);
171 err |= __put_user(regs->flags, &sc->flags);
172 err |= __put_user(mask, &sc->oldmask);
173 err |= __put_user(me->thread.cr2, &sc->cr2);
179 * Determine which stack to use..
183 get_stack(struct k_sigaction *ka, struct pt_regs *regs, unsigned long size)
187 /* Default to using normal stack - redzone*/
190 /* This is the X/Open sanctioned signal stack switching. */
191 if (ka->sa.sa_flags & SA_ONSTACK) {
192 if (sas_ss_flags(sp) == 0)
193 sp = current->sas_ss_sp + current->sas_ss_size;
196 return (void __user *)round_down(sp - size, 64);
199 static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
200 sigset_t *set, struct pt_regs * regs)
202 struct rt_sigframe __user *frame;
203 void __user *fp = NULL;
205 struct task_struct *me = current;
208 fp = get_stack(ka, regs, sig_xstate_size);
209 frame = (void __user *)round_down(
210 (unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;
212 if (save_i387_xstate(fp) < 0)
215 frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;
217 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
220 if (ka->sa.sa_flags & SA_SIGINFO) {
221 err |= copy_siginfo_to_user(&frame->info, info);
226 /* Create the ucontext. */
228 err |= __put_user(UC_FP_XSTATE, &frame->uc.uc_flags);
230 err |= __put_user(0, &frame->uc.uc_flags);
231 err |= __put_user(0, &frame->uc.uc_link);
232 err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
233 err |= __put_user(sas_ss_flags(regs->sp),
234 &frame->uc.uc_stack.ss_flags);
235 err |= __put_user(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
236 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0], me);
237 err |= __put_user(fp, &frame->uc.uc_mcontext.fpstate);
238 if (sizeof(*set) == 16) {
239 __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
240 __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
242 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
244 /* Set up to return from userspace. If provided, use a stub
245 already in userspace. */
246 /* x86-64 should always use SA_RESTORER. */
247 if (ka->sa.sa_flags & SA_RESTORER) {
248 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
250 /* could use a vstub here */
257 /* Set up registers for signal handler */
259 /* In case the signal handler was declared without prototypes */
262 /* This also works for non SA_SIGINFO handlers because they expect the
263 next argument after the signal number on the stack. */
264 regs->si = (unsigned long)&frame->info;
265 regs->dx = (unsigned long)&frame->uc;
266 regs->ip = (unsigned long) ka->sa.sa_handler;
268 regs->sp = (unsigned long)frame;
270 /* Set up the CS register to run signal handlers in 64-bit mode,
271 even if the handler happens to be interrupting 32-bit code. */
272 regs->cs = __USER_CS;
277 force_sigsegv(sig, current);
282 * Return -1L or the syscall number that @regs is executing.
284 static long current_syscall(struct pt_regs *regs)
287 * We always sign-extend a -1 value being set here,
288 * so this is always either -1L or a syscall number.
290 return regs->orig_ax;
294 * Return a value that is -EFOO if the system call in @regs->orig_ax
295 * returned an error. This only works for @regs from @current.
297 static long current_syscall_ret(struct pt_regs *regs)
299 #ifdef CONFIG_IA32_EMULATION
300 if (test_thread_flag(TIF_IA32))
302 * Sign-extend the value so (int)-EFOO becomes (long)-EFOO
303 * and will match correctly in comparisons.
305 return (int) regs->ax;
311 * OK, we're invoking a handler
315 handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
316 sigset_t *oldset, struct pt_regs *regs)
320 /* Are we from a system call? */
321 if (current_syscall(regs) >= 0) {
322 /* If so, check system call restarting.. */
323 switch (current_syscall_ret(regs)) {
324 case -ERESTART_RESTARTBLOCK:
325 case -ERESTARTNOHAND:
330 if (!(ka->sa.sa_flags & SA_RESTART)) {
335 case -ERESTARTNOINTR:
336 regs->ax = regs->orig_ax;
343 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
344 * flag so that register information in the sigcontext is correct.
346 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
347 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
348 regs->flags &= ~X86_EFLAGS_TF;
350 #ifdef CONFIG_IA32_EMULATION
351 if (test_thread_flag(TIF_IA32)) {
352 if (ka->sa.sa_flags & SA_SIGINFO)
353 ret = ia32_setup_rt_frame(sig, ka, info, oldset, regs);
355 ret = ia32_setup_frame(sig, ka, oldset, regs);
358 ret = setup_rt_frame(sig, ka, info, oldset, regs);
362 * This has nothing to do with segment registers,
363 * despite the name. This magic affects uaccess.h
364 * macros' behavior. Reset it to the normal setting.
369 * Clear the direction flag as per the ABI for function entry.
371 regs->flags &= ~X86_EFLAGS_DF;
374 * Clear TF when entering the signal handler, but
375 * notify any tracer that was single-stepping it.
376 * The tracer may want to single-step inside the
379 regs->flags &= ~X86_EFLAGS_TF;
380 if (test_thread_flag(TIF_SINGLESTEP))
381 ptrace_notify(SIGTRAP);
383 spin_lock_irq(¤t->sighand->siglock);
384 sigorsets(¤t->blocked,¤t->blocked,&ka->sa.sa_mask);
385 if (!(ka->sa.sa_flags & SA_NODEFER))
386 sigaddset(¤t->blocked,sig);
388 spin_unlock_irq(¤t->sighand->siglock);
395 * Note that 'init' is a special process: it doesn't get signals it doesn't
396 * want to handle. Thus you cannot kill init even with a SIGKILL even by
399 static void do_signal(struct pt_regs *regs)
401 struct k_sigaction ka;
407 * We want the common case to go fast, which is why we may in certain
408 * cases get here from kernel mode. Just return without doing anything
410 * X86_32: vm86 regs switched out by assembly code before reaching
411 * here, so testing against kernel CS suffices.
413 if (!user_mode(regs))
416 if (current_thread_info()->status & TS_RESTORE_SIGMASK)
417 oldset = ¤t->saved_sigmask;
419 oldset = ¤t->blocked;
421 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
423 /* Re-enable any watchpoints before delivering the
424 * signal to user space. The processor register will
425 * have been cleared if the watchpoint triggered
428 if (current->thread.debugreg7)
429 set_debugreg(current->thread.debugreg7, 7);
431 /* Whee! Actually deliver the signal. */
432 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
434 * A signal was successfully delivered; the saved
435 * sigmask will have been stored in the signal frame,
436 * and will be restored by sigreturn, so we can simply
437 * clear the TS_RESTORE_SIGMASK flag.
439 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
444 /* Did we come from a system call? */
445 if (current_syscall(regs) >= 0) {
446 /* Restart the system call - no handlers present */
447 switch (current_syscall_ret(regs)) {
448 case -ERESTARTNOHAND:
450 case -ERESTARTNOINTR:
451 regs->ax = regs->orig_ax;
454 case -ERESTART_RESTARTBLOCK:
455 regs->ax = test_thread_flag(TIF_IA32) ?
456 __NR_ia32_restart_syscall :
457 __NR_restart_syscall;
464 * If there's no signal to deliver, we just put the saved sigmask
467 if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
468 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
469 sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL);
473 void do_notify_resume(struct pt_regs *regs, void *unused,
474 __u32 thread_info_flags)
476 #ifdef CONFIG_X86_MCE
477 /* notify userspace of pending MCEs */
478 if (thread_info_flags & _TIF_MCE_NOTIFY)
480 #endif /* CONFIG_X86_MCE */
482 /* deal with pending signal delivery */
483 if (thread_info_flags & _TIF_SIGPENDING)
487 void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
489 struct task_struct *me = current;
490 if (show_unhandled_signals && printk_ratelimit()) {
491 printk("%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
492 me->comm,me->pid,where,frame,regs->ip,regs->sp,regs->orig_ax);
493 print_vma_addr(" in ", regs->ip);
497 force_sig(SIGSEGV, me);