2013-10-31 12:26:06 +00:00
|
|
|
# Systemd services for libvirtd.
|
2011-02-25 15:07:52 +00:00
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
let
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
cfg = config.virtualisation.libvirtd;
|
2013-08-15 19:50:16 +00:00
|
|
|
configFile = pkgs.writeText "libvirtd.conf" ''
|
|
|
|
unix_sock_group = "libvirtd"
|
|
|
|
unix_sock_rw_perms = "0770"
|
|
|
|
auth_unix_ro = "none"
|
|
|
|
auth_unix_rw = "none"
|
|
|
|
${cfg.extraConfig}
|
|
|
|
'';
|
2011-02-25 15:07:52 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
virtualisation.libvirtd.enable =
|
2011-02-25 15:07:52 +00:00
|
|
|
mkOption {
|
|
|
|
default = false;
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
This option enables libvirtd, a daemon that manages
|
2013-08-16 19:25:00 +00:00
|
|
|
virtual machines. Users in the "libvirtd" group can interact with
|
|
|
|
the daemon (e.g. to start or stop VMs) using the
|
2011-02-25 15:07:52 +00:00
|
|
|
<command>virsh</command> command line tool, among others.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
virtualisation.libvirtd.enableKVM =
|
2011-02-25 15:07:52 +00:00
|
|
|
mkOption {
|
|
|
|
default = true;
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
This option enables support for QEMU/KVM in libvirtd.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-08-15 19:50:16 +00:00
|
|
|
virtualisation.libvirtd.extraConfig =
|
|
|
|
mkOption {
|
|
|
|
default = "";
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
Extra contents appended to the libvirtd configuration file,
|
|
|
|
libvirtd.conf.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-02-25 15:07:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
environment.systemPackages =
|
2013-10-17 12:17:29 +00:00
|
|
|
[ pkgs.libvirt pkgs.netcat-openbsd ]
|
2011-03-16 12:31:06 +00:00
|
|
|
++ optional cfg.enableKVM pkgs.qemu_kvm;
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2011-03-15 10:52:44 +00:00
|
|
|
boot.kernelModules = [ "tun" ];
|
|
|
|
|
2013-01-16 11:33:18 +00:00
|
|
|
systemd.services.libvirtd =
|
2012-10-26 14:21:35 +00:00
|
|
|
{ description = "Libvirt Virtual Machine Management Daemon";
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2012-10-26 14:21:35 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
after = [ "systemd-udev-settle.service" ];
|
2011-02-25 15:07:52 +00:00
|
|
|
|
|
|
|
path =
|
2011-03-15 09:42:49 +00:00
|
|
|
[ pkgs.bridge_utils pkgs.dmidecode pkgs.dnsmasq
|
2011-03-31 15:24:13 +00:00
|
|
|
pkgs.ebtables
|
2011-02-25 15:07:52 +00:00
|
|
|
] ++ optional cfg.enableKVM pkgs.qemu_kvm;
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
preStart =
|
2011-03-15 09:42:49 +00:00
|
|
|
''
|
|
|
|
mkdir -p /var/log/libvirt/qemu -m 755
|
2011-03-16 13:52:52 +00:00
|
|
|
rm -f /var/run/libvirtd.pid
|
2011-03-31 22:10:26 +00:00
|
|
|
|
2013-11-09 15:31:10 +00:00
|
|
|
mkdir -p /var/lib/libvirt
|
|
|
|
mkdir -p /var/lib/libvirt/dnsmasq
|
|
|
|
|
|
|
|
chmod 755 /var/lib/libvirt
|
|
|
|
chmod 755 /var/lib/libvirt/dnsmasq
|
2011-03-31 22:10:26 +00:00
|
|
|
|
|
|
|
# Libvirt unfortunately writes mutable state (such as
|
|
|
|
# runtime changes to VM, network or filter configurations)
|
|
|
|
# to /etc. So we can't use environment.etc to make the
|
|
|
|
# default network and filter definitions available, since
|
|
|
|
# libvirt will then modify the originals in the Nix store.
|
|
|
|
# So here we copy them instead. Ugly.
|
|
|
|
for i in $(cd ${pkgs.libvirt}/etc && echo \
|
|
|
|
libvirt/qemu/networks/*.xml libvirt/qemu/networks/autostart/*.xml \
|
|
|
|
libvirt/nwfilter/*.xml );
|
|
|
|
do
|
|
|
|
mkdir -p /etc/$(dirname $i) -m 755
|
|
|
|
cp -fpd ${pkgs.libvirt}/etc/$i /etc/$i
|
|
|
|
done
|
2013-11-27 20:31:15 +00:00
|
|
|
|
|
|
|
# libvirtd puts the full path of the emulator binary in the machine
|
|
|
|
# config file. But this path can unfortunately be garbage collected
|
|
|
|
# while still being used by the virtual machine. So update the
|
|
|
|
# emulator path on each startup to something valid (re-scan $PATH).
|
|
|
|
for file in /etc/libvirt/qemu/*.xml; do
|
2013-12-09 18:41:44 +00:00
|
|
|
test -f "$file" || continue
|
2013-11-27 20:31:15 +00:00
|
|
|
# get (old) emulator path from config file
|
|
|
|
emulator=$(grep "^[[:space:]]*<emulator>" "$file" | sed 's,^[[:space:]]*<emulator>\(.*\)</emulator>.*,\1,')
|
|
|
|
# get a (definitely) working emulator path by re-scanning $PATH
|
|
|
|
new_emulator=$(command -v $(basename "$emulator"))
|
|
|
|
# write back
|
|
|
|
sed -i "s,^[[:space:]]*<emulator>.*, <emulator>$new_emulator</emulator> <!-- WARNING: emulator dirname is auto-updated by the nixos libvirtd module -->," "$file"
|
|
|
|
done
|
2011-03-31 22:10:26 +00:00
|
|
|
''; # */
|
2011-03-15 09:42:49 +00:00
|
|
|
|
2013-08-15 19:50:16 +00:00
|
|
|
serviceConfig.ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" --daemon --verbose'';
|
2012-10-26 14:21:35 +00:00
|
|
|
serviceConfig.Type = "forking";
|
|
|
|
serviceConfig.KillMode = "process"; # when stopping, leave the VMs alone
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2011-04-01 18:08:53 +00:00
|
|
|
# Wait until libvirtd is ready to accept requests.
|
|
|
|
postStart =
|
|
|
|
''
|
|
|
|
for ((i = 0; i < 60; i++)); do
|
|
|
|
if ${pkgs.libvirt}/bin/virsh list > /dev/null; then exit 0; fi
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
exit 1 # !!! seems to be ignored
|
|
|
|
'';
|
2011-02-25 15:07:52 +00:00
|
|
|
};
|
|
|
|
|
2012-04-19 15:12:55 +00:00
|
|
|
jobs."libvirt-guests" =
|
2012-10-26 14:21:35 +00:00
|
|
|
{ description = "Libvirt Virtual Machines";
|
2011-02-25 15:56:49 +00:00
|
|
|
|
2012-10-26 14:21:35 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
wants = [ "libvirtd.service" ];
|
|
|
|
after = [ "libvirtd.service" ];
|
2011-02-25 15:56:49 +00:00
|
|
|
|
2012-04-19 15:12:55 +00:00
|
|
|
restartIfChanged = false;
|
2011-02-25 15:56:49 +00:00
|
|
|
|
|
|
|
path = [ pkgs.gettext pkgs.libvirt pkgs.gawk ];
|
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
preStart =
|
2011-02-25 15:56:49 +00:00
|
|
|
''
|
|
|
|
mkdir -p /var/lock/subsys -m 755
|
2011-04-01 18:08:53 +00:00
|
|
|
${pkgs.libvirt}/etc/rc.d/init.d/libvirt-guests start || true
|
2011-02-25 15:56:49 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
postStop = "${pkgs.libvirt}/etc/rc.d/init.d/libvirt-guests stop";
|
2011-04-01 18:08:53 +00:00
|
|
|
|
2012-10-26 14:21:35 +00:00
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2012-04-19 15:12:55 +00:00
|
|
|
};
|
|
|
|
|
2013-08-15 22:47:21 +00:00
|
|
|
users.extraGroups.libvirtd.gid = config.ids.gids.libvirtd;
|
2013-08-15 19:50:16 +00:00
|
|
|
|
2011-02-25 15:07:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|