blob: 3f874d24234f6b4c2e40ac6d2bf0390326b8a8bf [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
8CFLAGS_KASAN_MINIMAL := -fsanitize=kernel-address
9
10CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \
11 -fasan-shadow-offset=$(CONFIG_KASAN_SHADOW_OFFSET) \
Andrey Ryabininbebf56a2015-02-13 14:40:17 -080012 --param asan-stack=1 --param asan-globals=1 \
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080013 --param asan-instrumentation-with-call-threshold=$(call_threshold))
14
15ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),)
Andrey Ryabinin6e54aba2015-04-16 12:44:58 -070016 ifneq ($(CONFIG_COMPILE_TEST),y)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080017 $(warning Cannot use CONFIG_KASAN: \
18 -fsanitize=kernel-address is not supported by compiler)
Andrey Ryabinin6e54aba2015-04-16 12:44:58 -070019 endif
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080020else
21 ifeq ($(CFLAGS_KASAN),)
Andrey Ryabinin6e54aba2015-04-16 12:44:58 -070022 ifneq ($(CONFIG_COMPILE_TEST),y)
23 $(warning CONFIG_KASAN: compiler does not support all options.\
24 Trying minimal configuration)
25 endif
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080026 CFLAGS_KASAN := $(CFLAGS_KASAN_MINIMAL)
27 endif
28endif
29endif