LCOV - code coverage report
Current view: top level - src/wallet - wallet.cpp (source / functions) Coverage Total Hit
Test: total_coverage.info Lines: 90.2 % 2458 2217
Test Date: 2026-09-23 07:12:03 Functions: 98.2 % 223 219
Branches: 56.7 % 3966 2250

             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                 :         193 : bool AddWalletSetting(interfaces::Chain& chain, const std::string& wallet_name)
     102                 :             : {
     103                 :         386 :     const auto update_function = [&wallet_name](common::SettingsValue& setting_value) {
     104         [ +  + ]:         193 :         if (!setting_value.isArray()) setting_value.setArray();
     105         [ +  + ]:         358 :         for (const auto& value : setting_value.getValues()) {
     106   [ +  -  +  - ]:         165 :             if (value.isStr() && value.get_str() == wallet_name) return interfaces::SettingsAction::SKIP_WRITE;
     107                 :             :         }
     108         [ +  - ]:         193 :         setting_value.push_back(wallet_name);
     109                 :         193 :         return interfaces::SettingsAction::WRITE;
     110                 :         193 :     };
     111   [ +  -  +  - ]:         193 :     return chain.updateRwSetting("wallet", update_function);
     112                 :             : }
     113                 :             : 
     114                 :          22 : bool RemoveWalletSetting(interfaces::Chain& chain, const std::string& wallet_name)
     115                 :             : {
     116                 :          44 :     const auto update_function = [&wallet_name](common::SettingsValue& setting_value) {
     117         [ +  + ]:          22 :         if (!setting_value.isArray()) {
     118   [ +  +  +  - ]:           3 :             if (wallet_name.empty() && setting_value.isNull()) {
     119                 :             :                 // Empty setting suppresses backwards-compatible default wallet autoload.
     120                 :           1 :                 setting_value.setArray();
     121                 :           1 :                 return interfaces::SettingsAction::WRITE;
     122                 :             :             }
     123                 :             :             return interfaces::SettingsAction::SKIP_WRITE;
     124                 :             :         }
     125                 :          19 :         common::SettingsValue new_value(common::SettingsValue::VARR);
     126   [ +  -  +  + ]:          81 :         for (const auto& value : setting_value.getValues()) {
     127   [ +  -  +  -  :          62 :             if (!value.isStr() || value.get_str() != wallet_name) new_value.push_back(value);
          +  +  +  -  +  
                      - ]
     128                 :             :         }
     129   [ -  +  -  +  :          19 :         if (new_value.size() == setting_value.size()) return interfaces::SettingsAction::SKIP_WRITE;
                   +  + ]
     130                 :          11 :         setting_value = std::move(new_value);
     131                 :          11 :         return interfaces::SettingsAction::WRITE;
     132                 :          19 :     };
     133   [ +  -  +  - ]:          22 :     return chain.updateRwSetting("wallet", update_function);
     134                 :             : }
     135                 :             : 
     136                 :        1891 : 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         [ +  + ]:        1891 :     if (!load_on_startup) return;
     142   [ +  +  +  + ]:         205 :     if (load_on_startup.value() && !AddWalletSetting(chain, wallet_name)) {
     143   [ +  -  +  - ]:           4 :         warnings.emplace_back(Untranslated("Wallet load on startup setting could not be updated, so wallet may not be loaded next node startup."));
     144   [ +  +  +  + ]:         203 :     } else if (!load_on_startup.value() && !RemoveWalletSetting(chain, wallet_name)) {
     145   [ +  -  +  - ]:           2 :         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                 :       17938 : static void RefreshMempoolStatus(CWalletTx& tx, interfaces::Chain& chain)
     155                 :             : {
     156         [ +  + ]:       17938 :     if (chain.isInMempool(tx.GetHash())) {
     157         [ -  + ]:        3816 :         tx.m_state = TxStateInMempool();
     158         [ +  + ]:       14122 :     } else if (tx.state<TxStateInMempool>()) {
     159         [ -  + ]:         319 :         tx.m_state = TxStateInactive();
     160                 :             :     }
     161                 :       17938 : }
     162                 :             : 
     163                 :         985 : bool AddWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet)
     164                 :             : {
     165                 :         985 :     LOCK(context.wallets_mutex);
     166         [ -  + ]:         985 :     assert(wallet);
     167         [ +  - ]:         985 :     std::vector<std::shared_ptr<CWallet>>::const_iterator i = std::find(context.wallets.begin(), context.wallets.end(), wallet);
     168         [ +  - ]:         985 :     if (i != context.wallets.end()) return false;
     169         [ +  - ]:         985 :     context.wallets.push_back(wallet);
     170         [ +  - ]:         985 :     wallet->ConnectScriptPubKeyManNotifiers();
     171         [ +  - ]:         985 :     wallet->NotifyCanGetAddressesChanged();
     172                 :             :     return true;
     173                 :         985 : }
     174                 :             : 
     175                 :         985 : bool RemoveWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet, std::optional<bool> load_on_start, std::vector<bilingual_str>& warnings)
     176                 :             : {
     177         [ -  + ]:         985 :     assert(wallet);
     178                 :             : 
     179                 :         985 :     interfaces::Chain& chain = wallet->chain();
     180         [ -  + ]:         985 :     std::string name = wallet->GetName();
     181   [ +  -  +  - ]:        2955 :     WITH_LOCK(wallet->cs_wallet, wallet->WriteBestBlock());
     182                 :             : 
     183                 :             :     // Unregister with the validation interface which also drops shared pointers.
     184         [ +  - ]:         985 :     wallet->DisconnectChainNotifications();
     185                 :         985 :     {
     186         [ +  - ]:         985 :         LOCK(context.wallets_mutex);
     187                 :         985 :         std::vector<std::shared_ptr<CWallet>>::iterator i = std::find(context.wallets.begin(), context.wallets.end(), wallet);
     188   [ -  +  -  - ]:         985 :         if (i == context.wallets.end()) return false;
     189         [ +  - ]:         985 :         context.wallets.erase(i);
     190                 :           0 :     }
     191                 :             :     // Notify unload so that upper layers release the shared pointer.
     192         [ +  - ]:         985 :     wallet->NotifyUnload();
     193                 :             : 
     194                 :             :     // Write the wallet setting
     195         [ +  - ]:         985 :     UpdateWalletSetting(chain, name, load_on_start, warnings);
     196                 :             : 
     197                 :             :     return true;
     198                 :         985 : }
     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                 :        1435 : std::vector<std::shared_ptr<CWallet>> GetWallets(WalletContext& context)
     207                 :             : {
     208                 :        1435 :     LOCK(context.wallets_mutex);
     209         [ +  - ]:        1435 :     return context.wallets;
     210                 :        1435 : }
     211                 :             : 
     212                 :        4667 : std::shared_ptr<CWallet> GetDefaultWallet(WalletContext& context, size_t& count)
     213                 :             : {
     214                 :        4667 :     LOCK(context.wallets_mutex);
     215         [ -  + ]:        4667 :     count = context.wallets.size();
     216   [ +  +  +  -  :        9325 :     return count == 1 ? context.wallets[0] : nullptr;
                   +  - ]
     217                 :        4667 : }
     218                 :             : 
     219                 :       16293 : std::shared_ptr<CWallet> GetWallet(WalletContext& context, const std::string& name)
     220                 :             : {
     221                 :       16293 :     LOCK(context.wallets_mutex);
     222         [ +  + ]:       81131 :     for (const std::shared_ptr<CWallet>& wallet : context.wallets) {
     223   [ +  +  +  -  :       97364 :         if (wallet->GetName() == name) return wallet;
                   +  - ]
     224                 :             :     }
     225                 :          60 :     return nullptr;
     226                 :       16293 : }
     227                 :             : 
     228                 :           1 : std::unique_ptr<interfaces::Handler> HandleLoadWallet(WalletContext& context, LoadWalletFn load_wallet)
     229                 :             : {
     230                 :           1 :     LOCK(context.wallets_mutex);
     231         [ +  - ]:           1 :     auto it = context.wallet_load_fns.emplace(context.wallet_load_fns.end(), std::move(load_wallet));
     232   [ +  -  +  -  :           3 :     return interfaces::MakeCleanupHandler([&context, it] { LOCK(context.wallets_mutex); context.wallet_load_fns.erase(it); });
                   +  - ]
     233                 :           1 : }
     234                 :             : 
     235                 :        1008 : void NotifyWalletLoaded(WalletContext& context, const std::shared_ptr<CWallet>& wallet)
     236                 :             : {
     237                 :        1008 :     LOCK(context.wallets_mutex);
     238         [ +  + ]:        1009 :     for (auto& load_wallet : context.wallet_load_fns) {
     239   [ +  -  +  - ]:           1 :         load_wallet(interfaces::MakeWallet(context, wallet));
     240                 :             :     }
     241                 :        1008 : }
     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                 :        1101 : static void FlushAndDeleteWallet(CWallet* wallet)
     251                 :             : {
     252         [ -  + ]:        1101 :     const std::string name = wallet->GetName();
     253         [ +  - ]:        1101 :     wallet->WalletLogPrintf("Releasing wallet %s..\n", name);
     254                 :        1101 :     delete wallet;
     255                 :             :     // Wallet is now released, notify WaitForDeleteWallet, if any.
     256                 :        1101 :     {
     257         [ +  - ]:        1101 :         LOCK(g_wallet_release_mutex);
     258         [ +  + ]:        1101 :         if (g_unloading_wallet_set.erase(name) == 0) {
     259                 :             :             // WaitForDeleteWallet was not called for this wallet, all done.
     260         [ +  - ]:          97 :             return;
     261                 :             :         }
     262                 :          97 :     }
     263                 :        1004 :     g_wallet_release_cv.notify_all();
     264                 :        1101 : }
     265                 :             : 
     266                 :        1004 : void WaitForDeleteWallet(std::shared_ptr<CWallet>&& wallet)
     267                 :             : {
     268                 :             :     // Mark wallet for unloading.
     269         [ -  + ]:        1004 :     const std::string name = wallet->GetName();
     270                 :        1004 :     {
     271         [ +  - ]:        1004 :         LOCK(g_wallet_release_mutex);
     272         [ +  - ]:        1004 :         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                 :        1004 :     wallet.reset();
     279                 :        1004 :     {
     280         [ +  - ]:        1004 :         WAIT_LOCK(g_wallet_release_mutex, lock);
     281         [ -  + ]:        1004 :         while (g_unloading_wallet_set.contains(name)) {
     282         [ #  # ]:           0 :             g_wallet_release_cv.wait(lock);
     283                 :             :         }
     284                 :        1004 :     }
     285                 :        1004 : }
     286                 :             : 
     287                 :             : namespace {
     288                 :         280 : 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                 :         280 :     try {
     291         [ +  - ]:         280 :         std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(name, options, status, error);
     292         [ +  + ]:         280 :         if (!database) {
     293   [ +  -  +  -  :         133 :             error = Untranslated("Wallet file verification failed.") + Untranslated(" ") + error;
          +  -  +  -  +  
                      - ]
     294                 :          19 :             return nullptr;
     295                 :             :         }
     296                 :             : 
     297   [ +  -  +  - ]:         261 :         context.chain->initMessage(_("Loading wallet…"));
     298         [ +  - ]:         261 :         std::shared_ptr<CWallet> wallet = CWallet::LoadExisting(context, name, std::move(database), error, warnings);
     299         [ +  + ]:         261 :         if (!wallet) {
     300   [ +  -  +  -  :          84 :             error = Untranslated("Wallet loading failed.") + Untranslated(" ") + error;
          +  -  +  -  +  
                      - ]
     301                 :          12 :             status = DatabaseStatus::FAILED_LOAD;
     302                 :          12 :             return nullptr;
     303                 :             :         }
     304                 :             : 
     305         [ +  - ]:         249 :         NotifyWalletLoaded(context, wallet);
     306         [ +  - ]:         249 :         AddWallet(context, wallet);
     307         [ +  - ]:         249 :         wallet->postInitProcess();
     308                 :             : 
     309                 :             :         // Write the wallet setting
     310         [ +  - ]:         249 :         UpdateWalletSetting(*context.chain, name, load_on_start, warnings);
     311                 :             : 
     312                 :         249 :         return wallet;
     313         [ -  - ]:         280 :     } 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                 :         284 : 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         [ +  - ]:         852 :     auto result = WITH_LOCK(g_loading_wallet_mutex, return g_loading_wallet_set.insert(name));
     324         [ +  + ]:         284 :     if (!result.second) {
     325         [ +  - ]:           8 :         error = Untranslated("Wallet already loading.");
     326                 :           4 :         status = DatabaseStatus::FAILED_LOAD;
     327                 :           4 :         return nullptr;
     328                 :             :     }
     329                 :         280 :     auto wallet = LoadWalletInternal(context, name, load_on_start, options, status, error, warnings);
     330   [ +  -  +  - ]:         560 :     WITH_LOCK(g_loading_wallet_mutex, g_loading_wallet_set.erase(result.first));
     331         [ -  + ]:         280 :     return wallet;
     332                 :         280 : }
     333                 :             : 
     334                 :         672 : 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         [ +  + ]:         672 :     if (name.empty()) {
     338         [ +  - ]:           4 :         error = Untranslated("Wallet name cannot be empty");
     339                 :           2 :         status = DatabaseStatus::FAILED_NEW_UNNAMED;
     340                 :           2 :         return nullptr;
     341                 :             :     }
     342                 :             : 
     343                 :         670 :     uint64_t wallet_creation_flags = options.create_flags;
     344                 :         670 :     const SecureString& passphrase = options.create_passphrase;
     345         [ -  + ]:         670 :     bool born_encrypted = !passphrase.empty();
     346                 :             : 
     347                 :             :     // Only descriptor wallets can be created
     348         [ -  + ]:         670 :     Assert(wallet_creation_flags & WALLET_FLAG_DESCRIPTORS);
     349                 :         670 :     options.require_format = DatabaseFormat::SQLITE;
     350                 :             : 
     351                 :             : 
     352                 :             :     // Private keys must be disabled for an external signer wallet
     353   [ +  +  +  + ]:         670 :     if ((wallet_creation_flags & WALLET_FLAG_EXTERNAL_SIGNER) && !(wallet_creation_flags & WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
     354         [ +  - ]:           2 :         error = Untranslated("Private keys must be disabled when using an external signer");
     355                 :           1 :         status = DatabaseStatus::FAILED_CREATE;
     356                 :           1 :         return nullptr;
     357                 :             :     }
     358                 :             : 
     359                 :             :     // Do not allow a passphrase when private keys are disabled
     360   [ +  +  +  + ]:         669 :     if (born_encrypted && (wallet_creation_flags & WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
     361         [ +  - ]:           8 :         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                 :           4 :         status = DatabaseStatus::FAILED_CREATE;
     363                 :           4 :         return nullptr;
     364                 :             :     }
     365                 :             : 
     366                 :             :     // Wallet::Verify will check if we're trying to create a wallet with a duplicate name.
     367                 :         665 :     std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(name, options, status, error);
     368         [ +  + ]:         665 :     if (!database) {
     369   [ +  -  +  -  :         196 :         error = Untranslated("Wallet file verification failed.") + Untranslated(" ") + error;
          +  -  +  -  +  
                      - ]
     370                 :          28 :         status = DatabaseStatus::FAILED_VERIFY;
     371                 :          28 :         return nullptr;
     372                 :             :     }
     373                 :             : 
     374                 :             :     // Make the wallet
     375   [ +  -  +  - ]:         637 :     context.chain->initMessage(_("Creating wallet…"));
     376         [ +  + ]:         637 :     std::shared_ptr<CWallet> wallet = CWallet::CreateNew(context, name, std::move(database), wallet_creation_flags, born_encrypted, error, warnings);
     377         [ -  + ]:         634 :     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         [ +  + ]:         634 :     if (born_encrypted) {
     385   [ +  -  -  + ]:          10 :         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   [ +  -  +  - ]:        1902 :     WITH_LOCK(wallet->cs_wallet, wallet->LogStats());
     393         [ +  - ]:         634 :     NotifyWalletLoaded(context, wallet);
     394         [ +  - ]:         634 :     AddWallet(context, wallet);
     395         [ +  - ]:         634 :     wallet->postInitProcess();
     396                 :             : 
     397                 :             :     // Write the wallet settings
     398         [ +  - ]:         634 :     UpdateWalletSetting(*context.chain, name, load_on_start, warnings);
     399                 :             : 
     400                 :         634 :     status = DatabaseStatus::SUCCESS;
     401                 :         634 :     return wallet;
     402                 :         665 : }
     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                 :          53 : 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   [ +  +  +  + ]:          53 :     if (!allow_unnamed && wallet_name.empty()) {
     411         [ +  - ]:           2 :         error = Untranslated("Wallet name cannot be empty");
     412                 :           1 :         status = DatabaseStatus::FAILED_NEW_UNNAMED;
     413                 :           1 :         return nullptr;
     414                 :             :     }
     415                 :             : 
     416         [ +  - ]:          52 :     DatabaseOptions options;
     417         [ +  - ]:          52 :     ReadDatabaseArgs(*context.args, options);
     418                 :          52 :     options.require_existing = true;
     419                 :             : 
     420   [ -  +  +  -  :         104 :     const fs::path wallet_path = fsbridge::AbsPathJoin(GetWalletDir(), fs::u8path(wallet_name));
             +  -  +  - ]
     421   [ +  -  +  - ]:         104 :     auto wallet_file = wallet_path / "wallet.dat";
     422                 :          52 :     std::shared_ptr<CWallet> wallet;
     423                 :          52 :     bool wallet_file_copied = false;
     424                 :          52 :     bool created_parent_dir = false;
     425                 :             : 
     426                 :          52 :     try {
     427   [ +  -  +  + ]:          52 :         if (!fs::exists(backup_file)) {
     428   [ +  -  +  - ]:           2 :             error = Untranslated("Backup file does not exist");
     429                 :           1 :             status = DatabaseStatus::FAILED_INVALID_BACKUP_FILE;
     430                 :           1 :             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   [ +  -  +  + ]:          51 :         if (fs::exists(wallet_path)) {
     436                 :             :             // If this is a file, it is the db and we don't want to overwrite it.
     437   [ +  -  -  + ]:          11 :             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   [ +  -  +  + ]:          11 :             if (fs::exists(wallet_file)) {
     445   [ -  +  +  -  :           6 :                 error = Untranslated(strprintf("Failed to restore wallet. Database file exists in '%s'.", fs::PathToString(wallet_file)));
                   +  - ]
     446                 :           2 :                 status = DatabaseStatus::FAILED_ALREADY_EXISTS;
     447                 :           2 :                 return nullptr;
     448                 :             :             }
     449                 :             :         } else {
     450                 :             :             // The directory doesn't exist, create it
     451   [ +  -  -  + ]:          40 :             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         [ +  - ]:          49 :         fs::copy_file(backup_file, wallet_file, fs::copy_options::none);
     460                 :          49 :         wallet_file_copied = true;
     461                 :             : 
     462         [ +  + ]:          49 :         if (load_after_restore) {
     463   [ +  -  -  + ]:          86 :             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   [ +  -  +  + ]:          43 :     if (load_after_restore && !wallet) {
     473   [ +  -  +  - ]:          14 :         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         [ +  - ]:          14 :         if (created_parent_dir) {
     477   [ +  -  +  - ]:          14 :             Assume(fs::is_empty(wallet_path));
     478         [ +  - ]:          14 :             fs::remove(wallet_path);
     479                 :             :         }
     480                 :             :     }
     481                 :             : 
     482                 :          49 :     return wallet;
     483                 :         156 : }
     484                 :             : 
     485                 :        1199 : CWallet::CWallet(interfaces::Chain* chain, const std::string& name, std::unique_ptr<WalletDatabase> database)
     486                 :        1199 :     : m_chain(chain),
     487                 :        2398 :       m_name(name),
     488         [ +  - ]:        1199 :       m_database(std::move(database)),
     489   [ +  -  +  -  :        2398 :       m_scanner(std::make_unique<ChainScanner>(*this))
          -  +  +  -  +  
             -  +  -  +  
                      - ]
     490                 :             : {
     491                 :        1199 : }
     492                 :             : 
     493                 :        2340 : CWallet::~CWallet()
     494                 :             : {
     495                 :             :     // Should not have slots connected at this point.
     496         [ -  + ]:        1199 :     assert(NotifyUnload.empty());
     497                 :        2340 : }
     498                 :             : 
     499                 :        5679 : ChainScanner& CWallet::Scanner() { return *m_scanner; }
     500                 :         446 : const ChainScanner& CWallet::Scanner() const { return *m_scanner; }
     501                 :             : 
     502                 :             : /** @defgroup mapWallet
     503                 :             :  *
     504                 :             :  * @{
     505                 :             :  */
     506                 :             : 
     507                 :       85127 : const CWalletTx* CWallet::GetWalletTx(const Txid& hash) const
     508                 :             : {
     509                 :       85127 :     AssertLockHeld(cs_wallet);
     510                 :       85127 :     const auto it = mapWallet.find(hash);
     511         [ +  + ]:       85127 :     if (it == mapWallet.end())
     512                 :             :         return nullptr;
     513                 :       84738 :     return &(it->second);
     514                 :             : }
     515                 :             : 
     516                 :         515 : void CWallet::UpgradeDescriptorCache()
     517                 :             : {
     518   [ +  +  +  +  :         515 :     if (!IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS) || IsLocked() || IsWalletFlagSet(WALLET_FLAG_LAST_HARDENED_XPUB_CACHED)) {
                   +  + ]
     519                 :         506 :         return;
     520                 :             :     }
     521                 :             : 
     522         [ +  + ]:          55 :     for (ScriptPubKeyMan* spkm : GetAllScriptPubKeyMans()) {
     523         [ +  - ]:          46 :         DescriptorScriptPubKeyMan* desc_spkm = dynamic_cast<DescriptorScriptPubKeyMan*>(spkm);
     524         [ +  - ]:          46 :         desc_spkm->UpgradeDescriptorCache();
     525                 :             :     }
     526                 :           9 :     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                 :          43 : static bool EncryptMasterKey(const SecureString& wallet_passphrase, const CKeyingMaterial& plain_master_key, CMasterKey& master_key)
     532                 :             : {
     533                 :          43 :     constexpr MillisecondsDouble target_time{100};
     534                 :          43 :     CCrypter crypter;
     535         [ +  - ]:          43 :     CMasterKey updated_master_key{master_key};
     536                 :             : 
     537                 :             :     // Get the weighted average of iterations we can do in 100ms over 2 runs.
     538         [ +  + ]:          95 :     for (int i = 0; i < 2; i++){
     539                 :          69 :         auto start_time{NodeClock::now()};
     540   [ -  +  +  - ]:          69 :         const bool key_set{crypter.SetKeyFromPassphrase(wallet_passphrase, updated_master_key.vchSalt, updated_master_key.nDeriveIterations, updated_master_key.nDerivationMethod)};
     541                 :          69 :         auto elapsed_time{NodeClock::now() - start_time};
     542         [ +  - ]:          69 :         if (!key_set) {
     543                 :             :             return false;
     544                 :             :         }
     545                 :             : 
     546         [ +  + ]:          69 :         if (elapsed_time <= 0s) {
     547                 :             :             // We are probably in a test with a mocked clock.
     548                 :          17 :             updated_master_key.nDeriveIterations = CMasterKey::DEFAULT_DERIVE_ITERATIONS;
     549                 :          17 :             break;
     550                 :             :         }
     551                 :             : 
     552                 :             :         // target_iterations : elapsed_iterations :: target_time : elapsed_time
     553                 :          52 :         const double target_iterations{updated_master_key.nDeriveIterations * target_time / elapsed_time};
     554   [ +  -  +  - ]:          52 :         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                 :          52 :         updated_master_key.nDeriveIterations = (uint64_t{updated_master_key.nDeriveIterations} * i + static_cast<unsigned int>(target_iterations)) / (i + 1);
     560                 :             :     }
     561                 :             : 
     562         [ +  + ]:          43 :     if (updated_master_key.nDeriveIterations < CMasterKey::DEFAULT_DERIVE_ITERATIONS) {
     563                 :           2 :         updated_master_key.nDeriveIterations = CMasterKey::DEFAULT_DERIVE_ITERATIONS;
     564                 :             :     }
     565                 :             : 
     566   [ -  +  +  -  :          43 :     if (!crypter.SetKeyFromPassphrase(wallet_passphrase, updated_master_key.vchSalt, updated_master_key.nDeriveIterations, updated_master_key.nDerivationMethod)) {
                   +  - ]
     567                 :             :         return false;
     568                 :             :     }
     569   [ +  -  +  - ]:          43 :     if (!crypter.Encrypt(plain_master_key, updated_master_key.vchCryptedKey)) {
     570                 :             :         return false;
     571                 :             :     }
     572                 :             : 
     573                 :          43 :     master_key = std::move(updated_master_key);
     574                 :          43 :     return true;
     575                 :          43 : }
     576                 :             : 
     577                 :         107 : static bool DecryptMasterKey(const SecureString& wallet_passphrase, const CMasterKey& master_key, CKeyingMaterial& plain_master_key)
     578                 :             : {
     579                 :         107 :     CCrypter crypter;
     580   [ -  +  +  -  :         107 :     if (!crypter.SetKeyFromPassphrase(wallet_passphrase, master_key.vchSalt, master_key.nDeriveIterations, master_key.nDerivationMethod)) {
                   +  - ]
     581                 :             :         return false;
     582                 :             :     }
     583   [ -  +  +  -  :         107 :     if (!crypter.Decrypt(master_key.vchCryptedKey, plain_master_key)) {
                   +  + ]
     584                 :          11 :         return false;
     585                 :             :     }
     586                 :             : 
     587                 :             :     return true;
     588                 :         107 : }
     589                 :             : 
     590                 :          11 : static util::Unexpected<WalletError> UnlockPassphraseError(const SecureString& passphrase)
     591                 :             : {
     592         [ +  + ]:          11 :     bilingual_str message;
     593                 :             :     if (passphrase.find('\0') != std::string::npos) {
     594                 :             :         // The passphrase has a null character (see #27067 for details)
     595         [ +  - ]:           6 :         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                 :           3 :                     "passphrase to avoid this issue in the future.");
     601         [ +  + ]:           8 :     } else if (passphrase.empty()) {
     602         [ +  - ]:           2 :         message = _("Error: The wallet passphrase was not provided");
     603                 :             :     } else {
     604         [ +  - ]:          14 :         message = _("Error: The wallet passphrase entered was incorrect.");
     605                 :             :     }
     606                 :          22 :     return util::Unexpected{WalletError{WalletErrorCode::PassphraseIncorrect, std::move(message)}};
     607                 :          11 : }
     608                 :             : 
     609                 :         101 : util::Expected<void, WalletError> CWallet::Unlock(const SecureString& strWalletPassphrase)
     610                 :             : {
     611                 :         101 :     CKeyingMaterial plain_master_key;
     612                 :             : 
     613                 :         101 :     {
     614         [ +  - ]:         101 :         LOCK(cs_wallet);
     615   [ +  -  +  + ]:         110 :         for (const auto& [_, master_key] : mapMasterKeys)
     616                 :             :         {
     617   [ +  -  +  + ]:         101 :             if (!DecryptMasterKey(strWalletPassphrase, master_key, plain_master_key)) {
     618                 :           9 :                 continue; // try another master key
     619                 :             :             }
     620   [ +  -  +  - ]:          92 :             if (Unlock(plain_master_key)) {
     621                 :             :                 // Now that we've unlocked, upgrade the descriptor cache
     622         [ +  - ]:          92 :                 UpgradeDescriptorCache();
     623         [ +  - ]:          92 :                 return {};
     624                 :             :             }
     625                 :             :         }
     626                 :          92 :     }
     627         [ +  - ]:          27 :     return UnlockPassphraseError(strWalletPassphrase);
     628                 :         101 : }
     629                 :             : 
     630                 :           6 : util::Expected<void, WalletError> CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase)
     631                 :             : {
     632                 :           6 :     bool fWasLocked = IsLocked();
     633                 :             : 
     634                 :           6 :     {
     635         [ +  - ]:           6 :         LOCK2(m_relock_mutex, cs_wallet);
     636         [ +  - ]:           6 :         Lock();
     637                 :             : 
     638                 :           6 :         CKeyingMaterial plain_master_key;
     639   [ +  -  +  - ]:           6 :         for (auto& [master_key_id, master_key] : mapMasterKeys)
     640                 :             :         {
     641   [ +  -  +  + ]:           6 :             if (!DecryptMasterKey(strOldWalletPassphrase, master_key, plain_master_key)) {
     642         [ +  - ]:           6 :                 return UnlockPassphraseError(strOldWalletPassphrase);
     643                 :             :             }
     644   [ +  -  +  - ]:           4 :             if (Unlock(plain_master_key))
     645                 :             :             {
     646   [ +  -  +  - ]:           4 :                 if (fWasLocked) Lock();
     647         [ +  - ]:           4 :                 CMasterKey new_master_key{master_key};
     648   [ +  -  -  + ]:           4 :                 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   [ +  -  +  -  :           8 :                 if (!WalletBatch(GetDatabase()).WriteMasterKey(master_key_id, new_master_key)) {
                   +  + ]
     652         [ +  - ]:           4 :                     return util::Unexpected{WalletError{WalletErrorCode::GenericError, _("Error: Writing the new encryption key to the wallet database failed")}};
     653                 :             :                 }
     654         [ +  - ]:           3 :                 WalletLogPrintf("Wallet passphrase changed to an nDeriveIterations of %i\n", new_master_key.nDeriveIterations);
     655                 :           3 :                 master_key = std::move(new_master_key);
     656                 :           3 :                 return {};
     657                 :           4 :             }
     658                 :             :         }
     659   [ -  -  -  -  :          18 :     }
             +  -  +  - ]
     660                 :             : 
     661                 :           0 :     return UnlockPassphraseError(strOldWalletPassphrase);
     662                 :             : }
     663                 :             : 
     664                 :       85634 : void CWallet::SetLastBlockProcessedInMem(int block_height, uint256 block_hash)
     665                 :             : {
     666                 :       85634 :     AssertLockHeld(cs_wallet);
     667                 :             : 
     668                 :       85634 :     m_last_block_processed = block_hash;
     669                 :       85634 :     m_last_block_processed_height = block_height;
     670                 :       85634 : }
     671                 :             : 
     672                 :        4197 : void CWallet::SetLastBlockProcessed(int block_height, uint256 block_hash)
     673                 :             : {
     674                 :        4197 :     AssertLockHeld(cs_wallet);
     675                 :             : 
     676                 :        4197 :     SetLastBlockProcessedInMem(block_height, block_hash);
     677                 :        4197 :     WriteBestBlock();
     678                 :        4197 : }
     679                 :             : 
     680                 :        4120 : std::set<Txid> CWallet::GetConflicts(const Txid& txid) const
     681                 :             : {
     682                 :        4120 :     std::set<Txid> result;
     683                 :        4120 :     AssertLockHeld(cs_wallet);
     684                 :             : 
     685                 :        4120 :     const auto it = mapWallet.find(txid);
     686         [ +  - ]:        8240 :     if (it == mapWallet.end())
     687                 :             :         return result;
     688         [ +  - ]:        4120 :     const CWalletTx& wtx = it->second;
     689                 :             : 
     690         [ +  - ]:        4120 :     std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
     691                 :             : 
     692   [ +  -  +  -  :       14667 :     for (const CTxIn& txin : wtx.GetTx()->vin)
                   +  + ]
     693                 :             :     {
     694         [ +  + ]:        6427 :         if (mapTxSpends.count(txin.prevout) <= 1)
     695                 :        6050 :             continue;  // No conflict if zero or one spends
     696                 :         377 :         range = mapTxSpends.equal_range(txin.prevout);
     697         [ +  + ]:        7291 :         for (TxSpends::const_iterator _it = range.first; _it != range.second; ++_it)
     698         [ +  - ]:         864 :             result.insert(_it->second);
     699                 :             :     }
     700                 :             :     return result;
     701                 :           0 : }
     702                 :             : 
     703                 :         248 : bool CWallet::HasWalletSpend(const CTransactionRef& tx) const
     704                 :             : {
     705                 :         248 :     AssertLockHeld(cs_wallet);
     706                 :         248 :     const Txid& txid = tx->GetHash();
     707   [ -  +  +  + ]:         871 :     for (unsigned int i = 0; i < tx->vout.size(); ++i) {
     708         [ +  + ]:         626 :         if (IsSpent(COutPoint(txid, i))) {
     709                 :             :             return true;
     710                 :             :         }
     711                 :             :     }
     712                 :             :     return false;
     713                 :             : }
     714                 :             : 
     715                 :          14 : void CWallet::Close()
     716                 :             : {
     717                 :          14 :     GetDatabase().Close();
     718                 :          14 : }
     719                 :             : 
     720                 :       19512 : std::set<CWalletTx*, WalletTxOrderComparator> CWallet::GetMalleatedVariants(const CWalletTx& wtx)
     721                 :             : {
     722                 :       19512 :     AssertLockHeld(cs_wallet);
     723         [ +  - ]:       19512 :     std::set<CWalletTx*, WalletTxOrderComparator> txs;
     724                 :             : 
     725                 :             :     // Coinbases cannot be malleated
     726   [ +  -  +  + ]:       19512 :     if (wtx.IsCoinBase()) return txs;
     727                 :             : 
     728                 :             :     // Only transactions that have non-witness inputs can be malleated
     729   [ +  +  +  -  :       17374 :     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                 :         992 :     bool found_self = false;
     735   [ +  -  +  - ]:         992 :     const auto [begin, end] = mapTxSpends.equal_range(wtx.GetTx()->vin.front().prevout);
     736         [ +  + ]:        2038 :     for (auto it = begin; it != end; ++it) {
     737                 :        1046 :         auto entry = mapWallet.find(it->second);
     738   [ -  +  +  - ]:        2092 :         if (!Assume(entry != mapWallet.end())) continue; // sanity-check: mapTxSpends has txs that are in mapWallet
     739         [ +  + ]:        1046 :         const bool is_self = &entry->second == &wtx;
     740                 :        1046 :         found_self |= is_self;
     741   [ +  +  +  -  :        1046 :         if (is_self || wtx.IsMalleation(entry->second)) {
                   +  + ]
     742         [ +  - ]:        1011 :             Assume(txs.insert(&entry->second).second);
     743                 :             :         }
     744                 :             :     }
     745                 :             :     // wtx should always be found as this function is always called after AddToSpends
     746         [ -  + ]:       19512 :     Assert(found_self);
     747                 :             :     return txs;
     748                 :           0 : }
     749                 :             : 
     750                 :       19408 : void CWallet::SyncMalleatedTxMetadata(WalletBatch& batch, const CWalletTx& wtx)
     751                 :             : {
     752                 :       19408 :     const auto txs = GetMalleatedVariants(wtx);
     753         [ +  + ]:       19408 :     if (txs.size() <= 1) return; // no variants, nothing to do
     754                 :             : 
     755                 :             :     // First tx is the oldest one (smallest nOrderPos)
     756                 :          15 :     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                 :          30 :     const auto metadata = [](auto& tx) {
     761                 :          15 :         return std::tie(tx.m_from, tx.m_message, tx.m_comment, tx.m_comment_to,
     762                 :          15 :                         tx.m_replaces_txid, tx.m_replaced_by_txid,
     763                 :          15 :                         tx.m_messages, tx.m_payment_requests, tx.nTimeSmart);
     764                 :             :     };
     765                 :             : 
     766                 :             :     // Now copy data from copyFrom to rest:
     767         [ +  + ]:          45 :     for (CWalletTx* copyTo : txs) {
     768         [ +  + ]:          30 :         if (copyTo == copyFrom) continue;
     769         [ +  - ]:          15 :         metadata(*copyTo) = metadata(*copyFrom);
     770         [ +  - ]:          15 :         (void)batch.WriteTxMetadata(*copyTo);
     771                 :             :     }
     772                 :       19408 : }
     773                 :             : 
     774                 :             : /**
     775                 :             :  * Outpoint is spent if any non-conflicted transaction
     776                 :             :  * spends it:
     777                 :             :  */
     778                 :      443385 : bool CWallet::IsSpent(const COutPoint& outpoint) const
     779                 :             : {
     780                 :      443385 :     std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
     781                 :      443385 :     range = mapTxSpends.equal_range(outpoint);
     782                 :             : 
     783         [ +  + ]:      445135 :     for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
     784                 :      295681 :         const Txid& txid = it->second;
     785                 :      295681 :         const auto mit = mapWallet.find(txid);
     786         [ +  - ]:      297431 :         if (mit != mapWallet.end()) {
     787         [ +  + ]:      295681 :             const auto& wtx = mit->second;
     788   [ +  +  +  +  :      295736 :             if (!wtx.isAbandoned() && !wtx.isBlockConflicted() && !wtx.isMempoolConflicted())
                   +  + ]
     789                 :             :                 return true; // Spent
     790                 :             :         }
     791                 :             :     }
     792                 :             :     return false;
     793                 :             : }
     794                 :             : 
     795                 :       82924 : CWallet::SpendType CWallet::HowSpent(const COutPoint& outpoint) const
     796                 :             : {
     797                 :       82924 :     SpendType st{SpendType::UNSPENT};
     798                 :             : 
     799                 :       82924 :     std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range;
     800                 :       82924 :     range = mapTxSpends.equal_range(outpoint);
     801                 :             : 
     802         [ +  + ]:       84723 :     for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
     803                 :       51518 :         const Txid& txid = it->second;
     804                 :       51518 :         const auto mit = mapWallet.find(txid);
     805         [ +  - ]:       53317 :         if (mit != mapWallet.end()) {
     806         [ +  + ]:       51518 :             const auto& wtx = mit->second;
     807         [ +  + ]:       51518 :             if (wtx.isConfirmed()) return SpendType::CONFIRMED;
     808         [ +  + ]:        1799 :             if (wtx.InMempool()) {
     809                 :             :                 st = SpendType::MEMPOOL;
     810   [ +  +  +  +  :        2135 :             } else if (!wtx.isAbandoned() && !wtx.isBlockConflicted() && !wtx.isMempoolConflicted()) {
                   +  + ]
     811         [ +  + ]:         147 :                 if (st == SpendType::UNSPENT) st = SpendType::NONMEMPOOL;
     812                 :             :             }
     813                 :             :         }
     814                 :             :     }
     815                 :             :     return st;
     816                 :             : }
     817                 :             : 
     818                 :       11261 : void CWallet::AddToSpends(const COutPoint& outpoint, const Txid& txid)
     819                 :             : {
     820                 :       11261 :     mapTxSpends.insert(std::make_pair(outpoint, txid));
     821                 :             : 
     822                 :       11261 :     UnlockCoin(outpoint);
     823                 :       11261 : }
     824                 :             : 
     825                 :             : 
     826                 :       30223 : void CWallet::AddToSpends(const CWalletTx& wtx)
     827                 :             : {
     828         [ +  + ]:       30223 :     if (wtx.IsCoinBase()) // Coinbases don't spend anything!
     829                 :             :         return;
     830                 :             : 
     831   [ +  -  +  + ]:       22977 :     for (const CTxIn& txin : wtx.GetTx()->vin)
     832                 :       11261 :         AddToSpends(txin.prevout, wtx.GetHash());
     833                 :             : }
     834                 :             : 
     835                 :          39 : bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase)
     836                 :             : {
     837                 :             :     // Only descriptor wallets can be encrypted
     838         [ -  + ]:          39 :     Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
     839                 :             : 
     840         [ +  - ]:          39 :     if (HasEncryptionKeys())
     841                 :             :         return false;
     842                 :             : 
     843                 :          39 :     CKeyingMaterial plain_master_key;
     844                 :             : 
     845         [ +  - ]:          39 :     plain_master_key.resize(WALLET_CRYPTO_KEY_SIZE);
     846         [ -  + ]:          39 :     GetStrongRandBytes(plain_master_key);
     847                 :             : 
     848         [ +  - ]:          39 :     CMasterKey master_key;
     849                 :             : 
     850         [ +  - ]:          39 :     master_key.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE);
     851         [ -  + ]:          39 :     GetStrongRandBytes(master_key.vchSalt);
     852                 :             : 
     853   [ +  -  +  - ]:          39 :     if (!EncryptMasterKey(strWalletPassphrase, plain_master_key, master_key)) {
     854                 :             :         return false;
     855                 :             :     }
     856         [ +  - ]:          39 :     WalletLogPrintf("Encrypting Wallet with an nDeriveIterations of %i\n", master_key.nDeriveIterations);
     857                 :             : 
     858                 :          39 :     {
     859   [ +  -  +  - ]:          39 :         LOCK2(m_relock_mutex, cs_wallet);
     860                 :          39 :         const unsigned int new_master_key_id{nMasterKeyMaxID + 1};
     861   [ +  -  +  -  :          39 :         if (!RunWithinTxn(GetDatabase(), /*process_desc=*/"wallet encryption", [&](WalletBatch& batch) {
                   +  + ]
     862         [ +  + ]:          39 :                 if (!batch.WriteMasterKey(new_master_key_id, master_key)) {
     863                 :             :                     return false;
     864                 :             :                 }
     865         [ +  + ]:         191 :                 for (const auto& spk_man_pair : m_spk_managers) {
     866         [ +  + ]:         155 :                     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                 :          35 :         nMasterKeyMaxID = new_master_key_id;
     876         [ +  - ]:          35 :         mapMasterKeys[new_master_key_id] = std::move(master_key);
     877                 :             : 
     878         [ +  - ]:          35 :         Lock();
     879   [ +  -  +  - ]:          35 :         if (!Unlock(strWalletPassphrase)) {
     880                 :             :             return false;
     881                 :             :         }
     882                 :             : 
     883         [ +  - ]:          35 :         SetupWalletGeneration();
     884                 :             : 
     885         [ +  - ]:          35 :         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         [ +  - ]:          35 :         GetDatabase().Rewrite();
     890   [ +  -  +  - ]:          43 :     }
     891         [ +  - ]:          35 :     NotifyStatusChanged(this);
     892                 :             : 
     893                 :             :     return true;
     894                 :          39 : }
     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                 :       19408 : int64_t CWallet::IncOrderPosNext(WalletBatch* batch)
     954                 :             : {
     955                 :       19408 :     AssertLockHeld(cs_wallet);
     956                 :       19408 :     int64_t nRet = nOrderPosNext++;
     957         [ +  - ]:       19408 :     if (batch) {
     958                 :       19408 :         batch->WriteOrderPosNext(nOrderPosNext);
     959                 :             :     } else {
     960         [ #  # ]:           0 :         WalletBatch(GetDatabase()).WriteOrderPosNext(nOrderPosNext);
     961                 :             :     }
     962                 :       19408 :     return nRet;
     963                 :             : }
     964                 :             : 
     965                 :         993 : void CWallet::MarkDirty()
     966                 :             : {
     967                 :         993 :     {
     968                 :         993 :         LOCK(cs_wallet);
     969   [ +  +  +  - ]:        5037 :         for (auto& [_, wtx] : mapWallet)
     970                 :        4044 :             wtx.MarkDirty();
     971                 :         993 :     }
     972                 :         993 : }
     973                 :             : 
     974                 :         104 : bool CWallet::MarkReplaced(const Txid& originalHash, const Txid& newHash)
     975                 :             : {
     976                 :         104 :     LOCK(cs_wallet);
     977                 :             : 
     978                 :         104 :     auto mi = mapWallet.find(originalHash);
     979                 :             : 
     980                 :             :     // There is a bug if MarkReplaced is not called on an existing wallet transaction.
     981         [ -  + ]:         104 :     assert(mi != mapWallet.end());
     982                 :             : 
     983         [ -  + ]:         104 :     CWalletTx& wtx = (*mi).second;
     984                 :             : 
     985                 :             :     // Ensure for now that we're not overwriting data
     986         [ -  + ]:         104 :     Assert(!wtx.m_replaced_by_txid);
     987                 :             : 
     988                 :         104 :     wtx.m_replaced_by_txid = newHash;
     989                 :             : 
     990                 :             :     // Refresh mempool status without waiting for transactionRemovedFromMempool or transactionAddedToMempool
     991         [ +  - ]:         104 :     RefreshMempoolStatus(wtx, chain());
     992                 :             : 
     993         [ +  - ]:         104 :     WalletBatch batch(GetDatabase());
     994                 :             : 
     995                 :         104 :     bool success = true;
     996   [ +  -  -  + ]:         104 :     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   [ +  -  +  + ]:         115 :     for (CWalletTx* variant : GetMalleatedVariants(wtx)) {
    1004         [ +  + ]:          11 :         if (variant == &wtx) continue;
    1005         [ -  + ]:           4 :         variant->m_replaced_by_txid = newHash;
    1006   [ +  -  -  + ]:           4 :         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         [ +  - ]:         104 :     NotifyTransactionChanged(originalHash, CT_UPDATED);
    1013                 :             : 
    1014                 :         104 :     return success;
    1015         [ +  - ]:         208 : }
    1016                 :             : 
    1017                 :        2036 : void CWallet::SetSpentKeyState(WalletBatch& batch, const Txid& hash, unsigned int n, bool used, std::set<CTxDestination>& tx_destinations)
    1018                 :             : {
    1019                 :        2036 :     AssertLockHeld(cs_wallet);
    1020                 :        2036 :     const CWalletTx* srctx = GetWalletTx(hash);
    1021         [ +  + ]:        2036 :     if (!srctx) return;
    1022                 :             : 
    1023                 :        1891 :     CTxDestination dst;
    1024   [ +  -  +  -  :        3782 :     if (ExtractDestination(srctx->GetTx()->vout[n].scriptPubKey, dst)) {
             +  -  +  - ]
    1025   [ +  -  +  + ]:        1891 :         if (IsMine(dst)) {
    1026   [ +  -  +  + ]:        1211 :             if (used != IsAddressPreviouslySpent(dst)) {
    1027         [ +  - ]:          20 :                 if (used) {
    1028         [ +  - ]:          20 :                     tx_destinations.insert(dst);
    1029                 :             :                 }
    1030         [ +  - ]:          20 :                 SetAddressPreviouslySpent(batch, dst, used);
    1031                 :             :             }
    1032                 :             :         }
    1033                 :             :     }
    1034                 :        1891 : }
    1035                 :             : 
    1036                 :         441 : bool CWallet::IsSpentKey(const CScript& scriptPubKey) const
    1037                 :             : {
    1038                 :         441 :     AssertLockHeld(cs_wallet);
    1039                 :         441 :     CTxDestination dest;
    1040   [ +  -  +  - ]:         441 :     if (!ExtractDestination(scriptPubKey, dest)) {
    1041                 :             :         return false;
    1042                 :             :     }
    1043   [ +  -  +  + ]:         441 :     if (IsAddressPreviouslySpent(dest)) {
    1044                 :           8 :         return true;
    1045                 :             :     }
    1046                 :             :     return false;
    1047                 :         441 : }
    1048                 :             : 
    1049                 :       28127 : CWalletTx* CWallet::AddToWallet(CTransactionRef tx, const TxState& state, const UpdateWalletTxFn& update_wtx, bool rescanning_old_block)
    1050                 :             : {
    1051                 :       28127 :     LOCK(cs_wallet);
    1052                 :             : 
    1053         [ +  - ]:       28127 :     WalletBatch batch(GetDatabase());
    1054                 :             : 
    1055         [ +  - ]:       28127 :     Txid hash = tx->GetHash();
    1056                 :             : 
    1057   [ +  -  +  + ]:       28127 :     if (IsWalletFlagSet(WALLET_FLAG_AVOID_REUSE)) {
    1058                 :             :         // Mark used destinations
    1059                 :         865 :         std::set<CTxDestination> tx_destinations;
    1060                 :             : 
    1061         [ +  + ]:        2901 :         for (const CTxIn& txin : tx->vin) {
    1062                 :        2036 :             const COutPoint& op = txin.prevout;
    1063         [ +  - ]:        2036 :             SetSpentKeyState(batch, op.hash, op.n, true, tx_destinations);
    1064                 :             :         }
    1065                 :             : 
    1066         [ +  - ]:         865 :         MarkDestinationsDirty(tx_destinations);
    1067                 :         865 :     }
    1068                 :             : 
    1069                 :             :     // Inserts only if not already there, returns tx inserted or tx found
    1070         [ +  - ]:       28127 :     auto ret = mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(hash), std::forward_as_tuple(tx, state));
    1071         [ +  + ]:       28127 :     CWalletTx& wtx = (*ret.first).second;
    1072                 :       28127 :     bool fInsertedNew = ret.second;
    1073   [ +  +  +  -  :       28127 :     bool fUpdated = update_wtx && update_wtx(wtx, fInsertedNew);
                   -  + ]
    1074         [ +  + ]:       28127 :     if (fInsertedNew) {
    1075         [ +  - ]:       19408 :         wtx.nTimeReceived = GetTime();
    1076         [ +  - ]:       19408 :         wtx.nOrderPos = IncOrderPosNext(&batch);
    1077   [ +  -  +  - ]:       19408 :         wtx.m_it_wtxOrdered = wtxOrdered.insert(std::make_pair(wtx.nOrderPos, &wtx));
    1078         [ +  - ]:       19408 :         wtx.nTimeSmart = ComputeTimeSmart(wtx, rescanning_old_block);
    1079         [ +  - ]:       19408 :         AddToSpends(wtx);
    1080         [ +  - ]:       19408 :         SyncMalleatedTxMetadata(batch, wtx);
    1081                 :             : 
    1082                 :             :         // Update birth time when tx time is older than it.
    1083   [ +  -  +  - ]:       19408 :         MaybeUpdateBirthTime(wtx.GetTxTime());
    1084                 :             : 
    1085   [ +  -  +  - ]:       19408 :         if (!batch.WriteFullTx(wtx)) {
    1086                 :             :             return nullptr;
    1087                 :             :         }
    1088                 :             :     }
    1089                 :             : 
    1090                 :        8719 :     if (!fInsertedNew)
    1091                 :             :     {
    1092                 :        8719 :         try {
    1093   [ +  -  +  -  :       26154 :             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   [ +  -  +  + ]:       28127 :     if (wtx.IsCoinBase() && wtx.isInactive()) {
    1102         [ +  - ]:         546 :         std::vector<CWalletTx*> txs{&wtx};
    1103                 :             : 
    1104                 :         546 :         TxStateInactive inactive_state = TxStateInactive{/*abandoned=*/true};
    1105                 :             : 
    1106         [ +  + ]:        1093 :         while (!txs.empty()) {
    1107                 :         547 :             CWalletTx* desc_tx = txs.back();
    1108         [ +  + ]:         547 :             txs.pop_back();
    1109         [ +  + ]:         547 :             desc_tx->m_state = inactive_state;
    1110                 :             :             // Break caches since we have changed the state
    1111                 :         547 :             desc_tx->MarkDirty();
    1112         [ +  - ]:         547 :             batch.WriteTxMetadata(*desc_tx);
    1113   [ +  -  +  - ]:         547 :             MarkInputsDirty(desc_tx->GetTx());
    1114   [ +  -  -  +  :        3282 :             for (unsigned int i = 0; i < desc_tx->GetTx()->vout.size(); ++i) {
             +  -  +  + ]
    1115         [ +  - ]:        1094 :                 COutPoint outpoint(desc_tx->GetHash(), i);
    1116                 :        1094 :                 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(outpoint);
    1117         [ +  + ]:        1095 :                 for (TxSpends::const_iterator it = range.first; it != range.second; ++it) {
    1118                 :           1 :                     const auto wit = mapWallet.find(it->second);
    1119         [ +  - ]:           1 :                     if (wit != mapWallet.end()) {
    1120         [ +  - ]:           1 :                         txs.push_back(&wit->second);
    1121                 :             :                     }
    1122                 :             :                 }
    1123                 :             :             }
    1124                 :             :         }
    1125                 :         546 :     }
    1126                 :             : 
    1127                 :             :     //// debug print
    1128         [ +  - ]:       28127 :     std::string status{"no-change"};
    1129         [ +  + ]:       28127 :     if (fInsertedNew || fUpdated) {
    1130   [ +  +  +  + ]:       23870 :         status = fInsertedNew ? (fUpdated ? "new, update" : "new") : "update";
    1131                 :             :     }
    1132   [ +  -  +  - ]:       84381 :     WalletLogPrintf("AddToWallet %s %s %s", hash.ToString(), status, TxStateString(state));
    1133                 :             : 
    1134                 :             :     // Break debit/credit balance caches:
    1135                 :       28127 :     wtx.MarkDirty();
    1136                 :             : 
    1137                 :             :     // Cache the outputs that belong to the wallet
    1138         [ +  - ]:       28127 :     RefreshTXOsFromTx(wtx);
    1139                 :             : 
    1140                 :             :     // Notify UI of new or updated transaction
    1141   [ +  +  +  - ]:       36846 :     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         [ -  + ]:       28127 :     std::string strCmd = m_notify_tx_changed_script;
    1146                 :             : 
    1147         [ +  + ]:       28127 :     if (!strCmd.empty())
    1148                 :             :     {
    1149   [ +  -  -  +  :          27 :         ReplaceAll(strCmd, "%s", hash.GetHex());
                   +  - ]
    1150         [ +  + ]:          27 :         if (auto* conf = wtx.state<TxStateConfirmed>())
    1151                 :             :         {
    1152   [ +  -  +  - ]:          44 :             ReplaceAll(strCmd, "%b", conf->confirmed_block_hash.GetHex());
    1153   [ +  -  +  - ]:          66 :             ReplaceAll(strCmd, "%h", ToString(conf->confirmed_block_height));
    1154                 :             :         } else {
    1155         [ +  - ]:           5 :             ReplaceAll(strCmd, "%b", "unconfirmed");
    1156         [ +  - ]:           5 :             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   [ +  -  +  - ]:          54 :         ReplaceAll(strCmd, "%w", ShellEscape(GetName()));
    1165                 :             : #endif
    1166         [ +  - ]:          27 :         std::thread t(runCommand, strCmd);
    1167         [ +  - ]:          27 :         t.detach(); // thread runs free
    1168                 :          27 :     }
    1169                 :             : #endif
    1170                 :             : 
    1171                 :       28127 :     return &wtx;
    1172         [ +  - ]:       84381 : }
    1173                 :             : 
    1174                 :       10815 : bool CWallet::LoadToWallet(CWalletTx&& wtx_in)
    1175                 :             : {
    1176                 :       10815 :     const auto& ins = mapWallet.emplace(wtx_in.GetHash(), std::move(wtx_in));
    1177         [ +  - ]:       10815 :     CWalletTx& wtx = ins.first->second;
    1178         [ +  - ]:       10815 :     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         [ +  + ]:       10815 :     if (HaveChain()) {
    1184                 :       10310 :       wtx.updateState(chain());
    1185                 :             :     }
    1186                 :       10815 :     wtx.m_it_wtxOrdered = wtxOrdered.insert(std::make_pair(wtx.nOrderPos, &wtx));
    1187                 :       10815 :     AddToSpends(wtx);
    1188   [ +  -  +  + ]:       32987 :     for (const CTxIn& txin : wtx.GetTx()->vin) {
    1189                 :       11357 :         auto it = mapWallet.find(txin.prevout.hash);
    1190         [ +  + ]:       11357 :         if (it != mapWallet.end()) {
    1191         [ +  + ]:         721 :             CWalletTx& prevtx = it->second;
    1192         [ +  + ]:       11364 :             if (auto* prev = prevtx.state<TxStateBlockConflicted>()) {
    1193                 :           7 :                 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                 :       10815 :     MaybeUpdateBirthTime(wtx.GetTxTime());
    1200                 :             : 
    1201                 :             :     // Make sure the tx outputs are known by the wallet
    1202                 :       10815 :     RefreshTXOsFromTx(wtx);
    1203                 :       10815 :     return true;
    1204                 :             : }
    1205                 :             : 
    1206                 :      198972 : bool CWallet::AddToWalletIfInvolvingMe(const CTransactionRef& ptx, const SyncTxState& state, bool rescanning_old_block)
    1207                 :             : {
    1208         [ +  + ]:      198972 :     const CTransaction& tx = *ptx;
    1209                 :      198972 :     {
    1210                 :      198972 :         AssertLockHeld(cs_wallet);
    1211                 :             : 
    1212         [ +  + ]:      198972 :         if (auto* conf = std::get_if<TxStateConfirmed>(&state)) {
    1213         [ +  + ]:      412994 :             for (const CTxIn& txin : tx.vin) {
    1214                 :      225907 :                 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(txin.prevout);
    1215         [ +  + ]:      234086 :                 while (range.first != range.second) {
    1216         [ +  + ]:        8179 :                     if (range.first->second != tx.GetHash()) {
    1217   [ +  -  +  -  :         470 :                         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                 :         235 :                         MarkConflicted(conf->confirmed_block_hash, conf->confirmed_block_height, range.first->second);
    1219                 :             :                     }
    1220                 :        8179 :                     range.first++;
    1221                 :             :                 }
    1222                 :             :             }
    1223                 :             :         }
    1224                 :             : 
    1225                 :      198972 :         bool fExisted = mapWallet.contains(tx.GetHash());
    1226   [ +  +  +  +  :      198972 :         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         [ +  + ]:      134915 :             for (const CTxOut& txout: tx.vout) {
    1236         [ +  + ]:      154831 :                 for (const auto& spk_man : GetScriptPubKeyMans(txout.scriptPubKey)) {
    1237   [ +  -  +  + ]:       70857 :                     for (auto &dest : spk_man->MarkUnusedAddresses(txout.scriptPubKey)) {
    1238                 :             :                         // If internal flag is not defined try to infer it from the ScriptPubKeyMan
    1239         [ +  - ]:       24434 :                         if (!dest.internal.has_value()) {
    1240         [ +  - ]:       24434 :                             dest.internal = IsInternalScriptPubKeyMan(spk_man);
    1241                 :             :                         }
    1242                 :             : 
    1243                 :             :                         // skip if can't determine whether it's a receiving address or not
    1244         [ +  + ]:       24434 :                         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   [ +  +  +  -  :       16225 :                         if (!*dest.internal && !FindAddressBookEntry(dest.dest, /* allow_change= */ false)) {
                   +  + ]
    1250   [ +  -  +  - ]:       20356 :                             SetAddressBook(dest.dest, "", AddressPurpose::RECEIVE);
    1251                 :             :                         }
    1252                 :       46423 :                     }
    1253                 :      108408 :                 }
    1254                 :             :             }
    1255                 :             : 
    1256                 :             :             // Block disconnection override an abandoned tx as unconfirmed
    1257                 :             :             // which means user may have to call abandontransaction again
    1258         [ +  - ]:       53014 :             TxState tx_state = std::visit([](auto&& s) -> TxState { return s; }, state);
    1259   [ +  -  +  -  :       79521 :             CWalletTx* wtx = AddToWallet(MakeTransactionRef(tx), tx_state, /*update_wtx=*/nullptr, rescanning_old_block);
                   +  - ]
    1260         [ -  + ]:       26507 :             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                 :          62 : 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   [ -  +  +  -  :         484 :     for (long unsigned int i = 0; i < parent_wtx.GetTx()->vout.size(); i++) {
                   +  + ]
    1283   [ +  -  +  + ]:         405 :         for (auto range = mapTxSpends.equal_range(COutPoint(parent_wtx.GetTx()->GetHash(), i)); range.first != range.second; range.first++) {
    1284         [ +  + ]:          45 :             const Txid& sibling_txid = range.first->second;
    1285                 :             :             // Skip the child_tx itself
    1286         [ +  + ]:          45 :             if (sibling_txid == child_txid) continue;
    1287         [ +  - ]:          34 :             RecursiveUpdateTxState(/*batch=*/nullptr, sibling_txid, [&child_txid, add_conflict](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
    1288   [ +  +  +  + ]:          17 :                 return add_conflict ? (wtx.mempool_conflicts.insert(child_txid).second ? TxUpdate::CHANGED : TxUpdate::UNCHANGED)
    1289         [ +  + ]:           9 :                                     : (wtx.mempool_conflicts.erase(child_txid) ? TxUpdate::CHANGED : TxUpdate::UNCHANGED);
    1290                 :             :             });
    1291                 :             :         }
    1292                 :             :     }
    1293                 :          62 : }
    1294                 :             : 
    1295                 :       33550 : void CWallet::MarkInputsDirty(const CTransactionRef& tx)
    1296                 :             : {
    1297         [ +  + ]:       76433 :     for (const CTxIn& txin : tx->vin) {
    1298                 :       42883 :         auto it = mapWallet.find(txin.prevout.hash);
    1299         [ +  + ]:       63030 :         if (it != mapWallet.end()) {
    1300                 :       20147 :             it->second.MarkDirty();
    1301                 :             :         }
    1302                 :             :     }
    1303                 :       33550 : }
    1304                 :             : 
    1305                 :          10 : bool CWallet::AbandonTransaction(const Txid& hashTx)
    1306                 :             : {
    1307                 :          10 :     LOCK(cs_wallet);
    1308                 :          10 :     auto it = mapWallet.find(hashTx);
    1309         [ -  + ]:          10 :     assert(it != mapWallet.end());
    1310   [ +  -  +  - ]:          10 :     return AbandonTransaction(it->second);
    1311                 :          10 : }
    1312                 :             : 
    1313                 :         442 : bool CWallet::AbandonTransaction(CWalletTx& tx)
    1314                 :             : {
    1315                 :             :     // Can't mark abandoned if confirmed or in mempool
    1316   [ +  +  +  + ]:         442 :     if (GetTxDepthInMainChain(tx) != 0 || tx.InMempool()) {
    1317                 :           3 :         return false;
    1318                 :             :     }
    1319                 :             : 
    1320                 :         899 :     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         [ +  - ]:         460 :         assert(!wtx.isConfirmed());
    1323         [ -  + ]:         460 :         assert(!wtx.InMempool());
    1324                 :             :         // If already conflicted or abandoned, no need to set abandoned
    1325   [ +  -  +  - ]:         460 :         if (!wtx.isBlockConflicted() && !wtx.isAbandoned()) {
    1326         [ +  - ]:         352 :             wtx.m_state = TxStateInactive{/*abandoned=*/true};
    1327                 :         352 :             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   [ +  -  +  - ]:         439 :     RecursiveUpdateTxState(tx.GetHash(), try_updating_state);
    1339                 :             : 
    1340                 :         439 :     return true;
    1341                 :             : }
    1342                 :             : 
    1343                 :         242 : void CWallet::MarkConflicted(const uint256& hashBlock, int conflicting_height, const Txid& hashTx)
    1344                 :             : {
    1345                 :         242 :     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   [ +  +  +  - ]:         242 :     if (m_last_block_processed_height < 0 || conflicting_height < 0) {
    1352                 :             :         return;
    1353                 :             :     }
    1354                 :         235 :     int conflictconfirms = (m_last_block_processed_height - conflicting_height + 1) * -1;
    1355         [ +  - ]:         235 :     if (conflictconfirms >= 0)
    1356                 :             :         return;
    1357                 :             : 
    1358                 :         477 :     auto try_updating_state = [&](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
    1359         [ +  + ]:         242 :         if (conflictconfirms < GetTxDepthInMainChain(wtx)) {
    1360                 :             :             // Block is 'more conflicted' than current confirm; update.
    1361                 :             :             // Mark transaction as conflicted with this block.
    1362                 :         206 :             wtx.m_state = TxStateBlockConflicted{hashBlock, conflicting_height};
    1363                 :         206 :             return TxUpdate::CHANGED;
    1364                 :             :         }
    1365                 :             :         return TxUpdate::UNCHANGED;
    1366                 :         235 :     };
    1367                 :             : 
    1368                 :             :     // Iterate over all its outputs, and mark transactions in the wallet that spend them conflicted too.
    1369   [ +  -  +  -  :         470 :     RecursiveUpdateTxState(hashTx, try_updating_state);
                   +  - ]
    1370                 :             : 
    1371                 :         242 : }
    1372                 :             : 
    1373                 :         690 : void CWallet::RecursiveUpdateTxState(const Txid& tx_hash, const TryUpdatingStateFn& try_updating_state) {
    1374                 :         690 :     WalletBatch batch(GetDatabase());
    1375         [ +  - ]:         690 :     RecursiveUpdateTxState(&batch, tx_hash, try_updating_state);
    1376                 :         690 : }
    1377                 :             : 
    1378                 :       15029 : void CWallet::RecursiveUpdateTxState(WalletBatch* batch, const Txid& tx_hash, const TryUpdatingStateFn& try_updating_state) {
    1379         [ +  - ]:       15029 :     std::set<Txid> todo;
    1380                 :       15029 :     std::set<Txid> done;
    1381                 :             : 
    1382         [ +  - ]:       15029 :     todo.insert(tx_hash);
    1383                 :             : 
    1384         [ +  + ]:       30103 :     while (!todo.empty()) {
    1385                 :       15074 :         Txid now = *todo.begin();
    1386                 :       15074 :         todo.erase(now);
    1387         [ +  - ]:       15074 :         done.insert(now);
    1388                 :       15074 :         auto it = mapWallet.find(now);
    1389         [ -  + ]:       15074 :         assert(it != mapWallet.end());
    1390         [ +  - ]:       15074 :         CWalletTx& wtx = it->second;
    1391                 :             : 
    1392         [ +  - ]:       15074 :         TxUpdate update_state = try_updating_state(wtx);
    1393         [ +  + ]:       15074 :         if (update_state != TxUpdate::UNCHANGED) {
    1394                 :        6496 :             wtx.MarkDirty();
    1395   [ +  +  +  - ]:        6496 :             if (batch) batch->WriteTxMetadata(wtx);
    1396                 :             :             // Iterate over all its outputs, and update those tx states as well (if applicable)
    1397   [ +  -  -  +  :       39070 :             for (unsigned int i = 0; i < wtx.GetTx()->vout.size(); ++i) {
             +  -  +  + ]
    1398                 :       13039 :                 std::pair<TxSpends::const_iterator, TxSpends::const_iterator> range = mapTxSpends.equal_range(COutPoint(now, i));
    1399         [ +  + ]:       13084 :                 for (TxSpends::const_iterator iter = range.first; iter != range.second; ++iter) {
    1400         [ +  - ]:          45 :                     if (!done.contains(iter->second)) {
    1401         [ +  - ]:          45 :                         todo.insert(iter->second);
    1402                 :             :                     }
    1403                 :             :                 }
    1404                 :             :             }
    1405                 :             : 
    1406         [ +  + ]:        6496 :             if (update_state == TxUpdate::NOTIFY_CHANGED) {
    1407   [ +  -  +  - ]:         352 :                 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   [ +  -  +  - ]:       12992 :             MarkInputsDirty(wtx.GetTx());
    1413                 :             :         }
    1414                 :             :     }
    1415                 :       15029 : }
    1416                 :             : 
    1417                 :      198972 : bool CWallet::SyncTransaction(const CTransactionRef& ptx, const SyncTxState& state, bool rescanning_old_block)
    1418                 :             : {
    1419         [ +  + ]:      198972 :     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                 :       26507 :     MarkInputsDirty(ptx);
    1426                 :       26507 :     return true;
    1427                 :             : }
    1428                 :             : 
    1429                 :        8314 : void CWallet::transactionAddedToMempool(const CTransactionRef& tx) {
    1430                 :        8314 :     LOCK(cs_wallet);
    1431         [ +  - ]:        8314 :     SyncTransaction(tx, TxStateInMempool{});
    1432                 :             : 
    1433                 :        8314 :     auto it = mapWallet.find(tx->GetHash());
    1434         [ +  + ]:        8314 :     if (it != mapWallet.end()) {
    1435         [ +  - ]:        3905 :         RefreshMempoolStatus(it->second, chain());
    1436                 :             :     }
    1437                 :             : 
    1438                 :        8314 :     const Txid& txid = tx->GetHash();
    1439                 :             : 
    1440         [ +  + ]:       23625 :     for (const CTxIn& tx_in : tx->vin) {
    1441                 :             :         // For each wallet transaction spending this prevout..
    1442         [ +  + ]:       27012 :         for (auto range = mapTxSpends.equal_range(tx_in.prevout); range.first != range.second; range.first++) {
    1443         [ +  + ]:       11701 :             const Txid& spent_id = range.first->second;
    1444                 :             :             // Skip the recently added tx
    1445         [ +  + ]:       11701 :             if (spent_id == txid) continue;
    1446         [ +  - ]:        6016 :             RecursiveUpdateTxState(/*batch=*/nullptr, spent_id, [&txid](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
    1447         [ +  + ]:        3015 :                 return wtx.mempool_conflicts.insert(txid).second ? TxUpdate::CHANGED : TxUpdate::UNCHANGED;
    1448                 :             :             });
    1449                 :             :         }
    1450                 :             : 
    1451                 :             :     }
    1452                 :             : 
    1453         [ +  + ]:        8314 :     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         [ +  + ]:         543 :         for (const CTxIn& tx_in : tx->vin) {
    1458                 :         400 :             auto parent_it = mapWallet.find(tx_in.prevout.hash);
    1459         [ +  + ]:         550 :             if (parent_it != mapWallet.end()) {
    1460         [ +  + ]:         150 :                 CWalletTx& parent_wtx = parent_it->second;
    1461         [ +  + ]:         150 :                 if (parent_wtx.isUnconfirmed()) {
    1462         [ -  + ]:          31 :                     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         [ +  - ]:          31 :                     UpdateTrucSiblingConflicts(parent_wtx, txid, /*add_conflict=*/true);
    1466                 :             :                 }
    1467                 :             :             }
    1468                 :             :         }
    1469                 :             :     }
    1470                 :        8314 : }
    1471                 :             : 
    1472                 :       84996 : void CWallet::transactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason) {
    1473                 :       84996 :     LOCK(cs_wallet);
    1474                 :       84996 :     auto it = mapWallet.find(tx->GetHash());
    1475         [ +  + ]:       84996 :     if (it != mapWallet.end()) {
    1476         [ +  - ]:       13929 :         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         [ +  + ]:       84996 :     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         [ +  - ]:          43 :         SyncTransaction(tx, TxStateInactive{});
    1506                 :             :     }
    1507                 :             : 
    1508                 :       84996 :     const Txid& txid = tx->GetHash();
    1509                 :             : 
    1510         [ +  + ]:      176390 :     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         [ +  + ]:      102708 :         for (auto range = mapTxSpends.equal_range(tx_in.prevout); range.first != range.second; range.first++) {
    1515         [ +  - ]:       11314 :             const Txid& spent_id = range.first->second;
    1516                 :             : 
    1517         [ +  - ]:       22628 :             RecursiveUpdateTxState(/*batch=*/nullptr, spent_id, [&txid](CWalletTx& wtx) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
    1518         [ +  + ]:       11320 :                 return wtx.mempool_conflicts.erase(txid) ? TxUpdate::CHANGED : TxUpdate::UNCHANGED;
    1519                 :             :             });
    1520                 :             :         }
    1521                 :             :     }
    1522                 :             : 
    1523         [ +  + ]:       84996 :     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         [ +  + ]:         543 :         for (const CTxIn& tx_in : tx->vin) {
    1529                 :         400 :             auto parent_it = mapWallet.find(tx_in.prevout.hash);
    1530         [ +  + ]:         550 :             if (parent_it != mapWallet.end()) {
    1531         [ +  + ]:         150 :                 CWalletTx& parent_wtx = parent_it->second;
    1532         [ +  + ]:         150 :                 if (parent_wtx.truc_child_in_mempool == tx->GetHash()) {
    1533         [ +  - ]:          31 :                     parent_wtx.truc_child_in_mempool = std::nullopt;
    1534         [ +  - ]:          31 :                     UpdateTrucSiblingConflicts(parent_wtx, txid, /*add_conflict=*/false);
    1535                 :             :                 }
    1536                 :             :             }
    1537                 :             :         }
    1538                 :             :     }
    1539                 :       84996 : }
    1540                 :             : 
    1541                 :       80525 : void CWallet::blockConnected(const ChainstateRole& role, const interfaces::BlockInfo& block)
    1542                 :             : {
    1543         [ +  + ]:       80525 :     if (role.historical) {
    1544                 :             :         return;
    1545                 :             :     }
    1546         [ -  + ]:       80425 :     assert(block.data);
    1547                 :       80425 :     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         [ +  - ]:       80425 :     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   [ +  +  +  - ]:       80425 :     if (block.chain_time_max < m_birth_time.load() - (TIMESTAMP_WINDOW * 2)) return;
    1556                 :             : 
    1557                 :             :     // Scan block
    1558                 :             :     bool wallet_updated = false;
    1559   [ -  +  +  + ]:      160628 :     for (size_t index = 0; index < block.data->vtx.size(); index++) {
    1560         [ +  - ]:       84671 :         wallet_updated |= SyncTransaction(block.data->vtx[index], TxStateConfirmed{block.hash, block.height, static_cast<int>(index)});
    1561         [ +  - ]:       84671 :         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   [ +  +  +  + ]:       75957 :     if (wallet_updated || block.height % 144 == 0) {
    1566         [ +  - ]:       11639 :         WriteBestBlock();
    1567                 :             :     }
    1568                 :       80425 : }
    1569                 :             : 
    1570                 :        3460 : void CWallet::blockDisconnected(const interfaces::BlockInfo& block)
    1571                 :             : {
    1572         [ -  + ]:        3460 :     assert(block.data);
    1573                 :        3460 :     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                 :        3460 :     int disconnect_height = block.height;
    1580                 :             : 
    1581   [ -  +  +  + ]:        6988 :     for (size_t index = 0; index < block.data->vtx.size(); index++) {
    1582         [ +  - ]:        3528 :         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         [ +  - ]:        3528 :         SyncTransaction(ptx, TxStateInactive{/*abandoned=*/index == 0});
    1586                 :             : 
    1587         [ +  + ]:        7169 :         for (const CTxIn& tx_in : ptx->vin) {
    1588                 :             :             // No other wallet transactions conflicted with this transaction
    1589         [ +  + ]:        3641 :             if (!mapTxSpends.contains(tx_in.prevout)) continue;
    1590                 :             : 
    1591                 :         109 :             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         [ +  + ]:        3774 :             for (TxSpends::const_iterator _it = range.first; _it != range.second; ++_it) {
    1595         [ +  + ]:         133 :                 CWalletTx& wtx = mapWallet.find(_it->second)->second;
    1596                 :             : 
    1597         [ +  + ]:         133 :                 if (!wtx.isBlockConflicted()) continue;
    1598                 :             : 
    1599                 :          36 :                 auto try_updating_state = [&](CWalletTx& tx) {
    1600         [ +  - ]:          20 :                     if (!tx.isBlockConflicted()) return TxUpdate::UNCHANGED;
    1601         [ +  + ]:          20 :                     if (tx.state<TxStateBlockConflicted>()->conflicting_block_height >= disconnect_height) {
    1602         [ -  + ]:          19 :                         tx.m_state = TxStateInactive{};
    1603                 :          19 :                         return TxUpdate::CHANGED;
    1604                 :             :                     }
    1605                 :             :                     return TxUpdate::UNCHANGED;
    1606                 :          16 :                 };
    1607                 :             : 
    1608   [ +  -  +  - ]:          32 :                 RecursiveUpdateTxState(wtx.GetTx()->GetHash(), try_updating_state);
    1609                 :             :             }
    1610                 :             :         }
    1611                 :             :     }
    1612                 :             : 
    1613                 :             :     // Update the best block
    1614   [ -  +  +  - ]:        3460 :     SetLastBlockProcessed(block.height - 1, *Assert(block.prev_hash));
    1615                 :        3460 : }
    1616                 :             : 
    1617                 :       78338 : void CWallet::updatedBlockTip()
    1618                 :             : {
    1619                 :       78338 :     m_best_block_time = GetTime();
    1620                 :       78338 : }
    1621                 :             : 
    1622                 :        6890 : void CWallet::BlockUntilSyncedToCurrentChain() const {
    1623                 :        6890 :     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         [ +  - ]:       13780 :     uint256 last_block_hash = WITH_LOCK(cs_wallet, return m_last_block_processed);
    1629                 :        6890 :     chain().waitForNotificationsIfTipChanged(last_block_hash);
    1630                 :        6890 : }
    1631                 :             : 
    1632                 :             : // Note that this function doesn't distinguish between a 0-valued input,
    1633                 :             : // and a not-"is mine" input.
    1634                 :        2966 : CAmount CWallet::GetDebit(const CTxIn &txin) const
    1635                 :             : {
    1636                 :        2966 :     LOCK(cs_wallet);
    1637         [ +  - ]:        2966 :     auto txo = GetTXO(txin.prevout);
    1638         [ +  + ]:        2966 :     if (txo) {
    1639                 :        1571 :         return txo->GetTxOut().nValue;
    1640                 :             :     }
    1641                 :             :     return 0;
    1642                 :        2966 : }
    1643                 :             : 
    1644                 :      666717 : bool CWallet::IsMine(const CTxOut& txout) const
    1645                 :             : {
    1646                 :      666717 :     AssertLockHeld(cs_wallet);
    1647                 :      666717 :     return IsMine(txout.scriptPubKey);
    1648                 :             : }
    1649                 :             : 
    1650                 :       32115 : bool CWallet::IsMine(const CTxDestination& dest) const
    1651                 :             : {
    1652                 :       32115 :     AssertLockHeld(cs_wallet);
    1653         [ +  - ]:       32115 :     return IsMine(GetScriptForDestination(dest));
    1654                 :             : }
    1655                 :             : 
    1656                 :      702193 : bool CWallet::IsMine(const CScript& script) const
    1657                 :             : {
    1658                 :      702193 :     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                 :      702193 :     const auto& it = m_cached_spks.find(script);
    1662         [ +  + ]:      702193 :     if (it != m_cached_spks.end()) {
    1663                 :      200282 :         bool res = false;
    1664         [ +  + ]:      400626 :         for (const auto& spkm : it->second) {
    1665   [ +  +  +  - ]:      400626 :             res = res || spkm->IsMine(script);
    1666                 :             :         }
    1667                 :      200282 :         Assume(res);
    1668                 :      200282 :         return res;
    1669                 :             :     }
    1670                 :             : 
    1671                 :             :     return false;
    1672                 :             : }
    1673                 :             : 
    1674                 :      190758 : bool CWallet::IsMine(const CTransaction& tx) const
    1675                 :             : {
    1676                 :      190758 :     AssertLockHeld(cs_wallet);
    1677         [ +  + ]:      592663 :     for (const CTxOut& txout : tx.vout)
    1678         [ +  + ]:      419964 :         if (IsMine(txout))
    1679                 :             :             return true;
    1680                 :             :     return false;
    1681                 :             : }
    1682                 :             : 
    1683                 :        3042 : bool CWallet::IsMine(const COutPoint& outpoint) const
    1684                 :             : {
    1685                 :        3042 :     AssertLockHeld(cs_wallet);
    1686                 :        3042 :     auto wtx = GetWalletTx(outpoint.hash);
    1687         [ +  + ]:        3042 :     if (!wtx) {
    1688                 :             :         return false;
    1689                 :             :     }
    1690   [ -  +  +  -  :        6040 :     if (outpoint.n >= wtx->GetTx()->vout.size()) {
                   +  - ]
    1691                 :             :         return false;
    1692                 :             :     }
    1693   [ +  -  +  - ]:        6040 :     return IsMine(wtx->GetTx()->vout[outpoint.n]);
    1694                 :             : }
    1695                 :             : 
    1696                 :      181781 : bool CWallet::IsFromMe(const CTransaction& tx) const
    1697                 :             : {
    1698                 :      181781 :     LOCK(cs_wallet);
    1699         [ +  + ]:      400074 :     for (const CTxIn& txin : tx.vin) {
    1700   [ +  -  +  + ]:      221635 :         if (GetTXO(txin.prevout)) return true;
    1701                 :             :     }
    1702                 :             :     return false;
    1703                 :      181781 : }
    1704                 :             : 
    1705                 :        1886 : CAmount CWallet::GetDebit(const CTransaction& tx) const
    1706                 :             : {
    1707                 :        1886 :     CAmount nDebit = 0;
    1708         [ +  + ]:        4839 :     for (const CTxIn& txin : tx.vin)
    1709                 :             :     {
    1710                 :        2953 :         nDebit += GetDebit(txin);
    1711         [ -  + ]:        2953 :         if (!MoneyRange(nDebit))
    1712   [ #  #  #  # ]:           0 :             throw std::runtime_error(std::string(__func__) + ": value out of range");
    1713                 :             :     }
    1714                 :        1886 :     return nDebit;
    1715                 :             : }
    1716                 :             : 
    1717                 :           4 : bool CWallet::IsHDEnabled() const
    1718                 :             : {
    1719                 :             :     // All Active ScriptPubKeyMans must be HD for this to be true
    1720                 :           4 :     bool result = false;
    1721         [ +  + ]:          36 :     for (const auto& spk_man : GetActiveScriptPubKeyMans()) {
    1722   [ +  -  -  + ]:          32 :         if (!spk_man->IsHDEnabled()) return false;
    1723                 :          32 :         result = true;
    1724                 :             :     }
    1725                 :           4 :     return result;
    1726                 :             : }
    1727                 :             : 
    1728                 :       11515 : bool CWallet::CanGetAddresses(bool internal) const
    1729                 :             : {
    1730                 :       11515 :     LOCK(cs_wallet);
    1731         [ +  + ]:       11515 :     if (m_spk_managers.empty()) return false;
    1732         [ +  + ]:       12415 :     for (OutputType t : OUTPUT_TYPES) {
    1733         [ +  - ]:       12402 :         auto spk_man = GetScriptPubKeyMan(t, internal);
    1734   [ +  +  +  -  :       12402 :         if (spk_man && spk_man->CanGetAddresses(internal)) {
                   -  + ]
    1735                 :             :             return true;
    1736                 :             :         }
    1737                 :             :     }
    1738                 :             :     return false;
    1739                 :       11515 : }
    1740                 :             : 
    1741                 :          85 : void CWallet::SetWalletFlag(uint64_t flags)
    1742                 :             : {
    1743                 :          85 :     WalletBatch batch(GetDatabase());
    1744         [ +  - ]:          85 :     return SetWalletFlagWithDB(batch, flags);
    1745                 :          85 : }
    1746                 :             : 
    1747                 :         127 : void CWallet::SetWalletFlagWithDB(WalletBatch& batch, uint64_t flags)
    1748                 :             : {
    1749                 :         127 :     LOCK(cs_wallet);
    1750         [ +  - ]:         127 :     m_wallet_flags |= flags;
    1751   [ +  -  -  + ]:         127 :     if (!batch.WriteWalletFlags(m_wallet_flags))
    1752   [ #  #  #  # ]:           0 :         throw std::runtime_error(std::string(__func__) + ": writing wallet flags failed");
    1753                 :         127 : }
    1754                 :             : 
    1755                 :           1 : void CWallet::UnsetWalletFlag(uint64_t flag)
    1756                 :             : {
    1757                 :           1 :     WalletBatch batch(GetDatabase());
    1758         [ +  - ]:           1 :     UnsetWalletFlagWithDB(batch, flag);
    1759                 :           1 : }
    1760                 :             : 
    1761                 :        4157 : void CWallet::UnsetWalletFlagWithDB(WalletBatch& batch, uint64_t flag)
    1762                 :             : {
    1763                 :        4157 :     LOCK(cs_wallet);
    1764         [ +  - ]:        4157 :     m_wallet_flags &= ~flag;
    1765   [ +  -  -  + ]:        4157 :     if (!batch.WriteWalletFlags(m_wallet_flags))
    1766   [ #  #  #  # ]:           0 :         throw std::runtime_error(std::string(__func__) + ": writing wallet flags failed");
    1767                 :        4157 : }
    1768                 :             : 
    1769                 :        4156 : void CWallet::UnsetBlankWalletFlag(WalletBatch& batch)
    1770                 :             : {
    1771                 :        4156 :     UnsetWalletFlagWithDB(batch, WALLET_FLAG_BLANK_WALLET);
    1772                 :        4156 : }
    1773                 :             : 
    1774                 :      217588 : bool CWallet::IsWalletFlagSet(uint64_t flag) const
    1775                 :             : {
    1776                 :      217588 :     return (m_wallet_flags & flag);
    1777                 :             : }
    1778                 :             : 
    1779                 :        1101 : bool CWallet::LoadWalletFlags(uint64_t flags)
    1780                 :             : {
    1781                 :        1101 :     LOCK(cs_wallet);
    1782         [ +  - ]:        1101 :     if (((flags & KNOWN_WALLET_FLAGS) >> 32) ^ (flags >> 32)) {
    1783                 :             :         // contains unknown non-tolerable wallet flags
    1784                 :             :         return false;
    1785                 :             :     }
    1786                 :        1101 :     m_wallet_flags = flags;
    1787                 :             : 
    1788                 :        1101 :     return true;
    1789                 :        1101 : }
    1790                 :             : 
    1791                 :         684 : void CWallet::InitWalletFlags(uint64_t flags)
    1792                 :             : {
    1793                 :         684 :     LOCK(cs_wallet);
    1794                 :             : 
    1795                 :             :     // We should never be writing unknown non-tolerable wallet flags
    1796         [ -  + ]:         684 :     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         [ -  + ]:         684 :     assert(m_wallet_flags == 0);
    1799                 :             : 
    1800   [ +  -  +  -  :        1368 :     if (!WalletBatch(GetDatabase()).WriteWalletFlags(flags)) {
                   -  + ]
    1801   [ #  #  #  # ]:           0 :         throw std::runtime_error(std::string(__func__) + ": writing wallet flags failed");
    1802                 :             :     }
    1803                 :             : 
    1804   [ +  -  -  + ]:         684 :     if (!LoadWalletFlags(flags)) assert(false);
    1805                 :         684 : }
    1806                 :             : 
    1807                 :         453 : uint64_t CWallet::GetWalletFlags() const
    1808                 :             : {
    1809                 :         453 :     return m_wallet_flags;
    1810                 :             : }
    1811                 :             : 
    1812                 :       38649 : void CWallet::MaybeUpdateBirthTime(int64_t time)
    1813                 :             : {
    1814         [ +  + ]:       38649 :     int64_t birthtime = m_birth_time.load();
    1815         [ +  + ]:       38649 :     if (time < birthtime) {
    1816                 :        1567 :         m_birth_time = time;
    1817                 :             :     }
    1818                 :       38649 : }
    1819                 :             : 
    1820                 :        1807 : bool CWallet::SubmitTxMemoryPoolAndRelay(CWalletTx& wtx,
    1821                 :             :                                          std::string& err_string,
    1822                 :             :                                          node::TxBroadcast broadcast_method) const
    1823                 :             : {
    1824                 :        1807 :     AssertLockHeld(cs_wallet);
    1825                 :             : 
    1826                 :             :     // Can't relay if wallet is not broadcasting
    1827         [ +  - ]:        1807 :     if (!GetBroadcastTransactions()) return false;
    1828                 :             :     // Don't relay abandoned transactions
    1829         [ +  + ]:        1807 :     if (wtx.isAbandoned()) return false;
    1830                 :             :     // Don't try to submit coinbase transactions. These would fail anyway but would
    1831                 :             :     // cause log spam.
    1832         [ +  - ]:        1807 :     if (wtx.IsCoinBase()) return false;
    1833                 :             :     // Don't try to submit conflicted or confirmed transactions.
    1834         [ +  - ]:        1807 :     if (GetTxDepthInMainChain(wtx) != 0) return false;
    1835                 :             : 
    1836                 :        1807 :     const char* what{""};
    1837   [ +  +  -  - ]:        1807 :     switch (broadcast_method) {
    1838                 :        1647 :     case node::TxBroadcast::MEMPOOL_AND_BROADCAST_TO_ALL:
    1839                 :        1647 :         what = "to mempool and for broadcast to peers";
    1840                 :        1647 :         break;
    1841                 :         160 :     case node::TxBroadcast::MEMPOOL_NO_BROADCAST:
    1842                 :         160 :         what = "to mempool without broadcast";
    1843                 :         160 :         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         [ +  - ]:        1807 :     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   [ +  -  +  - ]:        1807 :     bool ret = chain().broadcastTransaction(wtx.GetTx(), m_default_max_tx_fee, broadcast_method, err_string);
    1859   [ +  +  +  + ]:        3493 :     if (ret) wtx.m_state = TxStateInMempool{};
    1860                 :             :     return ret;
    1861                 :             : }
    1862                 :             : 
    1863                 :        4120 : std::set<Txid> CWallet::GetTxConflicts(const CWalletTx& wtx) const
    1864                 :             : {
    1865                 :        4120 :     AssertLockHeld(cs_wallet);
    1866                 :             : 
    1867                 :        4120 :     const Txid myHash{wtx.GetHash()};
    1868                 :        4120 :     std::set<Txid> result{GetConflicts(myHash)};
    1869                 :        4120 :     result.erase(myHash);
    1870                 :        4120 :     return result;
    1871                 :             : }
    1872                 :             : 
    1873                 :         141 : bool CWallet::ShouldResend() const
    1874                 :             : {
    1875                 :             :     // Don't attempt to resubmit if the wallet is configured to not broadcast
    1876         [ +  - ]:         141 :     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         [ +  + ]:         141 :     if (!chain().isReadyToBroadcast()) return false;
    1882                 :             : 
    1883                 :             :     // Do this infrequently and randomly to avoid giving away
    1884                 :             :     // that these are our transactions.
    1885         [ +  + ]:          99 :     if (NodeClock::now() < m_next_resend) return false;
    1886                 :             : 
    1887                 :             :     return true;
    1888                 :             : }
    1889                 :             : 
    1890                 :        1221 : 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                 :        1669 : 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         [ +  + ]:        1669 :     if (!fBroadcastTransactions) return;
    1922                 :             : 
    1923                 :        1666 :     int submitted_tx_count = 0;
    1924                 :             : 
    1925                 :        1666 :     { // cs_wallet scope
    1926                 :        1666 :         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                 :        1666 :         std::set<CWalletTx*, WalletTxOrderComparator> to_submit;
    1931   [ +  +  +  + ]:       20979 :         for (auto& [txid, wtx] : mapWallet) {
    1932                 :             :             // Only rebroadcast unconfirmed txs
    1933         [ +  + ]:       19313 :             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   [ +  +  +  + ]:         212 :             if (!force && wtx.nTimeReceived > m_best_block_time - 5 * 60) continue;
    1938         [ +  - ]:         202 :             to_submit.insert(&wtx);
    1939                 :             :         }
    1940                 :             :         // Now try submitting the transactions to the memory pool and (optionally) relay them.
    1941         [ +  + ]:        1868 :         for (auto wtx : to_submit) {
    1942         [ +  - ]:         202 :             std::string unused_err_string;
    1943   [ +  -  +  + ]:         202 :             if (SubmitTxMemoryPoolAndRelay(*wtx, unused_err_string, broadcast_method)) ++submitted_tx_count;
    1944                 :         202 :         }
    1945         [ +  - ]:        1666 :     } // cs_wallet
    1946                 :             : 
    1947         [ +  + ]:        1666 :     if (submitted_tx_count > 0) {
    1948                 :          86 :         WalletLogPrintf("%s: resubmit %u unconfirmed transactions\n", __func__, submitted_tx_count);
    1949                 :             :     }
    1950                 :             : }
    1951                 :             : 
    1952                 :             : /** @} */ // end of mapWallet
    1953                 :             : 
    1954                 :         108 : void MaybeResendWalletTxs(WalletContext& context)
    1955                 :             : {
    1956         [ +  + ]:         249 :     for (const std::shared_ptr<CWallet>& pwallet : GetWallets(context)) {
    1957   [ +  -  +  + ]:         141 :         if (!pwallet->ShouldResend()) continue;
    1958         [ +  - ]:          22 :         pwallet->ResubmitWalletTransactions(node::TxBroadcast::MEMPOOL_AND_BROADCAST_TO_ALL, /*force=*/false);
    1959         [ +  - ]:         141 :         pwallet->SetNextResend();
    1960                 :             :     }
    1961                 :         108 : }
    1962                 :             : 
    1963                 :             : 
    1964                 :        2664 : bool CWallet::SignTransaction(CMutableTransaction& tx) const
    1965                 :             : {
    1966                 :        2664 :     AssertLockHeld(cs_wallet);
    1967                 :             : 
    1968                 :             :     // Build coins map
    1969                 :        2664 :     std::map<COutPoint, Coin> coins;
    1970         [ +  + ]:       13199 :     for (auto& input : tx.vin) {
    1971                 :       10535 :         const auto mi = mapWallet.find(input.prevout.hash);
    1972   [ +  -  +  -  :       21070 :         if(mi == mapWallet.end() || input.prevout.n >= mi->second.GetTx()->vout.size()) {
          -  +  +  -  +  
                      - ]
    1973                 :             :             return false;
    1974                 :             :         }
    1975         [ +  + ]:       10535 :         const CWalletTx& wtx = mi->second;
    1976         [ +  + ]:       10535 :         int prev_height = wtx.state<TxStateConfirmed>() ? wtx.state<TxStateConfirmed>()->confirmed_block_height : 0;
    1977   [ +  -  +  -  :       21070 :         coins[input.prevout] = Coin(wtx.GetTx()->vout[input.prevout.n], prev_height, wtx.IsCoinBase());
             +  -  +  - ]
    1978                 :             :     }
    1979         [ +  - ]:        2664 :     std::map<int, bilingual_str> input_errors;
    1980         [ +  - ]:        2664 :     return SignTransaction(tx, coins, SIGHASH_DEFAULT, input_errors);
    1981                 :        5328 : }
    1982                 :             : 
    1983                 :        2977 : 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         [ +  + ]:       17776 :     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   [ +  -  +  + ]:       17766 :         if (spk_man->SignTransaction(tx, coins, sighash, input_errors)) {
    1990                 :        2967 :             return true;
    1991                 :             :         }
    1992                 :             :     }
    1993                 :             : 
    1994                 :             :     // At this point, one input was not fully signed otherwise we would have exited already
    1995                 :          10 :     return false;
    1996                 :             : }
    1997                 :             : 
    1998                 :        1367 : std::optional<PSBTError> CWallet::FillPSBT(PartiallySignedTransaction& psbtx, const common::PSBTFillOptions& options, bool& complete, size_t* n_signed) const
    1999                 :             : {
    2000         [ -  + ]:        1367 :     if (n_signed) {
    2001                 :           0 :         *n_signed = 0;
    2002                 :             :     }
    2003                 :        1367 :     LOCK(cs_wallet);
    2004                 :             :     // Get all of the previous transactions
    2005         [ +  + ]:        5284 :     for (PSBTInput& input : psbtx.inputs) {
    2006   [ +  -  +  + ]:        3917 :         if (PSBTInputSigned(input)) {
    2007                 :          18 :             continue;
    2008                 :             :         }
    2009                 :             : 
    2010                 :             :         // If we have no utxo, grab it from the wallet.
    2011         [ +  + ]:        3899 :         if (!input.non_witness_utxo) {
    2012                 :        2429 :             const Txid& txhash = input.prev_txid;
    2013                 :        2429 :             const auto it = mapWallet.find(txhash);
    2014         [ +  + ]:        6028 :             if (it != mapWallet.end()) {
    2015         [ +  - ]:        2111 :                 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   [ +  -  -  + ]:        2111 :                 input.non_witness_utxo = wtx.GetTx();
    2019                 :             :             }
    2020                 :             :         }
    2021                 :             :     }
    2022                 :             : 
    2023         [ +  - ]:        1367 :     std::optional<PrecomputedTransactionData> txdata_res = PrecomputePSBTData(psbtx);
    2024         [ -  + ]:        1367 :     if (!txdata_res) {
    2025                 :           0 :         return PSBTError::INVALID_TX;
    2026                 :             :     }
    2027         [ +  - ]:        1367 :     const PrecomputedTransactionData& txdata = *txdata_res;
    2028                 :             : 
    2029                 :             :     // Fill in information from ScriptPubKeyMans
    2030   [ +  -  +  + ]:       11776 :     for (ScriptPubKeyMan* spk_man : GetAllScriptPubKeyMans()) {
    2031                 :       10418 :         int n_signed_this_spkm = 0;
    2032         [ +  - ]:       10418 :         const auto error{spk_man->FillPSBT(psbtx, txdata, options, &n_signed_this_spkm)};
    2033         [ +  + ]:       10418 :         if (error) {
    2034                 :           9 :             return error;
    2035                 :             :         }
    2036                 :             : 
    2037         [ -  + ]:       10409 :         if (n_signed) {
    2038                 :           0 :             (*n_signed) += n_signed_this_spkm;
    2039                 :             :         }
    2040                 :           9 :     }
    2041                 :             : 
    2042         [ +  - ]:        1358 :     RemoveUnnecessaryTransactions(psbtx);
    2043                 :             : 
    2044                 :             :     // Complete if every input is now signed
    2045                 :        1358 :     complete = true;
    2046   [ -  +  +  + ]:        5265 :     for (size_t i = 0; i < psbtx.inputs.size(); ++i) {
    2047         [ +  - ]:        3907 :         complete &= PSBTInputSignedAndVerified(psbtx, i, &txdata);
    2048                 :             :     }
    2049                 :             : 
    2050                 :        1358 :     return {};
    2051         [ +  - ]:        2734 : }
    2052                 :             : 
    2053                 :           9 : SigningResult CWallet::SignMessage(const std::string& message, const PKHash& pkhash, std::string& str_sig) const
    2054                 :             : {
    2055                 :           9 :     SignatureData sigdata;
    2056         [ +  - ]:           9 :     CScript script_pub_key = GetScriptForDestination(pkhash);
    2057         [ +  - ]:          50 :     for (const auto& spk_man_pair : m_spk_managers) {
    2058   [ +  -  +  + ]:          50 :         if (spk_man_pair.second->CanProvide(script_pub_key, sigdata)) {
    2059         [ +  - ]:           9 :             LOCK(cs_wallet);  // DescriptorScriptPubKeyMan calls IsLocked which can lock cs_wallet in a deadlocking order
    2060   [ +  -  +  - ]:           9 :             return spk_man_pair.second->SignMessage(message, pkhash, str_sig);
    2061                 :           9 :         }
    2062                 :             :     }
    2063                 :             :     return SigningResult::PRIVATE_KEY_NOT_AVAILABLE;
    2064                 :           9 : }
    2065                 :             : 
    2066                 :        3785 : 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         [ +  + ]:        3785 :     if (change_type) {
    2070                 :         265 :         return *change_type;
    2071                 :             :     }
    2072                 :             : 
    2073                 :             :     // if m_default_address_type is legacy, use legacy address as change.
    2074         [ +  + ]:        3520 :     if (m_default_address_type == OutputType::LEGACY) {
    2075                 :             :         return OutputType::LEGACY;
    2076                 :             :     }
    2077                 :             : 
    2078                 :        3494 :     bool any_tr{false};
    2079                 :        3494 :     bool any_wpkh{false};
    2080                 :        3494 :     bool any_sh{false};
    2081                 :        3494 :     bool any_pkh{false};
    2082                 :             : 
    2083         [ +  + ]:       42715 :     for (const auto& recipient : vecSend) {
    2084         [ +  - ]:       39221 :         if (std::get_if<WitnessV1Taproot>(&recipient.dest)) {
    2085                 :             :             any_tr = true;
    2086         [ +  - ]:       38874 :         } else if (std::get_if<WitnessV0KeyHash>(&recipient.dest)) {
    2087                 :             :             any_wpkh = true;
    2088         [ +  - ]:       46395 :         } else if (std::get_if<ScriptHash>(&recipient.dest)) {
    2089                 :             :             any_sh = true;
    2090         [ +  - ]:       45322 :         } else if (std::get_if<PKHash>(&recipient.dest)) {
    2091                 :        5969 :             any_pkh = true;
    2092                 :             :         }
    2093                 :             :     }
    2094                 :             : 
    2095                 :        3494 :     const bool has_bech32m_spkman(GetScriptPubKeyMan(OutputType::BECH32M, /*internal=*/true));
    2096         [ +  + ]:        3494 :     if (has_bech32m_spkman && any_tr) {
    2097                 :             :         // Currently tr is the only type supported by the BECH32M spkman
    2098                 :             :         return OutputType::BECH32M;
    2099                 :             :     }
    2100                 :        3151 :     const bool has_bech32_spkman(GetScriptPubKeyMan(OutputType::BECH32, /*internal=*/true));
    2101         [ +  + ]:        3151 :     if (has_bech32_spkman && any_wpkh) {
    2102                 :             :         // Currently wpkh is the only type supported by the BECH32 spkman
    2103                 :             :         return OutputType::BECH32;
    2104                 :             :     }
    2105                 :         398 :     const bool has_p2sh_segwit_spkman(GetScriptPubKeyMan(OutputType::P2SH_SEGWIT, /*internal=*/true));
    2106         [ +  + ]:         398 :     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                 :         345 :     const bool has_legacy_spkman(GetScriptPubKeyMan(OutputType::LEGACY, /*internal=*/true));
    2112         [ +  + ]:         345 :     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         [ +  + ]:         270 :     if (has_bech32m_spkman) {
    2118                 :             :         return OutputType::BECH32M;
    2119                 :             :     }
    2120         [ +  + ]:          32 :     if (has_bech32_spkman) {
    2121                 :             :         return OutputType::BECH32;
    2122                 :             :     }
    2123                 :             :     // else use m_default_address_type for change
    2124                 :          18 :     return m_default_address_type;
    2125                 :             : }
    2126                 :             : 
    2127                 :        1612 : 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                 :        1612 :     LOCK(cs_wallet);
    2137   [ +  -  +  -  :        3224 :     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   [ +  -  +  -  :        4836 :     CWalletTx* wtx = AddToWallet(tx, TxStateInactive{}, [&](CWalletTx& wtx, bool new_tx) {
             +  -  +  - ]
    2142         [ +  + ]:        1612 :         if (replaces_txid) wtx.m_replaces_txid = replaces_txid;
    2143         [ +  + ]:        1612 :         if (comment) wtx.m_comment = comment;
    2144         [ +  + ]:        1612 :         if (comment_to) wtx.m_comment_to = comment_to;
    2145         [ -  + ]:        1612 :         if (!messages.empty()) wtx.m_messages = messages;
    2146         [ -  + ]:        1612 :         if (!payment_requests.empty()) wtx.m_payment_requests = payment_requests;
    2147                 :        1612 :         return true;
    2148                 :             :     });
    2149                 :             : 
    2150                 :             :     // wtx can only be null if the db write failed.
    2151         [ -  + ]:        1612 :     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         [ +  + ]:        5639 :     for (const CTxIn& txin : tx->vin) {
    2157         [ +  - ]:        4027 :         CWalletTx &coin = mapWallet.at(txin.prevout.hash);
    2158                 :        4027 :         coin.MarkDirty();
    2159   [ +  -  +  - ]:        4027 :         NotifyTransactionChanged(coin.GetHash(), CT_UPDATED);
    2160                 :             :     }
    2161                 :             : 
    2162         [ +  + ]:        1612 :     if (!fBroadcastTransactions) {
    2163                 :             :         // Don't submit tx to the mempool
    2164         [ +  - ]:           7 :         return;
    2165                 :             :     }
    2166                 :             : 
    2167         [ +  - ]:        1605 :     std::string err_string;
    2168   [ +  -  +  + ]:        1605 :     if (!SubmitTxMemoryPoolAndRelay(*wtx, err_string, node::TxBroadcast::MEMPOOL_AND_BROADCAST_TO_ALL)) {
    2169         [ +  - ]:           4 :         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         [ +  - ]:        3217 : }
    2173                 :             : 
    2174                 :         427 : DBErrors CWallet::PopulateWalletFromDB(bilingual_str& error, std::vector<bilingual_str>& warnings)
    2175                 :             : {
    2176                 :         427 :     LOCK(cs_wallet);
    2177                 :             : 
    2178         [ -  + ]:         427 :     Assert(m_spk_managers.empty());
    2179         [ -  + ]:         427 :     Assert(m_wallet_flags == 0);
    2180   [ +  -  +  - ]:         427 :     DBErrors nLoadWalletRet = WalletBatch(GetDatabase()).LoadWallet(this);
    2181                 :             : 
    2182         [ +  + ]:         427 :     if (m_spk_managers.empty()) {
    2183         [ -  + ]:          28 :         assert(m_external_spk_managers.empty());
    2184         [ -  + ]:          28 :         assert(m_internal_spk_managers.empty());
    2185                 :             :     }
    2186                 :             : 
    2187         [ +  - ]:         427 :     const auto wallet_file = m_database->Filename();
    2188   [ +  -  +  -  :         427 :     switch (nLoadWalletRet) {
          -  +  +  -  -  
                      + ]
    2189                 :             :     case DBErrors::LOAD_OK:
    2190                 :             :         break;
    2191                 :           1 :     case DBErrors::NONCRITICAL_ERROR:
    2192         [ +  - ]:           2 :         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                 :           1 :         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                 :           1 :     case DBErrors::CORRUPT:
    2201         [ +  - ]:           1 :         error = strprintf(_("Error loading %s: Wallet corrupted"), wallet_file);
    2202                 :           1 :         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                 :           1 :     case DBErrors::UNKNOWN_DESCRIPTOR:
    2210         [ +  - ]:           1 :         error = strprintf(_("Unrecognized descriptor found. Loading wallet %s\n\n"
    2211                 :             :                             "The wallet might have been created on a newer version.\n"
    2212                 :           1 :                             "Please try running the latest software version.\n"), wallet_file);
    2213                 :           1 :         break;
    2214                 :           1 :     case DBErrors::UNEXPECTED_LEGACY_ENTRY:
    2215         [ +  - ]:           1 :         error = strprintf(_("Unexpected legacy entry in descriptor wallet found. Loading wallet %s\n\n"
    2216                 :           1 :                             "The wallet might have been tampered with or created with malicious intent.\n"), wallet_file);
    2217                 :           1 :         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                 :         427 :     return nLoadWalletRet;
    2226         [ +  - ]:         854 : }
    2227                 :             : 
    2228                 :           5 : util::Result<void> CWallet::RemoveTxs(std::vector<Txid>& txs_to_remove)
    2229                 :             : {
    2230                 :           5 :     AssertLockHeld(cs_wallet);
    2231         [ +  - ]:           5 :     bilingual_str str_err;  // future: make RunWithinTxn return a util::Result
    2232   [ +  -  +  - ]:           5 :     bool was_txn_committed = RunWithinTxn(GetDatabase(), /*process_desc=*/"remove transactions", [&](WalletBatch& batch) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet) {
    2233                 :           5 :         util::Result<void> result{RemoveTxs(batch, txs_to_remove)};
    2234   [ +  +  +  - ]:           6 :         if (!result) str_err = util::ErrorString(result);
    2235                 :           5 :         return result.has_value();
    2236                 :           5 :     });
    2237   [ +  +  +  - ]:           7 :     if (!str_err.empty()) return util::Error{str_err};
    2238   [ -  +  -  - ]:           4 :     if (!was_txn_committed) return util::Error{_("Error starting/committing db txn for wallet transactions removal process")};
    2239                 :           4 :     return {}; // all good
    2240                 :           5 : }
    2241                 :             : 
    2242                 :          11 : util::Result<void> CWallet::RemoveTxs(WalletBatch& batch, std::vector<Txid>& txs_to_remove)
    2243                 :             : {
    2244                 :          11 :     AssertLockHeld(cs_wallet);
    2245         [ -  + ]:          11 :     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                 :          11 :     std::vector<decltype(mapWallet)::const_iterator> erased_txs;
    2249                 :          11 :     bilingual_str str_err;
    2250         [ +  + ]:          26 :     for (const Txid& hash : txs_to_remove) {
    2251                 :          16 :         auto it_wtx = mapWallet.find(hash);
    2252         [ +  + ]:          16 :         if (it_wtx == mapWallet.end()) {
    2253   [ +  -  +  - ]:           3 :             return util::Error{strprintf(_("Transaction %s does not belong to this wallet"), hash.GetHex())};
    2254                 :             :         }
    2255   [ +  -  -  + ]:          15 :         if (!batch.EraseTx(hash)) {
    2256   [ #  #  #  # ]:           0 :             return util::Error{strprintf(_("Failure removing transaction: %s"), hash.GetHex())};
    2257                 :             :         }
    2258         [ +  - ]:          15 :         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   [ -  -  +  -  :          40 :     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         [ +  + ]:          25 :         for (const auto& it : erased_txs) {
    2265                 :          15 :             const Txid hash{it->first};
    2266                 :          15 :             wtxOrdered.erase(it->second.m_it_wtxOrdered);
    2267   [ +  -  +  + ]:          47 :             for (const auto& txin : it->second.GetTx()->vin) {
    2268                 :          17 :                 auto range = mapTxSpends.equal_range(txin.prevout);
    2269         [ +  - ]:          35 :                 for (auto iter = range.first; iter != range.second; ++iter) {
    2270         [ +  + ]:          18 :                     if (iter->second == hash) {
    2271                 :          17 :                         mapTxSpends.erase(iter);
    2272                 :          17 :                         break;
    2273                 :             :                     }
    2274                 :             :                 }
    2275                 :             :             }
    2276   [ -  +  +  -  :          84 :             for (unsigned int i = 0; i < it->second.GetTx()->vout.size(); ++i) {
                   +  + ]
    2277                 :          27 :                 m_txos.erase(COutPoint(hash, i));
    2278                 :             :             }
    2279                 :          15 :             mapWallet.erase(it);
    2280                 :          15 :             NotifyTransactionChanged(hash, CT_DELETED);
    2281                 :             :         }
    2282                 :             : 
    2283                 :          10 :         MarkDirty();
    2284                 :          10 :     }, .on_abort={}});
    2285                 :             : 
    2286                 :          10 :     return {};
    2287   [ +  -  +  - ]:          21 : }
    2288                 :             : 
    2289                 :       28210 : bool CWallet::SetAddressBookWithDB(WalletBatch& batch, const CTxDestination& address, const std::string& strName, const std::optional<AddressPurpose>& new_purpose)
    2290                 :             : {
    2291                 :       28210 :     bool fUpdated = false;
    2292                 :       28210 :     bool is_mine;
    2293                 :       28210 :     std::optional<AddressPurpose> purpose;
    2294                 :       28210 :     {
    2295                 :       28210 :         LOCK(cs_wallet);
    2296                 :       28210 :         std::map<CTxDestination, CAddressBookData>::iterator mi = m_address_book.find(address);
    2297   [ +  +  -  + ]:       28210 :         fUpdated = mi != m_address_book.end() && !mi->second.IsChange();
    2298                 :             : 
    2299   [ +  +  +  - ]:       28210 :         CAddressBookData& record = mi != m_address_book.end() ? mi->second : m_address_book[address];
    2300         [ -  + ]:       56420 :         record.SetLabel(strName);
    2301         [ +  - ]:       28210 :         is_mine = IsMine(address);
    2302         [ +  - ]:       28210 :         if (new_purpose) { /* update purpose only if requested */
    2303                 :       28210 :             record.purpose = new_purpose;
    2304                 :             :         }
    2305         [ +  - ]:       28210 :         purpose = record.purpose;
    2306                 :           0 :     }
    2307                 :             : 
    2308                 :       28210 :     const std::string& encoded_dest = EncodeDestination(address);
    2309   [ +  -  +  -  :       56420 :     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   [ +  -  -  + ]:       28210 :     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                 :       56420 :     NotifyAddressBookChanged(address, strName, is_mine,
    2320   [ +  -  +  - ]:       56420 :                              purpose.value_or(is_mine ? AddressPurpose::RECEIVE : AddressPurpose::SEND),
    2321   [ +  +  +  + ]:       56381 :                              (fUpdated ? CT_UPDATED : CT_NEW));
    2322                 :             :     return true;
    2323                 :       28210 : }
    2324                 :             : 
    2325                 :       28210 : bool CWallet::SetAddressBook(const CTxDestination& address, const std::string& strName, const std::optional<AddressPurpose>& purpose)
    2326                 :             : {
    2327                 :       28210 :     WalletBatch batch(GetDatabase());
    2328         [ +  - ]:       28210 :     return SetAddressBookWithDB(batch, address, strName, purpose);
    2329                 :       28210 : }
    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                 :          28 : bool CWallet::DelAddressBookWithDB(WalletBatch& batch, const CTxDestination& address)
    2339                 :             : {
    2340                 :          28 :     const std::string& dest = EncodeDestination(address);
    2341                 :          28 :     {
    2342         [ +  - ]:          28 :         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   [ +  -  -  + ]:          28 :         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   [ +  -  -  + ]:          28 :         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   [ +  -  -  + ]:          28 :         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   [ +  -  -  + ]:          28 :         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         [ +  - ]:          28 :         m_address_book.erase(address);
    2370                 :           0 :     }
    2371                 :             : 
    2372                 :             :     // All good, signal changes
    2373         [ +  - ]:          28 :     NotifyAddressBookChanged(address, "", /*is_mine=*/false, AddressPurpose::SEND, CT_DELETED);
    2374                 :             :     return true;
    2375                 :          28 : }
    2376                 :             : 
    2377                 :         446 : size_t CWallet::KeypoolCountExternalKeys() const
    2378                 :             : {
    2379                 :         446 :     AssertLockHeld(cs_wallet);
    2380                 :             : 
    2381                 :         446 :     unsigned int count = 0;
    2382         [ +  + ]:        1845 :     for (auto spk_man : m_external_spk_managers) {
    2383                 :        1399 :         count += spk_man.second->GetKeyPoolSize();
    2384                 :             :     }
    2385                 :             : 
    2386                 :         446 :     return count;
    2387                 :             : }
    2388                 :             : 
    2389                 :        1500 : unsigned int CWallet::GetKeyPoolSize() const
    2390                 :             : {
    2391                 :        1500 :     AssertLockHeld(cs_wallet);
    2392                 :             : 
    2393                 :        1500 :     unsigned int count = 0;
    2394         [ +  + ]:       10230 :     for (auto spk_man : GetActiveScriptPubKeyMans()) {
    2395         [ +  - ]:        8730 :         count += spk_man->GetKeyPoolSize();
    2396                 :             :     }
    2397                 :        1500 :     return count;
    2398                 :             : }
    2399                 :             : 
    2400                 :        1167 : bool CWallet::TopUpKeyPool(unsigned int kpSize)
    2401                 :             : {
    2402                 :        1167 :     LOCK(cs_wallet);
    2403                 :        1167 :     bool res = true;
    2404   [ +  -  +  + ]:        7623 :     for (auto spk_man : GetActiveScriptPubKeyMans()) {
    2405         [ +  - ]:        6456 :         res &= spk_man->TopUp(kpSize);
    2406                 :             :     }
    2407         [ +  - ]:        1167 :     return res;
    2408                 :        1167 : }
    2409                 :             : 
    2410                 :       17236 : util::Result<CTxDestination> CWallet::GetNewDestination(const OutputType type, const std::string& label)
    2411                 :             : {
    2412                 :       17236 :     LOCK(cs_wallet);
    2413         [ +  - ]:       17236 :     auto spk_man = GetScriptPubKeyMan(type, /*internal=*/false);
    2414         [ +  + ]:       17236 :     if (!spk_man) {
    2415   [ +  -  +  - ]:           6 :         return util::Error{strprintf(_("Error: No %s addresses available."), FormatOutputType(type))};
    2416                 :             :     }
    2417                 :             : 
    2418         [ +  - ]:       17234 :     auto op_dest = spk_man->GetNewDestination(type);
    2419         [ +  + ]:       17234 :     if (op_dest) {
    2420         [ +  - ]:       17229 :         SetAddressBook(*op_dest, label, AddressPurpose::RECEIVE);
    2421                 :             :     }
    2422                 :             : 
    2423                 :       17234 :     return op_dest;
    2424                 :       34470 : }
    2425                 :             : 
    2426                 :         339 : util::Result<CTxDestination> CWallet::GetNewChangeDestination(const OutputType type)
    2427                 :             : {
    2428                 :         339 :     LOCK(cs_wallet);
    2429                 :             : 
    2430         [ +  - ]:         339 :     ReserveDestination reservedest(this, type);
    2431         [ +  - ]:         339 :     auto op_dest = reservedest.GetReservedDestination(true);
    2432   [ +  +  +  - ]:         339 :     if (op_dest) reservedest.KeepDestination();
    2433                 :             : 
    2434                 :         339 :     return op_dest;
    2435         [ +  - ]:         678 : }
    2436                 :             : 
    2437                 :         865 : void CWallet::MarkDestinationsDirty(const std::set<CTxDestination>& destinations) {
    2438   [ +  +  +  + ]:      256843 :     for (auto& entry : mapWallet) {
    2439                 :      255978 :         CWalletTx& wtx = entry.second;
    2440         [ +  + ]:      255978 :         if (wtx.m_is_cache_empty) continue;
    2441   [ -  +  +  -  :         228 :         for (unsigned int i = 0; i < wtx.GetTx()->vout.size(); i++) {
                   +  + ]
    2442                 :          75 :             CTxDestination dst;
    2443   [ +  -  +  -  :         150 :             if (ExtractDestination(wtx.GetTx()->vout[i].scriptPubKey, dst) && destinations.contains(dst)) {
          +  +  +  +  +  
                +  -  - ]
    2444                 :           2 :                 wtx.MarkDirty();
    2445                 :           2 :                 break;
    2446                 :             :             }
    2447                 :          75 :         }
    2448                 :             :     }
    2449                 :         865 : }
    2450                 :             : 
    2451                 :         134 : void CWallet::ForEachAddrBookEntry(const ListAddrBookFunc& func) const
    2452                 :             : {
    2453                 :         134 :     AssertLockHeld(cs_wallet);
    2454         [ +  + ]:        1522 :     for (const std::pair<const CTxDestination, CAddressBookData>& item : m_address_book) {
    2455                 :        1388 :         const auto& entry = item.second;
    2456         [ +  - ]:        2776 :         func(item.first, entry.GetLabel(), entry.IsChange(), entry.purpose);
    2457                 :             :     }
    2458                 :         134 : }
    2459                 :             : 
    2460                 :          24 : std::vector<CTxDestination> CWallet::ListAddrBookAddresses(const std::optional<AddrBookFilter>& _filter) const
    2461                 :             : {
    2462                 :          24 :     AssertLockHeld(cs_wallet);
    2463                 :          24 :     std::vector<CTxDestination> result;
    2464   [ +  -  +  - ]:          24 :     AddrBookFilter filter = _filter ? *_filter : AddrBookFilter();
    2465         [ +  - ]:          24 :     ForEachAddrBookEntry([&result, &filter](const CTxDestination& dest, const std::string& label, bool is_change, const std::optional<AddressPurpose>& purpose) {
    2466                 :             :         // Filter by change
    2467   [ +  -  +  - ]:         209 :         if (filter.ignore_change && is_change) return;
    2468                 :             :         // Filter by label
    2469   [ +  -  +  + ]:         209 :         if (filter.m_op_label && *filter.m_op_label != label) return;
    2470                 :             :         // All good
    2471                 :          43 :         result.emplace_back(dest);
    2472                 :             :     });
    2473                 :          24 :     return result;
    2474                 :          24 : }
    2475                 :             : 
    2476                 :          42 : std::set<std::string> CWallet::ListAddrBookLabels(const std::optional<AddressPurpose> purpose) const
    2477                 :             : {
    2478                 :          42 :     AssertLockHeld(cs_wallet);
    2479         [ +  - ]:          42 :     std::set<std::string> label_set;
    2480         [ +  - ]:          42 :     ForEachAddrBookEntry([&](const CTxDestination& _dest, const std::string& _label,
    2481                 :             :                              bool _is_change, const std::optional<AddressPurpose>& _purpose) {
    2482         [ +  - ]:         497 :         if (_is_change) return;
    2483   [ +  +  +  - ]:         497 :         if (!purpose || purpose == _purpose) {
    2484                 :         482 :             label_set.insert(_label);
    2485                 :             :         }
    2486                 :             :     });
    2487                 :          42 :     return label_set;
    2488                 :           0 : }
    2489                 :             : 
    2490                 :        2237 : util::Result<CTxDestination> ReserveDestination::GetReservedDestination(bool internal)
    2491                 :             : {
    2492                 :        2237 :     m_spk_man = pwallet->GetScriptPubKeyMan(type, internal);
    2493         [ +  + ]:        2237 :     if (!m_spk_man) {
    2494                 :          24 :         return util::Error{strprintf(_("Error: No %s addresses available."), FormatOutputType(type))};
    2495                 :             :     }
    2496                 :             : 
    2497         [ +  - ]:        2225 :     if (nIndex == -1) {
    2498                 :        2225 :         int64_t index;
    2499                 :        2225 :         auto op_address = m_spk_man->GetReservedDestination(type, internal, index);
    2500         [ +  + ]:        2225 :         if (!op_address) return op_address;
    2501                 :        2221 :         nIndex = index;
    2502         [ +  - ]:        4442 :         address = *op_address;
    2503                 :        2225 :     }
    2504                 :        2221 :     return address;
    2505                 :             : }
    2506                 :             : 
    2507                 :        4008 : void ReserveDestination::KeepDestination()
    2508                 :             : {
    2509         [ +  + ]:        4008 :     if (nIndex != -1) {
    2510                 :        2116 :         m_spk_man->KeepDestination(nIndex, type);
    2511                 :             :     }
    2512                 :        4008 :     nIndex = -1;
    2513                 :        4008 :     address = CNoDestination();
    2514                 :        4008 : }
    2515                 :             : 
    2516                 :        4124 : void ReserveDestination::ReturnDestination()
    2517                 :             : {
    2518         [ +  + ]:        4124 :     if (nIndex != -1) {
    2519                 :         105 :         m_spk_man->ReturnDestination(nIndex, fInternal, address);
    2520                 :             :     }
    2521                 :        4124 :     nIndex = -1;
    2522                 :        4124 :     address = CNoDestination();
    2523                 :        4124 : }
    2524                 :             : 
    2525                 :           5 : util::Result<void> CWallet::DisplayAddress(const CTxDestination& dest)
    2526                 :             : {
    2527                 :           5 :     CScript scriptPubKey = GetScriptForDestination(dest);
    2528   [ +  -  +  - ]:           5 :     for (const auto& spk_man : GetScriptPubKeyMans(scriptPubKey)) {
    2529         [ +  - ]:           5 :         auto signer_spk_man = dynamic_cast<ExternalSignerScriptPubKeyMan *>(spk_man);
    2530         [ -  + ]:           5 :         if (signer_spk_man == nullptr) {
    2531                 :           0 :             continue;
    2532                 :             :         }
    2533         [ +  + ]:           5 :         auto signer{ExternalSignerScriptPubKeyMan::GetExternalSigner()};
    2534   [ -  +  -  -  :           4 :         if (!signer) throw std::runtime_error(util::ErrorString(signer).original);
                   -  - ]
    2535         [ +  - ]:           4 :         return signer_spk_man->DisplayAddress(dest, *signer);
    2536                 :           5 :     }
    2537         [ #  # ]:           0 :     return util::Error{_("There is no ScriptPubKeyManager for this address")};
    2538                 :           4 : }
    2539                 :             : 
    2540                 :          86 : void CWallet::LoadLockedCoin(const COutPoint& coin, bool persistent)
    2541                 :             : {
    2542                 :          86 :     AssertLockHeld(cs_wallet);
    2543                 :          86 :     m_locked_coins.emplace(coin, persistent);
    2544                 :          86 : }
    2545                 :             : 
    2546                 :          83 : bool CWallet::LockCoin(const COutPoint& output, bool persist)
    2547                 :             : {
    2548                 :          83 :     AssertLockHeld(cs_wallet);
    2549                 :          83 :     LoadLockedCoin(output, persist);
    2550         [ +  + ]:          83 :     if (persist) {
    2551                 :           3 :         WalletBatch batch(GetDatabase());
    2552         [ +  - ]:           3 :         return batch.WriteLockedUTXO(output);
    2553                 :           3 :     }
    2554                 :             :     return true;
    2555                 :             : }
    2556                 :             : 
    2557                 :       11263 : bool CWallet::UnlockCoin(const COutPoint& output)
    2558                 :             : {
    2559                 :       11263 :     AssertLockHeld(cs_wallet);
    2560                 :       11263 :     auto locked_coin_it = m_locked_coins.find(output);
    2561         [ +  + ]:       11263 :     if (locked_coin_it != m_locked_coins.end()) {
    2562                 :          10 :         bool persisted = locked_coin_it->second;
    2563                 :          10 :         m_locked_coins.erase(locked_coin_it);
    2564         [ +  + ]:          10 :         if (persisted) {
    2565                 :           1 :             WalletBatch batch(GetDatabase());
    2566         [ +  - ]:           1 :             return batch.EraseLockedUTXO(output);
    2567                 :           1 :         }
    2568                 :             :     }
    2569                 :             :     return true;
    2570                 :             : }
    2571                 :             : 
    2572                 :           4 : bool CWallet::UnlockAllCoins()
    2573                 :             : {
    2574                 :           4 :     AssertLockHeld(cs_wallet);
    2575                 :           4 :     bool success = true;
    2576                 :           4 :     WalletBatch batch(GetDatabase());
    2577   [ -  +  +  + ]:          56 :     for (const auto& [coin, persistent] : m_locked_coins) {
    2578   [ -  +  -  -  :          52 :         if (persistent) success = success && batch.EraseLockedUTXO(coin);
             -  -  -  - ]
    2579                 :             :     }
    2580                 :           4 :     m_locked_coins.clear();
    2581                 :           4 :     return success;
    2582                 :           4 : }
    2583                 :             : 
    2584                 :      443130 : bool CWallet::IsLockedCoin(const COutPoint& output) const
    2585                 :             : {
    2586                 :      443130 :     AssertLockHeld(cs_wallet);
    2587                 :      443130 :     return m_locked_coins.contains(output);
    2588                 :             : }
    2589                 :             : 
    2590                 :          11 : void CWallet::ListLockedCoins(std::vector<COutPoint>& vOutpts) const
    2591                 :             : {
    2592                 :          11 :     AssertLockHeld(cs_wallet);
    2593         [ +  + ]:          18 :     for (const auto& [coin, _] : m_locked_coins) {
    2594                 :           7 :         vOutpts.push_back(coin);
    2595                 :             :     }
    2596                 :          11 : }
    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                 :       19408 : unsigned int CWallet::ComputeTimeSmart(const CWalletTx& wtx, bool rescanning_old_block) const
    2622                 :             : {
    2623                 :       19408 :     std::optional<uint256> block_hash;
    2624         [ +  + ]:       19408 :     if (auto* conf = wtx.state<TxStateConfirmed>()) {
    2625                 :       15707 :         block_hash = conf->confirmed_block_hash;
    2626         [ -  + ]:        3701 :     } else if (auto* conf = wtx.state<TxStateBlockConflicted>()) {
    2627                 :           0 :         block_hash = conf->conflicting_block_hash;
    2628                 :             :     }
    2629                 :             : 
    2630                 :       19408 :     unsigned int nTimeSmart = wtx.nTimeReceived;
    2631         [ +  + ]:       19408 :     if (block_hash) {
    2632                 :       15707 :         int64_t blocktime;
    2633                 :       15707 :         int64_t block_max_time;
    2634         [ +  - ]:       15707 :         if (chain().findBlock(*block_hash, FoundBlock().time(blocktime).maxTime(block_max_time))) {
    2635         [ +  + ]:       15707 :             if (rescanning_old_block) {
    2636                 :        5837 :                 nTimeSmart = block_max_time;
    2637                 :             :             } else {
    2638                 :        9870 :                 int64_t latestNow = wtx.nTimeReceived;
    2639                 :        9870 :                 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                 :        9870 :                 int64_t latestTolerated = latestNow + 300;
    2643                 :        9870 :                 const TxItems& txOrdered = wtxOrdered;
    2644         [ +  + ]:       19742 :                 for (auto it = txOrdered.rbegin(); it != txOrdered.rend(); ++it) {
    2645                 :       19619 :                     CWalletTx* const pwtx = it->second;
    2646         [ +  + ]:       19619 :                     if (pwtx == &wtx) {
    2647                 :        9870 :                         continue;
    2648                 :             :                     }
    2649                 :        9749 :                     int64_t nSmartTime;
    2650                 :        9749 :                     nSmartTime = pwtx->nTimeSmart;
    2651         [ -  + ]:        9749 :                     if (!nSmartTime) {
    2652                 :           0 :                         nSmartTime = pwtx->nTimeReceived;
    2653                 :             :                     }
    2654         [ +  + ]:        9749 :                     if (nSmartTime <= latestTolerated) {
    2655                 :        9747 :                         latestEntry = nSmartTime;
    2656         [ +  + ]:        9747 :                         if (nSmartTime > latestNow) {
    2657                 :           4 :                             latestNow = nSmartTime;
    2658                 :             :                         }
    2659                 :             :                         break;
    2660                 :             :                     }
    2661                 :             :                 }
    2662                 :             : 
    2663   [ +  +  +  + ]:       10903 :                 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                 :       19408 :     return nTimeSmart;
    2670                 :             : }
    2671                 :             : 
    2672                 :          20 : bool CWallet::SetAddressPreviouslySpent(WalletBatch& batch, const CTxDestination& dest, bool used)
    2673                 :             : {
    2674         [ +  - ]:          20 :     if (std::get_if<CNoDestination>(&dest))
    2675                 :             :         return false;
    2676                 :             : 
    2677         [ -  + ]:          20 :     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                 :          20 :     LoadAddressPreviouslySpent(dest);
    2683                 :          20 :     return batch.WriteAddressPreviouslySpent(dest, true);
    2684                 :             : }
    2685                 :             : 
    2686                 :          28 : void CWallet::LoadAddressPreviouslySpent(const CTxDestination& dest)
    2687                 :             : {
    2688                 :          28 :     m_address_book[dest].previously_spent = true;
    2689                 :          28 : }
    2690                 :             : 
    2691                 :           3 : void CWallet::LoadAddressReceiveRequest(const CTxDestination& dest, const std::string& id, const std::string& request)
    2692                 :             : {
    2693                 :           3 :     m_address_book[dest].receive_requests[id] = request;
    2694                 :           3 : }
    2695                 :             : 
    2696                 :        1657 : bool CWallet::IsAddressPreviouslySpent(const CTxDestination& dest) const
    2697                 :             : {
    2698         [ +  + ]:        1657 :     if (auto* data{common::FindKey(m_address_book, dest)}) return data->previously_spent;
    2699                 :             :     return false;
    2700                 :             : }
    2701                 :             : 
    2702                 :           2 : std::vector<std::string> CWallet::GetAddressReceiveRequests() const
    2703                 :             : {
    2704                 :           2 :     std::vector<std::string> values;
    2705         [ +  + ]:           5 :     for (const auto& [dest, entry] : m_address_book) {
    2706   [ +  -  +  + ]:           6 :         for (const auto& [id, request] : entry.receive_requests) {
    2707         [ +  - ]:           3 :             values.emplace_back(request);
    2708                 :             :         }
    2709                 :             :     }
    2710                 :           2 :     return values;
    2711                 :           0 : }
    2712                 :             : 
    2713                 :           4 : bool CWallet::SetAddressReceiveRequest(WalletBatch& batch, const CTxDestination& dest, const std::string& id, const std::string& value)
    2714                 :             : {
    2715         [ +  - ]:           4 :     if (!batch.WriteAddressReceiveRequest(dest, id, value)) return false;
    2716                 :           4 :     m_address_book[dest].receive_requests[id] = value;
    2717                 :           4 :     return true;
    2718                 :             : }
    2719                 :             : 
    2720                 :           1 : bool CWallet::EraseAddressReceiveRequest(WalletBatch& batch, const CTxDestination& dest, const std::string& id)
    2721                 :             : {
    2722         [ +  - ]:           1 :     if (!batch.EraseAddressReceiveRequest(dest, id)) return false;
    2723                 :           1 :     m_address_book[dest].receive_requests.erase(id);
    2724                 :           1 :     return true;
    2725                 :             : }
    2726                 :             : 
    2727                 :        1624 : util::Result<fs::path> GetWalletPath(const std::string& name)
    2728                 :             : {
    2729                 :        1624 :     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   [ +  -  +  + ]:        4872 :     if (name_path != name_path.lexically_normal()) {
    2733   [ +  -  +  - ]:          48 :         return util::Error{Untranslated("Wallet name given as a path must be normalized")};
    2734                 :             :     }
    2735                 :             : 
    2736                 :             :     // 'name' cannot begin with ./ or ../
    2737   [ +  +  +  -  :        6816 :     if (!name_path.empty() && (*name_path.begin() == fs::PathFromString(".") || *name_path.begin() == fs::PathFromString(".."))) {
          +  -  +  +  +  
          +  +  -  +  -  
          +  +  +  +  +  
          +  +  +  +  +  
          +  +  -  -  -  
                -  -  - ]
    2738   [ +  -  +  - ]:          18 :         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   [ +  +  +  -  :        1634 :     if (name_path.has_root_path() && name_path.root_path() == name_path) {
             +  +  +  + ]
    2743   [ +  -  +  - ]:           6 :         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   [ +  -  +  - ]:        1600 :     const fs::path wallet_path = fsbridge::AbsPathJoin(GetWalletDir(), name_path);
    2753         [ +  - ]:        1600 :     fs::file_type path_type = fs::symlink_status(wallet_path).type();
    2754   [ +  +  +  +  :        1618 :     if (!(path_type == fs::file_type::not_found || path_type == fs::file_type::directory ||
             +  +  +  + ]
    2755   [ +  -  +  + ]:          16 :           (path_type == fs::file_type::symlink && fs::is_directory(wallet_path)) ||
    2756   [ +  -  -  + ]:           4 :           (path_type == fs::file_type::regular && name_path.filename() == name_path))) {
    2757   [ +  -  +  - ]:           8 :         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   [ +  -  +  - ]:          20 :               name, fs::quoted(fs::PathToString(GetWalletDir()))))};
    2762                 :             :     }
    2763         [ +  - ]:        3192 :     return wallet_path;
    2764                 :        3224 : }
    2765                 :             : 
    2766                 :        1543 : std::unique_ptr<WalletDatabase> MakeWalletDatabase(const std::string& name, const DatabaseOptions& options, DatabaseStatus& status, bilingual_str& error_string)
    2767                 :             : {
    2768                 :        1543 :     const auto& wallet_path = GetWalletPath(name);
    2769         [ +  + ]:        1543 :     if (!wallet_path) {
    2770         [ +  - ]:          28 :         error_string = util::ErrorString(wallet_path);
    2771                 :          28 :         status = DatabaseStatus::FAILED_BAD_PATH;
    2772                 :          28 :         return nullptr;
    2773                 :             :     }
    2774         [ +  - ]:        1515 :     return MakeDatabase(*wallet_path, options, status, error_string);
    2775                 :        1543 : }
    2776                 :             : 
    2777                 :        1101 : bool CWallet::LoadWalletArgs(std::shared_ptr<CWallet> wallet, const WalletContext& context, bilingual_str& error, std::vector<bilingual_str>& warnings)
    2778                 :             : {
    2779                 :        1101 :     interfaces::Chain* chain = context.chain;
    2780         [ -  + ]:        1101 :     const ArgsManager& args = *Assert(context.args);
    2781                 :             : 
    2782   [ +  -  +  -  :        1101 :     if (!args.GetArg("-addresstype", "").empty()) {
                   +  + ]
    2783   [ +  -  +  -  :         282 :         std::optional<OutputType> parsed = ParseOutputType(args.GetArg("-addresstype", ""));
                   +  - ]
    2784         [ -  + ]:          94 :         if (!parsed) {
    2785   [ #  #  #  #  :           0 :             error = strprintf(_("Unknown address type '%s'"), args.GetArg("-addresstype", ""));
                   #  # ]
    2786                 :           0 :             return false;
    2787                 :             :         }
    2788                 :          94 :         wallet->m_default_address_type = parsed.value();
    2789                 :             :     }
    2790                 :             : 
    2791   [ +  -  +  -  :        1101 :     if (!args.GetArg("-changetype", "").empty()) {
                   +  + ]
    2792   [ +  -  +  -  :          18 :         std::optional<OutputType> parsed = ParseOutputType(args.GetArg("-changetype", ""));
                   +  - ]
    2793         [ -  + ]:           6 :         if (!parsed) {
    2794   [ #  #  #  #  :           0 :             error = strprintf(_("Unknown change type '%s'"), args.GetArg("-changetype", ""));
                   #  # ]
    2795                 :           0 :             return false;
    2796                 :             :         }
    2797                 :           6 :         wallet->m_default_change_type = parsed.value();
    2798                 :             :     }
    2799                 :             : 
    2800   [ +  -  +  + ]:        2202 :     if (const auto arg{args.GetArg("-mintxfee")}) {
    2801         [ +  - ]:          15 :         std::optional<CAmount> min_tx_fee = ParseMoney(*arg);
    2802         [ -  + ]:          15 :         if (!min_tx_fee) {
    2803   [ #  #  #  # ]:           0 :             error = AmountErrMsg("mintxfee", *arg);
    2804                 :           0 :             return false;
    2805         [ -  + ]:          15 :         } 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                 :          15 :         wallet->m_min_fee = CFeeRate{min_tx_fee.value()};
    2811                 :           0 :     }
    2812                 :             : 
    2813   [ +  -  +  + ]:        2202 :     if (const auto arg{args.GetArg("-maxapsfee")}) {
    2814         [ -  + ]:           2 :         const std::string& max_aps_fee{*arg};
    2815         [ -  + ]:           2 :         if (max_aps_fee == "-1") {
    2816                 :           0 :             wallet->m_max_aps_fee = -1;
    2817   [ +  -  +  - ]:           2 :         } else if (std::optional<CAmount> max_fee = ParseMoney(max_aps_fee)) {
    2818         [ -  + ]:           2 :             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                 :           2 :             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   [ +  -  +  + ]:        2202 :     if (const auto arg{args.GetArg("-fallbackfee")}) {
    2830         [ +  - ]:        1077 :         std::optional<CAmount> fallback_fee = ParseMoney(*arg);
    2831         [ -  + ]:        1077 :         if (!fallback_fee) {
    2832         [ #  # ]:           0 :             error = strprintf(_("Invalid amount for %s=<amount>: '%s'"), "-fallbackfee", *arg);
    2833                 :           0 :             return false;
    2834         [ +  + ]:        1077 :         } else if (fallback_fee.value() > HIGH_TX_FEE_PER_KB) {
    2835   [ +  -  +  -  :           6 :             warnings.push_back(AmountHighWarn("-fallbackfee") + Untranslated(" ") +
                   +  - ]
    2836   [ +  -  +  - ]:           2 :                                _("This is the transaction fee you may pay when fee estimates are not available."));
    2837                 :             :         }
    2838                 :        1077 :         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                 :        1101 :     wallet->m_allow_fallback_fee = wallet->m_fallback_fee.GetFeePerK() != 0;
    2843                 :             : 
    2844   [ +  -  +  + ]:        2202 :     if (const auto arg{args.GetArg("-discardfee")}) {
    2845         [ +  - ]:           6 :         std::optional<CAmount> discard_fee = ParseMoney(*arg);
    2846         [ -  + ]:           6 :         if (!discard_fee) {
    2847         [ #  # ]:           0 :             error = strprintf(_("Invalid amount for %s=<amount>: '%s'"), "-discardfee", *arg);
    2848                 :           0 :             return false;
    2849         [ +  + ]:           6 :         } else if (discard_fee.value() > HIGH_TX_FEE_PER_KB) {
    2850   [ +  -  +  -  :          24 :             warnings.push_back(AmountHighWarn("-discardfee") + Untranslated(" ") +
                   +  - ]
    2851   [ +  -  +  - ]:           8 :                                _("This is the transaction fee you may discard if change is smaller than dust at this level"));
    2852                 :             :         }
    2853                 :           6 :         wallet->m_discard_rate = CFeeRate{discard_fee.value()};
    2854                 :           0 :     }
    2855                 :             : 
    2856   [ +  -  +  + ]:        2202 :     if (const auto arg{args.GetArg("-maxtxfee")}) {
    2857         [ +  - ]:           1 :         std::optional<CAmount> max_fee = ParseMoney(*arg);
    2858         [ -  + ]:           1 :         if (!max_fee) {
    2859   [ #  #  #  # ]:           0 :             error = AmountErrMsg("maxtxfee", *arg);
    2860                 :           0 :             return false;
    2861         [ -  + ]:           1 :         } 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   [ +  -  +  -  :           2 :         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         [ +  - ]:           1 :         wallet->m_default_max_tx_fee = max_fee.value();
    2872                 :           0 :     }
    2873                 :             : 
    2874   [ +  -  -  + ]:        2202 :     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   [ +  +  +  + ]:        1101 :     if (chain && chain->relayMinFee().GetFeePerK() > HIGH_TX_FEE_PER_KB) {
    2884   [ +  -  +  -  :          12 :         warnings.push_back(AmountHighWarn("-minrelaytxfee") + Untranslated(" ") +
                   +  - ]
    2885         [ +  - ]:           4 :                            _("The wallet will avoid paying less than the minimum relay fee."));
    2886                 :             :     }
    2887                 :             : 
    2888                 :        2202 :     wallet->m_confirm_target = args.GetIntArg("-txconfirmtarget", DEFAULT_TX_CONFIRM_TARGET);
    2889         [ +  - ]:        1101 :     wallet->m_spend_zero_conf_change = args.GetBoolArg("-spendzeroconfchange", DEFAULT_SPEND_ZEROCONF_CHANGE);
    2890                 :        1101 :     wallet->m_signal_rbf = DEFAULT_WALLET_RBF;
    2891   [ +  -  +  + ]:        2202 :     if (auto value{args.GetBoolArg("-walletrbf")}) {
    2892         [ +  - ]:           2 :         warnings.push_back(_("-walletrbf is deprecated and will be fully removed in the next release."));
    2893                 :           2 :         wallet->m_signal_rbf = *value;
    2894                 :             :     }
    2895                 :             : 
    2896         [ +  + ]:        3300 :     wallet->m_keypool_size = std::max(args.GetIntArg("-keypool", DEFAULT_KEYPOOL_SIZE), int64_t{1});
    2897   [ +  -  +  - ]:        1101 :     wallet->m_notify_tx_changed_script = args.GetArg("-walletnotify", "");
    2898         [ +  - ]:        1101 :     wallet->SetBroadcastTransactions(args.GetBoolArg("-walletbroadcast", DEFAULT_WALLETBROADCAST));
    2899                 :             : 
    2900                 :        1101 :     return true;
    2901                 :             : }
    2902                 :             : 
    2903                 :         683 : 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                 :         683 :     interfaces::Chain* chain = context.chain;
    2906                 :         683 :     const std::string& walletFile = database->Filename();
    2907                 :             : 
    2908                 :         683 :     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   [ +  -  +  -  :        1366 :     std::shared_ptr<CWallet> walletInstance(new CWallet(chain, name, std::move(database)), FlushAndDeleteWallet);
             +  -  -  - ]
    2912                 :             : 
    2913   [ +  -  +  -  :        2049 :     if (!LoadWalletArgs(walletInstance, context, error, warnings)) {
             +  -  -  + ]
    2914                 :           0 :         return nullptr;
    2915                 :             :     }
    2916                 :             : 
    2917                 :             :     // Initialize version key.
    2918   [ +  -  +  -  :        1366 :     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                 :         683 :     {
    2923         [ +  - ]:         683 :         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         [ +  - ]:         683 :         walletInstance->InitWalletFlags(wallet_creation_flags | WALLET_FLAG_LAST_HARDENED_XPUB_CACHED);
    2928                 :             : 
    2929                 :             :         // Only descriptor wallets can be created
    2930   [ +  -  -  + ]:         683 :         assert(walletInstance->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
    2931                 :             : 
    2932                 :             :         // Born encrypted wallets will have their keys generated later
    2933         [ +  + ]:         683 :         if (!born_encrypted) {
    2934         [ +  + ]:         673 :             walletInstance->SetupWalletGeneration();
    2935                 :             :         }
    2936                 :             : 
    2937         [ +  + ]:         680 :         if (chain) {
    2938         [ +  - ]:         649 :             std::optional<int> tip_height = chain->getHeight();
    2939         [ +  - ]:         649 :             if (tip_height) {
    2940   [ +  -  +  - ]:         649 :                 walletInstance->SetLastBlockProcessed(*tip_height, chain->getBlockHash(*tip_height));
    2941                 :             :             }
    2942                 :             :         }
    2943                 :           3 :     }
    2944                 :             : 
    2945         [ +  - ]:         680 :     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         [ +  - ]:         680 :     walletInstance->TopUpKeyPool();
    2949                 :             : 
    2950   [ +  +  +  -  :         680 :     if (chain && !AttachChain(walletInstance, *chain, /*rescan_required=*/false, error, warnings)) {
                   -  + ]
    2951         [ #  # ]:           0 :         walletInstance->DisconnectChainNotifications();
    2952                 :           0 :         return nullptr;
    2953                 :             :     }
    2954                 :             : 
    2955                 :         680 :     return walletInstance;
    2956                 :         683 : }
    2957                 :             : 
    2958                 :         418 : 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                 :         418 :     interfaces::Chain* chain = context.chain;
    2961                 :         418 :     const std::string& walletFile = database->Filename();
    2962                 :             : 
    2963                 :         418 :     const auto start{SteadyClock::now()};
    2964   [ +  -  +  -  :         836 :     std::shared_ptr<CWallet> walletInstance(new CWallet(chain, name, std::move(database)), FlushAndDeleteWallet);
             +  -  -  - ]
    2965                 :             : 
    2966   [ +  -  +  -  :        1254 :     if (!LoadWalletArgs(walletInstance, context, error, warnings)) {
             +  -  -  + ]
    2967                 :           0 :         return nullptr;
    2968                 :             :     }
    2969                 :             : 
    2970                 :             :     // Load wallet
    2971         [ +  - ]:         418 :     auto nLoadWalletRet = walletInstance->PopulateWalletFromDB(error, warnings);
    2972                 :         418 :     bool rescan_required = nLoadWalletRet == DBErrors::NEED_RESCAN;
    2973   [ +  +  +  - ]:         418 :     if (nLoadWalletRet != DBErrors::LOAD_OK && nLoadWalletRet != DBErrors::NONCRITICAL_ERROR && !rescan_required) {
    2974                 :           2 :         return nullptr;
    2975                 :             :     }
    2976                 :             : 
    2977   [ +  -  +  + ]:         416 :     if (walletInstance->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
    2978   [ +  -  +  + ]:         180 :         for (auto spk_man : walletInstance->GetActiveScriptPubKeyMans()) {
    2979   [ +  -  -  + ]:          72 :             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         [ +  - ]:         416 :     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         [ +  - ]:         416 :     walletInstance->TopUpKeyPool();
    2990                 :             : 
    2991   [ +  +  +  -  :         416 :     if (chain && !AttachChain(walletInstance, *chain, rescan_required, error, warnings)) {
                   +  + ]
    2992         [ +  - ]:          10 :         walletInstance->DisconnectChainNotifications();
    2993                 :          10 :         return nullptr;
    2994                 :             :     }
    2995                 :             : 
    2996   [ +  -  +  - ]:        1218 :     WITH_LOCK(walletInstance->cs_wallet, walletInstance->LogStats());
    2997                 :             : 
    2998                 :         406 :     return walletInstance;
    2999                 :         418 : }
    3000                 :             : 
    3001                 :             : 
    3002                 :        1013 : 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                 :        1013 :     LOCK(walletInstance->cs_wallet);
    3005                 :             :     // allow setting the chain if it hasn't been set already but prevent changing it
    3006   [ +  -  -  + ]:        1013 :     assert(!walletInstance->m_chain || walletInstance->m_chain == &chain);
    3007         [ +  - ]:        1013 :     walletInstance->m_chain = &chain;
    3008                 :             : 
    3009                 :             :     // Unless allowed, ensure wallet files are not reused across chains:
    3010   [ +  -  +  -  :        1013 :     if (!gArgs.GetBoolArg("-walletcrosschain", DEFAULT_WALLETCROSSCHAIN)) {
                   +  - ]
    3011         [ +  - ]:        1013 :         WalletBatch batch(walletInstance->GetDatabase());
    3012                 :        1013 :         CBlockLocator locator;
    3013   [ +  -  +  +  :        2024 :         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         [ +  - ]:        2018 :             if (chain.getBlockHash(0) != locator.vHave.back()) {
    3017   [ +  -  +  - ]:           2 :                 error = Untranslated("Wallet files should not be reused across chains. Restart bitcoind with -walletcrosschain to override.");
    3018                 :           1 :                 return false;
    3019                 :             :             }
    3020                 :             :         }
    3021                 :        2026 :     }
    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   [ +  -  -  + ]:        1012 :     walletInstance->m_chain_notifications_handler = walletInstance->chain().handleNotifications(walletInstance);
    3030                 :             : 
    3031                 :             :     // If rescan_required = true, rescan_height remains equal to 0
    3032                 :        1012 :     int rescan_height = 0;
    3033         [ +  - ]:        1012 :     if (!rescan_required)
    3034                 :             :     {
    3035         [ +  - ]:        1012 :         WalletBatch batch(walletInstance->GetDatabase());
    3036                 :        1012 :         CBlockLocator locator;
    3037   [ +  -  +  + ]:        1012 :         if (batch.ReadBestBlock(locator)) {
    3038   [ +  -  +  + ]:        1010 :             if (const std::optional<int> fork_height = chain.findLocatorFork(locator)) {
    3039                 :        1005 :                 rescan_height = *fork_height;
    3040                 :             :             }
    3041                 :             :         }
    3042                 :        2024 :     }
    3043                 :             : 
    3044         [ +  - ]:        1012 :     const std::optional<int> tip_height = chain.getHeight();
    3045         [ +  + ]:        1012 :     if (tip_height) {
    3046   [ +  -  +  - ]:        1007 :         walletInstance->SetLastBlockProcessedInMem(*tip_height, chain.getBlockHash(*tip_height));
    3047                 :             :     } else {
    3048         [ +  - ]:           5 :         walletInstance->SetLastBlockProcessedInMem(-1, uint256());
    3049                 :             :     }
    3050                 :             : 
    3051   [ +  +  +  + ]:        1012 :     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         [ +  - ]:          71 :         std::optional<int64_t> time_first_key = walletInstance->m_birth_time.load();
    3056         [ +  - ]:          71 :         if (time_first_key) {
    3057         [ +  - ]:          71 :             FoundBlock found = FoundBlock().height(rescan_height);
    3058         [ +  - ]:          71 :             chain.findFirstBlockWithTimeAndHeight(*time_first_key - TIMESTAMP_WINDOW, rescan_height, found);
    3059         [ -  + ]:          71 :             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   [ +  -  +  +  :          71 :         if (chain.havePruned() || chain.hasAssumedValidChain()) {
             +  -  +  + ]
    3071                 :          14 :             int block_height = *tip_height;
    3072   [ +  -  +  -  :        2658 :             while (block_height > 0 && chain.haveBlockOnDisk(block_height - 1) && rescan_height != block_height) {
             +  +  +  + ]
    3073                 :        2644 :                 --block_height;
    3074                 :             :             }
    3075                 :             : 
    3076         [ +  + ]:          14 :             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   [ +  -  +  +  :           9 :                 error = chain.havePruned() ?
                   +  - ]
    3087         [ +  - ]:           4 :                      _("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                 :           9 :                         "node sync reaches height %s"), block_height);
    3094                 :           9 :                 return false;
    3095                 :             :             }
    3096                 :             :         }
    3097                 :             : 
    3098   [ +  -  +  - ]:          62 :         chain.initMessage(_("Rescanning…"));
    3099         [ +  - ]:          62 :         walletInstance->WalletLogPrintf("Rescanning last %i blocks (from block %i)...\n", *tip_height - rescan_height, rescan_height);
    3100                 :             : 
    3101                 :          62 :         {
    3102         [ +  - ]:          62 :             WalletRescanReserver reserver(*walletInstance);
    3103   [ +  -  -  + ]:          62 :             if (!reserver.reserve()) {
    3104         [ #  # ]:           0 :                 error = _("Failed to acquire rescan reserver during wallet initialization");
    3105                 :           0 :                 return false;
    3106                 :             :             }
    3107   [ +  -  +  -  :          62 :             ScanResult scan_res = walletInstance->Scanner().Scan(chain.getBlockHash(rescan_height), rescan_height, /*max_height=*/{}, reserver, /*save_progress=*/true);
                   +  - ]
    3108         [ -  + ]:          62 :             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         [ +  - ]:          62 :             walletInstance->SetLastBlockProcessed(*scan_res.last_scanned_height, scan_res.last_scanned_block);
    3116                 :          62 :         }
    3117                 :             :     }
    3118                 :             : 
    3119                 :             :     return true;
    3120                 :        1013 : }
    3121                 :             : 
    3122                 :       24541 : const CAddressBookData* CWallet::FindAddressBookEntry(const CTxDestination& dest, bool allow_change) const
    3123                 :             : {
    3124                 :       24541 :     const auto& address_book_it = m_address_book.find(dest);
    3125         [ +  + ]:       24541 :     if (address_book_it == m_address_book.end()) return nullptr;
    3126   [ +  -  +  + ]:       11565 :     if ((!allow_change) && address_book_it->second.IsChange()) {
    3127                 :             :         return nullptr;
    3128                 :             :     }
    3129                 :       11562 :     return &address_book_it->second;
    3130                 :             : }
    3131                 :             : 
    3132                 :        1003 : 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                 :        1003 :     ResubmitWalletTransactions(node::TxBroadcast::MEMPOOL_NO_BROADCAST, /*force=*/true);
    3137                 :             : 
    3138                 :             :     // Update wallet transactions with current mempool transactions.
    3139         [ +  - ]:        3009 :     WITH_LOCK(cs_wallet, chain().requestMempoolTransactions(*this));
    3140                 :        1003 : }
    3141                 :             : 
    3142                 :         128 : bool CWallet::BackupWallet(const std::string& strDest) const
    3143                 :             : {
    3144         [ +  - ]:         384 :     WITH_LOCK(cs_wallet, WriteBestBlock());
    3145                 :         128 :     return GetDatabase().Backup(strDest);
    3146                 :             : }
    3147                 :             : 
    3148                 :     1234295 : int CWallet::GetTxDepthInMainChain(const CWalletTx& wtx) const
    3149                 :             : {
    3150                 :     1234295 :     AssertLockHeld(cs_wallet);
    3151         [ +  + ]:     1234295 :     if (auto* conf = wtx.state<TxStateConfirmed>()) {
    3152         [ -  + ]:     1150496 :         assert(conf->confirmed_block_height >= 0);
    3153                 :     1150496 :         return GetLastBlockHeight() - conf->confirmed_block_height + 1;
    3154         [ +  + ]:       83799 :     } else if (auto* conf = wtx.state<TxStateBlockConflicted>()) {
    3155         [ -  + ]:        4725 :         assert(conf->conflicting_block_height >= 0);
    3156                 :        4725 :         return -1 * (GetLastBlockHeight() - conf->conflicting_block_height + 1);
    3157                 :             :     } else {
    3158                 :             :         return 0;
    3159                 :             :     }
    3160                 :             : }
    3161                 :             : 
    3162                 :      708390 : int CWallet::GetTxBlocksToMaturity(const CWalletTx& wtx) const
    3163                 :             : {
    3164                 :      708390 :     AssertLockHeld(cs_wallet);
    3165                 :             : 
    3166         [ +  + ]:      708390 :     if (!wtx.IsCoinBase()) {
    3167                 :             :         return 0;
    3168                 :             :     }
    3169                 :      433969 :     int chain_depth = GetTxDepthInMainChain(wtx);
    3170         [ -  + ]:      433969 :     assert(chain_depth >= 0); // coinbase tx should not be conflicted
    3171         [ +  + ]:      433969 :     return std::max(0, (COINBASE_MATURITY+1) - chain_depth);
    3172                 :             : }
    3173                 :             : 
    3174                 :      708390 : bool CWallet::IsTxImmatureCoinBase(const CWalletTx& wtx) const
    3175                 :             : {
    3176                 :      708390 :     AssertLockHeld(cs_wallet);
    3177                 :             : 
    3178                 :             :     // note GetBlocksToMaturity is 0 for non-coinbase tx
    3179                 :      708390 :     return GetTxBlocksToMaturity(wtx) > 0;
    3180                 :             : }
    3181                 :             : 
    3182                 :       12935 : bool CWallet::IsLocked() const
    3183                 :             : {
    3184         [ +  + ]:       12935 :     if (!HasEncryptionKeys()) {
    3185                 :             :         return false;
    3186                 :             :     }
    3187                 :        4235 :     LOCK(cs_wallet);
    3188         [ +  - ]:        4235 :     return vMasterKey.empty();
    3189                 :        4235 : }
    3190                 :             : 
    3191                 :         113 : bool CWallet::Lock()
    3192                 :             : {
    3193         [ +  - ]:         113 :     if (!HasEncryptionKeys())
    3194                 :             :         return false;
    3195                 :             : 
    3196                 :         113 :     {
    3197         [ +  - ]:         113 :         LOCK2(m_relock_mutex, cs_wallet);
    3198         [ +  + ]:         113 :         if (!vMasterKey.empty()) {
    3199   [ -  +  +  - ]:          70 :             memory_cleanse(vMasterKey.data(), vMasterKey.size() * sizeof(decltype(vMasterKey)::value_type));
    3200   [ +  -  +  - ]:         183 :             vMasterKey.clear();
    3201                 :             :         }
    3202         [ +  - ]:         113 :     }
    3203                 :             : 
    3204                 :         113 :     NotifyStatusChanged(this);
    3205                 :         113 :     return true;
    3206                 :             : }
    3207                 :             : 
    3208                 :          96 : bool CWallet::Unlock(const CKeyingMaterial& vMasterKeyIn)
    3209                 :             : {
    3210                 :          96 :     {
    3211                 :          96 :         LOCK(cs_wallet);
    3212         [ +  + ]:         989 :         for (const auto& spk_man_pair : m_spk_managers) {
    3213   [ +  -  -  + ]:         893 :             if (!spk_man_pair.second->CheckDecryptionKey(vMasterKeyIn)) {
    3214         [ #  # ]:           0 :                 return false;
    3215                 :             :             }
    3216                 :             :         }
    3217         [ +  - ]:          96 :         vMasterKey = vMasterKeyIn;
    3218                 :           0 :     }
    3219                 :          96 :     NotifyStatusChanged(this);
    3220                 :          96 :     return true;
    3221                 :             : }
    3222                 :             : 
    3223                 :       30633 : std::set<ScriptPubKeyMan*> CWallet::GetActiveScriptPubKeyMans() const
    3224                 :             : {
    3225                 :       30633 :     std::set<ScriptPubKeyMan*> spk_mans;
    3226         [ +  + ]:       91899 :     for (bool internal : {false, true}) {
    3227         [ +  + ]:      306330 :         for (OutputType t : OUTPUT_TYPES) {
    3228         [ +  - ]:      245064 :             auto spk_man = GetScriptPubKeyMan(t, internal);
    3229         [ +  + ]:      245064 :             if (spk_man) {
    3230         [ +  - ]:      141238 :                 spk_mans.insert(spk_man);
    3231                 :             :             }
    3232                 :             :         }
    3233                 :             :     }
    3234                 :       30633 :     return spk_mans;
    3235                 :           0 : }
    3236                 :             : 
    3237                 :        2057 : bool CWallet::IsActiveScriptPubKeyMan(const ScriptPubKeyMan& spkm) const
    3238                 :             : {
    3239   [ +  +  +  + ]:        7721 :     for (const auto& [_, ext_spkm] : m_external_spk_managers) {
    3240         [ +  + ]:        6611 :         if (ext_spkm == &spkm) return true;
    3241                 :             :     }
    3242   [ +  +  +  + ]:        3048 :     for (const auto& [_, int_spkm] : m_internal_spk_managers) {
    3243         [ +  + ]:        2872 :         if (int_spkm == &spkm) return true;
    3244                 :             :     }
    3245                 :             :     return false;
    3246                 :             : }
    3247                 :             : 
    3248                 :        4746 : std::set<ScriptPubKeyMan*> CWallet::GetAllScriptPubKeyMans() const
    3249                 :             : {
    3250                 :        4746 :     std::set<ScriptPubKeyMan*> spk_mans;
    3251         [ +  + ]:       45186 :     for (const auto& spk_man_pair : m_spk_managers) {
    3252         [ +  - ]:       40440 :         spk_mans.insert(spk_man_pair.second.get());
    3253                 :             :     }
    3254                 :        4746 :     return spk_mans;
    3255                 :           0 : }
    3256                 :             : 
    3257                 :      302419 : ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const OutputType& type, bool internal) const
    3258                 :             : {
    3259         [ +  + ]:      302419 :     const std::map<OutputType, ScriptPubKeyMan*>& spk_managers = internal ? m_internal_spk_managers : m_external_spk_managers;
    3260                 :      302419 :     std::map<OutputType, ScriptPubKeyMan*>::const_iterator it = spk_managers.find(type);
    3261         [ +  + ]:      302419 :     if (it == spk_managers.end()) {
    3262                 :             :         return nullptr;
    3263                 :             :     }
    3264                 :      192918 :     return it->second;
    3265                 :             : }
    3266                 :             : 
    3267                 :      151223 : std::set<ScriptPubKeyMan*> CWallet::GetScriptPubKeyMans(const CScript& script) const
    3268                 :             : {
    3269         [ +  - ]:      151223 :     std::set<ScriptPubKeyMan*> spk_mans;
    3270                 :             : 
    3271                 :             :     // Search the cache for relevant SPKMs instead of iterating m_spk_managers
    3272         [ +  - ]:      151223 :     const auto& it = m_cached_spks.find(script);
    3273         [ +  + ]:      151223 :     if (it != m_cached_spks.end()) {
    3274         [ +  - ]:       89089 :         spk_mans.insert(it->second.begin(), it->second.end());
    3275                 :             :     }
    3276                 :      151223 :     SignatureData sigdata;
    3277         [ +  - ]:      240321 :     Assume(std::all_of(spk_mans.begin(), spk_mans.end(), [&script, &sigdata](ScriptPubKeyMan* spkm) { return spkm->CanProvide(script, sigdata); }));
    3278                 :             : 
    3279                 :      151223 :     return spk_mans;
    3280                 :      151223 : }
    3281                 :             : 
    3282                 :        4928 : ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const uint256& id) const
    3283                 :             : {
    3284         [ +  - ]:        4928 :     if (m_spk_managers.contains(id)) {
    3285                 :        4928 :         return m_spk_managers.at(id).get();
    3286                 :             :     }
    3287                 :             :     return nullptr;
    3288                 :             : }
    3289                 :             : 
    3290                 :      288387 : std::unique_ptr<SigningProvider> CWallet::GetSolvingProvider(const CScript& script) const
    3291                 :             : {
    3292                 :      288387 :     SignatureData sigdata;
    3293         [ +  - ]:      576774 :     return GetSolvingProvider(script, sigdata);
    3294                 :      288387 : }
    3295                 :             : 
    3296                 :      288387 : 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                 :      288387 :     const auto& it = m_cached_spks.find(script);
    3300         [ +  + ]:      288387 :     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                 :      178161 :         Assume(it->second.at(0)->CanProvide(script, sigdata));
    3303                 :      178161 :         return it->second.at(0)->GetSolvingProvider(script);
    3304                 :             :     }
    3305                 :             : 
    3306                 :      110226 :     return nullptr;
    3307                 :             : }
    3308                 :             : 
    3309                 :       10151 : std::vector<WalletDescriptor> CWallet::GetWalletDescriptors(const CScript& script) const
    3310                 :             : {
    3311                 :       10151 :     std::vector<WalletDescriptor> descs;
    3312   [ +  -  +  + ]:       20303 :     for (const auto spk_man: GetScriptPubKeyMans(script)) {
    3313   [ +  -  +  - ]:       10152 :         if (const auto desc_spk_man = dynamic_cast<DescriptorScriptPubKeyMan*>(spk_man)) {
    3314         [ +  - ]:       10152 :             LOCK(desc_spk_man->cs_desc_man);
    3315   [ +  -  +  - ]:       20304 :             descs.push_back(desc_spk_man->GetWalletDescriptor());
    3316                 :       10152 :         }
    3317                 :             :     }
    3318                 :       10151 :     return descs;
    3319                 :           0 : }
    3320                 :             : 
    3321                 :         998 : LegacyDataSPKM* CWallet::GetLegacyDataSPKM() const
    3322                 :             : {
    3323         [ +  - ]:         998 :     if (IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS)) {
    3324                 :             :         return nullptr;
    3325                 :             :     }
    3326                 :         998 :     auto it = m_internal_spk_managers.find(OutputType::LEGACY);
    3327         [ +  - ]:         998 :     if (it == m_internal_spk_managers.end()) return nullptr;
    3328         [ +  - ]:         998 :     return dynamic_cast<LegacyDataSPKM*>(it->second);
    3329                 :             : }
    3330                 :             : 
    3331                 :        8391 : 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                 :        8391 :     const auto& spkm = m_spk_managers[id] = std::move(spkm_man);
    3336                 :             : 
    3337                 :             :     // Update birth time if needed
    3338                 :        8391 :     MaybeUpdateBirthTime(spkm->GetTimeFirstKey());
    3339                 :        8391 : }
    3340                 :             : 
    3341                 :         872 : LegacyDataSPKM* CWallet::GetOrCreateLegacyDataSPKM()
    3342                 :             : {
    3343                 :         872 :     SetupLegacyDataSPKM();
    3344                 :         872 :     return GetLegacyDataSPKM();
    3345                 :             : }
    3346                 :             : 
    3347                 :         872 : void CWallet::SetupLegacyDataSPKM()
    3348                 :             : {
    3349   [ +  +  +  -  :         872 :     if (!m_internal_spk_managers.empty() || !m_external_spk_managers.empty() || !m_spk_managers.empty() || IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS)) {
             +  -  -  + ]
    3350                 :         823 :         return;
    3351                 :             :     }
    3352                 :             : 
    3353   [ +  -  -  +  :          49 :     Assert(m_database->Format() == "bdb_ro" || m_database->Format() == "sqlite-mock");
          -  -  -  -  -  
          +  -  +  -  -  
                   -  - ]
    3354                 :          49 :     std::unique_ptr<ScriptPubKeyMan> spk_manager = std::make_unique<LegacyDataSPKM>(*this);
    3355                 :             : 
    3356   [ +  +  +  - ]:         196 :     for (const auto& type : LEGACY_OUTPUT_TYPES) {
    3357         [ +  - ]:         147 :         m_internal_spk_managers[type] = spk_manager.get();
    3358         [ +  - ]:         147 :         m_external_spk_managers[type] = spk_manager.get();
    3359                 :             :     }
    3360         [ +  - ]:          49 :     uint256 id = spk_manager->GetID();
    3361         [ +  - ]:          49 :     AddScriptPubKeyMan(id, std::move(spk_manager));
    3362                 :          49 : }
    3363                 :             : 
    3364                 :        2799 : bool CWallet::WithEncryptionKey(std::function<bool (const CKeyingMaterial&)> cb) const
    3365                 :             : {
    3366                 :        2799 :     LOCK(cs_wallet);
    3367   [ +  -  +  - ]:        2799 :     return cb(vMasterKey);
    3368                 :        2799 : }
    3369                 :             : 
    3370                 :      123653 : bool CWallet::HasEncryptionKeys() const
    3371                 :             : {
    3372                 :      123653 :     return !mapMasterKeys.empty();
    3373                 :             : }
    3374                 :             : 
    3375                 :          10 : bool CWallet::HaveCryptedKeys() const
    3376                 :             : {
    3377         [ +  + ]:          46 :     for (const auto& spkm : GetAllScriptPubKeyMans()) {
    3378   [ +  -  +  + ]:          41 :         if (spkm->HaveCryptedKeys()) return true;
    3379                 :             :     }
    3380                 :           5 :     return false;
    3381                 :             : }
    3382                 :             : 
    3383                 :        1670 : void CWallet::ConnectScriptPubKeyManNotifiers()
    3384                 :             : {
    3385         [ +  + ]:       10157 :     for (const auto& spk_man : GetActiveScriptPubKeyMans()) {
    3386         [ +  - ]:        8487 :         spk_man->NotifyCanGetAddressesChanged.connect([this] {
    3387                 :           1 :             NotifyCanGetAddressesChanged();
    3388                 :             :         });
    3389         [ +  - ]:       16974 :         spk_man->NotifyFirstKeyTimeChanged.connect([this](const ScriptPubKeyMan*, int64_t time) {
    3390                 :          35 :             MaybeUpdateBirthTime(time);
    3391                 :             :         });
    3392                 :             :     }
    3393                 :        1670 : }
    3394                 :             : 
    3395                 :        3043 : void CWallet::LoadDescriptorScriptPubKeyMan(uint256 id, WalletDescriptor& desc, const KeyMap& keys, const CryptedKeyMap& ckeys)
    3396                 :             : {
    3397                 :        3043 :     std::unique_ptr<DescriptorScriptPubKeyMan> spk_manager;
    3398   [ +  -  +  + ]:        3043 :     if (IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER)) {
    3399         [ +  - ]:           8 :         spk_manager = ExternalSignerScriptPubKeyMan::LoadFromStorage(*this, id, desc, m_keypool_size, keys, ckeys);
    3400                 :             :     } else {
    3401         [ +  + ]:        6069 :         spk_manager = DescriptorScriptPubKeyMan::LoadFromStorage(*this, id, desc, m_keypool_size, keys, ckeys);
    3402                 :             :     }
    3403         [ +  - ]:        3042 :     AddScriptPubKeyMan(id, std::move(spk_manager));
    3404                 :        3043 : }
    3405                 :             : 
    3406                 :        4140 : DescriptorScriptPubKeyMan& CWallet::SetupDescriptorScriptPubKeyMan(WalletBatch& batch, const CExtKey& master_key, const OutputType& output_type, bool internal)
    3407                 :             : {
    3408                 :        4140 :     AssertLockHeld(cs_wallet);
    3409         [ -  + ]:        4140 :     if (IsLocked()) {
    3410   [ #  #  #  # ]:           0 :         throw std::runtime_error(std::string(__func__) + ": Wallet is locked, cannot setup new descriptors");
    3411                 :             :     }
    3412                 :        4140 :     auto spk_manager = DescriptorScriptPubKeyMan::GenerateNewSingleSig(*this, batch, m_keypool_size, master_key, output_type, internal);
    3413         [ +  - ]:        4140 :     DescriptorScriptPubKeyMan* out = spk_manager.get();
    3414         [ +  - ]:        4140 :     uint256 id = spk_manager->GetID();
    3415         [ +  - ]:        4140 :     AddScriptPubKeyMan(id, std::move(spk_manager));
    3416         [ +  - ]:        4140 :     AddActiveScriptPubKeyManWithDb(batch, id, output_type, internal);
    3417                 :        4140 :     return *out;
    3418                 :        4140 : }
    3419                 :             : 
    3420                 :         516 : void CWallet::SetupDescriptorScriptPubKeyMans(WalletBatch& batch, const CExtKey& master_key)
    3421                 :             : {
    3422                 :         516 :     AssertLockHeld(cs_wallet);
    3423         [ +  + ]:        1548 :     for (bool internal : {false, true}) {
    3424         [ +  + ]:        5160 :         for (OutputType t : OUTPUT_TYPES) {
    3425                 :        4128 :             SetupDescriptorScriptPubKeyMan(batch, master_key, t, internal);
    3426                 :             :         }
    3427                 :             :     }
    3428                 :         516 : }
    3429                 :             : 
    3430                 :         482 : void CWallet::SetupOwnDescriptorScriptPubKeyMans(WalletBatch& batch)
    3431                 :             : {
    3432                 :         482 :     AssertLockHeld(cs_wallet);
    3433         [ -  + ]:         482 :     assert(!IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER));
    3434                 :             :     // Make a seed
    3435                 :         482 :     CKey seed_key = GenerateRandomKey();
    3436         [ +  - ]:         482 :     CPubKey seed = seed_key.GetPubKey();
    3437   [ +  -  -  + ]:         482 :     assert(seed_key.VerifyPubKey(seed));
    3438                 :             : 
    3439                 :             :     // Get the extended key
    3440         [ +  - ]:         482 :     CExtKey master_key;
    3441   [ +  -  +  - ]:         964 :     master_key.SetSeed(seed_key);
    3442                 :             : 
    3443         [ +  - ]:         482 :     SetupDescriptorScriptPubKeyMans(batch, master_key);
    3444                 :         482 : }
    3445                 :             : 
    3446                 :         484 : void CWallet::SetupDescriptorScriptPubKeyMans()
    3447                 :             : {
    3448                 :         484 :     AssertLockHeld(cs_wallet);
    3449                 :             : 
    3450         [ +  + ]:         484 :     if (!IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER)) {
    3451   [ +  -  -  + ]:         479 :         if (!RunWithinTxn(GetDatabase(), /*process_desc=*/"setup descriptors", [&](WalletBatch& batch) EXCLUSIVE_LOCKS_REQUIRED(cs_wallet){
    3452                 :         479 :             SetupOwnDescriptorScriptPubKeyMans(batch);
    3453                 :         479 :             return true;
    3454         [ #  # ]:           0 :         })) throw std::runtime_error("Error: cannot process db transaction for descriptors setup");
    3455                 :             :     } else {
    3456                 :           5 :         auto signer = ExternalSignerScriptPubKeyMan::GetExternalSigner();
    3457   [ +  +  +  -  :           5 :         if (!signer) throw std::runtime_error(util::ErrorString(signer).original);
                   +  - ]
    3458                 :             : 
    3459                 :             :         // TODO: add account parameter
    3460                 :           3 :         int account = 0;
    3461         [ +  - ]:           3 :         UniValue signer_res = signer->GetDescriptors(account);
    3462                 :             : 
    3463   [ -  +  -  -  :           3 :         if (!signer_res.isObject()) throw std::runtime_error(std::string(__func__) + ": Unexpected result");
                   -  - ]
    3464                 :             : 
    3465         [ +  - ]:           3 :         WalletBatch batch(GetDatabase());
    3466   [ +  -  -  +  :           3 :         if (!batch.TxnBegin()) throw std::runtime_error("Error: cannot create db transaction for descriptors import");
                   -  - ]
    3467                 :             : 
    3468         [ +  + ]:           7 :         for (bool internal : {false, true}) {
    3469   [ +  +  +  - ]:           8 :             const UniValue& descriptor_vals = signer_res.find_value(internal ? "internal" : "receive");
    3470   [ -  +  -  -  :           5 :             if (!descriptor_vals.isArray()) throw std::runtime_error(std::string(__func__) + ": Unexpected result");
                   -  - ]
    3471   [ +  -  +  -  :          21 :             for (const UniValue& desc_val : descriptor_vals.get_array().getValues()) {
                   +  + ]
    3472                 :          17 :                 const std::string& desc_str = desc_val.getValStr();
    3473                 :          17 :                 FlatSigningProvider keys;
    3474         [ -  + ]:          17 :                 std::string desc_error;
    3475   [ -  +  +  - ]:          17 :                 auto descs = Parse(desc_str, keys, desc_error, false);
    3476         [ +  + ]:          17 :                 if (descs.empty()) {
    3477   [ +  -  +  -  :           5 :                     throw std::runtime_error(std::string(__func__) + ": Invalid descriptor \"" + desc_str + "\" (" + desc_error + ")");
             +  -  +  - ]
    3478                 :             :                 }
    3479         [ +  - ]:          16 :                 auto& desc = descs.at(0);
    3480   [ +  -  -  + ]:          16 :                 if (!desc->GetOutputType()) {
    3481                 :           0 :                     continue;
    3482                 :             :                 }
    3483         [ +  - ]:          16 :                 OutputType t =  *desc->GetOutputType();
    3484         [ +  - ]:          16 :                 auto spk_manager = ExternalSignerScriptPubKeyMan::CreateNew(*this, batch, m_keypool_size, std::move(desc));
    3485         [ +  - ]:          16 :                 uint256 id = spk_manager->GetID();
    3486         [ +  - ]:          16 :                 AddScriptPubKeyMan(id, std::move(spk_manager));
    3487         [ +  - ]:          16 :                 AddActiveScriptPubKeyManWithDb(batch, id, t, internal);
    3488                 :          18 :             }
    3489                 :             :         }
    3490                 :             : 
    3491                 :             :         // Ensure imported descriptors are committed to disk
    3492   [ +  -  -  +  :           2 :         if (!batch.TxnCommit()) throw std::runtime_error("Error: cannot commit db transaction for descriptors import");
                   -  - ]
    3493                 :           3 :     }
    3494                 :         481 : }
    3495                 :             : 
    3496                 :         708 : void CWallet::SetupWalletGeneration()
    3497                 :             : {
    3498                 :         708 :     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   [ +  +  +  + ]:        1411 :     if (!IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER) &&
    3502         [ +  + ]:        1197 :         (IsWalletFlagSet(WALLET_FLAG_BLANK_WALLET) || IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS))) {
    3503                 :         253 :         return;
    3504                 :             :     }
    3505                 :         455 :     SetupDescriptorScriptPubKeyMans();
    3506                 :             : }
    3507                 :             : 
    3508                 :         443 : void CWallet::AddActiveScriptPubKeyMan(uint256 id, OutputType type, bool internal)
    3509                 :             : {
    3510                 :         443 :     WalletBatch batch(GetDatabase());
    3511         [ +  - ]:         443 :     return AddActiveScriptPubKeyManWithDb(batch, id, type, internal);
    3512                 :         443 : }
    3513                 :             : 
    3514                 :        4599 : void CWallet::AddActiveScriptPubKeyManWithDb(WalletBatch& batch, uint256 id, OutputType type, bool internal)
    3515                 :             : {
    3516         [ -  + ]:        4599 :     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                 :        4599 :     LoadActiveScriptPubKeyMan(id, type, internal);
    3520                 :        4599 : }
    3521                 :             : 
    3522                 :        7138 : 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         [ -  + ]:        7138 :     Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
    3527                 :             : 
    3528   [ +  +  +  - ]:       10751 :     WalletLogPrintf("Setting spkMan to active: id = %s, type = %s, internal = %s\n", id.ToString(), FormatOutputType(type), internal ? "true" : "false");
    3529         [ +  + ]:        7138 :     auto& spk_mans = internal ? m_internal_spk_managers : m_external_spk_managers;
    3530                 :        7138 :     auto& spk_mans_other = internal ? m_external_spk_managers : m_internal_spk_managers;
    3531                 :        7138 :     auto spk_man = m_spk_managers.at(id).get();
    3532                 :        7137 :     spk_mans[type] = spk_man;
    3533                 :             : 
    3534                 :        7137 :     const auto it = spk_mans_other.find(type);
    3535   [ +  +  +  + ]:        7137 :     if (it != spk_mans_other.end() && it->second == spk_man) {
    3536                 :           2 :         spk_mans_other.erase(type);
    3537                 :             :     }
    3538                 :             : 
    3539                 :        7137 :     NotifyCanGetAddressesChanged();
    3540                 :        7137 : }
    3541                 :             : 
    3542                 :         239 : void CWallet::DeactivateScriptPubKeyMan(uint256 id, OutputType type, bool internal)
    3543                 :             : {
    3544                 :         239 :     auto spk_man = GetScriptPubKeyMan(type, internal);
    3545   [ +  +  +  + ]:         239 :     if (spk_man != nullptr && spk_man->GetID() == id) {
    3546   [ +  +  +  - ]:           3 :         WalletLogPrintf("Deactivate spkMan: id = %s, type = %s, internal = %s\n", id.ToString(), FormatOutputType(type), internal ? "true" : "false");
    3547                 :           2 :         WalletBatch batch(GetDatabase());
    3548   [ +  -  -  + ]:           2 :         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         [ +  + ]:           2 :         auto& spk_mans = internal ? m_internal_spk_managers : m_external_spk_managers;
    3553                 :           2 :         spk_mans.erase(type);
    3554                 :           2 :     }
    3555                 :             : 
    3556                 :         239 :     NotifyCanGetAddressesChanged();
    3557                 :         239 : }
    3558                 :             : 
    3559                 :        1016 : DescriptorScriptPubKeyMan* CWallet::GetDescriptorScriptPubKeyMan(const WalletDescriptor& desc) const
    3560                 :             : {
    3561                 :        1016 :     auto spk_man_pair = std::find_if(m_spk_managers.begin(), m_spk_managers.end(), [&desc](const auto& item) {
    3562         [ +  - ]:        4800 :         DescriptorScriptPubKeyMan* spk_manager = dynamic_cast<DescriptorScriptPubKeyMan*>(item.second.get());
    3563   [ +  -  +  + ]:        4800 :         return spk_manager != nullptr && spk_manager->HasWalletDescriptor(desc);
    3564                 :             :     });
    3565                 :             : 
    3566         [ +  + ]:        1016 :     if (spk_man_pair != m_spk_managers.end()) {
    3567         [ +  - ]:          34 :         return dynamic_cast<DescriptorScriptPubKeyMan*>(spk_man_pair->second.get());
    3568                 :             :     }
    3569                 :             : 
    3570                 :             :     return nullptr;
    3571                 :             : }
    3572                 :             : 
    3573                 :       26211 : std::optional<bool> CWallet::IsInternalScriptPubKeyMan(ScriptPubKeyMan* spk_man) const
    3574                 :             : {
    3575                 :             :     // only active ScriptPubKeyMan can be internal
    3576         [ +  + ]:       26211 :     if (!GetActiveScriptPubKeyMans().contains(spk_man)) {
    3577                 :        8358 :         return std::nullopt;
    3578                 :             :     }
    3579                 :             : 
    3580         [ +  - ]:       17853 :     const auto desc_spk_man = dynamic_cast<DescriptorScriptPubKeyMan*>(spk_man);
    3581         [ -  + ]:       17853 :     if (!desc_spk_man) {
    3582   [ #  #  #  # ]:           0 :         throw std::runtime_error(std::string(__func__) + ": unexpected ScriptPubKeyMan type.");
    3583                 :             :     }
    3584                 :             : 
    3585                 :       17853 :     LOCK(desc_spk_man->cs_desc_man);
    3586   [ +  -  +  - ]:       17853 :     const auto& type = desc_spk_man->GetWalletDescriptor().descriptor->GetOutputType();
    3587         [ -  + ]:       17853 :     assert(type.has_value());
    3588                 :             : 
    3589   [ +  -  +  - ]:       17853 :     return GetScriptPubKeyMan(*type, /* internal= */ true) == desc_spk_man;
    3590                 :       17853 : }
    3591                 :             : 
    3592                 :         991 : util::Result<std::reference_wrapper<DescriptorScriptPubKeyMan>> CWallet::AddWalletDescriptor(WalletDescriptor& desc, const FlatSigningProvider& signing_provider, const std::string& label, bool internal)
    3593                 :             : {
    3594                 :         991 :     AssertLockHeld(cs_wallet);
    3595                 :             : 
    3596         [ -  + ]:         991 :     Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
    3597                 :             : 
    3598                 :         991 :     auto spk_man = GetDescriptorScriptPubKeyMan(desc);
    3599         [ +  + ]:         991 :     if (spk_man) {
    3600         [ +  - ]:          31 :         WalletLogPrintf("Update existing descriptor: %s\n", desc.descriptor->ToString());
    3601         [ +  + ]:          31 :         if (auto spkm_res = spk_man->UpdateWalletDescriptor(desc, signing_provider); !spkm_res) {
    3602         [ +  - ]:           9 :             return util::Error{util::ErrorString(spkm_res)};
    3603                 :          27 :         }
    3604                 :             :     } else {
    3605                 :         960 :         auto new_spk_man = DescriptorScriptPubKeyMan::CreateFromImport(*this, desc, m_keypool_size, signing_provider);
    3606         [ +  - ]:         959 :         spk_man = new_spk_man.get();
    3607                 :             : 
    3608                 :             :         // Save the descriptor to memory
    3609         [ +  - ]:         959 :         uint256 id = new_spk_man->GetID();
    3610         [ +  - ]:         959 :         AddScriptPubKeyMan(id, std::move(new_spk_man));
    3611                 :             : 
    3612                 :             :         // Write the existing cache to disk
    3613         [ +  - ]:         959 :         WalletBatch batch(GetDatabase());
    3614   [ +  -  -  + ]:         959 :         if (!batch.WriteDescriptorCacheItems(id, desc.cache)) {
    3615         [ #  # ]:           0 :             return util::Error{_("Unable to write descriptor cache")};
    3616                 :             :         }
    3617                 :         959 :     }
    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   [ +  +  +  + ]:         983 :     if (!desc.descriptor->IsRange() && desc.descriptor->HasScripts()) {
    3622                 :         374 :         auto script_pub_keys = spk_man->GetScriptPubKeys();
    3623         [ -  + ]:         374 :         if (script_pub_keys.empty()) {
    3624         [ #  # ]:           0 :             return util::Error{_("Could not generate scriptPubKeys (cache is empty)")};
    3625                 :             :         }
    3626                 :             : 
    3627         [ +  + ]:         374 :         if (!internal) {
    3628   [ +  +  +  - ]:        1382 :             for (const auto& script : script_pub_keys) {
    3629                 :        1008 :                 CTxDestination dest;
    3630   [ +  +  +  - ]:        1008 :                 if (ExtractDestination(script, dest)) {
    3631         [ +  - ]:         786 :                     SetAddressBook(dest, label, AddressPurpose::RECEIVE);
    3632                 :             :                 }
    3633                 :        1008 :             }
    3634                 :             :         }
    3635                 :         374 :     }
    3636                 :             : 
    3637                 :             :     // Save the descriptor to DB
    3638                 :         983 :     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                 :         983 :     MarkDirty();
    3642                 :             : 
    3643                 :         983 :     return std::reference_wrapper(*spk_man);
    3644                 :             : }
    3645                 :             : 
    3646                 :          13 : util::Expected<CExtPubKey, WalletError> CWallet::AddHDKey(const std::optional<CExtKey>& key)
    3647                 :             : {
    3648                 :          13 :     LOCK(cs_wallet);
    3649                 :             : 
    3650   [ +  +  -  + ]:          13 :     if (key && !key->key.IsValid()) {
    3651                 :           0 :         return util::Unexpected{WalletError{
    3652                 :             :             WalletErrorCode::GenericError,
    3653         [ #  # ]:           0 :             _("Invalid HD key"),
    3654                 :           0 :         }};
    3655                 :             :     }
    3656                 :             : 
    3657   [ +  -  -  + ]:          13 :     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   [ +  -  +  + ]:          13 :     if (IsLocked()) {
    3665                 :           2 :         return util::Unexpected{WalletError{
    3666                 :             :             WalletErrorCode::UnlockNeeded,
    3667         [ +  - ]:           1 :             _("Wallet needs to be unlocked to perform this operation.")
    3668                 :           1 :         }};
    3669                 :             :     }
    3670                 :             : 
    3671         [ +  + ]:          12 :     CExtKey hdkey;
    3672         [ +  + ]:          12 :     if (key) {
    3673         [ +  - ]:           4 :         hdkey = *key;
    3674                 :             :     } else {
    3675                 :           8 :         CKey seed_key = GenerateRandomKey();
    3676   [ +  -  +  - ]:          16 :         hdkey.SetSeed(seed_key);
    3677                 :           8 :     }
    3678                 :             : 
    3679   [ +  -  +  - ]:          24 :     std::string desc_str = "unused(" + EncodeExtKey(hdkey) + ")";
    3680                 :          12 :     FlatSigningProvider keys;
    3681         [ -  + ]:          12 :     std::string parse_error;
    3682   [ -  +  +  - ]:          12 :     std::vector<std::unique_ptr<Descriptor>> descs = Parse(desc_str, keys, parse_error, /*require_checksum=*/false);
    3683         [ +  + ]:          12 :     if (descs.empty()) {
    3684                 :           2 :         return util::Unexpected{WalletError{
    3685                 :             :             WalletErrorCode::GenericError,
    3686         [ +  - ]:           1 :             _("Invalid HD key")
    3687                 :           1 :         }};
    3688                 :             :     }
    3689   [ +  -  +  -  :          11 :     WalletDescriptor w_desc(std::move(descs.at(0)), GetTime(), /*range_start=*/0, /*range_end=*/0, /*next_index=*/0);
             +  -  +  - ]
    3690                 :             : 
    3691   [ +  -  +  + ]:          11 :     if (GetDescriptorScriptPubKeyMan(w_desc) != nullptr) {
    3692                 :           2 :         return util::Unexpected{WalletError{
    3693                 :             :             WalletErrorCode::GenericError,
    3694         [ +  - ]:           1 :             _("HD key already exists")
    3695                 :           1 :         }};
    3696                 :             :     }
    3697                 :             : 
    3698   [ +  -  +  - ]:          10 :     auto spkm = AddWalletDescriptor(w_desc, keys, /*label=*/"", /*internal=*/false);
    3699         [ -  + ]:          10 :     if(!spkm) {
    3700         [ #  # ]:           0 :         return util::Unexpected{WalletError{
    3701                 :             :             WalletErrorCode::GenericError,
    3702                 :             :             util::ErrorString(spkm),
    3703                 :           0 :         }};
    3704                 :             :     }
    3705                 :             : 
    3706         [ +  - ]:          10 :     const DescriptorScriptPubKeyMan& desc_spkm = spkm->get();
    3707         [ +  - ]:          10 :     LOCK(desc_spkm.cs_desc_man);
    3708         [ +  - ]:          10 :     std::set<CPubKey> pubkeys;
    3709                 :          10 :     std::set<CExtPubKey> extpubs;
    3710   [ +  -  +  - ]:          10 :     desc_spkm.GetWalletDescriptor().descriptor->GetPubKeys(pubkeys, extpubs);
    3711                 :          10 :     Assume(pubkeys.empty());
    3712                 :          10 :     Assume(extpubs.size() == 1);
    3713                 :             : 
    3714                 :          10 :     return *extpubs.begin();
    3715         [ +  - ]:          45 : }
    3716                 :             : 
    3717                 :          49 : bool CWallet::MigrateToSQLite(bilingual_str& error)
    3718                 :             : {
    3719                 :          49 :     AssertLockHeld(cs_wallet);
    3720                 :             : 
    3721                 :          49 :     WalletLogPrintf("Migrating wallet storage database from BerkeleyDB to SQLite.\n");
    3722                 :             : 
    3723         [ -  + ]:          49 :     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                 :          49 :     std::unique_ptr<DatabaseBatch> batch = m_database->MakeBatch();
    3730         [ +  - ]:          49 :     std::unique_ptr<DatabaseCursor> cursor = batch->GetNewCursor();
    3731                 :          49 :     std::vector<std::pair<SerializeData, SerializeData>> records;
    3732         [ -  + ]:          49 :     if (!cursor) {
    3733         [ #  # ]:           0 :         error = _("Error: Unable to begin reading all records in the database");
    3734                 :           0 :         return false;
    3735                 :             :     }
    3736                 :        1990 :     DatabaseCursor::Status status = DatabaseCursor::Status::FAIL;
    3737                 :        3931 :     while (true) {
    3738                 :        1990 :         DataStream ss_key{};
    3739                 :        1990 :         DataStream ss_value{};
    3740         [ +  - ]:        1990 :         status = cursor->Next(ss_key, ss_value);
    3741         [ +  + ]:        1990 :         if (status != DatabaseCursor::Status::MORE) {
    3742                 :             :             break;
    3743                 :             :         }
    3744         [ +  - ]:        1941 :         SerializeData key(ss_key.begin(), ss_key.end());
    3745         [ +  - ]:        1941 :         SerializeData value(ss_value.begin(), ss_value.end());
    3746         [ +  - ]:        1941 :         records.emplace_back(key, value);
    3747                 :        1990 :     }
    3748         [ +  - ]:          49 :     cursor.reset();
    3749         [ +  - ]:          49 :     batch.reset();
    3750         [ -  + ]:          49 :     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   [ +  -  +  - ]:          49 :     fs::path db_path = fs::PathFromString(m_database->Filename());
    3757         [ +  - ]:          49 :     m_database->Close();
    3758         [ +  - ]:          49 :     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   [ +  -  +  -  :          98 :     const fs::path wallet_path = fsbridge::AbsPathJoin(GetWalletDir(), fs::PathFromString(m_name));
                   +  - ]
    3763                 :             : 
    3764                 :             :     // Make new DB
    3765         [ +  - ]:          49 :     DatabaseOptions opts;
    3766                 :          49 :     opts.require_create = true;
    3767                 :          49 :     opts.require_format = DatabaseFormat::SQLITE;
    3768                 :          49 :     DatabaseStatus db_status;
    3769         [ +  - ]:          49 :     std::unique_ptr<WalletDatabase> new_db = MakeDatabase(wallet_path, opts, db_status, error);
    3770         [ -  + ]:          49 :     assert(new_db); // This is to prevent doing anything further with this wallet. The original file was deleted, but a backup exists.
    3771         [ +  - ]:          49 :     m_database.reset();
    3772                 :          49 :     m_database = std::move(new_db);
    3773                 :             : 
    3774                 :             :     // Write existing records into the new DB
    3775         [ +  - ]:          98 :     batch = m_database->MakeBatch();
    3776         [ +  - ]:          49 :     bool began = batch->TxnBegin();
    3777         [ -  + ]:          49 :     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   [ -  +  +  + ]:        1990 :     for (const auto& [key, value] : records) {
    3779   [ -  +  -  +  :        1941 :         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         [ +  - ]:          49 :     bool committed = batch->TxnCommit();
    3787         [ -  + ]:          49 :     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                 :          49 :     return true;
    3789                 :         147 : }
    3790                 :             : 
    3791                 :          46 : std::optional<MigrationData> CWallet::GetDescriptorsForLegacy(bilingual_str& error) const
    3792                 :             : {
    3793                 :          46 :     AssertLockHeld(cs_wallet);
    3794                 :             : 
    3795                 :          46 :     LegacyDataSPKM* legacy_spkm = GetLegacyDataSPKM();
    3796         [ -  + ]:          46 :     if (!Assume(legacy_spkm)) {
    3797                 :             :         // This shouldn't happen
    3798         [ #  # ]:           0 :         error = Untranslated(STR_INTERNAL_BUG("Error: Legacy wallet data missing"));
    3799                 :           0 :         return std::nullopt;
    3800                 :             :     }
    3801                 :             : 
    3802                 :          46 :     std::optional<MigrationData> res = legacy_spkm->MigrateToDescriptor();
    3803         [ -  + ]:          46 :     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                 :          46 :     return res;
    3808                 :          46 : }
    3809                 :             : 
    3810                 :          42 : util::Result<void> CWallet::ApplyMigrationData(WalletBatch& local_wallet_batch, MigrationData& data)
    3811                 :             : {
    3812                 :          42 :     AssertLockHeld(cs_wallet);
    3813                 :             : 
    3814                 :          42 :     LegacyDataSPKM* legacy_spkm = GetLegacyDataSPKM();
    3815         [ -  + ]:          42 :     if (!Assume(legacy_spkm)) {
    3816                 :             :         // This shouldn't happen
    3817         [ #  # ]:           0 :         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   [ +  +  -  + ]:          42 :     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         [ +  - ]:          42 :     std::set<CTxDestination> not_migrated_dests;
    3825   [ +  -  +  +  :          46 :     for (const auto& script : legacy_spkm->GetNotMineScriptPubKeys()) {
                   +  - ]
    3826                 :           4 :         CTxDestination dest;
    3827   [ +  -  +  -  :           4 :         if (ExtractDestination(script, dest)) not_migrated_dests.emplace(dest);
                   +  - ]
    3828                 :           4 :     }
    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         [ +  + ]:          42 :     if (!data.desc_spkms.empty()) Assume(!m_cached_spks.empty());
    3833         [ +  + ]:          42 :     if (!data.watch_descs.empty()) Assume(!data.watchonly_wallet->m_cached_spks.empty());
    3834         [ +  + ]:          42 :     if (!data.solvable_descs.empty()) Assume(!data.solvable_wallet->m_cached_spks.empty());
    3835                 :             : 
    3836         [ +  + ]:         227 :     for (auto& desc_spkm : data.desc_spkms) {
    3837   [ +  -  -  + ]:         185 :         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         [ +  - ]:         185 :         uint256 id = desc_spkm->GetID();
    3841         [ +  - ]:         185 :         AddScriptPubKeyMan(id, std::move(desc_spkm));
    3842                 :             :     }
    3843                 :             : 
    3844                 :             :     // Remove the LegacyDataSPKM's records from disk
    3845   [ +  -  -  + ]:          42 :     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         [ +  - ]:          42 :     m_spk_managers.erase(legacy_spkm->GetID());
    3851                 :          42 :     m_external_spk_managers.clear();
    3852                 :          42 :     m_internal_spk_managers.clear();
    3853                 :             : 
    3854                 :             :     // Setup new descriptors (only if we are migrating any key material)
    3855         [ +  - ]:          42 :     SetWalletFlagWithDB(local_wallet_batch, WALLET_FLAG_DESCRIPTORS | WALLET_FLAG_LAST_HARDENED_XPUB_CACHED);
    3856   [ +  +  +  -  :          42 :     if (has_spendable_material && !IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
                   +  + ]
    3857                 :             :         // Use the existing master key if we have it
    3858         [ +  + ]:          37 :         if (data.master_key.key.IsValid()) {
    3859         [ +  - ]:          34 :             SetupDescriptorScriptPubKeyMans(local_wallet_batch, data.master_key);
    3860                 :             :         } else {
    3861                 :             :             // Setup with a new seed if we don't.
    3862         [ +  - ]:           3 :             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                 :          42 :     CBlockLocator best_block_locator;
    3869         [ +  - ]:          42 :     (void)local_wallet_batch.ReadBestBlock(best_block_locator);
    3870                 :             : 
    3871                 :             :     // Update m_txos to match the descriptors remaining in this wallet
    3872                 :          42 :     m_txos.clear();
    3873         [ +  - ]:          42 :     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                 :          42 :     std::vector<Txid> txids_to_delete;
    3878                 :          42 :     std::unique_ptr<WalletBatch> watchonly_batch;
    3879         [ +  + ]:          42 :     if (data.watchonly_wallet) {
    3880         [ +  - ]:          24 :         watchonly_batch = std::make_unique<WalletBatch>(data.watchonly_wallet->GetDatabase());
    3881   [ +  -  -  +  :          12 :         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         [ +  - ]:          12 :         LOCK(data.watchonly_wallet->cs_wallet);
    3884         [ +  - ]:          12 :         data.watchonly_wallet->nOrderPosNext = nOrderPosNext;
    3885         [ +  - ]:          12 :         watchonly_batch->WriteOrderPosNext(data.watchonly_wallet->nOrderPosNext);
    3886                 :             :         // Write the locator record. An empty locator is valid and triggers rescan on load.
    3887   [ +  -  -  + ]:          12 :         if (!watchonly_batch->WriteBestBlock(best_block_locator)) {
    3888   [ #  #  #  # ]:           0 :             return util::Error{_("Error: Unable to write watchonly wallet best block locator record")};
    3889                 :             :         }
    3890                 :          12 :     }
    3891                 :          42 :     std::unique_ptr<WalletBatch> solvables_batch;
    3892         [ +  + ]:          42 :     if (data.solvable_wallet) {
    3893         [ +  - ]:          12 :         solvables_batch = std::make_unique<WalletBatch>(data.solvable_wallet->GetDatabase());
    3894   [ +  -  -  +  :           6 :         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   [ +  -  -  + ]:           6 :         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   [ +  -  +  + ]:         519 :     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   [ +  -  +  -  :         489 :         bool is_mine = IsMine(*wtx->GetTx()) || IsFromMe(*wtx->GetTx());
          +  +  +  -  +  
          -  +  +  -  -  
                   -  - ]
    3904         [ +  + ]:         477 :         if (data.watchonly_wallet) {
    3905         [ +  - ]:          22 :             LOCK(data.watchonly_wallet->cs_wallet);
    3906   [ +  -  +  -  :          54 :             if (data.watchonly_wallet->IsMine(*wtx->GetTx()) || data.watchonly_wallet->IsFromMe(*wtx->GetTx())) {
          +  +  +  -  +  
          -  +  +  +  +  
             -  -  -  - ]
    3907                 :             :                 // Add to watchonly wallet
    3908         [ +  - ]:          14 :                 const Txid& hash = wtx->GetHash();
    3909                 :          14 :                 DataStream wtx_ser;
    3910         [ +  - ]:          14 :                 wtx_ser << *wtx;
    3911         [ +  - ]:          14 :                 CWalletTx copy_wtx(deserialize, wtx_ser, wtx->GetTxs());
    3912   [ +  -  -  + ]:          14 :                 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   [ +  -  +  - ]:          14 :                 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         [ +  + ]:          14 :                 if (!is_mine) {
    3918         [ +  - ]:          11 :                     txids_to_delete.push_back(hash);
    3919                 :          11 :                     continue;
    3920                 :             :                 }
    3921   [ -  -  +  - ]:          14 :             }
    3922                 :          22 :         }
    3923         [ -  + ]:         466 :         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         [ +  - ]:         466 :         local_wallet_batch.WriteTxMetadata(*wtx);
    3929                 :             :     }
    3930                 :             : 
    3931                 :             :     // Do the removes
    3932   [ -  +  +  + ]:          42 :     if (txids_to_delete.size() > 0) {
    3933   [ +  -  -  + ]:           6 :         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                 :           6 :         }
    3936                 :             :     }
    3937                 :             : 
    3938                 :             :     // Pair external wallets with their corresponding db handler
    3939                 :          42 :     std::vector<std::pair<std::shared_ptr<CWallet>, std::unique_ptr<WalletBatch>>> wallets_vec;
    3940   [ +  +  +  - ]:          42 :     if (data.watchonly_wallet) wallets_vec.emplace_back(data.watchonly_wallet, std::move(watchonly_batch));
    3941   [ +  +  +  - ]:          42 :     if (data.solvable_wallet) wallets_vec.emplace_back(data.solvable_wallet, std::move(solvables_batch));
    3942                 :             : 
    3943                 :             :     // Write address book entry to disk
    3944                 :         103 :     auto func_store_addr = [](WalletBatch& batch, const CTxDestination& dest, const CAddressBookData& entry) {
    3945                 :          61 :         auto address{EncodeDestination(dest)};
    3946   [ +  -  +  -  :         122 :         if (entry.purpose) batch.WritePurpose(address, PurposeToString(*entry.purpose));
                   +  - ]
    3947   [ +  -  +  - ]:          61 :         if (entry.label) batch.WriteName(address, *entry.label);
    3948   [ -  -  -  + ]:          61 :         for (const auto& [id, request] : entry.receive_requests) {
    3949         [ #  # ]:           0 :             batch.WriteAddressReceiveRequest(dest, id, request);
    3950                 :             :         }
    3951   [ +  +  +  - ]:          61 :         if (entry.previously_spent) batch.WriteAddressPreviouslySpent(dest, true);
    3952                 :          61 :     };
    3953                 :             : 
    3954                 :             :     // Check the address book data in the same way we did for transactions
    3955                 :          42 :     std::vector<CTxDestination> dests_to_delete;
    3956   [ +  -  +  + ]:         155 :     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   [ +  -  +  -  :         218 :         bool require_transfer = record.purpose == AddressPurpose::RECEIVE && !IsMine(dest);
                   +  + ]
    3960                 :         113 :         bool copied = false;
    3961   [ +  -  +  + ]:         151 :         for (auto& [wallet, batch] : wallets_vec) {
    3962         [ +  - ]:          62 :             LOCK(wallet->cs_wallet);
    3963   [ +  +  +  -  :          62 :             if (require_transfer && !wallet->IsMine(dest)) continue;
             +  +  +  - ]
    3964                 :             : 
    3965                 :             :             // Copy the entire address book entry
    3966   [ +  -  +  - ]:          61 :             wallet->m_address_book[dest] = record;
    3967         [ +  - ]:          61 :             func_store_addr(*batch, dest, record);
    3968                 :             : 
    3969                 :          61 :             copied = true;
    3970                 :             :             // Only delete 'receive' records that are no longer part of the original wallet
    3971         [ +  + ]:          61 :             if (require_transfer) {
    3972         [ +  - ]:          24 :                 dests_to_delete.push_back(dest);
    3973         [ +  - ]:          24 :                 break;
    3974                 :             :             }
    3975                 :          62 :         }
    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         [ +  + ]:         113 :         if (require_transfer && !copied) {
    3981                 :             : 
    3982                 :             :             // Skip invalid/non-watched scripts that will not be migrated
    3983         [ +  - ]:           4 :             if (not_migrated_dests.contains(dest)) {
    3984         [ +  - ]:           4 :                 dests_to_delete.push_back(dest);
    3985                 :           4 :                 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   [ +  -  +  + ]:          60 :     for (auto& [wallet, batch] : wallets_vec) {
    3994   [ +  -  -  + ]:          18 :         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   [ -  +  +  + ]:          42 :     if (dests_to_delete.size() > 0) {
    4001         [ +  + ]:          40 :         for (const auto& dest : dests_to_delete) {
    4002   [ +  -  -  + ]:          28 :             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         [ +  + ]:          42 :     if (!has_spendable_material) {
    4012   [ -  +  -  - ]:           3 :         if (!m_address_book.empty()) return util::Error{_("Error: Not all address book records were migrated")};
    4013   [ -  +  -  - ]:           3 :         if (!mapWallet.empty()) return util::Error{_("Error: Not all transaction records were migrated")};
    4014                 :             :     }
    4015                 :             : 
    4016                 :          42 :     return {}; // all good
    4017                 :          84 : }
    4018                 :             : 
    4019                 :      146817 : bool CWallet::CanGrindR() const
    4020                 :             : {
    4021                 :      146817 :     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                 :          29 : static std::string MigrationPrefixName(CWallet& wallet)
    4028                 :             : {
    4029         [ +  + ]:          29 :     const std::string& name{wallet.GetName()};
    4030         [ +  + ]:          29 :     return name.empty() ? "default_wallet" : name;
    4031                 :             : }
    4032                 :             : 
    4033                 :          46 : 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                 :          46 :     AssertLockHeld(wallet.cs_wallet);
    4036                 :             : 
    4037                 :             :     // Get all of the descriptors from the legacy wallet
    4038                 :          46 :     std::optional<MigrationData> data = wallet.GetDescriptorsForLegacy(error);
    4039         [ +  - ]:          46 :     if (data == std::nullopt) return false;
    4040                 :             : 
    4041                 :             :     // Create the watchonly and solvable wallets if necessary
    4042   [ -  +  +  +  :          46 :     if (data->watch_descs.size() > 0 || data->solvable_descs.size() > 0) {
             -  +  +  + ]
    4043         [ +  - ]:          17 :         DatabaseOptions options;
    4044                 :          17 :         options.require_existing = false;
    4045                 :          17 :         options.require_create = true;
    4046                 :          17 :         options.require_format = DatabaseFormat::SQLITE;
    4047                 :             : 
    4048         [ +  - ]:          17 :         WalletContext empty_context;
    4049                 :          17 :         empty_context.args = context.args;
    4050                 :             : 
    4051                 :             :         // Make the wallets
    4052                 :          17 :         options.create_flags = WALLET_FLAG_DISABLE_PRIVATE_KEYS | WALLET_FLAG_BLANK_WALLET | WALLET_FLAG_DESCRIPTORS;
    4053   [ +  -  +  + ]:          17 :         if (wallet.IsWalletFlagSet(WALLET_FLAG_AVOID_REUSE)) {
    4054                 :           1 :             options.create_flags |= WALLET_FLAG_AVOID_REUSE;
    4055                 :             :         }
    4056   [ +  -  +  + ]:          17 :         if (wallet.IsWalletFlagSet(WALLET_FLAG_KEY_ORIGIN_METADATA)) {
    4057                 :          13 :             options.create_flags |= WALLET_FLAG_KEY_ORIGIN_METADATA;
    4058                 :             :         }
    4059   [ -  +  +  + ]:          17 :         if (data->watch_descs.size() > 0) {
    4060         [ +  - ]:          16 :             wallet.WalletLogPrintf("Making a new watchonly wallet containing the watched scripts\n");
    4061                 :             : 
    4062                 :          16 :             DatabaseStatus status;
    4063                 :          16 :             std::vector<bilingual_str> warnings;
    4064         [ +  - ]:          32 :             std::string wallet_name = MigrationPrefixName(wallet) + "_watchonly";
    4065         [ +  - ]:          16 :             std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(wallet_name, options, status, error);
    4066         [ +  + ]:          16 :             if (!database) {
    4067         [ +  - ]:           3 :                 error = strprintf(_("Wallet file creation failed: %s"), error);
    4068                 :           3 :                 return false;
    4069                 :             :             }
    4070                 :             : 
    4071   [ +  -  -  + ]:          13 :             data->watchonly_wallet = CWallet::CreateNew(empty_context, wallet_name, std::move(database), options.create_flags, /*born_encrypted=*/false, error, warnings);
    4072         [ -  + ]:          13 :             if (!data->watchonly_wallet) {
    4073         [ #  # ]:           0 :                 error = _("Error: Failed to create new watchonly wallet");
    4074                 :           0 :                 return false;
    4075                 :             :             }
    4076                 :          13 :             res.watchonly_wallet = data->watchonly_wallet;
    4077         [ +  - ]:          13 :             LOCK(data->watchonly_wallet->cs_wallet);
    4078                 :             : 
    4079                 :             :             // Parse the descriptors and add them to the new wallet
    4080         [ +  + ]:          50 :             for (const auto& [desc_str, creation_time] : data->watch_descs) {
    4081                 :             :                 // Parse the descriptor
    4082                 :          37 :                 FlatSigningProvider keys;
    4083         [ -  + ]:          37 :                 std::string parse_err;
    4084   [ -  +  +  - ]:          37 :                 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   [ -  +  -  + ]:          37 :                 assert(descs.size() == 1);
    4087   [ +  -  +  -  :          37 :                 assert(!descs.at(0)->IsRange());
                   -  + ]
    4088                 :             : 
    4089                 :             :                 // Add to the wallet
    4090   [ +  -  +  -  :          37 :                 WalletDescriptor w_desc(std::move(descs.at(0)), creation_time, 0, 0, 0);
                   +  - ]
    4091   [ +  -  +  -  :          74 :                 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                 :          37 :             }
    4095                 :             : 
    4096                 :             :             // Add the wallet to settings
    4097         [ +  - ]:          13 :             UpdateWalletSetting(*context.chain, wallet_name, load_on_startup, warnings);
    4098                 :          16 :         }
    4099   [ -  +  +  + ]:          14 :         if (data->solvable_descs.size() > 0) {
    4100         [ +  - ]:           7 :             wallet.WalletLogPrintf("Making a new watchonly wallet containing the unwatched solvable scripts\n");
    4101                 :             : 
    4102                 :           7 :             DatabaseStatus status;
    4103                 :           7 :             std::vector<bilingual_str> warnings;
    4104         [ +  - ]:          14 :             std::string wallet_name = MigrationPrefixName(wallet) + "_solvables";
    4105         [ +  - ]:           7 :             std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(wallet_name, options, status, error);
    4106         [ +  + ]:           7 :             if (!database) {
    4107         [ +  - ]:           1 :                 error = strprintf(_("Wallet file creation failed: %s"), error);
    4108                 :           1 :                 return false;
    4109                 :             :             }
    4110                 :             : 
    4111   [ +  -  -  + ]:           6 :             data->solvable_wallet = CWallet::CreateNew(empty_context, wallet_name, std::move(database), options.create_flags, /*born_encrypted=*/false, error, warnings);
    4112         [ -  + ]:           6 :             if (!data->solvable_wallet) {
    4113         [ #  # ]:           0 :                 error = _("Error: Failed to create new watchonly wallet");
    4114                 :           0 :                 return false;
    4115                 :             :             }
    4116                 :           6 :             res.solvables_wallet = data->solvable_wallet;
    4117         [ +  - ]:           6 :             LOCK(data->solvable_wallet->cs_wallet);
    4118                 :             : 
    4119                 :             :             // Parse the descriptors and add them to the new wallet
    4120         [ +  + ]:          21 :             for (const auto& [desc_str, creation_time] : data->solvable_descs) {
    4121                 :             :                 // Parse the descriptor
    4122                 :          15 :                 FlatSigningProvider keys;
    4123         [ -  + ]:          15 :                 std::string parse_err;
    4124   [ -  +  +  - ]:          15 :                 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   [ -  +  -  + ]:          15 :                 assert(descs.size() == 1);
    4127   [ +  -  +  -  :          15 :                 assert(!descs.at(0)->IsRange());
                   -  + ]
    4128                 :             : 
    4129                 :             :                 // Add to the wallet
    4130   [ +  -  +  -  :          15 :                 WalletDescriptor w_desc(std::move(descs.at(0)), creation_time, 0, 0, 0);
                   +  - ]
    4131   [ +  -  +  -  :          30 :                 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                 :          15 :             }
    4135                 :             : 
    4136                 :             :             // Add the wallet to settings
    4137         [ +  - ]:           6 :             UpdateWalletSetting(*context.chain, wallet_name, load_on_startup, warnings);
    4138                 :           7 :         }
    4139                 :          17 :     }
    4140                 :             : 
    4141                 :             :     // Add the descriptors to the wallet, remove the LegacyDataSPKM, and clean up transactions and address book data
    4142   [ +  -  +  - ]:          42 :     return RunWithinTxn(wallet.GetDatabase(), /*process_desc=*/"apply migration process", [&](WalletBatch& batch) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet){
    4143         [ -  + ]:          42 :         if (auto res_migration = wallet.ApplyMigrationData(batch, *data); !res_migration) {
    4144         [ #  # ]:           0 :             error = util::ErrorString(res_migration);
    4145                 :           0 :             return false;
    4146                 :           0 :         }
    4147                 :          42 :         wallet.WalletLogPrintf("Wallet migration complete.\n");
    4148                 :          42 :         return true;
    4149                 :             :     });
    4150                 :          46 : }
    4151                 :             : 
    4152                 :          55 : util::Result<MigrationResult> MigrateLegacyToDescriptor(const std::string& wallet_name, const SecureString& passphrase, WalletContext& context, bool load_wallet)
    4153                 :             : {
    4154                 :          55 :     std::vector<bilingual_str> warnings;
    4155         [ +  - ]:          55 :     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   [ +  -  +  + ]:          55 :     if (auto wallet = GetWallet(context, wallet_name)) {
    4159   [ +  -  -  + ]:           1 :         assert(wallet->IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
    4160         [ +  - ]:           3 :         return util::Error{_("Error: This wallet is already a descriptor wallet")};
    4161                 :             :     } else {
    4162                 :             :         // Check if the wallet is BDB
    4163   [ +  -  -  + ]:         106 :         const auto& wallet_path = GetWalletPath(wallet_name);
    4164         [ -  + ]:          54 :         if (!wallet_path) {
    4165         [ #  # ]:           0 :             return util::Error{util::ErrorString(wallet_path)};
    4166                 :             :         }
    4167   [ +  -  +  + ]:          54 :         if (!fs::exists(*wallet_path)) {
    4168         [ +  - ]:           3 :             return util::Error{_("Error: Wallet does not exist")};
    4169                 :             :         }
    4170   [ +  -  +  -  :         106 :         if (!IsBDBFile(BDBDataFile(*wallet_path))) {
                   +  + ]
    4171         [ +  - ]:           3 :             return util::Error{_("Error: This wallet is already a descriptor wallet")};
    4172                 :             :         }
    4173                 :           3 :     }
    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         [ +  - ]:          52 :     WalletContext empty_context;
    4178                 :          52 :     empty_context.args = context.args;
    4179         [ +  - ]:          52 :     DatabaseOptions options;
    4180                 :          52 :     options.require_existing = true;
    4181                 :          52 :     options.require_format = DatabaseFormat::BERKELEY_RO;
    4182                 :          52 :     DatabaseStatus status;
    4183         [ +  - ]:          52 :     std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(wallet_name, options, status, error);
    4184         [ -  + ]:          52 :     if (!database) {
    4185   [ #  #  #  #  :           0 :         return util::Error{Untranslated("Wallet file verification failed.") + Untranslated(" ") + error};
          #  #  #  #  #  
                      # ]
    4186                 :             :     }
    4187                 :             : 
    4188                 :             :     // Make the local wallet
    4189         [ +  - ]:          52 :     std::shared_ptr<CWallet> local_wallet = CWallet::LoadExisting(empty_context, wallet_name, std::move(database), error, warnings);
    4190         [ -  + ]:          52 :     if (!local_wallet) {
    4191   [ #  #  #  #  :           0 :         return util::Error{Untranslated("Wallet loading failed.") + Untranslated(" ") + error};
          #  #  #  #  #  
                      # ]
    4192                 :             :     }
    4193                 :             : 
    4194         [ +  - ]:         104 :     return MigrateLegacyToDescriptor(std::move(local_wallet), passphrase, context, load_wallet);
    4195                 :         107 : }
    4196                 :             : 
    4197                 :          52 : util::Result<MigrationResult> MigrateLegacyToDescriptor(std::shared_ptr<CWallet> local_wallet, const SecureString& passphrase, WalletContext& context, bool load_wallet)
    4198                 :             : {
    4199                 :          52 :     MigrationResult res;
    4200         [ -  + ]:          52 :     bilingual_str error;
    4201                 :          52 :     std::vector<bilingual_str> warnings;
    4202                 :             : 
    4203         [ -  + ]:          52 :     DatabaseOptions options;
    4204                 :          52 :     options.require_existing = true;
    4205                 :          52 :     DatabaseStatus status;
    4206                 :             : 
    4207         [ -  + ]:          52 :     const std::string wallet_name = local_wallet->GetName();
    4208                 :             : 
    4209                 :             :     // Before anything else, check if there is something to migrate.
    4210   [ +  -  -  + ]:          52 :     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         [ +  + ]:          52 :     const std::string backup_prefix = wallet_name.empty() ? MigrationPrefixName(*local_wallet) : [&] {
    4221                 :             :         // fs::weakly_canonical resolves relative specifiers and remove trailing slashes.
    4222   [ +  -  +  - ]:         184 :         const auto legacy_wallet_path = fs::weakly_canonical(GetWalletDir() / fs::PathFromString(wallet_name));
    4223   [ +  -  -  + ]:         230 :         return fs::PathToString(legacy_wallet_path.filename());
    4224   [ +  -  +  - ]:          98 :     }();
    4225                 :             : 
    4226   [ +  -  +  -  :          52 :     fs::path backup_filename = fs::PathFromString(strprintf("%s_%d.legacy.bak", backup_prefix, GetTime()));
                   +  - ]
    4227   [ +  -  +  - ]:          52 :     fs::path backup_path = fsbridge::AbsPathJoin(GetWalletDir(), backup_filename);
    4228   [ -  +  +  -  :         104 :     if (!local_wallet->BackupWallet(fs::PathToString(backup_path))) {
                   -  + ]
    4229         [ #  # ]:           0 :         return util::Error{_("Error: Unable to make a backup of your wallet")};
    4230                 :             :     }
    4231         [ +  - ]:          52 :     res.backup_path = backup_path;
    4232                 :             : 
    4233                 :          52 :     bool success = false;
    4234                 :             : 
    4235                 :             :     // Unlock the wallet if needed
    4236   [ +  -  +  + ]:          52 :     if (local_wallet->IsLocked()) {
    4237   [ +  -  +  +  :          15 :         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                 :          49 :     bool empty_local_wallet = false;
    4247                 :             : 
    4248                 :          49 :     {
    4249         [ +  - ]:          49 :         LOCK(local_wallet->cs_wallet);
    4250                 :             :         // First change to using SQLite
    4251   [ +  -  -  +  :          49 :         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   [ +  -  +  + ]:          49 :         if (HasLegacyRecords(*local_wallet)) {
    4255         [ +  - ]:          46 :             success = DoMigration(*local_wallet, context, error, res, load_wallet);
    4256                 :             :             // No scripts mean empty wallet after migration
    4257         [ +  - ]:          46 :             empty_local_wallet = local_wallet->GetAllScriptPubKeyMans().empty();
    4258                 :             :         } else {
    4259                 :             :             // Make sure that descriptors flag is actually set
    4260         [ +  - ]:           3 :             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         [ +  + ]:          49 :     std::set<fs::path> wallet_files_to_remove;
    4270                 :          49 :     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                 :         114 :     auto track_for_cleanup = [&](const CWallet& wallet) {
    4275                 :          65 :         const auto files = wallet.GetDatabase().Files();
    4276         [ +  - ]:          65 :         wallet_files_to_remove.insert(files.begin(), files.end());
    4277         [ +  + ]:          65 :         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   [ +  -  +  -  :          95 :             wallet_empty_dirs_to_remove.insert(fs::PathFromString(wallet.GetDatabase().Filename()).parent_path());
             +  -  +  - ]
    4283                 :             :         }
    4284                 :          65 :     };
    4285                 :             : 
    4286                 :             : 
    4287         [ +  + ]:          49 :     if (success) {
    4288         [ +  + ]:          45 :         Assume(!res.wallet); // We will set it here.
    4289                 :             :         // Check if the local wallet is empty after migration
    4290         [ +  + ]:          45 :         if (empty_local_wallet) {
    4291                 :             :             // This wallet has no records. We can safely remove it.
    4292         [ +  - ]:           3 :             std::vector<fs::path> paths_to_remove = local_wallet->GetDatabase().Files();
    4293                 :           3 :             local_wallet.reset();
    4294   [ +  -  +  + ]:           9 :             for (const auto& path_to_remove : paths_to_remove) fs::remove(path_to_remove);
    4295                 :           3 :         }
    4296                 :             : 
    4297         [ +  + ]:          45 :         if (load_wallet) {
    4298         [ +  - ]:          41 :             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         [ +  - ]:           4 :             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                 :          45 :         bool main_wallet_set{false};
    4306         [ +  + ]:         174 :         for (std::shared_ptr<CWallet>* wallet_ptr : {&local_wallet, &res.watchonly_wallet, &res.solvables_wallet}) {
    4307         [ +  + ]:         131 :             if (success && *wallet_ptr) {
    4308                 :          60 :                 std::shared_ptr<CWallet>& wallet = *wallet_ptr;
    4309                 :             :                 // Track db path
    4310         [ +  - ]:          60 :                 track_for_cleanup(*wallet);
    4311         [ -  + ]:          60 :                 assert(wallet.use_count() == 1);
    4312         [ -  + ]:          60 :                 std::string wallet_name = wallet->GetName();
    4313                 :          60 :                 wallet.reset();
    4314         [ +  + ]:          60 :                 if (load_wallet) {
    4315   [ +  -  -  + ]:         108 :                     wallet = LoadWallet(context, wallet_name, /*load_on_start=*/std::nullopt, options, status, error, warnings);
    4316         [ +  + ]:          54 :                     if (!wallet) {
    4317         [ +  - ]:           2 :                         LogError("Failed to load wallet '%s' after migration. Rolling back migration to preserve consistency. "
    4318                 :             :                                  "Error cause: %s\n", wallet_name, error.original);
    4319                 :           2 :                         success = false;
    4320                 :           2 :                         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         [ +  + ]:          58 :                 if (!main_wallet_set) {
    4326         [ +  - ]:          43 :                     res.wallet_name = wallet_name;
    4327         [ +  + ]:          43 :                     if (load_wallet) res.wallet = std::move(wallet);
    4328                 :             :                     main_wallet_set = true;
    4329                 :             :                 }
    4330         [ +  + ]:          58 :                 if (wallet_ptr == &res.watchonly_wallet) {
    4331         [ +  - ]:          12 :                     res.watchonly_wallet_name = wallet_name;
    4332         [ +  + ]:          46 :                 } else if (wallet_ptr == &res.solvables_wallet) {
    4333         [ +  - ]:           6 :                     res.solvables_wallet_name = wallet_name;
    4334                 :             :                 }
    4335                 :          58 :             }
    4336                 :             :         }
    4337                 :             :     }
    4338                 :           2 :     if (!success) {
    4339                 :             :         // Make list of wallets to cleanup
    4340                 :           6 :         std::vector<std::shared_ptr<CWallet>> created_wallets;
    4341   [ +  +  +  - ]:           6 :         if (local_wallet) created_wallets.push_back(std::move(local_wallet));
    4342   [ +  +  +  - ]:           6 :         if (res.watchonly_wallet) created_wallets.push_back(std::move(res.watchonly_wallet));
    4343   [ -  +  -  - ]:           6 :         if (res.solvables_wallet) created_wallets.push_back(std::move(res.solvables_wallet));
    4344                 :             : 
    4345                 :             :         // Get the directories to remove after unloading
    4346         [ +  + ]:          11 :         for (std::shared_ptr<CWallet>& wallet : created_wallets) {
    4347         [ +  - ]:           5 :             track_for_cleanup(*wallet);
    4348                 :             :         }
    4349                 :             : 
    4350                 :             :         // Unload the wallets
    4351         [ +  + ]:          11 :         for (std::shared_ptr<CWallet>& w : created_wallets) {
    4352         [ -  + ]:           5 :             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         [ -  + ]:           5 :                 assert(w.use_count() == 1);
    4362                 :           5 :                 w.reset();
    4363                 :             :             }
    4364                 :             :         }
    4365                 :             : 
    4366                 :             :         // First, delete the db files we have created throughout this process and nothing else
    4367         [ +  + ]:          20 :         for (const fs::path& file : wallet_files_to_remove) {
    4368         [ +  - ]:          14 :             fs::remove(file);
    4369                 :             :         }
    4370                 :             : 
    4371                 :             :         // Second, delete the created wallet directories and nothing else. They must be empty at this point.
    4372         [ +  + ]:           7 :         for (const fs::path& dir : wallet_empty_dirs_to_remove) {
    4373   [ +  -  +  - ]:           1 :             Assume(fs::is_empty(dir));
    4374         [ +  - ]:           1 :             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         [ +  - ]:           6 :         bilingual_str restore_error;
    4380         [ +  - ]:           6 :         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         [ -  + ]:           6 :         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         [ -  + ]:           6 :         assert(!ptr_wallet);
    4387                 :             : 
    4388         [ +  - ]:          18 :         return util::Error{error};
    4389                 :          12 :     }
    4390                 :          43 :     return res;
    4391                 :         257 : }
    4392                 :             : 
    4393                 :       80550 : void CWallet::CacheNewScriptPubKeys(const std::set<CScript>& spks, ScriptPubKeyMan* spkm)
    4394                 :             : {
    4395         [ +  + ]:      631514 :     for (const auto& script : spks) {
    4396                 :      550964 :         m_cached_spks[script].push_back(spkm);
    4397                 :             :     }
    4398                 :       80550 : }
    4399                 :             : 
    4400                 :       80550 : void CWallet::TopUpCallback(const std::set<CScript>& spks, ScriptPubKeyMan* spkm)
    4401                 :             : {
    4402                 :             :     // Update scriptPubKey cache
    4403                 :       80550 :     CacheNewScriptPubKeys(spks, spkm);
    4404                 :       80550 : }
    4405                 :             : 
    4406                 :          82 : CWallet::HDPubKeyMap CWallet::GetHDPubKeys(HDKeyFilter filter) const
    4407                 :             : {
    4408                 :          82 :     AssertLockHeld(cs_wallet);
    4409                 :             : 
    4410         [ -  + ]:          82 :     Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
    4411                 :             : 
    4412         [ +  + ]:          82 :     HDPubKeyMap xpubs;
    4413   [ +  +  +  -  :         515 :     for (const auto& spkm : filter == HDKeyFilter::Active ? GetActiveScriptPubKeyMans() : GetAllScriptPubKeyMans()) {
             +  -  +  + ]
    4414   [ +  -  -  + ]:         433 :         auto* desc_spkm = Assert(dynamic_cast<DescriptorScriptPubKeyMan*>(spkm));
    4415         [ +  - ]:         433 :         LOCK(desc_spkm->cs_desc_man);
    4416         [ +  - ]:         433 :         WalletDescriptor w_desc = desc_spkm->GetWalletDescriptor();
    4417   [ +  +  +  -  :         433 :         if (filter == HDKeyFilter::UnusedKey && w_desc.descriptor->HasScripts()) continue;
                   +  + ]
    4418                 :             : 
    4419         [ +  - ]:         375 :         std::set<CPubKey> desc_pubkeys;
    4420                 :         375 :         std::set<CExtPubKey> desc_xpubs;
    4421         [ +  - ]:         375 :         w_desc.descriptor->GetPubKeys(desc_pubkeys, desc_xpubs);
    4422         [ +  + ]:         743 :         for (const CExtPubKey& xpub : desc_xpubs) {
    4423   [ +  -  +  - ]:         368 :             xpubs[xpub].insert(desc_spkm);
    4424                 :             :         }
    4425   [ +  -  +  - ]:         866 :     }
    4426                 :          82 :     return xpubs;
    4427                 :           0 : }
    4428                 :             : 
    4429                 :          41 : std::optional<CKey> CWallet::GetKey(const CKeyID& keyid) const
    4430                 :             : {
    4431         [ -  + ]:          41 :     Assert(IsWalletFlagSet(WALLET_FLAG_DESCRIPTORS));
    4432                 :             : 
    4433         [ +  + ]:          51 :     for (const auto& spkm : GetAllScriptPubKeyMans()) {
    4434         [ +  - ]:          41 :         const DescriptorScriptPubKeyMan* desc_spkm = dynamic_cast<DescriptorScriptPubKeyMan*>(spkm);
    4435         [ -  + ]:          41 :         assert(desc_spkm);
    4436         [ +  - ]:          41 :         LOCK(desc_spkm->cs_desc_man);
    4437   [ +  -  +  + ]:          41 :         if (std::optional<CKey> key = desc_spkm->GetKey(keyid)) {
    4438         [ +  - ]:          31 :             return key;
    4439         [ +  - ]:          10 :         }
    4440                 :          41 :     }
    4441                 :          10 :     return std::nullopt;
    4442                 :             : }
    4443                 :             : 
    4444                 :          18 : std::optional<CExtKey> CWallet::GetExtKey(const CExtPubKey& xpub) const
    4445                 :             : {
    4446         [ +  - ]:          18 :     if (std::optional<CKey> key = GetKey(xpub.pubkey.GetID())) {
    4447         [ +  - ]:          18 :         return CExtKey{xpub, *key};
    4448                 :          18 :     }
    4449                 :           0 :     return std::nullopt;
    4450                 :             : }
    4451                 :             : 
    4452                 :       16949 : void CWallet::WriteBestBlock() const
    4453                 :             : {
    4454                 :       16949 :     AssertLockHeld(cs_wallet);
    4455                 :             : 
    4456         [ +  + ]:       33898 :     if (!m_last_block_processed.IsNull()) {
    4457                 :       16889 :         CBlockLocator loc;
    4458         [ +  - ]:       16889 :         chain().findBlock(m_last_block_processed, FoundBlock().locator(loc));
    4459                 :             : 
    4460         [ +  - ]:       16889 :         if (!loc.IsNull()) {
    4461         [ +  - ]:       16889 :             WalletBatch batch(GetDatabase());
    4462         [ +  - ]:       16889 :             batch.WriteBestBlock(loc);
    4463                 :       16889 :         }
    4464                 :       16889 :     }
    4465                 :       16949 : }
    4466                 :             : 
    4467                 :       42623 : void CWallet::RefreshTXOsFromTx(const CWalletTx& wtx)
    4468                 :             : {
    4469                 :       42623 :     AssertLockHeld(cs_wallet);
    4470   [ -  +  +  -  :      397296 :     for (uint32_t i = 0; i < wtx.GetTx()->vout.size(); ++i) {
                   +  + ]
    4471   [ +  -  +  - ]:      156025 :         const CTxOut& txout = wtx.GetTx()->vout.at(i);
    4472         [ +  + ]:      156025 :         if (!IsMine(txout)) continue;
    4473                 :       62238 :         COutPoint outpoint(wtx.GetHash(), i);
    4474         [ +  + ]:       62238 :         if (m_txos.contains(outpoint)) {
    4475                 :             :         } else {
    4476                 :       46916 :             m_txos.emplace(outpoint, WalletTXO{wtx, txout});
    4477                 :             :         }
    4478                 :             :     }
    4479                 :       42623 : }
    4480                 :             : 
    4481                 :         737 : void CWallet::RefreshAllTXOs()
    4482                 :             : {
    4483                 :         737 :     AssertLockHeld(cs_wallet);
    4484         [ +  + ]:        4418 :     for (const auto& [_, wtx] : mapWallet) {
    4485                 :        3681 :         RefreshTXOsFromTx(wtx);
    4486                 :             :     }
    4487                 :         737 : }
    4488                 :             : 
    4489                 :      230372 : std::optional<WalletTXO> CWallet::GetTXO(const COutPoint& outpoint) const
    4490                 :             : {
    4491                 :      230372 :     AssertLockHeld(cs_wallet);
    4492                 :      230372 :     const auto& it = m_txos.find(outpoint);
    4493         [ +  + ]:      230372 :     if (it == m_txos.end()) {
    4494                 :      219736 :         return std::nullopt;
    4495                 :             :     }
    4496                 :       10636 :     return it->second;
    4497                 :             : }
    4498                 :             : 
    4499                 :         995 : void CWallet::DisconnectChainNotifications()
    4500                 :             : {
    4501         [ +  + ]:         995 :     if (m_chain_notifications_handler) {
    4502                 :         994 :         m_chain_notifications_handler->disconnect();
    4503                 :         994 :         chain().waitForNotifications();
    4504         [ +  - ]:         994 :         m_chain_notifications_handler.reset();
    4505                 :             :     }
    4506                 :         995 : }
    4507                 :             : 
    4508                 :             : } // namespace wallet
        

Generated by: LCOV version 2.0-1