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