x86/ftrace: Make it call depth tracking aware
authorPeter Zijlstra <peterz@infradead.org>
Thu, 15 Sep 2022 11:11:37 +0000 (13:11 +0200)
committerPeter Zijlstra <peterz@infradead.org>
Mon, 17 Oct 2022 14:41:19 +0000 (16:41 +0200)
commitee3e2469b3463d28ca4cde20e0283319ac6a562d
tree958265de2b1865d821630bc175df913052ac7f25
parent36b64f101219dd9e6e4f0ea880b64e8a90da547b
x86/ftrace: Make it call depth tracking aware

Since ftrace has trampolines, don't use thunks for the __fentry__ site
but instead require that every function called from there includes
accounting. This very much includes all the direct-call functions.

Additionally, ftrace uses ROP tricks in two places:

 - return_to_handler(), and
 - ftrace_regs_caller() when pt_regs->orig_ax is set by a direct-call.

return_to_handler() already uses a retpoline to replace an
indirect-jump to defeat IBT, since this is a jump-type retpoline, make
sure there is no accounting done and ALTERNATIVE the RET into a ret.

ftrace_regs_caller() does much the same and gets the same treatment.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20220915111148.927545073@infradead.org
arch/x86/include/asm/nospec-branch.h
arch/x86/kernel/callthunks.c
arch/x86/kernel/ftrace.c
arch/x86/kernel/ftrace_64.S
arch/x86/net/bpf_jit_comp.c
kernel/trace/trace_selftest.c
samples/ftrace/ftrace-direct-modify.c
samples/ftrace/ftrace-direct-multi-modify.c
samples/ftrace/ftrace-direct-multi.c
samples/ftrace/ftrace-direct-too.c
samples/ftrace/ftrace-direct.c