summaryrefslogtreecommitdiffstats
path: root/include/linux/cfi.h
diff options
context:
space:
mode:
authorPeter Zijlstra <peterz@infradead.org>2022-03-08 16:30:44 +0100
committerPeter Zijlstra <peterz@infradead.org>2022-03-15 10:32:42 +0100
commitcb9010f87dcbcdbb51cc96b922c6260848cecbd1 (patch)
tree851cffc6519f0cdfbd0d91a0703a10b090a09c1a /include/linux/cfi.h
parent2b6ff7dea670a4623fae1d2349806fc7f8e305d1 (diff)
downloadlinux-cb9010f87dcbcdbb51cc96b922c6260848cecbd1.tar.bz2
x86/ibt: Ensure module init/exit points have references
Since the references to the module init/exit points only have external references, a module LTO run will consider them 'unused' and seal them, leading to an immediate fail on module load. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Acked-by: Josh Poimboeuf <jpoimboe@redhat.com> Link: https://lore.kernel.org/r/20220308154319.113767246@infradead.org
Diffstat (limited to 'include/linux/cfi.h')
-rw-r--r--include/linux/cfi.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/linux/cfi.h b/include/linux/cfi.h
index 879744aaa6e0..c6dfc1ed0626 100644
--- a/include/linux/cfi.h
+++ b/include/linux/cfi.h
@@ -34,8 +34,17 @@ static inline void cfi_module_remove(struct module *mod, unsigned long base_addr
#else /* !CONFIG_CFI_CLANG */
-#define __CFI_ADDRESSABLE(fn, __attr)
+#ifdef CONFIG_X86_KERNEL_IBT
+
+#define __CFI_ADDRESSABLE(fn, __attr) \
+ const void *__cfi_jt_ ## fn __visible __attr = (void *)&fn
+
+#endif /* CONFIG_X86_KERNEL_IBT */
#endif /* CONFIG_CFI_CLANG */
+#ifndef __CFI_ADDRESSABLE
+#define __CFI_ADDRESSABLE(fn, __attr)
+#endif
+
#endif /* _LINUX_CFI_H */