Add CONFIG_INPUT_EVBUG
[kconfig-hardened-check.git] / kconfig_hardened_check / __init__.py
1 #!/usr/bin/python3
2
3 #
4 # This tool helps me to check the Linux kernel Kconfig option list
5 # against my 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 #    slub_debug=FZP
15 #    slab_nomerge
16 #    page_alloc.shuffle=1
17 #    iommu=force (does it help against DMA attacks?)
18 #    page_poison=1 (if enabled)
19 #    init_on_alloc=1
20 #    init_on_free=1
21 #    loadpin.enforce=1
22 #
23 #    Mitigations of CPU vulnerabilities:
24 #       Аrch-independent:
25 #           mitigations=auto,nosmt
26 #       X86:
27 #           spectre_v2=on
28 #           pti=on
29 #           spec_store_bypass_disable=on
30 #           l1tf=full,force
31 #           mds=full,nosmt
32 #           tsx=off
33 #       ARM64:
34 #           kpti=on
35 #           ssbd=force-on
36 #
37 # N.B. Hardening sysctls:
38 #    kernel.kptr_restrict=2
39 #    kernel.dmesg_restrict=1
40 #    kernel.perf_event_paranoid=3
41 #    kernel.kexec_load_disabled=1
42 #    kernel.yama.ptrace_scope=3
43 #    user.max_user_namespaces=0
44 #    kernel.unprivileged_bpf_disabled=1
45 #    net.core.bpf_jit_harden=2
46 #
47 #    vm.unprivileged_userfaultfd=0
48 #
49 #    dev.tty.ldisc_autoload=0
50 #    fs.protected_symlinks=1
51 #    fs.protected_hardlinks=1
52 #    fs.protected_fifos=2
53 #    fs.protected_regular=2
54 #    fs.suid_dumpable=0
55 #    kernel.modules_disabled=1
56
57 import sys
58 from argparse import ArgumentParser
59 from collections import OrderedDict
60 import re
61 import json
62 from .__about__ import __version__
63
64 # debug_mode enables:
65 #    - reporting about unknown kernel options in the config,
66 #    - verbose printing of ComplexOptChecks (OR, AND).
67 debug_mode = False
68
69 # json_mode is for printing results in JSON format
70 json_mode = False
71
72 supported_archs = [ 'X86_64', 'X86_32', 'ARM64', 'ARM' ]
73
74 kernel_version = None
75
76
77 class OptCheck:
78     def __init__(self, name, expected, decision, reason):
79         self.name = name
80         self.expected = expected
81         self.decision = decision
82         self.reason = reason
83         self.state = None
84         self.result = None
85
86     def check(self):
87         if self.expected == self.state:
88             self.result = 'OK'
89         elif self.state is None:
90             if self.expected == 'is not set':
91                 self.result = 'OK: not found'
92             else:
93                 self.result = 'FAIL: not found'
94         else:
95             self.result = 'FAIL: "' + self.state + '"'
96
97         if self.result.startswith('OK'):
98             return True, self.result
99         else:
100             return False, self.result
101
102     def table_print(self, with_results):
103         print('CONFIG_{:<38}|{:^13}|{:^10}|{:^20}'.format(self.name, self.expected, self.decision, self.reason), end='')
104         if with_results:
105             print('|   {}'.format(self.result), end='')
106
107
108 class VerCheck:
109     def __init__(self, ver_expected):
110         self.ver_expected = ver_expected
111         self.result = None
112
113     def check(self):
114         if kernel_version[0] > self.ver_expected[0]:
115             self.result = 'OK: version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
116             return True, self.result
117         if kernel_version[0] < self.ver_expected[0]:
118             self.result = 'FAIL: version < ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
119             return False, self.result
120         if kernel_version[1] >= self.ver_expected[1]:
121             self.result = 'OK: version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
122             return True, self.result
123         else:
124             self.result = 'FAIL: version < ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
125             return False, self.result
126
127     def table_print(self, with_results):
128         ver_req = 'kernel version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
129         print('{:<91}'.format(ver_req), end='')
130         if with_results:
131             print('|   {}'.format(self.result), end='')
132
133
134 class PresenceCheck:
135     def __init__(self, name):
136         self.name = name
137         self.state = None
138         self.result = None
139
140     def check(self):
141         if self.state is None:
142             self.result = 'FAIL: not present'
143             return False, self.result
144         else:
145             self.result = 'OK: is present'
146             return True, self.result
147
148     def table_print(self, with_results):
149         print('CONFIG_{:<84}'.format(self.name + ' is present'), end='')
150         if with_results:
151             print('|   {}'.format(self.result), end='')
152
153
154 class ComplexOptCheck:
155     def __init__(self, *opts):
156         self.opts = opts
157         self.result = None
158
159     @property
160     def name(self):
161         return self.opts[0].name
162
163     @property
164     def expected(self):
165         return self.opts[0].expected
166
167     @property
168     def state(self):
169         return self.opts[0].state
170
171     @property
172     def decision(self):
173         return self.opts[0].decision
174
175     @property
176     def reason(self):
177         return self.opts[0].reason
178
179     def table_print(self, with_results):
180         if debug_mode:
181             print('    {:87}'.format('<<< ' + self.__class__.__name__ + ' >>>'), end='')
182             if with_results:
183                 print('|   {}'.format(self.result), end='')
184             for o in self.opts:
185                 print()
186                 o.table_print(with_results)
187         else:
188             o = self.opts[0]
189             o.table_print(False)
190             if with_results:
191                 print('|   {}'.format(self.result), end='')
192
193
194 class OR(ComplexOptCheck):
195     # self.opts[0] is the option that this OR-check is about.
196     # Use case:
197     #     OR(<X_is_hardened>, <X_is_disabled>)
198     #     OR(<X_is_hardened>, <X_is_hardened_old>)
199
200     def check(self):
201         if not self.opts:
202             sys.exit('[!] ERROR: invalid OR check')
203
204         for i, opt in enumerate(self.opts):
205             ret, msg = opt.check()
206             if ret:
207                 if i == 0 or not hasattr(opt, 'expected'):
208                     self.result = opt.result
209                 else:
210                     self.result = 'OK: CONFIG_{} "{}"'.format(opt.name, opt.expected)
211                 return True, self.result
212         self.result = self.opts[0].result
213         return False, self.result
214
215
216 class AND(ComplexOptCheck):
217     # self.opts[0] is the option that this AND-check is about.
218     # Use case: AND(<suboption>, <main_option>)
219     # Suboption is not checked if checking of the main_option is failed.
220
221     def check(self):
222         for i, opt in reversed(list(enumerate(self.opts))):
223             ret, msg = opt.check()
224             if i == 0:
225                 self.result = opt.result
226                 return ret, self.result
227             elif not ret:
228                 if hasattr(opt, 'expected'):
229                     self.result = 'FAIL: CONFIG_{} is needed'.format(opt.name)
230                 else:
231                     self.result = opt.result
232                 return False, self.result
233
234         sys.exit('[!] ERROR: invalid AND check')
235
236
237 def detect_arch(fname):
238     with open(fname, 'r') as f:
239         arch_pattern = re.compile("CONFIG_[a-zA-Z0-9_]*=y")
240         arch = None
241         if not json_mode:
242             print('[+] Trying to detect architecture in "{}"...'.format(fname))
243         for line in f.readlines():
244             if arch_pattern.match(line):
245                 option, value = line[7:].split('=', 1)
246                 if option in supported_archs:
247                     if not arch:
248                         arch = option
249                     else:
250                         return None, 'more than one supported architecture is detected'
251         if not arch:
252             return None, 'failed to detect architecture'
253         else:
254             return arch, 'OK'
255
256
257 def detect_version(fname):
258     with open(fname, 'r') as f:
259         ver_pattern = re.compile("# Linux/.* Kernel Configuration")
260         if not json_mode:
261             print('[+] Trying to detect kernel version in "{}"...'.format(fname))
262         for line in f.readlines():
263             if ver_pattern.match(line):
264                 line = line.strip()
265                 if not json_mode:
266                     print('[+] Found version line: "{}"'.format(line))
267                 parts = line.split()
268                 ver_str = parts[2]
269                 ver_numbers = ver_str.split('.')
270                 if len(ver_numbers) < 3 or not ver_numbers[0].isdigit() or not ver_numbers[1].isdigit():
271                     msg = 'failed to parse the version "' + ver_str + '"'
272                     return None, msg
273                 else:
274                     return (int(ver_numbers[0]), int(ver_numbers[1])), None
275         return None, 'no kernel version detected'
276
277
278 def construct_checklist(checklist, arch):
279     modules_not_set = OptCheck('MODULES',     'is not set', 'kspp', 'cut_attack_surface')
280     devmem_not_set = OptCheck('DEVMEM',       'is not set', 'kspp', 'cut_attack_surface') # refers to LOCKDOWN
281
282     checklist.append(OptCheck('BUG',                         'y', 'defconfig', 'self_protection'))
283     checklist.append(OR(OptCheck('STRICT_KERNEL_RWX',        'y', 'defconfig', 'self_protection'), \
284                         OptCheck('DEBUG_RODATA',             'y', 'defconfig', 'self_protection'))) # before v4.11
285     checklist.append(OR(OptCheck('STACKPROTECTOR_STRONG',    'y', 'defconfig', 'self_protection'), \
286                         OptCheck('CC_STACKPROTECTOR_STRONG', 'y', 'defconfig', 'self_protection')))
287     checklist.append(OptCheck('SLUB_DEBUG',                  'y', 'defconfig', 'self_protection'))
288     checklist.append(OR(OptCheck('STRICT_MODULE_RWX',        'y', 'defconfig', 'self_protection'), \
289                         OptCheck('DEBUG_SET_MODULE_RONX',    'y', 'defconfig', 'self_protection'), \
290                         modules_not_set)) # DEBUG_SET_MODULE_RONX was before v4.11
291     checklist.append(OptCheck('GCC_PLUGINS',                 'y', 'defconfig', 'self_protection'))
292     checklist.append(OR(OptCheck('REFCOUNT_FULL',            'y', 'defconfig', 'self_protection'), \
293                         VerCheck((5, 5)))) # REFCOUNT_FULL is enabled by default since v5.5
294     iommu_support_is_set = OptCheck('IOMMU_SUPPORT',         'y', 'defconfig', 'self_protection') # is needed for mitigating DMA attacks
295     checklist.append(iommu_support_is_set)
296     if arch == 'X86_64' or arch == 'X86_32':
297         checklist.append(OptCheck('MICROCODE',                   'y', 'defconfig', 'self_protection')) # is needed for mitigating CPU bugs
298         checklist.append(OptCheck('RETPOLINE',                   'y', 'defconfig', 'self_protection'))
299         checklist.append(OptCheck('X86_SMAP',                    'y', 'defconfig', 'self_protection'))
300         checklist.append(OR(OptCheck('X86_UMIP',                 'y', 'defconfig', 'self_protection'), \
301                             OptCheck('X86_INTEL_UMIP',           'y', 'defconfig', 'self_protection')))
302         checklist.append(OptCheck('SYN_COOKIES',                 'y', 'defconfig', 'self_protection')) # another reason?
303     if arch == 'X86_64':
304         checklist.append(OptCheck('PAGE_TABLE_ISOLATION',        'y', 'defconfig', 'self_protection'))
305         checklist.append(OptCheck('RANDOMIZE_MEMORY',            'y', 'defconfig', 'self_protection'))
306         checklist.append(AND(OptCheck('INTEL_IOMMU',             'y', 'defconfig', 'self_protection'), \
307                              iommu_support_is_set))
308         checklist.append(AND(OptCheck('AMD_IOMMU',               'y', 'defconfig', 'self_protection'), \
309                              iommu_support_is_set))
310     if arch == 'ARM64':
311         checklist.append(OptCheck('UNMAP_KERNEL_AT_EL0',         'y', 'defconfig', 'self_protection'))
312         checklist.append(OptCheck('HARDEN_EL2_VECTORS',          'y', 'defconfig', 'self_protection'))
313         checklist.append(OptCheck('RODATA_FULL_DEFAULT_ENABLED', 'y', 'defconfig', 'self_protection'))
314     if arch == 'X86_64' or arch == 'ARM64':
315         checklist.append(OptCheck('VMAP_STACK',                  'y', 'defconfig', 'self_protection'))
316     if arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
317         checklist.append(OptCheck('RANDOMIZE_BASE',              'y', 'defconfig', 'self_protection'))
318         checklist.append(OptCheck('THREAD_INFO_IN_TASK',         'y', 'defconfig', 'self_protection'))
319     if arch == 'ARM':
320         checklist.append(OptCheck('CPU_SW_DOMAIN_PAN',           'y', 'defconfig', 'self_protection'))
321         checklist.append(OptCheck('STACKPROTECTOR_PER_TASK',     'y', 'defconfig', 'self_protection'))
322     if arch == 'ARM64' or arch == 'ARM':
323         checklist.append(OptCheck('HARDEN_BRANCH_PREDICTOR',     'y', 'defconfig', 'self_protection'))
324
325     checklist.append(OptCheck('BUG_ON_DATA_CORRUPTION',           'y', 'kspp', 'self_protection'))
326     checklist.append(OptCheck('DEBUG_WX',                         'y', 'kspp', 'self_protection'))
327     checklist.append(OptCheck('SCHED_STACK_END_CHECK',            'y', 'kspp', 'self_protection'))
328     checklist.append(OptCheck('SLAB_FREELIST_HARDENED',           'y', 'kspp', 'self_protection'))
329     checklist.append(OptCheck('SLAB_FREELIST_RANDOM',             'y', 'kspp', 'self_protection'))
330     checklist.append(OptCheck('SHUFFLE_PAGE_ALLOCATOR',           'y', 'kspp', 'self_protection'))
331     checklist.append(OptCheck('FORTIFY_SOURCE',                   'y', 'kspp', 'self_protection'))
332     randstruct_is_set = OptCheck('GCC_PLUGIN_RANDSTRUCT',         'y', 'kspp', 'self_protection')
333     checklist.append(randstruct_is_set)
334     checklist.append(OptCheck('GCC_PLUGIN_LATENT_ENTROPY',        'y', 'kspp', 'self_protection'))
335     checklist.append(OptCheck('DEBUG_LIST',                       'y', 'kspp', 'self_protection'))
336     checklist.append(OptCheck('DEBUG_SG',                         'y', 'kspp', 'self_protection'))
337     checklist.append(OptCheck('DEBUG_CREDENTIALS',                'y', 'kspp', 'self_protection'))
338     checklist.append(OptCheck('DEBUG_NOTIFIERS',                  'y', 'kspp', 'self_protection'))
339     hardened_usercopy_is_set = OptCheck('HARDENED_USERCOPY',      'y', 'kspp', 'self_protection')
340     checklist.append(hardened_usercopy_is_set)
341     checklist.append(AND(OptCheck('HARDENED_USERCOPY_FALLBACK',   'is not set', 'kspp', 'self_protection'), \
342                          hardened_usercopy_is_set))
343     checklist.append(OR(OptCheck('MODULE_SIG',                    'y', 'kspp', 'self_protection'), \
344                         modules_not_set))
345     checklist.append(OR(OptCheck('MODULE_SIG_ALL',                'y', 'kspp', 'self_protection'), \
346                         modules_not_set))
347     checklist.append(OR(OptCheck('MODULE_SIG_SHA512',             'y', 'kspp', 'self_protection'), \
348                         modules_not_set))
349     checklist.append(OR(OptCheck('MODULE_SIG_FORCE',              'y', 'kspp', 'self_protection'), \
350                         modules_not_set)) # refers to LOCKDOWN
351     checklist.append(OR(OptCheck('INIT_STACK_ALL',                'y', 'kspp', 'self_protection'), \
352                       OptCheck('GCC_PLUGIN_STRUCTLEAK_BYREF_ALL', 'y', 'kspp', 'self_protection')))
353     checklist.append(OptCheck('INIT_ON_ALLOC_DEFAULT_ON',         'y', 'kspp', 'self_protection'))
354     checklist.append(OR(OptCheck('INIT_ON_FREE_DEFAULT_ON',       'y', 'kspp', 'self_protection'), \
355                         OptCheck('PAGE_POISONING',                'y', 'kspp', 'self_protection'))) # before v5.3
356     if arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
357         stackleak_is_set = OptCheck('GCC_PLUGIN_STACKLEAK',       'y', 'kspp', 'self_protection')
358         checklist.append(stackleak_is_set)
359         checklist.append(AND(OptCheck('STACKLEAK_METRICS',         'is not set', 'clipos', 'self_protection'), \
360                              stackleak_is_set))
361         checklist.append(AND(OptCheck('STACKLEAK_RUNTIME_DISABLE', 'is not set', 'clipos', 'self_protection'), \
362                              stackleak_is_set))
363     if arch == 'X86_64' or arch == 'X86_32':
364         checklist.append(OptCheck('DEFAULT_MMAP_MIN_ADDR',            '65536', 'kspp', 'self_protection'))
365     if arch == 'X86_32':
366         checklist.append(OptCheck('PAGE_TABLE_ISOLATION',             'y', 'kspp', 'self_protection'))
367         checklist.append(OptCheck('HIGHMEM64G',                       'y', 'kspp', 'self_protection'))
368         checklist.append(OptCheck('X86_PAE',                          'y', 'kspp', 'self_protection'))
369     if arch == 'ARM64':
370         checklist.append(OptCheck('ARM64_SW_TTBR0_PAN',               'y', 'kspp', 'self_protection'))
371     if arch == 'ARM64' or arch == 'ARM':
372         checklist.append(OptCheck('SYN_COOKIES',                      'y', 'kspp', 'self_protection')) # another reason?
373         checklist.append(OptCheck('DEFAULT_MMAP_MIN_ADDR',            '32768', 'kspp', 'self_protection'))
374
375     checklist.append(OptCheck('SECURITY_DMESG_RESTRICT',               'y', 'clipos', 'self_protection'))
376     checklist.append(OptCheck('DEBUG_VIRTUAL',                         'y', 'clipos', 'self_protection'))
377     checklist.append(OptCheck('STATIC_USERMODEHELPER',                 'y', 'clipos', 'self_protection')) # needs userspace support (systemd)
378     checklist.append(OptCheck('SLAB_MERGE_DEFAULT',                    'is not set', 'clipos', 'self_protection')) # slab_nomerge
379     checklist.append(AND(OptCheck('GCC_PLUGIN_RANDSTRUCT_PERFORMANCE', 'is not set', 'clipos', 'self_protection'), \
380                          randstruct_is_set))
381     checklist.append(OptCheck('RANDOM_TRUST_BOOTLOADER',               'is not set', 'clipos', 'self_protection'))
382     checklist.append(OptCheck('RANDOM_TRUST_CPU',                      'is not set', 'clipos', 'self_protection'))
383     if arch == 'X86_64' or arch == 'X86_32':
384         checklist.append(AND(OptCheck('INTEL_IOMMU_SVM',                   'y', 'clipos', 'self_protection'), \
385                              iommu_support_is_set))
386         checklist.append(AND(OptCheck('INTEL_IOMMU_DEFAULT_ON',            'y', 'clipos', 'self_protection'), \
387                              iommu_support_is_set))
388     if arch == 'X86_32':
389         checklist.append(AND(OptCheck('INTEL_IOMMU',                       'y', 'clipos', 'self_protection'), \
390                              iommu_support_is_set))
391
392     checklist.append(OptCheck('SLUB_DEBUG_ON',                      'y', 'my', 'self_protection'))
393     checklist.append(OptCheck('RESET_ATTACK_MITIGATION',            'y', 'my', 'self_protection')) # needs userspace support (systemd)
394     if arch == 'X86_64':
395         checklist.append(AND(OptCheck('AMD_IOMMU_V2',                   'y', 'my', 'self_protection'), \
396                              iommu_support_is_set))
397
398     if arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
399         checklist.append(OptCheck('SECURITY',                               'y', 'defconfig', 'security_policy')) # and choose your favourite LSM
400     if arch == 'ARM':
401         checklist.append(OptCheck('SECURITY',                               'y', 'kspp', 'security_policy')) # and choose your favourite LSM
402     checklist.append(OptCheck('SECURITY_YAMA',                          'y', 'kspp', 'security_policy'))
403     checklist.append(OR(OptCheck('SECURITY_WRITABLE_HOOKS',             'is not set', 'my', 'security_policy'), \
404                         OptCheck('SECURITY_SELINUX_DISABLE',            'is not set', 'kspp', 'security_policy')))
405     checklist.append(OptCheck('SECURITY_LOCKDOWN_LSM',                  'y', 'clipos', 'security_policy'))
406     checklist.append(OptCheck('SECURITY_LOCKDOWN_LSM_EARLY',            'y', 'clipos', 'security_policy'))
407     checklist.append(OptCheck('LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY', 'y', 'clipos', 'security_policy'))
408     loadpin_is_set = OptCheck('SECURITY_LOADPIN',                       'y', 'my', 'security_policy') # needs userspace support
409     checklist.append(loadpin_is_set)
410     checklist.append(AND(OptCheck('SECURITY_LOADPIN_ENFORCE',           'y', 'my', 'security_policy'), \
411                          loadpin_is_set))
412     checklist.append(OptCheck('SECURITY_SAFESETID',                     'y', 'my', 'security_policy'))
413
414     checklist.append(OptCheck('SECCOMP',              'y', 'defconfig', 'cut_attack_surface'))
415     checklist.append(OptCheck('SECCOMP_FILTER',       'y', 'defconfig', 'cut_attack_surface'))
416     if arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
417         checklist.append(OR(OptCheck('STRICT_DEVMEM',     'y', 'defconfig', 'cut_attack_surface'), \
418                             devmem_not_set)) # refers to LOCKDOWN
419
420     checklist.append(modules_not_set)
421     checklist.append(devmem_not_set)
422     checklist.append(OR(OptCheck('IO_STRICT_DEVMEM',  'y', 'kspp', 'cut_attack_surface'), \
423                         devmem_not_set)) # refers to LOCKDOWN
424     if arch == 'ARM':
425         checklist.append(OR(OptCheck('STRICT_DEVMEM',     'y', 'kspp', 'cut_attack_surface'), \
426                             devmem_not_set)) # refers to LOCKDOWN
427     if arch == 'X86_64':
428         checklist.append(OptCheck('LEGACY_VSYSCALL_NONE', 'y', 'kspp', 'cut_attack_surface')) # 'vsyscall=none'
429     checklist.append(OptCheck('ACPI_CUSTOM_METHOD',   'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCKDOWN
430     checklist.append(OptCheck('COMPAT_BRK',           'is not set', 'kspp', 'cut_attack_surface'))
431     checklist.append(OptCheck('DEVKMEM',              'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCKDOWN
432     checklist.append(OptCheck('COMPAT_VDSO',          'is not set', 'kspp', 'cut_attack_surface'))
433     checklist.append(OptCheck('BINFMT_MISC',          'is not set', 'kspp', 'cut_attack_surface'))
434     checklist.append(OptCheck('INET_DIAG',            'is not set', 'kspp', 'cut_attack_surface'))
435     checklist.append(OptCheck('KEXEC',                'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCKDOWN
436     checklist.append(OptCheck('PROC_KCORE',           'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCKDOWN
437     checklist.append(OptCheck('LEGACY_PTYS',          'is not set', 'kspp', 'cut_attack_surface'))
438     checklist.append(OptCheck('HIBERNATION',          'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCKDOWN
439     checklist.append(OptCheck('IA32_EMULATION',       'is not set', 'kspp', 'cut_attack_surface'))
440     checklist.append(OptCheck('X86_X32',              'is not set', 'kspp', 'cut_attack_surface'))
441     checklist.append(OptCheck('MODIFY_LDT_SYSCALL',   'is not set', 'kspp', 'cut_attack_surface'))
442     checklist.append(OptCheck('OABI_COMPAT',          'is not set', 'kspp', 'cut_attack_surface'))
443
444     checklist.append(OptCheck('X86_PTDUMP',              'is not set', 'grsecurity', 'cut_attack_surface'))
445     checklist.append(OptCheck('ZSMALLOC_STAT',           'is not set', 'grsecurity', 'cut_attack_surface'))
446     checklist.append(OptCheck('PAGE_OWNER',              'is not set', 'grsecurity', 'cut_attack_surface'))
447     checklist.append(OptCheck('DEBUG_KMEMLEAK',          'is not set', 'grsecurity', 'cut_attack_surface'))
448     checklist.append(OptCheck('BINFMT_AOUT',             'is not set', 'grsecurity', 'cut_attack_surface'))
449     checklist.append(OptCheck('KPROBES',                 'is not set', 'grsecurity', 'cut_attack_surface')) # refers to LOCKDOWN
450     checklist.append(OptCheck('UPROBES',                 'is not set', 'grsecurity', 'cut_attack_surface'))
451     checklist.append(OptCheck('GENERIC_TRACER',          'is not set', 'grsecurity', 'cut_attack_surface')) # refers to LOCKDOWN
452     checklist.append(OptCheck('PROC_VMCORE',             'is not set', 'grsecurity', 'cut_attack_surface'))
453     checklist.append(OptCheck('PROC_PAGE_MONITOR',       'is not set', 'grsecurity', 'cut_attack_surface'))
454     checklist.append(OptCheck('USELIB',                  'is not set', 'grsecurity', 'cut_attack_surface'))
455     checklist.append(OptCheck('CHECKPOINT_RESTORE',      'is not set', 'grsecurity', 'cut_attack_surface'))
456     checklist.append(OptCheck('USERFAULTFD',             'is not set', 'grsecurity', 'cut_attack_surface'))
457     checklist.append(OptCheck('HWPOISON_INJECT',         'is not set', 'grsecurity', 'cut_attack_surface'))
458     checklist.append(OptCheck('MEM_SOFT_DIRTY',          'is not set', 'grsecurity', 'cut_attack_surface'))
459     checklist.append(OptCheck('DEVPORT',                 'is not set', 'grsecurity', 'cut_attack_surface')) # refers to LOCKDOWN
460     checklist.append(OptCheck('DEBUG_FS',                'is not set', 'grsecurity', 'cut_attack_surface')) # refers to LOCKDOWN
461     checklist.append(OptCheck('NOTIFIER_ERROR_INJECTION','is not set', 'grsecurity', 'cut_attack_surface'))
462
463     checklist.append(OptCheck('DRM_LEGACY',     'is not set', 'maintainer', 'cut_attack_surface'))
464     checklist.append(OptCheck('FB',             'is not set', 'maintainer', 'cut_attack_surface'))
465     checklist.append(OptCheck('VT',             'is not set', 'maintainer', 'cut_attack_surface'))
466
467     checklist.append(OptCheck('ACPI_TABLE_UPGRADE',   'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCKDOWN
468     checklist.append(OptCheck('X86_IOPL_IOPERM',      'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCKDOWN
469     checklist.append(OptCheck('EFI_TEST',             'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCKDOWN
470     checklist.append(OptCheck('BPF_SYSCALL',          'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCKDOWN
471     checklist.append(OptCheck('MMIOTRACE_TEST',       'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCKDOWN
472
473     if arch == 'X86_64' or arch == 'X86_32':
474         checklist.append(OptCheck('X86_INTEL_TSX_MODE_OFF',   'y', 'clipos', 'cut_attack_surface')) # tsx=off
475     checklist.append(OptCheck('STAGING',                  'is not set', 'clipos', 'cut_attack_surface'))
476     checklist.append(OptCheck('KSM',                      'is not set', 'clipos', 'cut_attack_surface')) # to prevent FLUSH+RELOAD attack
477 #   checklist.append(OptCheck('IKCONFIG',                 'is not set', 'clipos', 'cut_attack_surface')) # no, this info is needed for this check :)
478     checklist.append(OptCheck('KALLSYMS',                 'is not set', 'clipos', 'cut_attack_surface'))
479     checklist.append(OptCheck('X86_VSYSCALL_EMULATION',   'is not set', 'clipos', 'cut_attack_surface'))
480     checklist.append(OptCheck('MAGIC_SYSRQ',              'is not set', 'clipos', 'cut_attack_surface'))
481     checklist.append(OptCheck('KEXEC_FILE',               'is not set', 'clipos', 'cut_attack_surface')) # refers to LOCKDOWN (permissive)
482     checklist.append(OptCheck('USER_NS',                  'is not set', 'clipos', 'cut_attack_surface')) # user.max_user_namespaces=0
483     checklist.append(OptCheck('X86_MSR',                  'is not set', 'clipos', 'cut_attack_surface')) # refers to LOCKDOWN
484     checklist.append(OptCheck('X86_CPUID',                'is not set', 'clipos', 'cut_attack_surface'))
485     checklist.append(AND(OptCheck('LDISC_AUTOLOAD',           'is not set', 'clipos', 'cut_attack_surface'), \
486                          PresenceCheck('LDISC_AUTOLOAD')))
487
488     checklist.append(OptCheck('AIO',                  'is not set', 'grapheneos', 'cut_attack_surface'))
489
490     checklist.append(OptCheck('MMIOTRACE',            'is not set', 'my', 'cut_attack_surface')) # refers to LOCKDOWN (permissive)
491     checklist.append(OptCheck('LIVEPATCH',            'is not set', 'my', 'cut_attack_surface'))
492     checklist.append(OptCheck('IP_DCCP',              'is not set', 'my', 'cut_attack_surface'))
493     checklist.append(OptCheck('IP_SCTP',              'is not set', 'my', 'cut_attack_surface'))
494     checklist.append(OptCheck('FTRACE',               'is not set', 'my', 'cut_attack_surface')) # refers to LOCKDOWN
495     checklist.append(OptCheck('BPF_JIT',              'is not set', 'my', 'cut_attack_surface'))
496     checklist.append(OptCheck('VIDEO_VIVID',          'is not set', 'my', 'cut_attack_surface'))
497     checklist.append(OptCheck('INPUT_EVBUG',          'is not set', 'my', 'cut_attack_surface')) # Can be used as a keylogger
498
499     checklist.append(OptCheck('INTEGRITY',       'y', 'defconfig', 'userspace_hardening'))
500     if arch == 'ARM64':
501         checklist.append(OptCheck('ARM64_PTR_AUTH',       'y', 'defconfig', 'userspace_hardening'))
502     if arch == 'ARM' or  arch == 'X86_32':
503         checklist.append(OptCheck('VMSPLIT_3G',           'y', 'defconfig', 'userspace_hardening'))
504     if arch == 'X86_64' or arch == 'ARM64':
505         checklist.append(OptCheck('ARCH_MMAP_RND_BITS',   '32', 'clipos', 'userspace_hardening'))
506     if arch == 'X86_32' or arch == 'ARM':
507         checklist.append(OptCheck('ARCH_MMAP_RND_BITS',   '16', 'my', 'userspace_hardening'))
508
509 #   checklist.append(OptCheck('LKDTM',    'm', 'my', 'feature_test'))
510
511
512 def print_checklist(checklist, with_results):
513     if json_mode:
514         opts = []
515         for o in checklist:
516             opt = ['CONFIG_'+o.name, o.expected, o.decision, o.reason]
517             if with_results:
518                 opt.append(o.result)
519             opts.append(opt)
520         print(json.dumps(opts))
521         return
522
523     # table header
524     sep_line_len = 91
525     if with_results:
526         sep_line_len += 30
527     print('=' * sep_line_len)
528     print('{:^45}|{:^13}|{:^10}|{:^20}'.format('option name', 'desired val', 'decision', 'reason'), end='')
529     if with_results:
530         print('|   {}'.format('check result'), end='')
531     print()
532     print('=' * sep_line_len)
533
534     # table contents
535     for opt in checklist:
536         opt.table_print(with_results)
537         print()
538         if debug_mode:
539             print('-' * sep_line_len)
540     print()
541
542
543 def perform_checks(checklist, parsed_options):
544     for opt in checklist:
545         if hasattr(opt, 'opts'):
546             # prepare ComplexOptCheck
547             for o in opt.opts:
548                 if hasattr(o, 'state'):
549                     o.state = parsed_options.get(o.name, None)
550         else:
551             # prepare simple check
552             if not hasattr(opt, 'state'):
553                 sys.exit('[!] ERROR: bad simple check {}'.format(vars(opt)))
554             opt.state = parsed_options.get(opt.name, None)
555         opt.check()
556
557
558 def check_config_file(checklist, fname, arch):
559     with open(fname, 'r') as f:
560         parsed_options = OrderedDict()
561         opt_is_on = re.compile("CONFIG_[a-zA-Z0-9_]*=[a-zA-Z0-9_\"]*")
562         opt_is_off = re.compile("# CONFIG_[a-zA-Z0-9_]* is not set")
563
564         if not json_mode:
565             print('[+] Checking "{}" against {} hardening preferences...'.format(fname, arch))
566         for line in f.readlines():
567             line = line.strip()
568             option = None
569             value = None
570
571             if opt_is_on.match(line):
572                 option, value = line[7:].split('=', 1)
573             elif opt_is_off.match(line):
574                 option, value = line[9:].split(' ', 1)
575                 if value != 'is not set':
576                     sys.exit('[!] ERROR: bad disabled config option "{}"'.format(line))
577
578             if option in parsed_options:
579                 sys.exit('[!] ERROR: config option "{}" exists multiple times'.format(line))
580
581             if option is not None:
582                 parsed_options[option] = value
583
584         perform_checks(checklist, parsed_options)
585
586         if debug_mode:
587             known_options = []
588             for opt in checklist:
589                 if hasattr(opt, 'opts'):
590                     for o in opt.opts:
591                         if hasattr(o, 'name'):
592                             known_options.append(o.name)
593                 else:
594                     known_options.append(opt.name)
595             for option, value in parsed_options.items():
596                 if option not in known_options:
597                     print('DEBUG: dunno about option {} ({})'.format(option, value))
598
599         print_checklist(checklist, True)
600
601 def main():
602     global debug_mode
603     global json_mode
604     global kernel_version
605
606     config_checklist = []
607
608     parser = ArgumentParser(prog='kconfig-hardened-check',
609                             description='Checks the hardening options in the Linux kernel config')
610     parser.add_argument('-p', '--print', choices=supported_archs,
611                         help='print hardening preferences for selected architecture')
612     parser.add_argument('-c', '--config',
613                         help='check the config_file against these preferences')
614     parser.add_argument('--debug', action='store_true',
615                         help='enable verbose debug mode')
616     parser.add_argument('--json', action='store_true',
617                         help='print results in JSON format')
618     parser.add_argument('--version', action='version', version='%(prog)s ' + __version__)
619     args = parser.parse_args()
620
621     if args.debug:
622         debug_mode = True
623         print('[!] WARNING: debug mode is enabled')
624     if args.json:
625         json_mode = True
626     if debug_mode and json_mode:
627         sys.exit('[!] ERROR: options --debug and --json cannot be used simultaneously')
628
629     if args.config:
630         arch, msg = detect_arch(args.config)
631         if not arch:
632             sys.exit('[!] ERROR: {}'.format(msg))
633         elif not json_mode:
634             print('[+] Detected architecture: {}'.format(arch))
635
636         kernel_version, msg = detect_version(args.config)
637         if not kernel_version:
638             sys.exit('[!] ERROR: {}'.format(msg))
639         elif not json_mode:
640             print('[+] Detected kernel version: {}.{}'.format(kernel_version[0], kernel_version[1]))
641
642         construct_checklist(config_checklist, arch)
643         check_config_file(config_checklist, args.config, arch)
644         error_count = len(list(filter(lambda opt: opt.result.startswith('FAIL'), config_checklist)))
645         ok_count = len(list(filter(lambda opt: opt.result.startswith('OK'), config_checklist)))
646         if not debug_mode and not json_mode:
647             print('[+] config check is finished: \'OK\' - {} / \'FAIL\' - {}'.format(ok_count, error_count))
648         sys.exit(0)
649
650     if args.print:
651         arch = args.print
652         construct_checklist(config_checklist, arch)
653         if not json_mode:
654             print('[+] Printing kernel hardening preferences for {}...'.format(arch))
655         print_checklist(config_checklist, False)
656         sys.exit(0)
657
658     parser.print_help()
659     sys.exit(0)
660
661 if __name__ == '__main__':
662     main()