2014-08-23 03:35:51 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2016-12-31 19:01:21 +01:00
|
|
|
// Copyright (c) 2009-2016 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
|
|
|
|
|
|
|
#include "script/interpreter.h"
|
2014-11-04 14:34:04 +01:00
|
|
|
#include "uint256.h"
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2014-09-25 05:32:36 +02:00
|
|
|
#include <boost/variant.hpp>
|
|
|
|
|
2014-08-23 03:35:51 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2015-11-09 19:16:38 +01:00
|
|
|
static const bool DEFAULT_ACCEPT_DATACARRIER = true;
|
|
|
|
|
2014-10-28 22:47:18 +01:00
|
|
|
class CKeyID;
|
2014-11-04 14:34:04 +01:00
|
|
|
class CScript;
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2014-09-25 04:24:46 +02:00
|
|
|
/** A reference to a CScript: the Hash160 of its serialization (see script.h) */
|
|
|
|
class CScriptID : public uint160
|
|
|
|
{
|
|
|
|
public:
|
2014-12-15 09:11:16 +01:00
|
|
|
CScriptID() : uint160() {}
|
2014-09-25 04:24:46 +02:00
|
|
|
CScriptID(const CScript& in);
|
|
|
|
CScriptID(const uint160& in) : uint160(in) {}
|
|
|
|
};
|
|
|
|
|
2017-08-16 02:55:26 +02: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
|
|
|
|
* type is designated as TX_NULL_DATA.
|
|
|
|
*/
|
2015-06-27 21:21:41 +02:00
|
|
|
extern bool fAcceptDatacarrier;
|
2017-08-16 02:55:26 +02:00
|
|
|
|
|
|
|
/** Maximum size of TX_NULL_DATA scripts that this node considers standard. */
|
2014-10-11 01:55:14 +02:00
|
|
|
extern unsigned nMaxDatacarrierBytes;
|
2014-08-23 03:35:51 +02:00
|
|
|
|
2014-11-10 07:40:01 +01: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,
|
|
|
|
* but in the future other flags may be added, such as a soft-fork to enforce
|
|
|
|
* strict DER encoding.
|
2017-08-16 02:55:26 +02:00
|
|
|
*
|
2014-11-10 07:40:01 +01:00
|
|
|
* Failing one of these tests may trigger a DoS ban - see CheckInputs() for
|
|
|
|
* details.
|
|
|
|
*/
|
2014-08-23 03:35:51 +02:00
|
|
|
static const unsigned int MANDATORY_SCRIPT_VERIFY_FLAGS = SCRIPT_VERIFY_P2SH;
|
|
|
|
|
|
|
|
enum txnouttype
|
|
|
|
{
|
|
|
|
TX_NONSTANDARD,
|
|
|
|
// 'standard' transaction types:
|
|
|
|
TX_PUBKEY,
|
|
|
|
TX_PUBKEYHASH,
|
|
|
|
TX_SCRIPTHASH,
|
|
|
|
TX_MULTISIG,
|
2017-08-16 02:55:26 +02:00
|
|
|
TX_NULL_DATA, //!< unspendable OP_RETURN script that carries data
|
2016-03-31 14:54:58 +02:00
|
|
|
TX_WITNESS_V0_SCRIPTHASH,
|
|
|
|
TX_WITNESS_V0_KEYHASH,
|
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; }
|
|
|
|
};
|
|
|
|
|
2017-08-16 02:55:26 +02:00
|
|
|
/**
|
2014-11-10 07:40:01 +01:00
|
|
|
* A txout script template with a specific destination. It is either:
|
2014-09-11 19:15:29 +02:00
|
|
|
* * CNoDestination: no destination set
|
|
|
|
* * CKeyID: TX_PUBKEYHASH destination
|
|
|
|
* * CScriptID: TX_SCRIPTHASH destination
|
2017-08-23 03:02:33 +02:00
|
|
|
* A CTxDestination is the internal data type encoded in a bitcoin address
|
2014-09-11 19:15:29 +02:00
|
|
|
*/
|
|
|
|
typedef boost::variant<CNoDestination, CKeyID, CScriptID> CTxDestination;
|
|
|
|
|
2017-08-23 03:02:33 +02:00
|
|
|
/** Check whether a CTxDestination is a CNoDestination. */
|
|
|
|
bool IsValidDestination(const CTxDestination& dest);
|
|
|
|
|
2017-08-16 02:55:26 +02:00
|
|
|
/** Get the name of a txnouttype as a C string, or nullptr if unknown. */
|
2014-08-23 03:35:51 +02:00
|
|
|
const char* GetTxnOutputType(txnouttype t);
|
|
|
|
|
2017-08-16 02:55:26 +02: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] typeRet The script type
|
|
|
|
* @param[out] vSolutionsRet Vector of parsed pubkeys and hashes
|
|
|
|
* @return True if script matches standard template
|
|
|
|
*/
|
2014-08-23 03:35:51 +02:00
|
|
|
bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<std::vector<unsigned char> >& vSolutionsRet);
|
2017-08-16 02:55:26 +02: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,
|
|
|
|
* P2PKH, and P2SH scripts.
|
|
|
|
*/
|
2014-08-23 03:35:51 +02:00
|
|
|
bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet);
|
2017-08-16 02:55:26 +02: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.
|
|
|
|
* Returns true if successful. Currently does not extract address from
|
|
|
|
* pay-to-witness scripts.
|
|
|
|
*/
|
2014-08-23 03:35:51 +02:00
|
|
|
bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::vector<CTxDestination>& addressRet, int& nRequiredRet);
|
|
|
|
|
2017-08-16 02:55:26 +02: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-16 02:55:26 +02:00
|
|
|
|
|
|
|
/** Generate a P2PK script for the given pubkey. */
|
2015-06-10 09:03:08 +02:00
|
|
|
CScript GetScriptForRawPubKey(const CPubKey& pubkey);
|
2017-08-16 02:55:26 +02:00
|
|
|
|
|
|
|
/** Generate a multisig script. */
|
2014-09-11 19:15:29 +02:00
|
|
|
CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys);
|
2017-08-16 02:55:26 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a pay-to-witness script for the given redeem script. If the redeem
|
|
|
|
* script is P2PK or P2PKH, this returns a P2WPKH script, otherwise it returns a
|
|
|
|
* P2WSH script.
|
|
|
|
*/
|
2016-03-31 14:54:58 +02:00
|
|
|
CScript GetScriptForWitness(const CScript& redeemscript);
|
2014-09-11 19:15:29 +02:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_SCRIPT_STANDARD_H
|