2023-11-02 00:13:50 +02:00
|
|
|
{ config, depot, lib, pkgs, ... }:
|
2023-08-23 01:55:48 +03:00
|
|
|
|
|
|
|
let
|
2023-11-02 00:13:50 +02:00
|
|
|
inherit (depot.packages) s3ql;
|
2023-08-23 01:55:48 +03:00
|
|
|
|
|
|
|
cfg = config.services.external-storage;
|
|
|
|
|
|
|
|
create = lib.flip lib.mapAttrs';
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2023-08-23 18:02:22 +03:00
|
|
|
imports = [
|
|
|
|
./strict-mounts.nix
|
|
|
|
];
|
|
|
|
|
2023-08-23 01:55:48 +03:00
|
|
|
options = {
|
|
|
|
services.external-storage = {
|
|
|
|
fileSystems = lib.mkOption {
|
|
|
|
description = "S3QL-based filesystems on top of CIFS mountpoints.";
|
|
|
|
default = {};
|
|
|
|
type = with lib.types; lazyAttrsOf (submodule ./filesystem-type.nix);
|
|
|
|
};
|
|
|
|
underlays = lib.mkOption {
|
|
|
|
description = "CIFS underlays for S3QL filesystems.";
|
|
|
|
default = {};
|
|
|
|
type = with lib.types; lazyAttrsOf (submodule ./underlay-type.nix);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2023-11-02 03:46:40 +02:00
|
|
|
boot.supportedFilesystems = lib.mkIf (cfg.underlays != {}) [ "cifs" ];
|
2023-08-23 01:55:48 +03:00
|
|
|
|
|
|
|
age.secrets = lib.mkMerge [
|
|
|
|
(create cfg.underlays (name: ul: lib.nameValuePair "cifsCredentials-${name}" { file = ul.credentialsFile; }))
|
2023-11-02 03:46:40 +02:00
|
|
|
(create cfg.fileSystems (name: fs: lib.nameValuePair "storageAuth-${name}" { file = fs.authFile; }))
|
2023-08-23 01:55:48 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
fileSystems = create cfg.underlays (name: ul: {
|
|
|
|
name = ul.mountpoint;
|
|
|
|
value = {
|
|
|
|
fsType = "cifs";
|
|
|
|
device = "//${ul.host}/${ul.storageBoxAccount}-${ul.subUser}${ul.path}";
|
|
|
|
options = [
|
|
|
|
"credentials=${config.age.secrets."cifsCredentials-${name}".path}"
|
|
|
|
"dir_mode=0700"
|
|
|
|
"file_mode=0600"
|
2023-08-28 03:19:39 +03:00
|
|
|
"uid=${toString ul.uid}"
|
|
|
|
"gid=${toString ul.gid}"
|
|
|
|
"forceuid"
|
|
|
|
"forcegid"
|
2023-08-23 01:55:48 +03:00
|
|
|
"seal"
|
2023-08-23 02:46:18 +03:00
|
|
|
"hard"
|
|
|
|
"resilienthandles"
|
|
|
|
"cache=loose"
|
2023-08-23 01:55:48 +03:00
|
|
|
"_netdev"
|
|
|
|
"x-systemd.automount"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
});
|
|
|
|
systemd = {
|
|
|
|
tmpfiles.rules = lib.mapAttrsToList (_: fs: "d '${fs.cacheDir}' 0700 root root - -") cfg.fileSystems;
|
|
|
|
|
|
|
|
mounts = lib.mapAttrsToList (name: fs: {
|
|
|
|
where = fs.mountpoint;
|
|
|
|
what = name;
|
|
|
|
requires = [ "${fs.unitName}.service" ];
|
|
|
|
after = [ "${fs.unitName}.service" ];
|
|
|
|
}) cfg.fileSystems;
|
|
|
|
|
|
|
|
services = create cfg.fileSystems (name: fs: {
|
|
|
|
name = fs.unitName;
|
|
|
|
value = let
|
2023-11-02 03:46:40 +02:00
|
|
|
isUnderlay = fs.underlay != null;
|
|
|
|
|
2024-06-06 00:04:33 +03:00
|
|
|
backendUrl = if isUnderlay then "local://${localBackendPath}" else fs.backend;
|
2023-11-02 03:46:40 +02:00
|
|
|
|
|
|
|
fsType = if isUnderlay then "local" else lib.head (lib.strings.match "([a-z0-9]*)://.*" backendUrl);
|
2024-06-06 00:04:33 +03:00
|
|
|
|
|
|
|
localBackendPath = if isUnderlay then cfg.underlays.${fs.underlay}.mountpoint else lib.head (lib.strings.match "[a-z0-9]*://(/.*)" backendUrl);
|
2023-08-23 01:55:48 +03:00
|
|
|
in {
|
|
|
|
description = fs.unitDescription;
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
wants = [ "remote-fs.target" ];
|
|
|
|
before = [ "remote-fs.target" ];
|
|
|
|
|
|
|
|
# used by umount.s3ql
|
|
|
|
path = with pkgs; [
|
|
|
|
psmisc
|
|
|
|
util-linux
|
|
|
|
];
|
|
|
|
|
2024-06-06 00:04:33 +03:00
|
|
|
unitConfig.RequiresMountsFor = lib.mkIf isUnderlay localBackendPath;
|
2023-08-23 01:55:48 +03:00
|
|
|
|
|
|
|
serviceConfig = let
|
|
|
|
commonOptions = [
|
|
|
|
"--cachedir" fs.cacheDir
|
2023-11-02 03:46:40 +02:00
|
|
|
"--authfile" config.age.secrets."storageAuth-${name}".path
|
|
|
|
] ++ (lib.optionals (fs.backendOptions != []) [ "--backend-options" (lib.concatStringsSep "," fs.backendOptions) ]);
|
2023-08-23 01:55:48 +03:00
|
|
|
in {
|
|
|
|
Type = "notify";
|
|
|
|
|
|
|
|
ExecStartPre = map lib.escapeShellArgs [
|
|
|
|
[
|
2023-11-02 03:46:40 +02:00
|
|
|
(let
|
|
|
|
mkfsEncrypted = ''
|
|
|
|
${pkgs.gnugrep}/bin/grep -m1 fs-passphrase: '${config.age.secrets."storageAuth-${name}".path}' \
|
2023-08-23 01:55:48 +03:00
|
|
|
| cut -d' ' -f2- \
|
2023-11-02 03:46:40 +02:00
|
|
|
| ${s3ql}/bin/mkfs.s3ql ${lib.escapeShellArgs commonOptions} -L '${name}' '${backendUrl}'
|
|
|
|
'';
|
|
|
|
|
|
|
|
mkfsPlain = ''
|
|
|
|
${s3ql}/bin/mkfs.s3ql ${lib.escapeShellArgs commonOptions} --plain -L '${name}' '${backendUrl}'
|
|
|
|
'';
|
|
|
|
|
|
|
|
detectFs = {
|
2024-06-06 00:04:33 +03:00
|
|
|
local = "test -e ${localBackendPath}/s3ql_metadata";
|
2023-11-02 03:46:40 +02:00
|
|
|
}.${fsType} or null;
|
|
|
|
in pkgs.writeShellScript "create-s3ql-filesystem" (lib.optionalString (detectFs != null) ''
|
|
|
|
if ! ${detectFs}; then
|
|
|
|
echo Creating new S3QL filesystem on ${backendUrl}
|
|
|
|
${if fs.encrypt then mkfsEncrypted else mkfsPlain}
|
2023-08-23 01:55:48 +03:00
|
|
|
fi
|
2023-11-02 03:46:40 +02:00
|
|
|
''))
|
2023-08-23 01:55:48 +03:00
|
|
|
]
|
|
|
|
[
|
|
|
|
"${pkgs.coreutils}/bin/install" "-dm755" fs.mountpoint
|
|
|
|
]
|
|
|
|
([
|
2023-11-02 00:13:50 +02:00
|
|
|
"${s3ql}/bin/fsck.s3ql"
|
2023-11-02 03:46:40 +02:00
|
|
|
backendUrl
|
2023-08-23 01:55:48 +03:00
|
|
|
"--compress" "none"
|
|
|
|
] ++ commonOptions)
|
|
|
|
];
|
|
|
|
|
|
|
|
ExecStart = lib.escapeShellArgs ([
|
2023-11-02 00:13:50 +02:00
|
|
|
"${s3ql}/bin/mount.s3ql"
|
2023-11-02 03:46:40 +02:00
|
|
|
backendUrl
|
2023-08-23 01:55:48 +03:00
|
|
|
fs.mountpoint
|
|
|
|
"--fs-name" "${fs.unitName}"
|
|
|
|
"--allow-other"
|
|
|
|
"--systemd" "--fg"
|
|
|
|
"--log" "none"
|
|
|
|
"--compress" "none"
|
|
|
|
] ++ commonOptions);
|
|
|
|
|
|
|
|
ExecStop = lib.escapeShellArgs [
|
2023-11-02 00:13:50 +02:00
|
|
|
"${s3ql}/bin/umount.s3ql"
|
2023-08-23 01:55:48 +03:00
|
|
|
"--log" "none"
|
|
|
|
fs.mountpoint
|
|
|
|
];
|
|
|
|
|
|
|
|
# fsck and unmounting might take a while
|
|
|
|
TimeoutStartSec = "6h";
|
|
|
|
TimeoutStopSec = "900s";
|
|
|
|
|
|
|
|
# s3ql only handles SIGINT
|
|
|
|
KillSignal = "SIGINT";
|
|
|
|
|
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = "10s";
|
2023-08-27 02:44:21 +03:00
|
|
|
|
|
|
|
# see https://www.rath.org/s3ql-docs/man/fsck.html
|
|
|
|
SuccessExitStatus = [ 128 ];
|
2023-08-23 01:55:48 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|