Blame view

lib/Kconfig.kasan 6.28 KB
ec8f24b7f   Thomas Gleixner   treewide: Add SPD...
1
  # SPDX-License-Identifier: GPL-2.0-only
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
2
  # This config refers to the generic KASAN mode.
0b24becc8   Andrey Ryabinin   kasan: add kernel...
3
4
  config HAVE_ARCH_KASAN
  	bool
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
5
6
  config HAVE_ARCH_KASAN_SW_TAGS
  	bool
3c5c3cfb9   Daniel Axtens   kasan: support ba...
7
8
  config	HAVE_ARCH_KASAN_VMALLOC
  	bool
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
9
10
11
12
13
  config CC_HAS_KASAN_GENERIC
  	def_bool $(cc-option, -fsanitize=kernel-address)
  
  config CC_HAS_KASAN_SW_TAGS
  	def_bool $(cc-option, -fsanitize=kernel-hwaddress)
0b24becc8   Andrey Ryabinin   kasan: add kernel...
14

7b861a53e   Marco Elver   kasan: Bump requi...
15
  config CC_HAS_WORKING_NOSANITIZE_ADDRESS
acf7b0bf7   Marco Elver   kasan: Fix requir...
16
  	def_bool !CC_IS_GCC || GCC_VERSION >= 80300
7b861a53e   Marco Elver   kasan: Bump requi...
17

7a3767f83   Marco Elver   kasan: improve an...
18
  menuconfig KASAN
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
19
20
21
22
  	bool "KASAN: runtime memory debugger"
  	depends on (HAVE_ARCH_KASAN && CC_HAS_KASAN_GENERIC) || \
  		   (HAVE_ARCH_KASAN_SW_TAGS && CC_HAS_KASAN_SW_TAGS)
  	depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
7b861a53e   Marco Elver   kasan: Bump requi...
23
  	depends on CC_HAS_WORKING_NOSANITIZE_ADDRESS
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
24
25
26
27
  	help
  	  Enables KASAN (KernelAddressSANitizer) - runtime memory debugger,
  	  designed to find out-of-bounds accesses and use-after-free bugs.
  	  See Documentation/dev-tools/kasan.rst for details.
7a3767f83   Marco Elver   kasan: improve an...
28
  if KASAN
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
29
30
  choice
  	prompt "KASAN mode"
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
31
32
33
34
35
36
37
  	default KASAN_GENERIC
  	help
  	  KASAN has two modes: generic KASAN (similar to userspace ASan,
  	  x86_64/arm64/xtensa, enabled with CONFIG_KASAN_GENERIC) and
  	  software tag-based KASAN (a version based on software memory
  	  tagging, arm64 only, similar to userspace HWASan, enabled with
  	  CONFIG_KASAN_SW_TAGS).
ac4766be5   Marco Elver   kasan: update req...
38

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
39
40
41
42
43
  	  Both generic and tag-based KASAN are strictly debugging features.
  
  config KASAN_GENERIC
  	bool "Generic mode"
  	depends on HAVE_ARCH_KASAN && CC_HAS_KASAN_GENERIC
03758dbbe   Arnd Bergmann   kasan: only selec...
44
  	depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
dd275caf4   Jason A. Donenfeld   kasan: depend on ...
45
  	select SLUB_DEBUG if SLUB
bebf56a1b   Andrey Ryabinin   kasan: enable ins...
46
  	select CONSTRUCTORS
80a9201a5   Alexander Potapenko   mm, kasan: switch...
47
  	select STACKDEPOT
0b24becc8   Andrey Ryabinin   kasan: add kernel...
48
  	help
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
49
  	  Enables generic KASAN mode.
ac4766be5   Marco Elver   kasan: update req...
50
51
  
  	  This mode is supported in both GCC and Clang. With GCC it requires
527f6750d   Marco Elver   kasan: remove men...
52
53
54
  	  version 8.3.0 or later. Any supported Clang version is compatible,
  	  but detection of out-of-bounds accesses for global variables is
  	  supported only since Clang 11.
