ptrace.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_PTRACE_H
  2. #define _LINUX_PTRACE_H
  3. /* ptrace.h */
  4. /* structs and defines to help the user use the ptrace system call. */
  5. /* has the defines to get at the registers. */
  6. #define PTRACE_TRACEME    0
  7. #define PTRACE_PEEKTEXT    1
  8. #define PTRACE_PEEKDATA    2
  9. #define PTRACE_PEEKUSR    3
  10. #define PTRACE_POKETEXT    4
  11. #define PTRACE_POKEDATA    5
  12. #define PTRACE_POKEUSR    6
  13. #define PTRACE_CONT    7
  14. #define PTRACE_KILL    8
  15. #define PTRACE_SINGLESTEP    9
  16. #define PTRACE_ATTACH 0x10
  17. #define PTRACE_DETACH 0x11
  18. #define PTRACE_SYSCALL   24
  19. #define PTRACE_SYSEMU   31
  20. #define PTRACE_SYSEMU_SINGLESTEP  32
  21. /* 0x4200-0x4300 are reserved for architecture-independent additions.  */
  22. #define PTRACE_SETOPTIONS 0x4200
  23. #define PTRACE_GETEVENTMSG 0x4201
  24. #define PTRACE_GETSIGINFO 0x4202
  25. #define PTRACE_SETSIGINFO 0x4203
  26. /* options set using PTRACE_SETOPTIONS */
  27. #define PTRACE_O_TRACESYSGOOD 0x00000001
  28. #define PTRACE_O_TRACEFORK 0x00000002
  29. #define PTRACE_O_TRACEVFORK 0x00000004
  30. #define PTRACE_O_TRACECLONE 0x00000008
  31. #define PTRACE_O_TRACEEXEC 0x00000010
  32. #define PTRACE_O_TRACEVFORKDONE 0x00000020
  33. #define PTRACE_O_TRACEEXIT 0x00000040
  34. #define PTRACE_O_MASK 0x0000007f
  35. /* Wait extended result codes for the above trace options.  */
  36. #define PTRACE_EVENT_FORK 1
  37. #define PTRACE_EVENT_VFORK 2
  38. #define PTRACE_EVENT_CLONE 3
  39. #define PTRACE_EVENT_EXEC 4
  40. #define PTRACE_EVENT_VFORK_DONE 5
  41. #define PTRACE_EVENT_EXIT 6
  42. #include <asm/ptrace.h>
  43. #ifdef __KERNEL__
  44. /*
  45.  * Ptrace flags
  46.  */
  47. #define PT_PTRACED 0x00000001
  48. #define PT_DTRACE 0x00000002 /* delayed trace (used on m68k, i386) */
  49. #define PT_TRACESYSGOOD 0x00000004
  50. #define PT_PTRACE_CAP 0x00000008 /* ptracer can follow suid-exec */
  51. #define PT_TRACE_FORK 0x00000010
  52. #define PT_TRACE_VFORK 0x00000020
  53. #define PT_TRACE_CLONE 0x00000040
  54. #define PT_TRACE_EXEC 0x00000080
  55. #define PT_TRACE_VFORK_DONE 0x00000100
  56. #define PT_TRACE_EXIT 0x00000200
  57. #define PT_ATTACHED 0x00000400 /* parent != real_parent */
  58. #define PT_TRACE_MASK 0x000003f4
  59. /* single stepping state bits (used on ARM and PA-RISC) */
  60. #define PT_SINGLESTEP_BIT 31
  61. #define PT_SINGLESTEP (1<<PT_SINGLESTEP_BIT)
  62. #define PT_BLOCKSTEP_BIT 30
  63. #define PT_BLOCKSTEP (1<<PT_BLOCKSTEP_BIT)
  64. #include <linux/compiler.h> /* For unlikely.  */
  65. #include <linux/sched.h> /* For struct task_struct.  */
  66. extern int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len);
  67. extern int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len);
  68. extern int ptrace_attach(struct task_struct *tsk);
  69. extern int ptrace_detach(struct task_struct *, unsigned int);
  70. extern void ptrace_disable(struct task_struct *);
  71. extern int ptrace_check_attach(struct task_struct *task, int kill);
  72. extern int ptrace_request(struct task_struct *child, long request, long addr, long data);
  73. extern void ptrace_notify(int exit_code);
  74. extern void __ptrace_link(struct task_struct *child,
  75.   struct task_struct *new_parent);
  76. extern void __ptrace_unlink(struct task_struct *child);
  77. extern void ptrace_untrace(struct task_struct *child);
  78. extern int ptrace_may_attach(struct task_struct *task);
  79. static inline void ptrace_link(struct task_struct *child,
  80.        struct task_struct *new_parent)
  81. {
  82. if (unlikely(child->ptrace))
  83. __ptrace_link(child, new_parent);
  84. }
  85. static inline void ptrace_unlink(struct task_struct *child)
  86. {
  87. if (unlikely(child->ptrace))
  88. __ptrace_unlink(child);
  89. }
  90. #ifndef force_successful_syscall_return
  91. /*
  92.  * System call handlers that, upon successful completion, need to return a
  93.  * negative value should call force_successful_syscall_return() right before
  94.  * returning.  On architectures where the syscall convention provides for a
  95.  * separate error flag (e.g., alpha, ia64, ppc{,64}, sparc{,64}, possibly
  96.  * others), this macro can be used to ensure that the error flag will not get
  97.  * set.  On architectures which do not support a separate error flag, the macro
  98.  * is a no-op and the spurious error condition needs to be filtered out by some
  99.  * other means (e.g., in user-level, by passing an extra argument to the
  100.  * syscall handler, or something along those lines).
  101.  */
  102. #define force_successful_syscall_return() do { } while (0)
  103. #endif
  104. #endif
  105. #endif