blob: d505f501077a67bc77b01729a724b61eb6e26b7a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _I386_PTRACE_H
2#define _I386_PTRACE_H
3
Jeff Dike70e0eb82006-09-25 23:33:09 -07004#include <asm/ptrace-abi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
6/* this struct defines the way the registers are stored on the
7 stack during a system call. */
8
9struct pt_regs {
10 long ebx;
11 long ecx;
12 long edx;
13 long esi;
14 long edi;
15 long ebp;
16 long eax;
17 int xds;
18 int xes;
19 long orig_eax;
20 long eip;
21 int xcs;
22 long eflags;
23 long esp;
24 int xss;
25};
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#ifdef __KERNEL__
Andrew Morton388b0922005-07-27 11:43:25 -070028
29#include <asm/vm86.h>
Rusty Russell78be3702006-09-26 10:52:39 +020030#include <asm/segment.h>
Andrew Morton388b0922005-07-27 11:43:25 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct task_struct;
33extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code);
Chuck Ebbertae6578f2005-07-26 21:57:24 -040034
Zachary Amsden0998e422005-09-03 15:56:43 -070035/*
36 * user_mode_vm(regs) determines whether a register set came from user mode.
37 * This is true if V8086 mode was enabled OR if the register set was from
38 * protected mode with RPL-3 CS value. This tricky test checks that with
39 * one comparison. Many places in the kernel can bypass this full check
40 * if they have already ruled out V8086 mode, so user_mode(regs) can be used.
41 */
Chuck Ebbertae6578f2005-07-26 21:57:24 -040042static inline int user_mode(struct pt_regs *regs)
43{
Rusty Russell78be3702006-09-26 10:52:39 +020044 return (regs->xcs & SEGMENT_RPL_MASK) == USER_RPL;
Chuck Ebbertae6578f2005-07-26 21:57:24 -040045}
46static inline int user_mode_vm(struct pt_regs *regs)
47{
Rusty Russell78be3702006-09-26 10:52:39 +020048 return ((regs->xcs & SEGMENT_RPL_MASK) | (regs->eflags & VM_MASK)) >= USER_RPL;
Chuck Ebbertae6578f2005-07-26 21:57:24 -040049}
Ananth N Mavinakayanahallib3f827c2006-10-02 02:17:31 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define instruction_pointer(regs) ((regs)->eip)
Ananth N Mavinakayanahallib3f827c2006-10-02 02:17:31 -070052#define regs_return_value(regs) ((regs)->eax)
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054extern unsigned long profile_pc(struct pt_regs *regs);
Chuck Ebbertae6578f2005-07-26 21:57:24 -040055#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#endif