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