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