044ab383ea73f73ddbb70150e770199b3d3a618a
[kconfig-hardened-check.git] / kconfig_hardened_check / __init__.py
1 #!/usr/bin/python3
2
3 #
4 # This tool helps me to check Linux kernel options against
5 # my security hardening preferences for X86_64, ARM64, X86_32, and ARM.
6 # Let the computers do their job!
7 #
8 # Author: Alexander Popov <alex.popov@linux.com>
9 #
10 # Please don't cry if my Python code looks like C.
11 #
12 #
13 # N.B Hardening command line parameters:
14 #    iommu=force (does it help against DMA attacks?)
15 #
16 #    Mitigations of CPU vulnerabilities:
17 #       Аrch-independent:
18 #           mitigations=auto,nosmt (nosmt is slow)
19 #       X86:
20 #           spec_store_bypass_disable=on
21 #           l1tf=full,force
22 #           l1d_flush=on (a part of the l1tf option)
23 #           mds=full,nosmt
24 #           tsx=off
25 #       ARM64:
26 #           kpti=on
27 #           ssbd=force-on
28 #
29 #    Should NOT be set:
30 #           sysrq_always_enabled
31 #           arm64.nobti
32 #           arm64.nopauth
33 #           arm64.nomte
34 #
35 #    Hardware tag-based KASAN with arm64 Memory Tagging Extension (MTE):
36 #           kasan=on
37 #           kasan.stacktrace=off
38 #           kasan.fault=panic
39 #
40 # N.B. Hardening sysctls:
41 #    kernel.kptr_restrict=2 (or 1?)
42 #    kernel.dmesg_restrict=1 (also see the kconfig option)
43 #    kernel.perf_event_paranoid=3
44 #    kernel.kexec_load_disabled=1
45 #    kernel.yama.ptrace_scope=3
46 #    user.max_user_namespaces=0
47 #    what about bpf_jit_enable?
48 #    kernel.unprivileged_bpf_disabled=1
49 #    net.core.bpf_jit_harden=2
50 #    vm.unprivileged_userfaultfd=0
51 #        (at first, it disabled unprivileged userfaultfd,
52 #         and since v5.11 it enables unprivileged userfaultfd for user-mode only)
53 #    vm.mmap_min_addr has a good value
54 #    dev.tty.ldisc_autoload=0
55 #    fs.protected_symlinks=1
56 #    fs.protected_hardlinks=1
57 #    fs.protected_fifos=2
58 #    fs.protected_regular=2
59 #    fs.suid_dumpable=0
60 #    kernel.modules_disabled=1
61 #    kernel.randomize_va_space = 2
62
63
64 # pylint: disable=missing-module-docstring,missing-class-docstring,missing-function-docstring
65 # pylint: disable=line-too-long,invalid-name,too-many-branches,too-many-statements
66
67
68 import sys
69 from argparse import ArgumentParser
70 from collections import OrderedDict
71 import re
72 import json
73 from .__about__ import __version__
74
75 SIMPLE_OPTION_TYPES = ('kconfig', 'version', 'cmdline')
76
77 class OptCheck:
78     # Constructor without the 'expected' parameter is for option presence checks (any value is OK)
79     def __init__(self, reason, decision, name, expected=None):
80         assert(reason and decision and name), \
81                'invalid {} check for "{}"'.format(self.__class__.__name__, name)
82         self.name = name
83         self.expected = expected
84         self.decision = decision
85         self.reason = reason
86         self.state = None
87         self.result = None
88
89     @property
90     def type(self):
91         return None
92
93     def check(self):
94         # handle the option presence check
95         if self.expected is None:
96             if self.state is None:
97                 self.result = 'FAIL: not present'
98             else:
99                 self.result = 'OK: is present'
100             return
101
102         # handle the option value check
103         if self.expected == self.state:
104             self.result = 'OK'
105         elif self.state is None:
106             if self.expected == 'is not set':
107                 self.result = 'OK: not found'
108             else:
109                 self.result = 'FAIL: not found'
110         else:
111             self.result = 'FAIL: "' + self.state + '"'
112
113     def table_print(self, _mode, with_results):
114         if self.expected is None:
115             expected = ''
116         else:
117             expected = self.expected
118         print('{:<40}|{:^7}|{:^12}|{:^10}|{:^18}'.format(self.name, self.type, expected, self.decision, self.reason), end='')
119         if with_results:
120             print('| {}'.format(self.result), end='')
121
122     def json_dump(self, with_results):
123         dump = [self.name, self.type, self.expected, self.decision, self.reason]
124         if with_results:
125             dump.append(self.result)
126         return dump
127
128
129 class KconfigCheck(OptCheck):
130     def __init__(self, *args, **kwargs):
131         super().__init__(*args, **kwargs)
132         self.name = 'CONFIG_' + self.name
133
134     @property
135     def type(self):
136         return 'kconfig'
137
138
139 class CmdlineCheck(OptCheck):
140     @property
141     def type(self):
142         return 'cmdline'
143
144
145 class VersionCheck:
146     def __init__(self, ver_expected):
147         self.ver_expected = ver_expected
148         self.ver = ()
149         self.result = None
150
151     @property
152     def type(self):
153         return 'version'
154
155     def check(self):
156         if self.ver[0] > self.ver_expected[0]:
157             self.result = 'OK: version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
158             return
159         if self.ver[0] < self.ver_expected[0]:
160             self.result = 'FAIL: version < ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
161             return
162         if self.ver[1] >= self.ver_expected[1]:
163             self.result = 'OK: version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
164             return
165         self.result = 'FAIL: version < ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
166
167     def table_print(self, _mode, with_results):
168         ver_req = 'kernel version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
169         print('{:<91}'.format(ver_req), end='')
170         if with_results:
171             print('| {}'.format(self.result), end='')
172
173
174 class ComplexOptCheck:
175     def __init__(self, *opts):
176         self.opts = opts
177         assert(self.opts), \
178                'empty {} check'.format(self.__class__.__name__)
179         assert(len(self.opts) != 1), \
180                 'useless {} check: {}'.format(self.__class__.__name__, opts)
181         assert(isinstance(opts[0], (KconfigCheck, CmdlineCheck))), \
182                'invalid {} check: {}'.format(self.__class__.__name__, opts)
183         self.result = None
184
185     @property
186     def type(self):
187         return 'complex'
188
189     @property
190     def name(self):
191         return self.opts[0].name
192
193     @property
194     def expected(self):
195         return self.opts[0].expected
196
197     def table_print(self, mode, with_results):
198         if mode == 'verbose':
199             print('    {:87}'.format('<<< ' + self.__class__.__name__ + ' >>>'), end='')
200             if with_results:
201                 print('| {}'.format(self.result), end='')
202             for o in self.opts:
203                 print()
204                 o.table_print(mode, with_results)
205         else:
206             o = self.opts[0]
207             o.table_print(mode, False)
208             if with_results:
209                 print('| {}'.format(self.result), end='')
210
211     def json_dump(self, with_results):
212         dump = self.opts[0].json_dump(False)
213         if with_results:
214             dump.append(self.result)
215         return dump
216
217
218 class OR(ComplexOptCheck):
219     # self.opts[0] is the option that this OR-check is about.
220     # Use cases:
221     #     OR(<X_is_hardened>, <X_is_disabled>)
222     #     OR(<X_is_hardened>, <old_X_is_hardened>)
223     def check(self):
224         for i, opt in enumerate(self.opts):
225             opt.check()
226             if opt.result.startswith('OK'):
227                 self.result = opt.result
228                 # Add more info for additional checks:
229                 if i != 0:
230                     if opt.result == 'OK':
231                         self.result = 'OK: {} "{}"'.format(opt.name, opt.expected)
232                     elif opt.result == 'OK: not found':
233                         self.result = 'OK: {} not found'.format(opt.name)
234                     elif opt.result == 'OK: is present':
235                         self.result = 'OK: {} is present'.format(opt.name)
236                     else:
237                         # VersionCheck provides enough info
238                         assert(opt.result.startswith('OK: version')), \
239                                'unexpected OK description "{}"'.format(opt.result)
240                 return
241         self.result = self.opts[0].result
242
243
244 class AND(ComplexOptCheck):
245     # self.opts[0] is the option that this AND-check is about.
246     # Use cases:
247     #     AND(<suboption>, <main_option>)
248     #       Suboption is not checked if checking of the main_option is failed.
249     #     AND(<X_is_disabled>, <old_X_is_disabled>)
250     def check(self):
251         for i, opt in reversed(list(enumerate(self.opts))):
252             opt.check()
253             if i == 0:
254                 self.result = opt.result
255                 return
256             if not opt.result.startswith('OK'):
257                 # This FAIL is caused by additional checks,
258                 # and not by the main option that this AND-check is about.
259                 # Describe the reason of the FAIL.
260                 if opt.result.startswith('FAIL: \"') or opt.result == 'FAIL: not found':
261                     self.result = 'FAIL: {} not "{}"'.format(opt.name, opt.expected)
262                 elif opt.result == 'FAIL: not present':
263                     self.result = 'FAIL: {} not present'.format(opt.name)
264                 else:
265                     # VersionCheck provides enough info
266                     self.result = opt.result
267                     assert(opt.result.startswith('FAIL: version')), \
268                            'unexpected FAIL description "{}"'.format(opt.result)
269                 return
270
271
272 def detect_arch(fname, archs):
273     with open(fname, 'r') as f:
274         arch_pattern = re.compile("CONFIG_[a-zA-Z0-9_]*=y")
275         arch = None
276         for line in f.readlines():
277             if arch_pattern.match(line):
278                 option, _ = line[7:].split('=', 1)
279                 if option in archs:
280                     if not arch:
281                         arch = option
282                     else:
283                         return None, 'more than one supported architecture is detected'
284         if not arch:
285             return None, 'failed to detect architecture'
286         return arch, 'OK'
287
288
289 def detect_kernel_version(fname):
290     with open(fname, 'r') as f:
291         ver_pattern = re.compile("# Linux/.* Kernel Configuration")
292         for line in f.readlines():
293             if ver_pattern.match(line):
294                 line = line.strip()
295                 parts = line.split()
296                 ver_str = parts[2]
297                 ver_numbers = ver_str.split('.')
298                 if len(ver_numbers) < 3 or not ver_numbers[0].isdigit() or not ver_numbers[1].isdigit():
299                     msg = 'failed to parse the version "' + ver_str + '"'
300                     return None, msg
301                 return (int(ver_numbers[0]), int(ver_numbers[1])), None
302         return None, 'no kernel version detected'
303
304
305 def detect_compiler(fname):
306     gcc_version = None
307     clang_version = None
308     with open(fname, 'r') as f:
309         gcc_version_pattern = re.compile("CONFIG_GCC_VERSION=[0-9]*")
310         clang_version_pattern = re.compile("CONFIG_CLANG_VERSION=[0-9]*")
311         for line in f.readlines():
312             if gcc_version_pattern.match(line):
313                 gcc_version = line[19:-1]
314             if clang_version_pattern.match(line):
315                 clang_version = line[21:-1]
316     if not gcc_version or not clang_version:
317         return None, 'no CONFIG_GCC_VERSION or CONFIG_CLANG_VERSION'
318     if gcc_version == '0' and clang_version != '0':
319         return 'CLANG ' + clang_version, 'OK'
320     if gcc_version != '0' and clang_version == '0':
321         return 'GCC ' + gcc_version, 'OK'
322     sys.exit('[!] ERROR: invalid GCC_VERSION and CLANG_VERSION: {} {}'.format(gcc_version, clang_version))
323
324
325 def add_kconfig_checks(l, arch):
326     # Calling the KconfigCheck class constructor:
327     #     KconfigCheck(reason, decision, name, expected)
328     #
329     # [!] Don't add CmdlineChecks in add_kconfig_checks() to avoid wrong results
330     #     when the tool doesn't check the cmdline.
331
332     efi_not_set = KconfigCheck('-', '-', 'EFI', 'is not set')
333     cc_is_gcc = KconfigCheck('-', '-', 'CC_IS_GCC', 'y') # exists since v4.18
334     cc_is_clang = KconfigCheck('-', '-', 'CC_IS_CLANG', 'y') # exists since v4.18
335
336     modules_not_set = KconfigCheck('cut_attack_surface', 'kspp', 'MODULES', 'is not set')
337     devmem_not_set = KconfigCheck('cut_attack_surface', 'kspp', 'DEVMEM', 'is not set') # refers to LOCKDOWN
338     bpf_syscall_not_set = KconfigCheck('cut_attack_surface', 'lockdown', 'BPF_SYSCALL', 'is not set') # refers to LOCKDOWN
339
340     # 'self_protection', 'defconfig'
341     l += [KconfigCheck('self_protection', 'defconfig', 'BUG', 'y')]
342     l += [KconfigCheck('self_protection', 'defconfig', 'SLUB_DEBUG', 'y')]
343     gcc_plugins_support_is_set = KconfigCheck('self_protection', 'defconfig', 'GCC_PLUGINS', 'y')
344     l += [gcc_plugins_support_is_set]
345     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR', 'y'),
346              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR', 'y'),
347              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_REGULAR', 'y'),
348              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_AUTO', 'y'),
349              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_STRONG', 'y'))]
350     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR_STRONG', 'y'),
351              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_STRONG', 'y'))]
352     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STRICT_KERNEL_RWX', 'y'),
353              KconfigCheck('self_protection', 'defconfig', 'DEBUG_RODATA', 'y'))] # before v4.11
354     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STRICT_MODULE_RWX', 'y'),
355              KconfigCheck('self_protection', 'defconfig', 'DEBUG_SET_MODULE_RONX', 'y'),
356              modules_not_set)] # DEBUG_SET_MODULE_RONX was before v4.11
357     l += [OR(KconfigCheck('self_protection', 'defconfig', 'REFCOUNT_FULL', 'y'),
358              VersionCheck((5, 5)))] # REFCOUNT_FULL is enabled by default since v5.5
359     l += [KconfigCheck('self_protection', 'defconfig', 'THREAD_INFO_IN_TASK', 'y')]
360     iommu_support_is_set = KconfigCheck('self_protection', 'defconfig', 'IOMMU_SUPPORT', 'y')
361     l += [iommu_support_is_set] # is needed for mitigating DMA attacks
362     if arch in ('X86_64', 'ARM64', 'X86_32'):
363         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y')]
364     if arch in ('X86_64', 'ARM64'):
365         l += [KconfigCheck('self_protection', 'defconfig', 'VMAP_STACK', 'y')]
366     if arch in ('X86_64', 'X86_32'):
367         l += [KconfigCheck('self_protection', 'defconfig', 'X86_MCE', 'y')]
368         l += [KconfigCheck('self_protection', 'defconfig', 'X86_MCE_INTEL', 'y')]
369         l += [KconfigCheck('self_protection', 'defconfig', 'X86_MCE_AMD', 'y')]
370         l += [KconfigCheck('self_protection', 'defconfig', 'MICROCODE', 'y')] # is needed for mitigating CPU bugs
371         l += [KconfigCheck('self_protection', 'defconfig', 'RETPOLINE', 'y')]
372         l += [OR(KconfigCheck('self_protection', 'defconfig', 'X86_SMAP', 'y'),
373                  VersionCheck((5, 19)))] # X86_SMAP is enabled by default since v5.19
374         l += [KconfigCheck('self_protection', 'defconfig', 'SYN_COOKIES', 'y')] # another reason?
375         l += [OR(KconfigCheck('self_protection', 'defconfig', 'X86_UMIP', 'y'),
376                  KconfigCheck('self_protection', 'defconfig', 'X86_INTEL_UMIP', 'y'))]
377     if arch in ('ARM64', 'ARM'):
378         l += [KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR_PER_TASK', 'y')]
379     if arch == 'X86_64':
380         l += [KconfigCheck('self_protection', 'defconfig', 'PAGE_TABLE_ISOLATION', 'y')]
381         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_MEMORY', 'y')]
382         l += [AND(KconfigCheck('self_protection', 'defconfig', 'INTEL_IOMMU', 'y'),
383                   iommu_support_is_set)]
384         l += [AND(KconfigCheck('self_protection', 'defconfig', 'AMD_IOMMU', 'y'),
385                   iommu_support_is_set)]
386     if arch == 'ARM64':
387         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_PAN', 'y')]
388         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_EPAN', 'y')]
389         l += [KconfigCheck('self_protection', 'defconfig', 'UNMAP_KERNEL_AT_EL0', 'y')]
390         l += [OR(KconfigCheck('self_protection', 'defconfig', 'HARDEN_EL2_VECTORS', 'y'),
391                  AND(KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y'),
392                      VersionCheck((5, 9))))] # HARDEN_EL2_VECTORS was included in RANDOMIZE_BASE in v5.9
393         l += [KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y')]
394         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_PTR_AUTH_KERNEL', 'y')]
395         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_BTI_KERNEL', 'y')]
396         l += [OR(KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y'),
397                  VersionCheck((5, 10)))] # HARDEN_BRANCH_PREDICTOR is enabled by default since v5.10
398         l += [KconfigCheck('self_protection', 'defconfig', 'MITIGATE_SPECTRE_BRANCH_HISTORY', 'y')]
399         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_MTE', 'y')]
400         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_MODULE_REGION_FULL', 'y')]
401     if arch == 'ARM':
402         l += [KconfigCheck('self_protection', 'defconfig', 'CPU_SW_DOMAIN_PAN', 'y')]
403         l += [KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y')]
404         l += [KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_HISTORY', 'y')]
405
406     # 'self_protection', 'kspp'
407     l += [KconfigCheck('self_protection', 'kspp', 'BUG_ON_DATA_CORRUPTION', 'y')]
408     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_WX', 'y')]
409     l += [KconfigCheck('self_protection', 'kspp', 'SCHED_STACK_END_CHECK', 'y')]
410     l += [KconfigCheck('self_protection', 'kspp', 'SLAB_FREELIST_HARDENED', 'y')]
411     l += [KconfigCheck('self_protection', 'kspp', 'SLAB_FREELIST_RANDOM', 'y')]
412     l += [KconfigCheck('self_protection', 'kspp', 'SHUFFLE_PAGE_ALLOCATOR', 'y')]
413     l += [KconfigCheck('self_protection', 'kspp', 'FORTIFY_SOURCE', 'y')]
414     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_LIST', 'y')]
415     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_SG', 'y')]
416     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_CREDENTIALS', 'y')]
417     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_NOTIFIERS', 'y')]
418     l += [KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y')]
419     l += [AND(KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_LATENT_ENTROPY', 'y'),
420               gcc_plugins_support_is_set)]
421     l += [KconfigCheck('self_protection', 'kspp', 'KFENCE', 'y')]
422     l += [KconfigCheck('self_protection', 'kspp', 'WERROR', 'y')]
423     l += [KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_DMA_STRICT', 'y')]
424     l += [KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set')] # true if IOMMU_DEFAULT_DMA_STRICT is set
425     l += [KconfigCheck('self_protection', 'kspp', 'ZERO_CALL_USED_REGS', 'y')]
426     randstruct_is_set = OR(KconfigCheck('self_protection', 'kspp', 'RANDSTRUCT_FULL', 'y'),
427                            KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_RANDSTRUCT', 'y'))
428     l += [randstruct_is_set]
429     hardened_usercopy_is_set = KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y')
430     l += [hardened_usercopy_is_set]
431     l += [AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_FALLBACK', 'is not set'),
432               hardened_usercopy_is_set)]
433     l += [AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_PAGESPAN', 'is not set'),
434               hardened_usercopy_is_set)]
435     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG', 'y'),
436              modules_not_set)]
437     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_ALL', 'y'),
438              modules_not_set)]
439     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_SHA512', 'y'),
440              modules_not_set)]
441     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_FORCE', 'y'),
442              modules_not_set)] # refers to LOCKDOWN
443     l += [OR(KconfigCheck('self_protection', 'kspp', 'INIT_STACK_ALL_ZERO', 'y'),
444              KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_STRUCTLEAK_BYREF_ALL', 'y'))]
445     l += [OR(KconfigCheck('self_protection', 'kspp', 'INIT_ON_FREE_DEFAULT_ON', 'y'),
446              KconfigCheck('self_protection', 'kspp', 'PAGE_POISONING_ZERO', 'y'))]
447              # CONFIG_INIT_ON_FREE_DEFAULT_ON was added in v5.3.
448              # CONFIG_PAGE_POISONING_ZERO was removed in v5.11.
449              # Starting from v5.11 CONFIG_PAGE_POISONING unconditionally checks
450              # the 0xAA poison pattern on allocation.
451              # That brings higher performance penalty.
452     ubsan_bounds_is_set = KconfigCheck('self_protection', 'kspp', 'UBSAN_BOUNDS', 'y')
453     l += [ubsan_bounds_is_set]
454     l += [OR(KconfigCheck('self_protection', 'kspp', 'UBSAN_LOCAL_BOUNDS', 'y'),
455              AND(ubsan_bounds_is_set,
456                  cc_is_gcc))]
457     l += [AND(KconfigCheck('self_protection', 'kspp', 'UBSAN_TRAP', 'y'),
458               ubsan_bounds_is_set,
459               KconfigCheck('self_protection', 'kspp', 'UBSAN_SHIFT', 'is not set'),
460               KconfigCheck('self_protection', 'kspp', 'UBSAN_DIV_ZERO', 'is not set'),
461               KconfigCheck('self_protection', 'kspp', 'UBSAN_UNREACHABLE', 'is not set'),
462               KconfigCheck('self_protection', 'kspp', 'UBSAN_BOOL', 'is not set'),
463               KconfigCheck('self_protection', 'kspp', 'UBSAN_ENUM', 'is not set'),
464               KconfigCheck('self_protection', 'kspp', 'UBSAN_ALIGNMENT', 'is not set'))] # only array index bounds checking with traps
465     if arch in ('X86_64', 'ARM64', 'X86_32'):
466         l += [AND(KconfigCheck('self_protection', 'kspp', 'UBSAN_SANITIZE_ALL', 'y'),
467                   ubsan_bounds_is_set)] # ARCH_HAS_UBSAN_SANITIZE_ALL is not enabled for ARM
468         stackleak_is_set = KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_STACKLEAK', 'y')
469         l += [AND(stackleak_is_set, gcc_plugins_support_is_set)]
470         l += [KconfigCheck('self_protection', 'kspp', 'RANDOMIZE_KSTACK_OFFSET_DEFAULT', 'y')]
471     if arch in ('X86_64', 'X86_32'):
472         l += [KconfigCheck('self_protection', 'kspp', 'SCHED_CORE', 'y')]
473         l += [KconfigCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '65536')]
474     if arch in ('ARM64', 'ARM'):
475         l += [KconfigCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '32768')]
476         l += [KconfigCheck('self_protection', 'kspp', 'SYN_COOKIES', 'y')] # another reason?
477     if arch == 'ARM64':
478         l += [KconfigCheck('self_protection', 'kspp', 'ARM64_SW_TTBR0_PAN', 'y')]
479     if arch == 'X86_32':
480         l += [KconfigCheck('self_protection', 'kspp', 'PAGE_TABLE_ISOLATION', 'y')]
481         l += [KconfigCheck('self_protection', 'kspp', 'HIGHMEM64G', 'y')]
482         l += [KconfigCheck('self_protection', 'kspp', 'X86_PAE', 'y')]
483
484     # 'self_protection', 'clipos'
485     l += [KconfigCheck('self_protection', 'clipos', 'DEBUG_VIRTUAL', 'y')]
486     l += [KconfigCheck('self_protection', 'clipos', 'STATIC_USERMODEHELPER', 'y')] # needs userspace support
487     l += [OR(KconfigCheck('self_protection', 'clipos', 'EFI_DISABLE_PCI_DMA', 'y'),
488              efi_not_set)]
489     l += [KconfigCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set')]
490     hw_random_tpm_is_set = KconfigCheck('self_protection', 'clipos', 'HW_RANDOM_TPM', 'y')
491     l += [hw_random_tpm_is_set]
492     l += [AND(KconfigCheck('self_protection', 'clipos', 'RANDOM_TRUST_BOOTLOADER', 'is not set'),
493               hw_random_tpm_is_set)]
494     l += [AND(KconfigCheck('self_protection', 'clipos', 'RANDOM_TRUST_CPU', 'is not set'),
495               hw_random_tpm_is_set)]
496     l += [AND(KconfigCheck('self_protection', 'clipos', 'RANDSTRUCT_PERFORMANCE', 'is not set'),
497               KconfigCheck('self_protection', 'clipos', 'GCC_PLUGIN_RANDSTRUCT_PERFORMANCE', 'is not set'),
498               randstruct_is_set)]
499     if arch in ('X86_64', 'ARM64', 'X86_32'):
500         l += [AND(KconfigCheck('self_protection', 'clipos', 'STACKLEAK_METRICS', 'is not set'),
501                   stackleak_is_set,
502                   gcc_plugins_support_is_set)]
503         l += [AND(KconfigCheck('self_protection', 'clipos', 'STACKLEAK_RUNTIME_DISABLE', 'is not set'),
504                   stackleak_is_set,
505                   gcc_plugins_support_is_set)]
506     if arch in ('X86_64', 'X86_32'):
507         l += [AND(KconfigCheck('self_protection', 'clipos', 'INTEL_IOMMU_DEFAULT_ON', 'y'),
508                   iommu_support_is_set)]
509     if arch == 'X86_64':
510         l += [AND(KconfigCheck('self_protection', 'clipos', 'INTEL_IOMMU_SVM', 'y'),
511                   iommu_support_is_set)]
512     if arch == 'X86_32':
513         l += [AND(KconfigCheck('self_protection', 'clipos', 'INTEL_IOMMU', 'y'),
514                   iommu_support_is_set)]
515
516     # 'self_protection', 'my'
517     l += [OR(KconfigCheck('self_protection', 'my', 'RESET_ATTACK_MITIGATION', 'y'),
518              efi_not_set)] # needs userspace support (systemd)
519     if arch == 'X86_64':
520         l += [KconfigCheck('self_protection', 'my', 'SLS', 'y')] # vs CVE-2021-26341 in Straight-Line-Speculation
521         l += [AND(KconfigCheck('self_protection', 'my', 'AMD_IOMMU_V2', 'y'),
522                   iommu_support_is_set)]
523     if arch == 'ARM64':
524         l += [KconfigCheck('self_protection', 'my', 'SHADOW_CALL_STACK', 'y')] # maybe it's alternative to STACKPROTECTOR_STRONG
525         l += [KconfigCheck('self_protection', 'my', 'KASAN_HW_TAGS', 'y')]
526         cfi_clang_is_set = KconfigCheck('self_protection', 'my', 'CFI_CLANG', 'y')
527         l += [cfi_clang_is_set]
528         l += [AND(KconfigCheck('self_protection', 'my', 'CFI_PERMISSIVE', 'is not set'),
529                   cfi_clang_is_set)]
530
531     # 'security_policy'
532     if arch in ('X86_64', 'ARM64', 'X86_32'):
533         l += [KconfigCheck('security_policy', 'defconfig', 'SECURITY', 'y')] # and choose your favourite LSM
534     if arch == 'ARM':
535         l += [KconfigCheck('security_policy', 'kspp', 'SECURITY', 'y')] # and choose your favourite LSM
536     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_YAMA', 'y')]
537     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_LANDLOCK', 'y')]
538     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_SELINUX_DISABLE', 'is not set')]
539     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_SELINUX_BOOTPARAM', 'is not set')]
540     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_SELINUX_DEVELOP', 'is not set')]
541     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_LOCKDOWN_LSM', 'y')]
542     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_LOCKDOWN_LSM_EARLY', 'y')]
543     l += [KconfigCheck('security_policy', 'kspp', 'LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY', 'y')]
544     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_WRITABLE_HOOKS', 'is not set')] # refers to SECURITY_SELINUX_DISABLE
545
546     # 'cut_attack_surface', 'defconfig'
547     l += [OR(KconfigCheck('cut_attack_surface', 'defconfig', 'BPF_UNPRIV_DEFAULT_OFF', 'y'),
548              bpf_syscall_not_set)] # see unprivileged_bpf_disabled
549     l += [KconfigCheck('cut_attack_surface', 'defconfig', 'SECCOMP', 'y')]
550     l += [KconfigCheck('cut_attack_surface', 'defconfig', 'SECCOMP_FILTER', 'y')]
551     if arch in ('X86_64', 'ARM64', 'X86_32'):
552         l += [OR(KconfigCheck('cut_attack_surface', 'defconfig', 'STRICT_DEVMEM', 'y'),
553                  devmem_not_set)] # refers to LOCKDOWN
554
555     # 'cut_attack_surface', 'kspp'
556     l += [KconfigCheck('cut_attack_surface', 'kspp', 'SECURITY_DMESG_RESTRICT', 'y')]
557     l += [KconfigCheck('cut_attack_surface', 'kspp', 'ACPI_CUSTOM_METHOD', 'is not set')] # refers to LOCKDOWN
558     l += [KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_BRK', 'is not set')]
559     l += [KconfigCheck('cut_attack_surface', 'kspp', 'DEVKMEM', 'is not set')] # refers to LOCKDOWN
560     l += [KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set')]
561     l += [KconfigCheck('cut_attack_surface', 'kspp', 'BINFMT_MISC', 'is not set')]
562     l += [KconfigCheck('cut_attack_surface', 'kspp', 'INET_DIAG', 'is not set')]
563     l += [KconfigCheck('cut_attack_surface', 'kspp', 'KEXEC', 'is not set')] # refers to LOCKDOWN
564     l += [KconfigCheck('cut_attack_surface', 'kspp', 'PROC_KCORE', 'is not set')] # refers to LOCKDOWN
565     l += [KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_PTYS', 'is not set')]
566     l += [KconfigCheck('cut_attack_surface', 'kspp', 'HIBERNATION', 'is not set')] # refers to LOCKDOWN
567     l += [KconfigCheck('cut_attack_surface', 'kspp', 'IA32_EMULATION', 'is not set')]
568     l += [KconfigCheck('cut_attack_surface', 'kspp', 'X86_X32', 'is not set')]
569     l += [KconfigCheck('cut_attack_surface', 'kspp', 'MODIFY_LDT_SYSCALL', 'is not set')]
570     l += [KconfigCheck('cut_attack_surface', 'kspp', 'OABI_COMPAT', 'is not set')]
571     l += [KconfigCheck('cut_attack_surface', 'kspp', 'X86_MSR', 'is not set')] # refers to LOCKDOWN
572     l += [modules_not_set]
573     l += [devmem_not_set]
574     l += [OR(KconfigCheck('cut_attack_surface', 'kspp', 'IO_STRICT_DEVMEM', 'y'),
575              devmem_not_set)] # refers to LOCKDOWN
576     if arch == 'ARM':
577         l += [OR(KconfigCheck('cut_attack_surface', 'kspp', 'STRICT_DEVMEM', 'y'),
578                  devmem_not_set)] # refers to LOCKDOWN
579     if arch == 'X86_64':
580         l += [KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y')] # 'vsyscall=none'
581
582     # 'cut_attack_surface', 'grsec'
583     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ZSMALLOC_STAT', 'is not set')]
584     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PAGE_OWNER', 'is not set')]
585     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_KMEMLEAK', 'is not set')]
586     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BINFMT_AOUT', 'is not set')]
587     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KPROBE_EVENTS', 'is not set')]
588     l += [KconfigCheck('cut_attack_surface', 'grsec', 'UPROBE_EVENTS', 'is not set')]
589     l += [KconfigCheck('cut_attack_surface', 'grsec', 'GENERIC_TRACER', 'is not set')] # refers to LOCKDOWN
590     l += [KconfigCheck('cut_attack_surface', 'grsec', 'FUNCTION_TRACER', 'is not set')]
591     l += [KconfigCheck('cut_attack_surface', 'grsec', 'STACK_TRACER', 'is not set')]
592     l += [KconfigCheck('cut_attack_surface', 'grsec', 'HIST_TRIGGERS', 'is not set')]
593     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BLK_DEV_IO_TRACE', 'is not set')]
594     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROC_VMCORE', 'is not set')]
595     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROC_PAGE_MONITOR', 'is not set')]
596     l += [KconfigCheck('cut_attack_surface', 'grsec', 'USELIB', 'is not set')]
597     l += [KconfigCheck('cut_attack_surface', 'grsec', 'CHECKPOINT_RESTORE', 'is not set')]
598     l += [KconfigCheck('cut_attack_surface', 'grsec', 'USERFAULTFD', 'is not set')]
599     l += [KconfigCheck('cut_attack_surface', 'grsec', 'HWPOISON_INJECT', 'is not set')]
600     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MEM_SOFT_DIRTY', 'is not set')]
601     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEVPORT', 'is not set')] # refers to LOCKDOWN
602     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_FS', 'is not set')] # refers to LOCKDOWN
603     l += [KconfigCheck('cut_attack_surface', 'grsec', 'NOTIFIER_ERROR_INJECTION', 'is not set')]
604     l += [KconfigCheck('cut_attack_surface', 'grsec', 'FAIL_FUTEX', 'is not set')]
605     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PUNIT_ATOM_DEBUG', 'is not set')]
606     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ACPI_CONFIGFS', 'is not set')]
607     l += [KconfigCheck('cut_attack_surface', 'grsec', 'EDAC_DEBUG', 'is not set')]
608     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DRM_I915_DEBUG', 'is not set')]
609     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BCACHE_CLOSURES_DEBUG', 'is not set')]
610     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DVB_C8SECTPFE', 'is not set')]
611     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MTD_SLRAM', 'is not set')]
612     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MTD_PHRAM', 'is not set')]
613     l += [KconfigCheck('cut_attack_surface', 'grsec', 'IO_URING', 'is not set')]
614     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KCMP', 'is not set')]
615     l += [KconfigCheck('cut_attack_surface', 'grsec', 'RSEQ', 'is not set')]
616     l += [KconfigCheck('cut_attack_surface', 'grsec', 'LATENCYTOP', 'is not set')]
617     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KCOV', 'is not set')]
618     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROVIDE_OHCI1394_DMA_INIT', 'is not set')]
619     l += [KconfigCheck('cut_attack_surface', 'grsec', 'SUNRPC_DEBUG', 'is not set')]
620     l += [AND(KconfigCheck('cut_attack_surface', 'grsec', 'PTDUMP_DEBUGFS', 'is not set'),
621               KconfigCheck('cut_attack_surface', 'grsec', 'X86_PTDUMP', 'is not set'))]
622
623     # 'cut_attack_surface', 'maintainer'
624     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'DRM_LEGACY', 'is not set')] # recommended by Daniel Vetter in /issues/38
625     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'FB', 'is not set')] # recommended by Daniel Vetter in /issues/38
626     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'VT', 'is not set')] # recommended by Daniel Vetter in /issues/38
627     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'BLK_DEV_FD', 'is not set')] # recommended by Denis Efremov in /pull/54
628     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'BLK_DEV_FD_RAWCMD', 'is not set')] # recommended by Denis Efremov in /pull/62
629
630     # 'cut_attack_surface', 'grapheneos'
631     l += [KconfigCheck('cut_attack_surface', 'grapheneos', 'AIO', 'is not set')]
632
633     # 'cut_attack_surface', 'clipos'
634     l += [KconfigCheck('cut_attack_surface', 'clipos', 'STAGING', 'is not set')]
635     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KSM', 'is not set')] # to prevent FLUSH+RELOAD attack
636 #   l += [KconfigCheck('cut_attack_surface', 'clipos', 'IKCONFIG', 'is not set')] # no, IKCONFIG is needed for this check :)
637     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KALLSYMS', 'is not set')]
638     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_VSYSCALL_EMULATION', 'is not set')]
639     l += [KconfigCheck('cut_attack_surface', 'clipos', 'MAGIC_SYSRQ', 'is not set')]
640     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KEXEC_FILE', 'is not set')] # refers to LOCKDOWN (permissive)
641     l += [KconfigCheck('cut_attack_surface', 'clipos', 'USER_NS', 'is not set')] # user.max_user_namespaces=0
642     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_CPUID', 'is not set')]
643     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_IOPL_IOPERM', 'is not set')] # refers to LOCKDOWN
644     l += [KconfigCheck('cut_attack_surface', 'clipos', 'ACPI_TABLE_UPGRADE', 'is not set')] # refers to LOCKDOWN
645     l += [KconfigCheck('cut_attack_surface', 'clipos', 'EFI_CUSTOM_SSDT_OVERLAYS', 'is not set')]
646     l += [KconfigCheck('cut_attack_surface', 'clipos', 'COREDUMP', 'is not set')] # cut userspace attack surface
647     l += [AND(KconfigCheck('cut_attack_surface', 'clipos', 'LDISC_AUTOLOAD', 'is not set'),
648               KconfigCheck('cut_attack_surface', 'clipos', 'LDISC_AUTOLOAD'))] # option presence check
649     if arch in ('X86_64', 'X86_32'):
650         l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_INTEL_TSX_MODE_OFF', 'y')] # tsx=off
651
652     # 'cut_attack_surface', 'lockdown'
653     l += [bpf_syscall_not_set] # refers to LOCKDOWN
654     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'EFI_TEST', 'is not set')] # refers to LOCKDOWN
655     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'MMIOTRACE_TEST', 'is not set')] # refers to LOCKDOWN
656     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'KPROBES', 'is not set')] # refers to LOCKDOWN
657
658     # 'cut_attack_surface', 'my'
659     l += [OR(KconfigCheck('cut_attack_surface', 'my', 'TRIM_UNUSED_KSYMS', 'y'),
660              modules_not_set)]
661     l += [KconfigCheck('cut_attack_surface', 'my', 'MMIOTRACE', 'is not set')] # refers to LOCKDOWN (permissive)
662     l += [KconfigCheck('cut_attack_surface', 'my', 'LIVEPATCH', 'is not set')]
663     l += [KconfigCheck('cut_attack_surface', 'my', 'IP_DCCP', 'is not set')]
664     l += [KconfigCheck('cut_attack_surface', 'my', 'IP_SCTP', 'is not set')]
665     l += [KconfigCheck('cut_attack_surface', 'my', 'FTRACE', 'is not set')] # refers to LOCKDOWN
666     l += [KconfigCheck('cut_attack_surface', 'my', 'VIDEO_VIVID', 'is not set')]
667     l += [KconfigCheck('cut_attack_surface', 'my', 'INPUT_EVBUG', 'is not set')] # Can be used as a keylogger
668     l += [KconfigCheck('cut_attack_surface', 'my', 'KGDB', 'is not set')]
669
670     # 'harden_userspace'
671     if arch in ('X86_64', 'ARM64', 'X86_32'):
672         l += [KconfigCheck('harden_userspace', 'defconfig', 'INTEGRITY', 'y')]
673     if arch == 'ARM':
674         l += [KconfigCheck('harden_userspace', 'my', 'INTEGRITY', 'y')]
675     if arch == 'ARM64':
676         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_PTR_AUTH', 'y')]
677         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_BTI', 'y')]
678     if arch in ('ARM', 'X86_32'):
679         l += [KconfigCheck('harden_userspace', 'defconfig', 'VMSPLIT_3G', 'y')]
680     if arch in ('X86_64', 'ARM64'):
681         l += [KconfigCheck('harden_userspace', 'clipos', 'ARCH_MMAP_RND_BITS', '32')]
682     if arch in ('X86_32', 'ARM'):
683         l += [KconfigCheck('harden_userspace', 'my', 'ARCH_MMAP_RND_BITS', '16')]
684
685
686 def add_cmdline_checks(l, arch):
687     # Calling the CmdlineCheck class constructor:
688     #     CmdlineCheck(reason, decision, name, expected)
689     #
690     # [!] Don't add CmdlineChecks in add_kconfig_checks() to avoid wrong results
691     #     when the tool doesn't check the cmdline.
692     #
693     # [!] Make sure that values of the options in CmdlineChecks need normalization.
694     #     For more info see normalize_cmdline_options().
695     #
696     # A common pattern for checking the 'param_x' cmdline parameter
697     # that __overrides__ the 'PARAM_X_DEFAULT' kconfig option:
698     #   l += [OR(CmdlineCheck(reason, decision, 'param_x', '1'),
699     #            AND(KconfigCheck(reason, decision, 'PARAM_X_DEFAULT_ON', 'y'),
700     #                CmdlineCheck(reason, decision, 'param_x, 'is not set')))]
701     #
702     # Here we don't check the kconfig options or minimal kernel version
703     # required for the cmdline parameters. That would make the checks
704     # very complex and not give a 100% guarantee anyway.
705
706     # 'self_protection', 'defconfig'
707     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmep', 'is not set')]
708     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmap', 'is not set')]
709     l += [CmdlineCheck('self_protection', 'defconfig', 'nokaslr', 'is not set')]
710     l += [CmdlineCheck('self_protection', 'defconfig', 'nopti', 'is not set')]
711     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v1', 'is not set')]
712     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v2', 'is not set')]
713     if arch == 'ARM64':
714         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', 'full'),
715                  AND(KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y'),
716                      CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set')))]
717     else:
718         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', '1'),
719                  CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set'))]
720
721     # 'self_protection', 'kspp'
722     l += [OR(CmdlineCheck('self_protection', 'kspp', 'init_on_alloc', '1'),
723              AND(KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y'),
724                  CmdlineCheck('self_protection', 'kspp', 'init_on_alloc', 'is not set')))]
725     l += [OR(CmdlineCheck('self_protection', 'kspp', 'init_on_free', '1'),
726              AND(KconfigCheck('self_protection', 'kspp', 'INIT_ON_FREE_DEFAULT_ON', 'y'),
727                  CmdlineCheck('self_protection', 'kspp', 'init_on_free', 'is not set')),
728              AND(CmdlineCheck('self_protection', 'kspp', 'page_poison', '1'),
729                  KconfigCheck('self_protection', 'kspp', 'PAGE_POISONING_ZERO', 'y'),
730                  CmdlineCheck('self_protection', 'kspp', 'slub_debug', 'P')))]
731     l += [OR(CmdlineCheck('self_protection', 'kspp', 'slab_nomerge'),
732              AND(KconfigCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set'),
733                  CmdlineCheck('self_protection', 'kspp', 'slab_merge', 'is not set')))] # option presence check
734     l += [OR(CmdlineCheck('self_protection', 'kspp', 'iommu.strict', '1'),
735              AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_DMA_STRICT', 'y'),
736                  CmdlineCheck('self_protection', 'kspp', 'iommu.strict', 'is not set')))]
737     l += [OR(CmdlineCheck('self_protection', 'kspp', 'iommu.passthrough', '0'),
738              AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set'),
739                  CmdlineCheck('self_protection', 'kspp', 'iommu.passthrough', 'is not set')))]
740     # The cmdline checks compatible with the kconfig recommendations of the KSPP project...
741     l += [OR(CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', '1'),
742              AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y'),
743                  CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', 'is not set')))]
744     l += [OR(CmdlineCheck('self_protection', 'kspp', 'slab_common.usercopy_fallback', '0'),
745              AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_FALLBACK', 'is not set'),
746                  CmdlineCheck('self_protection', 'kspp', 'slab_common.usercopy_fallback', 'is not set')))]
747     # ... the end
748     if arch in ('X86_64', 'ARM64', 'X86_32'):
749         l += [OR(CmdlineCheck('self_protection', 'kspp', 'randomize_kstack_offset', '1'),
750                  AND(KconfigCheck('self_protection', 'kspp', 'RANDOMIZE_KSTACK_OFFSET_DEFAULT', 'y'),
751                      CmdlineCheck('self_protection', 'kspp', 'randomize_kstack_offset', 'is not set')))]
752     if arch in ('X86_64', 'X86_32'):
753         l += [AND(CmdlineCheck('self_protection', 'kspp', 'pti', 'on'),
754                   CmdlineCheck('self_protection', 'defconfig', 'nopti', 'is not set'))]
755
756     # 'self_protection', 'clipos'
757     l += [CmdlineCheck('self_protection', 'clipos', 'page_alloc.shuffle', '1')]
758     if arch in ('X86_64', 'X86_32'):
759         l += [AND(CmdlineCheck('self_protection', 'clipos', 'spectre_v2', 'on'),
760                   CmdlineCheck('self_protection', 'defconfig', 'nospectre_v2', 'is not set'))]
761
762     # 'cut_attack_surface', 'kspp'
763     if arch == 'X86_64':
764         l += [OR(CmdlineCheck('cut_attack_surface', 'kspp', 'vsyscall', 'none'),
765                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y'),
766                      CmdlineCheck('cut_attack_surface', 'kspp', 'vsyscall', 'is not set')))]
767
768     # 'cut_attack_surface', 'grsec'
769     # The cmdline checks compatible with the kconfig options disabled by grsecurity...
770     l += [OR(CmdlineCheck('cut_attack_surface', 'grsec', 'debugfs', 'off'),
771              KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_FS', 'is not set'))] # ... the end
772
773
774 def print_unknown_options(checklist, parsed_options):
775     known_options = []
776
777     for o1 in checklist:
778         if o1.type != 'complex':
779             known_options.append(o1.name)
780             continue
781         for o2 in o1.opts:
782             if o2.type != 'complex':
783                 if hasattr(o2, 'name'):
784                     known_options.append(o2.name)
785                 continue
786             for o3 in o2.opts:
787                 assert(o3.type != 'complex'), \
788                        'unexpected ComplexOptCheck inside {}'.format(o2.name)
789                 if hasattr(o3, 'name'):
790                     known_options.append(o3.name)
791
792     for option, value in parsed_options.items():
793         if option not in known_options:
794             print('[?] No check for option {} ({})'.format(option, value))
795
796
797 def print_checklist(mode, checklist, with_results):
798     if mode == 'json':
799         output = []
800         for o in checklist:
801             output.append(o.json_dump(with_results))
802         print(json.dumps(output))
803         return
804
805     # table header
806     sep_line_len = 91
807     if with_results:
808         sep_line_len += 30
809     print('=' * sep_line_len)
810     print('{:^40}|{:^7}|{:^12}|{:^10}|{:^18}'.format('option name', 'type', 'desired val', 'decision', 'reason'), end='')
811     if with_results:
812         print('| {}'.format('check result'), end='')
813     print()
814     print('=' * sep_line_len)
815
816     # table contents
817     for opt in checklist:
818         if with_results:
819             if mode == 'show_ok':
820                 if not opt.result.startswith('OK'):
821                     continue
822             if mode == 'show_fail':
823                 if not opt.result.startswith('FAIL'):
824                     continue
825         opt.table_print(mode, with_results)
826         print()
827         if mode == 'verbose':
828             print('-' * sep_line_len)
829     print()
830
831     # final score
832     if with_results:
833         fail_count = len(list(filter(lambda opt: opt.result.startswith('FAIL'), checklist)))
834         fail_suppressed = ''
835         ok_count = len(list(filter(lambda opt: opt.result.startswith('OK'), checklist)))
836         ok_suppressed = ''
837         if mode == 'show_ok':
838             fail_suppressed = ' (suppressed in output)'
839         if mode == 'show_fail':
840             ok_suppressed = ' (suppressed in output)'
841         if mode != 'json':
842             print('[+] Config check is finished: \'OK\' - {}{} / \'FAIL\' - {}{}'.format(ok_count, ok_suppressed, fail_count, fail_suppressed))
843
844
845 def populate_simple_opt_with_data(opt, data, data_type):
846     assert(opt.type != 'complex'), \
847            'unexpected ComplexOptCheck "{}"'.format(opt.name)
848     assert(opt.type in SIMPLE_OPTION_TYPES), \
849            'invalid opt type "{}"'.format(opt.type)
850     assert(data_type in SIMPLE_OPTION_TYPES), \
851            'invalid data type "{}"'.format(data_type)
852
853     if data_type != opt.type:
854         return
855
856     if data_type in ('kconfig', 'cmdline'):
857         opt.state = data.get(opt.name, None)
858     else:
859         assert(data_type == 'version'), \
860                'unexpected data type "{}"'.format(data_type)
861         opt.ver = data
862
863
864 def populate_opt_with_data(opt, data, data_type):
865     if opt.type == 'complex':
866         for o in opt.opts:
867             if o.type == 'complex':
868                 # Recursion for nested ComplexOptCheck objects
869                 populate_opt_with_data(o, data, data_type)
870             else:
871                 populate_simple_opt_with_data(o, data, data_type)
872     else:
873         assert(opt.type in ('kconfig', 'cmdline')), \
874                'bad type "{}" for a simple check'.format(opt.type)
875         populate_simple_opt_with_data(opt, data, data_type)
876
877
878 def populate_with_data(checklist, data, data_type):
879     for opt in checklist:
880         populate_opt_with_data(opt, data, data_type)
881
882
883 def perform_checks(checklist):
884     for opt in checklist:
885         opt.check()
886
887
888 def parse_kconfig_file(parsed_options, fname):
889     with open(fname, 'r') as f:
890         opt_is_on = re.compile("CONFIG_[a-zA-Z0-9_]*=[a-zA-Z0-9_\"]*")
891         opt_is_off = re.compile("# CONFIG_[a-zA-Z0-9_]* is not set")
892
893         for line in f.readlines():
894             line = line.strip()
895             option = None
896             value = None
897
898             if opt_is_on.match(line):
899                 option, value = line.split('=', 1)
900                 if value == 'is not set':
901                     sys.exit('[!] ERROR: bad enabled kconfig option "{}"'.format(line))
902             elif opt_is_off.match(line):
903                 option, value = line[2:].split(' ', 1)
904                 if value != 'is not set':
905                     sys.exit('[!] ERROR: bad disabled kconfig option "{}"'.format(line))
906
907             if option in parsed_options:
908                 sys.exit('[!] ERROR: kconfig option "{}" exists multiple times'.format(line))
909
910             if option:
911                 parsed_options[option] = value
912
913
914 def normalize_cmdline_options(option, value):
915     # Don't normalize the cmdline option values if
916     # the Linux kernel doesn't use kstrtobool() for them
917     if option == 'pti':
918         # See pti_check_boottime_disable() in linux/arch/x86/mm/pti.c
919         return value
920     if option == 'spectre_v2':
921         # See spectre_v2_parse_cmdline() in linux/arch/x86/kernel/cpu/bugs.c
922         return value
923     if option == 'debugfs':
924         # See debugfs_kernel() in fs/debugfs/inode.c
925         return value
926
927     # Implement a limited part of the kstrtobool() logic
928     if value in ('1', 'on', 'On', 'ON', 'y', 'Y', 'yes', 'Yes', 'YES'):
929         return '1'
930     if value in ('0', 'off', 'Off', 'OFF', 'n', 'N', 'no', 'No', 'NO'):
931         return '0'
932
933     # Preserve unique values
934     return value
935
936
937 def parse_cmdline_file(parsed_options, fname):
938     with open(fname, 'r') as f:
939         line = f.readline()
940         opts = line.split()
941
942         line = f.readline()
943         if line:
944             sys.exit('[!] ERROR: more than one line in "{}"'.format(fname))
945
946         for opt in opts:
947             if '=' in opt:
948                 name, value = opt.split('=', 1)
949             else:
950                 name = opt
951                 value = '' # '' is not None
952             value = normalize_cmdline_options(name, value)
953             parsed_options[name] = value
954
955
956 def main():
957     # Report modes:
958     #   * verbose mode for
959     #     - reporting about unknown kernel options in the kconfig
960     #     - verbose printing of ComplexOptCheck items
961     #   * json mode for printing the results in JSON format
962     report_modes = ['verbose', 'json', 'show_ok', 'show_fail']
963     supported_archs = ['X86_64', 'X86_32', 'ARM64', 'ARM']
964     parser = ArgumentParser(prog='kconfig-hardened-check',
965                             description='A tool for checking the security hardening options of the Linux kernel')
966     parser.add_argument('--version', action='version', version='%(prog)s ' + __version__)
967     parser.add_argument('-p', '--print', choices=supported_archs,
968                         help='print security hardening preferences for the selected architecture')
969     parser.add_argument('-c', '--config',
970                         help='check the kernel kconfig file against these preferences')
971     parser.add_argument('-l', '--cmdline',
972                         help='check the kernel cmdline file against these preferences')
973     parser.add_argument('-m', '--mode', choices=report_modes,
974                         help='choose the report mode')
975     args = parser.parse_args()
976
977     mode = None
978     if args.mode:
979         mode = args.mode
980         if mode != 'json':
981             print('[+] Special report mode: {}'.format(mode))
982
983     config_checklist = []
984
985     if args.config:
986         if args.print:
987             sys.exit('[!] ERROR: --config and --print can\'t be used together')
988
989         if mode != 'json':
990             print('[+] Kconfig file to check: {}'.format(args.config))
991             if args.cmdline:
992                 print('[+] Kernel cmdline file to check: {}'.format(args.cmdline))
993
994         arch, msg = detect_arch(args.config, supported_archs)
995         if not arch:
996             sys.exit('[!] ERROR: {}'.format(msg))
997         if mode != 'json':
998             print('[+] Detected architecture: {}'.format(arch))
999
1000         kernel_version, msg = detect_kernel_version(args.config)
1001         if not kernel_version:
1002             sys.exit('[!] ERROR: {}'.format(msg))
1003         if mode != 'json':
1004             print('[+] Detected kernel version: {}.{}'.format(kernel_version[0], kernel_version[1]))
1005
1006         compiler, msg = detect_compiler(args.config)
1007         if mode != 'json':
1008             if compiler:
1009                 print('[+] Detected compiler: {}'.format(compiler))
1010             else:
1011                 print('[-] Can\'t detect the compiler: {}'.format(msg))
1012
1013         # add relevant kconfig checks to the checklist
1014         add_kconfig_checks(config_checklist, arch)
1015
1016         if args.cmdline:
1017             # add relevant cmdline checks to the checklist
1018             add_cmdline_checks(config_checklist, arch)
1019
1020         # populate the checklist with the parsed kconfig data
1021         parsed_kconfig_options = OrderedDict()
1022         parse_kconfig_file(parsed_kconfig_options, args.config)
1023         populate_with_data(config_checklist, parsed_kconfig_options, 'kconfig')
1024         populate_with_data(config_checklist, kernel_version, 'version')
1025
1026         if args.cmdline:
1027             # populate the checklist with the parsed kconfig data
1028             parsed_cmdline_options = OrderedDict()
1029             parse_cmdline_file(parsed_cmdline_options, args.cmdline)
1030             populate_with_data(config_checklist, parsed_cmdline_options, 'cmdline')
1031
1032         # now everything is ready for performing the checks
1033         perform_checks(config_checklist)
1034
1035         # finally print the results
1036         if mode == 'verbose':
1037             print_unknown_options(config_checklist, parsed_kconfig_options)
1038         print_checklist(mode, config_checklist, True)
1039
1040         sys.exit(0)
1041     elif args.cmdline:
1042         sys.exit('[!] ERROR: checking cmdline doesn\'t work without checking kconfig')
1043
1044     if args.print:
1045         if mode in ('show_ok', 'show_fail'):
1046             sys.exit('[!] ERROR: wrong mode "{}" for --print'.format(mode))
1047         arch = args.print
1048         add_kconfig_checks(config_checklist, arch)
1049         add_cmdline_checks(config_checklist, arch)
1050         if mode != 'json':
1051             print('[+] Printing kernel security hardening preferences for {}...'.format(arch))
1052         print_checklist(mode, config_checklist, False)
1053         sys.exit(0)
1054
1055     parser.print_help()
1056     sys.exit(0)