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