liminix/modules/ssh/ssh.nix

80 lines
2.3 KiB
Nix
Raw Normal View History

2023-08-10 21:53:21 +00:00
{
liminix
, dropbear
, lib
, watch-ssh-keys
2023-08-10 21:53:21 +00:00
}:
2024-08-23 22:13:49 +00:00
{
address,
allowLocalPortForward,
allowPasswordLogin,
allowPasswordLoginForRoot,
allowRemoteConnectionToForwardedPorts,
allowRemotePortForward,
allowRoot,
authorizedKeys,
port,
extraConfig
}:
2023-08-10 21:53:21 +00:00
let
name = "sshd";
inherit (builtins) toString typeOf;
2023-08-10 21:53:21 +00:00
inherit (liminix.services) longrun;
inherit (lib) concatStringsSep mapAttrs mapAttrsToList;
keydir = "/run/${name}/authorized_keys";
2023-08-10 21:53:21 +00:00
options =
[
"-e" # pass environment to child
"-E" # log to stderr
"-R" # create hostkeys if needed
"-P /run/dropbear.pid"
"-F" # don't fork into background
] ++
2024-08-23 22:13:49 +00:00
(lib.optional (! allowRoot) "-w") ++
(lib.optional (! allowPasswordLogin) "-s") ++
(lib.optional (! allowPasswordLoginForRoot) "-g") ++
(lib.optional (! allowLocalPortForward) "-j") ++
(lib.optional (! allowRemotePortForward) "-k") ++
(lib.optional (! allowRemoteConnectionToForwardedPorts) "-a") ++
(lib.optionals (authorizedKeys != null) ["-U" "${keydir}/%n"]) ++
2024-08-23 22:13:49 +00:00
[(if address != null
then "-p ${address}:${toString port}"
else "-p ${toString port}")] ++
[extraConfig];
isKeyservice = typeOf authorizedKeys == "lambda";
authKeysConcat =
if authorizedKeys != null && !isKeyservice
then mapAttrs
(n : v : concatStringsSep "\\n" v)
authorizedKeys
else {};
keyservice = longrun {
name = "${name}-watch-keys";
run = ''
mkdir -p ${keydir}
exec ${watch-ssh-keys}/bin/watch-ssh-keys -d ${keydir} ${authorizedKeys "service"} ${authorizedKeys "path"}
'';
dependencies = [ (authorizedKeys "service") ] ;
};
2023-08-10 21:53:21 +00:00
in
longrun {
inherit name;
2024-02-13 22:12:26 +00:00
# we need /run/dropbear to point to hostkey storage, as that
# pathname is hardcoded into the binary.
2023-08-10 21:53:21 +00:00
# env -i clears the environment so we don't pass anything weird to
# ssh sessions
run = ''
2024-02-13 22:12:26 +00:00
ln -s $(mkstate dropbear) /run
mkdir -p /run/${name}/authorized_keys
${concatStringsSep "\n"
(mapAttrsToList
(n : v : "echo -e '${v}' > /run/${name}/authorized_keys/${n} ")
authKeysConcat
)
}
2023-08-10 21:53:21 +00:00
. /etc/profile # sets PATH but do we need this? it's the same file as ashrc
exec env -i ENV=/etc/ashrc PATH=$PATH ${dropbear}/bin/dropbear ${concatStringsSep " " options}
'';
dependencies = lib.optional isKeyservice keyservice;
2023-08-10 21:53:21 +00:00
}