Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _I386_PTRACE_H |
| 2 | #define _I386_PTRACE_H |
| 3 | |
Jeff Dike | 70e0eb8 | 2006-09-25 23:33:09 -0700 | [diff] [blame] | 4 | #include <asm/ptrace-abi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | |
| 6 | /* this struct defines the way the registers are stored on the |
| 7 | stack during a system call. */ |
| 8 | |
| 9 | struct 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; |
Jeremy Fitzhardinge | 464d1a7 | 2007-02-13 13:26:20 +0100 | [diff] [blame] | 19 | int xfs; |
| 20 | /* int xgs; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | long orig_eax; |
| 22 | long eip; |
| 23 | int xcs; |
| 24 | long eflags; |
| 25 | long esp; |
| 26 | int xss; |
| 27 | }; |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #ifdef __KERNEL__ |
Andrew Morton | 388b092 | 2005-07-27 11:43:25 -0700 | [diff] [blame] | 30 | |
| 31 | #include <asm/vm86.h> |
Rusty Russell | 78be370 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 32 | #include <asm/segment.h> |
Andrew Morton | 388b092 | 2005-07-27 11:43:25 -0700 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct task_struct; |
| 35 | extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code); |
Chuck Ebbert | ae6578f | 2005-07-26 21:57:24 -0400 | [diff] [blame] | 36 | |
Zachary Amsden | 0998e42 | 2005-09-03 15:56:43 -0700 | [diff] [blame] | 37 | /* |
| 38 | * user_mode_vm(regs) determines whether a register set came from user mode. |
| 39 | * This is true if V8086 mode was enabled OR if the register set was from |
| 40 | * protected mode with RPL-3 CS value. This tricky test checks that with |
| 41 | * one comparison. Many places in the kernel can bypass this full check |
| 42 | * if they have already ruled out V8086 mode, so user_mode(regs) can be used. |
| 43 | */ |
Chuck Ebbert | ae6578f | 2005-07-26 21:57:24 -0400 | [diff] [blame] | 44 | static inline int user_mode(struct pt_regs *regs) |
| 45 | { |
Rusty Russell | 78be370 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 46 | return (regs->xcs & SEGMENT_RPL_MASK) == USER_RPL; |
Chuck Ebbert | ae6578f | 2005-07-26 21:57:24 -0400 | [diff] [blame] | 47 | } |
| 48 | static inline int user_mode_vm(struct pt_regs *regs) |
| 49 | { |
Rusty Russell | 78be370 | 2006-09-26 10:52:39 +0200 | [diff] [blame] | 50 | return ((regs->xcs & SEGMENT_RPL_MASK) | (regs->eflags & VM_MASK)) >= USER_RPL; |
Chuck Ebbert | ae6578f | 2005-07-26 21:57:24 -0400 | [diff] [blame] | 51 | } |
Zachary Amsden | 7b35520 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 52 | static inline int v8086_mode(struct pt_regs *regs) |
| 53 | { |
| 54 | return (regs->eflags & VM_MASK); |
| 55 | } |
Ananth N Mavinakayanahalli | b3f827c | 2006-10-02 02:17:31 -0700 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #define instruction_pointer(regs) ((regs)->eip) |
Ananth N Mavinakayanahalli | b3f827c | 2006-10-02 02:17:31 -0700 | [diff] [blame] | 58 | #define regs_return_value(regs) ((regs)->eax) |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | extern unsigned long profile_pc(struct pt_regs *regs); |
Chuck Ebbert | ae6578f | 2005-07-26 21:57:24 -0400 | [diff] [blame] | 61 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | #endif |