summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl/openssl-fix-CVE-2014-3567.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl/openssl-fix-CVE-2014-3567.patch')
-rw-r--r--meta/recipes-connectivity/openssl/openssl/openssl-fix-CVE-2014-3567.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/openssl-fix-CVE-2014-3567.patch b/meta/recipes-connectivity/openssl/openssl/openssl-fix-CVE-2014-3567.patch
new file mode 100644
index 0000000000..afd283e3f8
--- /dev/null
+++ b/meta/recipes-connectivity/openssl/openssl/openssl-fix-CVE-2014-3567.patch
@@ -0,0 +1,31 @@
1From 748270554824d2a51d1718f52a8d3ab34116bbfb Mon Sep 17 00:00:00 2001
2From: "Dr. Stephen Henson" <steve@openssl.org>
3Date: Wed, 15 Oct 2014 01:53:55 +0100
4Subject: [PATCH] Fix for session tickets memory leak.
5
6CVE-2014-3567
7
8Reviewed-by: Rich Salz <rsalz@openssl.org>
9Reviewed-by: Matt Caswell <matt@openssl.org>
10---
11 ssl/t1_lib.c | 3 +++
12 1 file changed, 3 insertions(+)
13
14diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
15index 879467c..77fe232 100644
16--- a/ssl/t1_lib.c
17+++ b/ssl/t1_lib.c
18@@ -3380,7 +3380,10 @@ static int tls_decrypt_ticket(SSL *s, const unsigned char *etick, int eticklen,
19 HMAC_Final(&hctx, tick_hmac, NULL);
20 HMAC_CTX_cleanup(&hctx);
21 if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen))
22+ {
23+ EVP_CIPHER_CTX_cleanup(&ctx);
24 return 2;
25+ }
26 /* Attempt to decrypt session data */
27 /* Move p after IV to start of encrypted ticket, update length */
28 p = etick + 16 + EVP_CIPHER_CTX_iv_length(&ctx);
29--
301.7.9.5
31