summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl/0001-CVE-2017-3731.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl/0001-CVE-2017-3731.patch')
-rw-r--r--meta/recipes-connectivity/openssl/openssl/0001-CVE-2017-3731.patch46
1 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/0001-CVE-2017-3731.patch b/meta/recipes-connectivity/openssl/openssl/0001-CVE-2017-3731.patch
new file mode 100644
index 0000000000..04ef526826
--- /dev/null
+++ b/meta/recipes-connectivity/openssl/openssl/0001-CVE-2017-3731.patch
@@ -0,0 +1,46 @@
1From 0cde9a9645c949fd0acf657dadc747676245cfaf Mon Sep 17 00:00:00 2001
2From: Alexandru Moise <alexandru.moise@windriver.com>
3Date: Tue, 7 Feb 2017 11:13:19 +0200
4Subject: [PATCH 1/2] crypto/evp: harden RC4_MD5 cipher.
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Originally a crash in 32-bit build was reported CHACHA20-POLY1305
10cipher. The crash is triggered by truncated packet and is result
11of excessive hashing to the edge of accessible memory (or bogus
12MAC value is produced if x86 MD5 assembly module is involved). Since
13hash operation is read-only it is not considered to be exploitable
14beyond a DoS condition.
15
16Thanks to Robert Święcki for report.
17
18CVE-2017-3731
19
20Backported from upstream commit:
218e20499629b6bcf868d0072c7011e590b5c2294d
22
23Upstream-Status: Backport
24
25Reviewed-by: Rich Salz <rsalz@openssl.org>
26Signed-off-by: Alexandru Moise <alexandru.moise@windriver.com>
27---
28 crypto/evp/e_rc4_hmac_md5.c | 2 ++
29 1 file changed, 2 insertions(+)
30
31diff --git a/crypto/evp/e_rc4_hmac_md5.c b/crypto/evp/e_rc4_hmac_md5.c
32index 5e92855..3293419 100644
33--- a/crypto/evp/e_rc4_hmac_md5.c
34+++ b/crypto/evp/e_rc4_hmac_md5.c
35@@ -269,6 +269,8 @@ static int rc4_hmac_md5_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg,
36 len = p[arg - 2] << 8 | p[arg - 1];
37
38 if (!ctx->encrypt) {
39+ if (len < MD5_DIGEST_LENGTH)
40+ return -1;
41 len -= MD5_DIGEST_LENGTH;
42 p[arg - 2] = len >> 8;
43 p[arg - 1] = len;
44--
452.10.2
46