@@ -302,7 +302,17 @@ int ftrace_int3_handler(struct pt_regs *regs)
if (!ftrace_location(ip) && !is_ftrace_caller(ip))
return 0;
- regs->ip += MCOUNT_INSN_SIZE - 1;
+ /*
+ * During converting early kprobes on ftrace to ftrace, it is
+ * possible to hit a breakpoint belong to both ftrace and
+ * kprobe. Call kprobe_int3_handler() to avoid missing events.
+ * Note that even if kprobe is optimized, breakpoint based
+ * kprobe should still be functional.
+ */
+#if defined(CONFIG_EARLY_KPROBES) && defined(CONFIG_KPROBES_ON_FTRACE)
+ if (!kprobe_int3_handler(regs))
+#endif
+ regs->ip += MCOUNT_INSN_SIZE - 1;
return 1;
}
Since early kprobes and ftrace both use int3 (ftrace insert int3 to the first byte of ftrace entry, fill other bytes of the inserted 'call' instruction and finally restore the first byte, while kprobe rely on int3 to trigger its actions), it is possible that a breakpoint is shared between ftrace and an early kprobe on it. Let ftrace_int3_handler() deal with this confliction by calling kprobe_int3_handler() before it jump to next instruction to avoid lost event during ftrace inserting 'call' instruction. Signed-off-by: Wang Nan <wangnan0@huawei.com> --- arch/x86/kernel/ftrace.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-)