summaryrefslogtreecommitdiffstats
path: root/nixos/tests/systemd-initrd-luks-fido2.nix
blob: 3c191dcbf509b0a0e787de0fb6906b618acff748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
  lib,
  hostPkgs,
  ...
}:
{
  name = "systemd-initrd-luks-fido2";

  qemu.package = hostPkgs.qemu_test.override { canokeySupport = true; };

  nodes.machine =
    { pkgs, config, ... }:
    {
      # Use systemd-boot
      virtualisation = {
        emptyDiskImages = [ 512 ];
        useBootLoader = true;
        # Booting off the encrypted disk requires having a Nix store available for the init script
        mountHostNixStore = true;
        useEFIBoot = true;
        qemu.options = [
          "-device pci-ohci,id=usb-bus"
          "-device canokey,bus=usb-bus.0,file=/tmp/canokey-file"
        ];
      };

      boot.loader.systemd-boot.enable = true;

      boot.initrd.systemd.enable = true;

      environment.systemPackages = with pkgs; [ cryptsetup ];

      specialisation.boot-luks.configuration = {
        boot.initrd.luks.devices = lib.mkVMOverride {
          cryptroot = {
            device = "/dev/vdb";
            crypttabExtraOpts = [ "fido2-device=auto" ];
          };
        };
        virtualisation.rootDevice = "/dev/mapper/cryptroot";
      };
    };

  testScript =
    { nodes, ... }:
    let
      boot-luks = nodes.machine.specialisation.boot-luks.configuration.system.build.toplevel;
    in
    # python
    ''
      # Create encrypted volume
      machine.wait_for_unit("multi-user.target")
      machine.succeed("echo -n supersecret | cryptsetup luksFormat -q --iter-time=1 /dev/vdb -")
      machine.succeed("echo -n supersecret | cryptsetup luksOpen   -q               /dev/vdb cryptroot")
      machine.succeed("mkfs.ext4 /dev/mapper/cryptroot")
      machine.succeed("PASSWORD=supersecret SYSTEMD_LOG_LEVEL=debug systemd-cryptenroll --fido2-device=auto /dev/vdb |& systemd-cat")

      # Boot from the encrypted disk
      machine.succeed("${boot-luks}/bin/switch-to-configuration boot")
      machine.succeed("sync")
      machine.crash()

      # Boot and decrypt the disk
      machine.wait_for_unit("multi-user.target")
      assert "/dev/mapper/cryptroot on / type ext4" in machine.succeed("mount")
    '';
}