projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e77bdc7
)
Fix unhandled error condition in sslv2 client hello parsing.
author
Adam Eijdenberg
<eijdenberg@google.com>
Tue, 4 Aug 2015 21:59:47 +0000
(14:59 -0700)
committer
Adam Eijdenberg
<eijdenberg@google.com>
Tue, 4 Aug 2015 22:05:01 +0000
(15:05 -0700)
--strict-warnings started showing warnings for this today...
Surely an error should be raised if these reads fail?
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
ssl/s3_srvr.c
patch
|
blob
|
history
diff --git
a/ssl/s3_srvr.c
b/ssl/s3_srvr.c
index b60c96264a4943a4cc77f5a878e498afa5553d0a..725e3f963d93e7dd5a9d760e7e571c5c60ebd5fe 100644
(file)
--- a/
ssl/s3_srvr.c
+++ b/
ssl/s3_srvr.c
@@
-1014,6
+1014,9
@@
int ssl3_get_client_hello(SSL *s)
if (!PACKET_get_net_2(&pkt, &csl)
|| !PACKET_get_net_2(&pkt, &sil)
|| !PACKET_get_net_2(&pkt, &cl)) {
+ SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
+ al = SSL_AD_DECODE_ERROR;
+ goto f_err;
}
if (csl == 0) {