Branch data Line data Source code
1 : : // Copyright (c) 2019-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 : : #ifndef BITCOIN_WALLET_SCRIPTPUBKEYMAN_H
6 : : #define BITCOIN_WALLET_SCRIPTPUBKEYMAN_H
7 : :
8 : : #include <addresstype.h>
9 : : #include <common/messages.h>
10 : : #include <common/signmessage.h>
11 : : #include <common/types.h>
12 : : #include <musig.h>
13 : : #include <node/types.h>
14 : : #include <psbt.h>
15 : : #include <script/descriptor.h>
16 : : #include <script/script.h>
17 : : #include <script/signingprovider.h>
18 : : #include <util/btcsignals.h>
19 : : #include <util/hasher.h>
20 : : #include <util/log.h>
21 : : #include <util/result.h>
22 : : #include <util/time.h>
23 : : #include <wallet/crypter.h>
24 : : #include <wallet/types.h>
25 : : #include <wallet/walletdb.h>
26 : : #include <wallet/walletutil.h>
27 : :
28 : : #include <functional>
29 : : #include <optional>
30 : : #include <unordered_map>
31 : : #include <unordered_set>
32 : :
33 : : enum class OutputType;
34 : :
35 : : namespace wallet {
36 : : struct MigrationData;
37 : : class ScriptPubKeyMan;
38 : :
39 : : // Wallet storage things that ScriptPubKeyMans need in order to be able to store things to the wallet database.
40 : : // It provides access to things that are part of the entire wallet and not specific to a ScriptPubKeyMan such as
41 : : // wallet flags, wallet version, encryption keys, encryption status, and the database itself. This allows a
42 : : // ScriptPubKeyMan to have callbacks into CWallet without causing a circular dependency.
43 : : // WalletStorage should be the same for all ScriptPubKeyMans of a wallet.
44 [ + - ]: 9683 : class WalletStorage
45 : : {
46 : : public:
47 : 9683 : virtual ~WalletStorage() = default;
48 : : virtual std::string LogName() const = 0;
49 : : virtual WalletDatabase& GetDatabase() const = 0;
50 : : virtual bool IsWalletFlagSet(uint64_t) const = 0;
51 : : virtual void UnsetBlankWalletFlag(WalletBatch&) = 0;
52 : : //! Pass the encryption key to cb().
53 : : virtual bool WithEncryptionKey(std::function<bool (const CKeyingMaterial&)> cb) const = 0;
54 : : virtual bool HasEncryptionKeys() const = 0;
55 : : virtual bool IsLocked() const = 0;
56 : : //! Callback function for after TopUp completes containing any scripts that were added by a SPKMan
57 : : virtual void TopUpCallback(const std::set<CScript>&, ScriptPubKeyMan*) = 0;
58 : : };
59 : :
60 : : //! Constant representing an unknown spkm creation time
61 : : inline constexpr int64_t UNKNOWN_TIME = std::numeric_limits<int64_t>::max();
62 : :
63 : : //! Default for -keypool
64 : : inline constexpr unsigned int DEFAULT_KEYPOOL_SIZE = 1000;
65 : :
66 [ + - ]: 1120 : struct WalletDestination
67 : : {
68 : : CTxDestination dest;
69 : : std::optional<bool> internal;
70 : : };
71 : :
72 : : /*
73 : : * A class implementing ScriptPubKeyMan manages some (or all) scriptPubKeys used in a wallet.
74 : : * It contains the scripts and keys related to the scriptPubKeys it manages.
75 : : * A ScriptPubKeyMan will be able to give out scriptPubKeys to be used, as well as marking
76 : : * when a scriptPubKey has been used. It also handles when and how to store a scriptPubKey
77 : : * and its related scripts and keys, including encryption.
78 : : */
79 : : class ScriptPubKeyMan
80 : : {
81 : : protected:
82 : : WalletStorage& m_storage;
83 : :
84 : : public:
85 : 29807 : explicit ScriptPubKeyMan(WalletStorage& storage) : m_storage(storage) {}
86 : 29807 : virtual ~ScriptPubKeyMan() = default;
87 [ # # ]: 0 : virtual util::Result<CTxDestination> GetNewDestination(const OutputType type) { return util::Error{Untranslated("Not supported")}; }
88 : 0 : virtual bool IsMine(const CScript& script) const { return false; }
89 : :
90 : : //! Check that the given decryption key is valid for this ScriptPubKeyMan, i.e. it decrypts all of the keys handled by it.
91 : 0 : virtual bool CheckDecryptionKey(const CKeyingMaterial& master_key) { return false; }
92 : : //! Encrypt keys and write them to a batch with an active transaction. Update in-memory keys only after the transaction commits.
93 : 0 : virtual bool Encrypt(const CKeyingMaterial& master_key, WalletBatch* batch) { return false; }
94 : :
95 [ # # ]: 0 : virtual util::Result<CTxDestination> GetReservedDestination(const OutputType type, bool internal, int64_t& index) { return util::Error{Untranslated("Not supported")}; }
96 : 47246 : virtual void KeepDestination(int64_t index, const OutputType& type) {}
97 : 0 : virtual void ReturnDestination(int64_t index, bool internal, const CTxDestination& addr) {}
98 : :
99 : : /** Fills internal address pool. Use within ScriptPubKeyMan implementations should be used sparingly and only
100 : : * when something from the address pool is removed, excluding GetNewDestination and GetReservedDestination.
101 : : * External wallet code is primarily responsible for topping up prior to fetching new addresses
102 : : */
103 : 0 : virtual bool TopUp(unsigned int size = 0) { return false; }
104 : :
105 : : /** Mark unused addresses as being used
106 : : * Affects all keys up to and including the one determined by provided script.
107 : : *
108 : : * @param script determines the last key to mark as used
109 : : *
110 : : * @return All of the addresses affected
111 : : */
112 : 0 : virtual std::vector<WalletDestination> MarkUnusedAddresses(const CScript& script) { return {}; }
113 : :
114 : : /* Returns true if HD is enabled */
115 : 0 : virtual bool IsHDEnabled() const { return false; }
116 : :
117 : : /* Returns true if the wallet can give out new addresses. This means it has keys in the keypool or can generate new keys */
118 : 0 : virtual bool CanGetAddresses(bool internal = false) const { return false; }
119 : :
120 : 0 : virtual bool HavePrivateKeys() const { return false; }
121 : 0 : virtual bool HaveCryptedKeys() const { return false; }
122 : :
123 : 0 : virtual unsigned int GetKeyPoolSize() const { return 0; }
124 : :
125 : 1328 : virtual int64_t GetTimeFirstKey() const { return 0; }
126 : :
127 : 0 : virtual std::unique_ptr<CKeyMetadata> GetMetadata(const CTxDestination& dest) const { return nullptr; }
128 : :
129 : 0 : virtual std::unique_ptr<SigningProvider> GetSolvingProvider(const CScript& script) const { return nullptr; }
130 : :
131 : : /** Whether this ScriptPubKeyMan can provide a SigningProvider (via GetSolvingProvider) that, combined with
132 : : * sigdata, can produce solving data.
133 : : */
134 : 0 : virtual bool CanProvide(const CScript& script, SignatureData& sigdata) { return false; }
135 : :
136 : : /** Creates new signatures and adds them to the transaction. Returns whether all inputs were signed */
137 : 0 : virtual bool SignTransaction(CMutableTransaction& tx, const std::map<COutPoint, Coin>& coins, int sighash, std::map<int, bilingual_str>& input_errors) const { return false; }
138 : : /** Sign a message with the given script */
139 : 0 : virtual SigningResult SignMessage(const std::string& message, const PKHash& pkhash, std::string& str_sig) const { return SigningResult::SIGNING_FAILED; };
140 : : /** Adds script and derivation path information to a PSBT, and optionally signs it. */
141 : 0 : virtual std::optional<common::PSBTError> FillPSBT(PartiallySignedTransaction& psbt, const PrecomputedTransactionData& txdata, const common::PSBTFillOptions& options, int* n_signed = nullptr) const { return common::PSBTError::UNSUPPORTED; }
142 : :
143 : 0 : virtual uint256 GetID() const { return uint256(); }
144 : :
145 : : /** Returns a set of all the scriptPubKeys that this ScriptPubKeyMan watches */
146 : 0 : virtual std::unordered_set<CScript, SaltedSipHasher> GetScriptPubKeys() const { return {}; };
147 : :
148 : : /** Prepends the wallet name in logging output to ease debugging in multi-wallet use cases */
149 : : template <typename... Params>
150 : 560 : void WalletLogPrintf(util::ConstevalFormatString<sizeof...(Params)> wallet_fmt, const Params&... params) const
151 : : {
152 [ + - + - ]: 560 : LogInfo("[%s] %s", m_storage.LogName(), tfm::format(wallet_fmt, params...));
153 : 560 : };
154 : :
155 : : /** Keypool has new keys */
156 : : btcsignals::signal<void ()> NotifyCanGetAddressesChanged;
157 : :
158 : : /** Birth time changed */
159 : : btcsignals::signal<void (const ScriptPubKeyMan* spkm, int64_t new_birth_time)> NotifyFirstKeyTimeChanged;
160 : : };
161 : :
162 : : /** Output types associated with LegacyDataSPKM. */
163 : : inline const std::unordered_set<OutputType> LEGACY_OUTPUT_TYPES {
164 : : OutputType::LEGACY,
165 : : OutputType::P2SH_SEGWIT,
166 : : OutputType::BECH32,
167 : : };
168 : :
169 : : using KeyMap = std::map<CKeyID, CKey>;
170 : : using CryptedKeyMap = std::map<CKeyID, std::pair<CPubKey, std::vector<unsigned char>>>;
171 : :
172 : : // Manages the minimum data needed to load and migrate a legacy wallet.
173 : : class LegacyDataSPKM : public ScriptPubKeyMan, public FillableSigningProvider
174 : : {
175 : : private:
176 : : using WatchOnlySet = std::set<CScript>;
177 : : using WatchKeyMap = std::map<CKeyID, CPubKey>;
178 : :
179 : : CryptedKeyMap mapCryptedKeys GUARDED_BY(cs_KeyStore);
180 : : WatchOnlySet setWatchOnly GUARDED_BY(cs_KeyStore);
181 : : WatchKeyMap mapWatchKeys GUARDED_BY(cs_KeyStore);
182 : :
183 : : /* the HD chain data model (external chain counters) */
184 : : CHDChain m_hd_chain;
185 : : std::unordered_map<CKeyID, CHDChain, SaltedSipHasher> m_inactive_hd_chains;
186 : :
187 : : //! keeps track of whether Unlock has run a thorough check before
188 : : bool fDecryptionThoroughlyChecked = true;
189 : :
190 : : bool AddWatchOnlyInMem(const CScript &dest);
191 : : virtual bool AddKeyPubKeyInner(const CKey& key, const CPubKey &pubkey);
192 : : bool AddCryptedKeyInner(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret);
193 : :
194 : : // Helper function to retrieve a conservative superset of all output scripts that may be relevant to this LegacyDataSPKM.
195 : : // It may include scripts that are invalid or not actually watched by this LegacyDataSPKM.
196 : : // Used only in migration.
197 : : std::unordered_set<CScript, SaltedSipHasher> GetCandidateScriptPubKeys() const;
198 : :
199 : : bool IsMine(const CScript& script) const override;
200 : : bool CanProvide(const CScript& script, SignatureData& sigdata) override;
201 : : public:
202 : : using ScriptPubKeyMan::ScriptPubKeyMan;
203 : :
204 : : // Map from Key ID to key metadata.
205 : : std::map<CKeyID, CKeyMetadata> mapKeyMetadata GUARDED_BY(cs_KeyStore);
206 : :
207 : : // Map from Script ID to key metadata (for watch-only keys).
208 : : std::map<CScriptID, CKeyMetadata> m_script_metadata GUARDED_BY(cs_KeyStore);
209 : :
210 : : // ScriptPubKeyMan overrides
211 : : bool CheckDecryptionKey(const CKeyingMaterial& master_key) override;
212 : : std::unordered_set<CScript, SaltedSipHasher> GetScriptPubKeys() const override;
213 : : std::unique_ptr<SigningProvider> GetSolvingProvider(const CScript& script) const override;
214 : 1328 : uint256 GetID() const override { return uint256::ONE; }
215 : :
216 : : // FillableSigningProvider overrides
217 : : bool HaveKey(const CKeyID &address) const override;
218 : : bool GetKey(const CKeyID &address, CKey& keyOut) const override;
219 : : bool GetPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const override;
220 : : bool GetKeyOrigin(const CKeyID& keyid, KeyOriginInfo& info) const override;
221 : :
222 : : //! Load metadata (used by LoadWallet)
223 : : virtual void LoadKeyMetadata(const CKeyID& keyID, const CKeyMetadata &metadata);
224 : : virtual void LoadScriptMetadata(const CScriptID& script_id, const CKeyMetadata &metadata);
225 : :
226 : : //! Adds a watch-only address to the store, without saving it to disk (used by LoadWallet)
227 : : bool LoadWatchOnly(const CScript &dest);
228 : : //! Returns whether the watch-only script is in the wallet
229 : : bool HaveWatchOnly(const CScript &dest) const;
230 : : //! Adds a key to the store, without saving it to disk (used by LoadWallet)
231 : : bool LoadKey(const CKey& key, const CPubKey &pubkey);
232 : : //! Adds an encrypted key to the store, without saving it to disk (used by LoadWallet)
233 : : bool LoadCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret, bool checksum_valid);
234 : : //! Adds a CScript to the store
235 : : bool LoadCScript(const CScript& redeemScript);
236 : : //! Load a HD chain model (used by LoadWallet)
237 : : void LoadHDChain(const CHDChain& chain);
238 : : void AddInactiveHDChain(const CHDChain& chain);
239 : : const CHDChain& GetHDChain() const { return m_hd_chain; }
240 : :
241 : : //! Fetches a pubkey from mapWatchKeys if it exists there
242 : : bool GetWatchPubKey(const CKeyID &address, CPubKey &pubkey_out) const;
243 : :
244 : : /**
245 : : * Retrieves scripts that were imported by bugs into the legacy spkm and are
246 : : * simply invalid, such as a sh(sh(pkh())) script, or not watched.
247 : : */
248 : : std::unordered_set<CScript, SaltedSipHasher> GetNotMineScriptPubKeys() const;
249 : :
250 : : /** Get the DescriptorScriptPubKeyMans (with private keys) that have the same scriptPubKeys as this LegacyDataSPKM.
251 : : * Does not modify this LegacyDataSPKM. */
252 : : std::optional<MigrationData> MigrateToDescriptor();
253 : : /** Delete the legacy wallet records from disk. */
254 : : bool DeleteRecordsWithDB(WalletBatch& batch);
255 : : };
256 : :
257 : : /** SigningProvider wrapper for LegacyDataSPKM that does not provide private keys. */
258 : : class LegacySigningProvider : public SigningProvider
259 : : {
260 : : private:
261 : : const LegacyDataSPKM& m_spk_man;
262 : : public:
263 : 16560 : explicit LegacySigningProvider(const LegacyDataSPKM& spk_man) : m_spk_man(spk_man) {}
264 : :
265 : 15367 : bool GetCScript(const CScriptID &scriptid, CScript& script) const override { return m_spk_man.GetCScript(scriptid, script); }
266 : 0 : bool HaveCScript(const CScriptID &scriptid) const override { return m_spk_man.HaveCScript(scriptid); }
267 : 1961 : bool GetPubKey(const CKeyID &address, CPubKey& pubkey) const override { return m_spk_man.GetPubKey(address, pubkey); }
268 : 0 : bool GetKey(const CKeyID &address, CKey& key) const override { return false; }
269 : 0 : bool HaveKey(const CKeyID &address) const override { return false; }
270 : 97656 : bool GetKeyOrigin(const CKeyID& keyid, KeyOriginInfo& info) const override { return m_spk_man.GetKeyOrigin(keyid, info); }
271 : : };
272 : :
273 : : class DescriptorScriptPubKeyMan : public ScriptPubKeyMan
274 : : {
275 : : private:
276 : : using ScriptPubKeyMap = std::map<CScript, int32_t>; // Map of scripts to descriptor range index
277 : : using PubKeyMap = std::map<CPubKey, int32_t>; // Map of pubkeys involved in scripts to descriptor range index
278 : :
279 : : ScriptPubKeyMap m_map_script_pub_keys GUARDED_BY(cs_desc_man);
280 : : PubKeyMap m_map_pubkeys GUARDED_BY(cs_desc_man);
281 : : int32_t m_max_cached_index = -1;
282 : :
283 : : KeyMap m_map_keys GUARDED_BY(cs_desc_man);
284 : : CryptedKeyMap m_map_crypted_keys GUARDED_BY(cs_desc_man);
285 : :
286 : : //! keeps track of whether Unlock has run a thorough check before
287 : : bool m_decryption_thoroughly_checked = false;
288 : :
289 : : //! Number of pre-generated keys/scripts (part of the look-ahead process, used to detect payments)
290 : : int64_t m_keypool_size GUARDED_BY(cs_desc_man){DEFAULT_KEYPOOL_SIZE};
291 : :
292 : : /** Map of a session id to MuSig2 secnonce
293 : : *
294 : : * Stores MuSig2 secnonces while the MuSig2 signing session is still ongoing.
295 : : * Note that these secnonces must not be reused. In order to avoid being tricked into
296 : : * reusing a nonce, this map is held only in memory and must not be written to disk.
297 : : * The side effect is that signing sessions cannot persist across restarts, but this
298 : : * must be done in order to prevent nonce reuse.
299 : : *
300 : : * The session id is an arbitrary value set by the signer in order for the signing logic
301 : : * to find ongoing signing sessions, see MuSig2SessionID.
302 : : */
303 : : mutable std::map<uint256, MuSig2SecNonce> m_musig2_secnonces;
304 : :
305 : : const uint256 m_id;
306 : :
307 : : bool AddDescriptorKeyWithDB(WalletBatch& batch, const CKey& key, const CPubKey &pubkey) EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
308 : :
309 : : KeyMap GetKeys() const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
310 : :
311 : : // Cached FlatSigningProviders to avoid regenerating them each time they are needed.
312 : : mutable std::map<int32_t, FlatSigningProvider> m_map_signing_providers;
313 : : // Fetch the SigningProvider for the given script and optionally include private keys
314 : : std::unique_ptr<FlatSigningProvider> GetSigningProvider(const CScript& script, bool include_private = false) const;
315 : : // Fetch the SigningProvider for a given index and optionally include private keys. Called by the above functions.
316 : : std::unique_ptr<FlatSigningProvider> GetSigningProvider(int32_t index, bool include_private = false) const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
317 : :
318 : : void Load();
319 : :
320 : : void UpdateWithSigningProvider(WalletBatch& batch, const FlatSigningProvider& signing_provider) EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
321 : :
322 : : protected:
323 : : //! Create a DescriptorScriptPubKeyMan from existing data (i.e. during loading)
324 : : DescriptorScriptPubKeyMan(WalletStorage& storage, const uint256& id, WalletDescriptor& descriptor, int64_t keypool_size, const KeyMap& keys, const CryptedKeyMap& ckeys);
325 : :
326 : : //! Create a new DescriptorScriptPubKeyMan from a descriptor (e.g. from an import, newly generated)
327 : 28479 : DescriptorScriptPubKeyMan(WalletStorage& storage, WalletDescriptor& descriptor, int64_t keypool_size)
328 : 28479 : : ScriptPubKeyMan(storage),
329 : 28479 : m_keypool_size(keypool_size),
330 [ + - ]: 28479 : m_id(CompatDescriptorHash(*descriptor.descriptor)),
331 [ + - + - ]: 28479 : m_wallet_descriptor(descriptor)
332 : 28479 : {}
333 : :
334 : : WalletDescriptor m_wallet_descriptor GUARDED_BY(cs_desc_man);
335 : : void IncIndex() EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
336 : : void DecIndex() EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
337 : : void SetRangeEnd(int32_t end) EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
338 : :
339 : : //! Same as 'TopUp' but designed for use within a batch transaction context
340 : : bool TopUpWithDB(WalletBatch& batch, unsigned int size = 0);
341 : :
342 : : public:
343 : : static std::unique_ptr<DescriptorScriptPubKeyMan> LoadFromStorage(WalletStorage& storage, const uint256& id, WalletDescriptor& descriptor, int64_t keypool_size, const KeyMap& keys, const CryptedKeyMap& ckeys);
344 : : static std::unique_ptr<DescriptorScriptPubKeyMan> CreateFromImport(WalletStorage& storage, WalletDescriptor& descriptor, int64_t keypool_size, const FlatSigningProvider& provider);
345 : : static std::unique_ptr<DescriptorScriptPubKeyMan> CreateFromMigration(WalletStorage& storage, WalletBatch& batch, WalletDescriptor& descriptor, int64_t keypool_size, const FlatSigningProvider& provider);
346 : : static std::unique_ptr<DescriptorScriptPubKeyMan> GenerateNewSingleSig(WalletStorage& storage, WalletBatch& batch, int64_t keypool_size, const CExtKey& master_key, OutputType addr_type, bool internal);
347 : :
348 : : mutable RecursiveMutex cs_desc_man;
349 : :
350 : : util::Result<CTxDestination> GetNewDestination(OutputType type) override;
351 : : bool IsMine(const CScript& script) const override;
352 : :
353 : : bool CheckDecryptionKey(const CKeyingMaterial& master_key) override;
354 : : bool Encrypt(const CKeyingMaterial& master_key, WalletBatch* batch) override;
355 : :
356 : : util::Result<CTxDestination> GetReservedDestination(OutputType type, bool internal, int64_t& index) override;
357 : : void ReturnDestination(int64_t index, bool internal, const CTxDestination& addr) override;
358 : :
359 : : // Tops up the descriptor cache and m_map_script_pub_keys. The cache is stored in the wallet file
360 : : // and is used to expand the descriptor in GetNewDestination. Descriptor wallets rely more on
361 : : // ephemeral data than legacy wallets. For wallets using unhardened derivation
362 : : // (with or without private keys), the "keypool" is a single xpub.
363 : : bool TopUp(unsigned int size = 0) override;
364 : :
365 : : std::vector<WalletDestination> MarkUnusedAddresses(const CScript& script) override;
366 : :
367 : : bool IsHDEnabled() const override;
368 : :
369 : : bool HavePrivateKeys() const override;
370 : : bool HasPrivKey(const CKeyID& keyid) const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
371 : : //! Retrieve the particular key if it is available. Returns nullopt if the key is not in the wallet, or if the wallet is locked.
372 : : std::optional<CKey> GetKey(const CKeyID& keyid) const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
373 : : bool HaveCryptedKeys() const override;
374 : :
375 : : unsigned int GetKeyPoolSize() const override;
376 : :
377 : : int64_t GetTimeFirstKey() const override;
378 : :
379 : : std::unique_ptr<CKeyMetadata> GetMetadata(const CTxDestination& dest) const override;
380 : :
381 : : bool CanGetAddresses(bool internal = false) const override;
382 : :
383 : : std::unique_ptr<SigningProvider> GetSolvingProvider(const CScript& script) const override;
384 : :
385 : : bool CanProvide(const CScript& script, SignatureData& sigdata) override;
386 : :
387 : : // Fetch the SigningProvider for the given pubkey and always include private keys. This should only be called by signing code.
388 : : std::unique_ptr<FlatSigningProvider> GetSigningProvider(const CPubKey& pubkey) const;
389 : :
390 : : bool SignTransaction(CMutableTransaction& tx, const std::map<COutPoint, Coin>& coins, int sighash, std::map<int, bilingual_str>& input_errors) const override;
391 : : SigningResult SignMessage(const std::string& message, const PKHash& pkhash, std::string& str_sig) const override;
392 : : std::optional<common::PSBTError> FillPSBT(PartiallySignedTransaction& psbt, const PrecomputedTransactionData& txdata, const common::PSBTFillOptions& options, int* n_signed = nullptr) const override;
393 : :
394 : : uint256 GetID() const override;
395 : :
396 : : bool HasWalletDescriptor(const WalletDescriptor& desc) const;
397 : : util::Result<void> UpdateWalletDescriptor(WalletDescriptor& descriptor, const FlatSigningProvider& provider);
398 : : bool CanUpdateToWalletDescriptor(const WalletDescriptor& descriptor, std::string& error);
399 : : void WriteDescriptor();
400 : :
401 : : WalletDescriptor GetWalletDescriptor() const EXCLUSIVE_LOCKS_REQUIRED(cs_desc_man);
402 : : std::unordered_set<CScript, SaltedSipHasher> GetScriptPubKeys() const override;
403 : : std::unordered_set<CScript, SaltedSipHasher> GetScriptPubKeys(int32_t minimum_index) const;
404 : : int32_t GetEndRange() const;
405 : :
406 : : [[nodiscard]] bool GetDescriptorString(std::string& out, bool priv) const;
407 : :
408 : : void UpgradeDescriptorCache();
409 : : };
410 : :
411 : : /** struct containing information needed for migrating legacy wallets to descriptor wallets */
412 : : struct MigrationData
413 : : {
414 : : CExtKey master_key;
415 : : std::vector<std::pair<std::string, int64_t>> watch_descs;
416 : : std::vector<std::pair<std::string, int64_t>> solvable_descs;
417 : : std::vector<std::unique_ptr<DescriptorScriptPubKeyMan>> desc_spkms;
418 : : std::shared_ptr<CWallet> watchonly_wallet{nullptr};
419 : : std::shared_ptr<CWallet> solvable_wallet{nullptr};
420 : : };
421 : :
422 : : } // namespace wallet
423 : :
424 : : #endif // BITCOIN_WALLET_SCRIPTPUBKEYMAN_H
|