summaryrefslogtreecommitdiff
path: root/include/linux/compiler-version.h
diff options
context:
space:
mode:
authorKees Cook <kees@kernel.org>2025-05-03 11:46:20 -0700
committerKees Cook <kees@kernel.org>2025-05-08 09:42:06 -0700
commit11bb1678e249e51cd748e8f91e5241b3ce71da3a (patch)
treee537068b8ea9df65fe6ca1f7c85af1c7cdada40a /include/linux/compiler-version.h
parent056000c471ea41db56de58f71b9fe727d6e68b9b (diff)
integer-wrap: Force full rebuild when .scl file changes
Since the integer wrapping sanitizer's behavior depends on its associated .scl file, we must force a full rebuild if the file changes. If not, instrumentation may differ between targets based on when they were built. Generate a new header file, integer-wrap.h, any time the Clang .scl file changes. Include the header file in compiler-version.h when its associated feature name, INTEGER_WRAP, is defined. This will be picked up by fixdep and force rebuilds where needed. Acked-by: Justin Stitt <justinstitt@google.com> Link: https://lore.kernel.org/r/20250503184623.2572355-3-kees@kernel.org Reviewed-by: Nicolas Schier <n.schier@avm.de> Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'include/linux/compiler-version.h')
-rw-r--r--include/linux/compiler-version.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/compiler-version.h b/include/linux/compiler-version.h
index 4b9d39b37650..ac1665a98a15 100644
--- a/include/linux/compiler-version.h
+++ b/include/linux/compiler-version.h
@@ -32,3 +32,13 @@
#ifdef RANDSTRUCT
#include <generated/randstruct_hash.h>
#endif
+
+/*
+ * If any external changes affect Clang's integer wrapping sanitizer
+ * behavior, a full rebuild is needed as the coverage for wrapping types
+ * may have changed, which may impact the expected behaviors that should
+ * not differ between compilation units.
+ */
+#ifdef INTEGER_WRAP
+#include <generated/integer-wrap.h>
+#endif