diff options
author | Armin Kuster <akuster@mvista.com> | 2016-05-03 16:46:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-11 10:33:39 +0100 |
commit | 5ae5fc7e7b632717be02d1db2fbb9a7cf6ba4f12 (patch) | |
tree | e45611f104547a196692e84c7635f3d01ab9608e /meta | |
parent | 199b348d1d0a3973477bd5feeed634a92991908f (diff) | |
download | poky-5ae5fc7e7b632717be02d1db2fbb9a7cf6ba4f12.tar.gz |
openssl: Security fix via update to 1.0.2h
CVE-2016-2105
CVE-2016-2106
CVE-2016-2109
CVE-2016-2176
https://www.openssl.org/news/secadv/20160503.txt
fixup openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch
drop crypto_use_bigint_in_x86-64_perl.patch as that fix is in latest.
(From OE-Core rev: c693f34f54257a8eca9fe8c5a9eee5647b7eeb0c)
Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl/openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch | 14 | ||||
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.0.2h.bb (renamed from meta/recipes-connectivity/openssl/openssl_1.0.2g.bb) | 6 |
2 files changed, 9 insertions, 11 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch b/meta/recipes-connectivity/openssl/openssl/openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch index cebc8cf0d0..f736e5c098 100644 --- a/meta/recipes-connectivity/openssl/openssl/openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch +++ b/meta/recipes-connectivity/openssl/openssl/openssl-avoid-NULL-pointer-dereference-in-EVP_DigestInit_ex.patch | |||
@@ -8,16 +8,16 @@ http://www.mail-archive.com/openssl-dev@openssl.org/msg32860.html | |||
8 | 8 | ||
9 | Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com> | 9 | Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com> |
10 | --- | 10 | --- |
11 | Index: openssl-1.0.2/crypto/evp/digest.c | 11 | Index: openssl-1.0.2h/crypto/evp/digest.c |
12 | =================================================================== | 12 | =================================================================== |
13 | --- openssl-1.0.2.orig/crypto/evp/digest.c | 13 | --- openssl-1.0.2h.orig/crypto/evp/digest.c |
14 | +++ openssl-1.0.2/crypto/evp/digest.c | 14 | +++ openssl-1.0.2h/crypto/evp/digest.c |
15 | @@ -208,7 +208,7 @@ int EVP_DigestInit_ex(EVP_MD_CTX *ctx, c | 15 | @@ -211,7 +211,7 @@ int EVP_DigestInit_ex(EVP_MD_CTX *ctx, c |
16 | return 0; | 16 | type = ctx->digest; |
17 | } | 17 | } |
18 | #endif | 18 | #endif |
19 | - if (ctx->digest != type) { | 19 | - if (ctx->digest != type) { |
20 | + if (type && (ctx->digest != type)) { | 20 | + if (type && (ctx->digest != type)) { |
21 | if (ctx->digest && ctx->digest->ctx_size) | 21 | if (ctx->digest && ctx->digest->ctx_size) { |
22 | OPENSSL_free(ctx->md_data); | 22 | OPENSSL_free(ctx->md_data); |
23 | ctx->digest = type; | 23 | ctx->md_data = NULL; |
diff --git a/meta/recipes-connectivity/openssl/openssl_1.0.2g.bb b/meta/recipes-connectivity/openssl/openssl_1.0.2h.bb index 290f129fc0..ae65992b4e 100644 --- a/meta/recipes-connectivity/openssl/openssl_1.0.2g.bb +++ b/meta/recipes-connectivity/openssl/openssl_1.0.2h.bb | |||
@@ -34,15 +34,13 @@ SRC_URI += "file://find.pl;subdir=${BP}/util/ \ | |||
34 | file://openssl-fix-des.pod-error.patch \ | 34 | file://openssl-fix-des.pod-error.patch \ |
35 | file://Makefiles-ptest.patch \ | 35 | file://Makefiles-ptest.patch \ |
36 | file://ptest-deps.patch \ | 36 | file://ptest-deps.patch \ |
37 | file://crypto_use_bigint_in_x86-64_perl.patch \ | ||
38 | file://openssl-1.0.2a-x32-asm.patch \ | 37 | file://openssl-1.0.2a-x32-asm.patch \ |
39 | file://ptest_makefile_deps.patch \ | 38 | file://ptest_makefile_deps.patch \ |
40 | file://configure-musl-target.patch \ | 39 | file://configure-musl-target.patch \ |
41 | file://parallel.patch \ | 40 | file://parallel.patch \ |
42 | " | 41 | " |
43 | 42 | SRC_URI[md5sum] = "9392e65072ce4b614c1392eefc1f23d0" | |
44 | SRC_URI[md5sum] = "f3c710c045cdee5fd114feb69feba7aa" | 43 | SRC_URI[sha256sum] = "1d4007e53aad94a5b2002fe045ee7bb0b3d98f1a47f8b2bc851dcd1c74332919" |
45 | SRC_URI[sha256sum] = "b784b1b3907ce39abf4098702dade6365522a253ad1552e267a9a0e89594aa33" | ||
46 | 44 | ||
47 | PACKAGES =+ "${PN}-engines" | 45 | PACKAGES =+ "${PN}-engines" |
48 | FILES_${PN}-engines = "${libdir}/ssl/engines/*.so ${libdir}/engines" | 46 | FILES_${PN}-engines = "${libdir}/ssl/engines/*.so ${libdir}/engines" |