Fixed memory leak due to incorrect freeing of DTLS reassembly bit mask
authorMatt Caswell <matt@openssl.org>
Tue, 25 Nov 2014 13:36:00 +0000 (13:36 +0000)
committerMatt Caswell <matt@openssl.org>
Wed, 26 Nov 2014 10:14:13 +0000 (10:14 +0000)
PR#3608

Reviewed-by: Tim Hudson <tjh@openssl.org>
(cherry picked from commit 8a35dbb6d89a16d792b79b157b3e89443639ec94)

ssl/d1_both.c
ssl/d1_lib.c
ssl/ssl_locl.h

index 2e4250fcfecfd40023b4b8586b9b3ad1deb7662d..b58fdc2f1dbc37ac1f690ad86a01ee461e9064c8 100644 (file)
@@ -211,8 +211,7 @@ dtls1_hm_fragment_new(unsigned long frag_len, int reassembly)
        return frag;
        }
 
-static void
-dtls1_hm_fragment_free(hm_fragment *frag)
+void dtls1_hm_fragment_free(hm_fragment *frag)
        {
 
        if (frag->msg_header.is_ccs)
index 82ca653920630e0a7e49072748089ff242512371..f7d681bfdb2c0abf36e33510f52d0f73f440ff14 100644 (file)
@@ -161,16 +161,14 @@ static void dtls1_clear_queues(SSL *s)
     while( (item = pqueue_pop(s->d1->buffered_messages)) != NULL)
         {
         frag = (hm_fragment *)item->data;
-        OPENSSL_free(frag->fragment);
-        OPENSSL_free(frag);
+        dtls1_hm_fragment_free(frag);
         pitem_free(item);
         }
 
     while ( (item = pqueue_pop(s->d1->sent_messages)) != NULL)
         {
         frag = (hm_fragment *)item->data;
-        OPENSSL_free(frag->fragment);
-        OPENSSL_free(frag);
+        dtls1_hm_fragment_free(frag);
         pitem_free(item);
         }
 
index 90c82f5b20e7659bd554df56c1e59ade8a1827c9..cfb9a2a3f28d632e13027533879e3b314b1255cc 100644 (file)
@@ -998,6 +998,7 @@ int dtls1_is_timer_expired(SSL *s);
 void dtls1_double_timeout(SSL *s);
 int dtls1_send_newsession_ticket(SSL *s);
 unsigned int dtls1_min_mtu(void);
+void dtls1_hm_fragment_free(hm_fragment *frag);
 
 /* some client-only functions */
 int ssl3_client_hello(SSL *s);