Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-present The Bitcoin Core developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <wallet/wallet.h>
7 : :
8 : : #include <bitcoin-build-config.h> // IWYU pragma: keep
9 : :
10 : : #include <addresstype.h>
11 : : #include <blockfilter.h>
12 : : #include <chain.h>
13 : : #include <coins.h>
14 : : #include <common/args.h>
15 : : #include <common/messages.h>
16 : : #include <common/settings.h>
17 : : #include <common/signmessage.h>
18 : : #include <common/system.h>
19 : : #include <consensus/amount.h>
20 : : #include <consensus/consensus.h>
21 : : #include <consensus/validation.h>
22 : : #include <external_signer.h>
23 : : #include <interfaces/chain.h>
24 : : #include <interfaces/handler.h>
25 : : #include <interfaces/wallet.h>
26 : : #include <kernel/mempool_removal_reason.h>
27 : : #include <kernel/types.h>
28 : : #include <key.h>
29 : : #include <key_io.h>
30 : : #include <node/types.h>
31 : : #include <outputtype.h>
32 : : #include <policy/feerate.h>
33 : : #include <policy/truc_policy.h>
34 : : #include <primitives/block.h>
35 : : #include <primitives/transaction.h>
36 : : #include <psbt.h>
37 : : #include <pubkey.h>
38 : : #include <random.h>
39 : : #include <script/descriptor.h>
40 : : #include <script/interpreter.h>
41 : : #include <script/script.h>
42 : : #include <script/sign.h>
43 : : #include <script/signingprovider.h>
44 : : #include <script/solver.h>
45 : : #include <serialize.h>
46 : : #include <span.h>
47 : : #include <streams.h>
48 : : #include <support/allocators/secure.h>
49 : : #include <support/allocators/zeroafterfree.h>
50 : : #include <support/cleanse.h>
51 : : #include <sync.h>
52 : : #include <tinyformat.h>
53 : : #include <uint256.h>
54 : : #include <univalue.h>
55 : : #include <util/check.h>
56 : : #include <util/expected.h>
57 : : #include <util/fs.h>
58 : : #include <util/fs_helpers.h>
59 : : #include <util/log.h>
60 : : #include <util/moneystr.h>
61 : : #include <util/result.h>
62 : : #include <util/string.h>
63 : : #include <util/time.h>
64 : : #include <util/translation.h>
65 : : #include <wallet/coincontrol.h>
66 : : #include <wallet/context.h>
67 : : #include <wallet/crypter.h>
68 : : #include <wallet/db.h>
69 : : #include <wallet/external_signer_scriptpubkeyman.h>
70 : : #include <wallet/scan.h>
71 : : #include <wallet/scriptpubkeyman.h>
72 : : #include <wallet/transaction.h>
73 : : #include <wallet/types.h>
74 : : #include <wallet/walletdb.h>
75 : : #include <wallet/walletutil.h>
76 : :
77 : : #include <algorithm>
78 : : #include <cassert>
79 : : #include <condition_variable>
80 : : #include <exception>
81 : : #include <limits>
82 : : #include <optional>
83 : : #include <stdexcept>
84 : : #include <thread>
85 : : #include <tuple>
86 : : #include <utility>
87 : : #include <variant>
88 : :
89 : : struct KeyOriginInfo;
90 : :
91 : : using common::AmountErrMsg;
92 : : using common::AmountHighWarn;
93 : : using common::PSBTError;
94 : : using interfaces::FoundBlock;
95 : : using kernel::ChainstateRole;
96 : : using util::ReplaceAll;
97 : : using util::ToString;
98 : :
99 : : namespace wallet {
100 : :
101 : 0 : bool AddWalletSetting(interfaces::Chain& chain, const std::string& wallet_name)
102 : : {
103 : 0 : const auto update_function = [&wallet_name](common::SettingsValue& setting_value) {
104 [ # # ]: 0 : if (!setting_value.isArray()) setting_value.setArray();
105 [ # # ]: 0 : for (const auto& value : setting_value.getValues()) {
106 [ # # # # ]: 0 : if (value.isStr() && value.get_str() == wallet_name) return interfaces::SettingsAction::SKIP_WRITE;
107 : : }
108 [ # # ]: 0 : setting_value.push_back(wallet_name);
109 : 0 : return interfaces::SettingsAction::WRITE;
110 : 0 : };
111 [ # # # # ]: 0 : return chain.updateRwSetting("wallet", update_function);
112 : : }
113 : :
114 : 0 : bool RemoveWalletSetting(interfaces::Chain& chain, const std::string& wallet_name)
115 : : {
116 : 0 : const auto update_function = [&wallet_name](common::SettingsValue& setting_value) {
117 [ # # ]: 0 : if (!setting_value.isArray()) {
118 [ # # # # ]: 0 : if (wallet_name.empty() && setting_value.isNull()) {
119 : : // Empty setting suppresses backwards-compatible default wallet autoload.
120 : 0 : setting_value.setArray();
121 : 0 : return interfaces::SettingsAction::WRITE;
122 : : }
123 : : return interfaces::SettingsAction::SKIP_WRITE;
124 : : }
125 : 0 : common::SettingsValue new_value(common::SettingsValue::VARR);
126 [ # # # # ]: 0 : for (const auto& value : setting_value.getValues()) {
127 [ # # # # : 0 : if (!value.isStr() || value.get_str() != wallet_name) new_value.push_back(value);
# # # # #
# ]
128 : : }
129 [ # # # # : 0 : if (new_value.size() == setting_value.size()) return interfaces::SettingsAction::SKIP_WRITE;
# # ]
130 : 0 : setting_value = std::move(new_value);
131 : 0 : return interfaces::SettingsAction::WRITE;
132 : 0 : };
133 [ # # # # ]: 0 : return chain.updateRwSetting("wallet", update_function);
134 : : }
135 : :
136 : 0 : static void UpdateWalletSetting(interfaces::Chain& chain,
137 : : const std::string& wallet_name,
138 : : std::optional<bool> load_on_startup,
139 : : std::vector<bilingual_str>& warnings)
140 : : {
141 [ # # ]: 0 : if (!load_on_startup) return;
142 [ # # # # ]: 0 : if (load_on_startup.value() && !AddWalletSetting(chain, wallet_name)) {
143 [ # # # # ]: 0 : warnings.emplace_back(Untranslated("Wallet load on startup setting could not be updated, so wallet may not be loaded next node startup."));
144 [ # # # # ]: 0 : } else if (!load_on_startup.value() && !RemoveWalletSetting(chain, wallet_name)) {
145 [ # # # # ]: 0 : warnings.emplace_back(Untranslated("Wallet load on startup setting could not be updated, so wallet may still be loaded next node startup."));
146 : : }
147 : : }
148 : :
149 : : /**
150 : : * Refresh mempool status so the wallet is in an internally consistent state and
151 : : * immediately knows the transaction's status: Whether it can be considered
152 : : * trusted and is eligible to be abandoned ...
153 : : */
154 : 0 : static void RefreshMempoolStatus(CWalletTx& tx, interfaces::Chain& chain)
155 : : {
156 [ # # ]: 0 : if (chain.isInMempool(tx.GetHash())) {
157 [ # # ]: 0 : tx.m_state = TxStateInMempool();
158 [ # # ]: 0 : } else if (tx.state<TxStateInMempool>()) {
159 [ # # ]: 0 : tx.m_state = TxStateInactive();
160 : : }
161 : 0 : }
162 : :
163 : 0 : bool AddWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet)
164 : : {
165 : 0 : LOCK(context.wallets_mutex);
166 [ # # ]: 0 : assert(wallet);
167 [ # # ]: 0 : std::vector<std::shared_ptr<CWallet>>::const_iterator i = std::find(context.wallets.begin(), context.wallets.end(), wallet);
168 [ # # ]: 0 : if (i != context.wallets.end()) return false;
169 [ # # ]: 0 : context.wallets.push_back(wallet);
170 [ # # ]: 0 : wallet->ConnectScriptPubKeyManNotifiers();
171 [ # # ]: 0 : wallet->NotifyCanGetAddressesChanged();
172 : : return true;
173 : 0 : }
174 : :
175 : 0 : bool RemoveWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet, std::optional<bool> load_on_start, std::vector<bilingual_str>& warnings)
176 : : {
177 [ # # ]: 0 : assert(wallet);
178 : :
179 : 0 : interfaces::Chain& chain = wallet->chain();
180 [ # # ]: 0 : std::string name = wallet->GetName();
181 [ # # # # ]: 0 : WITH_LOCK(wallet->cs_wallet, wallet->WriteBestBlock());
182 : :
183 : : // Unregister with the validation interface which also drops shared pointers.
184 [ # # ]: 0 : wallet->DisconnectChainNotifications();
185 : 0 : {
186 [ # # ]: 0 : LOCK(context.wallets_mutex);
187 : 0 : std::vector<std::shared_ptr<CWallet>>::iterator i = std::find(context.wallets.begin(), context.wallets.end(), wallet);
188 [ # # # # ]: 0 : if (i == context.wallets.end()) return false;
189 [ # # ]: 0 : context.wallets.erase(i);
190 : 0 : }
191 : : // Notify unload so that upper layers release the shared pointer.
192 [ # # ]: 0 : wallet->NotifyUnload();
193 : :
194 : : // Write the wallet setting
195 [ # # ]: 0 : UpdateWalletSetting(chain, name, load_on_start, warnings);
196 : :
197 : : return true;
198 : 0 : }
199 : :
200 : 0 : bool RemoveWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet, std::optional<bool> load_on_start)
201 : : {
202 : 0 : std::vector<bilingual_str> warnings;
203 [ # # ]: 0 : return RemoveWallet(context, wallet, load_on_start, warnings);
204 : 0 : }
205 : :
206 : 0 : std::vector<std::shared_ptr<CWallet>> GetWallets(WalletContext& context)
207 : : {
208 : 0 : LOCK(context.wallets_mutex);
209 [ # # ]: 0 : return context.wallets;
210 : 0 : }
211 : :
212 : 0 : std::shared_ptr<CWallet> GetDefaultWallet(WalletContext& context, size_t& count)
213 : : {
214 : 0 : LOCK(context.wallets_mutex);
215 [ # # ]: 0 : count = context.wallets.size();
216 [ # # # # : 0 : return count == 1 ? context.wallets[0] : nullptr;
# # ]
217 : 0 : }
218 : :
219 : 0 : std::shared_ptr<CWallet> GetWallet(WalletContext& context, const std::string& name)
220 : : {
221 : 0 : LOCK(context.wallets_mutex);
222 [ # # ]: 0 : for (const std::shared_ptr<CWallet>& wallet : context.wallets) {
223 [ # # # # : 0 : if (wallet->GetName() == name) return wallet;
# # ]
224 : : }
225 : 0 : return nullptr;
226 : 0 : }
227 : :
228 : 0 : std::unique_ptr<interfaces::Handler> HandleLoadWallet(WalletContext& context, LoadWalletFn load_wallet)
229 : : {
230 : 0 : LOCK(context.wallets_mutex);
231 [ # # ]: 0 : auto it = context.wallet_load_fns.emplace(context.wallet_load_fns.end(), std::move(load_wallet));
232 [ # # # # : 0 : return interfaces::MakeCleanupHandler([&context, it] { LOCK(context.wallets_mutex); context.wallet_load_fns.erase(it); });
# # ]
233 : 0 : }
234 : :
235 : 0 : void NotifyWalletLoaded(WalletContext& context, const std::shared_ptr<CWallet>& wallet)
236 : : {
237 : 0 : LOCK(context.wallets_mutex);
238 [ # # ]: 0 : for (auto& load_wallet : context.wallet_load_fns) {
239 [ # # # # ]: 0 : load_wallet(interfaces::MakeWallet(context, wallet));
240 : : }
241 : 0 : }
242 : :
243 : : static GlobalMutex g_loading_wallet_mutex;
244 : : static GlobalMutex g_wallet_release_mutex;
245 : : static std::condition_variable g_wallet_release_cv;
246 : : static std::set<std::string> g_loading_wallet_set GUARDED_BY(g_loading_wallet_mutex);
247 : : static std::set<std::string> g_unloading_wallet_set GUARDED_BY(g_wallet_release_mutex);
248 : :
249 : : // Custom deleter for shared_ptr<CWallet>.
250 : 0 : static void FlushAndDeleteWallet(CWallet* wallet)
251 : : {
252 [ # # ]: 0 : const std::string name = wallet->GetName();
253 [ # # ]: 0 : wallet->WalletLogPrintf("Releasing wallet %s..\n", name);
254 : 0 : delete wallet;
255 : : // Wallet is now released, notify WaitForDeleteWallet, if any.
256 : 0 : {
257 [ # # ]: 0 : LOCK(g_wallet_release_mutex);
258 [ # # ]: 0 : if (g_unloading_wallet_set.erase(name) == 0) {
259 : : // WaitForDeleteWallet was not called for this wallet, all done.
260 [ # # ]: 0 : return;
261 : : }
262 : 0 : }
263 : 0 : g_wallet_release_cv.notify_all();
264 : 0 : }
265 : :
266 : 0 : void WaitForDeleteWallet(std::shared_ptr<CWallet>&& wallet)
267 : : {
268 : : // Mark wallet for unloading.
269 [ # # ]: 0 : const std::string name = wallet->GetName();
270 : 0 : {
271 [ # # ]: 0 : LOCK(g_wallet_release_mutex);
272 [ # # ]: 0 : g_unloading_wallet_set.insert(name);
273 : : // Do not expect to be the only one removing this wallet.
274 : : // Multiple threads could simultaneously be waiting for deletion.
275 : 0 : }
276 : :
277 : : // Time to ditch our shared_ptr and wait for FlushAndDeleteWallet call.
278 : 0 : wallet.reset();
279 : 0 : {
280 [ # # ]: 0 : WAIT_LOCK(g_wallet_release_mutex, lock);
281 [ # # ]: 0 : while (g_unloading_wallet_set.contains(name)) {
282 [ # # ]: 0 : g_wallet_release_cv.wait(lock);
283 : : }
284 : 0 : }
285 : 0 : }
286 : :
287 : : namespace {
288 : 0 : std::shared_ptr<CWallet> LoadWalletInternal(WalletContext& context, const std::string& name, std::optional<bool> load_on_start, const DatabaseOptions& options, DatabaseStatus& status, bilingual_str& error, std::vector<bilingual_str>& warnings)
289 : : {
290 : 0 : try {
291 [ # # ]: 0 : std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(name, options, status, error);
292 [ # # ]: 0 : if (!database) {
293 [ # # # # : 0 : error = Untranslated("Wallet file verification failed.") + Untranslated(" ") + error;
# # # # #
# ]
294 : 0 : return nullptr;
295 : : }
296 : :
297 [ # # # # ]: 0 : context.chain->initMessage(_("Loading wallet…"));
298 [ # # ]: 0 : std::shared_ptr<CWallet> wallet = CWallet::LoadExisting(context, name, std::move(database), error, warnings);
299 [ # # ]: 0 : if (!wallet) {
300 [ # # # # : 0 : error = Untranslated("Wallet loading failed.") + Untranslated(" ") + error;
# # # # #
# ]
301 : 0 : status = DatabaseStatus::FAILED_LOAD;
302 : 0 : return nullptr;
303 : : }
304 : :
305 [ # # ]: 0 : NotifyWalletLoaded(context, wallet);
306 [ # # ]: 0 : AddWallet(context, wallet);
307 [ # # ]: 0 : wallet->postInitProcess();
308 : :
309 : : // Write the wallet setting
310 [ # # ]: 0 : UpdateWalletSetting(*context.chain, name, load_on_start, warnings);
311 : :
312 : 0 : return wallet;
313 [ # # ]: 0 : } catch (const std::runtime_error& e) {
314 [ - - - - ]: 0 : error = Untranslated(e.what());
315 : 0 : status = DatabaseStatus::FAILED_LOAD;
316 : 0 : return nullptr;
317 : 0 : }
318 : : }
319 : : } // namespace
320 : :
321 : 0 : std::shared_ptr<CWallet> LoadWallet(WalletContext& context, const std::string& name, std::optional<bool> load_on_start, const DatabaseOptions& options, DatabaseStatus& status, bilingual_str& error, std::vector<bilingual_str>& warnings)
322 : : {
323 [ # # ]: 0 : auto result = WITH_LOCK(g_loading_wallet_mutex, return g_loading_wallet_set.insert(name));
324 [ # # ]: 0 : if (!result.second) {
325 [ # # ]: 0 : error = Untranslated("Wallet already loading.");
326 : 0 : status = DatabaseStatus::FAILED_LOAD;
327 : 0 : return nullptr;
328 : : }
329 : 0 : auto wallet = LoadWalletInternal(context, name, load_on_start, options, status, error, warnings);
330 [ # # # # ]: 0 : WITH_LOCK(g_loading_wallet_mutex, g_loading_wallet_set.erase(result.first));
331 [ # # ]: 0 : return wallet;
332 : 0 : }
333 : :
334 : 0 : std::shared_ptr<CWallet> CreateWallet(WalletContext& context, const std::string& name, std::optional<bool> load_on_start, DatabaseOptions& options, DatabaseStatus& status, bilingual_str& error, std::vector<bilingual_str>& warnings)
335 : : {
336 : : // Wallet must have a non-empty name
337 [ # # ]: 0 : if (name.empty()) {
338 [ # # ]: 0 : error = Untranslated("Wallet name cannot be empty");
339 : 0 : status = DatabaseStatus::FAILED_NEW_UNNAMED;
340 : 0 : return nullptr;
341 : : }
342 : :
343 : 0 : uint64_t wallet_creation_flags = options.create_flags;
344 : 0 : const SecureString& passphrase = options.create_passphrase;
345 [ # # ]: 0 : bool born_encrypted = !passphrase.empty();
346 : :
347 : : // Only descriptor wallets can be created
348 [ # # ]: 0 : Assert(wallet_creation_flags & WALLET_FLAG_DESCRIPTORS);
349 : 0 : options.require_format = DatabaseFormat::SQLITE;
350 : :
351 : :
352 : : // Private keys must be disabled for an external signer wallet
353 [ # # # # ]: 0 : if ((wallet_creation_flags & WALLET_FLAG_EXTERNAL_SIGNER) && !(wallet_creation_flags & WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
354 [ # # ]: 0 : error = Untranslated("Private keys must be disabled when using an external signer");
355 : 0 : status = DatabaseStatus::FAILED_CREATE;
356 : 0 : return nullptr;
357 : : }
358 : :
359 : : // Do not allow a passphrase when private keys are disabled
360 [ # # # # ]: 0 : if (born_encrypted && (wallet_creation_flags & WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
361 [ # # ]: 0 : error = Untranslated("Passphrase provided but private keys are disabled. A passphrase is only used to encrypt private keys, so cannot be used for wallets with private keys disabled.");
362 : 0 : status = DatabaseStatus::FAILED_CREATE;
363 : 0 : return nullptr;
364 : : }
365 : :
366 : : // Wallet::Verify will check if we're trying to create a wallet with a duplicate name.
367 : 0 : std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(name, options, status, error);
368 [ # # ]: 0 : if (!database) {
369 [ # # # # : 0 : error = Untranslated("Wallet file verification failed.") + Untranslated(" ") + error;
# # # # #
# ]
370 : 0 : status = DatabaseStatus::FAILED_VERIFY;
371 : 0 : return nullptr;
372 : : }
373 : :
374 : : // Make the wallet
375 [ # # # # ]: 0 : context.chain->initMessage(_("Creating wallet…"));
376 [ # # ]: 0 : std::shared_ptr<CWallet> wallet = CWallet::CreateNew(context, name, std::move(database), wallet_creation_flags, born_encrypted, error, warnings);
377 [ # # ]: 0 : if (!wallet) {
378 [ # # # # : 0 : error = Untranslated("Wallet creation failed.") + Untranslated(" ") + error;
# # # # #
# ]
379 : 0 : status = DatabaseStatus::FAILED_CREATE;
380 : 0 : return nullptr;
381 : : }
382 : :
383 : : // Encrypt the wallet
384 [ # # ]: 0 : if (born_encrypted) {
385 [ # # # # ]: 0 : if (!wallet->EncryptWallet(passphrase)) {
386 [ # # # # ]: 0 : error = Untranslated("Error: Wallet created but failed to encrypt.");
387 : 0 : status = DatabaseStatus::FAILED_ENCRYPT;
388 : 0 : return nullptr;
389 : : }
390 : : }
391 : :
392 [ # # # # ]: 0 : WITH_LOCK(wallet->cs_wallet, wallet->LogStats());
393 [ # # ]: 0 : NotifyWalletLoaded(context, wallet);
394 [ # # ]: 0 : AddWallet(context, wallet);
395 [ # # ]: 0 : wallet->postInitProcess();
396 : :
397 : : // Write the wallet settings
398 [ # # ]: 0 : UpdateWalletSetting(*context.chain, name, load_on_start, warnings);
399 : :
400 : 0 : status = DatabaseStatus::SUCCESS;
401 : 0 : return wallet;
402 : 0 : }
403 : :
404 : : // Re-creates wallet from the backup file by renaming and moving it into the wallet's directory.
405 : : // If 'load_after_restore=true', the wallet object will be fully initialized and appended to the context.
406 : 0 : std::shared_ptr<CWallet> RestoreWallet(WalletContext& context, const fs::path& backup_file, const std::string& wallet_name, std::optional<bool> load_on_start, DatabaseStatus& status, bilingual_str& error, std::vector<bilingual_str>& warnings, bool load_after_restore, bool allow_unnamed)
407 : : {
408 : : // Error if the wallet name is empty and allow_unnamed == false
409 : : // allow_unnamed == true is only used by migration to migrate an unnamed wallet
410 [ # # # # ]: 0 : if (!allow_unnamed && wallet_name.empty()) {
411 [ # # ]: 0 : error = Untranslated("Wallet name cannot be empty");
412 : 0 : status = DatabaseStatus::FAILED_NEW_UNNAMED;
413 : 0 : return nullptr;
414 : : }
415 : :
416 [ # # ]: 0 : DatabaseOptions options;
417 [ # # ]: 0 : ReadDatabaseArgs(*context.args, options);
418 : 0 : options.require_existing = true;
419 : :
420 [ # # # # : 0 : const fs::path wallet_path = fsbridge::AbsPathJoin(GetWalletDir(), fs::u8path(wallet_name));
# # # # ]
421 [ # # # # ]: 0 : auto wallet_file = wallet_path / "wallet.dat";
422 : 0 : std::shared_ptr<CWallet> wallet;
423 : 0 : bool wallet_file_copied = false;
424 : 0 : bool created_parent_dir = false;
425 : :
426 : 0 : try {
427 [ # # # # ]: 0 : if (!fs::exists(backup_file)) {
428 [ # # # # ]: 0 : error = Untranslated("Backup file does not exist");
429 : 0 : status = DatabaseStatus::FAILED_INVALID_BACKUP_FILE;
430 : 0 : return nullptr;
431 : : }
432 : :
433 : : // Wallet directories are allowed to exist, but must not contain a .dat file.
434 : : // Any existing wallet database is treated as a hard failure to prevent overwriting.
435 [ # # # # ]: 0 : if (fs::exists(wallet_path)) {
436 : : // If this is a file, it is the db and we don't want to overwrite it.
437 [ # # # # ]: 0 : if (!fs::is_directory(wallet_path)) {
438 [ # # # # : 0 : error = Untranslated(strprintf("Failed to restore wallet. Database file exists '%s'.", fs::PathToString(wallet_path)));
# # ]
439 : 0 : status = DatabaseStatus::FAILED_ALREADY_EXISTS;
440 : 0 : return nullptr;
441 : : }
442 : :
443 : : // Check we are not going to overwrite an existing db file
444 [ # # # # ]: 0 : if (fs::exists(wallet_file)) {
445 [ # # # # : 0 : error = Untranslated(strprintf("Failed to restore wallet. Database file exists in '%s'.", fs::PathToString(wallet_file)));
# # ]
446 : 0 : status = DatabaseStatus::FAILED_ALREADY_EXISTS;
447 : 0 : return nullptr;
448 : : }
449 : : } else {
450 : : // The directory doesn't exist, create it
451 [ # # # # ]: 0 : if (!TryCreateDirectories(wallet_path)) {
452 [ # # # # : 0 : error = Untranslated(strprintf("Failed to restore database path '%s'.", fs::PathToString(wallet_path)));
# # ]
453 : 0 : status = DatabaseStatus::FAILED_ALREADY_EXISTS;
454 : 0 : return nullptr;
455 : : }
456 : : created_parent_dir = true;
457 : : }
458 : :
459 [ # # ]: 0 : fs::copy_file(backup_file, wallet_file, fs::copy_options::none);
460 : 0 : wallet_file_copied = true;
461 : :
462 [ # # ]: 0 : if (load_after_restore) {
463 [ # # # # ]: 0 : wallet = LoadWallet(context, wallet_name, load_on_start, options, status, error, warnings);
464 : : }
465 [ - - ]: 0 : } catch (const std::exception& e) {
466 [ - - ]: 0 : assert(!wallet);
467 [ - - - - : 0 : if (!error.empty()) error += Untranslated("\n");
- - - - ]
468 [ - - - - : 0 : error += Untranslated(strprintf("Unexpected exception: %s", e.what()));
- - ]
469 : 0 : }
470 : :
471 : : // Remove created wallet path only when loading fails
472 [ # # # # ]: 0 : if (load_after_restore && !wallet) {
473 [ # # # # ]: 0 : if (wallet_file_copied) fs::remove(wallet_file);
474 : : // Clean up the parent directory if we created it during restoration.
475 : : // As we have created it, it must be empty after deleting the wallet file.
476 [ # # ]: 0 : if (created_parent_dir) {
477 [ # # # # ]: 0 : Assume(fs::is_empty(wallet_path));
478 [ # # ]: 0 : fs::remove(wallet_path);
479 : : }
480 : : }
481 : :
482 : 0 : return wallet;
483 : 0 : }
484 : :
485 : 9683 : CWallet::CWallet(interfaces::Chain* chain, const std::string& name, std::unique_ptr<WalletDatabase> database)
486 : 9683 : : m_chain(chain),
487 : 19366 : m_name(name),
488 [ + - ]: 9683 : m_database(std::move(database)),
489 : 19366 : m_scanner(std::make_unique<ChainScanner>(*this))
[ + - + -
- + + - +
- + - +
- ]
490 : : {
491 : 9683 : }
492 : :
493 : 17948 : CWallet::~CWallet()
494 : : {
495 : : // Should not have slots connected at this point.
496 [ - + ]: 9683 : assert(NotifyUnload.empty());
497 : 17948 : }
498 : :
499 : 0 : ChainScanner& CWallet::Scanner() { return *m_scanner; }
500 : 0 : const ChainScanner& CWallet::Scanner() const { return *m_scanner; }
501 : :
502 : : /** @defgroup mapWallet
503 : : *
504 : : * @{
505 : : */
506 : :
507 : 0 : const CWalletTx* CWallet::GetWalletTx(const Txid& hash) const
508 : : {
509 : 0 : AssertLockHeld(cs_wallet);
510 : 0 : const auto it = mapWallet.find(hash);
511 [ # # ]: 0 : if (it == mapWallet.end())
512 : : return nullptr;
513 : 0 : return &(it->second);
514 : : }
515 : :
516 : 0 : void CWallet::UpgradeDescriptorCache()
517 : : {
518 [ # # # # : 0 : if (!IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS) || IsLocked() || IsWalletFlagSet(WALLET_FLAG_LAST_HARDENED_XPUB_CACHED)) {
# # ]
519 : 0 : return;
520 : : }
521 : :
522 [ # # ]: 0 : for (ScriptPubKeyMan* spkm : GetAllScriptPubKeyMans()) {
523 [ # # ]: 0 : DescriptorScriptPubKeyMan* desc_spkm = dynamic_cast<DescriptorScriptPubKeyMan*>(spkm);
524 [ # # ]: 0 : desc_spkm->UpgradeDescriptorCache();
525 : : }
526 : 0 : SetWalletFlag(WALLET_FLAG_LAST_HARDENED_XPUB_CACHED);
527 : : }
528 : :
529 : : /* Given a wallet passphrase string and an unencrypted master key, determine the proper key
530 : : * derivation parameters (should take at least 100ms) and encrypt the master key. */
531 : 0 : static bool EncryptMasterKey(const SecureString& wallet_passphrase, const CKeyingMaterial& plain_master_key, CMasterKey& master_key)
532 : : {
533 : 0 : constexpr MillisecondsDouble target_time{100};
534 : 0 : CCrypter crypter;
535 [ # # ]: 0 : CMasterKey updated_master_key{master_key};
536 : :
537 : : // Get the weighted average of iterations we can do in 100ms over 2 runs.
538 [ # # ]: 0 : for (int i = 0; i < 2; i++){
539 : 0 : auto start_time{NodeClock::now()};
540 [ # # # # ]: 0 : const bool key_set{crypter.SetKeyFromPassphrase(wallet_passphrase, updated_master_key.vchSalt, updated_master_key.nDeriveIterations, updated_master_key.nDerivationMethod)};
541 : 0 : auto elapsed_time{NodeClock::now() - start_time};
542 [ # # ]: 0 : if (!key_set) {
543 : : return false;
544 : : }
545 : :
546 [ # # ]: 0 : if (elapsed_time <= 0s) {
547 : : // We are probably in a test with a mocked clock.
548 : 0 : updated_master_key.nDeriveIterations = CMasterKey::DEFAULT_DERIVE_ITERATIONS;
549 : 0 : break;
550 : : }
551 : :
552 : : // target_iterations : elapsed_iterations :: target_time : elapsed_time
553 : 0 : const double target_iterations{updated_master_key.nDeriveIterations * target_time / elapsed_time};
554 [ # # # # ]: 0 : if (target_iterations < 1 || target_iterations > std::numeric_limits<unsigned int>::max()) {
555 : : return false;
556 : : }
557 : : // Get the weighted average with previous runs. Use 64-bit math so the
558 : : // sum cannot wrap; the average of two unsigned int values fits in one.
559 : 0 : updated_master_key.nDeriveIterations = (uint64_t{updated_master_key.nDeriveIterations} * i + static_cast<unsigned int>(target_iterations)) / (i + 1);
560 : : }
561 : :
562 [ # # ]: 0 : if (updated_master_key.nDeriveIterations < CMasterKey::DEFAULT_DERIVE_ITERATIONS) {
563 : 0 : updated_master_key.nDeriveIterations = CMasterKey::DEFAULT_DERIVE_ITERATIONS;
564 : : }
565 : :
566 [ # # # # : 0 : if (!crypter.SetKeyFromPassphrase(wallet_passphrase, updated_master_key.vchSalt, updated_master_key.nDeriveIterations, updated_master_key.nDerivationMethod)) {
# # ]
567 : : return false;
568 : : }
569 [ # # # # ]: 0 : if (!crypter.Encrypt(plain_master_key, updated_master_key.vchCryptedKey)) {
570 : : return false;
571 : : }
572 : :
573 : 0 : master_key = std::move(updated_master_key);
574 : 0 : return true;
575 : 0 : }
576 : :
577 : 0 : static bool DecryptMasterKey(const SecureString& wallet_passphrase, const CMasterKey& master_key, CKeyingMaterial& plain_master_key)
578 : : {
579 : 0 : CCrypter crypter;
580 [ # # # # : 0 : if (!crypter.SetKeyFromPassphrase(wallet_passphrase, master_key.vchSalt, master_key.nDeriveIterations, master_key.nDerivationMethod)) {
# # ]
581 : : return false;
582 : : }
583 [ # # # # : 0 : if (!crypter.Decrypt(master_key.vchCryptedKey, plain_master_key)) {
# # ]
584 : 0 : return false;
585 : : }
586 : :
587 : : return true;
588 : 0 : }
589 : :
590 : 0 : static util::Unexpected<WalletError> UnlockPassphraseError(const SecureString& passphrase)
591 : : {
592 [ # # ]: 0 : bilingual_str message;
593 : : if (passphrase.find('\0') != std::string::npos) {
594 : : // The passphrase has a null character (see #27067 for details)
595 [ # # ]: 0 : message = _("Error: The wallet passphrase entered is incorrect. "
596 : : "It contains a null character (ie - a zero byte). "
597 : : "If the passphrase was set with a version of this software prior to 25.0, "
598 : : "please try again with only the characters up to — but not including — "
599 : : "the first null character. If this is successful, please set a new "
600 : 0 : "passphrase to avoid this issue in the future.");
601 [ # # ]: 0 : } else if (passphrase.empty()) {
602 [ # # ]: 0 : message = _("Error: The wallet passphrase was not provided");
603 : : } else {
604 [ # # ]: 0 : message = _("Error: The wallet passphrase entered was incorrect.");
605 : : }
606 : 0 : return util::Unexpected{WalletError{WalletErrorCode::PassphraseIncorrect, std::move(message)}};
607 : 0 : }
608 : :
609 : 0 : util::Expected<void, WalletError> CWallet::Unlock(const SecureString& strWalletPassphrase)
610 : : {
611 : 0 : CKeyingMaterial plain_master_key;
612 : :
613 : 0 : {
614 [ # # ]: 0 : LOCK(cs_wallet);
615 [ # # # # ]: 0 : for (const auto& [_, master_key] : mapMasterKeys)
616 : : {
617 [ # # # # ]: 0 : if (!DecryptMasterKey(strWalletPassphrase, master_key, plain_master_key)) {
618 : 0 : continue; // try another master key
619 : : }
620 [ # # # # ]: 0 : if (Unlock(plain_master_key)) {
621 : : // Now that we've unlocked, upgrade the descriptor cache
622 [ # # ]: 0 : UpgradeDescriptorCache();
623 [ # # ]: 0 : return {};
624 : : }
625 : : }
626 : 0 : }
627 [ # # ]: 0 : return UnlockPassphraseError(strWalletPassphrase);
628 : 0 : }
629 : :
630 : 0 : util::Expected<void, WalletError> CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase)
631 : : {
632 : 0 : bool fWasLocked = IsLocked();
633 : :
634 : 0 : {
635 [ # # ]: 0 : LOCK2(m_relock_mutex, cs_wallet);
636 [ # # ]: 0 : Lock();
637 : :
638 : 0 : CKeyingMaterial plain_master_key;
639 [ # # # # ]: 0 : for (auto& [master_key_id, master_key] : mapMasterKeys)
640 : : {
641 [ # # # # ]: 0 : if (!DecryptMasterKey(strOldWalletPassphrase, master_key, plain_master_key)) {
642 [ # # ]: 0 : return UnlockPassphraseError(strOldWalletPassphrase);
643 : : }
644 [ # # # # ]: 0 : if (Unlock(plain_master_key))
645 : : {
646 [ # # # # ]: 0 : if (fWasLocked) Lock();
647 [ # # ]: 0 : CMasterKey new_master_key{master_key};
648 [ # # # # ]: 0 : if (!EncryptMasterKey(strNewWalletPassphrase, plain_master_key, new_master_key)) {
649 [ # # ]: 0 : return util::Unexpected{WalletError{WalletErrorCode::GenericError, _("Error: Unable to encrypt encryption key with new passphrase")}};
650 : : }
651 [ # # # # : 0 : if (!WalletBatch(GetDatabase()).WriteMasterKey(master_key_id, new_master_key)) {
# # ]
652 [ # # ]: 0 : return util::Unexpected{WalletError{WalletErrorCode::GenericError, _("Error: Writing the new encryption key to the wallet database failed")}};
653 : : }
654 [ # # ]: 0 : WalletLogPrintf("Wallet passphrase changed to an nDeriveIterations of %i\n", new_master_key.nDeriveIterations);
655 : 0 : master_key = std::move(new_master_key);
656 : 0 : return {};
657 : 0 : }
658 : : }
659 [ # # # # : 0 : }
# # # # ]
660 : :
661 : 0 : return UnlockPassphraseError(strOldWalletPassphrase);
662 : : }
663 : :
664 : 9683 : void CWallet::SetLastBlockProcessedInMem(int block_height, uint256 block_hash)
665 : : {
666 : 9683 : AssertLockHeld(cs_wallet);
667 : :
668 : 9683 : m_last_block_processed = block_hash;
669 : 9683 : m_last_block_processed_height = block_height;
670 : 9683 : }
671 : :
672 : 9683 : void CWallet::SetLastBlockProcessed(int block_height, uint256 block_hash)
673 : : {
674 : 9683 : AssertLockHeld(cs_wallet);
675 : :
676 : 9683 : SetLastBlockProcessedInMem(block_height, block_hash);
677 : 9683 : WriteBestBlock();
678 : 9683 : }
679 : :
680 : 0 : std::set<Txid> CWallet::GetConflicts(const Txid& txid) const
681 : : {
682 : 0 : std::set<Txid> result;
683 : 0 : AssertLockHeld(cs_wallet);
684 : :
685 : 0 : const auto it = mapWallet.find(txid);
686 [ # # ]: 0 : if (it == mapWallet.end())
687 : : return result;
688 [ # # ]: 0 : const CWalletTx& wtx = it->second;
689 : :
690 [ # # ]: 0 : std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
691 : :
692 [ # # # # : 0 : for (const CTxIn& txin : wtx.GetTx()->vin)
# # ]
693 : : {
694 [ # # ]: 0 : if (mapTxSpends.count(txin.prevout) <= 1)
695 : 0 : continue; // No conflict if zero or one spends
696 : 0 : range = mapTxSpends.equal_range(txin.prevout);
697 [ # # ]: 0 : for (TxSpends::const_iterator _it = range.first; _it != range.second; ++_it)
698 [ # # ]: 0 : result.insert(_it->second);
699 : : }
700 : : return result;
701 : 0 : }
702 : :
703 : 0 : bool CWallet::HasWalletSpend(const CTransactionRef& tx) const
704 : : {
705 : 0 : AssertLockHeld(cs_wallet);
706 : 0 : const Txid& txid = tx->GetHash();
707 [ # # # # ]: 0 : for (unsigned int i = 0; i < tx->vout.size(); ++i) {
708 [ # # ]: 0 : if (IsSpent(COutPoint(txid, i))) {
709 : : return true;
710 : : }
711 : : }
712 : : return false;
713 : : }
714 : :
715 : 0 : void CWallet::Close()
716 : : {
717 : 0 : GetDatabase().Close();
718 : 0 : }
719 : :
720 : 0 : std::set<CWalletTx*, WalletTxOrderComparator> CWallet::GetMalleatedVariants(const CWalletTx& wtx)
721 : : {
722 : 0 : AssertLockHeld(cs_wallet);
723 [ # # ]: 0 : std::set<CWalletTx*, WalletTxOrderComparator> txs;
724 : :
725 : : // Coinbases cannot be malleated
726 [ # # # # ]: 0 : if (wtx.IsCoinBase()) return txs;
727 : :
728 : : // Only transactions that have non-witness inputs can be malleated
729 [ # # # # : 0 : if (std::ranges::none_of(wtx.GetTx()->vin, [](const CTxIn& in) { return in.scriptWitness.IsNull(); })) {
# # # # ]
730 : : return txs;
731 : : }
732 : :
733 : : // All variants spend wtx's first input, so a single lookup finds every candidate
734 : 0 : bool found_self = false;
735 [ # # # # ]: 0 : const auto [begin, end] = mapTxSpends.equal_range(wtx.GetTx()->vin.front().prevout);
736 [ # # ]: 0 : for (auto it = begin; it != end; ++it) {
737 : 0 : auto entry = mapWallet.find(it->second);
738 [ # # # # ]: 0 : if (!Assume(entry != mapWallet.end())) continue; // sanity-check: mapTxSpends has txs that are in mapWallet
739 [ # # ]: 0 : const bool is_self = &entry->second == &wtx;
740 : 0 : found_self |= is_self;
741 [ # # # # : 0 : if (is_self || wtx.IsMalleation(entry->second)) {
# # ]
742 [ # # ]: 0 : Assume(txs.insert(&entry->second).second);
743 : : }
744 : : }
745 : : // wtx should always be found as this function is always called after AddToSpends
746 [ # # ]: 0 : Assert(found_self);
747 : : return txs;
748 : 0 : }
749 : :
750 : 0 : void CWallet::SyncMalleatedTxMetadata(WalletBatch& batch, const CWalletTx& wtx)
751 : : {
752 : 0 : const auto txs = GetMalleatedVariants(wtx);
753 [ # # ]: 0 : if (txs.size() <= 1) return; // no variants, nothing to do
754 : :
755 : : // First tx is the oldest one (smallest nOrderPos)
756 : 0 : const CWalletTx* copyFrom = *txs.begin();
757 : :
758 : : // The metadata that is kept in sync between malleated variants.
759 : : // nTimeReceived, nOrderPos and cached members are not copied on purpose.
760 : 0 : const auto metadata = [](auto& tx) {
761 : 0 : return std::tie(tx.m_from, tx.m_message, tx.m_comment, tx.m_comment_to,
762 : 0 : tx.m_replaces_txid, tx.m_replaced_by_txid,
763 : 0 : tx.m_messages, tx.m_payment_requests, tx.nTimeSmart);
764 : : };
765 : :
766 : : // Now copy data from copyFrom to rest:
767 [ # # ]: 0 : for (CWalletTx* copyTo : txs) {
768 [ # # ]: 0 : if (copyTo == copyFrom) continue;
769 [ # # ]: 0 : metadata(*copyTo) = metadata(*copyFrom);
770 [ # # ]: 0 : (void)batch.WriteTxMetadata(*copyTo);
771 : : }
772 : 0 : }
773 : :
774 : : /**
775 : : * Outpoint is spent if any non-conflicted transaction
776 : : * spends it:
777 : : */
778 : 107534 : bool CWallet::IsSpent(const COutPoint& outpoint) const
779 : : {
780 : 107534 : std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
781 : 107534 : range = mapTxSpends.equal_range(outpoint);
782 : :
783 [ - + ]: 107534 : for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
784 : 0 : const Txid& txid = it->second;
785 : 0 : const auto mit = mapWallet.find(txid);
786 [ # # ]: 0 : if (mit != mapWallet.end()) {
787 [ # # ]: 0 : const auto& wtx = mit->second;
788 [ # # # # : 0 : if (!wtx.isAbandoned() && !wtx.isBlockConflicted() && !wtx.isMempoolConflicted())
# # ]
789 : : return true; // Spent
790 : : }
791 : : }
792 : : return false;
793 : : }
794 : :
795 : 0 : CWallet::SpendType CWallet::HowSpent(const COutPoint& outpoint) const
796 : : {
797 : 0 : SpendType st{SpendType::UNSPENT};
798 : :
799 : 0 : std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
800 : 0 : range = mapTxSpends.equal_range(outpoint);
801 : :
802 [ # # ]: 0 : for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
803 : 0 : const Txid& txid = it->second;
804 : 0 : const auto mit = mapWallet.find(txid);
805 [ # # ]: 0 : if (mit != mapWallet.end()) {
806 [ # # ]: 0 : const auto& wtx = mit->second;
807 [ # # ]: 0 : if (wtx.isConfirmed()) return SpendType::CONFIRMED;
808 [ # # ]: 0 : if (wtx.InMempool()) {
809 : : st = SpendType::MEMPOOL;
810 [ # # # # : 0 : } else if (!wtx.isAbandoned() && !wtx.isBlockConflicted() && !wtx.isMempoolConflicted()) {
# # ]
811 [ # # ]: 0 : if (st == SpendType::UNSPENT) st = SpendType::NONMEMPOOL;
812 : : }
813 : : }
814 : : }
815 : : return st;
816 : : }
817 : :
818 : 0 : void CWallet::AddToSpends(const COutPoint& outpoint, const Txid& txid)
819 : : {
820 : 0 : mapTxSpends.insert(std::make_pair(outpoint, txid));
821 : :
822 : 0 : UnlockCoin(outpoint);
823 : 0 : }
824 : :
825 : :
826 : 0 : void CWallet::AddToSpends(const CWalletTx& wtx)
827 : : {
828 [ # # ]: 0 : if (wtx.IsCoinBase()) // Coinbases don't spend anything!
829 : : return;
830 : :
831 [ # # # # ]: 0 : for (const CTxIn& txin : wtx.GetTx()->vin)
832 : 0 : AddToSpends(txin.prevout, wtx.GetHash());
833 : : }
834 : :
835 : 0 : bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase)
836 : : {
837 : : // Only descriptor wallets can be encrypted
838 [ # # ]: 0 : Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
839 : :
840 [ # # ]: 0 : if (HasEncryptionKeys())
841 : : return false;
842 : :
843 : 0 : CKeyingMaterial plain_master_key;
844 : :
845 [ # # ]: 0 : plain_master_key.resize(WALLET_CRYPTO_KEY_SIZE);
846 [ # # ]: 0 : GetStrongRandBytes(plain_master_key);
847 : :
848 [ # # ]: 0 : CMasterKey master_key;
849 : :
850 [ # # ]: 0 : master_key.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE);
851 [ # # ]: 0 : GetStrongRandBytes(master_key.vchSalt);
852 : :
853 [ # # # # ]: 0 : if (!EncryptMasterKey(strWalletPassphrase, plain_master_key, master_key)) {
854 : : return false;
855 : : }
856 [ # # ]: 0 : WalletLogPrintf("Encrypting Wallet with an nDeriveIterations of %i\n", master_key.nDeriveIterations);
857 : :
858 : 0 : {
859 [ # # # # ]: 0 : LOCK2(m_relock_mutex, cs_wallet);
860 : 0 : const unsigned int new_master_key_id{nMasterKeyMaxID + 1};
861 [ # # # # : 0 : if (!RunWithinTxn(GetDatabase(), /*process_desc=*/"wallet encryption", [&](WalletBatch& batch) {
# # ]
862 [ # # ]: 0 : if (!batch.WriteMasterKey(new_master_key_id, master_key)) {
863 : : return false;
864 : : }
865 [ # # ]: 0 : for (const auto& spk_man_pair : m_spk_managers) {
866 [ # # ]: 0 : if (!spk_man_pair.second->Encrypt(plain_master_key, &batch)) {
867 : : return false;
868 : : }
869 : : }
870 : : return true;
871 : : })) {
872 : : return false;
873 : : }
874 : :
875 : 0 : nMasterKeyMaxID = new_master_key_id;
876 [ # # ]: 0 : mapMasterKeys[new_master_key_id] = std::move(master_key);
877 : :
878 [ # # ]: 0 : Lock();
879 [ # # # # ]: 0 : if (!Unlock(strWalletPassphrase)) {
880 : : return false;
881 : : }
882 : :
883 [ # # ]: 0 : SetupWalletGeneration();
884 : :
885 [ # # ]: 0 : Lock();
886 : :
887 : : // Need to completely rewrite the wallet file; if we don't, the database might keep
888 : : // bits of the unencrypted private key in slack space in the database file.
889 [ # # ]: 0 : GetDatabase().Rewrite();
890 [ # # # # ]: 0 : }
891 [ # # ]: 0 : NotifyStatusChanged(this);
892 : :
893 : : return true;
894 : 0 : }
895 : :
896 : 0 : DBErrors CWallet::ReorderTransactions()
897 : : {
898 : 0 : LOCK(cs_wallet);
899 [ # # ]: 0 : WalletBatch batch(GetDatabase());
900 : :
901 : : // Old wallets didn't have any defined order for transactions
902 : : // Probably a bad idea to change the output of this
903 : :
904 : : // First: get all CWalletTx into a sorted-by-time multimap.
905 : 0 : typedef std::multimap<int64_t, CWalletTx*> TxItems;
906 : 0 : TxItems txByTime;
907 : :
908 [ # # # # ]: 0 : for (auto& entry : mapWallet)
909 : : {
910 : 0 : CWalletTx* wtx = &entry.second;
911 [ # # ]: 0 : txByTime.insert(std::make_pair(wtx->nTimeReceived, wtx));
912 : : }
913 : :
914 : 0 : nOrderPosNext = 0;
915 : 0 : std::vector<int64_t> nOrderPosOffsets;
916 [ # # ]: 0 : for (TxItems::iterator it = txByTime.begin(); it != txByTime.end(); ++it)
917 : : {
918 [ # # ]: 0 : CWalletTx *const pwtx = (*it).second;
919 : 0 : int64_t& nOrderPos = pwtx->nOrderPos;
920 : :
921 [ # # ]: 0 : if (nOrderPos == -1)
922 : : {
923 : 0 : nOrderPos = nOrderPosNext++;
924 [ # # ]: 0 : nOrderPosOffsets.push_back(nOrderPos);
925 : :
926 [ # # # # ]: 0 : if (!batch.WriteTxMetadata(*pwtx))
927 : : return DBErrors::LOAD_FAIL;
928 : : }
929 : : else
930 : : {
931 : 0 : int64_t nOrderPosOff = 0;
932 [ # # ]: 0 : for (const int64_t& nOffsetStart : nOrderPosOffsets)
933 : : {
934 [ # # ]: 0 : if (nOrderPos >= nOffsetStart)
935 : 0 : ++nOrderPosOff;
936 : : }
937 : 0 : nOrderPos += nOrderPosOff;
938 [ # # ]: 0 : nOrderPosNext = std::max(nOrderPosNext, nOrderPos + 1);
939 : :
940 [ # # ]: 0 : if (!nOrderPosOff)
941 : 0 : continue;
942 : :
943 : : // Since we're changing the order, write it back
944 [ # # # # ]: 0 : if (!batch.WriteTxMetadata(*pwtx))
945 : : return DBErrors::LOAD_FAIL;
946 : : }
947 : : }
948 [ # # ]: 0 : batch.WriteOrderPosNext(nOrderPosNext);
949 : :
950 : : return DBErrors::LOAD_OK;
951 [ # # ]: 0 : }
952 : :
953 : 0 : int64_t CWallet::IncOrderPosNext(WalletBatch* batch)
954 : : {
955 : 0 : AssertLockHeld(cs_wallet);
956 : 0 : int64_t nRet = nOrderPosNext++;
957 [ # # ]: 0 : if (batch) {
958 : 0 : batch->WriteOrderPosNext(nOrderPosNext);
959 : : } else {
960 [ # # ]: 0 : WalletBatch(GetDatabase()).WriteOrderPosNext(nOrderPosNext);
961 : : }
962 : 0 : return nRet;
963 : : }
964 : :
965 : 16961 : void CWallet::MarkDirty()
966 : : {
967 : 16961 : {
968 : 16961 : LOCK(cs_wallet);
969 [ + - + - ]: 16961 : for (auto& [_, wtx] : mapWallet)
970 : 0 : wtx.MarkDirty();
971 : 16961 : }
972 : 16961 : }
973 : :
974 : 0 : bool CWallet::MarkReplaced(const Txid& originalHash, const Txid& newHash)
975 : : {
976 : 0 : LOCK(cs_wallet);
977 : :
978 : 0 : auto mi = mapWallet.find(originalHash);
979 : :
980 : : // There is a bug if MarkReplaced is not called on an existing wallet transaction.
981 [ # # ]: 0 : assert(mi != mapWallet.end());
982 : :
983 [ # # ]: 0 : CWalletTx& wtx = (*mi).second;
984 : :
985 : : // Ensure for now that we're not overwriting data
986 [ # # ]: 0 : Assert(!wtx.m_replaced_by_txid);
987 : :
988 : 0 : wtx.m_replaced_by_txid = newHash;
989 : :
990 : : // Refresh mempool status without waiting for transactionRemovedFromMempool or transactionAddedToMempool
991 [ # # ]: 0 : RefreshMempoolStatus(wtx, chain());
992 : :
993 [ # # ]: 0 : WalletBatch batch(GetDatabase());
994 : :
995 : 0 : bool success = true;
996 [ # # # # ]: 0 : if (!batch.WriteTxMetadata(wtx)) {
997 [ # # # # : 0 : WalletLogPrintf("%s: Updating batch tx %s failed\n", __func__, wtx.GetHash().ToString());
# # ]
998 : 0 : success = false;
999 : : }
1000 : :
1001 : : // The new transaction also replaces any malleated variants of wtx,
1002 : : // so bumpfee refuses to bump them afterwards
1003 [ # # # # ]: 0 : for (CWalletTx* variant : GetMalleatedVariants(wtx)) {
1004 [ # # ]: 0 : if (variant == &wtx) continue;
1005 [ # # ]: 0 : variant->m_replaced_by_txid = newHash;
1006 [ # # # # ]: 0 : if (!batch.WriteTxMetadata(*variant)) {
1007 [ # # # # : 0 : WalletLogPrintf("%s: Updating variant tx %s failed\n", __func__, variant->GetHash().ToString());
# # ]
1008 : 0 : success = false;
1009 : : }
1010 : : }
1011 : :
1012 [ # # ]: 0 : NotifyTransactionChanged(originalHash, CT_UPDATED);
1013 : :
1014 : 0 : return success;
1015 [ # # ]: 0 : }
1016 : :
1017 : 0 : void CWallet::SetSpentKeyState(WalletBatch& batch, const Txid& hash, unsigned int n, bool used, std::set<CTxDestination>& tx_destinations)
1018 : : {
1019 : 0 : AssertLockHeld(cs_wallet);
1020 : 0 : const CWalletTx* srctx = GetWalletTx(hash);
1021 [ # # ]: 0 : if (!srctx) return;
1022 : :
1023 : 0 : CTxDestination dst;
1024 [ # # # # : 0 : if (ExtractDestination(srctx->GetTx()->vout[n].scriptPubKey, dst)) {
# # # # ]
1025 [ # # # # ]: 0 : if (IsMine(dst)) {
1026 [ # # # # ]: 0 : if (used != IsAddressPreviouslySpent(dst)) {
1027 [ # # ]: 0 : if (used) {
1028 [ # # ]: 0 : tx_destinations.insert(dst);
1029 : : }
1030 [ # # ]: 0 : SetAddressPreviouslySpent(batch, dst, used);
1031 : : }
1032 : : }
1033 : : }
1034 : 0 : }
1035 : :
1036 : 0 : bool CWallet::IsSpentKey(const CScript& scriptPubKey) const
1037 : : {
1038 : 0 : AssertLockHeld(cs_wallet);
1039 : 0 : CTxDestination dest;
1040 [ # # # # ]: 0 : if (!ExtractDestination(scriptPubKey, dest)) {
1041 : : return false;
1042 : : }
1043 [ # # # # ]: 0 : if (IsAddressPreviouslySpent(dest)) {
1044 : 0 : return true;
1045 : : }
1046 : : return false;
1047 : 0 : }
1048 : :
1049 : 0 : CWalletTx* CWallet::AddToWallet(CTransactionRef tx, const TxState& state, const UpdateWalletTxFn& update_wtx, bool rescanning_old_block)
1050 : : {
1051 : 0 : LOCK(cs_wallet);
1052 : :
1053 [ # # ]: 0 : WalletBatch batch(GetDatabase());
1054 : :
1055 [ # # ]: 0 : Txid hash = tx->GetHash();
1056 : :
1057 [ # # # # ]: 0 : if (IsWalletFlagSet(WALLET_FLAG_AVOID_REUSE)) {
1058 : : // Mark used destinations
1059 : 0 : std::set<CTxDestination> tx_destinations;
1060 : :
1061 [ # # ]: 0 : for (const CTxIn& txin : tx->vin) {
1062 : 0 : const COutPoint& op = txin.prevout;
1063 [ # # ]: 0 : SetSpentKeyState(batch, op.hash, op.n, true, tx_destinations);
1064 : : }
1065 : :
1066 [ # # ]: 0 : MarkDestinationsDirty(tx_destinations);
1067 : 0 : }
1068 : :
1069 : : // Inserts only if not already there, returns tx inserted or tx found
1070 [ # # ]: 0 : auto ret = mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(hash), std::forward_as_tuple(tx, state));
1071 [ # # ]: 0 : CWalletTx& wtx = (*ret.first).second;
1072 : 0 : bool fInsertedNew = ret.second;
1073 [ # # # # : 0 : bool fUpdated = update_wtx && update_wtx(wtx, fInsertedNew);
# # ]
1074 [ # # ]: 0 : if (fInsertedNew) {
1075 [ # # ]: 0 : wtx.nTimeReceived = GetTime();
1076 [ # # ]: 0 : wtx.nOrderPos = IncOrderPosNext(&batch);
1077 [ # # # # ]: 0 : wtx.m_it_wtxOrdered = wtxOrdered.insert(std::make_pair(wtx.nOrderPos, &wtx));
1078 [ # # ]: 0 : wtx.nTimeSmart = ComputeTimeSmart(wtx, rescanning_old_block);
1079 [ # # ]: 0 : AddToSpends(wtx);
1080 [ # # ]: 0 : SyncMalleatedTxMetadata(batch, wtx);
1081 : :
1082 : : // Update birth time when tx time is older than it.
1083 [ # # # # ]: 0 : MaybeUpdateBirthTime(wtx.GetTxTime());
1084 : :
1085 [ # # # # ]: 0 : if (!batch.WriteFullTx(wtx)) {
1086 : : return nullptr;
1087 : : }
1088 : : }
1089 : :
1090 : 0 : if (!fInsertedNew)
1091 : : {
1092 : 0 : try {
1093 [ # # # # : 0 : fUpdated |= wtx.Update(tx, state, batch, fUpdated);
# # ]
1094 [ - - ]: 0 : } catch (const std::ios_base::failure& e) {
1095 [ - - ]: 0 : WalletLogPrintf("Error: Unable to write tx update, %s", e.what());
1096 : 0 : return nullptr;
1097 : 0 : }
1098 : : }
1099 : :
1100 : : // Mark inactive coinbase transactions and their descendants as abandoned
1101 [ # # # # ]: 0 : if (wtx.IsCoinBase() && wtx.isInactive()) {
1102 [ # # ]: 0 : std::vector<CWalletTx*> txs{&wtx};
1103 : :
1104 : 0 : TxStateInactive inactive_state = TxStateInactive{/*abandoned=*/true};
1105 : :
1106 [ # # ]: 0 : while (!txs.empty()) {
1107 : 0 : CWalletTx* desc_tx = txs.back();
1108 [ # # ]: 0 : txs.pop_back();
1109 [ # # ]: 0 : desc_tx->m_state = inactive_state;
1110 : : // Break caches since we have changed the state
1111 : 0 : desc_tx->MarkDirty();
1112 [ # # ]: 0 : batch.WriteTxMetadata(*desc_tx);
1113 [ # # # # ]: 0 : MarkInputsDirty(desc_tx->GetTx());
1114 [ # # # # : 0 : for (unsigned int i = 0; i < desc_tx->GetTx()->vout.size(); ++i) {
# # # # ]
1115 [ # # ]: 0 : COutPoint outpoint(desc_tx->GetHash(), i);
1116 : 0 : std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(outpoint);
1117 [ # # ]: 0 : for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
1118 : 0 : const auto wit = mapWallet.find(it->second);
1119 [ # # ]: 0 : if (wit != mapWallet.end()) {
1120 [ # # ]: 0 : txs.push_back(&wit->second);
1121 : : }
1122 : : }
1123 : : }
1124 : : }
1125 : 0 : }
1126 : :
1127 : : //// debug print
1128 [ # # ]: 0 : std::string status{"no-change"};
1129 [ # # ]: 0 : if (fInsertedNew || fUpdated) {
1130 [ # # # # ]: 0 : status = fInsertedNew ? (fUpdated ? "new, update" : "new") : "update";
1131 : : }
1132 [ # # # # ]: 0 : WalletLogPrintf("AddToWallet %s %s %s", hash.ToString(), status, TxStateString(state));
1133 : :
1134 : : // Break debit/credit balance caches:
1135 : 0 : wtx.MarkDirty();
1136 : :
1137 : : // Cache the outputs that belong to the wallet
1138 [ # # ]: 0 : RefreshTXOsFromTx(wtx);
1139 : :
1140 : : // Notify UI of new or updated transaction
1141 [ # # # # ]: 0 : NotifyTransactionChanged(hash, fInsertedNew ? CT_NEW : CT_UPDATED);
1142 : :
1143 : : #if HAVE_SYSTEM
1144 : : // notify an external script when a wallet transaction comes in or is updated
1145 [ # # ]: 0 : std::string strCmd = m_notify_tx_changed_script;
1146 : :
1147 [ # # ]: 0 : if (!strCmd.empty())
1148 : : {
1149 [ # # # # : 0 : ReplaceAll(strCmd, "%s", hash.GetHex());
# # ]
1150 [ # # ]: 0 : if (auto* conf = wtx.state<TxStateConfirmed>())
1151 : : {
1152 [ # # # # ]: 0 : ReplaceAll(strCmd, "%b", conf->confirmed_block_hash.GetHex());
1153 [ # # # # ]: 0 : ReplaceAll(strCmd, "%h", ToString(conf->confirmed_block_height));
1154 : : } else {
1155 [ # # ]: 0 : ReplaceAll(strCmd, "%b", "unconfirmed");
1156 [ # # ]: 0 : ReplaceAll(strCmd, "%h", "-1");
1157 : : }
1158 : : #ifndef WIN32
1159 : : // Substituting the wallet name isn't currently supported on windows
1160 : : // because windows shell escaping has not been implemented yet:
1161 : : // https://github.com/bitcoin/bitcoin/pull/13339#issuecomment-537384875
1162 : : // A few ways it could be implemented in the future are described in:
1163 : : // https://github.com/bitcoin/bitcoin/pull/13339#issuecomment-461288094
1164 [ # # # # ]: 0 : ReplaceAll(strCmd, "%w", ShellEscape(GetName()));
1165 : : #endif
1166 [ # # ]: 0 : std::thread t(runCommand, strCmd);
1167 [ # # ]: 0 : t.detach(); // thread runs free
1168 : 0 : }
1169 : : #endif
1170 : :
1171 : 0 : return &wtx;
1172 [ # # ]: 0 : }
1173 : :
1174 : 0 : bool CWallet::LoadToWallet(CWalletTx&& wtx_in)
1175 : : {
1176 : 0 : const auto& ins = mapWallet.emplace(wtx_in.GetHash(), std::move(wtx_in));
1177 [ # # ]: 0 : CWalletTx& wtx = ins.first->second;
1178 [ # # ]: 0 : if (!ins.second) {
1179 : : return false;
1180 : : }
1181 : : // If wallet doesn't have a chain (e.g when using bitcoin-wallet tool),
1182 : : // don't bother to update txn.
1183 [ # # ]: 0 : if (HaveChain()) {
1184 : 0 : wtx.updateState(chain());
1185 : : }
1186 : 0 : wtx.m_it_wtxOrdered = wtxOrdered.insert(std::make_pair(wtx.nOrderPos, &wtx));
1187 : 0 : AddToSpends(wtx);
1188 [ # # # # ]: 0 : for (const CTxIn& txin : wtx.GetTx()->vin) {
1189 : 0 : auto it = mapWallet.find(txin.prevout.hash);
1190 [ # # ]: 0 : if (it != mapWallet.end()) {
1191 [ # # ]: 0 : CWalletTx& prevtx = it->second;
1192 [ # # ]: 0 : if (auto* prev = prevtx.state<TxStateBlockConflicted>()) {
1193 : 0 : MarkConflicted(prev->conflicting_block_hash, prev->conflicting_block_height, wtx.GetHash());
1194 : : }
1195 : : }
1196 : : }
1197 : :
1198 : : // Update birth time when tx time is older than it.
1199 : 0 : MaybeUpdateBirthTime(wtx.GetTxTime());
1200 : :
1201 : : // Make sure the tx outputs are known by the wallet
1202 : 0 : RefreshTXOsFromTx(wtx);
1203 : 0 : return true;
1204 : : }
1205 : :
1206 : 0 : bool CWallet::AddToWalletIfInvolvingMe(const CTransactionRef& ptx, const SyncTxState& state, bool rescanning_old_block)
1207 : : {
1208 [ # # ]: 0 : const CTransaction& tx = *ptx;
1209 : 0 : {
1210 : 0 : AssertLockHeld(cs_wallet);
1211 : :
1212 [ # # ]: 0 : if (auto* conf = std::get_if<TxStateConfirmed>(&state)) {
1213 [ # # ]: 0 : for (const CTxIn& txin : tx.vin) {
1214 : 0 : std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(txin.prevout);
1215 [ # # ]: 0 : while (range.first != range.second) {
1216 [ # # ]: 0 : if (range.first->second != tx.GetHash()) {
1217 [ # # # # : 0 : WalletLogPrintf("Transaction %s (in block %s) conflicts with wallet transaction %s (both spend %s:%i)\n", tx.GetHash().ToString(), conf->confirmed_block_hash.ToString(), range.first->second.ToString(), range.first->first.hash.ToString(), range.first->first.n);
# # # # ]
1218 : 0 : MarkConflicted(conf->confirmed_block_hash, conf->confirmed_block_height, range.first->second);
1219 : : }
1220 : 0 : range.first++;
1221 : : }
1222 : : }
1223 : : }
1224 : :
1225 : 0 : bool fExisted = mapWallet.contains(tx.GetHash());
1226 [ # # # # : 0 : if (fExisted || IsMine(tx) || IsFromMe(tx))
# # ]
1227 : : {
1228 : : /* Check if any keys in the wallet keypool that were supposed to be unused
1229 : : * have appeared in a new transaction. If so, remove those keys from the keypool.
1230 : : * This can happen when restoring an old wallet backup that does not contain
1231 : : * the mostly recently created transactions from newer versions of the wallet.
1232 : : */
1233 : :
1234 : : // loop though all outputs
1235 [ # # ]: 0 : for (const CTxOut& txout: tx.vout) {
1236 [ # # ]: 0 : for (const auto& spk_man : GetScriptPubKeyMans(txout.scriptPubKey)) {
1237 [ # # # # ]: 0 : for (auto &dest : spk_man->MarkUnusedAddresses(txout.scriptPubKey)) {
1238 : : // If internal flag is not defined try to infer it from the ScriptPubKeyMan
1239 [ # # ]: 0 : if (!dest.internal.has_value()) {
1240 [ # # ]: 0 : dest.internal = IsInternalScriptPubKeyMan(spk_man);
1241 : : }
1242 : :
1243 : : // skip if can't determine whether it's a receiving address or not
1244 [ # # ]: 0 : if (!dest.internal.has_value()) continue;
1245 : :
1246 : : // If this is a receiving address and it's not in the address book yet
1247 : : // (e.g. it wasn't generated on this node or we're restoring from backup)
1248 : : // add it to the address book for proper transaction accounting
1249 [ # # # # : 0 : if (!*dest.internal && !FindAddressBookEntry(dest.dest, /* allow_change= */ false)) {
# # ]
1250 [ # # # # ]: 0 : SetAddressBook(dest.dest, "", AddressPurpose::RECEIVE);
1251 : : }
1252 : 0 : }
1253 : 0 : }
1254 : : }
1255 : :
1256 : : // Block disconnection override an abandoned tx as unconfirmed
1257 : : // which means user may have to call abandontransaction again
1258 [ # # ]: 0 : TxState tx_state = std::visit([](auto&& s) -> TxState { return s; }, state);
1259 [ # # # # : 0 : CWalletTx* wtx = AddToWallet(MakeTransactionRef(tx), tx_state, /*update_wtx=*/nullptr, rescanning_old_block);
# # ]
1260 [ # # ]: 0 : if (!wtx) {
1261 : : // Can only be nullptr if there was a db write error (missing db, read-only db or a db engine internal writing error).
1262 : : // As we only store arriving transaction in this process, and we don't want an inconsistent state, let's throw an error.
1263 [ # # ]: 0 : throw std::runtime_error("DB error adding transaction to wallet, write failed");
1264 : : }
1265 : : return true;
1266 : : }
1267 : : }
1268 : : return false;
1269 : : }
1270 : :
1271 : 0 : bool CWallet::TransactionCanBeAbandoned(const Txid& hashTx) const
1272 : : {
1273 : 0 : LOCK(cs_wallet);
1274 [ # # ]: 0 : const CWalletTx* wtx = GetWalletTx(hashTx);
1275 : 0 : return wtx && !wtx->isAbandoned() && GetTxDepthInMainChain(*wtx) == 0 && !wtx->InMempool();
[ # # # #
# # # # #
# # # ]
1276 : 0 : }
1277 : :
1278 : 0 : void CWallet::UpdateTrucSiblingConflicts(const CWalletTx& parent_wtx, const Txid& child_txid, bool add_conflict) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet)
1279 : : {
1280 : : // Find all other txs in our wallet that spend utxos from this parent
1281 : : // so that we can mark them as mempool-conflicted by this new tx.
1282 [ # # # # : 0 : for (long unsigned int i = 0; i < parent_wtx.GetTx()->vout.size(); i++) {
# # ]
1283 [ # # # # ]: 0 : for (auto range = mapTxSpends.equal_range(COutPoint(parent_wtx.GetTx()->GetHash(), i)); range.first != range.second; range.first++) {
1284 [ # # ]: 0 : const Txid& sibling_txid = range.first->second;
1285 : : // Skip the child_tx itself
1286 [ # # ]: 0 : if (sibling_txid == child_txid) continue;
1287 [ # # ]: 0 : RecursiveUpdateTxState(/*batch=*/nullptr, sibling_txid, [&child_txid, add_conflict](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
1288 [ # # # # ]: 0 : return add_conflict ? (wtx.mempool_conflicts.insert(child_txid).second ? TxUpdate::CHANGED : TxUpdate::UNCHANGED)
1289 [ # # ]: 0 : : (wtx.mempool_conflicts.erase(child_txid) ? TxUpdate::CHANGED : TxUpdate::UNCHANGED);
1290 : : });
1291 : : }
1292 : : }
1293 : 0 : }
1294 : :
1295 : 0 : void CWallet::MarkInputsDirty(const CTransactionRef& tx)
1296 : : {
1297 [ # # ]: 0 : for (const CTxIn& txin : tx->vin) {
1298 : 0 : auto it = mapWallet.find(txin.prevout.hash);
1299 [ # # ]: 0 : if (it != mapWallet.end()) {
1300 : 0 : it->second.MarkDirty();
1301 : : }
1302 : : }
1303 : 0 : }
1304 : :
1305 : 0 : bool CWallet::AbandonTransaction(const Txid& hashTx)
1306 : : {
1307 : 0 : LOCK(cs_wallet);
1308 : 0 : auto it = mapWallet.find(hashTx);
1309 [ # # ]: 0 : assert(it != mapWallet.end());
1310 [ # # # # ]: 0 : return AbandonTransaction(it->second);
1311 : 0 : }
1312 : :
1313 : 0 : bool CWallet::AbandonTransaction(CWalletTx& tx)
1314 : : {
1315 : : // Can't mark abandoned if confirmed or in mempool
1316 [ # # # # ]: 0 : if (GetTxDepthInMainChain(tx) != 0 || tx.InMempool()) {
1317 : 0 : return false;
1318 : : }
1319 : :
1320 : 0 : auto try_updating_state = [](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
1321 : : // If the orig tx was not in block/mempool, none of its spends can be.
1322 [ # # ]: 0 : assert(!wtx.isConfirmed());
1323 [ # # ]: 0 : assert(!wtx.InMempool());
1324 : : // If already conflicted or abandoned, no need to set abandoned
1325 [ # # # # ]: 0 : if (!wtx.isBlockConflicted() && !wtx.isAbandoned()) {
1326 [ # # ]: 0 : wtx.m_state = TxStateInactive{/*abandoned=*/true};
1327 : 0 : return TxUpdate::NOTIFY_CHANGED;
1328 : : }
1329 : : return TxUpdate::UNCHANGED;
1330 : : };
1331 : :
1332 : : // Iterate over all its outputs, and mark transactions in the wallet that spend them abandoned too.
1333 : : // States are not permanent, so these transactions can become unabandoned if they are re-added to the
1334 : : // mempool, or confirmed in a block, or conflicted.
1335 : : // Note: If the reorged coinbase is re-added to the main chain, the descendants that have not had their
1336 : : // states change will remain abandoned and will require manual broadcast if the user wants them.
1337 : :
1338 [ # # # # ]: 0 : RecursiveUpdateTxState(tx.GetHash(), try_updating_state);
1339 : :
1340 : 0 : return true;
1341 : : }
1342 : :
1343 : 0 : void CWallet::MarkConflicted(const uint256& hashBlock, int conflicting_height, const Txid& hashTx)
1344 : : {
1345 : 0 : LOCK(cs_wallet);
1346 : :
1347 : : // If number of conflict confirms cannot be determined, this means
1348 : : // that the block is still unknown or not yet part of the main chain,
1349 : : // for example when loading the wallet during a reindex. Do nothing in that
1350 : : // case.
1351 [ # # # # ]: 0 : if (m_last_block_processed_height < 0 || conflicting_height < 0) {
1352 : : return;
1353 : : }
1354 : 0 : int conflictconfirms = (m_last_block_processed_height - conflicting_height + 1) * -1;
1355 [ # # ]: 0 : if (conflictconfirms >= 0)
1356 : : return;
1357 : :
1358 : 0 : auto try_updating_state = [&](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
1359 [ # # ]: 0 : if (conflictconfirms < GetTxDepthInMainChain(wtx)) {
1360 : : // Block is 'more conflicted' than current confirm; update.
1361 : : // Mark transaction as conflicted with this block.
1362 : 0 : wtx.m_state = TxStateBlockConflicted{hashBlock, conflicting_height};
1363 : 0 : return TxUpdate::CHANGED;
1364 : : }
1365 : : return TxUpdate::UNCHANGED;
1366 : 0 : };
1367 : :
1368 : : // Iterate over all its outputs, and mark transactions in the wallet that spend them conflicted too.
1369 [ # # # # : 0 : RecursiveUpdateTxState(hashTx, try_updating_state);
# # ]
1370 : :
1371 : 0 : }
1372 : :
1373 : 0 : void CWallet::RecursiveUpdateTxState(const Txid& tx_hash, const TryUpdatingStateFn& try_updating_state) {
1374 : 0 : WalletBatch batch(GetDatabase());
1375 [ # # ]: 0 : RecursiveUpdateTxState(&batch, tx_hash, try_updating_state);
1376 : 0 : }
1377 : :
1378 : 0 : void CWallet::RecursiveUpdateTxState(WalletBatch* batch, const Txid& tx_hash, const TryUpdatingStateFn& try_updating_state) {
1379 [ # # ]: 0 : std::set<Txid> todo;
1380 : 0 : std::set<Txid> done;
1381 : :
1382 [ # # ]: 0 : todo.insert(tx_hash);
1383 : :
1384 [ # # ]: 0 : while (!todo.empty()) {
1385 : 0 : Txid now = *todo.begin();
1386 : 0 : todo.erase(now);
1387 [ # # ]: 0 : done.insert(now);
1388 : 0 : auto it = mapWallet.find(now);
1389 [ # # ]: 0 : assert(it != mapWallet.end());
1390 [ # # ]: 0 : CWalletTx& wtx = it->second;
1391 : :
1392 [ # # ]: 0 : TxUpdate update_state = try_updating_state(wtx);
1393 [ # # ]: 0 : if (update_state != TxUpdate::UNCHANGED) {
1394 : 0 : wtx.MarkDirty();
1395 [ # # # # ]: 0 : if (batch) batch->WriteTxMetadata(wtx);
1396 : : // Iterate over all its outputs, and update those tx states as well (if applicable)
1397 [ # # # # : 0 : for (unsigned int i = 0; i < wtx.GetTx()->vout.size(); ++i) {
# # # # ]
1398 : 0 : std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(COutPoint(now, i));
1399 [ # # ]: 0 : for (TxSpends::const_iterator iter = range.first; iter != range.second; ++iter) {
1400 [ # # ]: 0 : if (!done.contains(iter->second)) {
1401 [ # # ]: 0 : todo.insert(iter->second);
1402 : : }
1403 : : }
1404 : : }
1405 : :
1406 [ # # ]: 0 : if (update_state == TxUpdate::NOTIFY_CHANGED) {
1407 [ # # # # ]: 0 : NotifyTransactionChanged(wtx.GetHash(), CT_UPDATED);
1408 : : }
1409 : :
1410 : : // If a transaction changes its tx state, that usually changes the balance
1411 : : // available of the outputs it spends. So force those to be recomputed
1412 [ # # # # ]: 0 : MarkInputsDirty(wtx.GetTx());
1413 : : }
1414 : : }
1415 : 0 : }
1416 : :
1417 : 0 : bool CWallet::SyncTransaction(const CTransactionRef& ptx, const SyncTxState& state, bool rescanning_old_block)
1418 : : {
1419 [ # # ]: 0 : if (!AddToWalletIfInvolvingMe(ptx, state, rescanning_old_block))
1420 : : return false; // Not one of ours
1421 : :
1422 : : // If a transaction changes 'conflicted' state, that changes the balance
1423 : : // available of the outputs it spends. So force those to be
1424 : : // recomputed, also:
1425 : 0 : MarkInputsDirty(ptx);
1426 : 0 : return true;
1427 : : }
1428 : :
1429 : 0 : void CWallet::transactionAddedToMempool(const CTransactionRef& tx) {
1430 : 0 : LOCK(cs_wallet);
1431 [ # # ]: 0 : SyncTransaction(tx, TxStateInMempool{});
1432 : :
1433 : 0 : auto it = mapWallet.find(tx->GetHash());
1434 [ # # ]: 0 : if (it != mapWallet.end()) {
1435 [ # # ]: 0 : RefreshMempoolStatus(it->second, chain());
1436 : : }
1437 : :
1438 : 0 : const Txid& txid = tx->GetHash();
1439 : :
1440 [ # # ]: 0 : for (const CTxIn& tx_in : tx->vin) {
1441 : : // For each wallet transaction spending this prevout..
1442 [ # # ]: 0 : for (auto range = mapTxSpends.equal_range(tx_in.prevout); range.first != range.second; range.first++) {
1443 [ # # ]: 0 : const Txid& spent_id = range.first->second;
1444 : : // Skip the recently added tx
1445 [ # # ]: 0 : if (spent_id == txid) continue;
1446 [ # # ]: 0 : RecursiveUpdateTxState(/*batch=*/nullptr, spent_id, [&txid](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
1447 [ # # ]: 0 : return wtx.mempool_conflicts.insert(txid).second ? TxUpdate::CHANGED : TxUpdate::UNCHANGED;
1448 : : });
1449 : : }
1450 : :
1451 : : }
1452 : :
1453 [ # # ]: 0 : if (tx->version == TRUC_VERSION) {
1454 : : // Unconfirmed TRUC transactions are only allowed a 1-parent-1-child topology.
1455 : : // For any unconfirmed v3 parents (there should be a maximum of 1 except in reorgs),
1456 : : // record this child so the wallet doesn't try to spend any other outputs
1457 [ # # ]: 0 : for (const CTxIn& tx_in : tx->vin) {
1458 : 0 : auto parent_it = mapWallet.find(tx_in.prevout.hash);
1459 [ # # ]: 0 : if (parent_it != mapWallet.end()) {
1460 [ # # ]: 0 : CWalletTx& parent_wtx = parent_it->second;
1461 [ # # ]: 0 : if (parent_wtx.isUnconfirmed()) {
1462 [ # # ]: 0 : parent_wtx.truc_child_in_mempool = tx->GetHash();
1463 : : // Even though these siblings do not spend the same utxos, they can't
1464 : : // be present in the mempool at the same time because of TRUC policy rules
1465 [ # # ]: 0 : UpdateTrucSiblingConflicts(parent_wtx, txid, /*add_conflict=*/true);
1466 : : }
1467 : : }
1468 : : }
1469 : : }
1470 : 0 : }
1471 : :
1472 : 0 : void CWallet::transactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason) {
1473 : 0 : LOCK(cs_wallet);
1474 : 0 : auto it = mapWallet.find(tx->GetHash());
1475 [ # # ]: 0 : if (it != mapWallet.end()) {
1476 [ # # ]: 0 : RefreshMempoolStatus(it->second, chain());
1477 : : }
1478 : : // Handle transactions that were removed from the mempool because they
1479 : : // conflict with transactions in a newly connected block.
1480 [ # # ]: 0 : if (reason == MemPoolRemovalReason::CONFLICT) {
1481 : : // Trigger external -walletnotify notifications for these transactions.
1482 : : // Set Status::UNCONFIRMED instead of Status::CONFLICTED for a few reasons:
1483 : : //
1484 : : // 1. The transactionRemovedFromMempool callback does not currently
1485 : : // provide the conflicting block's hash and height, and for backwards
1486 : : // compatibility reasons it may not be not safe to store conflicted
1487 : : // wallet transactions with a null block hash. See
1488 : : // https://github.com/bitcoin/bitcoin/pull/18600#discussion_r420195993.
1489 : : // 2. For most of these transactions, the wallet's internal conflict
1490 : : // detection in the blockConnected handler will subsequently call
1491 : : // MarkConflicted and update them with CONFLICTED status anyway. This
1492 : : // applies to any wallet transaction that has inputs spent in the
1493 : : // block, or that has ancestors in the wallet with inputs spent by
1494 : : // the block.
1495 : : // 3. Longstanding behavior since the sync implementation in
1496 : : // https://github.com/bitcoin/bitcoin/pull/9371 and the prior sync
1497 : : // implementation before that was to mark these transactions
1498 : : // unconfirmed rather than conflicted.
1499 : : //
1500 : : // Nothing described above should be seen as an unchangeable requirement
1501 : : // when improving this code in the future. The wallet's heuristics for
1502 : : // distinguishing between conflicted and unconfirmed transactions are
1503 : : // imperfect, and could be improved in general, see
1504 : : // https://github.com/bitcoin-core/bitcoin-devwiki/wiki/Wallet-Transaction-Conflict-Tracking
1505 [ # # ]: 0 : SyncTransaction(tx, TxStateInactive{});
1506 : : }
1507 : :
1508 : 0 : const Txid& txid = tx->GetHash();
1509 : :
1510 [ # # ]: 0 : for (const CTxIn& tx_in : tx->vin) {
1511 : : // Iterate over all wallet transactions spending txin.prev
1512 : : // and recursively mark them as no longer conflicting with
1513 : : // txid
1514 [ # # ]: 0 : for (auto range = mapTxSpends.equal_range(tx_in.prevout); range.first != range.second; range.first++) {
1515 [ # # ]: 0 : const Txid& spent_id = range.first->second;
1516 : :
1517 [ # # ]: 0 : RecursiveUpdateTxState(/*batch=*/nullptr, spent_id, [&txid](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
1518 [ # # ]: 0 : return wtx.mempool_conflicts.erase(txid) ? TxUpdate::CHANGED : TxUpdate::UNCHANGED;
1519 : : });
1520 : : }
1521 : : }
1522 : :
1523 [ # # ]: 0 : if (tx->version == TRUC_VERSION) {
1524 : : // If this tx has a parent, unset its truc_child_in_mempool to make it possible
1525 : : // to spend from the parent again. If this tx was replaced by another
1526 : : // child of the same parent, transactionAddedToMempool
1527 : : // will update truc_child_in_mempool
1528 [ # # ]: 0 : for (const CTxIn& tx_in : tx->vin) {
1529 : 0 : auto parent_it = mapWallet.find(tx_in.prevout.hash);
1530 [ # # ]: 0 : if (parent_it != mapWallet.end()) {
1531 [ # # ]: 0 : CWalletTx& parent_wtx = parent_it->second;
1532 [ # # ]: 0 : if (parent_wtx.truc_child_in_mempool == tx->GetHash()) {
1533 [ # # ]: 0 : parent_wtx.truc_child_in_mempool = std::nullopt;
1534 [ # # ]: 0 : UpdateTrucSiblingConflicts(parent_wtx, txid, /*add_conflict=*/false);
1535 : : }
1536 : : }
1537 : : }
1538 : : }
1539 : 0 : }
1540 : :
1541 : 0 : void CWallet::blockConnected(const ChainstateRole& role, const interfaces::BlockInfo& block)
1542 : : {
1543 [ # # ]: 0 : if (role.historical) {
1544 : : return;
1545 : : }
1546 [ # # ]: 0 : assert(block.data);
1547 : 0 : LOCK(cs_wallet);
1548 : :
1549 : : // Update the best block in memory first. This will set the best block's height, which is
1550 : : // needed by MarkConflicted.
1551 [ # # ]: 0 : SetLastBlockProcessedInMem(block.height, block.hash);
1552 : :
1553 : : // No need to scan block if it was created before the wallet birthday.
1554 : : // Uses chain max time and twice the grace period to adjust time for block time variability.
1555 [ # # # # ]: 0 : if (block.chain_time_max < m_birth_time.load() - (TIMESTAMP_WINDOW * 2)) return;
1556 : :
1557 : : // Scan block
1558 : : bool wallet_updated = false;
1559 [ # # # # ]: 0 : for (size_t index = 0; index < block.data->vtx.size(); index++) {
1560 [ # # ]: 0 : wallet_updated |= SyncTransaction(block.data->vtx[index], TxStateConfirmed{block.hash, block.height, static_cast<int>(index)});
1561 [ # # ]: 0 : transactionRemovedFromMempool(block.data->vtx[index], MemPoolRemovalReason::BLOCK);
1562 : : }
1563 : :
1564 : : // Update on disk if this block resulted in us updating a tx, or periodically every 144 blocks (~1 day)
1565 [ # # # # ]: 0 : if (wallet_updated || block.height % 144 == 0) {
1566 [ # # ]: 0 : WriteBestBlock();
1567 : : }
1568 : 0 : }
1569 : :
1570 : 0 : void CWallet::blockDisconnected(const interfaces::BlockInfo& block)
1571 : : {
1572 [ # # ]: 0 : assert(block.data);
1573 : 0 : LOCK(cs_wallet);
1574 : :
1575 : : // At block disconnection, this will change an abandoned transaction to
1576 : : // be unconfirmed, whether or not the transaction is added back to the mempool.
1577 : : // User may have to call abandontransaction again. It may be addressed in the
1578 : : // future with a stickier abandoned state or even removing abandontransaction call.
1579 : 0 : int disconnect_height = block.height;
1580 : :
1581 [ # # # # ]: 0 : for (size_t index = 0; index < block.data->vtx.size(); index++) {
1582 [ # # ]: 0 : const CTransactionRef& ptx = block.data->vtx[index];
1583 : : // Coinbase transactions are not only inactive but also abandoned,
1584 : : // meaning they should never be relayed standalone via the p2p protocol.
1585 [ # # ]: 0 : SyncTransaction(ptx, TxStateInactive{/*abandoned=*/index == 0});
1586 : :
1587 [ # # ]: 0 : for (const CTxIn& tx_in : ptx->vin) {
1588 : : // No other wallet transactions conflicted with this transaction
1589 [ # # ]: 0 : if (!mapTxSpends.contains(tx_in.prevout)) continue;
1590 : :
1591 : 0 : std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(tx_in.prevout);
1592 : :
1593 : : // For all of the spends that conflict with this transaction
1594 [ # # ]: 0 : for (TxSpends::const_iterator _it = range.first; _it != range.second; ++_it) {
1595 [ # # ]: 0 : CWalletTx& wtx = mapWallet.find(_it->second)->second;
1596 : :
1597 [ # # ]: 0 : if (!wtx.isBlockConflicted()) continue;
1598 : :
1599 : 0 : auto try_updating_state = [&](CWalletTx& tx) {
1600 [ # # ]: 0 : if (!tx.isBlockConflicted()) return TxUpdate::UNCHANGED;
1601 [ # # ]: 0 : if (tx.state<TxStateBlockConflicted>()->conflicting_block_height >= disconnect_height) {
1602 [ # # ]: 0 : tx.m_state = TxStateInactive{};
1603 : 0 : return TxUpdate::CHANGED;
1604 : : }
1605 : : return TxUpdate::UNCHANGED;
1606 : 0 : };
1607 : :
1608 [ # # # # ]: 0 : RecursiveUpdateTxState(wtx.GetTx()->GetHash(), try_updating_state);
1609 : : }
1610 : : }
1611 : : }
1612 : :
1613 : : // Update the best block
1614 [ # # # # ]: 0 : SetLastBlockProcessed(block.height - 1, *Assert(block.prev_hash));
1615 : 0 : }
1616 : :
1617 : 0 : void CWallet::updatedBlockTip()
1618 : : {
1619 : 0 : m_best_block_time = GetTime();
1620 : 0 : }
1621 : :
1622 : 0 : void CWallet::BlockUntilSyncedToCurrentChain() const {
1623 : 0 : AssertLockNotHeld(cs_wallet);
1624 : : // Skip the queue-draining stuff if we know we're caught up with
1625 : : // chain().Tip(), otherwise put a callback in the validation interface queue and wait
1626 : : // for the queue to drain enough to execute it (indicating we are caught up
1627 : : // at least with the time we entered this function).
1628 [ # # ]: 0 : uint256 last_block_hash = WITH_LOCK(cs_wallet, return m_last_block_processed);
1629 : 0 : chain().waitForNotificationsIfTipChanged(last_block_hash);
1630 : 0 : }
1631 : :
1632 : : // Note that this function doesn't distinguish between a 0-valued input,
1633 : : // and a not-"is mine" input.
1634 : 0 : CAmount CWallet::GetDebit(const CTxIn &txin) const
1635 : : {
1636 : 0 : LOCK(cs_wallet);
1637 [ # # ]: 0 : auto txo = GetTXO(txin.prevout);
1638 [ # # ]: 0 : if (txo) {
1639 : 0 : return txo->GetTxOut().nValue;
1640 : : }
1641 : : return 0;
1642 : 0 : }
1643 : :
1644 : 200633 : bool CWallet::IsMine(const CTxOut& txout) const
1645 : : {
1646 : 200633 : AssertLockHeld(cs_wallet);
1647 : 200633 : return IsMine(txout.scriptPubKey);
1648 : : }
1649 : :
1650 : 165389 : bool CWallet::IsMine(const CTxDestination& dest) const
1651 : : {
1652 : 165389 : AssertLockHeld(cs_wallet);
1653 [ + - ]: 165389 : return IsMine(GetScriptForDestination(dest));
1654 : : }
1655 : :
1656 : 366022 : bool CWallet::IsMine(const CScript& script) const
1657 : : {
1658 : 366022 : AssertLockHeld(cs_wallet);
1659 : :
1660 : : // Search the cache so that IsMine is called only on the relevant SPKMs instead of on everything in m_spk_managers
1661 : 366022 : const auto& it = m_cached_spks.find(script);
1662 [ + - ]: 366022 : if (it != m_cached_spks.end()) {
1663 : 366022 : bool res = false;
1664 [ + + ]: 732107 : for (const auto& spkm : it->second) {
1665 [ + + + - ]: 732107 : res = res || spkm->IsMine(script);
1666 : : }
1667 [ - + ]: 366022 : Assume(res);
1668 : : return res;
1669 : : }
1670 : :
1671 : : return false;
1672 : : }
1673 : :
1674 : 0 : bool CWallet::IsMine(const CTransaction& tx) const
1675 : : {
1676 : 0 : AssertLockHeld(cs_wallet);
1677 [ # # ]: 0 : for (const CTxOut& txout : tx.vout)
1678 [ # # ]: 0 : if (IsMine(txout))
1679 : : return true;
1680 : : return false;
1681 : : }
1682 : :
1683 : 0 : bool CWallet::IsMine(const COutPoint& outpoint) const
1684 : : {
1685 : 0 : AssertLockHeld(cs_wallet);
1686 : 0 : auto wtx = GetWalletTx(outpoint.hash);
1687 [ # # ]: 0 : if (!wtx) {
1688 : : return false;
1689 : : }
1690 [ # # # # : 0 : if (outpoint.n >= wtx->GetTx()->vout.size()) {
# # ]
1691 : : return false;
1692 : : }
1693 [ # # # # ]: 0 : return IsMine(wtx->GetTx()->vout[outpoint.n]);
1694 : : }
1695 : :
1696 : 84340 : bool CWallet::IsFromMe(const CTransaction& tx) const
1697 : : {
1698 : 84340 : LOCK(cs_wallet);
1699 [ - + ]: 84340 : for (const CTxIn& txin : tx.vin) {
1700 [ # # # # ]: 0 : if (GetTXO(txin.prevout)) return true;
1701 : : }
1702 : : return false;
1703 : 84340 : }
1704 : :
1705 : 0 : CAmount CWallet::GetDebit(const CTransaction& tx) const
1706 : : {
1707 : 0 : CAmount nDebit = 0;
1708 [ # # ]: 0 : for (const CTxIn& txin : tx.vin)
1709 : : {
1710 : 0 : nDebit += GetDebit(txin);
1711 [ # # ]: 0 : if (!MoneyRange(nDebit))
1712 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": value out of range");
1713 : : }
1714 : 0 : return nDebit;
1715 : : }
1716 : :
1717 : 0 : bool CWallet::IsHDEnabled() const
1718 : : {
1719 : : // All Active ScriptPubKeyMans must be HD for this to be true
1720 : 0 : bool result = false;
1721 [ # # ]: 0 : for (const auto& spk_man : GetActiveScriptPubKeyMans()) {
1722 [ # # # # ]: 0 : if (!spk_man->IsHDEnabled()) return false;
1723 : 0 : result = true;
1724 : : }
1725 : 0 : return result;
1726 : : }
1727 : :
1728 : 0 : bool CWallet::CanGetAddresses(bool internal) const
1729 : : {
1730 : 0 : LOCK(cs_wallet);
1731 [ # # ]: 0 : if (m_spk_managers.empty()) return false;
1732 [ # # ]: 0 : for (OutputType t : OUTPUT_TYPES) {
1733 [ # # ]: 0 : auto spk_man = GetScriptPubKeyMan(t, internal);
1734 [ # # # # : 0 : if (spk_man && spk_man->CanGetAddresses(internal)) {
# # ]
1735 : : return true;
1736 : : }
1737 : : }
1738 : : return false;
1739 : 0 : }
1740 : :
1741 : 8202 : void CWallet::SetWalletFlag(uint64_t flags)
1742 : : {
1743 : 8202 : WalletBatch batch(GetDatabase());
1744 [ + - ]: 8202 : return SetWalletFlagWithDB(batch, flags);
1745 : 8202 : }
1746 : :
1747 : 8202 : void CWallet::SetWalletFlagWithDB(WalletBatch& batch, uint64_t flags)
1748 : : {
1749 : 8202 : LOCK(cs_wallet);
1750 [ + - ]: 8202 : m_wallet_flags |= flags;
1751 [ + - - + ]: 8202 : if (!batch.WriteWalletFlags(m_wallet_flags))
1752 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": writing wallet flags failed");
1753 : 8202 : }
1754 : :
1755 : 1328 : void CWallet::UnsetWalletFlag(uint64_t flag)
1756 : : {
1757 : 1328 : WalletBatch batch(GetDatabase());
1758 [ + - ]: 1328 : UnsetWalletFlagWithDB(batch, flag);
1759 : 1328 : }
1760 : :
1761 : 1328 : void CWallet::UnsetWalletFlagWithDB(WalletBatch& batch, uint64_t flag)
1762 : : {
1763 : 1328 : LOCK(cs_wallet);
1764 [ + - ]: 1328 : m_wallet_flags &= ~flag;
1765 [ + - - + ]: 1328 : if (!batch.WriteWalletFlags(m_wallet_flags))
1766 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": writing wallet flags failed");
1767 : 1328 : }
1768 : :
1769 : 0 : void CWallet::UnsetBlankWalletFlag(WalletBatch& batch)
1770 : : {
1771 : 0 : UnsetWalletFlagWithDB(batch, WALLET_FLAG_BLANK_WALLET);
1772 : 0 : }
1773 : :
1774 : 106300 : bool CWallet::IsWalletFlagSet(uint64_t flag) const
1775 : : {
1776 : 106300 : return (m_wallet_flags & flag);
1777 : : }
1778 : :
1779 : 0 : bool CWallet::LoadWalletFlags(uint64_t flags)
1780 : : {
1781 : 0 : LOCK(cs_wallet);
1782 [ # # ]: 0 : if (((flags & KNOWN_WALLET_FLAGS) >> 32) ^ (flags >> 32)) {
1783 : : // contains unknown non-tolerable wallet flags
1784 : : return false;
1785 : : }
1786 : 0 : m_wallet_flags = flags;
1787 : :
1788 : 0 : return true;
1789 : 0 : }
1790 : :
1791 : 0 : void CWallet::InitWalletFlags(uint64_t flags)
1792 : : {
1793 : 0 : LOCK(cs_wallet);
1794 : :
1795 : : // We should never be writing unknown non-tolerable wallet flags
1796 [ # # ]: 0 : assert(((flags & KNOWN_WALLET_FLAGS) >> 32) == (flags >> 32));
1797 : : // This should only be used once, when creating a new wallet - so current flags are expected to be blank
1798 [ # # ]: 0 : assert(m_wallet_flags == 0);
1799 : :
1800 [ # # # # : 0 : if (!WalletBatch(GetDatabase()).WriteWalletFlags(flags)) {
# # ]
1801 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": writing wallet flags failed");
1802 : : }
1803 : :
1804 [ # # # # ]: 0 : if (!LoadWalletFlags(flags)) assert(false);
1805 : 0 : }
1806 : :
1807 : 0 : uint64_t CWallet::GetWalletFlags() const
1808 : : {
1809 : 0 : return m_wallet_flags;
1810 : : }
1811 : :
1812 : 18225 : void CWallet::MaybeUpdateBirthTime(int64_t time)
1813 : : {
1814 [ + + ]: 18225 : int64_t birthtime = m_birth_time.load();
1815 [ + + ]: 18225 : if (time < birthtime) {
1816 : 8299 : m_birth_time = time;
1817 : : }
1818 : 18225 : }
1819 : :
1820 : 0 : bool CWallet::SubmitTxMemoryPoolAndRelay(CWalletTx& wtx,
1821 : : std::string& err_string,
1822 : : node::TxBroadcast broadcast_method) const
1823 : : {
1824 : 0 : AssertLockHeld(cs_wallet);
1825 : :
1826 : : // Can't relay if wallet is not broadcasting
1827 [ # # ]: 0 : if (!GetBroadcastTransactions()) return false;
1828 : : // Don't relay abandoned transactions
1829 [ # # ]: 0 : if (wtx.isAbandoned()) return false;
1830 : : // Don't try to submit coinbase transactions. These would fail anyway but would
1831 : : // cause log spam.
1832 [ # # ]: 0 : if (wtx.IsCoinBase()) return false;
1833 : : // Don't try to submit conflicted or confirmed transactions.
1834 [ # # ]: 0 : if (GetTxDepthInMainChain(wtx) != 0) return false;
1835 : :
1836 : 0 : const char* what{""};
1837 [ # # # # ]: 0 : switch (broadcast_method) {
1838 : 0 : case node::TxBroadcast::MEMPOOL_AND_BROADCAST_TO_ALL:
1839 : 0 : what = "to mempool and for broadcast to peers";
1840 : 0 : break;
1841 : 0 : case node::TxBroadcast::MEMPOOL_NO_BROADCAST:
1842 : 0 : what = "to mempool without broadcast";
1843 : 0 : break;
1844 : 0 : case node::TxBroadcast::NO_MEMPOOL_PRIVATE_BROADCAST:
1845 : 0 : what = "for private broadcast without adding to the mempool";
1846 : 0 : break;
1847 : : }
1848 [ # # ]: 0 : WalletLogPrintf("Submitting wtx %s %s\n", wtx.GetHash().ToString(), what);
1849 : : // We must set TxStateInMempool here. Even though it will also be set later by the
1850 : : // entered-mempool callback, if we did not there would be a race where a
1851 : : // user could call sendmoney in a loop and hit spurious out of funds errors
1852 : : // because we think that this newly generated transaction's change is
1853 : : // unavailable as we're not yet aware that it is in the mempool.
1854 : : //
1855 : : // If broadcast fails for any reason, trying to set wtx.m_state here would be incorrect.
1856 : : // If transaction was previously in the mempool, it should be updated when
1857 : : // TransactionRemovedFromMempool fires.
1858 [ # # # # ]: 0 : bool ret = chain().broadcastTransaction(wtx.GetTx(), m_default_max_tx_fee, broadcast_method, err_string);
1859 [ # # # # ]: 0 : if (ret) wtx.m_state = TxStateInMempool{};
1860 : : return ret;
1861 : : }
1862 : :
1863 : 0 : std::set<Txid> CWallet::GetTxConflicts(const CWalletTx& wtx) const
1864 : : {
1865 : 0 : AssertLockHeld(cs_wallet);
1866 : :
1867 : 0 : const Txid myHash{wtx.GetHash()};
1868 : 0 : std::set<Txid> result{GetConflicts(myHash)};
1869 : 0 : result.erase(myHash);
1870 : 0 : return result;
1871 : : }
1872 : :
1873 : 0 : bool CWallet::ShouldResend() const
1874 : : {
1875 : : // Don't attempt to resubmit if the wallet is configured to not broadcast
1876 [ # # ]: 0 : if (!fBroadcastTransactions) return false;
1877 : :
1878 : : // During reindex, importing and IBD, old wallet transactions become
1879 : : // unconfirmed. Don't resend them as that would spam other nodes.
1880 : : // We only allow forcing mempool submission when not relaying to avoid this spam.
1881 [ # # ]: 0 : if (!chain().isReadyToBroadcast()) return false;
1882 : :
1883 : : // Do this infrequently and randomly to avoid giving away
1884 : : // that these are our transactions.
1885 [ # # ]: 0 : if (NodeClock::now() < m_next_resend) return false;
1886 : :
1887 : : return true;
1888 : : }
1889 : :
1890 : 9683 : NodeClock::time_point CWallet::GetDefaultNextResend() { return FastRandomContext{}.rand_uniform_delay(NodeClock::now() + 12h, 24h); }
1891 : :
1892 : : // Resubmit transactions from the wallet to the mempool, optionally asking the
1893 : : // mempool to relay them. On startup, we will do this for all unconfirmed
1894 : : // transactions but will not ask the mempool to relay them. We do this on startup
1895 : : // to ensure that our own mempool is aware of our transactions. There
1896 : : // is a privacy side effect here as not broadcasting on startup also means that we won't
1897 : : // inform the world of our wallet's state, particularly if the wallet (or node) is not
1898 : : // yet synced.
1899 : : //
1900 : : // Otherwise this function is called periodically in order to relay our unconfirmed txs.
1901 : : // We do this on a random timer to slightly obfuscate which transactions
1902 : : // come from our wallet.
1903 : : //
1904 : : // TODO: Ideally, we'd only resend transactions that we think should have been
1905 : : // mined in the most recent block. Any transaction that wasn't in the top
1906 : : // blockweight of transactions in the mempool shouldn't have been mined,
1907 : : // and so is probably just sitting in the mempool waiting to be confirmed.
1908 : : // Rebroadcasting does nothing to speed up confirmation and only damages
1909 : : // privacy.
1910 : : //
1911 : : // The `force` option results in all unconfirmed transactions being submitted to
1912 : : // the mempool. This does not necessarily result in those transactions being relayed,
1913 : : // that depends on the `broadcast_method` option. Periodic rebroadcast uses the pattern
1914 : : // broadcast_method=TxBroadcast::MEMPOOL_AND_BROADCAST_TO_ALL force=false, while loading into
1915 : : // the mempool (on start, or after import) uses
1916 : : // broadcast_method=TxBroadcast::MEMPOOL_NO_BROADCAST force=true.
1917 : 0 : void CWallet::ResubmitWalletTransactions(node::TxBroadcast broadcast_method, bool force)
1918 : : {
1919 : : // Don't attempt to resubmit if the wallet is configured to not broadcast,
1920 : : // even if forcing.
1921 [ # # ]: 0 : if (!fBroadcastTransactions) return;
1922 : :
1923 : 0 : int submitted_tx_count = 0;
1924 : :
1925 : 0 : { // cs_wallet scope
1926 : 0 : LOCK(cs_wallet);
1927 : :
1928 : : // First filter for the transactions we want to rebroadcast.
1929 : : // We use a set with WalletTxOrderComparator so that rebroadcasting occurs in insertion order
1930 : 0 : std::set<CWalletTx*, WalletTxOrderComparator> to_submit;
1931 [ # # # # ]: 0 : for (auto& [txid, wtx] : mapWallet) {
1932 : : // Only rebroadcast unconfirmed txs
1933 [ # # ]: 0 : if (!wtx.isUnconfirmed()) continue;
1934 : :
1935 : : // Attempt to rebroadcast all txes more than 5 minutes older than
1936 : : // the last block, or all txs if forcing.
1937 [ # # # # ]: 0 : if (!force && wtx.nTimeReceived > m_best_block_time - 5 * 60) continue;
1938 [ # # ]: 0 : to_submit.insert(&wtx);
1939 : : }
1940 : : // Now try submitting the transactions to the memory pool and (optionally) relay them.
1941 [ # # ]: 0 : for (auto wtx : to_submit) {
1942 [ # # ]: 0 : std::string unused_err_string;
1943 [ # # # # ]: 0 : if (SubmitTxMemoryPoolAndRelay(*wtx, unused_err_string, broadcast_method)) ++submitted_tx_count;
1944 : 0 : }
1945 [ # # ]: 0 : } // cs_wallet
1946 : :
1947 [ # # ]: 0 : if (submitted_tx_count > 0) {
1948 : 0 : WalletLogPrintf("%s: resubmit %u unconfirmed transactions\n", __func__, submitted_tx_count);
1949 : : }
1950 : : }
1951 : :
1952 : : /** @} */ // end of mapWallet
1953 : :
1954 : 0 : void MaybeResendWalletTxs(WalletContext& context)
1955 : : {
1956 [ # # ]: 0 : for (const std::shared_ptr<CWallet>& pwallet : GetWallets(context)) {
1957 [ # # # # ]: 0 : if (!pwallet->ShouldResend()) continue;
1958 [ # # ]: 0 : pwallet->ResubmitWalletTransactions(node::TxBroadcast::MEMPOOL_AND_BROADCAST_TO_ALL, /*force=*/false);
1959 [ # # ]: 0 : pwallet->SetNextResend();
1960 : : }
1961 : 0 : }
1962 : :
1963 : :
1964 : 1032 : bool CWallet::SignTransaction(CMutableTransaction& tx) const
1965 : : {
1966 : 1032 : AssertLockHeld(cs_wallet);
1967 : :
1968 : : // Build coins map
1969 : 1032 : std::map<COutPoint, Coin> coins;
1970 [ + + ]: 37579 : for (auto& input : tx.vin) {
1971 : 36547 : const auto mi = mapWallet.find(input.prevout.hash);
1972 [ + - + - : 73094 : if(mi == mapWallet.end() || input.prevout.n >= mi->second.GetTx()->vout.size()) {
- + + - +
- ]
1973 : : return false;
1974 : : }
1975 [ + - ]: 36547 : const CWalletTx& wtx = mi->second;
1976 [ + - ]: 36547 : int prev_height = wtx.state<TxStateConfirmed>() ? wtx.state<TxStateConfirmed>()->confirmed_block_height : 0;
1977 [ + - + - : 73094 : coins[input.prevout] = Coin(wtx.GetTx()->vout[input.prevout.n], prev_height, wtx.IsCoinBase());
+ - + - ]
1978 : : }
1979 [ + - ]: 1032 : std::map<int, bilingual_str> input_errors;
1980 [ + - ]: 1032 : return SignTransaction(tx, coins, SIGHASH_DEFAULT, input_errors);
1981 : 2064 : }
1982 : :
1983 : 1032 : bool CWallet::SignTransaction(CMutableTransaction& tx, const std::map<COutPoint, Coin>& coins, int sighash, std::map<int, bilingual_str>& input_errors) const
1984 : : {
1985 : : // Try to sign with all ScriptPubKeyMans
1986 [ + - ]: 6042 : for (ScriptPubKeyMan* spk_man : GetAllScriptPubKeyMans()) {
1987 : : // spk_man->SignTransaction will return true if the transaction is complete,
1988 : : // so we can exit early and return true if that happens
1989 [ + - + + ]: 6042 : if (spk_man->SignTransaction(tx, coins, sighash, input_errors)) {
1990 : 1032 : return true;
1991 : : }
1992 : : }
1993 : :
1994 : : // At this point, one input was not fully signed otherwise we would have exited already
1995 : 0 : return false;
1996 : : }
1997 : :
1998 : 0 : std::optional<PSBTError> CWallet::FillPSBT(PartiallySignedTransaction& psbtx, const common::PSBTFillOptions& options, bool& complete, size_t* n_signed) const
1999 : : {
2000 [ # # ]: 0 : if (n_signed) {
2001 : 0 : *n_signed = 0;
2002 : : }
2003 : 0 : LOCK(cs_wallet);
2004 : : // Get all of the previous transactions
2005 [ # # ]: 0 : for (PSBTInput& input : psbtx.inputs) {
2006 [ # # # # ]: 0 : if (PSBTInputSigned(input)) {
2007 : 0 : continue;
2008 : : }
2009 : :
2010 : : // If we have no utxo, grab it from the wallet.
2011 [ # # ]: 0 : if (!input.non_witness_utxo) {
2012 : 0 : const Txid& txhash = input.prev_txid;
2013 : 0 : const auto it = mapWallet.find(txhash);
2014 [ # # ]: 0 : if (it != mapWallet.end()) {
2015 [ # # ]: 0 : const CWalletTx& wtx = it->second;
2016 : : // We only need the non_witness_utxo, which is a superset of the witness_utxo.
2017 : : // The signing code will switch to the smaller witness_utxo if this is ok.
2018 [ # # # # ]: 0 : input.non_witness_utxo = wtx.GetTx();
2019 : : }
2020 : : }
2021 : : }
2022 : :
2023 [ # # ]: 0 : std::optional<PrecomputedTransactionData> txdata_res = PrecomputePSBTData(psbtx);
2024 [ # # ]: 0 : if (!txdata_res) {
2025 : 0 : return PSBTError::INVALID_TX;
2026 : : }
2027 [ # # ]: 0 : const PrecomputedTransactionData& txdata = *txdata_res;
2028 : :
2029 : : // Fill in information from ScriptPubKeyMans
2030 [ # # # # ]: 0 : for (ScriptPubKeyMan* spk_man : GetAllScriptPubKeyMans()) {
2031 : 0 : int n_signed_this_spkm = 0;
2032 [ # # ]: 0 : const auto error{spk_man->FillPSBT(psbtx, txdata, options, &n_signed_this_spkm)};
2033 [ # # ]: 0 : if (error) {
2034 : 0 : return error;
2035 : : }
2036 : :
2037 [ # # ]: 0 : if (n_signed) {
2038 : 0 : (*n_signed) += n_signed_this_spkm;
2039 : : }
2040 : 0 : }
2041 : :
2042 [ # # ]: 0 : RemoveUnnecessaryTransactions(psbtx);
2043 : :
2044 : : // Complete if every input is now signed
2045 : 0 : complete = true;
2046 [ # # # # ]: 0 : for (size_t i = 0; i < psbtx.inputs.size(); ++i) {
2047 [ # # ]: 0 : complete &= PSBTInputSignedAndVerified(psbtx, i, &txdata);
2048 : : }
2049 : :
2050 : 0 : return {};
2051 [ # # ]: 0 : }
2052 : :
2053 : 0 : SigningResult CWallet::SignMessage(const std::string& message, const PKHash& pkhash, std::string& str_sig) const
2054 : : {
2055 : 0 : SignatureData sigdata;
2056 [ # # ]: 0 : CScript script_pub_key = GetScriptForDestination(pkhash);
2057 [ # # ]: 0 : for (const auto& spk_man_pair : m_spk_managers) {
2058 [ # # # # ]: 0 : if (spk_man_pair.second->CanProvide(script_pub_key, sigdata)) {
2059 [ # # ]: 0 : LOCK(cs_wallet); // DescriptorScriptPubKeyMan calls IsLocked which can lock cs_wallet in a deadlocking order
2060 [ # # # # ]: 0 : return spk_man_pair.second->SignMessage(message, pkhash, str_sig);
2061 : 0 : }
2062 : : }
2063 : : return SigningResult::PRIVATE_KEY_NOT_AVAILABLE;
2064 : 0 : }
2065 : :
2066 : 1515 : OutputType CWallet::TransactionChangeType(const std::optional<OutputType>& change_type, const std::vector<CRecipient>& vecSend) const
2067 : : {
2068 : : // If -changetype is specified, always use that change type.
2069 [ + + ]: 1515 : if (change_type) {
2070 : 943 : return *change_type;
2071 : : }
2072 : :
2073 : : // if m_default_address_type is legacy, use legacy address as change.
2074 [ + - ]: 572 : if (m_default_address_type == OutputType::LEGACY) {
2075 : : return OutputType::LEGACY;
2076 : : }
2077 : :
2078 : 572 : bool any_tr{false};
2079 : 572 : bool any_wpkh{false};
2080 : 572 : bool any_sh{false};
2081 : 572 : bool any_pkh{false};
2082 : :
2083 [ + + ]: 8033 : for (const auto& recipient : vecSend) {
2084 [ + - ]: 7461 : if (std::get_if<WitnessV1Taproot>(&recipient.dest)) {
2085 : : any_tr = true;
2086 [ + - ]: 6159 : } else if (std::get_if<WitnessV0KeyHash>(&recipient.dest)) {
2087 : : any_wpkh = true;
2088 [ + - ]: 12684 : } else if (std::get_if<ScriptHash>(&recipient.dest)) {
2089 : : any_sh = true;
2090 [ + - ]: 10703 : } else if (std::get_if<PKHash>(&recipient.dest)) {
2091 : 596 : any_pkh = true;
2092 : : }
2093 : : }
2094 : :
2095 : 572 : const bool has_bech32m_spkman(GetScriptPubKeyMan(OutputType::BECH32M, /*internal=*/true));
2096 [ + + ]: 572 : if (has_bech32m_spkman && any_tr) {
2097 : : // Currently tr is the only type supported by the BECH32M spkman
2098 : : return OutputType::BECH32M;
2099 : : }
2100 : 428 : const bool has_bech32_spkman(GetScriptPubKeyMan(OutputType::BECH32, /*internal=*/true));
2101 [ + + ]: 428 : if (has_bech32_spkman && any_wpkh) {
2102 : : // Currently wpkh is the only type supported by the BECH32 spkman
2103 : : return OutputType::BECH32;
2104 : : }
2105 : 359 : const bool has_p2sh_segwit_spkman(GetScriptPubKeyMan(OutputType::P2SH_SEGWIT, /*internal=*/true));
2106 [ + + ]: 359 : if (has_p2sh_segwit_spkman && any_sh) {
2107 : : // Currently sh_wpkh is the only type supported by the P2SH_SEGWIT spkman
2108 : : // As of 2021 about 80% of all SH are wrapping WPKH, so use that
2109 : : return OutputType::P2SH_SEGWIT;
2110 : : }
2111 : 216 : const bool has_legacy_spkman(GetScriptPubKeyMan(OutputType::LEGACY, /*internal=*/true));
2112 [ + + ]: 216 : if (has_legacy_spkman && any_pkh) {
2113 : : // Currently pkh is the only type supported by the LEGACY spkman
2114 : : return OutputType::LEGACY;
2115 : : }
2116 : :
2117 [ - + ]: 174 : if (has_bech32m_spkman) {
2118 : : return OutputType::BECH32M;
2119 : : }
2120 [ # # ]: 0 : if (has_bech32_spkman) {
2121 : : return OutputType::BECH32;
2122 : : }
2123 : : // else use m_default_address_type for change
2124 : 0 : return m_default_address_type;
2125 : : }
2126 : :
2127 : 0 : void CWallet::CommitTransaction(
2128 : : CTransactionRef tx,
2129 : : std::optional<Txid> replaces_txid,
2130 : : std::optional<std::string> comment,
2131 : : std::optional<std::string> comment_to,
2132 : : const std::vector<std::string>& messages,
2133 : : const std::vector<std::string>& payment_requests
2134 : : )
2135 : : {
2136 : 0 : LOCK(cs_wallet);
2137 [ # # # # : 0 : WalletLogPrintf("CommitTransaction:\n%s\n", util::RemoveSuffixView(tx->ToString(), "\n"));
# # ]
2138 : :
2139 : : // Add tx to wallet, because if it has change it's also ours,
2140 : : // otherwise just for transaction history.
2141 [ # # # # : 0 : CWalletTx* wtx = AddToWallet(tx, TxStateInactive{}, [&](CWalletTx& wtx, bool new_tx) {
# # # # ]
2142 [ # # ]: 0 : if (replaces_txid) wtx.m_replaces_txid = replaces_txid;
2143 [ # # ]: 0 : if (comment) wtx.m_comment = comment;
2144 [ # # ]: 0 : if (comment_to) wtx.m_comment_to = comment_to;
2145 [ # # ]: 0 : if (!messages.empty()) wtx.m_messages = messages;
2146 [ # # ]: 0 : if (!payment_requests.empty()) wtx.m_payment_requests = payment_requests;
2147 : 0 : return true;
2148 : : });
2149 : :
2150 : : // wtx can only be null if the db write failed.
2151 [ # # ]: 0 : if (!wtx) {
2152 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": Wallet db error, transaction commit failed");
2153 : : }
2154 : :
2155 : : // Notify that old coins are spent
2156 [ # # ]: 0 : for (const CTxIn& txin : tx->vin) {
2157 [ # # ]: 0 : CWalletTx &coin = mapWallet.at(txin.prevout.hash);
2158 : 0 : coin.MarkDirty();
2159 [ # # # # ]: 0 : NotifyTransactionChanged(coin.GetHash(), CT_UPDATED);
2160 : : }
2161 : :
2162 [ # # ]: 0 : if (!fBroadcastTransactions) {
2163 : : // Don't submit tx to the mempool
2164 [ # # ]: 0 : return;
2165 : : }
2166 : :
2167 [ # # ]: 0 : std::string err_string;
2168 [ # # # # ]: 0 : if (!SubmitTxMemoryPoolAndRelay(*wtx, err_string, node::TxBroadcast::MEMPOOL_AND_BROADCAST_TO_ALL)) {
2169 [ # # ]: 0 : WalletLogPrintf("CommitTransaction(): Transaction cannot be broadcast immediately, %s\n", err_string);
2170 : : // TODO: if we expect the failure to be long term or permanent, instead delete wtx from the wallet and return failure.
2171 : : }
2172 [ # # ]: 0 : }
2173 : :
2174 : 0 : DBErrors CWallet::PopulateWalletFromDB(bilingual_str& error, std::vector<bilingual_str>& warnings)
2175 : : {
2176 : 0 : LOCK(cs_wallet);
2177 : :
2178 [ # # ]: 0 : Assert(m_spk_managers.empty());
2179 [ # # ]: 0 : Assert(m_wallet_flags == 0);
2180 [ # # # # ]: 0 : DBErrors nLoadWalletRet = WalletBatch(GetDatabase()).LoadWallet(this);
2181 : :
2182 [ # # ]: 0 : if (m_spk_managers.empty()) {
2183 [ # # ]: 0 : assert(m_external_spk_managers.empty());
2184 [ # # ]: 0 : assert(m_internal_spk_managers.empty());
2185 : : }
2186 : :
2187 [ # # ]: 0 : const auto wallet_file = m_database->Filename();
2188 [ # # # # : 0 : switch (nLoadWalletRet) {
# # # # #
# ]
2189 : : case DBErrors::LOAD_OK:
2190 : : break;
2191 : 0 : case DBErrors::NONCRITICAL_ERROR:
2192 [ # # ]: 0 : warnings.push_back(strprintf(_("Error reading %s! All keys read correctly, but transaction data"
2193 : : " or address metadata may be missing or incorrect."),
2194 : : wallet_file));
2195 : 0 : break;
2196 : 0 : case DBErrors::NEED_RESCAN:
2197 [ # # ]: 0 : warnings.push_back(strprintf(_("Error reading %s! Transaction data may be missing or incorrect."
2198 : : " Rescanning wallet."), wallet_file));
2199 : 0 : break;
2200 : 0 : case DBErrors::CORRUPT:
2201 [ # # ]: 0 : error = strprintf(_("Error loading %s: Wallet corrupted"), wallet_file);
2202 : 0 : break;
2203 : 0 : case DBErrors::TOO_NEW:
2204 [ # # ]: 0 : error = strprintf(_("Error loading %s: Wallet requires newer version of %s"), wallet_file, CLIENT_NAME);
2205 : 0 : break;
2206 : 0 : case DBErrors::EXTERNAL_SIGNER_SUPPORT_REQUIRED:
2207 [ # # ]: 0 : error = strprintf(_("Error loading %s: External signer wallet being loaded without external signer support compiled"), wallet_file);
2208 : 0 : break;
2209 : 0 : case DBErrors::UNKNOWN_DESCRIPTOR:
2210 [ # # ]: 0 : error = strprintf(_("Unrecognized descriptor found. Loading wallet %s\n\n"
2211 : : "The wallet might have been created on a newer version.\n"
2212 : 0 : "Please try running the latest software version.\n"), wallet_file);
2213 : 0 : break;
2214 : 0 : case DBErrors::UNEXPECTED_LEGACY_ENTRY:
2215 [ # # ]: 0 : error = strprintf(_("Unexpected legacy entry in descriptor wallet found. Loading wallet %s\n\n"
2216 : 0 : "The wallet might have been tampered with or created with malicious intent.\n"), wallet_file);
2217 : 0 : break;
2218 : 0 : case DBErrors::LEGACY_WALLET:
2219 [ # # ]: 0 : error = strprintf(_("Error loading %s: Wallet is a legacy wallet. Please migrate to a descriptor wallet using the migration tool (migratewallet RPC)."), wallet_file);
2220 : 0 : break;
2221 : 0 : case DBErrors::LOAD_FAIL:
2222 [ # # ]: 0 : error = strprintf(_("Error loading %s"), wallet_file);
2223 : 0 : break;
2224 : : } // no default case, so the compiler can warn about missing cases
2225 : 0 : return nLoadWalletRet;
2226 [ # # ]: 0 : }
2227 : :
2228 : 0 : util::Result<void> CWallet::RemoveTxs(std::vector<Txid>& txs_to_remove)
2229 : : {
2230 : 0 : AssertLockHeld(cs_wallet);
2231 [ # # ]: 0 : bilingual_str str_err; // future: make RunWithinTxn return a util::Result
2232 [ # # # # ]: 0 : bool was_txn_committed = RunWithinTxn(GetDatabase(), /*process_desc=*/"remove transactions", [&](WalletBatch& batch) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
2233 : 0 : util::Result<void> result{RemoveTxs(batch, txs_to_remove)};
2234 [ # # # # ]: 0 : if (!result) str_err = util::ErrorString(result);
2235 : 0 : return result.has_value();
2236 : 0 : });
2237 [ # # # # ]: 0 : if (!str_err.empty()) return util::Error{str_err};
2238 [ # # # # ]: 0 : if (!was_txn_committed) return util::Error{_("Error starting/committing db txn for wallet transactions removal process")};
2239 : 0 : return {}; // all good
2240 : 0 : }
2241 : :
2242 : 0 : util::Result<void> CWallet::RemoveTxs(WalletBatch& batch, std::vector<Txid>& txs_to_remove)
2243 : : {
2244 : 0 : AssertLockHeld(cs_wallet);
2245 [ # # ]: 0 : if (!batch.HasActiveTxn()) return util::Error{strprintf(_("The transactions removal process can only be executed within a db txn"))};
2246 : :
2247 : : // Check for transaction existence and remove entries from disk
2248 : 0 : std::vector<decltype(mapWallet)::const_iterator> erased_txs;
2249 : 0 : bilingual_str str_err;
2250 [ # # ]: 0 : for (const Txid& hash : txs_to_remove) {
2251 : 0 : auto it_wtx = mapWallet.find(hash);
2252 [ # # ]: 0 : if (it_wtx == mapWallet.end()) {
2253 [ # # # # ]: 0 : return util::Error{strprintf(_("Transaction %s does not belong to this wallet"), hash.GetHex())};
2254 : : }
2255 [ # # # # ]: 0 : if (!batch.EraseTx(hash)) {
2256 [ # # # # ]: 0 : return util::Error{strprintf(_("Failure removing transaction: %s"), hash.GetHex())};
2257 : : }
2258 [ # # ]: 0 : erased_txs.emplace_back(it_wtx);
2259 : : }
2260 : :
2261 : : // Register callback to update the memory state only when the db txn is actually dumped to disk
2262 [ # # # # : 0 : batch.RegisterTxnListener({.on_commit=[&, erased_txs]() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
# # ]
2263 : : // Update the in-memory state and notify upper layers about the removals
2264 [ # # ]: 0 : for (const auto& it : erased_txs) {
2265 : 0 : const Txid hash{it->first};
2266 : 0 : wtxOrdered.erase(it->second.m_it_wtxOrdered);
2267 [ # # # # ]: 0 : for (const auto& txin : it->second.GetTx()->vin) {
2268 : 0 : auto range = mapTxSpends.equal_range(txin.prevout);
2269 [ # # ]: 0 : for (auto iter = range.first; iter != range.second; ++iter) {
2270 [ # # ]: 0 : if (iter->second == hash) {
2271 : 0 : mapTxSpends.erase(iter);
2272 : 0 : break;
2273 : : }
2274 : : }
2275 : : }
2276 [ # # # # : 0 : for (unsigned int i = 0; i < it->second.GetTx()->vout.size(); ++i) {
# # ]
2277 : 0 : m_txos.erase(COutPoint(hash, i));
2278 : : }
2279 : 0 : mapWallet.erase(it);
2280 : 0 : NotifyTransactionChanged(hash, CT_DELETED);
2281 : : }
2282 : :
2283 : 0 : MarkDirty();
2284 : 0 : }, .on_abort={}});
2285 : :
2286 : 0 : return {};
2287 [ # # # # ]: 0 : }
2288 : :
2289 : 165389 : bool CWallet::SetAddressBookWithDB(WalletBatch& batch, const CTxDestination& address, const std::string& strName, const std::optional<AddressPurpose>& new_purpose)
2290 : : {
2291 : 165389 : bool fUpdated = false;
2292 : 165389 : bool is_mine;
2293 : 165389 : std::optional<AddressPurpose> purpose;
2294 : 165389 : {
2295 : 165389 : LOCK(cs_wallet);
2296 : 165389 : std::map<CTxDestination, CAddressBookData>::iterator mi = m_address_book.find(address);
2297 [ + + - + ]: 165389 : fUpdated = mi != m_address_book.end() && !mi->second.IsChange();
2298 : :
2299 [ + + + - ]: 165389 : CAddressBookData& record = mi != m_address_book.end() ? mi->second : m_address_book[address];
2300 [ - + ]: 330778 : record.SetLabel(strName);
2301 [ + - ]: 165389 : is_mine = IsMine(address);
2302 [ + - ]: 165389 : if (new_purpose) { /* update purpose only if requested */
2303 : 165389 : record.purpose = new_purpose;
2304 : : }
2305 [ + - ]: 165389 : purpose = record.purpose;
2306 : 0 : }
2307 : :
2308 : 165389 : const std::string& encoded_dest = EncodeDestination(address);
2309 [ + - + - : 330778 : if (new_purpose && !batch.WritePurpose(encoded_dest, PurposeToString(*new_purpose))) {
+ - - + -
+ ]
2310 [ # # ]: 0 : WalletLogPrintf("Error: fail to write address book 'purpose' entry\n");
2311 : : return false;
2312 : : }
2313 [ + - - + ]: 165389 : if (!batch.WriteName(encoded_dest, strName)) {
2314 [ # # ]: 0 : WalletLogPrintf("Error: fail to write address book 'name' entry\n");
2315 : : return false;
2316 : : }
2317 : :
2318 : : // In very old wallets, address purpose may not be recorded so we derive it from IsMine
2319 : 330778 : NotifyAddressBookChanged(address, strName, is_mine,
2320 [ + - + - ]: 330778 : purpose.value_or(is_mine ? AddressPurpose::RECEIVE : AddressPurpose::SEND),
2321 [ + + - + ]: 330715 : (fUpdated ? CT_UPDATED : CT_NEW));
2322 : : return true;
2323 : 165389 : }
2324 : :
2325 : 165389 : bool CWallet::SetAddressBook(const CTxDestination& address, const std::string& strName, const std::optional<AddressPurpose>& purpose)
2326 : : {
2327 : 165389 : WalletBatch batch(GetDatabase());
2328 [ + - ]: 165389 : return SetAddressBookWithDB(batch, address, strName, purpose);
2329 : 165389 : }
2330 : :
2331 : 0 : bool CWallet::DelAddressBook(const CTxDestination& address)
2332 : : {
2333 [ # # ]: 0 : return RunWithinTxn(GetDatabase(), /*process_desc=*/"address book entry removal", [&](WalletBatch& batch){
2334 : 0 : return DelAddressBookWithDB(batch, address);
2335 : 0 : });
2336 : : }
2337 : :
2338 : 0 : bool CWallet::DelAddressBookWithDB(WalletBatch& batch, const CTxDestination& address)
2339 : : {
2340 : 0 : const std::string& dest = EncodeDestination(address);
2341 : 0 : {
2342 [ # # ]: 0 : LOCK(cs_wallet);
2343 : : // If we want to delete receiving addresses, we should avoid calling EraseAddressData because it will delete the previously_spent value. Could instead just erase the label so it becomes a change address, and keep the data.
2344 : : // NOTE: This isn't a problem for sending addresses because they don't have any data that needs to be kept.
2345 : : // When adding new address data, it should be considered here whether to retain or delete it.
2346 [ # # # # ]: 0 : if (IsMine(address)) {
2347 [ # # ]: 0 : WalletLogPrintf("%s called with IsMine address, NOT SUPPORTED. Please report this bug! %s\n", __func__, CLIENT_BUGREPORT);
2348 : : return false;
2349 : : }
2350 : : // Delete data rows associated with this address
2351 [ # # # # ]: 0 : if (!batch.EraseAddressData(address)) {
2352 [ # # ]: 0 : WalletLogPrintf("Error: cannot erase address book entry data\n");
2353 : : return false;
2354 : : }
2355 : :
2356 : : // Delete purpose entry
2357 [ # # # # ]: 0 : if (!batch.ErasePurpose(dest)) {
2358 [ # # ]: 0 : WalletLogPrintf("Error: cannot erase address book entry purpose\n");
2359 : : return false;
2360 : : }
2361 : :
2362 : : // Delete name entry
2363 [ # # # # ]: 0 : if (!batch.EraseName(dest)) {
2364 [ # # ]: 0 : WalletLogPrintf("Error: cannot erase address book entry name\n");
2365 : : return false;
2366 : : }
2367 : :
2368 : : // finally, remove it from the map
2369 [ # # ]: 0 : m_address_book.erase(address);
2370 : 0 : }
2371 : :
2372 : : // All good, signal changes
2373 [ # # ]: 0 : NotifyAddressBookChanged(address, "", /*is_mine=*/false, AddressPurpose::SEND, CT_DELETED);
2374 : : return true;
2375 : 0 : }
2376 : :
2377 : 0 : size_t CWallet::KeypoolCountExternalKeys() const
2378 : : {
2379 : 0 : AssertLockHeld(cs_wallet);
2380 : :
2381 : 0 : unsigned int count = 0;
2382 [ # # ]: 0 : for (auto spk_man : m_external_spk_managers) {
2383 : 0 : count += spk_man.second->GetKeyPoolSize();
2384 : : }
2385 : :
2386 : 0 : return count;
2387 : : }
2388 : :
2389 : 0 : unsigned int CWallet::GetKeyPoolSize() const
2390 : : {
2391 : 0 : AssertLockHeld(cs_wallet);
2392 : :
2393 : 0 : unsigned int count = 0;
2394 [ # # ]: 0 : for (auto spk_man : GetActiveScriptPubKeyMans()) {
2395 [ # # ]: 0 : count += spk_man->GetKeyPoolSize();
2396 : : }
2397 : 0 : return count;
2398 : : }
2399 : :
2400 : 0 : bool CWallet::TopUpKeyPool(unsigned int kpSize)
2401 : : {
2402 : 0 : LOCK(cs_wallet);
2403 : 0 : bool res = true;
2404 [ # # # # ]: 0 : for (auto spk_man : GetActiveScriptPubKeyMans()) {
2405 [ # # ]: 0 : res &= spk_man->TopUp(kpSize);
2406 : : }
2407 [ # # ]: 0 : return res;
2408 : 0 : }
2409 : :
2410 : 163680 : util::Result<CTxDestination> CWallet::GetNewDestination(const OutputType type, const std::string& label)
2411 : : {
2412 : 163680 : LOCK(cs_wallet);
2413 [ + - ]: 163680 : auto spk_man = GetScriptPubKeyMan(type, /*internal=*/false);
2414 [ - + ]: 163680 : if (!spk_man) {
2415 [ # # # # ]: 0 : return util::Error{strprintf(_("Error: No %s addresses available."), FormatOutputType(type))};
2416 : : }
2417 : :
2418 [ + - ]: 163680 : auto op_dest = spk_man->GetNewDestination(type);
2419 [ + - ]: 163680 : if (op_dest) {
2420 [ + - ]: 163680 : SetAddressBook(*op_dest, label, AddressPurpose::RECEIVE);
2421 : : }
2422 : :
2423 : 163680 : return op_dest;
2424 : 327360 : }
2425 : :
2426 : 47098 : util::Result<CTxDestination> CWallet::GetNewChangeDestination(const OutputType type)
2427 : : {
2428 : 47098 : LOCK(cs_wallet);
2429 : :
2430 [ + - ]: 47098 : ReserveDestination reservedest(this, type);
2431 [ + - ]: 47098 : auto op_dest = reservedest.GetReservedDestination(true);
2432 [ + - + - ]: 47098 : if (op_dest) reservedest.KeepDestination();
2433 : :
2434 : 47098 : return op_dest;
2435 [ + - ]: 94196 : }
2436 : :
2437 : 0 : void CWallet::MarkDestinationsDirty(const std::set<CTxDestination>& destinations) {
2438 [ # # # # ]: 0 : for (auto& entry : mapWallet) {
2439 : 0 : CWalletTx& wtx = entry.second;
2440 [ # # ]: 0 : if (wtx.m_is_cache_empty) continue;
2441 [ # # # # : 0 : for (unsigned int i = 0; i < wtx.GetTx()->vout.size(); i++) {
# # ]
2442 : 0 : CTxDestination dst;
2443 : 0 : if (ExtractDestination(wtx.GetTx()->vout[i].scriptPubKey, dst) && destinations.contains(dst)) {
[ # # # #
# # # # #
# # # ]
2444 : 0 : wtx.MarkDirty();
2445 : 0 : break;
2446 : : }
2447 : 0 : }
2448 : : }
2449 : 0 : }
2450 : :
2451 : 0 : void CWallet::ForEachAddrBookEntry(const ListAddrBookFunc& func) const
2452 : : {
2453 : 0 : AssertLockHeld(cs_wallet);
2454 [ # # ]: 0 : for (const std::pair<const CTxDestination, CAddressBookData>& item : m_address_book) {
2455 : 0 : const auto& entry = item.second;
2456 [ # # ]: 0 : func(item.first, entry.GetLabel(), entry.IsChange(), entry.purpose);
2457 : : }
2458 : 0 : }
2459 : :
2460 : 0 : std::vector<CTxDestination> CWallet::ListAddrBookAddresses(const std::optional<AddrBookFilter>& _filter) const
2461 : : {
2462 : 0 : AssertLockHeld(cs_wallet);
2463 : 0 : std::vector<CTxDestination> result;
2464 [ # # # # ]: 0 : AddrBookFilter filter = _filter ? *_filter : AddrBookFilter();
2465 [ # # ]: 0 : ForEachAddrBookEntry([&result, &filter](const CTxDestination& dest, const std::string& label, bool is_change, const std::optional<AddressPurpose>& purpose) {
2466 : : // Filter by change
2467 [ # # # # ]: 0 : if (filter.ignore_change && is_change) return;
2468 : : // Filter by label
2469 [ # # # # ]: 0 : if (filter.m_op_label && *filter.m_op_label != label) return;
2470 : : // All good
2471 : 0 : result.emplace_back(dest);
2472 : : });
2473 : 0 : return result;
2474 : 0 : }
2475 : :
2476 : 0 : std::set<std::string> CWallet::ListAddrBookLabels(const std::optional<AddressPurpose> purpose) const
2477 : : {
2478 : 0 : AssertLockHeld(cs_wallet);
2479 [ # # ]: 0 : std::set<std::string> label_set;
2480 [ # # ]: 0 : ForEachAddrBookEntry([&](const CTxDestination& _dest, const std::string& _label,
2481 : : bool _is_change, const std::optional<AddressPurpose>& _purpose) {
2482 [ # # ]: 0 : if (_is_change) return;
2483 [ # # # # ]: 0 : if (!purpose || purpose == _purpose) {
2484 : 0 : label_set.insert(_label);
2485 : : }
2486 : : });
2487 : 0 : return label_set;
2488 : 0 : }
2489 : :
2490 : 47523 : util::Result<CTxDestination> ReserveDestination::GetReservedDestination(bool internal)
2491 : : {
2492 : 47523 : m_spk_man = pwallet->GetScriptPubKeyMan(type, internal);
2493 [ - + ]: 47523 : if (!m_spk_man) {
2494 : 0 : return util::Error{strprintf(_("Error: No %s addresses available."), FormatOutputType(type))};
2495 : : }
2496 : :
2497 [ + - ]: 47523 : if (nIndex == -1) {
2498 : 47523 : int64_t index;
2499 : 47523 : auto op_address = m_spk_man->GetReservedDestination(type, internal, index);
2500 [ - + ]: 47523 : if (!op_address) return op_address;
2501 : 47523 : nIndex = index;
2502 [ + - ]: 95046 : address = *op_address;
2503 : 47523 : }
2504 : 47523 : return address;
2505 : : }
2506 : :
2507 : 47909 : void ReserveDestination::KeepDestination()
2508 : : {
2509 [ + + ]: 47909 : if (nIndex != -1) {
2510 : 47246 : m_spk_man->KeepDestination(nIndex, type);
2511 : : }
2512 : 47909 : nIndex = -1;
2513 : 47909 : address = CNoDestination();
2514 : 47909 : }
2515 : :
2516 : 48613 : void ReserveDestination::ReturnDestination()
2517 : : {
2518 [ + + ]: 48613 : if (nIndex != -1) {
2519 : 277 : m_spk_man->ReturnDestination(nIndex, fInternal, address);
2520 : : }
2521 : 48613 : nIndex = -1;
2522 : 48613 : address = CNoDestination();
2523 : 48613 : }
2524 : :
2525 : 0 : util::Result<void> CWallet::DisplayAddress(const CTxDestination& dest)
2526 : : {
2527 : 0 : CScript scriptPubKey = GetScriptForDestination(dest);
2528 [ # # # # ]: 0 : for (const auto& spk_man : GetScriptPubKeyMans(scriptPubKey)) {
2529 [ # # ]: 0 : auto signer_spk_man = dynamic_cast<ExternalSignerScriptPubKeyMan *>(spk_man);
2530 [ # # ]: 0 : if (signer_spk_man == nullptr) {
2531 : 0 : continue;
2532 : : }
2533 [ # # ]: 0 : auto signer{ExternalSignerScriptPubKeyMan::GetExternalSigner()};
2534 [ # # # # : 0 : if (!signer) throw std::runtime_error(util::ErrorString(signer).original);
# # ]
2535 [ # # ]: 0 : return signer_spk_man->DisplayAddress(dest, *signer);
2536 : 0 : }
2537 [ # # ]: 0 : return util::Error{_("There is no ScriptPubKeyManager for this address")};
2538 : 0 : }
2539 : :
2540 : 0 : void CWallet::LoadLockedCoin(const COutPoint& coin, bool persistent)
2541 : : {
2542 : 0 : AssertLockHeld(cs_wallet);
2543 : 0 : m_locked_coins.emplace(coin, persistent);
2544 : 0 : }
2545 : :
2546 : 0 : bool CWallet::LockCoin(const COutPoint& output, bool persist)
2547 : : {
2548 : 0 : AssertLockHeld(cs_wallet);
2549 : 0 : LoadLockedCoin(output, persist);
2550 [ # # ]: 0 : if (persist) {
2551 : 0 : WalletBatch batch(GetDatabase());
2552 [ # # ]: 0 : return batch.WriteLockedUTXO(output);
2553 : 0 : }
2554 : : return true;
2555 : : }
2556 : :
2557 : 0 : bool CWallet::UnlockCoin(const COutPoint& output)
2558 : : {
2559 : 0 : AssertLockHeld(cs_wallet);
2560 : 0 : auto locked_coin_it = m_locked_coins.find(output);
2561 [ # # ]: 0 : if (locked_coin_it != m_locked_coins.end()) {
2562 : 0 : bool persisted = locked_coin_it->second;
2563 : 0 : m_locked_coins.erase(locked_coin_it);
2564 [ # # ]: 0 : if (persisted) {
2565 : 0 : WalletBatch batch(GetDatabase());
2566 [ # # ]: 0 : return batch.EraseLockedUTXO(output);
2567 : 0 : }
2568 : : }
2569 : : return true;
2570 : : }
2571 : :
2572 : 0 : bool CWallet::UnlockAllCoins()
2573 : : {
2574 : 0 : AssertLockHeld(cs_wallet);
2575 : 0 : bool success = true;
2576 : 0 : WalletBatch batch(GetDatabase());
2577 [ # # # # ]: 0 : for (const auto& [coin, persistent] : m_locked_coins) {
2578 [ # # # # : 0 : if (persistent) success = success && batch.EraseLockedUTXO(coin);
# # # # ]
2579 : : }
2580 : 0 : m_locked_coins.clear();
2581 : 0 : return success;
2582 : 0 : }
2583 : :
2584 : 107534 : bool CWallet::IsLockedCoin(const COutPoint& output) const
2585 : : {
2586 : 107534 : AssertLockHeld(cs_wallet);
2587 : 107534 : return m_locked_coins.contains(output);
2588 : : }
2589 : :
2590 : 0 : void CWallet::ListLockedCoins(std::vector<COutPoint>& vOutpts) const
2591 : : {
2592 : 0 : AssertLockHeld(cs_wallet);
2593 [ # # ]: 0 : for (const auto& [coin, _] : m_locked_coins) {
2594 : 0 : vOutpts.push_back(coin);
2595 : : }
2596 : 0 : }
2597 : :
2598 : : /**
2599 : : * Compute smart timestamp for a transaction being added to the wallet.
2600 : : *
2601 : : * Logic:
2602 : : * - If sending a transaction, assign its timestamp to the current time.
2603 : : * - If receiving a transaction outside a block, assign its timestamp to the
2604 : : * current time.
2605 : : * - If receiving a transaction during a rescanning process, assign all its
2606 : : * (not already known) transactions' timestamps to the block time.
2607 : : * - If receiving a block with a future timestamp, assign all its (not already
2608 : : * known) transactions' timestamps to the current time.
2609 : : * - If receiving a block with a past timestamp, before the most recent known
2610 : : * transaction (that we care about), assign all its (not already known)
2611 : : * transactions' timestamps to the same timestamp as that most-recent-known
2612 : : * transaction.
2613 : : * - If receiving a block with a past timestamp, but after the most recent known
2614 : : * transaction, assign all its (not already known) transactions' timestamps to
2615 : : * the block time.
2616 : : *
2617 : : * For more information see CWalletTx::nTimeSmart,
2618 : : * https://bitcointalk.org/?topic=54527, or
2619 : : * https://github.com/bitcoin/bitcoin/pull/1393.
2620 : : */
2621 : 0 : unsigned int CWallet::ComputeTimeSmart(const CWalletTx& wtx, bool rescanning_old_block) const
2622 : : {
2623 : 0 : std::optional<uint256> block_hash;
2624 [ # # ]: 0 : if (auto* conf = wtx.state<TxStateConfirmed>()) {
2625 : 0 : block_hash = conf->confirmed_block_hash;
2626 [ # # ]: 0 : } else if (auto* conf = wtx.state<TxStateBlockConflicted>()) {
2627 : 0 : block_hash = conf->conflicting_block_hash;
2628 : : }
2629 : :
2630 : 0 : unsigned int nTimeSmart = wtx.nTimeReceived;
2631 [ # # ]: 0 : if (block_hash) {
2632 : 0 : int64_t blocktime;
2633 : 0 : int64_t block_max_time;
2634 [ # # ]: 0 : if (chain().findBlock(*block_hash, FoundBlock().time(blocktime).maxTime(block_max_time))) {
2635 [ # # ]: 0 : if (rescanning_old_block) {
2636 : 0 : nTimeSmart = block_max_time;
2637 : : } else {
2638 : 0 : int64_t latestNow = wtx.nTimeReceived;
2639 : 0 : int64_t latestEntry = 0;
2640 : :
2641 : : // Tolerate times up to the last timestamp in the wallet not more than 5 minutes into the future
2642 : 0 : int64_t latestTolerated = latestNow + 300;
2643 : 0 : const TxItems& txOrdered = wtxOrdered;
2644 [ # # ]: 0 : for (auto it = txOrdered.rbegin(); it != txOrdered.rend(); ++it) {
2645 : 0 : CWalletTx* const pwtx = it->second;
2646 [ # # ]: 0 : if (pwtx == &wtx) {
2647 : 0 : continue;
2648 : : }
2649 : 0 : int64_t nSmartTime;
2650 : 0 : nSmartTime = pwtx->nTimeSmart;
2651 [ # # ]: 0 : if (!nSmartTime) {
2652 : 0 : nSmartTime = pwtx->nTimeReceived;
2653 : : }
2654 [ # # ]: 0 : if (nSmartTime <= latestTolerated) {
2655 : 0 : latestEntry = nSmartTime;
2656 [ # # ]: 0 : if (nSmartTime > latestNow) {
2657 : 0 : latestNow = nSmartTime;
2658 : : }
2659 : : break;
2660 : : }
2661 : : }
2662 : :
2663 [ # # # # ]: 0 : nTimeSmart = std::max(latestEntry, std::min(blocktime, latestNow));
2664 : : }
2665 : : } else {
2666 [ # # # # : 0 : WalletLogPrintf("%s: found %s in block %s not in index\n", __func__, wtx.GetHash().ToString(), block_hash->ToString());
# # ]
2667 : : }
2668 : : }
2669 : 0 : return nTimeSmart;
2670 : : }
2671 : :
2672 : 0 : bool CWallet::SetAddressPreviouslySpent(WalletBatch& batch, const CTxDestination& dest, bool used)
2673 : : {
2674 [ # # ]: 0 : if (std::get_if<CNoDestination>(&dest))
2675 : : return false;
2676 : :
2677 [ # # ]: 0 : if (!used) {
2678 [ # # ]: 0 : if (auto* data{common::FindKey(m_address_book, dest)}) data->previously_spent = false;
2679 : 0 : return batch.WriteAddressPreviouslySpent(dest, false);
2680 : : }
2681 : :
2682 : 0 : LoadAddressPreviouslySpent(dest);
2683 : 0 : return batch.WriteAddressPreviouslySpent(dest, true);
2684 : : }
2685 : :
2686 : 0 : void CWallet::LoadAddressPreviouslySpent(const CTxDestination& dest)
2687 : : {
2688 : 0 : m_address_book[dest].previously_spent = true;
2689 : 0 : }
2690 : :
2691 : 0 : void CWallet::LoadAddressReceiveRequest(const CTxDestination& dest, const std::string& id, const std::string& request)
2692 : : {
2693 : 0 : m_address_book[dest].receive_requests[id] = request;
2694 : 0 : }
2695 : :
2696 : 0 : bool CWallet::IsAddressPreviouslySpent(const CTxDestination& dest) const
2697 : : {
2698 [ # # ]: 0 : if (auto* data{common::FindKey(m_address_book, dest)}) return data->previously_spent;
2699 : : return false;
2700 : : }
2701 : :
2702 : 0 : std::vector<std::string> CWallet::GetAddressReceiveRequests() const
2703 : : {
2704 : 0 : std::vector<std::string> values;
2705 [ # # ]: 0 : for (const auto& [dest, entry] : m_address_book) {
2706 [ # # # # ]: 0 : for (const auto& [id, request] : entry.receive_requests) {
2707 [ # # ]: 0 : values.emplace_back(request);
2708 : : }
2709 : : }
2710 : 0 : return values;
2711 : 0 : }
2712 : :
2713 : 0 : bool CWallet::SetAddressReceiveRequest(WalletBatch& batch, const CTxDestination& dest, const std::string& id, const std::string& value)
2714 : : {
2715 [ # # ]: 0 : if (!batch.WriteAddressReceiveRequest(dest, id, value)) return false;
2716 : 0 : m_address_book[dest].receive_requests[id] = value;
2717 : 0 : return true;
2718 : : }
2719 : :
2720 : 0 : bool CWallet::EraseAddressReceiveRequest(WalletBatch& batch, const CTxDestination& dest, const std::string& id)
2721 : : {
2722 [ # # ]: 0 : if (!batch.EraseAddressReceiveRequest(dest, id)) return false;
2723 : 0 : m_address_book[dest].receive_requests.erase(id);
2724 : 0 : return true;
2725 : : }
2726 : :
2727 : 0 : util::Result<fs::path> GetWalletPath(const std::string& name)
2728 : : {
2729 : 0 : const fs::path name_path = fs::PathFromString(name);
2730 : :
2731 : : // 'name' must be a normalized path, i.e. no . or .. except at the root
2732 [ # # # # ]: 0 : if (name_path != name_path.lexically_normal()) {
2733 [ # # # # ]: 0 : return util::Error{Untranslated("Wallet name given as a path must be normalized")};
2734 : : }
2735 : :
2736 : : // 'name' cannot begin with ./ or ../
2737 : 0 : if (!name_path.empty() && (*name_path.begin() == fs::PathFromString(".") || *name_path.begin() == fs::PathFromString(".."))) {
[ # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # ]
2738 [ # # # # ]: 0 : return util::Error{Untranslated("Wallet name given as a relative path cannot begin with ./ or ../, for wallets not in the walletdir, please use an absolute path.")};
2739 : : }
2740 : :
2741 : : // Disallow path at root
2742 [ # # # # : 0 : if (name_path.has_root_path() && name_path.root_path() == name_path) {
# # # # ]
2743 [ # # # # ]: 0 : return util::Error{Untranslated("Wallet name cannot be the root path")};
2744 : : }
2745 : :
2746 : : // Do some checking on wallet path. It should be either a:
2747 : : //
2748 : : // 1. Path where a directory can be created.
2749 : : // 2. Path to an existing directory.
2750 : : // 3. Path to a symlink to a directory.
2751 : : // 4. For backwards compatibility, the name of a data file in -walletdir.
2752 [ # # # # ]: 0 : const fs::path wallet_path = fsbridge::AbsPathJoin(GetWalletDir(), name_path);
2753 [ # # ]: 0 : fs::file_type path_type = fs::symlink_status(wallet_path).type();
2754 [ # # # # : 0 : if (!(path_type == fs::file_type::not_found || path_type == fs::file_type::directory ||
# # # # ]
2755 [ # # # # ]: 0 : (path_type == fs::file_type::symlink && fs::is_directory(wallet_path)) ||
2756 [ # # # # ]: 0 : (path_type == fs::file_type::regular && name_path.filename() == name_path))) {
2757 [ # # # # ]: 0 : return util::Error{Untranslated(strprintf(
2758 : : "Invalid -wallet path '%s'. -wallet path should point to a directory where wallet.dat and "
2759 : : "database/log.?????????? files can be stored, a location where such a directory could be created, "
2760 : : "or (for backwards compatibility) the name of an existing data file in -walletdir (%s)",
2761 [ # # # # ]: 0 : name, fs::quoted(fs::PathToString(GetWalletDir()))))};
2762 : : }
2763 [ # # ]: 0 : return wallet_path;
2764 : 0 : }
2765 : :
2766 : 0 : std::unique_ptr<WalletDatabase> MakeWalletDatabase(const std::string& name, const DatabaseOptions& options, DatabaseStatus& status, bilingual_str& error_string)
2767 : : {
2768 : 0 : const auto& wallet_path = GetWalletPath(name);
2769 [ # # ]: 0 : if (!wallet_path) {
2770 [ # # ]: 0 : error_string = util::ErrorString(wallet_path);
2771 : 0 : status = DatabaseStatus::FAILED_BAD_PATH;
2772 : 0 : return nullptr;
2773 : : }
2774 [ # # ]: 0 : return MakeDatabase(*wallet_path, options, status, error_string);
2775 : 0 : }
2776 : :
2777 : 0 : bool CWallet::LoadWalletArgs(std::shared_ptr<CWallet> wallet, const WalletContext& context, bilingual_str& error, std::vector<bilingual_str>& warnings)
2778 : : {
2779 : 0 : interfaces::Chain* chain = context.chain;
2780 [ # # ]: 0 : const ArgsManager& args = *Assert(context.args);
2781 : :
2782 [ # # # # : 0 : if (!args.GetArg("-addresstype", "").empty()) {
# # ]
2783 [ # # # # : 0 : std::optional<OutputType> parsed = ParseOutputType(args.GetArg("-addresstype", ""));
# # ]
2784 [ # # ]: 0 : if (!parsed) {
2785 [ # # # # : 0 : error = strprintf(_("Unknown address type '%s'"), args.GetArg("-addresstype", ""));
# # ]
2786 : 0 : return false;
2787 : : }
2788 : 0 : wallet->m_default_address_type = parsed.value();
2789 : : }
2790 : :
2791 [ # # # # : 0 : if (!args.GetArg("-changetype", "").empty()) {
# # ]
2792 [ # # # # : 0 : std::optional<OutputType> parsed = ParseOutputType(args.GetArg("-changetype", ""));
# # ]
2793 [ # # ]: 0 : if (!parsed) {
2794 [ # # # # : 0 : error = strprintf(_("Unknown change type '%s'"), args.GetArg("-changetype", ""));
# # ]
2795 : 0 : return false;
2796 : : }
2797 : 0 : wallet->m_default_change_type = parsed.value();
2798 : : }
2799 : :
2800 [ # # # # ]: 0 : if (const auto arg{args.GetArg("-mintxfee")}) {
2801 [ # # ]: 0 : std::optional<CAmount> min_tx_fee = ParseMoney(*arg);
2802 [ # # ]: 0 : if (!min_tx_fee) {
2803 [ # # # # ]: 0 : error = AmountErrMsg("mintxfee", *arg);
2804 : 0 : return false;
2805 [ # # ]: 0 : } else if (min_tx_fee.value() > HIGH_TX_FEE_PER_KB) {
2806 [ # # # # : 0 : warnings.push_back(AmountHighWarn("-mintxfee") + Untranslated(" ") +
# # ]
2807 [ # # # # ]: 0 : _("This is the minimum transaction fee you pay on every transaction."));
2808 : : }
2809 : :
2810 : 0 : wallet->m_min_fee = CFeeRate{min_tx_fee.value()};
2811 : 0 : }
2812 : :
2813 [ # # # # ]: 0 : if (const auto arg{args.GetArg("-maxapsfee")}) {
2814 [ # # ]: 0 : const std::string& max_aps_fee{*arg};
2815 [ # # ]: 0 : if (max_aps_fee == "-1") {
2816 : 0 : wallet->m_max_aps_fee = -1;
2817 [ # # # # ]: 0 : } else if (std::optional<CAmount> max_fee = ParseMoney(max_aps_fee)) {
2818 [ # # ]: 0 : if (max_fee.value() > HIGH_APS_FEE) {
2819 [ # # # # : 0 : warnings.push_back(AmountHighWarn("-maxapsfee") + Untranslated(" ") +
# # ]
2820 [ # # # # ]: 0 : _("This is the maximum transaction fee you pay (in addition to the normal fee) to prioritize partial spend avoidance over regular coin selection."));
2821 : : }
2822 : 0 : wallet->m_max_aps_fee = max_fee.value();
2823 : : } else {
2824 [ # # # # ]: 0 : error = AmountErrMsg("maxapsfee", max_aps_fee);
2825 : 0 : return false;
2826 : : }
2827 : 0 : }
2828 : :
2829 [ # # # # ]: 0 : if (const auto arg{args.GetArg("-fallbackfee")}) {
2830 [ # # ]: 0 : std::optional<CAmount> fallback_fee = ParseMoney(*arg);
2831 [ # # ]: 0 : if (!fallback_fee) {
2832 [ # # ]: 0 : error = strprintf(_("Invalid amount for %s=<amount>: '%s'"), "-fallbackfee", *arg);
2833 : 0 : return false;
2834 [ # # ]: 0 : } else if (fallback_fee.value() > HIGH_TX_FEE_PER_KB) {
2835 [ # # # # : 0 : warnings.push_back(AmountHighWarn("-fallbackfee") + Untranslated(" ") +
# # ]
2836 [ # # # # ]: 0 : _("This is the transaction fee you may pay when fee estimates are not available."));
2837 : : }
2838 : 0 : wallet->m_fallback_fee = CFeeRate{fallback_fee.value()};
2839 : 0 : }
2840 : :
2841 : : // Disable fallback fee in case value was set to 0, enable if non-null value
2842 : 0 : wallet->m_allow_fallback_fee = wallet->m_fallback_fee.GetFeePerK() != 0;
2843 : :
2844 [ # # # # ]: 0 : if (const auto arg{args.GetArg("-discardfee")}) {
2845 [ # # ]: 0 : std::optional<CAmount> discard_fee = ParseMoney(*arg);
2846 [ # # ]: 0 : if (!discard_fee) {
2847 [ # # ]: 0 : error = strprintf(_("Invalid amount for %s=<amount>: '%s'"), "-discardfee", *arg);
2848 : 0 : return false;
2849 [ # # ]: 0 : } else if (discard_fee.value() > HIGH_TX_FEE_PER_KB) {
2850 [ # # # # : 0 : warnings.push_back(AmountHighWarn("-discardfee") + Untranslated(" ") +
# # ]
2851 [ # # # # ]: 0 : _("This is the transaction fee you may discard if change is smaller than dust at this level"));
2852 : : }
2853 : 0 : wallet->m_discard_rate = CFeeRate{discard_fee.value()};
2854 : 0 : }
2855 : :
2856 [ # # # # ]: 0 : if (const auto arg{args.GetArg("-maxtxfee")}) {
2857 [ # # ]: 0 : std::optional<CAmount> max_fee = ParseMoney(*arg);
2858 [ # # ]: 0 : if (!max_fee) {
2859 [ # # # # ]: 0 : error = AmountErrMsg("maxtxfee", *arg);
2860 : 0 : return false;
2861 [ # # ]: 0 : } else if (max_fee.value() > HIGH_MAX_TX_FEE) {
2862 [ # # ]: 0 : warnings.push_back(strprintf(_("%s is set very high! Fees this large could be paid on a single transaction."), "-maxtxfee"));
2863 : : }
2864 : :
2865 [ # # # # : 0 : if (chain && CFeeRate{max_fee.value(), 1000} < chain->relayMinFee()) {
# # # # ]
2866 [ # # ]: 0 : error = strprintf(_("Invalid amount for %s=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)"),
2867 [ # # # # ]: 0 : "-maxtxfee", *arg, chain->relayMinFee().ToString());
2868 : 0 : return false;
2869 : : }
2870 : :
2871 [ # # ]: 0 : wallet->m_default_max_tx_fee = max_fee.value();
2872 : 0 : }
2873 : :
2874 [ # # # # ]: 0 : if (const auto arg{args.GetArg("-consolidatefeerate")}) {
2875 [ # # # # ]: 0 : if (std::optional<CAmount> consolidate_feerate = ParseMoney(*arg)) {
2876 : 0 : wallet->m_consolidate_feerate = CFeeRate(*consolidate_feerate);
2877 : : } else {
2878 [ # # # # ]: 0 : error = AmountErrMsg("consolidatefeerate", *arg);
2879 : 0 : return false;
2880 : : }
2881 : 0 : }
2882 : :
2883 [ # # # # ]: 0 : if (chain && chain->relayMinFee().GetFeePerK() > HIGH_TX_FEE_PER_KB) {
2884 [ # # # # : 0 : warnings.push_back(AmountHighWarn("-minrelaytxfee") + Untranslated(" ") +
# # ]
2885 [ # # ]: 0 : _("The wallet will avoid paying less than the minimum relay fee."));
2886 : : }
2887 : :
2888 : 0 : wallet->m_confirm_target = args.GetIntArg("-txconfirmtarget", DEFAULT_TX_CONFIRM_TARGET);
2889 [ # # ]: 0 : wallet->m_spend_zero_conf_change = args.GetBoolArg("-spendzeroconfchange", DEFAULT_SPEND_ZEROCONF_CHANGE);
2890 : 0 : wallet->m_signal_rbf = DEFAULT_WALLET_RBF;
2891 [ # # # # ]: 0 : if (auto value{args.GetBoolArg("-walletrbf")}) {
2892 [ # # ]: 0 : warnings.push_back(_("-walletrbf is deprecated and will be fully removed in the next release."));
2893 : 0 : wallet->m_signal_rbf = *value;
2894 : : }
2895 : :
2896 [ # # ]: 0 : wallet->m_keypool_size = std::max(args.GetIntArg("-keypool", DEFAULT_KEYPOOL_SIZE), int64_t{1});
2897 [ # # # # ]: 0 : wallet->m_notify_tx_changed_script = args.GetArg("-walletnotify", "");
2898 [ # # ]: 0 : wallet->SetBroadcastTransactions(args.GetBoolArg("-walletbroadcast", DEFAULT_WALLETBROADCAST));
2899 : :
2900 : 0 : return true;
2901 : : }
2902 : :
2903 : 0 : std::shared_ptr<CWallet> CWallet::CreateNew(WalletContext& context, const std::string& name, std::unique_ptr<WalletDatabase> database, uint64_t wallet_creation_flags, bool born_encrypted, bilingual_str& error, std::vector<bilingual_str>& warnings)
2904 : : {
2905 : 0 : interfaces::Chain* chain = context.chain;
2906 : 0 : const std::string& walletFile = database->Filename();
2907 : :
2908 : 0 : const auto start{SteadyClock::now()};
2909 : : // TODO: Can't use std::make_shared because we need a custom deleter but
2910 : : // should be possible to use std::allocate_shared.
2911 [ # # # # : 0 : std::shared_ptr<CWallet> walletInstance(new CWallet(chain, name, std::move(database)), FlushAndDeleteWallet);
# # # # ]
2912 : :
2913 [ # # # # : 0 : if (!LoadWalletArgs(walletInstance, context, error, warnings)) {
# # # # ]
2914 : 0 : return nullptr;
2915 : : }
2916 : :
2917 : : // Initialize version key.
2918 [ # # # # : 0 : if(!WalletBatch(walletInstance->GetDatabase()).WriteVersion(CLIENT_VERSION)) {
# # ]
2919 [ # # ]: 0 : error = strprintf(_("Error creating %s: Could not write version metadata."), walletFile);
2920 : 0 : return nullptr;
2921 : : }
2922 : 0 : {
2923 [ # # ]: 0 : LOCK(walletInstance->cs_wallet);
2924 : :
2925 : : // Init with passed flags.
2926 : : // Always set the cache upgrade flag as this feature is supported from the beginning.
2927 [ # # ]: 0 : walletInstance->InitWalletFlags(wallet_creation_flags | WALLET_FLAG_LAST_HARDENED_XPUB_CACHED);
2928 : :
2929 : : // Only descriptor wallets can be created
2930 [ # # # # ]: 0 : assert(walletInstance->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
2931 : :
2932 : : // Born encrypted wallets will have their keys generated later
2933 [ # # ]: 0 : if (!born_encrypted) {
2934 [ # # ]: 0 : walletInstance->SetupWalletGeneration();
2935 : : }
2936 : :
2937 [ # # ]: 0 : if (chain) {
2938 [ # # ]: 0 : std::optional<int> tip_height = chain->getHeight();
2939 [ # # ]: 0 : if (tip_height) {
2940 [ # # # # ]: 0 : walletInstance->SetLastBlockProcessed(*tip_height, chain->getBlockHash(*tip_height));
2941 : : }
2942 : : }
2943 : 0 : }
2944 : :
2945 [ # # ]: 0 : walletInstance->WalletLogPrintf("Wallet completed creation in %15dms\n", Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
2946 : :
2947 : : // Try to top up keypool. No-op if the wallet is locked.
2948 [ # # ]: 0 : walletInstance->TopUpKeyPool();
2949 : :
2950 [ # # # # : 0 : if (chain && !AttachChain(walletInstance, *chain, /*rescan_required=*/false, error, warnings)) {
# # ]
2951 [ # # ]: 0 : walletInstance->DisconnectChainNotifications();
2952 : 0 : return nullptr;
2953 : : }
2954 : :
2955 : 0 : return walletInstance;
2956 : 0 : }
2957 : :
2958 : 0 : std::shared_ptr<CWallet> CWallet::LoadExisting(WalletContext& context, const std::string& name, std::unique_ptr<WalletDatabase> database, bilingual_str& error, std::vector<bilingual_str>& warnings)
2959 : : {
2960 : 0 : interfaces::Chain* chain = context.chain;
2961 : 0 : const std::string& walletFile = database->Filename();
2962 : :
2963 : 0 : const auto start{SteadyClock::now()};
2964 [ # # # # : 0 : std::shared_ptr<CWallet> walletInstance(new CWallet(chain, name, std::move(database)), FlushAndDeleteWallet);
# # # # ]
2965 : :
2966 [ # # # # : 0 : if (!LoadWalletArgs(walletInstance, context, error, warnings)) {
# # # # ]
2967 : 0 : return nullptr;
2968 : : }
2969 : :
2970 : : // Load wallet
2971 [ # # ]: 0 : auto nLoadWalletRet = walletInstance->PopulateWalletFromDB(error, warnings);
2972 : 0 : bool rescan_required = nLoadWalletRet == DBErrors::NEED_RESCAN;
2973 [ # # # # ]: 0 : if (nLoadWalletRet != DBErrors::LOAD_OK && nLoadWalletRet != DBErrors::NONCRITICAL_ERROR && !rescan_required) {
2974 : 0 : return nullptr;
2975 : : }
2976 : :
2977 [ # # # # ]: 0 : if (walletInstance->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
2978 [ # # # # ]: 0 : for (auto spk_man : walletInstance->GetActiveScriptPubKeyMans()) {
2979 [ # # # # ]: 0 : if (spk_man->HavePrivateKeys()) {
2980 [ # # ]: 0 : warnings.push_back(strprintf(_("Warning: Private keys detected in wallet {%s} with disabled private keys"), walletFile));
2981 : 0 : break;
2982 : : }
2983 : : }
2984 : : }
2985 : :
2986 [ # # ]: 0 : walletInstance->WalletLogPrintf("Wallet completed loading in %15dms\n", Ticks<std::chrono::milliseconds>(SteadyClock::now() - start));
2987 : :
2988 : : // Try to top up keypool. No-op if the wallet is locked.
2989 [ # # ]: 0 : walletInstance->TopUpKeyPool();
2990 : :
2991 [ # # # # : 0 : if (chain && !AttachChain(walletInstance, *chain, rescan_required, error, warnings)) {
# # ]
2992 [ # # ]: 0 : walletInstance->DisconnectChainNotifications();
2993 : 0 : return nullptr;
2994 : : }
2995 : :
2996 [ # # # # ]: 0 : WITH_LOCK(walletInstance->cs_wallet, walletInstance->LogStats());
2997 : :
2998 : 0 : return walletInstance;
2999 : 0 : }
3000 : :
3001 : :
3002 : 0 : bool CWallet::AttachChain(const std::shared_ptr<CWallet>& walletInstance, interfaces::Chain& chain, const bool rescan_required, bilingual_str& error, std::vector<bilingual_str>& warnings)
3003 : : {
3004 : 0 : LOCK(walletInstance->cs_wallet);
3005 : : // allow setting the chain if it hasn't been set already but prevent changing it
3006 [ # # # # ]: 0 : assert(!walletInstance->m_chain || walletInstance->m_chain == &chain);
3007 [ # # ]: 0 : walletInstance->m_chain = &chain;
3008 : :
3009 : : // Unless allowed, ensure wallet files are not reused across chains:
3010 [ # # # # : 0 : if (!gArgs.GetBoolArg("-walletcrosschain", DEFAULT_WALLETCROSSCHAIN)) {
# # ]
3011 [ # # ]: 0 : WalletBatch batch(walletInstance->GetDatabase());
3012 : 0 : CBlockLocator locator;
3013 [ # # # # : 0 : if (batch.ReadBestBlock(locator) && locator.vHave.size() > 0 && chain.getHeight()) {
# # # # #
# ]
3014 : : // Wallet is assumed to be from another chain, if genesis block in the active
3015 : : // chain differs from the genesis block known to the wallet.
3016 [ # # ]: 0 : if (chain.getBlockHash(0) != locator.vHave.back()) {
3017 [ # # # # ]: 0 : error = Untranslated("Wallet files should not be reused across chains. Restart bitcoind with -walletcrosschain to override.");
3018 : 0 : return false;
3019 : : }
3020 : : }
3021 : 0 : }
3022 : :
3023 : : // Register wallet with validationinterface. It's done before rescan to avoid
3024 : : // missing block connections during the rescan.
3025 : : // Because of the wallet lock being held, block connection notifications are going to
3026 : : // be pending on the validation-side until lock release. Blocks that are connected while the
3027 : : // rescan is ongoing will not be processed in the rescan but with the block connected notifications,
3028 : : // so the wallet will only be completeley synced after the notifications delivery.
3029 [ # # # # ]: 0 : walletInstance->m_chain_notifications_handler = walletInstance->chain().handleNotifications(walletInstance);
3030 : :
3031 : : // If rescan_required = true, rescan_height remains equal to 0
3032 : 0 : int rescan_height = 0;
3033 [ # # ]: 0 : if (!rescan_required)
3034 : : {
3035 [ # # ]: 0 : WalletBatch batch(walletInstance->GetDatabase());
3036 : 0 : CBlockLocator locator;
3037 [ # # # # ]: 0 : if (batch.ReadBestBlock(locator)) {
3038 [ # # # # ]: 0 : if (const std::optional<int> fork_height = chain.findLocatorFork(locator)) {
3039 : 0 : rescan_height = *fork_height;
3040 : : }
3041 : : }
3042 : 0 : }
3043 : :
3044 [ # # ]: 0 : const std::optional<int> tip_height = chain.getHeight();
3045 [ # # ]: 0 : if (tip_height) {
3046 [ # # # # ]: 0 : walletInstance->SetLastBlockProcessedInMem(*tip_height, chain.getBlockHash(*tip_height));
3047 : : } else {
3048 [ # # ]: 0 : walletInstance->SetLastBlockProcessedInMem(-1, uint256());
3049 : : }
3050 : :
3051 [ # # # # ]: 0 : if (tip_height && *tip_height != rescan_height)
3052 : : {
3053 : : // No need to read and scan block if block was created before
3054 : : // our wallet birthday (as adjusted for block time variability)
3055 [ # # ]: 0 : std::optional<int64_t> time_first_key = walletInstance->m_birth_time.load();
3056 [ # # ]: 0 : if (time_first_key) {
3057 [ # # ]: 0 : FoundBlock found = FoundBlock().height(rescan_height);
3058 [ # # ]: 0 : chain.findFirstBlockWithTimeAndHeight(*time_first_key - TIMESTAMP_WINDOW, rescan_height, found);
3059 [ # # ]: 0 : if (!found.found) {
3060 : : // We were unable to find a block that had a time more recent than our earliest timestamp
3061 : : // or a height higher than the wallet was synced to, indicating that the wallet is newer than the
3062 : : // current chain tip. Skip rescanning in this case.
3063 : 0 : rescan_height = *tip_height;
3064 : : }
3065 : : }
3066 : :
3067 : : // Technically we could execute the code below in any case, but performing the
3068 : : // `while` loop below can make startup very slow, so only check blocks on disk
3069 : : // if necessary.
3070 [ # # # # : 0 : if (chain.havePruned() || chain.hasAssumedValidChain()) {
# # # # ]
3071 : 0 : int block_height = *tip_height;
3072 [ # # # # : 0 : while (block_height > 0 && chain.haveBlockOnDisk(block_height - 1) && rescan_height != block_height) {
# # # # ]
3073 : 0 : --block_height;
3074 : : }
3075 : :
3076 [ # # ]: 0 : if (rescan_height != block_height) {
3077 : : // We can't rescan beyond blocks we don't have data for, stop and throw an error.
3078 : : // This might happen if a user uses an old wallet within a pruned node
3079 : : // or if they ran -disablewallet for a longer time, then decided to re-enable
3080 : : // Exit early and print an error.
3081 : : // It also may happen if an assumed-valid chain is in use and therefore not
3082 : : // all block data is available.
3083 : : // If a block is pruned after this check, we will load the wallet,
3084 : : // but fail the rescan with a generic error.
3085 : :
3086 [ # # # # : 0 : error = chain.havePruned() ?
# # ]
3087 [ # # ]: 0 : _("Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of a pruned node)") :
3088 : : strprintf(_(
3089 : : "Error loading wallet. Wallet requires blocks to be downloaded, "
3090 : : "and software does not currently support loading wallets while "
3091 : : "blocks are being downloaded out of order when using assumeutxo "
3092 : : "snapshots. Wallet should be able to load successfully after "
3093 : 0 : "node sync reaches height %s"), block_height);
3094 : 0 : return false;
3095 : : }
3096 : : }
3097 : :
3098 [ # # # # ]: 0 : chain.initMessage(_("Rescanning…"));
3099 [ # # ]: 0 : walletInstance->WalletLogPrintf("Rescanning last %i blocks (from block %i)...\n", *tip_height - rescan_height, rescan_height);
3100 : :
3101 : 0 : {
3102 [ # # ]: 0 : WalletRescanReserver reserver(*walletInstance);
3103 [ # # # # ]: 0 : if (!reserver.reserve()) {
3104 [ # # ]: 0 : error = _("Failed to acquire rescan reserver during wallet initialization");
3105 : 0 : return false;
3106 : : }
3107 [ # # # # : 0 : ScanResult scan_res = walletInstance->Scanner().Scan(chain.getBlockHash(rescan_height), rescan_height, /*max_height=*/{}, reserver, /*save_progress=*/true);
# # ]
3108 [ # # ]: 0 : if (ScanResult::SUCCESS != scan_res.status) {
3109 [ # # ]: 0 : error = _("Failed to rescan the wallet during initialization");
3110 : 0 : return false;
3111 : : }
3112 : : // Set and update the best block record
3113 : : // Set last block scanned as the last block processed as it may be different in case of a reorg.
3114 : : // Also save the best block locator because rescanning only updates it intermittently.
3115 [ # # ]: 0 : walletInstance->SetLastBlockProcessed(*scan_res.last_scanned_height, scan_res.last_scanned_block);
3116 : 0 : }
3117 : : }
3118 : :
3119 : : return true;
3120 : 0 : }
3121 : :
3122 : 0 : const CAddressBookData* CWallet::FindAddressBookEntry(const CTxDestination& dest, bool allow_change) const
3123 : : {
3124 : 0 : const auto& address_book_it = m_address_book.find(dest);
3125 [ # # ]: 0 : if (address_book_it == m_address_book.end()) return nullptr;
3126 [ # # # # ]: 0 : if ((!allow_change) && address_book_it->second.IsChange()) {
3127 : : return nullptr;
3128 : : }
3129 : 0 : return &address_book_it->second;
3130 : : }
3131 : :
3132 : 0 : void CWallet::postInitProcess()
3133 : : {
3134 : : // Add wallet transactions that aren't already in a block to mempool
3135 : : // Do this here as mempool requires genesis block to be loaded
3136 : 0 : ResubmitWalletTransactions(node::TxBroadcast::MEMPOOL_NO_BROADCAST, /*force=*/true);
3137 : :
3138 : : // Update wallet transactions with current mempool transactions.
3139 [ # # ]: 0 : WITH_LOCK(cs_wallet, chain().requestMempoolTransactions(*this));
3140 : 0 : }
3141 : :
3142 : 0 : bool CWallet::BackupWallet(const std::string& strDest) const
3143 : : {
3144 [ # # ]: 0 : WITH_LOCK(cs_wallet, WriteBestBlock());
3145 : 0 : return GetDatabase().Backup(strDest);
3146 : : }
3147 : :
3148 : 128697 : int CWallet::GetTxDepthInMainChain(const CWalletTx& wtx) const
3149 : : {
3150 : 128697 : AssertLockHeld(cs_wallet);
3151 [ - + ]: 128697 : if (auto* conf = wtx.state<TxStateConfirmed>()) {
3152 [ - + ]: 128697 : assert(conf->confirmed_block_height >= 0);
3153 : 128697 : return GetLastBlockHeight() - conf->confirmed_block_height + 1;
3154 [ # # ]: 0 : } else if (auto* conf = wtx.state<TxStateBlockConflicted>()) {
3155 [ # # ]: 0 : assert(conf->conflicting_block_height >= 0);
3156 : 0 : return -1 * (GetLastBlockHeight() - conf->conflicting_block_height + 1);
3157 : : } else {
3158 : : return 0;
3159 : : }
3160 : : }
3161 : :
3162 : 128697 : int CWallet::GetTxBlocksToMaturity(const CWalletTx& wtx) const
3163 : : {
3164 : 128697 : AssertLockHeld(cs_wallet);
3165 : :
3166 [ - + ]: 128697 : if (!wtx.IsCoinBase()) {
3167 : : return 0;
3168 : : }
3169 : 0 : int chain_depth = GetTxDepthInMainChain(wtx);
3170 [ # # ]: 0 : assert(chain_depth >= 0); // coinbase tx should not be conflicted
3171 [ # # ]: 0 : return std::max(0, (COINBASE_MATURITY+1) - chain_depth);
3172 : : }
3173 : :
3174 : 128697 : bool CWallet::IsTxImmatureCoinBase(const CWalletTx& wtx) const
3175 : : {
3176 : 128697 : AssertLockHeld(cs_wallet);
3177 : :
3178 : : // note GetBlocksToMaturity is 0 for non-coinbase tx
3179 : 128697 : return GetTxBlocksToMaturity(wtx) > 0;
3180 : : }
3181 : :
3182 : 1215 : bool CWallet::IsLocked() const
3183 : : {
3184 [ - + ]: 1215 : if (!HasEncryptionKeys()) {
3185 : : return false;
3186 : : }
3187 : 0 : LOCK(cs_wallet);
3188 [ # # ]: 0 : return vMasterKey.empty();
3189 : 0 : }
3190 : :
3191 : 0 : bool CWallet::Lock()
3192 : : {
3193 [ # # ]: 0 : if (!HasEncryptionKeys())
3194 : : return false;
3195 : :
3196 : 0 : {
3197 [ # # ]: 0 : LOCK2(m_relock_mutex, cs_wallet);
3198 [ # # ]: 0 : if (!vMasterKey.empty()) {
3199 [ # # # # ]: 0 : memory_cleanse(vMasterKey.data(), vMasterKey.size() * sizeof(decltype(vMasterKey)::value_type));
3200 [ # # # # ]: 0 : vMasterKey.clear();
3201 : : }
3202 [ # # ]: 0 : }
3203 : :
3204 : 0 : NotifyStatusChanged(this);
3205 : 0 : return true;
3206 : : }
3207 : :
3208 : 0 : bool CWallet::Unlock(const CKeyingMaterial& vMasterKeyIn)
3209 : : {
3210 : 0 : {
3211 : 0 : LOCK(cs_wallet);
3212 [ # # ]: 0 : for (const auto& spk_man_pair : m_spk_managers) {
3213 [ # # # # ]: 0 : if (!spk_man_pair.second->CheckDecryptionKey(vMasterKeyIn)) {
3214 [ # # ]: 0 : return false;
3215 : : }
3216 : : }
3217 [ # # ]: 0 : vMasterKey = vMasterKeyIn;
3218 : 0 : }
3219 : 0 : NotifyStatusChanged(this);
3220 : 0 : return true;
3221 : : }
3222 : :
3223 : 0 : std::set<ScriptPubKeyMan*> CWallet::GetActiveScriptPubKeyMans() const
3224 : : {
3225 : 0 : std::set<ScriptPubKeyMan*> spk_mans;
3226 [ # # ]: 0 : for (bool internal : {false, true}) {
3227 [ # # ]: 0 : for (OutputType t : OUTPUT_TYPES) {
3228 [ # # ]: 0 : auto spk_man = GetScriptPubKeyMan(t, internal);
3229 [ # # ]: 0 : if (spk_man) {
3230 [ # # ]: 0 : spk_mans.insert(spk_man);
3231 : : }
3232 : : }
3233 : : }
3234 : 0 : return spk_mans;
3235 : 0 : }
3236 : :
3237 : 0 : bool CWallet::IsActiveScriptPubKeyMan(const ScriptPubKeyMan& spkm) const
3238 : : {
3239 [ # # # # ]: 0 : for (const auto& [_, ext_spkm] : m_external_spk_managers) {
3240 [ # # ]: 0 : if (ext_spkm == &spkm) return true;
3241 : : }
3242 [ # # # # ]: 0 : for (const auto& [_, int_spkm] : m_internal_spk_managers) {
3243 [ # # ]: 0 : if (int_spkm == &spkm) return true;
3244 : : }
3245 : : return false;
3246 : : }
3247 : :
3248 : 1032 : std::set<ScriptPubKeyMan*> CWallet::GetAllScriptPubKeyMans() const
3249 : : {
3250 : 1032 : std::set<ScriptPubKeyMan*> spk_mans;
3251 [ + + ]: 9288 : for (const auto& spk_man_pair : m_spk_managers) {
3252 [ + - ]: 8256 : spk_mans.insert(spk_man_pair.second.get());
3253 : : }
3254 : 1032 : return spk_mans;
3255 : 0 : }
3256 : :
3257 : 212778 : ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const OutputType& type, bool internal) const
3258 : : {
3259 [ + + ]: 212778 : const std::map<OutputType, ScriptPubKeyMan*>& spk_managers = internal ? m_internal_spk_managers : m_external_spk_managers;
3260 : 212778 : std::map<OutputType, ScriptPubKeyMan*>::const_iterator it = spk_managers.find(type);
3261 [ + - ]: 212778 : if (it == spk_managers.end()) {
3262 : : return nullptr;
3263 : : }
3264 : 212778 : return it->second;
3265 : : }
3266 : :
3267 : 38185 : std::set<ScriptPubKeyMan*> CWallet::GetScriptPubKeyMans(const CScript& script) const
3268 : : {
3269 [ + - ]: 38185 : std::set<ScriptPubKeyMan*> spk_mans;
3270 : :
3271 : : // Search the cache for relevant SPKMs instead of iterating m_spk_managers
3272 [ + - ]: 38185 : const auto& it = m_cached_spks.find(script);
3273 [ + - ]: 38185 : if (it != m_cached_spks.end()) {
3274 [ + - ]: 38185 : spk_mans.insert(it->second.begin(), it->second.end());
3275 : : }
3276 : 38185 : SignatureData sigdata;
3277 [ + - - + ]: 76370 : Assume(std::all_of(spk_mans.begin(), spk_mans.end(), [&script, &sigdata](ScriptPubKeyMan* spkm) { return spkm->CanProvide(script, sigdata); }));
3278 : :
3279 : 38185 : return spk_mans;
3280 : 38185 : }
3281 : :
3282 : 0 : ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const uint256& id) const
3283 : : {
3284 [ # # ]: 0 : if (m_spk_managers.contains(id)) {
3285 : 0 : return m_spk_managers.at(id).get();
3286 : : }
3287 : : return nullptr;
3288 : : }
3289 : :
3290 : 108944 : std::unique_ptr<SigningProvider> CWallet::GetSolvingProvider(const CScript& script) const
3291 : : {
3292 : 108944 : SignatureData sigdata;
3293 [ + - ]: 217888 : return GetSolvingProvider(script, sigdata);
3294 : 108944 : }
3295 : :
3296 : 108944 : std::unique_ptr<SigningProvider> CWallet::GetSolvingProvider(const CScript& script, SignatureData& sigdata) const
3297 : : {
3298 : : // Search the cache for relevant SPKMs instead of iterating m_spk_managers
3299 : 108944 : const auto& it = m_cached_spks.find(script);
3300 [ + + ]: 108944 : if (it != m_cached_spks.end()) {
3301 : : // All spkms for a given script must already be able to make a SigningProvider for the script, so just return the first one.
3302 [ - + ]: 108667 : Assume(it->second.at(0)->CanProvide(script, sigdata));
3303 : 108667 : return it->second.at(0)->GetSolvingProvider(script);
3304 : : }
3305 : :
3306 : 277 : return nullptr;
3307 : : }
3308 : :
3309 : 0 : std::vector<WalletDescriptor> CWallet::GetWalletDescriptors(const CScript& script) const
3310 : : {
3311 : 0 : std::vector<WalletDescriptor> descs;
3312 [ # # # # ]: 0 : for (const auto spk_man: GetScriptPubKeyMans(script)) {
3313 [ # # # # ]: 0 : if (const auto desc_spk_man = dynamic_cast<DescriptorScriptPubKeyMan*>(spk_man)) {
3314 [ # # ]: 0 : LOCK(desc_spk_man->cs_desc_man);
3315 [ # # # # ]: 0 : descs.push_back(desc_spk_man->GetWalletDescriptor());
3316 : 0 : }
3317 : : }
3318 : 0 : return descs;
3319 : 0 : }
3320 : :
3321 : 1328 : LegacyDataSPKM* CWallet::GetLegacyDataSPKM() const
3322 : : {
3323 [ + - ]: 1328 : if (IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS)) {
3324 : : return nullptr;
3325 : : }
3326 : 1328 : auto it = m_internal_spk_managers.find(OutputType::LEGACY);
3327 [ + - ]: 1328 : if (it == m_internal_spk_managers.end()) return nullptr;
3328 [ + - ]: 1328 : return dynamic_cast<LegacyDataSPKM*>(it->second);
3329 : : }
3330 : :
3331 : 18225 : void CWallet::AddScriptPubKeyMan(const uint256& id, std::unique_ptr<ScriptPubKeyMan> spkm_man)
3332 : : {
3333 : : // Add spkm_man to m_spk_managers before calling any method
3334 : : // that might access it.
3335 : 18225 : const auto& spkm = m_spk_managers[id] = std::move(spkm_man);
3336 : :
3337 : : // Update birth time if needed
3338 : 18225 : MaybeUpdateBirthTime(spkm->GetTimeFirstKey());
3339 : 18225 : }
3340 : :
3341 : 1328 : LegacyDataSPKM* CWallet::GetOrCreateLegacyDataSPKM()
3342 : : {
3343 : 1328 : SetupLegacyDataSPKM();
3344 : 1328 : return GetLegacyDataSPKM();
3345 : : }
3346 : :
3347 : 1328 : void CWallet::SetupLegacyDataSPKM()
3348 : : {
3349 [ + - + - : 1328 : if (!m_internal_spk_managers.empty() || !m_external_spk_managers.empty() || !m_spk_managers.empty() || IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS)) {
+ - - + ]
3350 : 0 : return;
3351 : : }
3352 : :
3353 : 3984 : Assert(m_database->Format() == "bdb_ro" || m_database->Format() == "sqlite-mock");
[ + - + -
+ - + - -
+ + - - -
- - ]
3354 : 1328 : std::unique_ptr<ScriptPubKeyMan> spk_manager = std::make_unique<LegacyDataSPKM>(*this);
3355 : :
3356 [ + + + - ]: 5312 : for (const auto& type : LEGACY_OUTPUT_TYPES) {
3357 [ + - ]: 3984 : m_internal_spk_managers[type] = spk_manager.get();
3358 [ + - ]: 3984 : m_external_spk_managers[type] = spk_manager.get();
3359 : : }
3360 [ + - ]: 1328 : uint256 id = spk_manager->GetID();
3361 [ + - ]: 1328 : AddScriptPubKeyMan(id, std::move(spk_manager));
3362 : 1328 : }
3363 : :
3364 : 0 : bool CWallet::WithEncryptionKey(std::function<bool (const CKeyingMaterial&)> cb) const
3365 : : {
3366 : 0 : LOCK(cs_wallet);
3367 [ # # # # ]: 0 : return cb(vMasterKey);
3368 : 0 : }
3369 : :
3370 : 609459 : bool CWallet::HasEncryptionKeys() const
3371 : : {
3372 : 609459 : return !mapMasterKeys.empty();
3373 : : }
3374 : :
3375 : 0 : bool CWallet::HaveCryptedKeys() const
3376 : : {
3377 [ # # ]: 0 : for (const auto& spkm : GetAllScriptPubKeyMans()) {
3378 [ # # # # ]: 0 : if (spkm->HaveCryptedKeys()) return true;
3379 : : }
3380 : 0 : return false;
3381 : : }
3382 : :
3383 : 0 : void CWallet::ConnectScriptPubKeyManNotifiers()
3384 : : {
3385 [ # # ]: 0 : for (const auto& spk_man : GetActiveScriptPubKeyMans()) {
3386 [ # # ]: 0 : spk_man->NotifyCanGetAddressesChanged.connect([this] {
3387 : 0 : NotifyCanGetAddressesChanged();
3388 : : });
3389 [ # # ]: 0 : spk_man->NotifyFirstKeyTimeChanged.connect([this](const ScriptPubKeyMan*, int64_t time) {
3390 : 0 : MaybeUpdateBirthTime(time);
3391 : : });
3392 : : }
3393 : 0 : }
3394 : :
3395 : 0 : void CWallet::LoadDescriptorScriptPubKeyMan(uint256 id, WalletDescriptor& desc, const KeyMap& keys, const CryptedKeyMap& ckeys)
3396 : : {
3397 : 0 : std::unique_ptr<DescriptorScriptPubKeyMan> spk_manager;
3398 [ # # # # ]: 0 : if (IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER)) {
3399 [ # # ]: 0 : spk_manager = ExternalSignerScriptPubKeyMan::LoadFromStorage(*this, id, desc, m_keypool_size, keys, ckeys);
3400 : : } else {
3401 [ # # ]: 0 : spk_manager = DescriptorScriptPubKeyMan::LoadFromStorage(*this, id, desc, m_keypool_size, keys, ckeys);
3402 : : }
3403 [ # # ]: 0 : AddScriptPubKeyMan(id, std::move(spk_manager));
3404 : 0 : }
3405 : :
3406 : 0 : DescriptorScriptPubKeyMan& CWallet::SetupDescriptorScriptPubKeyMan(WalletBatch& batch, const CExtKey& master_key, const OutputType& output_type, bool internal)
3407 : : {
3408 : 0 : AssertLockHeld(cs_wallet);
3409 [ # # ]: 0 : if (IsLocked()) {
3410 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": Wallet is locked, cannot setup new descriptors");
3411 : : }
3412 : 0 : auto spk_manager = DescriptorScriptPubKeyMan::GenerateNewSingleSig(*this, batch, m_keypool_size, master_key, output_type, internal);
3413 [ # # ]: 0 : DescriptorScriptPubKeyMan* out = spk_manager.get();
3414 [ # # ]: 0 : uint256 id = spk_manager->GetID();
3415 [ # # ]: 0 : AddScriptPubKeyMan(id, std::move(spk_manager));
3416 [ # # ]: 0 : AddActiveScriptPubKeyManWithDb(batch, id, output_type, internal);
3417 : 0 : return *out;
3418 : 0 : }
3419 : :
3420 : 0 : void CWallet::SetupDescriptorScriptPubKeyMans(WalletBatch& batch, const CExtKey& master_key)
3421 : : {
3422 : 0 : AssertLockHeld(cs_wallet);
3423 [ # # ]: 0 : for (bool internal : {false, true}) {
3424 [ # # ]: 0 : for (OutputType t : OUTPUT_TYPES) {
3425 : 0 : SetupDescriptorScriptPubKeyMan(batch, master_key, t, internal);
3426 : : }
3427 : : }
3428 : 0 : }
3429 : :
3430 : 0 : void CWallet::SetupOwnDescriptorScriptPubKeyMans(WalletBatch& batch)
3431 : : {
3432 : 0 : AssertLockHeld(cs_wallet);
3433 [ # # ]: 0 : assert(!IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER));
3434 : : // Make a seed
3435 : 0 : CKey seed_key = GenerateRandomKey();
3436 [ # # ]: 0 : CPubKey seed = seed_key.GetPubKey();
3437 [ # # # # ]: 0 : assert(seed_key.VerifyPubKey(seed));
3438 : :
3439 : : // Get the extended key
3440 [ # # ]: 0 : CExtKey master_key;
3441 [ # # # # ]: 0 : master_key.SetSeed(seed_key);
3442 : :
3443 [ # # ]: 0 : SetupDescriptorScriptPubKeyMans(batch, master_key);
3444 : 0 : }
3445 : :
3446 : 0 : void CWallet::SetupDescriptorScriptPubKeyMans()
3447 : : {
3448 : 0 : AssertLockHeld(cs_wallet);
3449 : :
3450 [ # # ]: 0 : if (!IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER)) {
3451 [ # # # # ]: 0 : if (!RunWithinTxn(GetDatabase(), /*process_desc=*/"setup descriptors", [&](WalletBatch& batch) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet){
3452 : 0 : SetupOwnDescriptorScriptPubKeyMans(batch);
3453 : 0 : return true;
3454 [ # # ]: 0 : })) throw std::runtime_error("Error: cannot process db transaction for descriptors setup");
3455 : : } else {
3456 : 0 : auto signer = ExternalSignerScriptPubKeyMan::GetExternalSigner();
3457 [ # # # # : 0 : if (!signer) throw std::runtime_error(util::ErrorString(signer).original);
# # ]
3458 : :
3459 : : // TODO: add account parameter
3460 : 0 : int account = 0;
3461 [ # # ]: 0 : UniValue signer_res = signer->GetDescriptors(account);
3462 : :
3463 [ # # # # : 0 : if (!signer_res.isObject()) throw std::runtime_error(std::string(__func__) + ": Unexpected result");
# # ]
3464 : :
3465 [ # # ]: 0 : WalletBatch batch(GetDatabase());
3466 [ # # # # : 0 : if (!batch.TxnBegin()) throw std::runtime_error("Error: cannot create db transaction for descriptors import");
# # ]
3467 : :
3468 [ # # ]: 0 : for (bool internal : {false, true}) {
3469 [ # # # # ]: 0 : const UniValue& descriptor_vals = signer_res.find_value(internal ? "internal" : "receive");
3470 [ # # # # : 0 : if (!descriptor_vals.isArray()) throw std::runtime_error(std::string(__func__) + ": Unexpected result");
# # ]
3471 [ # # # # : 0 : for (const UniValue& desc_val : descriptor_vals.get_array().getValues()) {
# # ]
3472 : 0 : const std::string& desc_str = desc_val.getValStr();
3473 : 0 : FlatSigningProvider keys;
3474 [ # # ]: 0 : std::string desc_error;
3475 [ # # # # ]: 0 : auto descs = Parse(desc_str, keys, desc_error, false);
3476 [ # # ]: 0 : if (descs.empty()) {
3477 [ # # # # : 0 : throw std::runtime_error(std::string(__func__) + ": Invalid descriptor \"" + desc_str + "\" (" + desc_error + ")");
# # # # ]
3478 : : }
3479 [ # # ]: 0 : auto& desc = descs.at(0);
3480 [ # # # # ]: 0 : if (!desc->GetOutputType()) {
3481 : 0 : continue;
3482 : : }
3483 [ # # ]: 0 : OutputType t = *desc->GetOutputType();
3484 [ # # ]: 0 : auto spk_manager = ExternalSignerScriptPubKeyMan::CreateNew(*this, batch, m_keypool_size, std::move(desc));
3485 [ # # ]: 0 : uint256 id = spk_manager->GetID();
3486 [ # # ]: 0 : AddScriptPubKeyMan(id, std::move(spk_manager));
3487 [ # # ]: 0 : AddActiveScriptPubKeyManWithDb(batch, id, t, internal);
3488 : 0 : }
3489 : : }
3490 : :
3491 : : // Ensure imported descriptors are committed to disk
3492 [ # # # # : 0 : if (!batch.TxnCommit()) throw std::runtime_error("Error: cannot commit db transaction for descriptors import");
# # ]
3493 : 0 : }
3494 : 0 : }
3495 : :
3496 : 0 : void CWallet::SetupWalletGeneration()
3497 : : {
3498 : 0 : AssertLockHeld(cs_wallet);
3499 : : // Skip setup for non-external-signer wallets that are either blank
3500 : : // or have private keys disabled (not having private keys implies blank).
3501 [ # # # # ]: 0 : if (!IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER) &&
3502 [ # # ]: 0 : (IsWalletFlagSet(WALLET_FLAG_BLANK_WALLET) || IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS))) {
3503 : 0 : return;
3504 : : }
3505 : 0 : SetupDescriptorScriptPubKeyMans();
3506 : : }
3507 : :
3508 : 11344 : void CWallet::AddActiveScriptPubKeyMan(uint256 id, OutputType type, bool internal)
3509 : : {
3510 : 11344 : WalletBatch batch(GetDatabase());
3511 [ + - ]: 11344 : return AddActiveScriptPubKeyManWithDb(batch, id, type, internal);
3512 : 11344 : }
3513 : :
3514 : 11344 : void CWallet::AddActiveScriptPubKeyManWithDb(WalletBatch& batch, uint256 id, OutputType type, bool internal)
3515 : : {
3516 [ - + ]: 11344 : if (!batch.WriteActiveScriptPubKeyMan(static_cast<uint8_t>(type), id, internal)) {
3517 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": writing active ScriptPubKeyMan id failed");
3518 : : }
3519 : 11344 : LoadActiveScriptPubKeyMan(id, type, internal);
3520 : 11344 : }
3521 : :
3522 : 11344 : void CWallet::LoadActiveScriptPubKeyMan(uint256 id, OutputType type, bool internal)
3523 : : {
3524 : : // Activating ScriptPubKeyManager for a given output and change type is incompatible with legacy wallets.
3525 : : // Legacy wallets have only one ScriptPubKeyManager and it's active for all output and change types.
3526 [ - + ]: 11344 : Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
3527 : :
3528 [ + + + - ]: 17016 : WalletLogPrintf("Setting spkMan to active: id = %s, type = %s, internal = %s\n", id.ToString(), FormatOutputType(type), internal ? "true" : "false");
3529 [ + + ]: 11344 : auto& spk_mans = internal ? m_internal_spk_managers : m_external_spk_managers;
3530 : 11344 : auto& spk_mans_other = internal ? m_external_spk_managers : m_internal_spk_managers;
3531 : 11344 : auto spk_man = m_spk_managers.at(id).get();
3532 : 11344 : spk_mans[type] = spk_man;
3533 : :
3534 : 11344 : const auto it = spk_mans_other.find(type);
3535 [ + + - + ]: 11344 : if (it != spk_mans_other.end() && it->second == spk_man) {
3536 : 0 : spk_mans_other.erase(type);
3537 : : }
3538 : :
3539 : 11344 : NotifyCanGetAddressesChanged();
3540 : 11344 : }
3541 : :
3542 : 0 : void CWallet::DeactivateScriptPubKeyMan(uint256 id, OutputType type, bool internal)
3543 : : {
3544 : 0 : auto spk_man = GetScriptPubKeyMan(type, internal);
3545 [ # # # # ]: 0 : if (spk_man != nullptr && spk_man->GetID() == id) {
3546 [ # # # # ]: 0 : WalletLogPrintf("Deactivate spkMan: id = %s, type = %s, internal = %s\n", id.ToString(), FormatOutputType(type), internal ? "true" : "false");
3547 : 0 : WalletBatch batch(GetDatabase());
3548 [ # # # # ]: 0 : if (!batch.EraseActiveScriptPubKeyMan(static_cast<uint8_t>(type), internal)) {
3549 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": erasing active ScriptPubKeyMan id failed");
3550 : : }
3551 : :
3552 [ # # ]: 0 : auto& spk_mans = internal ? m_internal_spk_managers : m_external_spk_managers;
3553 : 0 : spk_mans.erase(type);
3554 : 0 : }
3555 : :
3556 : 0 : NotifyCanGetAddressesChanged();
3557 : 0 : }
3558 : :
3559 : 28305 : DescriptorScriptPubKeyMan* CWallet::GetDescriptorScriptPubKeyMan(const WalletDescriptor& desc) const
3560 : : {
3561 : 28305 : auto spk_man_pair = std::find_if(m_spk_managers.begin(), m_spk_managers.end(), [&desc](const auto& item) {
3562 [ + - ]: 79472 : DescriptorScriptPubKeyMan* spk_manager = dynamic_cast<DescriptorScriptPubKeyMan*>(item.second.get());
3563 [ + - + + ]: 79472 : return spk_manager != nullptr && spk_manager->HasWalletDescriptor(desc);
3564 : : });
3565 : :
3566 [ + + ]: 28305 : if (spk_man_pair != m_spk_managers.end()) {
3567 [ + - ]: 64 : return dynamic_cast<DescriptorScriptPubKeyMan*>(spk_man_pair->second.get());
3568 : : }
3569 : :
3570 : : return nullptr;
3571 : : }
3572 : :
3573 : 0 : std::optional<bool> CWallet::IsInternalScriptPubKeyMan(ScriptPubKeyMan* spk_man) const
3574 : : {
3575 : : // only active ScriptPubKeyMan can be internal
3576 [ # # ]: 0 : if (!GetActiveScriptPubKeyMans().contains(spk_man)) {
3577 : 0 : return std::nullopt;
3578 : : }
3579 : :
3580 [ # # ]: 0 : const auto desc_spk_man = dynamic_cast<DescriptorScriptPubKeyMan*>(spk_man);
3581 [ # # ]: 0 : if (!desc_spk_man) {
3582 [ # # # # ]: 0 : throw std::runtime_error(std::string(__func__) + ": unexpected ScriptPubKeyMan type.");
3583 : : }
3584 : :
3585 : 0 : LOCK(desc_spk_man->cs_desc_man);
3586 [ # # # # ]: 0 : const auto& type = desc_spk_man->GetWalletDescriptor().descriptor->GetOutputType();
3587 [ # # ]: 0 : assert(type.has_value());
3588 : :
3589 [ # # # # ]: 0 : return GetScriptPubKeyMan(*type, /* internal= */ true) == desc_spk_man;
3590 : 0 : }
3591 : :
3592 : 16961 : util::Result<std::reference_wrapper<DescriptorScriptPubKeyMan>> CWallet::AddWalletDescriptor(WalletDescriptor& desc, const FlatSigningProvider& signing_provider, const std::string& label, bool internal)
3593 : : {
3594 : 16961 : AssertLockHeld(cs_wallet);
3595 : :
3596 [ - + ]: 16961 : Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
3597 : :
3598 : 16961 : auto spk_man = GetDescriptorScriptPubKeyMan(desc);
3599 [ + + ]: 16961 : if (spk_man) {
3600 [ + - ]: 64 : WalletLogPrintf("Update existing descriptor: %s\n", desc.descriptor->ToString());
3601 [ - + ]: 64 : if (auto spkm_res = spk_man->UpdateWalletDescriptor(desc, signing_provider); !spkm_res) {
3602 [ # # ]: 0 : return util::Error{util::ErrorString(spkm_res)};
3603 : 64 : }
3604 : : } else {
3605 : 16897 : auto new_spk_man = DescriptorScriptPubKeyMan::CreateFromImport(*this, desc, m_keypool_size, signing_provider);
3606 [ + - ]: 16897 : spk_man = new_spk_man.get();
3607 : :
3608 : : // Save the descriptor to memory
3609 [ + - ]: 16897 : uint256 id = new_spk_man->GetID();
3610 [ + - ]: 16897 : AddScriptPubKeyMan(id, std::move(new_spk_man));
3611 : :
3612 : : // Write the existing cache to disk
3613 [ + - ]: 16897 : WalletBatch batch(GetDatabase());
3614 [ + - - + ]: 16897 : if (!batch.WriteDescriptorCacheItems(id, desc.cache)) {
3615 [ # # ]: 0 : return util::Error{_("Unable to write descriptor cache")};
3616 : : }
3617 : 16897 : }
3618 : :
3619 : : // Apply the label if necessary
3620 : : // Note: we disable labels for descriptors that are ranged or that don't produce output scripts (i.e. unused())
3621 [ + + + + ]: 16961 : if (!desc.descriptor->IsRange() && desc.descriptor->HasScripts()) {
3622 : 4143 : auto script_pub_keys = spk_man->GetScriptPubKeys();
3623 [ - + ]: 4143 : if (script_pub_keys.empty()) {
3624 [ # # ]: 0 : return util::Error{_("Could not generate scriptPubKeys (cache is empty)")};
3625 : : }
3626 : :
3627 [ + - ]: 4143 : if (!internal) {
3628 [ + + + - ]: 8417 : for (const auto& script : script_pub_keys) {
3629 : 4274 : CTxDestination dest;
3630 [ + + + - ]: 4274 : if (ExtractDestination(script, dest)) {
3631 [ + - ]: 1709 : SetAddressBook(dest, label, AddressPurpose::RECEIVE);
3632 : : }
3633 : 4274 : }
3634 : : }
3635 : 4143 : }
3636 : :
3637 : : // Save the descriptor to DB
3638 : 16961 : spk_man->WriteDescriptor();
3639 : :
3640 : : // Break balance caches so that outputs that are now IsMine in already known txs will be included in the balance
3641 : 16961 : MarkDirty();
3642 : :
3643 : 16961 : return std::reference_wrapper(*spk_man);
3644 : : }
3645 : :
3646 : 0 : util::Expected<CExtPubKey, WalletError> CWallet::AddHDKey(const std::optional<CExtKey>& key)
3647 : : {
3648 : 0 : LOCK(cs_wallet);
3649 : :
3650 [ # # # # ]: 0 : if (key && !key->key.IsValid()) {
3651 : 0 : return util::Unexpected{WalletError{
3652 : : WalletErrorCode::GenericError,
3653 [ # # ]: 0 : _("Invalid HD key"),
3654 : 0 : }};
3655 : : }
3656 : :
3657 [ # # # # ]: 0 : if (IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
3658 : 0 : return util::Unexpected{WalletError{
3659 : : WalletErrorCode::GenericError,
3660 [ # # ]: 0 : _("addhdkey is not available for wallets without private keys")
3661 : 0 : }};
3662 : : }
3663 : :
3664 [ # # # # ]: 0 : if (IsLocked()) {
3665 : 0 : return util::Unexpected{WalletError{
3666 : : WalletErrorCode::UnlockNeeded,
3667 [ # # ]: 0 : _("Wallet needs to be unlocked to perform this operation.")
3668 : 0 : }};
3669 : : }
3670 : :
3671 [ # # ]: 0 : CExtKey hdkey;
3672 [ # # ]: 0 : if (key) {
3673 [ # # ]: 0 : hdkey = *key;
3674 : : } else {
3675 : 0 : CKey seed_key = GenerateRandomKey();
3676 [ # # # # ]: 0 : hdkey.SetSeed(seed_key);
3677 : 0 : }
3678 : :
3679 [ # # # # ]: 0 : std::string desc_str = "unused(" + EncodeExtKey(hdkey) + ")";
3680 : 0 : FlatSigningProvider keys;
3681 [ # # ]: 0 : std::string parse_error;
3682 [ # # # # ]: 0 : std::vector<std::unique_ptr<Descriptor>> descs = Parse(desc_str, keys, parse_error, /*require_checksum=*/false);
3683 [ # # ]: 0 : if (descs.empty()) {
3684 : 0 : return util::Unexpected{WalletError{
3685 : : WalletErrorCode::GenericError,
3686 [ # # ]: 0 : _("Invalid HD key")
3687 : 0 : }};
3688 : : }
3689 [ # # # # : 0 : WalletDescriptor w_desc(std::move(descs.at(0)), GetTime(), /*range_start=*/0, /*range_end=*/0, /*next_index=*/0);
# # # # ]
3690 : :
3691 [ # # # # ]: 0 : if (GetDescriptorScriptPubKeyMan(w_desc) != nullptr) {
3692 : 0 : return util::Unexpected{WalletError{
3693 : : WalletErrorCode::GenericError,
3694 [ # # ]: 0 : _("HD key already exists")
3695 : 0 : }};
3696 : : }
3697 : :
3698 [ # # # # ]: 0 : auto spkm = AddWalletDescriptor(w_desc, keys, /*label=*/"", /*internal=*/false);
3699 [ # # ]: 0 : if(!spkm) {
3700 [ # # ]: 0 : return util::Unexpected{WalletError{
3701 : : WalletErrorCode::GenericError,
3702 : : util::ErrorString(spkm),
3703 : 0 : }};
3704 : : }
3705 : :
3706 [ # # ]: 0 : const DescriptorScriptPubKeyMan& desc_spkm = spkm->get();
3707 [ # # ]: 0 : LOCK(desc_spkm.cs_desc_man);
3708 [ # # ]: 0 : std::set<CPubKey> pubkeys;
3709 : 0 : std::set<CExtPubKey> extpubs;
3710 [ # # # # ]: 0 : desc_spkm.GetWalletDescriptor().descriptor->GetPubKeys(pubkeys, extpubs);
3711 [ # # ]: 0 : Assume(pubkeys.empty());
3712 [ # # ]: 0 : Assume(extpubs.size() == 1);
3713 : :
3714 : 0 : return *extpubs.begin();
3715 [ # # ]: 0 : }
3716 : :
3717 : 0 : bool CWallet::MigrateToSQLite(bilingual_str& error)
3718 : : {
3719 : 0 : AssertLockHeld(cs_wallet);
3720 : :
3721 : 0 : WalletLogPrintf("Migrating wallet storage database from BerkeleyDB to SQLite.\n");
3722 : :
3723 [ # # ]: 0 : if (m_database->Format() == "sqlite") {
3724 : 0 : error = _("Error: This wallet already uses SQLite");
3725 : 0 : return false;
3726 : : }
3727 : :
3728 : : // Get all of the records for DB type migration
3729 : 0 : std::unique_ptr<DatabaseBatch> batch = m_database->MakeBatch();
3730 [ # # ]: 0 : std::unique_ptr<DatabaseCursor> cursor = batch->GetNewCursor();
3731 : 0 : std::vector<std::pair<SerializeData, SerializeData>> records;
3732 [ # # ]: 0 : if (!cursor) {
3733 [ # # ]: 0 : error = _("Error: Unable to begin reading all records in the database");
3734 : 0 : return false;
3735 : : }
3736 : 0 : DatabaseCursor::Status status = DatabaseCursor::Status::FAIL;
3737 : 0 : while (true) {
3738 : 0 : DataStream ss_key{};
3739 : 0 : DataStream ss_value{};
3740 [ # # ]: 0 : status = cursor->Next(ss_key, ss_value);
3741 [ # # ]: 0 : if (status != DatabaseCursor::Status::MORE) {
3742 : : break;
3743 : : }
3744 [ # # ]: 0 : SerializeData key(ss_key.begin(), ss_key.end());
3745 [ # # ]: 0 : SerializeData value(ss_value.begin(), ss_value.end());
3746 [ # # ]: 0 : records.emplace_back(key, value);
3747 : 0 : }
3748 [ # # ]: 0 : cursor.reset();
3749 [ # # ]: 0 : batch.reset();
3750 [ # # ]: 0 : if (status != DatabaseCursor::Status::DONE) {
3751 [ # # ]: 0 : error = _("Error: Unable to read all records in the database");
3752 : 0 : return false;
3753 : : }
3754 : :
3755 : : // Close this database and delete the file
3756 [ # # # # ]: 0 : fs::path db_path = fs::PathFromString(m_database->Filename());
3757 [ # # ]: 0 : m_database->Close();
3758 [ # # ]: 0 : fs::remove(db_path);
3759 : :
3760 : : // Generate the path for the location of the migrated wallet
3761 : : // Wallets that are plain files rather than wallet directories will be migrated to be wallet directories.
3762 [ # # # # : 0 : const fs::path wallet_path = fsbridge::AbsPathJoin(GetWalletDir(), fs::PathFromString(m_name));
# # ]
3763 : :
3764 : : // Make new DB
3765 [ # # ]: 0 : DatabaseOptions opts;
3766 : 0 : opts.require_create = true;
3767 : 0 : opts.require_format = DatabaseFormat::SQLITE;
3768 : 0 : DatabaseStatus db_status;
3769 [ # # ]: 0 : std::unique_ptr<WalletDatabase> new_db = MakeDatabase(wallet_path, opts, db_status, error);
3770 [ # # ]: 0 : assert(new_db); // This is to prevent doing anything further with this wallet. The original file was deleted, but a backup exists.
3771 [ # # ]: 0 : m_database.reset();
3772 : 0 : m_database = std::move(new_db);
3773 : :
3774 : : // Write existing records into the new DB
3775 [ # # ]: 0 : batch = m_database->MakeBatch();
3776 [ # # ]: 0 : bool began = batch->TxnBegin();
3777 [ # # ]: 0 : assert(began); // This is a critical error, the new db could not be written to. The original db exists as a backup, but we should not continue execution.
3778 [ # # # # ]: 0 : for (const auto& [key, value] : records) {
3779 [ # # # # : 0 : if (!batch->Write(std::span{key}, std::span{value})) {
# # # # ]
3780 [ # # ]: 0 : batch->TxnAbort();
3781 [ # # ]: 0 : m_database->Close();
3782 [ # # # # : 0 : fs::remove(m_database->Filename());
# # ]
3783 : 0 : assert(false); // This is a critical error, the new db could not be written to. The original db exists as a backup, but we should not continue execution.
3784 : : }
3785 : : }
3786 [ # # ]: 0 : bool committed = batch->TxnCommit();
3787 [ # # ]: 0 : assert(committed); // This is a critical error, the new db could not be written to. The original db exists as a backup, but we should not continue execution.
3788 : 0 : return true;
3789 : 0 : }
3790 : :
3791 : 0 : std::optional<MigrationData> CWallet::GetDescriptorsForLegacy(bilingual_str& error) const
3792 : : {
3793 : 0 : AssertLockHeld(cs_wallet);
3794 : :
3795 : 0 : LegacyDataSPKM* legacy_spkm = GetLegacyDataSPKM();
3796 [ # # ]: 0 : if (!Assume(legacy_spkm)) {
3797 : : // This shouldn't happen
3798 : : error = Untranslated(STR_INTERNAL_BUG("Error: Legacy wallet data missing"));
3799 : : return std::nullopt;
3800 : : }
3801 : :
3802 : 0 : std::optional<MigrationData> res = legacy_spkm->MigrateToDescriptor();
3803 [ # # ]: 0 : if (res == std::nullopt) {
3804 [ # # ]: 0 : error = _("Error: Unable to produce descriptors for this legacy wallet. Make sure to provide the wallet's passphrase if it is encrypted.");
3805 : 0 : return std::nullopt;
3806 : : }
3807 : 0 : return res;
3808 : 0 : }
3809 : :
3810 : 0 : util::Result<void> CWallet::ApplyMigrationData(WalletBatch& local_wallet_batch, MigrationData& data)
3811 : : {
3812 : 0 : AssertLockHeld(cs_wallet);
3813 : :
3814 : 0 : LegacyDataSPKM* legacy_spkm = GetLegacyDataSPKM();
3815 [ # # ]: 0 : if (!Assume(legacy_spkm)) {
3816 : : // This shouldn't happen
3817 : : return util::Error{Untranslated(STR_INTERNAL_BUG("Error: Legacy wallet data missing"))};
3818 : : }
3819 : :
3820 : : // Note: when the legacy wallet has no spendable scripts, it must be empty at the end of the process.
3821 [ # # # # ]: 0 : bool has_spendable_material = !data.desc_spkms.empty() || data.master_key.key.IsValid();
3822 : :
3823 : : // Get all invalid or non-watched scripts that will not be migrated
3824 [ # # ]: 0 : std::set<CTxDestination> not_migrated_dests;
3825 [ # # # # : 0 : for (const auto& script : legacy_spkm->GetNotMineScriptPubKeys()) {
# # ]
3826 : 0 : CTxDestination dest;
3827 [ # # # # : 0 : if (ExtractDestination(script, dest)) not_migrated_dests.emplace(dest);
# # ]
3828 : 0 : }
3829 : :
3830 : : // When the legacy wallet has no spendable scripts, the main wallet will be empty, leaving its script cache empty as well.
3831 : : // The watch-only and/or solvable wallet(s) will contain the scripts in their respective caches.
3832 [ # # # # ]: 0 : if (!data.desc_spkms.empty()) Assume(!m_cached_spks.empty());
3833 [ # # # # ]: 0 : if (!data.watch_descs.empty()) Assume(!data.watchonly_wallet->m_cached_spks.empty());
3834 [ # # # # ]: 0 : if (!data.solvable_descs.empty()) Assume(!data.solvable_wallet->m_cached_spks.empty());
3835 : :
3836 [ # # ]: 0 : for (auto& desc_spkm : data.desc_spkms) {
3837 [ # # # # ]: 0 : if (m_spk_managers.contains(desc_spkm->GetID())) {
3838 [ # # ]: 0 : return util::Error{_("Error: Duplicate descriptors created during migration. Your wallet may be corrupted.")};
3839 : : }
3840 [ # # ]: 0 : uint256 id = desc_spkm->GetID();
3841 [ # # ]: 0 : AddScriptPubKeyMan(id, std::move(desc_spkm));
3842 : : }
3843 : :
3844 : : // Remove the LegacyDataSPKM's records from disk
3845 [ # # # # ]: 0 : if (!legacy_spkm->DeleteRecordsWithDB(local_wallet_batch)) {
3846 [ # # ]: 0 : return util::Error{_("Error: cannot remove legacy wallet records")};
3847 : : }
3848 : :
3849 : : // Remove the LegacyDataSPKM from memory
3850 [ # # ]: 0 : m_spk_managers.erase(legacy_spkm->GetID());
3851 : 0 : m_external_spk_managers.clear();
3852 : 0 : m_internal_spk_managers.clear();
3853 : :
3854 : : // Setup new descriptors (only if we are migrating any key material)
3855 [ # # ]: 0 : SetWalletFlagWithDB(local_wallet_batch, WALLET_FLAG_DESCRIPTORS | WALLET_FLAG_LAST_HARDENED_XPUB_CACHED);
3856 [ # # # # : 0 : if (has_spendable_material && !IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
# # ]
3857 : : // Use the existing master key if we have it
3858 [ # # ]: 0 : if (data.master_key.key.IsValid()) {
3859 [ # # ]: 0 : SetupDescriptorScriptPubKeyMans(local_wallet_batch, data.master_key);
3860 : : } else {
3861 : : // Setup with a new seed if we don't.
3862 [ # # ]: 0 : SetupOwnDescriptorScriptPubKeyMans(local_wallet_batch);
3863 : : }
3864 : : }
3865 : :
3866 : : // Get best block locator so that we can copy it to the watchonly and solvables
3867 : : // Note: The best block locator was introduced in #152 so ancient wallets do not have it
3868 : 0 : CBlockLocator best_block_locator;
3869 [ # # ]: 0 : (void)local_wallet_batch.ReadBestBlock(best_block_locator);
3870 : :
3871 : : // Update m_txos to match the descriptors remaining in this wallet
3872 : 0 : m_txos.clear();
3873 [ # # ]: 0 : RefreshAllTXOs();
3874 : :
3875 : : // Check if the transactions in the wallet are still ours. Either they belong here, or they belong in the watchonly wallet.
3876 : : // We need to go through these in the tx insertion order so that lookups to spends works.
3877 : 0 : std::vector<Txid> txids_to_delete;
3878 : 0 : std::unique_ptr<WalletBatch> watchonly_batch;
3879 [ # # ]: 0 : if (data.watchonly_wallet) {
3880 [ # # ]: 0 : watchonly_batch = std::make_unique<WalletBatch>(data.watchonly_wallet->GetDatabase());
3881 [ # # # # : 0 : if (!watchonly_batch->TxnBegin()) return util::Error{strprintf(_("Error: database transaction cannot be executed for wallet %s"), data.watchonly_wallet->GetName())};
# # ]
3882 : : // Copy the next tx order pos to the watchonly wallet
3883 [ # # ]: 0 : LOCK(data.watchonly_wallet->cs_wallet);
3884 [ # # ]: 0 : data.watchonly_wallet->nOrderPosNext = nOrderPosNext;
3885 [ # # ]: 0 : watchonly_batch->WriteOrderPosNext(data.watchonly_wallet->nOrderPosNext);
3886 : : // Write the locator record. An empty locator is valid and triggers rescan on load.
3887 [ # # # # ]: 0 : if (!watchonly_batch->WriteBestBlock(best_block_locator)) {
3888 [ # # # # ]: 0 : return util::Error{_("Error: Unable to write watchonly wallet best block locator record")};
3889 : : }
3890 : 0 : }
3891 : 0 : std::unique_ptr<WalletBatch> solvables_batch;
3892 [ # # ]: 0 : if (data.solvable_wallet) {
3893 [ # # ]: 0 : solvables_batch = std::make_unique<WalletBatch>(data.solvable_wallet->GetDatabase());
3894 [ # # # # : 0 : if (!solvables_batch->TxnBegin()) return util::Error{strprintf(_("Error: database transaction cannot be executed for wallet %s"), data.solvable_wallet->GetName())};
# # ]
3895 : : // Write the locator record. An empty locator is valid and triggers rescan on load.
3896 [ # # # # ]: 0 : if (!solvables_batch->WriteBestBlock(best_block_locator)) {
3897 [ # # ]: 0 : return util::Error{_("Error: Unable to write solvable wallet best block locator record")};
3898 : : }
3899 : : }
3900 [ # # # # ]: 0 : for (const auto& [_pos, wtx] : wtxOrdered) {
3901 : : // Check it is the watchonly wallet's
3902 : : // solvable_wallet doesn't need to be checked because transactions for those scripts weren't being watched for
3903 : 0 : bool is_mine = IsMine(*wtx->GetTx()) || IsFromMe(*wtx->GetTx());
[ # # # #
# # # # #
# # # # #
# # ]
3904 [ # # ]: 0 : if (data.watchonly_wallet) {
3905 [ # # ]: 0 : LOCK(data.watchonly_wallet->cs_wallet);
3906 : 0 : if (data.watchonly_wallet->IsMine(*wtx->GetTx()) || data.watchonly_wallet->IsFromMe(*wtx->GetTx())) {
[ # # # #
# # # # #
# # # # #
# # # # ]
3907 : : // Add to watchonly wallet
3908 [ # # ]: 0 : const Txid& hash = wtx->GetHash();
3909 : 0 : DataStream wtx_ser;
3910 [ # # ]: 0 : wtx_ser << *wtx;
3911 [ # # ]: 0 : CWalletTx copy_wtx(deserialize, wtx_ser, wtx->GetTxs());
3912 [ # # # # ]: 0 : if (!data.watchonly_wallet->LoadToWallet(std::move(copy_wtx))) {
3913 [ # # # # : 0 : return util::Error{strprintf(_("Error: Could not add watchonly tx %s to watchonly wallet"), wtx->GetHash().GetHex())};
# # ]
3914 : : }
3915 [ # # # # ]: 0 : watchonly_batch->WriteFullTx(data.watchonly_wallet->mapWallet.at(hash));
3916 : : // Mark as to remove from the migrated wallet only if it does not also belong to it
3917 [ # # ]: 0 : if (!is_mine) {
3918 [ # # ]: 0 : txids_to_delete.push_back(hash);
3919 : 0 : continue;
3920 : : }
3921 [ # # # # ]: 0 : }
3922 : 0 : }
3923 [ # # ]: 0 : if (!is_mine) {
3924 : : // Both not ours and not in the watchonly wallet
3925 [ # # # # : 0 : return util::Error{strprintf(_("Error: Transaction %s in wallet cannot be identified to belong to migrated wallets"), wtx->GetHash().GetHex())};
# # ]
3926 : : }
3927 : : // Rewrite the transaction so that anything that may have changed about it in memory also persists to disk
3928 [ # # ]: 0 : local_wallet_batch.WriteTxMetadata(*wtx);
3929 : : }
3930 : :
3931 : : // Do the removes
3932 [ # # # # ]: 0 : if (txids_to_delete.size() > 0) {
3933 [ # # # # ]: 0 : if (auto res = RemoveTxs(local_wallet_batch, txids_to_delete); !res) {
3934 [ # # # # ]: 0 : return util::Error{_("Error: Could not delete watchonly transactions. ") + util::ErrorString(res)};
3935 : 0 : }
3936 : : }
3937 : :
3938 : : // Pair external wallets with their corresponding db handler
3939 : 0 : std::vector<std::pair<std::shared_ptr<CWallet>, std::unique_ptr<WalletBatch>>> wallets_vec;
3940 [ # # # # ]: 0 : if (data.watchonly_wallet) wallets_vec.emplace_back(data.watchonly_wallet, std::move(watchonly_batch));
3941 [ # # # # ]: 0 : if (data.solvable_wallet) wallets_vec.emplace_back(data.solvable_wallet, std::move(solvables_batch));
3942 : :
3943 : : // Write address book entry to disk
3944 : 0 : auto func_store_addr = [](WalletBatch& batch, const CTxDestination& dest, const CAddressBookData& entry) {
3945 : 0 : auto address{EncodeDestination(dest)};
3946 [ # # # # : 0 : if (entry.purpose) batch.WritePurpose(address, PurposeToString(*entry.purpose));
# # ]
3947 [ # # # # ]: 0 : if (entry.label) batch.WriteName(address, *entry.label);
3948 [ # # # # ]: 0 : for (const auto& [id, request] : entry.receive_requests) {
3949 [ # # ]: 0 : batch.WriteAddressReceiveRequest(dest, id, request);
3950 : : }
3951 [ # # # # ]: 0 : if (entry.previously_spent) batch.WriteAddressPreviouslySpent(dest, true);
3952 : 0 : };
3953 : :
3954 : : // Check the address book data in the same way we did for transactions
3955 : 0 : std::vector<CTxDestination> dests_to_delete;
3956 [ # # # # ]: 0 : for (const auto& [dest, record] : m_address_book) {
3957 : : // Ensure "receive" entries that are no longer part of the original wallet are transferred to another wallet
3958 : : // Entries for everything else ("send") will be cloned to all wallets.
3959 [ # # # # : 0 : bool require_transfer = record.purpose == AddressPurpose::RECEIVE && !IsMine(dest);
# # ]
3960 : 0 : bool copied = false;
3961 [ # # # # ]: 0 : for (auto& [wallet, batch] : wallets_vec) {
3962 [ # # ]: 0 : LOCK(wallet->cs_wallet);
3963 [ # # # # : 0 : if (require_transfer && !wallet->IsMine(dest)) continue;
# # # # ]
3964 : :
3965 : : // Copy the entire address book entry
3966 [ # # # # ]: 0 : wallet->m_address_book[dest] = record;
3967 [ # # ]: 0 : func_store_addr(*batch, dest, record);
3968 : :
3969 : 0 : copied = true;
3970 : : // Only delete 'receive' records that are no longer part of the original wallet
3971 [ # # ]: 0 : if (require_transfer) {
3972 [ # # ]: 0 : dests_to_delete.push_back(dest);
3973 [ # # ]: 0 : break;
3974 : : }
3975 : 0 : }
3976 : :
3977 : : // Fail immediately if we ever found an entry that was ours and cannot be transferred
3978 : : // to any of the created wallets (watch-only, solvable).
3979 : : // Means that no inferred descriptor maps to the stored entry. Which mustn't happen.
3980 [ # # ]: 0 : if (require_transfer && !copied) {
3981 : :
3982 : : // Skip invalid/non-watched scripts that will not be migrated
3983 [ # # ]: 0 : if (not_migrated_dests.contains(dest)) {
3984 [ # # ]: 0 : dests_to_delete.push_back(dest);
3985 : 0 : continue;
3986 : : }
3987 : :
3988 [ # # ]: 0 : return util::Error{_("Error: Address book data in wallet cannot be identified to belong to migrated wallets")};
3989 : : }
3990 : : }
3991 : :
3992 : : // Persist external wallets address book entries
3993 [ # # # # ]: 0 : for (auto& [wallet, batch] : wallets_vec) {
3994 [ # # # # ]: 0 : if (!batch->TxnCommit()) {
3995 [ # # ]: 0 : return util::Error{strprintf(_("Error: Unable to write data to disk for wallet %s"), wallet->GetName())};
3996 : : }
3997 : : }
3998 : :
3999 : : // Remove the things to delete in this wallet
4000 [ # # # # ]: 0 : if (dests_to_delete.size() > 0) {
4001 [ # # ]: 0 : for (const auto& dest : dests_to_delete) {
4002 [ # # # # ]: 0 : if (!DelAddressBookWithDB(local_wallet_batch, dest)) {
4003 [ # # ]: 0 : return util::Error{_("Error: Unable to remove watchonly address book data")};
4004 : : }
4005 : : }
4006 : : }
4007 : :
4008 : : // If there was no key material in the main wallet, there should be no records on it anymore.
4009 : : // This wallet will be discarded at the end of the process. Only wallets that contain the
4010 : : // migrated records will be presented to the user.
4011 [ # # ]: 0 : if (!has_spendable_material) {
4012 [ # # # # ]: 0 : if (!m_address_book.empty()) return util::Error{_("Error: Not all address book records were migrated")};
4013 [ # # # # ]: 0 : if (!mapWallet.empty()) return util::Error{_("Error: Not all transaction records were migrated")};
4014 : : }
4015 : :
4016 : 0 : return {}; // all good
4017 : 0 : }
4018 : :
4019 : 39328 : bool CWallet::CanGrindR() const
4020 : : {
4021 : 39328 : return !IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS);
4022 : : }
4023 : :
4024 : : // Returns wallet prefix for migration.
4025 : : // Used to name the backup file and newly created wallets.
4026 : : // E.g. a watch-only wallet is named "<prefix>_watchonly".
4027 : 0 : static std::string MigrationPrefixName(CWallet& wallet)
4028 : : {
4029 [ # # ]: 0 : const std::string& name{wallet.GetName()};
4030 [ # # ]: 0 : return name.empty() ? "default_wallet" : name;
4031 : : }
4032 : :
4033 : 0 : bool DoMigration(CWallet& wallet, WalletContext& context, bilingual_str& error, MigrationResult& res, const bool load_on_startup = true) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet)
4034 : : {
4035 : 0 : AssertLockHeld(wallet.cs_wallet);
4036 : :
4037 : : // Get all of the descriptors from the legacy wallet
4038 : 0 : std::optional<MigrationData> data = wallet.GetDescriptorsForLegacy(error);
4039 [ # # ]: 0 : if (data == std::nullopt) return false;
4040 : :
4041 : : // Create the watchonly and solvable wallets if necessary
4042 [ # # # # : 0 : if (data->watch_descs.size() > 0 || data->solvable_descs.size() > 0) {
# # # # ]
4043 [ # # ]: 0 : DatabaseOptions options;
4044 : 0 : options.require_existing = false;
4045 : 0 : options.require_create = true;
4046 : 0 : options.require_format = DatabaseFormat::SQLITE;
4047 : :
4048 [ # # ]: 0 : WalletContext empty_context;
4049 : 0 : empty_context.args = context.args;
4050 : :
4051 : : // Make the wallets
4052 : 0 : options.create_flags = WALLET_FLAG_DISABLE_PRIVATE_KEYS | WALLET_FLAG_BLANK_WALLET | WALLET_FLAG_DESCRIPTORS;
4053 [ # # # # ]: 0 : if (wallet.IsWalletFlagSet(WALLET_FLAG_AVOID_REUSE)) {
4054 : 0 : options.create_flags |= WALLET_FLAG_AVOID_REUSE;
4055 : : }
4056 [ # # # # ]: 0 : if (wallet.IsWalletFlagSet(WALLET_FLAG_KEY_ORIGIN_METADATA)) {
4057 : 0 : options.create_flags |= WALLET_FLAG_KEY_ORIGIN_METADATA;
4058 : : }
4059 [ # # # # ]: 0 : if (data->watch_descs.size() > 0) {
4060 [ # # ]: 0 : wallet.WalletLogPrintf("Making a new watchonly wallet containing the watched scripts\n");
4061 : :
4062 : 0 : DatabaseStatus status;
4063 : 0 : std::vector<bilingual_str> warnings;
4064 [ # # ]: 0 : std::string wallet_name = MigrationPrefixName(wallet) + "_watchonly";
4065 [ # # ]: 0 : std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(wallet_name, options, status, error);
4066 [ # # ]: 0 : if (!database) {
4067 [ # # ]: 0 : error = strprintf(_("Wallet file creation failed: %s"), error);
4068 : 0 : return false;
4069 : : }
4070 : :
4071 [ # # # # ]: 0 : data->watchonly_wallet = CWallet::CreateNew(empty_context, wallet_name, std::move(database), options.create_flags, /*born_encrypted=*/false, error, warnings);
4072 [ # # ]: 0 : if (!data->watchonly_wallet) {
4073 [ # # ]: 0 : error = _("Error: Failed to create new watchonly wallet");
4074 : 0 : return false;
4075 : : }
4076 : 0 : res.watchonly_wallet = data->watchonly_wallet;
4077 [ # # ]: 0 : LOCK(data->watchonly_wallet->cs_wallet);
4078 : :
4079 : : // Parse the descriptors and add them to the new wallet
4080 [ # # ]: 0 : for (const auto& [desc_str, creation_time] : data->watch_descs) {
4081 : : // Parse the descriptor
4082 : 0 : FlatSigningProvider keys;
4083 [ # # ]: 0 : std::string parse_err;
4084 [ # # # # ]: 0 : std::vector<std::unique_ptr<Descriptor>> descs = Parse(desc_str, keys, parse_err, /*require_checksum=*/ true);
4085 : : // LegacyDataSPKM should not produce invalid, multipath, or ranged watch-only descriptors.
4086 [ # # # # ]: 0 : assert(descs.size() == 1);
4087 [ # # # # : 0 : assert(!descs.at(0)->IsRange());
# # ]
4088 : :
4089 : : // Add to the wallet
4090 [ # # # # : 0 : WalletDescriptor w_desc(std::move(descs.at(0)), creation_time, 0, 0, 0);
# # ]
4091 [ # # # # : 0 : if (auto spkm_res = data->watchonly_wallet->AddWalletDescriptor(w_desc, keys, "", false); !spkm_res) {
# # ]
4092 [ # # # # ]: 0 : throw std::runtime_error(util::ErrorString(spkm_res).original);
4093 : 0 : }
4094 : 0 : }
4095 : :
4096 : : // Add the wallet to settings
4097 [ # # ]: 0 : UpdateWalletSetting(*context.chain, wallet_name, load_on_startup, warnings);
4098 : 0 : }
4099 [ # # # # ]: 0 : if (data->solvable_descs.size() > 0) {
4100 [ # # ]: 0 : wallet.WalletLogPrintf("Making a new watchonly wallet containing the unwatched solvable scripts\n");
4101 : :
4102 : 0 : DatabaseStatus status;
4103 : 0 : std::vector<bilingual_str> warnings;
4104 [ # # ]: 0 : std::string wallet_name = MigrationPrefixName(wallet) + "_solvables";
4105 [ # # ]: 0 : std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(wallet_name, options, status, error);
4106 [ # # ]: 0 : if (!database) {
4107 [ # # ]: 0 : error = strprintf(_("Wallet file creation failed: %s"), error);
4108 : 0 : return false;
4109 : : }
4110 : :
4111 [ # # # # ]: 0 : data->solvable_wallet = CWallet::CreateNew(empty_context, wallet_name, std::move(database), options.create_flags, /*born_encrypted=*/false, error, warnings);
4112 [ # # ]: 0 : if (!data->solvable_wallet) {
4113 [ # # ]: 0 : error = _("Error: Failed to create new watchonly wallet");
4114 : 0 : return false;
4115 : : }
4116 : 0 : res.solvables_wallet = data->solvable_wallet;
4117 [ # # ]: 0 : LOCK(data->solvable_wallet->cs_wallet);
4118 : :
4119 : : // Parse the descriptors and add them to the new wallet
4120 [ # # ]: 0 : for (const auto& [desc_str, creation_time] : data->solvable_descs) {
4121 : : // Parse the descriptor
4122 : 0 : FlatSigningProvider keys;
4123 [ # # ]: 0 : std::string parse_err;
4124 [ # # # # ]: 0 : std::vector<std::unique_ptr<Descriptor>> descs = Parse(desc_str, keys, parse_err, /*require_checksum=*/ true);
4125 : : // LegacyDataSPKM should not produce invalid, multipath, or ranged watch-only descriptors.
4126 [ # # # # ]: 0 : assert(descs.size() == 1);
4127 [ # # # # : 0 : assert(!descs.at(0)->IsRange());
# # ]
4128 : :
4129 : : // Add to the wallet
4130 [ # # # # : 0 : WalletDescriptor w_desc(std::move(descs.at(0)), creation_time, 0, 0, 0);
# # ]
4131 [ # # # # : 0 : if (auto spkm_res = data->solvable_wallet->AddWalletDescriptor(w_desc, keys, "", false); !spkm_res) {
# # ]
4132 [ # # # # ]: 0 : throw std::runtime_error(util::ErrorString(spkm_res).original);
4133 : 0 : }
4134 : 0 : }
4135 : :
4136 : : // Add the wallet to settings
4137 [ # # ]: 0 : UpdateWalletSetting(*context.chain, wallet_name, load_on_startup, warnings);
4138 : 0 : }
4139 : 0 : }
4140 : :
4141 : : // Add the descriptors to the wallet, remove the LegacyDataSPKM, and clean up transactions and address book data
4142 [ # # # # ]: 0 : return RunWithinTxn(wallet.GetDatabase(), /*process_desc=*/"apply migration process", [&](WalletBatch& batch) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet){
4143 [ # # ]: 0 : if (auto res_migration = wallet.ApplyMigrationData(batch, *data); !res_migration) {
4144 [ # # ]: 0 : error = util::ErrorString(res_migration);
4145 : 0 : return false;
4146 : 0 : }
4147 : 0 : wallet.WalletLogPrintf("Wallet migration complete.\n");
4148 : 0 : return true;
4149 : : });
4150 : 0 : }
4151 : :
4152 : 0 : util::Result<MigrationResult> MigrateLegacyToDescriptor(const std::string& wallet_name, const SecureString& passphrase, WalletContext& context, bool load_wallet)
4153 : : {
4154 : 0 : std::vector<bilingual_str> warnings;
4155 [ # # ]: 0 : bilingual_str error;
4156 : :
4157 : : // The only kind of wallets that could be loaded are descriptor ones, which don't need to be migrated.
4158 [ # # # # ]: 0 : if (auto wallet = GetWallet(context, wallet_name)) {
4159 [ # # # # ]: 0 : assert(wallet->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
4160 [ # # ]: 0 : return util::Error{_("Error: This wallet is already a descriptor wallet")};
4161 : : } else {
4162 : : // Check if the wallet is BDB
4163 [ # # # # ]: 0 : const auto& wallet_path = GetWalletPath(wallet_name);
4164 [ # # ]: 0 : if (!wallet_path) {
4165 [ # # ]: 0 : return util::Error{util::ErrorString(wallet_path)};
4166 : : }
4167 [ # # # # ]: 0 : if (!fs::exists(*wallet_path)) {
4168 [ # # ]: 0 : return util::Error{_("Error: Wallet does not exist")};
4169 : : }
4170 [ # # # # : 0 : if (!IsBDBFile(BDBDataFile(*wallet_path))) {
# # ]
4171 [ # # ]: 0 : return util::Error{_("Error: This wallet is already a descriptor wallet")};
4172 : : }
4173 : 0 : }
4174 : :
4175 : : // Load the wallet but only in the context of this function.
4176 : : // No signals should be connected nor should anything else be aware of this wallet
4177 [ # # ]: 0 : WalletContext empty_context;
4178 : 0 : empty_context.args = context.args;
4179 [ # # ]: 0 : DatabaseOptions options;
4180 : 0 : options.require_existing = true;
4181 : 0 : options.require_format = DatabaseFormat::BERKELEY_RO;
4182 : 0 : DatabaseStatus status;
4183 [ # # ]: 0 : std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(wallet_name, options, status, error);
4184 [ # # ]: 0 : if (!database) {
4185 [ # # # # : 0 : return util::Error{Untranslated("Wallet file verification failed.") + Untranslated(" ") + error};
# # # # #
# ]
4186 : : }
4187 : :
4188 : : // Make the local wallet
4189 [ # # ]: 0 : std::shared_ptr<CWallet> local_wallet = CWallet::LoadExisting(empty_context, wallet_name, std::move(database), error, warnings);
4190 [ # # ]: 0 : if (!local_wallet) {
4191 [ # # # # : 0 : return util::Error{Untranslated("Wallet loading failed.") + Untranslated(" ") + error};
# # # # #
# ]
4192 : : }
4193 : :
4194 [ # # ]: 0 : return MigrateLegacyToDescriptor(std::move(local_wallet), passphrase, context, load_wallet);
4195 : 0 : }
4196 : :
4197 : 0 : util::Result<MigrationResult> MigrateLegacyToDescriptor(std::shared_ptr<CWallet> local_wallet, const SecureString& passphrase, WalletContext& context, bool load_wallet)
4198 : : {
4199 : 0 : MigrationResult res;
4200 [ # # ]: 0 : bilingual_str error;
4201 : 0 : std::vector<bilingual_str> warnings;
4202 : :
4203 [ # # ]: 0 : DatabaseOptions options;
4204 : 0 : options.require_existing = true;
4205 : 0 : DatabaseStatus status;
4206 : :
4207 [ # # ]: 0 : const std::string wallet_name = local_wallet->GetName();
4208 : :
4209 : : // Before anything else, check if there is something to migrate.
4210 [ # # # # ]: 0 : if (local_wallet->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS)) {
4211 [ # # ]: 0 : return util::Error{_("Error: This wallet is already a descriptor wallet")};
4212 : : }
4213 : :
4214 : : // Make a backup of the DB in the wallet's directory with a unique filename
4215 : : // using the wallet name and current timestamp. The backup filename is based
4216 : : // on the name of the parent directory containing the wallet data in most
4217 : : // cases, but in the case where the wallet name is a path to a data file,
4218 : : // the name of the data file is used, and in the case where the wallet name
4219 : : // is blank, "default_wallet" is used.
4220 [ # # ]: 0 : const std::string backup_prefix = wallet_name.empty() ? MigrationPrefixName(*local_wallet) : [&] {
4221 : : // fs::weakly_canonical resolves relative specifiers and remove trailing slashes.
4222 [ # # # # ]: 0 : const auto legacy_wallet_path = fs::weakly_canonical(GetWalletDir() / fs::PathFromString(wallet_name));
4223 [ # # # # ]: 0 : return fs::PathToString(legacy_wallet_path.filename());
4224 [ # # # # ]: 0 : }();
4225 : :
4226 [ # # # # : 0 : fs::path backup_filename = fs::PathFromString(strprintf("%s_%d.legacy.bak", backup_prefix, GetTime()));
# # ]
4227 [ # # # # ]: 0 : fs::path backup_path = fsbridge::AbsPathJoin(GetWalletDir(), backup_filename);
4228 [ # # # # : 0 : if (!local_wallet->BackupWallet(fs::PathToString(backup_path))) {
# # ]
4229 [ # # ]: 0 : return util::Error{_("Error: Unable to make a backup of your wallet")};
4230 : : }
4231 [ # # ]: 0 : res.backup_path = backup_path;
4232 : :
4233 : 0 : bool success = false;
4234 : :
4235 : : // Unlock the wallet if needed
4236 [ # # # # ]: 0 : if (local_wallet->IsLocked()) {
4237 [ # # # # : 0 : if (auto unlocked{local_wallet->Unlock(passphrase)}; !unlocked) return util::Error{unlocked.error().message};
# # ]
4238 : : }
4239 : :
4240 : : // Indicates whether the current wallet is empty after migration.
4241 : : // Notes:
4242 : : // When non-empty: the local wallet becomes the main spendable wallet.
4243 : : // When empty: The local wallet is excluded from the result, as the
4244 : : // user does not expect an empty spendable wallet after
4245 : : // migrating only watch-only scripts.
4246 : 0 : bool empty_local_wallet = false;
4247 : :
4248 : 0 : {
4249 [ # # ]: 0 : LOCK(local_wallet->cs_wallet);
4250 : : // First change to using SQLite
4251 [ # # # # : 0 : if (!local_wallet->MigrateToSQLite(error)) return util::Error{error};
# # # # ]
4252 : :
4253 : : // Do the migration of keys and scripts for non-empty wallets, and cleanup if it fails
4254 [ # # # # ]: 0 : if (HasLegacyRecords(*local_wallet)) {
4255 [ # # ]: 0 : success = DoMigration(*local_wallet, context, error, res, load_wallet);
4256 : : // No scripts mean empty wallet after migration
4257 [ # # ]: 0 : empty_local_wallet = local_wallet->GetAllScriptPubKeyMans().empty();
4258 : : } else {
4259 : : // Make sure that descriptors flag is actually set
4260 [ # # ]: 0 : local_wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
4261 : : success = true;
4262 : : }
4263 : 0 : }
4264 : :
4265 : : // In case of loading failure, we need to remember the wallet files we have created to remove.
4266 : : // A `set` is used as it may be populated with the same wallet directory paths multiple times,
4267 : : // both before and after loading. This ensures the set is complete even if one of the wallets
4268 : : // fails to load.
4269 [ # # ]: 0 : std::set<fs::path> wallet_files_to_remove;
4270 : 0 : std::set<fs::path> wallet_empty_dirs_to_remove;
4271 : :
4272 : : // Helper to track wallet files and directories for cleanup on failure.
4273 : : // Only directories of wallets created during migration (not the main wallet) are tracked.
4274 : 0 : auto track_for_cleanup = [&](const CWallet& wallet) {
4275 : 0 : const auto files = wallet.GetDatabase().Files();
4276 [ # # ]: 0 : wallet_files_to_remove.insert(files.begin(), files.end());
4277 [ # # ]: 0 : if (wallet.GetName() != wallet_name) {
4278 : : // If this isn’t the main wallet, mark its directory for removal.
4279 : : // This applies to the watch-only and solvable wallets.
4280 : : // Wallets stored directly as files in the top-level directory
4281 : : // (e.g. default unnamed wallets) don’t have a removable parent directory.
4282 [ # # # # : 0 : wallet_empty_dirs_to_remove.insert(fs::PathFromString(wallet.GetDatabase().Filename()).parent_path());
# # # # ]
4283 : : }
4284 : 0 : };
4285 : :
4286 : :
4287 [ # # ]: 0 : if (success) {
4288 [ # # ]: 0 : Assume(!res.wallet); // We will set it here.
4289 : : // Check if the local wallet is empty after migration
4290 [ # # ]: 0 : if (empty_local_wallet) {
4291 : : // This wallet has no records. We can safely remove it.
4292 [ # # ]: 0 : std::vector<fs::path> paths_to_remove = local_wallet->GetDatabase().Files();
4293 : 0 : local_wallet.reset();
4294 [ # # # # ]: 0 : for (const auto& path_to_remove : paths_to_remove) fs::remove(path_to_remove);
4295 : 0 : }
4296 : :
4297 [ # # ]: 0 : if (load_wallet) {
4298 [ # # ]: 0 : LogInfo("Loading new wallets after migration...\n");
4299 : : /** We only override the load_on_startup setting in case the user explicitly said
4300 : : * that he does not want to load the wallet, otherwise keep the old wallet configuration */
4301 : : } else {
4302 [ # # ]: 0 : UpdateWalletSetting(*context.chain, wallet_name, /*load_on_startup=*/false, warnings);
4303 : : }
4304 : : // Migration successful, if load_wallet is set load all the migrated wallets.
4305 : 0 : bool main_wallet_set{false};
4306 [ # # ]: 0 : for (std::shared_ptr<CWallet>* wallet_ptr : {&local_wallet, &res.watchonly_wallet, &res.solvables_wallet}) {
4307 [ # # ]: 0 : if (success && *wallet_ptr) {
4308 : 0 : std::shared_ptr<CWallet>& wallet = *wallet_ptr;
4309 : : // Track db path
4310 [ # # ]: 0 : track_for_cleanup(*wallet);
4311 [ # # ]: 0 : assert(wallet.use_count() == 1);
4312 [ # # ]: 0 : std::string wallet_name = wallet->GetName();
4313 : 0 : wallet.reset();
4314 [ # # ]: 0 : if (load_wallet) {
4315 [ # # # # ]: 0 : wallet = LoadWallet(context, wallet_name, /*load_on_start=*/std::nullopt, options, status, error, warnings);
4316 [ # # ]: 0 : if (!wallet) {
4317 [ # # ]: 0 : LogError("Failed to load wallet '%s' after migration. Rolling back migration to preserve consistency. "
4318 : : "Error cause: %s\n", wallet_name, error.original);
4319 : 0 : success = false;
4320 : 0 : break;
4321 : : }
4322 : : }
4323 : : // Set the first wallet as the main one.
4324 : : // The loop order is intentional and must always start with the local wallet.
4325 [ # # ]: 0 : if (!main_wallet_set) {
4326 [ # # ]: 0 : res.wallet_name = wallet_name;
4327 [ # # ]: 0 : if (load_wallet) res.wallet = std::move(wallet);
4328 : : main_wallet_set = true;
4329 : : }
4330 [ # # ]: 0 : if (wallet_ptr == &res.watchonly_wallet) {
4331 [ # # ]: 0 : res.watchonly_wallet_name = wallet_name;
4332 [ # # ]: 0 : } else if (wallet_ptr == &res.solvables_wallet) {
4333 [ # # ]: 0 : res.solvables_wallet_name = wallet_name;
4334 : : }
4335 : 0 : }
4336 : : }
4337 : : }
4338 : 0 : if (!success) {
4339 : : // Make list of wallets to cleanup
4340 : 0 : std::vector<std::shared_ptr<CWallet>> created_wallets;
4341 [ # # # # ]: 0 : if (local_wallet) created_wallets.push_back(std::move(local_wallet));
4342 [ # # # # ]: 0 : if (res.watchonly_wallet) created_wallets.push_back(std::move(res.watchonly_wallet));
4343 [ # # # # ]: 0 : if (res.solvables_wallet) created_wallets.push_back(std::move(res.solvables_wallet));
4344 : :
4345 : : // Get the directories to remove after unloading
4346 [ # # ]: 0 : for (std::shared_ptr<CWallet>& wallet : created_wallets) {
4347 [ # # ]: 0 : track_for_cleanup(*wallet);
4348 : : }
4349 : :
4350 : : // Unload the wallets
4351 [ # # ]: 0 : for (std::shared_ptr<CWallet>& w : created_wallets) {
4352 [ # # ]: 0 : if (w->HaveChain()) {
4353 : : // Unloading for wallets that were loaded for normal use
4354 [ # # # # ]: 0 : if (!RemoveWallet(context, w, /*load_on_start=*/false)) {
4355 [ # # # # ]: 0 : error += _("\nUnable to cleanup failed migration");
4356 [ # # ]: 0 : return util::Error{error};
4357 : : }
4358 [ # # ]: 0 : WaitForDeleteWallet(std::move(w));
4359 : : } else {
4360 : : // Unloading for wallets in local context
4361 [ # # ]: 0 : assert(w.use_count() == 1);
4362 : 0 : w.reset();
4363 : : }
4364 : : }
4365 : :
4366 : : // First, delete the db files we have created throughout this process and nothing else
4367 [ # # ]: 0 : for (const fs::path& file : wallet_files_to_remove) {
4368 [ # # ]: 0 : fs::remove(file);
4369 : : }
4370 : :
4371 : : // Second, delete the created wallet directories and nothing else. They must be empty at this point.
4372 [ # # ]: 0 : for (const fs::path& dir : wallet_empty_dirs_to_remove) {
4373 [ # # # # ]: 0 : Assume(fs::is_empty(dir));
4374 [ # # ]: 0 : fs::remove(dir);
4375 : : }
4376 : :
4377 : : // Restore the backup
4378 : : // Convert the backup file to the wallet db file by renaming it and moving it into the wallet's directory.
4379 [ # # ]: 0 : bilingual_str restore_error;
4380 [ # # ]: 0 : const auto& ptr_wallet = RestoreWallet(context, backup_path, wallet_name, /*load_on_start=*/std::nullopt, status, restore_error, warnings, /*load_after_restore=*/false, /*allow_unnamed=*/true);
4381 [ # # ]: 0 : if (!restore_error.empty()) {
4382 [ # # # # ]: 0 : error += restore_error + _("\nUnable to restore backup of wallet.");
4383 [ # # ]: 0 : return util::Error{error};
4384 : : }
4385 : : // Verify that the legacy wallet is not loaded after restoring from the backup.
4386 [ # # ]: 0 : assert(!ptr_wallet);
4387 : :
4388 [ # # ]: 0 : return util::Error{error};
4389 : 0 : }
4390 : 0 : return res;
4391 : 0 : }
4392 : :
4393 : 251328 : void CWallet::CacheNewScriptPubKeys(const std::set<CScript>& spks, ScriptPubKeyMan* spkm)
4394 : : {
4395 [ + + ]: 514169 : for (const auto& script : spks) {
4396 : 262841 : m_cached_spks[script].push_back(spkm);
4397 : : }
4398 : 251328 : }
4399 : :
4400 : 251328 : void CWallet::TopUpCallback(const std::set<CScript>& spks, ScriptPubKeyMan* spkm)
4401 : : {
4402 : : // Update scriptPubKey cache
4403 : 251328 : CacheNewScriptPubKeys(spks, spkm);
4404 : 251328 : }
4405 : :
4406 : 0 : CWallet::HDPubKeyMap CWallet::GetHDPubKeys(HDKeyFilter filter) const
4407 : : {
4408 : 0 : AssertLockHeld(cs_wallet);
4409 : :
4410 [ # # ]: 0 : Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
4411 : :
4412 [ # # ]: 0 : HDPubKeyMap xpubs;
4413 [ # # # # : 0 : for (const auto& spkm : filter == HDKeyFilter::Active ? GetActiveScriptPubKeyMans() : GetAllScriptPubKeyMans()) {
# # # # ]
4414 [ # # # # ]: 0 : auto* desc_spkm = Assert(dynamic_cast<DescriptorScriptPubKeyMan*>(spkm));
4415 [ # # ]: 0 : LOCK(desc_spkm->cs_desc_man);
4416 [ # # ]: 0 : WalletDescriptor w_desc = desc_spkm->GetWalletDescriptor();
4417 [ # # # # : 0 : if (filter == HDKeyFilter::UnusedKey && w_desc.descriptor->HasScripts()) continue;
# # ]
4418 : :
4419 [ # # ]: 0 : std::set<CPubKey> desc_pubkeys;
4420 : 0 : std::set<CExtPubKey> desc_xpubs;
4421 [ # # ]: 0 : w_desc.descriptor->GetPubKeys(desc_pubkeys, desc_xpubs);
4422 [ # # ]: 0 : for (const CExtPubKey& xpub : desc_xpubs) {
4423 [ # # # # ]: 0 : xpubs[xpub].insert(desc_spkm);
4424 : : }
4425 [ # # # # ]: 0 : }
4426 : 0 : return xpubs;
4427 : 0 : }
4428 : :
4429 : 0 : std::optional<CKey> CWallet::GetKey(const CKeyID& keyid) const
4430 : : {
4431 [ # # ]: 0 : Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
4432 : :
4433 [ # # ]: 0 : for (const auto& spkm : GetAllScriptPubKeyMans()) {
4434 [ # # ]: 0 : const DescriptorScriptPubKeyMan* desc_spkm = dynamic_cast<DescriptorScriptPubKeyMan*>(spkm);
4435 [ # # ]: 0 : assert(desc_spkm);
4436 [ # # ]: 0 : LOCK(desc_spkm->cs_desc_man);
4437 [ # # # # ]: 0 : if (std::optional<CKey> key = desc_spkm->GetKey(keyid)) {
4438 [ # # ]: 0 : return key;
4439 [ # # ]: 0 : }
4440 : 0 : }
4441 : 0 : return std::nullopt;
4442 : : }
4443 : :
4444 : 0 : std::optional<CExtKey> CWallet::GetExtKey(const CExtPubKey& xpub) const
4445 : : {
4446 [ # # ]: 0 : if (std::optional<CKey> key = GetKey(xpub.pubkey.GetID())) {
4447 [ # # ]: 0 : return CExtKey{xpub, *key};
4448 : 0 : }
4449 : 0 : return std::nullopt;
4450 : : }
4451 : :
4452 : 9683 : void CWallet::WriteBestBlock() const
4453 : : {
4454 : 9683 : AssertLockHeld(cs_wallet);
4455 : :
4456 [ + - ]: 19366 : if (!m_last_block_processed.IsNull()) {
4457 : 9683 : CBlockLocator loc;
4458 [ + - ]: 9683 : chain().findBlock(m_last_block_processed, FoundBlock().locator(loc));
4459 : :
4460 [ + - ]: 9683 : if (!loc.IsNull()) {
4461 [ + - ]: 9683 : WalletBatch batch(GetDatabase());
4462 [ + - ]: 9683 : batch.WriteBestBlock(loc);
4463 : 9683 : }
4464 : 9683 : }
4465 : 9683 : }
4466 : :
4467 : 200633 : void CWallet::RefreshTXOsFromTx(const CWalletTx& wtx)
4468 : : {
4469 : 200633 : AssertLockHeld(cs_wallet);
4470 [ - + + - : 802532 : for (uint32_t i = 0; i < wtx.GetTx()->vout.size(); ++i) {
+ + ]
4471 [ + - + - ]: 200633 : const CTxOut& txout = wtx.GetTx()->vout.at(i);
4472 [ - + ]: 200633 : if (!IsMine(txout)) continue;
4473 : 200633 : COutPoint outpoint(wtx.GetHash(), i);
4474 [ + - ]: 200633 : if (m_txos.contains(outpoint)) {
4475 : : } else {
4476 : 200633 : m_txos.emplace(outpoint, WalletTXO{wtx, txout});
4477 : : }
4478 : : }
4479 : 200633 : }
4480 : :
4481 : 0 : void CWallet::RefreshAllTXOs()
4482 : : {
4483 : 0 : AssertLockHeld(cs_wallet);
4484 [ # # ]: 0 : for (const auto& [_, wtx] : mapWallet) {
4485 : 0 : RefreshTXOsFromTx(wtx);
4486 : : }
4487 : 0 : }
4488 : :
4489 : 0 : std::optional<WalletTXO> CWallet::GetTXO(const COutPoint& outpoint) const
4490 : : {
4491 : 0 : AssertLockHeld(cs_wallet);
4492 : 0 : const auto& it = m_txos.find(outpoint);
4493 [ # # ]: 0 : if (it == m_txos.end()) {
4494 : 0 : return std::nullopt;
4495 : : }
4496 : 0 : return it->second;
4497 : : }
4498 : :
4499 : 0 : void CWallet::DisconnectChainNotifications()
4500 : : {
4501 [ # # ]: 0 : if (m_chain_notifications_handler) {
4502 : 0 : m_chain_notifications_handler->disconnect();
4503 : 0 : chain().waitForNotifications();
4504 [ # # ]: 0 : m_chain_notifications_handler.reset();
4505 : : }
4506 : 0 : }
4507 : :
4508 : : } // namespace wallet
|