Bitcoin Core  29.1.0
P2P Digital Currency
util.cpp
Go to the documentation of this file.
1 // Copyright (c) 2021-2022 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #include <wallet/test/util.h>
6 
7 #include <chain.h>
8 #include <key.h>
9 #include <key_io.h>
10 #include <streams.h>
11 #include <test/util/setup_common.h>
12 #include <validationinterface.h>
13 #include <wallet/context.h>
14 #include <wallet/wallet.h>
15 #include <wallet/walletdb.h>
16 
17 #include <memory>
18 
19 namespace wallet {
20 std::unique_ptr<CWallet> CreateSyncedWallet(interfaces::Chain& chain, CChain& cchain, const CKey& key)
21 {
22  auto wallet = std::make_unique<CWallet>(&chain, "", CreateMockableWalletDatabase());
23  {
24  LOCK2(wallet->cs_wallet, ::cs_main);
25  wallet->SetLastBlockProcessed(cchain.Height(), cchain.Tip()->GetBlockHash());
26  }
27  {
28  LOCK(wallet->cs_wallet);
29  wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
30  wallet->SetupDescriptorScriptPubKeyMans();
31 
32  FlatSigningProvider provider;
33  std::string error;
34  auto descs = Parse("combo(" + EncodeSecret(key) + ")", provider, error, /* require_checksum=*/ false);
35  assert(descs.size() == 1);
36  auto& desc = descs.at(0);
37  WalletDescriptor w_desc(std::move(desc), 0, 0, 1, 1);
38  if (!wallet->AddWalletDescriptor(w_desc, provider, "", false)) assert(false);
39  }
40  WalletRescanReserver reserver(*wallet);
41  reserver.reserve();
42  CWallet::ScanResult result = wallet->ScanForWalletTransactions(cchain.Genesis()->GetBlockHash(), /*start_height=*/0, /*max_height=*/{}, reserver, /*fUpdate=*/false, /*save_progress=*/false);
44  assert(result.last_scanned_block == cchain.Tip()->GetBlockHash());
45  assert(*result.last_scanned_height == cchain.Height());
46  assert(result.last_failed_block.IsNull());
47  return wallet;
48 }
49 
50 std::shared_ptr<CWallet> TestLoadWallet(std::unique_ptr<WalletDatabase> database, WalletContext& context, uint64_t create_flags)
51 {
52  bilingual_str error;
53  std::vector<bilingual_str> warnings;
54  auto wallet = CWallet::Create(context, "", std::move(database), create_flags, error, warnings);
55  NotifyWalletLoaded(context, wallet);
56  if (context.chain) {
57  wallet->postInitProcess();
58  }
59  return wallet;
60 }
61 
62 std::shared_ptr<CWallet> TestLoadWallet(WalletContext& context)
63 {
64  DatabaseOptions options;
66  DatabaseStatus status;
67  bilingual_str error;
68  std::vector<bilingual_str> warnings;
69  auto database = MakeWalletDatabase("", options, status, error);
70  return TestLoadWallet(std::move(database), context, options.create_flags);
71 }
72 
73 void TestUnloadWallet(std::shared_ptr<CWallet>&& wallet)
74 {
75  // Calls SyncWithValidationInterfaceQueue
76  wallet->chain().waitForNotificationsIfTipChanged({});
77  wallet->m_chain_notifications_handler.reset();
78  WaitForDeleteWallet(std::move(wallet));
79 }
80 
81 std::unique_ptr<WalletDatabase> DuplicateMockDatabase(WalletDatabase& database)
82 {
83  return std::make_unique<MockableDatabase>(dynamic_cast<MockableDatabase&>(database).m_records);
84 }
85 
86 std::string getnewaddress(CWallet& w)
87 {
88  constexpr auto output_type = OutputType::BECH32;
89  return EncodeDestination(getNewDestination(w, output_type));
90 }
91 
93 {
94  return *Assert(w.GetNewDestination(output_type, ""));
95 }
96 
98 {
99  m_pass = pass;
100  std::tie(m_cursor, m_cursor_end) = records.equal_range(BytePrefix{prefix});
101 }
102 
104 {
105  if (!m_pass) {
106  return Status::FAIL;
107  }
108  if (m_cursor == m_cursor_end) {
109  return Status::DONE;
110  }
111  key.clear();
112  value.clear();
113  const auto& [key_data, value_data] = *m_cursor;
114  key.write(key_data);
115  value.write(value_data);
116  m_cursor++;
117  return Status::MORE;
118 }
119 
121 {
122  if (!m_pass) {
123  return false;
124  }
125  SerializeData key_data{key.begin(), key.end()};
126  const auto& it = m_records.find(key_data);
127  if (it == m_records.end()) {
128  return false;
129  }
130  value.clear();
131  value.write(it->second);
132  return true;
133 }
134 
135 bool MockableBatch::WriteKey(DataStream&& key, DataStream&& value, bool overwrite)
136 {
137  if (!m_pass) {
138  return false;
139  }
140  SerializeData key_data{key.begin(), key.end()};
141  SerializeData value_data{value.begin(), value.end()};
142  auto [it, inserted] = m_records.emplace(key_data, value_data);
143  if (!inserted && overwrite) { // Overwrite if requested
144  it->second = value_data;
145  inserted = true;
146  }
147  return inserted;
148 }
149 
151 {
152  if (!m_pass) {
153  return false;
154  }
155  SerializeData key_data{key.begin(), key.end()};
156  m_records.erase(key_data);
157  return true;
158 }
159 
161 {
162  if (!m_pass) {
163  return false;
164  }
165  SerializeData key_data{key.begin(), key.end()};
166  return m_records.count(key_data) > 0;
167 }
168 
170 {
171  if (!m_pass) {
172  return false;
173  }
174  auto it = m_records.begin();
175  while (it != m_records.end()) {
176  auto& key = it->first;
177  if (key.size() < prefix.size() || std::search(key.begin(), key.end(), prefix.begin(), prefix.end()) != key.begin()) {
178  it++;
179  continue;
180  }
181  it = m_records.erase(it);
182  }
183  return true;
184 }
185 
186 std::unique_ptr<WalletDatabase> CreateMockableWalletDatabase(MockableData records)
187 {
188  return std::make_unique<MockableDatabase>(records);
189 }
190 
192 {
193  return dynamic_cast<MockableDatabase&>(wallet.GetDatabase());
194 }
195 
196 wallet::ScriptPubKeyMan* CreateDescriptor(CWallet& keystore, const std::string& desc_str, const bool success)
197 {
198  keystore.SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
199 
200  FlatSigningProvider keys;
201  std::string error;
202  auto parsed_descs = Parse(desc_str, keys, error, false);
203  Assert(success == (!parsed_descs.empty()));
204  if (!success) return nullptr;
205  auto& desc = parsed_descs.at(0);
206 
207  const int64_t range_start = 0, range_end = 1, next_index = 0, timestamp = 1;
208 
209  WalletDescriptor w_desc(std::move(desc), timestamp, range_start, range_end, next_index);
210 
211  LOCK(keystore.cs_wallet);
212 
213  return Assert(keystore.AddWalletDescriptor(w_desc, keys,/*label=*/"", /*internal=*/false));
214 };
215 } // namespace wallet
Status Next(DataStream &key, DataStream &value) override
Definition: util.cpp:103
static UniValue Parse(std::string_view raw)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
Definition: client.cpp:327
bool ErasePrefix(Span< const std::byte > prefix) override
Definition: util.cpp:169
assert(!tx.IsCoinBase())
Bilingual messages:
Definition: translation.h:24
wallet::ScriptPubKeyMan * CreateDescriptor(CWallet &keystore, const std::string &desc_str, const bool success)
Definition: util.cpp:196
An in-memory indexed chain of blocks.
Definition: chain.h:416
std::map< SerializeData, SerializeData, std::less<> > MockableData
Definition: util.h:54
const char * prefix
Definition: rest.cpp:1009
int Height() const
Return the maximal height in the chain.
Definition: chain.h:462
RecursiveMutex cs_wallet
Main wallet lock.
Definition: wallet.h:445
MockableCursor(const MockableData &records, bool pass)
Definition: util.h:63
CBlockIndex * Genesis() const
Returns the index entry for the genesis block of this chain, or nullptr if none.
Definition: chain.h:427
MockableData::const_iterator m_cursor
Definition: util.h:59
RAII object to check and reserve a wallet rescan.
Definition: wallet.h:1081
bool reserve(bool with_passphrase=false)
Definition: wallet.h:1092
CTxDestination getNewDestination(CWallet &w, OutputType output_type)
Returns a new destination, of an specific type, from the wallet.
Definition: util.cpp:92
void write(Span< const value_type > src)
Definition: streams.h:251
std::unique_ptr< WalletDatabase > DuplicateMockDatabase(WalletDatabase &database)
Definition: util.cpp:81
MockableData::const_iterator m_cursor_end
Definition: util.h:60
MockableData & m_records
Definition: util.h:73
std::shared_ptr< CWallet > TestLoadWallet(std::unique_ptr< WalletDatabase > database, WalletContext &context, uint64_t create_flags)
Definition: util.cpp:50
OutputType
Definition: outputtype.h:17
uint256 GetBlockHash() const
Definition: chain.h:243
#define LOCK2(cs1, cs2)
Definition: sync.h:258
void WaitForDeleteWallet(std::shared_ptr< CWallet > &&wallet)
Explicitly delete the wallet.
Definition: wallet.cpp:252
uint64_t create_flags
Definition: db.h:195
#define LOCK(cs)
Definition: sync.h:257
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:146
std::vector< std::byte, zero_after_free_allocator< std::byte > > SerializeData
Byte-vector that clears its contents before deletion.
Definition: zeroafterfree.h:49
bool EraseKey(DataStream &&key) override
Definition: util.cpp:150
void NotifyWalletLoaded(WalletContext &context, const std::shared_ptr< CWallet > &wallet)
Definition: wallet.cpp:220
Indicate that this wallet supports DescriptorScriptPubKeyMan.
Definition: walletutil.h:74
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:299
MockableDatabase & GetMockableDatabase(CWallet &wallet)
Definition: util.cpp:191
Descriptor with some wallet metadata.
Definition: walletutil.h:84
bool WriteKey(DataStream &&key, DataStream &&value, bool overwrite=true) override
Definition: util.cpp:135
DatabaseStatus
Definition: db.h:205
std::unique_ptr< CWallet > CreateSyncedWallet(interfaces::Chain &chain, CChain &cchain, const CKey &key)
Definition: util.cpp:20
std::unique_ptr< WalletDatabase > CreateMockableWalletDatabase(MockableData records)
Definition: util.cpp:186
A WalletDatabase whose contents and return values can be modified as needed for testing.
Definition: util.h:104
void clear()
Definition: streams.h:187
auto result
Definition: common-types.h:74
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
Definition: chain.h:128
void TestUnloadWallet(std::shared_ptr< CWallet > &&wallet)
Definition: util.cpp:73
bool ReadKey(DataStream &&key, DataStream &value) override
Definition: util.cpp:120
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
Definition: addresstype.h:140
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
Definition: chain.h:433
WalletContext struct containing references to state shared between CWallet instances, like the reference to the chain interface, and the list of opened wallets.
Definition: context.h:36
interfaces::Chain * chain
Definition: context.h:37
std::string EncodeDestination(const CTxDestination &dest)
Definition: key_io.cpp:294
An encapsulated private key.
Definition: key.h:34
bool HasKey(DataStream &&key) override
Definition: util.cpp:160
RPCHelpMan getnewaddress()
Definition: addresses.cpp:21
util::Result< CTxDestination > GetNewDestination(const OutputType type, const std::string label)
Definition: wallet.cpp:2586
std::string EncodeSecret(const CKey &key)
Definition: key_io.cpp:231
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate...
Definition: cs_main.cpp:8
An instance of this class represents one database.
Definition: db.h:130
ScriptPubKeyMan * AddWalletDescriptor(WalletDescriptor &desc, const FlatSigningProvider &signing_provider, const std::string &label, bool internal) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
Add a descriptor to the wallet, return a ScriptPubKeyMan & associated output type.
Definition: wallet.cpp:3947
std::unique_ptr< WalletDatabase > MakeWalletDatabase(const std::string &name, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error_string)
Definition: wallet.cpp:2992
#define Assert(val)
Identity function.
Definition: check.h:85
static std::shared_ptr< CWallet > Create(WalletContext &context, const std::string &name, std::unique_ptr< WalletDatabase > database, uint64_t wallet_creation_flags, bilingual_str &error, std::vector< bilingual_str > &warnings)
Definition: wallet.cpp:3003