stockholm/krebs/3modules/shadow.nix

83 lines
2.1 KiB
Nix
Raw Normal View History

2023-06-10 10:50:53 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
2019-04-19 14:32:00 +00:00
cfg = config.krebs.shadow;
mergeShadowsJq = pkgs.writeJq "merge-shadows.jq" ''
2021-02-05 18:52:07 +00:00
def is_int: . == (. | floor);
def fields_4_to_9: ["", "", "", "", "", ""];
def check_fields_3_to_9: (.[2] | tonumber | is_int) and .[3:] == fields_4_to_9;
2019-04-19 14:32:00 +00:00
def read_value:
split(":") |
if length == 9 then
2021-02-05 18:52:07 +00:00
if check_fields_3_to_9 then
2019-04-19 14:32:00 +00:00
.
else
error("unrecognized field contents")
end
elif length == 2 then
if .[1] | test("^\\$6\\$") then
2021-02-05 18:52:07 +00:00
. + ["1"] + fields_4_to_9
2019-04-19 14:32:00 +00:00
else
error("unrecognized hashed password")
end
else
error("unexpected field count: expected 9 or 2, got \(length)")
end;
def write_value:
join(":");
split("\n") |
map(select(length > 0) | read_value) |
reverse |
unique_by(.[0]) |
map(write_value) |
sort |
join("\n")
'';
in {
options.krebs.shadow = {
enable = mkEnableOption "krebs.shadow" // {
default = cfg.overridesFile != null;
};
overridesFile = mkOption {
2023-06-10 10:50:53 +00:00
apply = x: if builtins.typeOf x == "path" then toString x else x;
2019-04-19 14:32:00 +00:00
default = null;
description = ''
Path to a file containing additional shadow entries, used for adding
encrypted passwords which should not be placed into the Nix store.
The overrides file may contain either regular shadow(5) entries like:
2021-11-08 02:16:02 +00:00
<code>login-name:hashed-password:1::::::</code>
2019-04-19 14:32:00 +00:00
Or shortened entries only containing login name and password like:
2021-11-08 02:16:02 +00:00
<code>login-name:hashed-password</code>
2019-04-19 14:32:00 +00:00
'';
type = types.nullOr (types.either types.path types.absolute-pathname);
};
};
config = let
in mkIf cfg.enable {
system.activationScripts.users-tv = stringAfter [ "users" ] /* sh */ ''
(
set -efu
umask 77
${pkgs.jq}/bin/jq -Rrs -f ${mergeShadowsJq} \
/etc/shadow ${cfg.overridesFile} > /etc/shadow~
${pkgs.coreutils}/bin/mv /etc/shadow /etc/shadow-
${pkgs.coreutils}/bin/mv /etc/shadow~ /etc/shadow
)
'';
};
}