Kernel¶
The CLIP OS kernel is based on Linux. It also integrates:
- existing hardening patches that are not upstream yet and that we consider relevant to our security model;
- developments made for previous CLIP OS versions that we have not upstreamed yet (or that cannot be);
- entirely new functionalities that have not been upstreamed yet (or that cannot be).
Objectives¶
As the core of a hardened operating system, the CLIP OS kernel is particularly responsible for:
- providing robust security mechanisms to higher levels of the operating system, such as reliable isolation primitives;
- maintaining maximal trust in hardware resources;
- guaranteeing its own protection against various threats.
Configuration¶
In this section we discuss our security-relevant configuration choices for the CLIP OS kernel. Before starting, it is worth mentioning that:
We do our best to limit the number of kernel modules.
In other words, as many modules as possible should be built-in. Modules are only used when needed either for the initramfs or to ease the automation of the deployment of CLIP OS on multiple different machines (for the moment, we only target a QEMU-KVM guest). This is particularly important as module loading is disabled after CLIP OS startup.
We focus on a secure configuration. The remaining of the configuration is minimal and it is your job to tune it for your machines and use cases.
CLIP OS only supports the x86-64 architecture for now.
Running 32-bit programs is voluntarily unsupported. Should you change that in your custom kernel, keep in mind that it requires further attention when configuring it (e.g., ensure that
CONFIG_COMPAT_VDSO=n
).Many options that are not useful to us are disabled in order to cut attack surface. As they are not all detailed below, please see
src/portage/clip/sys-kernel/clipos-kernel/files/config.d/blacklist
for an exhaustive list of the ones we explicitly disable.
General setup¶
-
CONFIG_AUDIT=y
CLIP OS will need the auditing infrastructure.
-
CONFIG_IKCONFIG=n
-
CONFIG_IKHEADERS=n
We do not need
.config
to be available at runtime, neither do we need access to kernel headers through sysfs.
-
CONFIG_AIO=n
-
CONFIG_IO_URING=n
Asynchronous I/O mostly targets high-performance applications. It brings a lot of complexity and increases the kernel attack surface.
-
CONFIG_KALLSYMS=n
Symbols are only useful for debug and attack purposes.
-
CONFIG_BPF_JIT_ALWAYS_ON=y
Remove the BPF interpreter to avoid speculative execution of BPF instructions. See also the
net.core.bpf_jit_harden
sysctl.
-
CONFIG_USERFAULTFD=n
The
userfaultfd()
system call adds attack surface and can make heap sprays easier. Note that thevm.unprivileged_userfaultfd
sysctl can also be used to restrict the use of this system call to privileged users.
-
CONFIG_EXPERT=y
This unlocks additional configuration options we need.
-
CONFIG_USER_NS=n
User namespaces can be useful for some use cases but even more to an attacker. We choose to disable them for the moment, but we could also enable them and use the
kernel.unprivileged_userns_clone
sysctl provided by linux-hardened to disable their unprivileged use.
-
CONFIG_SLUB_DEBUG=y
Allow allocator validation checking to be enabled.
-
CONFIG_SLAB_MERGE_DEFAULT=n
Merging SLAB caches can make heap exploitation easier.
-
CONFIG_SLAB_FREELIST_RANDOM=y
Randomize allocator freelists
-
CONFIG_SLAB_FREELIST_HARDENED=y
Harden slab metadata
-
CONFIG_SLAB_CANARY=y
Place canaries at the end of slab allocations. [linux-hardened]
-
CONFIG_SHUFFLE_PAGE_ALLOCATOR=y
Page allocator randomization is primarily a performance improvement for direct-mapped memory-side-cache utilization, but it does reduce the predictability of page allocations and thus complements
SLAB_FREELIST_RANDOM
. Thepage_alloc.shuffle=1
parameter needs to be added to the kernel command line.
-
CONFIG_COMPAT_BRK=n
Enabling this would disable brk ASLR.
-
CONFIG_GCC_PLUGINS=y
Enable GCC plugins, some of which are security-relevant; GCC 4.7 at least is required.
-
CONFIG_GCC_PLUGIN_LATENT_ENTROPY=y
Instrument some kernel code to gather additional (but not cryptographically secure) entropy at boot time.
-
CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL=y
Prevent potential information leakage by forcing zero-initialization of:
- structures on the stack containing userspace addresses;
- any stack variable (thus including structures) that may be passed by reference and has not already been explicitly initialized.
This is particularly important to prevent trivial bypassing of KASLR.
-
CONFIG_GCC_PLUGIN_RANDSTRUCT=y
Randomize layout of sensitive kernel structures. Exploits targeting such structures then require an additional information leak vulnerability.
-
CONFIG_GCC_PLUGIN_RANDSTRUCT_PERFORMANCE=n
Do not weaken structure randomization
-
-
CONFIG_ARCH_MMAP_RND_BITS=32
Use maximum number of randomized bits for the mmap base address on x86_64. Note that thanks to a linux-hardened patch, this also impacts the number of randomized bits for the stack base address.
-
CONFIG_STACKPROTECTOR=y
-
CONFIG_STACKPROTECTOR_STRONG=y
Use
-fstack-protector-strong
for best stack canary coverage; GCC 4.9 at least is required.
-
CONFIG_VMAP_STACK=y
Virtually-mapped stacks benefit from guard pages, thus making kernel stack overflows harder to exploit.
-
CONFIG_STRICT_MODULE_RWX=y
Enforce strict memory mappings permissions for loadable kernel modules.
Although CLIP OS stores kernel modules in a read-only rootfs whose integrity is guaranteed by dm-verity, we still enable and enforce module signing as an additional layer of security:
CONFIG_MODULE_SIG=y
CONFIG_MODULE_SIG_FORCE=y
CONFIG_MODULE_SIG_ALL=y
CONFIG_MODULE_SIG_SHA512=y
CONFIG_MODULE_SIG_HASH="sha512"
-
CONFIG_INIT_STACK_ALL=n
This option requires compiler support that is currently only available in Clang.
Processor type and features¶
-
CONFIG_RETPOLINE=y
Retpolines are needed to protect against Spectre v2. GCC 7.3.0 or higher is required.
-
CONFIG_LEGACY_VSYSCALL_NONE=y
-
CONFIG_LEGACY_VSYSCALL_EMULATE=n
-
CONFIG_LEGACY_VSYSCALL_XONLY=n
-
CONFIG_X86_VSYSCALL_EMULATION=n
The vsyscall table is not required anymore by libc and is a fixed-position potential source of ROP gadgets.
-
CONFIG_X86_MCE=y
-
CONFIG_X86_MCE_INTEL=y
Machine Check Exceptions can report suspicious hardware errors, some of which may for instance, on systems with ECC memory, reveal an ongoing Rowhammer attack.
-
CONFIG_X86_IOPL_IOPERM=n
Disable legacy
iopl(2)
andioperm(2)
system calls, which should not be used by modern userspace anymore.
-
CONFIG_MICROCODE=y
Needed to benefit from microcode updates and thus security fixes (e.g., additional Intel pseudo-MSRs to be used by the kernel as a mitigation for various speculative execution vulnerabilities).
-
CONFIG_X86_MSR=n
-
CONFIG_X86_CPUID=n
Enabling those features would only present userspace with more attack surface.
-
CONFIG_MEMORY_HOTPLUG=n
We do not use memory hot-add and it makes memory management code more complex.
-
CONFIG_KSM=n
Enabling this feature can make cache side-channel attacks such as FLUSH+RELOAD much easier to carry out.
-
CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
This should in particular be non-zero to prevent the exploitation of kernel NULL pointer bugs.
-
CONFIG_MTRR=y
Memory Type Range Registers can make speculative execution bugs a bit harder to exploit.
-
CONFIG_X86_PAT=y
Page Attribute Tables are the modern equivalents of MTRRs, which we described above.
-
CONFIG_ARCH_RANDOM=y
Enable the RDRAND instruction to benefit from a secure hardware RNG if supported. See also
CONFIG_RANDOM_TRUST_CPU
.
-
CONFIG_X86_SMAP=y
Enable Supervisor Mode Access Prevention to prevent ret2usr exploitation techniques.
-
CONFIG_X86_UMIP=y
Enable User Mode Instruction Prevention to prevent some instructions that unnecessarily expose information about the hardware state from being executed in user mode.
-
CONFIG_X86_INTEL_MPX=n
Intel Memory Protection Extensions (MPX) add hardware assistance to memory protection. Compiler support is required but was deprecated in GCC 8 and removed from GCC 9. Moreover, MPX kernel support is being dropped.
-
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=n
Memory Protection Keys are a promising feature but they are still not supported on current hardware.
-
CONFIG_X86_INTEL_TSX_MODE_OFF=y
Set the default value of the
tsx
kernel parameter tooff
.
Enable the seccomp BPF userspace API for syscall attack surface reduction:
CONFIG_SECCOMP=y
CONFIG_SECCOMP_FILTER=y
-
CONFIG_RANDOMIZE_BASE=y
While this may be seen as a controversial feature, it makes sense for CLIP OS. Indeed, KASLR may be defeated thanks to the kernel interfaces that are available to an attacker, or through attacks leveraging hardware vulnerabilities such as speculative and out-of-order execution ones. However, CLIP OS follows the defense in depth principle and an attack surface reduction approach. Thus, the following points make KASLR relevant in the CLIP OS kernel:
- KASLR was initially designed to counter remote attacks but the strong security model of CLIP OS (e.g., no sysfs mounts in most containers, minimal procfs, no arbitrary code execution) makes a local attack more complex to carry out.
- STRUCTLEAK, STACKLEAK, kptr_restrict and
CONFIG_SECURITY_DMESG_RESTRICT
are enabled in CLIP OS. - The CLIP OS kernel is custom-compiled (at least for a given deployment), its image is unreadable to all users including privileged ones and updates are end-to-end encrypted. This makes both the content and addresses of the kernel image secret. Note that, however, the production kernel image is currently part of an EFI binary and is not encrypted, causing it to be accessible to a physical attacker. This will change in the future as we will only use the kernel included in the EFI binary to boot and then kexec to the real production kernel whose image will be located on an encrypted disk partition.
- We enable
CONFIG_PANIC_ON_OOPS
by default so that the kernel cannot recover from failed exploit attempts, thus preventing any brute forcing. - We enable Kernel Page Table Isolation, mitigating Meltdown and potential other hardware information leakage. Variante 3a (Rogue System Register Read) however remains an important threat to KASLR.
-
CONFIG_RANDOMIZE_MEMORY=y
Most of the above explanations stand for that feature.
-
CONFIG_KEXEC=n
-
CONFIG_KEXEC_FILE=n
Disable the
kexec()
system call to prevent an already-root attacker from rebooting on an untrusted kernel.
-
CONFIG_CRASH_DUMP=n
A crash dump can potentially provide an attacker with useful information. However we disabled
kexec()
syscalls above thus this configuration option should have no impact anyway.
-
CONFIG_MODIFY_LDT_SYSCALL=n
This is not supposed to be needed by userspace applications and only increases the kernel attack surface.
Power management and ACPI options¶
-
CONFIG_HIBERNATION=n
The CLIP OS swap partition is encrypted with an ephemeral key and thus cannot support suspend to disk.
-
CONFIG_ACPI_TABLE_UPGRADE=n
Do not provide means to upgrade arbitrary ACPI tables. Note that even if enabled, this functionality is restricted by
lockdown
’sintegrity
mode.
Firmware Drivers¶
-
CONFIG_RESET_ATTACK_MITIGATION=n
In order to work properly, this mitigation requires userspace support that is currently not available in CLIP OS. Moreover, due to our use of Secure Boot, Trusted Boot and the fact that machines running CLIP OS are expected to lock their BIOS with a password, the type of cold boot attacks this mitigation is supposed to thwart should not be an issue.
-
CONFIG_EFI_DISABLE_PCI_DMA=y
Prevent any malicious PCI device from performing DMA attacks while the IOMMU is disabled as part of the handover from system firmware to kernel.
-
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=n
Do not provide means to load arbitrary ACPI tables.
Virtualization¶
-
CONFIG_VHOST_MENU=n
The vhost protocol offloads the virtio dataplane implementation to the kernel. This reduces isolation of virtual machines, by getting rid of the existing protocol break and increasing the host kernel attack surface.
Executable file formats / Emulations¶
-
CONFIG_BINFMT_MISC=n
We do not want our kernel to support miscellaneous binary classes. ELF binaries and interpreted scripts starting with a shebang are enough.
-
CONFIG_COREDUMP=n
Core dumps can provide an attacker with useful information.
Networking support¶
-
CONFIG_SYN_COOKIES=y
Enable TCP syncookies.
-
CONFIG_TCP_SIMULT_CONNECT_DEFAULT_ON=n
Disable TCP simultaneous connect, which is a weakness in Linux’s implementation of TCP that could be used by an attacker to disturb certain connections. This actually sets the default value of the
net.ipv4.tcp_simult_connect
sysctl. [linux-hardened]
Device Drivers¶
-
CONFIG_HW_RANDOM_TPM=y
Expose the TPM’s Random Number Generator (RNG) as a Hardware RNG (HWRNG) device, allowing the kernel to collect randomness from it. See documentation of
CONFIG_RANDOM_TRUST_CPU
and therng_core.default_quality
command line parameter for supplementary information.
-
CONFIG_TCG_TPM=y
CLIP OS leverages the TPM to ensure boot integrity.
-
CONFIG_DEVMEM=n
The
/dev/mem
device should not be required by any user application nowadays.Note
If you must enable it, at least enable
CONFIG_STRICT_DEVMEM
andCONFIG_IO_STRICT_DEVMEM
to restrict at best access to this device.
-
CONFIG_DEVKMEM=n
This virtual device is only useful for debug purposes and is very dangerous as it allows direct kernel memory writing (particularly useful for rootkits).
-
CONFIG_LEGACY_PTYS=n
Use the modern PTY interface only.
-
CONFIG_LDISC_AUTOLOAD=n
Do not automatically load any line discipline that is in a kernel module when an unprivileged user asks for it.
-
CONFIG_DEVPORT=n
The
/dev/port
device should not be used anymore by userspace, and it could increase the kernel attack surface.
-
CONFIG_RANDOM_TRUST_CPU=n
-
CONFIG_RANDOM_TRUST_BOOTLOADER=n
Do not credit entropy included in Linux’s entropy pool when generated by the CPU manufacturer’s HWRNG, the bootloader or the UEFI firmware. Fast and robust initialization of Linux’s CSPRNG is instead achieved thanks to the TPM’s HWRNG (see documentation of
CONFIG_HW_RANDOM_TPM
and therng_core.default_quality
command line parameter).
-
CONFIG_DRM_LEGACY=n
Disable old drivers with unfixable security holes.
-
CONFIG_STAGING=n
Staging drivers are typically of lower quality and under heavy development. They are thus more likely to contain bugs, including security vulnerabilities, and should be avoided.
The IOMMU allows for protecting the system’s main memory from arbitrary accesses from devices (e.g., DMA attacks). Note that this is related to hardware features. On a recent Intel machine, we enable the following:
CONFIG_IOMMU_SUPPORT=y
CONFIG_INTEL_IOMMU=y
CONFIG_INTEL_IOMMU_SVM=y
CONFIG_INTEL_IOMMU_DEFAULT_ON=y
File systems¶
-
CONFIG_PROC_KCORE=n
Enabling this would provide an attacker with precious information on the running kernel.
Kernel hacking¶
-
CONFIG_MAGIC_SYSRQ=n
This should only be needed for debugging.
-
CONFIG_DEBUG_KERNEL=y
This is useful even in a production kernel to enable further configuration options that have security benefits.
-
CONFIG_DEBUG_VIRTUAL=y
Enable sanity checks in virtual to page code.
-
CONFIG_STRICT_KERNEL_RWX=y
Ensure kernel page tables have strict permissions.
-
CONFIG_DEBUG_WX=y
Check and report any dangerous memory mapping permissions, i.e., both writable and executable kernel pages.
-
CONFIG_DEBUG_FS=n
The debugfs virtual file system is only useful for debugging and protecting it would require additional work.
-
CONFIG_SLUB_DEBUG_ON=n
Using the
slub_debug
command line parameter provides more fine grained control.
-
CONFIG_PANIC_ON_OOPS=y
-
CONFIG_PANIC_TIMEOUT=-1
Prevent potential further exploitation of a bug by immediately panicking the kernel.
The following options add additional checks and validation for various commonly targeted kernel structures:
CONFIG_DEBUG_CREDENTIALS=y
CONFIG_DEBUG_NOTIFIERS=y
CONFIG_DEBUG_LIST=y
CONFIG_DEBUG_SG=y
CONFIG_BUG_ON_DATA_CORRUPTION=y
Note that linux-hardened patches add more places where this configuration option has an impact.
CONFIG_SCHED_STACK_END_CHECK=y
CONFIG_PAGE_POISONING=n
We choose to poison pages with zeroes and thus prefer using
init_on_free
in combination with linux-hardened’sPAGE_SANITIZE_VERIFY
.
Security¶
-
CONFIG_SECURITY_DMESG_RESTRICT=y
Prevent unprivileged users from gathering information from the kernel log buffer via
dmesg(8)
. Note that this still can be overridden through thekernel.dmesg_restrict
sysctl.
-
CONFIG_PAGE_TABLE_ISOLATION=y
Enable KPTI to prevent Meltdown attacks and, more generally, reduce the number of hardware side channels.
-
CONFIG_INTEL_TXT=n
CLIP OS does not use Intel Trusted Execution Technology.
-
CONFIG_HARDENED_USERCOPY=y
Harden data copies between kernel and user spaces, preventing classes of heap overflow exploits and information leaks.
-
CONFIG_HARDENED_USERCOPY_FALLBACK=n
Use strict whitelisting mode, i.e., do not
WARN()
.
-
CONFIG_FORTIFY_SOURCE=y
Leverage compiler to detect buffer overflows.
-
CONFIG_FORTIFY_SOURCE_STRICT_STRING=n
This extends
FORTIFY_SOURCE
to intra-object overflow checking. It is useful to find bugs but not recommended for a production kernel yet. [linux-hardened]
-
CONFIG_STATIC_USERMODEHELPER=y
This makes the kernel route all usermode helper calls to a single binary that cannot have its name changed. Without this, the kernel can be tricked into calling an attacker-controlled binary (e.g. to bypass SMAP, cf. exploitation of CVE-2016-8655).
-
CONFIG_STATIC_USERMODEHELPER_PATH=""
Currently, we have no need for usermode helpers therefore we simply disable them. If we ever need some, this path will need to be set to a custom trusted binary in charge of filtering and choosing what real helpers should then be called.
-
-
CONFIG_SECURITY=y
Enable us to choose different security modules.
-
CONFIG_SECURITY_SELINUX=y
CLIP OS intends to leverage SELinux in its security model.
-
CONFIG_SECURITY_SELINUX_BOOTPARAM=n
We do not need SELinux to be disableable.
-
CONFIG_SECURITY_SELINUX_DISABLE=n
We do not want SELinux to be disabled. In addition, keeping this option off makes LSM structures such as security hooks read-only.
-
CONFIG_SECURITY_SELINUX_DEVELOP=y
For now, but will eventually be
n
.
-
CONFIG_SECURITY_LOCKDOWN_LSM=y
-
CONFIG_SECURITY_LOCKDOWN_LSM_EARLY=y
-
CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY=y
Basically, the lockdown LSM tries to strengthen the boundary between the superuser and the kernel. The integrity mode thus restricts access to features that would allow userland to modify the running kernel, and the confidentiality mode extends these restrictions to features that would allow userland to extract confidential information held inside the kernel. Note that a significant portion of such features is already disabled in the CLIP OS kernel due to our custom configuration. The lockdown functionality is important for CLIP OS as we want to prevent an attacker, be he highly privileged, from persisting on a compromised machine.
-
CONFIG_LSM="yama"
SELinux shall be stacked too once CLIP OS uses it.
-
CONFIG_SECURITY_YAMA=y
The Yama LSM currently provides ptrace scope restriction (which might be redundant with CLIP-LSM in the future).
-
CONFIG_INTEGRITY=n
The integrity subsystem provides several components, the security benefits of which are already enforced by CLIP OS (e.g., read-only mounts for all parts of the system containing executable programs).
-
CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y
See documentation about the
kernel.perf_event_paranoid
sysctl below. [linux-hardened]
-
CONFIG_SECURITY_TIOCSTI_RESTRICT=y
This prevents unprivileged users from using the TIOCSTI ioctl to inject commands into other processes that share a tty session. [linux-hardened]
-
CONFIG_GCC_PLUGIN_STACKLEAK=y
-
CONFIG_STACKLEAK_TRACK_MIN_SIZE=100
-
CONFIG_STACKLEAK_METRICS=n
-
CONFIG_STACKLEAK_RUNTIME_DISABLE=n
STACKLEAK
erases the kernel stack before returning from system calls,
leaving it initialized to a poison value. This both reduces the information
that kernel stack leak bugs can reveal and the exploitability of uninitialized
stack variables. However, it does not cover functions reaching the same stack
depth as prior functions during the same system call.
It used to also block kernel stack depth overflows caused by alloca()
, such
as Stack Clash attacks. We maintained this functionality for our kernel for a
while but eventually dropped it.
-
CONFIG_INIT_ON_FREE_DEFAULT_ON=y
-
CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y
These set
init_on_free=1
andinit_on_alloc=1
on the kernel command line. See the documentation of these kernel parameters for details.
-
CONFIG_PAGE_SANITIZE_VERIFY=y
-
CONFIG_SLAB_SANITIZE_VERIFY=y
Verify that newly allocated pages and slab allocations are zeroed to detect write-after-free bugs. This works in concert with
init_on_free
and is adjusted to not be redundant withinit_on_alloc
. [linux-hardened]
Compilation¶
GCC version 7.3.0 or higher is required to fully benefit from retpolines
(-mindirect-branch=thunk-extern
).
Sysctl Security Tuning¶
Many sysctls are not security-relevant or only play a role if some kernel configuration options are enabled/disabled. In other words, the following is tightly related to the CLIP OS kernel configuration detailed above.
-
dev.tty.ldisc_autoload = 0
See
CONFIG_LDISC_AUTOLOAD
above, which serves as a default value for this sysctl.
-
kernel.kptr_restrict = 2
Hide kernel addresses in
/proc
and other interfaces, even to privileged users.
-
kernel.yama.ptrace_scope = 3
Enable the strictest ptrace scope restriction provided by the Yama LSM.
-
kernel.perf_event_paranoid = 3
This completely disallows unprivileged access to the
perf_event_open()
system call. This is actually not needed as we already enableCONFIG_SECURITY_PERF_EVENTS_RESTRICT
. [linux-hardened]Note that this requires a patch included in linux-hardened (see here for the reason why it is not upstream). Indeed, on a mainline kernel without such a patch, the above is equivalent to setting this sysctl to
2
, which would still allow the profiling of user processes.
-
kernel.tiocsti_restrict = 1
This is already forced by the
CONFIG_SECURITY_TIOCSTI_RESTRICT
kernel configuration option that we enable. [linux-hardened]
The following two sysctls help mitigating TOCTOU vulnerabilities by preventing users from creating symbolic or hard links to files they do not own or have read/write access to:
fs.protected_symlinks = 1
fs.protected_hardlinks = 1
In addition, the following other two sysctls impose restrictions on the opening of FIFOs and regular files in order to make similar spoofing attacks harder (note however that these restrictions currently do not apply to networked filesystems, among others):
fs.protected_fifos = 2
fs.protected_regular = 2
We do not simply disable the BPF Just in Time compiler as CLIP OS plans on using it:
kernel.unprivileged_bpf_disabled = 1
Prevent unprivileged users from using BPF.
net.core.bpf_jit_harden = 2
Trades off performance but helps mitigate JIT spraying.
-
kernel.deny_new_usb = 0
The management of USB devices is handled at a higher level by CLIP OS. [linux-hardened]
-
kernel.device_sidechannel_restrict = 1
Restrict device timing side channels. [linux-hardened]
-
fs.suid_dumpable = 0
Do not create core dumps of setuid executables. Note that we already disable all core dumps by setting
CONFIG_COREDUMP=n
.
-
kernel.pid_max = 65536
Increase the space for PID values.
-
kernel.modules_disabled = 1
Disable module loading once systemd has loaded the ones required for the running machine according to a profile (i.e., a predefined and hardware-specific list of modules).
Pure network sysctls (net.ipv4.*
and net.ipv6.*
) will be detailed in a
separate place.
Command line parameters¶
We pass the following command line parameters to the kernel:
-
extra_latent_entropy
This parameter provided by a linux-hardened patch (based on the PaX implementation) enables a very simple form of latent entropy extracted during system start-up and added to the entropy obtained with
GCC_PLUGIN_LATENT_ENTROPY
. [linux-hardened]
-
pti=on
This force-enables KPTI even on CPUs claiming to be safe from Meltdown.
-
spectre_v2=on
Same reasoning as above but for the Spectre v2 vulnerability. Note that this implies
spectre_v2_user=on
, which enables the mitigation against user space to user space task attacks (namely IBPB and STIBP when available and relevant).
-
spec_store_bypass_disable=seccomp
Same reasoning as above but for the Spectre v4 vulnerability. Note that this mitigation requires updated microcode for Intel processors.
-
mds=full,nosmt
This parameter controls optional mitigations for the Microarchitectural Data Sampling (MDS) class of Intel CPU vulnerabilities. Not specifying this parameter is equivalent to setting
mds=full
, which leaves SMT enabled and therefore is not a complete mitigation. Note that this mitigation requires an Intel microcode update and also addresses the TSX Asynchronous Abort (TAA) Intel CPU vulnerability on systems that are affected by MDS.
-
iommu=force
Even if we correctly enable the IOMMU in the kernel configuration, the kernel can still decide for various reasons to not initialize it at boot. Therefore, we force it with this parameter. Note that with some Intel chipsets, you may need to add
intel_iommu=igfx_off
to allow your GPU to access the physical memory directly without going through the DMA Remapping.
-
slub_debug=F
The
F
option adds many sanity checks to various slab operations. Other interesting options that we considered but eventually chose to not use are:- The
P
option, which enables poisoning on slab cache allocations, disables theinit_on_free
andSLAB_SANITIZE_VERIFY
features. As they respectively poison with zeroes on object freeing and check the zeroing on object allocations, we prefer enabling them instead of usingslub_debug=P
. - The
Z
option enables red zoning, i.e., it adds extra areas around slab objects that detect when one is overwritten past its real size. This can help detect overflows but we already rely onSLAB_CANARY
provided by linux-hardened. A canary is much better than a simple red zone as it is supposed to be random.
- The
-
mce=0
This makes the system always panic on uncorrected errors reported by the Machine Check support. Otherwise, some of them may only cause a SIGBUS to be sent, potentially allowing a malicious process to keep trying to exploit a hardware bug like Rowhammer.
-
page_alloc.shuffle=1
See
CONFIG_SHUFFLE_PAGE_ALLOCATOR
.
-
rng_core.default_quality=512
Increase trust in the TPM’s HWRNG to robustly and fastly initialize Linux’s CSPRNG by crediting half of the entropy it provides.
Also, note that:
slub_nomerge
is not used as we already setCONFIG_SLAB_MERGE_DEFAULT=n
in the kernel configuration.l1tf
: The built-in PTE Inversion mitigation is sufficient to mitigate the L1TF vulnerability as long as CLIP OS is not used as an hypervisor with untrusted guest VMs. If it were to be someday,l1tf=full,force
should be used to force-enable VMX unconditional cache flushes and force-disable SMT (note that an Intel microcode update is not required for this mitigation to work but improves performance by providing a way to invalidate caches with a finer granularity).tsx=off
: This parameter is already set by default thanks toCONFIG_X86_INTEL_TSX_MODE_OFF
. It deactivates the Intel TSX feature on CPUs that support TSX control (i.e. are recent enough or received a microcode update) and that are not already vulnerable to MDS, therefore mitigating the TSX Asynchronous Abort (TAA) Intel CPU vulnerability.tsx_async_abort
: This parameter controls optional mitigations for the TSX Asynchronous Abort (TAA) Intel CPU vulnerability. Due to our use ofmds=full,nosmt
in addition toCONFIG_X86_INTEL_TSX_MODE_OFF
, CLIP OS is already protected against this vulnerability as long as the CPU microcode has been updated, whether or not the CPU is affected by MDS. For the record, if we wanted to keep TSX activated, we could specifytsx_async_abort=full,nosmt
. Not specifying this parameter is equivalent to settingtsx_async_abort=full
, which leaves SMT enabled and therefore is not a complete mitigation. Note that this mitigation requires an Intel microcode update and has no effect on systems that are already affected by MDS and enable mitigations against it, nor on systems that disable TSX.kvm.nx_huge_pages
: This parameter allows to control the KVM hypervisor iTLB multihit mitigations. Such mitigations are not needed as long as CLIP OS is not used as an hypervisor with untrusted guest VMs. If it were to be someday,kvm.nx_huge_pages=force
should be used to ensure that guests cannot exploit the iTLB multihit erratum to crash the host.mitigations
: This parameter controls optional mitigations for CPU vulnerabilities in an arch-independent and more coarse-grained way. For now, we keep using arch-specific options for the sake of explicitness. Not setting this parameter equals setting it toauto
, which itself does not update anything.init_on_free=1
is automatically set due toINIT_ON_FREE_DEFAULT_ON
. It zero-fills page and slab allocations on free to reduce risks of information leaks and help mitigate a subset of use-after-free vulnerabilities.init_on_alloc=1
is automatically set due toINIT_ON_ALLOC_DEFAULT_ON
. The purpose of this functionality is to eliminate several kinds of uninitialized heap memory flaws by zero-filling:- all page allocator and slab allocator memory when allocated: this is
already guaranteed by our use of
init_on_free
in combination withPAGE_SANITIZE_VERIFY
andSLAB_SANITIZE_VERIFY
from linux-hardened, and thus has no effect; - a few more special objects when allocated: these are the ones for which
we enable
init_on_alloc
as they are not covered by the aforementioned combination ofinit_on_free
andSANITIZE_VERIFY
features.
- all page allocator and slab allocator memory when allocated: this is
already guaranteed by our use of
efi=disable_early_pci_dma
is not used as we already setCONFIG_EFI_DISABLE_PCI_DMA=y
in the kernel configuration.
Citations and origin of some items
[linux-hardened] | (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11) This item is provided by the linux-hardened patches. |