diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2009-11-10 13:42:35 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-11-15 23:58:50 +0100 |
commit | 48ed49e91d2e5e8b73a7392296f6ef5622a27e11 (patch) | |
tree | dfda80a27202fc508a9641089ea55ddc3d52acd3 /package/openssl/openssl-CVE-2009-1378.patch | |
parent | 882e137608e2727f485014286bad6cdddc31a198 (diff) | |
download | buildroot-novena-48ed49e91d2e5e8b73a7392296f6ef5622a27e11.tar.gz buildroot-novena-48ed49e91d2e5e8b73a7392296f6ef5622a27e11.zip |
openssl: bump to 0.9.8l + security fixes
Closes #703
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/openssl/openssl-CVE-2009-1378.patch')
-rw-r--r-- | package/openssl/openssl-CVE-2009-1378.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/openssl/openssl-CVE-2009-1378.patch b/package/openssl/openssl-CVE-2009-1378.patch new file mode 100644 index 000000000..dba1b3983 --- /dev/null +++ b/package/openssl/openssl-CVE-2009-1378.patch @@ -0,0 +1,21 @@ +diff -Nura openssl-0.9.8l/ssl/d1_both.c openssl-0.9.8l-CVE-2009-1378/ssl/d1_both.c +--- openssl-0.9.8l/ssl/d1_both.c 2007-10-17 18:17:49.000000000 -0300 ++++ openssl-0.9.8l-CVE-2009-1378/ssl/d1_both.c 2009-11-10 13:20:02.000000000 -0300 +@@ -561,7 +561,16 @@ + if ((msg_hdr->frag_off+frag_len) > msg_hdr->msg_len) + goto err; + +- if (msg_hdr->seq <= s->d1->handshake_read_seq) ++ /* Try to find item in queue, to prevent duplicate entries */ ++ pq_64bit_init(&seq64); ++ pq_64bit_assign_word(&seq64, msg_hdr->seq); ++ item = pqueue_find(s->d1->buffered_messages, seq64); ++ pq_64bit_free(&seq64); ++ ++ /* Discard the message if sequence number was already there, is ++ * too far in the future or the fragment is already in the queue */ ++ if (msg_hdr->seq <= s->d1->handshake_read_seq || ++ msg_hdr->seq > s->d1->handshake_read_seq + 10 || item != NULL) + { + unsigned char devnull [256]; + |