]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit - include/linux/ftrace.h
ftrace, orc, x86: Handle ftrace dynamically allocated trampolines
authorSteven Rostedt (VMware) <rostedt@goodmis.org>
Tue, 23 Jan 2018 03:32:51 +0000 (22:32 -0500)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Tue, 23 Jan 2018 20:56:55 +0000 (15:56 -0500)
commit6be7fa3c74d1e0cd50f2157b5c1524f152bf641e
tree4ce16d7acac4f57ab60005997ca097faaf216e87
parente2ac83d74a4d753cea88407e65136c84a0cb60b2
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: Steven Rostedt (VMware) <rostedt@goodmis.org>
arch/x86/kernel/unwind_orc.c
include/linux/ftrace.h
kernel/trace/ftrace.c