2023-07-16 15:55:50 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
lib,
|
|
|
|
firewallgen,
|
|
|
|
nftables,
|
|
|
|
writeFennel,
|
|
|
|
anoia,
|
|
|
|
lualinux,
|
|
|
|
linotify,
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
rules,
|
|
|
|
extraRules,
|
|
|
|
zones,
|
2023-07-16 15:55:50 +00:00
|
|
|
}:
|
|
|
|
let
|
2025-02-10 00:42:27 +00:00
|
|
|
inherit (liminix.services) longrun;
|
|
|
|
inherit (lib.attrsets) mapAttrs' nameValuePair mapAttrsToList;
|
|
|
|
inherit (lib.strings) concatStringsSep;
|
|
|
|
inherit (lib.lists) flatten;
|
2025-02-10 21:55:08 +00:00
|
|
|
mkSet =
|
|
|
|
family: name:
|
|
|
|
nameValuePair "${name}-set-${family}" {
|
|
|
|
kind = "set";
|
|
|
|
inherit name family;
|
|
|
|
type = "ifname";
|
|
|
|
};
|
|
|
|
sets = (mapAttrs' (n: _: mkSet "ip" n) zones) // (mapAttrs' (n: _: mkSet "ip6" n) zones);
|
2025-02-06 11:57:06 +00:00
|
|
|
allRules = lib.recursiveUpdate extraRules (lib.recursiveUpdate (builtins.trace sets sets) rules);
|
|
|
|
script = firewallgen "firewall1.nft" allRules;
|
2025-02-10 00:42:27 +00:00
|
|
|
ifwatch = writeFennel "ifwatch" {
|
2025-02-10 21:55:08 +00:00
|
|
|
packages = [
|
|
|
|
anoia
|
|
|
|
lualinux
|
|
|
|
linotify
|
|
|
|
];
|
2025-02-10 00:42:27 +00:00
|
|
|
mainFunction = "run";
|
2025-02-10 21:55:08 +00:00
|
|
|
} ./ifwatch.fnl;
|
|
|
|
watchArg = z: intfs: map (i: "${z}:${i}/.outputs") intfs;
|
|
|
|
in
|
|
|
|
longrun {
|
2023-07-16 15:55:50 +00:00
|
|
|
name = "firewall";
|
2025-02-06 11:57:06 +00:00
|
|
|
run = ''
|
|
|
|
${script}
|
2025-02-10 00:42:27 +00:00
|
|
|
PATH=${nftables}/bin:$PATH
|
|
|
|
${ifwatch} ${concatStringsSep " " (flatten (mapAttrsToList watchArg zones))}
|
2025-02-06 11:57:06 +00:00
|
|
|
'';
|
|
|
|
finish = "${nftables}/bin/nft flush ruleset";
|
2023-07-16 15:55:50 +00:00
|
|
|
}
|