ptrace_32.h 1.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _I386_PTRACE_H
#define _I386_PTRACE_H

4
#include <asm/ptrace-abi.h>
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18

/* this struct defines the way the registers are stored on the 
   stack during a system call. */

struct pt_regs {
	long ebx;
	long ecx;
	long edx;
	long esi;
	long edi;
	long ebp;
	long eax;
	int  xds;
	int  xes;
19 20
	int  xfs;
	/* int  xgs; */
L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29
	long orig_eax;
	long eip;
	int  xcs;
	long eflags;
	long esp;
	int  xss;
};

#ifdef __KERNEL__
A
Andrew Morton 已提交
30 31

#include <asm/vm86.h>
32
#include <asm/segment.h>
A
Andrew Morton 已提交
33

L
Linus Torvalds 已提交
34 35
struct task_struct;
extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code);
36

Z
Zachary Amsden 已提交
37 38 39 40 41 42 43
/*
 * user_mode_vm(regs) determines whether a register set came from user mode.
 * This is true if V8086 mode was enabled OR if the register set was from
 * protected mode with RPL-3 CS value.  This tricky test checks that with
 * one comparison.  Many places in the kernel can bypass this full check
 * if they have already ruled out V8086 mode, so user_mode(regs) can be used.
 */
44 45
static inline int user_mode(struct pt_regs *regs)
{
46
	return (regs->xcs & SEGMENT_RPL_MASK) == USER_RPL;
47 48 49
}
static inline int user_mode_vm(struct pt_regs *regs)
{
50
	return ((regs->xcs & SEGMENT_RPL_MASK) | (regs->eflags & VM_MASK)) >= USER_RPL;
51
}
52 53 54 55
static inline int v8086_mode(struct pt_regs *regs)
{
	return (regs->eflags & VM_MASK);
}
56

L
Linus Torvalds 已提交
57
#define instruction_pointer(regs) ((regs)->eip)
58 59
#define frame_pointer(regs) ((regs)->ebp)
#define stack_pointer(regs) ((regs)->esp)
60 61
#define regs_return_value(regs) ((regs)->eax)

L
Linus Torvalds 已提交
62
extern unsigned long profile_pc(struct pt_regs *regs);
63
#endif /* __KERNEL__ */
L
Linus Torvalds 已提交
64 65

#endif