blob: 25c259df8ffab1b108994ac12d78b35f97b65403 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08002ifdef CONFIG_KASAN_GENERIC
3
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08004ifdef CONFIG_KASAN_INLINE
5 call_threshold := 10000
6else
7 call_threshold := 0
8endif
9
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030010KASAN_SHADOW_OFFSET ?= $(CONFIG_KASAN_SHADOW_OFFSET)
11
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080012CFLAGS_KASAN_MINIMAL := -fsanitize=kernel-address
13
Andrey Ryabinin1a69e7c2018-02-06 15:36:08 -080014cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080015
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080016# -fasan-shadow-offset fails without -fsanitize
17CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \
Andrey Ryabinin1a69e7c2018-02-06 15:36:08 -080018 -fasan-shadow-offset=$(KASAN_SHADOW_OFFSET), \
19 $(call cc-option, -fsanitize=kernel-address \
20 -mllvm -asan-mapping-offset=$(KASAN_SHADOW_OFFSET)))
21
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080022ifeq ($(strip $(CFLAGS_KASAN_SHADOW)),)
23 CFLAGS_KASAN := $(CFLAGS_KASAN_MINIMAL)
24else
25 # Now add all the compiler specific options that are valid standalone
26 CFLAGS_KASAN := $(CFLAGS_KASAN_SHADOW) \
27 $(call cc-param,asan-globals=1) \
28 $(call cc-param,asan-instrumentation-with-call-threshold=$(call_threshold)) \
29 $(call cc-param,asan-stack=1) \
30 $(call cc-param,asan-use-after-scope=1) \
31 $(call cc-param,asan-instrument-allocas=1)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080032endif
Andrey Ryabininc5caf212016-12-12 16:44:59 -080033
Arnd Bergmanne7c52b82018-02-06 15:41:41 -080034ifdef CONFIG_KASAN_EXTRA
Andrey Ryabininc5caf212016-12-12 16:44:59 -080035CFLAGS_KASAN += $(call cc-option, -fsanitize-address-use-after-scope)
Arnd Bergmanne7c52b82018-02-06 15:41:41 -080036endif
Andrey Konovalov0e410e12018-02-06 15:36:00 -080037
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080038endif # CONFIG_KASAN_GENERIC
Andrey Konovalov0e410e12018-02-06 15:36:00 -080039
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080040ifdef CONFIG_KASAN_SW_TAGS
41
42ifdef CONFIG_KASAN_INLINE
43 instrumentation_flags := -mllvm -hwasan-mapping-offset=$(KASAN_SHADOW_OFFSET)
44else
45 instrumentation_flags := -mllvm -hwasan-instrument-with-calls=1
46endif
47
48CFLAGS_KASAN := -fsanitize=kernel-hwaddress \
49 -mllvm -hwasan-instrument-stack=0 \
50 $(instrumentation_flags)
51
52endif # CONFIG_KASAN_SW_TAGS
53
54ifdef CONFIG_KASAN
55CFLAGS_KASAN_NOSANITIZE := -fno-builtin
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080056endif