[RFC PATCH v3 19/26] early kprobes: perhibit probing at early kprobe reserved area.

From: Wang Nan
Date: Fri Feb 13 2015 - 00:54:03 EST


Puts early kprobe reserved area into kprobe blacklist.

Signed-off-by: Wang Nan <wangnan0@xxxxxxxxxx>
---
kernel/kprobes.c | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/kernel/kprobes.c b/kernel/kprobes.c
index fa1e422..b83c406 100644
--- a/kernel/kprobes.c
+++ b/kernel/kprobes.c
@@ -1358,6 +1358,13 @@ static bool within_kprobe_blacklist(unsigned long addr)

if (arch_within_kprobe_blacklist(addr))
return true;
+
+#ifdef CONFIG_EARLY_KPROBES
+ if (addr >= (unsigned long)__early_kprobes_start &&
+ addr < (unsigned long)__early_kprobes_end)
+ return true;
+#endif
+
/*
* If there exists a kprobe_blacklist, verify and
* fail any probe registration in the prohibited area
--
1.8.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/