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}
|
|
|
|
'';
|
2017-02-21 12:26:23 +00:00
|
|
|
qemuConfigFile = pkgs.writeText "qemu.conf" ''
|
|
|
|
${cfg.qemuVerbatimConfig}
|
|
|
|
'';
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2016-06-27 12:10:05 +01:00
|
|
|
in {
|
2011-02-25 15:07:52 +00:00
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2016-06-27 12:10:05 +01:00
|
|
|
virtualisation.libvirtd.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
This option enables libvirtd, a daemon that manages
|
|
|
|
virtual machines. Users in the "libvirtd" group can interact with
|
|
|
|
the daemon (e.g. to start or stop VMs) using the
|
|
|
|
<command>virsh</command> command line tool, among others.
|
|
|
|
'';
|
|
|
|
};
|
2011-02-25 15:07:52 +00:00
|
|
|
|
2016-06-27 12:10:05 +01:00
|
|
|
virtualisation.libvirtd.enableKVM = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
This option enables support for QEMU/KVM in libvirtd.
|
|
|
|
'';
|
|
|
|
};
|
2013-08-15 20:50:16 +01:00
|
|
|
|
2016-06-27 12:10:05 +01:00
|
|
|
virtualisation.libvirtd.extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Extra contents appended to the libvirtd configuration file,
|
|
|
|
libvirtd.conf.
|
|
|
|
'';
|
|
|
|
};
|
2015-05-20 08:51:42 +01:00
|
|
|
|
2017-02-21 12:26:23 +00:00
|
|
|
virtualisation.libvirtd.qemuVerbatimConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = ''
|
|
|
|
namespaces = []
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Contents written to the qemu configuration file, qemu.conf.
|
|
|
|
Make sure to include a proper namespace configuration when
|
|
|
|
supplying custom configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-06-27 12:10:05 +01:00
|
|
|
virtualisation.libvirtd.extraOptions = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
|
|
|
example = [ "--verbose" ];
|
|
|
|
description = ''
|
|
|
|
Extra command line arguments passed to libvirtd on startup.
|
|
|
|
'';
|
|
|
|
};
|
2014-06-16 15:45:08 +01:00
|
|
|
|
2016-06-27 12:10:05 +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.
|
|
|
|
'';
|
|
|
|
};
|
2014-06-16 15:45:08 +01:00
|
|
|
|
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" ];
|
|
|
|
|
2016-06-27 12:10:05 +01:00
|
|
|
users.extraGroups.libvirtd.gid = config.ids.gids.libvirtd;
|
|
|
|
|
|
|
|
systemd.services.libvirtd = {
|
|
|
|
description = "Libvirt Virtual Machine Management Daemon";
|
|
|
|
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
after = [ "systemd-udev-settle.service" ]
|
|
|
|
++ optional vswitch.enable "vswitchd.service";
|
|
|
|
|
|
|
|
path = [
|
|
|
|
pkgs.bridge-utils
|
|
|
|
pkgs.dmidecode
|
|
|
|
pkgs.dnsmasq
|
|
|
|
pkgs.ebtables
|
|
|
|
]
|
|
|
|
++ optional cfg.enableKVM pkgs.qemu_kvm
|
|
|
|
++ optional vswitch.enable vswitch.package;
|
|
|
|
|
|
|
|
preStart = ''
|
|
|
|
mkdir -p /var/log/libvirt/qemu -m 755
|
|
|
|
rm -f /var/run/libvirtd.pid
|
|
|
|
|
|
|
|
mkdir -p /var/lib/libvirt
|
|
|
|
mkdir -p /var/lib/libvirt/dnsmasq
|
|
|
|
|
|
|
|
chmod 755 /var/lib/libvirt
|
|
|
|
chmod 755 /var/lib/libvirt/dnsmasq
|
|
|
|
|
|
|
|
# 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 \
|
|
|
|
libvirt/qemu/networks/*.xml libvirt/qemu/networks/autostart/*.xml \
|
|
|
|
libvirt/nwfilter/*.xml );
|
|
|
|
do
|
|
|
|
mkdir -p /var/lib/$(dirname $i) -m 755
|
|
|
|
cp -npd ${pkgs.libvirt}/var/lib/$i /var/lib/$i
|
|
|
|
done
|
|
|
|
|
2017-02-21 12:26:23 +00:00
|
|
|
# Copy generated qemu config to libvirt directory
|
|
|
|
cp -f ${qemuConfigFile} /var/lib/libvirt/qemu.conf
|
|
|
|
|
2016-06-27 12:10:05 +01: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).
|
2016-11-02 18:27:01 +00:00
|
|
|
for file in /var/lib/libvirt/qemu/*.xml /var/lib/libvirt/lxc/*.xml; do
|
2016-06-27 12:10:05 +01:00
|
|
|
test -f "$file" || continue
|
|
|
|
# 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=$(PATH=${pkgs.libvirt}/libexec:$PATH 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
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
serviceConfig = {
|
2016-07-01 17:21:32 +01:00
|
|
|
ExecStart = ''@${pkgs.libvirt}/sbin/libvirtd libvirtd --config "${configFile}" ${concatStringsSep " " cfg.extraOptions}'';
|
2016-06-27 12:10:05 +01:00
|
|
|
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:10:05 +01:00
|
|
|
};
|
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";
|
|
|
|
};
|
2011-02-25 15:07:52 +00:00
|
|
|
};
|
|
|
|
}
|