2005-04-17 05:20:36 +07:00
|
|
|
/*
|
|
|
|
* Copyright 2003 PathScale, Inc.
|
uml: throw out CONFIG_MODE_TT
This patchset throws out tt mode, which has been non-functional for a while.
This is done in phases, interspersed with code cleanups on the affected files.
The removal is done as follows:
remove all code, config options, and files which depend on
CONFIG_MODE_TT
get rid of the CHOOSE_MODE macro, which decided whether to
call tt-mode or skas-mode code, and replace invocations with their
skas portions
replace all now-trivial procedures with their skas equivalents
There are now a bunch of now-redundant pieces of data structures, including
mode-specific pieces of the thread structure, pt_regs, and mm_context. These
are all replaced with their skas-specific contents.
As part of the ongoing style compliance project, I made a style pass over all
files that were changed. There are three such patches, one for each phase,
covering the files affected by that phase but no later ones.
I noticed that we weren't freeing the LDT state associated with a process when
it exited, so that's fixed in one of the later patches.
The last patch is a tidying patch which I've had for a while, but which caused
inexplicable crashes under tt mode. Since that is no longer a problem, this
can now go in.
This patch:
Start getting rid of tt mode support.
This patch throws out CONFIG_MODE_TT and all config options, code, and files
which depend on it.
CONFIG_MODE_SKAS is gone and everything that depends on it is included
unconditionally.
The few changed lines are in re-written Kconfig help, lines which needed
something skas-related removed from them, and a few more which weren't
strictly deletions.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-16 15:26:50 +07:00
|
|
|
* Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 05:20:36 +07:00
|
|
|
*
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SYSDEP_X86_64_PTRACE_H
|
|
|
|
#define __SYSDEP_X86_64_PTRACE_H
|
|
|
|
|
|
|
|
#include "uml-config.h"
|
|
|
|
#include "user_constants.h"
|
[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 06:15:31 +07:00
|
|
|
#include "sysdep/faultinfo.h"
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#define MAX_REG_OFFSET (UM_FRAME_SIZE)
|
|
|
|
#define MAX_REG_NR ((MAX_REG_OFFSET) / sizeof(unsigned long))
|
|
|
|
|
|
|
|
#include "skas_ptregs.h"
|
|
|
|
|
|
|
|
#define REGS_IP(r) ((r)[HOST_IP])
|
|
|
|
#define REGS_SP(r) ((r)[HOST_SP])
|
|
|
|
|
|
|
|
#define REGS_RBX(r) ((r)[HOST_RBX])
|
|
|
|
#define REGS_RCX(r) ((r)[HOST_RCX])
|
|
|
|
#define REGS_RDX(r) ((r)[HOST_RDX])
|
|
|
|
#define REGS_RSI(r) ((r)[HOST_RSI])
|
|
|
|
#define REGS_RDI(r) ((r)[HOST_RDI])
|
|
|
|
#define REGS_RBP(r) ((r)[HOST_RBP])
|
|
|
|
#define REGS_RAX(r) ((r)[HOST_RAX])
|
|
|
|
#define REGS_R8(r) ((r)[HOST_R8])
|
|
|
|
#define REGS_R9(r) ((r)[HOST_R9])
|
|
|
|
#define REGS_R10(r) ((r)[HOST_R10])
|
|
|
|
#define REGS_R11(r) ((r)[HOST_R11])
|
|
|
|
#define REGS_R12(r) ((r)[HOST_R12])
|
|
|
|
#define REGS_R13(r) ((r)[HOST_R13])
|
|
|
|
#define REGS_R14(r) ((r)[HOST_R14])
|
|
|
|
#define REGS_R15(r) ((r)[HOST_R15])
|
|
|
|
#define REGS_CS(r) ((r)[HOST_CS])
|
|
|
|
#define REGS_EFLAGS(r) ((r)[HOST_EFLAGS])
|
|
|
|
#define REGS_SS(r) ((r)[HOST_SS])
|
|
|
|
|
|
|
|
#define HOST_FS_BASE 21
|
|
|
|
#define HOST_GS_BASE 22
|
|
|
|
#define HOST_DS 23
|
|
|
|
#define HOST_ES 24
|
|
|
|
#define HOST_FS 25
|
|
|
|
#define HOST_GS 26
|
|
|
|
|
2006-09-27 15:50:35 +07:00
|
|
|
/* Also defined in asm/ptrace-x86_64.h, but not in libc headers. So, these
|
|
|
|
* are already defined for kernel code, but not for userspace code.
|
|
|
|
*/
|
|
|
|
#ifndef FS_BASE
|
|
|
|
/* These aren't defined in ptrace.h, but exist in struct user_regs_struct,
|
|
|
|
* which is what x86_64 ptrace actually uses.
|
|
|
|
*/
|
|
|
|
#define FS_BASE (HOST_FS_BASE * sizeof(long))
|
|
|
|
#define GS_BASE (HOST_GS_BASE * sizeof(long))
|
|
|
|
#define DS (HOST_DS * sizeof(long))
|
|
|
|
#define ES (HOST_ES * sizeof(long))
|
|
|
|
#define FS (HOST_FS * sizeof(long))
|
|
|
|
#define GS (HOST_GS * sizeof(long))
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
#define REGS_FS_BASE(r) ((r)[HOST_FS_BASE])
|
|
|
|
#define REGS_GS_BASE(r) ((r)[HOST_GS_BASE])
|
|
|
|
#define REGS_DS(r) ((r)[HOST_DS])
|
|
|
|
#define REGS_ES(r) ((r)[HOST_ES])
|
|
|
|
#define REGS_FS(r) ((r)[HOST_FS])
|
|
|
|
#define REGS_GS(r) ((r)[HOST_GS])
|
|
|
|
|
|
|
|
#define REGS_ORIG_RAX(r) ((r)[HOST_ORIG_RAX])
|
|
|
|
|
|
|
|
#define REGS_SET_SYSCALL_RETURN(r, res) REGS_RAX(r) = (res)
|
|
|
|
|
|
|
|
#define REGS_RESTART_SYSCALL(r) IP_RESTART_SYSCALL(REGS_IP(r))
|
|
|
|
|
|
|
|
#define REGS_SEGV_IS_FIXABLE(r) SEGV_IS_FIXABLE((r)->trap_type)
|
|
|
|
|
|
|
|
#define REGS_FAULT_ADDR(r) ((r)->fault_addr)
|
|
|
|
|
|
|
|
#define REGS_FAULT_WRITE(r) FAULT_WRITE((r)->fault_type)
|
|
|
|
|
|
|
|
#define REGS_TRAP(r) ((r)->trap_type)
|
|
|
|
|
|
|
|
#define REGS_ERR(r) ((r)->fault_type)
|
|
|
|
|
2007-10-16 15:26:58 +07:00
|
|
|
struct uml_pt_regs {
|
2007-10-16 15:27:07 +07:00
|
|
|
unsigned long gp[MAX_REG_NR];
|
2007-10-16 15:26:58 +07:00
|
|
|
struct faultinfo faultinfo;
|
|
|
|
long syscall;
|
|
|
|
int is_user;
|
2005-04-17 05:20:36 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
#define EMPTY_UML_PT_REGS { }
|
|
|
|
|
2007-10-16 15:27:07 +07:00
|
|
|
#define UPT_RBX(r) REGS_RBX((r)->gp)
|
|
|
|
#define UPT_RCX(r) REGS_RCX((r)->gp)
|
|
|
|
#define UPT_RDX(r) REGS_RDX((r)->gp)
|
|
|
|
#define UPT_RSI(r) REGS_RSI((r)->gp)
|
|
|
|
#define UPT_RDI(r) REGS_RDI((r)->gp)
|
|
|
|
#define UPT_RBP(r) REGS_RBP((r)->gp)
|
|
|
|
#define UPT_RAX(r) REGS_RAX((r)->gp)
|
|
|
|
#define UPT_R8(r) REGS_R8((r)->gp)
|
|
|
|
#define UPT_R9(r) REGS_R9((r)->gp)
|
|
|
|
#define UPT_R10(r) REGS_R10((r)->gp)
|
|
|
|
#define UPT_R11(r) REGS_R11((r)->gp)
|
|
|
|
#define UPT_R12(r) REGS_R12((r)->gp)
|
|
|
|
#define UPT_R13(r) REGS_R13((r)->gp)
|
|
|
|
#define UPT_R14(r) REGS_R14((r)->gp)
|
|
|
|
#define UPT_R15(r) REGS_R15((r)->gp)
|
|
|
|
#define UPT_CS(r) REGS_CS((r)->gp)
|
|
|
|
#define UPT_FS_BASE(r) REGS_FS_BASE((r)->gp)
|
|
|
|
#define UPT_FS(r) REGS_FS((r)->gp)
|
|
|
|
#define UPT_GS_BASE(r) REGS_GS_BASE((r)->gp)
|
|
|
|
#define UPT_GS(r) REGS_GS((r)->gp)
|
|
|
|
#define UPT_DS(r) REGS_DS((r)->gp)
|
|
|
|
#define UPT_ES(r) REGS_ES((r)->gp)
|
|
|
|
#define UPT_CS(r) REGS_CS((r)->gp)
|
|
|
|
#define UPT_SS(r) REGS_SS((r)->gp)
|
|
|
|
#define UPT_ORIG_RAX(r) REGS_ORIG_RAX((r)->gp)
|
|
|
|
|
|
|
|
#define UPT_IP(r) REGS_IP((r)->gp)
|
|
|
|
#define UPT_SP(r) REGS_SP((r)->gp)
|
|
|
|
|
|
|
|
#define UPT_EFLAGS(r) REGS_EFLAGS((r)->gp)
|
2007-10-16 15:26:58 +07:00
|
|
|
#define UPT_SYSCALL_NR(r) ((r)->syscall)
|
2005-05-21 03:59:07 +07:00
|
|
|
#define UPT_SYSCALL_RET(r) UPT_RAX(r)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
extern int user_context(unsigned long sp);
|
|
|
|
|
2007-10-16 15:26:58 +07:00
|
|
|
#define UPT_IS_USER(r) ((r)->is_user)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#define UPT_SYSCALL_ARG1(r) UPT_RDI(r)
|
|
|
|
#define UPT_SYSCALL_ARG2(r) UPT_RSI(r)
|
|
|
|
#define UPT_SYSCALL_ARG3(r) UPT_RDX(r)
|
|
|
|
#define UPT_SYSCALL_ARG4(r) UPT_R10(r)
|
|
|
|
#define UPT_SYSCALL_ARG5(r) UPT_R8(r)
|
|
|
|
#define UPT_SYSCALL_ARG6(r) UPT_R9(r)
|
|
|
|
|
|
|
|
struct syscall_args {
|
|
|
|
unsigned long args[6];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SYSCALL_ARGS(r) ((struct syscall_args) \
|
2007-10-16 15:27:08 +07:00
|
|
|
{ .args = { UPT_SYSCALL_ARG1(r), \
|
|
|
|
UPT_SYSCALL_ARG2(r), \
|
|
|
|
UPT_SYSCALL_ARG3(r), \
|
|
|
|
UPT_SYSCALL_ARG4(r), \
|
|
|
|
UPT_SYSCALL_ARG5(r), \
|
|
|
|
UPT_SYSCALL_ARG6(r) } } )
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#define UPT_REG(regs, reg) \
|
2007-10-16 15:27:08 +07:00
|
|
|
({ unsigned long val; \
|
|
|
|
switch(reg){ \
|
|
|
|
case R8: val = UPT_R8(regs); break; \
|
|
|
|
case R9: val = UPT_R9(regs); break; \
|
|
|
|
case R10: val = UPT_R10(regs); break; \
|
|
|
|
case R11: val = UPT_R11(regs); break; \
|
|
|
|
case R12: val = UPT_R12(regs); break; \
|
|
|
|
case R13: val = UPT_R13(regs); break; \
|
|
|
|
case R14: val = UPT_R14(regs); break; \
|
|
|
|
case R15: val = UPT_R15(regs); break; \
|
|
|
|
case RIP: val = UPT_IP(regs); break; \
|
|
|
|
case RSP: val = UPT_SP(regs); break; \
|
|
|
|
case RAX: val = UPT_RAX(regs); break; \
|
|
|
|
case RBX: val = UPT_RBX(regs); break; \
|
|
|
|
case RCX: val = UPT_RCX(regs); break; \
|
|
|
|
case RDX: val = UPT_RDX(regs); break; \
|
|
|
|
case RSI: val = UPT_RSI(regs); break; \
|
|
|
|
case RDI: val = UPT_RDI(regs); break; \
|
|
|
|
case RBP: val = UPT_RBP(regs); break; \
|
|
|
|
case ORIG_RAX: val = UPT_ORIG_RAX(regs); break; \
|
|
|
|
case CS: val = UPT_CS(regs); break; \
|
|
|
|
case SS: val = UPT_SS(regs); break; \
|
|
|
|
case FS_BASE: val = UPT_FS_BASE(regs); break; \
|
|
|
|
case GS_BASE: val = UPT_GS_BASE(regs); break; \
|
|
|
|
case DS: val = UPT_DS(regs); break; \
|
|
|
|
case ES: val = UPT_ES(regs); break; \
|
|
|
|
case FS : val = UPT_FS (regs); break; \
|
|
|
|
case GS: val = UPT_GS(regs); break; \
|
|
|
|
case EFLAGS: val = UPT_EFLAGS(regs); break; \
|
|
|
|
default : \
|
|
|
|
panic("Bad register in UPT_REG : %d\n", reg); \
|
|
|
|
val = -1; \
|
|
|
|
} \
|
|
|
|
val; \
|
|
|
|
})
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
|
|
|
|
#define UPT_SET(regs, reg, val) \
|
2007-10-16 15:27:08 +07:00
|
|
|
({ unsigned long __upt_val = val; \
|
|
|
|
switch(reg){ \
|
|
|
|
case R8: UPT_R8(regs) = __upt_val; break; \
|
|
|
|
case R9: UPT_R9(regs) = __upt_val; break; \
|
|
|
|
case R10: UPT_R10(regs) = __upt_val; break; \
|
|
|
|
case R11: UPT_R11(regs) = __upt_val; break; \
|
|
|
|
case R12: UPT_R12(regs) = __upt_val; break; \
|
|
|
|
case R13: UPT_R13(regs) = __upt_val; break; \
|
|
|
|
case R14: UPT_R14(regs) = __upt_val; break; \
|
|
|
|
case R15: UPT_R15(regs) = __upt_val; break; \
|
|
|
|
case RIP: UPT_IP(regs) = __upt_val; break; \
|
|
|
|
case RSP: UPT_SP(regs) = __upt_val; break; \
|
|
|
|
case RAX: UPT_RAX(regs) = __upt_val; break; \
|
|
|
|
case RBX: UPT_RBX(regs) = __upt_val; break; \
|
|
|
|
case RCX: UPT_RCX(regs) = __upt_val; break; \
|
|
|
|
case RDX: UPT_RDX(regs) = __upt_val; break; \
|
|
|
|
case RSI: UPT_RSI(regs) = __upt_val; break; \
|
|
|
|
case RDI: UPT_RDI(regs) = __upt_val; break; \
|
|
|
|
case RBP: UPT_RBP(regs) = __upt_val; break; \
|
|
|
|
case ORIG_RAX: UPT_ORIG_RAX(regs) = __upt_val; break; \
|
|
|
|
case CS: UPT_CS(regs) = __upt_val; break; \
|
|
|
|
case SS: UPT_SS(regs) = __upt_val; break; \
|
|
|
|
case FS_BASE: UPT_FS_BASE(regs) = __upt_val; break; \
|
|
|
|
case GS_BASE: UPT_GS_BASE(regs) = __upt_val; break; \
|
|
|
|
case DS: UPT_DS(regs) = __upt_val; break; \
|
|
|
|
case ES: UPT_ES(regs) = __upt_val; break; \
|
|
|
|
case FS: UPT_FS(regs) = __upt_val; break; \
|
|
|
|
case GS: UPT_GS(regs) = __upt_val; break; \
|
|
|
|
case EFLAGS: UPT_EFLAGS(regs) = __upt_val; break; \
|
|
|
|
default : \
|
|
|
|
panic("Bad register in UPT_SET : %d\n", reg); \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
__upt_val; \
|
|
|
|
})
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#define UPT_SET_SYSCALL_RETURN(r, res) \
|
2007-10-16 15:26:58 +07:00
|
|
|
REGS_SET_SYSCALL_RETURN((r)->regs, (res))
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2007-10-16 15:27:07 +07:00
|
|
|
#define UPT_RESTART_SYSCALL(r) REGS_RESTART_SYSCALL((r)->gp)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2007-10-16 15:26:56 +07:00
|
|
|
#define UPT_SEGV_IS_FIXABLE(r) REGS_SEGV_IS_FIXABLE(&r->skas)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2007-10-16 15:26:58 +07:00
|
|
|
#define UPT_FAULTINFO(r) (&(r)->faultinfo)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2007-10-16 15:27:15 +07:00
|
|
|
static inline void arch_init_registers(int pid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
#endif
|