2020-08-21 20:29:11 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, latestKernel ? false, ... } : {
|
2017-04-30 07:38:47 +01:00
|
|
|
name = "hardened";
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ joachifm ];
|
|
|
|
};
|
|
|
|
|
|
|
|
machine =
|
2019-01-06 12:17:38 +00:00
|
|
|
{ lib, pkgs, config, ... }:
|
2017-04-30 07:38:47 +01:00
|
|
|
with lib;
|
|
|
|
{ users.users.alice = { isNormalUser = true; extraGroups = [ "proc" ]; };
|
|
|
|
users.users.sybil = { isNormalUser = true; group = "wheel"; };
|
|
|
|
imports = [ ../modules/profiles/hardened.nix ];
|
2020-04-05 00:29:24 +01:00
|
|
|
boot.kernelPackages =
|
|
|
|
lib.mkIf latestKernel pkgs.linuxPackages_latest_hardened;
|
2019-09-18 14:34:56 +01:00
|
|
|
environment.memoryAllocator.provider = "graphene-hardened";
|
2018-11-24 13:57:50 +00:00
|
|
|
nix.useSandbox = false;
|
2017-09-22 22:20:42 +01:00
|
|
|
virtualisation.emptyDiskImages = [ 4096 ];
|
|
|
|
boot.initrd.postDeviceCommands = ''
|
|
|
|
${pkgs.dosfstools}/bin/mkfs.vfat -n EFISYS /dev/vdb
|
|
|
|
'';
|
|
|
|
fileSystems = lib.mkVMOverride {
|
|
|
|
"/efi" = {
|
|
|
|
device = "/dev/disk/by-label/EFISYS";
|
|
|
|
fsType = "vfat";
|
|
|
|
options = [ "noauto" ];
|
|
|
|
};
|
|
|
|
};
|
2020-04-05 00:29:24 +01:00
|
|
|
boot.extraModulePackages =
|
|
|
|
optional (versionOlder config.boot.kernelPackages.kernel.version "5.6")
|
|
|
|
config.boot.kernelPackages.wireguard;
|
2019-01-06 12:17:38 +00:00
|
|
|
boot.kernelModules = [ "wireguard" ];
|
2017-04-30 07:38:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
2019-04-23 21:24:16 +01:00
|
|
|
let
|
2019-08-13 22:52:01 +01:00
|
|
|
hardened-malloc-tests = pkgs.stdenv.mkDerivation {
|
2019-04-23 21:24:16 +01:00
|
|
|
name = "hardened-malloc-tests-${pkgs.graphene-hardened-malloc.version}";
|
|
|
|
src = pkgs.graphene-hardened-malloc.src;
|
|
|
|
buildPhase = ''
|
|
|
|
cd test/simple-memory-corruption
|
|
|
|
make -j4
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
find . -type f -executable -exec install -Dt $out/bin '{}' +
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
2017-04-30 07:38:47 +01:00
|
|
|
''
|
2020-08-21 20:29:11 +01:00
|
|
|
machine.wait_for_unit("multi-user.target")
|
|
|
|
|
|
|
|
|
|
|
|
with subtest("AppArmor profiles are loaded"):
|
|
|
|
machine.succeed("systemctl status apparmor.service")
|
2018-05-19 07:42:15 +01:00
|
|
|
|
2019-05-11 17:20:41 +01:00
|
|
|
|
|
|
|
# AppArmor securityfs
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("AppArmor securityfs is mounted"):
|
|
|
|
machine.succeed("mountpoint -q /sys/kernel/security")
|
|
|
|
machine.succeed("cat /sys/kernel/security/apparmor/profiles")
|
|
|
|
|
2019-05-11 17:20:41 +01:00
|
|
|
|
2019-01-06 12:17:38 +00:00
|
|
|
# Test loading out-of-tree modules
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("Out-of-tree modules can be loaded"):
|
|
|
|
machine.succeed("grep -Fq wireguard /proc/modules")
|
|
|
|
|
2019-01-06 12:17:38 +00:00
|
|
|
|
2017-04-30 07:38:47 +01:00
|
|
|
# Test hidepid
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("hidepid=2 option is applied and works"):
|
2020-10-05 14:07:21 +01:00
|
|
|
# Linux >= 5.8 shows "invisible"
|
|
|
|
machine.succeed(
|
|
|
|
"grep -Fq hidepid=2 /proc/mounts || grep -Fq hidepid=invisible /proc/mounts"
|
|
|
|
)
|
2018-05-19 07:42:15 +01:00
|
|
|
# cannot use pgrep -u here, it segfaults when access to process info is denied
|
2020-08-21 20:29:11 +01:00
|
|
|
machine.succeed("[ `su - sybil -c 'ps --no-headers --user root | wc -l'` = 0 ]")
|
|
|
|
machine.succeed("[ `su - alice -c 'ps --no-headers --user root | wc -l'` != 0 ]")
|
|
|
|
|
2017-04-30 07:38:47 +01:00
|
|
|
|
|
|
|
# Test kernel module hardening
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("No more kernel modules can be loaded"):
|
2017-04-30 07:38:47 +01:00
|
|
|
# note: this better a be module we normally wouldn't load ...
|
2020-08-21 20:29:11 +01:00
|
|
|
machine.fail("modprobe dccp")
|
|
|
|
|
2017-04-30 13:41:56 +01:00
|
|
|
|
|
|
|
# Test userns
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("User namespaces are restricted"):
|
|
|
|
machine.succeed("unshare --user true")
|
|
|
|
machine.fail("su -l alice -c 'unshare --user true'")
|
|
|
|
|
2017-09-16 10:46:26 +01:00
|
|
|
|
|
|
|
# Test dmesg restriction
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("Regular users cannot access dmesg"):
|
|
|
|
machine.fail("su -l alice -c dmesg")
|
|
|
|
|
2017-09-16 10:46:26 +01:00
|
|
|
|
|
|
|
# Test access to kcore
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("Kcore is inaccessible as root"):
|
|
|
|
machine.fail("cat /proc/kcore")
|
|
|
|
|
2017-09-22 22:20:42 +01:00
|
|
|
|
|
|
|
# Test deferred mount
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("Deferred mounts work"):
|
|
|
|
machine.fail("mountpoint -q /efi") # was deferred
|
|
|
|
machine.execute("mkdir -p /efi")
|
|
|
|
machine.succeed("mount /dev/disk/by-label/EFISYS /efi")
|
|
|
|
machine.succeed("mountpoint -q /efi") # now mounted
|
|
|
|
|
2018-11-24 14:13:03 +00:00
|
|
|
|
|
|
|
# Test Nix dæmon usage
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("nix-daemon cannot be used by all users"):
|
|
|
|
machine.fail("su -l nobody -s /bin/sh -c 'nix ping-store'")
|
|
|
|
machine.succeed("su -l alice -c 'nix ping-store'")
|
|
|
|
|
2018-12-16 09:37:36 +00:00
|
|
|
|
|
|
|
# Test kernel image protection
|
2020-08-21 20:29:11 +01:00
|
|
|
with subtest("The kernel image is protected"):
|
|
|
|
machine.fail("systemctl hibernate")
|
|
|
|
machine.fail("systemctl kexec")
|
2019-04-23 21:24:16 +01:00
|
|
|
|
|
|
|
|
2020-08-21 20:29:11 +01:00
|
|
|
# Test hardened memory allocator
|
|
|
|
def runMallocTestProg(prog_name, error_text):
|
|
|
|
text = "fatal allocator error: " + error_text
|
|
|
|
if not text in machine.fail(
|
|
|
|
"${hardened-malloc-tests}/bin/"
|
|
|
|
+ prog_name
|
|
|
|
+ " 2>&1"
|
|
|
|
):
|
|
|
|
raise Exception("Hardened malloc does not work for {}".format(error_text))
|
|
|
|
|
|
|
|
|
|
|
|
with subtest("The hardened memory allocator works"):
|
|
|
|
runMallocTestProg("double_free_large", "invalid free")
|
|
|
|
runMallocTestProg("unaligned_free_small", "invalid unaligned free")
|
|
|
|
runMallocTestProg("write_after_free_small", "detected write after free")
|
2017-04-30 07:38:47 +01:00
|
|
|
'';
|
|
|
|
})
|