2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2011-11-02 20:59:12 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.unbound;
|
|
|
|
|
|
|
|
stateDir = "/var/lib/unbound";
|
|
|
|
|
|
|
|
access = concatMapStrings (x: " access-control: ${x} allow\n") cfg.allowedAccess;
|
|
|
|
|
|
|
|
interfaces = concatMapStrings (x: " interface: ${x}\n") cfg.interfaces;
|
|
|
|
|
|
|
|
forward = optionalString (length cfg.forwardAddresses != 0)
|
|
|
|
"forward-zone:\n name: .\n" +
|
|
|
|
concatMapStrings (x: " forward-addr: ${x}\n") cfg.forwardAddresses;
|
|
|
|
|
2014-04-20 15:16:36 +00:00
|
|
|
confFile = pkgs.writeText "unbound.conf" ''
|
|
|
|
server:
|
|
|
|
directory: "${stateDir}"
|
2014-08-27 01:24:09 +00:00
|
|
|
username: unbound
|
2014-04-20 15:16:36 +00:00
|
|
|
chroot: "${stateDir}"
|
2014-08-27 01:24:09 +00:00
|
|
|
pidfile: ""
|
2011-11-03 18:49:54 +00:00
|
|
|
${interfaces}
|
|
|
|
${access}
|
2014-04-20 15:16:36 +00:00
|
|
|
${cfg.extraConfig}
|
2014-08-27 01:24:09 +00:00
|
|
|
${forward}
|
2014-04-20 15:16:36 +00:00
|
|
|
'';
|
2011-11-02 20:59:12 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.unbound = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2016-02-07 17:40:15 +00:00
|
|
|
default = false;
|
|
|
|
description = "Whether to enable the Unbound domain name server.";
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
allowedAccess = mkOption {
|
2016-02-07 17:40:15 +00:00
|
|
|
default = ["127.0.0.0/24"];
|
|
|
|
description = "What networks are allowed to use unbound as a resolver.";
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
interfaces = mkOption {
|
2016-02-07 17:40:15 +00:00
|
|
|
default = [ "127.0.0.1" "::1" ];
|
|
|
|
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 = [ ];
|
|
|
|
description = "What servers to forward queries to.";
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
|
2011-11-03 18:49:54 +00:00
|
|
|
extraConfig = mkOption {
|
2016-02-07 17:40:15 +00:00
|
|
|
default = "";
|
|
|
|
description = "Extra lines of unbound config.";
|
2011-11-03 18:49:54 +00:00
|
|
|
};
|
|
|
|
|
2011-11-02 20:59:12 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
2014-04-20 15:16:36 +00:00
|
|
|
config = mkIf cfg.enable {
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-04-20 15:16:36 +00:00
|
|
|
environment.systemPackages = [ pkgs.unbound ];
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-04-20 15:16:36 +00:00
|
|
|
users.extraUsers = singleton {
|
2014-08-27 01:24:09 +00:00
|
|
|
name = "unbound";
|
2014-04-20 15:16:36 +00:00
|
|
|
uid = config.ids.uids.unbound;
|
|
|
|
description = "unbound daemon user";
|
|
|
|
home = stateDir;
|
|
|
|
createHome = true;
|
|
|
|
};
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-04-20 15:16:36 +00:00
|
|
|
systemd.services.unbound = {
|
|
|
|
description="Unbound recursive Domain Name Server";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
before = [ "nss-lookup.target" ];
|
|
|
|
wants = [" nss-lookup.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2011-11-02 20:59:12 +00:00
|
|
|
|
2014-08-27 01:24:09 +00:00
|
|
|
preStart = ''
|
|
|
|
mkdir -m 0755 -p ${stateDir}/dev/
|
2016-02-07 17:40:15 +00:00
|
|
|
cp ${confFile} ${stateDir}/unbound.conf
|
|
|
|
chown unbound ${stateDir}
|
|
|
|
touch ${stateDir}/dev/random
|
2014-08-27 01:24:09 +00:00
|
|
|
${pkgs.utillinux}/bin/mount --bind -n /dev/random ${stateDir}/dev/random
|
|
|
|
'';
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${pkgs.unbound}/sbin/unbound -d -c ${stateDir}/unbound.conf";
|
|
|
|
ExecStopPost="${pkgs.utillinux}/bin/umount ${stateDir}/dev/random";
|
|
|
|
};
|
2014-04-20 15:16:36 +00:00
|
|
|
};
|
2011-11-02 20:59:12 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|