diff options
| author | Vivek Kumbhar <vkumbhar@mvista.com> | 2023-01-23 22:04:04 +0530 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-02-04 23:32:27 +0000 |
| commit | 96902bcc2c8af64da4f80e842888eff174d5c8e4 (patch) | |
| tree | cbda9d5b9d3d6b598e58bccf3762cab91fafce6e /meta | |
| parent | 4e69335efcddd9e3a3cf9f9e7ad8babf29c2426b (diff) | |
| download | poky-96902bcc2c8af64da4f80e842888eff174d5c8e4.tar.gz | |
openssl: fix CVE-2022-3996 double locking leads to denial of service
(From OE-Core rev: 7007673bcdb606dbe78c71f72aceda6483485fb6)
Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-connectivity/openssl/openssl/CVE-2022-3996.patch | 43 | ||||
| -rw-r--r-- | meta/recipes-connectivity/openssl/openssl_3.0.7.bb | 1 |
2 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/CVE-2022-3996.patch b/meta/recipes-connectivity/openssl/openssl/CVE-2022-3996.patch new file mode 100644 index 0000000000..6d70b323d1 --- /dev/null +++ b/meta/recipes-connectivity/openssl/openssl/CVE-2022-3996.patch | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | From 7725e7bfe6f2ce8146b6552b44e0d226be7638e7 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Pauli <pauli@openssl.org> | ||
| 3 | Date: Fri, 11 Nov 2022 09:40:19 +1100 | ||
| 4 | Subject: [PATCH] x509: fix double locking problem | ||
| 5 | |||
| 6 | This reverts commit 9aa4be691f5c73eb3c68606d824c104550c053f7 and removed the | ||
| 7 | redundant flag setting. | ||
| 8 | |||
| 9 | Fixes #19643 | ||
| 10 | |||
| 11 | Fixes LOW CVE-2022-3996 | ||
| 12 | |||
| 13 | Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> | ||
| 14 | Reviewed-by: Tomas Mraz <tomas@openssl.org> | ||
| 15 | (Merged from https://github.com/openssl/openssl/pull/19652) | ||
| 16 | |||
| 17 | (cherry picked from commit 4d0340a6d2f327700a059f0b8f954d6160f8eef5) | ||
| 18 | |||
| 19 | Upstream-Status: Backport [https://github.com/openssl/openssl/commit/7725e7bfe6f2ce8146b6552b44e0d226be7638e7] | ||
| 20 | CVE: CVE-2022-3996 | ||
| 21 | Signed-off-by: Vivek Kumbhar <vkumbhar@mvista.com> | ||
| 22 | --- | ||
| 23 | crypto/x509/pcy_map.c | 4 ---- | ||
| 24 | 1 file changed, 4 deletions(-) | ||
| 25 | |||
| 26 | diff --git a/crypto/x509/pcy_map.c b/crypto/x509/pcy_map.c | ||
| 27 | index 05406c6493..60dfd1e320 100644 | ||
| 28 | --- a/crypto/x509/pcy_map.c | ||
| 29 | +++ b/crypto/x509/pcy_map.c | ||
| 30 | @@ -73,10 +73,6 @@ int ossl_policy_cache_set_mapping(X509 *x, POLICY_MAPPINGS *maps) | ||
| 31 | |||
| 32 | ret = 1; | ||
| 33 | bad_mapping: | ||
| 34 | - if (ret == -1 && CRYPTO_THREAD_write_lock(x->lock)) { | ||
| 35 | - x->ex_flags |= EXFLAG_INVALID_POLICY; | ||
| 36 | - CRYPTO_THREAD_unlock(x->lock); | ||
| 37 | - } | ||
| 38 | sk_POLICY_MAPPING_pop_free(maps, POLICY_MAPPING_free); | ||
| 39 | return ret; | ||
| 40 | |||
| 41 | -- | ||
| 42 | 2.30.2 | ||
| 43 | |||
diff --git a/meta/recipes-connectivity/openssl/openssl_3.0.7.bb b/meta/recipes-connectivity/openssl/openssl_3.0.7.bb index 45fd1de2fd..1842148592 100644 --- a/meta/recipes-connectivity/openssl/openssl_3.0.7.bb +++ b/meta/recipes-connectivity/openssl/openssl_3.0.7.bb | |||
| @@ -12,6 +12,7 @@ SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \ | |||
| 12 | file://0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch \ | 12 | file://0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch \ |
| 13 | file://afalg.patch \ | 13 | file://afalg.patch \ |
| 14 | file://0001-Configure-do-not-tweak-mips-cflags.patch \ | 14 | file://0001-Configure-do-not-tweak-mips-cflags.patch \ |
| 15 | file://CVE-2022-3996.patch \ | ||
| 15 | " | 16 | " |
| 16 | 17 | ||
| 17 | SRC_URI:append:class-nativesdk = " \ | 18 | SRC_URI:append:class-nativesdk = " \ |
