blob: 777eda7d1ab4bff70b8aa465e336465239c9f1b9 [file] [log] [blame]
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -08001config HAVE_ARCH_KASAN
2 bool
3
4if HAVE_ARCH_KASAN
5
6config KASAN
7 bool "KASan: runtime memory debugger"
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08008 depends on SLUB_DEBUG
Andrey Ryabininbebf56a2015-02-13 14:40:17 -08009 select CONSTRUCTORS
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080010 help
11 Enables kernel address sanitizer - runtime memory debugger,
12 designed to find out-of-bounds accesses and use-after-free bugs.
Joe Perches01e76902015-05-05 16:23:38 -070013 This is strictly a debugging feature and it requires a gcc version
14 of 4.9.2 or later. Detection of out of bounds accesses to stack or
15 global variables requires gcc 5.0 or later.
16 This feature consumes about 1/8 of available memory and brings about
17 ~x3 performance slowdown.
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080018 For better error detection enable CONFIG_STACKTRACE,
19 and add slub_debug=U to boot cmdline.
20
21config KASAN_SHADOW_OFFSET
22 hex
Andrey Ryabininef7f0d62015-02-13 14:39:25 -080023 default 0xdffffc0000000000 if X86_64
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080024
25choice
26 prompt "Instrumentation type"
27 depends on KASAN
28 default KASAN_OUTLINE
29
30config KASAN_OUTLINE
31 bool "Outline instrumentation"
32 help
33 Before every memory access compiler insert function call
34 __asan_load*/__asan_store*. These functions performs check
35 of shadow memory. This is slower than inline instrumentation,
36 however it doesn't bloat size of kernel's .text section so
37 much as inline does.
38
39config KASAN_INLINE
40 bool "Inline instrumentation"
41 help
42 Compiler directly inserts code checking shadow memory before
43 memory accesses. This is faster than outline (in some workloads
44 it gives about x2 boost over outline instrumentation), but
45 make kernel's .text size much bigger.
Joe Perches01e76902015-05-05 16:23:38 -070046 This requires a gcc version of 5.0 or later.
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080047
48endchoice
49
Andrey Ryabinin3f158012015-02-13 14:39:53 -080050config TEST_KASAN
51 tristate "Module for testing kasan for bug detection"
52 depends on m && KASAN
53 help
54 This is a test module doing various nasty things like
55 out of bounds accesses, use after free. It is useful for testing
56 kernel debugging features like kernel address sanitizer.
57
Andrey Ryabinin0b24bec2015-02-13 14:39:17 -080058endif