ac4766be5   Marco Elver   kasan: update req...
55

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
56
57
58
  	  This mode consumes about 1/8th of available memory at kernel start
  	  and introduces an overhead of ~x1.5 for the rest of the allocations.
  	  The performance slowdown is ~x3.
ac4766be5   Marco Elver   kasan: update req...
59

89d3c87e2   Andrey Ryabinin   mm, slub, kasan: ...
60
  	  For better error detection enable CONFIG_STACKTRACE.
ac4766be5   Marco Elver   kasan: update req...
61

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
62
  	  Currently CONFIG_KASAN_GENERIC doesn't work with CONFIG_DEBUG_SLAB
7ed2f9e66   Alexander Potapenko   mm, kasan: SLAB s...
63
  	  (the resulting kernel does not boot).
0b24becc8   Andrey Ryabinin   kasan: add kernel...
64

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
65
66
67
68
69
70
71
72
73
  config KASAN_SW_TAGS
  	bool "Software tag-based mode"
  	depends on HAVE_ARCH_KASAN_SW_TAGS && CC_HAS_KASAN_SW_TAGS
  	depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
  	select SLUB_DEBUG if SLUB
  	select CONSTRUCTORS
  	select STACKDEPOT
  	help
  	  Enables software tag-based KASAN mode.
ac4766be5   Marco Elver   kasan: update req...
74

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
75
  	  This mode requires Top Byte Ignore support by the CPU and therefore
527f6750d   Marco Elver   kasan: remove men...
76
  	  is only supported for arm64. This mode requires Clang.
ac4766be5   Marco Elver   kasan: update req...
77

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
78
79
80
81
82
  	  This mode consumes about 1/16th of available memory at kernel start
  	  and introduces an overhead of ~20% for the rest of the allocations.
  	  This mode may potentially introduce problems relating to pointer
  	  casting and comparison, as it embeds tags into the top byte of each
  	  pointer.
ac4766be5   Marco Elver   kasan: update req...
83

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
84
  	  For better error detection enable CONFIG_STACKTRACE.
ac4766be5   Marco Elver   kasan: update req...
85

2bd926b43   Andrey Konovalov   kasan: add CONFIG...
86
87
88
89
  	  Currently CONFIG_KASAN_SW_TAGS doesn't work with CONFIG_DEBUG_SLAB
  	  (the resulting kernel does not boot).
  
  endchoice
0b24becc8   Andrey Ryabinin   kasan: add kernel...
90
91
  choice
  	prompt "Instrumentation type"
0b24becc8   Andrey Ryabinin   kasan: add kernel...
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
  	default KASAN_OUTLINE
  
  config KASAN_OUTLINE
  	bool "Outline instrumentation"
  	help
  	  Before every memory access compiler insert function call
  	  __asan_load*/__asan_store*. These functions performs check
  	  of shadow memory. This is slower than inline instrumentation,
  	  however it doesn't bloat size of kernel's .text section so
  	  much as inline does.
  
  config KASAN_INLINE
  	bool "Inline instrumentation"
  	help
  	  Compiler directly inserts code checking shadow memory before
  	  memory accesses. This is faster than outline (in some workloads
  	  it gives about x2 boost over outline instrumentation), but
  	  make kernel's .text size much bigger.
  
  endchoice
6baec880d   Arnd Bergmann   kasan: turn off a...
112
113
  config KASAN_STACK_ENABLE
  	bool "Enable stack instrumentation (unsafe)" if CC_IS_CLANG && !COMPILE_TEST
6baec880d   Arnd Bergmann   kasan: turn off a...
114
115
116
117
118
119
120
  	help
  	  The LLVM stack address sanitizer has a know problem that
  	  causes excessive stack usage in a lot of functions, see
  	  https://bugs.llvm.org/show_bug.cgi?id=38809
  	  Disabling asan-stack makes it safe to run kernels build
  	  with clang-8 with KASAN enabled, though it loses some of
  	  the functionality.
