Add the comment about 'if arch' for the 'cut_attack_surface' checks
[kconfig-hardened-check.git] / kernel_hardening_checker / checks.py
1 #!/usr/bin/env python3
2
3 """
4 This tool is for checking the security hardening options of the Linux kernel.
5
6 Author: Alexander Popov <alex.popov@linux.com>
7
8 This module contains knowledge for checks.
9 """
10
11 # pylint: disable=missing-function-docstring,line-too-long
12 # pylint: disable=too-many-branches,too-many-statements,too-many-locals
13
14 from typing import List
15 from .engine import StrOrNone, ChecklistObjType, KconfigCheck, CmdlineCheck, SysctlCheck, VersionCheck, OR, AND
16
17
18 def add_kconfig_checks(l: List[ChecklistObjType], arch: str) -> None:
19     assert(arch), 'empty arch'
20
21     # Calling the KconfigCheck class constructor:
22     #     KconfigCheck(reason, decision, name, expected)
23     #
24     # [!] Don't add CmdlineChecks in add_kconfig_checks() to avoid wrong results
25     #     when the tool doesn't check the cmdline.
26
27     efi_not_set = KconfigCheck('-', '-', 'EFI', 'is not set')
28     cc_is_gcc = KconfigCheck('-', '-', 'CC_IS_GCC', 'y') # exists since v4.18
29     cc_is_clang = KconfigCheck('-', '-', 'CC_IS_CLANG', 'y') # exists since v4.18
30     if arch in ('X86_64', 'X86_32'):
31         cpu_sup_amd_not_set = KconfigCheck('-', '-', 'CPU_SUP_AMD', 'is not set')
32         cpu_sup_intel_not_set = KconfigCheck('-', '-', 'CPU_SUP_INTEL', 'is not set')
33
34     modules_not_set = KconfigCheck('cut_attack_surface', 'kspp', 'MODULES', 'is not set') # radical, but may be useful in some cases
35     devmem_not_set = KconfigCheck('cut_attack_surface', 'kspp', 'DEVMEM', 'is not set') # refers to LOCKDOWN
36     bpf_syscall_not_set = KconfigCheck('cut_attack_surface', 'lockdown', 'BPF_SYSCALL', 'is not set') # refers to LOCKDOWN
37
38     # 'self_protection', 'defconfig'
39     l += [KconfigCheck('self_protection', 'defconfig', 'BUG', 'y')]
40     l += [KconfigCheck('self_protection', 'defconfig', 'SLUB_DEBUG', 'y')]
41     l += [KconfigCheck('self_protection', 'defconfig', 'THREAD_INFO_IN_TASK', 'y')]
42     iommu_support_is_set = KconfigCheck('self_protection', 'defconfig', 'IOMMU_SUPPORT', 'y')
43     l += [iommu_support_is_set] # is needed for mitigating DMA attacks
44     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR', 'y'),
45              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR', 'y'),
46              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_REGULAR', 'y'),
47              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_AUTO', 'y'),
48              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_STRONG', 'y'))]
49     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR_STRONG', 'y'),
50              KconfigCheck('self_protection', 'defconfig', 'CC_STACKPROTECTOR_STRONG', 'y'))]
51     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STRICT_KERNEL_RWX', 'y'),
52              KconfigCheck('self_protection', 'defconfig', 'DEBUG_RODATA', 'y'))] # before v4.11
53     l += [OR(KconfigCheck('self_protection', 'defconfig', 'STRICT_MODULE_RWX', 'y'),
54              KconfigCheck('self_protection', 'defconfig', 'DEBUG_SET_MODULE_RONX', 'y'),
55              modules_not_set)] # DEBUG_SET_MODULE_RONX was before v4.11
56     l += [OR(KconfigCheck('self_protection', 'defconfig', 'REFCOUNT_FULL', 'y'),
57              VersionCheck((5, 4, 208)))]
58              # REFCOUNT_FULL is enabled by default since v5.5,
59              # and this is backported to v5.4.208
60     l += [OR(KconfigCheck('self_protection', 'defconfig', 'INIT_STACK_ALL_ZERO', 'y'),
61              KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_STRUCTLEAK_BYREF_ALL', 'y'))]
62     if arch in ('X86_64', 'ARM64', 'X86_32'):
63         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y')]
64     vmap_stack_is_set = KconfigCheck('self_protection', 'defconfig', 'VMAP_STACK', 'y')
65     if arch in ('X86_64', 'ARM64', 'ARM'):
66         l += [vmap_stack_is_set]
67     if arch in ('X86_64', 'X86_32'):
68         l += [KconfigCheck('self_protection', 'defconfig', 'DEBUG_WX', 'y')]
69         l += [KconfigCheck('self_protection', 'defconfig', 'WERROR', 'y')]
70         l += [KconfigCheck('self_protection', 'defconfig', 'X86_MCE', 'y')]
71         l += [KconfigCheck('self_protection', 'defconfig', 'SYN_COOKIES', 'y')] # another reason?
72         microcode_is_set = KconfigCheck('self_protection', 'defconfig', 'MICROCODE', 'y')
73         l += [microcode_is_set] # is needed for mitigating CPU bugs
74         l += [OR(KconfigCheck('self_protection', 'defconfig', 'MICROCODE_INTEL', 'y'),
75                  cpu_sup_intel_not_set,
76                  AND(microcode_is_set,
77                      VersionCheck((6, 6, 0))))] # MICROCODE_INTEL was included in MICROCODE since v6.6
78         l += [OR(KconfigCheck('self_protection', 'defconfig', 'MICROCODE_AMD', 'y'),
79                  cpu_sup_amd_not_set,
80                  AND(microcode_is_set,
81                      VersionCheck((6, 6, 0))))] # MICROCODE_AMD was included in MICROCODE since v6.6
82         l += [OR(KconfigCheck('self_protection', 'defconfig', 'X86_SMAP', 'y'),
83                  VersionCheck((5, 19, 0)))] # X86_SMAP is enabled by default since v5.19
84         l += [OR(KconfigCheck('self_protection', 'defconfig', 'X86_UMIP', 'y'),
85                  KconfigCheck('self_protection', 'defconfig', 'X86_INTEL_UMIP', 'y'))]
86         l += [OR(KconfigCheck('self_protection', 'defconfig', 'X86_MCE_INTEL', 'y'),
87                  cpu_sup_intel_not_set)]
88         l += [OR(KconfigCheck('self_protection', 'defconfig', 'X86_MCE_AMD', 'y'),
89                  cpu_sup_amd_not_set)]
90         l += [OR(KconfigCheck('self_protection', 'defconfig', 'CPU_MITIGATIONS', 'y'),
91                  KconfigCheck('self_protection', 'defconfig', 'SPECULATION_MITIGATIONS', 'y'))]
92         l += [OR(KconfigCheck('self_protection', 'defconfig', 'MITIGATION_RETPOLINE', 'y'),
93                  KconfigCheck('self_protection', 'defconfig', 'RETPOLINE', 'y'))]
94         l += [OR(KconfigCheck('self_protection', 'defconfig', 'MITIGATION_RFDS', 'y'),
95                  cpu_sup_intel_not_set)]
96         l += [OR(KconfigCheck('self_protection', 'defconfig', 'MITIGATION_SPECTRE_BHI', 'y'),
97                  cpu_sup_intel_not_set)]
98     if arch in ('ARM64', 'ARM'):
99         l += [KconfigCheck('self_protection', 'defconfig', 'HW_RANDOM_TPM', 'y')]
100         l += [KconfigCheck('self_protection', 'defconfig', 'IOMMU_DEFAULT_DMA_STRICT', 'y')]
101         l += [KconfigCheck('self_protection', 'defconfig', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set')] # true if IOMMU_DEFAULT_DMA_STRICT is set
102         l += [KconfigCheck('self_protection', 'defconfig', 'STACKPROTECTOR_PER_TASK', 'y')]
103     if arch == 'X86_64':
104         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_MEMORY', 'y')]
105         l += [KconfigCheck('self_protection', 'defconfig', 'X86_KERNEL_IBT', 'y')]
106         l += [OR(KconfigCheck('self_protection', 'defconfig', 'MITIGATION_PAGE_TABLE_ISOLATION', 'y'),
107                  KconfigCheck('self_protection', 'defconfig', 'PAGE_TABLE_ISOLATION', 'y'))]
108         l += [OR(KconfigCheck('self_protection', 'defconfig', 'MITIGATION_SRSO', 'y'),
109                  KconfigCheck('self_protection', 'defconfig', 'CPU_SRSO', 'y'),
110                  cpu_sup_amd_not_set)]
111         l += [AND(KconfigCheck('self_protection', 'defconfig', 'INTEL_IOMMU', 'y'),
112                   iommu_support_is_set)]
113         l += [AND(KconfigCheck('self_protection', 'defconfig', 'AMD_IOMMU', 'y'),
114                   iommu_support_is_set)]
115     if arch == 'ARM64':
116         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_PAN', 'y')]
117         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_EPAN', 'y')]
118         l += [KconfigCheck('self_protection', 'defconfig', 'UNMAP_KERNEL_AT_EL0', 'y')]
119         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_E0PD', 'y')]
120         l += [KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y')]
121         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_PTR_AUTH_KERNEL', 'y')]
122         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_BTI_KERNEL', 'y')]
123         l += [KconfigCheck('self_protection', 'defconfig', 'MITIGATE_SPECTRE_BRANCH_HISTORY', 'y')]
124         l += [KconfigCheck('self_protection', 'defconfig', 'ARM64_MTE', 'y')]
125         l += [KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_MODULE_REGION_FULL', 'y')]
126         l += [OR(KconfigCheck('self_protection', 'defconfig', 'HARDEN_EL2_VECTORS', 'y'),
127                  AND(KconfigCheck('self_protection', 'defconfig', 'RANDOMIZE_BASE', 'y'),
128                      VersionCheck((5, 9, 0))))] # HARDEN_EL2_VECTORS was included in RANDOMIZE_BASE in v5.9
129         l += [OR(KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y'),
130                  VersionCheck((5, 10, 0)))] # HARDEN_BRANCH_PREDICTOR is enabled by default since v5.10
131     if arch == 'ARM':
132         l += [KconfigCheck('self_protection', 'defconfig', 'CPU_SW_DOMAIN_PAN', 'y')]
133         l += [KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_PREDICTOR', 'y')]
134         l += [KconfigCheck('self_protection', 'defconfig', 'HARDEN_BRANCH_HISTORY', 'y')]
135         l += [KconfigCheck('self_protection', 'defconfig', 'DEBUG_ALIGN_RODATA', 'y')]
136
137     # 'self_protection', 'kspp'
138     l += [KconfigCheck('self_protection', 'kspp', 'PAGE_TABLE_CHECK', 'y')]
139     l += [KconfigCheck('self_protection', 'kspp', 'PAGE_TABLE_CHECK_ENFORCED', 'y')]
140     l += [KconfigCheck('self_protection', 'kspp', 'BUG_ON_DATA_CORRUPTION', 'y')]
141     l += [KconfigCheck('self_protection', 'kspp', 'SLAB_FREELIST_HARDENED', 'y')]
142     l += [KconfigCheck('self_protection', 'kspp', 'SLAB_FREELIST_RANDOM', 'y')]
143     l += [KconfigCheck('self_protection', 'kspp', 'SHUFFLE_PAGE_ALLOCATOR', 'y')]
144     l += [KconfigCheck('self_protection', 'kspp', 'FORTIFY_SOURCE', 'y')]
145     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_LIST', 'y')]
146     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_VIRTUAL', 'y')]
147     l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_SG', 'y')]
148     l += [KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y')]
149     l += [KconfigCheck('self_protection', 'kspp', 'STATIC_USERMODEHELPER', 'y')] # needs userspace support
150     l += [KconfigCheck('self_protection', 'kspp', 'SCHED_CORE', 'y')]
151     l += [KconfigCheck('self_protection', 'kspp', 'SECURITY_LOCKDOWN_LSM', 'y')]
152     l += [KconfigCheck('self_protection', 'kspp', 'SECURITY_LOCKDOWN_LSM_EARLY', 'y')]
153     l += [KconfigCheck('self_protection', 'kspp', 'LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY', 'y')]
154     cfi_clang_is_set = KconfigCheck('self_protection', 'kspp', 'CFI_CLANG', 'y')
155     cfi_clang_permissive_not_set = KconfigCheck('self_protection', 'kspp', 'CFI_PERMISSIVE', 'is not set')
156     l += [OR(KconfigCheck('self_protection', 'kspp', 'DEBUG_CREDENTIALS', 'y'),
157              VersionCheck((6, 6, 8)))] # DEBUG_CREDENTIALS was dropped in v6.6.8
158     l += [OR(KconfigCheck('self_protection', 'kspp', 'DEBUG_NOTIFIERS', 'y'),
159              AND(cfi_clang_is_set,
160                  cfi_clang_permissive_not_set,
161                  cc_is_clang))]
162     l += [OR(KconfigCheck('self_protection', 'kspp', 'SCHED_STACK_END_CHECK', 'y'),
163              vmap_stack_is_set)]
164     kfence_is_set = KconfigCheck('self_protection', 'kspp', 'KFENCE', 'y')
165     l += [kfence_is_set]
166     l += [AND(KconfigCheck('self_protection', 'a13xp0p0v', 'KFENCE_SAMPLE_INTERVAL', 'is not off'),
167               kfence_is_set)]
168     randstruct_is_set = OR(KconfigCheck('self_protection', 'kspp', 'RANDSTRUCT_FULL', 'y'),
169                            KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_RANDSTRUCT', 'y'))
170     l += [randstruct_is_set]
171     l += [AND(KconfigCheck('self_protection', 'kspp', 'RANDSTRUCT_PERFORMANCE', 'is not set'),
172               KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_RANDSTRUCT_PERFORMANCE', 'is not set'),
173               randstruct_is_set)]
174     hardened_usercopy_is_set = KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y')
175     l += [hardened_usercopy_is_set]
176     l += [AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_FALLBACK', 'is not set'),
177               hardened_usercopy_is_set)] # usercopy whitelist violations should be prohibited
178     l += [AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_PAGESPAN', 'is not set'),
179               hardened_usercopy_is_set)] # this debugging for HARDENED_USERCOPY is not needed for security
180     l += [AND(KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_LATENT_ENTROPY', 'y'),
181               cc_is_gcc)]
182     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG', 'y'),
183              modules_not_set)]
184     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_ALL', 'y'),
185              modules_not_set)]
186     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_SHA512', 'y'),
187              KconfigCheck('self_protection', 'a13xp0p0v', 'MODULE_SIG_SHA3_512', 'y'),
188              modules_not_set)]
189     l += [OR(KconfigCheck('self_protection', 'kspp', 'MODULE_SIG_FORCE', 'y'),
190              modules_not_set)] # refers to LOCKDOWN
191     l += [OR(KconfigCheck('self_protection', 'kspp', 'INIT_ON_FREE_DEFAULT_ON', 'y'),
192              KconfigCheck('self_protection', 'kspp', 'PAGE_POISONING_ZERO', 'y'))]
193              # CONFIG_INIT_ON_FREE_DEFAULT_ON was added in v5.3.
194              # CONFIG_PAGE_POISONING_ZERO was removed in v5.11.
195              # Starting from v5.11 CONFIG_PAGE_POISONING unconditionally checks
196              # the 0xAA poison pattern on allocation.
197              # That brings higher performance penalty.
198     l += [OR(KconfigCheck('self_protection', 'kspp', 'EFI_DISABLE_PCI_DMA', 'y'),
199              efi_not_set)]
200     l += [OR(KconfigCheck('self_protection', 'kspp', 'RESET_ATTACK_MITIGATION', 'y'),
201              efi_not_set)] # needs userspace support (systemd)
202     ubsan_bounds_is_set = KconfigCheck('self_protection', 'kspp', 'UBSAN_BOUNDS', 'y')
203     l += [ubsan_bounds_is_set]
204     l += [OR(KconfigCheck('self_protection', 'kspp', 'UBSAN_LOCAL_BOUNDS', 'y'),
205              AND(ubsan_bounds_is_set,
206                  cc_is_gcc))]
207     l += [AND(KconfigCheck('self_protection', 'kspp', 'UBSAN_TRAP', 'y'),
208               ubsan_bounds_is_set,
209               KconfigCheck('self_protection', 'kspp', 'UBSAN_SHIFT', 'is not set'),
210               KconfigCheck('self_protection', 'kspp', 'UBSAN_DIV_ZERO', 'is not set'),
211               KconfigCheck('self_protection', 'kspp', 'UBSAN_UNREACHABLE', 'is not set'),
212               KconfigCheck('self_protection', 'kspp', 'UBSAN_BOOL', 'is not set'),
213               KconfigCheck('self_protection', 'kspp', 'UBSAN_ENUM', 'is not set'),
214               KconfigCheck('self_protection', 'kspp', 'UBSAN_ALIGNMENT', 'is not set'))] # only array index bounds checking with traps
215     l += [AND(KconfigCheck('self_protection', 'kspp', 'UBSAN_SANITIZE_ALL', 'y'),
216               ubsan_bounds_is_set)]
217     if arch in ('X86_64', 'ARM64', 'X86_32'):
218         stackleak_is_set = KconfigCheck('self_protection', 'kspp', 'GCC_PLUGIN_STACKLEAK', 'y')
219         l += [AND(stackleak_is_set,
220                   cc_is_gcc)]
221         l += [AND(KconfigCheck('self_protection', 'kspp', 'STACKLEAK_METRICS', 'is not set'),
222                   stackleak_is_set,
223                   cc_is_gcc)]
224         l += [AND(KconfigCheck('self_protection', 'kspp', 'STACKLEAK_RUNTIME_DISABLE', 'is not set'),
225                   stackleak_is_set,
226                   cc_is_gcc)]
227         l += [KconfigCheck('self_protection', 'kspp', 'RANDOMIZE_KSTACK_OFFSET_DEFAULT', 'y')]
228     if arch in ('X86_64', 'ARM64'):
229         l += [AND(cfi_clang_is_set,
230                   cc_is_clang)]
231         l += [AND(cfi_clang_permissive_not_set,
232                   cfi_clang_is_set,
233                   cc_is_clang)]
234     if arch in ('X86_64', 'X86_32'):
235         l += [KconfigCheck('self_protection', 'kspp', 'HW_RANDOM_TPM', 'y')]
236         l += [KconfigCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '65536')]
237         l += [KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_DMA_STRICT', 'y')]
238         l += [KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set')] # true if IOMMU_DEFAULT_DMA_STRICT is set
239         l += [AND(KconfigCheck('self_protection', 'kspp', 'INTEL_IOMMU_DEFAULT_ON', 'y'),
240                   iommu_support_is_set)]
241     if arch in ('ARM64', 'ARM'):
242         l += [KconfigCheck('self_protection', 'kspp', 'DEBUG_WX', 'y')]
243         l += [KconfigCheck('self_protection', 'kspp', 'WERROR', 'y')]
244         l += [KconfigCheck('self_protection', 'kspp', 'DEFAULT_MMAP_MIN_ADDR', '32768')]
245         l += [KconfigCheck('self_protection', 'kspp', 'SYN_COOKIES', 'y')] # another reason?
246     if arch == 'X86_64':
247         l += [OR(KconfigCheck('self_protection', 'kspp', 'MITIGATION_SLS', 'y'),
248                  KconfigCheck('self_protection', 'kspp', 'SLS', 'y'))] # vs CVE-2021-26341 in Straight-Line-Speculation
249         l += [AND(KconfigCheck('self_protection', 'kspp', 'INTEL_IOMMU_SVM', 'y'),
250                   iommu_support_is_set)]
251         l += [AND(KconfigCheck('self_protection', 'kspp', 'AMD_IOMMU_V2', 'y'),
252                   iommu_support_is_set)]
253     if arch == 'ARM64':
254         l += [KconfigCheck('self_protection', 'kspp', 'ARM64_SW_TTBR0_PAN', 'y')]
255         l += [KconfigCheck('self_protection', 'kspp', 'SHADOW_CALL_STACK', 'y')]
256         l += [KconfigCheck('self_protection', 'kspp', 'UNWIND_PATCH_PAC_INTO_SCS', 'y')]
257         l += [KconfigCheck('self_protection', 'kspp', 'KASAN_HW_TAGS', 'y')] # see also: kasan=on, kasan.stacktrace=off, kasan.fault=panic
258     if arch == 'X86_32':
259         l += [KconfigCheck('self_protection', 'kspp', 'HIGHMEM64G', 'y')]
260         l += [KconfigCheck('self_protection', 'kspp', 'X86_PAE', 'y')]
261         l += [OR(KconfigCheck('self_protection', 'kspp', 'MITIGATION_PAGE_TABLE_ISOLATION', 'y'),
262                  KconfigCheck('self_protection', 'kspp', 'PAGE_TABLE_ISOLATION', 'y'))]
263         l += [AND(KconfigCheck('self_protection', 'kspp', 'INTEL_IOMMU', 'y'),
264                   iommu_support_is_set)]
265
266     # 'self_protection', 'clipos'
267     l += [KconfigCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set')]
268
269     # 'self_protection', 'a13xp0p0v'
270     l += [KconfigCheck('self_protection', 'a13xp0p0v', 'LIST_HARDENED', 'y')]
271     l += [KconfigCheck('self_protection', 'a13xp0p0v', 'RANDOM_KMALLOC_CACHES', 'y')]
272
273     # 'security_policy'
274     if arch in ('X86_64', 'ARM64', 'X86_32'):
275         l += [KconfigCheck('security_policy', 'defconfig', 'SECURITY', 'y')]
276     if arch == 'ARM':
277         l += [KconfigCheck('security_policy', 'kspp', 'SECURITY', 'y')]
278     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_YAMA', 'y')]
279     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_LANDLOCK', 'y')]
280     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_SELINUX_DISABLE', 'is not set')]
281     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_SELINUX_BOOTPARAM', 'is not set')]
282     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_SELINUX_DEVELOP', 'is not set')]
283     l += [KconfigCheck('security_policy', 'kspp', 'SECURITY_WRITABLE_HOOKS', 'is not set')] # refers to SECURITY_SELINUX_DISABLE
284     l += [KconfigCheck('security_policy', 'a13xp0p0v', 'SECURITY_SELINUX_DEBUG', 'is not set')]
285     l += [OR(KconfigCheck('security_policy', 'a13xp0p0v', 'SECURITY_SELINUX', 'y'),
286              KconfigCheck('security_policy', 'a13xp0p0v', 'SECURITY_APPARMOR', 'y'),
287              KconfigCheck('security_policy', 'a13xp0p0v', 'SECURITY_SMACK', 'y'),
288              KconfigCheck('security_policy', 'a13xp0p0v', 'SECURITY_TOMOYO', 'y'))] # one of major LSMs implementing MAC
289
290     # N.B. We don't use 'if arch' for the 'cut_attack_surface' checks that require 'is not set'.
291     # It makes the maintainance easier. These kernel options should be disabled anyway.
292     # 'cut_attack_surface', 'defconfig'
293     l += [KconfigCheck('cut_attack_surface', 'defconfig', 'SECCOMP', 'y')]
294     l += [KconfigCheck('cut_attack_surface', 'defconfig', 'SECCOMP_FILTER', 'y')]
295     l += [OR(KconfigCheck('cut_attack_surface', 'defconfig', 'BPF_UNPRIV_DEFAULT_OFF', 'y'),
296              bpf_syscall_not_set)] # see unprivileged_bpf_disabled
297     if arch in ('X86_64', 'ARM64', 'X86_32'):
298         l += [OR(KconfigCheck('cut_attack_surface', 'defconfig', 'STRICT_DEVMEM', 'y'),
299                  devmem_not_set)] # refers to LOCKDOWN
300     if arch in ('X86_64', 'X86_32'):
301         l += [OR(KconfigCheck('cut_attack_surface', 'defconfig', 'X86_INTEL_TSX_MODE_OFF', 'y'),
302                  cpu_sup_intel_not_set)] # tsx=off
303
304     # 'cut_attack_surface', 'kspp'
305     l += [KconfigCheck('cut_attack_surface', 'kspp', 'SECURITY_DMESG_RESTRICT', 'y')]
306     l += [KconfigCheck('cut_attack_surface', 'kspp', 'ACPI_CUSTOM_METHOD', 'is not set')] # refers to LOCKDOWN
307     l += [KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_BRK', 'is not set')]
308     l += [KconfigCheck('cut_attack_surface', 'kspp', 'DEVKMEM', 'is not set')] # refers to LOCKDOWN
309     l += [KconfigCheck('cut_attack_surface', 'kspp', 'BINFMT_MISC', 'is not set')]
310     l += [KconfigCheck('cut_attack_surface', 'kspp', 'INET_DIAG', 'is not set')]
311     l += [KconfigCheck('cut_attack_surface', 'kspp', 'KEXEC', 'is not set')] # refers to LOCKDOWN
312     l += [KconfigCheck('cut_attack_surface', 'kspp', 'PROC_KCORE', 'is not set')] # refers to LOCKDOWN
313     l += [KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_PTYS', 'is not set')]
314     l += [KconfigCheck('cut_attack_surface', 'kspp', 'HIBERNATION', 'is not set')] # refers to LOCKDOWN
315     l += [KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT', 'is not set')]
316     l += [KconfigCheck('cut_attack_surface', 'kspp', 'IA32_EMULATION', 'is not set')]
317     l += [KconfigCheck('cut_attack_surface', 'kspp', 'X86_X32', 'is not set')]
318     l += [KconfigCheck('cut_attack_surface', 'kspp', 'X86_X32_ABI', 'is not set')]
319     l += [KconfigCheck('cut_attack_surface', 'kspp', 'MODIFY_LDT_SYSCALL', 'is not set')]
320     l += [KconfigCheck('cut_attack_surface', 'kspp', 'OABI_COMPAT', 'is not set')]
321     l += [KconfigCheck('cut_attack_surface', 'kspp', 'X86_MSR', 'is not set')] # refers to LOCKDOWN
322     l += [KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_TIOCSTI', 'is not set')]
323     l += [modules_not_set]
324     l += [devmem_not_set]
325     l += [OR(KconfigCheck('cut_attack_surface', 'kspp', 'IO_STRICT_DEVMEM', 'y'),
326              devmem_not_set)] # refers to LOCKDOWN
327     l += [AND(KconfigCheck('cut_attack_surface', 'kspp', 'LDISC_AUTOLOAD', 'is not set'),
328               KconfigCheck('cut_attack_surface', 'kspp', 'LDISC_AUTOLOAD', 'is present'))]
329     if arch in ('X86_64', 'X86_32'):
330         l += [KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set')]
331               # CONFIG_COMPAT_VDSO disabled ASLR of vDSO only on X86_64 and X86_32;
332               # on ARM64 this option has different meaning
333     if arch == 'X86_64':
334         l += [OR(KconfigCheck('cut_attack_surface', 'kspp', 'X86_VSYSCALL_EMULATION', 'is not set'),
335                  KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y'))]
336                  # disabling X86_VSYSCALL_EMULATION turns vsyscall off completely,
337                  # and LEGACY_VSYSCALL_NONE can be changed at boot time via the cmdline parameter
338     if arch == 'ARM':
339         l += [OR(KconfigCheck('cut_attack_surface', 'kspp', 'STRICT_DEVMEM', 'y'),
340                  devmem_not_set)] # refers to LOCKDOWN
341
342     # 'cut_attack_surface', 'grsec'
343     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ZSMALLOC_STAT', 'is not set')]
344     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PAGE_OWNER', 'is not set')]
345     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_KMEMLEAK', 'is not set')]
346     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BINFMT_AOUT', 'is not set')]
347     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KPROBE_EVENTS', 'is not set')]
348     l += [KconfigCheck('cut_attack_surface', 'grsec', 'UPROBE_EVENTS', 'is not set')]
349     l += [KconfigCheck('cut_attack_surface', 'grsec', 'GENERIC_TRACER', 'is not set')] # refers to LOCKDOWN
350     l += [KconfigCheck('cut_attack_surface', 'grsec', 'FUNCTION_TRACER', 'is not set')]
351     l += [KconfigCheck('cut_attack_surface', 'grsec', 'STACK_TRACER', 'is not set')]
352     l += [KconfigCheck('cut_attack_surface', 'grsec', 'HIST_TRIGGERS', 'is not set')]
353     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BLK_DEV_IO_TRACE', 'is not set')]
354     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROC_VMCORE', 'is not set')]
355     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROC_PAGE_MONITOR', 'is not set')]
356     l += [KconfigCheck('cut_attack_surface', 'grsec', 'USELIB', 'is not set')]
357     l += [KconfigCheck('cut_attack_surface', 'grsec', 'CHECKPOINT_RESTORE', 'is not set')]
358     l += [KconfigCheck('cut_attack_surface', 'grsec', 'USERFAULTFD', 'is not set')]
359     l += [KconfigCheck('cut_attack_surface', 'grsec', 'HWPOISON_INJECT', 'is not set')]
360     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MEM_SOFT_DIRTY', 'is not set')]
361     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEVPORT', 'is not set')] # refers to LOCKDOWN
362     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_FS', 'is not set')] # refers to LOCKDOWN
363     l += [KconfigCheck('cut_attack_surface', 'grsec', 'NOTIFIER_ERROR_INJECTION', 'is not set')]
364     l += [KconfigCheck('cut_attack_surface', 'grsec', 'FAIL_FUTEX', 'is not set')]
365     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PUNIT_ATOM_DEBUG', 'is not set')]
366     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ACPI_CONFIGFS', 'is not set')]
367     l += [KconfigCheck('cut_attack_surface', 'grsec', 'EDAC_DEBUG', 'is not set')]
368     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DRM_I915_DEBUG', 'is not set')]
369     l += [KconfigCheck('cut_attack_surface', 'grsec', 'BCACHE_CLOSURES_DEBUG', 'is not set')]
370     l += [KconfigCheck('cut_attack_surface', 'grsec', 'DVB_C8SECTPFE', 'is not set')]
371     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MTD_SLRAM', 'is not set')]
372     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MTD_PHRAM', 'is not set')]
373     l += [KconfigCheck('cut_attack_surface', 'grsec', 'IO_URING', 'is not set')]
374     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KCMP', 'is not set')]
375     l += [KconfigCheck('cut_attack_surface', 'grsec', 'RSEQ', 'is not set')]
376     l += [KconfigCheck('cut_attack_surface', 'grsec', 'LATENCYTOP', 'is not set')]
377     l += [KconfigCheck('cut_attack_surface', 'grsec', 'KCOV', 'is not set')]
378     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROVIDE_OHCI1394_DMA_INIT', 'is not set')]
379     l += [KconfigCheck('cut_attack_surface', 'grsec', 'SUNRPC_DEBUG', 'is not set')]
380     l += [AND(KconfigCheck('cut_attack_surface', 'grsec', 'PTDUMP_DEBUGFS', 'is not set'),
381               KconfigCheck('cut_attack_surface', 'grsec', 'X86_PTDUMP', 'is not set'))]
382
383     # 'cut_attack_surface', 'maintainer'
384     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'DRM_LEGACY', 'is not set')] # recommended by Daniel Vetter in /issues/38
385     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'FB', 'is not set')] # recommended by Daniel Vetter in /issues/38
386     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'VT', 'is not set')] # recommended by Daniel Vetter in /issues/38
387     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'BLK_DEV_FD', 'is not set')] # recommended by Denis Efremov in /pull/54
388     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'BLK_DEV_FD_RAWCMD', 'is not set')] # recommended by Denis Efremov in /pull/62
389     l += [KconfigCheck('cut_attack_surface', 'maintainer', 'NOUVEAU_LEGACY_CTX_SUPPORT', 'is not set')]
390                                             # recommended by Dave Airlie in kernel commit b30a43ac7132cdda
391
392     # 'cut_attack_surface', 'clipos'
393     l += [KconfigCheck('cut_attack_surface', 'clipos', 'STAGING', 'is not set')]
394     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KSM', 'is not set')] # to prevent FLUSH+RELOAD attack
395     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KALLSYMS', 'is not set')]
396     l += [KconfigCheck('cut_attack_surface', 'clipos', 'MAGIC_SYSRQ', 'is not set')]
397     l += [KconfigCheck('cut_attack_surface', 'clipos', 'KEXEC_FILE', 'is not set')] # refers to LOCKDOWN (permissive)
398     l += [KconfigCheck('cut_attack_surface', 'clipos', 'USER_NS', 'is not set')] # user.max_user_namespaces=0
399     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_CPUID', 'is not set')]
400     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_IOPL_IOPERM', 'is not set')] # refers to LOCKDOWN
401     l += [KconfigCheck('cut_attack_surface', 'clipos', 'ACPI_TABLE_UPGRADE', 'is not set')] # refers to LOCKDOWN
402     l += [KconfigCheck('cut_attack_surface', 'clipos', 'EFI_CUSTOM_SSDT_OVERLAYS', 'is not set')]
403     l += [KconfigCheck('cut_attack_surface', 'clipos', 'AIO', 'is not set')]
404 #   l += [KconfigCheck('cut_attack_surface', 'clipos', 'IKCONFIG', 'is not set')] # no, IKCONFIG is needed for this check :)
405
406     # 'cut_attack_surface', 'lockdown'
407     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'EFI_TEST', 'is not set')] # refers to LOCKDOWN
408     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'MMIOTRACE_TEST', 'is not set')] # refers to LOCKDOWN
409     l += [KconfigCheck('cut_attack_surface', 'lockdown', 'KPROBES', 'is not set')] # refers to LOCKDOWN
410     l += [bpf_syscall_not_set] # refers to LOCKDOWN
411
412     # 'cut_attack_surface', 'a13xp0p0v'
413     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'MMIOTRACE', 'is not set')] # refers to LOCKDOWN (permissive)
414     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'LIVEPATCH', 'is not set')]
415     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'IP_DCCP', 'is not set')]
416     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'IP_SCTP', 'is not set')]
417     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'FTRACE', 'is not set')] # refers to LOCKDOWN
418     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'VIDEO_VIVID', 'is not set')]
419     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'INPUT_EVBUG', 'is not set')] # Can be used as a keylogger
420     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'KGDB', 'is not set')]
421     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'CORESIGHT', 'is not set')]
422     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'XFS_SUPPORT_V4', 'is not set')]
423     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'MODULE_FORCE_LOAD', 'is not set')]
424     l += [KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'BLK_DEV_WRITE_MOUNTED', 'is not set')]
425     l += [OR(KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'TRIM_UNUSED_KSYMS', 'y'),
426              modules_not_set)]
427
428
429     # 'harden_userspace'
430     if arch == 'ARM64':
431         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_PTR_AUTH', 'y')]
432         l += [KconfigCheck('harden_userspace', 'defconfig', 'ARM64_BTI', 'y')]
433     if arch in ('ARM', 'X86_32'):
434         l += [KconfigCheck('harden_userspace', 'defconfig', 'VMSPLIT_3G', 'y')]
435     l += [KconfigCheck('harden_userspace', 'clipos', 'COREDUMP', 'is not set')]
436     l += [KconfigCheck('harden_userspace', 'a13xp0p0v', 'ARCH_MMAP_RND_BITS', 'MAX')] # 'MAX' value is refined using ARCH_MMAP_RND_BITS_MAX
437     if arch == 'X86_64':
438         l += [KconfigCheck('harden_userspace', 'a13xp0p0v', 'X86_USER_SHADOW_STACK', 'y')]
439
440
441 def add_cmdline_checks(l: List[ChecklistObjType], arch: str) -> None:
442     assert(arch), 'empty arch'
443
444     # Calling the CmdlineCheck class constructor:
445     #     CmdlineCheck(reason, decision, name, expected)
446     #
447     # [!] Don't add CmdlineChecks in add_kconfig_checks() to avoid wrong results
448     #     when the tool doesn't check the cmdline.
449     #
450     # [!] Make sure that values of the options in CmdlineChecks need normalization.
451     #     For more info see normalize_cmdline_options().
452     #
453     # A common pattern for checking the 'param_x' cmdline parameter
454     # that __overrides__ the 'PARAM_X_DEFAULT' kconfig option:
455     #   l += [OR(CmdlineCheck(reason, decision, 'param_x', '1'),
456     #            AND(KconfigCheck(reason, decision, 'PARAM_X_DEFAULT_ON', 'y'),
457     #                CmdlineCheck(reason, decision, 'param_x, 'is not set')))]
458     #
459     # Here we don't check the kconfig options or minimal kernel version
460     # required for the cmdline parameters. That would make the checks
461     # very complex and not give a 100% guarantee anyway.
462
463     # 'self_protection', 'defconfig'
464     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmep', 'is not set')]
465     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmap', 'is not set')]
466     l += [CmdlineCheck('self_protection', 'defconfig', 'nokaslr', 'is not set')]
467     l += [CmdlineCheck('self_protection', 'defconfig', 'nopti', 'is not set')]
468     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v1', 'is not set')]
469     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v2', 'is not set')]
470     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_bhb', 'is not set')]
471     l += [CmdlineCheck('self_protection', 'defconfig', 'nospec_store_bypass_disable', 'is not set')]
472     l += [CmdlineCheck('self_protection', 'defconfig', 'dis_ucode_ldr', 'is not set')]
473     l += [CmdlineCheck('self_protection', 'defconfig', 'arm64.nobti', 'is not set')]
474     l += [CmdlineCheck('self_protection', 'defconfig', 'arm64.nopauth', 'is not set')]
475     l += [CmdlineCheck('self_protection', 'defconfig', 'arm64.nomte', 'is not set')]
476     if arch in ('X86_64', 'X86_32'):
477         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'spectre_v2', 'is not off'),
478                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
479                      CmdlineCheck('self_protection', 'defconfig', 'spectre_v2', 'is not set')))]
480         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'spectre_v2_user', 'is not off'),
481                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
482                      CmdlineCheck('self_protection', 'defconfig', 'spectre_v2_user', 'is not set')))]
483         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'spectre_bhi', 'is not off'),
484                  AND(KconfigCheck('self_protection', 'defconfig', 'MITIGATION_SPECTRE_BHI', 'y'),
485                      CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
486                      CmdlineCheck('self_protection', 'defconfig', 'spectre_bhi', 'is not set')))]
487         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'spec_store_bypass_disable', 'is not off'),
488                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
489                      CmdlineCheck('self_protection', 'defconfig', 'spec_store_bypass_disable', 'is not set')))]
490         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'l1tf', 'is not off'),
491                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
492                      CmdlineCheck('self_protection', 'defconfig', 'l1tf', 'is not set')))]
493         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'mds', 'is not off'),
494                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
495                      CmdlineCheck('self_protection', 'defconfig', 'mds', 'is not set')))]
496         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'tsx_async_abort', 'is not off'),
497                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
498                      CmdlineCheck('self_protection', 'defconfig', 'tsx_async_abort', 'is not set')))]
499         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'srbds', 'is not off'),
500                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
501                      CmdlineCheck('self_protection', 'defconfig', 'srbds', 'is not set')))]
502         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'mmio_stale_data', 'is not off'),
503                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
504                      CmdlineCheck('self_protection', 'defconfig', 'mmio_stale_data', 'is not set')))]
505         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'retbleed', 'is not off'),
506                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
507                      CmdlineCheck('self_protection', 'defconfig', 'retbleed', 'is not set')))]
508         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'spec_rstack_overflow', 'is not off'),
509                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
510                      CmdlineCheck('self_protection', 'defconfig', 'spec_rstack_overflow', 'is not set')))]
511         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'gather_data_sampling', 'is not off'),
512                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
513                      CmdlineCheck('self_protection', 'defconfig', 'gather_data_sampling', 'is not set')))]
514         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'reg_file_data_sampling', 'is not off'),
515                  AND(KconfigCheck('self_protection', 'defconfig', 'MITIGATION_RFDS', 'y'),
516                      CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
517                      CmdlineCheck('self_protection', 'defconfig', 'reg_file_data_sampling', 'is not set')))]
518     if arch == 'ARM64':
519         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'kpti', 'is not off'),
520                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
521                      CmdlineCheck('self_protection', 'defconfig', 'kpti', 'is not set')))]
522         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'ssbd', 'kernel'),
523                  CmdlineCheck('self_protection', 'a13xp0p0v', 'ssbd', 'force-on'),
524                  AND(CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt'),
525                      CmdlineCheck('self_protection', 'defconfig', 'ssbd', 'is not set')))]
526         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', 'full'),
527                  AND(KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y'),
528                      CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set')))]
529     else:
530         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', 'on'),
531                  CmdlineCheck('self_protection', 'defconfig', 'rodata', 'is not set'))]
532
533     # 'self_protection', 'kspp'
534     l += [CmdlineCheck('self_protection', 'kspp', 'mitigations', 'auto,nosmt')]
535     l += [CmdlineCheck('self_protection', 'kspp', 'slab_merge', 'is not set')] # consequence of 'slab_nomerge' by kspp
536     l += [CmdlineCheck('self_protection', 'kspp', 'slub_merge', 'is not set')] # consequence of 'slab_nomerge' by kspp
537     l += [CmdlineCheck('self_protection', 'kspp', 'page_alloc.shuffle', '1')]
538     l += [OR(CmdlineCheck('self_protection', 'kspp', 'slab_nomerge', 'is present'),
539              AND(KconfigCheck('self_protection', 'clipos', 'SLAB_MERGE_DEFAULT', 'is not set'),
540                  CmdlineCheck('self_protection', 'kspp', 'slab_merge', 'is not set'),
541                  CmdlineCheck('self_protection', 'kspp', 'slub_merge', 'is not set')))]
542     l += [OR(CmdlineCheck('self_protection', 'kspp', 'init_on_alloc', '1'),
543              AND(KconfigCheck('self_protection', 'kspp', 'INIT_ON_ALLOC_DEFAULT_ON', 'y'),
544                  CmdlineCheck('self_protection', 'kspp', 'init_on_alloc', 'is not set')))]
545     l += [OR(CmdlineCheck('self_protection', 'kspp', 'init_on_free', '1'),
546              AND(KconfigCheck('self_protection', 'kspp', 'INIT_ON_FREE_DEFAULT_ON', 'y'),
547                  CmdlineCheck('self_protection', 'kspp', 'init_on_free', 'is not set')),
548              AND(CmdlineCheck('self_protection', 'kspp', 'page_poison', '1'),
549                  KconfigCheck('self_protection', 'kspp', 'PAGE_POISONING_ZERO', 'y'),
550                  CmdlineCheck('self_protection', 'kspp', 'slub_debug', 'P')))]
551     l += [OR(CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', '1'),
552              AND(KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY', 'y'),
553                  CmdlineCheck('self_protection', 'kspp', 'hardened_usercopy', 'is not set')))]
554     l += [AND(CmdlineCheck('self_protection', 'kspp', 'slab_common.usercopy_fallback', 'is not set'),
555               KconfigCheck('self_protection', 'kspp', 'HARDENED_USERCOPY_FALLBACK', 'is not set'))]
556               # Consequence of the HARDENED_USERCOPY_FALLBACK check by kspp.
557               # Don't require slab_common.usercopy_fallback=0,
558               # since HARDENED_USERCOPY_FALLBACK was removed in Linux v5.16.
559     if arch in ('X86_64', 'ARM64', 'X86_32'):
560         l += [OR(CmdlineCheck('self_protection', 'kspp', 'iommu.strict', '1'),
561                  AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_DMA_STRICT', 'y'),
562                      CmdlineCheck('self_protection', 'kspp', 'iommu.strict', 'is not set')))]
563         l += [OR(CmdlineCheck('self_protection', 'kspp', 'iommu.passthrough', '0'),
564                  AND(KconfigCheck('self_protection', 'kspp', 'IOMMU_DEFAULT_PASSTHROUGH', 'is not set'),
565                      CmdlineCheck('self_protection', 'kspp', 'iommu.passthrough', 'is not set')))]
566         l += [OR(CmdlineCheck('self_protection', 'kspp', 'randomize_kstack_offset', '1'),
567                  AND(KconfigCheck('self_protection', 'kspp', 'RANDOMIZE_KSTACK_OFFSET_DEFAULT', 'y'),
568                      CmdlineCheck('self_protection', 'kspp', 'randomize_kstack_offset', 'is not set')))]
569     if arch in ('X86_64', 'X86_32'):
570         l += [AND(CmdlineCheck('self_protection', 'kspp', 'pti', 'on'),
571                   CmdlineCheck('self_protection', 'defconfig', 'nopti', 'is not set'))]
572
573     # 'self_protection', 'clipos'
574     if arch in ('X86_64', 'X86_32'):
575         l += [CmdlineCheck('self_protection', 'clipos', 'iommu', 'force')]
576
577     # 'self_protection', 'a13xp0p0v'
578     l += [OR(CmdlineCheck('self_protection', 'a13xp0p0v', 'kfence.sample_interval', 'is not off'),
579              AND(KconfigCheck('self_protection', 'a13xp0p0v', 'KFENCE_SAMPLE_INTERVAL', 'is not off'),
580                  CmdlineCheck('self_protection', 'a13xp0p0v', 'kfence.sample_interval', 'is not set')))]
581
582     # 'cut_attack_surface', 'defconfig'
583     if arch in ('X86_64', 'X86_32'):
584         tsx_not_set = CmdlineCheck('cut_attack_surface', 'defconfig', 'tsx', 'is not set')
585         l += [OR(CmdlineCheck('cut_attack_surface', 'defconfig', 'tsx', 'off'),
586                  AND(KconfigCheck('cut_attack_surface', 'defconfig', 'X86_INTEL_TSX_MODE_OFF', 'y'),
587                      tsx_not_set),
588                  AND(KconfigCheck('-', '-', 'CPU_SUP_INTEL', 'is not set'),
589                      tsx_not_set))]
590
591     # 'cut_attack_surface', 'kspp'
592     l += [CmdlineCheck('cut_attack_surface', 'kspp', 'nosmt', 'is present')] # slow (high performance penalty)
593     if arch == 'X86_64':
594         l += [OR(CmdlineCheck('cut_attack_surface', 'kspp', 'vsyscall', 'none'),
595                  KconfigCheck('cut_attack_surface', 'kspp', 'X86_VSYSCALL_EMULATION', 'is not set'),
596                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'LEGACY_VSYSCALL_NONE', 'y'),
597                      CmdlineCheck('cut_attack_surface', 'kspp', 'vsyscall', 'is not set')))]
598         l += [OR(CmdlineCheck('cut_attack_surface', 'kspp', 'vdso32', '0'),
599                  CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'vdso32', '1'),
600                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set'),
601                      CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'vdso32', 'is not set')))] # the vdso32 parameter must not be 2
602     if arch == 'X86_32':
603         l += [OR(CmdlineCheck('cut_attack_surface', 'kspp', 'vdso32', '0'),
604                  CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'vdso', '0'),
605                  CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'vdso32', '1'),
606                  CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'vdso', '1'),
607                  AND(KconfigCheck('cut_attack_surface', 'kspp', 'COMPAT_VDSO', 'is not set'),
608                      CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'vdso32', 'is not set'),
609                      CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'vdso', 'is not set')))] # the vdso and vdso32 parameters must not be 2
610
611     # 'cut_attack_surface', 'grsec'
612     # The cmdline checks compatible with the kconfig options disabled by grsecurity...
613     l += [OR(CmdlineCheck('cut_attack_surface', 'grsec', 'debugfs', 'off'),
614              KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_FS', 'is not set'))] # ... the end
615
616     # 'cut_attack_surface', 'a13xp0p0v'
617     l += [CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'sysrq_always_enabled', 'is not set')]
618     l += [OR(CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'bdev_allow_write_mounted', '0'),
619              AND(KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'BLK_DEV_WRITE_MOUNTED', 'is not set'),
620                  CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'bdev_allow_write_mounted', 'is not set')))]
621     if arch == 'X86_64':
622         l += [OR(CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'ia32_emulation', '0'),
623                  KconfigCheck('cut_attack_surface', 'kspp', 'IA32_EMULATION', 'is not set'),
624                  AND(KconfigCheck('cut_attack_surface', 'a13xp0p0v', 'IA32_EMULATION_DEFAULT_DISABLED', 'y'),
625                      CmdlineCheck('cut_attack_surface', 'a13xp0p0v', 'ia32_emulation', 'is not set')))]
626
627     # 'harden_userspace'
628     l += [CmdlineCheck('harden_userspace', 'defconfig', 'norandmaps', 'is not set')]
629
630
631 no_kstrtobool_options = [
632     'debugfs', # See debugfs_kernel() in fs/debugfs/inode.c
633     'mitigations', # See mitigations_parse_cmdline() in kernel/cpu.c
634     'pti', # See pti_check_boottime_disable() in arch/x86/mm/pti.c
635     'spectre_v2', # See spectre_v2_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
636     'spectre_v2_user', # See spectre_v2_parse_user_cmdline() in arch/x86/kernel/cpu/bugs.c
637     'spectre_bhi', # See spectre_bhi_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
638     'spec_store_bypass_disable', # See ssb_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
639     'l1tf', # See l1tf_cmdline() in arch/x86/kernel/cpu/bugs.c
640     'mds', # See mds_cmdline() in arch/x86/kernel/cpu/bugs.c
641     'tsx_async_abort', # See tsx_async_abort_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
642     'srbds', # See srbds_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
643     'mmio_stale_data', # See mmio_stale_data_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
644     'retbleed', # See retbleed_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
645     'rodata', # See set_debug_rodata() in init/main.c
646     'ssbd', # See parse_spectre_v4_param() in arch/arm64/kernel/proton-pack.c
647     'spec_rstack_overflow', # See srso_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
648     'gather_data_sampling', # See gds_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
649     'reg_file_data_sampling', # See rfds_parse_cmdline() in arch/x86/kernel/cpu/bugs.c
650     'slub_debug', # See setup_slub_debug() in mm/slub.c
651     'iommu', # See iommu_setup() in arch/x86/kernel/pci-dma.c
652     'vsyscall', # See vsyscall_setup() in arch/x86/entry/vsyscall/vsyscall_64.c
653     'vdso32', # See vdso32_setup() in arch/x86/entry/vdso/vdso32-setup.c
654     'vdso', # See vdso32_setup() in arch/x86/entry/vdso/vdso32-setup.c
655     'tsx' # See tsx_init() in arch/x86/kernel/cpu/tsx.c
656 ]
657
658
659 def normalize_cmdline_options(option: str, value: str) -> str:
660     # Don't normalize the cmdline option values if
661     # the Linux kernel doesn't use kstrtobool() for them
662     if option in no_kstrtobool_options:
663         return value
664
665     # Implement a limited part of the kstrtobool() logic
666     if value.lower() in ('1', 'on', 'y', 'yes', 't', 'true'):
667         return '1'
668     if value.lower() in ('0', 'off', 'n', 'no', 'f', 'false'):
669         return '0'
670
671     # Preserve unique values
672     return value
673
674
675 # Ideas of security hardening sysctls:
676 #    what about bpf_jit_enable?
677 #    vm.mmap_min_addr has a good value
678 #    nosmt sysfs control file
679 #    vm.mmap_rnd_bits=max (?)
680 #    kernel.sysrq=0
681 #    abi.vsyscall32 (any value except 2)
682 #    kernel.oops_limit (think about a proper value)
683 #    kernel.warn_limit (think about a proper value)
684 #    net.ipv4.tcp_syncookies=1 (?)
685
686 def add_sysctl_checks(l: List[ChecklistObjType], _arch: StrOrNone) -> None:
687 # This function may be called with arch=None
688
689 # Calling the SysctlCheck class constructor:
690 #   SysctlCheck(reason, decision, name, expected)
691
692     # Use an omnipresent kconfig symbol to see if we have a kconfig file for checking
693     have_kconfig = KconfigCheck('-', '-', 'LOCALVERSION', 'is present')
694
695     l += [OR(SysctlCheck('self_protection', 'kspp', 'net.core.bpf_jit_harden', '2'),
696              AND(KconfigCheck('-', '-', 'BPF_JIT', 'is not set'),
697                  have_kconfig))]
698
699     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.dmesg_restrict', '1')]
700     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.perf_event_paranoid', '3')] # with a custom patch, see https://lwn.net/Articles/696216/
701     l += [SysctlCheck('cut_attack_surface', 'kspp', 'user.max_user_namespaces', '0')] # may break the upower daemon in Ubuntu
702     l += [SysctlCheck('cut_attack_surface', 'kspp', 'dev.tty.ldisc_autoload', '0')]
703     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.kptr_restrict', '2')]
704     l += [SysctlCheck('cut_attack_surface', 'kspp', 'dev.tty.legacy_tiocsti', '0')]
705     l += [OR(SysctlCheck('cut_attack_surface', 'kspp', 'kernel.kexec_load_disabled', '1'),
706              AND(KconfigCheck('-', '-', 'KEXEC_CORE', 'is not set'),
707                  have_kconfig))]
708     l += [OR(SysctlCheck('cut_attack_surface', 'kspp', 'kernel.unprivileged_bpf_disabled', '1'),
709              AND(KconfigCheck('cut_attack_surface', 'lockdown', 'BPF_SYSCALL', 'is not set'),
710                  have_kconfig))]
711     l += [OR(SysctlCheck('cut_attack_surface', 'kspp', 'vm.unprivileged_userfaultfd', '0'),
712              AND(KconfigCheck('cut_attack_surface', 'grsec', 'USERFAULTFD', 'is not set'),
713                  have_kconfig))]
714           # At first, it disabled unprivileged userfaultfd,
715           # and since v5.11 it enables unprivileged userfaultfd for user-mode only.
716
717     l += [OR(SysctlCheck('cut_attack_surface', 'clipos', 'kernel.modules_disabled', '1'),
718              AND(KconfigCheck('cut_attack_surface', 'kspp', 'MODULES', 'is not set'),
719                  have_kconfig))] # radical, but may be useful in some cases
720
721     l += [SysctlCheck('harden_userspace', 'kspp', 'fs.protected_symlinks', '1')]
722     l += [SysctlCheck('harden_userspace', 'kspp', 'fs.protected_hardlinks', '1')]
723     l += [SysctlCheck('harden_userspace', 'kspp', 'fs.protected_fifos', '2')]
724     l += [SysctlCheck('harden_userspace', 'kspp', 'fs.protected_regular', '2')]
725     l += [SysctlCheck('harden_userspace', 'kspp', 'fs.suid_dumpable', '0')]
726     l += [SysctlCheck('harden_userspace', 'kspp', 'kernel.randomize_va_space', '2')]
727     l += [SysctlCheck('harden_userspace', 'kspp', 'kernel.yama.ptrace_scope', '3')]