2018-11-22 16:46:56 -08:00
|
|
|
{ config, pkgs, lib, ... }:
|
2018-11-13 15:44:54 -08:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
2018-11-22 16:46:56 -08:00
|
|
|
cfg = config.services.bitcoind;
|
2019-11-27 05:04:23 -08:00
|
|
|
inherit (config) nix-bitcoin-services;
|
2018-11-22 16:46:56 -08:00
|
|
|
pidFile = "${cfg.dataDir}/bitcoind.pid";
|
2018-11-13 16:33:34 -08:00
|
|
|
configFile = pkgs.writeText "bitcoin.conf" ''
|
2018-11-22 16:46:56 -08:00
|
|
|
${optionalString cfg.testnet "testnet=1"}
|
|
|
|
${optionalString (cfg.dbCache != null) "dbcache=${toString cfg.dbCache}"}
|
|
|
|
${optionalString (cfg.prune != null) "prune=${toString cfg.prune}"}
|
2019-03-21 03:27:28 -07:00
|
|
|
${optionalString (cfg.sysperms != null) "sysperms=${if cfg.sysperms then "1" else "0"}"}
|
|
|
|
${optionalString (cfg.disablewallet != null) "disablewallet=${if cfg.disablewallet then "1" else "0"}"}
|
2020-02-23 11:22:07 -08:00
|
|
|
${optionalString (cfg.assumevalid != null) "assumevalid=${cfg.assumevalid}"}
|
|
|
|
|
2018-11-22 16:46:56 -08:00
|
|
|
|
|
|
|
# Connection options
|
2018-11-22 10:49:53 -08:00
|
|
|
${optionalString (cfg.port != null) "port=${toString cfg.port}"}
|
2018-11-22 16:46:56 -08:00
|
|
|
${optionalString (cfg.proxy != null) "proxy=${cfg.proxy}"}
|
|
|
|
listen=${if cfg.listen then "1" else "0"}
|
2020-02-23 11:22:07 -08:00
|
|
|
${optionalString (cfg.discover != null) "discover=${if cfg.discover then "1" else "0"}"}
|
2020-02-25 14:00:27 -08:00
|
|
|
${lib.concatMapStrings (node: "addnode=${node}\n") cfg.addnodes}
|
2020-02-23 11:22:07 -08:00
|
|
|
|
2018-11-22 16:46:56 -08:00
|
|
|
|
|
|
|
# RPC server options
|
2019-11-27 05:04:46 -08:00
|
|
|
rpcport=${toString cfg.rpc.port}
|
2018-11-22 16:46:56 -08:00
|
|
|
${concatMapStringsSep "\n"
|
|
|
|
(rpcUser: "rpcauth=${rpcUser.name}:${rpcUser.passwordHMAC}")
|
|
|
|
(attrValues cfg.rpc.users)
|
|
|
|
}
|
2018-11-22 15:06:41 -08:00
|
|
|
${optionalString (cfg.rpcuser != null) "rpcuser=${cfg.rpcuser}"}
|
2018-11-22 15:51:16 -08:00
|
|
|
${optionalString (cfg.rpcpassword != null) "rpcpassword=${cfg.rpcpassword}"}
|
2018-11-22 16:46:56 -08:00
|
|
|
|
2020-02-23 11:22:07 -08:00
|
|
|
# Wallet options
|
|
|
|
${optionalString (cfg.addresstype != null) "addresstype=${cfg.addresstype}"}
|
|
|
|
|
2019-09-02 14:22:29 -07:00
|
|
|
# ZMQ options
|
|
|
|
${optionalString (cfg.zmqpubrawblock != null) "zmqpubrawblock=${cfg.zmqpubrawblock}"}
|
|
|
|
${optionalString (cfg.zmqpubrawtx != null) "zmqpubrawtx=${cfg.zmqpubrawtx}"}
|
|
|
|
|
2018-11-22 16:46:56 -08:00
|
|
|
# Extra config options (from bitcoind nixos service)
|
|
|
|
${cfg.extraConfig}
|
|
|
|
'';
|
|
|
|
cmdlineOptions = concatMapStringsSep " " (arg: "'${arg}'") [
|
|
|
|
"-datadir=${cfg.dataDir}"
|
|
|
|
"-pid=${pidFile}"
|
|
|
|
];
|
|
|
|
hexStr = types.strMatching "[0-9a-f]+";
|
|
|
|
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
|
|
|
|
format <SALT-HEX>$<HMAC-HEX>.
|
|
|
|
'';
|
|
|
|
};
|
2018-11-19 15:09:57 -08:00
|
|
|
};
|
2018-11-22 16:46:56 -08:00
|
|
|
config = {
|
|
|
|
name = mkDefault name;
|
2018-11-19 15:09:57 -08:00
|
|
|
};
|
2018-11-22 16:46:56 -08:00
|
|
|
};
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.bitcoind = {
|
|
|
|
enable = mkEnableOption "Bitcoin daemon";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
2019-11-27 05:04:21 -08:00
|
|
|
default = pkgs.nix-bitcoin.bitcoind;
|
2019-10-02 02:32:12 -07:00
|
|
|
defaultText = "pkgs.blockchains.bitcoind";
|
2018-11-22 16:46:56 -08:00
|
|
|
description = "The package providing bitcoin binaries.";
|
|
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
par=16
|
|
|
|
rpcthreads=16
|
|
|
|
logips=1
|
2018-11-24 14:34:39 -08:00
|
|
|
|
2018-11-22 16:46:56 -08:00
|
|
|
'';
|
|
|
|
description = "Additional configurations to be appended to <filename>bitcoin.conf</filename>.";
|
|
|
|
};
|
|
|
|
dataDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "/var/lib/bitcoind";
|
|
|
|
description = "The data directory for bitcoind.";
|
|
|
|
};
|
2018-12-06 07:59:41 -08:00
|
|
|
configFileOption = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = configFile;
|
|
|
|
description = "The data directory for bitcoind.";
|
|
|
|
};
|
2018-11-22 16:46:56 -08:00
|
|
|
|
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "bitcoin";
|
|
|
|
description = "The user as which to run bitcoind.";
|
|
|
|
};
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = cfg.user;
|
|
|
|
description = "The group as which to run bitcoind.";
|
|
|
|
};
|
|
|
|
|
|
|
|
rpc = {
|
|
|
|
port = mkOption {
|
2019-11-27 05:04:46 -08:00
|
|
|
type = types.ints.u16;
|
|
|
|
default = 8332;
|
|
|
|
description = "Port on which to listen for JSON-RPC connections.";
|
2018-11-22 16:46:56 -08:00
|
|
|
};
|
|
|
|
users = mkOption {
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
alice.passwordHMAC = "f7efda5c189b999524f151318c0c86$d5b51b3beffbc02b724e5d095828e0bc8b2456e9ac8757ae3211a5d9b16a22ae";
|
|
|
|
bob.passwordHMAC = "b2dd077cb54591a2f3139e69a897ac$4e71f08d48b4347cf8eff3815c0e25ae2e9a4340474079f55705f40574f4ec99";
|
|
|
|
};
|
|
|
|
type = with types; loaOf (submodule rpcUserOpts);
|
|
|
|
description = ''
|
|
|
|
RPC user information for JSON-RPC connnections.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
rpcuser = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2018-11-22 16:46:56 -08:00
|
|
|
default = null;
|
|
|
|
description = "Username for JSON-RPC connections";
|
|
|
|
};
|
|
|
|
rpcpassword = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2018-11-22 16:46:56 -08:00
|
|
|
default = null;
|
|
|
|
description = "Password for JSON-RPC connections";
|
|
|
|
};
|
|
|
|
|
|
|
|
testnet = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to use the test chain.";
|
|
|
|
};
|
|
|
|
port = mkOption {
|
2018-11-19 15:09:57 -08:00
|
|
|
type = types.nullOr types.ints.u16;
|
|
|
|
default = null;
|
|
|
|
description = "Override the default port on which to listen for connections.";
|
2018-11-22 16:46:56 -08:00
|
|
|
};
|
|
|
|
proxy = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2018-11-22 15:06:41 -08:00
|
|
|
default = null;
|
2018-11-22 16:46:56 -08:00
|
|
|
description = "Connect through SOCKS5 proxy";
|
|
|
|
};
|
|
|
|
listen = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
If enabled, the bitcoin service will listen.
|
|
|
|
'';
|
|
|
|
};
|
2019-02-25 08:00:50 -08:00
|
|
|
sysperms = mkOption {
|
2019-03-21 03:27:28 -07:00
|
|
|
type = types.nullOr types.bool;
|
|
|
|
default = null;
|
2019-02-25 08:00:50 -08:00
|
|
|
description = ''
|
|
|
|
Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality)
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
disablewallet = mkOption {
|
2019-03-21 03:27:28 -07:00
|
|
|
type = types.nullOr types.bool;
|
|
|
|
default = null;
|
2019-02-25 08:00:50 -08:00
|
|
|
description = ''
|
|
|
|
Do not load the wallet and disable wallet RPC calls
|
|
|
|
'';
|
|
|
|
};
|
2018-11-22 16:46:56 -08:00
|
|
|
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
|
|
|
|
);
|
2018-11-22 15:06:41 -08:00
|
|
|
default = null;
|
2018-11-22 16:46:56 -08:00
|
|
|
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-08-05 01:44:38 -07:00
|
|
|
zmqpubrawblock = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2019-08-05 01:44:38 -07:00
|
|
|
default = null;
|
|
|
|
example = "tcp://127.0.0.1:28332";
|
|
|
|
description = "ZMQ address for zmqpubrawblock notifications";
|
|
|
|
};
|
|
|
|
zmqpubrawtx = mkOption {
|
2019-10-15 00:37:32 -07:00
|
|
|
type = types.nullOr types.str;
|
2019-08-05 01:44:38 -07:00
|
|
|
default = null;
|
|
|
|
example = "tcp://127.0.0.1:28333";
|
|
|
|
description = "ZMQ address for zmqpubrawtx notifications";
|
|
|
|
};
|
2020-02-23 11:22:07 -08:00
|
|
|
assumevalid = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
example = "00000000000000000000e5abc3a74fe27dc0ead9c70ea1deb456f11c15fd7bc6";
|
2020-02-25 14:00:27 -08:00
|
|
|
description = ''
|
|
|
|
If this block is in the chain assume that it and its ancestors are
|
|
|
|
valid and potentially skip their script verification.
|
|
|
|
'';
|
2020-02-23 11:22:07 -08:00
|
|
|
};
|
2020-02-25 14:00:27 -08:00
|
|
|
addnodes = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = [ "ecoc5q34tmbq54wl.onion" ];
|
|
|
|
description = "Add nodes to connect to and attempt to keep the connections open";
|
2020-02-23 11:22:07 -08:00
|
|
|
};
|
|
|
|
discover = mkOption {
|
|
|
|
type = types.nullOr types.bool;
|
|
|
|
default = null;
|
2020-02-25 14:00:27 -08:00
|
|
|
description = "Discover own IP addresses";
|
2020-02-23 11:22:07 -08:00
|
|
|
};
|
|
|
|
addresstype = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
example = "bech32";
|
|
|
|
description = "What type of addresses to use";
|
|
|
|
};
|
2019-11-12 10:40:30 -08:00
|
|
|
cli = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
readOnly = true;
|
|
|
|
default = pkgs.writeScriptBin "bitcoin-cli" ''
|
|
|
|
exec ${cfg.package}/bin/bitcoin-cli -datadir='${cfg.dataDir}' "$@"
|
|
|
|
'';
|
|
|
|
description = "Binary to connect with the bitcoind instance.";
|
|
|
|
};
|
2019-04-27 16:53:26 -07:00
|
|
|
enforceTor = nix-bitcoin-services.enforceTor;
|
2018-11-22 15:06:41 -08:00
|
|
|
};
|
2018-11-13 15:44:54 -08:00
|
|
|
};
|
2018-11-22 16:46:56 -08:00
|
|
|
|
2018-11-13 15:44:54 -08:00
|
|
|
config = mkIf cfg.enable {
|
2018-11-22 16:46:56 -08:00
|
|
|
environment.systemPackages = [ cfg.package ];
|
2018-11-22 10:49:53 -08:00
|
|
|
systemd.services.bitcoind = {
|
2018-11-22 16:46:56 -08:00
|
|
|
description = "Bitcoin daemon";
|
2019-11-27 05:04:19 -08:00
|
|
|
requires = [ "nix-bitcoin-secrets.target" ];
|
|
|
|
after = [ "network.target" "nix-bitcoin-secrets.target" ];
|
2018-11-22 10:49:53 -08:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
preStart = ''
|
2018-11-22 16:46:56 -08:00
|
|
|
if ! test -e ${cfg.dataDir}; then
|
|
|
|
mkdir -m 0770 -p '${cfg.dataDir}'
|
2019-03-25 06:40:12 -07:00
|
|
|
fi
|
|
|
|
if ! test -e ${cfg.dataDir}/blocks; then
|
|
|
|
mkdir -m 0770 -p '${cfg.dataDir}/blocks'
|
2018-11-22 16:46:56 -08:00
|
|
|
fi
|
2018-12-06 07:59:41 -08:00
|
|
|
cp '${cfg.configFileOption}' '${cfg.dataDir}/bitcoin.conf'
|
2018-11-28 15:54:19 -08:00
|
|
|
chmod o-rw '${cfg.dataDir}/bitcoin.conf'
|
2019-07-12 08:32:34 -07:00
|
|
|
chown -R '${cfg.user}:${cfg.group}' '${cfg.dataDir}'
|
2020-01-12 11:52:39 -08:00
|
|
|
echo "rpcpassword=$(cat ${config.nix-bitcoin.secretsDir}/bitcoin-rpcpassword)" >> '${cfg.dataDir}/bitcoin.conf'
|
2019-02-25 08:00:50 -08:00
|
|
|
chmod -R g+rX '${cfg.dataDir}/blocks'
|
2018-11-22 16:46:56 -08:00
|
|
|
'';
|
2019-11-27 05:04:46 -08:00
|
|
|
# Wait until RPC port is open. This usually takes just a few ms.
|
|
|
|
postStart = ''
|
|
|
|
while ! { exec 3>/dev/tcp/127.0.0.1/${toString cfg.rpc.port}; } &>/dev/null; do
|
|
|
|
sleep 0.05
|
|
|
|
done
|
|
|
|
'';
|
2018-11-22 10:49:53 -08:00
|
|
|
serviceConfig = {
|
2018-11-22 16:46:56 -08:00
|
|
|
Type = "simple";
|
|
|
|
User = "${cfg.user}";
|
|
|
|
Group = "${cfg.group}";
|
|
|
|
ExecStart = "${cfg.package}/bin/bitcoind ${cmdlineOptions}";
|
|
|
|
PIDFile = "${pidFile}";
|
2018-11-22 10:49:53 -08:00
|
|
|
Restart = "on-failure";
|
|
|
|
|
2018-11-22 16:46:56 -08:00
|
|
|
# Hardening measures
|
2018-11-22 10:49:53 -08:00
|
|
|
PrivateTmp = "true";
|
|
|
|
ProtectSystem = "full";
|
|
|
|
NoNewPrivileges = "true";
|
|
|
|
PrivateDevices = "true";
|
|
|
|
MemoryDenyWriteExecute = "true";
|
2018-11-22 16:46:56 -08:00
|
|
|
|
|
|
|
# Permission for preStart
|
|
|
|
PermissionsStartOnly = "true";
|
2019-04-27 16:53:26 -07:00
|
|
|
} // nix-bitcoin-services.defaultHardening
|
|
|
|
// (if cfg.enforceTor
|
2019-11-07 14:58:21 -08:00
|
|
|
then nix-bitcoin-services.allowTor
|
|
|
|
else nix-bitcoin-services.allowAnyIP)
|
|
|
|
// optionalAttrs (cfg.zmqpubrawblock != null || cfg.zmqpubrawtx != null) nix-bitcoin-services.allowAnyProtocol;
|
2018-11-19 15:09:57 -08:00
|
|
|
};
|
2019-11-12 10:40:31 -08:00
|
|
|
|
|
|
|
# Use this to update the banlist:
|
|
|
|
# wget https://people.xiph.org/~greg/banlist.cli.txt
|
2019-03-29 02:44:30 -07:00
|
|
|
systemd.services.bitcoind-import-banlist = {
|
|
|
|
description = "Bitcoin daemon banlist importer";
|
2019-11-12 10:40:32 -08:00
|
|
|
wantedBy = [ "bitcoind.service" ];
|
|
|
|
bindsTo = [ "bitcoind.service" ];
|
2019-03-26 03:39:49 -07:00
|
|
|
after = [ "bitcoind.service" ];
|
2019-11-12 10:40:33 -08:00
|
|
|
script = ''
|
|
|
|
cd ${cfg.cli}/bin
|
|
|
|
# Poll until bitcoind accepts commands. This can take a long time.
|
|
|
|
while ! ./bitcoin-cli getnetworkinfo &> /dev/null; do
|
|
|
|
sleep 1
|
2019-03-26 03:39:49 -07:00
|
|
|
done
|
2019-11-12 10:40:33 -08:00
|
|
|
echo "Importing node banlist..."
|
2019-11-14 04:05:47 -08:00
|
|
|
cat ${./banlist.cli.txt} | while read line; do
|
|
|
|
if ! err=$(eval "$line" 2>&1) && [[ $err != *already\ banned* ]]; then
|
|
|
|
# unexpected error
|
|
|
|
echo "$err"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
2019-03-26 03:39:49 -07:00
|
|
|
'';
|
|
|
|
serviceConfig = {
|
|
|
|
User = "${cfg.user}";
|
|
|
|
Group = "${cfg.group}";
|
2019-04-27 16:53:26 -07:00
|
|
|
} // nix-bitcoin-services.defaultHardening
|
|
|
|
// nix-bitcoin-services.allowTor;
|
2019-03-26 03:39:49 -07:00
|
|
|
};
|
|
|
|
|
2018-11-22 16:46:56 -08:00
|
|
|
users.users.${cfg.user} = {
|
|
|
|
group = cfg.group;
|
|
|
|
description = "Bitcoin daemon user";
|
|
|
|
home = cfg.dataDir;
|
|
|
|
};
|
2019-11-27 05:04:15 -08:00
|
|
|
users.groups.${cfg.group} = {};
|
2019-11-27 05:04:16 -08:00
|
|
|
users.groups.bitcoinrpc = {};
|
2020-01-12 11:52:38 -08:00
|
|
|
|
|
|
|
nix-bitcoin.secrets.bitcoin-rpcpassword = {
|
|
|
|
user = "bitcoin";
|
|
|
|
group = "bitcoinrpc";
|
|
|
|
};
|
2018-11-22 10:49:53 -08:00
|
|
|
};
|
2018-11-13 15:44:54 -08:00
|
|
|
}
|