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