ftrace, orc, x86: Handle ftrace dynamically allocated trampolines

The function tracer can create a dynamically allocated trampoline that is
called by the function mcount or fentry hook that is used to call the
function callback that is registered. The problem is that the orc undwinder
will bail if it encounters one of these trampolines. This breaks the stack
trace of function callbacks, which include the stack tracer and setting the
stack trace for individual functions.

Since these dynamic trampolines are basically copies of the static ftrace
trampolines defined in ftrace_*.S, we do not need to create new orc entries
for the dynamic trampolines. Finding the return address on the stack will be
identical as the functions that were copied to create the dynamic
trampolines. When encountering a ftrace dynamic trampoline, we can just use
the orc entry of the ftrace static function that was copied for that
trampoline.
Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent e2ac83d7
...@@ -74,8 +74,50 @@ static struct orc_entry *orc_module_find(unsigned long ip) ...@@ -74,8 +74,50 @@ static struct orc_entry *orc_module_find(unsigned long ip)
} }
#endif #endif
#ifdef CONFIG_DYNAMIC_FTRACE
static struct orc_entry *orc_find(unsigned long ip);
/*
* Ftrace dynamic trampolines do not have orc entries of their own.
* But they are copies of the ftrace entries that are static and
* defined in ftrace_*.S, which do have orc entries.
*
* If the undwinder comes across a ftrace trampoline, then find the
* ftrace function that was used to create it, and use that ftrace
* function's orc entrie, as the placement of the return code in
* the stack will be identical.
*/
static struct orc_entry *orc_ftrace_find(unsigned long ip)
{
struct ftrace_ops *ops;
unsigned long caller;
ops = ftrace_ops_trampoline(ip);
if (!ops)
return NULL;
if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
caller = (unsigned long)ftrace_regs_call;
else
caller = (unsigned long)ftrace_call;
/* Prevent unlikely recursion */
if (ip == caller)
return NULL;
return orc_find(caller);
}
#else
static struct orc_entry *orc_ftrace_find(unsigned long ip)
{
return NULL;
}
#endif
static struct orc_entry *orc_find(unsigned long ip) static struct orc_entry *orc_find(unsigned long ip)
{ {
static struct orc_entry *orc;
if (!orc_init) if (!orc_init)
return NULL; return NULL;
...@@ -111,7 +153,11 @@ static struct orc_entry *orc_find(unsigned long ip) ...@@ -111,7 +153,11 @@ static struct orc_entry *orc_find(unsigned long ip)
__stop_orc_unwind_ip - __start_orc_unwind_ip, ip); __stop_orc_unwind_ip - __start_orc_unwind_ip, ip);
/* Module lookup: */ /* Module lookup: */
return orc_module_find(ip); orc = orc_module_find(ip);
if (orc)
return orc;
return orc_ftrace_find(ip);
} }
static void orc_sort_swap(void *_a, void *_b, int size) static void orc_sort_swap(void *_a, void *_b, int size)
......
...@@ -332,6 +332,8 @@ extern int ftrace_text_reserved(const void *start, const void *end); ...@@ -332,6 +332,8 @@ extern int ftrace_text_reserved(const void *start, const void *end);
extern int ftrace_nr_registered_ops(void); extern int ftrace_nr_registered_ops(void);
struct ftrace_ops *ftrace_ops_trampoline(unsigned long addr);
bool is_ftrace_trampoline(unsigned long addr); bool is_ftrace_trampoline(unsigned long addr);
/* /*
......
...@@ -1119,15 +1119,11 @@ static struct ftrace_ops global_ops = { ...@@ -1119,15 +1119,11 @@ static struct ftrace_ops global_ops = {
}; };
/* /*
* This is used by __kernel_text_address() to return true if the * Used by the stack undwinder to know about dynamic ftrace trampolines.
* address is on a dynamically allocated trampoline that would
* not return true for either core_kernel_text() or
* is_module_text_address().
*/ */
bool is_ftrace_trampoline(unsigned long addr) struct ftrace_ops *ftrace_ops_trampoline(unsigned long addr)
{ {
struct ftrace_ops *op; struct ftrace_ops *op = NULL;
bool ret = false;
/* /*
* Some of the ops may be dynamically allocated, * Some of the ops may be dynamically allocated,
...@@ -1144,15 +1140,24 @@ bool is_ftrace_trampoline(unsigned long addr) ...@@ -1144,15 +1140,24 @@ bool is_ftrace_trampoline(unsigned long addr)
if (op->trampoline && op->trampoline_size) if (op->trampoline && op->trampoline_size)
if (addr >= op->trampoline && if (addr >= op->trampoline &&
addr < op->trampoline + op->trampoline_size) { addr < op->trampoline + op->trampoline_size) {
ret = true; preempt_enable_notrace();
goto out; return op;
} }
} while_for_each_ftrace_op(op); } while_for_each_ftrace_op(op);
out:
preempt_enable_notrace(); preempt_enable_notrace();
return ret; return NULL;
}
/*
* This is used by __kernel_text_address() to return true if the
* address is on a dynamically allocated trampoline that would
* not return true for either core_kernel_text() or
* is_module_text_address().
*/
bool is_ftrace_trampoline(unsigned long addr)
{
return ftrace_ops_trampoline(addr) != NULL;
} }
struct ftrace_page { struct ftrace_page {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment