2014-08-23 03:35:51 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2020-01-15 02:17:38 +07:00
|
|
|
// Copyright (c) 2009-2020 The Bitcoin Core developers
|
2014-09-09 10:00:42 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-08-23 03:35:51 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_SCRIPT_STANDARD_H
|
|
|
|
#define BITCOIN_SCRIPT_STANDARD_H
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <script/interpreter.h>
|
|
|
|
#include <uint256.h>
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2020-05-18 17:14:10 +09:00
|
|
|
#include <string>
|
2021-01-04 11:20:02 +01:00
|
|
|
#include <variant>
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2015-11-09 19:16:38 +01:00
|
|
|
static const bool DEFAULT_ACCEPT_DATACARRIER = true;
|
|
|
|
|
2014-10-28 17:47:18 -04:00
|
|
|
class CKeyID;
|
2014-11-04 14:34:04 +01:00
|
|
|
class CScript;
|
2020-01-15 21:48:59 +00:00
|
|
|
struct ScriptHash;
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2020-01-15 14:03:57 -08:00
|
|
|
template<typename HashType>
|
|
|
|
class BaseHash
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
HashType m_hash;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BaseHash() : m_hash() {}
|
2020-11-29 19:33:22 +01:00
|
|
|
explicit BaseHash(const HashType& in) : m_hash(in) {}
|
2020-01-15 14:03:57 -08:00
|
|
|
|
|
|
|
unsigned char* begin()
|
|
|
|
{
|
|
|
|
return m_hash.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
const unsigned char* begin() const
|
|
|
|
{
|
|
|
|
return m_hash.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char* end()
|
|
|
|
{
|
|
|
|
return m_hash.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
const unsigned char* end() const
|
|
|
|
{
|
|
|
|
return m_hash.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
operator std::vector<unsigned char>() const
|
|
|
|
{
|
|
|
|
return std::vector<unsigned char>{m_hash.begin(), m_hash.end()};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string ToString() const
|
|
|
|
{
|
|
|
|
return m_hash.ToString();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const BaseHash<HashType>& other) const noexcept
|
|
|
|
{
|
|
|
|
return m_hash == other.m_hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const BaseHash<HashType>& other) const noexcept
|
|
|
|
{
|
|
|
|
return !(m_hash == other.m_hash);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const BaseHash<HashType>& other) const noexcept
|
|
|
|
{
|
|
|
|
return m_hash < other.m_hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t size() const
|
|
|
|
{
|
|
|
|
return m_hash.size();
|
|
|
|
}
|
2020-06-26 13:36:09 -07:00
|
|
|
|
|
|
|
unsigned char* data() { return m_hash.data(); }
|
|
|
|
const unsigned char* data() const { return m_hash.data(); }
|
2020-01-15 14:03:57 -08:00
|
|
|
};
|
|
|
|
|
2014-09-24 22:24:46 -04:00
|
|
|
/** A reference to a CScript: the Hash160 of its serialization (see script.h) */
|
2020-01-15 14:03:57 -08:00
|
|
|
class CScriptID : public BaseHash<uint160>
|
2014-09-24 22:24:46 -04:00
|
|
|
{
|
|
|
|
public:
|
2020-01-15 14:03:57 -08:00
|
|
|
CScriptID() : BaseHash() {}
|
2018-04-18 14:41:32 -07:00
|
|
|
explicit CScriptID(const CScript& in);
|
2020-01-15 14:03:57 -08:00
|
|
|
explicit CScriptID(const uint160& in) : BaseHash(in) {}
|
2020-01-15 21:48:59 +00:00
|
|
|
explicit CScriptID(const ScriptHash& in);
|
2014-09-24 22:24:46 -04:00
|
|
|
};
|
|
|
|
|
2017-08-15 17:55:26 -07:00
|
|
|
/**
|
|
|
|
* Default setting for nMaxDatacarrierBytes. 80 bytes of data, +1 for OP_RETURN,
|
|
|
|
* +2 for the pushdata opcodes.
|
|
|
|
*/
|
|
|
|
static const unsigned int MAX_OP_RETURN_RELAY = 83;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A data carrying output is an unspendable output containing data. The script
|
2020-05-30 09:16:05 -04:00
|
|
|
* type is designated as TxoutType::NULL_DATA.
|
2017-08-15 17:55:26 -07:00
|
|
|
*/
|
2015-06-27 19:21:41 +00:00
|
|
|
extern bool fAcceptDatacarrier;
|
2017-08-15 17:55:26 -07:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
/** Maximum size of TxoutType::NULL_DATA scripts that this node considers standard. */
|
2014-10-10 23:55:14 +00:00
|
|
|
extern unsigned nMaxDatacarrierBytes;
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2014-11-10 14:40:01 +08:00
|
|
|
/**
|
|
|
|
* Mandatory script verification flags that all new blocks must comply with for
|
|
|
|
* them to be valid. (but old blocks may not comply with) Currently just P2SH,
|
2020-05-26 18:39:01 +03:00
|
|
|
* but in the future other flags may be added.
|
2017-08-15 17:55:26 -07:00
|
|
|
*
|
2019-08-19 11:55:38 -04:00
|
|
|
* Failing one of these tests may trigger a DoS ban - see CheckInputScripts() for
|
2014-11-10 14:40:01 +08:00
|
|
|
* details.
|
|
|
|
*/
|
2014-08-23 03:35:51 +02:00
|
|
|
static const unsigned int MANDATORY_SCRIPT_VERIFY_FLAGS = SCRIPT_VERIFY_P2SH;
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
enum class TxoutType {
|
|
|
|
NONSTANDARD,
|
2014-08-23 03:35:51 +02:00
|
|
|
// 'standard' transaction types:
|
2020-05-30 09:16:05 -04:00
|
|
|
PUBKEY,
|
|
|
|
PUBKEYHASH,
|
|
|
|
SCRIPTHASH,
|
|
|
|
MULTISIG,
|
|
|
|
NULL_DATA, //!< unspendable OP_RETURN script that carries data
|
|
|
|
WITNESS_V0_SCRIPTHASH,
|
|
|
|
WITNESS_V0_KEYHASH,
|
2020-09-11 14:34:10 -07:00
|
|
|
WITNESS_V1_TAPROOT,
|
2020-05-30 09:16:05 -04:00
|
|
|
WITNESS_UNKNOWN, //!< Only for Witness versions not already defined above
|
2014-08-23 03:35:51 +02:00
|
|
|
};
|
|
|
|
|
2014-09-11 19:15:29 +02:00
|
|
|
class CNoDestination {
|
|
|
|
public:
|
|
|
|
friend bool operator==(const CNoDestination &a, const CNoDestination &b) { return true; }
|
|
|
|
friend bool operator<(const CNoDestination &a, const CNoDestination &b) { return true; }
|
|
|
|
};
|
|
|
|
|
2020-01-15 14:03:57 -08:00
|
|
|
struct PKHash : public BaseHash<uint160>
|
2019-02-19 17:00:45 -05:00
|
|
|
{
|
2020-01-15 14:03:57 -08:00
|
|
|
PKHash() : BaseHash() {}
|
|
|
|
explicit PKHash(const uint160& hash) : BaseHash(hash) {}
|
2019-02-19 17:00:45 -05:00
|
|
|
explicit PKHash(const CPubKey& pubkey);
|
2020-01-15 21:48:59 +00:00
|
|
|
explicit PKHash(const CKeyID& pubkey_id);
|
2019-02-19 17:00:45 -05:00
|
|
|
};
|
2020-01-15 13:40:14 -08:00
|
|
|
CKeyID ToKeyID(const PKHash& key_hash);
|
2019-02-19 17:00:45 -05:00
|
|
|
|
2020-01-14 15:05:53 -05:00
|
|
|
struct WitnessV0KeyHash;
|
2020-01-15 14:03:57 -08:00
|
|
|
struct ScriptHash : public BaseHash<uint160>
|
2019-02-19 17:00:45 -05:00
|
|
|
{
|
2020-01-15 14:03:57 -08:00
|
|
|
ScriptHash() : BaseHash() {}
|
2020-01-14 15:05:53 -05:00
|
|
|
// These don't do what you'd expect.
|
|
|
|
// Use ScriptHash(GetScriptForDestination(...)) instead.
|
|
|
|
explicit ScriptHash(const WitnessV0KeyHash& hash) = delete;
|
|
|
|
explicit ScriptHash(const PKHash& hash) = delete;
|
2020-01-15 14:03:57 -08:00
|
|
|
|
|
|
|
explicit ScriptHash(const uint160& hash) : BaseHash(hash) {}
|
2019-02-19 17:00:45 -05:00
|
|
|
explicit ScriptHash(const CScript& script);
|
2020-01-15 21:48:59 +00:00
|
|
|
explicit ScriptHash(const CScriptID& script);
|
2019-02-19 17:00:45 -05:00
|
|
|
};
|
|
|
|
|
2020-01-15 14:03:57 -08:00
|
|
|
struct WitnessV0ScriptHash : public BaseHash<uint256>
|
2017-11-30 16:48:38 -08:00
|
|
|
{
|
2020-01-15 14:03:57 -08:00
|
|
|
WitnessV0ScriptHash() : BaseHash() {}
|
|
|
|
explicit WitnessV0ScriptHash(const uint256& hash) : BaseHash(hash) {}
|
2018-06-17 19:44:50 -07:00
|
|
|
explicit WitnessV0ScriptHash(const CScript& script);
|
2017-11-30 16:48:38 -08:00
|
|
|
};
|
|
|
|
|
2020-01-15 14:03:57 -08:00
|
|
|
struct WitnessV0KeyHash : public BaseHash<uint160>
|
2017-11-30 16:48:38 -08:00
|
|
|
{
|
2020-01-15 14:03:57 -08:00
|
|
|
WitnessV0KeyHash() : BaseHash() {}
|
|
|
|
explicit WitnessV0KeyHash(const uint160& hash) : BaseHash(hash) {}
|
2020-01-14 23:46:14 -08:00
|
|
|
explicit WitnessV0KeyHash(const CPubKey& pubkey);
|
2020-01-15 21:48:59 +00:00
|
|
|
explicit WitnessV0KeyHash(const PKHash& pubkey_hash);
|
2017-11-30 16:48:38 -08:00
|
|
|
};
|
2020-01-15 13:41:25 -08:00
|
|
|
CKeyID ToKeyID(const WitnessV0KeyHash& key_hash);
|
2017-08-25 19:55:52 -07:00
|
|
|
|
|
|
|
//! CTxDestination subtype to encode any future Witness version
|
|
|
|
struct WitnessUnknown
|
|
|
|
{
|
|
|
|
unsigned int version;
|
|
|
|
unsigned int length;
|
|
|
|
unsigned char program[40];
|
|
|
|
|
|
|
|
friend bool operator==(const WitnessUnknown& w1, const WitnessUnknown& w2) {
|
|
|
|
if (w1.version != w2.version) return false;
|
|
|
|
if (w1.length != w2.length) return false;
|
|
|
|
return std::equal(w1.program, w1.program + w1.length, w2.program);
|
|
|
|
}
|
|
|
|
|
|
|
|
friend bool operator<(const WitnessUnknown& w1, const WitnessUnknown& w2) {
|
|
|
|
if (w1.version < w2.version) return true;
|
|
|
|
if (w1.version > w2.version) return false;
|
|
|
|
if (w1.length < w2.length) return true;
|
|
|
|
if (w1.length > w2.length) return false;
|
|
|
|
return std::lexicographical_compare(w1.program, w1.program + w1.length, w2.program, w2.program + w2.length);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-15 17:55:26 -07:00
|
|
|
/**
|
2014-11-10 14:40:01 +08:00
|
|
|
* A txout script template with a specific destination. It is either:
|
2014-09-11 19:15:29 +02:00
|
|
|
* * CNoDestination: no destination set
|
2020-05-30 09:16:05 -04:00
|
|
|
* * PKHash: TxoutType::PUBKEYHASH destination (P2PKH)
|
|
|
|
* * ScriptHash: TxoutType::SCRIPTHASH destination (P2SH)
|
|
|
|
* * WitnessV0ScriptHash: TxoutType::WITNESS_V0_SCRIPTHASH destination (P2WSH)
|
|
|
|
* * WitnessV0KeyHash: TxoutType::WITNESS_V0_KEYHASH destination (P2WPKH)
|
2020-09-11 14:34:10 -07:00
|
|
|
* * WitnessUnknown: TxoutType::WITNESS_UNKNOWN/WITNESS_V1_TAPROOT destination (P2W???)
|
|
|
|
* (taproot outputs do not require their own type as long as no wallet support exists)
|
2017-08-22 18:02:33 -07:00
|
|
|
* A CTxDestination is the internal data type encoded in a bitcoin address
|
2014-09-11 19:15:29 +02:00
|
|
|
*/
|
2021-01-04 11:20:02 +01:00
|
|
|
using CTxDestination = std::variant<CNoDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessUnknown>;
|
2014-09-11 19:15:29 +02:00
|
|
|
|
2017-08-22 18:02:33 -07:00
|
|
|
/** Check whether a CTxDestination is a CNoDestination. */
|
|
|
|
bool IsValidDestination(const CTxDestination& dest);
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
/** Get the name of a TxoutType as a string */
|
|
|
|
std::string GetTxnOutputType(TxoutType t);
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2017-08-15 17:55:26 -07:00
|
|
|
/**
|
|
|
|
* Parse a scriptPubKey and identify script type for standard scripts. If
|
|
|
|
* successful, returns script type and parsed pubkeys or hashes, depending on
|
|
|
|
* the type. For example, for a P2SH script, vSolutionsRet will contain the
|
|
|
|
* script hash, for P2PKH it will contain the key hash, etc.
|
|
|
|
*
|
|
|
|
* @param[in] scriptPubKey Script to parse
|
|
|
|
* @param[out] vSolutionsRet Vector of parsed pubkeys and hashes
|
2020-05-30 09:16:05 -04:00
|
|
|
* @return The script type. TxoutType::NONSTANDARD represents a failed solve.
|
2017-08-15 17:55:26 -07:00
|
|
|
*/
|
2020-05-30 09:16:05 -04:00
|
|
|
TxoutType Solver(const CScript& scriptPubKey, std::vector<std::vector<unsigned char>>& vSolutionsRet);
|
2017-08-15 17:55:26 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a standard scriptPubKey for the destination address. Assigns result to
|
|
|
|
* the addressRet parameter and returns true if successful. For multisig
|
|
|
|
* scripts, instead use ExtractDestinations. Currently only works for P2PK,
|
2017-08-25 19:55:52 -07:00
|
|
|
* P2PKH, P2SH, P2WPKH, and P2WSH scripts.
|
2017-08-15 17:55:26 -07:00
|
|
|
*/
|
2014-08-23 03:35:51 +02:00
|
|
|
bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet);
|
2017-08-15 17:55:26 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a standard scriptPubKey with one or more destination addresses. For
|
|
|
|
* multisig scripts, this populates the addressRet vector with the pubkey IDs
|
|
|
|
* and nRequiredRet with the n required to spend. For other destinations,
|
|
|
|
* addressRet is populated with a single value and nRequiredRet is set to 1.
|
2019-04-15 09:15:25 -07:00
|
|
|
* Returns true if successful.
|
2017-11-30 16:48:45 -08:00
|
|
|
*
|
|
|
|
* Note: this function confuses destinations (a subset of CScripts that are
|
|
|
|
* encodable as an address) with key identifiers (of keys involved in a
|
|
|
|
* CScript), and its use should be phased out.
|
2021-02-01 09:52:07 -06:00
|
|
|
*
|
|
|
|
* TODO: from v23 ("addresses" and "reqSigs" deprecated) "ExtractDestinations" should be removed
|
2017-08-15 17:55:26 -07:00
|
|
|
*/
|
2020-05-30 09:16:05 -04:00
|
|
|
bool ExtractDestinations(const CScript& scriptPubKey, TxoutType& typeRet, std::vector<CTxDestination>& addressRet, int& nRequiredRet);
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2017-08-15 17:55:26 -07:00
|
|
|
/**
|
|
|
|
* Generate a Bitcoin scriptPubKey for the given CTxDestination. Returns a P2PKH
|
|
|
|
* script for a CKeyID destination, a P2SH script for a CScriptID, and an empty
|
|
|
|
* script for CNoDestination.
|
|
|
|
*/
|
2014-09-11 19:15:29 +02:00
|
|
|
CScript GetScriptForDestination(const CTxDestination& dest);
|
2017-08-15 17:55:26 -07:00
|
|
|
|
|
|
|
/** Generate a P2PK script for the given pubkey. */
|
2015-06-10 00:03:08 -07:00
|
|
|
CScript GetScriptForRawPubKey(const CPubKey& pubkey);
|
2017-08-15 17:55:26 -07:00
|
|
|
|
|
|
|
/** Generate a multisig script. */
|
2014-09-11 19:15:29 +02:00
|
|
|
CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys);
|
2017-08-15 17:55:26 -07:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_SCRIPT_STANDARD_H
|