blob: d8c474b6691e92c6a2d26519c5f59cb4b4d04afc [file] [log] [blame]
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08001# This config refers to the generic KASAN mode.
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08002config HAVE_ARCH_KASAN
3 bool
4
Andrey Konovalov2bd926b2018-12-28 00:29:53 -08005config HAVE_ARCH_KASAN_SW_TAGS
6 bool
7
8config CC_HAS_KASAN_GENERIC
9 def_bool $(cc-option, -fsanitize=kernel-address)
10
11config CC_HAS_KASAN_SW_TAGS
12 def_bool $(cc-option, -fsanitize=kernel-hwaddress)
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080013
14config KASAN
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080015 bool "KASAN: runtime memory debugger"
16 depends on (HAVE_ARCH_KASAN && CC_HAS_KASAN_GENERIC) || \
17 (HAVE_ARCH_KASAN_SW_TAGS && CC_HAS_KASAN_SW_TAGS)
18 depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
19 help
20 Enables KASAN (KernelAddressSANitizer) - runtime memory debugger,
21 designed to find out-of-bounds accesses and use-after-free bugs.
22 See Documentation/dev-tools/kasan.rst for details.
23
24choice
25 prompt "KASAN mode"
26 depends on KASAN
27 default KASAN_GENERIC
28 help
29 KASAN has two modes: generic KASAN (similar to userspace ASan,
30 x86_64/arm64/xtensa, enabled with CONFIG_KASAN_GENERIC) and
31 software tag-based KASAN (a version based on software memory
32 tagging, arm64 only, similar to userspace HWASan, enabled with
33 CONFIG_KASAN_SW_TAGS).
34 Both generic and tag-based KASAN are strictly debugging features.
35
36config KASAN_GENERIC
37 bool "Generic mode"
38 depends on HAVE_ARCH_KASAN && CC_HAS_KASAN_GENERIC
Arnd Bergmann03758db2018-07-26 16:37:12 -070039 depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
Jason A. Donenfelddd275ca2018-06-27 23:26:20 -070040 select SLUB_DEBUG if SLUB
Andrey Ryabininbebf56a2015-02-13 14:40:17 -080041 select CONSTRUCTORS
Alexander Potapenko80a92012016-07-28 15:49:07 -070042 select STACKDEPOT
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080043 help
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080044 Enables generic KASAN mode.
45 Supported in both GCC and Clang. With GCC it requires version 4.9.2
46 or later for basic support and version 5.0 or later for detection of
47 out-of-bounds accesses for stack and global variables and for inline
48 instrumentation mode (CONFIG_KASAN_INLINE). With Clang it requires
49 version 3.7.0 or later and it doesn't support detection of
50 out-of-bounds accesses for global variables yet.
51 This mode consumes about 1/8th of available memory at kernel start
52 and introduces an overhead of ~x1.5 for the rest of the allocations.
53 The performance slowdown is ~x3.
Andrey Ryabinin89d3c872015-11-05 18:51:23 -080054 For better error detection enable CONFIG_STACKTRACE.
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080055 Currently CONFIG_KASAN_GENERIC doesn't work with CONFIG_DEBUG_SLAB
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -070056 (the resulting kernel does not boot).
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080057
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080058config KASAN_SW_TAGS
59 bool "Software tag-based mode"
60 depends on HAVE_ARCH_KASAN_SW_TAGS && CC_HAS_KASAN_SW_TAGS
61 depends on (SLUB && SYSFS) || (SLAB && !DEBUG_SLAB)
62 select SLUB_DEBUG if SLUB
63 select CONSTRUCTORS
64 select STACKDEPOT
Arnd Bergmanne7c52b82018-02-06 15:41:41 -080065 help
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080066 Enables software tag-based KASAN mode.
67 This mode requires Top Byte Ignore support by the CPU and therefore
68 is only supported for arm64.
69 This mode requires Clang version 7.0.0 or later.
70 This mode consumes about 1/16th of available memory at kernel start
71 and introduces an overhead of ~20% for the rest of the allocations.
72 This mode may potentially introduce problems relating to pointer
73 casting and comparison, as it embeds tags into the top byte of each
74 pointer.
75 For better error detection enable CONFIG_STACKTRACE.
76 Currently CONFIG_KASAN_SW_TAGS doesn't work with CONFIG_DEBUG_SLAB
77 (the resulting kernel does not boot).
Arnd Bergmanne7c52b82018-02-06 15:41:41 -080078
Andrey Konovalov2bd926b2018-12-28 00:29:53 -080079endchoice
80
81config KASAN_EXTRA
82 bool "KASAN: extra checks"
83 depends on KASAN_GENERIC && DEBUG_KERNEL && !COMPILE_TEST
84 help
85 This enables further checks in generic KASAN, for now it only
86 includes the address-use-after-scope check that can lead to
87 excessive kernel stack usage, frame size warnings and longer
88 compile time.
89 See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81715
Arnd Bergmanne7c52b82018-02-06 15:41:41 -080090
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080091choice
92 prompt "Instrumentation type"
93 depends on KASAN
94 default KASAN_OUTLINE
95
96config KASAN_OUTLINE
97 bool "Outline instrumentation"
98 help
99 Before every memory access compiler insert function call
100 __asan_load*/__asan_store*. These functions performs check
101 of shadow memory. This is slower than inline instrumentation,
102 however it doesn't bloat size of kernel's .text section so
103 much as inline does.
104
105config KASAN_INLINE
106 bool "Inline instrumentation"
107 help
108 Compiler directly inserts code checking shadow memory before
109 memory accesses. This is faster than outline (in some workloads
110 it gives about x2 boost over outline instrumentation), but
111 make kernel's .text size much bigger.
Andrey Konovalov2bd926b2018-12-28 00:29:53 -0800112 For CONFIG_KASAN_GENERIC this requires GCC 5.0 or later.
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -0800113
114endchoice
115
Vasily Gorbik5dff0382017-11-19 11:54:14 +0100116config KASAN_S390_4_LEVEL_PAGING
117 bool "KASan: use 4-level paging"
118 depends on KASAN && S390
119 help
120 Compiling the kernel with KASan disables automatic 3-level vs
121 4-level paging selection. 3-level paging is used by default (up
122 to 3TB of RAM with KASan enabled). This options allows to force
123 4-level paging instead.
124
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800125config TEST_KASAN
Andrey Konovalov2bd926b2018-12-28 00:29:53 -0800126 tristate "Module for testing KASAN for bug detection"
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800127 depends on m && KASAN
128 help
129 This is a test module doing various nasty things like
130 out of bounds accesses, use after free. It is useful for testing
Andrey Konovalov2bd926b2018-12-28 00:29:53 -0800131 kernel debugging features like KASAN.