Add the news about PAGE_POISONING
[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 security hardening preferences for X86_64, ARM64, X86_32, and ARM.
6 # Let the computers do their job!
7 #
8 # Author: Alexander Popov <alex.popov@linux.com>
9 #
10 # Please don't cry if my Python code looks like C.
11 #
12 #
13 # N.B Hardening command line parameters:
14 #    slab_nomerge
15 #    page_alloc.shuffle=1
16 #    iommu=force (does it help against DMA attacks?)
17 #    slub_debug=FZ (slow)
18 #    init_on_alloc=1 (since v5.3)
19 #    init_on_free=1 (since v5.3, otherwise slub_debug=P and page_poison=1)
20 #    loadpin.enforce=1
21 #    debugfs=no-mount (or off if possible)
22 #
23 #    Mitigations of CPU vulnerabilities:
24 #       Аrch-independent:
25 #           mitigations=auto,nosmt (nosmt is slow)
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 (or 1?)
39 #    kernel.dmesg_restrict=1 (also see the kconfig option)
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         if not self.opts:
150             sys.exit('[!] ERROR: empty {} check'.format(self.__class__.__name__))
151         if not isinstance(opts[0], OptCheck):
152             sys.exit('[!] ERROR: invalid {} check: {}'.format(self.__class__.__name__, opts))
153         self.result = None
154
155     @property
156     def name(self):
157         return self.opts[0].name
158
159     @property
160     def expected(self):
161         return self.opts[0].expected
162
163     @property
164     def decision(self):
165         return self.opts[0].decision
166
167     @property
168     def reason(self):
169         return self.opts[0].reason
170
171     def table_print(self, mode, with_results):
172         if mode == 'verbose':
173             print('    {:87}'.format('<<< ' + self.__class__.__name__ + ' >>>'), end='')
174             if with_results:
175                 print('|   {}'.format(self.result), end='')
176             for o in self.opts:
177                 print()
178                 o.table_print(mode, with_results)
179         else:
180             o = self.opts[0]
181             o.table_print(mode, False)
182             if with_results:
183                 print('|   {}'.format(self.result), end='')
184
185
186 class OR(ComplexOptCheck):
187     # self.opts[0] is the option that this OR-check is about.
188     # Use cases:
189     #     OR(<X_is_hardened>, <X_is_disabled>)
190     #     OR(<X_is_hardened>, <old_X_is_hardened>)
191
192     def check(self):
193         if not self.opts:
194             sys.exit('[!] ERROR: invalid OR check')
195
196         for i, opt in enumerate(self.opts):
197             ret = opt.check()
198             if ret:
199                 if opt.result != 'OK' or i == 0:
200                     # Preserve additional explanation of this OK result.
201                     # Simple OK is enough only for the main option that
202                     # this OR-check is about.
203                     self.result = opt.result
204                 else:
205                     # Simple OK is not enough for additional checks.
206                     self.result = 'OK: CONFIG_{} "{}"'.format(opt.name, opt.expected)
207                 return True
208         self.result = self.opts[0].result
209         return False
210
211
212 class AND(ComplexOptCheck):
213     # self.opts[0] is the option that this AND-check is about.
214     # Use cases:
215     #     AND(<suboption>, <main_option>)
216     #       Suboption is not checked if checking of the main_option is failed.
217     #     AND(<X_is_disabled>, <old_X_is_disabled>)
218
219     def check(self):
220         for i, opt in reversed(list(enumerate(self.opts))):
221             ret = opt.check()
222             if i == 0:
223                 self.result = opt.result
224                 return ret
225             if not ret:
226                 # This FAIL is caused by additional checks,
227                 # and not by the main option that this AND-check is about.
228                 # Describe the reason of the FAIL.
229                 if opt.result.startswith('FAIL: \"') or opt.result == 'FAIL: not found':
230                     self.result = 'FAIL: CONFIG_{} not "{}"'.format(opt.name, opt.expected)
231                 elif opt.result == 'FAIL: not present':
232                     self.result = 'FAIL: CONFIG_{} not present'.format(opt.name)
233                 else:
234                     # This FAIL message is self-explaining.
235                     self.result = opt.result
236                 return False
237
238         sys.exit('[!] ERROR: invalid AND check')
239
240
241 def detect_arch(fname, archs):
242     with open(fname, 'r') as f:
243         arch_pattern = re.compile("CONFIG_[a-zA-Z0-9_]*=y")
244         arch = None
245         for line in f.readlines():
246             if arch_pattern.match(line):
247                 option, _ = line[7:].split('=', 1)
248                 if option in archs:
249                     if not arch:
250                         arch = option
251                     else:
252                         return None, 'more than one supported architecture is detected'
253         if not arch:
254             return None, 'failed to detect architecture'
255         return arch, 'OK'
256
257
258 def detect_version(fname):
259     with open(fname, 'r') as f:
260         ver_pattern = re.compile("# Linux/.* Kernel Configuration")
261         for line in f.readlines():
262             if ver_pattern.match(line):
263                 line = line.strip()
264                 parts = line.split()
265                 ver_str = parts[2]
266                 ver_numbers = ver_str.split('.')
267                 if len(ver_numbers) < 3 or not ver_numbers[0].isdigit() or not ver_numbers[1].isdigit():
268                     msg = 'failed to parse the version "' + ver_str + '"'
269                     return None, msg
270                 return (int(ver_numbers[0]), int(ver_numbers[1])), None
271         return None, 'no kernel version detected'
272
273
274 def construct_checklist(l, arch):
275     modules_not_set = OptCheck('cut_attack_surface', 'kspp', 'MODULES', 'is not set')
276     devmem_not_set = OptCheck('cut_attack_surface', 'kspp', 'DEVMEM', 'is not set') # refers to LOCKDOWN
277
278     # 'self_protection', 'defconfig'
279     l += [OptCheck('self_protection', 'defconfig', 'BUG', 'y')]
280     l += [OptCheck('self_protection', 'defconfig', 'SLUB_DEBUG', 'y')]
281     l += [OptCheck('self_protection', 'defconfig', 'GCC_PLUGINS', 'y')]
282     l += [OR(OptCheck('self_protection', 'defconfig', 'STACKPROTECTOR_STRONG', 'y'),
283              OptCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_STRONG', 'y'))]
284     l += [OR(OptCheck('self_protection', 'defconfig', 'STRICT_KERNEL_RWX', 'y'),
285              OptCheck('self_protection', 'defconfig', 'DEBUG_RODATA', 'y'))] # before v4.11
286     l += [OR(OptCheck('self_protection', 'defconfig', 'STRICT_MODULE_RWX', 'y'),
287              OptCheck('self_protection', 'defconfig', 'DEBUG_SET_MODULE_RONX', 'y'),
288              modules_not_set)] # DEBUG_SET_MODULE_RONX was before v4.11
289     l += [OR(OptCheck('self_protection', 'defconfig', 'REFCOUNT_FULL', 'y'),
290              VerCheck((5, 5)))] # REFCOUNT_FULL is enabled by default since v5.5
291     iommu_support_is_set = OptCheck('self_protection', 'defconfig', 'IOMMU_SUPPORT', 'y')
292     l += [iommu_support_is_set] # is needed for mitigating DMA attacks
293     if arch in ('X86_64', 'ARM64', 'X86_32'):
294         l += [OptCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y')]
295         l += [OptCheck('self_protection', 'defconfig', 'THREAD_INFO_IN_TASK', 'y')]
296     if arch in ('X86_64', 'ARM64'):
297         l += [OptCheck('self_protection', 'defconfig', 'VMAP_STACK', 'y')]
298     if arch in ('X86_64', 'X86_32'):
299         l += [OptCheck('self_protection', 'defconfig', 'MICROCODE', 'y')] # is needed for mitigating CPU bugs
300         l += [OptCheck('self_protection', 'defconfig', 'RETPOLINE', 'y')]
301         l += [OptCheck('self_protection', 'defconfig', 'X86_SMAP', 'y')]
302         l += [OptCheck('self_protection', 'defconfig', 'SYN_COOKIES', 'y')] # another reason?
303         l += [OR(OptCheck('self_protection', 'defconfig', 'X86_UMIP', 'y'),
304                  OptCheck('self_protection', 'defconfig', 'X86_INTEL_UMIP', 'y'))]
305     if arch in ('ARM64', 'ARM'):
306         l += [OptCheck('self_protection', 'defconfig', 'STACKPROTECTOR_PER_TASK', 'y')]
307     if arch == 'X86_64':
308         l += [OptCheck('self_protection', 'defconfig', 'PAGE_TABLE_ISOLATION', 'y')]
309         l += [OptCheck('self_protection', 'defconfig', 'RANDOMIZE_MEMORY', 'y')]
310         l += [AND(OptCheck('self_protection', 'defconfig', 'INTEL_IOMMU', 'y'),
311                   iommu_support_is_set)]
312         l += [AND(OptCheck('self_protection', 'defconfig', 'AMD_IOMMU', 'y'),
313                   iommu_support_is_set)]
314     if arch == 'ARM64':
315         l += [OptCheck('self_protection', 'defconfig', 'ARM64_PAN', 'y')]
316         l += [OptCheck('self_protection', 'defconfig', 'UNMAP_KERNEL_AT_EL0', 'y')]
317         l += [OR(OptCheck('self_protection', 'defconfig', 'HARDEN_EL2_VECTORS', 'y'),
318                  AND(OptCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y'),
319                      VerCheck((5, 9))))] # HARDEN_EL2_VECTORS was included in RANDOMIZE_BASE in v5.9
320         l += [OptCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y')]
321         l += [OptCheck('self_protection', 'defconfig', 'ARM64_PTR_AUTH', 'y')]
322         l += [OptCheck('self_protection', 'defconfig', 'ARM64_BTI_KERNEL', 'y')]
323         l += [OR(OptCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y'),
324                  VerCheck((5, 10)))] # HARDEN_BRANCH_PREDICTOR is enabled by default since v5.10
325     if arch == 'ARM':
326         l += [OptCheck('self_protection', 'defconfig', 'CPU_SW_DOMAIN_PAN', 'y')]
327         l += [OptCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y')]
328
329     # 'self_protection', 'kspp'
330     l += [OptCheck('self_protection', 'kspp', 'SECURITY_DMESG_RESTRICT', 'y')]
331     l += [OptCheck('self_protection', 'kspp', 'BUG_ON_DATA_CORRUPTION', 'y')]
332     l += [OptCheck('self_protection', 'kspp', 'DEBUG_WX', 'y')]
333     l += [OptCheck('self_protection', 'kspp', 'SCHED_STACK_END_CHECK', 'y')]
334     l += [OptCheck('self_protection', 'kspp', 'SLAB_FREELIST_HARDENED', 'y')]
335     l += [OptCheck('self_protection', 'kspp', 'SLAB_FREELIST_RANDOM', 'y')]
336     l += [OptCheck('self_protection', 'kspp', 'SHUFFLE_PAGE_ALLOCATOR', 'y')]
337     l += [OptCheck('self_protection', 'kspp', 'FORTIFY_SOURCE', 'y')]
338     l += [OptCheck('self_protection', 'kspp', 'DEBUG_LIST', 'y')]
339     l += [OptCheck('self_protection', 'kspp', 'DEBUG_SG', 'y')]
340     l += [OptCheck('self_protection', 'kspp', 'DEBUG_CREDENTIALS', 'y')]
341     l += [OptCheck('self_protection', 'kspp', 'DEBUG_NOTIFIERS', 'y')]
342     l += [OptCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y')]
343     l += [OptCheck('self_protection', 'kspp', 'GCC_PLUGIN_LATENT_ENTROPY', 'y')]
344     randstruct_is_set = OptCheck('self_protection', 'kspp', 'GCC_PLUGIN_RANDSTRUCT', 'y')
345     l += [randstruct_is_set]
346     hardened_usercopy_is_set = OptCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y')
347     l += [hardened_usercopy_is_set]
348     l += [AND(OptCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_FALLBACK', 'is not set'),
349               hardened_usercopy_is_set)]
350     l += [OR(OptCheck('self_protection', 'kspp', 'MODULE_SIG', 'y'),
351              modules_not_set)]
352     l += [OR(OptCheck('self_protection', 'kspp', 'MODULE_SIG_ALL', 'y'),
353              modules_not_set)]
354     l += [OR(OptCheck('self_protection', 'kspp', 'MODULE_SIG_SHA512', 'y'),
355              modules_not_set)]
356     l += [OR(OptCheck('self_protection', 'kspp', 'MODULE_SIG_FORCE', 'y'),
357              modules_not_set)] # refers to LOCKDOWN
358     l += [OR(OptCheck('self_protection', 'kspp', 'INIT_STACK_ALL_ZERO', 'y'),
359              OptCheck('self_protection', 'kspp', 'GCC_PLUGIN_STRUCTLEAK_BYREF_ALL', 'y'))]
360     l += [OR(OptCheck('self_protection', 'kspp', 'INIT_ON_FREE_DEFAULT_ON', 'y'),
361              OptCheck('self_protection', 'kspp', 'PAGE_POISONING_ZERO', 'y'))]
362              # CONFIG_INIT_ON_FREE_DEFAULT_ON was added in v5.3.
363              # CONFIG_PAGE_POISONING_ZERO was removed in v5.11.
364              # Starting from v5.11 CONFIG_PAGE_POISONING unconditionally checks
365              # the 0xAA poison pattern on allocation.
366              # That brings higher performance penalty.
367     if arch in ('X86_64', 'ARM64', 'X86_32'):
368         stackleak_is_set = OptCheck('self_protection', 'kspp', 'GCC_PLUGIN_STACKLEAK', 'y')
369         l += [stackleak_is_set]
370     if arch in ('X86_64', 'X86_32'):
371         l += [OptCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '65536')]
372     if arch in ('ARM64', 'ARM'):
373         l += [OptCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '32768')]
374         l += [OptCheck('self_protection', 'kspp', 'SYN_COOKIES', 'y')] # another reason?
375     if arch == 'ARM64':
376         l += [OptCheck('self_protection', 'kspp', 'ARM64_SW_TTBR0_PAN', 'y')]
377     if arch == 'X86_32':
378         l += [OptCheck('self_protection', 'kspp', 'PAGE_TABLE_ISOLATION', 'y')]
379         l += [OptCheck('self_protection', 'kspp', 'HIGHMEM64G', 'y')]
380         l += [OptCheck('self_protection', 'kspp', 'X86_PAE', 'y')]
381
382     # 'self_protection', 'clipos'
383     l += [OptCheck('self_protection', 'clipos', 'DEBUG_VIRTUAL', 'y')]
384     l += [OptCheck('self_protection', 'clipos', 'STATIC_USERMODEHELPER', 'y')] # needs userspace support
385     l += [OptCheck('self_protection', 'clipos', 'EFI_DISABLE_PCI_DMA', 'y')]
386     l += [OptCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set')] # slab_nomerge
387     l += [OptCheck('self_protection', 'clipos', 'RANDOM_TRUST_BOOTLOADER', 'is not set')]
388     l += [OptCheck('self_protection', 'clipos', 'RANDOM_TRUST_CPU', 'is not set')]
389     l += [AND(OptCheck('self_protection', 'clipos', 'GCC_PLUGIN_RANDSTRUCT_PERFORMANCE', 'is not set'),
390               randstruct_is_set)]
391     if arch in ('X86_64', 'ARM64', 'X86_32'):
392         l += [AND(OptCheck('self_protection', 'clipos', 'STACKLEAK_METRICS', 'is not set'),
393                   stackleak_is_set)]
394         l += [AND(OptCheck('self_protection', 'clipos', 'STACKLEAK_RUNTIME_DISABLE', 'is not set'),
395                   stackleak_is_set)]
396     if arch in ('X86_64', 'X86_32'):
397         l += [AND(OptCheck('self_protection', 'clipos', 'INTEL_IOMMU_DEFAULT_ON', 'y'),
398                   iommu_support_is_set)]
399     if arch == 'X86_64':
400         l += [AND(OptCheck('self_protection', 'clipos', 'INTEL_IOMMU_SVM', 'y'),
401                   iommu_support_is_set)]
402     if arch == 'X86_32':
403         l += [AND(OptCheck('self_protection', 'clipos', 'INTEL_IOMMU', 'y'),
404                   iommu_support_is_set)]
405
406     # 'self_protection', 'my'
407     l += [AND(OptCheck('self_protection', 'my', 'UBSAN_BOUNDS', 'y'),
408               OptCheck('self_protection', 'my', 'UBSAN_MISC', 'is not set'),
409               OptCheck('self_protection', 'my', 'UBSAN_TRAP', 'y'))]
410     l += [OptCheck('self_protection', 'my', 'RESET_ATTACK_MITIGATION', 'y')] # needs userspace support (systemd)
411     if arch == 'X86_64':
412         l += [AND(OptCheck('self_protection', 'my', 'AMD_IOMMU_V2', 'y'),
413                   iommu_support_is_set)]
414     if arch == 'ARM64':
415         l += [OptCheck('self_protection', 'my', 'SHADOW_CALL_STACK', 'y')] # depends on clang, maybe it's alternative to STACKPROTECTOR_STRONG
416
417     # 'security_policy'
418     if arch in ('X86_64', 'ARM64', 'X86_32'):
419         l += [OptCheck('security_policy', 'defconfig', 'SECURITY', 'y')] # and choose your favourite LSM
420     if arch == 'ARM':
421         l += [OptCheck('security_policy', 'kspp', 'SECURITY', 'y')] # and choose your favourite LSM
422     l += [OptCheck('security_policy', 'kspp', 'SECURITY_YAMA', 'y')]
423     l += [OR(OptCheck('security_policy', 'my', 'SECURITY_WRITABLE_HOOKS', 'is not set'),
424              OptCheck('security_policy', 'kspp', 'SECURITY_SELINUX_DISABLE', 'is not set'))]
425     l += [OptCheck('security_policy', 'clipos', 'SECURITY_LOCKDOWN_LSM', 'y')]
426     l += [OptCheck('security_policy', 'clipos', 'SECURITY_LOCKDOWN_LSM_EARLY', 'y')]
427     l += [OptCheck('security_policy', 'clipos', 'LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY', 'y')]
428     l += [OptCheck('security_policy', 'my', 'SECURITY_SAFESETID', 'y')]
429     loadpin_is_set = OptCheck('security_policy', 'my', 'SECURITY_LOADPIN', 'y')
430     l += [loadpin_is_set] # needs userspace support
431     l += [AND(OptCheck('security_policy', 'my', 'SECURITY_LOADPIN_ENFORCE', 'y'),
432               loadpin_is_set)]
433
434     # 'cut_attack_surface', 'defconfig'
435     l += [OptCheck('cut_attack_surface', 'defconfig', 'SECCOMP', 'y')]
436     l += [OptCheck('cut_attack_surface', 'defconfig', 'SECCOMP_FILTER', 'y')]
437     if arch in ('X86_64', 'ARM64', 'X86_32'):
438         l += [OR(OptCheck('cut_attack_surface', 'defconfig', 'STRICT_DEVMEM', 'y'),
439                  devmem_not_set)] # refers to LOCKDOWN
440
441     # 'cut_attack_surface', 'kspp'
442     l += [OptCheck('cut_attack_surface', 'kspp', 'ACPI_CUSTOM_METHOD', 'is not set')] # refers to LOCKDOWN
443     l += [OptCheck('cut_attack_surface', 'kspp', 'COMPAT_BRK', 'is not set')]
444     l += [OptCheck('cut_attack_surface', 'kspp', 'DEVKMEM', 'is not set')] # refers to LOCKDOWN
445     l += [OptCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set')]
446     l += [OptCheck('cut_attack_surface', 'kspp', 'BINFMT_MISC', 'is not set')]
447     l += [OptCheck('cut_attack_surface', 'kspp', 'INET_DIAG', 'is not set')]
448     l += [OptCheck('cut_attack_surface', 'kspp', 'KEXEC', 'is not set')] # refers to LOCKDOWN
449     l += [OptCheck('cut_attack_surface', 'kspp', 'PROC_KCORE', 'is not set')] # refers to LOCKDOWN
450     l += [OptCheck('cut_attack_surface', 'kspp', 'LEGACY_PTYS', 'is not set')]
451     l += [OptCheck('cut_attack_surface', 'kspp', 'HIBERNATION', 'is not set')] # refers to LOCKDOWN
452     l += [OptCheck('cut_attack_surface', 'kspp', 'IA32_EMULATION', 'is not set')]
453     l += [OptCheck('cut_attack_surface', 'kspp', 'X86_X32', 'is not set')]
454     l += [OptCheck('cut_attack_surface', 'kspp', 'MODIFY_LDT_SYSCALL', 'is not set')]
455     l += [OptCheck('cut_attack_surface', 'kspp', 'OABI_COMPAT', 'is not set')]
456     l += [modules_not_set]
457     l += [devmem_not_set]
458     l += [OR(OptCheck('cut_attack_surface', 'kspp', 'IO_STRICT_DEVMEM', 'y'),
459              devmem_not_set)] # refers to LOCKDOWN
460     if arch == 'ARM':
461         l += [OR(OptCheck('cut_attack_surface', 'kspp', 'STRICT_DEVMEM', 'y'),
462                  devmem_not_set)] # refers to LOCKDOWN
463     if arch == 'X86_64':
464         l += [OptCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y')] # 'vsyscall=none'
465
466     # 'cut_attack_surface', 'grsecurity'
467     l += [OptCheck('cut_attack_surface', 'grsecurity', 'ZSMALLOC_STAT', 'is not set')]
468     l += [OptCheck('cut_attack_surface', 'grsecurity', 'PAGE_OWNER', 'is not set')]
469     l += [OptCheck('cut_attack_surface', 'grsecurity', 'DEBUG_KMEMLEAK', 'is not set')]
470     l += [OptCheck('cut_attack_surface', 'grsecurity', 'BINFMT_AOUT', 'is not set')]
471     l += [OptCheck('cut_attack_surface', 'grsecurity', 'KPROBES', 'is not set')] # refers to LOCKDOWN
472     l += [OptCheck('cut_attack_surface', 'grsecurity', 'UPROBES', 'is not set')]
473     l += [OptCheck('cut_attack_surface', 'grsecurity', 'GENERIC_TRACER', 'is not set')] # refers to LOCKDOWN
474     l += [OptCheck('cut_attack_surface', 'grsecurity', 'PROC_VMCORE', 'is not set')]
475     l += [OptCheck('cut_attack_surface', 'grsecurity', 'PROC_PAGE_MONITOR', 'is not set')]
476     l += [OptCheck('cut_attack_surface', 'grsecurity', 'USELIB', 'is not set')]
477     l += [OptCheck('cut_attack_surface', 'grsecurity', 'CHECKPOINT_RESTORE', 'is not set')]
478     l += [OptCheck('cut_attack_surface', 'grsecurity', 'USERFAULTFD', 'is not set')]
479     l += [OptCheck('cut_attack_surface', 'grsecurity', 'HWPOISON_INJECT', 'is not set')]
480     l += [OptCheck('cut_attack_surface', 'grsecurity', 'MEM_SOFT_DIRTY', 'is not set')]
481     l += [OptCheck('cut_attack_surface', 'grsecurity', 'DEVPORT', 'is not set')] # refers to LOCKDOWN
482     l += [OptCheck('cut_attack_surface', 'grsecurity', 'DEBUG_FS', 'is not set')] # refers to LOCKDOWN
483     l += [OptCheck('cut_attack_surface', 'grsecurity', 'NOTIFIER_ERROR_INJECTION', 'is not set')]
484     l += [AND(OptCheck('cut_attack_surface', 'grsecurity', 'X86_PTDUMP', 'is not set'),
485               OptCheck('cut_attack_surface', 'my', 'PTDUMP_DEBUGFS', 'is not set'))]
486
487     # 'cut_attack_surface', 'maintainer'
488     l += [OptCheck('cut_attack_surface', 'maintainer', 'DRM_LEGACY', 'is not set')]
489     l += [OptCheck('cut_attack_surface', 'maintainer', 'FB', 'is not set')]
490     l += [OptCheck('cut_attack_surface', 'maintainer', 'VT', 'is not set')]
491
492     # 'cut_attack_surface', 'grapheneos'
493     l += [OptCheck('cut_attack_surface', 'grapheneos', 'AIO', 'is not set')]
494
495     # 'cut_attack_surface', 'clipos'
496     l += [OptCheck('cut_attack_surface', 'clipos', 'STAGING', 'is not set')]
497     l += [OptCheck('cut_attack_surface', 'clipos', 'KSM', 'is not set')] # to prevent FLUSH+RELOAD attack
498 #   l += [OptCheck('cut_attack_surface', 'clipos', 'IKCONFIG', 'is not set')] # no, IKCONFIG is needed for this check :)
499     l += [OptCheck('cut_attack_surface', 'clipos', 'KALLSYMS', 'is not set')]
500     l += [OptCheck('cut_attack_surface', 'clipos', 'X86_VSYSCALL_EMULATION', 'is not set')]
501     l += [OptCheck('cut_attack_surface', 'clipos', 'MAGIC_SYSRQ', 'is not set')]
502     l += [OptCheck('cut_attack_surface', 'clipos', 'KEXEC_FILE', 'is not set')] # refers to LOCKDOWN (permissive)
503     l += [OptCheck('cut_attack_surface', 'clipos', 'USER_NS', 'is not set')] # user.max_user_namespaces=0
504     l += [OptCheck('cut_attack_surface', 'clipos', 'X86_MSR', 'is not set')] # refers to LOCKDOWN
505     l += [OptCheck('cut_attack_surface', 'clipos', 'X86_CPUID', 'is not set')]
506     l += [OptCheck('cut_attack_surface', 'clipos', 'IO_URING', 'is not set')]
507     l += [OptCheck('cut_attack_surface', 'clipos', 'X86_IOPL_IOPERM', 'is not set')] # refers to LOCKDOWN
508     l += [OptCheck('cut_attack_surface', 'clipos', 'ACPI_TABLE_UPGRADE', 'is not set')] # refers to LOCKDOWN
509     l += [OptCheck('cut_attack_surface', 'clipos', 'EFI_CUSTOM_SSDT_OVERLAYS', 'is not set')]
510     l += [AND(OptCheck('cut_attack_surface', 'clipos', 'LDISC_AUTOLOAD', 'is not set'),
511               PresenceCheck('LDISC_AUTOLOAD'))]
512     if arch in ('X86_64', 'X86_32'):
513         l += [OptCheck('cut_attack_surface', 'clipos', 'X86_INTEL_TSX_MODE_OFF', 'y')] # tsx=off
514
515     # 'cut_attack_surface', 'lockdown'
516     l += [OptCheck('cut_attack_surface', 'lockdown', 'EFI_TEST', 'is not set')] # refers to LOCKDOWN
517     l += [OptCheck('cut_attack_surface', 'lockdown', 'BPF_SYSCALL', 'is not set')] # refers to LOCKDOWN
518     l += [OptCheck('cut_attack_surface', 'lockdown', 'MMIOTRACE_TEST', 'is not set')] # refers to LOCKDOWN
519
520     # 'cut_attack_surface', 'my'
521     l += [OptCheck('cut_attack_surface', 'my', 'TRIM_UNUSED_KSYMS', 'y')]
522     l += [OptCheck('cut_attack_surface', 'my', 'MMIOTRACE', 'is not set')] # refers to LOCKDOWN (permissive)
523     l += [OptCheck('cut_attack_surface', 'my', 'LIVEPATCH', 'is not set')]
524     l += [OptCheck('cut_attack_surface', 'my', 'IP_DCCP', 'is not set')]
525     l += [OptCheck('cut_attack_surface', 'my', 'IP_SCTP', 'is not set')]
526     l += [OptCheck('cut_attack_surface', 'my', 'FTRACE', 'is not set')] # refers to LOCKDOWN
527     l += [OptCheck('cut_attack_surface', 'my', 'VIDEO_VIVID', 'is not set')]
528     l += [OptCheck('cut_attack_surface', 'my', 'INPUT_EVBUG', 'is not set')] # Can be used as a keylogger
529
530     # 'userspace_hardening'
531     if arch in ('X86_64', 'ARM64', 'X86_32'):
532         l += [OptCheck('userspace_hardening', 'defconfig', 'INTEGRITY', 'y')]
533     if arch == 'ARM':
534         l += [OptCheck('userspace_hardening', 'my', 'INTEGRITY', 'y')]
535     if arch == 'ARM64':
536         l += [OptCheck('userspace_hardening', 'defconfig', 'ARM64_MTE', 'y')]
537     if arch in ('ARM', 'X86_32'):
538         l += [OptCheck('userspace_hardening', 'defconfig', 'VMSPLIT_3G', 'y')]
539     if arch in ('X86_64', 'ARM64'):
540         l += [OptCheck('userspace_hardening', 'clipos', 'ARCH_MMAP_RND_BITS', '32')]
541     if arch in ('X86_32', 'ARM'):
542         l += [OptCheck('userspace_hardening', 'my', 'ARCH_MMAP_RND_BITS', '16')]
543
544 #   l += [OptCheck('feature_test', 'my', 'LKDTM', 'm')] # only for debugging!
545
546
547 def print_unknown_options(checklist, parsed_options):
548     known_options = []
549     for opt in checklist:
550         if hasattr(opt, 'opts'):
551             for o in opt.opts:
552                 if hasattr(o, 'name'):
553                     known_options.append(o.name)
554         else:
555             known_options.append(opt.name)
556     for option, value in parsed_options.items():
557         if option not in known_options:
558             print('[?] No rule for option {} ({})'.format(option, value))
559
560
561 def print_checklist(mode, checklist, with_results):
562     if mode == 'json':
563         opts = []
564         for o in checklist:
565             opt = ['CONFIG_'+o.name, o.expected, o.decision, o.reason]
566             if with_results:
567                 opt.append(o.result)
568             opts.append(opt)
569         print(json.dumps(opts))
570         return
571
572     # table header
573     sep_line_len = 91
574     if with_results:
575         sep_line_len += 30
576     print('=' * sep_line_len)
577     print('{:^45}|{:^13}|{:^10}|{:^20}'.format('option name', 'desired val', 'decision', 'reason'), end='')
578     if with_results:
579         print('|   {}'.format('check result'), end='')
580     print()
581     print('=' * sep_line_len)
582
583     # table contents
584     for opt in checklist:
585         if with_results:
586             if mode == 'show_ok':
587                 if not opt.result.startswith('OK'):
588                     continue
589             if mode == 'show_fail':
590                 if not opt.result.startswith('FAIL'):
591                     continue
592         opt.table_print(mode, with_results)
593         print()
594         if mode == 'verbose':
595             print('-' * sep_line_len)
596     print()
597
598     # final score
599     if with_results:
600         fail_count = len(list(filter(lambda opt: opt.result.startswith('FAIL'), checklist)))
601         fail_suppressed = ''
602         ok_count = len(list(filter(lambda opt: opt.result.startswith('OK'), checklist)))
603         ok_suppressed = ''
604         if mode == 'show_ok':
605             fail_suppressed = ' (suppressed in output)'
606         if mode == 'show_fail':
607             ok_suppressed = ' (suppressed in output)'
608         if mode != 'json':
609             print('[+] Config check is finished: \'OK\' - {}{} / \'FAIL\' - {}{}'.format(ok_count, ok_suppressed, fail_count, fail_suppressed))
610
611
612 def perform_check(opt, parsed_options, kernel_version):
613     if hasattr(opt, 'opts'):
614         # prepare ComplexOptCheck
615         for o in opt.opts:
616             if hasattr(o, 'opts'):
617                 # Recursion for nested ComplexOptChecks
618                 perform_check(o, parsed_options, kernel_version)
619             if hasattr(o, 'state'):
620                 o.state = parsed_options.get(o.name, None)
621             if hasattr(o, 'ver'):
622                 o.ver = kernel_version
623     else:
624         # prepare simple check, opt.state is mandatory
625         if not hasattr(opt, 'state'):
626             sys.exit('[!] ERROR: bad simple check {}'.format(vars(opt)))
627         opt.state = parsed_options.get(opt.name, None)
628     opt.check()
629
630
631 def perform_checks(checklist, parsed_options, kernel_version):
632     for opt in checklist:
633         perform_check(opt, parsed_options, kernel_version)
634
635
636 def parse_config_file(parsed_options, fname):
637     with open(fname, 'r') as f:
638         opt_is_on = re.compile("CONFIG_[a-zA-Z0-9_]*=[a-zA-Z0-9_\"]*")
639         opt_is_off = re.compile("# CONFIG_[a-zA-Z0-9_]* is not set")
640
641         for line in f.readlines():
642             line = line.strip()
643             option = None
644             value = None
645
646             if opt_is_on.match(line):
647                 option, value = line[7:].split('=', 1)
648             elif opt_is_off.match(line):
649                 option, value = line[9:].split(' ', 1)
650                 if value != 'is not set':
651                     sys.exit('[!] ERROR: bad disabled config option "{}"'.format(line))
652
653             if option in parsed_options:
654                 sys.exit('[!] ERROR: config option "{}" exists multiple times'.format(line))
655
656             if option:
657                 parsed_options[option] = value
658
659         return parsed_options
660
661
662 def main():
663     # Report modes:
664     #   * verbose mode for
665     #     - reporting about unknown kernel options in the config
666     #     - verbose printing of ComplexOptCheck items
667     #   * json mode for printing the results in JSON format
668     report_modes = ['verbose', 'json', 'show_ok', 'show_fail']
669     supported_archs = ['X86_64', 'X86_32', 'ARM64', 'ARM']
670     parser = ArgumentParser(prog='kconfig-hardened-check',
671                             description='A tool for checking the security hardening options of the Linux kernel')
672     parser.add_argument('--version', action='version', version='%(prog)s ' + __version__)
673     parser.add_argument('-p', '--print', choices=supported_archs,
674                         help='print security hardening preferences for the selected architecture')
675     parser.add_argument('-c', '--config',
676                         help='check the kernel config file against these preferences')
677     parser.add_argument('-m', '--mode', choices=report_modes,
678                         help='choose the report mode')
679     args = parser.parse_args()
680
681     mode = None
682     if args.mode:
683         mode = args.mode
684         if mode != 'json':
685             print("[+] Special report mode: {}".format(mode))
686
687     config_checklist = []
688
689     if args.config:
690         if mode != 'json':
691             print('[+] Config file to check: {}'.format(args.config))
692
693         arch, msg = detect_arch(args.config, supported_archs)
694         if not arch:
695             sys.exit('[!] ERROR: {}'.format(msg))
696         if mode != 'json':
697             print('[+] Detected architecture: {}'.format(arch))
698
699         kernel_version, msg = detect_version(args.config)
700         if not kernel_version:
701             sys.exit('[!] ERROR: {}'.format(msg))
702         if mode != 'json':
703             print('[+] Detected kernel version: {}.{}'.format(kernel_version[0], kernel_version[1]))
704
705         construct_checklist(config_checklist, arch)
706         parsed_options = OrderedDict()
707         parse_config_file(parsed_options, args.config)
708         perform_checks(config_checklist, parsed_options, kernel_version)
709
710         if mode == 'verbose':
711             print_unknown_options(config_checklist, parsed_options)
712         print_checklist(mode, config_checklist, True)
713
714         sys.exit(0)
715
716     if args.print:
717         if mode in ('show_ok', 'show_fail'):
718             sys.exit('[!] ERROR: please use "{}" mode for checking the kernel config'.format(mode))
719         arch = args.print
720         construct_checklist(config_checklist, arch)
721         if mode != 'json':
722             print('[+] Printing kernel security hardening preferences for {}...'.format(arch))
723         print_checklist(mode, config_checklist, False)
724         sys.exit(0)
725
726     parser.print_help()
727     sys.exit(0)
728
729 if __name__ == '__main__':
730     main()