2013-10-31 12:26:06 +00:00
|
|
|
# Systemd services for libvirtd.
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2011-09-14 19:20:50 +01:00
|
|
|
let
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2011-09-14 19:20:50 +01:00
|
|
|
cfg = config.virtualisation.libvirtd;
|
2014-06-12 14:16:38 +01:00
|
|
|
vswitch = config.virtualisation.vswitch;
|
2013-08-15 20:50:16 +01: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 19:20:50 +01:00
|
|
|
virtualisation.libvirtd.enable =
|
2011-02-25 15:07:52 +00:00
|
|
|
mkOption {
|
2014-04-07 20:31:29 +01:00
|
|
|
type = types.bool;
|
2011-02-25 15:07:52 +00:00
|
|
|
default = false;
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
This option enables libvirtd, a daemon that manages
|
2013-08-16 20:25:00 +01: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 19:20:50 +01:00
|
|
|
virtualisation.libvirtd.enableKVM =
|
2011-02-25 15:07:52 +00:00
|
|
|
mkOption {
|
2014-04-07 20:31:29 +01:00
|
|
|
type = types.bool;
|
2011-02-25 15:07:52 +00:00
|
|
|
default = true;
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
This option enables support for QEMU/KVM in libvirtd.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-08-15 20:50:16 +01:00
|
|
|
virtualisation.libvirtd.extraConfig =
|
|
|
|
mkOption {
|
2014-04-07 20:31:29 +01:00
|
|
|
type = types.lines;
|
2013-08-15 20:50:16 +01:00
|
|
|
default = "";
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
Extra contents appended to the libvirtd configuration file,
|
|
|
|
libvirtd.conf.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-05-20 08:51:42 +01:00
|
|
|
virtualisation.libvirtd.extraOptions =
|
|
|
|
mkOption {
|
|
|
|
type = types.listOf types.str;
|
2015-05-20 09:06:21 +01:00
|
|
|
default = [ ];
|
2015-05-20 08:51:42 +01:00
|
|
|
example = [ "--verbose" ];
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
Extra command line arguments passed to libvirtd on startup.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-06-16 15:45:08 +01:00
|
|
|
virtualisation.libvirtd.onShutdown =
|
|
|
|
mkOption {
|
|
|
|
type = types.enum ["shutdown" "suspend" ];
|
|
|
|
default = "suspend";
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
When shutting down / restarting the host what method should
|
|
|
|
be used to gracefully halt the guests. Setting to "shutdown"
|
|
|
|
will cause an ACPI shutdown of each guest. "suspend" will
|
|
|
|
attempt to save the state of the guests ready to restore on boot.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-02-25 15:07:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2011-09-14 19:20:50 +01:00
|
|
|
environment.systemPackages =
|
2013-10-17 13:17:29 +01: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 15:21:35 +01:00
|
|
|
{ description = "Libvirt Virtual Machine Management Daemon";
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2012-10-26 15:21:35 +01:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2014-06-16 15:45:08 +01:00
|
|
|
after = [ "systemd-udev-settle.service" ]
|
|
|
|
++ optional vswitch.enable "vswitchd.service";
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2014-06-12 14:16:38 +01:00
|
|
|
path = [
|
2015-02-20 20:43:09 +00:00
|
|
|
pkgs.bridge-utils
|
2014-06-12 14:16:38 +01:00
|
|
|
pkgs.dmidecode
|
|
|
|
pkgs.dnsmasq
|
2011-03-31 16:24:13 +01:00
|
|
|
pkgs.ebtables
|
2014-06-12 14:16:38 +01:00
|
|
|
]
|
|
|
|
++ optional cfg.enableKVM pkgs.qemu_kvm
|
|
|
|
++ optional vswitch.enable vswitch.package;
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2011-09-14 19:20:50 +01: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 23:10:26 +01: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 23:10:26 +01:00
|
|
|
|
2015-12-18 13:07:53 +00:00
|
|
|
# Copy default libvirt network config .xml files to /var/lib
|
|
|
|
# Files modified by the user will not be overwritten
|
|
|
|
for i in $(cd ${pkgs.libvirt}/var/lib && echo \
|
2011-03-31 23:10:26 +01:00
|
|
|
libvirt/qemu/networks/*.xml libvirt/qemu/networks/autostart/*.xml \
|
|
|
|
libvirt/nwfilter/*.xml );
|
|
|
|
do
|
2015-12-18 13:07:53 +00:00
|
|
|
mkdir -p /var/lib/$(dirname $i) -m 755
|
|
|
|
cp -npd ${pkgs.libvirt}/var/lib/$i /var/lib/$i
|
2011-03-31 23:10:26 +01:00
|
|
|
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).
|
2014-09-15 22:03:20 +01:00
|
|
|
for file in /etc/libvirt/qemu/*.xml /etc/libvirt/lxc/*.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
|
2014-09-15 22:03:20 +01:00
|
|
|
new_emulator=$(PATH=${pkgs.libvirt}/libexec:$PATH command -v $(basename "$emulator"))
|
2013-11-27 20:31:15 +00:00
|
|
|
# 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 23:10:26 +01:00
|
|
|
''; # */
|
2011-03-15 09:42:49 +00:00
|
|
|
|
2016-06-27 12:02:15 +01:00
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" --daemon ${concatStringsSep " " cfg.extraOptions}'';
|
|
|
|
Type = "notify";
|
|
|
|
KillMode = "process"; # when stopping, leave the VMs alone
|
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
2011-02-25 15:07:52 +00:00
|
|
|
};
|
|
|
|
|
2016-06-27 12:02:47 +01:00
|
|
|
systemd.sockets.virtlogd = {
|
|
|
|
description = "Virtual machine log manager socket";
|
|
|
|
wantedBy = [ "sockets.target" ];
|
|
|
|
listenStreams = [ "/run/libvirt/virtlogd-sock" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.services.virtlogd = {
|
|
|
|
description = "Virtual machine log manager";
|
|
|
|
serviceConfig.ExecStart = "@${pkgs.libvirt}/sbin/virtlogd virtlogd";
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.sockets.virtlockd = {
|
|
|
|
description = "Virtual machine lock manager socket";
|
|
|
|
wantedBy = [ "sockets.target" ];
|
|
|
|
listenStreams = [ "/run/libvirt/virtlockd-sock" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.services.virtlockd = {
|
|
|
|
description = "Virtual machine lock manager";
|
|
|
|
serviceConfig.ExecStart = "@${pkgs.libvirt}/sbin/virtlockd virtlockd";
|
|
|
|
};
|
|
|
|
|
2013-08-15 23:47:21 +01:00
|
|
|
users.extraGroups.libvirtd.gid = config.ids.gids.libvirtd;
|
2013-08-15 20:50:16 +01:00
|
|
|
|
2011-02-25 15:07:52 +00:00
|
|
|
};
|
|
|
|
}
|