diff options
-rw-r--r-- | meta/recipes-core/libxml/libxml2/CVE-2019-20388.patch | 37 | ||||
-rw-r--r-- | meta/recipes-core/libxml/libxml2_2.9.10.bb | 1 |
2 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-core/libxml/libxml2/CVE-2019-20388.patch b/meta/recipes-core/libxml/libxml2/CVE-2019-20388.patch new file mode 100644 index 0000000000..4ee2d4fe62 --- /dev/null +++ b/meta/recipes-core/libxml/libxml2/CVE-2019-20388.patch | |||
@@ -0,0 +1,37 @@ | |||
1 | From 7ffcd44d7e6c46704f8af0321d9314cd26e0e18a Mon Sep 17 00:00:00 2001 | ||
2 | From: Zhipeng Xie <xiezhipeng1@huawei.com> | ||
3 | Date: Tue, 20 Aug 2019 16:33:06 +0800 | ||
4 | Subject: [PATCH] Fix memory leak in xmlSchemaValidateStream | ||
5 | |||
6 | When ctxt->schema is NULL, xmlSchemaSAXPlug->xmlSchemaPreRun | ||
7 | alloc a new schema for ctxt->schema and set vctxt->xsiAssemble | ||
8 | to 1. Then xmlSchemaVStart->xmlSchemaPreRun initialize | ||
9 | vctxt->xsiAssemble to 0 again which cause the alloced schema | ||
10 | can not be freed anymore. | ||
11 | |||
12 | Found with libFuzzer. | ||
13 | |||
14 | Upstream-Status: Accepted [https://gitlab.gnome.org/GNOME/libxml2/commit/7ffcd44d7e6c46704f8af0321d9314cd26e0e18a] | ||
15 | CVE: CVE-2019-20388 | ||
16 | |||
17 | Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com> | ||
18 | Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> | ||
19 | --- | ||
20 | xmlschemas.c | 1 - | ||
21 | 1 file changed, 1 deletion(-) | ||
22 | |||
23 | diff --git a/xmlschemas.c b/xmlschemas.c | ||
24 | index 301c8449..39d92182 100644 | ||
25 | --- a/xmlschemas.c | ||
26 | +++ b/xmlschemas.c | ||
27 | @@ -28090,7 +28090,6 @@ xmlSchemaPreRun(xmlSchemaValidCtxtPtr vctxt) { | ||
28 | vctxt->nberrors = 0; | ||
29 | vctxt->depth = -1; | ||
30 | vctxt->skipDepth = -1; | ||
31 | - vctxt->xsiAssemble = 0; | ||
32 | vctxt->hasKeyrefs = 0; | ||
33 | #ifdef ENABLE_IDC_NODE_TABLES_TEST | ||
34 | vctxt->createIDCNodeTables = 1; | ||
35 | -- | ||
36 | 2.24.1 | ||
37 | |||
diff --git a/meta/recipes-core/libxml/libxml2_2.9.10.bb b/meta/recipes-core/libxml/libxml2_2.9.10.bb index 6a4097c2c6..097aceb2c0 100644 --- a/meta/recipes-core/libxml/libxml2_2.9.10.bb +++ b/meta/recipes-core/libxml/libxml2_2.9.10.bb | |||
@@ -21,6 +21,7 @@ SRC_URI = "http://www.xmlsoft.org/sources/libxml2-${PV}.tar.gz;name=libtar \ | |||
21 | file://0001-Make-ptest-run-the-python-tests-if-python-is-enabled.patch \ | 21 | file://0001-Make-ptest-run-the-python-tests-if-python-is-enabled.patch \ |
22 | file://fix-execution-of-ptests.patch \ | 22 | file://fix-execution-of-ptests.patch \ |
23 | file://CVE-2020-7595.patch \ | 23 | file://CVE-2020-7595.patch \ |
24 | file://CVE-2019-20388.patch \ | ||
24 | " | 25 | " |
25 | 26 | ||
26 | SRC_URI[libtar.md5sum] = "10942a1dc23137a8aa07f0639cbfece5" | 27 | SRC_URI[libtar.md5sum] = "10942a1dc23137a8aa07f0639cbfece5" |