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