blob: 03757cc60e06c83e5dae59d5ebcce6c912e62c73 [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 +01002ifdef CONFIG_KASAN
3CFLAGS_KASAN_NOSANITIZE := -fno-builtin
4KASAN_SHADOW_OFFSET ?= $(CONFIG_KASAN_SHADOW_OFFSET)
5endif
6
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08007ifdef CONFIG_KASAN_GENERIC
8
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08009ifdef CONFIG_KASAN_INLINE
10 call_threshold := 10000
11else
12 call_threshold := 0
13endif
14
15CFLAGS_KASAN_MINIMAL := -fsanitize=kernel-address
16
Andrey Ryabinin1a69e7c2018-02-06 15:36:08 -080017cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080018
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080019# -fasan-shadow-offset fails without -fsanitize
20CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \
Andrey Ryabinin1a69e7c2018-02-06 15:36:08 -080021 -fasan-shadow-offset=$(KASAN_SHADOW_OFFSET), \
22 $(call cc-option, -fsanitize=kernel-address \
23 -mllvm -asan-mapping-offset=$(KASAN_SHADOW_OFFSET)))
24
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080025ifeq ($(strip $(CFLAGS_KASAN_SHADOW)),)
26 CFLAGS_KASAN := $(CFLAGS_KASAN_MINIMAL)
27else
28 # Now add all the compiler specific options that are valid standalone
29 CFLAGS_KASAN := $(CFLAGS_KASAN_SHADOW) \
30 $(call cc-param,asan-globals=1) \
31 $(call cc-param,asan-instrumentation-with-call-threshold=$(call_threshold)) \
Arnd Bergmann6baec882019-02-28 16:21:58 -080032 $(call cc-param,asan-stack=$(CONFIG_KASAN_STACK)) \
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080033 $(call cc-param,asan-instrument-allocas=1)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080034endif
Andrey Ryabininc5caf212016-12-12 16:44:59 -080035
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080036endif # CONFIG_KASAN_GENERIC
Andrey Konovalov0e410e12018-02-06 15:36:00 -080037
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080038ifdef CONFIG_KASAN_SW_TAGS
39
40ifdef CONFIG_KASAN_INLINE
41 instrumentation_flags := -mllvm -hwasan-mapping-offset=$(KASAN_SHADOW_OFFSET)
42else
43 instrumentation_flags := -mllvm -hwasan-instrument-with-calls=1
44endif
45
46CFLAGS_KASAN := -fsanitize=kernel-hwaddress \
47 -mllvm -hwasan-instrument-stack=0 \
48 $(instrumentation_flags)
49
50endif # CONFIG_KASAN_SW_TAGS