1
0

Compare commits

...

6 Commits

Author SHA1 Message Date
3cf2308bee tangc: stop printing unexpected blank lines 2024-08-31 15:29:10 +01:00
3913989be3 provide string to perform-encryption
instead of letting it read stdin, which I think may have been read
by a subprocess already sometimes?
2024-08-31 15:27:54 +01:00
43e5e6876e improve tangc error messages 2024-08-31 15:22:26 +01:00
7d6c80570c refactor all writeFennelScript calls to use writeFennel directly 2024-08-30 20:57:42 +01:00
e745991b9d restart pppoe/l2tp in secrets changes 2024-08-30 20:49:27 +01:00
defbfce1fb finish converting outputRef to lambda 2024-08-30 20:46:48 +01:00
11 changed files with 80 additions and 57 deletions

View File

@ -50,9 +50,8 @@ let
exec ${hostapd}/bin/hostapd -i $(output ${interface} ifname) -P /run/${name}/hostapd.pid -S /run/${name}/hostapd.conf exec ${hostapd}/bin/hostapd -i $(output ${interface} ifname) -P /run/${name}/hostapd.pid -S /run/${name}/hostapd.conf
''; '';
}; };
watch = filter (f: typeOf f == "set") (attrValues attrs); watch = filter (f: typeOf f == "lambda") (attrValues attrs);
in svc.secrets.subscriber.build { in svc.secrets.subscriber.build {
inherit watch; inherit service watch;
inherit service;
action = "restart-all"; action = "restart-all";
} }

View File

