aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-01-12 09:09:33 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-12 09:09:56 +0100
commit8d0fd4646099132f0a68d6c3d0da3a6a10ab9631 (patch)
tree23fd890755438012c9a2eb460a022842dcbe7105
parent4f73a8f64d1555b4053f2a0a5c79083e50a0ce21 (diff)
parentc6b7b29f232c651f898eeffb93f36c8f537c56d2 (diff)
downloadbitcoin-8d0fd4646099132f0a68d6c3d0da3a6a10ab9631.tar.xz
Merge pull request #5640
c6b7b29 Improve robustness of DER recoding code (Wladimir J. van der Laan)
-rw-r--r--src/ecwrapper.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/ecwrapper.cpp b/src/ecwrapper.cpp
index 0236e90c16..5e3aec25ba 100644
--- a/src/ecwrapper.cpp
+++ b/src/ecwrapper.cpp
@@ -124,7 +124,18 @@ bool CECKey::Verify(const uint256 &hash, const std::vector<unsigned char>& vchSi
unsigned char *norm_der = NULL;
ECDSA_SIG *norm_sig = ECDSA_SIG_new();
const unsigned char* sigptr = &vchSig[0];
- d2i_ECDSA_SIG(&norm_sig, &sigptr, vchSig.size());
+ assert(norm_sig);
+ if (d2i_ECDSA_SIG(&norm_sig, &sigptr, vchSig.size()) == NULL)
+ {
+ /* As of OpenSSL 1.0.0p d2i_ECDSA_SIG frees and nulls the pointer on
+ * error. But OpenSSL's own use of this function redundantly frees the
+ * result. As ECDSA_SIG_free(NULL) is a no-op, and in the absence of a
+ * clear contract for the function behaving the same way is more
+ * conservative.
+ */
+ ECDSA_SIG_free(norm_sig);
+ return false;
+ }
int derlen = i2d_ECDSA_SIG(norm_sig, &norm_der);
ECDSA_SIG_free(norm_sig);
if (derlen <= 0)