aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/module.h
diff options
context:
space:
mode:
authorMasami Hiramatsu <mhiramat@kernel.org>2020-03-26 23:49:48 +0900
committerThomas Gleixner <tglx@linutronix.de>2020-05-12 17:15:32 +0200
commit1e6769b0aece51ea7a3dc3117c37d4a5669e4a21 (patch)
treec2738aa86d5cd28739f7a0a754124da21881260e /include/linux/module.h
parentkprobes: Lock kprobe_mutex while showing kprobe_blacklist (diff)
downloadwireguard-linux-1e6769b0aece51ea7a3dc3117c37d4a5669e4a21.tar.xz
wireguard-linux-1e6769b0aece51ea7a3dc3117c37d4a5669e4a21.zip
kprobes: Support __kprobes blacklist in modules
Support __kprobes attribute for blacklist functions in modules. The __kprobes attribute functions are stored in .kprobes.text section. Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Alexandre Chartre <alexandre.chartre@oracle.com> Acked-by: Peter Zijlstra <peterz@infradead.org> Link: https://lkml.kernel.org/r/20200505134059.678201813@linutronix.de
Diffstat (limited to 'include/linux/module.h')
-rw-r--r--include/linux/module.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index 1ad393e62bef..369c354f9207 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -489,6 +489,10 @@ struct module {
unsigned int num_ftrace_callsites;
unsigned long *ftrace_callsites;
#endif
+#ifdef CONFIG_KPROBES
+ void *kprobes_text_start;
+ unsigned int kprobes_text_size;
+#endif
#ifdef CONFIG_LIVEPATCH
bool klp; /* Is this a livepatch module? */