2022-10-01 17:53:20 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
svc,
|
|
|
|
hostapd,
|
|
|
|
output-template,
|
|
|
|
writeText,
|
|
|
|
lib,
|
2022-10-01 17:53:20 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
{ interface, params }:
|
2022-10-01 17:53:20 +00:00
|
|
|
let
|
|
|
|
inherit (liminix.services) longrun;
|
2025-02-10 21:55:08 +00:00
|
|
|
inherit (lib) concatStringsSep mapAttrsToList unique;
|
|
|
|
inherit (builtins)
|
|
|
|
map
|
|
|
|
filter
|
|
|
|
attrValues
|
|
|
|
length
|
|
|
|
head
|
|
|
|
typeOf
|
|
|
|
;
|
2023-07-16 16:50:06 +00:00
|
|
|
|
|
|
|
# This is not a friendly interface to configuring a wireless AP: it
|
|
|
|
# just passes everything straight through to the hostapd config.
|
|
|
|
# When we've worked out what the sensible options are to expose,
|
|
|
|
# we'll add them as top-level attributes and rename params to
|
|
|
|
# extraParams
|
2022-10-01 17:53:20 +00:00
|
|
|
|
2023-08-27 22:20:58 +00:00
|
|
|
name = "${interface.name}.hostapd";
|
2025-02-10 21:55:08 +00:00
|
|
|
defaults = {
|
2022-10-01 17:53:20 +00:00
|
|
|
driver = "nl80211";
|
|
|
|
logger_syslog = "-1";
|
|
|
|
logger_syslog_level = 1;
|
2024-08-14 21:57:02 +00:00
|
|
|
ctrl_interface = "/run/${name}";
|
2022-10-01 17:53:20 +00:00
|
|
|
ctrl_interface_group = 0;
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
attrs = defaults // params;
|
|
|
|
literal_or_output =
|
|
|
|
o:
|
|
|
|
(
|
|
|
|
{
|
|
|
|
string = builtins.toJSON;
|
|
|
|
int = builtins.toJSON;
|
|
|
|
lambda = (o: "output(${builtins.toJSON (o "service")}, ${builtins.toJSON (o "path")})");
|
|
|
|
}
|
|
|
|
.${builtins.typeOf o}
|
|
|
|
)
|
|
|
|
o;
|
2024-08-20 22:26:11 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
conf = (
|
|
|
|
writeText "hostapd.conf.in" (
|
|
|
|
(concatStringsSep "\n" (mapAttrsToList (n: v: "${n}={{ ${literal_or_output v} }}") attrs)) + "\n"
|
|
|
|
)
|
|
|
|
);
|
2024-08-15 22:00:41 +00:00
|
|
|
service = longrun {
|
|
|
|
inherit name;
|
|
|
|
dependencies = [ interface ];
|
|
|
|
run = ''
|
|
|
|
mkdir -p /run/${name}
|
|
|
|
chmod 0700 /run/${name}
|
2024-08-17 21:22:33 +00:00
|
|
|
${output-template}/bin/output-template '{{' '}}' < ${conf} > /run/${name}/hostapd.conf
|
|
|
|
exec ${hostapd}/bin/hostapd -i $(output ${interface} ifname) -P /run/${name}/hostapd.pid -S /run/${name}/hostapd.conf
|
2024-08-15 22:00:41 +00:00
|
|
|
'';
|
|
|
|
};
|
2024-08-30 19:46:48 +00:00
|
|
|
watch = filter (f: typeOf f == "lambda") (attrValues attrs);
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
svc.secrets.subscriber.build {
|
2024-08-30 19:46:48 +00:00
|
|
|
inherit service watch;
|
2024-08-15 22:00:41 +00:00
|
|
|
action = "restart-all";
|
2022-10-01 17:53:20 +00:00
|
|
|
}
|