2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*
|
|
|
|
* 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
|
|
|
|
* 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
|
|
|
|
*/
|
2008-03-06 10:33:08 +01:00
|
|
|
#include <linux/list.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-03-06 10:33:08 +01:00
|
|
|
#include <linux/personality.h>
|
|
|
|
#include <linux/binfmts.h>
|
|
|
|
#include <linux/suspend.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/kernel.h>
|
2008-03-06 10:33:08 +01:00
|
|
|
#include <linux/ptrace.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/signal.h>
|
2008-03-06 10:33:08 +01:00
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/unistd.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/errno.h>
|
2008-03-06 10:33:08 +01:00
|
|
|
#include <linux/sched.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/wait.h>
|
|
|
|
#include <linux/elf.h>
|
2008-03-06 10:33:08 +01:00
|
|
|
#include <linux/smp.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/ucontext.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <asm/i387.h>
|
2008-01-30 13:30:42 +01:00
|
|
|
#include <asm/vdso.h>
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2008-02-08 21:10:00 +01:00
|
|
|
#include "sigframe.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
|
|
|
|
|
2008-02-08 21:09:59 +01:00
|
|
|
#define __FIX_EFLAGS (X86_EFLAGS_AC | X86_EFLAGS_OF | \
|
|
|
|
X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \
|
|
|
|
X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \
|
|
|
|
X86_EFLAGS_CF)
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
|
|
# define FIX_EFLAGS (__FIX_EFLAGS | X86_EFLAGS_RF)
|
|
|
|
#else
|
|
|
|
# define FIX_EFLAGS __FIX_EFLAGS
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Atomically swap in the new signal mask, and wait for a signal.
|
|
|
|
*/
|
|
|
|
asmlinkage int
|
|
|
|
sys_sigsuspend(int history0, int history1, old_sigset_t mask)
|
|
|
|
{
|
|
|
|
mask &= _BLOCKABLE;
|
|
|
|
spin_lock_irq(¤t->sighand->siglock);
|
2006-01-19 02:44:00 +01:00
|
|
|
current->saved_sigmask = current->blocked;
|
2005-04-17 00:20:36 +02:00
|
|
|
siginitset(¤t->blocked, mask);
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irq(¤t->sighand->siglock);
|
|
|
|
|
2006-01-19 02:44:00 +01:00
|
|
|
current->state = TASK_INTERRUPTIBLE;
|
|
|
|
schedule();
|
|
|
|
set_thread_flag(TIF_RESTORE_SIGMASK);
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2006-01-19 02:44:00 +01:00
|
|
|
return -ERESTARTNOHAND;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2008-03-06 10:33:08 +01:00
|
|
|
asmlinkage int
|
2005-04-17 00:20:36 +02:00
|
|
|
sys_sigaction(int sig, const struct old_sigaction __user *act,
|
|
|
|
struct old_sigaction __user *oact)
|
|
|
|
{
|
|
|
|
struct k_sigaction new_ka, old_ka;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
old_sigset_t mask;
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!access_ok(VERIFY_READ, act, sizeof(*act)) ||
|
|
|
|
__get_user(new_ka.sa.sa_handler, &act->sa_handler) ||
|
|
|
|
__get_user(new_ka.sa.sa_restorer, &act->sa_restorer))
|
|
|
|
return -EFAULT;
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
__get_user(new_ka.sa.sa_flags, &act->sa_flags);
|
|
|
|
__get_user(mask, &act->sa_mask);
|
|
|
|
siginitset(&new_ka.sa.sa_mask, mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
|
|
|
|
|
|
|
|
if (!ret && oact) {
|
|
|
|
if (!access_ok(VERIFY_WRITE, oact, sizeof(*oact)) ||
|
|
|
|
__put_user(old_ka.sa.sa_handler, &oact->sa_handler) ||
|
|
|
|
__put_user(old_ka.sa.sa_restorer, &oact->sa_restorer))
|
|
|
|
return -EFAULT;
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
__put_user(old_ka.sa.sa_flags, &oact->sa_flags);
|
|
|
|
__put_user(old_ka.sa.sa_mask.sig[0], &oact->sa_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-03-06 10:33:08 +01:00
|
|
|
asmlinkage int sys_sigaltstack(unsigned long bx)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-03-06 10:33:08 +01:00
|
|
|
/*
|
|
|
|
* This is needed to make gcc realize it doesn't own the
|
|
|
|
* "struct pt_regs"
|
|
|
|
*/
|
2008-01-30 13:30:56 +01:00
|
|
|
struct pt_regs *regs = (struct pt_regs *)&bx;
|
|
|
|
const stack_t __user *uss = (const stack_t __user *)bx;
|
|
|
|
stack_t __user *uoss = (stack_t __user *)regs->cx;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
return do_sigaltstack(uss, uoss, regs->sp);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do a signal return; undo the signal stack.
|
|
|
|
*/
|
|
|
|
static int
|
2008-02-08 21:10:02 +01:00
|
|
|
restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
|
|
|
|
unsigned long *pax)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
unsigned int err = 0;
|
|
|
|
|
|
|
|
/* Always make any pending restarted system calls return -EINTR */
|
|
|
|
current_thread_info()->restart_block.fn = do_no_restart_syscall;
|
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
#define COPY(x) err |= __get_user(regs->x, &sc->x)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define COPY_SEG(seg) \
|
|
|
|
{ unsigned short tmp; \
|
|
|
|
err |= __get_user(tmp, &sc->seg); \
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->seg = tmp; }
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define COPY_SEG_STRICT(seg) \
|
|
|
|
{ unsigned short tmp; \
|
|
|
|
err |= __get_user(tmp, &sc->seg); \
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->seg = tmp|3; }
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define GET_SEG(seg) \
|
|
|
|
{ unsigned short tmp; \
|
|
|
|
err |= __get_user(tmp, &sc->seg); \
|
2008-03-06 10:33:08 +01:00
|
|
|
loadsegment(seg, tmp); }
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-02-13 13:26:20 +01:00
|
|
|
GET_SEG(gs);
|
|
|
|
COPY_SEG(fs);
|
2005-04-17 00:20:36 +02:00
|
|
|
COPY_SEG(es);
|
|
|
|
COPY_SEG(ds);
|
2008-02-08 21:09:58 +01:00
|
|
|
COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
|
|
|
|
COPY(dx); COPY(cx); COPY(ip);
|
2005-04-17 00:20:36 +02:00
|
|
|
COPY_SEG_STRICT(cs);
|
|
|
|
COPY_SEG_STRICT(ss);
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
unsigned int tmpflags;
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __get_user(tmpflags, &sc->flags);
|
2008-03-06 10:33:08 +01:00
|
|
|
regs->flags = (regs->flags & ~FIX_EFLAGS) |
|
|
|
|
(tmpflags & FIX_EFLAGS);
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->orig_ax = -1; /* disable syscall checks */
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2008-03-06 10:33:08 +01:00
|
|
|
struct _fpstate __user *buf;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
err |= __get_user(buf, &sc->fpstate);
|
|
|
|
if (buf) {
|
|
|
|
if (!access_ok(VERIFY_READ, buf, sizeof(*buf)))
|
|
|
|
goto badframe;
|
|
|
|
err |= restore_i387(buf);
|
|
|
|
} else {
|
|
|
|
struct task_struct *me = current;
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
if (used_math()) {
|
|
|
|
clear_fpu(me);
|
|
|
|
clear_used_math();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-08 21:10:02 +01:00
|
|
|
err |= __get_user(*pax, &sc->ax);
|
2005-04-17 00:20:36 +02:00
|
|
|
return err;
|
|
|
|
|
|
|
|
badframe:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-02-08 21:10:02 +01:00
|
|
|
asmlinkage unsigned long sys_sigreturn(unsigned long __unused)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-03-06 10:33:08 +01:00
|
|
|
struct sigframe __user *frame;
|
|
|
|
struct pt_regs *regs;
|
2008-02-08 21:10:02 +01:00
|
|
|
unsigned long ax;
|
2008-03-06 10:33:08 +01:00
|
|
|
sigset_t set;
|
|
|
|
|
|
|
|
regs = (struct pt_regs *) &__unused;
|
|
|
|
frame = (struct sigframe __user *)(regs->sp - 8);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
|
|
|
|
goto badframe;
|
2008-03-06 10:33:08 +01:00
|
|
|
if (__get_user(set.sig[0], &frame->sc.oldmask) || (_NSIG_WORDS > 1
|
2005-04-17 00:20:36 +02:00
|
|
|
&& __copy_from_user(&set.sig[1], &frame->extramask,
|
|
|
|
sizeof(frame->extramask))))
|
|
|
|
goto badframe;
|
|
|
|
|
|
|
|
sigdelsetmask(&set, ~_BLOCKABLE);
|
|
|
|
spin_lock_irq(¤t->sighand->siglock);
|
|
|
|
current->blocked = set;
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irq(¤t->sighand->siglock);
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
if (restore_sigcontext(regs, &frame->sc, &ax))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto badframe;
|
2008-01-30 13:30:56 +01:00
|
|
|
return ax;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
badframe:
|
2008-01-30 13:33:18 +01:00
|
|
|
if (show_unhandled_signals && printk_ratelimit()) {
|
2008-03-06 10:43:17 +01:00
|
|
|
printk(KERN_INFO "%s%s[%d] bad frame in sigreturn frame:"
|
|
|
|
"%p ip:%lx sp:%lx oeax:%lx",
|
2007-10-19 08:40:41 +02:00
|
|
|
task_pid_nr(current) > 1 ? KERN_INFO : KERN_EMERG,
|
2008-01-30 13:30:56 +01:00
|
|
|
current->comm, task_pid_nr(current), frame, regs->ip,
|
|
|
|
regs->sp, regs->orig_ax);
|
2008-01-30 13:33:18 +01:00
|
|
|
print_vma_addr(" in ", regs->ip);
|
2008-03-06 10:43:17 +01:00
|
|
|
printk(KERN_CONT "\n");
|
2008-01-30 13:33:18 +01:00
|
|
|
}
|
2007-07-22 11:12:28 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
force_sig(SIGSEGV, current);
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
2008-03-06 10:33:08 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
asmlinkage int sys_rt_sigreturn(unsigned long __unused)
|
|
|
|
{
|
2008-02-08 21:10:00 +01:00
|
|
|
struct pt_regs *regs = (struct pt_regs *)&__unused;
|
|
|
|
struct rt_sigframe __user *frame;
|
2008-02-08 21:10:02 +01:00
|
|
|
unsigned long ax;
|
2005-04-17 00:20:36 +02:00
|
|
|
sigset_t set;
|
|
|
|
|
2008-02-08 21:10:00 +01:00
|
|
|
frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
|
|
|
|
goto badframe;
|
|
|
|
if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
|
|
|
|
goto badframe;
|
|
|
|
|
|
|
|
sigdelsetmask(&set, ~_BLOCKABLE);
|
|
|
|
spin_lock_irq(¤t->sighand->siglock);
|
|
|
|
current->blocked = set;
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irq(¤t->sighand->siglock);
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto badframe;
|
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
|
2005-04-17 00:20:36 +02:00
|
|
|
goto badframe;
|
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
return ax;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
badframe:
|
|
|
|
force_sig(SIGSEGV, current);
|
|
|
|
return 0;
|
2008-03-06 10:33:08 +01:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up a signal frame.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
setup_sigcontext(struct sigcontext __user *sc, struct _fpstate __user *fpstate,
|
|
|
|
struct pt_regs *regs, unsigned long mask)
|
|
|
|
{
|
|
|
|
int tmp, err = 0;
|
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(regs->fs, (unsigned int __user *)&sc->fs);
|
2007-02-13 13:26:20 +01:00
|
|
|
savesegment(gs, tmp);
|
|
|
|
err |= __put_user(tmp, (unsigned int __user *)&sc->gs);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(regs->es, (unsigned int __user *)&sc->es);
|
|
|
|
err |= __put_user(regs->ds, (unsigned int __user *)&sc->ds);
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(regs->di, &sc->di);
|
|
|
|
err |= __put_user(regs->si, &sc->si);
|
|
|
|
err |= __put_user(regs->bp, &sc->bp);
|
|
|
|
err |= __put_user(regs->sp, &sc->sp);
|
|
|
|
err |= __put_user(regs->bx, &sc->bx);
|
|
|
|
err |= __put_user(regs->dx, &sc->dx);
|
|
|
|
err |= __put_user(regs->cx, &sc->cx);
|
|
|
|
err |= __put_user(regs->ax, &sc->ax);
|
2005-04-17 00:20:36 +02:00
|
|
|
err |= __put_user(current->thread.trap_no, &sc->trapno);
|
|
|
|
err |= __put_user(current->thread.error_code, &sc->err);
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(regs->ip, &sc->ip);
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(regs->cs, (unsigned int __user *)&sc->cs);
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(regs->flags, &sc->flags);
|
|
|
|
err |= __put_user(regs->sp, &sc->sp_at_signal);
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(regs->ss, (unsigned int __user *)&sc->ss);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
tmp = save_i387(fpstate);
|
|
|
|
if (tmp < 0)
|
2008-03-06 10:33:08 +01:00
|
|
|
err = 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2008-03-06 10:33:08 +01:00
|
|
|
err |= __put_user(tmp ? fpstate : NULL, &sc->fpstate);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* non-iBCS2 extensions.. */
|
|
|
|
err |= __put_user(mask, &sc->oldmask);
|
|
|
|
err |= __put_user(current->thread.cr2, &sc->cr2);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine which stack to use..
|
|
|
|
*/
|
|
|
|
static inline void __user *
|
2008-03-06 10:33:08 +01:00
|
|
|
get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-01-30 13:30:56 +01:00
|
|
|
unsigned long sp;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Default to using normal stack */
|
2008-01-30 13:30:56 +01:00
|
|
|
sp = regs->sp;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
x86: protect against sigaltstack wraparound
cf http://lkml.org/lkml/2007/10/3/41
To summarize: on Linux, SA_ONSTACK decides whether you are already on the
signal stack based on the value of the SP at the time of a signal. If
you are not already inside the range, you are not "on the signal stack"
and so the new signal handler frame starts over at the base of the signal
stack.
sigaltstack (and sigstack before it) was invented in BSD. There, the
SA_ONSTACK behavior has always been different. It uses a kernel state
flag to decide, rather than the SP value. When you first take an
SA_ONSTACK signal and switch to the alternate signal stack, it sets the
SS_ONSTACK flag in the thread's sigaltstack state in the kernel.
Thereafter you are "on the signal stack" and don't switch SP before
pushing a handler frame no matter what the SP value is. Only when you
sigreturn from the original handler context do you clear the SS_ONSTACK
flag so that a new handler frame will start over at the base of the
alternate signal stack.
The undesireable effect of the Linux behavior is that an overflow of the
alternate signal stack can not only go undetected, but lead to a ring
buffer effect of clobbering the original handler frame at the base of the
signal stack for each successive signal that comes just after the
overflow. This is what Shi Weihua's test case demonstrates. Normally
this does not come up because of the signal mask, but the test case uses
SA_NODEFER for its SIGSEGV handler.
The other subtle part of the existing Linux semantics is that a simple
longjmp out of a signal handler serves to take you off the signal stack
in a safe and reliable fashion without having used sigreturn (nor having
just returned from the handler normally, which means the same). After
the longjmp (or even informal stack switching not via any proper libc or
kernel interface), the alternate signal stack stands ready to be used
again.
A paranoid program would allocate a PROT_NONE red zone around its
alternate signal stack. Then a small overflow would trigger a SIGSEGV in
handler setup, and be fatal (core dump) whether or not SIGSEGV is
blocked. As with thread stack red zones, that cannot catch all overflows
(or underflows). e.g., a local array as large as page size allocated in
a function called from a handler, but not actually touched before more
calls push more stack, could cause an overflow that silently pushes into
some unrelated allocated pages.
The BSD behavior does not do anything in particular about overflow. But
it does at least avoid the wraparound or "ring buffer effect", so you'll
just get a straightforward all-out overflow down your address space past
the low end of the alternate signal stack. I don't know what the BSD
behavior is for longjmp out of an SA_ONSTACK handler.
The POSIX wording relating to sigaltstack is pretty minimal. I don't
think it speaks to this issue one way or another. (The program that
overflows its stack is clearly in undefined behavior territory of one
sort or another anyhow.)
Given the longjmp issue and the potential for highly subtle complications
in existing programs relying on this in arcane ways deep in their code, I
am very dubious about changing the behavior to the BSD style persistent
flag. I think Shi Weihua's patches have a similar effect by tracking the
SP used in the last handler setup.
I think it would be sensible for the signal handler setup code to detect
when it would itself be causing a stack overflow. Maybe something like
the following patch (untested). This issue exists in the same way on all
machines, so ideally they would all do a similar check.
When it's the handler function itself or its callees that cause the
overflow, rather than the signal handler frame setup alone crossing the
boundary, this still won't help. But I don't see any way to distinguish
that from the valid longjmp case.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
2008-01-30 13:30:06 +01:00
|
|
|
/*
|
|
|
|
* If we are on the alternate signal stack and would overflow it, don't.
|
|
|
|
* Return an always-bogus address instead so we will die with SIGSEGV.
|
|
|
|
*/
|
2008-01-30 13:30:56 +01:00
|
|
|
if (on_sig_stack(sp) && !likely(on_sig_stack(sp - frame_size)))
|
x86: protect against sigaltstack wraparound
cf http://lkml.org/lkml/2007/10/3/41
To summarize: on Linux, SA_ONSTACK decides whether you are already on the
signal stack based on the value of the SP at the time of a signal. If
you are not already inside the range, you are not "on the signal stack"
and so the new signal handler frame starts over at the base of the signal
stack.
sigaltstack (and sigstack before it) was invented in BSD. There, the
SA_ONSTACK behavior has always been different. It uses a kernel state
flag to decide, rather than the SP value. When you first take an
SA_ONSTACK signal and switch to the alternate signal stack, it sets the
SS_ONSTACK flag in the thread's sigaltstack state in the kernel.
Thereafter you are "on the signal stack" and don't switch SP before
pushing a handler frame no matter what the SP value is. Only when you
sigreturn from the original handler context do you clear the SS_ONSTACK
flag so that a new handler frame will start over at the base of the
alternate signal stack.
The undesireable effect of the Linux behavior is that an overflow of the
alternate signal stack can not only go undetected, but lead to a ring
buffer effect of clobbering the original handler frame at the base of the
signal stack for each successive signal that comes just after the
overflow. This is what Shi Weihua's test case demonstrates. Normally
this does not come up because of the signal mask, but the test case uses
SA_NODEFER for its SIGSEGV handler.
The other subtle part of the existing Linux semantics is that a simple
longjmp out of a signal handler serves to take you off the signal stack
in a safe and reliable fashion without having used sigreturn (nor having
just returned from the handler normally, which means the same). After
the longjmp (or even informal stack switching not via any proper libc or
kernel interface), the alternate signal stack stands ready to be used
again.
A paranoid program would allocate a PROT_NONE red zone around its
alternate signal stack. Then a small overflow would trigger a SIGSEGV in
handler setup, and be fatal (core dump) whether or not SIGSEGV is
blocked. As with thread stack red zones, that cannot catch all overflows
(or underflows). e.g., a local array as large as page size allocated in
a function called from a handler, but not actually touched before more
calls push more stack, could cause an overflow that silently pushes into
some unrelated allocated pages.
The BSD behavior does not do anything in particular about overflow. But
it does at least avoid the wraparound or "ring buffer effect", so you'll
just get a straightforward all-out overflow down your address space past
the low end of the alternate signal stack. I don't know what the BSD
behavior is for longjmp out of an SA_ONSTACK handler.
The POSIX wording relating to sigaltstack is pretty minimal. I don't
think it speaks to this issue one way or another. (The program that
overflows its stack is clearly in undefined behavior territory of one
sort or another anyhow.)
Given the longjmp issue and the potential for highly subtle complications
in existing programs relying on this in arcane ways deep in their code, I
am very dubious about changing the behavior to the BSD style persistent
flag. I think Shi Weihua's patches have a similar effect by tracking the
SP used in the last handler setup.
I think it would be sensible for the signal handler setup code to detect
when it would itself be causing a stack overflow. Maybe something like
the following patch (untested). This issue exists in the same way on all
machines, so ideally they would all do a similar check.
When it's the handler function itself or its callees that cause the
overflow, rather than the signal handler frame setup alone crossing the
boundary, this still won't help. But I don't see any way to distinguish
that from the valid longjmp case.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
2008-01-30 13:30:06 +01:00
|
|
|
return (void __user *) -1L;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* This is the X/Open sanctioned signal stack switching. */
|
|
|
|
if (ka->sa.sa_flags & SA_ONSTACK) {
|
2008-01-30 13:30:56 +01:00
|
|
|
if (sas_ss_flags(sp) == 0)
|
|
|
|
sp = current->sas_ss_sp + current->sas_ss_size;
|
2008-03-06 10:33:08 +01:00
|
|
|
} else {
|
|
|
|
/* This is the legacy signal stack switching. */
|
|
|
|
if ((regs->ss & 0xffff) != __USER_DS &&
|
|
|
|
!(ka->sa.sa_flags & SA_RESTORER) &&
|
|
|
|
ka->sa.sa_restorer)
|
|
|
|
sp = (unsigned long) ka->sa.sa_restorer;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
sp -= frame_size;
|
2008-03-06 10:33:08 +01:00
|
|
|
/*
|
|
|
|
* Align the stack pointer according to the i386 ABI,
|
|
|
|
* i.e. so that on function entry ((sp + 4) & 15) == 0.
|
|
|
|
*/
|
2008-01-30 13:30:56 +01:00
|
|
|
sp = ((sp + 4) & -16ul) - 4;
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
return (void __user *) sp;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2008-03-06 10:33:08 +01:00
|
|
|
static int
|
|
|
|
setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
|
|
|
|
struct pt_regs *regs)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct sigframe __user *frame;
|
2008-03-06 10:33:08 +01:00
|
|
|
void __user *restorer;
|
2005-04-17 00:20:36 +02:00
|
|
|
int err = 0;
|
|
|
|
int usig;
|
|
|
|
|
|
|
|
frame = get_sigframe(ka, regs, sizeof(*frame));
|
|
|
|
|
|
|
|
if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
usig = current_thread_info()->exec_domain
|
|
|
|
&& current_thread_info()->exec_domain->signal_invmap
|
|
|
|
&& sig < 32
|
|
|
|
? current_thread_info()->exec_domain->signal_invmap[sig]
|
|
|
|
: sig;
|
|
|
|
|
|
|
|
err = __put_user(usig, &frame->sig);
|
|
|
|
if (err)
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
err = setup_sigcontext(&frame->sc, &frame->fpstate, regs, set->sig[0]);
|
|
|
|
if (err)
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
if (_NSIG_WORDS > 1) {
|
|
|
|
err = __copy_to_user(&frame->extramask, &set->sig[1],
|
|
|
|
sizeof(frame->extramask));
|
|
|
|
if (err)
|
|
|
|
goto give_sigsegv;
|
|
|
|
}
|
|
|
|
|
2008-04-09 10:29:27 +02:00
|
|
|
if (current->mm->context.vdso)
|
2008-01-30 13:30:42 +01:00
|
|
|
restorer = VDSO32_SYMBOL(current->mm->context.vdso, sigreturn);
|
2007-02-13 13:26:26 +01:00
|
|
|
else
|
2008-01-30 13:33:23 +01:00
|
|
|
restorer = &frame->retcode;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (ka->sa.sa_flags & SA_RESTORER)
|
|
|
|
restorer = ka->sa.sa_restorer;
|
|
|
|
|
|
|
|
/* Set up to return from userspace. */
|
|
|
|
err |= __put_user(restorer, &frame->pretcode);
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2008-03-06 10:33:08 +01:00
|
|
|
* This is popl %eax ; movl $__NR_sigreturn, %eax ; int $0x80
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* WE DO NOT USE IT ANY MORE! It's only left here for historical
|
|
|
|
* reasons and because gdb uses it as a signature to notice
|
|
|
|
* signal handler stack frames.
|
|
|
|
*/
|
|
|
|
err |= __put_user(0xb858, (short __user *)(frame->retcode+0));
|
|
|
|
err |= __put_user(__NR_sigreturn, (int __user *)(frame->retcode+2));
|
|
|
|
err |= __put_user(0x80cd, (short __user *)(frame->retcode+6));
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
/* Set up registers for signal handler */
|
2008-03-06 10:33:08 +01:00
|
|
|
regs->sp = (unsigned long)frame;
|
|
|
|
regs->ip = (unsigned long)ka->sa.sa_handler;
|
|
|
|
regs->ax = (unsigned long)sig;
|
2008-02-08 21:09:56 +01:00
|
|
|
regs->dx = 0;
|
|
|
|
regs->cx = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->ds = __USER_DS;
|
|
|
|
regs->es = __USER_DS;
|
|
|
|
regs->ss = __USER_DS;
|
|
|
|
regs->cs = __USER_CS;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear TF when entering the signal handler, but
|
|
|
|
* notify any tracer that was single-stepping it.
|
|
|
|
* The tracer may want to single-step inside the
|
|
|
|
* handler too.
|
|
|
|
*/
|
2008-03-28 15:56:56 +01:00
|
|
|
regs->flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_DF);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (test_thread_flag(TIF_SINGLESTEP))
|
|
|
|
ptrace_notify(SIGTRAP);
|
|
|
|
|
2006-01-19 02:44:00 +01:00
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
give_sigsegv:
|
|
|
|
force_sigsegv(sig, current);
|
2006-01-19 02:44:00 +01:00
|
|
|
return -EFAULT;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2005-06-23 09:08:21 +02:00
|
|
|
static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
|
2008-03-06 10:33:08 +01:00
|
|
|
sigset_t *set, struct pt_regs *regs)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct rt_sigframe __user *frame;
|
2008-03-06 10:33:08 +01:00
|
|
|
void __user *restorer;
|
2005-04-17 00:20:36 +02:00
|
|
|
int err = 0;
|
|
|
|
int usig;
|
|
|
|
|
|
|
|
frame = get_sigframe(ka, regs, sizeof(*frame));
|
|
|
|
|
|
|
|
if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
usig = current_thread_info()->exec_domain
|
|
|
|
&& current_thread_info()->exec_domain->signal_invmap
|
|
|
|
&& sig < 32
|
|
|
|
? current_thread_info()->exec_domain->signal_invmap[sig]
|
|
|
|
: sig;
|
|
|
|
|
|
|
|
err |= __put_user(usig, &frame->sig);
|
|
|
|
err |= __put_user(&frame->info, &frame->pinfo);
|
|
|
|
err |= __put_user(&frame->uc, &frame->puc);
|
|
|
|
err |= copy_siginfo_to_user(&frame->info, info);
|
|
|
|
if (err)
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
/* Create the ucontext. */
|
|
|
|
err |= __put_user(0, &frame->uc.uc_flags);
|
|
|
|
err |= __put_user(0, &frame->uc.uc_link);
|
|
|
|
err |= __put_user(current->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
|
2008-01-30 13:30:56 +01:00
|
|
|
err |= __put_user(sas_ss_flags(regs->sp),
|
2005-04-17 00:20:36 +02:00
|
|
|
&frame->uc.uc_stack.ss_flags);
|
|
|
|
err |= __put_user(current->sas_ss_size, &frame->uc.uc_stack.ss_size);
|
|
|
|
err |= setup_sigcontext(&frame->uc.uc_mcontext, &frame->fpstate,
|
2008-03-06 10:33:08 +01:00
|
|
|
regs, set->sig[0]);
|
2005-04-17 00:20:36 +02:00
|
|
|
err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
|
|
|
|
if (err)
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
/* Set up to return from userspace. */
|
2008-01-30 13:30:42 +01:00
|
|
|
restorer = VDSO32_SYMBOL(current->mm->context.vdso, rt_sigreturn);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (ka->sa.sa_flags & SA_RESTORER)
|
|
|
|
restorer = ka->sa.sa_restorer;
|
|
|
|
err |= __put_user(restorer, &frame->pretcode);
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2008-03-06 10:33:08 +01:00
|
|
|
* This is movl $__NR_rt_sigreturn, %ax ; int $0x80
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
|
|
|
* WE DO NOT USE IT ANY MORE! It's only left here for historical
|
|
|
|
* reasons and because gdb uses it as a signature to notice
|
|
|
|
* signal handler stack frames.
|
|
|
|
*/
|
|
|
|
err |= __put_user(0xb8, (char __user *)(frame->retcode+0));
|
|
|
|
err |= __put_user(__NR_rt_sigreturn, (int __user *)(frame->retcode+1));
|
|
|
|
err |= __put_user(0x80cd, (short __user *)(frame->retcode+5));
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
goto give_sigsegv;
|
|
|
|
|
|
|
|
/* Set up registers for signal handler */
|
2008-03-06 10:33:08 +01:00
|
|
|
regs->sp = (unsigned long)frame;
|
|
|
|
regs->ip = (unsigned long)ka->sa.sa_handler;
|
|
|
|
regs->ax = (unsigned long)usig;
|
|
|
|
regs->dx = (unsigned long)&frame->info;
|
|
|
|
regs->cx = (unsigned long)&frame->uc;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->ds = __USER_DS;
|
|
|
|
regs->es = __USER_DS;
|
|
|
|
regs->ss = __USER_DS;
|
|
|
|
regs->cs = __USER_CS;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear TF when entering the signal handler, but
|
|
|
|
* notify any tracer that was single-stepping it.
|
|
|
|
* The tracer may want to single-step inside the
|
|
|
|
* handler too.
|
|
|
|
*/
|
2008-03-28 15:56:56 +01:00
|
|
|
regs->flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_DF);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (test_thread_flag(TIF_SINGLESTEP))
|
|
|
|
ptrace_notify(SIGTRAP);
|
|
|
|
|
2006-01-19 02:44:00 +01:00
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
give_sigsegv:
|
|
|
|
force_sigsegv(sig, current);
|
2006-01-19 02:44:00 +01:00
|
|
|
return -EFAULT;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-03-06 10:33:08 +01:00
|
|
|
* OK, we're invoking a handler:
|
|
|
|
*/
|
2005-06-23 09:08:21 +02:00
|
|
|
static int
|
2005-04-17 00:20:36 +02:00
|
|
|
handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
|
2008-02-08 21:09:58 +01:00
|
|
|
sigset_t *oldset, struct pt_regs *regs)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2005-06-23 09:08:21 +02:00
|
|
|
int ret;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Are we from a system call? */
|
2008-02-08 21:09:57 +01:00
|
|
|
if ((long)regs->orig_ax >= 0) {
|
2005-04-17 00:20:36 +02:00
|
|
|
/* If so, check system call restarting.. */
|
2008-01-30 13:30:56 +01:00
|
|
|
switch (regs->ax) {
|
2008-02-08 21:09:58 +01:00
|
|
|
case -ERESTART_RESTARTBLOCK:
|
|
|
|
case -ERESTARTNOHAND:
|
|
|
|
regs->ax = -EINTR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case -ERESTARTSYS:
|
|
|
|
if (!(ka->sa.sa_flags & SA_RESTART)) {
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->ax = -EINTR;
|
2005-04-17 00:20:36 +02:00
|
|
|
break;
|
2008-02-08 21:09:58 +01:00
|
|
|
}
|
|
|
|
/* fallthrough */
|
|
|
|
case -ERESTARTNOINTR:
|
|
|
|
regs->ax = regs->orig_ax;
|
|
|
|
regs->ip -= 2;
|
|
|
|
break;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-01-30 13:30:50 +01:00
|
|
|
* If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
|
|
|
|
* flag so that register information in the sigcontext is correct.
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2008-01-30 13:30:56 +01:00
|
|
|
if (unlikely(regs->flags & X86_EFLAGS_TF) &&
|
2008-01-30 13:30:50 +01:00
|
|
|
likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->flags &= ~X86_EFLAGS_TF;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Set up the stack frame */
|
|
|
|
if (ka->sa.sa_flags & SA_SIGINFO)
|
2005-06-23 09:08:21 +02:00
|
|
|
ret = setup_rt_frame(sig, ka, info, oldset, regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2005-06-23 09:08:21 +02:00
|
|
|
ret = setup_frame(sig, ka, oldset, regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-03-06 10:33:08 +01:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2005-06-23 09:08:21 +02:00
|
|
|
|
2008-03-06 10:33:08 +01:00
|
|
|
spin_lock_irq(¤t->sighand->siglock);
|
|
|
|
sigorsets(¤t->blocked, ¤t->blocked, &ka->sa.sa_mask);
|
|
|
|
if (!(ka->sa.sa_flags & SA_NODEFER))
|
|
|
|
sigaddset(¤t->blocked, sig);
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irq(¤t->sighand->siglock);
|
|
|
|
|
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that 'init' is a special process: it doesn't get signals it doesn't
|
|
|
|
* want to handle. Thus you cannot kill init even with a SIGKILL even by
|
|
|
|
* mistake.
|
|
|
|
*/
|
2008-01-30 13:31:17 +01:00
|
|
|
static void do_signal(struct pt_regs *regs)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-08 21:09:58 +01:00
|
|
|
struct k_sigaction ka;
|
2005-04-17 00:20:36 +02:00
|
|
|
siginfo_t info;
|
|
|
|
int signr;
|
2006-01-19 02:44:00 +01:00
|
|
|
sigset_t *oldset;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2008-02-08 21:09:58 +01:00
|
|
|
* We want the common case to go fast, which is why we may in certain
|
|
|
|
* cases get here from kernel mode. Just return without doing anything
|
|
|
|
* if so.
|
|
|
|
* X86_32: vm86 regs switched out by assembly code before reaching
|
|
|
|
* here, so testing against kernel CS suffices.
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-06-23 09:08:45 +02:00
|
|
|
if (!user_mode(regs))
|
2006-01-19 02:44:00 +01:00
|
|
|
return;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-19 02:44:00 +01:00
|
|
|
if (test_thread_flag(TIF_RESTORE_SIGMASK))
|
|
|
|
oldset = ¤t->saved_sigmask;
|
|
|
|
else
|
2005-04-17 00:20:36 +02:00
|
|
|
oldset = ¤t->blocked;
|
|
|
|
|
|
|
|
signr = get_signal_to_deliver(&info, &ka, regs, NULL);
|
|
|
|
if (signr > 0) {
|
2008-03-06 10:33:08 +01:00
|
|
|
/*
|
|
|
|
* Re-enable any watchpoints before delivering the
|
2005-04-17 00:20:36 +02:00
|
|
|
* signal to user space. The processor register will
|
|
|
|
* have been cleared if the watchpoint triggered
|
|
|
|
* inside the kernel.
|
|
|
|
*/
|
2008-02-08 21:09:58 +01:00
|
|
|
if (current->thread.debugreg7)
|
2008-01-30 13:30:59 +01:00
|
|
|
set_debugreg(current->thread.debugreg7, 7);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-03-06 10:33:08 +01:00
|
|
|
/* Whee! Actually deliver the signal. */
|
2006-01-19 02:44:00 +01:00
|
|
|
if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
|
2008-03-06 10:33:08 +01:00
|
|
|
/*
|
|
|
|
* a signal was successfully delivered; the saved
|
2006-01-19 02:44:00 +01:00
|
|
|
* sigmask will have been stored in the signal frame,
|
|
|
|
* and will be restored by sigreturn, so we can simply
|
2008-03-06 10:33:08 +01:00
|
|
|
* clear the TIF_RESTORE_SIGMASK flag
|
|
|
|
*/
|
2006-01-19 02:44:00 +01:00
|
|
|
if (test_thread_flag(TIF_RESTORE_SIGMASK))
|
|
|
|
clear_thread_flag(TIF_RESTORE_SIGMASK);
|
|
|
|
}
|
|
|
|
return;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Did we come from a system call? */
|
2008-02-08 21:09:57 +01:00
|
|
|
if ((long)regs->orig_ax >= 0) {
|
2005-04-17 00:20:36 +02:00
|
|
|
/* Restart the system call - no handlers present */
|
2008-01-30 13:30:56 +01:00
|
|
|
switch (regs->ax) {
|
2006-01-19 02:44:00 +01:00
|
|
|
case -ERESTARTNOHAND:
|
|
|
|
case -ERESTARTSYS:
|
|
|
|
case -ERESTARTNOINTR:
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->ax = regs->orig_ax;
|
|
|
|
regs->ip -= 2;
|
2006-01-19 02:44:00 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case -ERESTART_RESTARTBLOCK:
|
2008-01-30 13:30:56 +01:00
|
|
|
regs->ax = __NR_restart_syscall;
|
|
|
|
regs->ip -= 2;
|
2006-01-19 02:44:00 +01:00
|
|
|
break;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
}
|
2006-01-19 02:44:00 +01:00
|
|
|
|
2008-02-08 21:09:58 +01:00
|
|
|
/*
|
|
|
|
* If there's no signal to deliver, we just put the saved sigmask
|
|
|
|
* back.
|
|
|
|
*/
|
2006-01-19 02:44:00 +01:00
|
|
|
if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
|
|
|
|
clear_thread_flag(TIF_RESTORE_SIGMASK);
|
|
|
|
sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* notification of userspace execution resumption
|
2006-01-19 02:44:00 +01:00
|
|
|
* - triggered by the TIF_WORK_MASK flags
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2008-03-06 10:33:08 +01:00
|
|
|
void
|
|
|
|
do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
/* Pending single-step? */
|
|
|
|
if (thread_info_flags & _TIF_SINGLESTEP) {
|
2008-02-08 21:09:58 +01:00
|
|
|
regs->flags |= X86_EFLAGS_TF;
|
2005-04-17 00:20:36 +02:00
|
|
|
clear_thread_flag(TIF_SINGLESTEP);
|
|
|
|
}
|
2006-01-19 02:44:00 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* deal with pending signal delivery */
|
2006-01-19 02:44:00 +01:00
|
|
|
if (thread_info_flags & (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK))
|
|
|
|
do_signal(regs);
|
2008-01-25 21:08:29 +01:00
|
|
|
|
|
|
|
if (thread_info_flags & _TIF_HRTICK_RESCHED)
|
|
|
|
hrtick_resched();
|
2008-03-06 10:33:08 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
clear_thread_flag(TIF_IRET);
|
|
|
|
}
|