blob: 1e000cc2e7b4b2477655ce6ba74b4e4fa60b9c69 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Mark Rutland34b55602019-08-14 15:31:57 +01002CFLAGS_KASAN_NOSANITIZE := -fno-builtin
3KASAN_SHADOW_OFFSET ?= $(CONFIG_KASAN_SHADOW_OFFSET)
Mark Rutland34b55602019-08-14 15:31:57 +01004
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08005ifdef CONFIG_KASAN_GENERIC
6
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08007ifdef CONFIG_KASAN_INLINE
8 call_threshold := 10000
9else
10 call_threshold := 0
11endif
12
13CFLAGS_KASAN_MINIMAL := -fsanitize=kernel-address
14
Andrey Ryabinin1a69e7c2018-02-06 15:36:08 -080015cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080016
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080017# -fasan-shadow-offset fails without -fsanitize
18CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \
Andrey Ryabinin1a69e7c2018-02-06 15:36:08 -080019 -fasan-shadow-offset=$(KASAN_SHADOW_OFFSET), \
20 $(call cc-option, -fsanitize=kernel-address \
21 -mllvm -asan-mapping-offset=$(KASAN_SHADOW_OFFSET)))
22
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080023ifeq ($(strip $(CFLAGS_KASAN_SHADOW)),)
24 CFLAGS_KASAN := $(CFLAGS_KASAN_MINIMAL)
25else
26 # Now add all the compiler specific options that are valid standalone
27 CFLAGS_KASAN := $(CFLAGS_KASAN_SHADOW) \
28 $(call cc-param,asan-globals=1) \
29 $(call cc-param,asan-instrumentation-with-call-threshold=$(call_threshold)) \
Arnd Bergmann6baec882019-02-28 16:21:58 -080030 $(call cc-param,asan-stack=$(CONFIG_KASAN_STACK)) \
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080031 $(call cc-param,asan-instrument-allocas=1)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080032endif
Andrey Ryabininc5caf212016-12-12 16:44:59 -080033
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080034endif # CONFIG_KASAN_GENERIC
Andrey Konovalov0e410e12018-02-06 15:36:00 -080035
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080036ifdef CONFIG_KASAN_SW_TAGS
37
38ifdef CONFIG_KASAN_INLINE
39 instrumentation_flags := -mllvm -hwasan-mapping-offset=$(KASAN_SHADOW_OFFSET)
40else
41 instrumentation_flags := -mllvm -hwasan-instrument-with-calls=1
42endif
43
44CFLAGS_KASAN := -fsanitize=kernel-hwaddress \
Andrey Konovalovcae9dc32020-08-06 23:25:08 -070045 -mllvm -hwasan-instrument-stack=$(CONFIG_KASAN_STACK) \
46 -mllvm -hwasan-use-short-granules=0 \
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080047 $(instrumentation_flags)
48
49endif # CONFIG_KASAN_SW_TAGS
Masahiro Yamadabb273212020-09-10 22:44:29 +090050
51export CFLAGS_KASAN CFLAGS_KASAN_NOSANITIZE