2014-08-27 20:11:41 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2014-09-09 10:00:42 +02:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-08-27 20:11:41 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef H_BITCOIN_SCRIPT_INTERPRETER
|
|
|
|
#define H_BITCOIN_SCRIPT_INTERPRETER
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
|
|
|
|
2014-09-10 16:16:09 +02:00
|
|
|
class CPubKey;
|
2014-08-27 20:11:41 +02:00
|
|
|
class CScript;
|
|
|
|
class CTransaction;
|
2014-10-06 13:00:55 +02:00
|
|
|
class uint256;
|
2014-08-27 20:11:41 +02:00
|
|
|
|
|
|
|
/** Signature hash types/flags */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SIGHASH_ALL = 1,
|
|
|
|
SIGHASH_NONE = 2,
|
|
|
|
SIGHASH_SINGLE = 3,
|
|
|
|
SIGHASH_ANYONECANPAY = 0x80,
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Script verification flags */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SCRIPT_VERIFY_NONE = 0,
|
|
|
|
|
2014-10-07 02:22:47 +02:00
|
|
|
// Evaluate P2SH subscripts (softfork safe, BIP16).
|
|
|
|
SCRIPT_VERIFY_P2SH = (1U << 0),
|
|
|
|
|
|
|
|
// Passing a non-strict-DER signature or one with undefined hashtype to a checksig operation causes script failure.
|
|
|
|
// Passing a pubkey that is not (0x04 + 64 bytes) or (0x02 or 0x03 + 32 bytes) to checksig causes that pubkey to be
|
|
|
|
// skipped (not softfork safe: this flag can widen the validity of OP_CHECKSIG OP_NOT).
|
|
|
|
SCRIPT_VERIFY_STRICTENC = (1U << 1),
|
|
|
|
|
|
|
|
// Passing a non-strict-DER signature to a checksig operation causes script failure (softfork safe, BIP62 rule 1)
|
|
|
|
SCRIPT_VERIFY_DERSIG = (1U << 2),
|
|
|
|
|
|
|
|
// Passing a non-strict-DER signature or one with S > order/2 to a checksig operation causes script failure
|
|
|
|
// (softfork safe, BIP62 rule 5).
|
|
|
|
SCRIPT_VERIFY_LOW_S = (1U << 3),
|
|
|
|
|
|
|
|
// verify dummy stack item consumed by CHECKMULTISIG is of zero-length (softfork safe, BIP62 rule 7).
|
|
|
|
SCRIPT_VERIFY_NULLDUMMY = (1U << 4),
|
2014-10-09 01:29:45 +02:00
|
|
|
|
|
|
|
// Using a non-push operator in the scriptSig causes script failure (softfork safe, BIP62 rule 2).
|
|
|
|
SCRIPT_VERIFY_SIGPUSHONLY = (1U << 5),
|
2014-10-09 03:48:59 +02:00
|
|
|
|
|
|
|
// Require minimal encodings for all push operations (OP_0... OP_16, OP_1NEGATE where possible, direct
|
|
|
|
// pushes up to 75 bytes, OP_PUSHDATA up to 255 bytes, OP_PUSHDATA2 for anything larger). Evaluating
|
|
|
|
// any other push causes the script to fail (BIP62 rule 3).
|
|
|
|
// In addition, whenever a stack element is interpreted as a number, it must be of minimal length (BIP62 rule 4).
|
|
|
|
// (softfork safe)
|
|
|
|
SCRIPT_VERIFY_MINIMALDATA = (1U << 6)
|
2014-10-07 02:22:47 +02:00
|
|
|
};
|
2014-08-27 20:11:41 +02:00
|
|
|
|
|
|
|
uint256 SignatureHash(const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType);
|
2014-09-10 14:42:22 +02:00
|
|
|
|
2014-09-10 16:16:09 +02:00
|
|
|
class BaseSignatureChecker
|
|
|
|
{
|
|
|
|
public:
|
2014-09-14 04:48:32 +02:00
|
|
|
virtual bool CheckSig(const std::vector<unsigned char>& scriptSig, const std::vector<unsigned char>& vchPubKey, const CScript& scriptCode) const
|
2014-09-10 16:16:09 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~BaseSignatureChecker() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
class SignatureChecker : public BaseSignatureChecker
|
2014-09-10 14:42:22 +02:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
const CTransaction& txTo;
|
|
|
|
unsigned int nIn;
|
|
|
|
|
2014-09-10 16:16:09 +02:00
|
|
|
protected:
|
2014-09-14 04:48:32 +02:00
|
|
|
virtual bool VerifySignature(const std::vector<unsigned char>& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const;
|
2014-09-10 16:16:09 +02:00
|
|
|
|
2014-09-10 14:42:22 +02:00
|
|
|
public:
|
|
|
|
SignatureChecker(const CTransaction& txToIn, unsigned int nInIn) : txTo(txToIn), nIn(nInIn) {}
|
2014-09-14 04:48:32 +02:00
|
|
|
bool CheckSig(const std::vector<unsigned char>& scriptSig, const std::vector<unsigned char>& vchPubKey, const CScript& scriptCode) const;
|
2014-09-10 14:42:22 +02:00
|
|
|
};
|
|
|
|
|
2014-09-10 16:16:09 +02:00
|
|
|
bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript& script, unsigned int flags, const BaseSignatureChecker& checker);
|
|
|
|
bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, unsigned int flags, const BaseSignatureChecker& checker);
|
2014-08-27 20:11:41 +02:00
|
|
|
|
2014-09-09 10:00:42 +02:00
|
|
|
#endif // H_BITCOIN_SCRIPT_INTERPRETER
|