tracehook.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. /*
  2. * Tracing hooks
  3. *
  4. * Copyright (C) 2008 Red Hat, Inc. All rights reserved.
  5. *
  6. * This copyrighted material is made available to anyone wishing to use,
  7. * modify, copy, or redistribute it subject to the terms and conditions
  8. * of the GNU General Public License v.2.
  9. *
  10. * This file defines hook entry points called by core code where
  11. * user tracing/debugging support might need to do something. These
  12. * entry points are called tracehook_*(). Each hook declared below
  13. * has a detailed kerneldoc comment giving the context (locking et
  14. * al) from which it is called, and the meaning of its return value.
  15. *
  16. * Each function here typically has only one call site, so it is ok
  17. * to have some nontrivial tracehook_*() inlines. In all cases, the
  18. * fast path when no tracing is enabled should be very short.
  19. *
  20. * The purpose of this file and the tracehook_* layer is to consolidate
  21. * the interface that the kernel core and arch code uses to enable any
  22. * user debugging or tracing facility (such as ptrace). The interfaces
  23. * here are carefully documented so that maintainers of core and arch
  24. * code do not need to think about the implementation details of the
  25. * tracing facilities. Likewise, maintainers of the tracing code do not
  26. * need to understand all the calling core or arch code in detail, just
  27. * documented circumstances of each call, such as locking conditions.
  28. *
  29. * If the calling core code changes so that locking is different, then
  30. * it is ok to change the interface documented here. The maintainer of
  31. * core code changing should notify the maintainers of the tracing code
  32. * that they need to work out the change.
  33. *
  34. * Some tracehook_*() inlines take arguments that the current tracing
  35. * implementations might not necessarily use. These function signatures
  36. * are chosen to pass in all the information that is on hand in the
  37. * caller and might conceivably be relevant to a tracer, so that the
  38. * core code won't have to be updated when tracing adds more features.
  39. * If a call site changes so that some of those parameters are no longer
  40. * already on hand without extra work, then the tracehook_* interface
  41. * can change so there is no make-work burden on the core code. The
  42. * maintainer of core code changing should notify the maintainers of the
  43. * tracing code that they need to work out the change.
  44. */
  45. #ifndef _LINUX_TRACEHOOK_H
  46. #define _LINUX_TRACEHOOK_H 1
  47. #include <linux/sched.h>
  48. #include <linux/ptrace.h>
  49. #include <linux/security.h>
  50. struct linux_binprm;
  51. /**
  52. * tracehook_expect_breakpoints - guess if task memory might be touched
  53. * @task: current task, making a new mapping
  54. *
  55. * Return nonzero if @task is expected to want breakpoint insertion in
  56. * its memory at some point. A zero return is no guarantee it won't
  57. * be done, but this is a hint that it's known to be likely.
  58. *
  59. * May be called with @task->mm->mmap_sem held for writing.
  60. */
  61. static inline int tracehook_expect_breakpoints(struct task_struct *task)
  62. {
  63. return (task_ptrace(task) & PT_PTRACED) != 0;
  64. }
  65. /**
  66. * tracehook_unsafe_exec - check for exec declared unsafe due to tracing
  67. * @task: current task doing exec
  68. *
  69. * Return %LSM_UNSAFE_* bits applied to an exec because of tracing.
  70. *
  71. * Called with task_lock() held on @task.
  72. */
  73. static inline int tracehook_unsafe_exec(struct task_struct *task)
  74. {
  75. int unsafe = 0;
  76. int ptrace = task_ptrace(task);
  77. if (ptrace & PT_PTRACED) {
  78. if (ptrace & PT_PTRACE_CAP)
  79. unsafe |= LSM_UNSAFE_PTRACE_CAP;
  80. else
  81. unsafe |= LSM_UNSAFE_PTRACE;
  82. }
  83. return unsafe;
  84. }
  85. /**
  86. * tracehook_tracer_task - return the task that is tracing the given task
  87. * @tsk: task to consider
  88. *
  89. * Returns NULL if noone is tracing @task, or the &struct task_struct
  90. * pointer to its tracer.
  91. *
  92. * Must called under rcu_read_lock(). The pointer returned might be kept
  93. * live only by RCU. During exec, this may be called with task_lock()
  94. * held on @task, still held from when tracehook_unsafe_exec() was called.
  95. */
  96. static inline struct task_struct *tracehook_tracer_task(struct task_struct *tsk)
  97. {
  98. if (task_ptrace(tsk) & PT_PTRACED)
  99. return rcu_dereference(tsk->parent);
  100. return NULL;
  101. }
  102. /**
  103. * tracehook_report_exec - a successful exec was completed
  104. * @fmt: &struct linux_binfmt that performed the exec
  105. * @bprm: &struct linux_binprm containing exec details
  106. * @regs: user-mode register state
  107. *
  108. * An exec just completed, we are shortly going to return to user mode.
  109. * The freshly initialized register state can be seen and changed in @regs.
  110. * The name, file and other pointers in @bprm are still on hand to be
  111. * inspected, but will be freed as soon as this returns.
  112. *
  113. * Called with no locks, but with some kernel resources held live
  114. * and a reference on @fmt->module.
  115. */
  116. static inline void tracehook_report_exec(struct linux_binfmt *fmt,
  117. struct linux_binprm *bprm,
  118. struct pt_regs *regs)
  119. {
  120. if (!ptrace_event(PT_TRACE_EXEC, PTRACE_EVENT_EXEC, 0) &&
  121. unlikely(task_ptrace(current) & PT_PTRACED))
  122. send_sig(SIGTRAP, current, 0);
  123. }
  124. /**
  125. * tracehook_report_exit - task has begun to exit
  126. * @exit_code: pointer to value destined for @current->exit_code
  127. *
  128. * @exit_code points to the value passed to do_exit(), which tracing
  129. * might change here. This is almost the first thing in do_exit(),
  130. * before freeing any resources or setting the %PF_EXITING flag.
  131. *
  132. * Called with no locks held.
  133. */
  134. static inline void tracehook_report_exit(long *exit_code)
  135. {
  136. ptrace_event(PT_TRACE_EXIT, PTRACE_EVENT_EXIT, *exit_code);
  137. }
  138. /**
  139. * tracehook_prepare_clone - prepare for new child to be cloned
  140. * @clone_flags: %CLONE_* flags from clone/fork/vfork system call
  141. *
  142. * This is called before a new user task is to be cloned.
  143. * Its return value will be passed to tracehook_finish_clone().
  144. *
  145. * Called with no locks held.
  146. */
  147. static inline int tracehook_prepare_clone(unsigned clone_flags)
  148. {
  149. if (clone_flags & CLONE_UNTRACED)
  150. return 0;
  151. if (clone_flags & CLONE_VFORK) {
  152. if (current->ptrace & PT_TRACE_VFORK)
  153. return PTRACE_EVENT_VFORK;
  154. } else if ((clone_flags & CSIGNAL) != SIGCHLD) {
  155. if (current->ptrace & PT_TRACE_CLONE)
  156. return PTRACE_EVENT_CLONE;
  157. } else if (current->ptrace & PT_TRACE_FORK)
  158. return PTRACE_EVENT_FORK;
  159. return 0;
  160. }
  161. /**
  162. * tracehook_finish_clone - new child created and being attached
  163. * @child: new child task
  164. * @clone_flags: %CLONE_* flags from clone/fork/vfork system call
  165. * @trace: return value from tracehook_clone_prepare()
  166. *
  167. * This is called immediately after adding @child to its parent's children list.
  168. * The @trace value is that returned by tracehook_prepare_clone().
  169. *
  170. * Called with current's siglock and write_lock_irq(&tasklist_lock) held.
  171. */
  172. static inline void tracehook_finish_clone(struct task_struct *child,
  173. unsigned long clone_flags, int trace)
  174. {
  175. ptrace_init_task(child, (clone_flags & CLONE_PTRACE) || trace);
  176. }
  177. /**
  178. * tracehook_report_clone - in parent, new child is about to start running
  179. * @trace: return value from tracehook_clone_prepare()
  180. * @regs: parent's user register state
  181. * @clone_flags: flags from parent's system call
  182. * @pid: new child's PID in the parent's namespace
  183. * @child: new child task
  184. *
  185. * Called after a child is set up, but before it has been started running.
  186. * The @trace value is that returned by tracehook_clone_prepare().
  187. * This is not a good place to block, because the child has not started yet.
  188. * Suspend the child here if desired, and block in tracehook_clone_complete().
  189. * This must prevent the child from self-reaping if tracehook_clone_complete()
  190. * uses the @child pointer; otherwise it might have died and been released by
  191. * the time tracehook_report_clone_complete() is called.
  192. *
  193. * Called with no locks held, but the child cannot run until this returns.
  194. */
  195. static inline void tracehook_report_clone(int trace, struct pt_regs *regs,
  196. unsigned long clone_flags,
  197. pid_t pid, struct task_struct *child)
  198. {
  199. if (unlikely(trace)) {
  200. /*
  201. * The child starts up with an immediate SIGSTOP.
  202. */
  203. sigaddset(&child->pending.signal, SIGSTOP);
  204. set_tsk_thread_flag(child, TIF_SIGPENDING);
  205. }
  206. }
  207. /**
  208. * tracehook_report_clone_complete - new child is running
  209. * @trace: return value from tracehook_clone_prepare()
  210. * @regs: parent's user register state
  211. * @clone_flags: flags from parent's system call
  212. * @pid: new child's PID in the parent's namespace
  213. * @child: child task, already running
  214. *
  215. * This is called just after the child has started running. This is
  216. * just before the clone/fork syscall returns, or blocks for vfork
  217. * child completion if @clone_flags has the %CLONE_VFORK bit set.
  218. * The @child pointer may be invalid if a self-reaping child died and
  219. * tracehook_report_clone() took no action to prevent it from self-reaping.
  220. *
  221. * Called with no locks held.
  222. */
  223. static inline void tracehook_report_clone_complete(int trace,
  224. struct pt_regs *regs,
  225. unsigned long clone_flags,
  226. pid_t pid,
  227. struct task_struct *child)
  228. {
  229. if (unlikely(trace))
  230. ptrace_event(0, trace, pid);
  231. }
  232. /**
  233. * tracehook_report_vfork_done - vfork parent's child has exited or exec'd
  234. * @child: child task, already running
  235. * @pid: new child's PID in the parent's namespace
  236. *
  237. * Called after a %CLONE_VFORK parent has waited for the child to complete.
  238. * The clone/vfork system call will return immediately after this.
  239. * The @child pointer may be invalid if a self-reaping child died and
  240. * tracehook_report_clone() took no action to prevent it from self-reaping.
  241. *
  242. * Called with no locks held.
  243. */
  244. static inline void tracehook_report_vfork_done(struct task_struct *child,
  245. pid_t pid)
  246. {
  247. ptrace_event(PT_TRACE_VFORK_DONE, PTRACE_EVENT_VFORK_DONE, pid);
  248. }
  249. /**
  250. * tracehook_prepare_release_task - task is being reaped, clean up tracing
  251. * @task: task in %EXIT_DEAD state
  252. *
  253. * This is called in release_task() just before @task gets finally reaped
  254. * and freed. This would be the ideal place to remove and clean up any
  255. * tracing-related state for @task.
  256. *
  257. * Called with no locks held.
  258. */
  259. static inline void tracehook_prepare_release_task(struct task_struct *task)
  260. {
  261. }
  262. /**
  263. * tracehook_finish_release_task - task is being reaped, clean up tracing
  264. * @task: task in %EXIT_DEAD state
  265. *
  266. * This is called in release_task() when @task is being in the middle of
  267. * being reaped. After this, there must be no tracing entanglements.
  268. *
  269. * Called with write_lock_irq(&tasklist_lock) held.
  270. */
  271. static inline void tracehook_finish_release_task(struct task_struct *task)
  272. {
  273. ptrace_release_task(task);
  274. }
  275. #endif /* <linux/tracehook.h> */