aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2014-08-26 16:49:41 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2014-08-26 16:50:17 +0200
commit727298cef34005c523117adbb2249c8df2c7f89d (patch)
tree2394c438b350e12433256cff803e1b3654cdf7c0 /src
parent790911ff0a659becd983afd5309b2c16401ba28d (diff)
parentaa41ac216eb51d61512b4cadc95c809e094215ce (diff)
downloadbitcoin-727298cef34005c523117adbb2249c8df2c7f89d.tar.xz
Merge pull request #4763
aa41ac2 Test IsPushOnly() with invalid push (Peter Todd)
Diffstat (limited to 'src')
-rw-r--r--src/script.cpp2
-rw-r--r--src/test/script_tests.cpp11
2 files changed, 13 insertions, 0 deletions
diff --git a/src/script.cpp b/src/script.cpp
index 942e8810db..d6d6684f44 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -1874,9 +1874,11 @@ bool CScript::IsPushOnly() const
const_iterator pc = begin();
while (pc < end())
{
+ // Note how a script with an invalid PUSHDATA returns False.
opcodetype opcode;
if (!GetOp(pc, opcode))
return false;
+
// Note that IsPushOnly() *does* consider OP_RESERVED to be a
// push-type opcode, however execution of OP_RESERVED fails, so
// it's not relevant to P2SH as the scriptSig would fail prior to
diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp
index bc9f31c077..77c44501ab 100644
--- a/src/test/script_tests.cpp
+++ b/src/test/script_tests.cpp
@@ -394,4 +394,15 @@ BOOST_AUTO_TEST_CASE(script_standard_push)
}
}
+BOOST_AUTO_TEST_CASE(script_IsPushOnly_on_invalid_scripts)
+{
+ // IsPushOnly returns false when given a script containing only pushes that
+ // are invalid due to truncation. IsPushOnly() is consensus critical
+ // because P2SH evaluation uses it, although this specific behavior should
+ // not be consensus critical as the P2SH evaluation would fail first due to
+ // the invalid push. Still, it doesn't hurt to test it explicitly.
+ static const unsigned char direct[] = { 1 };
+ BOOST_CHECK(!CScript(direct, direct+sizeof(direct)).IsPushOnly());
+}
+
BOOST_AUTO_TEST_SUITE_END()