2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2011-11-02 20:59:12 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.unbound;
|
|
|
|
|
|
|
|
stateDir = "/var/lib/unbound";
|
|
|
|
|
2017-11-03 08:36:11 +00:00
|
|
|
access = concatMapStringsSep "\n " (x: "access-control: ${x} allow") cfg.allowedAccess;
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2017-11-03 08:36:11 +00:00
|
|
|
interfaces = concatMapStringsSep "\n " (x: "interface: ${x}") cfg.interfaces;
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2016-09-16 08:47:36 +01:00
|
|
|
isLocalAddress = x: substring 0 3 x == "::1" || substring 0 9 x == "127.0.0.1";
|
2016-08-30 18:20:08 +01:00
|
|
|
|
|
|
|
forward =
|
|
|
|
optionalString (any isLocalAddress cfg.forwardAddresses) ''
|
|
|
|
do-not-query-localhost: no
|
|
|
|
'' +
|
|
|
|
optionalString (cfg.forwardAddresses != []) ''
|
|
|
|
forward-zone:
|
|
|
|
name: .
|
|
|
|
'' +
|
|
|
|
concatMapStringsSep "\n" (x: " forward-addr: ${x}") cfg.forwardAddresses;
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2016-02-15 02:35:25 +00:00
|
|
|
rootTrustAnchorFile = "${stateDir}/root.key";
|
|
|
|
|
|
|
|
trustAnchor = optionalString cfg.enableRootTrustAnchor
|
|
|
|
"auto-trust-anchor-file: ${rootTrustAnchorFile}";
|
|
|
|
|
2014-04-20 16:16:36 +01:00
|
|
|
confFile = pkgs.writeText "unbound.conf" ''
|
|
|
|
server:
|
|
|
|
directory: "${stateDir}"
|
2014-08-27 02:24:09 +01:00
|
|
|
username: unbound
|
2014-04-20 16:16:36 +01:00
|
|
|
chroot: "${stateDir}"
|
2014-08-27 02:24:09 +01:00
|
|
|
pidfile: ""
|
2011-11-03 18:49:54 +00:00
|
|
|
${interfaces}
|
|
|
|
${access}
|
2016-02-15 02:35:25 +00:00
|
|
|
${trustAnchor}
|
2014-04-20 16:16:36 +01:00
|
|
|
${cfg.extraConfig}
|
2014-08-27 02:24:09 +01:00
|
|
|
${forward}
|
2014-04-20 16:16:36 +01:00
|
|
|
'';
|
2011-11-02 20:59:12 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.unbound = {
|
|
|
|
|
2016-08-30 18:28:30 +01:00
|
|
|
enable = mkEnableOption "Unbound domain name server";
|
2011-11-02 20:59:12 +00:00
|
|
|
|
|
|
|
allowedAccess = mkOption {
|
2016-08-30 18:30:28 +01:00
|
|
|
default = [ "127.0.0.0/24" ];
|
2016-02-15 02:37:45 +00:00
|
|
|
type = types.listOf types.str;
|
2016-02-07 17:40:15 +00:00
|
|
|
description = "What networks are allowed to use unbound as a resolver.";
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
interfaces = mkOption {
|
2018-06-12 13:29:25 +01:00
|
|
|
default = [ "127.0.0.1" ] ++ optional config.networking.enableIPv6 "::1";
|
2016-02-15 02:37:45 +00:00
|
|
|
type = types.listOf types.str;
|
2016-02-07 17:40:15 +00:00
|
|
|
description = "What addresses the server should listen on.";
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
forwardAddresses = mkOption {
|
2016-02-07 17:40:15 +00:00
|
|
|
default = [ ];
|
2016-02-15 02:37:45 +00:00
|
|
|
type = types.listOf types.str;
|
2016-02-07 17:40:15 +00:00
|
|
|
description = "What servers to forward queries to.";
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
|
2016-02-15 02:35:25 +00:00
|
|
|
enableRootTrustAnchor = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = "Use and update root trust anchor for DNSSEC validation.";
|
|
|
|
};
|
|
|
|
|
2011-11-03 18:49:54 +00:00
|
|
|
extraConfig = mkOption {
|
2016-02-07 17:40:15 +00:00
|
|
|
default = "";
|
2016-10-23 18:33:41 +01:00
|
|
|
type = types.lines;
|
2016-09-01 17:47:40 +01:00
|
|
|
description = ''
|
|
|
|
Extra unbound config. See
|
|
|
|
<citerefentry><refentrytitle>unbound.conf</refentrytitle><manvolnum>8
|
|
|
|
</manvolnum></citerefentry>.
|
|
|
|
'';
|
2011-11-03 18:49:54 +00:00
|
|
|
};
|
|
|
|
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2014-04-20 16:16:36 +01:00
|
|
|
config = mkIf cfg.enable {
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-04-20 16:16:36 +01:00
|
|
|
environment.systemPackages = [ pkgs.unbound ];
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2016-09-01 17:48:13 +01:00
|
|
|
users.users.unbound = {
|
2014-04-20 16:16:36 +01:00
|
|
|
description = "unbound daemon user";
|
2016-09-01 17:48:13 +01:00
|
|
|
isSystemUser = true;
|
2014-04-20 16:16:36 +01:00
|
|
|
};
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2019-07-15 18:18:49 +01:00
|
|
|
networking.resolvconf.useLocalResolver = mkDefault true;
|
|
|
|
|
2014-04-20 16:16:36 +01:00
|
|
|
systemd.services.unbound = {
|
2016-08-30 18:30:28 +01:00
|
|
|
description = "Unbound recursive Domain Name Server";
|
2014-04-20 16:16:36 +01:00
|
|
|
after = [ "network.target" ];
|
|
|
|
before = [ "nss-lookup.target" ];
|
2017-10-10 21:08:36 +01:00
|
|
|
wants = [ "nss-lookup.target" ];
|
2014-04-20 16:16:36 +01:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-08-27 02:24:09 +01:00
|
|
|
preStart = ''
|
|
|
|
mkdir -m 0755 -p ${stateDir}/dev/
|
2016-02-07 17:40:15 +00:00
|
|
|
cp ${confFile} ${stateDir}/unbound.conf
|
2016-05-21 12:12:48 +01:00
|
|
|
${optionalString cfg.enableRootTrustAnchor ''
|
2018-06-12 13:29:25 +01:00
|
|
|
${pkgs.unbound}/bin/unbound-anchor -a ${rootTrustAnchorFile} || echo "Root anchor updated!"
|
|
|
|
chown unbound ${stateDir} ${rootTrustAnchorFile}
|
2016-05-21 12:12:48 +01:00
|
|
|
''}
|
2016-02-07 17:40:15 +00:00
|
|
|
touch ${stateDir}/dev/random
|
2016-08-30 18:22:53 +01:00
|
|
|
${pkgs.utillinux}/bin/mount --bind -n /dev/urandom ${stateDir}/dev/random
|
2014-08-27 02:24:09 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
serviceConfig = {
|
2016-03-06 12:50:41 +00:00
|
|
|
ExecStart = "${pkgs.unbound}/bin/unbound -d -c ${stateDir}/unbound.conf";
|
2014-08-27 02:24:09 +01:00
|
|
|
ExecStopPost="${pkgs.utillinux}/bin/umount ${stateDir}/dev/random";
|
2016-09-01 17:53:06 +01:00
|
|
|
|
|
|
|
ProtectSystem = true;
|
|
|
|
ProtectHome = true;
|
|
|
|
PrivateDevices = true;
|
2018-06-12 13:29:25 +01:00
|
|
|
Restart = "always";
|
|
|
|
RestartSec = "5s";
|
2014-08-27 02:24:09 +01:00
|
|
|
};
|
2014-04-20 16:16:36 +01:00
|
|
|
};
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2018-06-29 18:41:46 +01:00
|
|
|
# If networkmanager is enabled, ask it to interface with unbound.
|
|
|
|
networking.networkmanager.dns = "unbound";
|
|
|
|
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|