Branch data Line data Source code
# 1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
# 2 : : // Copyright (c) 2009-2020 The Bitcoin Core developers
# 3 : : // Distributed under the MIT software license, see the accompanying
# 4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
# 5 : :
# 6 : : #ifndef BITCOIN_SCRIPT_SCRIPT_H
# 7 : : #define BITCOIN_SCRIPT_SCRIPT_H
# 8 : :
# 9 : : #include <crypto/common.h>
# 10 : : #include <prevector.h>
# 11 : : #include <serialize.h>
# 12 : :
# 13 : : #include <assert.h>
# 14 : : #include <climits>
# 15 : : #include <limits>
# 16 : : #include <stdexcept>
# 17 : : #include <stdint.h>
# 18 : : #include <string.h>
# 19 : : #include <string>
# 20 : : #include <vector>
# 21 : :
# 22 : : // Maximum number of bytes pushable to the stack
# 23 : : static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520;
# 24 : :
# 25 : : // Maximum number of non-push operations per script
# 26 : : static const int MAX_OPS_PER_SCRIPT = 201;
# 27 : :
# 28 : : // Maximum number of public keys per multisig
# 29 : : static const int MAX_PUBKEYS_PER_MULTISIG = 20;
# 30 : :
# 31 : : // Maximum script length in bytes
# 32 : : static const int MAX_SCRIPT_SIZE = 10000;
# 33 : :
# 34 : : // Maximum number of values on script interpreter stack
# 35 : : static const int MAX_STACK_SIZE = 1000;
# 36 : :
# 37 : : // Threshold for nLockTime: below this value it is interpreted as block number,
# 38 : : // otherwise as UNIX timestamp.
# 39 : : static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC
# 40 : :
# 41 : : // Maximum nLockTime. Since a lock time indicates the last invalid timestamp, a
# 42 : : // transaction with this lock time will never be valid unless lock time
# 43 : : // checking is disabled (by setting all input sequence numbers to
# 44 : : // SEQUENCE_FINAL).
# 45 : : static const uint32_t LOCKTIME_MAX = 0xFFFFFFFFU;
# 46 : :
# 47 : : template <typename T>
# 48 : : std::vector<unsigned char> ToByteVector(const T& in)
# 49 : 1066959 : {
# 50 : 1066959 : return std::vector<unsigned char>(in.begin(), in.end());
# 51 : 1066959 : }
# 52 : :
# 53 : : /** Script opcodes */
# 54 : : enum opcodetype
# 55 : : {
# 56 : : // push value
# 57 : : OP_0 = 0x00,
# 58 : : OP_FALSE = OP_0,
# 59 : : OP_PUSHDATA1 = 0x4c,
# 60 : : OP_PUSHDATA2 = 0x4d,
# 61 : : OP_PUSHDATA4 = 0x4e,
# 62 : : OP_1NEGATE = 0x4f,
# 63 : : OP_RESERVED = 0x50,
# 64 : : OP_1 = 0x51,
# 65 : : OP_TRUE=OP_1,
# 66 : : OP_2 = 0x52,
# 67 : : OP_3 = 0x53,
# 68 : : OP_4 = 0x54,
# 69 : : OP_5 = 0x55,
# 70 : : OP_6 = 0x56,
# 71 : : OP_7 = 0x57,
# 72 : : OP_8 = 0x58,
# 73 : : OP_9 = 0x59,
# 74 : : OP_10 = 0x5a,
# 75 : : OP_11 = 0x5b,
# 76 : : OP_12 = 0x5c,
# 77 : : OP_13 = 0x5d,
# 78 : : OP_14 = 0x5e,
# 79 : : OP_15 = 0x5f,
# 80 : : OP_16 = 0x60,
# 81 : :
# 82 : : // control
# 83 : : OP_NOP = 0x61,
# 84 : : OP_VER = 0x62,
# 85 : : OP_IF = 0x63,
# 86 : : OP_NOTIF = 0x64,
# 87 : : OP_VERIF = 0x65,
# 88 : : OP_VERNOTIF = 0x66,
# 89 : : OP_ELSE = 0x67,
# 90 : : OP_ENDIF = 0x68,
# 91 : : OP_VERIFY = 0x69,
# 92 : : OP_RETURN = 0x6a,
# 93 : :
# 94 : : // stack ops
# 95 : : OP_TOALTSTACK = 0x6b,
# 96 : : OP_FROMALTSTACK = 0x6c,
# 97 : : OP_2DROP = 0x6d,
# 98 : : OP_2DUP = 0x6e,
# 99 : : OP_3DUP = 0x6f,
# 100 : : OP_2OVER = 0x70,
# 101 : : OP_2ROT = 0x71,
# 102 : : OP_2SWAP = 0x72,
# 103 : : OP_IFDUP = 0x73,
# 104 : : OP_DEPTH = 0x74,
# 105 : : OP_DROP = 0x75,
# 106 : : OP_DUP = 0x76,
# 107 : : OP_NIP = 0x77,
# 108 : : OP_OVER = 0x78,
# 109 : : OP_PICK = 0x79,
# 110 : : OP_ROLL = 0x7a,
# 111 : : OP_ROT = 0x7b,
# 112 : : OP_SWAP = 0x7c,
# 113 : : OP_TUCK = 0x7d,
# 114 : :
# 115 : : // splice ops
# 116 : : OP_CAT = 0x7e,
# 117 : : OP_SUBSTR = 0x7f,
# 118 : : OP_LEFT = 0x80,
# 119 : : OP_RIGHT = 0x81,
# 120 : : OP_SIZE = 0x82,
# 121 : :
# 122 : : // bit logic
# 123 : : OP_INVERT = 0x83,
# 124 : : OP_AND = 0x84,
# 125 : : OP_OR = 0x85,
# 126 : : OP_XOR = 0x86,
# 127 : : OP_EQUAL = 0x87,
# 128 : : OP_EQUALVERIFY = 0x88,
# 129 : : OP_RESERVED1 = 0x89,
# 130 : : OP_RESERVED2 = 0x8a,
# 131 : :
# 132 : : // numeric
# 133 : : OP_1ADD = 0x8b,
# 134 : : OP_1SUB = 0x8c,
# 135 : : OP_2MUL = 0x8d,
# 136 : : OP_2DIV = 0x8e,
# 137 : : OP_NEGATE = 0x8f,
# 138 : : OP_ABS = 0x90,
# 139 : : OP_NOT = 0x91,
# 140 : : OP_0NOTEQUAL = 0x92,
# 141 : :
# 142 : : OP_ADD = 0x93,
# 143 : : OP_SUB = 0x94,
# 144 : : OP_MUL = 0x95,
# 145 : : OP_DIV = 0x96,
# 146 : : OP_MOD = 0x97,
# 147 : : OP_LSHIFT = 0x98,
# 148 : : OP_RSHIFT = 0x99,
# 149 : :
# 150 : : OP_BOOLAND = 0x9a,
# 151 : : OP_BOOLOR = 0x9b,
# 152 : : OP_NUMEQUAL = 0x9c,
# 153 : : OP_NUMEQUALVERIFY = 0x9d,
# 154 : : OP_NUMNOTEQUAL = 0x9e,
# 155 : : OP_LESSTHAN = 0x9f,
# 156 : : OP_GREATERTHAN = 0xa0,
# 157 : : OP_LESSTHANOREQUAL = 0xa1,
# 158 : : OP_GREATERTHANOREQUAL = 0xa2,
# 159 : : OP_MIN = 0xa3,
# 160 : : OP_MAX = 0xa4,
# 161 : :
# 162 : : OP_WITHIN = 0xa5,
# 163 : :
# 164 : : // crypto
# 165 : : OP_RIPEMD160 = 0xa6,
# 166 : : OP_SHA1 = 0xa7,
# 167 : : OP_SHA256 = 0xa8,
# 168 : : OP_HASH160 = 0xa9,
# 169 : : OP_HASH256 = 0xaa,
# 170 : : OP_CODESEPARATOR = 0xab,
# 171 : : OP_CHECKSIG = 0xac,
# 172 : : OP_CHECKSIGVERIFY = 0xad,
# 173 : : OP_CHECKMULTISIG = 0xae,
# 174 : : OP_CHECKMULTISIGVERIFY = 0xaf,
# 175 : :
# 176 : : // expansion
# 177 : : OP_NOP1 = 0xb0,
# 178 : : OP_CHECKLOCKTIMEVERIFY = 0xb1,
# 179 : : OP_NOP2 = OP_CHECKLOCKTIMEVERIFY,
# 180 : : OP_CHECKSEQUENCEVERIFY = 0xb2,
# 181 : : OP_NOP3 = OP_CHECKSEQUENCEVERIFY,
# 182 : : OP_NOP4 = 0xb3,
# 183 : : OP_NOP5 = 0xb4,
# 184 : : OP_NOP6 = 0xb5,
# 185 : : OP_NOP7 = 0xb6,
# 186 : : OP_NOP8 = 0xb7,
# 187 : : OP_NOP9 = 0xb8,
# 188 : : OP_NOP10 = 0xb9,
# 189 : :
# 190 : : OP_INVALIDOPCODE = 0xff,
# 191 : : };
# 192 : :
# 193 : : // Maximum value that an opcode can be
# 194 : : static const unsigned int MAX_OPCODE = OP_NOP10;
# 195 : :
# 196 : : std::string GetOpName(opcodetype opcode);
# 197 : :
# 198 : : class scriptnum_error : public std::runtime_error
# 199 : : {
# 200 : : public:
# 201 : 1246 : explicit scriptnum_error(const std::string& str) : std::runtime_error(str) {}
# 202 : : };
# 203 : :
# 204 : : class CScriptNum
# 205 : : {
# 206 : : /**
# 207 : : * Numeric opcodes (OP_1ADD, etc) are restricted to operating on 4-byte integers.
# 208 : : * The semantics are subtle, though: operands must be in the range [-2^31 +1...2^31 -1],
# 209 : : * but results may overflow (and are valid as long as they are not used in a subsequent
# 210 : : * numeric operation). CScriptNum enforces those semantics by storing results as
# 211 : : * an int64 and allowing out-of-range values to be returned as a vector of bytes but
# 212 : : * throwing an exception if arithmetic is done or the result is interpreted as an integer.
# 213 : : */
# 214 : : public:
# 215 : :
# 216 : : explicit CScriptNum(const int64_t& n)
# 217 : 418672 : {
# 218 : 418672 : m_value = n;
# 219 : 418672 : }
# 220 : :
# 221 : : static const size_t nDefaultMaxNumSize = 4;
# 222 : :
# 223 : : explicit CScriptNum(const std::vector<unsigned char>& vch, bool fRequireMinimal,
# 224 : : const size_t nMaxNumSize = nDefaultMaxNumSize)
# 225 : 115070 : {
# 226 : 115070 : if (vch.size() > nMaxNumSize) {
# 227 : 230 : throw scriptnum_error("script number overflow");
# 228 : 230 : }
# 229 : 114840 : if (fRequireMinimal && vch.size() > 0) {
# 230 : 27969 : // Check that the number is encoded with the minimum possible
# 231 : 27969 : // number of bytes.
# 232 : 27969 : //
# 233 : 27969 : // If the most-significant-byte - excluding the sign bit - is zero
# 234 : 27969 : // then we're not minimal. Note how this test also rejects the
# 235 : 27969 : // negative-zero encoding, 0x80.
# 236 : 27969 : if ((vch.back() & 0x7f) == 0) {
# 237 : 1016 : // One exception: if there's more than one byte and the most
# 238 : 1016 : // significant bit of the second-most-significant-byte is set
# 239 : 1016 : // it would conflict with the sign bit. An example of this case
# 240 : 1016 : // is +-255, which encode to 0xff00 and 0xff80 respectively.
# 241 : 1016 : // (big-endian).
# 242 : 1016 : if (vch.size() <= 1 || (vch[vch.size() - 2] & 0x80) == 0) {
# 243 : 1016 : throw scriptnum_error("non-minimally encoded script number");
# 244 : 1016 : }
# 245 : 113824 : }
# 246 : 27969 : }
# 247 : 113824 : m_value = set_vch(vch);
# 248 : 113824 : }
# 249 : :
# 250 : 14946 : inline bool operator==(const int64_t& rhs) const { return m_value == rhs; }
# 251 : 29330 : inline bool operator!=(const int64_t& rhs) const { return m_value != rhs; }
# 252 : 11902 : inline bool operator<=(const int64_t& rhs) const { return m_value <= rhs; }
# 253 : 78314 : inline bool operator< (const int64_t& rhs) const { return m_value < rhs; }
# 254 : 11564 : inline bool operator>=(const int64_t& rhs) const { return m_value >= rhs; }
# 255 : 44641 : inline bool operator> (const int64_t& rhs) const { return m_value > rhs; }
# 256 : :
# 257 : 9330 : inline bool operator==(const CScriptNum& rhs) const { return operator==(rhs.m_value); }
# 258 : 7040 : inline bool operator!=(const CScriptNum& rhs) const { return operator!=(rhs.m_value); }
# 259 : 6286 : inline bool operator<=(const CScriptNum& rhs) const { return operator<=(rhs.m_value); }
# 260 : 6672 : inline bool operator< (const CScriptNum& rhs) const { return operator< (rhs.m_value); }
# 261 : 5896 : inline bool operator>=(const CScriptNum& rhs) const { return operator>=(rhs.m_value); }
# 262 : 6142 : inline bool operator> (const CScriptNum& rhs) const { return operator> (rhs.m_value); }
# 263 : :
# 264 : 9548 : inline CScriptNum operator+( const int64_t& rhs) const { return CScriptNum(m_value + rhs);}
# 265 : 11426 : inline CScriptNum operator-( const int64_t& rhs) const { return CScriptNum(m_value - rhs);}
# 266 : 3932 : inline CScriptNum operator+( const CScriptNum& rhs) const { return operator+(rhs.m_value); }
# 267 : 5810 : inline CScriptNum operator-( const CScriptNum& rhs) const { return operator-(rhs.m_value); }
# 268 : :
# 269 : 236 : inline CScriptNum& operator+=( const CScriptNum& rhs) { return operator+=(rhs.m_value); }
# 270 : 108 : inline CScriptNum& operator-=( const CScriptNum& rhs) { return operator-=(rhs.m_value); }
# 271 : :
# 272 : 33140 : inline CScriptNum operator&( const int64_t& rhs) const { return CScriptNum(m_value & rhs);}
# 273 : 0 : inline CScriptNum operator&( const CScriptNum& rhs) const { return operator&(rhs.m_value); }
# 274 : :
# 275 : 0 : inline CScriptNum& operator&=( const CScriptNum& rhs) { return operator&=(rhs.m_value); }
# 276 : :
# 277 : : inline CScriptNum operator-() const
# 278 : 3016 : {
# 279 : 3016 : assert(m_value != std::numeric_limits<int64_t>::min());
# 280 : 3016 : return CScriptNum(-m_value);
# 281 : 3016 : }
# 282 : :
# 283 : : inline CScriptNum& operator=( const int64_t& rhs)
# 284 : 5914 : {
# 285 : 5914 : m_value = rhs;
# 286 : 5914 : return *this;
# 287 : 5914 : }
# 288 : :
# 289 : : inline CScriptNum& operator+=( const int64_t& rhs)
# 290 : 236 : {
# 291 : 236 : assert(rhs == 0 || (rhs > 0 && m_value <= std::numeric_limits<int64_t>::max() - rhs) ||
# 292 : 236 : (rhs < 0 && m_value >= std::numeric_limits<int64_t>::min() - rhs));
# 293 : 236 : m_value += rhs;
# 294 : 236 : return *this;
# 295 : 236 : }
# 296 : :
# 297 : : inline CScriptNum& operator-=( const int64_t& rhs)
# 298 : 108 : {
# 299 : 108 : assert(rhs == 0 || (rhs > 0 && m_value >= std::numeric_limits<int64_t>::min() + rhs) ||
# 300 : 108 : (rhs < 0 && m_value <= std::numeric_limits<int64_t>::max() + rhs));
# 301 : 108 : m_value -= rhs;
# 302 : 108 : return *this;
# 303 : 108 : }
# 304 : :
# 305 : : inline CScriptNum& operator&=( const int64_t& rhs)
# 306 : 0 : {
# 307 : 0 : m_value &= rhs;
# 308 : 0 : return *this;
# 309 : 0 : }
# 310 : :
# 311 : : int getint() const
# 312 : 94535 : {
# 313 : 94535 : if (m_value > std::numeric_limits<int>::max())
# 314 : 2450 : return std::numeric_limits<int>::max();
# 315 : 92085 : else if (m_value < std::numeric_limits<int>::min())
# 316 : 1748 : return std::numeric_limits<int>::min();
# 317 : 90337 : return m_value;
# 318 : 90337 : }
# 319 : :
# 320 : : std::vector<unsigned char> getvch() const
# 321 : 363009 : {
# 322 : 363009 : return serialize(m_value);
# 323 : 363009 : }
# 324 : :
# 325 : : static std::vector<unsigned char> serialize(const int64_t& value)
# 326 : 552657 : {
# 327 : 552657 : if(value == 0)
# 328 : 14732 : return std::vector<unsigned char>();
# 329 : 537925 :
# 330 : 537925 : std::vector<unsigned char> result;
# 331 : 537925 : const bool neg = value < 0;
# 332 : 537925 : uint64_t absvalue = neg ? ~static_cast<uint64_t>(value) + 1 : static_cast<uint64_t>(value);
# 333 : 537925 :
# 334 : 1291047 : while(absvalue)
# 335 : 753122 : {
# 336 : 753122 : result.push_back(absvalue & 0xff);
# 337 : 753122 : absvalue >>= 8;
# 338 : 753122 : }
# 339 : 537925 :
# 340 : 537925 : // - If the most significant byte is >= 0x80 and the value is positive, push a
# 341 : 537925 : // new zero-byte to make the significant byte < 0x80 again.
# 342 : 537925 :
# 343 : 537925 : // - If the most significant byte is >= 0x80 and the value is negative, push a
# 344 : 537925 : // new 0x80 byte that will be popped off when converting to an integral.
# 345 : 537925 :
# 346 : 537925 : // - If the most significant byte is < 0x80 and the value is negative, add
# 347 : 537925 : // 0x80 to it, since it will be subtracted and interpreted as a negative when
# 348 : 537925 : // converting to an integral.
# 349 : 537925 :
# 350 : 537925 : if (result.back() & 0x80)
# 351 : 82227 : result.push_back(neg ? 0x80 : 0);
# 352 : 455698 : else if (neg)
# 353 : 8015 : result.back() |= 0x80;
# 354 : 537925 :
# 355 : 537925 : return result;
# 356 : 537925 : }
# 357 : :
# 358 : : private:
# 359 : : static int64_t set_vch(const std::vector<unsigned char>& vch)
# 360 : 113824 : {
# 361 : 113824 : if (vch.empty())
# 362 : 51447 : return 0;
# 363 : 62377 :
# 364 : 62377 : int64_t result = 0;
# 365 : 132488 : for (size_t i = 0; i != vch.size(); ++i)
# 366 : 70111 : result |= static_cast<int64_t>(vch[i]) << 8*i;
# 367 : 62377 :
# 368 : 62377 : // If the input vector's most significant byte is 0x80, remove it from
# 369 : 62377 : // the result's msb and return a negative.
# 370 : 62377 : if (vch.back() & 0x80)
# 371 : 2908 : return -((int64_t)(result & ~(0x80ULL << (8 * (vch.size() - 1)))));
# 372 : 59469 :
# 373 : 59469 : return result;
# 374 : 59469 : }
# 375 : :
# 376 : : int64_t m_value;
# 377 : : };
# 378 : :
# 379 : : /**
# 380 : : * We use a prevector for the script to reduce the considerable memory overhead
# 381 : : * of vectors in cases where they normally contain a small number of small elements.
# 382 : : * Tests in October 2015 showed use of this reduced dbcache memory usage by 23%
# 383 : : * and made an initial sync 13% faster.
# 384 : : */
# 385 : : typedef prevector<28, unsigned char> CScriptBase;
# 386 : :
# 387 : : bool GetScriptOp(CScriptBase::const_iterator& pc, CScriptBase::const_iterator end, opcodetype& opcodeRet, std::vector<unsigned char>* pvchRet);
# 388 : :
# 389 : : /** Serialized script, used inside transaction inputs and outputs */
# 390 : : class CScript : public CScriptBase
# 391 : : {
# 392 : : protected:
# 393 : : CScript& push_int64(int64_t n)
# 394 : 201655 : {
# 395 : 201655 : if (n == -1 || (n >= 1 && n <= 16))
# 396 : 6273 : {
# 397 : 6273 : push_back(n + (OP_1 - 1));
# 398 : 6273 : }
# 399 : 195382 : else if (n == 0)
# 400 : 5719 : {
# 401 : 5719 : push_back(OP_0);
# 402 : 5719 : }
# 403 : 189663 : else
# 404 : 189663 : {
# 405 : 189663 : *this << CScriptNum::serialize(n);
# 406 : 189663 : }
# 407 : 201655 : return *this;
# 408 : 201655 : }
# 409 : : public:
# 410 : 91884242 : CScript() { }
# 411 : 841858 : CScript(const_iterator pbegin, const_iterator pend) : CScriptBase(pbegin, pend) { }
# 412 : 301165 : CScript(std::vector<unsigned char>::const_iterator pbegin, std::vector<unsigned char>::const_iterator pend) : CScriptBase(pbegin, pend) { }
# 413 : 1152 : CScript(const unsigned char* pbegin, const unsigned char* pend) : CScriptBase(pbegin, pend) { }
# 414 : :
# 415 : 43946097 : SERIALIZE_METHODS(CScript, obj) { READWRITE(AsBase<CScriptBase>(obj)); }
# 416 : :
# 417 : 0 : explicit CScript(int64_t b) { operator<<(b); }
# 418 : 100000 : explicit CScript(opcodetype b) { operator<<(b); }
# 419 : 0 : explicit CScript(const CScriptNum& b) { operator<<(b); }
# 420 : : // delete non-existent constructor to defend against future introduction
# 421 : : // e.g. via prevector
# 422 : : explicit CScript(const std::vector<unsigned char>& b) = delete;
# 423 : :
# 424 : : /** Delete non-existent operator to defend against future introduction */
# 425 : : CScript& operator<<(const CScript& b) = delete;
# 426 : :
# 427 : 201655 : CScript& operator<<(int64_t b) { return push_int64(b); }
# 428 : :
# 429 : : CScript& operator<<(opcodetype opcode)
# 430 : 6695205 : {
# 431 : 6695207 : if (opcode < 0 || opcode > 0xff)
# 432 : 0 : throw std::runtime_error("CScript::operator<<(): invalid opcode");
# 433 : 6695205 : insert(end(), (unsigned char)opcode);
# 434 : 6695205 : return *this;
# 435 : 6695205 : }
# 436 : :
# 437 : : CScript& operator<<(const CScriptNum& b)
# 438 : 31505 : {
# 439 : 31505 : *this << b.getvch();
# 440 : 31505 : return *this;
# 441 : 31505 : }
# 442 : :
# 443 : : CScript& operator<<(const std::vector<unsigned char>& b)
# 444 : 2555352 : {
# 445 : 2555352 : if (b.size() < OP_PUSHDATA1)
# 446 : 2553958 : {
# 447 : 2553958 : insert(end(), (unsigned char)b.size());
# 448 : 2553958 : }
# 449 : 1394 : else if (b.size() <= 0xff)
# 450 : 644 : {
# 451 : 644 : insert(end(), OP_PUSHDATA1);
# 452 : 644 : insert(end(), (unsigned char)b.size());
# 453 : 644 : }
# 454 : 750 : else if (b.size() <= 0xffff)
# 455 : 694 : {
# 456 : 694 : insert(end(), OP_PUSHDATA2);
# 457 : 694 : uint8_t _data[2];
# 458 : 694 : WriteLE16(_data, b.size());
# 459 : 694 : insert(end(), _data, _data + sizeof(_data));
# 460 : 694 : }
# 461 : 56 : else
# 462 : 56 : {
# 463 : 56 : insert(end(), OP_PUSHDATA4);
# 464 : 56 : uint8_t _data[4];
# 465 : 56 : WriteLE32(_data, b.size());
# 466 : 56 : insert(end(), _data, _data + sizeof(_data));
# 467 : 56 : }
# 468 : 2555352 : insert(end(), b.begin(), b.end());
# 469 : 2555352 : return *this;
# 470 : 2555352 : }
# 471 : :
# 472 : : bool GetOp(const_iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char>& vchRet) const
# 473 : 14317212 : {
# 474 : 14317212 : return GetScriptOp(pc, end(), opcodeRet, &vchRet);
# 475 : 14317212 : }
# 476 : :
# 477 : : bool GetOp(const_iterator& pc, opcodetype& opcodeRet) const
# 478 : 69643805 : {
# 479 : 69643805 : return GetScriptOp(pc, end(), opcodeRet, nullptr);
# 480 : 69643805 : }
# 481 : :
# 482 : : /** Encode/decode small integers: */
# 483 : : static int DecodeOP_N(opcodetype opcode)
# 484 : 1241035 : {
# 485 : 1241035 : if (opcode == OP_0)
# 486 : 1218018 : return 0;
# 487 : 23017 : assert(opcode >= OP_1 && opcode <= OP_16);
# 488 : 23017 : return (int)opcode - (int)(OP_1 - 1);
# 489 : 23017 : }
# 490 : : static opcodetype EncodeOP_N(int n)
# 491 : 26253 : {
# 492 : 26253 : assert(n >= 0 && n <= 16);
# 493 : 26253 : if (n == 0)
# 494 : 0 : return OP_0;
# 495 : 26253 : return (opcodetype)(OP_1+n-1);
# 496 : 26253 : }
# 497 : :
# 498 : : /**
# 499 : : * Pre-version-0.6, Bitcoin always counted CHECKMULTISIGs
# 500 : : * as 20 sigops. With pay-to-script-hash, that changed:
# 501 : : * CHECKMULTISIGs serialized in scriptSigs are
# 502 : : * counted more accurately, assuming they are of the form
# 503 : : * ... OP_N CHECKMULTISIG ...
# 504 : : */
# 505 : : unsigned int GetSigOpCount(bool fAccurate) const;
# 506 : :
# 507 : : /**
# 508 : : * Accurately count sigOps, including sigOps in
# 509 : : * pay-to-script-hash transactions:
# 510 : : */
# 511 : : unsigned int GetSigOpCount(const CScript& scriptSig) const;
# 512 : :
# 513 : : bool IsPayToScriptHash() const;
# 514 : : bool IsPayToWitnessScriptHash() const;
# 515 : : bool IsWitnessProgram(int& version, std::vector<unsigned char>& program) const;
# 516 : :
# 517 : : /** Called by IsStandardTx and P2SH/BIP62 VerifyScript (which makes it consensus-critical). */
# 518 : : bool IsPushOnly(const_iterator pc) const;
# 519 : : bool IsPushOnly() const;
# 520 : :
# 521 : : /** Check if the script contains valid OP_CODES */
# 522 : : bool HasValidOps() const;
# 523 : :
# 524 : : /**
# 525 : : * Returns whether the script is guaranteed to fail at execution,
# 526 : : * regardless of the initial stack. This allows outputs to be pruned
# 527 : : * instantly when entering the UTXO set.
# 528 : : */
# 529 : : bool IsUnspendable() const
# 530 : 8709293 : {
# 531 : 8709293 : return (size() > 0 && *begin() == OP_RETURN) || (size() > MAX_SCRIPT_SIZE);
# 532 : 8709293 : }
# 533 : :
# 534 : : void clear()
# 535 : 83383238 : {
# 536 : 83383238 : // The default prevector::clear() does not release memory
# 537 : 83383238 : CScriptBase::clear();
# 538 : 83383238 : shrink_to_fit();
# 539 : 83383238 : }
# 540 : : };
# 541 : :
# 542 : : struct CScriptWitness
# 543 : : {
# 544 : : // Note that this encodes the data elements being pushed, rather than
# 545 : : // encoding them as a CScript that pushes them.
# 546 : : std::vector<std::vector<unsigned char> > stack;
# 547 : :
# 548 : : // Some compilers complain without a default constructor
# 549 : 5585450 : CScriptWitness() { }
# 550 : :
# 551 : 2739790 : bool IsNull() const { return stack.empty(); }
# 552 : :
# 553 : 860 : void SetNull() { stack.clear(); stack.shrink_to_fit(); }
# 554 : :
# 555 : : std::string ToString() const;
# 556 : : };
# 557 : :
# 558 : : #endif // BITCOIN_SCRIPT_SCRIPT_H
|