2021-01-02 00:00:55 +00:00
|
|
|
with import <stockholm/lib>;
|
|
|
|
{ config, pkgs, ... }: let
|
2021-01-24 09:41:47 +00:00
|
|
|
cfg = config.krebs.sync-containers;
|
2021-01-02 00:00:55 +00:00
|
|
|
paths = cname: {
|
|
|
|
plain = "/var/lib/containers/${cname}/var/state";
|
|
|
|
ecryptfs = "${cfg.dataLocation}/${cname}/ecryptfs";
|
|
|
|
securefs = "${cfg.dataLocation}/${cname}/securefs";
|
2022-11-22 08:08:20 +00:00
|
|
|
luksfile = "${cfg.dataLocation}/${cname}/luksfile";
|
|
|
|
};
|
|
|
|
init = cname: {
|
|
|
|
plain = ''
|
|
|
|
echo 'no need for init'
|
|
|
|
'';
|
|
|
|
ecryptfs = ''
|
|
|
|
${pkgs.ecrypt}/bin/ecrypt init ${cfg.dataLocation}/${cname}/ecryptfs /var/lib/containers/${cname}/var/state
|
|
|
|
'';
|
|
|
|
securefs = ''
|
|
|
|
${pkgs.securefs}/bin/securefs create --format 3 ${cfg.dataLocation}/${cname}/securefs
|
|
|
|
'';
|
|
|
|
luksfile = ''
|
|
|
|
${pkgs.coreutils}/bin/truncate -s 10G '${(paths cname).luksfile}/fs.luks'
|
|
|
|
${pkgs.cryptsetup}/bin/cryptsetup luksFormat '${(paths cname).luksfile}/fs.luks'
|
|
|
|
${pkgs.cryptsetup}/bin/cryptsetup luksOpen '${(paths cname).luksfile}/fs.luks' 'luksfile-${cname}'
|
|
|
|
${pkgs.xfsprogs}/bin/mkfs.xfs '/dev/mapper/luksfile-${cname}'
|
|
|
|
'';
|
2021-01-02 00:00:55 +00:00
|
|
|
};
|
|
|
|
start = cname: {
|
|
|
|
plain = ''
|
2021-01-24 14:54:05 +00:00
|
|
|
:
|
2021-01-02 00:00:55 +00:00
|
|
|
'';
|
|
|
|
ecryptfs = ''
|
2022-11-22 08:08:20 +00:00
|
|
|
|
|
|
|
if [ -e ${cfg.dataLocation}/${cname}/ecryptfs/.cfg.json ]; then
|
|
|
|
if ! mount | grep -q '${cfg.dataLocation}/${cname}/ecryptfs on /var/lib/containers/${cname}/var/state type ecryptfs'; then
|
2021-01-02 00:00:55 +00:00
|
|
|
${pkgs.ecrypt}/bin/ecrypt mount ${cfg.dataLocation}/${cname}/ecryptfs /var/lib/containers/${cname}/var/state
|
|
|
|
fi
|
2022-11-22 08:08:20 +00:00
|
|
|
else
|
|
|
|
echo 'please run init-${cname} first'
|
|
|
|
exit 1
|
2021-01-02 00:00:55 +00:00
|
|
|
fi
|
|
|
|
'';
|
|
|
|
securefs = ''
|
2022-11-22 08:08:20 +00:00
|
|
|
## check if FS was initialized first
|
2021-01-02 00:00:55 +00:00
|
|
|
if ! ${pkgs.mount}/bin/mount | grep -q '^securefs on /var/lib/containers/${cname}/var/state type fuse.securefs'; then
|
|
|
|
${pkgs.securefs}/bin/securefs mount ${cfg.dataLocation}/${cname}/securefs /var/lib/containers/${cname}/var/state -b -o allow_other -o default_permissions
|
|
|
|
fi
|
|
|
|
'';
|
2022-11-22 08:08:20 +00:00
|
|
|
luksfile = ''
|
|
|
|
mkdir -p /var/lib/containers/${cname}/var/state
|
|
|
|
if ! test -e /dev/mapper/luksfile-${cname}; then
|
|
|
|
${pkgs.cryptsetup}/bin/cryptsetup luksOpen '${(paths cname).luksfile}/fs.luks' 'luksfile-${cname}'
|
|
|
|
fi
|
|
|
|
if ! ${pkgs.mount}/bin/mount | grep -q '^/dev/mapper/luksfile-${cname} on /var/lib/containers/${cname}/var/state'; then
|
|
|
|
mount '/dev/mapper/luksfile-${cname}' '/var/lib/containers/${cname}/var/state'
|
|
|
|
fi
|
|
|
|
'';
|
2021-01-02 00:00:55 +00:00
|
|
|
};
|
|
|
|
stop = cname: {
|
|
|
|
plain = ''
|
2021-01-24 14:54:05 +00:00
|
|
|
:
|
2021-01-02 00:00:55 +00:00
|
|
|
'';
|
|
|
|
ecryptfs = ''
|
|
|
|
${pkgs.ecrypt}/bin/ecrypt unmount ${cfg.dataLocation}/${cname}/ecryptfs /var/lib/containers/${cname}/var/state
|
|
|
|
'';
|
|
|
|
securefs = ''
|
|
|
|
umount /var/lib/containers/${cname}/var/state
|
|
|
|
'';
|
2022-11-22 08:08:20 +00:00
|
|
|
luksfile = ''
|
|
|
|
umount /var/lib/containers/${cname}/var/state
|
|
|
|
${pkgs.cryptsetup}/bin/cryptsetup luksClose luksfile-${cname}
|
|
|
|
'';
|
2021-01-02 00:00:55 +00:00
|
|
|
};
|
|
|
|
in {
|
2021-01-24 09:41:47 +00:00
|
|
|
options.krebs.sync-containers = {
|
2021-01-02 00:00:55 +00:00
|
|
|
dataLocation = mkOption {
|
|
|
|
description = ''
|
2022-11-22 08:08:20 +00:00
|
|
|
location where the encrypted sync-containers lie around
|
2021-01-02 00:00:55 +00:00
|
|
|
'';
|
|
|
|
default = "/var/lib/sync-containers";
|
|
|
|
type = types.absolute-pathname;
|
|
|
|
};
|
|
|
|
containers = mkOption {
|
|
|
|
type = types.attrsOf (types.submodule ({ config, ... }: {
|
|
|
|
options = {
|
|
|
|
name = mkOption {
|
|
|
|
description = ''
|
|
|
|
name of the container
|
|
|
|
'';
|
|
|
|
default = config._module.args.name;
|
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
peers = mkOption {
|
|
|
|
description = ''
|
|
|
|
syncthing peers to share this container with
|
|
|
|
'';
|
|
|
|
default = [];
|
|
|
|
type = types.listOf types.str;
|
|
|
|
};
|
|
|
|
format = mkOption {
|
|
|
|
description = ''
|
|
|
|
file system encrption format of the container
|
|
|
|
'';
|
2022-11-22 08:08:20 +00:00
|
|
|
type = types.enum [ "plain" "ecryptfs" "securefs" "luksfile" ];
|
2021-01-02 00:00:55 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}));
|
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf (cfg.containers != {}) {
|
|
|
|
programs.fuse.userAllowOther = true;
|
2021-01-24 15:58:22 +00:00
|
|
|
# allow syncthing to enter /var/lib/containers
|
2021-03-26 19:08:55 +00:00
|
|
|
system.activationScripts.containers-enter = mkDefault ''
|
2021-10-24 16:27:58 +00:00
|
|
|
${pkgs.coreutils}/bin/chmod a+x /var/lib/containers || :
|
2021-01-24 15:58:22 +00:00
|
|
|
'';
|
2021-01-02 00:00:55 +00:00
|
|
|
|
2022-01-29 18:23:36 +00:00
|
|
|
services.syncthing.folders = (mapAttrs' (_: ctr: nameValuePair "${(paths ctr.name).${ctr.format}}" ({
|
2021-01-02 00:00:55 +00:00
|
|
|
devices = ctr.peers;
|
|
|
|
ignorePerms = false;
|
|
|
|
})) cfg.containers);
|
|
|
|
|
2022-11-22 08:08:20 +00:00
|
|
|
krebs.acl = mapAttrs' (_: ctr: nameValuePair "${(paths ctr.name).${ctr.format}}" {
|
|
|
|
"u:syncthing:rX".parents = true;
|
|
|
|
"u:syncthing:rwX" = {};
|
|
|
|
}) cfg.containers;
|
|
|
|
|
2021-01-02 00:00:55 +00:00
|
|
|
|
|
|
|
systemd.services = mapAttrs' (n: ctr: nameValuePair "containers@${ctr.name}" ({
|
|
|
|
reloadIfChanged = mkForce false;
|
|
|
|
})) cfg.containers;
|
|
|
|
|
|
|
|
containers = mapAttrs' (n: ctr: nameValuePair ctr.name ({
|
|
|
|
config = { ... }: {
|
|
|
|
environment.systemPackages = [
|
2022-11-22 08:08:20 +00:00
|
|
|
pkgs.dhcpcd
|
2021-01-02 00:00:55 +00:00
|
|
|
pkgs.git
|
2022-11-22 08:08:20 +00:00
|
|
|
pkgs.jq
|
2021-01-02 00:00:55 +00:00
|
|
|
];
|
2022-11-22 08:08:20 +00:00
|
|
|
networking.useDHCP = mkForce true;
|
2021-01-02 00:00:55 +00:00
|
|
|
system.activationScripts.fuse = {
|
|
|
|
text = ''
|
|
|
|
${pkgs.coreutils}/bin/mknod /dev/fuse c 10 229
|
|
|
|
'';
|
|
|
|
deps = [];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
allowedDevices = [
|
|
|
|
{ modifier = "rwm"; node = "/dev/fuse"; }
|
|
|
|
];
|
|
|
|
autoStart = false;
|
|
|
|
enableTun = true;
|
|
|
|
privateNetwork = true;
|
2022-11-22 08:08:20 +00:00
|
|
|
hostBridge = "ctr0";
|
2021-01-02 00:00:55 +00:00
|
|
|
})) cfg.containers;
|
|
|
|
|
2022-11-22 08:08:20 +00:00
|
|
|
networking.networkmanager.unmanaged = [ "ctr0" ];
|
|
|
|
networking.bridges.ctr0.interfaces = [];
|
|
|
|
networking.interfaces.ctr0.ipv4.addresses = [{
|
|
|
|
address = "10.233.0.1";
|
|
|
|
prefixLength = 24;
|
|
|
|
}];
|
|
|
|
# networking.nat = {
|
|
|
|
# enable = true;
|
|
|
|
# externalInterface = lib.mkDefault "et0";
|
|
|
|
# internalInterfaces = [ "ctr0" ];
|
|
|
|
# };
|
|
|
|
services.dhcpd4 = {
|
|
|
|
enable = true;
|
|
|
|
interfaces = [ "ctr0" ];
|
|
|
|
extraConfig = ''
|
|
|
|
option subnet-mask 255.255.255.0;
|
|
|
|
option routers 10.233.0.1;
|
|
|
|
# option domain-name-servers 8.8.8.8; # TODO configure dns server
|
|
|
|
subnet 10.233.0.0 netmask 255.255.255.0 {
|
|
|
|
range 10.233.0.10 10.233.0.250;
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
users.users.root.packages = flatten (mapAttrsToList (n: ctr: [
|
|
|
|
(pkgs.writeDashBin "init-${ctr.name}" ''
|
|
|
|
set -euf
|
|
|
|
set -x
|
|
|
|
|
|
|
|
mkdir -p /var/lib/containers/${ctr.name}/var/state
|
|
|
|
STATE=$(/run/current-system/sw/bin/nixos-container status ${ctr.name})
|
|
|
|
if [ "$STATE" = 'up' ]; then
|
|
|
|
/run/current-system/sw/bin/nixos-container stop ${ctr.name}
|
|
|
|
fi
|
|
|
|
${(init ctr.name).${ctr.format}}
|
|
|
|
${(start ctr.name).${ctr.format}}
|
|
|
|
/run/current-system/sw/bin/nixos-container start ${ctr.name}
|
|
|
|
/run/current-system/sw/bin/nixos-container run ${ctr.name} -- ${pkgs.writeDash "deploy-${ctr.name}" ''
|
|
|
|
set -x
|
|
|
|
|
|
|
|
mkdir -p /var/state/var_src
|
|
|
|
ln -sfTr /var/state/var_src /var/src
|
|
|
|
touch /etc/NIXOS
|
|
|
|
''}
|
|
|
|
target_ip=$(/run/current-system/sw/bin/nixos-container run ${ctr.name} -- ip -j a s eth0 | jq -r '.[].addr_info[] | select(.family=="inet") | .local')
|
|
|
|
|
|
|
|
echo "deploy to $target_ip"
|
|
|
|
'')
|
2021-01-02 00:00:55 +00:00
|
|
|
(pkgs.writeDashBin "start-${ctr.name}" ''
|
|
|
|
set -euf
|
|
|
|
set -x
|
|
|
|
|
|
|
|
mkdir -p /var/lib/containers/${ctr.name}/var/state
|
|
|
|
|
|
|
|
${(start ctr.name).${ctr.format}}
|
|
|
|
|
2022-11-22 08:08:20 +00:00
|
|
|
STATE=$(/run/current-system/sw/bin/nixos-container status ${ctr.name})
|
2021-01-02 00:00:55 +00:00
|
|
|
if [ "$STATE" = 'down' ]; then
|
2022-11-22 08:08:20 +00:00
|
|
|
/run/current-system/sw/bin/nixos-container start ${ctr.name}
|
2021-01-02 00:00:55 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-22 08:08:20 +00:00
|
|
|
/run/current-system/sw/bin/nixos-container run ${ctr.name} -- ${pkgs.writeDash "deploy-${ctr.name}" ''
|
2021-01-02 00:00:55 +00:00
|
|
|
set -x
|
|
|
|
|
|
|
|
mkdir -p /var/state/var_src
|
|
|
|
ln -sfTr /var/state/var_src /var/src
|
|
|
|
touch /etc/NIXOS
|
|
|
|
''}
|
|
|
|
|
|
|
|
if [ -h /var/lib/containers/${ctr.name}/var/src/nixos-config ] && (! ping -c1 -q -w5 ${ctr.name}.r); then
|
2022-11-22 08:08:20 +00:00
|
|
|
/run/current-system/sw/bin/nixos-container run ${ctr.name} -- nixos-rebuild -I /var/src switch
|
2021-01-23 16:36:12 +00:00
|
|
|
else
|
2022-11-22 08:08:20 +00:00
|
|
|
echo 'no nixos config, or target already online, bailing out'
|
2021-01-23 16:36:12 +00:00
|
|
|
${(stop ctr.name).${ctr.format}}
|
2022-11-22 08:08:20 +00:00
|
|
|
/run/current-system/sw/bin/nixos-container stop ${ctr.name}
|
2021-01-02 00:00:55 +00:00
|
|
|
fi
|
|
|
|
'')
|
|
|
|
(pkgs.writeDashBin "stop-${ctr.name}" ''
|
|
|
|
set -euf
|
|
|
|
|
2022-11-22 08:08:20 +00:00
|
|
|
/run/current-system/sw/bin/nixos-container stop ${ctr.name}
|
2021-01-02 00:00:55 +00:00
|
|
|
${(stop ctr.name).${ctr.format}}
|
|
|
|
'')
|
|
|
|
]) cfg.containers);
|
|
|
|
};
|
|
|
|
}
|