x86/traps: Mark do_int3() NOKPROBE_SYMBOL
authorLi Huafei <lihuafei1@huawei.com>
Thu, 10 Mar 2022 12:09:15 +0000 (20:09 +0800)
committerBorislav Petkov <bp@suse.de>
Fri, 11 Mar 2022 18:19:30 +0000 (19:19 +0100)
Since kprobe_int3_handler() is called in do_int3(), probing do_int3()
can cause a breakpoint recursion and crash the kernel. Therefore,
do_int3() should be marked as NOKPROBE_SYMBOL.

Fixes: 21e28290b317 ("x86/traps: Split int3 handler up")
Signed-off-by: Li Huafei <lihuafei1@huawei.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20220310120915.63349-1-lihuafei1@huawei.com
arch/x86/kernel/traps.c

index c9d566dcf89a048b1b61f5092dd40f38b4e056a4..8143693a7ea6e3e1cb300b9924737bb2ee6f74a1 100644 (file)
@@ -659,6 +659,7 @@ static bool do_int3(struct pt_regs *regs)
 
        return res == NOTIFY_STOP;
 }
+NOKPROBE_SYMBOL(do_int3);
 
 static void do_int3_user(struct pt_regs *regs)
 {