forked from mirrors/nixpkgs
2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
212 lines
5.9 KiB
Nix
212 lines
5.9 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.pdns-recursor;
|
|
|
|
oneOrMore = type: with types; either type (listOf type);
|
|
valueType = with types; oneOf [ int str bool path ];
|
|
configType = with types; attrsOf (nullOr (oneOrMore valueType));
|
|
|
|
toBool = val: if val then "yes" else "no";
|
|
serialize = val: with types;
|
|
if str.check val then val
|
|
else if int.check val then toString val
|
|
else if path.check val then toString val
|
|
else if bool.check val then toBool val
|
|
else if builtins.isList val then (concatMapStringsSep "," serialize val)
|
|
else "";
|
|
|
|
configDir = pkgs.writeTextDir "recursor.conf"
|
|
(concatStringsSep "\n"
|
|
(flip mapAttrsToList cfg.settings
|
|
(name: val: "${name}=${serialize val}")));
|
|
|
|
mkDefaultAttrs = mapAttrs (n: v: mkDefault v);
|
|
|
|
in {
|
|
options.services.pdns-recursor = {
|
|
enable = mkEnableOption "PowerDNS Recursor, a recursive DNS server";
|
|
|
|
dns.address = mkOption {
|
|
type = oneOrMore types.str;
|
|
default = [ "::" "0.0.0.0" ];
|
|
description = lib.mdDoc ''
|
|
IP addresses Recursor DNS server will bind to.
|
|
'';
|
|
};
|
|
|
|
dns.port = mkOption {
|
|
type = types.int;
|
|
default = 53;
|
|
description = lib.mdDoc ''
|
|
Port number Recursor DNS server will bind to.
|
|
'';
|
|
};
|
|
|
|
dns.allowFrom = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [
|
|
"127.0.0.0/8" "10.0.0.0/8" "100.64.0.0/10"
|
|
"169.254.0.0/16" "192.168.0.0/16" "172.16.0.0/12"
|
|
"::1/128" "fc00::/7" "fe80::/10"
|
|
];
|
|
example = [ "0.0.0.0/0" "::/0" ];
|
|
description = lib.mdDoc ''
|
|
IP address ranges of clients allowed to make DNS queries.
|
|
'';
|
|
};
|
|
|
|
api.address = mkOption {
|
|
type = types.str;
|
|
default = "0.0.0.0";
|
|
description = lib.mdDoc ''
|
|
IP address Recursor REST API server will bind to.
|
|
'';
|
|
};
|
|
|
|
api.port = mkOption {
|
|
type = types.int;
|
|
default = 8082;
|
|
description = lib.mdDoc ''
|
|
Port number Recursor REST API server will bind to.
|
|
'';
|
|
};
|
|
|
|
api.allowFrom = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ "127.0.0.1" "::1" ];
|
|
example = [ "0.0.0.0/0" "::/0" ];
|
|
description = lib.mdDoc ''
|
|
IP address ranges of clients allowed to make API requests.
|
|
'';
|
|
};
|
|
|
|
exportHosts = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to export names and IP addresses defined in /etc/hosts.
|
|
'';
|
|
};
|
|
|
|
forwardZones = mkOption {
|
|
type = types.attrs;
|
|
default = {};
|
|
description = lib.mdDoc ''
|
|
DNS zones to be forwarded to other authoritative servers.
|
|
'';
|
|
};
|
|
|
|
forwardZonesRecurse = mkOption {
|
|
type = types.attrs;
|
|
example = { eth = "[::1]:5353"; };
|
|
default = {};
|
|
description = lib.mdDoc ''
|
|
DNS zones to be forwarded to other recursive servers.
|
|
'';
|
|
};
|
|
|
|
dnssecValidation = mkOption {
|
|
type = types.enum ["off" "process-no-validate" "process" "log-fail" "validate"];
|
|
default = "validate";
|
|
description = lib.mdDoc ''
|
|
Controls the level of DNSSEC processing done by the PowerDNS Recursor.
|
|
See https://doc.powerdns.com/md/recursor/dnssec/ for a detailed explanation.
|
|
'';
|
|
};
|
|
|
|
serveRFC1918 = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = lib.mdDoc ''
|
|
Whether to directly resolve the RFC1918 reverse-mapping domains:
|
|
`10.in-addr.arpa`,
|
|
`168.192.in-addr.arpa`,
|
|
`16-31.172.in-addr.arpa`
|
|
This saves load on the AS112 servers.
|
|
'';
|
|
};
|
|
|
|
settings = mkOption {
|
|
type = configType;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
loglevel = 8;
|
|
log-common-errors = true;
|
|
}
|
|
'';
|
|
description = lib.mdDoc ''
|
|
PowerDNS Recursor settings. Use this option to configure Recursor
|
|
settings not exposed in a NixOS option or to bypass one.
|
|
See the full documentation at
|
|
<https://doc.powerdns.com/recursor/settings.html>
|
|
for the available options.
|
|
'';
|
|
};
|
|
|
|
luaConfig = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
description = lib.mdDoc ''
|
|
The content Lua configuration file for PowerDNS Recursor. See
|
|
<https://doc.powerdns.com/recursor/lua-config/index.html>.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.pdns-recursor.settings = mkDefaultAttrs {
|
|
local-address = cfg.dns.address;
|
|
local-port = cfg.dns.port;
|
|
allow-from = cfg.dns.allowFrom;
|
|
|
|
webserver-address = cfg.api.address;
|
|
webserver-port = cfg.api.port;
|
|
webserver-allow-from = cfg.api.allowFrom;
|
|
|
|
forward-zones = mapAttrsToList (zone: uri: "${zone}.=${uri}") cfg.forwardZones;
|
|
forward-zones-recurse = mapAttrsToList (zone: uri: "${zone}.=${uri}") cfg.forwardZonesRecurse;
|
|
export-etc-hosts = cfg.exportHosts;
|
|
dnssec = cfg.dnssecValidation;
|
|
serve-rfc1918 = cfg.serveRFC1918;
|
|
lua-config-file = pkgs.writeText "recursor.lua" cfg.luaConfig;
|
|
|
|
daemon = false;
|
|
write-pid = false;
|
|
log-timestamp = false;
|
|
disable-syslog = true;
|
|
};
|
|
|
|
systemd.packages = [ pkgs.pdns-recursor ];
|
|
|
|
systemd.services.pdns-recursor = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
ExecStart = [ "" "${pkgs.pdns-recursor}/bin/pdns_recursor --config-dir=${configDir}" ];
|
|
};
|
|
};
|
|
|
|
users.users.pdns-recursor = {
|
|
isSystemUser = true;
|
|
group = "pdns-recursor";
|
|
description = "PowerDNS Recursor daemon user";
|
|
};
|
|
|
|
users.groups.pdns-recursor = {};
|
|
|
|
};
|
|
|
|
imports = [
|
|
(mkRemovedOptionModule [ "services" "pdns-recursor" "extraConfig" ]
|
|
"To change extra Recursor settings use services.pdns-recursor.settings instead.")
|
|
];
|
|
|
|
meta.maintainers = with lib.maintainers; [ rnhmjoj ];
|
|
|
|
}
|