nixpkgs/nixos/modules/services/networking/babeld.nix
Silvan Mosberger 667d42c00d treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev 57b193d8dd
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:27:17 +01:00

164 lines
4.2 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.babeld;
conditionalBoolToString =
value: if (lib.isBool value) then (lib.boolToString value) else (toString value);
paramsString =
params:
lib.concatMapStringsSep " " (name: "${name} ${conditionalBoolToString (lib.getAttr name params)}") (
lib.attrNames params
);
interfaceConfig =
name:
let
interface = lib.getAttr name cfg.interfaces;
in
"interface ${name} ${paramsString interface}\n";
configFile =
with cfg;
pkgs.writeText "babeld.conf" (
''
skip-kernel-setup true
''
+ (lib.optionalString (cfg.interfaceDefaults != null) ''
default ${paramsString cfg.interfaceDefaults}
'')
+ (lib.concatMapStrings interfaceConfig (lib.attrNames cfg.interfaces))
+ extraConfig
);
in
{
meta.maintainers = with lib.maintainers; [ hexa ];
###### interface
options = {
services.babeld = {
enable = lib.mkEnableOption "the babeld network routing daemon";
interfaceDefaults = lib.mkOption {
default = null;
description = ''
A set describing default parameters for babeld interfaces.
See {manpage}`babeld(8)` for options.
'';
type = lib.types.nullOr (lib.types.attrsOf lib.types.unspecified);
example = {
type = "tunnel";
split-horizon = true;
};
};
interfaces = lib.mkOption {
default = { };
description = ''
A set describing babeld interfaces.
See {manpage}`babeld(8)` for options.
'';
type = lib.types.attrsOf (lib.types.attrsOf lib.types.unspecified);
example = {
enp0s2 = {
type = "wired";
hello-interval = 5;
split-horizon = "auto";
};
};
};
extraConfig = lib.mkOption {
default = "";
type = lib.types.lines;
description = ''
Options that will be copied to babeld.conf.
See {manpage}`babeld(8)` for details.
'';
};
};
};
###### implementation
config = lib.mkIf config.services.babeld.enable {
boot.kernel.sysctl =
{
"net.ipv6.conf.all.forwarding" = 1;
"net.ipv6.conf.all.accept_redirects" = 0;
"net.ipv4.conf.all.forwarding" = 1;
"net.ipv4.conf.all.rp_filter" = 0;
}
// lib.mapAttrs' (
ifname: _: lib.nameValuePair "net.ipv4.conf.${ifname}.rp_filter" (lib.mkDefault 0)
) config.services.babeld.interfaces;
systemd.services.babeld = {
description = "Babel routing daemon";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${pkgs.babeld}/bin/babeld -c ${configFile} -I /run/babeld/babeld.pid -S /var/lib/babeld/state";
AmbientCapabilities = [ "CAP_NET_ADMIN" ];
CapabilityBoundingSet = [ "CAP_NET_ADMIN" ];
DevicePolicy = "closed";
DynamicUser = true;
IPAddressAllow = [
"fe80::/64"
"ff00::/8"
"::1/128"
"127.0.0.0/8"
];
IPAddressDeny = "any";
LockPersonality = true;
NoNewPrivileges = true;
MemoryDenyWriteExecute = true;
ProtectSystem = "strict";
ProtectClock = true;
ProtectKernelTunables = true;
ProtectKernelModules = true;
ProtectKernelLogs = true;
ProtectControlGroups = true;
RestrictAddressFamilies = [
"AF_NETLINK"
"AF_INET6"
"AF_INET"
];
RestrictNamespaces = true;
RestrictRealtime = true;
RestrictSUIDSGID = true;
RemoveIPC = true;
ProtectHome = true;
ProtectHostname = true;
ProtectProc = "invisible";
PrivateMounts = true;
PrivateTmp = true;
PrivateDevices = true;
PrivateUsers = false; # kernel_route(ADD): Operation not permitted
ProcSubset = "pid";
SystemCallArchitectures = "native";
SystemCallFilter = [
"@system-service"
"~@privileged @resources"
];
UMask = "0177";
RuntimeDirectory = "babeld";
StateDirectory = "babeld";
};
};
};
}