ftrace-design.txt 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. function tracer guts
  2. ====================
  3. By Mike Frysinger
  4. Introduction
  5. ------------
  6. Here we will cover the architecture pieces that the common function tracing
  7. code relies on for proper functioning. Things are broken down into increasing
  8. complexity so that you can start simple and at least get basic functionality.
  9. Note that this focuses on architecture implementation details only. If you
  10. want more explanation of a feature in terms of common code, review the common
  11. ftrace.txt file.
  12. Prerequisites
  13. -------------
  14. Ftrace relies on these features being implemented:
  15. STACKTRACE_SUPPORT - implement save_stack_trace()
  16. TRACE_IRQFLAGS_SUPPORT - implement include/asm/irqflags.h
  17. HAVE_FUNCTION_TRACER
  18. --------------------
  19. You will need to implement the mcount and the ftrace_stub functions.
  20. The exact mcount symbol name will depend on your toolchain. Some call it
  21. "mcount", "_mcount", or even "__mcount". You can probably figure it out by
  22. running something like:
  23. $ echo 'main(){}' | gcc -x c -S -o - - -pg | grep mcount
  24. call mcount
  25. We'll make the assumption below that the symbol is "mcount" just to keep things
  26. nice and simple in the examples.
  27. Keep in mind that the ABI that is in effect inside of the mcount function is
  28. *highly* architecture/toolchain specific. We cannot help you in this regard,
  29. sorry. Dig up some old documentation and/or find someone more familiar than
  30. you to bang ideas off of. Typically, register usage (argument/scratch/etc...)
  31. is a major issue at this point, especially in relation to the location of the
  32. mcount call (before/after function prologue). You might also want to look at
  33. how glibc has implemented the mcount function for your architecture. It might
  34. be (semi-)relevant.
  35. The mcount function should check the function pointer ftrace_trace_function
  36. to see if it is set to ftrace_stub. If it is, there is nothing for you to do,
  37. so return immediately. If it isn't, then call that function in the same way
  38. the mcount function normally calls __mcount_internal -- the first argument is
  39. the "frompc" while the second argument is the "selfpc" (adjusted to remove the
  40. size of the mcount call that is embedded in the function).
  41. For example, if the function foo() calls bar(), when the bar() function calls
  42. mcount(), the arguments mcount() will pass to the tracer are:
  43. "frompc" - the address bar() will use to return to foo()
  44. "selfpc" - the address bar() (with mcount() size adjustment)
  45. Also keep in mind that this mcount function will be called *a lot*, so
  46. optimizing for the default case of no tracer will help the smooth running of
  47. your system when tracing is disabled. So the start of the mcount function is
  48. typically the bare minimum with checking things before returning. That also
  49. means the code flow should usually be kept linear (i.e. no branching in the nop
  50. case). This is of course an optimization and not a hard requirement.
  51. Here is some pseudo code that should help (these functions should actually be
  52. implemented in assembly):
  53. void ftrace_stub(void)
  54. {
  55. return;
  56. }
  57. void mcount(void)
  58. {
  59. /* save any bare state needed in order to do initial checking */
  60. extern void (*ftrace_trace_function)(unsigned long, unsigned long);
  61. if (ftrace_trace_function != ftrace_stub)
  62. goto do_trace;
  63. /* restore any bare state */
  64. return;
  65. do_trace:
  66. /* save all state needed by the ABI (see paragraph above) */
  67. unsigned long frompc = ...;
  68. unsigned long selfpc = <return address> - MCOUNT_INSN_SIZE;
  69. ftrace_trace_function(frompc, selfpc);
  70. /* restore all state needed by the ABI */
  71. }
  72. Don't forget to export mcount for modules !
  73. extern void mcount(void);
  74. EXPORT_SYMBOL(mcount);
  75. HAVE_FUNCTION_TRACE_MCOUNT_TEST
  76. -------------------------------
  77. This is an optional optimization for the normal case when tracing is turned off
  78. in the system. If you do not enable this Kconfig option, the common ftrace
  79. code will take care of doing the checking for you.
  80. To support this feature, you only need to check the function_trace_stop
  81. variable in the mcount function. If it is non-zero, there is no tracing to be
  82. done at all, so you can return.
  83. This additional pseudo code would simply be:
  84. void mcount(void)
  85. {
  86. /* save any bare state needed in order to do initial checking */
  87. + if (function_trace_stop)
  88. + return;
  89. extern void (*ftrace_trace_function)(unsigned long, unsigned long);
  90. if (ftrace_trace_function != ftrace_stub)
  91. ...
  92. HAVE_FUNCTION_GRAPH_TRACER
  93. --------------------------
  94. Deep breath ... time to do some real work. Here you will need to update the
  95. mcount function to check ftrace graph function pointers, as well as implement
  96. some functions to save (hijack) and restore the return address.
  97. The mcount function should check the function pointers ftrace_graph_return
  98. (compare to ftrace_stub) and ftrace_graph_entry (compare to
  99. ftrace_graph_entry_stub). If either of those is not set to the relevant stub
  100. function, call the arch-specific function ftrace_graph_caller which in turn
  101. calls the arch-specific function prepare_ftrace_return. Neither of these
  102. function names is strictly required, but you should use them anyway to stay
  103. consistent across the architecture ports -- easier to compare & contrast
  104. things.
  105. The arguments to prepare_ftrace_return are slightly different than what are
  106. passed to ftrace_trace_function. The second argument "selfpc" is the same,
  107. but the first argument should be a pointer to the "frompc". Typically this is
  108. located on the stack. This allows the function to hijack the return address
  109. temporarily to have it point to the arch-specific function return_to_handler.
  110. That function will simply call the common ftrace_return_to_handler function and
  111. that will return the original return address with which you can return to the
  112. original call site.
  113. Here is the updated mcount pseudo code:
  114. void mcount(void)
  115. {
  116. ...
  117. if (ftrace_trace_function != ftrace_stub)
  118. goto do_trace;
  119. +#ifdef CONFIG_FUNCTION_GRAPH_TRACER
  120. + extern void (*ftrace_graph_return)(...);
  121. + extern void (*ftrace_graph_entry)(...);
  122. + if (ftrace_graph_return != ftrace_stub ||
  123. + ftrace_graph_entry != ftrace_graph_entry_stub)
  124. + ftrace_graph_caller();
  125. +#endif
  126. /* restore any bare state */
  127. ...
  128. Here is the pseudo code for the new ftrace_graph_caller assembly function:
  129. #ifdef CONFIG_FUNCTION_GRAPH_TRACER
  130. void ftrace_graph_caller(void)
  131. {
  132. /* save all state needed by the ABI */
  133. unsigned long *frompc = &...;
  134. unsigned long selfpc = <return address> - MCOUNT_INSN_SIZE;
  135. /* passing frame pointer up is optional -- see below */
  136. prepare_ftrace_return(frompc, selfpc, frame_pointer);
  137. /* restore all state needed by the ABI */
  138. }
  139. #endif
  140. For information on how to implement prepare_ftrace_return(), simply look at the
  141. x86 version (the frame pointer passing is optional; see the next section for
  142. more information). The only architecture-specific piece in it is the setup of
  143. the fault recovery table (the asm(...) code). The rest should be the same
  144. across architectures.
  145. Here is the pseudo code for the new return_to_handler assembly function. Note
  146. that the ABI that applies here is different from what applies to the mcount
  147. code. Since you are returning from a function (after the epilogue), you might
  148. be able to skimp on things saved/restored (usually just registers used to pass
  149. return values).
  150. #ifdef CONFIG_FUNCTION_GRAPH_TRACER
  151. void return_to_handler(void)
  152. {
  153. /* save all state needed by the ABI (see paragraph above) */
  154. void (*original_return_point)(void) = ftrace_return_to_handler();
  155. /* restore all state needed by the ABI */
  156. /* this is usually either a return or a jump */
  157. original_return_point();
  158. }
  159. #endif
  160. HAVE_FUNCTION_GRAPH_FP_TEST
  161. ---------------------------
  162. An arch may pass in a unique value (frame pointer) to both the entering and
  163. exiting of a function. On exit, the value is compared and if it does not
  164. match, then it will panic the kernel. This is largely a sanity check for bad
  165. code generation with gcc. If gcc for your port sanely updates the frame
  166. pointer under different opitmization levels, then ignore this option.
  167. However, adding support for it isn't terribly difficult. In your assembly code
  168. that calls prepare_ftrace_return(), pass the frame pointer as the 3rd argument.
  169. Then in the C version of that function, do what the x86 port does and pass it
  170. along to ftrace_push_return_trace() instead of a stub value of 0.
  171. Similarly, when you call ftrace_return_to_handler(), pass it the frame pointer.
  172. HAVE_FTRACE_NMI_ENTER
  173. ---------------------
  174. If you can't trace NMI functions, then skip this option.
  175. <details to be filled>
  176. HAVE_SYSCALL_TRACEPOINTS
  177. ---------------------
  178. You need very few things to get the syscalls tracing in an arch.
  179. - Support HAVE_ARCH_TRACEHOOK (see arch/Kconfig).
  180. - Have a NR_syscalls variable in <asm/unistd.h> that provides the number
  181. of syscalls supported by the arch.
  182. - Support the TIF_SYSCALL_TRACEPOINT thread flags.
  183. - Put the trace_sys_enter() and trace_sys_exit() tracepoints calls from ptrace
  184. in the ptrace syscalls tracing path.
  185. - Tag this arch as HAVE_SYSCALL_TRACEPOINTS.
  186. HAVE_FTRACE_MCOUNT_RECORD
  187. -------------------------
  188. See scripts/recordmcount.pl for more info.
  189. <details to be filled>
  190. HAVE_DYNAMIC_FTRACE
  191. ---------------------
  192. <details to be filled>