ebb6d35a7   Arnd Bergmann   kasan: remove cla...
121
122
123
124
125
  	  This feature is always disabled when compile-testing with clang
  	  to avoid cluttering the output in stack overflow warnings,
  	  but clang users can still enable it for builds without
  	  CONFIG_COMPILE_TEST.	On gcc it is assumed to always be safe
  	  to use and enabled by default.
6baec880d   Arnd Bergmann   kasan: turn off a...
126
127
128
129
130
  
  config KASAN_STACK
  	int
  	default 1 if KASAN_STACK_ENABLE || CC_IS_GCC
  	default 0
5dff03813   Vasily Gorbik   s390/kasan: add o...
131
132
  config KASAN_S390_4_LEVEL_PAGING
  	bool "KASan: use 4-level paging"
7a3767f83   Marco Elver   kasan: improve an...
133
  	depends on S390
5dff03813   Vasily Gorbik   s390/kasan: add o...
134
135
136
137
138
  	help
  	  Compiling the kernel with KASan disables automatic 3-level vs
  	  4-level paging selection. 3-level paging is used by default (up
  	  to 3TB of RAM with KASan enabled). This options allows to force
  	  4-level paging instead.
ae8f06b31   Walter Wu   kasan: add memory...
139
140
141
142
143
144
145
  config KASAN_SW_TAGS_IDENTIFY
  	bool "Enable memory corruption identification"
  	depends on KASAN_SW_TAGS
  	help
  	  This option enables best-effort identification of bug type
  	  (use-after-free or out-of-bounds) at the cost of increased
  	  memory consumption.
3c5c3cfb9   Daniel Axtens   kasan: support ba...
146
147
  config KASAN_VMALLOC
  	bool "Back mappings in vmalloc space with real shadow memory"
7a3767f83   Marco Elver   kasan: improve an...
148
  	depends on HAVE_ARCH_KASAN_VMALLOC
3c5c3cfb9   Daniel Axtens   kasan: support ba...
149
150
151
152
153
154
155
156
157
  	help
  	  By default, the shadow region for vmalloc space is the read-only
  	  zero page. This means that KASAN cannot detect errors involving
  	  vmalloc space.
  
  	  Enabling this option will hook in to vmap/vmalloc and back those
  	  mappings with real shadow memory allocated on demand. This allows
  	  for KASAN to detect more sorts of errors (and to support vmapped
  	  stacks), but at the cost of higher memory usage.
73228c7ec   Patricia Alfonso   KASAN: port KASAN...
158
159
160
161
  config KASAN_KUNIT_TEST
  	tristate "KUnit-compatible tests of KASAN bug detection capabilities" if !KUNIT_ALL_TESTS
  	depends on KASAN && KUNIT
  	default KUNIT_ALL_TESTS
3f15801cd   Andrey Ryabinin   lib: add kasan te...
162
  	help
73228c7ec   Patricia Alfonso   KASAN: port KASAN...
163
164
  	  This is a KUnit test suite doing various nasty things like
  	  out of bounds and use after free accesses. It is useful for testing
2bd926b43   Andrey Konovalov   kasan: add CONFIG...
165
  	  kernel debugging features like KASAN.
7a3767f83   Marco Elver   kasan: improve an...
166

73228c7ec   Patricia Alfonso   KASAN: port KASAN...
167
168
169
170
171
172
173
174
175
176
  	  For more information on KUnit and unit tests in general, please refer
  	  to the KUnit documentation in Documentation/dev-tools/kunit
  
  config TEST_KASAN_MODULE
  	tristate "KUnit-incompatible tests of KASAN bug detection capabilities"
  	depends on m && KASAN
  	help
  	  This is a part of the KASAN test suite that is incompatible with
  	  KUnit. Currently includes tests that do bad copy_from/to_user
  	  accesses.
7a3767f83   Marco Elver   kasan: improve an...
177
  endif # KASAN