d4493e7eaa3bf932d40904d91f0777afc7366d8e
[kconfig-hardened-check.git] / kernel_hardening_checker / config_files / kspp-recommendations / kspp-kconfig-arm.config
1 # Linux/arm 6.1.5 Kernel Configuration
2
3 # Report BUG() conditions and kill the offending process.
4 CONFIG_BUG=y
5
6 # Make sure kernel page tables have safe permissions.
7 CONFIG_STRICT_KERNEL_RWX=y
8
9 # Report any dangerous memory permissions (not available on all archs).
10 CONFIG_DEBUG_WX=y
11
12 # Use -fstack-protector-strong (gcc 4.9+) for best stack canary coverage.
13 # Prior to v4.18, these are:
14 #  CONFIG_CC_STACKPROTECTOR=y
15 #  CONFIG_CC_STACKPROTECTOR_STRONG=y
16 CONFIG_STACKPROTECTOR=y
17 CONFIG_STACKPROTECTOR_STRONG=y
18
19 # Do not allow direct physical memory access (but if you must have it, at least enable STRICT mode...)
20 # CONFIG_DEVMEM is not set
21 CONFIG_STRICT_DEVMEM=y
22 CONFIG_IO_STRICT_DEVMEM=y
23
24 # Provides some protections against SYN flooding.
25 CONFIG_SYN_COOKIES=y
26
27 # Perform additional validation of various commonly targeted structures.
28 CONFIG_DEBUG_CREDENTIALS=y
29 CONFIG_DEBUG_NOTIFIERS=y
30 CONFIG_DEBUG_LIST=y
31 CONFIG_DEBUG_SG=y
32 CONFIG_DEBUG_VIRTUAL=y
33 CONFIG_BUG_ON_DATA_CORRUPTION=y
34 CONFIG_SCHED_STACK_END_CHECK=y
35
36 # Provide userspace with seccomp BPF API for syscall attack surface reduction.
37 CONFIG_SECCOMP=y
38 CONFIG_SECCOMP_FILTER=y
39
40 # Make sure line disciplines can't be autoloaded (since v5.1).
41 # CONFIG_LDISC_AUTOLOAD is not set
42
43 # Provide userspace with ptrace ancestry protections.
44 # Make sure that "yama" is also present in the "CONFIG_LSM=yama,..." list.
45 CONFIG_SECURITY=y
46 CONFIG_SECURITY_YAMA=y
47
48 # Provide userspace with Landlock MAC interface.
49 # Make sure that "landlock" is also present in the "CONFIG_LSM=landlock,..." list.
50 CONFIG_SECURITY_LANDLOCK=y
51
52 # Make sure SELinux cannot be disabled trivially.
53 # CONFIG_SECURITY_SELINUX_BOOTPARAM is not set
54 # CONFIG_SECURITY_SELINUX_DEVELOP is not set
55 # CONFIG_SECURITY_WRITABLE_HOOKS is not set
56
57 # Enable "lockdown" LSM for bright line between the root user and kernel memory.
58 CONFIG_SECURITY_LOCKDOWN_LSM=y
59 CONFIG_SECURITY_LOCKDOWN_LSM_EARLY=y
60 CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY=y
61
62 # Perform usercopy bounds checking. (And disable fallback to gain full whitelist enforcement.)
63 CONFIG_HARDENED_USERCOPY=y
64 # CONFIG_HARDENED_USERCOPY_FALLBACK is not set
65 # CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
66
67 # Randomize allocator freelists, harden metadata.
68 CONFIG_SLAB_FREELIST_RANDOM=y
69 CONFIG_SLAB_FREELIST_HARDENED=y
70
71 # Randomize high-order page allocation freelist.
72 CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
73
74 # Allow allocator validation checking to be enabled (see "slub_debug=P" below).
75 CONFIG_SLUB_DEBUG=y
76
77 # Wipe higher-level memory allocations when they are freed (needs "page_poison=1" command line below).
78 # (If you can afford even more performance penalty, leave CONFIG_PAGE_POISONING_NO_SANITY=n)
79 CONFIG_PAGE_POISONING=y
80 CONFIG_PAGE_POISONING_NO_SANITY=y
81 CONFIG_PAGE_POISONING_ZERO=y
82
83 # Wipe slab and page allocations (since v5.3)
84 # Instead of "slub_debug=P" and "page_poison=1", a single place can control memory allocation wiping now.
85 # The init_on_free is only needed if there is concern about minimizing stale data lifetime.
86 CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y
87 CONFIG_INIT_ON_FREE_DEFAULT_ON=y
88
89 # Initialize all stack variables on function entry. (Clang and GCC 12+ builds only. For earlier GCC, see CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y below)
90 CONFIG_INIT_STACK_ALL_ZERO=y
91
92 # Adds guard pages to kernel stacks (not all architectures support this yet).
93 CONFIG_VMAP_STACK=y
94
95 # Perform extensive checks on reference counting.
96 CONFIG_REFCOUNT_FULL=y
97
98 # Check for memory copies that might overflow a structure in str*() and mem*() functions both at build-time and run-time.
99 CONFIG_FORTIFY_SOURCE=y
100
101 # Avoid kernel memory address exposures via dmesg (sets sysctl kernel.dmesg_restrict initial value to 1)
102 CONFIG_SECURITY_DMESG_RESTRICT=y
103
104 # Enable trapping bounds checking of array indexes (since v5.11). All the other UBSAN checks should be disabled.
105 CONFIG_UBSAN=y
106 CONFIG_UBSAN_TRAP=y
107 CONFIG_UBSAN_BOUNDS=y
108 CONFIG_UBSAN_SANITIZE_ALL=y
109 # CONFIG_UBSAN_SHIFT is not set
110 # CONFIG_UBSAN_DIV_ZERO is not set
111 # CONFIG_UBSAN_UNREACHABLE is not set
112 # CONFIG_UBSAN_BOOL is not set
113 # CONFIG_UBSAN_ENUM is not set
114 # CONFIG_UBSAN_ALIGNMENT is not set
115 # This is only available on Clang builds, and is likely already enabled if CONFIG_UBSAN_BOUNDS=y is set:
116 CONFIG_UBSAN_LOCAL_BOUNDS=y
117
118 # Enable sampling-based overflow detection (since v5.12). This is similar to KASAN coverage, but with almost zero runtime overhead.
119 CONFIG_KFENCE=y
120
121 # Randomize kernel stack offset on syscall entry (since v5.13).
122 CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y
123
124 # Do not ignore compile-time warnings (since v5.15)
125 CONFIG_WERROR=y
126
127 # Disable DMA between EFI hand-off and the kernel's IOMMU setup.
128 CONFIG_EFI_DISABLE_PCI_DMA=y
129
130 # Force IOMMU TLB invalidation so devices will never be able to access stale data contents (or set "iommu.passthrough=0 iommu.strict=1" at boot)
131 CONFIG_IOMMU_SUPPORT=y
132 CONFIG_IOMMU_DEFAULT_DMA_STRICT=y
133
134 # Enable feeding RNG entropy from TPM, if available.
135 CONFIG_HW_RANDOM_TPM=y
136
137 # Get as much entropy as possible from external sources. The Chacha mixer isn't vulnerable to injected entropy, so even
138 # malicious sources should not cause problems.
139 CONFIG_RANDOM_TRUST_BOOTLOADER=y
140 CONFIG_RANDOM_TRUST_CPU=y
141
142 # Make scheduler aware of SMT Cores. Program needs to opt-in to using this feature with prctl(PR_SCHED_CORE).
143 CONFIG_SCHED_CORE=y
144
145 # Wipe all caller-used registers on exit from the function (reduces available ROP gadgets and
146 # minimizes stale data in registers). (Since v5.15)
147 CONFIG_ZERO_CALL_USED_REGS=y
148
149 # Wipe RAM at reboot via EFI.
150 # For more details, see:
151 # https://trustedcomputinggroup.org/resource/pc-client-work-group-platform-reset-attack-mitigation-specification/
152 # https://bugzilla.redhat.com/show_bug.cgi?id=1532058
153 CONFIG_RESET_ATTACK_MITIGATION=y
154
155 # This needs userspace support, and will break "regular" distros. See: https://github.com/tych0/huldufolk
156 CONFIG_STATIC_USERMODEHELPER=y
157
158 # Dangerous; enabling this allows direct physical memory writing.
159 # CONFIG_ACPI_CUSTOM_METHOD is not set
160
161 # Dangerous; enabling this disables brk ASLR.
162 # CONFIG_COMPAT_BRK is not set
163
164 # Dangerous; enabling this allows direct kernel memory writing.
165 # CONFIG_DEVKMEM is not set
166
167 # Dangerous; exposes kernel text image layout.
168 # CONFIG_PROC_KCORE is not set
169
170 # Dangerous; enabling this disables VDSO ASLR.
171 # CONFIG_COMPAT_VDSO is not set
172
173 # Dangerous; enabling this allows replacement of running kernel.
174 # CONFIG_KEXEC is not set
175
176 # Dangerous; enabling this allows replacement of running kernel.
177 # CONFIG_HIBERNATION is not set
178
179 # Prior to v4.1, assists heap memory attacks; best to keep interface disabled.
180 # CONFIG_INET_DIAG is not set
181
182 # Easily confused by misconfigured userspace, keep off.
183 # CONFIG_BINFMT_MISC is not set
184
185 # Use the modern PTY interface (devpts) only.
186 # CONFIG_LEGACY_PTYS is not set
187
188 # If SELinux can be disabled at runtime, the LSM structures cannot be read-only; keep off.
189 # CONFIG_SECURITY_SELINUX_DISABLE is not set
190
191 # Reboot devices immediately if kernel experiences an Oops.
192 CONFIG_PANIC_ON_OOPS=y
193 CONFIG_PANIC_TIMEOUT=-1
194
195 # Keep root from altering kernel memory via loadable modules.
196 # CONFIG_MODULES is not set
197
198 # But if CONFIG_MODULE=y is needed, at least they must be signed with a per-build key.
199 CONFIG_STRICT_MODULE_RWX=y
200 CONFIG_MODULE_SIG=y
201 CONFIG_MODULE_SIG_FORCE=y
202 CONFIG_MODULE_SIG_ALL=y
203 CONFIG_MODULE_SIG_SHA512=y
204 CONFIG_MODULE_SIG_HASH="sha512"
205 CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
206
207 # GCC plugins
208
209 # Enable GCC Plugins
210 CONFIG_GCC_PLUGINS=y
211
212 # Gather additional entropy at boot time for systems that may not have appropriate entropy sources.
213 CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y
214
215 # Force all structures to be initialized before they are passed to other functions.
216 # When building with GCC:
217 CONFIG_GCC_PLUGIN_STRUCTLEAK=y
218 CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y
219
220 # Wipe stack contents on syscall exit (reduces stale data lifetime in stack)
221 CONFIG_GCC_PLUGIN_STACKLEAK=y
222 # CONFIG_STACKLEAK_METRICS is not set
223 # CONFIG_STACKLEAK_RUNTIME_DISABLE is not set
224
225 # Randomize the layout of system structures. This may have dramatic performance impact, so
226 # use with caution or also use CONFIG_GCC_PLUGIN_RANDSTRUCT_PERFORMANCE=y
227 CONFIG_GCC_PLUGIN_RANDSTRUCT=y
228 # CONFIG_GCC_PLUGIN_RANDSTRUCT_PERFORMANCE is not set
229
230 # arm
231
232 CONFIG_ARM=y
233
234 # Disallow allocating the first 32k of memory (cannot be 64k due to ARM loader).
235 CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
236
237 # For maximal userspace memory area (and maximum ASLR).
238 CONFIG_VMSPLIT_3G=y
239
240 # Make sure PXN/PAN emulation is enabled.
241 CONFIG_CPU_SW_DOMAIN_PAN=y
242
243 # Dangerous; old interfaces and needless additional attack surface.
244 # CONFIG_OABI_COMPAT is not set