2017-04-29 19:42:02 +01:00
|
|
|
# Based on recommendations from:
|
|
|
|
# http://kernsec.org/wiki/index.php/Kernel_Self_Protection_Project#Recommended_settings
|
|
|
|
# https://wiki.gentoo.org/wiki/Hardened/Hardened_Kernel_Project
|
|
|
|
#
|
|
|
|
# Dangerous features that can be permanently (for the boot session) disabled at
|
|
|
|
# boot via sysctl or kernel cmdline are left enabled here, for improved
|
|
|
|
# flexibility.
|
2017-08-06 19:27:52 +01:00
|
|
|
#
|
|
|
|
# See also <nixos/modules/profiles/hardened.nix>
|
2017-04-29 19:42:02 +01:00
|
|
|
|
2021-01-25 08:26:54 +00:00
|
|
|
{ lib, version }:
|
2017-04-29 19:42:02 +01:00
|
|
|
|
2021-01-15 14:45:37 +00:00
|
|
|
with lib;
|
|
|
|
with lib.kernel;
|
|
|
|
with (lib.kernel.whenHelpers version);
|
2019-09-19 12:12:35 +01:00
|
|
|
|
2017-05-06 18:02:16 +01:00
|
|
|
assert (versionAtLeast version "4.9");
|
|
|
|
|
2020-04-04 22:58:45 +01:00
|
|
|
{
|
2018-10-03 10:53:23 +01:00
|
|
|
# Report BUG() conditions and kill the offending process.
|
|
|
|
BUG = yes;
|
|
|
|
|
|
|
|
# Safer page access permissions (wrt. code injection). Default on >=4.11.
|
|
|
|
DEBUG_RODATA = whenOlder "4.11" yes;
|
|
|
|
DEBUG_SET_MODULE_RONX = whenOlder "4.11" yes;
|
|
|
|
|
|
|
|
# Mark LSM hooks read-only after init. SECURITY_WRITABLE_HOOKS n
|
|
|
|
# conflicts with SECURITY_SELINUX_DISABLE y; disabling the latter
|
|
|
|
# implicitly marks LSM hooks read-only after init.
|
|
|
|
#
|
|
|
|
# SELinux can only be disabled at boot via selinux=0
|
|
|
|
#
|
|
|
|
# We set SECURITY_WRITABLE_HOOKS n primarily for documentation purposes; the
|
|
|
|
# config builder fails to detect that it has indeed been unset.
|
|
|
|
SECURITY_SELINUX_DISABLE = whenAtLeast "4.12" no;
|
|
|
|
SECURITY_WRITABLE_HOOKS = whenAtLeast "4.12" (option no);
|
|
|
|
|
|
|
|
STRICT_KERNEL_RWX = whenAtLeast "4.11" yes;
|
|
|
|
|
|
|
|
# Perform additional validation of commonly targeted structures.
|
|
|
|
DEBUG_CREDENTIALS = yes;
|
|
|
|
DEBUG_NOTIFIERS = yes;
|
2020-06-10 15:05:17 +01:00
|
|
|
DEBUG_PI_LIST = whenOlder "5.2" yes; # doesn't BUG()
|
|
|
|
DEBUG_PLIST = whenAtLeast "5.2" yes;
|
2018-10-03 10:53:23 +01:00
|
|
|
DEBUG_SG = yes;
|
|
|
|
SCHED_STACK_END_CHECK = yes;
|
|
|
|
|
2020-06-10 15:05:17 +01:00
|
|
|
REFCOUNT_FULL = whenBetween "4.13" "5.5" yes;
|
2018-10-03 10:53:23 +01:00
|
|
|
|
2019-07-18 13:00:06 +01:00
|
|
|
# Randomize page allocator when page_alloc.shuffle=1
|
|
|
|
SHUFFLE_PAGE_ALLOCATOR = whenAtLeast "5.2" yes;
|
|
|
|
|
2018-10-03 10:53:23 +01:00
|
|
|
# Allow enabling slub/slab free poisoning with slub_debug=P
|
|
|
|
SLUB_DEBUG = yes;
|
|
|
|
|
|
|
|
# Wipe higher-level memory allocations on free() with page_poison=1
|
|
|
|
PAGE_POISONING = yes;
|
2021-03-23 13:50:52 +00:00
|
|
|
PAGE_POISONING_NO_SANITY = whenOlder "5.11" yes;
|
|
|
|
PAGE_POISONING_ZERO = whenOlder "5.11" yes;
|
2018-10-03 10:53:23 +01:00
|
|
|
|
2019-05-07 10:08:36 +01:00
|
|
|
# Enable the SafeSetId LSM
|
|
|
|
SECURITY_SAFESETID = whenAtLeast "5.1" yes;
|
|
|
|
|
2018-10-03 10:53:23 +01:00
|
|
|
# Reboot devices immediately if kernel experiences an Oops.
|
|
|
|
PANIC_TIMEOUT = freeform "-1";
|
|
|
|
|
|
|
|
GCC_PLUGINS = yes; # Enable gcc plugin options
|
2020-06-10 15:29:14 +01:00
|
|
|
# Gather additional entropy at boot time for systems that may not have appropriate entropy sources.
|
2018-10-03 10:53:23 +01:00
|
|
|
GCC_PLUGIN_LATENT_ENTROPY = yes;
|
|
|
|
|
|
|
|
GCC_PLUGIN_STRUCTLEAK = whenAtLeast "4.11" yes; # A port of the PaX structleak plugin
|
|
|
|
GCC_PLUGIN_STRUCTLEAK_BYREF_ALL = whenAtLeast "4.14" yes; # Also cover structs passed by address
|
|
|
|
GCC_PLUGIN_STACKLEAK = whenAtLeast "4.20" yes; # A port of the PaX stackleak plugin
|
|
|
|
GCC_PLUGIN_RANDSTRUCT = whenAtLeast "4.13" yes; # A port of the PaX randstruct plugin
|
|
|
|
GCC_PLUGIN_RANDSTRUCT_PERFORMANCE = whenAtLeast "4.13" yes;
|
|
|
|
|
|
|
|
# Disable various dangerous settings
|
|
|
|
ACPI_CUSTOM_METHOD = no; # Allows writing directly to physical memory
|
|
|
|
PROC_KCORE = no; # Exposes kernel text image layout
|
|
|
|
INET_DIAG = no; # Has been used for heap based attacks in the past
|
|
|
|
|
2020-06-10 15:29:14 +01:00
|
|
|
# INET_DIAG=n causes the following options to not exist anymore, but since they are defined in common-config.nix,
|
|
|
|
# make them optional
|
|
|
|
INET_DIAG_DESTROY = option no;
|
|
|
|
INET_RAW_DIAG = option no;
|
|
|
|
INET_TCP_DIAG = option no;
|
|
|
|
INET_UDP_DIAG = option no;
|
|
|
|
INET_MPTCP_DIAG = option no;
|
|
|
|
|
2018-10-03 10:53:23 +01:00
|
|
|
# Use -fstack-protector-strong (gcc 4.9+) for best stack canary coverage.
|
|
|
|
CC_STACKPROTECTOR_REGULAR = whenOlder "4.18" no;
|
|
|
|
CC_STACKPROTECTOR_STRONG = whenOlder "4.18" yes;
|
|
|
|
|
|
|
|
}
|