blob: 6c9682ce02544e5dca4e73b5104c1474bf00738b [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08002# This config refers to the generic KASAN mode.
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08003config HAVE_ARCH_KASAN
4 bool
5
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08006config HAVE_ARCH_KASAN_SW_TAGS
7 bool
8
9config CC_HAS_KASAN_GENERIC
10 def_bool $(cc-option, -fsanitize=kernel-address)
11
12config CC_HAS_KASAN_SW_TAGS
13 def_bool $(cc-option, -fsanitize=kernel-hwaddress)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080014
15config KASAN
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080016 bool "KASAN: runtime memory debugger"
17 depends on (HAVE_ARCH_KASAN && CC_HAS_KASAN_GENERIC) || \
18 (HAVE_ARCH_KASAN_SW_TAGS && CC_HAS_KASAN_SW_TAGS)
19 depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
20 help
21 Enables KASAN (KernelAddressSANitizer) - runtime memory debugger,
22 designed to find out-of-bounds accesses and use-after-free bugs.
23 See Documentation/dev-tools/kasan.rst for details.
24
25choice
26 prompt "KASAN mode"
27 depends on KASAN
28 default KASAN_GENERIC
29 help
30 KASAN has two modes: generic KASAN (similar to userspace ASan,
31 x86_64/arm64/xtensa, enabled with CONFIG_KASAN_GENERIC) and
32 software tag-based KASAN (a version based on software memory
33 tagging, arm64 only, similar to userspace HWASan, enabled with
34 CONFIG_KASAN_SW_TAGS).
35 Both generic and tag-based KASAN are strictly debugging features.
36
37config KASAN_GENERIC
38 bool "Generic mode"
39 depends on HAVE_ARCH_KASAN && CC_HAS_KASAN_GENERIC
Arnd Bergmann03758db2018-07-26 16:37:12 -070040 depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
Jason A. Donenfelddd275ca2018-06-27 23:26:20 -070041 select SLUB_DEBUG if SLUB
Andrey Ryabininbebf56a2015-02-13 14:40:17 -080042 select CONSTRUCTORS
Alexander Potapenko80a92012016-07-28 15:49:07 -070043 select STACKDEPOT
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080044 help
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080045 Enables generic KASAN mode.
46 Supported in both GCC and Clang. With GCC it requires version 4.9.2
47 or later for basic support and version 5.0 or later for detection of
48 out-of-bounds accesses for stack and global variables and for inline
49 instrumentation mode (CONFIG_KASAN_INLINE). With Clang it requires
50 version 3.7.0 or later and it doesn't support detection of
51 out-of-bounds accesses for global variables yet.
52 This mode consumes about 1/8th of available memory at kernel start
53 and introduces an overhead of ~x1.5 for the rest of the allocations.
54 The performance slowdown is ~x3.
Andrey Ryabinin89d3c872015-11-05 18:51:23 -080055 For better error detection enable CONFIG_STACKTRACE.
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080056 Currently CONFIG_KASAN_GENERIC doesn't work with CONFIG_DEBUG_SLAB
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070057 (the resulting kernel does not boot).
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080058
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080059config KASAN_SW_TAGS
60 bool "Software tag-based mode"
61 depends on HAVE_ARCH_KASAN_SW_TAGS && CC_HAS_KASAN_SW_TAGS
62 depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
63 select SLUB_DEBUG if SLUB
64 select CONSTRUCTORS
65 select STACKDEPOT
Arnd Bergmanne7c52b82018-02-06 15:41:41 -080066 help
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080067 Enables software tag-based KASAN mode.
68 This mode requires Top Byte Ignore support by the CPU and therefore
69 is only supported for arm64.
70 This mode requires Clang version 7.0.0 or later.
71 This mode consumes about 1/16th of available memory at kernel start
72 and introduces an overhead of ~20% for the rest of the allocations.
73 This mode may potentially introduce problems relating to pointer
74 casting and comparison, as it embeds tags into the top byte of each
75 pointer.
76 For better error detection enable CONFIG_STACKTRACE.
77 Currently CONFIG_KASAN_SW_TAGS doesn't work with CONFIG_DEBUG_SLAB
78 (the resulting kernel does not boot).
Arnd Bergmanne7c52b82018-02-06 15:41:41 -080079
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080080endchoice
81
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080082choice
83 prompt "Instrumentation type"
84 depends on KASAN
85 default KASAN_OUTLINE
86
87config KASAN_OUTLINE
88 bool "Outline instrumentation"
89 help
90 Before every memory access compiler insert function call
91 __asan_load*/__asan_store*. These functions performs check
92 of shadow memory. This is slower than inline instrumentation,
93 however it doesn't bloat size of kernel's .text section so
94 much as inline does.
95
96config KASAN_INLINE
97 bool "Inline instrumentation"
98 help
99 Compiler directly inserts code checking shadow memory before
100 memory accesses. This is faster than outline (in some workloads
101 it gives about x2 boost over outline instrumentation), but
102 make kernel's .text size much bigger.
Andrey Konovalov2bd926b2018-12-28 00:29:53 -0800103 For CONFIG_KASAN_GENERIC this requires GCC 5.0 or later.
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -0800104
105endchoice
106
Arnd Bergmann6baec882019-02-28 16:21:58 -0800107config KASAN_STACK_ENABLE
108 bool "Enable stack instrumentation (unsafe)" if CC_IS_CLANG && !COMPILE_TEST
Arnd Bergmann6baec882019-02-28 16:21:58 -0800109 depends on KASAN
110 help
111 The LLVM stack address sanitizer has a know problem that
112 causes excessive stack usage in a lot of functions, see
113 https://bugs.llvm.org/show_bug.cgi?id=38809
114 Disabling asan-stack makes it safe to run kernels build
115 with clang-8 with KASAN enabled, though it loses some of
116 the functionality.
Arnd Bergmannebb6d352019-08-02 21:48:54 -0700117 This feature is always disabled when compile-testing with clang
118 to avoid cluttering the output in stack overflow warnings,
119 but clang users can still enable it for builds without
120 CONFIG_COMPILE_TEST. On gcc it is assumed to always be safe
121 to use and enabled by default.
Arnd Bergmann6baec882019-02-28 16:21:58 -0800122
123config KASAN_STACK
124 int
125 default 1 if KASAN_STACK_ENABLE || CC_IS_GCC
126 default 0
127
Vasily Gorbik5dff0382017-11-19 11:54:14 +0100128config KASAN_S390_4_LEVEL_PAGING
129 bool "KASan: use 4-level paging"
130 depends on KASAN && S390
131 help
132 Compiling the kernel with KASan disables automatic 3-level vs
133 4-level paging selection. 3-level paging is used by default (up
134 to 3TB of RAM with KASan enabled). This options allows to force
135 4-level paging instead.
136
Walter Wuae8f06b2019-09-23 15:34:13 -0700137config KASAN_SW_TAGS_IDENTIFY
138 bool "Enable memory corruption identification"
139 depends on KASAN_SW_TAGS
140 help
141 This option enables best-effort identification of bug type
142 (use-after-free or out-of-bounds) at the cost of increased
143 memory consumption.
144
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800145config TEST_KASAN
Andrey Konovalov2bd926b2018-12-28 00:29:53 -0800146 tristate "Module for testing KASAN for bug detection"
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800147 depends on m && KASAN
148 help
149 This is a test module doing various nasty things like
150 out of bounds accesses, use after free. It is useful for testing
Andrey Konovalov2bd926b2018-12-28 00:29:53 -0800151 kernel debugging features like KASAN.