]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - scripts/Makefile.kasan
Merge branch 'stable/for-linus-5.2' of git://git.kernel.org/pub/scm/linux/kernel...
[thirdparty/kernel/stable.git] / scripts / Makefile.kasan
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
2bd926b4
AK
2ifdef CONFIG_KASAN_GENERIC
3
0b24becc
AR
4ifdef CONFIG_KASAN_INLINE
5 call_threshold := 10000
6else
7 call_threshold := 0
8endif
9
39d114dd
AR
10KASAN_SHADOW_OFFSET ?= $(CONFIG_KASAN_SHADOW_OFFSET)
11
0b24becc
AR
12CFLAGS_KASAN_MINIMAL := -fsanitize=kernel-address
13
1a69e7ce 14cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
0b24becc 15
2bd926b4
AK
16# -fasan-shadow-offset fails without -fsanitize
17CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \
1a69e7ce
AR
18 -fasan-shadow-offset=$(KASAN_SHADOW_OFFSET), \
19 $(call cc-option, -fsanitize=kernel-address \
20 -mllvm -asan-mapping-offset=$(KASAN_SHADOW_OFFSET)))
21
2bd926b4
AK
22ifeq ($(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)) \
6baec880 29 $(call cc-param,asan-stack=$(CONFIG_KASAN_STACK)) \
2bd926b4 30 $(call cc-param,asan-instrument-allocas=1)
0b24becc 31endif
c5caf21a 32
2bd926b4 33endif # CONFIG_KASAN_GENERIC
0e410e15 34
2bd926b4
AK
35ifdef CONFIG_KASAN_SW_TAGS
36
37ifdef CONFIG_KASAN_INLINE
38 instrumentation_flags := -mllvm -hwasan-mapping-offset=$(KASAN_SHADOW_OFFSET)
39else
40 instrumentation_flags := -mllvm -hwasan-instrument-with-calls=1
41endif
42
43CFLAGS_KASAN := -fsanitize=kernel-hwaddress \
44 -mllvm -hwasan-instrument-stack=0 \
45 $(instrumentation_flags)
46
47endif # CONFIG_KASAN_SW_TAGS
48
49ifdef CONFIG_KASAN
50CFLAGS_KASAN_NOSANITIZE := -fno-builtin
0b24becc 51endif