9280f5ae5b929151fad352d6c0c3ade8c834f81e
[kconfig-hardened-check.git] / kconfig_hardened_check / __init__.py
1 #!/usr/bin/python3
2
3 #
4 # This tool helps me to check Linux kernel options against
5 # 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 #    iommu=force (does it help against DMA attacks?)
15 #    loadpin.enforce=1
16 #
17 #    Mitigations of CPU vulnerabilities:
18 #       Аrch-independent:
19 #           mitigations=auto,nosmt (nosmt is slow)
20 #       X86:
21 #           spectre_v2=on
22 #           spec_store_bypass_disable=on
23 #           l1tf=full,force
24 #           l1d_flush=on (a part of the l1tf option)
25 #           mds=full,nosmt
26 #           tsx=off
27 #       ARM64:
28 #           kpti=on
29 #           ssbd=force-on
30 #
31 #    Should NOT be set:
32 #           nokaslr
33 #           sysrq_always_enabled
34 #           arm64.nobti
35 #           arm64.nopauth
36 #           arm64.nomte
37 #
38 #    Hardware tag-based KASAN with arm64 Memory Tagging Extension (MTE):
39 #           kasan=on
40 #           kasan.stacktrace=off
41 #           kasan.fault=panic
42 #
43 # N.B. Hardening sysctls:
44 #    kernel.kptr_restrict=2 (or 1?)
45 #    kernel.dmesg_restrict=1 (also see the kconfig option)
46 #    kernel.perf_event_paranoid=3
47 #    kernel.kexec_load_disabled=1
48 #    kernel.yama.ptrace_scope=3
49 #    user.max_user_namespaces=0
50 #    what about bpf_jit_enable?
51 #    kernel.unprivileged_bpf_disabled=1
52 #    net.core.bpf_jit_harden=2
53 #    vm.unprivileged_userfaultfd=0
54 #        (at first, it disabled unprivileged userfaultfd,
55 #         and since v5.11 it enables unprivileged userfaultfd for user-mode only)
56 #    vm.mmap_min_addr has a good value
57 #    dev.tty.ldisc_autoload=0
58 #    fs.protected_symlinks=1
59 #    fs.protected_hardlinks=1
60 #    fs.protected_fifos=2
61 #    fs.protected_regular=2
62 #    fs.suid_dumpable=0
63 #    kernel.modules_disabled=1
64 #    kernel.randomize_va_space = 2
65
66
67 # pylint: disable=missing-module-docstring,missing-class-docstring,missing-function-docstring
68 # pylint: disable=line-too-long,invalid-name,too-many-branches,too-many-statements
69
70
71 import sys
72 from argparse import ArgumentParser
73 from collections import OrderedDict
74 import re
75 import json
76 from .__about__ import __version__
77
78 SIMPLE_OPTION_TYPES = ('kconfig', 'version', 'cmdline')
79
80 class OptCheck:
81     # Constructor without the 'expected' parameter is for option presence checks (any value is OK)
82     def __init__(self, reason, decision, name, expected=None):
83         assert(reason and decision and name), \
84                'invalid {} check for "{}"'.format(self.__class__.__name__, name)
85         self.name = name
86         self.expected = expected
87         self.decision = decision
88         self.reason = reason
89         self.state = None
90         self.result = None
91
92     @property
93     def type(self):
94         return None
95
96     def check(self):
97         # handle the option presence check
98         if self.expected is None:
99             if self.state is None:
100                 self.result = 'FAIL: not present'
101             else:
102                 self.result = 'OK: is present'
103             return
104
105         # handle the option value check
106         if self.expected == self.state:
107             self.result = 'OK'
108         elif self.state is None:
109             if self.expected == 'is not set':
110                 self.result = 'OK: not found'
111             else:
112                 self.result = 'FAIL: not found'
113         else:
114             self.result = 'FAIL: "' + self.state + '"'
115
116     def table_print(self, _mode, with_results):
117         if self.expected is None:
118             expected = ''
119         else:
120             expected = self.expected
121         print('{:<40}|{:^7}|{:^12}|{:^10}|{:^18}'.format(self.name, self.type, expected, self.decision, self.reason), end='')
122         if with_results:
123             print('| {}'.format(self.result), end='')
124
125     def json_dump(self, with_results):
126         dump = [self.name, self.type, self.expected, self.decision, self.reason]
127         if with_results:
128             dump.append(self.result)
129         return dump
130
131
132 class KconfigCheck(OptCheck):
133     def __init__(self, *args, **kwargs):
134         super().__init__(*args, **kwargs)
135         self.name = 'CONFIG_' + self.name
136
137     @property
138     def type(self):
139         return 'kconfig'
140
141
142 class CmdlineCheck(OptCheck):
143     @property
144     def type(self):
145         return 'cmdline'
146
147
148 class VersionCheck:
149     def __init__(self, ver_expected):
150         self.ver_expected = ver_expected
151         self.ver = ()
152         self.result = None
153
154     @property
155     def type(self):
156         return 'version'
157
158     def check(self):
159         if self.ver[0] > self.ver_expected[0]:
160             self.result = 'OK: version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
161             return
162         if self.ver[0] < self.ver_expected[0]:
163             self.result = 'FAIL: version < ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
164             return
165         if self.ver[1] >= self.ver_expected[1]:
166             self.result = 'OK: version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
167             return
168         self.result = 'FAIL: version < ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
169
170     def table_print(self, _mode, with_results):
171         ver_req = 'kernel version >= ' + str(self.ver_expected[0]) + '.' + str(self.ver_expected[1])
172         print('{:<91}'.format(ver_req), end='')
173         if with_results:
174             print('| {}'.format(self.result), end='')
175
176
177 class ComplexOptCheck:
178     def __init__(self, *opts):
179         self.opts = opts
180         assert(self.opts), \
181                'empty {} check'.format(self.__class__.__name__)
182         assert(len(self.opts) != 1), \
183                 'useless {} check: {}'.format(self.__class__.__name__, opts)
184         assert(isinstance(opts[0], (KconfigCheck, CmdlineCheck))), \
185                'invalid {} check: {}'.format(self.__class__.__name__, opts)
186         self.result = None
187
188     @property
189     def type(self):
190         return 'complex'
191
192     @property
193     def name(self):
194         return self.opts[0].name
195
196     @property
197     def expected(self):
198         return self.opts[0].expected
199
200     def table_print(self, mode, with_results):
201         if mode == 'verbose':
202             print('    {:87}'.format('<<< ' + self.__class__.__name__ + ' >>>'), end='')
203             if with_results:
204                 print('| {}'.format(self.result), end='')
205             for o in self.opts:
206                 print()
207                 o.table_print(mode, with_results)
208         else:
209             o = self.opts[0]
210             o.table_print(mode, False)
211             if with_results:
212                 print('| {}'.format(self.result), end='')
213
214     def json_dump(self, with_results):
215         dump = self.opts[0].json_dump(False)
216         if with_results:
217             dump.append(self.result)
218         return dump
219
220
221 class OR(ComplexOptCheck):
222     # self.opts[0] is the option that this OR-check is about.
223     # Use cases:
224     #     OR(<X_is_hardened>, <X_is_disabled>)
225     #     OR(<X_is_hardened>, <old_X_is_hardened>)
226     def check(self):
227         for i, opt in enumerate(self.opts):
228             opt.check()
229             if opt.result.startswith('OK'):
230                 self.result = opt.result
231                 # Add more info for additional checks:
232                 if i != 0:
233                     if opt.result == 'OK':
234                         self.result = 'OK: {} "{}"'.format(opt.name, opt.expected)
235                     elif opt.result == 'OK: not found':
236                         self.result = 'OK: {} not found'.format(opt.name)
237                     elif opt.result == 'OK: is present':
238                         self.result = 'OK: {} is present'.format(opt.name)
239                     else:
240                         # VersionCheck provides enough info
241                         assert(opt.result.startswith('OK: version')), \
242                                'unexpected OK description "{}"'.format(opt.result)
243                 return
244         self.result = self.opts[0].result
245
246
247 class AND(ComplexOptCheck):
248     # self.opts[0] is the option that this AND-check is about.
249     # Use cases:
250     #     AND(<suboption>, <main_option>)
251     #       Suboption is not checked if checking of the main_option is failed.
252     #     AND(<X_is_disabled>, <old_X_is_disabled>)
253     def check(self):
254         for i, opt in reversed(list(enumerate(self.opts))):
255             opt.check()
256             if i == 0:
257                 self.result = opt.result
258                 return
259             if not opt.result.startswith('OK'):
260                 # This FAIL is caused by additional checks,
261                 # and not by the main option that this AND-check is about.
262                 # Describe the reason of the FAIL.
263                 if opt.result.startswith('FAIL: \"') or opt.result == 'FAIL: not found':
264                     self.result = 'FAIL: {} not "{}"'.format(opt.name, opt.expected)
265                 elif opt.result == 'FAIL: not present':
266                     self.result = 'FAIL: {} not present'.format(opt.name)
267                 else:
268                     # VersionCheck provides enough info
269                     self.result = opt.result
270                     assert(opt.result.startswith('FAIL: version')), \
271                            'unexpected FAIL description "{}"'.format(opt.result)
272                 return
273
274
275 def detect_arch(fname, archs):
276     with open(fname, 'r') as f:
277         arch_pattern = re.compile("CONFIG_[a-zA-Z0-9_]*=y")
278         arch = None
279         for line in f.readlines():
280             if arch_pattern.match(line):
281                 option, _ = line[7:].split('=', 1)
282                 if option in archs:
283                     if not arch:
284                         arch = option
285                     else:
286                         return None, 'more than one supported architecture is detected'
287         if not arch:
288             return None, 'failed to detect architecture'
289         return arch, 'OK'
290
291
292 def detect_version(fname):
293     with open(fname, 'r') as f:
294         ver_pattern = re.compile("# Linux/.* Kernel Configuration")
295         for line in f.readlines():
296             if ver_pattern.match(line):
297                 line = line.strip()
298                 parts = line.split()
299                 ver_str = parts[2]
300                 ver_numbers = ver_str.split('.')
301                 if len(ver_numbers) < 3 or not ver_numbers[0].isdigit() or not ver_numbers[1].isdigit():
302                     msg = 'failed to parse the version "' + ver_str + '"'
303                     return None, msg
304                 return (int(ver_numbers[0]), int(ver_numbers[1])), None
305         return None, 'no kernel version detected'
306
307
308 def add_kconfig_checks(l, arch):
309     # Calling the KconfigCheck class constructor:
310     #     KconfigCheck(reason, decision, name, expected)
311     #
312     # [!] Don't add CmdlineChecks in add_kconfig_checks() to avoid wrong results
313     #     when the tool doesn't check the cmdline.
314
315     efi_not_set = KconfigCheck('-', '-', 'EFI', 'is not set')
316     cc_is_gcc = KconfigCheck('-', '-', 'CC_IS_GCC', 'y')
317     cc_is_clang = KconfigCheck('-', '-', 'CC_IS_CLANG', 'y')
318
319     modules_not_set = KconfigCheck('cut_attack_surface', 'kspp', 'MODULES', 'is not set')
320     devmem_not_set = KconfigCheck('cut_attack_surface', 'kspp', 'DEVMEM', 'is not set') # refers to LOCKDOWN
321     bpf_syscall_not_set = KconfigCheck('cut_attack_surface', 'lockdown', 'BPF_SYSCALL', 'is not set') # refers to LOCKDOWN
322
323     # 'self_protection', 'defconfig'
324     l += [KconfigCheck('self_protection', 'defconfig', 'BUG', 'y')]
325     l += [KconfigCheck('self_protection', 'defconfig', 'SLUB_DEBUG', 'y')]
326     l += [KconfigCheck('self_protection', 'defconfig', 'GCC_PLUGINS', 'y')]
327     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR', 'y'),
328              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR', 'y'),
329              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_REGULAR', 'y'),
330              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_AUTO', 'y'),
331              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_STRONG', 'y'))]
332     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR_STRONG', 'y'),
333              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_STRONG', 'y'))]
334     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STRICT_KERNEL_RWX', 'y'),
335              KconfigCheck('self_protection', 'defconfig', 'DEBUG_RODATA', 'y'))] # before v4.11
336     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STRICT_MODULE_RWX', 'y'),
337              KconfigCheck('self_protection', 'defconfig', 'DEBUG_SET_MODULE_RONX', 'y'),
338              modules_not_set)] # DEBUG_SET_MODULE_RONX was before v4.11
339     l += [OR(KconfigCheck('self_protection', 'defconfig', 'REFCOUNT_FULL', 'y'),
340              VersionCheck((5, 5)))] # REFCOUNT_FULL is enabled by default since v5.5
341     l += [KconfigCheck('self_protection', 'defconfig', 'THREAD_INFO_IN_TASK', 'y')]
342     iommu_support_is_set = KconfigCheck('self_protection', 'defconfig', 'IOMMU_SUPPORT', 'y')
343     l += [iommu_support_is_set] # is needed for mitigating DMA attacks
344     if arch in ('X86_64', 'ARM64', 'X86_32'):
345         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y')]
346     if arch in ('X86_64', 'ARM64'):
347         l += [KconfigCheck('self_protection', 'defconfig', 'VMAP_STACK', 'y')]
348     if arch in ('X86_64', 'X86_32'):
349         l += [KconfigCheck('self_protection', 'defconfig', 'MICROCODE', 'y')] # is needed for mitigating CPU bugs
350         l += [KconfigCheck('self_protection', 'defconfig', 'RETPOLINE', 'y')]
351         l += [KconfigCheck('self_protection', 'defconfig', 'X86_SMAP', 'y')]
352         l += [KconfigCheck('self_protection', 'defconfig', 'SYN_COOKIES', 'y')] # another reason?
353         l += [OR(KconfigCheck('self_protection', 'defconfig', 'X86_UMIP', 'y'),
354                  KconfigCheck('self_protection', 'defconfig', 'X86_INTEL_UMIP', 'y'))]
355     if arch in ('ARM64', 'ARM'):
356         l += [KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR_PER_TASK', 'y')]
357     if arch == 'X86_64':
358         l += [KconfigCheck('self_protection', 'defconfig', 'PAGE_TABLE_ISOLATION', 'y')]
359         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_MEMORY', 'y')]
360         l += [AND(KconfigCheck('self_protection', 'defconfig', 'INTEL_IOMMU', 'y'),
361                   iommu_support_is_set)]
362         l += [AND(KconfigCheck('self_protection', 'defconfig', 'AMD_IOMMU', 'y'),
363                   iommu_support_is_set)]
364     if arch == 'ARM64':
365         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_PAN', 'y')]
366         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_EPAN', 'y')]
367         l += [KconfigCheck('self_protection', 'defconfig', 'UNMAP_KERNEL_AT_EL0', 'y')]
368         l += [OR(KconfigCheck('self_protection', 'defconfig', 'HARDEN_EL2_VECTORS', 'y'),
369                  AND(KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y'),
370                      VersionCheck((5, 9))))] # HARDEN_EL2_VECTORS was included in RANDOMIZE_BASE in v5.9
371         l += [KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y')]
372         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_PTR_AUTH_KERNEL', 'y')]
373         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_BTI_KERNEL', 'y')]
374         l += [OR(KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y'),
375                  VersionCheck((5, 10)))] # HARDEN_BRANCH_PREDICTOR is enabled by default since v5.10
376         l += [KconfigCheck('self_protection', 'defconfig', 'MITIGATE_SPECTRE_BRANCH_HISTORY', 'y')]
377         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_MTE', 'y')]
378         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_MODULE_REGION_FULL', 'y')]
379     if arch == 'ARM':
380         l += [KconfigCheck('self_protection', 'defconfig', 'CPU_SW_DOMAIN_PAN', 'y')]
381         l += [KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y')]
382         l += [KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_HISTORY', 'y')]
383
384     # 'self_protection', 'kspp'
385     l += [KconfigCheck('self_protection', 'kspp', 'BUG_ON_DATA_CORRUPTION', 'y')]
386     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_WX', 'y')]
387     l += [KconfigCheck('self_protection', 'kspp', 'SCHED_STACK_END_CHECK', 'y')]
388     l += [KconfigCheck('self_protection', 'kspp', 'SLAB_FREELIST_HARDENED', 'y')]
389     l += [KconfigCheck('self_protection', 'kspp', 'SLAB_FREELIST_RANDOM', 'y')]
390     l += [KconfigCheck('self_protection', 'kspp', 'SHUFFLE_PAGE_ALLOCATOR', 'y')]
391     l += [KconfigCheck('self_protection', 'kspp', 'FORTIFY_SOURCE', 'y')]
392     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_LIST', 'y')]
393     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_SG', 'y')]
394     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_CREDENTIALS', 'y')]
395     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_NOTIFIERS', 'y')]
396     l += [KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y')]
397     l += [KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_LATENT_ENTROPY', 'y')]
398     l += [KconfigCheck('self_protection', 'kspp', 'KFENCE', 'y')]
399     l += [KconfigCheck('self_protection', 'kspp', 'WERROR', 'y')]
400     l += [KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_DMA_STRICT', 'y')]
401     l += [KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set')] # true if IOMMU_DEFAULT_DMA_STRICT is set
402     l += [KconfigCheck('self_protection', 'kspp', 'ZERO_CALL_USED_REGS', 'y')]
403     randstruct_is_set = KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_RANDSTRUCT', 'y')
404     l += [randstruct_is_set]
405     hardened_usercopy_is_set = KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y')
406     l += [hardened_usercopy_is_set]
407     l += [AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_FALLBACK', 'is not set'),
408               hardened_usercopy_is_set)]
409     l += [AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_PAGESPAN', 'is not set'),
410               hardened_usercopy_is_set)]
411     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG', 'y'),
412              modules_not_set)]
413     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_ALL', 'y'),
414              modules_not_set)]
415     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_SHA512', 'y'),
416              modules_not_set)]
417     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_FORCE', 'y'),
418              modules_not_set)] # refers to LOCKDOWN
419     l += [OR(KconfigCheck('self_protection', 'kspp', 'INIT_STACK_ALL_ZERO', 'y'),
420              KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_STRUCTLEAK_BYREF_ALL', 'y'))]
421     l += [OR(KconfigCheck('self_protection', 'kspp', 'INIT_ON_FREE_DEFAULT_ON', 'y'),
422              KconfigCheck('self_protection', 'kspp', 'PAGE_POISONING_ZERO', 'y'))]
423              # CONFIG_INIT_ON_FREE_DEFAULT_ON was added in v5.3.
424              # CONFIG_PAGE_POISONING_ZERO was removed in v5.11.
425              # Starting from v5.11 CONFIG_PAGE_POISONING unconditionally checks
426              # the 0xAA poison pattern on allocation.
427              # That brings higher performance penalty.
428     if arch in ('X86_64', 'ARM64', 'X86_32'):
429         stackleak_is_set = KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_STACKLEAK', 'y')
430         l += [stackleak_is_set]
431         l += [KconfigCheck('self_protection', 'kspp', 'RANDOMIZE_KSTACK_OFFSET_DEFAULT', 'y')]
432     if arch in ('X86_64', 'X86_32'):
433         l += [KconfigCheck('self_protection', 'kspp', 'SCHED_CORE', 'y')]
434         l += [KconfigCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '65536')]
435     if arch in ('ARM64', 'ARM'):
436         l += [KconfigCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '32768')]
437         l += [KconfigCheck('self_protection', 'kspp', 'SYN_COOKIES', 'y')] # another reason?
438     if arch == 'ARM64':
439         l += [KconfigCheck('self_protection', 'kspp', 'ARM64_SW_TTBR0_PAN', 'y')]
440     if arch == 'X86_32':
441         l += [KconfigCheck('self_protection', 'kspp', 'PAGE_TABLE_ISOLATION', 'y')]
442         l += [KconfigCheck('self_protection', 'kspp', 'HIGHMEM64G', 'y')]
443         l += [KconfigCheck('self_protection', 'kspp', 'X86_PAE', 'y')]
444
445     # 'self_protection', 'maintainer'
446     ubsan_bounds_is_set = KconfigCheck('self_protection', 'maintainer', 'UBSAN_BOUNDS', 'y') # only array index bounds checking
447     l += [ubsan_bounds_is_set] # recommended by Kees Cook in /issues/53
448     if arch in ('X86_64', 'ARM64', 'X86_32'):  # ARCH_HAS_UBSAN_SANITIZE_ALL is not enabled for ARM
449         l += [AND(KconfigCheck('self_protection', 'maintainer', 'UBSAN_SANITIZE_ALL', 'y'),
450                   ubsan_bounds_is_set)] # recommended by Kees Cook in /issues/53
451     l += [AND(KconfigCheck('self_protection', 'maintainer', 'UBSAN_TRAP', 'y'),
452               ubsan_bounds_is_set)] # recommended by Kees Cook in /issues/53
453
454     # 'self_protection', 'clipos'
455     l += [KconfigCheck('self_protection', 'clipos', 'DEBUG_VIRTUAL', 'y')]
456     l += [KconfigCheck('self_protection', 'clipos', 'STATIC_USERMODEHELPER', 'y')] # needs userspace support
457     l += [OR(KconfigCheck('self_protection', 'clipos', 'EFI_DISABLE_PCI_DMA', 'y'),
458              efi_not_set)]
459     l += [KconfigCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set')]
460     l += [KconfigCheck('self_protection', 'clipos', 'RANDOM_TRUST_BOOTLOADER', 'is not set')]
461     l += [KconfigCheck('self_protection', 'clipos', 'RANDOM_TRUST_CPU', 'is not set')]
462     l += [AND(KconfigCheck('self_protection', 'clipos', 'GCC_PLUGIN_RANDSTRUCT_PERFORMANCE', 'is not set'),
463               randstruct_is_set)]
464     if arch in ('X86_64', 'ARM64', 'X86_32'):
465         l += [AND(KconfigCheck('self_protection', 'clipos', 'STACKLEAK_METRICS', 'is not set'),
466                   stackleak_is_set)]
467         l += [AND(KconfigCheck('self_protection', 'clipos', 'STACKLEAK_RUNTIME_DISABLE', 'is not set'),
468                   stackleak_is_set)]
469     if arch in ('X86_64', 'X86_32'):
470         l += [AND(KconfigCheck('self_protection', 'clipos', 'INTEL_IOMMU_DEFAULT_ON', 'y'),
471                   iommu_support_is_set)]
472     if arch == 'X86_64':
473         l += [AND(KconfigCheck('self_protection', 'clipos', 'INTEL_IOMMU_SVM', 'y'),
474                   iommu_support_is_set)]
475     if arch == 'X86_32':
476         l += [AND(KconfigCheck('self_protection', 'clipos', 'INTEL_IOMMU', 'y'),
477                   iommu_support_is_set)]
478
479     # 'self_protection', 'my'
480     l += [OR(KconfigCheck('self_protection', 'my', 'RESET_ATTACK_MITIGATION', 'y'),
481              efi_not_set)] # needs userspace support (systemd)
482     if arch == 'X86_64':
483         l += [KconfigCheck('self_protection', 'my', 'SLS', 'y')] # vs CVE-2021-26341 in Straight-Line-Speculation
484         l += [AND(KconfigCheck('self_protection', 'my', 'AMD_IOMMU_V2', 'y'),
485                   iommu_support_is_set)]
486     if arch == 'ARM64':
487         l += [KconfigCheck('self_protection', 'my', 'SHADOW_CALL_STACK', 'y')] # depends on clang, maybe it's alternative to STACKPROTECTOR_STRONG
488         l += [KconfigCheck('self_protection', 'my', 'KASAN_HW_TAGS', 'y')]
489         cfi_clang_is_set = KconfigCheck('self_protection', 'my', 'CFI_CLANG', 'y')
490         l += [cfi_clang_is_set]
491         l += [AND(KconfigCheck('self_protection', 'my', 'CFI_PERMISSIVE', 'is not set'),
492                   cfi_clang_is_set)]
493
494     # 'security_policy'
495     if arch in ('X86_64', 'ARM64', 'X86_32'):
496         l += [KconfigCheck('security_policy', 'defconfig', 'SECURITY', 'y')] # and choose your favourite LSM
497     if arch == 'ARM':
498         l += [KconfigCheck('security_policy', 'kspp', 'SECURITY', 'y')] # and choose your favourite LSM
499     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_YAMA', 'y')]
500     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_SELINUX_DISABLE', 'is not set')]
501     l += [KconfigCheck('security_policy', 'clipos', 'SECURITY_LOCKDOWN_LSM', 'y')]
502     l += [KconfigCheck('security_policy', 'clipos', 'SECURITY_LOCKDOWN_LSM_EARLY', 'y')]
503     l += [KconfigCheck('security_policy', 'clipos', 'LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY', 'y')]
504     l += [KconfigCheck('security_policy', 'my', 'SECURITY_WRITABLE_HOOKS', 'is not set')] # refers to SECURITY_SELINUX_DISABLE
505     l += [KconfigCheck('security_policy', 'my', 'SECURITY_SAFESETID', 'y')]
506     loadpin_is_set = KconfigCheck('security_policy', 'my', 'SECURITY_LOADPIN', 'y')
507     l += [loadpin_is_set] # needs userspace support
508     l += [AND(KconfigCheck('security_policy', 'my', 'SECURITY_LOADPIN_ENFORCE', 'y'),
509               loadpin_is_set)]
510
511     # 'cut_attack_surface', 'defconfig'
512     l += [OR(KconfigCheck('cut_attack_surface', 'defconfig', 'BPF_UNPRIV_DEFAULT_OFF', 'y'),
513              bpf_syscall_not_set)] # see unprivileged_bpf_disabled
514     l += [KconfigCheck('cut_attack_surface', 'defconfig', 'SECCOMP', 'y')]
515     l += [KconfigCheck('cut_attack_surface', 'defconfig', 'SECCOMP_FILTER', 'y')]
516     if arch in ('X86_64', 'ARM64', 'X86_32'):
517         l += [OR(KconfigCheck('cut_attack_surface', 'defconfig', 'STRICT_DEVMEM', 'y'),
518                  devmem_not_set)] # refers to LOCKDOWN
519
520     # 'cut_attack_surface', 'kspp'
521     l += [KconfigCheck('cut_attack_surface', 'kspp', 'SECURITY_DMESG_RESTRICT', 'y')]
522     l += [KconfigCheck('cut_attack_surface', 'kspp', 'ACPI_CUSTOM_METHOD', 'is not set')] # refers to LOCKDOWN
523     l += [KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_BRK', 'is not set')]
524     l += [KconfigCheck('cut_attack_surface', 'kspp', 'DEVKMEM', 'is not set')] # refers to LOCKDOWN
525     l += [KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set')]
526     l += [KconfigCheck('cut_attack_surface', 'kspp', 'BINFMT_MISC', 'is not set')]
527     l += [KconfigCheck('cut_attack_surface', 'kspp', 'INET_DIAG', 'is not set')]
528     l += [KconfigCheck('cut_attack_surface', 'kspp', 'KEXEC', 'is not set')] # refers to LOCKDOWN
529     l += [KconfigCheck('cut_attack_surface', 'kspp', 'PROC_KCORE', 'is not set')] # refers to LOCKDOWN
530     l += [KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_PTYS', 'is not set')]
531     l += [KconfigCheck('cut_attack_surface', 'kspp', 'HIBERNATION', 'is not set')] # refers to LOCKDOWN
532     l += [KconfigCheck('cut_attack_surface', 'kspp', 'IA32_EMULATION', 'is not set')]
533     l += [KconfigCheck('cut_attack_surface', 'kspp', 'X86_X32', 'is not set')]
534     l += [KconfigCheck('cut_attack_surface', 'kspp', 'MODIFY_LDT_SYSCALL', 'is not set')]
535     l += [KconfigCheck('cut_attack_surface', 'kspp', 'OABI_COMPAT', 'is not set')]
536     l += [KconfigCheck('cut_attack_surface', 'kspp', 'X86_MSR', 'is not set')] # refers to LOCKDOWN
537     l += [modules_not_set]
538     l += [devmem_not_set]
539     l += [OR(KconfigCheck('cut_attack_surface', 'kspp', 'IO_STRICT_DEVMEM', 'y'),
540              devmem_not_set)] # refers to LOCKDOWN
541     if arch == 'ARM':
542         l += [OR(KconfigCheck('cut_attack_surface', 'kspp', 'STRICT_DEVMEM', 'y'),
543                  devmem_not_set)] # refers to LOCKDOWN
544     if arch == 'X86_64':
545         l += [KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y')] # 'vsyscall=none'
546
547     # 'cut_attack_surface', 'grsec'
548     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ZSMALLOC_STAT', 'is not set')]
549     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PAGE_OWNER', 'is not set')]
550     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_KMEMLEAK', 'is not set')]
551     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BINFMT_AOUT', 'is not set')]
552     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KPROBE_EVENTS', 'is not set')]
553     l += [KconfigCheck('cut_attack_surface', 'grsec', 'UPROBE_EVENTS', 'is not set')]
554     l += [KconfigCheck('cut_attack_surface', 'grsec', 'GENERIC_TRACER', 'is not set')] # refers to LOCKDOWN
555     l += [KconfigCheck('cut_attack_surface', 'grsec', 'FUNCTION_TRACER', 'is not set')]
556     l += [KconfigCheck('cut_attack_surface', 'grsec', 'STACK_TRACER', 'is not set')]
557     l += [KconfigCheck('cut_attack_surface', 'grsec', 'HIST_TRIGGERS', 'is not set')]
558     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BLK_DEV_IO_TRACE', 'is not set')]
559     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROC_VMCORE', 'is not set')]
560     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROC_PAGE_MONITOR', 'is not set')]
561     l += [KconfigCheck('cut_attack_surface', 'grsec', 'USELIB', 'is not set')]
562     l += [KconfigCheck('cut_attack_surface', 'grsec', 'CHECKPOINT_RESTORE', 'is not set')]
563     l += [KconfigCheck('cut_attack_surface', 'grsec', 'USERFAULTFD', 'is not set')]
564     l += [KconfigCheck('cut_attack_surface', 'grsec', 'HWPOISON_INJECT', 'is not set')]
565     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MEM_SOFT_DIRTY', 'is not set')]
566     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEVPORT', 'is not set')] # refers to LOCKDOWN
567     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_FS', 'is not set')] # refers to LOCKDOWN
568     l += [KconfigCheck('cut_attack_surface', 'grsec', 'NOTIFIER_ERROR_INJECTION', 'is not set')]
569     l += [KconfigCheck('cut_attack_surface', 'grsec', 'FAIL_FUTEX', 'is not set')]
570     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PUNIT_ATOM_DEBUG', 'is not set')]
571     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ACPI_CONFIGFS', 'is not set')]
572     l += [KconfigCheck('cut_attack_surface', 'grsec', 'EDAC_DEBUG', 'is not set')]
573     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DRM_I915_DEBUG', 'is not set')]
574     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BCACHE_CLOSURES_DEBUG', 'is not set')]
575     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DVB_C8SECTPFE', 'is not set')]
576     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MTD_SLRAM', 'is not set')]
577     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MTD_PHRAM', 'is not set')]
578     l += [KconfigCheck('cut_attack_surface', 'grsec', 'IO_URING', 'is not set')]
579     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KCMP', 'is not set')]
580     l += [KconfigCheck('cut_attack_surface', 'grsec', 'RSEQ', 'is not set')]
581     l += [KconfigCheck('cut_attack_surface', 'grsec', 'LATENCYTOP', 'is not set')]
582     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KCOV', 'is not set')]
583     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROVIDE_OHCI1394_DMA_INIT', 'is not set')]
584     l += [KconfigCheck('cut_attack_surface', 'grsec', 'SUNRPC_DEBUG', 'is not set')]
585     l += [AND(KconfigCheck('cut_attack_surface', 'grsec', 'PTDUMP_DEBUGFS', 'is not set'),
586               KconfigCheck('cut_attack_surface', 'grsec', 'X86_PTDUMP', 'is not set'))]
587
588     # 'cut_attack_surface', 'maintainer'
589     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'DRM_LEGACY', 'is not set')] # recommended by Daniel Vetter in /issues/38
590     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'FB', 'is not set')] # recommended by Daniel Vetter in /issues/38
591     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'VT', 'is not set')] # recommended by Daniel Vetter in /issues/38
592     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'BLK_DEV_FD', 'is not set')] # recommended by Denis Efremov in /pull/54
593     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'BLK_DEV_FD_RAWCMD', 'is not set')] # recommended by Denis Efremov in /pull/62
594
595     # 'cut_attack_surface', 'grapheneos'
596     l += [KconfigCheck('cut_attack_surface', 'grapheneos', 'AIO', 'is not set')]
597
598     # 'cut_attack_surface', 'clipos'
599     l += [KconfigCheck('cut_attack_surface', 'clipos', 'STAGING', 'is not set')]
600     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KSM', 'is not set')] # to prevent FLUSH+RELOAD attack
601 #   l += [KconfigCheck('cut_attack_surface', 'clipos', 'IKCONFIG', 'is not set')] # no, IKCONFIG is needed for this check :)
602     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KALLSYMS', 'is not set')]
603     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_VSYSCALL_EMULATION', 'is not set')]
604     l += [KconfigCheck('cut_attack_surface', 'clipos', 'MAGIC_SYSRQ', 'is not set')]
605     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KEXEC_FILE', 'is not set')] # refers to LOCKDOWN (permissive)
606     l += [KconfigCheck('cut_attack_surface', 'clipos', 'USER_NS', 'is not set')] # user.max_user_namespaces=0
607     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_CPUID', 'is not set')]
608     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_IOPL_IOPERM', 'is not set')] # refers to LOCKDOWN
609     l += [KconfigCheck('cut_attack_surface', 'clipos', 'ACPI_TABLE_UPGRADE', 'is not set')] # refers to LOCKDOWN
610     l += [KconfigCheck('cut_attack_surface', 'clipos', 'EFI_CUSTOM_SSDT_OVERLAYS', 'is not set')]
611     l += [AND(KconfigCheck('cut_attack_surface', 'clipos', 'LDISC_AUTOLOAD', 'is not set'),
612               KconfigCheck('cut_attack_surface', 'clipos', 'LDISC_AUTOLOAD'))] # option presence check
613     if arch in ('X86_64', 'X86_32'):
614         l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_INTEL_TSX_MODE_OFF', 'y')] # tsx=off
615
616     # 'cut_attack_surface', 'lockdown'
617     l += [bpf_syscall_not_set] # refers to LOCKDOWN
618     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'EFI_TEST', 'is not set')] # refers to LOCKDOWN
619     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'MMIOTRACE_TEST', 'is not set')] # refers to LOCKDOWN
620     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'KPROBES', 'is not set')] # refers to LOCKDOWN
621
622     # 'cut_attack_surface', 'my'
623     l += [OR(KconfigCheck('cut_attack_surface', 'my', 'TRIM_UNUSED_KSYMS', 'y'),
624              modules_not_set)]
625     l += [KconfigCheck('cut_attack_surface', 'my', 'MMIOTRACE', 'is not set')] # refers to LOCKDOWN (permissive)
626     l += [KconfigCheck('cut_attack_surface', 'my', 'LIVEPATCH', 'is not set')]
627     l += [KconfigCheck('cut_attack_surface', 'my', 'IP_DCCP', 'is not set')]
628     l += [KconfigCheck('cut_attack_surface', 'my', 'IP_SCTP', 'is not set')]
629     l += [KconfigCheck('cut_attack_surface', 'my', 'FTRACE', 'is not set')] # refers to LOCKDOWN
630     l += [KconfigCheck('cut_attack_surface', 'my', 'VIDEO_VIVID', 'is not set')]
631     l += [KconfigCheck('cut_attack_surface', 'my', 'INPUT_EVBUG', 'is not set')] # Can be used as a keylogger
632     l += [KconfigCheck('cut_attack_surface', 'my', 'KGDB', 'is not set')]
633
634     # 'harden_userspace'
635     if arch in ('X86_64', 'ARM64', 'X86_32'):
636         l += [KconfigCheck('harden_userspace', 'defconfig', 'INTEGRITY', 'y')]
637     if arch == 'ARM':
638         l += [KconfigCheck('harden_userspace', 'my', 'INTEGRITY', 'y')]
639     if arch == 'ARM64':
640         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_PTR_AUTH', 'y')]
641         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_BTI', 'y')]
642     if arch in ('ARM', 'X86_32'):
643         l += [KconfigCheck('harden_userspace', 'defconfig', 'VMSPLIT_3G', 'y')]
644     if arch in ('X86_64', 'ARM64'):
645         l += [KconfigCheck('harden_userspace', 'clipos', 'ARCH_MMAP_RND_BITS', '32')]
646     if arch in ('X86_32', 'ARM'):
647         l += [KconfigCheck('harden_userspace', 'my', 'ARCH_MMAP_RND_BITS', '16')]
648
649
650 def add_cmdline_checks(l, arch):
651     # Calling the CmdlineCheck class constructor:
652     #     CmdlineCheck(reason, decision, name, expected)
653     #
654     # [!] Don't add CmdlineChecks in add_kconfig_checks() to avoid wrong results
655     #     when the tool doesn't check the cmdline.
656     #
657     # [!] Make sure that values of the options in CmdlineChecks need normalization.
658     #     For more info see normalize_cmdline_options().
659     #
660     # A common pattern for checking the 'param_x' cmdline parameter
661     # that __overrides__ the 'PARAM_X_DEFAULT' kconfig option:
662     #   l += [OR(CmdlineCheck(reason, decision, 'param_x', '1'),
663     #            AND(KconfigCheck(reason, decision, 'PARAM_X_DEFAULT_ON', 'y'),
664     #                CmdlineCheck(reason, decision, 'param_x, 'is not set')))]
665     #
666     # Here we don't check the kconfig options or minimal kernel version
667     # required for the cmdline parameters. That would make the checks
668     # very complex and not give a 100% guarantee anyway.
669
670     # 'self_protection', 'defconfig'
671     if arch == 'ARM64':
672         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', 'full'),
673                  AND(KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y'),
674                      CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set')))]
675     else:
676         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', '1'),
677                  CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set'))]
678
679     # 'self_protection', 'kspp'
680     l += [OR(CmdlineCheck('self_protection', 'kspp', 'init_on_alloc', '1'),
681              AND(KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y'),
682                  CmdlineCheck('self_protection', 'kspp', 'init_on_alloc', 'is not set')))]
683     l += [OR(CmdlineCheck('self_protection', 'kspp', 'init_on_free', '1'),
684              AND(KconfigCheck('self_protection', 'kspp', 'INIT_ON_FREE_DEFAULT_ON', 'y'),
685                  CmdlineCheck('self_protection', 'kspp', 'init_on_free', 'is not set')),
686              AND(CmdlineCheck('self_protection', 'kspp', 'page_poison', '1'),
687                  KconfigCheck('self_protection', 'kspp', 'PAGE_POISONING_ZERO', 'y'),
688                  CmdlineCheck('self_protection', 'kspp', 'slub_debug', 'P')))]
689     l += [OR(CmdlineCheck('self_protection', 'kspp', 'slab_nomerge'),
690              AND(KconfigCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set'),
691                  CmdlineCheck('self_protection', 'kspp', 'slab_merge', 'is not set')))] # option presence check
692     l += [OR(CmdlineCheck('self_protection', 'kspp', 'iommu.strict', '1'),
693              AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_DMA_STRICT', 'y'),
694                  CmdlineCheck('self_protection', 'kspp', 'iommu.strict', 'is not set')))]
695     l += [OR(CmdlineCheck('self_protection', 'kspp', 'iommu.passthrough', '0'),
696              AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set'),
697                  CmdlineCheck('self_protection', 'kspp', 'iommu.passthrough', 'is not set')))]
698     # The cmdline checks compatible with the kconfig recommendations of the KSPP project...
699     l += [OR(CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', '1'),
700              AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y'),
701                  CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', 'is not set')))]
702     l += [OR(CmdlineCheck('self_protection', 'kspp', 'slab_common.usercopy_fallback', '0'),
703              AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_FALLBACK', 'is not set'),
704                  CmdlineCheck('self_protection', 'kspp', 'slab_common.usercopy_fallback', 'is not set')))] # ... the end
705     if arch in ('X86_64', 'ARM64', 'X86_32'):
706         l += [OR(CmdlineCheck('self_protection', 'kspp', 'randomize_kstack_offset', '1'),
707                  AND(KconfigCheck('self_protection', 'kspp', 'RANDOMIZE_KSTACK_OFFSET_DEFAULT', 'y'),
708                      CmdlineCheck('self_protection', 'kspp', 'randomize_kstack_offset', 'is not set')))]
709     if arch in ('X86_64', 'X86_32'):
710         l += [CmdlineCheck('self_protection', 'kspp', 'pti', 'on')]
711
712     # 'self_protection', 'clipos'
713     l += [CmdlineCheck('self_protection', 'clipos', 'page_alloc.shuffle', '1')]
714
715     # 'cut_attack_surface', 'kspp'
716     if arch == 'X86_64':
717         l += [OR(CmdlineCheck('cut_attack_surface', 'kspp', 'vsyscall', 'none'),
718                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y'),
719                      CmdlineCheck('cut_attack_surface', 'kspp', 'vsyscall', 'is not set')))]
720
721     # 'cut_attack_surface', 'grsec'
722     # The cmdline checks compatible with the kconfig options disabled by grsecurity...
723     l += [OR(CmdlineCheck('cut_attack_surface', 'grsec', 'debugfs', 'off'),
724              KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_FS', 'is not set'))] # ... the end
725
726
727 def print_unknown_options(checklist, parsed_options):
728     known_options = []
729
730     for o1 in checklist:
731         if o1.type != 'complex':
732             known_options.append(o1.name)
733             continue
734         for o2 in o1.opts:
735             if o2.type != 'complex':
736                 if hasattr(o2, 'name'):
737                     known_options.append(o2.name)
738                 continue
739             for o3 in o2.opts:
740                 assert(o3.type != 'complex'), \
741                        'unexpected ComplexOptCheck inside {}'.format(o2.name)
742                 if hasattr(o3, 'name'):
743                     known_options.append(o3.name)
744
745     for option, value in parsed_options.items():
746         if option not in known_options:
747             print('[?] No check for option {} ({})'.format(option, value))
748
749
750 def print_checklist(mode, checklist, with_results):
751     if mode == 'json':
752         output = []
753         for o in checklist:
754             output.append(o.json_dump(with_results))
755         print(json.dumps(output))
756         return
757
758     # table header
759     sep_line_len = 91
760     if with_results:
761         sep_line_len += 30
762     print('=' * sep_line_len)
763     print('{:^40}|{:^7}|{:^12}|{:^10}|{:^18}'.format('option name', 'type', 'desired val', 'decision', 'reason'), end='')
764     if with_results:
765         print('| {}'.format('check result'), end='')
766     print()
767     print('=' * sep_line_len)
768
769     # table contents
770     for opt in checklist:
771         if with_results:
772             if mode == 'show_ok':
773                 if not opt.result.startswith('OK'):
774                     continue
775             if mode == 'show_fail':
776                 if not opt.result.startswith('FAIL'):
777                     continue
778         opt.table_print(mode, with_results)
779         print()
780         if mode == 'verbose':
781             print('-' * sep_line_len)
782     print()
783
784     # final score
785     if with_results:
786         fail_count = len(list(filter(lambda opt: opt.result.startswith('FAIL'), checklist)))
787         fail_suppressed = ''
788         ok_count = len(list(filter(lambda opt: opt.result.startswith('OK'), checklist)))
789         ok_suppressed = ''
790         if mode == 'show_ok':
791             fail_suppressed = ' (suppressed in output)'
792         if mode == 'show_fail':
793             ok_suppressed = ' (suppressed in output)'
794         if mode != 'json':
795             print('[+] Config check is finished: \'OK\' - {}{} / \'FAIL\' - {}{}'.format(ok_count, ok_suppressed, fail_count, fail_suppressed))
796
797
798 def populate_simple_opt_with_data(opt, data, data_type):
799     assert(opt.type != 'complex'), \
800            'unexpected ComplexOptCheck "{}"'.format(opt.name)
801     assert(opt.type in SIMPLE_OPTION_TYPES), \
802            'invalid opt type "{}"'.format(opt.type)
803     assert(data_type in SIMPLE_OPTION_TYPES), \
804            'invalid data type "{}"'.format(data_type)
805
806     if data_type != opt.type:
807         return
808
809     if data_type in ('kconfig', 'cmdline'):
810         opt.state = data.get(opt.name, None)
811     else:
812         assert(data_type == 'version'), \
813                'unexpected data type "{}"'.format(data_type)
814         opt.ver = data
815
816
817 def populate_opt_with_data(opt, data, data_type):
818     if opt.type == 'complex':
819         for o in opt.opts:
820             if o.type == 'complex':
821                 # Recursion for nested ComplexOptCheck objects
822                 populate_opt_with_data(o, data, data_type)
823             else:
824                 populate_simple_opt_with_data(o, data, data_type)
825     else:
826         assert(opt.type in ('kconfig', 'cmdline')), \
827                'bad type "{}" for a simple check'.format(opt.type)
828         populate_simple_opt_with_data(opt, data, data_type)
829
830
831 def populate_with_data(checklist, data, data_type):
832     for opt in checklist:
833         populate_opt_with_data(opt, data, data_type)
834
835
836 def perform_checks(checklist):
837     for opt in checklist:
838         opt.check()
839
840
841 def parse_kconfig_file(parsed_options, fname):
842     with open(fname, 'r') as f:
843         opt_is_on = re.compile("CONFIG_[a-zA-Z0-9_]*=[a-zA-Z0-9_\"]*")
844         opt_is_off = re.compile("# CONFIG_[a-zA-Z0-9_]* is not set")
845
846         for line in f.readlines():
847             line = line.strip()
848             option = None
849             value = None
850
851             if opt_is_on.match(line):
852                 option, value = line.split('=', 1)
853                 if value == 'is not set':
854                     sys.exit('[!] ERROR: bad enabled kconfig option "{}"'.format(line))
855             elif opt_is_off.match(line):
856                 option, value = line[2:].split(' ', 1)
857                 if value != 'is not set':
858                     sys.exit('[!] ERROR: bad disabled kconfig option "{}"'.format(line))
859
860             if option in parsed_options:
861                 sys.exit('[!] ERROR: kconfig option "{}" exists multiple times'.format(line))
862
863             if option:
864                 parsed_options[option] = value
865
866
867 def normalize_cmdline_options(option, value):
868     # Don't normalize the cmdline option values if
869     # the Linux kernel doesn't use kstrtobool() for them
870     if option == 'pti':
871         # See pti_check_boottime_disable() in linux/arch/x86/mm/pti.c
872         return value
873     if option == 'debugfs':
874         # See debugfs_kernel() in fs/debugfs/inode.c
875         return value
876
877     # Implement a limited part of the kstrtobool() logic
878     if value in ('1', 'on', 'On', 'ON', 'y', 'Y', 'yes', 'Yes', 'YES'):
879         return '1'
880     if value in ('0', 'off', 'Off', 'OFF', 'n', 'N', 'no', 'No', 'NO'):
881         return '0'
882
883     # Preserve unique values
884     return value
885
886
887 def parse_cmdline_file(parsed_options, fname):
888     with open(fname, 'r') as f:
889         line = f.readline()
890         opts = line.split()
891
892         line = f.readline()
893         if line:
894             sys.exit('[!] ERROR: more than one line in "{}"'.format(fname))
895
896         for opt in opts:
897             if '=' in opt:
898                 name, value = opt.split('=', 1)
899             else:
900                 name = opt
901                 value = '' # '' is not None
902             value = normalize_cmdline_options(name, value)
903             parsed_options[name] = value
904
905
906 def main():
907     # Report modes:
908     #   * verbose mode for
909     #     - reporting about unknown kernel options in the kconfig
910     #     - verbose printing of ComplexOptCheck items
911     #   * json mode for printing the results in JSON format
912     report_modes = ['verbose', 'json', 'show_ok', 'show_fail']
913     supported_archs = ['X86_64', 'X86_32', 'ARM64', 'ARM']
914     parser = ArgumentParser(prog='kconfig-hardened-check',
915                             description='A tool for checking the security hardening options of the Linux kernel')
916     parser.add_argument('--version', action='version', version='%(prog)s ' + __version__)
917     parser.add_argument('-p', '--print', choices=supported_archs,
918                         help='print security hardening preferences for the selected architecture')
919     parser.add_argument('-c', '--config',
920                         help='check the kernel kconfig file against these preferences')
921     parser.add_argument('-l', '--cmdline',
922                         help='check the kernel cmdline file against these preferences')
923     parser.add_argument('-m', '--mode', choices=report_modes,
924                         help='choose the report mode')
925     args = parser.parse_args()
926
927     mode = None
928     if args.mode:
929         mode = args.mode
930         if mode != 'json':
931             print('[+] Special report mode: {}'.format(mode))
932
933     config_checklist = []
934
935     if args.config:
936         if args.print:
937             sys.exit('[!] ERROR: --config and --print can\'t be used together')
938
939         if mode != 'json':
940             print('[+] Kconfig file to check: {}'.format(args.config))
941             if args.cmdline:
942                 print('[+] Kernel cmdline file to check: {}'.format(args.cmdline))
943
944         arch, msg = detect_arch(args.config, supported_archs)
945         if not arch:
946             sys.exit('[!] ERROR: {}'.format(msg))
947         if mode != 'json':
948             print('[+] Detected architecture: {}'.format(arch))
949
950         kernel_version, msg = detect_version(args.config)
951         if not kernel_version:
952             sys.exit('[!] ERROR: {}'.format(msg))
953         if mode != 'json':
954             print('[+] Detected kernel version: {}.{}'.format(kernel_version[0], kernel_version[1]))
955
956         # add relevant kconfig checks to the checklist
957         add_kconfig_checks(config_checklist, arch)
958
959         if args.cmdline:
960             # add relevant cmdline checks to the checklist
961             add_cmdline_checks(config_checklist, arch)
962
963         # populate the checklist with the parsed kconfig data
964         parsed_kconfig_options = OrderedDict()
965         parse_kconfig_file(parsed_kconfig_options, args.config)
966         populate_with_data(config_checklist, parsed_kconfig_options, 'kconfig')
967         populate_with_data(config_checklist, kernel_version, 'version')
968
969         if args.cmdline:
970             # populate the checklist with the parsed kconfig data
971             parsed_cmdline_options = OrderedDict()
972             parse_cmdline_file(parsed_cmdline_options, args.cmdline)
973             populate_with_data(config_checklist, parsed_cmdline_options, 'cmdline')
974
975         # now everything is ready for performing the checks
976         perform_checks(config_checklist)
977
978         # finally print the results
979         if mode == 'verbose':
980             print_unknown_options(config_checklist, parsed_kconfig_options)
981         print_checklist(mode, config_checklist, True)
982
983         sys.exit(0)
984     elif args.cmdline:
985         sys.exit('[!] ERROR: checking cmdline doesn\'t work without checking kconfig')
986
987     if args.print:
988         if mode in ('show_ok', 'show_fail'):
989             sys.exit('[!] ERROR: wrong mode "{}" for --print'.format(mode))
990         arch = args.print
991         add_kconfig_checks(config_checklist, arch)
992         add_cmdline_checks(config_checklist, arch)
993         if mode != 'json':
994             print('[+] Printing kernel security hardening preferences for {}...'.format(arch))
995         print_checklist(mode, config_checklist, False)
996         sys.exit(0)
997
998     parser.print_help()
999     sys.exit(0)