python312Packages.pueblo: 0.0.9 -> 0.0.10 (#361440)
[NixPkgs.git] / nixos / lib / qemu-common.nix
blob30d2d095aa27836d9360ad5e263843050827d353
1 # QEMU-related utilities shared between various Nix expressions.
2 { lib, pkgs }:
4 let
5   zeroPad = n:
6     lib.optionalString (n < 16) "0" +
7     (if n > 255
8     then throw "Can't have more than 255 nets or nodes!"
9     else lib.toHexString n);
12 rec {
13   qemuNicMac = net: machine: "52:54:00:12:${zeroPad net}:${zeroPad machine}";
15   qemuNICFlags = nic: net: machine:
16     [
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}"''
19     ];
21   qemuSerialDevice =
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}'";
26   qemuBinary = qemuPkg:
27     let
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         riscv32-linux = "${qemuPkg}/bin/qemu-system-riscv32 -machine virt";
39         riscv64-linux = "${qemuPkg}/bin/qemu-system-riscv64 -machine virt";
40         x86_64-darwin = "${qemuPkg}/bin/qemu-kvm -cpu max";
41       };
42       otherHostGuestMatrix = {
43         aarch64-darwin = {
44           aarch64-linux = "${qemuPkg}/bin/qemu-system-aarch64 -machine virt,gic-version=2,accel=hvf:tcg -cpu max";
45           inherit (otherHostGuestMatrix.x86_64-darwin) x86_64-linux;
46         };
47         x86_64-darwin = {
48           x86_64-linux = "${qemuPkg}/bin/qemu-system-x86_64 -machine type=q35,accel=hvf:tcg -cpu max";
49         };
50       };
52       throwUnsupportedHostSystem =
53         let
54           supportedSystems = [ "linux" ] ++ (lib.attrNames otherHostGuestMatrix);
55         in
56         throw "Unsupported host system ${hostSystem}, supported: ${lib.concatStringsSep ", " supportedSystems}";
57       throwUnsupportedGuestSystem = guestMap:
58         throw "Unsupported guest system ${guestSystem} for host ${hostSystem}, supported: ${lib.concatStringsSep ", " (lib.attrNames guestMap)}";
59     in
60     if hostStdenv.hostPlatform.isLinux then
61       linuxHostGuestMatrix.${guestSystem} or "${qemuPkg}/bin/qemu-kvm"
62     else
63       let
64         guestMap = (otherHostGuestMatrix.${hostSystem} or throwUnsupportedHostSystem);
65       in
66       (guestMap.${guestSystem} or (throwUnsupportedGuestSystem guestMap));