1 # SPDX-License-Identifier: GPL-2.0
3 ifdef CONFIG_CC_HAS_KASAN_MEMINTRINSIC_PREFIX
4 # Safe for compiler to generate meminstrinsic calls in uninstrumented files.
5 CFLAGS_KASAN_NOSANITIZE :=
7 # Don't let compiler generate memintrinsic calls in uninstrumented files
8 # because they are instrumented.
9 CFLAGS_KASAN_NOSANITIZE := -fno-builtin
12 KASAN_SHADOW_OFFSET ?= $(CONFIG_KASAN_SHADOW_OFFSET)
14 cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
15 rustc-param = $(call rustc-option, -Cllvm-args=-$(1),)
17 check-args = $(foreach arg,$(2),$(call $(1),$(arg)))
21 ifdef CONFIG_KASAN_STACK
27 ifdef CONFIG_KASAN_GENERIC
29 ifdef CONFIG_KASAN_INLINE
30 # When the number of memory accesses in a function is less than this
31 # call threshold number, the compiler will use inline instrumentation.
32 # 10000 is chosen offhand as a sufficiently large number to make all
33 # kernel functions to be instrumented inline.
34 call_threshold := 10000
39 # First, enable -fsanitize=kernel-address together with providing the shadow
40 # mapping offset, as for GCC, -fasan-shadow-offset fails without -fsanitize
41 # (GCC accepts the shadow mapping offset via -fasan-shadow-offset instead of
42 # a --param like the other KASAN parameters).
43 # Instead of ifdef-checking the compiler, rely on cc-option.
44 CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \
45 -fasan-shadow-offset=$(KASAN_SHADOW_OFFSET), \
46 $(call cc-option, -fsanitize=kernel-address \
47 -mllvm -asan-mapping-offset=$(KASAN_SHADOW_OFFSET)))
49 # The minimum supported `rustc` version has a minimum supported LLVM
50 # version late enough that we can assume support for -asan-mapping-offset.
51 RUSTFLAGS_KASAN := -Zsanitizer=kernel-address \
52 -Zsanitizer-recover=kernel-address \
53 -Cllvm-args=-asan-mapping-offset=$(KASAN_SHADOW_OFFSET)
55 # Now, add other parameters enabled similarly in GCC, Clang, and rustc.
56 # As some of them are not supported by older compilers, these will be filtered
57 # through `cc-param` or `rust-param` as applicable.
58 kasan_params += asan-instrumentation-with-call-threshold=$(call_threshold) \
59 asan-stack=$(stack_enable) \
60 asan-instrument-allocas=1 \
63 # Instrument memcpy/memset/memmove calls by using instrumented __asan_mem*()
64 # instead. With compilers that don't support this option, compiler-inserted
65 # memintrinsics won't be checked by KASAN on GENERIC_ENTRY architectures.
66 kasan_params += asan-kernel-mem-intrinsic-prefix=1
68 endif # CONFIG_KASAN_GENERIC
70 ifdef CONFIG_KASAN_SW_TAGS
72 CFLAGS_KASAN := -fsanitize=kernel-hwaddress
74 # This sets flags that will enable SW_TAGS KASAN once enabled in Rust. These
75 # will not work today, and is guarded against in dependencies for CONFIG_RUST.
76 RUSTFLAGS_KASAN := -Zsanitizer=kernel-hwaddress \
77 -Zsanitizer-recover=kernel-hwaddress
79 ifdef CONFIG_KASAN_INLINE
80 kasan_params += hwasan-mapping-offset=$(KASAN_SHADOW_OFFSET)
82 kasan_params += hwasan-instrument-with-calls=1
85 kasan_params += hwasan-instrument-stack=$(stack_enable) \
86 hwasan-use-short-granules=0 \
87 hwasan-inline-all-checks=0
89 # Instrument memcpy/memset/memmove calls by using instrumented __hwasan_mem*().
90 ifeq ($(call clang-min-version, 150000)$(call gcc-min-version, 130000),y)
91 kasan_params += hwasan-kernel-mem-intrinsic-prefix=1
94 endif # CONFIG_KASAN_SW_TAGS
96 # Add all as-supported KASAN LLVM parameters requested by the configuration.
97 CFLAGS_KASAN += $(call check-args, cc-param, $(kasan_params))
100 # Avoid calling `rustc-param` unless Rust is enabled.
101 RUSTFLAGS_KASAN += $(call check-args, rustc-param, $(kasan_params))
104 export CFLAGS_KASAN CFLAGS_KASAN_NOSANITIZE RUSTFLAGS_KASAN