2022-03-06 22:26:49 +00:00
|
|
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
{ pkgs, config, depot, lib, ... }:
|
|
|
|
let
|
2022-03-07 00:52:03 +00:00
|
|
|
inherit (lib) mkOption types mkBefore optionalAttrs mkDefault;
|
|
|
|
|
|
|
|
acmeCertificates = lib.mapAttrsToList (name: cOrig: cOrig // { inherit name; }) config.my.vault.acmeCertificates;
|
2022-03-06 22:26:49 +00:00
|
|
|
|
|
|
|
# Work out where we're being asked to write things, and which groups, so we can correctly get permissions.
|
2022-03-06 23:01:51 +00:00
|
|
|
fullchainPath = c: pathFor c.fullchain c "fullchain.pem";
|
|
|
|
chainPath = c: pathFor c.chain c "chain.pem";
|
|
|
|
keyPath = c: pathFor c.key c "privkey.pem";
|
2022-03-06 22:26:49 +00:00
|
|
|
pathFor = p: c: suffix: if isNull p.path then "/var/lib/acme/${c.name}/${suffix}" else p.path;
|
|
|
|
|
2022-03-07 00:52:03 +00:00
|
|
|
isNginx = c: builtins.length c.nginxVirtualHosts > 0;
|
|
|
|
defaultGroup = c: if isNull c.group then if isNginx c then "nginx" else "acme" else c.group;
|
|
|
|
groupOrDefault = p: c: if isNull p then defaultGroup c else p;
|
|
|
|
|
|
|
|
reloadOrRestartUnits = c: (lib.optional (isNginx c) "nginx.service") ++ c.reloadOrRestartUnits;
|
|
|
|
|
|
|
|
acmeCertificatesGroups = lib.unique (lib.filter (x: x != "") (builtins.concatMap (c: [
|
|
|
|
(groupOrDefault c.fullchain.group c)
|
|
|
|
(groupOrDefault c.chain.group c)
|
|
|
|
(groupOrDefault c.key.group c)
|
|
|
|
]) acmeCertificates));
|
2022-03-06 22:26:49 +00:00
|
|
|
|
2022-03-11 22:07:31 +00:00
|
|
|
acmeCertificatesTemplate = map (c: {
|
|
|
|
contents = ''
|
|
|
|
{{with secret "acme/certs/${c.role}" "common_name=${c.name}" "alternative_names=${builtins.concatStringsSep "," (builtins.sort builtins.lessThan c.extraNames)}"}}
|
|
|
|
{{ .Data.cert | writeToFile "${fullchainPath c}" "vault-agent" "${groupOrDefault c.fullchain.group c}" "${c.fullchain.mode}" "newline" }}
|
|
|
|
{{ .Data.issuer_cert | writeToFile "${chainPath c}" "vault-agent" "${groupOrDefault c.chain.group c}" "${c.chain.mode}" "newline" }}
|
|
|
|
{{ .Data.private_key | writeToFile "${keyPath c}" "vault-agent" "${groupOrDefault c.key.group c}" "${c.key.mode}" "newline" }}
|
|
|
|
{{ end }}
|
2022-03-06 22:26:49 +00:00
|
|
|
'';
|
2022-03-11 22:07:31 +00:00
|
|
|
destination = "/var/lib/acme/${c.name}/token";
|
|
|
|
perms = "0600";
|
|
|
|
command = let
|
|
|
|
grp = groupOrDefault c.fullchain.group c;
|
|
|
|
in pkgs.writeShellScript "post-${c.name}-crt" ''
|
|
|
|
${lib.concatMapStringsSep "\n" (x: ''
|
|
|
|
/run/current-system/sw/bin/systemctl reload-or-restart ${x}
|
|
|
|
'') (reloadOrRestartUnits c)}
|
|
|
|
${lib.concatMapStringsSep "\n" (x: ''
|
|
|
|
/run/current-system/sw/bin/systemctl restart ${x}
|
|
|
|
'') c.restartUnits}
|
|
|
|
${lib.optionalString (c.command != "") c.command}
|
|
|
|
'';
|
|
|
|
}) acmeCertificates;
|
2022-03-06 22:26:49 +00:00
|
|
|
|
2022-03-11 22:07:31 +00:00
|
|
|
extraWritableDirs = lib.unique (builtins.concatMap (c: [
|
|
|
|
(dirOf (fullchainPath c))
|
|
|
|
(dirOf (chainPath c))
|
|
|
|
(dirOf (keyPath c))
|
|
|
|
]) acmeCertificates);
|
2022-03-06 22:26:49 +00:00
|
|
|
acmeCertificatesTmpdirs = lib.unique (builtins.concatMap (c:
|
|
|
|
let
|
2022-03-06 23:01:51 +00:00
|
|
|
fullchainDir = dirOf (fullchainPath c);
|
|
|
|
chainDir = dirOf (chainPath c);
|
|
|
|
keyDir = dirOf (keyPath c);
|
2022-03-06 22:26:49 +00:00
|
|
|
|
2022-03-07 00:52:03 +00:00
|
|
|
fullchainGroup = groupOrDefault c.fullchain.group c;
|
|
|
|
chainGroup = groupOrDefault c.chain.group c;
|
|
|
|
keyGroup = groupOrDefault c.key.group c;
|
|
|
|
|
|
|
|
dirGroup = if fullchainDir == keyDir && chainDir == keyDir && c.fullchain.makeDir && c.chain.makeDir && c.key.makeDir then if fullchainGroup == keyGroup && fullchainGroup == chainGroup then fullchainGroup else "-" else null;
|
2022-03-06 22:26:49 +00:00
|
|
|
|
2022-03-07 00:52:03 +00:00
|
|
|
fullchainDirGroup = if isNull dirGroup then fullchainGroup else dirGroup;
|
|
|
|
chainDirGroup = if isNull dirGroup then chainGroup else dirGroup;
|
|
|
|
keyDirGroup = if isNull dirGroup then keyGroup else dirGroup;
|
2022-03-06 23:01:51 +00:00
|
|
|
in lib.optional c.fullchain.makeDir "d ${fullchainDir} 0750 vault-agent ${fullchainDirGroup} - -"
|
|
|
|
++ lib.optional c.chain.makeDir "d ${chainDir} 0750 vault-agent ${chainDirGroup} - -"
|
|
|
|
++ lib.optional c.key.makeDir "d ${keyDir} 0750 vault-agent ${keyDirGroup} - -"
|
2022-03-11 22:07:31 +00:00
|
|
|
++ [ "d /var/lib/acme/${c.name} 0750 vault-agent - -" ]
|
2022-03-07 00:52:03 +00:00
|
|
|
) acmeCertificates);
|
2022-03-06 22:26:49 +00:00
|
|
|
|
2022-03-07 00:52:03 +00:00
|
|
|
allRestartableUnits = lib.unique (builtins.concatMap (c: (reloadOrRestartUnits c) ++ c.restartUnits) acmeCertificates);
|
2022-03-06 22:26:49 +00:00
|
|
|
in
|
|
|
|
{
|
2022-03-11 14:40:08 +00:00
|
|
|
imports = [
|
|
|
|
./vault-agent.nix
|
|
|
|
];
|
|
|
|
|
2022-03-06 22:26:49 +00:00
|
|
|
options.my.vault.acmeCertificates = mkOption {
|
2022-03-07 00:52:03 +00:00
|
|
|
type = with types; attrsOf (submodule {
|
2022-03-06 22:26:49 +00:00
|
|
|
options = let
|
|
|
|
fileType = what: defaultMode: submodule {
|
|
|
|
options = {
|
|
|
|
path = mkOption {
|
|
|
|
type = nullOr path;
|
|
|
|
default = null;
|
|
|
|
description = "Path to put the ${what}.";
|
|
|
|
};
|
|
|
|
mode = mkOption {
|
|
|
|
type = str;
|
|
|
|
default = defaultMode;
|
|
|
|
description = "Mode to set for the ${what}.";
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
2022-03-07 00:52:03 +00:00
|
|
|
type = nullOr str;
|
|
|
|
default = null;
|
|
|
|
description = "Owner group to set for the ${what}. If null, taken from parent.";
|
2022-03-06 22:26:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeDir = mkOption {
|
|
|
|
type = bool;
|
|
|
|
default = true;
|
|
|
|
description = "If true, creates the parent directory.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
role = mkOption {
|
|
|
|
type = str;
|
2022-03-06 23:01:51 +00:00
|
|
|
default = "letsencrypt-cloudflare";
|
2022-03-06 22:26:49 +00:00
|
|
|
description = "Which role to use for certificate issuance.";
|
|
|
|
};
|
|
|
|
extraNames = mkOption {
|
|
|
|
type = listOf str;
|
|
|
|
default = [];
|
|
|
|
description = "Non-empty list of hostnames to include.";
|
|
|
|
};
|
|
|
|
|
|
|
|
command = mkOption {
|
|
|
|
type = lines;
|
|
|
|
default = "";
|
|
|
|
description = "Command to run after generating the certificate.";
|
|
|
|
};
|
|
|
|
reloadOrRestartUnits = mkOption {
|
|
|
|
type = listOf str;
|
|
|
|
default = [];
|
|
|
|
description = "List of systemd units to reload/restart after obtaining a new certificate.";
|
|
|
|
};
|
|
|
|
restartUnits = mkOption {
|
|
|
|
type = listOf str;
|
|
|
|
default = [];
|
|
|
|
description = "List of systemd units to restart after obtaining a new certificate.";
|
|
|
|
};
|
|
|
|
|
2022-03-07 00:52:03 +00:00
|
|
|
nginxVirtualHosts = mkOption {
|
|
|
|
type = listOf str;
|
|
|
|
default = [];
|
|
|
|
description = "List of nginx virtual hosts to apply SSL to.";
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = nullOr str;
|
|
|
|
default = null;
|
|
|
|
description = "Owner group to set for the generated files. Defaults to 'acme' unless nginxVirtualHosts is set, in which case it defaults to 'nginx'.";
|
|
|
|
};
|
|
|
|
|
2022-03-06 23:01:51 +00:00
|
|
|
fullchain = mkOption {
|
|
|
|
type = fileType "certificate's full chain" "0644";
|
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
chain = mkOption {
|
|
|
|
type = fileType "certificate chain only" "0644";
|
2022-03-06 22:26:49 +00:00
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
key = mkOption {
|
|
|
|
type = fileType "certificate's key" "0640";
|
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
2022-03-07 00:52:03 +00:00
|
|
|
default = {};
|
2022-03-06 22:26:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
my.vault.settings = {
|
|
|
|
template = mkBefore acmeCertificatesTemplate;
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd = optionalAttrs config.my.vault.enable {
|
|
|
|
services.vault-agent = {
|
|
|
|
serviceConfig = {
|
|
|
|
SupplementaryGroups = mkBefore acmeCertificatesGroups;
|
2022-03-11 22:07:31 +00:00
|
|
|
ReadWritePaths = mkBefore extraWritableDirs;
|
2022-03-06 22:26:49 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
tmpfiles.rules = acmeCertificatesTmpdirs;
|
|
|
|
};
|
|
|
|
|
2022-03-07 00:52:03 +00:00
|
|
|
services.nginx = optionalAttrs config.my.vault.enable {
|
|
|
|
virtualHosts = builtins.listToAttrs (builtins.concatMap (certData: let
|
|
|
|
fullchain = fullchainPath certData;
|
|
|
|
chain = chainPath certData;
|
|
|
|
key = keyPath certData;
|
|
|
|
in map (hostName: lib.nameValuePair hostName {
|
|
|
|
sslCertificate = mkDefault (fullchainPath certData);
|
|
|
|
sslCertificateKey = mkDefault (keyPath certData);
|
|
|
|
sslTrustedCertificate = mkDefault (chainPath certData);
|
|
|
|
}) certData.nginxVirtualHosts) acmeCertificates);
|
|
|
|
};
|
|
|
|
|
2022-03-06 22:26:49 +00:00
|
|
|
security.polkit.extraConfig = lib.mkAfter ''
|
|
|
|
// NixOS module: depot/lib/vault-agent-acme.nix
|
|
|
|
polkit.addRule(function(action, subject) {
|
|
|
|
if (action.id !== "org.freedesktop.systemd1.manage-units" ||
|
|
|
|
subject.user !== "vault-agent") {
|
|
|
|
return polkit.Result.NOT_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
var verb = action.lookup("verb");
|
|
|
|
if (verb !== "restart" && verb !== "reload-or-restart") {
|
|
|
|
return polkit.Result.NOT_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
var allowedUnits = ${builtins.toJSON allRestartableUnits};
|
|
|
|
var unit = action.lookup("unit");
|
|
|
|
for (var i = 0; i < allowedUnits.length; i++) {
|
|
|
|
if (allowedUnits[i] === unit) {
|
|
|
|
return polkit.Result.YES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return polkit.Result.NOT_HANDLED;
|
|
|
|
});
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|