mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
4aa197dbdb
fa4632c41714dfaa699bacc6a947d72668a4deef test: Move boost/stdlib includes last (MarcoFalke) fa488f131fd4f5bab0d01376c5a5013306f1abcd scripted-diff: Bump copyright headers (MarcoFalke) fac5c373006a9e4bcbb56843bb85f1aca4d87599 scripted-diff: Sort test includes (MarcoFalke) Pull request description: When writing tests, often includes need to be added or removed. Currently the list of includes is not sorted, so developers that write tests and have `clang-format` installed will either have an unrelated change (sorting) included in their commit or they will have to manually undo the sort. This pull preempts both issues by just sorting all includes in one commit. Please be aware that this is **NOT** a change to policy to enforce clang-format or any other developer guideline or process. Developers are free to use whatever tool they want, see also #18651. Edit: Also includes a commit to bump the copyright headers, so that the touched files don't need to be touched again for that. ACKs for top commit: practicalswift: ACK fa4632c41714dfaa699bacc6a947d72668a4deef jonatack: ACK fa4632c41714dfaa, light review and sanity checks with gcc build and clang fuzz build Tree-SHA512: 130a8d073a379ba556b1e64104d37c46b671425c0aef0ed725fd60156a95e8dc83fb6f0b5330b2f8152cf5daaf3983b4aca5e75812598f2626c39fd12b88b180
159 lines
7.3 KiB
C++
159 lines
7.3 KiB
C++
// Copyright (c) 2018-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_SCRIPT_DESCRIPTOR_H
|
|
#define BITCOIN_SCRIPT_DESCRIPTOR_H
|
|
|
|
#include <outputtype.h>
|
|
#include <script/script.h>
|
|
#include <script/sign.h>
|
|
#include <script/signingprovider.h>
|
|
|
|
#include <optional>
|
|
#include <vector>
|
|
|
|
using ExtPubKeyMap = std::unordered_map<uint32_t, CExtPubKey>;
|
|
|
|
/** Cache for single descriptor's derived extended pubkeys */
|
|
class DescriptorCache {
|
|
private:
|
|
/** Map key expression index -> map of (key derivation index -> xpub) */
|
|
std::unordered_map<uint32_t, ExtPubKeyMap> m_derived_xpubs;
|
|
/** Map key expression index -> parent xpub */
|
|
ExtPubKeyMap m_parent_xpubs;
|
|
|
|
public:
|
|
/** Cache a parent xpub
|
|
*
|
|
* @param[in] key_exp_pos Position of the key expression within the descriptor
|
|
* @param[in] xpub The CExtPubKey to cache
|
|
*/
|
|
void CacheParentExtPubKey(uint32_t key_exp_pos, const CExtPubKey& xpub);
|
|
/** Retrieve a cached parent xpub
|
|
*
|
|
* @param[in] key_exp_pos Position of the key expression within the descriptor
|
|
* @param[in] xpub The CExtPubKey to get from cache
|
|
*/
|
|
bool GetCachedParentExtPubKey(uint32_t key_exp_pos, CExtPubKey& xpub) const;
|
|
/** Cache an xpub derived at an index
|
|
*
|
|
* @param[in] key_exp_pos Position of the key expression within the descriptor
|
|
* @param[in] der_index Derivation index of the xpub
|
|
* @param[in] xpub The CExtPubKey to cache
|
|
*/
|
|
void CacheDerivedExtPubKey(uint32_t key_exp_pos, uint32_t der_index, const CExtPubKey& xpub);
|
|
/** Retrieve a cached xpub derived at an index
|
|
*
|
|
* @param[in] key_exp_pos Position of the key expression within the descriptor
|
|
* @param[in] der_index Derivation index of the xpub
|
|
* @param[in] xpub The CExtPubKey to get from cache
|
|
*/
|
|
bool GetCachedDerivedExtPubKey(uint32_t key_exp_pos, uint32_t der_index, CExtPubKey& xpub) const;
|
|
|
|
/** Retrieve all cached parent xpubs */
|
|
const ExtPubKeyMap GetCachedParentExtPubKeys() const;
|
|
/** Retrieve all cached derived xpubs */
|
|
const std::unordered_map<uint32_t, ExtPubKeyMap> GetCachedDerivedExtPubKeys() const;
|
|
};
|
|
|
|
/** \brief Interface for parsed descriptor objects.
|
|
*
|
|
* Descriptors are strings that describe a set of scriptPubKeys, together with
|
|
* all information necessary to solve them. By combining all information into
|
|
* one, they avoid the need to separately import keys and scripts.
|
|
*
|
|
* Descriptors may be ranged, which occurs when the public keys inside are
|
|
* specified in the form of HD chains (xpubs).
|
|
*
|
|
* Descriptors always represent public information - public keys and scripts -
|
|
* but in cases where private keys need to be conveyed along with a descriptor,
|
|
* they can be included inside by changing public keys to private keys (WIF
|
|
* format), and changing xpubs by xprvs.
|
|
*
|
|
* Reference documentation about the descriptor language can be found in
|
|
* doc/descriptors.md.
|
|
*/
|
|
struct Descriptor {
|
|
virtual ~Descriptor() = default;
|
|
|
|
/** Whether the expansion of this descriptor depends on the position. */
|
|
virtual bool IsRange() const = 0;
|
|
|
|
/** Whether this descriptor has all information about signing ignoring lack of private keys.
|
|
* This is true for all descriptors except ones that use `raw` or `addr` constructions. */
|
|
virtual bool IsSolvable() const = 0;
|
|
|
|
/** Convert the descriptor back to a string, undoing parsing. */
|
|
virtual std::string ToString() const = 0;
|
|
|
|
/** Convert the descriptor to a private string. This fails if the provided provider does not have the relevant private keys. */
|
|
virtual bool ToPrivateString(const SigningProvider& provider, std::string& out) const = 0;
|
|
|
|
/** Expand a descriptor at a specified position.
|
|
*
|
|
* @param[in] pos The position at which to expand the descriptor. If IsRange() is false, this is ignored.
|
|
* @param[in] provider The provider to query for private keys in case of hardened derivation.
|
|
* @param[out] output_scripts The expanded scriptPubKeys.
|
|
* @param[out] out Scripts and public keys necessary for solving the expanded scriptPubKeys (may be equal to `provider`).
|
|
* @param[out] write_cache Cache data necessary to evaluate the descriptor at this point without access to private keys.
|
|
*/
|
|
virtual bool Expand(int pos, const SigningProvider& provider, std::vector<CScript>& output_scripts, FlatSigningProvider& out, DescriptorCache* write_cache = nullptr) const = 0;
|
|
|
|
/** Expand a descriptor at a specified position using cached expansion data.
|
|
*
|
|
* @param[in] pos The position at which to expand the descriptor. If IsRange() is false, this is ignored.
|
|
* @param[in] read_cache Cached expansion data.
|
|
* @param[out] output_scripts The expanded scriptPubKeys.
|
|
* @param[out] out Scripts and public keys necessary for solving the expanded scriptPubKeys (may be equal to `provider`).
|
|
*/
|
|
virtual bool ExpandFromCache(int pos, const DescriptorCache& read_cache, std::vector<CScript>& output_scripts, FlatSigningProvider& out) const = 0;
|
|
|
|
/** Expand the private key for a descriptor at a specified position, if possible.
|
|
*
|
|
* pos: the position at which to expand the descriptor. If IsRange() is false, this is ignored.
|
|
* provider: the provider to query for the private keys.
|
|
* out: any private keys available for the specified pos will be placed here.
|
|
*/
|
|
virtual void ExpandPrivate(int pos, const SigningProvider& provider, FlatSigningProvider& out) const = 0;
|
|
|
|
/** @return The OutputType of the scriptPubKey(s) produced by this descriptor. Or nullopt if indeterminate (multiple or none) */
|
|
virtual std::optional<OutputType> GetOutputType() const = 0;
|
|
};
|
|
|
|
/** Parse a `descriptor` string. Included private keys are put in `out`.
|
|
*
|
|
* If the descriptor has a checksum, it must be valid. If `require_checksum`
|
|
* is set, the checksum is mandatory - otherwise it is optional.
|
|
*
|
|
* If a parse error occurs, or the checksum is missing/invalid, or anything
|
|
* else is wrong, `nullptr` is returned.
|
|
*/
|
|
std::unique_ptr<Descriptor> Parse(const std::string& descriptor, FlatSigningProvider& out, std::string& error, bool require_checksum = false);
|
|
|
|
/** Get the checksum for a `descriptor`.
|
|
*
|
|
* - If it already has one, and it is correct, return the checksum in the input.
|
|
* - If it already has one that is wrong, return "".
|
|
* - If it does not already have one, return the checksum that would need to be added.
|
|
*/
|
|
std::string GetDescriptorChecksum(const std::string& descriptor);
|
|
|
|
/** Find a descriptor for the specified `script`, using information from `provider` where possible.
|
|
*
|
|
* A non-ranged descriptor which only generates the specified script will be returned in all
|
|
* circumstances.
|
|
*
|
|
* For public keys with key origin information, this information will be preserved in the returned
|
|
* descriptor.
|
|
*
|
|
* - If all information for solving `script` is present in `provider`, a descriptor will be returned
|
|
* which is IsSolvable() and encapsulates said information.
|
|
* - Failing that, if `script` corresponds to a known address type, an "addr()" descriptor will be
|
|
* returned (which is not IsSolvable()).
|
|
* - Failing that, a "raw()" descriptor is returned.
|
|
*/
|
|
std::unique_ptr<Descriptor> InferDescriptor(const CScript& script, const SigningProvider& provider);
|
|
|
|
#endif // BITCOIN_SCRIPT_DESCRIPTOR_H
|