From: Mathieu Desnoyers Date: Mon, 2 Mar 2020 15:40:26 +0000 (-0500) Subject: Remove work-around for signed tracepoint module tainting (kernel 3.15+) X-Git-Tag: v2.10.15~12 X-Git-Url: https://git.lttng.org/?p=lttng-modules.git;a=commitdiff_plain;h=779be05dd3bef66dbe82b372a33b37da332ff093 Remove work-around for signed tracepoint module tainting (kernel 3.15+) Upstream commit 66cc69e34e86a "Fix: module signature vs tracepoints: add new TAINT_UNSIGNED_MODULE" fixed an issue where the kernel was considering unsigned modules as tainting the kernel in the same way as a force-loaded modules, which was causing the tracepoints within those modules to be hidden. This fix was merged in kernel 3.15, so there is no use in applying this work-around starting from that kernel. This removes a dependency on kallsyms_lookup_name() for the symbol "tracepoint_module_notify". Signed-off-by: Mathieu Desnoyers --- diff --git a/wrapper/tracepoint.h b/wrapper/tracepoint.h index f930a5a0..2ae92d8e 100644 --- a/wrapper/tracepoint.h +++ b/wrapper/tracepoint.h @@ -65,7 +65,7 @@ void lttng_tracepoint_exit(void) #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)) */ -#ifdef CONFIG_MODULE_SIG +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG)) #include #include @@ -87,9 +87,9 @@ int wrapper_tracepoint_module_notify(struct notifier_block *nb, } } -#endif /* CONFIG_MODULE_SIG */ +#endif /* #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG)) */ -#if defined(CONFIG_MODULE_SIG) && defined(MODULE) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG) && defined(MODULE)) static inline int wrapper_lttng_fixup_sig(struct module *mod) @@ -110,7 +110,7 @@ int wrapper_lttng_fixup_sig(struct module *mod) return ret; } -#else /* #if defined(CONFIG_MODULE_SIG) && defined(MODULE) */ +#else /* #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG) && defined(MODULE)) */ static inline int wrapper_lttng_fixup_sig(struct module *mod) @@ -118,7 +118,7 @@ int wrapper_lttng_fixup_sig(struct module *mod) return 0; } -#endif /*#else #if defined(CONFIG_MODULE_SIG) && defined(MODULE) */ +#endif /* #else #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0) && defined(CONFIG_MODULE_SIG) && defined(MODULE)) */ #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,19,0)) static inline struct tracepoint *lttng_tracepoint_ptr_deref(tracepoint_ptr_t *p)