From 19e401b0283e749e53261eedd5ce8ed604ad9ad5 Mon Sep 17 00:00:00 2001 From: nixbitcoin Date: Wed, 17 Feb 2021 13:35:31 +0000 Subject: [PATCH] bitcoind: enable cookie-based authentication --- modules/bitcoind.nix | 6 ++++-- test/tests.py | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/bitcoind.nix b/modules/bitcoind.nix index 4340e7f..e834c65 100644 --- a/modules/bitcoind.nix +++ b/modules/bitcoind.nix @@ -327,8 +327,6 @@ in { cfg=$( cat ${configFile} ${extraRpcauth} - ${/* Enable bitcoin-cli for group 'bitcoin' */ ""} - printf "rpcuser=${cfg.rpc.users.privileged.name}\nrpcpassword="; cat "${secretsDir}/bitcoin-rpcpassword-privileged" echo ${optionalString (cfg.getPublicAddressCmd != "") '' echo "externalip=$(${cfg.getPublicAddressCmd})" @@ -339,6 +337,10 @@ in { install -o '${cfg.user}' -g '${cfg.group}' -m 640 <(echo "$cfg") $confFile fi ''; + # Enable RPC access for group + postStart = '' + chmod g=r '${cfg.dataDir}/${optionalString cfg.regtest "regtest/"}.cookie' + ''; serviceConfig = nbLib.defaultHardening // { Type = "notify"; NotifyAccess = "all"; diff --git a/test/tests.py b/test/tests.py index 178706f..0eed546 100644 --- a/test/tests.py +++ b/test/tests.py @@ -103,6 +103,10 @@ def _(): assert_running("bitcoind") machine.wait_until_succeeds("bitcoin-cli getnetworkinfo") assert_matches("runuser -u operator -- bitcoin-cli getnetworkinfo | jq", '"version"') + + regtest = "regtest/" if "regtest" in enabled_tests else "" + assert_full_match(f"stat -c '%a' /var/lib/bitcoind/{regtest}.cookie", "640\n") + # RPC access for user 'public' should be restricted machine.fail( "bitcoin-cli -rpcuser=public -rpcpassword=$(cat /secrets/bitcoin-rpcpassword-public) stop"