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