2005-04-17 06:20:36 +08: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 16:26:50 +08:00
|
|
|
* Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SYSDEP_X86_64_PTRACE_H
|
|
|
|
#define __SYSDEP_X86_64_PTRACE_H
|
|
|
|
|
2011-08-19 03:01:19 +08:00
|
|
|
#include <generated/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 07:15:31 +08:00
|
|
|
#include "sysdep/faultinfo.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define MAX_REG_OFFSET (UM_FRAME_SIZE)
|
|
|
|
#define MAX_REG_NR ((MAX_REG_OFFSET) / sizeof(unsigned long))
|
|
|
|
|
|
|
|
#define REGS_IP(r) ((r)[HOST_IP])
|
|
|
|
#define REGS_SP(r) ((r)[HOST_SP])
|
|
|
|
|
2011-08-19 03:10:09 +08:00
|
|
|
#define REGS_RBX(r) ((r)[HOST_BX])
|
|
|
|
#define REGS_RCX(r) ((r)[HOST_CX])
|
|
|
|
#define REGS_RDX(r) ((r)[HOST_DX])
|
|
|
|
#define REGS_RSI(r) ((r)[HOST_SI])
|
|
|
|
#define REGS_RDI(r) ((r)[HOST_DI])
|
|
|
|
#define REGS_RBP(r) ((r)[HOST_BP])
|
|
|
|
#define REGS_RAX(r) ((r)[HOST_AX])
|
2005-04-17 06:20:36 +08:00
|
|
|
#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 16:50:35 +08: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 06:20:36 +08: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])
|
|
|
|
|
2011-08-19 03:12:19 +08:00
|
|
|
#define REGS_ORIG_RAX(r) ((r)[HOST_ORIG_AX])
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define REGS_SET_SYSCALL_RETURN(r, res) REGS_RAX(r) = (res)
|
|
|
|
|
2011-08-19 03:03:59 +08:00
|
|
|
#define IP_RESTART_SYSCALL(ip) ((ip) -= 2)
|
2005-04-17 06:20:36 +08:00
|
|
|
#define REGS_RESTART_SYSCALL(r) IP_RESTART_SYSCALL(REGS_IP(r))
|
|
|
|
|
|
|
|
#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 16:26:58 +08:00
|
|
|
struct uml_pt_regs {
|
2007-10-16 16:27:07 +08:00
|
|
|
unsigned long gp[MAX_REG_NR];
|
2011-09-15 07:21:23 +08:00
|
|
|
unsigned long fp[HOST_FP_SIZE];
|
2007-10-16 16:26:58 +08:00
|
|
|
struct faultinfo faultinfo;
|
|
|
|
long syscall;
|
|
|
|
int is_user;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define EMPTY_UML_PT_REGS { }
|
|
|
|
|
2007-10-16 16:27:07 +08: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 16:26:58 +08:00
|
|
|
#define UPT_SYSCALL_NR(r) ((r)->syscall)
|
2005-05-21 04:59:07 +08:00
|
|
|
#define UPT_SYSCALL_RET(r) UPT_RAX(r)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
extern int user_context(unsigned long sp);
|
|
|
|
|
2007-10-16 16:26:58 +08:00
|
|
|
#define UPT_IS_USER(r) ((r)->is_user)
|
2005-04-17 06:20:36 +08: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 16:27:08 +08: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 06:20:36 +08:00
|
|
|
|
2007-10-16 16:27:07 +08:00
|
|
|
#define UPT_RESTART_SYSCALL(r) REGS_RESTART_SYSCALL((r)->gp)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-16 16:26:58 +08:00
|
|
|
#define UPT_FAULTINFO(r) (&(r)->faultinfo)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-16 16:27:15 +08:00
|
|
|
static inline void arch_init_registers(int pid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|