blob: d809e00d6b61c68c0907ef2597f6b212a414a3d4 [file] [log] [blame]
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08001ifdef CONFIG_KASAN
2ifdef CONFIG_KASAN_INLINE
3 call_threshold := 10000
4else
5 call_threshold := 0
6endif
7
Andrey Ryabinin39d114d2015-10-12 18:52:58 +03008KASAN_SHADOW_OFFSET ?= $(CONFIG_KASAN_SHADOW_OFFSET)
9
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080010CFLAGS_KASAN_MINIMAL := -fsanitize=kernel-address
11
Andrey Ryabinine2aa3702018-02-06 15:36:08 -080012cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080013
14ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),)
Andrey Ryabinin6e54aba2015-04-16 12:44:58 -070015 ifneq ($(CONFIG_COMPILE_TEST),y)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080016 $(warning Cannot use CONFIG_KASAN: \
17 -fsanitize=kernel-address is not supported by compiler)
Andrey Ryabinin6e54aba2015-04-16 12:44:58 -070018 endif
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080019else
Andrey Ryabinine2aa3702018-02-06 15:36:08 -080020 # -fasan-shadow-offset fails without -fsanitize
21 CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \
22 -fasan-shadow-offset=$(KASAN_SHADOW_OFFSET), \
23 $(call cc-option, -fsanitize=kernel-address \
24 -mllvm -asan-mapping-offset=$(KASAN_SHADOW_OFFSET)))
25
26 ifeq ($(strip $(CFLAGS_KASAN_SHADOW)),)
27 CFLAGS_KASAN := $(CFLAGS_KASAN_MINIMAL)
28 else
29 # Now add all the compiler specific options that are valid standalone
30 CFLAGS_KASAN := $(CFLAGS_KASAN_SHADOW) \
31 $(call cc-param,asan-globals=1) \
32 $(call cc-param,asan-instrumentation-with-call-threshold=$(call_threshold)) \
33 $(call cc-param,asan-stack=1) \
Paul Lawrence9351dcd2018-02-06 15:36:11 -080034 $(call cc-param,asan-use-after-scope=1) \
35 $(call cc-param,asan-instrument-allocas=1)
Andrey Ryabinine2aa3702018-02-06 15:36:08 -080036 endif
37
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080038endif
Andrey Konovalov76b6f302018-02-06 15:36:00 -080039
40CFLAGS_KASAN_NOSANITIZE := -fno-builtin
41
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080042endif