nixos/quicktun: clean up module
This commit is contained in:
parent
be4704f84a
commit
5672d3d8b8
1 changed files with 102 additions and 44 deletions
|
@ -1,94 +1,153 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ options, config, pkgs, lib, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
inherit (lib) mkOption mdDoc types mkIf;
|
||||||
|
|
||||||
|
opt = options.services.quicktun;
|
||||||
cfg = config.services.quicktun;
|
cfg = config.services.quicktun;
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
|
|
||||||
services.quicktun = mkOption {
|
services.quicktun = mkOption {
|
||||||
default = { };
|
default = { };
|
||||||
description = lib.mdDoc "QuickTun tunnels";
|
description = mdDoc ''
|
||||||
type = types.attrsOf (types.submodule {
|
QuickTun tunnels.
|
||||||
|
|
||||||
|
See <http://wiki.ucis.nl/QuickTun> for more information about available options.
|
||||||
|
'';
|
||||||
|
type = types.attrsOf (types.submodule ({ name, ... }: let
|
||||||
|
qtcfg = cfg.${name};
|
||||||
|
in {
|
||||||
options = {
|
options = {
|
||||||
tunMode = mkOption {
|
tunMode = mkOption {
|
||||||
type = types.int;
|
type = with types; coercedTo bool (b: if b then 1 else 0) (ints.between 0 1);
|
||||||
default = 0;
|
default = false;
|
||||||
example = 1;
|
example = true;
|
||||||
description = lib.mdDoc "";
|
description = mdDoc "Whether to operate in tun (IP) or tap (Ethernet) mode.";
|
||||||
};
|
};
|
||||||
|
|
||||||
remoteAddress = mkOption {
|
remoteAddress = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
|
default = "0.0.0.0";
|
||||||
example = "tunnel.example.com";
|
example = "tunnel.example.com";
|
||||||
description = lib.mdDoc "";
|
description = mdDoc ''
|
||||||
|
IP address or hostname of the remote end (use `0.0.0.0` for a floating/dynamic remote endpoint).
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
localAddress = mkOption {
|
localAddress = mkOption {
|
||||||
type = types.str;
|
type = with types; nullOr str;
|
||||||
|
default = null;
|
||||||
example = "0.0.0.0";
|
example = "0.0.0.0";
|
||||||
description = lib.mdDoc "";
|
description = mdDoc "IP address or hostname of the local end.";
|
||||||
};
|
};
|
||||||
|
|
||||||
localPort = mkOption {
|
localPort = mkOption {
|
||||||
type = types.int;
|
type = types.port;
|
||||||
default = 2998;
|
default = 2998;
|
||||||
description = lib.mdDoc "";
|
description = mdDoc "Local UDP port.";
|
||||||
};
|
};
|
||||||
|
|
||||||
remotePort = mkOption {
|
remotePort = mkOption {
|
||||||
type = types.int;
|
type = types.port;
|
||||||
default = 2998;
|
default = qtcfg.localPort;
|
||||||
description = lib.mdDoc "";
|
defaultText = lib.literalExpression "config.services.quicktun.<name>.localPort";
|
||||||
|
description = mdDoc " remote UDP port";
|
||||||
};
|
};
|
||||||
|
|
||||||
remoteFloat = mkOption {
|
remoteFloat = mkOption {
|
||||||
type = types.int;
|
type = with types; coercedTo bool (b: if b then 1 else 0) (ints.between 0 1);
|
||||||
default = 0;
|
default = false;
|
||||||
description = lib.mdDoc "";
|
example = true;
|
||||||
|
description = mdDoc ''
|
||||||
|
Whether to allow the remote address and port to change when properly encrypted packets are received.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
protocol = mkOption {
|
protocol = mkOption {
|
||||||
type = types.str;
|
type = types.enum [ "raw" "nacl0" "nacltai" "salty" ];
|
||||||
default = "nacltai";
|
default = "nacltai";
|
||||||
description = lib.mdDoc "";
|
description = mdDoc "Which protocol to use.";
|
||||||
};
|
};
|
||||||
|
|
||||||
privateKey = mkOption {
|
privateKey = mkOption {
|
||||||
type = types.str;
|
type = with types; nullOr str;
|
||||||
description = lib.mdDoc "";
|
default = null;
|
||||||
|
description = mdDoc ''
|
||||||
|
Local secret key in hexadecimal form.
|
||||||
|
|
||||||
|
::: {.warning}
|
||||||
|
This option is deprecated. Please use {var}`services.quicktun.<name>.privateKeyFile` instead.
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: {.note}
|
||||||
|
Not needed when {var}`services.quicktun.<name>.protocol` is set to `raw`.
|
||||||
|
:::
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
privateKeyFile = mkOption {
|
||||||
|
type = with types; nullOr path;
|
||||||
|
# This is a hack to deprecate `privateKey` without using `mkChangedModuleOption`
|
||||||
|
default = if qtcfg.privateKey == null then null else pkgs.writeText "quickttun-key-${name}" qtcfg.privateKey;
|
||||||
|
defaultText = "null";
|
||||||
|
description = mdDoc ''
|
||||||
|
Path to file containing local secret key in binary or hexadecimal form.
|
||||||
|
|
||||||
|
::: {.note}
|
||||||
|
Not needed when {var}`services.quicktun.<name>.protocol` is set to `raw`.
|
||||||
|
:::
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
publicKey = mkOption {
|
publicKey = mkOption {
|
||||||
type = types.str;
|
type = with types; nullOr str;
|
||||||
description = lib.mdDoc "";
|
default = null;
|
||||||
|
description = mdDoc ''
|
||||||
|
Remote public key in hexadecimal form.
|
||||||
|
|
||||||
|
::: {.note}
|
||||||
|
Not needed when {var}`services.quicktun.<name>.protocol` is set to `raw`.
|
||||||
|
:::
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
timeWindow = mkOption {
|
timeWindow = mkOption {
|
||||||
type = types.int;
|
type = types.ints.unsigned;
|
||||||
default = 5;
|
default = 5;
|
||||||
description = lib.mdDoc "";
|
description = mdDoc ''
|
||||||
|
Allowed time window for first received packet in seconds (positive number allows packets from history)
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
upScript = mkOption {
|
upScript = mkOption {
|
||||||
type = types.lines;
|
type = with types; nullOr lines;
|
||||||
default = "";
|
default = null;
|
||||||
description = lib.mdDoc "";
|
description = mdDoc ''
|
||||||
|
Run specified command or script after the tunnel device has been opened.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
});
|
}));
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf (cfg != []) {
|
config = {
|
||||||
systemd.services = foldr (a: b: a // b) {} (
|
warnings = lib.pipe cfg [
|
||||||
mapAttrsToList (name: qtcfg: {
|
(lib.mapAttrsToList (name: value: if value.privateKey != null then name else null))
|
||||||
|
(builtins.filter (n: n != null))
|
||||||
|
(map (n: " - services.quicktun.${n}.privateKey"))
|
||||||
|
(services: lib.optional (services != [ ]) ''
|
||||||
|
`services.quicktun.<name>.privateKey` is deprecated.
|
||||||
|
Please use `services.quicktun.<name>.privateKeyFile` instead.
|
||||||
|
|
||||||
|
Offending options:
|
||||||
|
${lib.concatStringsSep "\n" services}
|
||||||
|
'')
|
||||||
|
];
|
||||||
|
|
||||||
|
systemd.services = lib.mkMerge (
|
||||||
|
lib.mapAttrsToList (name: qtcfg: {
|
||||||
"quicktun-${name}" = {
|
"quicktun-${name}" = {
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
after = [ "network.target" ];
|
after = [ "network.target" ];
|
||||||
|
@ -96,14 +155,14 @@ with lib;
|
||||||
INTERFACE = name;
|
INTERFACE = name;
|
||||||
TUN_MODE = toString qtcfg.tunMode;
|
TUN_MODE = toString qtcfg.tunMode;
|
||||||
REMOTE_ADDRESS = qtcfg.remoteAddress;
|
REMOTE_ADDRESS = qtcfg.remoteAddress;
|
||||||
LOCAL_ADDRESS = qtcfg.localAddress;
|
LOCAL_ADDRESS = mkIf (qtcfg.localAddress != null) (qtcfg.localAddress);
|
||||||
LOCAL_PORT = toString qtcfg.localPort;
|
LOCAL_PORT = toString qtcfg.localPort;
|
||||||
REMOTE_PORT = toString qtcfg.remotePort;
|
REMOTE_PORT = toString qtcfg.remotePort;
|
||||||
REMOTE_FLOAT = toString qtcfg.remoteFloat;
|
REMOTE_FLOAT = toString qtcfg.remoteFloat;
|
||||||
PRIVATE_KEY = qtcfg.privateKey;
|
PRIVATE_KEY_FILE = mkIf (qtcfg.privateKeyFile != null) qtcfg.privateKeyFile;
|
||||||
PUBLIC_KEY = qtcfg.publicKey;
|
PUBLIC_KEY = mkIf (qtcfg.publicKey != null) qtcfg.publicKey;
|
||||||
TIME_WINDOW = toString qtcfg.timeWindow;
|
TIME_WINDOW = toString qtcfg.timeWindow;
|
||||||
TUN_UP_SCRIPT = pkgs.writeScript "quicktun-${name}-up.sh" qtcfg.upScript;
|
TUN_UP_SCRIPT = mkIf (qtcfg.upScript != null) (pkgs.writeScript "quicktun-${name}-up.sh" qtcfg.upScript);
|
||||||
SUID = "nobody";
|
SUID = "nobody";
|
||||||
};
|
};
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
|
@ -114,5 +173,4 @@ with lib;
|
||||||
}) cfg
|
}) cfg
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue