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