2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2007-10-16 10:27:00 +02:00
|
|
|
* Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "linux/ptrace.h"
|
|
|
|
#include "asm/unistd.h"
|
2007-10-16 10:27:00 +02:00
|
|
|
#include "asm/uaccess.h"
|
|
|
|
#include "asm/ucontext.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
#include "frame_kern.h"
|
|
|
|
#include "skas.h"
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
void copy_sc(struct uml_pt_regs *regs, void *from)
|
2007-05-06 23:51:25 +02:00
|
|
|
{
|
|
|
|
struct sigcontext *sc = from;
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
REGS_GS(regs->regs) = sc->gs;
|
|
|
|
REGS_FS(regs->regs) = sc->fs;
|
|
|
|
REGS_ES(regs->regs) = sc->es;
|
|
|
|
REGS_DS(regs->regs) = sc->ds;
|
|
|
|
REGS_EDI(regs->regs) = sc->edi;
|
|
|
|
REGS_ESI(regs->regs) = sc->esi;
|
|
|
|
REGS_EBP(regs->regs) = sc->ebp;
|
|
|
|
REGS_SP(regs->regs) = sc->esp;
|
|
|
|
REGS_EBX(regs->regs) = sc->ebx;
|
|
|
|
REGS_EDX(regs->regs) = sc->edx;
|
|
|
|
REGS_ECX(regs->regs) = sc->ecx;
|
|
|
|
REGS_EAX(regs->regs) = sc->eax;
|
|
|
|
REGS_IP(regs->regs) = sc->eip;
|
|
|
|
REGS_CS(regs->regs) = sc->cs;
|
|
|
|
REGS_EFLAGS(regs->regs) = sc->eflags;
|
|
|
|
REGS_SS(regs->regs) = sc->ss;
|
2007-05-06 23:51:25 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
static int copy_sc_from_user(struct pt_regs *regs,
|
|
|
|
struct sigcontext __user *from)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-16 10:27:00 +02:00
|
|
|
struct sigcontext sc;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned long fpregs[HOST_FP_SIZE];
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = copy_from_user(&sc, from, sizeof(sc));
|
|
|
|
err |= copy_from_user(fpregs, sc.fpstate, sizeof(fpregs));
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err)
|
2007-05-06 23:51:24 +02:00
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-05-06 23:51:25 +02:00
|
|
|
copy_sc(®s->regs, &sc);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
err = restore_fp_registers(userspace_pid[0], fpregs);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err < 0) {
|
|
|
|
printk(KERN_ERR "copy_sc_from_user_skas - PTRACE_SETFPREGS "
|
|
|
|
"failed, errno = %d\n", -err);
|
2007-05-06 23:51:24 +02:00
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-05-06 23:51:24 +02:00
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
static int copy_sc_to_user(struct sigcontext __user *to,
|
|
|
|
struct _fpstate __user *to_fp, struct pt_regs *regs,
|
|
|
|
unsigned long sp)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-16 10:27:00 +02:00
|
|
|
struct sigcontext sc;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned long fpregs[HOST_FP_SIZE];
|
[PATCH] uml: S390 preparation, abstract host page fault data
This patch removes the arch-specific fault/trap-infos from thread and
skas-regs.
It adds a new struct faultinfo, that is arch-specific defined in
sysdep/faultinfo.h.
The structure is inserted in thread.arch and thread.regs.skas and
thread.regs.tt
Now, segv and other trap-handlers can copy the contents from regs.X.faultinfo
to thread.arch.faultinfo with one simple assignment.
Also, the number of macros necessary is reduced to
FAULT_ADDRESS(struct faultinfo)
extracts the faulting address from faultinfo
FAULT_WRITE(struct faultinfo)
extracts the "is_write" flag
SEGV_IS_FIXABLE(struct faultinfo)
is true for the fixable segvs, i.e. (TRAP == 14)
on i386
UPT_FAULTINFO(regs)
result is (struct faultinfo *) to the faultinfo
in regs->skas.faultinfo
GET_FAULTINFO_FROM_SC(struct faultinfo, struct sigcontext *)
copies the relevant parts of the sigcontext to
struct faultinfo.
On SIGSEGV, call user_signal() instead of handle_segv(), if the architecture
provides the information needed in PTRACE_FAULTINFO, or if PTRACE_FAULTINFO is
missing, because segv-stub will provide the info.
The benefit of the change is, that in case of a non-fixable SIGSEGV, we can
give user processes a SIGSEGV, instead of possibly looping on pagefault
handling.
Since handle_segv() sikked arch_fixup() implicitly by passing ip==0 to segv(),
I changed segv() to call arch_fixup() only, if !is_user.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-06 01:15:31 +02:00
|
|
|
struct faultinfo * fi = ¤t->thread.arch.faultinfo;
|
2005-04-17 00:20:36 +02:00
|
|
|
int err;
|
|
|
|
|
2007-10-16 10:26:58 +02:00
|
|
|
sc.gs = REGS_GS(regs->regs.regs);
|
|
|
|
sc.fs = REGS_FS(regs->regs.regs);
|
|
|
|
sc.es = REGS_ES(regs->regs.regs);
|
|
|
|
sc.ds = REGS_DS(regs->regs.regs);
|
|
|
|
sc.edi = REGS_EDI(regs->regs.regs);
|
|
|
|
sc.esi = REGS_ESI(regs->regs.regs);
|
|
|
|
sc.ebp = REGS_EBP(regs->regs.regs);
|
2006-03-27 11:14:38 +02:00
|
|
|
sc.esp = sp;
|
2007-10-16 10:26:58 +02:00
|
|
|
sc.ebx = REGS_EBX(regs->regs.regs);
|
|
|
|
sc.edx = REGS_EDX(regs->regs.regs);
|
|
|
|
sc.ecx = REGS_ECX(regs->regs.regs);
|
|
|
|
sc.eax = REGS_EAX(regs->regs.regs);
|
|
|
|
sc.eip = REGS_IP(regs->regs.regs);
|
|
|
|
sc.cs = REGS_CS(regs->regs.regs);
|
|
|
|
sc.eflags = REGS_EFLAGS(regs->regs.regs);
|
|
|
|
sc.esp_at_signal = regs->regs.regs[UESP];
|
|
|
|
sc.ss = regs->regs.regs[SS];
|
2007-10-16 10:27:00 +02:00
|
|
|
sc.cr2 = fi->cr2;
|
|
|
|
sc.err = fi->error_code;
|
|
|
|
sc.trapno = fi->trap_no;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
err = save_fp_registers(userspace_pid[0], fpregs);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err < 0) {
|
|
|
|
printk(KERN_ERR "copy_sc_to_user_skas - PTRACE_GETFPREGS "
|
|
|
|
"failed, errno = %d\n", err);
|
2007-05-06 23:51:24 +02:00
|
|
|
return 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2006-03-31 12:30:15 +02:00
|
|
|
to_fp = (to_fp ? to_fp : (struct _fpstate __user *) (to + 1));
|
2005-04-17 00:20:36 +02:00
|
|
|
sc.fpstate = to_fp;
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err)
|
2007-05-06 23:51:24 +02:00
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-05-06 23:51:24 +02:00
|
|
|
return copy_to_user(to, &sc, sizeof(sc)) ||
|
|
|
|
copy_to_user(to_fp, fpregs, sizeof(fpregs));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
static int copy_ucontext_to_user(struct ucontext __user *uc,
|
|
|
|
struct _fpstate __user *fp, sigset_t *set,
|
|
|
|
unsigned long sp)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
err |= put_user(current->sas_ss_sp, &uc->uc_stack.ss_sp);
|
|
|
|
err |= put_user(sas_ss_flags(sp), &uc->uc_stack.ss_flags);
|
|
|
|
err |= put_user(current->sas_ss_size, &uc->uc_stack.ss_size);
|
2006-03-27 11:14:38 +02:00
|
|
|
err |= copy_sc_to_user(&uc->uc_mcontext, fp, ¤t->thread.regs, sp);
|
2005-04-17 00:20:36 +02:00
|
|
|
err |= copy_to_user(&uc->uc_sigmask, set, sizeof(*set));
|
2007-05-06 23:51:24 +02:00
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct sigframe
|
|
|
|
{
|
2006-03-31 12:30:15 +02:00
|
|
|
char __user *pretcode;
|
2005-04-17 00:20:36 +02:00
|
|
|
int sig;
|
|
|
|
struct sigcontext sc;
|
|
|
|
struct _fpstate fpstate;
|
|
|
|
unsigned long extramask[_NSIG_WORDS-1];
|
|
|
|
char retcode[8];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rt_sigframe
|
|
|
|
{
|
2006-03-31 12:30:15 +02:00
|
|
|
char __user *pretcode;
|
2005-04-17 00:20:36 +02:00
|
|
|
int sig;
|
2006-03-31 12:30:15 +02:00
|
|
|
struct siginfo __user *pinfo;
|
|
|
|
void __user *puc;
|
2005-04-17 00:20:36 +02:00
|
|
|
struct siginfo info;
|
|
|
|
struct ucontext uc;
|
|
|
|
struct _fpstate fpstate;
|
|
|
|
char retcode[8];
|
|
|
|
};
|
|
|
|
|
|
|
|
int setup_signal_stack_sc(unsigned long stack_top, int sig,
|
|
|
|
struct k_sigaction *ka, struct pt_regs *regs,
|
|
|
|
sigset_t *mask)
|
|
|
|
{
|
|
|
|
struct sigframe __user *frame;
|
2006-03-31 12:30:15 +02:00
|
|
|
void __user *restorer;
|
2006-03-27 11:14:38 +02:00
|
|
|
unsigned long save_sp = PT_REGS_SP(regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
int err = 0;
|
|
|
|
|
2007-01-30 23:36:17 +01:00
|
|
|
/* This is the same calculation as i386 - ((sp + 4) & 15) == 0 */
|
|
|
|
stack_top = ((stack_top + 4) & -16UL) - 4;
|
2006-03-31 12:30:15 +02:00
|
|
|
frame = (struct sigframe __user *) stack_top - 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
|
|
|
|
return 1;
|
|
|
|
|
2006-03-31 12:30:15 +02:00
|
|
|
restorer = frame->retcode;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ka->sa.sa_flags & SA_RESTORER)
|
2005-04-17 00:20:36 +02:00
|
|
|
restorer = ka->sa.sa_restorer;
|
|
|
|
|
2006-03-27 11:14:38 +02:00
|
|
|
/* Update SP now because the page fault handler refuses to extend
|
|
|
|
* the stack if the faulting address is too far below the current
|
|
|
|
* SP, which frame now certainly is. If there's an error, the original
|
|
|
|
* value is restored on the way out.
|
|
|
|
* When writing the sigcontext to the stack, we have to write the
|
|
|
|
* original value, so that's passed to copy_sc_to_user, which does
|
|
|
|
* the right thing with it.
|
|
|
|
*/
|
|
|
|
PT_REGS_SP(regs) = (unsigned long) frame;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
err |= __put_user(restorer, &frame->pretcode);
|
|
|
|
err |= __put_user(sig, &frame->sig);
|
2006-03-27 11:14:38 +02:00
|
|
|
err |= copy_sc_to_user(&frame->sc, NULL, regs, save_sp);
|
2005-04-17 00:20:36 +02:00
|
|
|
err |= __put_user(mask->sig[0], &frame->sc.oldmask);
|
|
|
|
if (_NSIG_WORDS > 1)
|
|
|
|
err |= __copy_to_user(&frame->extramask, &mask->sig[1],
|
|
|
|
sizeof(frame->extramask));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is popl %eax ; movl $,%eax ; int $0x80
|
|
|
|
*
|
|
|
|
* 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));
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err)
|
2006-03-27 11:14:38 +02:00
|
|
|
goto err;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
PT_REGS_SP(regs) = (unsigned long) frame;
|
|
|
|
PT_REGS_IP(regs) = (unsigned long) ka->sa.sa_handler;
|
|
|
|
PT_REGS_EAX(regs) = (unsigned long) sig;
|
|
|
|
PT_REGS_EDX(regs) = (unsigned long) 0;
|
|
|
|
PT_REGS_ECX(regs) = (unsigned long) 0;
|
|
|
|
|
|
|
|
if ((current->ptrace & PT_DTRACE) && (current->ptrace & PT_PTRACED))
|
|
|
|
ptrace_notify(SIGTRAP);
|
2006-03-27 11:14:38 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
PT_REGS_SP(regs) = save_sp;
|
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int setup_signal_stack_si(unsigned long stack_top, int sig,
|
|
|
|
struct k_sigaction *ka, struct pt_regs *regs,
|
|
|
|
siginfo_t *info, sigset_t *mask)
|
|
|
|
{
|
|
|
|
struct rt_sigframe __user *frame;
|
2006-03-31 12:30:15 +02:00
|
|
|
void __user *restorer;
|
2006-03-27 11:14:38 +02:00
|
|
|
unsigned long save_sp = PT_REGS_SP(regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
stack_top &= -8UL;
|
2006-03-31 12:30:15 +02:00
|
|
|
frame = (struct rt_sigframe __user *) stack_top - 1;
|
2005-04-17 00:20:36 +02:00
|
|
|
if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
|
|
|
|
return 1;
|
|
|
|
|
2006-03-31 12:30:15 +02:00
|
|
|
restorer = frame->retcode;
|
2007-10-16 10:27:00 +02:00
|
|
|
if (ka->sa.sa_flags & SA_RESTORER)
|
2005-04-17 00:20:36 +02:00
|
|
|
restorer = ka->sa.sa_restorer;
|
|
|
|
|
2006-03-27 11:14:38 +02:00
|
|
|
/* See comment above about why this is here */
|
|
|
|
PT_REGS_SP(regs) = (unsigned long) frame;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
err |= __put_user(restorer, &frame->pretcode);
|
|
|
|
err |= __put_user(sig, &frame->sig);
|
|
|
|
err |= __put_user(&frame->info, &frame->pinfo);
|
|
|
|
err |= __put_user(&frame->uc, &frame->puc);
|
|
|
|
err |= copy_siginfo_to_user(&frame->info, info);
|
|
|
|
err |= copy_ucontext_to_user(&frame->uc, &frame->fpstate, mask,
|
2006-03-27 11:14:38 +02:00
|
|
|
save_sp);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is movl $,%eax ; int $0x80
|
|
|
|
*
|
|
|
|
* 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));
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err)
|
2006-03-27 11:14:38 +02:00
|
|
|
goto err;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
PT_REGS_IP(regs) = (unsigned long) ka->sa.sa_handler;
|
|
|
|
PT_REGS_EAX(regs) = (unsigned long) sig;
|
|
|
|
PT_REGS_EDX(regs) = (unsigned long) &frame->info;
|
|
|
|
PT_REGS_ECX(regs) = (unsigned long) &frame->uc;
|
|
|
|
|
|
|
|
if ((current->ptrace & PT_DTRACE) && (current->ptrace & PT_PTRACED))
|
|
|
|
ptrace_notify(SIGTRAP);
|
2006-03-27 11:14:38 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
PT_REGS_SP(regs) = save_sp;
|
|
|
|
return err;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
long sys_sigreturn(struct pt_regs regs)
|
|
|
|
{
|
|
|
|
unsigned long sp = PT_REGS_SP(¤t->thread.regs);
|
2006-03-31 12:30:15 +02:00
|
|
|
struct sigframe __user *frame = (struct sigframe __user *)(sp - 8);
|
2005-04-17 00:20:36 +02:00
|
|
|
sigset_t set;
|
|
|
|
struct sigcontext __user *sc = &frame->sc;
|
|
|
|
unsigned long __user *oldmask = &sc->oldmask;
|
|
|
|
unsigned long __user *extramask = frame->extramask;
|
|
|
|
int sig_size = (_NSIG_WORDS - 1) * sizeof(unsigned long);
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_from_user(&set.sig[0], oldmask, sizeof(set.sig[0])) ||
|
|
|
|
copy_from_user(&set.sig[1], extramask, sig_size))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto segfault;
|
|
|
|
|
|
|
|
sigdelsetmask(&set, ~_BLOCKABLE);
|
|
|
|
|
|
|
|
spin_lock_irq(¤t->sighand->siglock);
|
|
|
|
current->blocked = set;
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irq(¤t->sighand->siglock);
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_sc_from_user(¤t->thread.regs, sc))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto segfault;
|
|
|
|
|
|
|
|
/* Avoid ERESTART handling */
|
|
|
|
PT_REGS_SYSCALL_NR(¤t->thread.regs) = -1;
|
2007-05-06 23:51:24 +02:00
|
|
|
return PT_REGS_SYSCALL_RET(¤t->thread.regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
segfault:
|
|
|
|
force_sig(SIGSEGV, current);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
long sys_rt_sigreturn(struct pt_regs regs)
|
|
|
|
{
|
2006-03-31 12:30:15 +02:00
|
|
|
unsigned long sp = PT_REGS_SP(¤t->thread.regs);
|
2007-10-16 10:27:00 +02:00
|
|
|
struct rt_sigframe __user *frame =
|
|
|
|
(struct rt_sigframe __user *) (sp - 4);
|
2005-04-17 00:20:36 +02:00
|
|
|
sigset_t set;
|
|
|
|
struct ucontext __user *uc = &frame->uc;
|
|
|
|
int sig_size = _NSIG_WORDS * sizeof(unsigned long);
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_from_user(&set, &uc->uc_sigmask, sig_size))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto segfault;
|
|
|
|
|
|
|
|
sigdelsetmask(&set, ~_BLOCKABLE);
|
|
|
|
|
|
|
|
spin_lock_irq(¤t->sighand->siglock);
|
|
|
|
current->blocked = set;
|
|
|
|
recalc_sigpending();
|
|
|
|
spin_unlock_irq(¤t->sighand->siglock);
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
if (copy_sc_from_user(¤t->thread.regs, &uc->uc_mcontext))
|
2005-04-17 00:20:36 +02:00
|
|
|
goto segfault;
|
|
|
|
|
|
|
|
/* Avoid ERESTART handling */
|
|
|
|
PT_REGS_SYSCALL_NR(¤t->thread.regs) = -1;
|
2007-05-06 23:51:24 +02:00
|
|
|
return PT_REGS_SYSCALL_RET(¤t->thread.regs);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
segfault:
|
|
|
|
force_sig(SIGSEGV, current);
|
|
|
|
return 0;
|
|
|
|
}
|