blob: e5372a13511df17fa8790469c053dfad116196e1 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Andrey Ryabininc6d30852016-01-20 15:00:55 -08002config ARCH_HAS_UBSAN_SANITIZE_ALL
3 bool
4
Kees Cook277a1082020-04-06 20:12:31 -07005menuconfig UBSAN
Andrey Ryabininc6d30852016-01-20 15:00:55 -08006 bool "Undefined behaviour sanity checker"
7 help
Kees Cook0887a7e2020-04-06 20:12:27 -07008 This option enables the Undefined Behaviour sanity checker.
Andrey Ryabininc6d30852016-01-20 15:00:55 -08009 Compile-time instrumentation is used to detect various undefined
Kees Cook0887a7e2020-04-06 20:12:27 -070010 behaviours at runtime. For more details, see:
11 Documentation/dev-tools/ubsan.rst
12
Kees Cook277a1082020-04-06 20:12:31 -070013if UBSAN
14
Kees Cook0887a7e2020-04-06 20:12:27 -070015config UBSAN_TRAP
16 bool "On Sanitizer warnings, abort the running kernel code"
Kees Cook79791372020-12-15 20:46:31 -080017 depends on !COMPILE_TEST
Kees Cook0887a7e2020-04-06 20:12:27 -070018 depends on $(cc-option, -fsanitize-undefined-trap-on-error)
19 help
20 Building kernels with Sanitizer features enabled tends to grow
21 the kernel size by around 5%, due to adding all the debugging
22 text on failure paths. To avoid this, Sanitizer instrumentation
23 can just issue a trap. This reduces the kernel size overhead but
24 turns all warnings (including potentially harmless conditions)
25 into full exceptions that abort the running kernel code
26 (regardless of context, locks held, etc), which may destabilize
27 the system. For some system builders this is an acceptable
28 trade-off.
Andrey Ryabininc6d30852016-01-20 15:00:55 -080029
Arnd Bergmannea91a1d2020-05-21 16:20:37 +020030config UBSAN_KCOV_BROKEN
31 def_bool KCOV && CC_HAS_SANCOV_TRACE_PC
32 depends on CC_IS_CLANG
33 depends on !$(cc-option,-Werror=unused-command-line-argument -fsanitize=bounds -fsanitize-coverage=trace-pc)
34 help
35 Some versions of clang support either UBSAN or KCOV but not the
36 combination of the two.
37 See https://bugs.llvm.org/show_bug.cgi?id=45831 for the status
38 in newer releases.
39
Kees Cookcdf8a762020-12-15 20:46:24 -080040config CC_HAS_UBSAN_BOUNDS
41 def_bool $(cc-option,-fsanitize=bounds)
42
43config CC_HAS_UBSAN_ARRAY_BOUNDS
44 def_bool $(cc-option,-fsanitize=array-bounds)
45
Kees Cook277a1082020-04-06 20:12:31 -070046config UBSAN_BOUNDS
47 bool "Perform array index bounds checking"
48 default UBSAN
Arnd Bergmannea91a1d2020-05-21 16:20:37 +020049 depends on !UBSAN_KCOV_BROKEN
Kees Cookcdf8a762020-12-15 20:46:24 -080050 depends on CC_HAS_UBSAN_ARRAY_BOUNDS || CC_HAS_UBSAN_BOUNDS
Kees Cook277a1082020-04-06 20:12:31 -070051 help
52 This option enables detection of directly indexed out of bounds
53 array accesses, where the array size is known at compile time.
54 Note that this does not protect array overflows via bad calls
55 to the {str,mem}*cpy() family of functions (that is addressed
56 by CONFIG_FORTIFY_SOURCE).
57
Kees Cookcdf8a762020-12-15 20:46:24 -080058config UBSAN_ONLY_BOUNDS
59 def_bool CC_HAS_UBSAN_BOUNDS && !CC_HAS_UBSAN_ARRAY_BOUNDS
60 depends on UBSAN_BOUNDS
61 help
62 This is a weird case: Clang's -fsanitize=bounds includes
63 -fsanitize=local-bounds, but it's trapping-only, so for
64 Clang, we must use -fsanitize=array-bounds when we want
65 traditional array bounds checking enabled. For GCC, we
66 want -fsanitize=bounds.
67
68config UBSAN_ARRAY_BOUNDS
69 def_bool CC_HAS_UBSAN_ARRAY_BOUNDS
70 depends on UBSAN_BOUNDS
71
George Popescu6a6155f2020-10-15 20:13:38 -070072config UBSAN_LOCAL_BOUNDS
73 bool "Perform array local bounds checking"
74 depends on UBSAN_TRAP
George Popescu6a6155f2020-10-15 20:13:38 -070075 depends on !UBSAN_KCOV_BROKEN
Kees Cookcdf8a762020-12-15 20:46:24 -080076 depends on $(cc-option,-fsanitize=local-bounds)
George Popescu6a6155f2020-10-15 20:13:38 -070077 help
78 This option enables -fsanitize=local-bounds which traps when an
Kees Cookcdf8a762020-12-15 20:46:24 -080079 exception/error is detected. Therefore, it may only be enabled
80 with CONFIG_UBSAN_TRAP.
81
George Popescu6a6155f2020-10-15 20:13:38 -070082 Enabling this option detects errors due to accesses through a
83 pointer that is derived from an object of a statically-known size,
84 where an added offset (which may not be known statically) is
85 out-of-bounds.
86
Kees Cookcdf8a762020-12-15 20:46:24 -080087config UBSAN_SHIFT
Kees Cookc6376932020-12-15 20:46:39 -080088 bool "Perform checking for bit-shift overflows"
89 default UBSAN
Kees Cookcdf8a762020-12-15 20:46:24 -080090 depends on $(cc-option,-fsanitize=shift)
Kees Cookc6376932020-12-15 20:46:39 -080091 help
92 This option enables -fsanitize=shift which checks for bit-shift
93 operations that overflow to the left or go switch to negative
94 for signed types.
Kees Cookcdf8a762020-12-15 20:46:24 -080095
96config UBSAN_DIV_ZERO
Kees Cookc6376932020-12-15 20:46:39 -080097 bool "Perform checking for integer divide-by-zero"
Kees Cookcdf8a762020-12-15 20:46:24 -080098 depends on $(cc-option,-fsanitize=integer-divide-by-zero)
Kees Cookc6376932020-12-15 20:46:39 -080099 help
100 This option enables -fsanitize=integer-divide-by-zero which checks
101 for integer division by zero. This is effectively redundant with the
102 kernel's existing exception handling, though it can provide greater
103 debugging information under CONFIG_UBSAN_REPORT_FULL.
Kees Cookcdf8a762020-12-15 20:46:24 -0800104
105config UBSAN_UNREACHABLE
Kees Cookc6376932020-12-15 20:46:39 -0800106 bool "Perform checking for unreachable code"
107 # objtool already handles unreachable checking and gets angry about
108 # seeing UBSan instrumentation located in unreachable places.
109 depends on !STACK_VALIDATION
Kees Cookcdf8a762020-12-15 20:46:24 -0800110 depends on $(cc-option,-fsanitize=unreachable)
Kees Cookc6376932020-12-15 20:46:39 -0800111 help
112 This option enables -fsanitize=unreachable which checks for control
113 flow reaching an expected-to-be-unreachable position.
Kees Cookcdf8a762020-12-15 20:46:24 -0800114
Kees Cookcdf8a762020-12-15 20:46:24 -0800115config UBSAN_OBJECT_SIZE
Kees Cookc6376932020-12-15 20:46:39 -0800116 bool "Perform checking for accesses beyond the end of objects"
117 default UBSAN
Kees Cook61e03492020-12-15 20:46:28 -0800118 # gcc hugely expands stack usage with -fsanitize=object-size
119 # https://lore.kernel.org/lkml/CAHk-=wjPasyJrDuwDnpHJS2TuQfExwe=px-SzLeN8GFMAQJPmQ@mail.gmail.com/
120 depends on !CC_IS_GCC
Kees Cookcdf8a762020-12-15 20:46:24 -0800121 depends on $(cc-option,-fsanitize=object-size)
Kees Cookc6376932020-12-15 20:46:39 -0800122 help
123 This option enables -fsanitize=object-size which checks for accesses
124 beyond the end of objects where the optimizer can determine both the
125 object being operated on and its size, usually seen with bad downcasts,
126 or access to struct members from NULL pointers.
Kees Cookcdf8a762020-12-15 20:46:24 -0800127
128config UBSAN_BOOL
Kees Cookc6376932020-12-15 20:46:39 -0800129 bool "Perform checking for non-boolean values used as boolean"
130 default UBSAN
Kees Cookcdf8a762020-12-15 20:46:24 -0800131 depends on $(cc-option,-fsanitize=bool)
Kees Cookc6376932020-12-15 20:46:39 -0800132 help
133 This option enables -fsanitize=bool which checks for boolean values being
134 loaded that are neither 0 nor 1.
Kees Cookcdf8a762020-12-15 20:46:24 -0800135
136config UBSAN_ENUM
Kees Cookc6376932020-12-15 20:46:39 -0800137 bool "Perform checking for out of bounds enum values"
138 default UBSAN
Kees Cookcdf8a762020-12-15 20:46:24 -0800139 depends on $(cc-option,-fsanitize=enum)
Kees Cookc6376932020-12-15 20:46:39 -0800140 help
141 This option enables -fsanitize=enum which checks for values being loaded
142 into an enum that are outside the range of given values for the given enum.
143
144config UBSAN_ALIGNMENT
145 bool "Perform checking for misaligned pointer usage"
146 default !HAVE_EFFICIENT_UNALIGNED_ACCESS
147 depends on !UBSAN_TRAP && !COMPILE_TEST
148 depends on $(cc-option,-fsanitize=alignment)
149 help
150 This option enables the check of unaligned memory accesses.
151 Enabling this option on architectures that support unaligned
152 accesses may produce a lot of false positives.
Kees Cookcdf8a762020-12-15 20:46:24 -0800153
Andrey Ryabininc6d30852016-01-20 15:00:55 -0800154config UBSAN_SANITIZE_ALL
155 bool "Enable instrumentation for the entire kernel"
Andrey Ryabininc6d30852016-01-20 15:00:55 -0800156 depends on ARCH_HAS_UBSAN_SANITIZE_ALL
157 default y
158 help
159 This option activates instrumentation for the entire kernel.
160 If you don't enable this option, you have to explicitly specify
161 UBSAN_SANITIZE := y for the files/directories you want to check for UB.
Yang Shi77075352016-02-11 16:12:55 -0800162 Enabling this option will get kernel image size increased
163 significantly.
Andrey Ryabininc6d30852016-01-20 15:00:55 -0800164
Jinbum Park854686f2018-04-10 16:32:58 -0700165config TEST_UBSAN
166 tristate "Module for testing for undefined behavior detection"
Kees Cook277a1082020-04-06 20:12:31 -0700167 depends on m
Jinbum Park854686f2018-04-10 16:32:58 -0700168 help
169 This is a test module for UBSAN.
170 It triggers various undefined behavior, and detect it.
Kees Cook277a1082020-04-06 20:12:31 -0700171
172endif # if UBSAN