@ -1,6 +1,7 @@
{ {
liminix liminix
, lib , lib
, svc
, output-template , output-template
, writeAshScript , writeAshScript
, writeText , writeText
@ -78,16 +79,19 @@ let
max redials = 2 # this gives 1 actual retry, as xl2tpd can't count max redials = 2 # this gives 1 actual retry, as xl2tpd can't count
''; '';
control = "/run/${name}/control"; control = "/run/${name}/control";
in service = longrun {
longrun { inherit name;
inherit name; run = ''
run = '' mkdir -p /run/${name}
mkdir -p /run/${name} chmod 0700 /run/${name}
chmod 0700 /run/${name} touch ${control}
touch ${control} in_outputs ${name}
in_outputs ${name} echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options
echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options exec ${xl2tpd}/bin/xl2tpd -D -p /run/${name}/${name}.pid -c ${conf} -C ${control}
exec ${xl2tpd}/bin/xl2tpd -D -p /run/${name}/${name}.pid -c ${conf} -C ${control} '';
''; notification-fd = 10;
notification-fd = 10; };
in svc.secrets.subscriber.build {
watch = [ username password ];
inherit service;
} }

View File

@ -1,5 +1,6 @@
{ {
liminix liminix
, svc
, lib , lib
, output-template , output-template
, ppp , ppp
@ -66,19 +67,23 @@ let
"logfd" "2" "logfd" "2"
]; ];
timeoutOpt = if lcpEcho.interval != null then "-T ${builtins.toString (4 * lcpEcho.interval)}" else ""; timeoutOpt = if lcpEcho.interval != null then "-T ${builtins.toString (4 * lcpEcho.interval)}" else "";
in service = longrun {
longrun { inherit name;
inherit name; run = ''
run = '' mkdir -p /run/${name}
mkdir -p /run/${name} chmod 0700 /run/${name}
chmod 0700 /run/${name} in_outputs ${name}
in_outputs ${name} echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options
echo ${escapeShellArgs ppp-options'} | ${output-template}/bin/output-template '{{' '}}' > /run/${name}/ppp-options exec ${ppp}/bin/pppd pty "${pppoe}/bin/pppoe ${timeoutOpt} -I $(output ${interface} ifname)" file /run/${name}/ppp-options
exec ${ppp}/bin/pppd pty "${pppoe}/bin/pppoe ${timeoutOpt} -I $(output ${interface} ifname)" file /run/${name}/ppp-options '';
''; notification-fd = 10;
notification-fd = 10; timeout-up = if lcpEcho.failure != null
timeout-up = if lcpEcho.failure != null then (10 + lcpEcho.failure * lcpEcho.interval) * 1000
then (10 + lcpEcho.failure * lcpEcho.interval) * 1000 else 60 * 1000;
else 60 * 1000; dependencies = [ interface ];
dependencies = [ interface ]; };
in svc.secrets.subscriber.build {
watch = [ username password ];
inherit service;
action = "restart-all";
} }

View File

@ -66,7 +66,7 @@ in {
subscriber = config.system.callService ./subscriber.nix { subscriber = config.system.callService ./subscriber.nix {
watch = mkOption { watch = mkOption {
description = "secrets paths to subscribe to"; description = "secrets paths to subscribe to";
type = types.listOf types.attrs; type = types.listOf (types.functionTo types.anything);
}; };
service = mkOption { service = mkOption {
description = "subscribing service that will receive notification"; description = "subscribing service that will receive notification";

View File

@ -8,8 +8,8 @@ let
inherit (lib) unique optional; inherit (lib) unique optional;
inherit (service) name; inherit (service) name;
watched-services = unique (map (f: f.service) watch); watched-services = unique (map (f: f "service") watch);
paths = unique (map (f: f.path) watch); paths = unique (map (f: f "path") watch);
restart-flag = { restart-flag = {
restart = "-r"; restart = "-r";

View File

@ -127,5 +127,4 @@ in {
writeAshScript = callPackage ./write-ash-script { }; writeAshScript = callPackage ./write-ash-script { };
writeAshScriptBin = callPackage ./write-ash-script/bin.nix { }; writeAshScriptBin = callPackage ./write-ash-script/bin.nix { };
writeFennel = callPackage ./write-fennel { }; writeFennel = callPackage ./write-fennel { };
writeFennelScript = callPackage ./write-fennel-script { };
} }

View File

@ -1,15 +1,14 @@
{ {
netlink-lua, netlink-lua,
writeFennelScript, writeFennel,
runCommand, runCommand,
anoia, anoia,
}: }:
runCommand "ifwait" { } '' runCommand "ifwait" { } ''
mkdir -p $out/bin mkdir -p $out/bin
cp -p ${ cp -p ${
writeFennelScript "ifwait" [ writeFennel "ifwait" {
anoia packages = [ anoia netlink-lua ];
netlink-lua } ./ifwait.fnl
] ./ifwait.fnl
} $out/bin/ifwait } $out/bin/ifwait
'' ''

View File

@ -1,6 +1,8 @@
{ {
writeFennelScript, writeFennel,
anoia, anoia,
lualinux, lualinux,
}: }:
writeFennelScript "odhcpc-script" [anoia lualinux] ./odhcp6-script.fnl writeFennel "odhcpc-script" {
packages = [anoia lualinux];
} ./odhcp6-script.fnl

View File

@ -6,7 +6,7 @@
{ {
writeText, writeText,
writeFennelScript, writeFennel,
lib, lib,
s6-init-bin, s6-init-bin,
closureInfo, closureInfo,
@ -81,7 +81,7 @@ in attrset:
cp $closure/store-paths $out/etc/nix-store-paths cp $closure/store-paths $out/etc/nix-store-paths
$STRIP --remove-section=.note --remove-section=.comment --strip-all makedevs -o $out/bin/activate $STRIP --remove-section=.note --remove-section=.comment --strip-all makedevs -o $out/bin/activate
ln -s ${s6-init-bin}/bin/init $out/bin/init ln -s ${s6-init-bin}/bin/init $out/bin/init
cp -p ${writeFennelScript "restart-services" [] ./restart-services.fnl} $out/bin/restart-services cp -p ${writeFennel "restart-services" {} ./restart-services.fnl} $out/bin/restart-services
cat > $out/bin/install <<EOF cat > $out/bin/install <<EOF
#!/bin/sh -e #!/bin/sh -e
prefix=\''${1-/} prefix=\''${1-/}

View File

@ -90,11 +90,20 @@
})) }))
(fn http-post [url body] (fn http-post [url body]
(json.decode (match
(http.request "POST" url (http.request "POST" url
"" 0 "" 0
"application/x-www-form-urlencoded" "application/x-www-form-urlencoded"
body))) body)
s (json.decode s)
(nil err) (error err)))
(fn http-get [url body]
(match
(http.fetch url)
s (json.decode s)
(nil code msg) (error (.. "Error: " code ": " msg))))
(fn decrypt [] (fn decrypt []
(let [b64 (base64 :url) (let [b64 (base64 :url)
@ -112,7 +121,7 @@
jwk (jwk-exc-noi rep tmp)] jwk (jwk-exc-noi rep tmp)]
(print (jwe-dec jwk ph undigested))))) (print (jwe-dec jwk ph undigested)))))
(fn perform-encryption [jwks url] (fn perform-encryption [jwks url input]
(let [enc (jose! [:jwk :use "-i-" "-r" "-u" "deriveKey" "-o-"] (let [enc (jose! [:jwk :use "-i-" "-r" "-u" "deriveKey" "-o-"]
(json.encode jwks)) (json.encode jwks))
;; adding a -s to jwk use will "Always output a JWKSet" which ;; adding a -s to jwk use will "Always output a JWKSet" which
@ -131,8 +140,7 @@
:clevis {:pin "tang" :clevis {:pin "tang"
:tang {:url url :adv jwks }}}}] :tang {:url url :adv jwks }}}}]
(josep! [:jwe :enc "-i-" "-k-" "-I-" "-c"] (josep! [:jwe :enc "-i-" "-k-" "-I-" "-c"]
(.. (json.encode jwe) (json.encode jwk) (.. (json.encode jwe) (json.encode jwk) input)))))
(: (io.input) :read "*a"))))))
(fn usage [] (fn usage []
(print "tangc\n=====\n") (print "tangc\n=====\n")
@ -141,23 +149,30 @@
(json.encode {:url "http://tang.local"}))) (json.encode {:url "http://tang.local"})))
(print (%% "tangc encrypt %q < plaintext > filename.enc # encrypt" (print (%% "tangc encrypt %q < plaintext > filename.enc # encrypt"
(json.encode {:thp "idGFpbiBhIHByZWJ1aWx0IGRhdGFiYXNlIGZyb20gaH" (json.encode {:thp "idGFpbiBhIHByZWJ1aWx0IGRhdGFiYXNlIGZyb20gaH"
:url "http://tang.local"})))) :url "http://tang.local"})))
(os.exit 1))
(fn encrypt [cfg] (fn encrypt [cfg]
(let [{ : url : thp : adv } cfg (let [{ : url : thp : adv } cfg
_ (or url (usage))
raw-input (: (io.input) :read "*a")
b64 (base64 :url) b64 (base64 :url)
adv (or adv (json.decode (http.fetch (.. url "/adv/" (or thp "")))))] adv (or adv (http-get (.. url "/adv/" (or thp ""))))]
(assert adv.payload "advertisement is malformed") (assert adv.payload "advertisement is malformed")
(let [jwks (json.decode (b64:decode adv.payload)) (let [jwks (json.decode (b64:decode adv.payload))
ver (jose! [:jwk :use "-i-" "-r" "-u" "verify" "-o-"] ver (jose! [:jwk :use "-i-" "-r" "-u" "verify" "-o-"]
(json.encode jwks))] (json.encode jwks))]
(print (josep! [:jws :ver "-i" (json.encode adv) "-k-" "-a"] (match
(json.encode ver))) (josep! [:jws :ver "-i" (json.encode adv) "-k-" "-a"] (json.encode ver))
"" nil
str (error "jws verify of advertised keys failed: " str))
(if (and thp (search-key ver thp)) (if (and thp (search-key ver thp))
(print (perform-encryption jwks url)) (: (io.output) :write (perform-encryption jwks url raw-input))
(print (.. "Thumbrints of advertised keys are listed below. Set the thp attribute to preferred key\n" ;; the command line options are currently the same as clevis
;; but unless I can greatly improve this wording, that's gonna change
(print (.. "\ntangc: Thumbprints of advertised keys are listed below. Rerun this command\nproviding the thp attribute to specify the preferred key\n\n"
(josep! [:jwk :thp "-i-" "-a" (. thumbprint-algs 1)] (json.encode ver)))))))) (josep! [:jwk :thp "-i-" "-a" (. thumbprint-algs 1)] (json.encode ver))))))))
@ -165,6 +180,6 @@
(case arg (case arg
["decrypt"] (decrypt) ["decrypt"] (decrypt)
["encrypt" cfg] (encrypt (json.decode cfg)) ["encrypt" cfg] (encrypt (json.decode cfg))
_ (error "usage: tangc [decrypt] | [encrypt cfg]"))) _ (usage)))
{ : run } { : run }

View File

@ -5,10 +5,10 @@
let let
overlay = import "${liminix}/overlay.nix"; overlay = import "${liminix}/overlay.nix";
pkgs = import <nixpkgs> { overlays = [overlay]; }; pkgs = import <nixpkgs> { overlays = [overlay]; };
script = pkgs.writeFennelScript "foo" [] ./hello.fnl; script = pkgs.writeFennel "foo" {} ./hello.fnl;
inherit (pkgs.lua.pkgs) fifo; inherit (pkgs.lua.pkgs) fifo;
netlink = pkgs.netlink-lua; netlink = pkgs.netlink-lua;
script2 = pkgs.writeFennelScript "foo2" [fifo netlink] ./hello.fnl; script2 = pkgs.writeFennel "foo2" { packages = [fifo netlink];} ./hello.fnl;
in pkgs.runCommand "check" { in pkgs.runCommand "check" {
} '' } ''
set -e set -e