Merge remote-tracking branch 'ni/master'
This commit is contained in:
commit
2db5d56cf2
@ -9,6 +9,7 @@ let
|
|||||||
krops = import ../submodules/krops/lib;
|
krops = import ../submodules/krops/lib;
|
||||||
shell = import ./shell.nix { inherit lib; };
|
shell = import ./shell.nix { inherit lib; };
|
||||||
types = nixpkgs-lib.types // import ./types.nix { inherit lib; };
|
types = nixpkgs-lib.types // import ./types.nix { inherit lib; };
|
||||||
|
xml = import ./xml.nix { inherit lib; };
|
||||||
|
|
||||||
eq = x: y: x == y;
|
eq = x: y: x == y;
|
||||||
ne = x: y: x != y;
|
ne = x: y: x != y;
|
||||||
@ -145,6 +146,11 @@ let
|
|||||||
in
|
in
|
||||||
filter (x: x != []) ([acc.chunk] ++ acc.chunks);
|
filter (x: x != []) ([acc.chunk] ++ acc.chunks);
|
||||||
|
|
||||||
|
warnOldVersion = oldName: newName:
|
||||||
|
if compareVersions oldName newName != -1 then
|
||||||
|
trace "Upstream `${oldName}' gets overridden by `${newName}'." newName
|
||||||
|
else
|
||||||
|
newName;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
|
88
lib/xml.nix
Normal file
88
lib/xml.nix
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
{ lib }:
|
||||||
|
with lib;
|
||||||
|
with builtins;
|
||||||
|
rec {
|
||||||
|
|
||||||
|
# Use `term` to construct XML.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
#
|
||||||
|
# (term "bool" null null)
|
||||||
|
# (term "cool" null [])
|
||||||
|
# (term "fool" { hurr = "durr"; } null)
|
||||||
|
# (term "hool" null [
|
||||||
|
# (term "tool" null null)
|
||||||
|
# ])
|
||||||
|
#
|
||||||
|
# See `render` for how these get transformed into actuall XML documents.
|
||||||
|
#
|
||||||
|
term = name: attrs: content: {
|
||||||
|
inherit name attrs content;
|
||||||
|
};
|
||||||
|
|
||||||
|
empty = term null null null;
|
||||||
|
|
||||||
|
# Ref http://www.w3.org/TR/xml/#syntax
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
#
|
||||||
|
# (quote "<cheez!>") #===> <cheez!>
|
||||||
|
#
|
||||||
|
quote = let
|
||||||
|
sub = {
|
||||||
|
"&" = "&";
|
||||||
|
"<" = "<";
|
||||||
|
">" = ">";
|
||||||
|
"'" = "'";
|
||||||
|
"\"" = """;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stringAsChars (c: sub.${c} or c);
|
||||||
|
|
||||||
|
# Turn an XML element to an XML document string.
|
||||||
|
doc = t:
|
||||||
|
"<?xml version='1.0' encoding='UTF-8'?>${render t}";
|
||||||
|
|
||||||
|
# Render an XML element to a string.
|
||||||
|
#
|
||||||
|
# Rendering `empty` yields the empty string.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
#
|
||||||
|
# (term "bool" null null) #===> <bool/>
|
||||||
|
# (term "cool" null []) #===> <cool></cool>
|
||||||
|
# (term "fool" { hurr = "durr"; } null) #===> <fool hurr="durr"/>
|
||||||
|
# (term "hool" null [
|
||||||
|
# (term "tool" null null)
|
||||||
|
# ]) #===> <hool><tool/></hool>
|
||||||
|
#
|
||||||
|
render = let
|
||||||
|
render-attrs = attrs:
|
||||||
|
getAttr (typeOf attrs) {
|
||||||
|
null = "";
|
||||||
|
set = concatStrings (mapAttrsToList (n: v: " ${n}=\"${v}\"") attrs);
|
||||||
|
};
|
||||||
|
|
||||||
|
render-content = content:
|
||||||
|
getAttr (typeOf content) {
|
||||||
|
bool = toJSON content;
|
||||||
|
int = toJSON content;
|
||||||
|
list = concatMapStrings render content;
|
||||||
|
string = quote content;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{ name, attrs, content }:
|
||||||
|
# XXX we're currently encoding too much information with `null`..
|
||||||
|
if name == null
|
||||||
|
then
|
||||||
|
if content == null
|
||||||
|
then ""
|
||||||
|
else content
|
||||||
|
else let
|
||||||
|
attrs' = render-attrs attrs;
|
||||||
|
content' = render-content content;
|
||||||
|
in
|
||||||
|
if content == null
|
||||||
|
then "<${name}${attrs'}/>"
|
||||||
|
else "<${name}${attrs'}>${content'}</${name}>";
|
||||||
|
}
|
@ -9,6 +9,37 @@ let {
|
|||||||
config = lib.mkIf cfg.enable imp;
|
config = lib.mkIf cfg.enable imp;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraTypes = {
|
||||||
|
rules = types.submodule {
|
||||||
|
options = {
|
||||||
|
nat.OUTPUT = mkOption {
|
||||||
|
type = with types; listOf str;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
nat.PREROUTING = mkOption {
|
||||||
|
type = with types; listOf str;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
nat.POSTROUTING = mkOption {
|
||||||
|
type = with types; listOf str;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
filter.FORWARD = mkOption {
|
||||||
|
type = with types; listOf str;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
filter.INPUT = mkOption {
|
||||||
|
type = with types; listOf str;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
filter.Retiolum = mkOption {
|
||||||
|
type = with types; listOf str;
|
||||||
|
default = [];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
api = {
|
api = {
|
||||||
enable = mkEnableOption "tv.iptables";
|
enable = mkEnableOption "tv.iptables";
|
||||||
|
|
||||||
@ -37,19 +68,19 @@ let {
|
|||||||
default = [];
|
default = [];
|
||||||
};
|
};
|
||||||
|
|
||||||
extra = {
|
extra = mkOption {
|
||||||
nat.POSTROUTING = mkOption {
|
default = {};
|
||||||
type = with types; listOf str;
|
type = extraTypes.rules;
|
||||||
default = [];
|
|
||||||
};
|
};
|
||||||
filter.FORWARD = mkOption {
|
|
||||||
type = with types; listOf str;
|
extra4 = mkOption {
|
||||||
default = [];
|
default = {};
|
||||||
};
|
type = extraTypes.rules;
|
||||||
filter.INPUT = mkOption {
|
|
||||||
type = with types; listOf str;
|
|
||||||
default = [];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extra6 = mkOption {
|
||||||
|
default = {};
|
||||||
|
type = extraTypes.rules;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -112,6 +143,7 @@ let {
|
|||||||
"-o lo -p tcp -m tcp --dport 11423 -j REDIRECT --to-ports 22"
|
"-o lo -p tcp -m tcp --dport 11423 -j REDIRECT --to-ports 22"
|
||||||
]}
|
]}
|
||||||
${formatTable cfg.extra.nat}
|
${formatTable cfg.extra.nat}
|
||||||
|
${formatTable cfg."extra${toString iptables-version}".nat}
|
||||||
COMMIT
|
COMMIT
|
||||||
*filter
|
*filter
|
||||||
:INPUT DROP [0:0]
|
:INPUT DROP [0:0]
|
||||||
@ -129,6 +161,7 @@ let {
|
|||||||
++ ["-i retiolum -j Retiolum"]
|
++ ["-i retiolum -j Retiolum"]
|
||||||
)}
|
)}
|
||||||
${formatTable cfg.extra.filter}
|
${formatTable cfg.extra.filter}
|
||||||
|
${formatTable cfg."extra${toString iptables-version}".filter}
|
||||||
${concatMapStringsSep "\n" (rule: "-A Retiolum ${rule}") ([]
|
${concatMapStringsSep "\n" (rule: "-A Retiolum ${rule}") ([]
|
||||||
++ optional (cfg.accept-echo-request == "retiolum") accept-echo-request
|
++ optional (cfg.accept-echo-request == "retiolum") accept-echo-request
|
||||||
++ map accept-tcp (unique (map toString cfg.input-retiolum-accept-tcp))
|
++ map accept-tcp (unique (map toString cfg.input-retiolum-accept-tcp))
|
||||||
|
@ -97,7 +97,6 @@ with import <stockholm/lib>;
|
|||||||
bind -s | ${pkgs.gnugrep}/bin/grep __fzf_ >&2
|
bind -s | ${pkgs.gnugrep}/bin/grep __fzf_ >&2
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
script //
|
script.overrideAttrs (old: rec {
|
||||||
rec {
|
|
||||||
bind = /* sh */ ''bind -x '"${load-keyseq}": . ${script}' '';
|
bind = /* sh */ ''bind -x '"${load-keyseq}": . ${script}' '';
|
||||||
}
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user