LCOV - code coverage report
Current view: top level - src/wallet - load.cpp (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 0.0 % 117 0
Test Date: 2024-07-04 04:02:30 Functions: 0.0 % 8 0
Branches: 0.0 % 244 0

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2009-2010 Satoshi Nakamoto
       2                 :             : // Copyright (c) 2009-2022 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/load.h>
       7                 :             : 
       8                 :             : #include <common/args.h>
       9                 :             : #include <interfaces/chain.h>
      10                 :             : #include <scheduler.h>
      11                 :             : #include <util/check.h>
      12                 :             : #include <util/fs.h>
      13                 :             : #include <util/string.h>
      14                 :             : #include <util/translation.h>
      15                 :             : #include <wallet/context.h>
      16                 :             : #include <wallet/spend.h>
      17                 :             : #include <wallet/wallet.h>
      18                 :             : #include <wallet/walletdb.h>
      19                 :             : 
      20                 :             : #include <univalue.h>
      21                 :             : 
      22                 :             : #include <system_error>
      23                 :             : 
      24                 :             : using util::Join;
      25                 :             : 
      26                 :             : namespace wallet {
      27                 :           0 : bool VerifyWallets(WalletContext& context)
      28                 :             : {
      29                 :           0 :     interfaces::Chain& chain = *context.chain;
      30                 :           0 :     ArgsManager& args = *Assert(context.args);
      31                 :             : 
      32   [ #  #  #  #  :           0 :     if (args.IsArgSet("-walletdir")) {
                   #  # ]
      33   [ #  #  #  # ]:           0 :         const fs::path wallet_dir{args.GetPathArg("-walletdir")};
      34                 :           0 :         std::error_code error;
      35                 :             :         // The canonical path cleans the path, preventing >1 Berkeley environment instances for the same directory
      36                 :             :         // It also lets the fs::exists and fs::is_directory checks below pass on windows, since they return false
      37                 :             :         // if a path has trailing slashes, and it strips trailing slashes.
      38   [ #  #  #  # ]:           0 :         fs::path canonical_wallet_dir = fs::canonical(wallet_dir, error);
      39   [ #  #  #  #  :           0 :         if (error || !fs::exists(canonical_wallet_dir)) {
                   #  # ]
      40   [ #  #  #  #  :           0 :             chain.initError(strprintf(_("Specified -walletdir \"%s\" does not exist"), fs::PathToString(wallet_dir)));
             #  #  #  # ]
      41                 :           0 :             return false;
      42   [ #  #  #  # ]:           0 :         } else if (!fs::is_directory(canonical_wallet_dir)) {
      43   [ #  #  #  #  :           0 :             chain.initError(strprintf(_("Specified -walletdir \"%s\" is not a directory"), fs::PathToString(wallet_dir)));
             #  #  #  # ]
      44                 :           0 :             return false;
      45                 :             :         // The canonical path transforms relative paths into absolute ones, so we check the non-canonical version
      46         [ #  # ]:           0 :         } else if (!wallet_dir.is_absolute()) {
      47   [ #  #  #  #  :           0 :             chain.initError(strprintf(_("Specified -walletdir \"%s\" is a relative path"), fs::PathToString(wallet_dir)));
             #  #  #  # ]
      48                 :           0 :             return false;
      49                 :             :         }
      50   [ #  #  #  #  :           0 :         args.ForceSetArg("-walletdir", fs::PathToString(canonical_wallet_dir));
                   #  # ]
      51         [ #  # ]:           0 :     }
      52                 :             : 
      53   [ #  #  #  #  :           0 :     LogPrintf("Using wallet directory %s\n", fs::PathToString(GetWalletDir()));
          #  #  #  #  #  
                      # ]
      54                 :             : 
      55         [ #  # ]:           0 :     chain.initMessage(_("Verifying wallet(s)…").translated);
      56                 :             : 
      57                 :             :     // For backwards compatibility if an unnamed top level wallet exists in the
      58                 :             :     // wallets directory, include it in the default list of wallets to load.
      59   [ #  #  #  #  :           0 :     if (!args.IsArgSet("wallet")) {
                   #  # ]
      60                 :           0 :         DatabaseOptions options;
      61                 :           0 :         DatabaseStatus status;
      62         [ #  # ]:           0 :         ReadDatabaseArgs(args, options);
      63                 :           0 :         bilingual_str error_string;
      64                 :           0 :         options.require_existing = true;
      65                 :           0 :         options.verify = false;
      66   [ #  #  #  #  :           0 :         if (MakeWalletDatabase("", options, status, error_string)) {
                   #  # ]
      67         [ #  # ]:           0 :             common::SettingsValue wallets(common::SettingsValue::VARR);
      68   [ #  #  #  # ]:           0 :             wallets.push_back(""); // Default wallet name is ""
      69                 :             :             // Pass write=false because no need to write file and probably
      70                 :             :             // better not to. If unnamed wallet needs to be added next startup
      71                 :             :             // and the setting is empty, this code will just run again.
      72   [ #  #  #  # ]:           0 :             chain.updateRwSetting("wallet", wallets, /* write= */ false);
      73                 :           0 :         }
      74                 :           0 :     }
      75                 :             : 
      76                 :             :     // Keep track of each wallet absolute path to detect duplicates.
      77                 :           0 :     std::set<fs::path> wallet_paths;
      78                 :             : 
      79   [ #  #  #  #  :           0 :     for (const auto& wallet : chain.getSettingsList("wallet")) {
             #  #  #  # ]
      80         [ #  # ]:           0 :         const auto& wallet_file = wallet.get_str();
      81   [ #  #  #  #  :           0 :         const fs::path path = fsbridge::AbsPathJoin(GetWalletDir(), fs::PathFromString(wallet_file));
                   #  # ]
      82                 :             : 
      83   [ #  #  #  # ]:           0 :         if (!wallet_paths.insert(path).second) {
      84   [ #  #  #  #  :           0 :             chain.initWarning(strprintf(_("Ignoring duplicate -wallet %s."), wallet_file));
                   #  # ]
      85                 :           0 :             continue;
      86                 :             :         }
      87                 :             : 
      88                 :           0 :         DatabaseOptions options;
      89                 :           0 :         DatabaseStatus status;
      90         [ #  # ]:           0 :         ReadDatabaseArgs(args, options);
      91                 :           0 :         options.require_existing = true;
      92                 :           0 :         options.verify = true;
      93                 :           0 :         bilingual_str error_string;
      94   [ #  #  #  # ]:           0 :         if (!MakeWalletDatabase(wallet_file, options, status, error_string)) {
      95         [ #  # ]:           0 :             if (status == DatabaseStatus::FAILED_NOT_FOUND) {
      96   [ #  #  #  #  :           0 :                 chain.initWarning(Untranslated(strprintf("Skipping -wallet path that doesn't exist. %s", error_string.original)));
                   #  # ]
      97                 :           0 :             } else {
      98         [ #  # ]:           0 :                 chain.initError(error_string);
      99                 :           0 :                 return false;
     100                 :             :             }
     101                 :           0 :         }
     102   [ #  #  #  #  :           0 :     }
                      # ]
     103                 :             : 
     104                 :           0 :     return true;
     105                 :           0 : }
     106                 :             : 
     107                 :           0 : bool LoadWallets(WalletContext& context)
     108                 :             : {
     109                 :           0 :     interfaces::Chain& chain = *context.chain;
     110                 :             :     try {
     111                 :           0 :         std::set<fs::path> wallet_paths;
     112   [ #  #  #  #  :           0 :         for (const auto& wallet : chain.getSettingsList("wallet")) {
             #  #  #  # ]
     113         [ #  # ]:           0 :             const auto& name = wallet.get_str();
     114   [ #  #  #  #  :           0 :             if (!wallet_paths.insert(fs::PathFromString(name)).second) {
                   #  # ]
     115                 :           0 :                 continue;
     116                 :             :             }
     117                 :           0 :             DatabaseOptions options;
     118                 :           0 :             DatabaseStatus status;
     119         [ #  # ]:           0 :             ReadDatabaseArgs(*context.args, options);
     120                 :           0 :             options.require_existing = true;
     121                 :           0 :             options.verify = false; // No need to verify, assuming verified earlier in VerifyWallets()
     122                 :           0 :             bilingual_str error;
     123                 :           0 :             std::vector<bilingual_str> warnings;
     124         [ #  # ]:           0 :             std::unique_ptr<WalletDatabase> database = MakeWalletDatabase(name, options, status, error);
     125   [ #  #  #  # ]:           0 :             if (!database && status == DatabaseStatus::FAILED_NOT_FOUND) {
     126                 :           0 :                 continue;
     127                 :             :             }
     128   [ #  #  #  # ]:           0 :             chain.initMessage(_("Loading wallet…").translated);
     129   [ #  #  #  #  :           0 :             std::shared_ptr<CWallet> pwallet = database ? CWallet::Create(context, name, std::move(database), options.create_flags, error, warnings) : nullptr;
             #  #  #  # ]
     130   [ #  #  #  #  :           0 :             if (!warnings.empty()) chain.initWarning(Join(warnings, Untranslated("\n")));
          #  #  #  #  #  
                      # ]
     131         [ #  # ]:           0 :             if (!pwallet) {
     132         [ #  # ]:           0 :                 chain.initError(error);
     133                 :           0 :                 return false;
     134                 :             :             }
     135                 :             : 
     136         [ #  # ]:           0 :             NotifyWalletLoaded(context, pwallet);
     137         [ #  # ]:           0 :             AddWallet(context, pwallet);
     138   [ #  #  #  #  :           0 :         }
                      # ]
     139                 :           0 :         return true;
     140         [ #  # ]:           0 :     } catch (const std::runtime_error& e) {
     141   [ #  #  #  #  :           0 :         chain.initError(Untranslated(e.what()));
                   #  # ]
     142                 :           0 :         return false;
     143         [ #  # ]:           0 :     }
     144                 :           0 : }
     145                 :             : 
     146                 :           0 : void StartWallets(WalletContext& context)
     147                 :             : {
     148         [ #  # ]:           0 :     for (const std::shared_ptr<CWallet>& pwallet : GetWallets(context)) {
     149         [ #  # ]:           0 :         pwallet->postInitProcess();
     150                 :           0 :     }
     151                 :             : 
     152                 :             :     // Schedule periodic wallet flushes and tx rebroadcasts
     153   [ #  #  #  #  :           0 :     if (context.args->GetBoolArg("-flushwallet", DEFAULT_FLUSHWALLET)) {
                   #  # ]
     154   [ #  #  #  # ]:           0 :         context.scheduler->scheduleEvery([&context] { MaybeCompactWalletDB(context); }, 500ms);
     155                 :           0 :     }
     156   [ #  #  #  #  :           0 :     context.scheduler->scheduleEvery([&context] { MaybeResendWalletTxs(context); }, 1min);
                   #  # ]
     157                 :           0 : }
     158                 :             : 
     159                 :           0 : void FlushWallets(WalletContext& context)
     160                 :             : {
     161         [ #  # ]:           0 :     for (const std::shared_ptr<CWallet>& pwallet : GetWallets(context)) {
     162         [ #  # ]:           0 :         pwallet->Flush();
     163                 :           0 :     }
     164                 :           0 : }
     165                 :             : 
     166                 :           0 : void StopWallets(WalletContext& context)
     167                 :             : {
     168         [ #  # ]:           0 :     for (const std::shared_ptr<CWallet>& pwallet : GetWallets(context)) {
     169         [ #  # ]:           0 :         pwallet->Close();
     170                 :           0 :     }
     171                 :           0 : }
     172                 :             : 
     173                 :           0 : void UnloadWallets(WalletContext& context)
     174                 :             : {
     175                 :           0 :     auto wallets = GetWallets(context);
     176         [ #  # ]:           0 :     while (!wallets.empty()) {
     177                 :           0 :         auto wallet = wallets.back();
     178                 :           0 :         wallets.pop_back();
     179                 :           0 :         std::vector<bilingual_str> warnings;
     180         [ #  # ]:           0 :         RemoveWallet(context, wallet, /* load_on_start= */ std::nullopt, warnings);
     181         [ #  # ]:           0 :         UnloadWallet(std::move(wallet));
     182                 :           0 :     }
     183                 :           0 : }
     184                 :             : } // namespace wallet
        

Generated by: LCOV version 2.0-1