Branch data Line data Source code
1 : : // Copyright (c) 2018-present The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <interfaces/wallet.h>
6 : :
7 : : #include <common/args.h>
8 : : #include <consensus/amount.h>
9 : : #include <interfaces/chain.h>
10 : : #include <interfaces/handler.h>
11 : : #include <node/types.h>
12 : : #include <policy/fees/block_policy_estimator.h>
13 : : #include <primitives/transaction.h>
14 : : #include <rpc/server.h>
15 : : #include <scheduler.h>
16 : : #include <support/allocators/secure.h>
17 : : #include <sync.h>
18 : : #include <uint256.h>
19 : : #include <util/check.h>
20 : : #include <util/translation.h>
21 : : #include <util/ui_change_type.h>
22 : : #include <wallet/coincontrol.h>
23 : : #include <wallet/context.h>
24 : : #include <wallet/feebumper.h>
25 : : #include <wallet/fees.h>
26 : : #include <wallet/load.h>
27 : : #include <wallet/receive.h>
28 : : #include <wallet/rpc/wallet.h>
29 : : #include <wallet/spend.h>
30 : : #include <wallet/wallet.h>
31 : :
32 : : #include <memory>
33 : : #include <string>
34 : : #include <utility>
35 : : #include <vector>
36 : :
37 : : using common::PSBTError;
38 : : using interfaces::Chain;
39 : : using interfaces::FoundBlock;
40 : : using interfaces::Handler;
41 : : using interfaces::MakeSignalHandler;
42 : : using interfaces::Wallet;
43 : : using interfaces::WalletAddress;
44 : : using interfaces::WalletBalances;
45 : : using interfaces::WalletLoader;
46 : : using interfaces::WalletMigrationResult;
47 : : using interfaces::WalletOrderForm;
48 : : using interfaces::WalletTx;
49 : : using interfaces::WalletTxOut;
50 : : using interfaces::WalletTxStatus;
51 : : using interfaces::WalletValueMap;
52 : :
53 : : namespace wallet {
54 : : // All members of the classes in this namespace are intentionally public, as the
55 : : // classes themselves are private.
56 : : namespace {
57 : : //! Construct wallet tx struct.
58 : 0 : WalletTx MakeWalletTx(CWallet& wallet, const CWalletTx& wtx)
59 : : {
60 : 0 : LOCK(wallet.cs_wallet);
61 : 0 : WalletTx result;
62 : 0 : result.tx = wtx.tx;
63 [ # # # # ]: 0 : result.txin_is_mine.reserve(wtx.tx->vin.size());
64 [ # # ]: 0 : for (const auto& txin : wtx.tx->vin) {
65 [ # # # # ]: 0 : result.txin_is_mine.emplace_back(InputIsMine(wallet, txin));
66 : : }
67 [ # # # # ]: 0 : result.txout_is_mine.reserve(wtx.tx->vout.size());
68 [ # # # # ]: 0 : result.txout_address.reserve(wtx.tx->vout.size());
69 [ # # # # ]: 0 : result.txout_address_is_mine.reserve(wtx.tx->vout.size());
70 [ # # ]: 0 : for (const auto& txout : wtx.tx->vout) {
71 [ # # # # ]: 0 : result.txout_is_mine.emplace_back(wallet.IsMine(txout));
72 [ # # # # ]: 0 : result.txout_is_change.push_back(OutputIsChange(wallet, txout));
73 [ # # ]: 0 : result.txout_address.emplace_back();
74 [ # # # # : 0 : result.txout_address_is_mine.emplace_back(ExtractDestination(txout.scriptPubKey, result.txout_address.back()) ?
# # ]
75 [ # # ]: 0 : wallet.IsMine(result.txout_address.back()) :
76 : : false);
77 : : }
78 [ # # ]: 0 : result.credit = CachedTxGetCredit(wallet, wtx, /*avoid_reuse=*/true);
79 [ # # ]: 0 : result.debit = CachedTxGetDebit(wallet, wtx, /*avoid_reuse=*/true);
80 [ # # ]: 0 : result.change = CachedTxGetChange(wallet, wtx);
81 [ # # ]: 0 : result.time = wtx.GetTxTime();
82 [ # # ]: 0 : result.value_map = wtx.mapValue;
83 [ # # ]: 0 : result.is_coinbase = wtx.IsCoinBase();
84 [ # # ]: 0 : return result;
85 : 0 : }
86 : :
87 : : //! Construct wallet tx status struct.
88 : 0 : WalletTxStatus MakeWalletTxStatus(const CWallet& wallet, const CWalletTx& wtx)
89 : : EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet)
90 : : {
91 : 0 : AssertLockHeld(wallet.cs_wallet);
92 : :
93 : 0 : WalletTxStatus result;
94 [ # # ]: 0 : result.block_height =
95 [ # # ]: 0 : wtx.state<TxStateConfirmed>() ? wtx.state<TxStateConfirmed>()->confirmed_block_height :
96 : 0 : wtx.state<TxStateBlockConflicted>() ? wtx.state<TxStateBlockConflicted>()->conflicting_block_height :
97 : : std::numeric_limits<int>::max();
98 : 0 : result.blocks_to_maturity = wallet.GetTxBlocksToMaturity(wtx);
99 : 0 : result.depth_in_main_chain = wallet.GetTxDepthInMainChain(wtx);
100 : 0 : result.time_received = wtx.nTimeReceived;
101 : 0 : result.lock_time = wtx.tx->nLockTime;
102 : 0 : result.is_trusted = CachedTxIsTrusted(wallet, wtx);
103 [ # # ]: 0 : result.is_abandoned = wtx.isAbandoned();
104 [ # # ]: 0 : result.is_coinbase = wtx.IsCoinBase();
105 [ # # ]: 0 : result.is_in_main_chain = wtx.isConfirmed();
106 : 0 : return result;
107 : : }
108 : :
109 : : //! Construct wallet TxOut struct.
110 : 0 : WalletTxOut MakeWalletTxOut(const CWallet& wallet,
111 : : const CWalletTx& wtx,
112 : : int n,
113 : : int depth) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet)
114 : : {
115 : 0 : WalletTxOut result;
116 : 0 : result.txout = wtx.tx->vout[n];
117 [ # # ]: 0 : result.time = wtx.GetTxTime();
118 : 0 : result.depth_in_main_chain = depth;
119 [ # # ]: 0 : result.is_spent = wallet.IsSpent(COutPoint(wtx.GetHash(), n));
120 : 0 : return result;
121 : 0 : }
122 : :
123 : 0 : WalletTxOut MakeWalletTxOut(const CWallet& wallet,
124 : : const COutput& output) EXCLUSIVE_LOCKS_REQUIRED(wallet.cs_wallet)
125 : : {
126 : 0 : WalletTxOut result;
127 : 0 : result.txout = output.txout;
128 : 0 : result.time = output.time;
129 : 0 : result.depth_in_main_chain = output.depth;
130 [ # # ]: 0 : result.is_spent = wallet.IsSpent(output.outpoint);
131 : 0 : return result;
132 : 0 : }
133 : :
134 : : class WalletImpl : public Wallet
135 : : {
136 : : public:
137 [ + - ]: 1 : explicit WalletImpl(WalletContext& context, const std::shared_ptr<CWallet>& wallet) : m_context(context), m_wallet(wallet) {}
138 : :
139 : 0 : bool encryptWallet(const SecureString& wallet_passphrase) override
140 : : {
141 : 0 : return m_wallet->EncryptWallet(wallet_passphrase);
142 : : }
143 : 0 : bool isCrypted() override { return m_wallet->HasEncryptionKeys(); }
144 : 0 : bool lock() override { return m_wallet->Lock(); }
145 : 0 : bool unlock(const SecureString& wallet_passphrase) override { return m_wallet->Unlock(wallet_passphrase); }
146 : 0 : bool isLocked() override { return m_wallet->IsLocked(); }
147 : 0 : bool changeWalletPassphrase(const SecureString& old_wallet_passphrase,
148 : : const SecureString& new_wallet_passphrase) override
149 : : {
150 : 0 : return m_wallet->ChangeWalletPassphrase(old_wallet_passphrase, new_wallet_passphrase);
151 : : }
152 : 0 : void abortRescan() override { m_wallet->AbortRescan(); }
153 : 0 : bool backupWallet(const std::string& filename) override { return m_wallet->BackupWallet(filename); }
154 [ # # ]: 0 : std::string getWalletName() override { return m_wallet->GetName(); }
155 : 0 : util::Result<CTxDestination> getNewDestination(const OutputType type, const std::string& label) override
156 : : {
157 : 0 : LOCK(m_wallet->cs_wallet);
158 [ # # ]: 0 : return m_wallet->GetNewDestination(type, label);
159 : 0 : }
160 : 0 : bool getPubKey(const CScript& script, const CKeyID& address, CPubKey& pub_key) override
161 : : {
162 : 0 : std::unique_ptr<SigningProvider> provider = m_wallet->GetSolvingProvider(script);
163 [ # # ]: 0 : if (provider) {
164 [ # # ]: 0 : return provider->GetPubKey(address, pub_key);
165 : : }
166 : : return false;
167 : 0 : }
168 : 0 : SigningResult signMessage(const std::string& message, const PKHash& pkhash, std::string& str_sig) override
169 : : {
170 : 0 : return m_wallet->SignMessage(message, pkhash, str_sig);
171 : : }
172 : 0 : bool isSpendable(const CTxDestination& dest) override
173 : : {
174 : 0 : LOCK(m_wallet->cs_wallet);
175 [ # # # # ]: 0 : return m_wallet->IsMine(dest);
176 : 0 : }
177 : 0 : bool setAddressBook(const CTxDestination& dest, const std::string& name, const std::optional<AddressPurpose>& purpose) override
178 : : {
179 : 0 : return m_wallet->SetAddressBook(dest, name, purpose);
180 : : }
181 : 0 : bool delAddressBook(const CTxDestination& dest) override
182 : : {
183 : 0 : return m_wallet->DelAddressBook(dest);
184 : : }
185 : 0 : bool getAddress(const CTxDestination& dest,
186 : : std::string* name,
187 : : AddressPurpose* purpose) override
188 : : {
189 : 0 : LOCK(m_wallet->cs_wallet);
190 [ # # ]: 0 : const auto& entry = m_wallet->FindAddressBookEntry(dest, /*allow_change=*/false);
191 [ # # ]: 0 : if (!entry) return false; // addr not found
192 [ # # ]: 0 : if (name) {
193 [ # # ]: 0 : *name = entry->GetLabel();
194 : : }
195 [ # # ]: 0 : if (purpose) {
196 : : // In very old wallets, address purpose may not be recorded so we derive it from IsMine
197 [ # # # # : 0 : *purpose = entry->purpose.value_or(m_wallet->IsMine(dest) ? AddressPurpose::RECEIVE : AddressPurpose::SEND);
# # ]
198 : : }
199 : : return true;
200 : 0 : }
201 : 0 : std::vector<WalletAddress> getAddresses() override
202 : : {
203 : 0 : LOCK(m_wallet->cs_wallet);
204 : 0 : std::vector<WalletAddress> result;
205 [ # # ]: 0 : m_wallet->ForEachAddrBookEntry([&](const CTxDestination& dest, const std::string& label, bool is_change, const std::optional<AddressPurpose>& purpose) EXCLUSIVE_LOCKS_REQUIRED(m_wallet->cs_wallet) {
206 [ # # ]: 0 : if (is_change) return;
207 : 0 : bool is_mine = m_wallet->IsMine(dest);
208 : : // In very old wallets, address purpose may not be recorded so we derive it from IsMine
209 [ # # # # ]: 0 : result.emplace_back(dest, is_mine, purpose.value_or(is_mine ? AddressPurpose::RECEIVE : AddressPurpose::SEND), label);
210 : : });
211 [ # # ]: 0 : return result;
212 : 0 : }
213 : 0 : std::vector<std::string> getAddressReceiveRequests() override {
214 : 0 : LOCK(m_wallet->cs_wallet);
215 [ # # ]: 0 : return m_wallet->GetAddressReceiveRequests();
216 : 0 : }
217 : 0 : bool setAddressReceiveRequest(const CTxDestination& dest, const std::string& id, const std::string& value) override {
218 : : // Note: The setAddressReceiveRequest interface used by the GUI to store
219 : : // receive requests is a little awkward and could be improved in the
220 : : // future:
221 : : //
222 : : // - The same method is used to save requests and erase them, but
223 : : // having separate methods could be clearer and prevent bugs.
224 : : //
225 : : // - Request ids are passed as strings even though they are generated as
226 : : // integers.
227 : : //
228 : : // - Multiple requests can be stored for the same address, but it might
229 : : // be better to only allow one request or only keep the current one.
230 : 0 : LOCK(m_wallet->cs_wallet);
231 [ # # ]: 0 : WalletBatch batch{m_wallet->GetDatabase()};
232 [ # # # # ]: 0 : return value.empty() ? m_wallet->EraseAddressReceiveRequest(batch, dest, id)
233 [ # # ]: 0 : : m_wallet->SetAddressReceiveRequest(batch, dest, id, value);
234 [ # # ]: 0 : }
235 : 0 : util::Result<void> displayAddress(const CTxDestination& dest) override
236 : : {
237 : 0 : LOCK(m_wallet->cs_wallet);
238 [ # # ]: 0 : return m_wallet->DisplayAddress(dest);
239 : 0 : }
240 : 0 : bool lockCoin(const COutPoint& output, const bool write_to_db) override
241 : : {
242 : 0 : LOCK(m_wallet->cs_wallet);
243 [ # # # # ]: 0 : return m_wallet->LockCoin(output, write_to_db);
244 : 0 : }
245 : 0 : bool unlockCoin(const COutPoint& output) override
246 : : {
247 : 0 : LOCK(m_wallet->cs_wallet);
248 [ # # # # ]: 0 : return m_wallet->UnlockCoin(output);
249 : 0 : }
250 : 0 : bool isLockedCoin(const COutPoint& output) override
251 : : {
252 : 0 : LOCK(m_wallet->cs_wallet);
253 [ # # # # ]: 0 : return m_wallet->IsLockedCoin(output);
254 : 0 : }
255 : 0 : void listLockedCoins(std::vector<COutPoint>& outputs) override
256 : : {
257 : 0 : LOCK(m_wallet->cs_wallet);
258 [ # # ]: 0 : return m_wallet->ListLockedCoins(outputs);
259 : 0 : }
260 : 0 : util::Result<wallet::CreatedTransactionResult> createTransaction(const std::vector<CRecipient>& recipients,
261 : : const CCoinControl& coin_control,
262 : : bool sign,
263 : : std::optional<unsigned int> change_pos) override
264 : : {
265 : 0 : LOCK(m_wallet->cs_wallet);
266 [ # # ]: 0 : return CreateTransaction(*m_wallet, recipients, change_pos, coin_control, sign);
267 : 0 : }
268 : 0 : void commitTransaction(CTransactionRef tx,
269 : : WalletValueMap value_map,
270 : : WalletOrderForm order_form) override
271 : : {
272 : 0 : LOCK(m_wallet->cs_wallet);
273 [ # # # # ]: 0 : m_wallet->CommitTransaction(std::move(tx), std::move(value_map), std::move(order_form));
274 : 0 : }
275 : 0 : bool transactionCanBeAbandoned(const Txid& txid) override { return m_wallet->TransactionCanBeAbandoned(txid); }
276 : 0 : bool abandonTransaction(const Txid& txid) override
277 : : {
278 : 0 : LOCK(m_wallet->cs_wallet);
279 [ # # # # ]: 0 : return m_wallet->AbandonTransaction(txid);
280 : 0 : }
281 : 0 : bool transactionCanBeBumped(const Txid& txid) override
282 : : {
283 : 0 : return feebumper::TransactionCanBeBumped(*m_wallet.get(), txid);
284 : : }
285 : 0 : bool createBumpTransaction(const Txid& txid,
286 : : const CCoinControl& coin_control,
287 : : std::vector<bilingual_str>& errors,
288 : : CAmount& old_fee,
289 : : CAmount& new_fee,
290 : : CMutableTransaction& mtx) override
291 : : {
292 : 0 : std::vector<CTxOut> outputs; // just an empty list of new recipients for now
293 [ # # ]: 0 : return feebumper::CreateRateBumpTransaction(*m_wallet.get(), txid, coin_control, errors, old_fee, new_fee, mtx, /* require_mine= */ true, outputs) == feebumper::Result::OK;
294 : 0 : }
295 : 0 : bool signBumpTransaction(CMutableTransaction& mtx) override { return feebumper::SignTransaction(*m_wallet.get(), mtx); }
296 : 0 : bool commitBumpTransaction(const Txid& txid,
297 : : CMutableTransaction&& mtx,
298 : : std::vector<bilingual_str>& errors,
299 : : Txid& bumped_txid) override
300 : : {
301 : 0 : return feebumper::CommitTransaction(*m_wallet.get(), txid, std::move(mtx), errors, bumped_txid) ==
302 : 0 : feebumper::Result::OK;
303 : : }
304 : 0 : CTransactionRef getTx(const Txid& txid) override
305 : : {
306 : 0 : LOCK(m_wallet->cs_wallet);
307 : 0 : auto mi = m_wallet->mapWallet.find(txid);
308 [ # # ]: 0 : if (mi != m_wallet->mapWallet.end()) {
309 [ # # # # ]: 0 : return mi->second.tx;
310 : : }
311 : 0 : return {};
312 : 0 : }
313 : 0 : WalletTx getWalletTx(const Txid& txid) override
314 : : {
315 : 0 : LOCK(m_wallet->cs_wallet);
316 : 0 : auto mi = m_wallet->mapWallet.find(txid);
317 [ # # ]: 0 : if (mi != m_wallet->mapWallet.end()) {
318 [ # # ]: 0 : return MakeWalletTx(*m_wallet, mi->second);
319 : : }
320 : 0 : return {};
321 : 0 : }
322 : 0 : std::set<WalletTx> getWalletTxs() override
323 : : {
324 : 0 : LOCK(m_wallet->cs_wallet);
325 : 0 : std::set<WalletTx> result;
326 [ # # # # ]: 0 : for (const auto& entry : m_wallet->mapWallet) {
327 [ # # # # ]: 0 : result.emplace(MakeWalletTx(*m_wallet, entry.second));
328 : : }
329 [ # # ]: 0 : return result;
330 : 0 : }
331 : 0 : bool tryGetTxStatus(const Txid& txid,
332 : : interfaces::WalletTxStatus& tx_status,
333 : : int& num_blocks,
334 : : int64_t& block_time) override
335 : : {
336 : 0 : TRY_LOCK(m_wallet->cs_wallet, locked_wallet);
337 [ # # ]: 0 : if (!locked_wallet) {
338 : : return false;
339 : : }
340 : 0 : auto mi = m_wallet->mapWallet.find(txid);
341 [ # # # # ]: 0 : if (mi == m_wallet->mapWallet.end()) {
342 : : return false;
343 : : }
344 : 0 : num_blocks = m_wallet->GetLastBlockHeight();
345 : 0 : block_time = -1;
346 [ # # # # ]: 0 : CHECK_NONFATAL(m_wallet->chain().findBlock(m_wallet->GetLastBlockHash(), FoundBlock().time(block_time)));
347 [ # # ]: 0 : tx_status = MakeWalletTxStatus(*m_wallet, mi->second);
348 : : return true;
349 : 0 : }
350 : 0 : WalletTx getWalletTxDetails(const Txid& txid,
351 : : WalletTxStatus& tx_status,
352 : : WalletOrderForm& order_form,
353 : : bool& in_mempool,
354 : : int& num_blocks) override
355 : : {
356 : 0 : LOCK(m_wallet->cs_wallet);
357 : 0 : auto mi = m_wallet->mapWallet.find(txid);
358 [ # # ]: 0 : if (mi != m_wallet->mapWallet.end()) {
359 : 0 : num_blocks = m_wallet->GetLastBlockHeight();
360 [ # # ]: 0 : in_mempool = mi->second.InMempool();
361 [ # # ]: 0 : order_form = mi->second.vOrderForm;
362 [ # # ]: 0 : tx_status = MakeWalletTxStatus(*m_wallet, mi->second);
363 [ # # ]: 0 : return MakeWalletTx(*m_wallet, mi->second);
364 : : }
365 : 0 : return {};
366 : 0 : }
367 : 0 : std::optional<PSBTError> fillPSBT(std::optional<int> sighash_type,
368 : : bool sign,
369 : : bool bip32derivs,
370 : : size_t* n_signed,
371 : : PartiallySignedTransaction& psbtx,
372 : : bool& complete) override
373 : : {
374 : 0 : return m_wallet->FillPSBT(psbtx, complete, sighash_type, sign, bip32derivs, n_signed);
375 : : }
376 : 0 : WalletBalances getBalances() override
377 : : {
378 : 0 : const auto bal = GetBalance(*m_wallet);
379 : 0 : WalletBalances result;
380 : 0 : result.balance = bal.m_mine_trusted;
381 : 0 : result.unconfirmed_balance = bal.m_mine_untrusted_pending;
382 : 0 : result.immature_balance = bal.m_mine_immature;
383 : 0 : result.used_balance = bal.m_mine_used;
384 : 0 : result.nonmempool_balance = bal.m_mine_nonmempool;
385 : 0 : return result;
386 : : }
387 : 0 : bool tryGetBalances(WalletBalances& balances, uint256& block_hash) override
388 : : {
389 : 0 : TRY_LOCK(m_wallet->cs_wallet, locked_wallet);
390 [ # # ]: 0 : if (!locked_wallet) {
391 : : return false;
392 : : }
393 : 0 : block_hash = m_wallet->GetLastBlockHash();
394 [ # # ]: 0 : balances = getBalances();
395 : : return true;
396 : 0 : }
397 : 0 : CAmount getBalance() override { return GetBalance(*m_wallet).m_mine_trusted; }
398 : 0 : CAmount getAvailableBalance(const CCoinControl& coin_control) override
399 : : {
400 : 0 : LOCK(m_wallet->cs_wallet);
401 : 0 : CAmount total_amount = 0;
402 : : // Fetch selected coins total amount
403 [ # # # # ]: 0 : if (coin_control.HasSelected()) {
404 : 0 : FastRandomContext rng{};
405 : 0 : CoinSelectionParams params(rng);
406 : : // Note: for now, swallow any error.
407 [ # # # # ]: 0 : if (auto res = FetchSelectedInputs(*m_wallet, coin_control, params)) {
408 : 0 : total_amount += res->GetTotalAmount();
409 : 0 : }
410 : 0 : }
411 : :
412 : : // And fetch the wallet available coins
413 [ # # ]: 0 : if (coin_control.m_allow_other_inputs) {
414 [ # # ]: 0 : total_amount += AvailableCoins(*m_wallet, &coin_control).GetTotalAmount();
415 : : }
416 : :
417 [ # # ]: 0 : return total_amount;
418 : 0 : }
419 : 0 : bool txinIsMine(const CTxIn& txin) override
420 : : {
421 : 0 : LOCK(m_wallet->cs_wallet);
422 [ # # # # ]: 0 : return InputIsMine(*m_wallet, txin);
423 : 0 : }
424 : 0 : bool txoutIsMine(const CTxOut& txout) override
425 : : {
426 : 0 : LOCK(m_wallet->cs_wallet);
427 [ # # # # ]: 0 : return m_wallet->IsMine(txout);
428 : 0 : }
429 : 0 : CAmount getDebit(const CTxIn& txin) override
430 : : {
431 : 0 : LOCK(m_wallet->cs_wallet);
432 [ # # # # ]: 0 : return m_wallet->GetDebit(txin);
433 : 0 : }
434 : 0 : CAmount getCredit(const CTxOut& txout) override
435 : : {
436 : 0 : LOCK(m_wallet->cs_wallet);
437 [ # # # # ]: 0 : return OutputGetCredit(*m_wallet, txout);
438 : 0 : }
439 : 0 : CoinsList listCoins() override
440 : : {
441 : 0 : LOCK(m_wallet->cs_wallet);
442 [ # # ]: 0 : CoinsList result;
443 [ # # # # ]: 0 : for (const auto& entry : ListCoins(*m_wallet)) {
444 [ # # ]: 0 : auto& group = result[entry.first];
445 [ # # ]: 0 : for (const auto& coin : entry.second) {
446 [ # # ]: 0 : group.emplace_back(coin.outpoint,
447 [ # # ]: 0 : MakeWalletTxOut(*m_wallet, coin));
448 : : }
449 : 0 : }
450 [ # # ]: 0 : return result;
451 : 0 : }
452 : 0 : std::vector<WalletTxOut> getCoins(const std::vector<COutPoint>& outputs) override
453 : : {
454 : 0 : LOCK(m_wallet->cs_wallet);
455 : 0 : std::vector<WalletTxOut> result;
456 [ # # # # ]: 0 : result.reserve(outputs.size());
457 [ # # ]: 0 : for (const auto& output : outputs) {
458 [ # # ]: 0 : result.emplace_back();
459 : 0 : auto it = m_wallet->mapWallet.find(output.hash);
460 [ # # ]: 0 : if (it != m_wallet->mapWallet.end()) {
461 [ # # ]: 0 : int depth = m_wallet->GetTxDepthInMainChain(it->second);
462 [ # # ]: 0 : if (depth >= 0) {
463 [ # # ]: 0 : result.back() = MakeWalletTxOut(*m_wallet, it->second, output.n, depth);
464 : : }
465 : : }
466 : : }
467 [ # # ]: 0 : return result;
468 : 0 : }
469 : 0 : CAmount getRequiredFee(unsigned int tx_bytes) override { return GetRequiredFee(*m_wallet, tx_bytes); }
470 : 0 : CAmount getMinimumFee(unsigned int tx_bytes,
471 : : const CCoinControl& coin_control,
472 : : int* returned_target,
473 : : FeeReason* reason) override
474 : : {
475 : 0 : FeeCalculation fee_calc;
476 : 0 : CAmount result;
477 : 0 : result = GetMinimumFee(*m_wallet, tx_bytes, coin_control, &fee_calc);
478 [ # # ]: 0 : if (returned_target) *returned_target = fee_calc.returnedTarget;
479 [ # # ]: 0 : if (reason) *reason = fee_calc.reason;
480 : 0 : return result;
481 : : }
482 : 0 : unsigned int getConfirmTarget() override { return m_wallet->m_confirm_target; }
483 : 0 : bool hdEnabled() override { return m_wallet->IsHDEnabled(); }
484 : 0 : bool canGetAddresses() override { return m_wallet->CanGetAddresses(); }
485 : 0 : bool hasExternalSigner() override { return m_wallet->IsWalletFlagSet(WALLET_FLAG_EXTERNAL_SIGNER); }
486 : 0 : bool privateKeysDisabled() override { return m_wallet->IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS); }
487 : 0 : bool taprootEnabled() override {
488 : 0 : auto spk_man = m_wallet->GetScriptPubKeyMan(OutputType::BECH32M, /*internal=*/false);
489 : 0 : return spk_man != nullptr;
490 : : }
491 : 0 : OutputType getDefaultAddressType() override { return m_wallet->m_default_address_type; }
492 : 0 : CAmount getDefaultMaxTxFee() override { return m_wallet->m_default_max_tx_fee; }
493 : 0 : void remove() override
494 : : {
495 : 0 : RemoveWallet(m_context, m_wallet, /*load_on_start=*/false);
496 : 0 : }
497 : 0 : std::unique_ptr<Handler> handleUnload(UnloadFn fn) override
498 : : {
499 [ # # ]: 0 : return MakeSignalHandler(m_wallet->NotifyUnload.connect(fn));
500 : : }
501 : 0 : std::unique_ptr<Handler> handleShowProgress(ShowProgressFn fn) override
502 : : {
503 [ # # ]: 0 : return MakeSignalHandler(m_wallet->ShowProgress.connect(fn));
504 : : }
505 : 0 : std::unique_ptr<Handler> handleStatusChanged(StatusChangedFn fn) override
506 : : {
507 [ # # # # : 0 : return MakeSignalHandler(m_wallet->NotifyStatusChanged.connect([fn](CWallet*) { fn(); }));
# # ]
508 : : }
509 : 0 : std::unique_ptr<Handler> handleAddressBookChanged(AddressBookChangedFn fn) override
510 : : {
511 [ # # ]: 0 : return MakeSignalHandler(m_wallet->NotifyAddressBookChanged.connect(
512 [ # # ]: 0 : [fn](const CTxDestination& address, const std::string& label, bool is_mine,
513 [ # # ]: 0 : AddressPurpose purpose, ChangeType status) { fn(address, label, is_mine, purpose, status); }));
514 : : }
515 : 0 : std::unique_ptr<Handler> handleTransactionChanged(TransactionChangedFn fn) override
516 : : {
517 [ # # ]: 0 : return MakeSignalHandler(m_wallet->NotifyTransactionChanged.connect(
518 [ # # # # ]: 0 : [fn](const Txid& txid, ChangeType status) { fn(txid, status); }));
519 : : }
520 : 0 : std::unique_ptr<Handler> handleCanGetAddressesChanged(CanGetAddressesChangedFn fn) override
521 : : {
522 [ # # ]: 0 : return MakeSignalHandler(m_wallet->NotifyCanGetAddressesChanged.connect(fn));
523 : : }
524 : 0 : CWallet* wallet() override { return m_wallet.get(); }
525 : :
526 : : WalletContext& m_context;
527 : : std::shared_ptr<CWallet> m_wallet;
528 : : };
529 : :
530 : : class WalletLoaderImpl : public WalletLoader
531 : : {
532 : : public:
533 : 432 : WalletLoaderImpl(Chain& chain, ArgsManager& args)
534 [ + - ]: 432 : {
535 : 432 : m_context.chain = &chain;
536 : 432 : m_context.args = &args;
537 : 432 : }
538 : 864 : ~WalletLoaderImpl() override { stop(); }
539 : :
540 : : //! ChainClient methods
541 : 425 : void registerRpcs() override
542 : : {
543 [ + + ]: 24225 : for (const CRPCCommand& command : GetWalletRPCCommands()) {
544 : 44691 : m_rpc_commands.emplace_back(command.category, command.name, [this, &command](const JSONRPCRequest& request, UniValue& result, bool last_handler) {
545 : 20891 : JSONRPCRequest wallet_request = request;
546 : 20891 : wallet_request.context = &m_context;
547 [ + + ]: 40895 : return command.actor(wallet_request, result, last_handler);
548 : 44691 : }, command.argNames, command.unique_id);
549 [ + - ]: 23800 : m_rpc_handlers.emplace_back(m_context.chain->handleRpc(m_rpc_commands.back()));
550 : : }
551 : 425 : }
552 : 416 : bool verify() override { return VerifyWallets(m_context); }
553 : 359 : bool load() override { return LoadWallets(m_context); }
554 : 356 : void start(CScheduler& scheduler) override
555 : : {
556 : 356 : m_context.scheduler = &scheduler;
557 : 356 : return StartWallets(m_context);
558 : : }
559 : 841 : void stop() override { return UnloadWallets(m_context); }
560 : 168 : void setMockTime(int64_t time) override { return SetMockTime(time); }
561 [ - + ]: 7 : void schedulerMockForward(std::chrono::seconds delta) override { Assert(m_context.scheduler)->MockForward(delta); }
562 : :
563 : : //! WalletLoader methods
564 : 0 : util::Result<std::unique_ptr<Wallet>> createWallet(const std::string& name, const SecureString& passphrase, uint64_t wallet_creation_flags, std::vector<bilingual_str>& warnings) override
565 : : {
566 [ # # ]: 0 : DatabaseOptions options;
567 : 0 : DatabaseStatus status;
568 [ # # ]: 0 : ReadDatabaseArgs(*m_context.args, options);
569 : 0 : options.require_create = true;
570 : 0 : options.create_flags = wallet_creation_flags;
571 [ # # ]: 0 : options.create_passphrase = passphrase;
572 [ # # ]: 0 : bilingual_str error;
573 [ # # # # ]: 0 : std::unique_ptr<Wallet> wallet{MakeWallet(m_context, CreateWallet(m_context, name, /*load_on_start=*/true, options, status, error, warnings))};
574 [ # # ]: 0 : if (wallet) {
575 : 0 : return wallet;
576 : : } else {
577 [ # # ]: 0 : return util::Error{error};
578 : : }
579 : 0 : }
580 : 0 : util::Result<std::unique_ptr<Wallet>> loadWallet(const std::string& name, std::vector<bilingual_str>& warnings) override
581 : : {
582 [ # # ]: 0 : DatabaseOptions options;
583 : 0 : DatabaseStatus status;
584 [ # # ]: 0 : ReadDatabaseArgs(*m_context.args, options);
585 : 0 : options.require_existing = true;
586 [ # # ]: 0 : bilingual_str error;
587 [ # # # # ]: 0 : std::unique_ptr<Wallet> wallet{MakeWallet(m_context, LoadWallet(m_context, name, /*load_on_start=*/true, options, status, error, warnings))};
588 [ # # ]: 0 : if (wallet) {
589 : 0 : return wallet;
590 : : } else {
591 [ # # ]: 0 : return util::Error{error};
592 : : }
593 : 0 : }
594 : 0 : util::Result<std::unique_ptr<Wallet>> restoreWallet(const fs::path& backup_file, const std::string& wallet_name, std::vector<bilingual_str>& warnings, bool load_after_restore) override
595 : : {
596 : 0 : DatabaseStatus status;
597 [ # # ]: 0 : bilingual_str error;
598 [ # # # # ]: 0 : std::unique_ptr<Wallet> wallet{MakeWallet(m_context, RestoreWallet(m_context, backup_file, wallet_name, /*load_on_start=*/true, status, error, warnings, load_after_restore))};
599 [ # # ]: 0 : if (!error.empty()) {
600 [ # # ]: 0 : return util::Error{error};
601 : : }
602 : 0 : return wallet;
603 : 0 : }
604 : 0 : util::Result<WalletMigrationResult> migrateWallet(const std::string& name, const SecureString& passphrase) override
605 : : {
606 : 0 : auto res = wallet::MigrateLegacyToDescriptor(name, passphrase, m_context);
607 [ # # # # ]: 0 : if (!res) return util::Error{util::ErrorString(res)};
608 : 0 : WalletMigrationResult out{
609 : 0 : .wallet = MakeWallet(m_context, res->wallet),
610 [ # # # # ]: 0 : .watchonly_wallet_name = res->watchonly_wallet ? std::make_optional(res->watchonly_wallet->GetName()) : std::nullopt,
611 [ # # # # ]: 0 : .solvables_wallet_name = res->solvables_wallet ? std::make_optional(res->solvables_wallet->GetName()) : std::nullopt,
612 [ # # ]: 0 : .backup_path = res->backup_path,
613 [ # # ]: 0 : };
614 : 0 : return out;
615 : 0 : }
616 : 0 : bool isEncrypted(const std::string& wallet_name) override
617 : : {
618 : 0 : auto wallets{GetWallets(m_context)};
619 [ # # ]: 0 : auto it = std::find_if(wallets.begin(), wallets.end(), [&](std::shared_ptr<CWallet> w){ return w->GetName() == wallet_name; });
620 [ # # # # ]: 0 : if (it != wallets.end()) return (*it)->HasEncryptionKeys();
621 : :
622 : : // Unloaded wallet, read db
623 [ # # ]: 0 : DatabaseOptions options;
624 : 0 : options.require_existing = true;
625 : 0 : DatabaseStatus status;
626 [ # # ]: 0 : bilingual_str error;
627 [ # # ]: 0 : auto db = MakeWalletDatabase(wallet_name, options, status, error);
628 [ # # # # ]: 0 : if (!db && status == wallet::DatabaseStatus::FAILED_LEGACY_DISABLED) {
629 : 0 : options.require_format = wallet::DatabaseFormat::BERKELEY_RO;
630 [ # # ]: 0 : db = MakeWalletDatabase(wallet_name, options, status, error);
631 : : }
632 [ # # ]: 0 : if (!db) return false;
633 [ # # # # ]: 0 : return WalletBatch(*db).IsEncrypted();
634 : 0 : }
635 : 0 : std::string getWalletDir() override
636 : : {
637 [ # # ]: 0 : return fs::PathToString(GetWalletDir());
638 : : }
639 : 0 : std::vector<std::pair<std::string, std::string>> listWalletDir() override
640 : : {
641 : 0 : std::vector<std::pair<std::string, std::string>> paths;
642 [ # # # # : 0 : for (auto& [path, format] : ListDatabases(GetWalletDir())) {
# # # # ]
643 [ # # # # ]: 0 : paths.emplace_back(fs::PathToString(path), format);
644 : 0 : }
645 : 0 : return paths;
646 : 0 : }
647 : 0 : std::vector<std::unique_ptr<Wallet>> getWallets() override
648 : : {
649 : 0 : std::vector<std::unique_ptr<Wallet>> wallets;
650 [ # # # # ]: 0 : for (const auto& wallet : GetWallets(m_context)) {
651 [ # # # # ]: 0 : wallets.emplace_back(MakeWallet(m_context, wallet));
652 : : }
653 : 0 : return wallets;
654 : 0 : }
655 : 0 : std::unique_ptr<Handler> handleLoadWallet(LoadWalletFn fn) override
656 : : {
657 [ # # ]: 0 : return HandleLoadWallet(m_context, std::move(fn));
658 : : }
659 : 0 : WalletContext* context() override { return &m_context; }
660 : :
661 : : WalletContext m_context;
662 : : const std::vector<std::string> m_wallet_filenames;
663 : : std::vector<std::unique_ptr<Handler>> m_rpc_handlers;
664 : : std::list<CRPCCommand> m_rpc_commands;
665 : : };
666 : : } // namespace
667 : : } // namespace wallet
668 : :
669 : : namespace interfaces {
670 [ + - ]: 1 : std::unique_ptr<Wallet> MakeWallet(wallet::WalletContext& context, const std::shared_ptr<wallet::CWallet>& wallet) { return wallet ? std::make_unique<wallet::WalletImpl>(context, wallet) : nullptr; }
671 : :
672 : 432 : std::unique_ptr<WalletLoader> MakeWalletLoader(Chain& chain, ArgsManager& args)
673 : : {
674 : 432 : return std::make_unique<wallet::WalletLoaderImpl>(chain, args);
675 : : }
676 : : } // namespace interfaces
|