Fix "make test" seg fault with SCTP enabled
authorMatt Caswell <matt@openssl.org>
Tue, 11 Aug 2015 18:38:39 +0000 (19:38 +0100)
committerMatt Caswell <matt@openssl.org>
Tue, 11 Aug 2015 21:16:38 +0000 (22:16 +0100)
When config'd with "sctp" running "make test" causes a seg fault. This is
actually due to the way ssltest works - it dives under the covers and frees
up BIOs manually and so some BIOs are NULL when the SCTP code does not
expect it. The simplest fix is just to add some sanity checks to make sure
the BIOs aren't NULL before we use them.

This problem occurs in master and 1.0.2. The fix has also been applied to
1.0.1 to keep the code in sync.

Reviewed-by: Tim Hudson <tjh@openssl.org>
ssl/d1_both.c

index ec47b94c7594ee9473c25ded224453860c9f7ebd..2c3ab5423b4391538c1b0bbf269bedd1bb3da074 100644 (file)
@@ -1365,9 +1365,12 @@ int dtls1_shutdown(SSL *s)
 {
     int ret;
 #ifndef OPENSSL_NO_SCTP
-    if (BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
+    BIO *wbio;
+
+    wbio = SSL_get_wbio(s);
+    if (wbio != NULL && BIO_dgram_is_sctp(wbio) &&
         !(s->shutdown & SSL_SENT_SHUTDOWN)) {
-        ret = BIO_dgram_sctp_wait_for_dry(SSL_get_wbio(s));
+        ret = BIO_dgram_sctp_wait_for_dry(wbio);
         if (ret < 0)
             return -1;