ptrace.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  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 16
  17. #define PTRACE_DETACH 17
  18. #define PTRACE_SYSCALL 24
  19. /* 0x4200-0x4300 are reserved for architecture-independent additions. */
  20. #define PTRACE_SETOPTIONS 0x4200
  21. #define PTRACE_GETEVENTMSG 0x4201
  22. #define PTRACE_GETSIGINFO 0x4202
  23. #define PTRACE_SETSIGINFO 0x4203
  24. /*
  25. * Generic ptrace interface that exports the architecture specific regsets
  26. * using the corresponding NT_* types (which are also used in the core dump).
  27. * Please note that the NT_PRSTATUS note type in a core dump contains a full
  28. * 'struct elf_prstatus'. But the user_regset for NT_PRSTATUS contains just the
  29. * elf_gregset_t that is the pr_reg field of 'struct elf_prstatus'. For all the
  30. * other user_regset flavors, the user_regset layout and the ELF core dump note
  31. * payload are exactly the same layout.
  32. *
  33. * This interface usage is as follows:
  34. * struct iovec iov = { buf, len};
  35. *
  36. * ret = ptrace(PTRACE_GETREGSET/PTRACE_SETREGSET, pid, NT_XXX_TYPE, &iov);
  37. *
  38. * On the successful completion, iov.len will be updated by the kernel,
  39. * specifying how much the kernel has written/read to/from the user's iov.buf.
  40. */
  41. #define PTRACE_GETREGSET 0x4204
  42. #define PTRACE_SETREGSET 0x4205
  43. /* options set using PTRACE_SETOPTIONS */
  44. #define PTRACE_O_TRACESYSGOOD 0x00000001
  45. #define PTRACE_O_TRACEFORK 0x00000002
  46. #define PTRACE_O_TRACEVFORK 0x00000004
  47. #define PTRACE_O_TRACECLONE 0x00000008
  48. #define PTRACE_O_TRACEEXEC 0x00000010
  49. #define PTRACE_O_TRACEVFORKDONE 0x00000020
  50. #define PTRACE_O_TRACEEXIT 0x00000040
  51. #define PTRACE_O_MASK 0x0000007f
  52. /* Wait extended result codes for the above trace options. */
  53. #define PTRACE_EVENT_FORK 1
  54. #define PTRACE_EVENT_VFORK 2
  55. #define PTRACE_EVENT_CLONE 3
  56. #define PTRACE_EVENT_EXEC 4
  57. #define PTRACE_EVENT_VFORK_DONE 5
  58. #define PTRACE_EVENT_EXIT 6
  59. #include <asm/ptrace.h>
  60. #ifdef __KERNEL__
  61. /*
  62. * Ptrace flags
  63. *
  64. * The owner ship rules for task->ptrace which holds the ptrace
  65. * flags is simple. When a task is running it owns it's task->ptrace
  66. * flags. When the a task is stopped the ptracer owns task->ptrace.
  67. */
  68. #define PT_PTRACED 0x00000001
  69. #define PT_DTRACE 0x00000002 /* delayed trace (used on m68k, i386) */
  70. #define PT_TRACESYSGOOD 0x00000004
  71. #define PT_PTRACE_CAP 0x00000008 /* ptracer can follow suid-exec */
  72. #define PT_TRACE_FORK 0x00000010
  73. #define PT_TRACE_VFORK 0x00000020
  74. #define PT_TRACE_CLONE 0x00000040
  75. #define PT_TRACE_EXEC 0x00000080
  76. #define PT_TRACE_VFORK_DONE 0x00000100
  77. #define PT_TRACE_EXIT 0x00000200
  78. #define PT_TRACE_MASK 0x000003f4
  79. /* single stepping state bits (used on ARM and PA-RISC) */
  80. #define PT_SINGLESTEP_BIT 31
  81. #define PT_SINGLESTEP (1<<PT_SINGLESTEP_BIT)
  82. #define PT_BLOCKSTEP_BIT 30
  83. #define PT_BLOCKSTEP (1<<PT_BLOCKSTEP_BIT)
  84. #include <linux/compiler.h> /* For unlikely. */
  85. #include <linux/sched.h> /* For struct task_struct. */
  86. extern long arch_ptrace(struct task_struct *child, long request,
  87. unsigned long addr, unsigned long data);
  88. extern int ptrace_traceme(void);
  89. extern int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst, int len);
  90. extern int ptrace_writedata(struct task_struct *tsk, char __user *src, unsigned long dst, int len);
  91. extern int ptrace_attach(struct task_struct *tsk);
  92. extern int ptrace_detach(struct task_struct *, unsigned int);
  93. extern void ptrace_disable(struct task_struct *);
  94. extern int ptrace_check_attach(struct task_struct *task, int kill);
  95. extern int ptrace_request(struct task_struct *child, long request,
  96. unsigned long addr, unsigned long data);
  97. extern void ptrace_notify(int exit_code);
  98. extern void __ptrace_link(struct task_struct *child,
  99. struct task_struct *new_parent);
  100. extern void __ptrace_unlink(struct task_struct *child);
  101. extern void exit_ptrace(struct task_struct *tracer);
  102. #define PTRACE_MODE_READ 1
  103. #define PTRACE_MODE_ATTACH 2
  104. /* Returns 0 on success, -errno on denial. */
  105. extern int __ptrace_may_access(struct task_struct *task, unsigned int mode);
  106. /* Returns true on success, false on denial. */
  107. extern bool ptrace_may_access(struct task_struct *task, unsigned int mode);
  108. static inline int ptrace_reparented(struct task_struct *child)
  109. {
  110. return child->real_parent != child->parent;
  111. }
  112. static inline void ptrace_unlink(struct task_struct *child)
  113. {
  114. if (unlikely(child->ptrace))
  115. __ptrace_unlink(child);
  116. }
  117. int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
  118. unsigned long data);
  119. int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
  120. unsigned long data);
  121. /**
  122. * task_ptrace - return %PT_* flags that apply to a task
  123. * @task: pointer to &task_struct in question
  124. *
  125. * Returns the %PT_* flags that apply to @task.
  126. */
  127. static inline int task_ptrace(struct task_struct *task)
  128. {
  129. return task->ptrace;
  130. }
  131. /**
  132. * ptrace_event - possibly stop for a ptrace event notification
  133. * @mask: %PT_* bit to check in @current->ptrace
  134. * @event: %PTRACE_EVENT_* value to report if @mask is set
  135. * @message: value for %PTRACE_GETEVENTMSG to return
  136. *
  137. * This checks the @mask bit to see if ptrace wants stops for this event.
  138. * If so we stop, reporting @event and @message to the ptrace parent.
  139. *
  140. * Returns nonzero if we did a ptrace notification, zero if not.
  141. *
  142. * Called without locks.
  143. */
  144. static inline int ptrace_event(int mask, int event, unsigned long message)
  145. {
  146. if (mask && likely(!(current->ptrace & mask)))
  147. return 0;
  148. current->ptrace_message = message;
  149. ptrace_notify((event << 8) | SIGTRAP);
  150. return 1;
  151. }
  152. /**
  153. * ptrace_init_task - initialize ptrace state for a new child
  154. * @child: new child task
  155. * @ptrace: true if child should be ptrace'd by parent's tracer
  156. *
  157. * This is called immediately after adding @child to its parent's children
  158. * list. @ptrace is false in the normal case, and true to ptrace @child.
  159. *
  160. * Called with current's siglock and write_lock_irq(&tasklist_lock) held.
  161. */
  162. static inline void ptrace_init_task(struct task_struct *child, bool ptrace)
  163. {
  164. INIT_LIST_HEAD(&child->ptrace_entry);
  165. INIT_LIST_HEAD(&child->ptraced);
  166. child->parent = child->real_parent;
  167. child->ptrace = 0;
  168. if (unlikely(ptrace) && (current->ptrace & PT_PTRACED)) {
  169. child->ptrace = current->ptrace;
  170. __ptrace_link(child, current->parent);
  171. }
  172. }
  173. /**
  174. * ptrace_release_task - final ptrace-related cleanup of a zombie being reaped
  175. * @task: task in %EXIT_DEAD state
  176. *
  177. * Called with write_lock(&tasklist_lock) held.
  178. */
  179. static inline void ptrace_release_task(struct task_struct *task)
  180. {
  181. BUG_ON(!list_empty(&task->ptraced));
  182. ptrace_unlink(task);
  183. BUG_ON(!list_empty(&task->ptrace_entry));
  184. }
  185. #ifndef force_successful_syscall_return
  186. /*
  187. * System call handlers that, upon successful completion, need to return a
  188. * negative value should call force_successful_syscall_return() right before
  189. * returning. On architectures where the syscall convention provides for a
  190. * separate error flag (e.g., alpha, ia64, ppc{,64}, sparc{,64}, possibly
  191. * others), this macro can be used to ensure that the error flag will not get
  192. * set. On architectures which do not support a separate error flag, the macro
  193. * is a no-op and the spurious error condition needs to be filtered out by some
  194. * other means (e.g., in user-level, by passing an extra argument to the
  195. * syscall handler, or something along those lines).
  196. */
  197. #define force_successful_syscall_return() do { } while (0)
  198. #endif
  199. /*
  200. * <asm/ptrace.h> should define the following things inside #ifdef __KERNEL__.
  201. *
  202. * These do-nothing inlines are used when the arch does not
  203. * implement single-step. The kerneldoc comments are here
  204. * to document the interface for all arch definitions.
  205. */
  206. #ifndef arch_has_single_step
  207. /**
  208. * arch_has_single_step - does this CPU support user-mode single-step?
  209. *
  210. * If this is defined, then there must be function declarations or
  211. * inlines for user_enable_single_step() and user_disable_single_step().
  212. * arch_has_single_step() should evaluate to nonzero iff the machine
  213. * supports instruction single-step for user mode.
  214. * It can be a constant or it can test a CPU feature bit.
  215. */
  216. #define arch_has_single_step() (0)
  217. /**
  218. * user_enable_single_step - single-step in user-mode task
  219. * @task: either current or a task stopped in %TASK_TRACED
  220. *
  221. * This can only be called when arch_has_single_step() has returned nonzero.
  222. * Set @task so that when it returns to user mode, it will trap after the
  223. * next single instruction executes. If arch_has_block_step() is defined,
  224. * this must clear the effects of user_enable_block_step() too.
  225. */
  226. static inline void user_enable_single_step(struct task_struct *task)
  227. {
  228. BUG(); /* This can never be called. */
  229. }
  230. /**
  231. * user_disable_single_step - cancel user-mode single-step
  232. * @task: either current or a task stopped in %TASK_TRACED
  233. *
  234. * Clear @task of the effects of user_enable_single_step() and
  235. * user_enable_block_step(). This can be called whether or not either
  236. * of those was ever called on @task, and even if arch_has_single_step()
  237. * returned zero.
  238. */
  239. static inline void user_disable_single_step(struct task_struct *task)
  240. {
  241. }
  242. #else
  243. extern void user_enable_single_step(struct task_struct *);
  244. extern void user_disable_single_step(struct task_struct *);
  245. #endif /* arch_has_single_step */
  246. #ifndef arch_has_block_step
  247. /**
  248. * arch_has_block_step - does this CPU support user-mode block-step?
  249. *
  250. * If this is defined, then there must be a function declaration or inline
  251. * for user_enable_block_step(), and arch_has_single_step() must be defined
  252. * too. arch_has_block_step() should evaluate to nonzero iff the machine
  253. * supports step-until-branch for user mode. It can be a constant or it
  254. * can test a CPU feature bit.
  255. */
  256. #define arch_has_block_step() (0)
  257. /**
  258. * user_enable_block_step - step until branch in user-mode task
  259. * @task: either current or a task stopped in %TASK_TRACED
  260. *
  261. * This can only be called when arch_has_block_step() has returned nonzero,
  262. * and will never be called when single-instruction stepping is being used.
  263. * Set @task so that when it returns to user mode, it will trap after the
  264. * next branch or trap taken.
  265. */
  266. static inline void user_enable_block_step(struct task_struct *task)
  267. {
  268. BUG(); /* This can never be called. */
  269. }
  270. #else
  271. extern void user_enable_block_step(struct task_struct *);
  272. #endif /* arch_has_block_step */
  273. #ifdef ARCH_HAS_USER_SINGLE_STEP_INFO
  274. extern void user_single_step_siginfo(struct task_struct *tsk,
  275. struct pt_regs *regs, siginfo_t *info);
  276. #else
  277. static inline void user_single_step_siginfo(struct task_struct *tsk,
  278. struct pt_regs *regs, siginfo_t *info)
  279. {
  280. memset(info, 0, sizeof(*info));
  281. info->si_signo = SIGTRAP;
  282. }
  283. #endif
  284. #ifndef arch_ptrace_stop_needed
  285. /**
  286. * arch_ptrace_stop_needed - Decide whether arch_ptrace_stop() should be called
  287. * @code: current->exit_code value ptrace will stop with
  288. * @info: siginfo_t pointer (or %NULL) for signal ptrace will stop with
  289. *
  290. * This is called with the siglock held, to decide whether or not it's
  291. * necessary to release the siglock and call arch_ptrace_stop() with the
  292. * same @code and @info arguments. It can be defined to a constant if
  293. * arch_ptrace_stop() is never required, or always is. On machines where
  294. * this makes sense, it should be defined to a quick test to optimize out
  295. * calling arch_ptrace_stop() when it would be superfluous. For example,
  296. * if the thread has not been back to user mode since the last stop, the
  297. * thread state might indicate that nothing needs to be done.
  298. */
  299. #define arch_ptrace_stop_needed(code, info) (0)
  300. #endif
  301. #ifndef arch_ptrace_stop
  302. /**
  303. * arch_ptrace_stop - Do machine-specific work before stopping for ptrace
  304. * @code: current->exit_code value ptrace will stop with
  305. * @info: siginfo_t pointer (or %NULL) for signal ptrace will stop with
  306. *
  307. * This is called with no locks held when arch_ptrace_stop_needed() has
  308. * just returned nonzero. It is allowed to block, e.g. for user memory
  309. * access. The arch can have machine-specific work to be done before
  310. * ptrace stops. On ia64, register backing store gets written back to user
  311. * memory here. Since this can be costly (requires dropping the siglock),
  312. * we only do it when the arch requires it for this particular stop, as
  313. * indicated by arch_ptrace_stop_needed().
  314. */
  315. #define arch_ptrace_stop(code, info) do { } while (0)
  316. #endif
  317. extern int task_current_syscall(struct task_struct *target, long *callno,
  318. unsigned long args[6], unsigned int maxargs,
  319. unsigned long *sp, unsigned long *pc);
  320. #endif
  321. #endif