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