1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 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.
6 #include "interpreter.h"
8 #include "primitives/transaction.h"
9 #include "crypto/ripemd160.h"
10 #include "crypto/sha1.h"
11 #include "crypto/sha256.h"
13 #include "script/script.h"
16 typedef std::vector
<unsigned char> valtype
;
20 inline bool set_success(ScriptError
* ret
)
27 inline bool set_error(ScriptError
* ret
, const ScriptError serror
)
36 bool CastToBool(const valtype
& vch
)
38 for (unsigned int i
= 0; i
< vch
.size(); i
++)
42 // Can be negative zero
43 if (i
== vch
.size()-1 && vch
[i
] == 0x80)
52 * Script is a stack machine (like Forth) that evaluates a predicate
53 * returning a bool indicating valid or not. There are no loops.
55 #define stacktop(i) (stack.at(stack.size()+(i)))
56 #define altstacktop(i) (altstack.at(altstack.size()+(i)))
57 static inline void popstack(std::vector
<valtype
>& stack
)
60 throw std::runtime_error("popstack(): stack empty");
64 bool static IsCompressedOrUncompressedPubKey(const valtype
&vchPubKey
) {
65 if (vchPubKey
.size() < 33) {
66 // Non-canonical public key: too short
69 if (vchPubKey
[0] == 0x04) {
70 if (vchPubKey
.size() != 65) {
71 // Non-canonical public key: invalid length for uncompressed key
74 } else if (vchPubKey
[0] == 0x02 || vchPubKey
[0] == 0x03) {
75 if (vchPubKey
.size() != 33) {
76 // Non-canonical public key: invalid length for compressed key
80 // Non-canonical public key: neither compressed nor uncompressed
86 bool static IsCompressedPubKey(const valtype
&vchPubKey
) {
87 if (vchPubKey
.size() != 33) {
88 // Non-canonical public key: invalid length for compressed key
91 if (vchPubKey
[0] != 0x02 && vchPubKey
[0] != 0x03) {
92 // Non-canonical public key: invalid prefix for compressed key
99 * A canonical signature exists of: <30> <total len> <02> <len R> <R> <02> <len S> <S> <hashtype>
100 * Where R and S are not negative (their first byte has its highest bit not set), and not
101 * excessively padded (do not start with a 0 byte, unless an otherwise negative number follows,
102 * in which case a single 0 byte is necessary and even required).
104 * See https://bitcointalk.org/index.php?topic=8392.msg127623#msg127623
106 * This function is consensus-critical since BIP66.
108 bool static IsValidSignatureEncoding(const std::vector
<unsigned char> &sig
) {
109 // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S] [sighash]
110 // * total-length: 1-byte length descriptor of everything that follows,
111 // excluding the sighash byte.
112 // * R-length: 1-byte length descriptor of the R value that follows.
113 // * R: arbitrary-length big-endian encoded R value. It must use the shortest
114 // possible encoding for a positive integers (which means no null bytes at
115 // the start, except a single one when the next byte has its highest bit set).
116 // * S-length: 1-byte length descriptor of the S value that follows.
117 // * S: arbitrary-length big-endian encoded S value. The same rules apply.
118 // * sighash: 1-byte value indicating what data is hashed (not part of the DER
121 // Minimum and maximum size constraints.
122 if (sig
.size() < 9) return false;
123 if (sig
.size() > 73) return false;
125 // A signature is of type 0x30 (compound).
126 if (sig
[0] != 0x30) return false;
128 // Make sure the length covers the entire signature.
129 if (sig
[1] != sig
.size() - 3) return false;
131 // Extract the length of the R element.
132 unsigned int lenR
= sig
[3];
134 // Make sure the length of the S element is still inside the signature.
135 if (5 + lenR
>= sig
.size()) return false;
137 // Extract the length of the S element.
138 unsigned int lenS
= sig
[5 + lenR
];
140 // Verify that the length of the signature matches the sum of the length
142 if ((size_t)(lenR
+ lenS
+ 7) != sig
.size()) return false;
144 // Check whether the R element is an integer.
145 if (sig
[2] != 0x02) return false;
147 // Zero-length integers are not allowed for R.
148 if (lenR
== 0) return false;
150 // Negative numbers are not allowed for R.
151 if (sig
[4] & 0x80) return false;
153 // Null bytes at the start of R are not allowed, unless R would
154 // otherwise be interpreted as a negative number.
155 if (lenR
> 1 && (sig
[4] == 0x00) && !(sig
[5] & 0x80)) return false;
157 // Check whether the S element is an integer.
158 if (sig
[lenR
+ 4] != 0x02) return false;
160 // Zero-length integers are not allowed for S.
161 if (lenS
== 0) return false;
163 // Negative numbers are not allowed for S.
164 if (sig
[lenR
+ 6] & 0x80) return false;
166 // Null bytes at the start of S are not allowed, unless S would otherwise be
167 // interpreted as a negative number.
168 if (lenS
> 1 && (sig
[lenR
+ 6] == 0x00) && !(sig
[lenR
+ 7] & 0x80)) return false;
173 bool static IsLowDERSignature(const valtype
&vchSig
, ScriptError
* serror
) {
174 if (!IsValidSignatureEncoding(vchSig
)) {
175 return set_error(serror
, SCRIPT_ERR_SIG_DER
);
177 std::vector
<unsigned char> vchSigCopy(vchSig
.begin(), vchSig
.begin() + vchSig
.size() - 1);
178 if (!CPubKey::CheckLowS(vchSigCopy
)) {
179 return set_error(serror
, SCRIPT_ERR_SIG_HIGH_S
);
184 bool static IsDefinedHashtypeSignature(const valtype
&vchSig
) {
185 if (vchSig
.size() == 0) {
188 unsigned char nHashType
= vchSig
[vchSig
.size() - 1] & (~(SIGHASH_ANYONECANPAY
));
189 if (nHashType
< SIGHASH_ALL
|| nHashType
> SIGHASH_SINGLE
)
195 bool CheckSignatureEncoding(const std::vector
<unsigned char> &vchSig
, unsigned int flags
, ScriptError
* serror
) {
196 // Empty signature. Not strictly DER encoded, but allowed to provide a
197 // compact way to provide an invalid signature for use with CHECK(MULTI)SIG
198 if (vchSig
.size() == 0) {
201 if ((flags
& (SCRIPT_VERIFY_DERSIG
| SCRIPT_VERIFY_LOW_S
| SCRIPT_VERIFY_STRICTENC
)) != 0 && !IsValidSignatureEncoding(vchSig
)) {
202 return set_error(serror
, SCRIPT_ERR_SIG_DER
);
203 } else if ((flags
& SCRIPT_VERIFY_LOW_S
) != 0 && !IsLowDERSignature(vchSig
, serror
)) {
206 } else if ((flags
& SCRIPT_VERIFY_STRICTENC
) != 0 && !IsDefinedHashtypeSignature(vchSig
)) {
207 return set_error(serror
, SCRIPT_ERR_SIG_HASHTYPE
);
212 bool static CheckPubKeyEncoding(const valtype
&vchPubKey
, unsigned int flags
, const SigVersion
&sigversion
, ScriptError
* serror
) {
213 if ((flags
& SCRIPT_VERIFY_STRICTENC
) != 0 && !IsCompressedOrUncompressedPubKey(vchPubKey
)) {
214 return set_error(serror
, SCRIPT_ERR_PUBKEYTYPE
);
216 // Only compressed keys are accepted in segwit
217 if ((flags
& SCRIPT_VERIFY_WITNESS_PUBKEYTYPE
) != 0 && sigversion
== SIGVERSION_WITNESS_V0
&& !IsCompressedPubKey(vchPubKey
)) {
218 return set_error(serror
, SCRIPT_ERR_WITNESS_PUBKEYTYPE
);
223 bool static CheckMinimalPush(const valtype
& data
, opcodetype opcode
) {
224 if (data
.size() == 0) {
225 // Could have used OP_0.
226 return opcode
== OP_0
;
227 } else if (data
.size() == 1 && data
[0] >= 1 && data
[0] <= 16) {
228 // Could have used OP_1 .. OP_16.
229 return opcode
== OP_1
+ (data
[0] - 1);
230 } else if (data
.size() == 1 && data
[0] == 0x81) {
231 // Could have used OP_1NEGATE.
232 return opcode
== OP_1NEGATE
;
233 } else if (data
.size() <= 75) {
234 // Could have used a direct push (opcode indicating number of bytes pushed + those bytes).
235 return opcode
== data
.size();
236 } else if (data
.size() <= 255) {
237 // Could have used OP_PUSHDATA.
238 return opcode
== OP_PUSHDATA1
;
239 } else if (data
.size() <= 65535) {
240 // Could have used OP_PUSHDATA2.
241 return opcode
== OP_PUSHDATA2
;
246 bool EvalScript(std::vector
<std::vector
<unsigned char> >& stack
, const CScript
& script
, unsigned int flags
, const BaseSignatureChecker
& checker
, SigVersion sigversion
, ScriptError
* serror
)
248 static const CScriptNum
bnZero(0);
249 static const CScriptNum
bnOne(1);
250 // static const CScriptNum bnFalse(0);
251 // static const CScriptNum bnTrue(1);
252 static const valtype
vchFalse(0);
253 // static const valtype vchZero(0);
254 static const valtype
vchTrue(1, 1);
256 CScript::const_iterator pc
= script
.begin();
257 CScript::const_iterator pend
= script
.end();
258 CScript::const_iterator pbegincodehash
= script
.begin();
260 valtype vchPushValue
;
261 std::vector
<bool> vfExec
;
262 std::vector
<valtype
> altstack
;
263 set_error(serror
, SCRIPT_ERR_UNKNOWN_ERROR
);
264 if (script
.size() > MAX_SCRIPT_SIZE
)
265 return set_error(serror
, SCRIPT_ERR_SCRIPT_SIZE
);
267 bool fRequireMinimal
= (flags
& SCRIPT_VERIFY_MINIMALDATA
) != 0;
273 bool fExec
= !count(vfExec
.begin(), vfExec
.end(), false);
278 if (!script
.GetOp(pc
, opcode
, vchPushValue
))
279 return set_error(serror
, SCRIPT_ERR_BAD_OPCODE
);
280 if (vchPushValue
.size() > MAX_SCRIPT_ELEMENT_SIZE
)
281 return set_error(serror
, SCRIPT_ERR_PUSH_SIZE
);
283 // Note how OP_RESERVED does not count towards the opcode limit.
284 if (opcode
> OP_16
&& ++nOpCount
> MAX_OPS_PER_SCRIPT
)
285 return set_error(serror
, SCRIPT_ERR_OP_COUNT
);
287 if (opcode
== OP_CAT
||
288 opcode
== OP_SUBSTR
||
290 opcode
== OP_RIGHT
||
291 opcode
== OP_INVERT
||
300 opcode
== OP_LSHIFT
||
302 return set_error(serror
, SCRIPT_ERR_DISABLED_OPCODE
); // Disabled opcodes.
304 if (fExec
&& 0 <= opcode
&& opcode
<= OP_PUSHDATA4
) {
305 if (fRequireMinimal
&& !CheckMinimalPush(vchPushValue
, opcode
)) {
306 return set_error(serror
, SCRIPT_ERR_MINIMALDATA
);
308 stack
.push_back(vchPushValue
);
309 } else if (fExec
|| (OP_IF
<= opcode
&& opcode
<= OP_ENDIF
))
334 CScriptNum
bn((int)opcode
- (int)(OP_1
- 1));
335 stack
.push_back(bn
.getvch());
336 // The result of these opcodes should always be the minimal way to push the data
337 // they push, so no need for a CheckMinimalPush here.
348 case OP_CHECKLOCKTIMEVERIFY
:
350 if (!(flags
& SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY
)) {
351 // not enabled; treat as a NOP2
352 if (flags
& SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS
) {
353 return set_error(serror
, SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS
);
358 if (stack
.size() < 1)
359 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
361 // Note that elsewhere numeric opcodes are limited to
362 // operands in the range -2**31+1 to 2**31-1, however it is
363 // legal for opcodes to produce results exceeding that
364 // range. This limitation is implemented by CScriptNum's
365 // default 4-byte limit.
367 // If we kept to that limit we'd have a year 2038 problem,
368 // even though the nLockTime field in transactions
369 // themselves is uint32 which only becomes meaningless
370 // after the year 2106.
372 // Thus as a special case we tell CScriptNum to accept up
373 // to 5-byte bignums, which are good until 2**39-1, well
374 // beyond the 2**32-1 limit of the nLockTime field itself.
375 const CScriptNum
nLockTime(stacktop(-1), fRequireMinimal
, 5);
377 // In the rare event that the argument may be < 0 due to
378 // some arithmetic being done first, you can always use
379 // 0 MAX CHECKLOCKTIMEVERIFY.
381 return set_error(serror
, SCRIPT_ERR_NEGATIVE_LOCKTIME
);
383 // Actually compare the specified lock time with the transaction.
384 if (!checker
.CheckLockTime(nLockTime
))
385 return set_error(serror
, SCRIPT_ERR_UNSATISFIED_LOCKTIME
);
390 case OP_CHECKSEQUENCEVERIFY
:
392 if (!(flags
& SCRIPT_VERIFY_CHECKSEQUENCEVERIFY
)) {
393 // not enabled; treat as a NOP3
394 if (flags
& SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS
) {
395 return set_error(serror
, SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS
);
400 if (stack
.size() < 1)
401 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
403 // nSequence, like nLockTime, is a 32-bit unsigned integer
404 // field. See the comment in CHECKLOCKTIMEVERIFY regarding
405 // 5-byte numeric operands.
406 const CScriptNum
nSequence(stacktop(-1), fRequireMinimal
, 5);
408 // In the rare event that the argument may be < 0 due to
409 // some arithmetic being done first, you can always use
410 // 0 MAX CHECKSEQUENCEVERIFY.
412 return set_error(serror
, SCRIPT_ERR_NEGATIVE_LOCKTIME
);
414 // To provide for future soft-fork extensibility, if the
415 // operand has the disabled lock-time flag set,
416 // CHECKSEQUENCEVERIFY behaves as a NOP.
417 if ((nSequence
& CTxIn::SEQUENCE_LOCKTIME_DISABLE_FLAG
) != 0)
420 // Compare the specified sequence number with the input.
421 if (!checker
.CheckSequence(nSequence
))
422 return set_error(serror
, SCRIPT_ERR_UNSATISFIED_LOCKTIME
);
427 case OP_NOP1
: case OP_NOP4
: case OP_NOP5
:
428 case OP_NOP6
: case OP_NOP7
: case OP_NOP8
: case OP_NOP9
: case OP_NOP10
:
430 if (flags
& SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_NOPS
)
431 return set_error(serror
, SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS
);
438 // <expression> if [statements] [else [statements]] endif
442 if (stack
.size() < 1)
443 return set_error(serror
, SCRIPT_ERR_UNBALANCED_CONDITIONAL
);
444 valtype
& vch
= stacktop(-1);
445 if (sigversion
== SIGVERSION_WITNESS_V0
&& (flags
& SCRIPT_VERIFY_MINIMALIF
)) {
447 return set_error(serror
, SCRIPT_ERR_MINIMALIF
);
448 if (vch
.size() == 1 && vch
[0] != 1)
449 return set_error(serror
, SCRIPT_ERR_MINIMALIF
);
451 fValue
= CastToBool(vch
);
452 if (opcode
== OP_NOTIF
)
456 vfExec
.push_back(fValue
);
463 return set_error(serror
, SCRIPT_ERR_UNBALANCED_CONDITIONAL
);
464 vfExec
.back() = !vfExec
.back();
471 return set_error(serror
, SCRIPT_ERR_UNBALANCED_CONDITIONAL
);
479 // (false -- false) and return
480 if (stack
.size() < 1)
481 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
482 bool fValue
= CastToBool(stacktop(-1));
486 return set_error(serror
, SCRIPT_ERR_VERIFY
);
492 return set_error(serror
, SCRIPT_ERR_OP_RETURN
);
502 if (stack
.size() < 1)
503 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
504 altstack
.push_back(stacktop(-1));
509 case OP_FROMALTSTACK
:
511 if (altstack
.size() < 1)
512 return set_error(serror
, SCRIPT_ERR_INVALID_ALTSTACK_OPERATION
);
513 stack
.push_back(altstacktop(-1));
521 if (stack
.size() < 2)
522 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
530 // (x1 x2 -- x1 x2 x1 x2)
531 if (stack
.size() < 2)
532 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
533 valtype vch1
= stacktop(-2);
534 valtype vch2
= stacktop(-1);
535 stack
.push_back(vch1
);
536 stack
.push_back(vch2
);
542 // (x1 x2 x3 -- x1 x2 x3 x1 x2 x3)
543 if (stack
.size() < 3)
544 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
545 valtype vch1
= stacktop(-3);
546 valtype vch2
= stacktop(-2);
547 valtype vch3
= stacktop(-1);
548 stack
.push_back(vch1
);
549 stack
.push_back(vch2
);
550 stack
.push_back(vch3
);
556 // (x1 x2 x3 x4 -- x1 x2 x3 x4 x1 x2)
557 if (stack
.size() < 4)
558 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
559 valtype vch1
= stacktop(-4);
560 valtype vch2
= stacktop(-3);
561 stack
.push_back(vch1
);
562 stack
.push_back(vch2
);
568 // (x1 x2 x3 x4 x5 x6 -- x3 x4 x5 x6 x1 x2)
569 if (stack
.size() < 6)
570 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
571 valtype vch1
= stacktop(-6);
572 valtype vch2
= stacktop(-5);
573 stack
.erase(stack
.end()-6, stack
.end()-4);
574 stack
.push_back(vch1
);
575 stack
.push_back(vch2
);
581 // (x1 x2 x3 x4 -- x3 x4 x1 x2)
582 if (stack
.size() < 4)
583 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
584 swap(stacktop(-4), stacktop(-2));
585 swap(stacktop(-3), stacktop(-1));
592 if (stack
.size() < 1)
593 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
594 valtype vch
= stacktop(-1);
596 stack
.push_back(vch
);
603 CScriptNum
bn(stack
.size());
604 stack
.push_back(bn
.getvch());
611 if (stack
.size() < 1)
612 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
620 if (stack
.size() < 1)
621 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
622 valtype vch
= stacktop(-1);
623 stack
.push_back(vch
);
630 if (stack
.size() < 2)
631 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
632 stack
.erase(stack
.end() - 2);
638 // (x1 x2 -- x1 x2 x1)
639 if (stack
.size() < 2)
640 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
641 valtype vch
= stacktop(-2);
642 stack
.push_back(vch
);
649 // (xn ... x2 x1 x0 n - xn ... x2 x1 x0 xn)
650 // (xn ... x2 x1 x0 n - ... x2 x1 x0 xn)
651 if (stack
.size() < 2)
652 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
653 int n
= CScriptNum(stacktop(-1), fRequireMinimal
).getint();
655 if (n
< 0 || n
>= (int)stack
.size())
656 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
657 valtype vch
= stacktop(-n
-1);
658 if (opcode
== OP_ROLL
)
659 stack
.erase(stack
.end()-n
-1);
660 stack
.push_back(vch
);
666 // (x1 x2 x3 -- x2 x3 x1)
667 // x2 x1 x3 after first swap
668 // x2 x3 x1 after second swap
669 if (stack
.size() < 3)
670 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
671 swap(stacktop(-3), stacktop(-2));
672 swap(stacktop(-2), stacktop(-1));
679 if (stack
.size() < 2)
680 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
681 swap(stacktop(-2), stacktop(-1));
687 // (x1 x2 -- x2 x1 x2)
688 if (stack
.size() < 2)
689 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
690 valtype vch
= stacktop(-1);
691 stack
.insert(stack
.end()-2, vch
);
699 if (stack
.size() < 1)
700 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
701 CScriptNum
bn(stacktop(-1).size());
702 stack
.push_back(bn
.getvch());
712 //case OP_NOTEQUAL: // use OP_NUMNOTEQUAL
715 if (stack
.size() < 2)
716 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
717 valtype
& vch1
= stacktop(-2);
718 valtype
& vch2
= stacktop(-1);
719 bool fEqual
= (vch1
== vch2
);
720 // OP_NOTEQUAL is disabled because it would be too easy to say
721 // something like n != 1 and have some wiseguy pass in 1 with extra
722 // zero bytes after it (numerically, 0x01 == 0x0001 == 0x000001)
723 //if (opcode == OP_NOTEQUAL)
727 stack
.push_back(fEqual
? vchTrue
: vchFalse
);
728 if (opcode
== OP_EQUALVERIFY
)
733 return set_error(serror
, SCRIPT_ERR_EQUALVERIFY
);
750 if (stack
.size() < 1)
751 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
752 CScriptNum
bn(stacktop(-1), fRequireMinimal
);
755 case OP_1ADD
: bn
+= bnOne
; break;
756 case OP_1SUB
: bn
-= bnOne
; break;
757 case OP_NEGATE
: bn
= -bn
; break;
758 case OP_ABS
: if (bn
< bnZero
) bn
= -bn
; break;
759 case OP_NOT
: bn
= (bn
== bnZero
); break;
760 case OP_0NOTEQUAL
: bn
= (bn
!= bnZero
); break;
761 default: assert(!"invalid opcode"); break;
764 stack
.push_back(bn
.getvch());
773 case OP_NUMEQUALVERIFY
:
777 case OP_LESSTHANOREQUAL
:
778 case OP_GREATERTHANOREQUAL
:
783 if (stack
.size() < 2)
784 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
785 CScriptNum
bn1(stacktop(-2), fRequireMinimal
);
786 CScriptNum
bn2(stacktop(-1), fRequireMinimal
);
798 case OP_BOOLAND
: bn
= (bn1
!= bnZero
&& bn2
!= bnZero
); break;
799 case OP_BOOLOR
: bn
= (bn1
!= bnZero
|| bn2
!= bnZero
); break;
800 case OP_NUMEQUAL
: bn
= (bn1
== bn2
); break;
801 case OP_NUMEQUALVERIFY
: bn
= (bn1
== bn2
); break;
802 case OP_NUMNOTEQUAL
: bn
= (bn1
!= bn2
); break;
803 case OP_LESSTHAN
: bn
= (bn1
< bn2
); break;
804 case OP_GREATERTHAN
: bn
= (bn1
> bn2
); break;
805 case OP_LESSTHANOREQUAL
: bn
= (bn1
<= bn2
); break;
806 case OP_GREATERTHANOREQUAL
: bn
= (bn1
>= bn2
); break;
807 case OP_MIN
: bn
= (bn1
< bn2
? bn1
: bn2
); break;
808 case OP_MAX
: bn
= (bn1
> bn2
? bn1
: bn2
); break;
809 default: assert(!"invalid opcode"); break;
813 stack
.push_back(bn
.getvch());
815 if (opcode
== OP_NUMEQUALVERIFY
)
817 if (CastToBool(stacktop(-1)))
820 return set_error(serror
, SCRIPT_ERR_NUMEQUALVERIFY
);
827 // (x min max -- out)
828 if (stack
.size() < 3)
829 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
830 CScriptNum
bn1(stacktop(-3), fRequireMinimal
);
831 CScriptNum
bn2(stacktop(-2), fRequireMinimal
);
832 CScriptNum
bn3(stacktop(-1), fRequireMinimal
);
833 bool fValue
= (bn2
<= bn1
&& bn1
< bn3
);
837 stack
.push_back(fValue
? vchTrue
: vchFalse
);
852 if (stack
.size() < 1)
853 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
854 valtype
& vch
= stacktop(-1);
855 valtype
vchHash((opcode
== OP_RIPEMD160
|| opcode
== OP_SHA1
|| opcode
== OP_HASH160
) ? 20 : 32);
856 if (opcode
== OP_RIPEMD160
)
857 CRIPEMD160().Write(vch
.data(), vch
.size()).Finalize(vchHash
.data());
858 else if (opcode
== OP_SHA1
)
859 CSHA1().Write(vch
.data(), vch
.size()).Finalize(vchHash
.data());
860 else if (opcode
== OP_SHA256
)
861 CSHA256().Write(vch
.data(), vch
.size()).Finalize(vchHash
.data());
862 else if (opcode
== OP_HASH160
)
863 CHash160().Write(vch
.data(), vch
.size()).Finalize(vchHash
.data());
864 else if (opcode
== OP_HASH256
)
865 CHash256().Write(vch
.data(), vch
.size()).Finalize(vchHash
.data());
867 stack
.push_back(vchHash
);
871 case OP_CODESEPARATOR
:
873 // Hash starts after the code separator
879 case OP_CHECKSIGVERIFY
:
881 // (sig pubkey -- bool)
882 if (stack
.size() < 2)
883 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
885 valtype
& vchSig
= stacktop(-2);
886 valtype
& vchPubKey
= stacktop(-1);
888 // Subset of script starting at the most recent codeseparator
889 CScript
scriptCode(pbegincodehash
, pend
);
891 // Drop the signature in pre-segwit scripts but not segwit scripts
892 if (sigversion
== SIGVERSION_BASE
) {
893 scriptCode
.FindAndDelete(CScript(vchSig
));
896 if (!CheckSignatureEncoding(vchSig
, flags
, serror
) || !CheckPubKeyEncoding(vchPubKey
, flags
, sigversion
, serror
)) {
900 bool fSuccess
= checker
.CheckSig(vchSig
, vchPubKey
, scriptCode
, sigversion
);
902 if (!fSuccess
&& (flags
& SCRIPT_VERIFY_NULLFAIL
) && vchSig
.size())
903 return set_error(serror
, SCRIPT_ERR_SIG_NULLFAIL
);
907 stack
.push_back(fSuccess
? vchTrue
: vchFalse
);
908 if (opcode
== OP_CHECKSIGVERIFY
)
913 return set_error(serror
, SCRIPT_ERR_CHECKSIGVERIFY
);
918 case OP_CHECKMULTISIG
:
919 case OP_CHECKMULTISIGVERIFY
:
921 // ([sig ...] num_of_signatures [pubkey ...] num_of_pubkeys -- bool)
924 if ((int)stack
.size() < i
)
925 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
927 int nKeysCount
= CScriptNum(stacktop(-i
), fRequireMinimal
).getint();
928 if (nKeysCount
< 0 || nKeysCount
> MAX_PUBKEYS_PER_MULTISIG
)
929 return set_error(serror
, SCRIPT_ERR_PUBKEY_COUNT
);
930 nOpCount
+= nKeysCount
;
931 if (nOpCount
> MAX_OPS_PER_SCRIPT
)
932 return set_error(serror
, SCRIPT_ERR_OP_COUNT
);
934 // ikey2 is the position of last non-signature item in the stack. Top stack item = 1.
935 // With SCRIPT_VERIFY_NULLFAIL, this is used for cleanup if operation fails.
936 int ikey2
= nKeysCount
+ 2;
938 if ((int)stack
.size() < i
)
939 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
941 int nSigsCount
= CScriptNum(stacktop(-i
), fRequireMinimal
).getint();
942 if (nSigsCount
< 0 || nSigsCount
> nKeysCount
)
943 return set_error(serror
, SCRIPT_ERR_SIG_COUNT
);
946 if ((int)stack
.size() < i
)
947 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
949 // Subset of script starting at the most recent codeseparator
950 CScript
scriptCode(pbegincodehash
, pend
);
952 // Drop the signature in pre-segwit scripts but not segwit scripts
953 for (int k
= 0; k
< nSigsCount
; k
++)
955 valtype
& vchSig
= stacktop(-isig
-k
);
956 if (sigversion
== SIGVERSION_BASE
) {
957 scriptCode
.FindAndDelete(CScript(vchSig
));
961 bool fSuccess
= true;
962 while (fSuccess
&& nSigsCount
> 0)
964 valtype
& vchSig
= stacktop(-isig
);
965 valtype
& vchPubKey
= stacktop(-ikey
);
967 // Note how this makes the exact order of pubkey/signature evaluation
968 // distinguishable by CHECKMULTISIG NOT if the STRICTENC flag is set.
969 // See the script_(in)valid tests for details.
970 if (!CheckSignatureEncoding(vchSig
, flags
, serror
) || !CheckPubKeyEncoding(vchPubKey
, flags
, sigversion
, serror
)) {
976 bool fOk
= checker
.CheckSig(vchSig
, vchPubKey
, scriptCode
, sigversion
);
985 // If there are more signatures left than keys left,
986 // then too many signatures have failed. Exit early,
987 // without checking any further signatures.
988 if (nSigsCount
> nKeysCount
)
992 // Clean up stack of actual arguments
994 // If the operation failed, we require that all signatures must be empty vector
995 if (!fSuccess
&& (flags
& SCRIPT_VERIFY_NULLFAIL
) && !ikey2
&& stacktop(-1).size())
996 return set_error(serror
, SCRIPT_ERR_SIG_NULLFAIL
);
1002 // A bug causes CHECKMULTISIG to consume one extra argument
1003 // whose contents were not checked in any way.
1005 // Unfortunately this is a potential source of mutability,
1006 // so optionally verify it is exactly equal to zero prior
1007 // to removing it from the stack.
1008 if (stack
.size() < 1)
1009 return set_error(serror
, SCRIPT_ERR_INVALID_STACK_OPERATION
);
1010 if ((flags
& SCRIPT_VERIFY_NULLDUMMY
) && stacktop(-1).size())
1011 return set_error(serror
, SCRIPT_ERR_SIG_NULLDUMMY
);
1014 stack
.push_back(fSuccess
? vchTrue
: vchFalse
);
1016 if (opcode
== OP_CHECKMULTISIGVERIFY
)
1021 return set_error(serror
, SCRIPT_ERR_CHECKMULTISIGVERIFY
);
1027 return set_error(serror
, SCRIPT_ERR_BAD_OPCODE
);
1031 if (stack
.size() + altstack
.size() > MAX_STACK_SIZE
)
1032 return set_error(serror
, SCRIPT_ERR_STACK_SIZE
);
1037 return set_error(serror
, SCRIPT_ERR_UNKNOWN_ERROR
);
1040 if (!vfExec
.empty())
1041 return set_error(serror
, SCRIPT_ERR_UNBALANCED_CONDITIONAL
);
1043 return set_success(serror
);
1049 * Wrapper that serializes like CTransaction, but with the modifications
1050 * required for the signature hash done in-place
1052 class CTransactionSignatureSerializer
{
1054 const CTransaction
& txTo
; //!< reference to the spending transaction (the one being serialized)
1055 const CScript
& scriptCode
; //!< output script being consumed
1056 const unsigned int nIn
; //!< input index of txTo being signed
1057 const bool fAnyoneCanPay
; //!< whether the hashtype has the SIGHASH_ANYONECANPAY flag set
1058 const bool fHashSingle
; //!< whether the hashtype is SIGHASH_SINGLE
1059 const bool fHashNone
; //!< whether the hashtype is SIGHASH_NONE
1062 CTransactionSignatureSerializer(const CTransaction
&txToIn
, const CScript
&scriptCodeIn
, unsigned int nInIn
, int nHashTypeIn
) :
1063 txTo(txToIn
), scriptCode(scriptCodeIn
), nIn(nInIn
),
1064 fAnyoneCanPay(!!(nHashTypeIn
& SIGHASH_ANYONECANPAY
)),
1065 fHashSingle((nHashTypeIn
& 0x1f) == SIGHASH_SINGLE
),
1066 fHashNone((nHashTypeIn
& 0x1f) == SIGHASH_NONE
) {}
1068 /** Serialize the passed scriptCode, skipping OP_CODESEPARATORs */
1069 template<typename S
>
1070 void SerializeScriptCode(S
&s
) const {
1071 CScript::const_iterator it
= scriptCode
.begin();
1072 CScript::const_iterator itBegin
= it
;
1074 unsigned int nCodeSeparators
= 0;
1075 while (scriptCode
.GetOp(it
, opcode
)) {
1076 if (opcode
== OP_CODESEPARATOR
)
1079 ::WriteCompactSize(s
, scriptCode
.size() - nCodeSeparators
);
1081 while (scriptCode
.GetOp(it
, opcode
)) {
1082 if (opcode
== OP_CODESEPARATOR
) {
1083 s
.write((char*)&itBegin
[0], it
-itBegin
-1);
1087 if (itBegin
!= scriptCode
.end())
1088 s
.write((char*)&itBegin
[0], it
-itBegin
);
1091 /** Serialize an input of txTo */
1092 template<typename S
>
1093 void SerializeInput(S
&s
, unsigned int nInput
) const {
1094 // In case of SIGHASH_ANYONECANPAY, only the input being signed is serialized
1097 // Serialize the prevout
1098 ::Serialize(s
, txTo
.vin
[nInput
].prevout
);
1099 // Serialize the script
1101 // Blank out other inputs' signatures
1102 ::Serialize(s
, CScript());
1104 SerializeScriptCode(s
);
1105 // Serialize the nSequence
1106 if (nInput
!= nIn
&& (fHashSingle
|| fHashNone
))
1107 // let the others update at will
1108 ::Serialize(s
, (int)0);
1110 ::Serialize(s
, txTo
.vin
[nInput
].nSequence
);
1113 /** Serialize an output of txTo */
1114 template<typename S
>
1115 void SerializeOutput(S
&s
, unsigned int nOutput
) const {
1116 if (fHashSingle
&& nOutput
!= nIn
)
1117 // Do not lock-in the txout payee at other indices as txin
1118 ::Serialize(s
, CTxOut());
1120 ::Serialize(s
, txTo
.vout
[nOutput
]);
1123 /** Serialize txTo */
1124 template<typename S
>
1125 void Serialize(S
&s
) const {
1126 // Serialize nVersion
1127 ::Serialize(s
, txTo
.nVersion
);
1129 unsigned int nInputs
= fAnyoneCanPay
? 1 : txTo
.vin
.size();
1130 ::WriteCompactSize(s
, nInputs
);
1131 for (unsigned int nInput
= 0; nInput
< nInputs
; nInput
++)
1132 SerializeInput(s
, nInput
);
1134 unsigned int nOutputs
= fHashNone
? 0 : (fHashSingle
? nIn
+1 : txTo
.vout
.size());
1135 ::WriteCompactSize(s
, nOutputs
);
1136 for (unsigned int nOutput
= 0; nOutput
< nOutputs
; nOutput
++)
1137 SerializeOutput(s
, nOutput
);
1138 // Serialize nLockTime
1139 ::Serialize(s
, txTo
.nLockTime
);
1143 uint256
GetPrevoutHash(const CTransaction
& txTo
) {
1144 CHashWriter
ss(SER_GETHASH
, 0);
1145 for (const auto& txin
: txTo
.vin
) {
1148 return ss
.GetHash();
1151 uint256
GetSequenceHash(const CTransaction
& txTo
) {
1152 CHashWriter
ss(SER_GETHASH
, 0);
1153 for (const auto& txin
: txTo
.vin
) {
1154 ss
<< txin
.nSequence
;
1156 return ss
.GetHash();
1159 uint256
GetOutputsHash(const CTransaction
& txTo
) {
1160 CHashWriter
ss(SER_GETHASH
, 0);
1161 for (const auto& txout
: txTo
.vout
) {
1164 return ss
.GetHash();
1169 PrecomputedTransactionData::PrecomputedTransactionData(const CTransaction
& txTo
)
1171 hashPrevouts
= GetPrevoutHash(txTo
);
1172 hashSequence
= GetSequenceHash(txTo
);
1173 hashOutputs
= GetOutputsHash(txTo
);
1176 uint256
SignatureHash(const CScript
& scriptCode
, const CTransaction
& txTo
, unsigned int nIn
, int nHashType
, const CAmount
& amount
, SigVersion sigversion
, const PrecomputedTransactionData
* cache
)
1178 if (sigversion
== SIGVERSION_WITNESS_V0
) {
1179 uint256 hashPrevouts
;
1180 uint256 hashSequence
;
1181 uint256 hashOutputs
;
1183 if (!(nHashType
& SIGHASH_ANYONECANPAY
)) {
1184 hashPrevouts
= cache
? cache
->hashPrevouts
: GetPrevoutHash(txTo
);
1187 if (!(nHashType
& SIGHASH_ANYONECANPAY
) && (nHashType
& 0x1f) != SIGHASH_SINGLE
&& (nHashType
& 0x1f) != SIGHASH_NONE
) {
1188 hashSequence
= cache
? cache
->hashSequence
: GetSequenceHash(txTo
);
1192 if ((nHashType
& 0x1f) != SIGHASH_SINGLE
&& (nHashType
& 0x1f) != SIGHASH_NONE
) {
1193 hashOutputs
= cache
? cache
->hashOutputs
: GetOutputsHash(txTo
);
1194 } else if ((nHashType
& 0x1f) == SIGHASH_SINGLE
&& nIn
< txTo
.vout
.size()) {
1195 CHashWriter
ss(SER_GETHASH
, 0);
1196 ss
<< txTo
.vout
[nIn
];
1197 hashOutputs
= ss
.GetHash();
1200 CHashWriter
ss(SER_GETHASH
, 0);
1202 ss
<< txTo
.nVersion
;
1203 // Input prevouts/nSequence (none/all, depending on flags)
1206 // The input being signed (replacing the scriptSig with scriptCode + amount)
1207 // The prevout may already be contained in hashPrevout, and the nSequence
1208 // may already be contain in hashSequence.
1209 ss
<< txTo
.vin
[nIn
].prevout
;
1212 ss
<< txTo
.vin
[nIn
].nSequence
;
1213 // Outputs (none/one/all, depending on flags)
1216 ss
<< txTo
.nLockTime
;
1220 return ss
.GetHash();
1223 static const uint256
one(uint256S("0000000000000000000000000000000000000000000000000000000000000001"));
1224 if (nIn
>= txTo
.vin
.size()) {
1229 // Check for invalid use of SIGHASH_SINGLE
1230 if ((nHashType
& 0x1f) == SIGHASH_SINGLE
) {
1231 if (nIn
>= txTo
.vout
.size()) {
1232 // nOut out of range
1237 // Wrapper to serialize only the necessary parts of the transaction being signed
1238 CTransactionSignatureSerializer
txTmp(txTo
, scriptCode
, nIn
, nHashType
);
1240 // Serialize and hash
1241 CHashWriter
ss(SER_GETHASH
, 0);
1242 ss
<< txTmp
<< nHashType
;
1243 return ss
.GetHash();
1246 bool TransactionSignatureChecker::VerifySignature(const std::vector
<unsigned char>& vchSig
, const CPubKey
& pubkey
, const uint256
& sighash
) const
1248 return pubkey
.Verify(sighash
, vchSig
);
1251 bool TransactionSignatureChecker::CheckSig(const std::vector
<unsigned char>& vchSigIn
, const std::vector
<unsigned char>& vchPubKey
, const CScript
& scriptCode
, SigVersion sigversion
) const
1253 CPubKey
pubkey(vchPubKey
);
1254 if (!pubkey
.IsValid())
1257 // Hash type is one byte tacked on to the end of the signature
1258 std::vector
<unsigned char> vchSig(vchSigIn
);
1261 int nHashType
= vchSig
.back();
1264 uint256 sighash
= SignatureHash(scriptCode
, *txTo
, nIn
, nHashType
, amount
, sigversion
, this->txdata
);
1266 if (!VerifySignature(vchSig
, pubkey
, sighash
))
1272 bool TransactionSignatureChecker::CheckLockTime(const CScriptNum
& nLockTime
) const
1274 // There are two kinds of nLockTime: lock-by-blockheight
1275 // and lock-by-blocktime, distinguished by whether
1276 // nLockTime < LOCKTIME_THRESHOLD.
1278 // We want to compare apples to apples, so fail the script
1279 // unless the type of nLockTime being tested is the same as
1280 // the nLockTime in the transaction.
1282 (txTo
->nLockTime
< LOCKTIME_THRESHOLD
&& nLockTime
< LOCKTIME_THRESHOLD
) ||
1283 (txTo
->nLockTime
>= LOCKTIME_THRESHOLD
&& nLockTime
>= LOCKTIME_THRESHOLD
)
1287 // Now that we know we're comparing apples-to-apples, the
1288 // comparison is a simple numeric one.
1289 if (nLockTime
> (int64_t)txTo
->nLockTime
)
1292 // Finally the nLockTime feature can be disabled and thus
1293 // CHECKLOCKTIMEVERIFY bypassed if every txin has been
1294 // finalized by setting nSequence to maxint. The
1295 // transaction would be allowed into the blockchain, making
1296 // the opcode ineffective.
1298 // Testing if this vin is not final is sufficient to
1299 // prevent this condition. Alternatively we could test all
1300 // inputs, but testing just this input minimizes the data
1301 // required to prove correct CHECKLOCKTIMEVERIFY execution.
1302 if (CTxIn::SEQUENCE_FINAL
== txTo
->vin
[nIn
].nSequence
)
1308 bool TransactionSignatureChecker::CheckSequence(const CScriptNum
& nSequence
) const
1310 // Relative lock times are supported by comparing the passed
1311 // in operand to the sequence number of the input.
1312 const int64_t txToSequence
= (int64_t)txTo
->vin
[nIn
].nSequence
;
1314 // Fail if the transaction's version number is not set high
1315 // enough to trigger BIP 68 rules.
1316 if (static_cast<uint32_t>(txTo
->nVersion
) < 2)
1319 // Sequence numbers with their most significant bit set are not
1320 // consensus constrained. Testing that the transaction's sequence
1321 // number do not have this bit set prevents using this property
1322 // to get around a CHECKSEQUENCEVERIFY check.
1323 if (txToSequence
& CTxIn::SEQUENCE_LOCKTIME_DISABLE_FLAG
)
1326 // Mask off any bits that do not have consensus-enforced meaning
1327 // before doing the integer comparisons
1328 const uint32_t nLockTimeMask
= CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG
| CTxIn::SEQUENCE_LOCKTIME_MASK
;
1329 const int64_t txToSequenceMasked
= txToSequence
& nLockTimeMask
;
1330 const CScriptNum nSequenceMasked
= nSequence
& nLockTimeMask
;
1332 // There are two kinds of nSequence: lock-by-blockheight
1333 // and lock-by-blocktime, distinguished by whether
1334 // nSequenceMasked < CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG.
1336 // We want to compare apples to apples, so fail the script
1337 // unless the type of nSequenceMasked being tested is the same as
1338 // the nSequenceMasked in the transaction.
1340 (txToSequenceMasked
< CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG
&& nSequenceMasked
< CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG
) ||
1341 (txToSequenceMasked
>= CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG
&& nSequenceMasked
>= CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG
)
1346 // Now that we know we're comparing apples-to-apples, the
1347 // comparison is a simple numeric one.
1348 if (nSequenceMasked
> txToSequenceMasked
)
1354 static bool VerifyWitnessProgram(const CScriptWitness
& witness
, int witversion
, const std::vector
<unsigned char>& program
, unsigned int flags
, const BaseSignatureChecker
& checker
, ScriptError
* serror
)
1356 std::vector
<std::vector
<unsigned char> > stack
;
1357 CScript scriptPubKey
;
1359 if (witversion
== 0) {
1360 if (program
.size() == 32) {
1361 // Version 0 segregated witness program: SHA256(CScript) inside the program, CScript + inputs in witness
1362 if (witness
.stack
.size() == 0) {
1363 return set_error(serror
, SCRIPT_ERR_WITNESS_PROGRAM_WITNESS_EMPTY
);
1365 scriptPubKey
= CScript(witness
.stack
.back().begin(), witness
.stack
.back().end());
1366 stack
= std::vector
<std::vector
<unsigned char> >(witness
.stack
.begin(), witness
.stack
.end() - 1);
1367 uint256 hashScriptPubKey
;
1368 CSHA256().Write(&scriptPubKey
[0], scriptPubKey
.size()).Finalize(hashScriptPubKey
.begin());
1369 if (memcmp(hashScriptPubKey
.begin(), &program
[0], 32)) {
1370 return set_error(serror
, SCRIPT_ERR_WITNESS_PROGRAM_MISMATCH
);
1372 } else if (program
.size() == 20) {
1373 // Special case for pay-to-pubkeyhash; signature + pubkey in witness
1374 if (witness
.stack
.size() != 2) {
1375 return set_error(serror
, SCRIPT_ERR_WITNESS_PROGRAM_MISMATCH
); // 2 items in witness
1377 scriptPubKey
<< OP_DUP
<< OP_HASH160
<< program
<< OP_EQUALVERIFY
<< OP_CHECKSIG
;
1378 stack
= witness
.stack
;
1380 return set_error(serror
, SCRIPT_ERR_WITNESS_PROGRAM_WRONG_LENGTH
);
1382 } else if (flags
& SCRIPT_VERIFY_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM
) {
1383 return set_error(serror
, SCRIPT_ERR_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM
);
1385 // Higher version witness scripts return true for future softfork compatibility
1386 return set_success(serror
);
1389 // Disallow stack item size > MAX_SCRIPT_ELEMENT_SIZE in witness stack
1390 for (unsigned int i
= 0; i
< stack
.size(); i
++) {
1391 if (stack
.at(i
).size() > MAX_SCRIPT_ELEMENT_SIZE
)
1392 return set_error(serror
, SCRIPT_ERR_PUSH_SIZE
);
1395 if (!EvalScript(stack
, scriptPubKey
, flags
, checker
, SIGVERSION_WITNESS_V0
, serror
)) {
1399 // Scripts inside witness implicitly require cleanstack behaviour
1400 if (stack
.size() != 1)
1401 return set_error(serror
, SCRIPT_ERR_EVAL_FALSE
);
1402 if (!CastToBool(stack
.back()))
1403 return set_error(serror
, SCRIPT_ERR_EVAL_FALSE
);
1407 bool VerifyScript(const CScript
& scriptSig
, const CScript
& scriptPubKey
, const CScriptWitness
* witness
, unsigned int flags
, const BaseSignatureChecker
& checker
, ScriptError
* serror
)
1409 static const CScriptWitness emptyWitness
;
1410 if (witness
== NULL
) {
1411 witness
= &emptyWitness
;
1413 bool hadWitness
= false;
1415 set_error(serror
, SCRIPT_ERR_UNKNOWN_ERROR
);
1417 if ((flags
& SCRIPT_VERIFY_SIGPUSHONLY
) != 0 && !scriptSig
.IsPushOnly()) {
1418 return set_error(serror
, SCRIPT_ERR_SIG_PUSHONLY
);
1421 std::vector
<std::vector
<unsigned char> > stack
, stackCopy
;
1422 if (!EvalScript(stack
, scriptSig
, flags
, checker
, SIGVERSION_BASE
, serror
))
1425 if (flags
& SCRIPT_VERIFY_P2SH
)
1427 if (!EvalScript(stack
, scriptPubKey
, flags
, checker
, SIGVERSION_BASE
, serror
))
1431 return set_error(serror
, SCRIPT_ERR_EVAL_FALSE
);
1432 if (CastToBool(stack
.back()) == false)
1433 return set_error(serror
, SCRIPT_ERR_EVAL_FALSE
);
1435 // Bare witness programs
1437 std::vector
<unsigned char> witnessprogram
;
1438 if (flags
& SCRIPT_VERIFY_WITNESS
) {
1439 if (scriptPubKey
.IsWitnessProgram(witnessversion
, witnessprogram
)) {
1441 if (scriptSig
.size() != 0) {
1442 // The scriptSig must be _exactly_ CScript(), otherwise we reintroduce malleability.
1443 return set_error(serror
, SCRIPT_ERR_WITNESS_MALLEATED
);
1445 if (!VerifyWitnessProgram(*witness
, witnessversion
, witnessprogram
, flags
, checker
, serror
)) {
1448 // Bypass the cleanstack check at the end. The actual stack is obviously not clean
1449 // for witness programs.
1454 // Additional validation for spend-to-script-hash transactions:
1455 if ((flags
& SCRIPT_VERIFY_P2SH
) && scriptPubKey
.IsPayToScriptHash())
1457 // scriptSig must be literals-only or validation fails
1458 if (!scriptSig
.IsPushOnly())
1459 return set_error(serror
, SCRIPT_ERR_SIG_PUSHONLY
);
1462 swap(stack
, stackCopy
);
1464 // stack cannot be empty here, because if it was the
1465 // P2SH HASH <> EQUAL scriptPubKey would be evaluated with
1466 // an empty stack and the EvalScript above would return false.
1467 assert(!stack
.empty());
1469 const valtype
& pubKeySerialized
= stack
.back();
1470 CScript
pubKey2(pubKeySerialized
.begin(), pubKeySerialized
.end());
1473 if (!EvalScript(stack
, pubKey2
, flags
, checker
, SIGVERSION_BASE
, serror
))
1477 return set_error(serror
, SCRIPT_ERR_EVAL_FALSE
);
1478 if (!CastToBool(stack
.back()))
1479 return set_error(serror
, SCRIPT_ERR_EVAL_FALSE
);
1481 // P2SH witness program
1482 if (flags
& SCRIPT_VERIFY_WITNESS
) {
1483 if (pubKey2
.IsWitnessProgram(witnessversion
, witnessprogram
)) {
1485 if (scriptSig
!= CScript() << std::vector
<unsigned char>(pubKey2
.begin(), pubKey2
.end())) {
1486 // The scriptSig must be _exactly_ a single push of the redeemScript. Otherwise we
1487 // reintroduce malleability.
1488 return set_error(serror
, SCRIPT_ERR_WITNESS_MALLEATED_P2SH
);
1490 if (!VerifyWitnessProgram(*witness
, witnessversion
, witnessprogram
, flags
, checker
, serror
)) {
1493 // Bypass the cleanstack check at the end. The actual stack is obviously not clean
1494 // for witness programs.
1500 // The CLEANSTACK check is only performed after potential P2SH evaluation,
1501 // as the non-P2SH evaluation of a P2SH script will obviously not result in
1502 // a clean stack (the P2SH inputs remain). The same holds for witness evaluation.
1503 if ((flags
& SCRIPT_VERIFY_CLEANSTACK
) != 0) {
1504 // Disallow CLEANSTACK without P2SH, as otherwise a switch CLEANSTACK->P2SH+CLEANSTACK
1505 // would be possible, which is not a softfork (and P2SH should be one).
1506 assert((flags
& SCRIPT_VERIFY_P2SH
) != 0);
1507 assert((flags
& SCRIPT_VERIFY_WITNESS
) != 0);
1508 if (stack
.size() != 1) {
1509 return set_error(serror
, SCRIPT_ERR_CLEANSTACK
);
1513 if (flags
& SCRIPT_VERIFY_WITNESS
) {
1514 // We can't check for correct unexpected witness data if P2SH was off, so require
1515 // that WITNESS implies P2SH. Otherwise, going from WITNESS->P2SH+WITNESS would be
1516 // possible, which is not a softfork.
1517 assert((flags
& SCRIPT_VERIFY_P2SH
) != 0);
1518 if (!hadWitness
&& !witness
->IsNull()) {
1519 return set_error(serror
, SCRIPT_ERR_WITNESS_UNEXPECTED
);
1523 return set_success(serror
);
1526 size_t static WitnessSigOps(int witversion
, const std::vector
<unsigned char>& witprogram
, const CScriptWitness
& witness
, int flags
)
1528 if (witversion
== 0) {
1529 if (witprogram
.size() == 20)
1532 if (witprogram
.size() == 32 && witness
.stack
.size() > 0) {
1533 CScript
subscript(witness
.stack
.back().begin(), witness
.stack
.back().end());
1534 return subscript
.GetSigOpCount(true);
1538 // Future flags may be implemented here.
1542 size_t CountWitnessSigOps(const CScript
& scriptSig
, const CScript
& scriptPubKey
, const CScriptWitness
* witness
, unsigned int flags
)
1544 static const CScriptWitness witnessEmpty
;
1546 if ((flags
& SCRIPT_VERIFY_WITNESS
) == 0) {
1549 assert((flags
& SCRIPT_VERIFY_P2SH
) != 0);
1552 std::vector
<unsigned char> witnessprogram
;
1553 if (scriptPubKey
.IsWitnessProgram(witnessversion
, witnessprogram
)) {
1554 return WitnessSigOps(witnessversion
, witnessprogram
, witness
? *witness
: witnessEmpty
, flags
);
1557 if (scriptPubKey
.IsPayToScriptHash() && scriptSig
.IsPushOnly()) {
1558 CScript::const_iterator pc
= scriptSig
.begin();
1559 std::vector
<unsigned char> data
;
1560 while (pc
< scriptSig
.end()) {
1562 scriptSig
.GetOp(pc
, opcode
, data
);
1564 CScript
subscript(data
.begin(), data
.end());
1565 if (subscript
.IsWitnessProgram(witnessversion
, witnessprogram
)) {
1566 return WitnessSigOps(witnessversion
, witnessprogram
, witness
? *witness
: witnessEmpty
, flags
);