2018-12-03 13:43:15 -08:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
options = {
|
|
|
|
services.liquidd = {
|
2021-12-14 10:51:23 -08:00
|
|
|
enable = mkEnableOption "Liquid Bitcoin sidechain daemon";
|
2021-01-14 04:24:07 -08:00
|
|
|
address = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "127.0.0.1";
|
|
|
|
description = "Address to listen for peer connections.";
|
|
|
|
};
|
|
|
|
port = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 7042;
|
|
|
|
description = "Override the default port on which to listen for connections.";
|
|
|
|
};
|
2021-10-28 13:23:25 -07:00
|
|
|
onionPort = mkOption {
|
|
|
|
type = types.nullOr types.port;
|
|
|
|
# When the liquidd onion service is enabled, add an onion-tagged socket
|
|
|
|
# to distinguish local connections from Tor connections
|
|
|
|
default = if (config.nix-bitcoin.onionServices.liquidd.enable or false) then 7043 else null;
|
|
|
|
description = ''
|
|
|
|
Port to listen for Tor peer connections.
|
|
|
|
If set, inbound connections to this port are tagged as onion peers.
|
|
|
|
'';
|
|
|
|
};
|
2021-10-29 08:56:57 -07:00
|
|
|
listen = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Listen for peer connections at `address:port`
|
|
|
|
and `address:onionPort` (if `onionPort` is set).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
listenWhitelisted = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Listen for peer connections at `address:whitelistedPort`.
|
|
|
|
Peers connected through this socket are automatically whitelisted.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
whitelistedPort = mkOption {
|
|
|
|
type = types.port;
|
|
|
|
default = 7044;
|
|
|
|
description = "See `listenWhitelisted`.";
|
|
|
|
};
|
2018-12-03 13:43:15 -08:00
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
par=16
|
|
|
|
rpcthreads=16
|
|
|
|
logips=1
|
|
|
|
'';
|
2021-02-01 13:53:11 -08:00
|
|
|
description = "Extra lines appended to <filename>elements.conf</filename>.";
|
2018-12-03 13:43:15 -08:00
|
|
|
};
|
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "/var/lib/liquidd";
|
|
|
|
description = "The data directory for liquidd.";
|
|
|
|
};
|
|
|
|
rpc = {
|
2021-01-14 04:24:07 -08:00
|
|
|
address = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "127.0.0.1";
|
|
|
|
description = "Address to listen for JSON-RPC connections.";
|
|
|
|
};
|
2018-12-03 13:43:15 -08:00
|
|
|
port = mkOption {
|
2021-01-14 04:24:07 -08:00
|
|
|
type = types.port;
|
|
|
|
default = 7041;
|
|
|
|
description = "Port to listen for JSON-RPC connections.";
|
2018-12-03 13:43:15 -08:00
|
|
|
};
|
|
|
|
users = mkOption {
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
alice.passwordHMAC = "f7efda5c189b999524f151318c0c86$d5b51b3beffbc02b724e5d095828e0bc8b2456e9ac8757ae3211a5d9b16a22ae";
|
|
|
|
bob.passwordHMAC = "b2dd077cb54591a2f3139e69a897ac$4e71f08d48b4347cf8eff3815c0e25ae2e9a4340474079f55705f40574f4ec99";
|
|
|
|
};
|
2021-02-01 13:53:16 -08:00
|
|
|
type = with types; attrsOf (submodule rpcUserOpts);
|
2018-12-03 13:43:15 -08:00
|
|
|
description = ''
|
2020-08-04 06:32:06 -07:00
|
|
|
RPC user information for JSON-RPC connections.
|
2018-12-03 13:43:15 -08:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2020-06-10 07:36:03 -07:00
|
|
|
rpcallowip = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ "127.0.0.1" ];
|
|
|
|
description = ''
|
|
|
|
Allow JSON-RPC connections from specified source.
|
|
|
|
'';
|
|
|
|
};
|
2018-12-03 13:43:15 -08:00
|
|
|
rpcuser = mkOption {
|
2021-01-14 04:24:30 -08:00
|
|
|
type = types.str;
|
|
|
|
default = "liquidrpc";
|
2018-12-03 13:43:15 -08:00
|
|
|
description = "Username for JSON-RPC connections";
|
|
|
|
};
|
|
|
|
proxy = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2021-11-28 12:24:49 -08:00
|
|
|
default = if cfg.tor.proxy then config.nix-bitcoin.torClientAddressWithPort else null;
|
2018-12-03 13:43:15 -08:00
|
|
|
description = "Connect through SOCKS5 proxy";
|
|
|
|
};
|
|
|
|
dbCache = mkOption {
|
|
|
|
type = types.nullOr (types.ints.between 4 16384);
|
|
|
|
default = null;
|
|
|
|
example = 4000;
|
|
|
|
description = "Override the default database cache size in megabytes.";
|
|
|
|
};
|
|
|
|
prune = mkOption {
|
|
|
|
type = types.nullOr (types.coercedTo
|
|
|
|
(types.enum [ "disable" "manual" ])
|
|
|
|
(x: if x == "disable" then 0 else 1)
|
|
|
|
types.ints.unsigned
|
|
|
|
);
|
|
|
|
default = null;
|
|
|
|
example = 10000;
|
|
|
|
description = ''
|
|
|
|
Reduce storage requirements by enabling pruning (deleting) of old
|
|
|
|
blocks. This allows the pruneblockchain RPC to be called to delete
|
|
|
|
specific blocks, and enables automatic pruning of old blocks if a
|
|
|
|
target size in MiB is provided. This mode is incompatible with -txindex
|
|
|
|
and -rescan. Warning: Reverting this setting requires re-downloading
|
|
|
|
the entire blockchain. ("disable" = disable pruning blocks, "manual"
|
|
|
|
= allow manual pruning via RPC, >=550 = automatically prune block files
|
|
|
|
to stay under the specified target size in MiB)
|
|
|
|
'';
|
|
|
|
};
|
2019-07-26 05:19:17 -07:00
|
|
|
validatepegin = mkOption {
|
|
|
|
type = types.nullOr types.bool;
|
|
|
|
default = null;
|
|
|
|
description = ''
|
|
|
|
Validate pegin claims. All functionaries must run this.
|
|
|
|
'';
|
|
|
|
};
|
2021-09-13 04:40:48 -07:00
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "liquid";
|
|
|
|
description = "The user as which to run liquidd.";
|
|
|
|
};
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = cfg.user;
|
|
|
|
description = "The group as which to run liquidd.";
|
|
|
|
};
|
2019-11-27 05:04:35 -08:00
|
|
|
cli = mkOption {
|
2020-08-21 13:36:00 -07:00
|
|
|
readOnly = true;
|
2019-11-27 05:04:35 -08:00
|
|
|
default = pkgs.writeScriptBin "elements-cli" ''
|
2020-11-09 13:09:09 -08:00
|
|
|
${nbPkgs.elementsd}/bin/elements-cli -datadir='${cfg.dataDir}' "$@"
|
2019-11-27 05:04:35 -08:00
|
|
|
'';
|
2021-12-07 19:07:28 -08:00
|
|
|
defaultText = "(See source)";
|
2019-11-27 05:04:35 -08:00
|
|
|
description = "Binary to connect with the liquidd instance.";
|
|
|
|
};
|
2020-08-21 13:36:00 -07:00
|
|
|
swapCli = mkOption {
|
2019-11-27 05:04:35 -08:00
|
|
|
default = pkgs.writeScriptBin "liquidswap-cli" ''
|
2020-11-09 13:09:09 -08:00
|
|
|
${nbPkgs.liquid-swap}/bin/liquidswap-cli -c '${cfg.dataDir}/elements.conf' "$@"
|
2019-11-27 05:04:35 -08:00
|
|
|
'';
|
2021-12-07 19:07:28 -08:00
|
|
|
defaultText = "(See source)";
|
2019-11-27 05:04:35 -08:00
|
|
|
description = "Binary for managing liquid swaps.";
|
|
|
|
};
|
2021-11-28 12:24:49 -08:00
|
|
|
tor = nbLib.tor;
|
2018-12-03 13:43:15 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-09-13 04:40:47 -07:00
|
|
|
cfg = config.services.liquidd;
|
|
|
|
nbLib = config.nix-bitcoin.lib;
|
|
|
|
nbPkgs = config.nix-bitcoin.pkgs;
|
|
|
|
secretsDir = config.nix-bitcoin.secretsDir;
|
2021-09-13 04:40:49 -07:00
|
|
|
|
|
|
|
bitcoind = config.services.bitcoind;
|
|
|
|
|
2021-09-13 04:40:47 -07:00
|
|
|
configFile = pkgs.writeText "elements.conf" ''
|
2021-11-02 05:07:38 -07:00
|
|
|
# We're already logging via journald
|
|
|
|
nodebuglogfile=1
|
|
|
|
|
|
|
|
startupnotify=/run/current-system/systemd/bin/systemd-notify --ready
|
|
|
|
|
2021-09-13 04:40:49 -07:00
|
|
|
chain=${bitcoind.makeNetworkName "liquidv1" ''
|
2021-09-13 04:40:47 -07:00
|
|
|
regtest
|
|
|
|
[regtest]'' # Add [regtest] config section
|
|
|
|
}
|
|
|
|
${optionalString (cfg.dbCache != null) "dbcache=${toString cfg.dbCache}"}
|
|
|
|
${optionalString (cfg.prune != null) "prune=${toString cfg.prune}"}
|
|
|
|
${optionalString (cfg.validatepegin != null) "validatepegin=${if cfg.validatepegin then "1" else "0"}"}
|
|
|
|
|
|
|
|
# Connection options
|
2021-10-29 08:56:57 -07:00
|
|
|
listen=${if (cfg.listen || cfg.listenWhitelisted) then "1" else "0"}
|
2021-10-28 13:23:25 -07:00
|
|
|
${optionalString cfg.listen
|
|
|
|
"bind=${cfg.address}:${toString cfg.port}"}
|
|
|
|
${optionalString (cfg.listen && cfg.onionPort != null)
|
|
|
|
"bind=${cfg.address}:${toString cfg.onionPort}=onion"}
|
2021-10-29 08:56:57 -07:00
|
|
|
${optionalString cfg.listenWhitelisted
|
|
|
|
"whitebind=${cfg.address}:${toString cfg.whitelistedPort}"}
|
2021-09-13 04:40:47 -07:00
|
|
|
${optionalString (cfg.proxy != null) "proxy=${cfg.proxy}"}
|
|
|
|
|
|
|
|
# RPC server options
|
|
|
|
rpcport=${toString cfg.rpc.port}
|
|
|
|
${concatMapStringsSep "\n"
|
|
|
|
(rpcUser: "rpcauth=${rpcUser.name}:${rpcUser.passwordHMAC}")
|
|
|
|
(attrValues cfg.rpc.users)
|
|
|
|
}
|
|
|
|
rpcbind=${cfg.rpc.address}
|
|
|
|
rpcconnect=${cfg.rpc.address}
|
|
|
|
${lib.concatMapStrings (rpcallowip: "rpcallowip=${rpcallowip}\n") cfg.rpcallowip}
|
|
|
|
rpcuser=${cfg.rpcuser}
|
2021-10-01 02:51:57 -07:00
|
|
|
mainchainrpchost=${nbLib.address bitcoind.rpc.address}
|
2021-09-13 04:40:49 -07:00
|
|
|
mainchainrpcport=${toString bitcoind.rpc.port}
|
|
|
|
mainchainrpcuser=${bitcoind.rpc.users.public.name}
|
2021-09-13 04:40:47 -07:00
|
|
|
|
|
|
|
# Extra config options (from liquidd nixos service)
|
|
|
|
${cfg.extraConfig}
|
|
|
|
'';
|
|
|
|
rpcUserOpts = { name, ... }: {
|
|
|
|
options = {
|
|
|
|
name = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
example = "alice";
|
|
|
|
description = ''
|
|
|
|
Username for JSON-RPC connections.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
passwordHMAC = mkOption {
|
|
|
|
type = with types; uniq (strMatching "[0-9a-f]+\\$[0-9a-f]{64}");
|
|
|
|
example = "f7efda5c189b999524f151318c0c86$d5b51b3beffbc02b724e5d095828e0bc8b2456e9ac8757ae3211a5d9b16a22ae";
|
|
|
|
description = ''
|
|
|
|
Password HMAC-SHA-256 for JSON-RPC connections. Must be a string of the
|
2021-12-07 19:07:29 -08:00
|
|
|
format `salt-hex$hmac-hex`.
|
2021-09-13 04:40:47 -07:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
|
|
|
name = mkDefault name;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
inherit options;
|
|
|
|
|
2018-12-03 13:43:15 -08:00
|
|
|
config = mkIf cfg.enable {
|
2021-11-02 07:15:29 -07:00
|
|
|
assertions = [
|
|
|
|
{ assertion = bitcoind.regtest -> cfg.validatepegin != true;
|
|
|
|
message = "liquidd: `validatepegin` is incompatible with regtest.";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2020-10-18 05:49:20 -07:00
|
|
|
services.bitcoind.enable = true;
|
|
|
|
|
2020-04-07 13:47:45 -07:00
|
|
|
environment.systemPackages = [
|
2020-11-09 13:09:09 -08:00
|
|
|
nbPkgs.elementsd
|
2020-04-07 13:47:45 -07:00
|
|
|
(hiPrio cfg.cli)
|
2020-08-21 13:36:00 -07:00
|
|
|
(hiPrio cfg.swapCli)
|
2020-04-07 13:47:45 -07:00
|
|
|
];
|
2020-05-06 03:43:57 -07:00
|
|
|
|
|
|
|
systemd.tmpfiles.rules = [
|
|
|
|
"d '${cfg.dataDir}' 0770 ${cfg.user} ${cfg.group} - -"
|
|
|
|
];
|
|
|
|
|
2018-12-03 13:43:15 -08:00
|
|
|
systemd.services.liquidd = {
|
2019-11-27 05:04:19 -08:00
|
|
|
requires = [ "bitcoind.service" ];
|
|
|
|
after = [ "bitcoind.service" ];
|
2018-12-03 13:43:15 -08:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart = ''
|
2021-02-01 13:53:21 -08:00
|
|
|
install -m 640 ${configFile} '${cfg.dataDir}/elements.conf'
|
|
|
|
{
|
|
|
|
echo "rpcpassword=$(cat ${secretsDir}/liquid-rpcpassword)"
|
|
|
|
echo "mainchainrpcpassword=$(cat ${secretsDir}/bitcoin-rpcpassword-public)"
|
|
|
|
} >> '${cfg.dataDir}/elements.conf'
|
2018-12-03 13:43:15 -08:00
|
|
|
'';
|
2021-02-03 13:44:41 -08:00
|
|
|
serviceConfig = nbLib.defaultHardening // {
|
2021-11-02 05:07:38 -07:00
|
|
|
Type = "notify";
|
|
|
|
NotifyAccess = "all";
|
2021-02-01 13:53:12 -08:00
|
|
|
User = cfg.user;
|
|
|
|
Group = cfg.group;
|
2022-02-28 05:01:54 -08:00
|
|
|
TimeoutStartSec = "5min";
|
|
|
|
TimeoutStopSec = "10min";
|
2021-10-01 02:51:59 -07:00
|
|
|
ExecStart = "${nbPkgs.elementsd}/bin/elementsd -datadir='${cfg.dataDir}'";
|
2018-12-03 13:43:15 -08:00
|
|
|
Restart = "on-failure";
|
2021-02-01 13:53:12 -08:00
|
|
|
ReadWritePaths = cfg.dataDir;
|
2021-11-28 12:24:49 -08:00
|
|
|
} // nbLib.allowedIPAddresses cfg.tor.enforce;
|
2018-12-03 13:43:15 -08:00
|
|
|
};
|
2020-09-28 04:09:03 -07:00
|
|
|
|
2018-12-03 13:43:15 -08:00
|
|
|
users.users.${cfg.user} = {
|
2021-08-04 15:48:59 -07:00
|
|
|
isSystemUser = true;
|
2018-12-03 13:43:15 -08:00
|
|
|
group = cfg.group;
|
2021-02-18 02:42:21 -08:00
|
|
|
extraGroups = [ "bitcoinrpc-public" ];
|
2018-12-03 13:43:15 -08:00
|
|
|
};
|
2019-11-27 05:04:15 -08:00
|
|
|
users.groups.${cfg.group} = {};
|
2020-09-28 04:09:03 -07:00
|
|
|
nix-bitcoin.operator.groups = [ cfg.group ];
|
|
|
|
|
2021-02-16 08:52:45 -08:00
|
|
|
nix-bitcoin.secrets.liquid-rpcpassword.user = cfg.user;
|
2021-09-08 08:01:18 -07:00
|
|
|
nix-bitcoin.generateSecretsCmds.liquid = ''
|
|
|
|
makePasswordSecret liquid-rpcpassword
|
|
|
|
'';
|
2018-12-03 13:43:15 -08:00
|
|
|
};
|
|
|
|
}
|