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