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 <script/descriptor.h>
6 : :
7 : : #include <hash.h>
8 : : #include <key_io.h>
9 : : #include <pubkey.h>
10 : : #include <script/miniscript.h>
11 : : #include <script/script.h>
12 : : #include <script/signingprovider.h>
13 : : #include <script/solver.h>
14 : : #include <uint256.h>
15 : :
16 : : #include <common/args.h>
17 : : #include <span.h>
18 : : #include <util/bip32.h>
19 : : #include <util/check.h>
20 : : #include <util/spanparsing.h>
21 : : #include <util/strencodings.h>
22 : : #include <util/vector.h>
23 : :
24 : : #include <memory>
25 : : #include <numeric>
26 : : #include <optional>
27 : : #include <string>
28 : : #include <vector>
29 : :
30 : : namespace {
31 : :
32 : : ////////////////////////////////////////////////////////////////////////////
33 : : // Checksum //
34 : : ////////////////////////////////////////////////////////////////////////////
35 : :
36 : : // This section implements a checksum algorithm for descriptors with the
37 : : // following properties:
38 : : // * Mistakes in a descriptor string are measured in "symbol errors". The higher
39 : : // the number of symbol errors, the harder it is to detect:
40 : : // * An error substituting a character from 0123456789()[],'/*abcdefgh@:$%{} for
41 : : // another in that set always counts as 1 symbol error.
42 : : // * Note that hex encoded keys are covered by these characters. Xprvs and
43 : : // xpubs use other characters too, but already have their own checksum
44 : : // mechanism.
45 : : // * Function names like "multi()" use other characters, but mistakes in
46 : : // these would generally result in an unparsable descriptor.
47 : : // * A case error always counts as 1 symbol error.
48 : : // * Any other 1 character substitution error counts as 1 or 2 symbol errors.
49 : : // * Any 1 symbol error is always detected.
50 : : // * Any 2 or 3 symbol error in a descriptor of up to 49154 characters is always detected.
51 : : // * Any 4 symbol error in a descriptor of up to 507 characters is always detected.
52 : : // * Any 5 symbol error in a descriptor of up to 77 characters is always detected.
53 : : // * Is optimized to minimize the chance a 5 symbol error in a descriptor up to 387 characters is undetected
54 : : // * Random errors have a chance of 1 in 2**40 of being undetected.
55 : : //
56 : : // These properties are achieved by expanding every group of 3 (non checksum) characters into
57 : : // 4 GF(32) symbols, over which a cyclic code is defined.
58 : :
59 : : /*
60 : : * Interprets c as 8 groups of 5 bits which are the coefficients of a degree 8 polynomial over GF(32),
61 : : * multiplies that polynomial by x, computes its remainder modulo a generator, and adds the constant term val.
62 : : *
63 : : * This generator is G(x) = x^8 + {30}x^7 + {23}x^6 + {15}x^5 + {14}x^4 + {10}x^3 + {6}x^2 + {12}x + {9}.
64 : : * It is chosen to define an cyclic error detecting code which is selected by:
65 : : * - Starting from all BCH codes over GF(32) of degree 8 and below, which by construction guarantee detecting
66 : : * 3 errors in windows up to 19000 symbols.
67 : : * - Taking all those generators, and for degree 7 ones, extend them to degree 8 by adding all degree-1 factors.
68 : : * - Selecting just the set of generators that guarantee detecting 4 errors in a window of length 512.
69 : : * - Selecting one of those with best worst-case behavior for 5 errors in windows of length up to 512.
70 : : *
71 : : * The generator and the constants to implement it can be verified using this Sage code:
72 : : * B = GF(2) # Binary field
73 : : * BP.<b> = B[] # Polynomials over the binary field
74 : 173 : * F_mod = b**5 + b**3 + 1
75 : : * F.<f> = GF(32, modulus=F_mod, repr='int') # GF(32) definition
76 : : * FP.<x> = F[] # Polynomials over GF(32)
77 : : * E_mod = x**3 + x + F.fetch_int(8)
78 : : * E.<e> = F.extension(E_mod) # Extension field definition
79 : : * alpha = e**2743 # Choice of an element in extension field
80 : : * for p in divisors(E.order() - 1): # Verify alpha has order 32767.
81 : : * assert((alpha**p == 1) == (p % 32767 == 0))
82 : : * G = lcm([(alpha**i).minpoly() for i in [1056,1057,1058]] + [x + 1])
83 : : * print(G) # Print out the generator
84 : : * for i in [1,2,4,8,16]: # Print out {1,2,4,8,16}*(G mod x^8), packed in hex integers.
85 : : * v = 0
86 : : * for coef in reversed((F.fetch_int(i)*(G % x**8)).coefficients(sparse=True)):
87 : : * v = v*32 + coef.integer_representation()
88 : : * print("0x%x" % v)
89 : : */
90 : 75117393 : uint64_t PolyMod(uint64_t c, int val)
91 : : {
92 : 75117393 : uint8_t c0 = c >> 35;
93 : 75117393 : c = ((c & 0x7ffffffff) << 5) ^ val;
94 [ + + ]: 75117393 : if (c0 & 1) c ^= 0xf5dee51989;
95 [ + + ]: 75117393 : if (c0 & 2) c ^= 0xa9fdca3312;
96 [ + + ]: 75117393 : if (c0 & 4) c ^= 0x1bab10e32d;
97 [ + + ]: 75117393 : if (c0 & 8) c ^= 0x3706b1677a;
98 [ + + ]: 75117393 : if (c0 & 16) c ^= 0x644d626ffd;
99 : 75117393 : return c;
100 : : }
101 : :
102 : 605401 : std::string DescriptorChecksum(const Span<const char>& span)
103 : : {
104 : : /** A character set designed such that:
105 : : * - The most common 'unprotected' descriptor characters (hex, keypaths) are in the first group of 32.
106 : : * - Case errors cause an offset that's a multiple of 32.
107 : : * - As many alphabetic characters are in the same group (while following the above restrictions).
108 : : *
109 : : * If p(x) gives the position of a character c in this character set, every group of 3 characters
110 : : * (a,b,c) is encoded as the 4 symbols (p(a) & 31, p(b) & 31, p(c) & 31, (p(a) / 32) + 3 * (p(b) / 32) + 9 * (p(c) / 32).
111 : : * This means that changes that only affect the lower 5 bits of the position, or only the higher 2 bits, will just
112 : : * affect a single symbol.
113 : : *
114 : : * As a result, within-group-of-32 errors count as 1 symbol, as do cross-group errors that don't affect
115 : : * the position within the groups.
116 : : */
117 [ + + - + ]: 605408 : static std::string INPUT_CHARSET =
118 [ + - ]: 7 : "0123456789()[],'/*abcdefgh@:$%{}"
119 : : "IJKLMNOPQRSTUVWXYZ&+-.;<=>?!^_|~"
120 : : "ijklmnopqrstuvwxyzABCDEFGH`#\"\\ ";
121 : :
122 : : /** The character set for the checksum itself (same as bech32). */
123 [ + + - + : 605401 : static std::string CHECKSUM_CHARSET = "qpzry9x8gf2tvdw0s3jn54khce6mua7l";
- + ]
124 : :
125 : 605401 : uint64_t c = 1;
126 : 605401 : int cls = 0;
127 : 605401 : int clscount = 0;
128 [ + + ]: 53084185 : for (auto ch : span) {
129 : 52478832 : auto pos = INPUT_CHARSET.find(ch);
130 [ + + + - ]: 52478832 : if (pos == std::string::npos) return "";
131 : 52478784 : c = PolyMod(c, pos & 31); // Emit a symbol for the position inside the group, for every character.
132 : 52478784 : cls = cls * 3 + (pos >> 5); // Accumulate the group numbers
133 [ + + ]: 52478784 : if (++clscount == 3) {
134 : : // Emit an extra symbol representing the group numbers, for every 3 characters.
135 : 17245486 : c = PolyMod(c, cls);
136 : 17245486 : cls = 0;
137 : 17245486 : clscount = 0;
138 : 17245486 : }
139 : : }
140 [ + + ]: 605353 : if (clscount > 0) c = PolyMod(c, cls);
141 [ + + ]: 5448177 : for (int j = 0; j < 8; ++j) c = PolyMod(c, 0); // Shift further to determine the checksum.
142 : 605353 : c ^= 1; // Prevent appending zeroes from not affecting the checksum.
143 : :
144 [ + - ]: 605353 : std::string ret(8, ' ');
145 [ + + + - : 5448177 : for (int j = 0; j < 8; ++j) ret[j] = CHECKSUM_CHARSET[(c >> (5 * (7 - j))) & 31];
+ - ]
146 : 605353 : return ret;
147 [ + - ]: 1210754 : }
148 : :
149 [ + - + - : 601736 : std::string AddChecksum(const std::string& str) { return str + "#" + DescriptorChecksum(str); }
- + ]
150 : :
151 : : ////////////////////////////////////////////////////////////////////////////
152 : : // Internal representation //
153 : : ////////////////////////////////////////////////////////////////////////////
154 : :
155 : : typedef std::vector<uint32_t> KeyPath;
156 : :
157 : : /** Interface for public key objects in descriptors. */
158 : : struct PubkeyProvider
159 : : {
160 : : protected:
161 : : //! Index of this key expression in the descriptor
162 : : //! E.g. If this PubkeyProvider is key1 in multi(2, key1, key2, key3), then m_expr_index = 0
163 : : uint32_t m_expr_index;
164 : :
165 : : public:
166 : 67518 : explicit PubkeyProvider(uint32_t exp_index) : m_expr_index(exp_index) {}
167 : :
168 : 67518 : virtual ~PubkeyProvider() = default;
169 : :
170 : : /** Compare two public keys represented by this provider.
171 : : * Used by the Miniscript descriptors to check for duplicate keys in the script.
172 : : */
173 : 21134 : bool operator<(PubkeyProvider& other) const {
174 : 21134 : CPubKey a, b;
175 : 21134 : SigningProvider dummy;
176 : 21134 : KeyOriginInfo dummy_info;
177 : :
178 [ + - ]: 21134 : GetPubKey(0, dummy, a, dummy_info);
179 [ + - ]: 21134 : other.GetPubKey(0, dummy, b, dummy_info);
180 : :
181 : 21134 : return a < b;
182 : 21134 : }
183 : :
184 : : /** Derive a public key.
185 : : * read_cache is the cache to read keys from (if not nullptr)
186 : : * write_cache is the cache to write keys to (if not nullptr)
187 : : * Caches are not exclusive but this is not tested. Currently we use them exclusively
188 : : */
189 : : virtual bool GetPubKey(int pos, const SigningProvider& arg, CPubKey& key, KeyOriginInfo& info, const DescriptorCache* read_cache = nullptr, DescriptorCache* write_cache = nullptr) const = 0;
190 : :
191 : : /** Whether this represent multiple public keys at different positions. */
192 : : virtual bool IsRange() const = 0;
193 : :
194 : : /** Get the size of the generated public key(s) in bytes (33 or 65). */
195 : : virtual size_t GetSize() const = 0;
196 : :
197 : : enum class StringType {
198 : : PUBLIC,
199 : : COMPAT // string calculation that mustn't change over time to stay compatible with previous software versions
200 : : };
201 : :
202 : : /** Get the descriptor string form. */
203 : : virtual std::string ToString(StringType type=StringType::PUBLIC) const = 0;
204 : :
205 : : /** Get the descriptor string form including private data (if available in arg). */
206 : : virtual bool ToPrivateString(const SigningProvider& arg, std::string& out) const = 0;
207 : :
208 : : /** Get the descriptor string form with the xpub at the last hardened derivation,
209 : : * and always use h for hardened derivation.
210 : : */
211 : : virtual bool ToNormalizedString(const SigningProvider& arg, std::string& out, const DescriptorCache* cache = nullptr) const = 0;
212 : :
213 : : /** Derive a private key, if private data is available in arg. */
214 : : virtual bool GetPrivKey(int pos, const SigningProvider& arg, CKey& key) const = 0;
215 : : };
216 : :
217 : : class OriginPubkeyProvider final : public PubkeyProvider
218 : : {
219 : : KeyOriginInfo m_origin;
220 : : std::unique_ptr<PubkeyProvider> m_provider;
221 : : bool m_apostrophe;
222 : :
223 : 1211 : std::string OriginString(StringType type, bool normalized=false) const
224 : : {
225 : : // If StringType==COMPAT, always use the apostrophe to stay compatible with previous versions
226 [ + + + + ]: 1211 : bool use_apostrophe = (!normalized && m_apostrophe) || type == StringType::COMPAT;
227 [ + - + - ]: 1211 : return HexStr(m_origin.fingerprint) + FormatHDKeypath(m_origin.path, use_apostrophe);
228 : 0 : }
229 : :
230 : : public:
231 : 6918 : OriginPubkeyProvider(uint32_t exp_index, KeyOriginInfo info, std::unique_ptr<PubkeyProvider> provider, bool apostrophe) : PubkeyProvider(exp_index), m_origin(std::move(info)), m_provider(std::move(provider)), m_apostrophe(apostrophe) {}
232 : 8719 : bool GetPubKey(int pos, const SigningProvider& arg, CPubKey& key, KeyOriginInfo& info, const DescriptorCache* read_cache = nullptr, DescriptorCache* write_cache = nullptr) const override
233 : : {
234 [ + + ]: 8719 : if (!m_provider->GetPubKey(pos, arg, key, info, read_cache, write_cache)) return false;
235 : 8533 : std::copy(std::begin(m_origin.fingerprint), std::end(m_origin.fingerprint), info.fingerprint);
236 : 8533 : info.path.insert(info.path.begin(), m_origin.path.begin(), m_origin.path.end());
237 : 8533 : return true;
238 : 8719 : }
239 : 299 : bool IsRange() const override { return m_provider->IsRange(); }
240 : 1414 : size_t GetSize() const override { return m_provider->GetSize(); }
241 [ + - + - : 762 : std::string ToString(StringType type) const override { return "[" + OriginString(type) + "]" + m_provider->ToString(type); }
+ - - + ]
242 : 216 : bool ToPrivateString(const SigningProvider& arg, std::string& ret) const override
243 : : {
244 : 216 : std::string sub;
245 [ + - + + ]: 216 : if (!m_provider->ToPrivateString(arg, sub)) return false;
246 [ + - + - : 208 : ret = "[" + OriginString(StringType::PUBLIC) + "]" + std::move(sub);
+ - - + ]
247 : 208 : return true;
248 : 216 : }
249 : 243 : bool ToNormalizedString(const SigningProvider& arg, std::string& ret, const DescriptorCache* cache) const override
250 : : {
251 : 243 : std::string sub;
252 [ + - + + ]: 243 : if (!m_provider->ToNormalizedString(arg, sub, cache)) return false;
253 : : // If m_provider is a BIP32PubkeyProvider, we may get a string formatted like a OriginPubkeyProvider
254 : : // In that case, we need to strip out the leading square bracket and fingerprint from the substring,
255 : : // and append that to our own origin string.
256 [ + - + + ]: 241 : if (sub[0] == '[') {
257 [ + - ]: 7 : sub = sub.substr(9);
258 [ + - + - : 7 : ret = "[" + OriginString(StringType::PUBLIC, /*normalized=*/true) + std::move(sub);
- + ]
259 : 7 : } else {
260 [ + - + - : 234 : ret = "[" + OriginString(StringType::PUBLIC, /*normalized=*/true) + "]" + std::move(sub);
+ - - + ]
261 : : }
262 : 241 : return true;
263 : 243 : }
264 : 269 : bool GetPrivKey(int pos, const SigningProvider& arg, CKey& key) const override
265 : : {
266 : 269 : return m_provider->GetPrivKey(pos, arg, key);
267 : : }
268 : : };
269 : :
270 : : /** An object representing a parsed constant public key in a descriptor. */
271 : : class ConstPubkeyProvider final : public PubkeyProvider
272 : : {
273 : : CPubKey m_pubkey;
274 : : bool m_xonly;
275 : :
276 : : public:
277 : 52701 : ConstPubkeyProvider(uint32_t exp_index, const CPubKey& pubkey, bool xonly) : PubkeyProvider(exp_index), m_pubkey(pubkey), m_xonly(xonly) {}
278 : 35742 : bool GetPubKey(int pos, const SigningProvider& arg, CPubKey& key, KeyOriginInfo& info, const DescriptorCache* read_cache = nullptr, DescriptorCache* write_cache = nullptr) const override
279 : : {
280 : 35742 : key = m_pubkey;
281 [ + - ]: 35915 : info.path.clear();
282 : 35742 : CKeyID keyid = m_pubkey.GetID();
283 [ + - - + : 35915 : std::copy(keyid.begin(), keyid.begin() + sizeof(info.fingerprint), info.fingerprint);
+ - + - ]
284 : 35742 : return true;
285 [ + - ]: 173 : }
286 : 2583 : bool IsRange() const override { return false; }
287 : 4999 : size_t GetSize() const override { return m_pubkey.size(); }
288 [ + + + - : 41225 : std::string ToString(StringType type) const override { return m_xonly ? HexStr(m_pubkey).substr(2) : HexStr(m_pubkey); }
+ - + - +
+ # # ]
289 [ + - + - ]: 520 : bool ToPrivateString(const SigningProvider& arg, std::string& ret) const override
290 : : {
291 : 347 : CKey key;
292 [ + + ]: 347 : if (m_xonly) {
293 [ + - + - : 240 : for (const auto& keyid : XOnlyPubKey(m_pubkey).GetKeyIDs()) {
+ + ]
294 [ + - ]: 160 : arg.GetKey(keyid, key);
295 [ + - + + ]: 160 : if (key.IsValid()) break;
296 : : }
297 : 80 : } else {
298 [ + - + - ]: 267 : arg.GetKey(m_pubkey.GetID(), key);
299 : : }
300 [ + - + + ]: 347 : if (!key.IsValid()) return false;
301 [ + - ]: 147 : ret = EncodeSecret(key);
302 : 147 : return true;
303 : 347 : }
304 : 1216 : bool ToNormalizedString(const SigningProvider& arg, std::string& ret, const DescriptorCache* cache) const override
305 : : {
306 : 1216 : ret = ToString(StringType::PUBLIC);
307 : 1216 : return true;
308 : : }
309 : 1350 : bool GetPrivKey(int pos, const SigningProvider& arg, CKey& key) const override
310 : : {
311 : 1350 : return arg.GetKey(m_pubkey.GetID(), key);
312 : : }
313 : : };
314 : :
315 : : enum class DeriveType {
316 : : NO,
317 : : UNHARDENED,
318 : : HARDENED,
319 : : };
320 : :
321 : : /** An object representing a parsed extended public key in a descriptor. */
322 : : class BIP32PubkeyProvider final : public PubkeyProvider
323 : : {
324 : : // Root xpub, path, and final derivation step type being used, if any
325 : : CExtPubKey m_root_extkey;
326 : : KeyPath m_path;
327 : : DeriveType m_derive;
328 : : // Whether ' or h is used in harded derivation
329 : : bool m_apostrophe;
330 : :
331 : 6880 : bool GetExtKey(const SigningProvider& arg, CExtKey& ret) const
332 : : {
333 : 6880 : CKey key;
334 [ + - + - : 6880 : if (!arg.GetKey(m_root_extkey.pubkey.GetID(), key)) return false;
+ + ]
335 : 4463 : ret.nDepth = m_root_extkey.nDepth;
336 [ + - ]: 4463 : std::copy(m_root_extkey.vchFingerprint, m_root_extkey.vchFingerprint + sizeof(ret.vchFingerprint), ret.vchFingerprint);
337 : 4463 : ret.nChild = m_root_extkey.nChild;
338 : 4463 : ret.chaincode = m_root_extkey.chaincode;
339 [ + - ]: 4463 : ret.key = key;
340 : 4463 : return true;
341 : 6880 : }
342 : :
343 : : // Derives the last xprv
344 : 5646 : bool GetDerivedExtKey(const SigningProvider& arg, CExtKey& xprv, CExtKey& last_hardened) const
345 : : {
346 [ + + ]: 5646 : if (!GetExtKey(arg, xprv)) return false;
347 [ + + ]: 81564 : for (auto entry : m_path) {
348 [ + + ]: 78273 : if (!xprv.Derive(xprv, entry)) return false;
349 [ + + ]: 78231 : if (entry >> 31) {
350 : 10359 : last_hardened = xprv;
351 : 10359 : }
352 : : }
353 : 3291 : return true;
354 : 5646 : }
355 : :
356 : 12733 : bool IsHardened() const
357 : : {
358 [ + + ]: 12733 : if (m_derive == DeriveType::HARDENED) return true;
359 [ + + ]: 275204 : for (auto entry : m_path) {
360 [ + + ]: 265200 : if (entry >> 31) return true;
361 : : }
362 : 10004 : return false;
363 : 12733 : }
364 : :
365 : : public:
366 : 7899 : BIP32PubkeyProvider(uint32_t exp_index, const CExtPubKey& extkey, KeyPath path, DeriveType derive, bool apostrophe) : PubkeyProvider(exp_index), m_root_extkey(extkey), m_path(std::move(path)), m_derive(derive), m_apostrophe(apostrophe) {}
367 : 8258 : bool IsRange() const override { return m_derive != DeriveType::NO; }
368 : 7537 : size_t GetSize() const override { return 33; }
369 : 15025 : bool GetPubKey(int pos, const SigningProvider& arg, CPubKey& key_out, KeyOriginInfo& final_info_out, const DescriptorCache* read_cache = nullptr, DescriptorCache* write_cache = nullptr) const override
370 : : {
371 : : // Info of parent of the to be derived pubkey
372 : 15025 : KeyOriginInfo parent_info;
373 [ + - ]: 15025 : CKeyID keyid = m_root_extkey.pubkey.GetID();
374 [ + - ]: 15025 : std::copy(keyid.begin(), keyid.begin() + sizeof(parent_info.fingerprint), parent_info.fingerprint);
375 [ + - ]: 15025 : parent_info.path = m_path;
376 : :
377 : : // Info of the derived key itself which is copied out upon successful completion
378 [ + - ]: 15025 : KeyOriginInfo final_info_out_tmp = parent_info;
379 [ + + + - ]: 15025 : if (m_derive == DeriveType::UNHARDENED) final_info_out_tmp.path.push_back((uint32_t)pos);
380 [ + + + - ]: 15025 : if (m_derive == DeriveType::HARDENED) final_info_out_tmp.path.push_back(((uint32_t)pos) | 0x80000000L);
381 : :
382 : : // Derive keys or fetch them from cache
383 : 15025 : CExtPubKey final_extkey = m_root_extkey;
384 : 15025 : CExtPubKey parent_extkey = m_root_extkey;
385 [ + - ]: 15025 : CExtPubKey last_hardened_extkey;
386 : 15025 : bool der = true;
387 [ + + ]: 15025 : if (read_cache) {
388 [ + - + + ]: 2292 : if (!read_cache->GetCachedDerivedExtPubKey(m_expr_index, pos, final_extkey)) {
389 [ + + ]: 2240 : if (m_derive == DeriveType::HARDENED) return false;
390 : : // Try to get the derivation parent
391 [ + - + + ]: 2237 : if (!read_cache->GetCachedParentExtPubKey(m_expr_index, parent_extkey)) return false;
392 : 2203 : final_extkey = parent_extkey;
393 [ + + + - ]: 2203 : if (m_derive == DeriveType::UNHARDENED) der = parent_extkey.Derive(final_extkey, pos);
394 : 2203 : }
395 [ + - + + ]: 14988 : } else if (IsHardened()) {
396 [ + - ]: 2729 : CExtKey xprv;
397 [ + - ]: 2729 : CExtKey lh_xprv;
398 [ + - + + ]: 2729 : if (!GetDerivedExtKey(arg, xprv, lh_xprv)) return false;
399 [ + - ]: 656 : parent_extkey = xprv.Neuter();
400 [ + + + - ]: 656 : if (m_derive == DeriveType::UNHARDENED) der = xprv.Derive(xprv, pos);
401 [ + + + - ]: 656 : if (m_derive == DeriveType::HARDENED) der = xprv.Derive(xprv, pos | 0x80000000UL);
402 [ + - ]: 656 : final_extkey = xprv.Neuter();
403 [ + + ]: 656 : if (lh_xprv.key.IsValid()) {
404 [ + - ]: 604 : last_hardened_extkey = lh_xprv.Neuter();
405 : 604 : }
406 [ + + ]: 2729 : } else {
407 [ + + ]: 243680 : for (auto entry : m_path) {
408 [ + - + + ]: 233738 : if (!parent_extkey.Derive(parent_extkey, entry)) return false;
409 : : }
410 : 9942 : final_extkey = parent_extkey;
411 [ + + + - ]: 9942 : if (m_derive == DeriveType::UNHARDENED) der = parent_extkey.Derive(final_extkey, pos);
412 [ + - ]: 9942 : assert(m_derive != DeriveType::HARDENED);
413 : : }
414 [ + + ]: 12853 : if (!der) return false;
415 : :
416 [ + - ]: 12842 : final_info_out = final_info_out_tmp;
417 : 12842 : key_out = final_extkey.pubkey;
418 : :
419 [ + + ]: 12842 : if (write_cache) {
420 : : // Only cache parent if there is any unhardened derivation
421 [ + + ]: 2255 : if (m_derive != DeriveType::HARDENED) {
422 [ + - ]: 2203 : write_cache->CacheParentExtPubKey(m_expr_index, parent_extkey);
423 : : // Cache last hardened xpub if we have it
424 [ + + ]: 2203 : if (last_hardened_extkey.pubkey.IsValid()) {
425 [ + - ]: 602 : write_cache->CacheLastHardenedExtPubKey(m_expr_index, last_hardened_extkey);
426 : 602 : }
427 [ + - ]: 2255 : } else if (final_info_out.path.size() > 0) {
428 [ + - ]: 52 : write_cache->CacheDerivedExtPubKey(m_expr_index, pos, final_extkey);
429 : 52 : }
430 : 2255 : }
431 : :
432 : 12842 : return true;
433 : 15025 : }
434 : 4350 : std::string ToString(StringType type, bool normalized) const
435 : : {
436 : : // If StringType==COMPAT, always use the apostrophe to stay compatible with previous versions
437 [ + + + + ]: 4350 : const bool use_apostrophe = (!normalized && m_apostrophe) || type == StringType::COMPAT;
438 [ + - + - ]: 4350 : std::string ret = EncodeExtPubKey(m_root_extkey) + FormatHDKeypath(m_path, /*apostrophe=*/use_apostrophe);
439 [ + + ]: 4350 : if (IsRange()) {
440 [ + - ]: 229 : ret += "/*";
441 [ + + + - ]: 229 : if (m_derive == DeriveType::HARDENED) ret += use_apostrophe ? '\'' : 'h';
442 : 229 : }
443 : 4350 : return ret;
444 [ + - ]: 4350 : }
445 : 4295 : std::string ToString(StringType type=StringType::PUBLIC) const override
446 : : {
447 : 4295 : return ToString(type, /*normalized=*/false);
448 : : }
449 : 1234 : bool ToPrivateString(const SigningProvider& arg, std::string& out) const override
450 : : {
451 : 1234 : CExtKey key;
452 [ + - + + ]: 1234 : if (!GetExtKey(arg, key)) return false;
453 [ + - + - : 1130 : out = EncodeExtKey(key) + FormatHDKeypath(m_path, /*apostrophe=*/m_apostrophe);
- + ]
454 [ + + ]: 1130 : if (IsRange()) {
455 [ + - ]: 86 : out += "/*";
456 [ + + + - ]: 86 : if (m_derive == DeriveType::HARDENED) out += m_apostrophe ? '\'' : 'h';
457 : 86 : }
458 : 1130 : return true;
459 : 1234 : }
460 : 1980 : bool ToNormalizedString(const SigningProvider& arg, std::string& out, const DescriptorCache* cache) const override
461 : : {
462 [ + + ]: 1980 : if (m_derive == DeriveType::HARDENED) {
463 : 55 : out = ToString(StringType::PUBLIC, /*normalized=*/true);
464 : :
465 : 55 : return true;
466 : : }
467 : : // Step backwards to find the last hardened step in the path
468 : 1925 : int i = (int)m_path.size() - 1;
469 [ + + ]: 36066 : for (; i >= 0; --i) {
470 [ + + ]: 34736 : if (m_path.at(i) >> 31) {
471 : 595 : break;
472 : : }
473 : 34141 : }
474 : : // Either no derivation or all unhardened derivation
475 [ + + ]: 1925 : if (i == -1) {
476 : 1330 : out = ToString();
477 : 1330 : return true;
478 : : }
479 : : // Get the path to the last hardened stup
480 : 595 : KeyOriginInfo origin;
481 : 595 : int k = 0;
482 [ + + ]: 56029 : for (; k <= i; ++k) {
483 : : // Add to the path
484 [ + - + - ]: 55434 : origin.path.push_back(m_path.at(k));
485 : 55434 : }
486 : : // Build the remaining path
487 : 595 : KeyPath end_path;
488 [ + + ]: 9049 : for (; k < (int)m_path.size(); ++k) {
489 [ + - + - ]: 8454 : end_path.push_back(m_path.at(k));
490 : 8454 : }
491 : : // Get the fingerprint
492 [ + - ]: 595 : CKeyID id = m_root_extkey.pubkey.GetID();
493 [ + - ]: 595 : std::copy(id.begin(), id.begin() + 4, origin.fingerprint);
494 : :
495 [ + - ]: 595 : CExtPubKey xpub;
496 [ + - ]: 595 : CExtKey lh_xprv;
497 : : // If we have the cache, just get the parent xpub
498 [ - + ]: 595 : if (cache != nullptr) {
499 [ # # ]: 0 : cache->GetCachedLastHardenedExtPubKey(m_expr_index, xpub);
500 : 0 : }
501 [ + - ]: 595 : if (!xpub.pubkey.IsValid()) {
502 : : // Cache miss, or nor cache, or need privkey
503 [ + - ]: 595 : CExtKey xprv;
504 [ + - + + ]: 595 : if (!GetDerivedExtKey(arg, xprv, lh_xprv)) return false;
505 [ + - ]: 573 : xpub = lh_xprv.Neuter();
506 [ + + ]: 595 : }
507 [ + - ]: 573 : assert(xpub.pubkey.IsValid());
508 : :
509 : : // Build the string
510 [ + - + - : 573 : std::string origin_str = HexStr(origin.fingerprint) + FormatHDKeypath(origin.path);
+ - ]
511 [ + - + - : 573 : out = "[" + origin_str + "]" + EncodeExtPubKey(xpub) + FormatHDKeypath(end_path);
+ - + - +
- + - ]
512 [ + + ]: 573 : if (IsRange()) {
513 [ + - ]: 11 : out += "/*";
514 [ + - ]: 11 : assert(m_derive == DeriveType::UNHARDENED);
515 : 11 : }
516 : 573 : return true;
517 : 1980 : }
518 : 2322 : bool GetPrivKey(int pos, const SigningProvider& arg, CKey& key) const override
519 : : {
520 : 2322 : CExtKey extkey;
521 [ + - ]: 2322 : CExtKey dummy;
522 [ + - + + ]: 2322 : if (!GetDerivedExtKey(arg, extkey, dummy)) return false;
523 [ + + + - : 2062 : if (m_derive == DeriveType::UNHARDENED && !extkey.Derive(extkey, pos)) return false;
+ + ]
524 [ + + + - : 2061 : if (m_derive == DeriveType::HARDENED && !extkey.Derive(extkey, pos | 0x80000000UL)) return false;
+ + ]
525 [ + - ]: 2060 : key = extkey.key;
526 : 2060 : return true;
527 : 2322 : }
528 : : };
529 : :
530 : : /** Base class for all Descriptor implementations. */
531 : : class DescriptorImpl : public Descriptor
532 : : {
533 : : protected:
534 : : //! Public key arguments for this descriptor (size 1 for PK, PKH, WPKH; any size for WSH and Multisig).
535 : : const std::vector<std::unique_ptr<PubkeyProvider>> m_pubkey_args;
536 : : //! The string name of the descriptor function.
537 : : const std::string m_name;
538 : :
539 : : //! The sub-descriptor arguments (empty for everything but SH and WSH).
540 : : //! In doc/descriptors.m this is referred to as SCRIPT expressions sh(SCRIPT)
541 : : //! and wsh(SCRIPT), and distinct from KEY expressions and ADDR expressions.
542 : : //! Subdescriptors can only ever generate a single script.
543 : : const std::vector<std::unique_ptr<DescriptorImpl>> m_subdescriptor_args;
544 : :
545 : : //! Return a serialization of anything except pubkey and script arguments, to be prepended to those.
546 [ + - ]: 14486 : virtual std::string ToStringExtra() const { return ""; }
547 : :
548 : : /** A helper function to construct the scripts for this descriptor.
549 : : *
550 : : * This function is invoked once by ExpandHelper.
551 : : *
552 : : * @param pubkeys The evaluations of the m_pubkey_args field.
553 : : * @param scripts The evaluations of m_subdescriptor_args (one for each m_subdescriptor_args element).
554 : : * @param out A FlatSigningProvider to put scripts or public keys in that are necessary to the solver.
555 : : * The origin info of the provided pubkeys is automatically added.
556 : : * @return A vector with scriptPubKeys for this descriptor.
557 : : */
558 : : virtual std::vector<CScript> MakeScripts(const std::vector<CPubKey>& pubkeys, Span<const CScript> scripts, FlatSigningProvider& out) const = 0;
559 : :
560 : : public:
561 [ + - ]: 603519 : DescriptorImpl(std::vector<std::unique_ptr<PubkeyProvider>> pubkeys, const std::string& name) : m_pubkey_args(std::move(pubkeys)), m_name(name), m_subdescriptor_args() {}
562 [ + - - + ]: 818 : DescriptorImpl(std::vector<std::unique_ptr<PubkeyProvider>> pubkeys, std::unique_ptr<DescriptorImpl> script, const std::string& name) : m_pubkey_args(std::move(pubkeys)), m_name(name), m_subdescriptor_args(Vector(std::move(script))) {}
563 [ + - ]: 222 : DescriptorImpl(std::vector<std::unique_ptr<PubkeyProvider>> pubkeys, std::vector<std::unique_ptr<DescriptorImpl>> scripts, const std::string& name) : m_pubkey_args(std::move(pubkeys)), m_name(name), m_subdescriptor_args(std::move(scripts)) {}
564 : :
565 : : enum class StringType
566 : : {
567 : : PUBLIC,
568 : : PRIVATE,
569 : : NORMALIZED,
570 : : COMPAT, // string calculation that mustn't change over time to stay compatible with previous software versions
571 : : };
572 : :
573 : 1099 : bool IsSolvable() const override
574 : : {
575 [ + + ]: 1834 : for (const auto& arg : m_subdescriptor_args) {
576 [ - + ]: 735 : if (!arg->IsSolvable()) return false;
577 : : }
578 : 1099 : return true;
579 : 1099 : }
580 : :
581 : 1664 : bool IsRange() const final
582 : : {
583 [ + + ]: 6397 : for (const auto& pubkey : m_pubkey_args) {
584 [ + + ]: 4788 : if (pubkey->IsRange()) return true;
585 : : }
586 [ + + ]: 2483 : for (const auto& arg : m_subdescriptor_args) {
587 [ + + ]: 894 : if (arg->IsRange()) return true;
588 : : }
589 : 1589 : return false;
590 : 1664 : }
591 : :
592 : 602643 : virtual bool ToStringSubScriptHelper(const SigningProvider* arg, std::string& ret, const StringType type, const DescriptorCache* cache = nullptr) const
593 : : {
594 : 602643 : size_t pos = 0;
595 [ + + ]: 603458 : for (const auto& scriptarg : m_subdescriptor_args) {
596 [ + - ]: 1020 : if (pos++) ret += ",";
597 : 1020 : std::string tmp;
598 [ + - + + ]: 1020 : if (!scriptarg->ToStringHelper(arg, tmp, type, cache)) return false;
599 [ + - ]: 815 : ret += tmp;
600 [ - + + ]: 1020 : }
601 : 602438 : return true;
602 : 602643 : }
603 : :
604 : 603118 : virtual bool ToStringHelper(const SigningProvider* arg, std::string& out, const StringType type, const DescriptorCache* cache = nullptr) const
605 : : {
606 : 603118 : std::string extra = ToStringExtra();
607 : 603118 : size_t pos = extra.size() > 0 ? 1 : 0;
608 [ + - + - ]: 603118 : std::string ret = m_name + "(" + extra;
609 [ + + ]: 647702 : for (const auto& pubkey : m_pubkey_args) {
610 [ + + + - ]: 44825 : if (pos++) ret += ",";
611 : 44825 : std::string tmp;
612 [ + + + - : 44825 : switch (type) {
- ]
613 : : case StringType::NORMALIZED:
614 [ + - + + ]: 3196 : if (!pubkey->ToNormalizedString(*arg, tmp, cache)) return false;
615 : 3174 : break;
616 : : case StringType::PRIVATE:
617 [ + - + + ]: 1336 : if (!pubkey->ToPrivateString(*arg, tmp)) return false;
618 : 1117 : break;
619 : : case StringType::PUBLIC:
620 [ + - ]: 40293 : tmp = pubkey->ToString();
621 : 40293 : break;
622 : : case StringType::COMPAT:
623 [ # # ]: 0 : tmp = pubkey->ToString(PubkeyProvider::StringType::COMPAT);
624 : 0 : break;
625 : : }
626 [ + - ]: 44584 : ret += tmp;
627 [ + + ]: 44825 : }
628 : 602877 : std::string subscript;
629 [ + - + + ]: 602877 : if (!ToStringSubScriptHelper(arg, subscript, type, cache)) return false;
630 [ + + + + : 602661 : if (pos && subscript.size()) ret += ',';
+ - ]
631 [ + - - + ]: 602661 : out = std::move(ret) + std::move(subscript) + ")";
632 : 602661 : return true;
633 : 603118 : }
634 : :
635 : 600636 : std::string ToString(bool compat_format) const final
636 : : {
637 : 600636 : std::string ret;
638 [ + - ]: 600636 : ToStringHelper(nullptr, ret, compat_format ? StringType::COMPAT : StringType::PUBLIC);
639 [ + - ]: 600636 : return AddChecksum(ret);
640 : 600636 : }
641 : :
642 : 513 : bool ToPrivateString(const SigningProvider& arg, std::string& out) const override
643 : : {
644 : 513 : bool ret = ToStringHelper(&arg, out, StringType::PRIVATE);
645 : 513 : out = AddChecksum(out);
646 : 513 : return ret;
647 : : }
648 : :
649 : 587 : bool ToNormalizedString(const SigningProvider& arg, std::string& out, const DescriptorCache* cache) const override final
650 : : {
651 : 587 : bool ret = ToStringHelper(&arg, out, StringType::NORMALIZED, cache);
652 : 587 : out = AddChecksum(out);
653 : 587 : return ret;
654 : : }
655 : :
656 : 2991 : bool ExpandHelper(int pos, const SigningProvider& arg, const DescriptorCache* read_cache, std::vector<CScript>& output_scripts, FlatSigningProvider& out, DescriptorCache* write_cache) const
657 : : {
658 : 2991 : std::vector<std::pair<CPubKey, KeyOriginInfo>> entries;
659 [ + - ]: 2991 : entries.reserve(m_pubkey_args.size());
660 : :
661 : : // Construct temporary data in `entries`, `subscripts`, and `subprovider` to avoid producing output in case of failure.
662 [ + + ]: 11416 : for (const auto& p : m_pubkey_args) {
663 [ + - ]: 8499 : entries.emplace_back();
664 [ + - + + ]: 8499 : if (!p->GetPubKey(pos, arg, entries.back().first, entries.back().second, read_cache, write_cache)) return false;
665 : : }
666 : 2917 : std::vector<CScript> subscripts;
667 : 2917 : FlatSigningProvider subprovider;
668 [ + + ]: 4510 : for (const auto& subarg : m_subdescriptor_args) {
669 : 1637 : std::vector<CScript> outscripts;
670 [ + - + + ]: 1637 : if (!subarg->ExpandHelper(pos, arg, read_cache, outscripts, subprovider, write_cache)) return false;
671 [ + - ]: 1593 : assert(outscripts.size() == 1);
672 [ + - ]: 1593 : subscripts.emplace_back(std::move(outscripts[0]));
673 [ + + ]: 1637 : }
674 [ - + ]: 2873 : out.Merge(std::move(subprovider));
675 : :
676 : 2873 : std::vector<CPubKey> pubkeys;
677 [ + - ]: 2873 : pubkeys.reserve(entries.size());
678 [ + + ]: 11126 : for (auto& entry : entries) {
679 [ + - ]: 8253 : pubkeys.push_back(entry.first);
680 [ + - + - : 8253 : out.origins.emplace(entry.first.GetID(), std::make_pair<CPubKey, KeyOriginInfo>(CPubKey(entry.first), std::move(entry.second)));
+ - ]
681 : : }
682 : :
683 [ + - + - ]: 2873 : output_scripts = MakeScripts(pubkeys, Span{subscripts}, out);
684 : 2873 : return true;
685 : 2991 : }
686 : :
687 : 767 : bool Expand(int pos, const SigningProvider& provider, std::vector<CScript>& output_scripts, FlatSigningProvider& out, DescriptorCache* write_cache = nullptr) const final
688 : : {
689 : 767 : return ExpandHelper(pos, provider, nullptr, output_scripts, out, write_cache);
690 : : }
691 : :
692 : 587 : bool ExpandFromCache(int pos, const DescriptorCache& read_cache, std::vector<CScript>& output_scripts, FlatSigningProvider& out) const final
693 : : {
694 : 587 : return ExpandHelper(pos, DUMMY_SIGNING_PROVIDER, &read_cache, output_scripts, out, nullptr);
695 : : }
696 : :
697 : 1322 : void ExpandPrivate(int pos, const SigningProvider& provider, FlatSigningProvider& out) const final
698 : : {
699 [ + + ]: 4994 : for (const auto& p : m_pubkey_args) {
700 : 3672 : CKey key;
701 [ + - + + ]: 3672 : if (!p->GetPrivKey(pos, provider, key)) continue;
702 [ + - + - : 2257 : out.keys.emplace(key.GetPubKey().GetID(), key);
+ - ]
703 [ - + + ]: 3672 : }
704 [ + + ]: 2057 : for (const auto& arg : m_subdescriptor_args) {
705 : 735 : arg->ExpandPrivate(pos, provider, out);
706 : : }
707 : 1322 : }
708 : :
709 : 342 : std::optional<OutputType> GetOutputType() const override { return std::nullopt; }
710 : :
711 : 0 : std::optional<int64_t> ScriptSize() const override { return {}; }
712 : :
713 : : /** A helper for MaxSatisfactionWeight.
714 : : *
715 : : * @param use_max_sig Whether to assume ECDSA signatures will have a high-r.
716 : : * @return The maximum size of the satisfaction in raw bytes (with no witness meaning).
717 : : */
718 : 0 : virtual std::optional<int64_t> MaxSatSize(bool use_max_sig) const { return {}; }
719 : :
720 : 154 : std::optional<int64_t> MaxSatisfactionWeight(bool) const override { return {}; }
721 : :
722 : 77 : std::optional<int64_t> MaxSatisfactionElems() const override { return {}; }
723 : : };
724 : :
725 : : /** A parsed addr(A) descriptor. */
726 : : class AddressDescriptor final : public DescriptorImpl
727 : : {
728 : : const CTxDestination m_destination;
729 : : protected:
730 : 123432 : std::string ToStringExtra() const override { return EncodeDestination(m_destination); }
731 [ # # ]: 0 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>&, Span<const CScript>, FlatSigningProvider&) const override { return Vector(GetScriptForDestination(m_destination)); }
732 : : public:
733 [ + - - + ]: 123454 : AddressDescriptor(CTxDestination destination) : DescriptorImpl({}, "addr"), m_destination(std::move(destination)) {}
734 : 0 : bool IsSolvable() const final { return false; }
735 : :
736 : 0 : std::optional<OutputType> GetOutputType() const override
737 : : {
738 : 0 : return OutputTypeFromDestination(m_destination);
739 : : }
740 : 0 : bool IsSingleType() const final { return true; }
741 : 0 : bool ToPrivateString(const SigningProvider& arg, std::string& out) const final { return false; }
742 : :
743 [ # # # # ]: 0 : std::optional<int64_t> ScriptSize() const override { return GetScriptForDestination(m_destination).size(); }
744 : : };
745 : :
746 : : /** A parsed raw(H) descriptor. */
747 : : class RawDescriptor final : public DescriptorImpl
748 : : {
749 : : const CScript m_script;
750 : : protected:
751 : 456045 : std::string ToStringExtra() const override { return HexStr(m_script); }
752 : 174 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>&, Span<const CScript>, FlatSigningProvider&) const override { return Vector(m_script); }
753 : : public:
754 [ + - - + ]: 456603 : RawDescriptor(CScript script) : DescriptorImpl({}, "raw"), m_script(std::move(script)) {}
755 : 75 : bool IsSolvable() const final { return false; }
756 : :
757 : 74 : std::optional<OutputType> GetOutputType() const override
758 : : {
759 : 74 : CTxDestination dest;
760 [ + - ]: 74 : ExtractDestination(m_script, dest);
761 [ + - ]: 74 : return OutputTypeFromDestination(dest);
762 : 74 : }
763 : 148 : bool IsSingleType() const final { return true; }
764 : 74 : bool ToPrivateString(const SigningProvider& arg, std::string& out) const final { return false; }
765 : :
766 : 74 : std::optional<int64_t> ScriptSize() const override { return m_script.size(); }
767 : : };
768 : :
769 : : /** A parsed pk(P) descriptor. */
770 : : class PKDescriptor final : public DescriptorImpl
771 : : {
772 : : private:
773 : : const bool m_xonly;
774 : : protected:
775 : 691 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript>, FlatSigningProvider&) const override
776 : : {
777 [ + + ]: 691 : if (m_xonly) {
778 [ + - + - : 613 : CScript script = CScript() << ToByteVector(XOnlyPubKey(keys[0])) << OP_CHECKSIG;
+ - + - +
- ]
779 [ - + ]: 613 : return Vector(std::move(script));
780 : 613 : } else {
781 [ + - ]: 78 : return Vector(GetScriptForRawPubKey(keys[0]));
782 : : }
783 : 691 : }
784 : : public:
785 [ + - - + ]: 10464 : PKDescriptor(std::unique_ptr<PubkeyProvider> prov, bool xonly = false) : DescriptorImpl(Vector(std::move(prov)), "pk"), m_xonly(xonly) {}
786 : 72 : bool IsSingleType() const final { return true; }
787 : :
788 : 42 : std::optional<int64_t> ScriptSize() const override {
789 [ - + ]: 42 : return 1 + (m_xonly ? 32 : m_pubkey_args[0]->GetSize()) + 1;
790 : : }
791 : :
792 : 84 : std::optional<int64_t> MaxSatSize(bool use_max_sig) const override {
793 : 84 : const auto ecdsa_sig_size = use_max_sig ? 72 : 71;
794 [ - + ]: 84 : return 1 + (m_xonly ? 65 : ecdsa_sig_size);
795 : : }
796 : :
797 : 76 : std::optional<int64_t> MaxSatisfactionWeight(bool use_max_sig) const override {
798 : 76 : return *MaxSatSize(use_max_sig) * WITNESS_SCALE_FACTOR;
799 : : }
800 : :
801 : 42 : std::optional<int64_t> MaxSatisfactionElems() const override { return 1; }
802 : : };
803 : :
804 : : /** A parsed pkh(P) descriptor. */
805 : : class PKHDescriptor final : public DescriptorImpl
806 : : {
807 : : protected:
808 : 12 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript>, FlatSigningProvider& out) const override
809 : : {
810 : 12 : CKeyID id = keys[0].GetID();
811 : 12 : out.pubkeys.emplace(id, keys[0]);
812 [ + - - + ]: 12 : return Vector(GetScriptForDestination(PKHash(id)));
813 : 0 : }
814 : : public:
815 [ + - - + ]: 15 : PKHDescriptor(std::unique_ptr<PubkeyProvider> prov) : DescriptorImpl(Vector(std::move(prov)), "pkh") {}
816 : 8 : std::optional<OutputType> GetOutputType() const override { return OutputType::LEGACY; }
817 : 4 : bool IsSingleType() const final { return true; }
818 : :
819 : 8 : std::optional<int64_t> ScriptSize() const override { return 1 + 1 + 1 + 20 + 1 + 1; }
820 : :
821 : 10 : std::optional<int64_t> MaxSatSize(bool use_max_sig) const override {
822 : 10 : const auto sig_size = use_max_sig ? 72 : 71;
823 : 10 : return 1 + sig_size + 1 + m_pubkey_args[0]->GetSize();
824 : : }
825 : :
826 : 4 : std::optional<int64_t> MaxSatisfactionWeight(bool use_max_sig) const override {
827 : 4 : return *MaxSatSize(use_max_sig) * WITNESS_SCALE_FACTOR;
828 : : }
829 : :
830 : 5 : std::optional<int64_t> MaxSatisfactionElems() const override { return 2; }
831 : : };
832 : :
833 : : /** A parsed wpkh(P) descriptor. */
834 : : class WPKHDescriptor final : public DescriptorImpl
835 : : {
836 : : protected:
837 : 7 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript>, FlatSigningProvider& out) const override
838 : : {
839 : 7 : CKeyID id = keys[0].GetID();
840 : 7 : out.pubkeys.emplace(id, keys[0]);
841 [ + - - + ]: 7 : return Vector(GetScriptForDestination(WitnessV0KeyHash(id)));
842 : 0 : }
843 : : public:
844 [ + - - + ]: 11 : WPKHDescriptor(std::unique_ptr<PubkeyProvider> prov) : DescriptorImpl(Vector(std::move(prov)), "wpkh") {}
845 : 8 : std::optional<OutputType> GetOutputType() const override { return OutputType::BECH32; }
846 : 4 : bool IsSingleType() const final { return true; }
847 : :
848 : 4 : std::optional<int64_t> ScriptSize() const override { return 1 + 1 + 20; }
849 : :
850 : 6 : std::optional<int64_t> MaxSatSize(bool use_max_sig) const override {
851 : 6 : const auto sig_size = use_max_sig ? 72 : 71;
852 : 6 : return (1 + sig_size + 1 + 33);
853 : : }
854 : :
855 : 4 : std::optional<int64_t> MaxSatisfactionWeight(bool use_max_sig) const override {
856 : 4 : return MaxSatSize(use_max_sig);
857 : : }
858 : :
859 : 3 : std::optional<int64_t> MaxSatisfactionElems() const override { return 2; }
860 : : };
861 : :
862 : : /** A parsed combo(P) descriptor. */
863 : : class ComboDescriptor final : public DescriptorImpl
864 : : {
865 : : protected:
866 : 7 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript>, FlatSigningProvider& out) const override
867 : : {
868 : 7 : std::vector<CScript> ret;
869 [ + - ]: 7 : CKeyID id = keys[0].GetID();
870 [ + - ]: 7 : out.pubkeys.emplace(id, keys[0]);
871 [ + - + - ]: 7 : ret.emplace_back(GetScriptForRawPubKey(keys[0])); // P2PK
872 [ + - + - : 7 : ret.emplace_back(GetScriptForDestination(PKHash(id))); // P2PKH
+ - ]
873 [ + - + + ]: 7 : if (keys[0].IsCompressed()) {
874 [ + - + - ]: 5 : CScript p2wpkh = GetScriptForDestination(WitnessV0KeyHash(id));
875 [ + - + - ]: 5 : out.scripts.emplace(CScriptID(p2wpkh), p2wpkh);
876 [ + - ]: 5 : ret.emplace_back(p2wpkh);
877 [ + - + - : 5 : ret.emplace_back(GetScriptForDestination(ScriptHash(p2wpkh))); // P2SH-P2WPKH
- + ]
878 : 5 : }
879 : 7 : return ret;
880 [ + - ]: 7 : }
881 : : public:
882 [ + - - + ]: 5 : ComboDescriptor(std::unique_ptr<PubkeyProvider> prov) : DescriptorImpl(Vector(std::move(prov)), "combo") {}
883 : 6 : bool IsSingleType() const final { return false; }
884 : : };
885 : :
886 : : /** A parsed multi(...) or sortedmulti(...) descriptor */
887 : : class MultisigDescriptor final : public DescriptorImpl
888 : : {
889 : : const int m_threshold;
890 : : const bool m_sorted;
891 : : protected:
892 : 8955 : std::string ToStringExtra() const override { return strprintf("%i", m_threshold); }
893 : 422 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript>, FlatSigningProvider&) const override {
894 [ + + ]: 422 : if (m_sorted) {
895 : 194 : std::vector<CPubKey> sorted_keys(keys);
896 [ + - ]: 194 : std::sort(sorted_keys.begin(), sorted_keys.end());
897 [ + - - + ]: 194 : return Vector(GetScriptForMultisig(m_threshold, sorted_keys));
898 : 194 : }
899 [ + - ]: 228 : return Vector(GetScriptForMultisig(m_threshold, keys));
900 : 422 : }
901 : : public:
902 [ + - - + ]: 8804 : MultisigDescriptor(int threshold, std::vector<std::unique_ptr<PubkeyProvider>> providers, bool sorted = false) : DescriptorImpl(std::move(providers), sorted ? "sortedmulti" : "multi"), m_threshold(threshold), m_sorted(sorted) {}
903 : 77 : bool IsSingleType() const final { return true; }
904 : :
905 : 355 : std::optional<int64_t> ScriptSize() const override {
906 : 355 : const auto n_keys = m_pubkey_args.size();
907 : 4178 : auto op = [](int64_t acc, const std::unique_ptr<PubkeyProvider>& pk) { return acc + 1 + pk->GetSize();};
908 : 355 : const auto pubkeys_size{std::accumulate(m_pubkey_args.begin(), m_pubkey_args.end(), int64_t{0}, op)};
909 [ + - + - : 355 : return 1 + BuildScript(n_keys).size() + BuildScript(m_threshold).size() + pubkeys_size;
+ - + - ]
910 : 0 : }
911 : :
912 : 404 : std::optional<int64_t> MaxSatSize(bool use_max_sig) const override {
913 : 404 : const auto sig_size = use_max_sig ? 72 : 71;
914 : 404 : return (1 + (1 + sig_size) * m_threshold);
915 : : }
916 : :
917 : 84 : std::optional<int64_t> MaxSatisfactionWeight(bool use_max_sig) const override {
918 : 84 : return *MaxSatSize(use_max_sig) * WITNESS_SCALE_FACTOR;
919 : : }
920 : :
921 : 202 : std::optional<int64_t> MaxSatisfactionElems() const override { return 1 + m_threshold; }
922 : : };
923 : :
924 : : /** A parsed (sorted)multi_a(...) descriptor. Always uses x-only pubkeys. */
925 : : class MultiADescriptor final : public DescriptorImpl
926 : : {
927 : : const int m_threshold;
928 : : const bool m_sorted;
929 : : protected:
930 : 200 : std::string ToStringExtra() const override { return strprintf("%i", m_threshold); }
931 : 200 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript>, FlatSigningProvider&) const override {
932 : 200 : CScript ret;
933 : 200 : std::vector<XOnlyPubKey> xkeys;
934 [ + - ]: 200 : xkeys.reserve(keys.size());
935 [ + + + - ]: 1444 : for (const auto& key : keys) xkeys.emplace_back(key);
936 [ + + + - ]: 200 : if (m_sorted) std::sort(xkeys.begin(), xkeys.end());
937 [ + - + - : 200 : ret << ToByteVector(xkeys[0]) << OP_CHECKSIG;
+ - ]
938 [ + + ]: 1244 : for (size_t i = 1; i < keys.size(); ++i) {
939 [ + - + - : 1044 : ret << ToByteVector(xkeys[i]) << OP_CHECKSIGADD;
+ - ]
940 : 1044 : }
941 [ + - + - ]: 200 : ret << m_threshold << OP_NUMEQUAL;
942 [ + - ]: 200 : return Vector(std::move(ret));
943 : 200 : }
944 : : public:
945 [ + - - + ]: 247 : MultiADescriptor(int threshold, std::vector<std::unique_ptr<PubkeyProvider>> providers, bool sorted = false) : DescriptorImpl(std::move(providers), sorted ? "sortedmulti_a" : "multi_a"), m_threshold(threshold), m_sorted(sorted) {}
946 : 0 : bool IsSingleType() const final { return true; }
947 : :
948 : 0 : std::optional<int64_t> ScriptSize() const override {
949 : 0 : const auto n_keys = m_pubkey_args.size();
950 [ # # # # ]: 0 : return (1 + 32 + 1) * n_keys + BuildScript(m_threshold).size() + 1;
951 : 0 : }
952 : :
953 : 0 : std::optional<int64_t> MaxSatSize(bool use_max_sig) const override {
954 : 0 : return (1 + 65) * m_threshold + (m_pubkey_args.size() - m_threshold);
955 : : }
956 : :
957 : 0 : std::optional<int64_t> MaxSatisfactionElems() const override { return m_pubkey_args.size(); }
958 : : };
959 : :
960 : : /** A parsed sh(...) descriptor. */
961 : : class SHDescriptor final : public DescriptorImpl
962 : : {
963 : : protected:
964 : 155 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>&, Span<const CScript> scripts, FlatSigningProvider& out) const override
965 : : {
966 [ + - - + ]: 155 : auto ret = Vector(GetScriptForDestination(ScriptHash(scripts[0])));
967 [ - + + - : 155 : if (ret.size()) out.scripts.emplace(CScriptID(scripts[0]), scripts[0]);
+ - ]
968 : 155 : return ret;
969 [ + - ]: 155 : }
970 : :
971 : 252 : bool IsSegwit() const { return m_subdescriptor_args[0]->GetOutputType() == OutputType::BECH32; }
972 : :
973 : : public:
974 [ + - - + ]: 172 : SHDescriptor(std::unique_ptr<DescriptorImpl> desc) : DescriptorImpl({}, std::move(desc), "sh") {}
975 : :
976 : 130 : std::optional<OutputType> GetOutputType() const override
977 : : {
978 [ + - ]: 130 : assert(m_subdescriptor_args.size() == 1);
979 [ + + ]: 130 : if (IsSegwit()) return OutputType::P2SH_SEGWIT;
980 : 94 : return OutputType::LEGACY;
981 : 130 : }
982 : 115 : bool IsSingleType() const final { return true; }
983 : :
984 : 54 : std::optional<int64_t> ScriptSize() const override { return 1 + 1 + 20 + 1; }
985 : :
986 : 122 : std::optional<int64_t> MaxSatisfactionWeight(bool use_max_sig) const override {
987 [ - + ]: 122 : if (const auto sat_size = m_subdescriptor_args[0]->MaxSatSize(use_max_sig)) {
988 [ + - ]: 122 : if (const auto subscript_size = m_subdescriptor_args[0]->ScriptSize()) {
989 : : // The subscript is never witness data.
990 : 122 : const auto subscript_weight = (1 + *subscript_size) * WITNESS_SCALE_FACTOR;
991 : : // The weight depends on whether the inner descriptor is satisfied using the witness stack.
992 [ + + ]: 122 : if (IsSegwit()) return subscript_weight + *sat_size;
993 : 86 : return subscript_weight + *sat_size * WITNESS_SCALE_FACTOR;
994 : : }
995 : 0 : }
996 : 0 : return {};
997 : 122 : }
998 : :
999 : 61 : std::optional<int64_t> MaxSatisfactionElems() const override {
1000 [ + - ]: 61 : if (const auto sub_elems = m_subdescriptor_args[0]->MaxSatisfactionElems()) return 1 + *sub_elems;
1001 : 0 : return {};
1002 : 61 : }
1003 : : };
1004 : :
1005 : : /** A parsed wsh(...) descriptor. */
1006 : : class WSHDescriptor final : public DescriptorImpl
1007 : : {
1008 : : protected:
1009 : 625 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>&, Span<const CScript> scripts, FlatSigningProvider& out) const override
1010 : : {
1011 [ + - - + ]: 625 : auto ret = Vector(GetScriptForDestination(WitnessV0ScriptHash(scripts[0])));
1012 [ - + + - : 625 : if (ret.size()) out.scripts.emplace(CScriptID(scripts[0]), scripts[0]);
+ - ]
1013 : 625 : return ret;
1014 [ + - ]: 625 : }
1015 : : public:
1016 [ + - - + ]: 646 : WSHDescriptor(std::unique_ptr<DescriptorImpl> desc) : DescriptorImpl({}, std::move(desc), "wsh") {}
1017 : 584 : std::optional<OutputType> GetOutputType() const override { return OutputType::BECH32; }
1018 : 503 : bool IsSingleType() const final { return true; }
1019 : :
1020 : 279 : std::optional<int64_t> ScriptSize() const override { return 1 + 1 + 32; }
1021 : :
1022 : 550 : std::optional<int64_t> MaxSatSize(bool use_max_sig) const override {
1023 [ - + ]: 550 : if (const auto sat_size = m_subdescriptor_args[0]->MaxSatSize(use_max_sig)) {
1024 [ + - ]: 550 : if (const auto subscript_size = m_subdescriptor_args[0]->ScriptSize()) {
1025 : 550 : return GetSizeOfCompactSize(*subscript_size) + *subscript_size + *sat_size;
1026 : : }
1027 : 0 : }
1028 : 0 : return {};
1029 : 550 : }
1030 : :
1031 : 516 : std::optional<int64_t> MaxSatisfactionWeight(bool use_max_sig) const override {
1032 : 516 : return MaxSatSize(use_max_sig);
1033 : : }
1034 : :
1035 : 275 : std::optional<int64_t> MaxSatisfactionElems() const override {
1036 [ + - ]: 275 : if (const auto sub_elems = m_subdescriptor_args[0]->MaxSatisfactionElems()) return 1 + *sub_elems;
1037 : 0 : return {};
1038 : 275 : }
1039 : : };
1040 : :
1041 : : /** A parsed tr(...) descriptor. */
1042 : : class TRDescriptor final : public DescriptorImpl
1043 : : {
1044 : : std::vector<int> m_depths;
1045 : : protected:
1046 : 218 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript> scripts, FlatSigningProvider& out) const override
1047 : : {
1048 : 218 : TaprootBuilder builder;
1049 [ + - ]: 218 : assert(m_depths.size() == scripts.size());
1050 [ + + ]: 1031 : for (size_t pos = 0; pos < m_depths.size(); ++pos) {
1051 [ + - + - ]: 813 : builder.Add(m_depths[pos], scripts[pos], TAPROOT_LEAF_TAPSCRIPT);
1052 : 813 : }
1053 [ + - + - ]: 218 : if (!builder.IsComplete()) return {};
1054 [ + - ]: 218 : assert(keys.size() == 1);
1055 [ + - ]: 218 : XOnlyPubKey xpk(keys[0]);
1056 [ + - + - ]: 218 : if (!xpk.IsFullyValid()) return {};
1057 [ + - ]: 218 : builder.Finalize(xpk);
1058 [ + - ]: 218 : WitnessV1Taproot output = builder.GetOutput();
1059 [ + - + - ]: 218 : out.tr_trees[output] = builder;
1060 [ + - + - ]: 218 : out.pubkeys.emplace(keys[0].GetID(), keys[0]);
1061 [ + - - + ]: 218 : return Vector(GetScriptForDestination(output));
1062 : 218 : }
1063 : 234 : bool ToStringSubScriptHelper(const SigningProvider* arg, std::string& ret, const StringType type, const DescriptorCache* cache = nullptr) const override
1064 : : {
1065 [ + + ]: 234 : if (m_depths.empty()) return true;
1066 : 221 : std::vector<bool> path;
1067 [ + + ]: 1029 : for (size_t pos = 0; pos < m_depths.size(); ++pos) {
1068 [ + + + - ]: 819 : if (pos) ret += ',';
1069 [ + + ]: 1638 : while ((int)path.size() <= m_depths[pos]) {
1070 [ + + + - ]: 819 : if (path.size()) ret += '{';
1071 [ + - ]: 819 : path.push_back(false);
1072 : : }
1073 : 819 : std::string tmp;
1074 [ + - + + ]: 819 : if (!m_subdescriptor_args[pos]->ToStringHelper(arg, tmp, type, cache)) return false;
1075 [ + - ]: 808 : ret += tmp;
1076 [ + - + - : 1406 : while (!path.empty() && path.back()) {
+ + ]
1077 [ + - + - ]: 598 : if (path.size() > 1) ret += '}';
1078 [ + - ]: 598 : path.pop_back();
1079 : : }
1080 [ + - + - ]: 808 : if (!path.empty()) path.back() = true;
1081 [ + + ]: 819 : }
1082 : 210 : return true;
1083 : 234 : }
1084 : : public:
1085 : 222 : TRDescriptor(std::unique_ptr<PubkeyProvider> internal_key, std::vector<std::unique_ptr<DescriptorImpl>> descs, std::vector<int> depths) :
1086 [ + - + - ]: 222 : DescriptorImpl(Vector(std::move(internal_key)), std::move(descs), "tr"), m_depths(std::move(depths))
1087 : 222 : {
1088 [ + - ]: 222 : assert(m_subdescriptor_args.size() == m_depths.size());
1089 : 222 : }
1090 : 210 : std::optional<OutputType> GetOutputType() const override { return OutputType::BECH32M; }
1091 : 204 : bool IsSingleType() const final { return true; }
1092 : :
1093 : 99 : std::optional<int64_t> ScriptSize() const override { return 1 + 1 + 32; }
1094 : :
1095 : 210 : std::optional<int64_t> MaxSatisfactionWeight(bool) const override {
1096 : : // FIXME: We assume keypath spend, which can lead to very large underestimations.
1097 : 210 : return 1 + 65;
1098 : : }
1099 : :
1100 : 105 : std::optional<int64_t> MaxSatisfactionElems() const override {
1101 : : // FIXME: See above, we assume keypath spend.
1102 : 105 : return 1;
1103 : : }
1104 : : };
1105 : :
1106 : : /* We instantiate Miniscript here with a simple integer as key type.
1107 : : * The value of these key integers are an index in the
1108 : : * DescriptorImpl::m_pubkey_args vector.
1109 : : */
1110 : :
1111 : : /**
1112 : : * The context for converting a Miniscript descriptor into a Script.
1113 : : */
1114 : : class ScriptMaker {
1115 : : //! Keys contained in the Miniscript (the evaluation of DescriptorImpl::m_pubkey_args).
1116 : : const std::vector<CPubKey>& m_keys;
1117 : :
1118 : : public:
1119 : 357 : ScriptMaker(const std::vector<CPubKey>& keys LIFETIMEBOUND) : m_keys(keys) {}
1120 : :
1121 : 1057 : std::vector<unsigned char> ToPKBytes(uint32_t key) const {
1122 [ + - ]: 1057 : return {m_keys[key].begin(), m_keys[key].end()};
1123 : 0 : }
1124 : :
1125 : 168 : std::vector<unsigned char> ToPKHBytes(uint32_t key) const {
1126 : 168 : auto id = m_keys[key].GetID();
1127 [ + - ]: 168 : return {id.begin(), id.end()};
1128 : 0 : }
1129 : : };
1130 : :
1131 : : /**
1132 : : * The context for converting a Miniscript descriptor to its textual form.
1133 : : */
1134 : : class StringMaker {
1135 : : //! To convert private keys for private descriptors.
1136 : : const SigningProvider* m_arg;
1137 : : //! Keys contained in the Miniscript (a reference to DescriptorImpl::m_pubkey_args).
1138 : : const std::vector<std::unique_ptr<PubkeyProvider>>& m_pubkeys;
1139 : : //! Whether to serialize keys as private or public.
1140 : : bool m_private;
1141 : :
1142 : : public:
1143 : 457 : StringMaker(const SigningProvider* arg LIFETIMEBOUND, const std::vector<std::unique_ptr<PubkeyProvider>>& pubkeys LIFETIMEBOUND, bool priv)
1144 : 457 : : m_arg(arg), m_pubkeys(pubkeys), m_private(priv) {}
1145 : :
1146 : 1353 : std::optional<std::string> ToString(uint32_t key) const
1147 : : {
1148 : 1353 : std::string ret;
1149 [ + + ]: 1353 : if (m_private) {
1150 [ + - + + ]: 245 : if (!m_pubkeys[key]->ToPrivateString(*m_arg, ret)) return {};
1151 : 160 : } else {
1152 [ + - ]: 1108 : ret = m_pubkeys[key]->ToString();
1153 : : }
1154 [ + - ]: 1268 : return ret;
1155 : 1353 : }
1156 : : };
1157 : :
1158 : : class MiniscriptDescriptor final : public DescriptorImpl
1159 : : {
1160 : : private:
1161 : : miniscript::NodeRef<uint32_t> m_node;
1162 : :
1163 : : protected:
1164 : 357 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript> scripts,
1165 : : FlatSigningProvider& provider) const override
1166 : : {
1167 [ + + ]: 1582 : for (const auto& key : keys) provider.pubkeys.emplace(key.GetID(), key);
1168 [ + - ]: 357 : return Vector(m_node->ToScript(ScriptMaker(keys)));
1169 : 0 : }
1170 : :
1171 : : public:
1172 : 379 : MiniscriptDescriptor(std::vector<std::unique_ptr<PubkeyProvider>> providers, miniscript::NodeRef<uint32_t> node)
1173 [ + - - + ]: 379 : : DescriptorImpl(std::move(providers), "?"), m_node(std::move(node)) {}
1174 : :
1175 : 457 : bool ToStringHelper(const SigningProvider* arg, std::string& out, const StringType type,
1176 : : const DescriptorCache* cache = nullptr) const override
1177 : : {
1178 [ + + - + : 829 : if (const auto res = m_node->ToString(StringMaker(arg, m_pubkey_args, type == StringType::PRIVATE))) {
+ ]
1179 [ + - ]: 372 : out = *res;
1180 : 372 : return true;
1181 : : }
1182 : 85 : return false;
1183 : 457 : }
1184 : :
1185 : 151 : bool IsSolvable() const override { return true; }
1186 : 0 : bool IsSingleType() const final { return true; }
1187 : :
1188 : 302 : std::optional<int64_t> ScriptSize() const override { return m_node->ScriptSize(); }
1189 : :
1190 : 302 : std::optional<int64_t> MaxSatSize(bool) const override {
1191 : : // For Miniscript we always assume high-R ECDSA signatures.
1192 : 302 : return m_node->GetWitnessSize();
1193 : : }
1194 : :
1195 : 151 : std::optional<int64_t> MaxSatisfactionElems() const override {
1196 : 151 : return m_node->GetStackSize();
1197 : : }
1198 : : };
1199 : :
1200 : : /** A parsed rawtr(...) descriptor. */
1201 : : class RawTRDescriptor final : public DescriptorImpl
1202 : : {
1203 : : protected:
1204 : 5 : std::vector<CScript> MakeScripts(const std::vector<CPubKey>& keys, Span<const CScript> scripts, FlatSigningProvider& out) const override
1205 : : {
1206 [ + - ]: 5 : assert(keys.size() == 1);
1207 : 5 : XOnlyPubKey xpk(keys[0]);
1208 [ + - ]: 5 : if (!xpk.IsFullyValid()) return {};
1209 : 5 : WitnessV1Taproot output{xpk};
1210 [ + - - + ]: 5 : return Vector(GetScriptForDestination(output));
1211 : 5 : }
1212 : : public:
1213 [ + - - + ]: 3537 : RawTRDescriptor(std::unique_ptr<PubkeyProvider> output_key) : DescriptorImpl(Vector(std::move(output_key)), "rawtr") {}
1214 : 4 : std::optional<OutputType> GetOutputType() const override { return OutputType::BECH32M; }
1215 : 4 : bool IsSingleType() const final { return true; }
1216 : :
1217 : 2 : std::optional<int64_t> ScriptSize() const override { return 1 + 1 + 32; }
1218 : :
1219 : 4 : std::optional<int64_t> MaxSatisfactionWeight(bool) const override {
1220 : : // We can't know whether there is a script path, so assume key path spend.
1221 : 4 : return 1 + 65;
1222 : : }
1223 : :
1224 : 2 : std::optional<int64_t> MaxSatisfactionElems() const override {
1225 : : // See above, we assume keypath spend.
1226 : 2 : return 1;
1227 : : }
1228 : : };
1229 : :
1230 : : ////////////////////////////////////////////////////////////////////////////
1231 : : // Parser //
1232 : : ////////////////////////////////////////////////////////////////////////////
1233 : :
1234 : : enum class ParseScriptContext {
1235 : : TOP, //!< Top-level context (script goes directly in scriptPubKey)
1236 : : P2SH, //!< Inside sh() (script becomes P2SH redeemScript)
1237 : : P2WPKH, //!< Inside wpkh() (no script, pubkey only)
1238 : : P2WSH, //!< Inside wsh() (script becomes v0 witness script)
1239 : : P2TR, //!< Inside tr() (either internal key, or BIP342 script leaf)
1240 : : };
1241 : :
1242 : : /**
1243 : : * Parse a key path, being passed a split list of elements (the first element is ignored).
1244 : : *
1245 : : * @param[in] split BIP32 path string, using either ' or h for hardened derivation
1246 : : * @param[out] out the key path
1247 : : * @param[out] apostrophe only updated if hardened derivation is found
1248 : : * @param[out] error parsing error message
1249 : : * @returns false if parsing failed
1250 : : **/
1251 : 11437 : [[nodiscard]] bool ParseKeyPath(const std::vector<Span<const char>>& split, KeyPath& out, bool& apostrophe, std::string& error)
1252 : : {
1253 [ + + ]: 1331129 : for (size_t i = 1; i < split.size(); ++i) {
1254 : 1319720 : Span<const char> elem = split[i];
1255 : 1319720 : bool hardened = false;
1256 [ + + ]: 1319720 : if (elem.size() > 0) {
1257 : 1319717 : const char last = elem[elem.size() - 1];
1258 [ + + + + ]: 1319717 : if (last == '\'' || last == 'h') {
1259 : 10285 : elem = elem.first(elem.size() - 1);
1260 : 10285 : hardened = true;
1261 : 10285 : apostrophe = last == '\'';
1262 : 10285 : }
1263 : 1319717 : }
1264 : : uint32_t p;
1265 [ + - + - : 1319720 : if (!ParseUInt32(std::string(elem.begin(), elem.end()), &p)) {
+ + ]
1266 [ + - - + ]: 28 : error = strprintf("Key path value '%s' is not a valid uint32", std::string(elem.begin(), elem.end()));
1267 : 28 : return false;
1268 [ + - ]: 1319692 : } else if (p > 0x7FFFFFFFUL) {
1269 : 0 : error = strprintf("Key path value %u is out of range", p);
1270 : 0 : return false;
1271 : : }
1272 : 1319692 : out.push_back(p | (((uint32_t)hardened) << 31));
1273 : 1319692 : }
1274 : 11409 : return true;
1275 : 11437 : }
1276 : :
1277 : : /** Parse a public key that excludes origin information. */
1278 : 20203 : std::unique_ptr<PubkeyProvider> ParsePubkeyInner(uint32_t key_exp_index, const Span<const char>& sp, ParseScriptContext ctx, FlatSigningProvider& out, bool& apostrophe, std::string& error)
1279 : : {
1280 : : using namespace spanparsing;
1281 : :
1282 [ + + ]: 20203 : bool permit_uncompressed = ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH;
1283 : 20203 : auto split = Split(sp, '/');
1284 [ + - ]: 20203 : std::string str(split[0].begin(), split[0].end());
1285 [ + + ]: 20203 : if (str.size() == 0) {
1286 [ + - ]: 8 : error = "No key provided";
1287 : 8 : return nullptr;
1288 : : }
1289 [ + + ]: 20195 : if (split.size() == 1) {
1290 [ + - + + ]: 14468 : if (IsHex(str)) {
1291 [ + - ]: 9396 : std::vector<unsigned char> data = ParseHex(str);
1292 [ + - + - ]: 9396 : CPubKey pubkey(data);
1293 [ + - + + ]: 9396 : if (pubkey.IsFullyValid()) {
1294 [ + + + - : 7422 : if (permit_uncompressed || pubkey.IsCompressed()) {
- + ]
1295 [ + - ]: 7422 : return std::make_unique<ConstPubkeyProvider>(key_exp_index, pubkey, false);
1296 : : } else {
1297 [ # # ]: 0 : error = "Uncompressed keys are not allowed";
1298 : 0 : return nullptr;
1299 : : }
1300 [ + + + + ]: 1974 : } else if (data.size() == 32 && ctx == ParseScriptContext::P2TR) {
1301 : 1948 : unsigned char fullkey[33] = {0x02};
1302 [ + - ]: 1948 : std::copy(data.begin(), data.end(), fullkey + 1);
1303 [ + - + - : 1948 : pubkey.Set(std::begin(fullkey), std::end(fullkey));
+ - ]
1304 [ + - + - ]: 1948 : if (pubkey.IsFullyValid()) {
1305 [ + - ]: 1948 : return std::make_unique<ConstPubkeyProvider>(key_exp_index, pubkey, true);
1306 : : }
1307 : 0 : }
1308 [ + - ]: 26 : error = strprintf("Pubkey '%s' is invalid", str);
1309 : 26 : return nullptr;
1310 : 9396 : }
1311 [ + - ]: 5072 : CKey key = DecodeSecret(str);
1312 [ + - + + ]: 5072 : if (key.IsValid()) {
1313 [ + + + - : 2758 : if (permit_uncompressed || key.IsCompressed()) {
- + ]
1314 [ + - ]: 2758 : CPubKey pubkey = key.GetPubKey();
1315 [ + - + - ]: 2758 : out.keys.emplace(pubkey.GetID(), key);
1316 [ + - ]: 2758 : return std::make_unique<ConstPubkeyProvider>(key_exp_index, pubkey, ctx == ParseScriptContext::P2TR);
1317 : : } else {
1318 [ # # ]: 0 : error = "Uncompressed keys are not allowed";
1319 : 0 : return nullptr;
1320 : : }
1321 : : }
1322 [ + + ]: 5072 : }
1323 [ + - ]: 8041 : CExtKey extkey = DecodeExtKey(str);
1324 [ + - ]: 8041 : CExtPubKey extpubkey = DecodeExtPubKey(str);
1325 [ + - + + : 8041 : if (!extkey.key.IsValid() && !extpubkey.pubkey.IsValid()) {
+ - + + ]
1326 [ + - ]: 134 : error = strprintf("key '%s' is not valid", str);
1327 : 134 : return nullptr;
1328 : : }
1329 : 7907 : KeyPath path;
1330 : 7907 : DeriveType type = DeriveType::NO;
1331 [ + + ]: 7907 : if (split.back() == Span{"*"}.first(1)) {
1332 : 226 : split.pop_back();
1333 : 226 : type = DeriveType::UNHARDENED;
1334 [ + + + + ]: 7907 : } else if (split.back() == Span{"*'"}.first(2) || split.back() == Span{"*h"}.first(2)) {
1335 : 376 : apostrophe = split.back() == Span{"*'"}.first(2);
1336 : 376 : split.pop_back();
1337 : 376 : type = DeriveType::HARDENED;
1338 : 376 : }
1339 [ + - + + ]: 7907 : if (!ParseKeyPath(split, path, apostrophe, error)) return nullptr;
1340 [ + - + + ]: 7899 : if (extkey.key.IsValid()) {
1341 [ + - ]: 7083 : extpubkey = extkey.Neuter();
1342 [ + - + - ]: 7083 : out.keys.emplace(extpubkey.pubkey.GetID(), extkey.key);
1343 : 7083 : }
1344 [ + - ]: 7899 : return std::make_unique<BIP32PubkeyProvider>(key_exp_index, extpubkey, std::move(path), type, apostrophe);
1345 : 20203 : }
1346 : :
1347 : : /** Parse a public key including origin information (if enabled). */
1348 : 20233 : std::unique_ptr<PubkeyProvider> ParsePubkey(uint32_t key_exp_index, const Span<const char>& sp, ParseScriptContext ctx, FlatSigningProvider& out, std::string& error)
1349 : : {
1350 : : using namespace spanparsing;
1351 : :
1352 : 20233 : auto origin_split = Split(sp, ']');
1353 [ + + ]: 20233 : if (origin_split.size() > 2) {
1354 [ + - ]: 1 : error = "Multiple ']' characters found for a single pubkey";
1355 : 1 : return nullptr;
1356 : : }
1357 : : // This is set if either the origin or path suffix contains a hardened derivation.
1358 : 20232 : bool apostrophe = false;
1359 [ + + ]: 20232 : if (origin_split.size() == 1) {
1360 [ + - ]: 16693 : return ParsePubkeyInner(key_exp_index, origin_split[0], ctx, out, apostrophe, error);
1361 : : }
1362 [ + + + + ]: 3539 : if (origin_split[0].empty() || origin_split[0][0] != '[') {
1363 [ + - ]: 5 : error = strprintf("Key origin start '[ character expected but not found, got '%c' instead",
1364 [ + + ]: 5 : origin_split[0].empty() ? /** empty, implies split char */ ']' : origin_split[0][0]);
1365 : 5 : return nullptr;
1366 : : }
1367 [ + - ]: 3534 : auto slash_split = Split(origin_split[0].subspan(1), '/');
1368 [ + + ]: 3534 : if (slash_split[0].size() != 8) {
1369 [ + - ]: 3 : error = strprintf("Fingerprint is not 4 bytes (%u characters instead of 8 characters)", slash_split[0].size());
1370 : 3 : return nullptr;
1371 : : }
1372 [ + - ]: 3531 : std::string fpr_hex = std::string(slash_split[0].begin(), slash_split[0].end());
1373 [ + - + + ]: 3531 : if (!IsHex(fpr_hex)) {
1374 [ + - ]: 1 : error = strprintf("Fingerprint '%s' is not hex", fpr_hex);
1375 : 1 : return nullptr;
1376 : : }
1377 [ + - ]: 3530 : auto fpr_bytes = ParseHex(fpr_hex);
1378 : 3530 : KeyOriginInfo info;
1379 : : static_assert(sizeof(info.fingerprint) == 4, "Fingerprint must be 4 bytes");
1380 [ + - ]: 3530 : assert(fpr_bytes.size() == 4);
1381 [ + - ]: 3530 : std::copy(fpr_bytes.begin(), fpr_bytes.end(), info.fingerprint);
1382 [ + - + + ]: 3530 : if (!ParseKeyPath(slash_split, info.path, apostrophe, error)) return nullptr;
1383 [ + - ]: 3510 : auto provider = ParsePubkeyInner(key_exp_index, origin_split[1], ctx, out, apostrophe, error);
1384 [ + + ]: 3510 : if (!provider) return nullptr;
1385 [ - + ]: 3486 : return std::make_unique<OriginPubkeyProvider>(key_exp_index, std::move(info), std::move(provider), apostrophe);
1386 : 20233 : }
1387 : :
1388 : 36099 : std::unique_ptr<PubkeyProvider> InferPubkey(const CPubKey& pubkey, ParseScriptContext, const SigningProvider& provider)
1389 : : {
1390 : 36099 : std::unique_ptr<PubkeyProvider> key_provider = std::make_unique<ConstPubkeyProvider>(0, pubkey, false);
1391 : 36099 : KeyOriginInfo info;
1392 [ + - + - : 36099 : if (provider.GetKeyOrigin(pubkey.GetID(), info)) {
+ + ]
1393 [ + - ]: 2489 : return std::make_unique<OriginPubkeyProvider>(0, std::move(info), std::move(key_provider), /*apostrophe=*/false);
1394 : : }
1395 : 33610 : return key_provider;
1396 : 36099 : }
1397 : :
1398 : 4474 : std::unique_ptr<PubkeyProvider> InferXOnlyPubkey(const XOnlyPubKey& xkey, ParseScriptContext ctx, const SigningProvider& provider)
1399 : : {
1400 : 4474 : unsigned char full_key[CPubKey::COMPRESSED_SIZE] = {0x02};
1401 : 4474 : std::copy(xkey.begin(), xkey.end(), full_key + 1);
1402 : 4474 : CPubKey pubkey(full_key);
1403 : 4474 : std::unique_ptr<PubkeyProvider> key_provider = std::make_unique<ConstPubkeyProvider>(0, pubkey, true);
1404 : 4474 : KeyOriginInfo info;
1405 [ + - + + ]: 4474 : if (provider.GetKeyOriginByXOnly(xkey, info)) {
1406 [ + - ]: 943 : return std::make_unique<OriginPubkeyProvider>(0, std::move(info), std::move(key_provider), /*apostrophe=*/false);
1407 : : }
1408 : 3531 : return key_provider;
1409 : 4474 : }
1410 : :
1411 : : /**
1412 : : * The context for parsing a Miniscript descriptor (either from Script or from its textual representation).
1413 : : */
1414 : : struct KeyParser {
1415 : : //! The Key type is an index in DescriptorImpl::m_pubkey_args
1416 : : using Key = uint32_t;
1417 : : //! Must not be nullptr if parsing from string.
1418 : : FlatSigningProvider* m_out;
1419 : : //! Must not be nullptr if parsing from Script.
1420 : : const SigningProvider* m_in;
1421 : : //! List of keys contained in the Miniscript.
1422 : : mutable std::vector<std::unique_ptr<PubkeyProvider>> m_keys;
1423 : : //! Used to detect key parsing errors within a Miniscript.
1424 : : mutable std::string m_key_parsing_error;
1425 : :
1426 : 2838 : KeyParser(FlatSigningProvider* out LIFETIMEBOUND, const SigningProvider* in LIFETIMEBOUND) : m_out(out), m_in(in) {}
1427 : :
1428 : 21134 : bool KeyCompare(const Key& a, const Key& b) const {
1429 : 21134 : return *m_keys.at(a) < *m_keys.at(b);
1430 : : }
1431 : :
1432 : 10404 : template<typename I> std::optional<Key> FromString(I begin, I end) const
1433 : : {
1434 [ + - ]: 10404 : assert(m_out);
1435 : 10404 : Key key = m_keys.size();
1436 : 10404 : auto pk = ParsePubkey(key, {&*begin, &*end}, ParseScriptContext::P2WSH, *m_out, m_key_parsing_error);
1437 [ + + ]: 10404 : if (!pk) return {};
1438 [ + - ]: 10344 : m_keys.push_back(std::move(pk));
1439 [ + - ]: 10344 : return key;
1440 : 10404 : }
1441 : :
1442 : 1573 : std::optional<std::string> ToString(const Key& key) const
1443 : : {
1444 [ + - ]: 1573 : return m_keys.at(key)->ToString();
1445 : 0 : }
1446 : :
1447 : 421 : template<typename I> std::optional<Key> FromPKBytes(I begin, I end) const
1448 : : {
1449 [ + - ]: 421 : assert(m_in);
1450 : 421 : CPubKey pubkey(begin, end);
1451 [ + + ]: 421 : if (pubkey.IsValid()) {
1452 : 417 : Key key = m_keys.size();
1453 [ - + ]: 417 : m_keys.push_back(InferPubkey(pubkey, ParseScriptContext::P2WSH, *m_in));
1454 : 417 : return key;
1455 : : }
1456 : 4 : return {};
1457 : 421 : }
1458 : :
1459 : 72 : template<typename I> std::optional<Key> FromPKHBytes(I begin, I end) const
1460 : : {
1461 [ + - ]: 72 : assert(end - begin == 20);
1462 [ + - ]: 72 : assert(m_in);
1463 : 72 : uint160 hash;
1464 : 72 : std::copy(begin, end, hash.begin());
1465 : 72 : CKeyID keyid(hash);
1466 : 72 : CPubKey pubkey;
1467 [ + - ]: 72 : if (m_in->GetPubKey(keyid, pubkey)) {
1468 : 72 : Key key = m_keys.size();
1469 [ - + ]: 72 : m_keys.push_back(InferPubkey(pubkey, ParseScriptContext::P2WSH, *m_in));
1470 : 72 : return key;
1471 : : }
1472 : 0 : return {};
1473 : 72 : }
1474 : : };
1475 : :
1476 : : /** Parse a script in a particular context. */
1477 : 5767 : std::unique_ptr<DescriptorImpl> ParseScript(uint32_t& key_exp_index, Span<const char>& sp, ParseScriptContext ctx, FlatSigningProvider& out, std::string& error)
1478 : : {
1479 : : using namespace spanparsing;
1480 : :
1481 : 5767 : auto expr = Expr(sp);
1482 [ + - + - : 5767 : if (Func("pk", expr)) {
+ + ]
1483 : 1396 : auto pubkey = ParsePubkey(key_exp_index, expr, ctx, out, error);
1484 [ + + ]: 1396 : if (!pubkey) {
1485 [ + - ]: 73 : error = strprintf("pk(): %s", error);
1486 : 73 : return nullptr;
1487 : : }
1488 : 1323 : ++key_exp_index;
1489 [ + - ]: 1323 : return std::make_unique<PKDescriptor>(std::move(pubkey), ctx == ParseScriptContext::P2TR);
1490 : 1396 : }
1491 [ + + + + : 8724 : if ((ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH || ctx == ParseScriptContext::P2WSH) && Func("pkh", expr)) {
+ + + - +
- + + + +
+ + # # #
# ]
1492 : 11 : auto pubkey = ParsePubkey(key_exp_index, expr, ctx, out, error);
1493 [ + + ]: 11 : if (!pubkey) {
1494 [ + - ]: 2 : error = strprintf("pkh(): %s", error);
1495 : 2 : return nullptr;
1496 : : }
1497 : 9 : ++key_exp_index;
1498 [ + - ]: 9 : return std::make_unique<PKHDescriptor>(std::move(pubkey));
1499 [ + - + - : 4335 : } else if (Func("pkh", expr)) {
- + ]
1500 : 0 : error = "Can only have pkh at top level, in sh(), or in wsh()";
1501 : 0 : return nullptr;
1502 : : }
1503 [ + + + - : 7536 : if (ctx == ParseScriptContext::TOP && Func("combo", expr)) {
+ - + + +
+ + + # #
# # ]
1504 : 10 : auto pubkey = ParsePubkey(key_exp_index, expr, ctx, out, error);
1505 [ + + ]: 10 : if (!pubkey) {
1506 [ + - ]: 5 : error = strprintf("combo(): %s", error);
1507 : 5 : return nullptr;
1508 : : }
1509 : 5 : ++key_exp_index;
1510 [ + - ]: 5 : return std::make_unique<ComboDescriptor>(std::move(pubkey));
1511 [ + - + - : 4324 : } else if (Func("combo", expr)) {
- + ]
1512 : 0 : error = "Can only have combo() at top level";
1513 : 0 : return nullptr;
1514 : : }
1515 [ + - + - ]: 4314 : const bool multi = Func("multi", expr);
1516 [ + + + - : 8614 : const bool sortedmulti = !multi && Func("sortedmulti", expr);
- + + + +
+ # # #
# ]
1517 [ + + + + : 8478 : const bool multi_a = !(multi || sortedmulti) && Func("multi_a", expr);
- + + - +
+ + + # #
# # ]
1518 [ + + + + : 8412 : const bool sortedmulti_a = !(multi || sortedmulti || multi_a) && Func("sortedmulti_a", expr);
+ + + - +
- + + + +
# # # # ]
1519 [ + + + + : 4434 : if (((ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH || ctx == ParseScriptContext::P2WSH) && (multi || sortedmulti)) ||
+ + + + ]
1520 [ + + + + ]: 4216 : (ctx == ParseScriptContext::P2TR && (multi_a || sortedmulti_a))) {
1521 : 544 : auto threshold = Expr(expr);
1522 : : uint32_t thres;
1523 : 544 : std::vector<std::unique_ptr<PubkeyProvider>> providers;
1524 [ + - + - : 544 : if (!ParseUInt32(std::string(threshold.begin(), threshold.end()), &thres)) {
+ + ]
1525 [ + - - + ]: 20 : error = strprintf("Multi threshold '%s' is not valid", std::string(threshold.begin(), threshold.end()));
1526 : 20 : return nullptr;
1527 : : }
1528 : 524 : size_t script_size = 0;
1529 [ + + ]: 9181 : while (expr.size()) {
1530 [ + - - + : 8721 : if (!Const(",", expr)) {
+ + ]
1531 [ + - ]: 1 : error = strprintf("Multi: expected ',', got '%c'", expr[0]);
1532 : 1 : return nullptr;
1533 : : }
1534 [ + + ]: 8720 : auto arg = Expr(expr);
1535 [ + - ]: 8196 : auto pk = ParsePubkey(key_exp_index, arg, ctx, out, error);
1536 [ + + ]: 8196 : if (!pk) {
1537 [ + - ]: 63 : error = strprintf("Multi: %s", error);
1538 : 63 : return nullptr;
1539 : : }
1540 [ + - ]: 8133 : script_size += pk->GetSize() + 1;
1541 [ + - ]: 8133 : providers.emplace_back(std::move(pk));
1542 : 8133 : key_exp_index++;
1543 [ + + ]: 8196 : }
1544 [ + + + + : 460 : if ((multi || sortedmulti) && (providers.empty() || providers.size() > MAX_PUBKEYS_PER_MULTISIG)) {
+ + ]
1545 [ + + ]: 371 : error = strprintf("Cannot have %u keys in multisig; must have between 1 and %d keys, inclusive", providers.size(), MAX_PUBKEYS_PER_MULTISIG);
1546 : 5 : return nullptr;
1547 [ + + + + ]: 487 : } else if ((multi_a || sortedmulti_a) && (providers.empty() || providers.size() > MAX_PUBKEYS_PER_MULTI_A)) {
1548 [ + + ]: 159 : error = strprintf("Cannot have %u keys in multi_a; must have between 1 and %d keys, inclusive", providers.size(), MAX_PUBKEYS_PER_MULTI_A);
1549 : 1 : return nullptr;
1550 [ + + ]: 454 : } else if (thres < 1) {
1551 [ + - ]: 7 : error = strprintf("Multisig threshold cannot be %d, must be at least 1", thres);
1552 : 7 : return nullptr;
1553 [ + + ]: 447 : } else if (thres > providers.size()) {
1554 [ + - ]: 7 : error = strprintf("Multisig threshold cannot be larger than the number of keys; threshold is %d but only %u keys specified", thres, providers.size());
1555 : 7 : return nullptr;
1556 : : }
1557 [ + + ]: 440 : if (ctx == ParseScriptContext::TOP) {
1558 [ + + ]: 61 : if (providers.size() > 3) {
1559 [ + - ]: 7 : error = strprintf("Cannot have %u pubkeys in bare multisig; only at most 3 pubkeys", providers.size());
1560 : 7 : return nullptr;
1561 : : }
1562 : 54 : }
1563 [ + + ]: 433 : if (ctx == ParseScriptContext::P2SH) {
1564 : : // This limits the maximum number of compressed pubkeys to 15.
1565 [ + + ]: 62 : if (script_size + 3 > MAX_SCRIPT_ELEMENT_SIZE) {
1566 [ + - ]: 2 : error = strprintf("P2SH script is too large, %d bytes is larger than %d bytes", script_size + 3, MAX_SCRIPT_ELEMENT_SIZE);
1567 : 2 : return nullptr;
1568 : : }
1569 : 60 : }
1570 [ + + + + ]: 431 : if (multi || sortedmulti) {
1571 [ + - ]: 272 : return std::make_unique<MultisigDescriptor>(thres, std::move(providers), sortedmulti);
1572 : : } else {
1573 [ + - ]: 159 : return std::make_unique<MultiADescriptor>(thres, std::move(providers), sortedmulti_a);
1574 : : }
1575 [ + - - + ]: 4944 : } else if (multi || sortedmulti) {
1576 : 0 : error = "Can only have multi/sortedmulti at top level, in sh(), or in wsh()";
1577 : 0 : return nullptr;
1578 [ + - - + ]: 4002 : } else if (multi_a || sortedmulti_a) {
1579 : 0 : error = "Can only have multi_a/sortedmulti_a inside tr()";
1580 : 0 : return nullptr;
1581 : : }
1582 [ + + + + : 7168 : if ((ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH) && Func("wpkh", expr)) {
+ - + - +
+ + + + +
# # # # ]
1583 : 6 : auto pubkey = ParsePubkey(key_exp_index, expr, ParseScriptContext::P2WPKH, out, error);
1584 [ - + ]: 6 : if (!pubkey) {
1585 [ # # ]: 0 : error = strprintf("wpkh(): %s", error);
1586 : 0 : return nullptr;
1587 : : }
1588 : 6 : key_exp_index++;
1589 [ + - ]: 6 : return std::make_unique<WPKHDescriptor>(std::move(pubkey));
1590 [ + - + - : 4002 : } else if (Func("wpkh", expr)) {
- + ]
1591 : 0 : error = "Can only have wpkh() at top level or inside sh()";
1592 : 0 : return nullptr;
1593 : : }
1594 [ + + + - : 7060 : if (ctx == ParseScriptContext::TOP && Func("sh", expr)) {
+ - + + +
+ + + # #
# # ]
1595 : 188 : auto desc = ParseScript(key_exp_index, expr, ParseScriptContext::P2SH, out, error);
1596 [ + + + + ]: 188 : if (!desc || expr.size()) return nullptr;
1597 [ + - ]: 108 : return std::make_unique<SHDescriptor>(std::move(desc));
1598 [ + - + - : 3996 : } else if (Func("sh", expr)) {
- + ]
1599 : 0 : error = "Can only have sh() at top level";
1600 : 0 : return nullptr;
1601 : : }
1602 [ + + + + : 6780 : if ((ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH) && Func("wsh", expr)) {
+ - + - +
+ + + + +
# # # # ]
1603 : 952 : auto desc = ParseScript(key_exp_index, expr, ParseScriptContext::P2WSH, out, error);
1604 [ + + + + ]: 952 : if (!desc || expr.size()) return nullptr;
1605 [ + - ]: 380 : return std::make_unique<WSHDescriptor>(std::move(desc));
1606 [ + - + - : 3808 : } else if (Func("wsh", expr)) {
- + ]
1607 : 0 : error = "Can only have wsh() at top level or inside sh()";
1608 : 0 : return nullptr;
1609 : : }
1610 [ + + + - : 4837 : if (ctx == ParseScriptContext::TOP && Func("addr", expr)) {
+ - + + +
+ + + # #
# # ]
1611 [ + - + - ]: 59 : CTxDestination dest = DecodeDestination(std::string(expr.begin(), expr.end()));
1612 [ + - + - ]: 59 : if (!IsValidDestination(dest)) {
1613 [ + - ]: 59 : error = "Address is not valid";
1614 : 59 : return nullptr;
1615 : : }
1616 [ # # ]: 0 : return std::make_unique<AddressDescriptor>(std::move(dest));
1617 [ + - + - : 2856 : } else if (Func("addr", expr)) {
- + ]
1618 : 0 : error = "Can only have addr() at top level";
1619 : 0 : return nullptr;
1620 : : }
1621 [ + + + - : 4719 : if (ctx == ParseScriptContext::TOP && Func("tr", expr)) {
+ - + + +
+ + + # #
# # ]
1622 : 205 : auto arg = Expr(expr);
1623 : 205 : auto internal_key = ParsePubkey(key_exp_index, arg, ParseScriptContext::P2TR, out, error);
1624 [ + + ]: 205 : if (!internal_key) {
1625 [ + - ]: 2 : error = strprintf("tr(): %s", error);
1626 : 2 : return nullptr;
1627 : : }
1628 : 203 : ++key_exp_index;
1629 : 203 : std::vector<std::unique_ptr<DescriptorImpl>> subscripts; //!< list of script subexpressions
1630 : 203 : std::vector<int> depths; //!< depth in the tree of each subexpression (same length subscripts)
1631 [ + + ]: 203 : if (expr.size()) {
1632 [ + - + - : 185 : if (!Const(",", expr)) {
- + ]
1633 [ # # ]: 0 : error = strprintf("tr: expected ',', got '%c'", expr[0]);
1634 : 0 : return nullptr;
1635 : : }
1636 : : /** The path from the top of the tree to what we're currently processing.
1637 : : * branches[i] == false: left branch in the i'th step from the top; true: right branch.
1638 : : */
1639 : 185 : std::vector<bool> branches;
1640 : : // Loop over all provided scripts. In every iteration exactly one script will be processed.
1641 : : // Use a do-loop because inside this if-branch we expect at least one script.
1642 : 185 : do {
1643 : : // First process all open braces.
1644 [ - + + - : 4815 : while (Const("{", expr)) {
+ + ]
1645 [ + - ]: 3312 : branches.push_back(false); // new left branch
1646 [ + + ]: 3312 : if (branches.size() > TAPROOT_CONTROL_MAX_NODE_COUNT) {
1647 [ + - ]: 3 : error = strprintf("tr() supports at most %i nesting levels", TAPROOT_CONTROL_MAX_NODE_COUNT);
1648 : 3 : return nullptr;
1649 : : }
1650 : : }
1651 : : // Process the actual script expression.
1652 [ + - ]: 1503 : auto sarg = Expr(expr);
1653 [ + - + - ]: 1503 : subscripts.emplace_back(ParseScript(key_exp_index, sarg, ParseScriptContext::P2TR, out, error));
1654 [ + + ]: 1503 : if (!subscripts.back()) return nullptr;
1655 [ + - ]: 1438 : depths.push_back(branches.size());
1656 : : // Process closing braces; one is expected for every right branch we were in.
1657 [ + + + - : 1787 : while (branches.size() && branches.back()) {
+ + ]
1658 [ + - + - : 350 : if (!Const("}", expr)) {
+ + ]
1659 [ + - ]: 1 : error = strprintf("tr(): expected '}' after script expression");
1660 : 1 : return nullptr;
1661 : : }
1662 [ + - ]: 349 : branches.pop_back(); // move up one level after encountering '}'
1663 : : }
1664 : : // If after that, we're at the end of a left branch, expect a comma.
1665 [ + + + - : 1437 : if (branches.size() && !branches.back()) {
+ + ]
1666 [ + - + - : 1326 : if (!Const(",", expr)) {
+ + ]
1667 [ + - ]: 5 : error = strprintf("tr(): expected ',' after script expression");
1668 : 5 : return nullptr;
1669 : : }
1670 [ + - ]: 1321 : branches.back() = true; // And now we're in a right branch.
1671 : 1321 : }
1672 [ + + ]: 1432 : } while (branches.size());
1673 : : // After we've explored a whole tree, we must be at the end of the expression.
1674 [ - + ]: 111 : if (expr.size()) {
1675 [ # # ]: 0 : error = strprintf("tr(): expected ')' after script expression");
1676 : 0 : return nullptr;
1677 : : }
1678 [ + + ]: 185 : }
1679 [ + - + - ]: 129 : assert(TaprootBuilder::ValidDepths(depths));
1680 [ + - ]: 129 : return std::make_unique<TRDescriptor>(std::move(internal_key), std::move(subscripts), std::move(depths));
1681 [ + - + - : 2797 : } else if (Func("tr", expr)) {
- + ]
1682 : 0 : error = "Can only have tr at top level";
1683 : 0 : return nullptr;
1684 : : }
1685 [ + + + - : 4309 : if (ctx == ParseScriptContext::TOP && Func("rawtr", expr)) {
+ - + + +
+ + + # #
# # ]
1686 : 5 : auto arg = Expr(expr);
1687 [ - + ]: 5 : if (expr.size()) {
1688 : 0 : error = strprintf("rawtr(): only one key expected.");
1689 : 0 : return nullptr;
1690 : : }
1691 : 5 : auto output_key = ParsePubkey(key_exp_index, arg, ParseScriptContext::P2TR, out, error);
1692 [ + + ]: 5 : if (!output_key) return nullptr;
1693 : 4 : ++key_exp_index;
1694 [ + - ]: 4 : return std::make_unique<RawTRDescriptor>(std::move(output_key));
1695 [ + - + - : 2592 : } else if (Func("rawtr", expr)) {
- + ]
1696 : 0 : error = "Can only have rawtr at top level";
1697 : 0 : return nullptr;
1698 : : }
1699 [ + + + - : 4299 : if (ctx == ParseScriptContext::TOP && Func("raw", expr)) {
+ - + + +
+ + + # #
# # ]
1700 [ + - ]: 107 : std::string str(expr.begin(), expr.end());
1701 [ + - + + ]: 107 : if (!IsHex(str)) {
1702 [ + - ]: 2 : error = "Raw script is not hex";
1703 : 2 : return nullptr;
1704 : : }
1705 [ + - ]: 105 : auto bytes = ParseHex(str);
1706 [ + - + - ]: 105 : return std::make_unique<RawDescriptor>(CScript(bytes.begin(), bytes.end()));
1707 [ + - + - : 2587 : } else if (Func("raw", expr)) {
- + ]
1708 : 0 : error = "Can only have raw() at top level";
1709 : 0 : return nullptr;
1710 : : }
1711 : : // Process miniscript expressions.
1712 : : {
1713 : 2480 : KeyParser parser(&out, nullptr);
1714 [ + - + - ]: 2480 : auto node = miniscript::FromString(std::string(expr.begin(), expr.end()), parser);
1715 [ + - + + ]: 2480 : if (node) {
1716 [ + + ]: 1354 : if (ctx != ParseScriptContext::P2WSH) {
1717 [ + - ]: 641 : error = "Miniscript expressions can only be used in wsh";
1718 : 641 : return nullptr;
1719 : : }
1720 [ + - + - ]: 713 : if (parser.m_key_parsing_error != "") {
1721 : 0 : error = std::move(parser.m_key_parsing_error);
1722 : 0 : return nullptr;
1723 : : }
1724 [ + - + + : 713 : if (!node->IsSane() || node->IsNotSatisfiable()) {
+ - + + ]
1725 : : // Try to find the first insane sub for better error reporting.
1726 : 485 : auto insane_node = node.get();
1727 [ + - + + ]: 485 : if (const auto sub = node->FindInsaneSub()) insane_node = sub;
1728 [ + - - + : 485 : if (const auto str = insane_node->ToString(parser)) error = *str;
+ - + - ]
1729 [ + - + + ]: 485 : if (!insane_node->IsValid()) {
1730 [ + - ]: 237 : error += " is invalid";
1731 [ + - + + ]: 485 : } else if (!node->IsSane()) {
1732 [ + - ]: 194 : error += " is not sane";
1733 [ + - + + ]: 194 : if (!insane_node->IsNonMalleable()) {
1734 [ + - ]: 43 : error += ": malleable witnesses exist";
1735 [ + + + - : 194 : } else if (insane_node == node.get() && !insane_node->NeedsSignature()) {
+ + ]
1736 [ + - ]: 37 : error += ": witnesses without signature exist";
1737 [ + - + + ]: 151 : } else if (!insane_node->CheckTimeLocksMix()) {
1738 [ + - ]: 10 : error += ": contains mixes of timelocks expressed in blocks and seconds";
1739 [ + - + + ]: 114 : } else if (!insane_node->CheckDuplicateKey()) {
1740 [ + - ]: 65 : error += ": contains duplicate public keys";
1741 [ + - + + ]: 104 : } else if (!insane_node->ValidSatisfactions()) {
1742 [ + - ]: 20 : error += ": needs witnesses that may exceed resource limits";
1743 : 20 : }
1744 : 194 : } else {
1745 [ + - ]: 54 : error += " is not satisfiable";
1746 : : }
1747 : 485 : return nullptr;
1748 : : }
1749 : : // A signature check is required for a miniscript to be sane. Therefore no sane miniscript
1750 : : // may have an empty list of public keys.
1751 [ + - ]: 228 : CHECK_NONFATAL(!parser.m_keys.empty());
1752 [ + - ]: 228 : return std::make_unique<MiniscriptDescriptor>(std::move(parser.m_keys), std::move(node));
1753 : : }
1754 [ - + + ]: 2480 : }
1755 [ + + ]: 1126 : if (ctx == ParseScriptContext::P2SH) {
1756 : 29 : error = "A function is needed within P2SH";
1757 : 29 : return nullptr;
1758 [ + + ]: 1097 : } else if (ctx == ParseScriptContext::P2WSH) {
1759 : 71 : error = "A function is needed within P2WSH";
1760 : 71 : return nullptr;
1761 : : }
1762 [ + - + - ]: 1026 : error = strprintf("'%s' is not a valid descriptor function", std::string(expr.begin(), expr.end()));
1763 : 1026 : return nullptr;
1764 : 7409 : }
1765 : :
1766 : 88 : std::unique_ptr<DescriptorImpl> InferMultiA(const CScript& script, ParseScriptContext ctx, const SigningProvider& provider)
1767 : : {
1768 : 88 : auto match = MatchMultiA(script);
1769 [ - + ]: 88 : if (!match) return {};
1770 : 88 : std::vector<std::unique_ptr<PubkeyProvider>> keys;
1771 [ + - + - ]: 88 : keys.reserve(match->second.size());
1772 [ + - + + ]: 682 : for (const auto keyspan : match->second) {
1773 [ + - ]: 594 : if (keyspan.size() != 32) return {};
1774 [ + - + - ]: 594 : auto key = InferXOnlyPubkey(XOnlyPubKey{keyspan}, ctx, provider);
1775 [ + - ]: 594 : if (!key) return {};
1776 [ - + ]: 594 : keys.push_back(std::move(key));
1777 [ - + ]: 594 : }
1778 [ + - + - ]: 88 : return std::make_unique<MultiADescriptor>(match->first, std::move(keys));
1779 : 88 : }
1780 : :
1781 : 602038 : std::unique_ptr<DescriptorImpl> InferScript(const CScript& script, ParseScriptContext ctx, const SigningProvider& provider)
1782 : : {
1783 [ + + + + : 602038 : if (ctx == ParseScriptContext::P2TR && script.size() == 34 && script[0] == 32 && script[33] == OP_CHECKSIG) {
+ - - + ]
1784 : 254 : XOnlyPubKey key{Span{script}.subspan(1, 32)};
1785 [ + - ]: 254 : return std::make_unique<PKDescriptor>(InferXOnlyPubkey(key, ctx, provider), true);
1786 : : }
1787 : :
1788 [ + + ]: 601784 : if (ctx == ParseScriptContext::P2TR) {
1789 : 88 : auto ret = InferMultiA(script, ctx, provider);
1790 [ + - ]: 88 : if (ret) return ret;
1791 [ + - ]: 88 : }
1792 : :
1793 : 601696 : std::vector<std::vector<unsigned char>> data;
1794 [ + - ]: 601696 : TxoutType txntype = Solver(script, data);
1795 : :
1796 [ + + + + : 601696 : if (txntype == TxoutType::PUBKEY && (ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH || ctx == ParseScriptContext::P2WSH)) {
+ + ]
1797 [ + - + - ]: 8887 : CPubKey pubkey(data[0]);
1798 [ + - ]: 8887 : if (pubkey.IsValid()) {
1799 [ + - + - ]: 8887 : return std::make_unique<PKDescriptor>(InferPubkey(pubkey, ctx, provider));
1800 : : }
1801 : 0 : }
1802 [ + + + + : 592809 : if (txntype == TxoutType::PUBKEYHASH && (ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH || ctx == ParseScriptContext::P2WSH)) {
+ + ]
1803 [ + - + - ]: 10346 : uint160 hash(data[0]);
1804 [ + - ]: 10346 : CKeyID keyid(hash);
1805 [ + - ]: 10346 : CPubKey pubkey;
1806 [ + - + + ]: 10346 : if (provider.GetPubKey(keyid, pubkey)) {
1807 [ + - + - ]: 6 : return std::make_unique<PKHDescriptor>(InferPubkey(pubkey, ctx, provider));
1808 : : }
1809 : 10340 : }
1810 [ + + + + : 592803 : if (txntype == TxoutType::WITNESS_V0_KEYHASH && (ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH)) {
+ - ]
1811 [ + - + - ]: 28810 : uint160 hash(data[0]);
1812 [ + - ]: 28810 : CKeyID keyid(hash);
1813 [ + - ]: 28810 : CPubKey pubkey;
1814 [ + - + + ]: 28810 : if (provider.GetPubKey(keyid, pubkey)) {
1815 [ + - + - ]: 5 : return std::make_unique<WPKHDescriptor>(InferPubkey(pubkey, ctx, provider));
1816 : : }
1817 : 28805 : }
1818 [ + + + + : 592798 : if (txntype == TxoutType::MULTISIG && (ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH || ctx == ParseScriptContext::P2WSH)) {
+ + + - ]
1819 : 8532 : std::vector<std::unique_ptr<PubkeyProvider>> providers;
1820 [ + + ]: 35244 : for (size_t i = 1; i + 1 < data.size(); ++i) {
1821 [ + - + - ]: 26712 : CPubKey pubkey(data[i]);
1822 [ + - + - ]: 26712 : providers.push_back(InferPubkey(pubkey, ctx, provider));
1823 : 26712 : }
1824 [ + - ]: 8532 : return std::make_unique<MultisigDescriptor>((int)data[0][0], std::move(providers));
1825 : 8532 : }
1826 [ + + + - ]: 584266 : if (txntype == TxoutType::SCRIPTHASH && ctx == ParseScriptContext::TOP) {
1827 [ + - + - ]: 51095 : uint160 hash(data[0]);
1828 [ + - ]: 51095 : CScriptID scriptid(hash);
1829 [ + - ]: 51095 : CScript subscript;
1830 [ + - + + ]: 51095 : if (provider.GetCScript(scriptid, subscript)) {
1831 [ + - ]: 64 : auto sub = InferScript(subscript, ParseScriptContext::P2SH, provider);
1832 [ + - + - ]: 64 : if (sub) return std::make_unique<SHDescriptor>(std::move(sub));
1833 [ + - ]: 64 : }
1834 [ + + ]: 51095 : }
1835 [ + + + + ]: 584202 : if (txntype == TxoutType::WITNESS_V0_SCRIPTHASH && (ctx == ParseScriptContext::TOP || ctx == ParseScriptContext::P2SH)) {
1836 [ + - + - : 24614 : CScriptID scriptid{RIPEMD160(data[0])};
+ - ]
1837 [ + - ]: 24614 : CScript subscript;
1838 [ + - + + ]: 24614 : if (provider.GetCScript(scriptid, subscript)) {
1839 [ + - ]: 473 : auto sub = InferScript(subscript, ParseScriptContext::P2WSH, provider);
1840 [ + + + - ]: 473 : if (sub) return std::make_unique<WSHDescriptor>(std::move(sub));
1841 [ + + ]: 473 : }
1842 [ + + ]: 24614 : }
1843 [ + + + - ]: 583936 : if (txntype == TxoutType::WITNESS_V1_TAPROOT && ctx == ParseScriptContext::TOP) {
1844 : : // Extract x-only pubkey from output.
1845 [ + - ]: 4460 : XOnlyPubKey pubkey;
1846 [ + - + - ]: 4460 : std::copy(data[0].begin(), data[0].end(), pubkey.begin());
1847 : : // Request spending data.
1848 [ + - ]: 4460 : TaprootSpendData tap;
1849 [ + - + + ]: 4460 : if (provider.GetTaprootSpendData(pubkey, tap)) {
1850 : : // If found, convert it back to tree form.
1851 [ + - ]: 99 : auto tree = InferTaprootTree(tap, pubkey);
1852 [ + + ]: 99 : if (tree) {
1853 : : // If that works, try to infer subdescriptors for all leaves.
1854 : 93 : bool ok = true;
1855 : 93 : std::vector<std::unique_ptr<DescriptorImpl>> subscripts; //!< list of script subexpressions
1856 : 93 : std::vector<int> depths; //!< depth in the tree of each subexpression (same length subscripts)
1857 [ + - + + ]: 777 : for (const auto& [depth, script, leaf_ver] : *tree) {
1858 : 342 : std::unique_ptr<DescriptorImpl> subdesc;
1859 [ - + ]: 342 : if (leaf_ver == TAPROOT_LEAF_TAPSCRIPT) {
1860 [ + - + - : 684 : subdesc = InferScript(CScript(script.begin(), script.end()), ParseScriptContext::P2TR, provider);
+ - ]
1861 : 342 : }
1862 [ + - ]: 342 : if (!subdesc) {
1863 : 0 : ok = false;
1864 : 0 : break;
1865 : : } else {
1866 [ + - ]: 342 : subscripts.push_back(std::move(subdesc));
1867 [ + - ]: 342 : depths.push_back(depth);
1868 : : }
1869 [ - + ]: 342 : }
1870 [ + - ]: 93 : if (ok) {
1871 [ + - ]: 93 : auto key = InferXOnlyPubkey(tap.internal_key, ParseScriptContext::P2TR, provider);
1872 [ + - ]: 93 : return std::make_unique<TRDescriptor>(std::move(key), std::move(subscripts), std::move(depths));
1873 : 93 : }
1874 [ + - ]: 93 : }
1875 [ + + ]: 99 : }
1876 : : // If the above doesn't work, construct a rawtr() descriptor with just the encoded x-only pubkey.
1877 [ + - + + ]: 4367 : if (pubkey.IsFullyValid()) {
1878 [ + - ]: 3533 : auto key = InferXOnlyPubkey(pubkey, ParseScriptContext::P2TR, provider);
1879 [ + - ]: 3533 : if (key) {
1880 [ + - ]: 3533 : return std::make_unique<RawTRDescriptor>(std::move(key));
1881 : : }
1882 [ + - ]: 3533 : }
1883 [ + + ]: 4460 : }
1884 : :
1885 [ + + ]: 580310 : if (ctx == ParseScriptContext::P2WSH) {
1886 [ + - ]: 358 : KeyParser parser(nullptr, &provider);
1887 [ + - ]: 358 : auto node = miniscript::FromScript(script, parser);
1888 [ + + + - : 358 : if (node && node->IsSane()) {
+ + ]
1889 [ + - ]: 151 : return std::make_unique<MiniscriptDescriptor>(std::move(parser.m_keys), std::move(node));
1890 : : }
1891 [ + + ]: 358 : }
1892 : :
1893 : : // The following descriptors are all top-level only descriptors.
1894 : : // So if we are not at the top level, return early.
1895 [ + + ]: 580159 : if (ctx != ParseScriptContext::TOP) return nullptr;
1896 : :
1897 [ + - ]: 579952 : CTxDestination dest;
1898 [ + - + + ]: 579952 : if (ExtractDestination(script, dest)) {
1899 [ + - + - : 123454 : if (GetScriptForDestination(dest) == script) {
+ - ]
1900 [ + - ]: 123454 : return std::make_unique<AddressDescriptor>(std::move(dest));
1901 : : }
1902 : 0 : }
1903 : :
1904 [ + - ]: 456498 : return std::make_unique<RawDescriptor>(script);
1905 : 602038 : }
1906 : :
1907 : :
1908 : : } // namespace
1909 : :
1910 : : /** Check a descriptor checksum, and update desc to be the checksum-less part. */
1911 : 4729 : bool CheckChecksum(Span<const char>& sp, bool require_checksum, std::string& error, std::string* out_checksum = nullptr)
1912 : : {
1913 : : using namespace spanparsing;
1914 : :
1915 : 4729 : auto check_split = Split(sp, '#');
1916 [ + + ]: 4729 : if (check_split.size() > 2) {
1917 [ + - ]: 15 : error = "Multiple '#' symbols";
1918 : 15 : return false;
1919 : : }
1920 [ + + + + ]: 4714 : if (check_split.size() == 1 && require_checksum){
1921 [ + - ]: 1043 : error = "Missing checksum";
1922 : 1043 : return false;
1923 : : }
1924 [ + + ]: 3671 : if (check_split.size() == 2) {
1925 [ + + ]: 20 : if (check_split[1].size() != 8) {
1926 [ + - ]: 6 : error = strprintf("Expected 8 character checksum, not %u characters", check_split[1].size());
1927 : 6 : return false;
1928 : : }
1929 : 14 : }
1930 [ + - ]: 3665 : auto checksum = DescriptorChecksum(check_split[0]);
1931 [ + + ]: 3665 : if (checksum.empty()) {
1932 [ + - ]: 48 : error = "Invalid characters in payload";
1933 : 48 : return false;
1934 : : }
1935 [ + + ]: 3617 : if (check_split.size() == 2) {
1936 [ + - + + ]: 12 : if (!std::equal(checksum.begin(), checksum.end(), check_split[1].begin())) {
1937 [ + - - + ]: 2 : error = strprintf("Provided checksum '%s' does not match computed checksum '%s'", std::string(check_split[1].begin(), check_split[1].end()), checksum);
1938 : 2 : return false;
1939 : : }
1940 : 10 : }
1941 [ + + ]: 3615 : if (out_checksum) *out_checksum = std::move(checksum);
1942 : 3615 : sp = check_split[0];
1943 : 3615 : return true;
1944 : 4729 : }
1945 : :
1946 : 4390 : std::unique_ptr<Descriptor> Parse(const std::string& descriptor, FlatSigningProvider& out, std::string& error, bool require_checksum)
1947 : : {
1948 : 4390 : Span<const char> sp{descriptor};
1949 [ + + ]: 4390 : if (!CheckChecksum(sp, require_checksum, error)) return nullptr;
1950 : 3320 : uint32_t key_exp_index = 0;
1951 : 3320 : auto ret = ParseScript(key_exp_index, sp, ParseScriptContext::TOP, out, error);
1952 [ + + + + ]: 3320 : if (sp.size() == 0 && ret) return std::unique_ptr<Descriptor>(std::move(ret));
1953 : 2550 : return nullptr;
1954 : 4390 : }
1955 : :
1956 : 339 : std::string GetDescriptorChecksum(const std::string& descriptor)
1957 : : {
1958 : 339 : std::string ret;
1959 : 339 : std::string error;
1960 [ + - ]: 339 : Span<const char> sp{descriptor};
1961 [ + - + + : 339 : if (!CheckChecksum(sp, false, error, &ret)) return "";
- + ]
1962 : 295 : return ret;
1963 : 339 : }
1964 : :
1965 : 601159 : std::unique_ptr<Descriptor> InferDescriptor(const CScript& script, const SigningProvider& provider)
1966 : : {
1967 : 601159 : return InferScript(script, ParseScriptContext::TOP, provider);
1968 : : }
1969 : :
1970 : 0 : uint256 DescriptorID(const Descriptor& desc)
1971 : : {
1972 : 0 : std::string desc_str = desc.ToString(/*compat_format=*/true);
1973 [ # # ]: 0 : uint256 id;
1974 [ # # # # : 0 : CSHA256().Write((unsigned char*)desc_str.data(), desc_str.size()).Finalize(id.begin());
# # # # ]
1975 : : return id;
1976 : 0 : }
1977 : :
1978 : 9069 : void DescriptorCache::CacheParentExtPubKey(uint32_t key_exp_pos, const CExtPubKey& xpub)
1979 : : {
1980 : 9069 : m_parent_xpubs[key_exp_pos] = xpub;
1981 : 9069 : }
1982 : :
1983 : 4062 : void DescriptorCache::CacheDerivedExtPubKey(uint32_t key_exp_pos, uint32_t der_index, const CExtPubKey& xpub)
1984 : : {
1985 : 4062 : auto& xpubs = m_derived_xpubs[key_exp_pos];
1986 : 4062 : xpubs[der_index] = xpub;
1987 : 4062 : }
1988 : :
1989 : 602 : void DescriptorCache::CacheLastHardenedExtPubKey(uint32_t key_exp_pos, const CExtPubKey& xpub)
1990 : : {
1991 : 602 : m_last_hardened_xpubs[key_exp_pos] = xpub;
1992 : 602 : }
1993 : :
1994 : 15969 : bool DescriptorCache::GetCachedParentExtPubKey(uint32_t key_exp_pos, CExtPubKey& xpub) const
1995 : : {
1996 : 15969 : const auto& it = m_parent_xpubs.find(key_exp_pos);
1997 [ + + ]: 15969 : if (it == m_parent_xpubs.end()) return false;
1998 : 10413 : xpub = it->second;
1999 : 10413 : return true;
2000 : 15969 : }
2001 : :
2002 : 10312 : bool DescriptorCache::GetCachedDerivedExtPubKey(uint32_t key_exp_pos, uint32_t der_index, CExtPubKey& xpub) const
2003 : : {
2004 : 10312 : const auto& key_exp_it = m_derived_xpubs.find(key_exp_pos);
2005 [ + + ]: 10312 : if (key_exp_it == m_derived_xpubs.end()) return false;
2006 : 6714 : const auto& der_it = key_exp_it->second.find(der_index);
2007 [ + + ]: 6714 : if (der_it == key_exp_it->second.end()) return false;
2008 : 6340 : xpub = der_it->second;
2009 : 6340 : return true;
2010 : 10312 : }
2011 : :
2012 : 0 : bool DescriptorCache::GetCachedLastHardenedExtPubKey(uint32_t key_exp_pos, CExtPubKey& xpub) const
2013 : : {
2014 : 0 : const auto& it = m_last_hardened_xpubs.find(key_exp_pos);
2015 [ # # ]: 0 : if (it == m_last_hardened_xpubs.end()) return false;
2016 : 0 : xpub = it->second;
2017 : 0 : return true;
2018 : 0 : }
2019 : :
2020 : 0 : DescriptorCache DescriptorCache::MergeAndDiff(const DescriptorCache& other)
2021 : : {
2022 : 0 : DescriptorCache diff;
2023 [ # # # # ]: 0 : for (const auto& parent_xpub_pair : other.GetCachedParentExtPubKeys()) {
2024 [ # # ]: 0 : CExtPubKey xpub;
2025 [ # # # # ]: 0 : if (GetCachedParentExtPubKey(parent_xpub_pair.first, xpub)) {
2026 [ # # # # ]: 0 : if (xpub != parent_xpub_pair.second) {
2027 [ # # # # : 0 : throw std::runtime_error(std::string(__func__) + ": New cached parent xpub does not match already cached parent xpub");
# # # # ]
2028 : : }
2029 : 0 : continue;
2030 : : }
2031 [ # # ]: 0 : CacheParentExtPubKey(parent_xpub_pair.first, parent_xpub_pair.second);
2032 [ # # ]: 0 : diff.CacheParentExtPubKey(parent_xpub_pair.first, parent_xpub_pair.second);
2033 : : }
2034 [ # # # # ]: 0 : for (const auto& derived_xpub_map_pair : other.GetCachedDerivedExtPubKeys()) {
2035 [ # # ]: 0 : for (const auto& derived_xpub_pair : derived_xpub_map_pair.second) {
2036 [ # # ]: 0 : CExtPubKey xpub;
2037 [ # # # # ]: 0 : if (GetCachedDerivedExtPubKey(derived_xpub_map_pair.first, derived_xpub_pair.first, xpub)) {
2038 [ # # # # ]: 0 : if (xpub != derived_xpub_pair.second) {
2039 [ # # # # : 0 : throw std::runtime_error(std::string(__func__) + ": New cached derived xpub does not match already cached derived xpub");
# # # # ]
2040 : : }
2041 : 0 : continue;
2042 : : }
2043 [ # # ]: 0 : CacheDerivedExtPubKey(derived_xpub_map_pair.first, derived_xpub_pair.first, derived_xpub_pair.second);
2044 [ # # ]: 0 : diff.CacheDerivedExtPubKey(derived_xpub_map_pair.first, derived_xpub_pair.first, derived_xpub_pair.second);
2045 : : }
2046 : : }
2047 [ # # # # ]: 0 : for (const auto& lh_xpub_pair : other.GetCachedLastHardenedExtPubKeys()) {
2048 [ # # ]: 0 : CExtPubKey xpub;
2049 [ # # # # ]: 0 : if (GetCachedLastHardenedExtPubKey(lh_xpub_pair.first, xpub)) {
2050 [ # # # # ]: 0 : if (xpub != lh_xpub_pair.second) {
2051 [ # # # # : 0 : throw std::runtime_error(std::string(__func__) + ": New cached last hardened xpub does not match already cached last hardened xpub");
# # # # ]
2052 : : }
2053 : 0 : continue;
2054 : : }
2055 [ # # ]: 0 : CacheLastHardenedExtPubKey(lh_xpub_pair.first, lh_xpub_pair.second);
2056 [ # # ]: 0 : diff.CacheLastHardenedExtPubKey(lh_xpub_pair.first, lh_xpub_pair.second);
2057 : : }
2058 : 0 : return diff;
2059 [ # # ]: 0 : }
2060 : :
2061 : 10936 : ExtPubKeyMap DescriptorCache::GetCachedParentExtPubKeys() const
2062 : : {
2063 : 10936 : return m_parent_xpubs;
2064 : : }
2065 : :
2066 : 10936 : std::unordered_map<uint32_t, ExtPubKeyMap> DescriptorCache::GetCachedDerivedExtPubKeys() const
2067 : : {
2068 : 10936 : return m_derived_xpubs;
2069 : : }
2070 : :
2071 : 0 : ExtPubKeyMap DescriptorCache::GetCachedLastHardenedExtPubKeys() const
2072 : : {
2073 : 0 : return m_last_hardened_xpubs;
2074 : : }
|