summary refs log tree commit diff
path: root/nixos/modules/services/networking
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-05-07 03:05:30 +0200
committeraszlig <aszlig@nix.build>2018-05-30 05:07:39 +0200
commit94bc38e6c1f1422bcd5362af043dff2cb48961fa (patch)
tree2e6bef96108b64a5a90b0974321929c05eb9125e /nixos/modules/services/networking
parenta7e93690afa02053373a59061f310f6f3953f254 (diff)
downloadnixlib-94bc38e6c1f1422bcd5362af043dff2cb48961fa.tar
nixlib-94bc38e6c1f1422bcd5362af043dff2cb48961fa.tar.gz
nixlib-94bc38e6c1f1422bcd5362af043dff2cb48961fa.tar.bz2
nixlib-94bc38e6c1f1422bcd5362af043dff2cb48961fa.tar.lz
nixlib-94bc38e6c1f1422bcd5362af043dff2cb48961fa.tar.xz
nixlib-94bc38e6c1f1422bcd5362af043dff2cb48961fa.tar.zst
nixlib-94bc38e6c1f1422bcd5362af043dff2cb48961fa.zip
nixos/bind: Allow to set extra options
BIND doesn't allow the options section (or any section I'd guess) to be
defined more than once, so whenever you want to set an additional option
you're stuck using weird hacks like this:

services.bind.forwarders = lib.mkForce [ "}; empty-zones-enable no; #" ];

This basically exploits the fact that values coming from the module
options aren't escaped and thus works in a similar vain to how SQL
injection works.

Another option would be to just set configFile to a file that includes
all the options, including zones. That obviously makes the configuration
way less extensible and more awkward to use with the module system.

To make sure this change does work correctly I added a small test just
for that. The test could use some improvements, but better to have a
test rather than none at all. For a future improvement the test could be
merged with the NSD test, because both use the same zone file format.

This change has been reviewed in #40053 and after not getting any
opposition, I'm hereby adding this to master.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @peti, @edolstra
Closes: #40053
Diffstat (limited to 'nixos/modules/services/networking')
-rw-r--r--nixos/modules/services/networking/bind.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/bind.nix b/nixos/modules/services/networking/bind.nix
index 763283dfe7a2..7775a4bd87fe 100644
--- a/nixos/modules/services/networking/bind.nix
+++ b/nixos/modules/services/networking/bind.nix
@@ -27,6 +27,7 @@ let
         forwarders { ${concatMapStrings (entry: " ${entry}; ") cfg.forwarders} };
         directory "/var/run/named";
         pid-file "/var/run/named/named.pid";
+        ${cfg.extraOptions}
       };
 
       ${cfg.extraConfig}
@@ -141,6 +142,15 @@ in
         ";
       };
 
+      extraOptions = mkOption {
+        type = types.lines;
+        default = "";
+        description = ''
+          Extra lines to be added verbatim to the options section of the
+          generated named configuration file.
+        '';
+      };
+
       configFile = mkOption {
         type = types.path;
         default = confFile;