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