aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/include/asm/kprobes.h
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2019-02-26 14:35:00 +0000
committerWill Deacon <will.deacon@arm.com>2019-04-09 11:21:13 +0100
commita22d570aee77ae626e4d3532478ae8058a24bdb3 (patch)
tree0e56e10e67dab8e3cc56fa4add1aa28c2c146e65 /arch/arm64/include/asm/kprobes.h
parentarm64: debug: Separate debug hooks based on target exception level (diff)
downloadlinux-dev-a22d570aee77ae626e4d3532478ae8058a24bdb3.tar.xz
linux-dev-a22d570aee77ae626e4d3532478ae8058a24bdb3.zip
arm64: kprobes: Avoid calling kprobes debug handlers explicitly
Kprobes bypasses our debug hook registration code so that it doesn't get tangled up with recursive debug exceptions from things like lockdep: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-February/324385.html However, since then, (a) the hook list has become RCU protected and (b) the kprobes hooks were found not to filter out exceptions from userspace correctly. On top of that, the step handler is invoked directly from single_step_handler(), which *does* use the debug hook list, so it's clearly not the end of the world. For now, have kprobes use the debug hook registration API like everybody else. We can revisit this in the future if this is found to limit coverage significantly. Reviewed-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/include/asm/kprobes.h')
-rw-r--r--arch/arm64/include/asm/kprobes.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm64/include/asm/kprobes.h b/arch/arm64/include/asm/kprobes.h
index d5a44cf859e9..21721fbf44e7 100644
--- a/arch/arm64/include/asm/kprobes.h
+++ b/arch/arm64/include/asm/kprobes.h
@@ -54,8 +54,6 @@ void arch_remove_kprobe(struct kprobe *);
int kprobe_fault_handler(struct pt_regs *regs, unsigned int fsr);
int kprobe_exceptions_notify(struct notifier_block *self,
unsigned long val, void *data);
-int kprobe_breakpoint_handler(struct pt_regs *regs, unsigned int esr);
-int kprobe_single_step_handler(struct pt_regs *regs, unsigned int esr);
void kretprobe_trampoline(void);
void __kprobes *trampoline_probe_handler(struct pt_regs *regs);