2022-09-28 20:33:18 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
dnsmasq,
|
|
|
|
serviceFns,
|
|
|
|
lib,
|
2022-09-28 20:33:18 +00:00
|
|
|
}:
|
2023-08-04 19:39:29 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
interface,
|
|
|
|
user,
|
|
|
|
domain,
|
|
|
|
group,
|
|
|
|
ranges,
|
|
|
|
hosts,
|
|
|
|
upstreams,
|
|
|
|
resolvconf,
|
2023-08-04 19:39:29 +00:00
|
|
|
}:
|
2022-09-28 20:33:18 +00:00
|
|
|
let
|
2023-08-27 22:20:58 +00:00
|
|
|
name = "${interface.name}.dnsmasq";
|
2022-09-28 20:33:18 +00:00
|
|
|
inherit (liminix.services) longrun;
|
2023-09-04 21:06:53 +00:00
|
|
|
inherit (lib) concatStrings concatStringsSep mapAttrsToList;
|
2025-02-10 21:55:08 +00:00
|
|
|
hostOpt =
|
|
|
|
name:
|
|
|
|
{
|
|
|
|
mac,
|
|
|
|
v4,
|
|
|
|
v6,
|
|
|
|
leasetime,
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
v6s = concatStrings (map (a: ",[${a}]") v6);
|
|
|
|
in
|
|
|
|
"--dhcp-host=${mac},${v4}${v6s},${name},${builtins.toString leasetime}";
|
2023-07-14 21:53:25 +00:00
|
|
|
in
|
|
|
|
longrun {
|
2022-09-28 20:33:18 +00:00
|
|
|
inherit name;
|
|
|
|
dependencies = [ interface ];
|
|
|
|
run = ''
|
|
|
|
${dnsmasq}/bin/dnsmasq \
|
|
|
|
--user=${user} \
|
|
|
|
--domain=${domain} \
|
|
|
|
--group=${group} \
|
2023-08-27 22:20:58 +00:00
|
|
|
--interface=$(output ${interface} ifname) \
|
2022-09-28 20:33:18 +00:00
|
|
|
${lib.concatStringsSep " " (builtins.map (r: "--dhcp-range=${r}") ranges)} \
|
|
|
|
${lib.concatStringsSep " " (builtins.map (r: "--server=${r}") upstreams)} \
|
|
|
|
--keep-in-foreground \
|
|
|
|
--dhcp-authoritative \
|
2025-02-10 21:55:08 +00:00
|
|
|
${
|
|
|
|
if resolvconf != null then
|
|
|
|
"--resolv-file=$(output_path ${resolvconf} resolv.conf)"
|
|
|
|
else
|
|
|
|
"--no-resolv"
|
|
|
|
} \
|
2023-09-04 21:06:53 +00:00
|
|
|
${lib.concatStringsSep " " (mapAttrsToList hostOpt hosts)} \
|
2023-02-25 22:53:50 +00:00
|
|
|
--no-hosts \
|
2022-09-28 20:33:18 +00:00
|
|
|
--log-dhcp \
|
|
|
|
--enable-ra \
|
|
|
|
--log-facility=- \
|
2024-02-13 21:54:45 +00:00
|
|
|
--dhcp-leasefile=$(mkstate ${name})/leases \
|
2022-09-28 20:33:18 +00:00
|
|
|
--pid-file=/run/${name}.pid
|
|
|
|
'';
|
2025-02-10 21:55:08 +00:00
|
|
|
# --log-debug \
|
|
|
|
# --log-queries \
|
2024-02-15 23:32:10 +00:00
|
|
|
|
2022-09-28 20:33:18 +00:00
|
|
|
}
|