2016-07-29 17:37:57 +02:00
|
|
|
#!/usr/bin/env python3
|
2023-08-16 19:27:31 +02:00
|
|
|
# Copyright (c) 2016-2020 The Bitcoin Core developers
|
2016-07-29 17:37:57 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2019-01-07 10:55:35 +01:00
|
|
|
"""Test the dumpwallet RPC."""
|
2020-04-13 12:28:30 +02:00
|
|
|
import datetime
|
2019-09-25 10:45:53 +02:00
|
|
|
import os
|
2020-04-13 12:28:30 +02:00
|
|
|
import time
|
2016-07-29 17:37:57 +02:00
|
|
|
|
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2018-03-07 16:29:57 +01:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_equal,
|
|
|
|
assert_raises_rpc_error,
|
|
|
|
)
|
2016-08-03 10:58:25 +02:00
|
|
|
|
|
|
|
|
2017-12-21 11:29:51 +01:00
|
|
|
def read_dump(file_name, addrs, script_addrs, hd_master_addr_old):
|
2016-08-03 10:58:25 +02:00
|
|
|
"""
|
|
|
|
Read the given dump, count the addrs that match, count change and reserve.
|
|
|
|
Also check that the old hd_master is inactive
|
|
|
|
"""
|
2018-01-31 10:37:15 +01:00
|
|
|
with open(file_name, encoding='utf8') as inputfile:
|
2020-04-13 12:28:30 +02:00
|
|
|
found_comments = []
|
2016-08-03 10:58:25 +02:00
|
|
|
found_addr = 0
|
2017-12-21 11:29:51 +01:00
|
|
|
found_script_addr = 0
|
2016-08-03 10:58:25 +02:00
|
|
|
found_addr_chg = 0
|
|
|
|
found_addr_rsv = 0
|
|
|
|
hd_master_addr_ret = None
|
|
|
|
for line in inputfile:
|
2020-04-13 12:28:30 +02:00
|
|
|
line = line.strip()
|
|
|
|
if not line:
|
|
|
|
continue
|
|
|
|
if line[0] == '#':
|
|
|
|
found_comments.append(line)
|
|
|
|
else:
|
2016-08-03 10:58:25 +02:00
|
|
|
# split out some data
|
2018-09-10 22:58:15 +02:00
|
|
|
key_date_label, comment = line.split("#")
|
|
|
|
key_date_label = key_date_label.split(" ")
|
|
|
|
# key = key_date_label[0]
|
|
|
|
date = key_date_label[1]
|
|
|
|
keytype = key_date_label[2]
|
2018-09-13 23:45:32 +02:00
|
|
|
|
|
|
|
imported_key = date == '1970-01-01T00:00:01Z'
|
|
|
|
if imported_key:
|
|
|
|
# Imported keys have multiple addresses, no label (keypath) and timestamp
|
|
|
|
# Skip them
|
2018-09-10 22:58:15 +02:00
|
|
|
continue
|
|
|
|
|
|
|
|
addr_keypath = comment.split(" addr=")[1]
|
|
|
|
addr = addr_keypath.split(" ")[0]
|
|
|
|
keypath = None
|
|
|
|
if keytype == "inactivehdseed=1":
|
|
|
|
# ensure the old master is still available
|
2021-08-27 21:03:02 +02:00
|
|
|
assert hd_master_addr_old == addr
|
2018-09-10 22:58:15 +02:00
|
|
|
elif keytype == "hdseed=1":
|
|
|
|
# ensure we have generated a new hd master key
|
2021-08-27 21:03:02 +02:00
|
|
|
assert hd_master_addr_old != addr
|
2018-09-10 22:58:15 +02:00
|
|
|
hd_master_addr_ret = addr
|
|
|
|
elif keytype == "script=1":
|
|
|
|
# scripts don't have keypaths
|
2016-08-03 10:58:25 +02:00
|
|
|
keypath = None
|
2018-09-10 22:58:15 +02:00
|
|
|
else:
|
|
|
|
keypath = addr_keypath.rstrip().split("hdkeypath=")[1]
|
|
|
|
|
|
|
|
# count key types
|
|
|
|
for addrObj in addrs:
|
|
|
|
if addrObj['address'] == addr and addrObj['hdkeypath'] == keypath and keytype == "label=":
|
|
|
|
found_addr += 1
|
|
|
|
break
|
|
|
|
elif keytype == "change=1":
|
|
|
|
found_addr_chg += 1
|
|
|
|
break
|
|
|
|
elif keytype == "reserve=1":
|
|
|
|
found_addr_rsv += 1
|
|
|
|
break
|
|
|
|
|
|
|
|
# count scripts
|
|
|
|
for script_addr in script_addrs:
|
|
|
|
if script_addr == addr.rstrip() and keytype == "script=1":
|
|
|
|
found_script_addr += 1
|
|
|
|
break
|
2017-12-21 11:29:51 +01:00
|
|
|
|
2020-04-13 12:28:30 +02:00
|
|
|
return found_comments, found_addr, found_script_addr, found_addr_chg, found_addr_rsv, hd_master_addr_ret
|
2016-07-29 17:37:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
class WalletDumpTest(BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
2016-07-29 17:37:57 +02:00
|
|
|
self.num_nodes = 1
|
2024-08-30 09:47:15 +02:00
|
|
|
self.disable_mocktime = True
|
2022-11-30 20:24:02 +01:00
|
|
|
self.extra_args = [["-keypool=90", "-usehd=1"]]
|
2018-08-02 14:31:47 +02:00
|
|
|
self.rpc_timeout = 120
|
2018-01-31 10:40:27 +01:00
|
|
|
|
2018-09-13 12:33:15 +02:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_wallet()
|
|
|
|
|
2019-06-20 18:37:09 +02:00
|
|
|
def setup_network(self):
|
2018-08-02 14:31:47 +02:00
|
|
|
self.add_nodes(self.num_nodes, extra_args=self.extra_args)
|
2017-09-01 18:47:13 +02:00
|
|
|
self.start_nodes()
|
2016-07-29 17:37:57 +02:00
|
|
|
|
2018-08-02 14:31:47 +02:00
|
|
|
def run_test(self):
|
2022-11-30 20:24:02 +01:00
|
|
|
self.nodes[0].createwallet("dump")
|
|
|
|
|
2018-03-07 16:29:57 +01:00
|
|
|
wallet_unenc_dump = os.path.join(self.nodes[0].datadir, "wallet.unencrypted.dump")
|
|
|
|
wallet_enc_dump = os.path.join(self.nodes[0].datadir, "wallet.encrypted.dump")
|
2016-07-29 17:37:57 +02:00
|
|
|
|
2016-08-03 10:58:25 +02:00
|
|
|
# generate 20 addresses to compare against the dump
|
2016-07-29 17:37:57 +02:00
|
|
|
test_addr_count = 20
|
|
|
|
addrs = []
|
2020-08-11 02:50:34 +02:00
|
|
|
for _ in range(test_addr_count):
|
2016-07-29 17:37:57 +02:00
|
|
|
addr = self.nodes[0].getnewaddress()
|
2020-12-17 13:46:20 +01:00
|
|
|
vaddr= self.nodes[0].getaddressinfo(addr) #required to get hd keypath
|
2016-07-29 17:37:57 +02:00
|
|
|
addrs.append(vaddr)
|
2016-08-03 10:58:25 +02:00
|
|
|
# Should be a no-op:
|
|
|
|
self.nodes[0].keypoolrefill()
|
2016-07-29 17:37:57 +02:00
|
|
|
|
2020-03-28 02:47:35 +01:00
|
|
|
# Test scripts dump by adding a 1-of-1 multisig address
|
2020-05-15 11:34:41 +02:00
|
|
|
multisig_addr = self.nodes[0].addmultisigaddress(1, [addrs[1]["address"]])["address"]
|
2020-03-28 02:47:35 +01:00
|
|
|
script_addrs = [multisig_addr]
|
2017-12-21 11:29:51 +01:00
|
|
|
|
2020-04-13 12:28:30 +02:00
|
|
|
self.log.info('Mine a block one second before the wallet is dumped')
|
|
|
|
dump_time = int(time.time())
|
|
|
|
self.nodes[0].setmocktime(dump_time - 1)
|
|
|
|
self.nodes[0].generate(1)
|
|
|
|
self.nodes[0].setmocktime(dump_time)
|
|
|
|
dump_time_str = '# * Created on {}Z'.format(
|
|
|
|
datetime.datetime.fromtimestamp(
|
|
|
|
dump_time,
|
|
|
|
tz=datetime.timezone.utc,
|
|
|
|
).replace(tzinfo=None).isoformat())
|
|
|
|
dump_best_block_1 = '# * Best block at time of backup was {} ({}),'.format(
|
|
|
|
self.nodes[0].getblockcount(),
|
|
|
|
self.nodes[0].getbestblockhash(),
|
|
|
|
)
|
|
|
|
dump_best_block_2 = '# mined on {}Z'.format(
|
|
|
|
datetime.datetime.fromtimestamp(
|
|
|
|
dump_time - 1,
|
|
|
|
tz=datetime.timezone.utc,
|
|
|
|
).replace(tzinfo=None).isoformat())
|
|
|
|
|
|
|
|
self.log.info('Dump unencrypted wallet')
|
2018-03-07 16:29:57 +01:00
|
|
|
result = self.nodes[0].dumpwallet(wallet_unenc_dump)
|
|
|
|
assert_equal(result['filename'], wallet_unenc_dump)
|
2016-07-29 17:37:57 +02:00
|
|
|
|
2020-04-13 12:28:30 +02:00
|
|
|
found_comments, found_addr, found_script_addr, found_addr_chg, found_addr_rsv, hd_master_addr_unenc = \
|
2018-03-07 16:29:57 +01:00
|
|
|
read_dump(wallet_unenc_dump, addrs, script_addrs, None)
|
2020-04-13 12:28:30 +02:00
|
|
|
assert '# End of dump' in found_comments # Check that file is not corrupt
|
|
|
|
assert_equal(dump_time_str, next(c for c in found_comments if c.startswith('# * Created on')))
|
|
|
|
assert_equal(dump_best_block_1, next(c for c in found_comments if c.startswith('# * Best block')))
|
|
|
|
assert_equal(dump_best_block_2, next(c for c in found_comments if c.startswith('# mined on')))
|
2016-08-03 10:58:25 +02:00
|
|
|
assert_equal(found_addr, test_addr_count) # all keys must be in the dump
|
2020-03-28 02:47:35 +01:00
|
|
|
# This is 1, not 2 because we aren't testing for witness scripts
|
|
|
|
assert_equal(found_script_addr, 1) # all scripts must be in the dump
|
2018-09-10 22:58:15 +02:00
|
|
|
assert_equal(found_addr_chg, 0) # 0 blocks where mined
|
2018-01-31 10:40:27 +01:00
|
|
|
assert_equal(found_addr_rsv, 180) # keypool size (external+internal)
|
2016-07-29 17:37:57 +02:00
|
|
|
|
|
|
|
#encrypt wallet, restart, unlock and dump
|
2018-09-14 10:28:27 +02:00
|
|
|
self.nodes[0].encryptwallet('test')
|
2020-01-25 17:20:14 +01:00
|
|
|
self.nodes[0].walletpassphrase('test', 300)
|
2016-08-03 10:58:25 +02:00
|
|
|
# Should be a no-op:
|
|
|
|
self.nodes[0].keypoolrefill()
|
2018-03-07 16:29:57 +01:00
|
|
|
self.nodes[0].dumpwallet(wallet_enc_dump)
|
2016-07-29 17:37:57 +02:00
|
|
|
|
2020-04-13 12:28:30 +02:00
|
|
|
found_comments, found_addr, found_script_addr, found_addr_chg, found_addr_rsv, _ = \
|
2018-03-07 16:29:57 +01:00
|
|
|
read_dump(wallet_enc_dump, addrs, script_addrs, hd_master_addr_unenc)
|
2020-04-13 12:28:30 +02:00
|
|
|
assert '# End of dump' in found_comments # Check that file is not corrupt
|
|
|
|
assert_equal(dump_time_str, next(c for c in found_comments if c.startswith('# * Created on')))
|
|
|
|
assert_equal(dump_best_block_1, next(c for c in found_comments if c.startswith('# * Best block')))
|
|
|
|
assert_equal(dump_best_block_2, next(c for c in found_comments if c.startswith('# mined on')))
|
2016-08-03 10:58:25 +02:00
|
|
|
assert_equal(found_addr, test_addr_count)
|
2020-03-28 02:47:35 +01:00
|
|
|
# This is 1, not 2 because we aren't testing for witness scripts
|
|
|
|
assert_equal(found_script_addr, 1)
|
|
|
|
# TODO clarify if we want the behavior that is tested below in Dash (only when HD seed was generated and not user-provided)
|
2018-01-31 10:40:27 +01:00
|
|
|
# assert_equal(found_addr_chg, 180 + 50) # old reserve keys are marked as change now
|
2018-02-01 11:10:56 +01:00
|
|
|
assert_equal(found_addr_rsv, 180) # keypool size
|
2016-07-29 17:37:57 +02:00
|
|
|
|
2017-10-04 15:00:59 +02:00
|
|
|
# Overwriting should fail
|
2018-03-07 16:29:57 +01:00
|
|
|
assert_raises_rpc_error(-8, "already exists", lambda: self.nodes[0].dumpwallet(wallet_enc_dump))
|
2017-10-04 15:00:59 +02:00
|
|
|
|
2017-12-21 11:29:51 +01:00
|
|
|
# Restart node with new wallet, and test importwallet
|
2022-11-30 20:24:02 +01:00
|
|
|
self.restart_node(0)
|
|
|
|
self.nodes[0].createwallet("w2")
|
2017-12-21 11:29:51 +01:00
|
|
|
|
|
|
|
# Make sure the address is not IsMine before import
|
2020-12-17 13:46:20 +01:00
|
|
|
result = self.nodes[0].getaddressinfo(multisig_addr)
|
2021-08-27 21:03:02 +02:00
|
|
|
assert result['ismine'] == False
|
2017-12-21 11:29:51 +01:00
|
|
|
|
2018-03-07 16:29:57 +01:00
|
|
|
self.nodes[0].importwallet(wallet_unenc_dump)
|
2017-12-21 11:29:51 +01:00
|
|
|
|
|
|
|
# Now check IsMine is true
|
2020-12-17 13:46:20 +01:00
|
|
|
result = self.nodes[0].getaddressinfo(multisig_addr)
|
2021-08-27 21:03:02 +02:00
|
|
|
assert result['ismine'] == True
|
2017-12-21 11:29:51 +01:00
|
|
|
|
2023-02-12 11:51:09 +01:00
|
|
|
if self.is_bdb_compiled():
|
|
|
|
self.log.info('Check that wallet is flushed')
|
|
|
|
with self.nodes[0].assert_debug_log(['Flushing wallet.dat'], timeout=20):
|
|
|
|
self.nodes[0].getnewaddress()
|
2022-06-12 16:11:56 +02:00
|
|
|
|
2021-07-20 15:04:01 +02:00
|
|
|
# Make sure that dumpwallet doesn't have a lock order issue when there is an unconfirmed tx and it is reloaded
|
|
|
|
# See https://github.com/bitcoin/bitcoin/issues/22489
|
|
|
|
self.nodes[0].createwallet("w3")
|
|
|
|
w3 = self.nodes[0].get_wallet_rpc("w3")
|
|
|
|
w3.importprivkey(privkey=self.nodes[0].get_deterministic_priv_key().key, label="coinbase_import")
|
|
|
|
w3.sendtoaddress(w3.getnewaddress(), 10)
|
|
|
|
w3.unloadwallet()
|
|
|
|
self.nodes[0].loadwallet("w3")
|
|
|
|
w3.dumpwallet(os.path.join(self.nodes[0].datadir, "w3.dump"))
|
2022-06-12 16:11:56 +02:00
|
|
|
|
2016-07-29 17:37:57 +02:00
|
|
|
if __name__ == '__main__':
|
2018-03-07 16:29:57 +01:00
|
|
|
WalletDumpTest().main()
|