1 # QEMU-related utilities shared between various Nix expressions.
6 lib.optionalString (n < 16) "0" +
8 then throw "Can't have more than 255 nets or nodes!"
9 else lib.toHexString n);
13 qemuNicMac = net: machine: "52:54:00:12:${zeroPad net}:${zeroPad machine}";
15 qemuNICFlags = nic: net: machine:
17 "-device virtio-net-pci,netdev=vlan${toString nic},mac=${qemuNicMac net machine}"
18 ''-netdev vde,id=vlan${toString nic},sock="$QEMU_VDE_SOCKET_${toString net}"''
22 if with pkgs.stdenv.hostPlatform; isx86 || isLoongArch64 || isMips64 || isRiscV then "ttyS0"
23 else if (with pkgs.stdenv.hostPlatform; isAarch || isPower) then "ttyAMA0"
24 else throw "Unknown QEMU serial device for system '${pkgs.stdenv.hostPlatform.system}'";
28 hostStdenv = qemuPkg.stdenv;
29 hostSystem = hostStdenv.system;
30 guestSystem = pkgs.stdenv.hostPlatform.system;
32 linuxHostGuestMatrix = {
33 x86_64-linux = "${qemuPkg}/bin/qemu-kvm -cpu max";
34 armv7l-linux = "${qemuPkg}/bin/qemu-system-arm -machine virt,accel=kvm:tcg -cpu max";
35 aarch64-linux = "${qemuPkg}/bin/qemu-system-aarch64 -machine virt,gic-version=max,accel=kvm:tcg -cpu max";
36 powerpc64le-linux = "${qemuPkg}/bin/qemu-system-ppc64 -machine powernv";
37 powerpc64-linux = "${qemuPkg}/bin/qemu-system-ppc64 -machine powernv";
38 x86_64-darwin = "${qemuPkg}/bin/qemu-kvm -cpu max";
40 otherHostGuestMatrix = {
42 aarch64-linux = "${qemuPkg}/bin/qemu-system-aarch64 -machine virt,gic-version=2,accel=hvf:tcg -cpu max";
43 inherit (otherHostGuestMatrix.x86_64-darwin) x86_64-linux;
46 x86_64-linux = "${qemuPkg}/bin/qemu-system-x86_64 -machine type=q35,accel=hvf:tcg -cpu max";
50 throwUnsupportedHostSystem =
52 supportedSystems = [ "linux" ] ++ (lib.attrNames otherHostGuestMatrix);
54 throw "Unsupported host system ${hostSystem}, supported: ${lib.concatStringsSep ", " supportedSystems}";
55 throwUnsupportedGuestSystem = guestMap:
56 throw "Unsupported guest system ${guestSystem} for host ${hostSystem}, supported: ${lib.concatStringsSep ", " (lib.attrNames guestMap)}";
58 if hostStdenv.isLinux then
59 linuxHostGuestMatrix.${guestSystem} or "${qemuPkg}/bin/qemu-kvm"
62 guestMap = (otherHostGuestMatrix.${hostSystem} or throwUnsupportedHostSystem);
64 (guestMap.${guestSystem} or (throwUnsupportedGuestSystem guestMap));