130 lines
3.3 KiB
Nix
130 lines
3.3 KiB
Nix
# Portions of this file are sourced from
|
|
# https://github.com/NickCao/flakes/blob/3b03efb676ea602575c916b2b8bc9d9cd13b0d85/modules/gravity/default.nix
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
mylib,
|
|
...
|
|
}:
|
|
with lib;
|
|
let
|
|
cfg = config.services.enthalpy;
|
|
in
|
|
{
|
|
options.services.enthalpy.bird = {
|
|
enable = mkEnableOption "bird for site-scope connectivity";
|
|
socket = mkOption {
|
|
type = types.str;
|
|
default = "/run/enthalpy/bird/bird.ctl";
|
|
description = ''
|
|
Path to the bird control socket.
|
|
'';
|
|
};
|
|
config = mkOption {
|
|
type = types.lines;
|
|
description = ''
|
|
Configuration file for bird.
|
|
'';
|
|
};
|
|
checkConfig = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether to check the config at build time.
|
|
'';
|
|
};
|
|
routerId = mkOption {
|
|
type = types.int;
|
|
description = ''
|
|
Router ID for the bird instance.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf (cfg.enable && cfg.bird.enable) {
|
|
environment.etc."enthalpy/bird/bird.conf".source = pkgs.writeTextFile {
|
|
name = "bird";
|
|
text = cfg.bird.config;
|
|
checkPhase = optionalString cfg.bird.checkConfig ''
|
|
ln -s $out bird.conf
|
|
${pkgs.buildPackages.bird}/bin/bird -d -p -c bird.conf
|
|
'';
|
|
};
|
|
|
|
systemd.services.enthalpy-bird = {
|
|
serviceConfig =
|
|
mylib.misc.serviceHardened
|
|
// config.networking.netns.enthalpy.serviceConfig
|
|
// {
|
|
Type = "forking";
|
|
Restart = "on-failure";
|
|
RestartSec = 5;
|
|
DynamicUser = true;
|
|
RuntimeDirectory = "enthalpy/bird";
|
|
ExecStart = "${pkgs.bird}/bin/bird -s ${cfg.bird.socket} -c /etc/enthalpy/bird/bird.conf";
|
|
ExecReload = "${pkgs.bird}/bin/birdc -s ${cfg.bird.socket} configure";
|
|
ExecStop = "${pkgs.bird}/bin/birdc -s ${cfg.bird.socket} down";
|
|
CapabilityBoundingSet = [
|
|
"CAP_NET_ADMIN"
|
|
"CAP_NET_BIND_SERVICE"
|
|
"CAP_NET_RAW"
|
|
];
|
|
AmbientCapabilities = [
|
|
"CAP_NET_ADMIN"
|
|
"CAP_NET_BIND_SERVICE"
|
|
"CAP_NET_RAW"
|
|
];
|
|
RestrictAddressFamilies = [
|
|
"AF_UNIX"
|
|
"AF_INET"
|
|
"AF_INET6"
|
|
"AF_NETLINK"
|
|
];
|
|
};
|
|
after = [ "netns-enthalpy.service" ];
|
|
partOf = [ "netns-enthalpy.service" ];
|
|
wantedBy = [
|
|
"multi-user.target"
|
|
"netns-enthalpy.service"
|
|
];
|
|
reloadTriggers = [ config.environment.etc."enthalpy/bird/bird.conf".source ];
|
|
};
|
|
|
|
services.enthalpy.bird.config = mkBefore ''
|
|
router id ${toString cfg.bird.routerId};
|
|
ipv6 sadr table sadr6;
|
|
protocol device {
|
|
scan time 5;
|
|
}
|
|
protocol kernel {
|
|
ipv6 sadr {
|
|
export all;
|
|
import none;
|
|
};
|
|
metric 512;
|
|
}
|
|
protocol static {
|
|
ipv6 sadr;
|
|
route ${cfg.prefix} from ::/0 unreachable;
|
|
route ${cfg.network} from ::/0 unreachable;
|
|
};
|
|
protocol babel {
|
|
ipv6 sadr {
|
|
export all;
|
|
import all;
|
|
};
|
|
randomize router id;
|
|
interface "enta*" {
|
|
type tunnel;
|
|
link quality etx;
|
|
rxcost 32;
|
|
rtt cost 1024;
|
|
rtt max 1024 ms;
|
|
rx buffer 2000;
|
|
};
|
|
}
|
|
'';
|
|
};
|
|
}
|