ptrace.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _X86_64_PTRACE_H
  2. #define _X86_64_PTRACE_H
  3. #if defined(__ASSEMBLY__) || defined(__FRAME_OFFSETS) 
  4. #define R15 0
  5. #define R14 8
  6. #define R13 16
  7. #define R12 24
  8. #define RBP 36
  9. #define RBX 40
  10. /* arguments: interrupts/non tracing syscalls only save upto here*/
  11. #define R11 48
  12. #define R10 56
  13. #define R9 64
  14. #define R8 72
  15. #define RAX 80
  16. #define RCX 88
  17. #define RDX 96
  18. #define RSI 104
  19. #define RDI 112
  20. #define ORIG_RAX 120       /* = ERROR */ 
  21. /* end of arguments */ 
  22. /* cpu exception frame or undefined in case of fast syscall. */
  23. #define RIP 128
  24. #define CS 136
  25. #define EFLAGS 144
  26. #define RSP 152
  27. #define SS 160
  28. #define ARGOFFSET R11
  29. #endif /* __ASSEMBLY__ */
  30. /* top of stack page */ 
  31. #define FRAME_SIZE 168
  32. #define PTRACE_SETOPTIONS         21
  33. /* options set using PTRACE_SETOPTIONS */
  34. #define PTRACE_O_TRACESYSGOOD     0x00000001
  35. /* Dummy values for ptrace */ 
  36. #define FS 1000 
  37. #define GS 1008
  38. #ifndef __ASSEMBLY__ 
  39. struct pt_regs {
  40. unsigned long r15;
  41. unsigned long r14;
  42. unsigned long r13;
  43. unsigned long r12;
  44. unsigned long rbp;
  45. unsigned long rbx;
  46. /* arguments: non interrupts/non tracing syscalls only save upto here*/
  47.   unsigned long r11;
  48. unsigned long r10;
  49. unsigned long r9;
  50. unsigned long r8;
  51. unsigned long rax;
  52. unsigned long rcx;
  53. unsigned long rdx;
  54. unsigned long rsi;
  55. unsigned long rdi;
  56. unsigned long orig_rax;
  57. /* end of arguments */ 
  58. /* cpu exception frame or undefined */
  59. unsigned long rip;
  60. unsigned long cs;
  61. unsigned long eflags; 
  62. unsigned long rsp; 
  63. unsigned long ss;
  64. /* top of stack page */ 
  65. };
  66. #endif
  67. /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
  68. #define PTRACE_GETREGS            12
  69. #define PTRACE_SETREGS            13
  70. #define PTRACE_GETFPREGS          14
  71. #define PTRACE_SETFPREGS          15
  72. #define PTRACE_GETFPXREGS         18
  73. #define PTRACE_SETFPXREGS         19
  74. #if defined(__KERNEL__) && !defined(__ASSEMBLY__) 
  75. #define user_mode(regs) (!!((regs)->cs & 3))
  76. #define instruction_pointer(regs) ((regs)->rip)
  77. extern void show_regs(struct pt_regs *);
  78. enum {
  79.         EF_CF   = 0x00000001,
  80.         EF_PF   = 0x00000004,
  81.         EF_AF   = 0x00000010,
  82.         EF_ZF   = 0x00000040,
  83.         EF_SF   = 0x00000080,
  84.         EF_TF   = 0x00000100,
  85.         EF_IE   = 0x00000200,
  86.         EF_DF   = 0x00000400,
  87.         EF_OF   = 0x00000800,
  88.         EF_IOPL = 0x00003000,
  89.         EF_IOPL_RING0 = 0x00000000,
  90.         EF_IOPL_RING1 = 0x00001000,
  91.         EF_IOPL_RING2 = 0x00002000,
  92.         EF_NT   = 0x00004000,   /* nested task */
  93.         EF_RF   = 0x00010000,   /* resume */
  94.         EF_VM   = 0x00020000,   /* virtual mode */
  95.         EF_AC   = 0x00040000,   /* alignment */
  96.         EF_VIF  = 0x00080000,   /* virtual interrupt */
  97.         EF_VIP  = 0x00100000,   /* virtual interrupt pending */
  98.         EF_ID   = 0x00200000,   /* id */
  99. };
  100. #endif
  101. #endif