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