Openembedded Core Discussions
 help / color / mirror / Atom feed
* [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595
@ 2020-02-21 21:00 Adrian Bunk
  2020-02-21 21:00 ` [zeus][PATCH 2/2] libxml2: Fix CVE-2019-20388 Adrian Bunk
  2020-02-22 18:50 ` [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595 akuster808
  0 siblings, 2 replies; 5+ messages in thread
From: Adrian Bunk @ 2020-02-21 21:00 UTC (permalink / raw)
  To: openembedded-core

From: Anuj Mittal <anuj.mittal@intel.com>

Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
 .../libxml/libxml2/CVE-2020-7595.patch        | 36 +++++++++++++++++++
 meta/recipes-core/libxml/libxml2_2.9.9.bb     |  1 +
 2 files changed, 37 insertions(+)
 create mode 100644 meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch

diff --git a/meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch b/meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch
new file mode 100644
index 0000000000..facfefd362
--- /dev/null
+++ b/meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch
@@ -0,0 +1,36 @@
+From 0e1a49c8907645d2e155f0d89d4d9895ac5112b5 Mon Sep 17 00:00:00 2001
+From: Zhipeng Xie <xiezhipeng1@huawei.com>
+Date: Thu, 12 Dec 2019 17:30:55 +0800
+Subject: [PATCH] Fix infinite loop in xmlStringLenDecodeEntities
+
+When ctxt->instate == XML_PARSER_EOF,xmlParseStringEntityRef
+return NULL which cause a infinite loop in xmlStringLenDecodeEntities
+
+Found with libFuzzer.
+
+Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
+
+Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/libxml2/commit/0e1a49c89076]
+CVE: CVE-2020-7595
+Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> 
+---
+ parser.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/parser.c b/parser.c
+index d1c31963..a34bb6cd 100644
+--- a/parser.c
++++ b/parser.c
+@@ -2646,7 +2646,8 @@ xmlStringLenDecodeEntities(xmlParserCtxtPtr ctxt, const xmlChar *str, int len,
+     else
+         c = 0;
+     while ((c != 0) && (c != end) && /* non input consuming loop */
+-	   (c != end2) && (c != end3)) {
++           (c != end2) && (c != end3) &&
++           (ctxt->instate != XML_PARSER_EOF)) {
+ 
+ 	if (c == 0) break;
+         if ((c == '&') && (str[1] == '#')) {
+-- 
+2.24.1
+
diff --git a/meta/recipes-core/libxml/libxml2_2.9.9.bb b/meta/recipes-core/libxml/libxml2_2.9.9.bb
index c44a90b1c2..5797dd6bee 100644
--- a/meta/recipes-core/libxml/libxml2_2.9.9.bb
+++ b/meta/recipes-core/libxml/libxml2_2.9.9.bb
@@ -21,6 +21,7 @@ SRC_URI = "http://www.xmlsoft.org/sources/libxml2-${PV}.tar.gz;name=libtar \
            file://0001-Make-ptest-run-the-python-tests-if-python-is-enabled.patch \
            file://fix-execution-of-ptests.patch \
            file://Fix-CVE-2019-19956.patch \
+           file://CVE-2020-7595.patch \
            "
 
 SRC_URI[libtar.md5sum] = "c04a5a0a042eaa157e8e8c9eabe76bd6"
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [zeus][PATCH 2/2] libxml2: Fix CVE-2019-20388
  2020-02-21 21:00 [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595 Adrian Bunk
@ 2020-02-21 21:00 ` Adrian Bunk
  2020-02-22 18:50 ` [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595 akuster808
  1 sibling, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2020-02-21 21:00 UTC (permalink / raw)
  To: openembedded-core

From: Lee Chee Yang <chee.yang.lee@intel.com>

see:
https://gitlab.gnome.org/GNOME/libxml2/merge_requests/68

Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
---
 .../libxml/libxml2/CVE-2019-20388.patch       | 37 +++++++++++++++++++
 meta/recipes-core/libxml/libxml2_2.9.9.bb     |  1 +
 2 files changed, 38 insertions(+)
 create mode 100644 meta/recipes-core/libxml/libxml2/CVE-2019-20388.patch

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 @@
+From 7ffcd44d7e6c46704f8af0321d9314cd26e0e18a Mon Sep 17 00:00:00 2001
+From: Zhipeng Xie <xiezhipeng1@huawei.com>
+Date: Tue, 20 Aug 2019 16:33:06 +0800
+Subject: [PATCH] Fix memory leak in xmlSchemaValidateStream
+
+When ctxt->schema is NULL, xmlSchemaSAXPlug->xmlSchemaPreRun
+alloc a new schema for ctxt->schema and set vctxt->xsiAssemble
+to 1. Then xmlSchemaVStart->xmlSchemaPreRun initialize
+vctxt->xsiAssemble to 0 again which cause the alloced schema
+can not be freed anymore.
+
+Found with libFuzzer.
+
+Upstream-Status: Accepted [https://gitlab.gnome.org/GNOME/libxml2/commit/7ffcd44d7e6c46704f8af0321d9314cd26e0e18a]
+CVE: CVE-2019-20388
+
+Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
+Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
+---
+ xmlschemas.c | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/xmlschemas.c b/xmlschemas.c
+index 301c8449..39d92182 100644
+--- a/xmlschemas.c
++++ b/xmlschemas.c
+@@ -28090,7 +28090,6 @@ xmlSchemaPreRun(xmlSchemaValidCtxtPtr vctxt) {
+     vctxt->nberrors = 0;
+     vctxt->depth = -1;
+     vctxt->skipDepth = -1;
+-    vctxt->xsiAssemble = 0;
+     vctxt->hasKeyrefs = 0;
+ #ifdef ENABLE_IDC_NODE_TABLES_TEST
+     vctxt->createIDCNodeTables = 1;
+-- 
+2.24.1
+
diff --git a/meta/recipes-core/libxml/libxml2_2.9.9.bb b/meta/recipes-core/libxml/libxml2_2.9.9.bb
index 5797dd6bee..1d898ab020 100644
--- a/meta/recipes-core/libxml/libxml2_2.9.9.bb
+++ b/meta/recipes-core/libxml/libxml2_2.9.9.bb
@@ -22,6 +22,7 @@ SRC_URI = "http://www.xmlsoft.org/sources/libxml2-${PV}.tar.gz;name=libtar \
            file://fix-execution-of-ptests.patch \
            file://Fix-CVE-2019-19956.patch \
            file://CVE-2020-7595.patch \
+           file://CVE-2019-20388.patch \
            "
 
 SRC_URI[libtar.md5sum] = "c04a5a0a042eaa157e8e8c9eabe76bd6"
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595
  2020-02-21 21:00 [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595 Adrian Bunk
  2020-02-21 21:00 ` [zeus][PATCH 2/2] libxml2: Fix CVE-2019-20388 Adrian Bunk
@ 2020-02-22 18:50 ` akuster808
  2020-02-22 21:12   ` Adrian Bunk
  1 sibling, 1 reply; 5+ messages in thread
From: akuster808 @ 2020-02-22 18:50 UTC (permalink / raw)
  To: Adrian Bunk, openembedded-core



On 2/21/20 1:00 PM, Adrian Bunk wrote:
> From: Anuj Mittal <anuj.mittal@intel.com>
>
> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: Adrian Bunk <bunk@stusta.de>

Is this a backport from Master? please include masters commit id.

Since Master and Zeus are at different versions, was there anything you
had to do to make this apply to Zeus?

I have adopted the kernel stable note of [Fixup for XXX context] so the
folks know things had to be tweaked from the original commit.

- Armin


> ---
>  .../libxml/libxml2/CVE-2020-7595.patch        | 36 +++++++++++++++++++
>  meta/recipes-core/libxml/libxml2_2.9.9.bb     |  1 +
>  2 files changed, 37 insertions(+)
>  create mode 100644 meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch
>
> diff --git a/meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch b/meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch
> new file mode 100644
> index 0000000000..facfefd362
> --- /dev/null
> +++ b/meta/recipes-core/libxml/libxml2/CVE-2020-7595.patch
> @@ -0,0 +1,36 @@
> +From 0e1a49c8907645d2e155f0d89d4d9895ac5112b5 Mon Sep 17 00:00:00 2001
> +From: Zhipeng Xie <xiezhipeng1@huawei.com>
> +Date: Thu, 12 Dec 2019 17:30:55 +0800
> +Subject: [PATCH] Fix infinite loop in xmlStringLenDecodeEntities
> +
> +When ctxt->instate == XML_PARSER_EOF,xmlParseStringEntityRef
> +return NULL which cause a infinite loop in xmlStringLenDecodeEntities
> +
> +Found with libFuzzer.
> +
> +Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
> +
> +Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/libxml2/commit/0e1a49c89076]
> +CVE: CVE-2020-7595
> +Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> 
> +---
> + parser.c | 3 ++-
> + 1 file changed, 2 insertions(+), 1 deletion(-)
> +
> +diff --git a/parser.c b/parser.c
> +index d1c31963..a34bb6cd 100644
> +--- a/parser.c
> ++++ b/parser.c
> +@@ -2646,7 +2646,8 @@ xmlStringLenDecodeEntities(xmlParserCtxtPtr ctxt, const xmlChar *str, int len,
> +     else
> +         c = 0;
> +     while ((c != 0) && (c != end) && /* non input consuming loop */
> +-	   (c != end2) && (c != end3)) {
> ++           (c != end2) && (c != end3) &&
> ++           (ctxt->instate != XML_PARSER_EOF)) {
> + 
> + 	if (c == 0) break;
> +         if ((c == '&') && (str[1] == '#')) {
> +-- 
> +2.24.1
> +
> diff --git a/meta/recipes-core/libxml/libxml2_2.9.9.bb b/meta/recipes-core/libxml/libxml2_2.9.9.bb
> index c44a90b1c2..5797dd6bee 100644
> --- a/meta/recipes-core/libxml/libxml2_2.9.9.bb
> +++ b/meta/recipes-core/libxml/libxml2_2.9.9.bb
> @@ -21,6 +21,7 @@ SRC_URI = "http://www.xmlsoft.org/sources/libxml2-${PV}.tar.gz;name=libtar \
>             file://0001-Make-ptest-run-the-python-tests-if-python-is-enabled.patch \
>             file://fix-execution-of-ptests.patch \
>             file://Fix-CVE-2019-19956.patch \
> +           file://CVE-2020-7595.patch \
>             "
>  
>  SRC_URI[libtar.md5sum] = "c04a5a0a042eaa157e8e8c9eabe76bd6"




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595
  2020-02-22 18:50 ` [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595 akuster808
@ 2020-02-22 21:12   ` Adrian Bunk
  2020-02-23 16:33     ` akuster808
  0 siblings, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2020-02-22 21:12 UTC (permalink / raw)
  To: akuster808; +Cc: openembedded-core

On Sat, Feb 22, 2020 at 10:50:13AM -0800, akuster808 wrote:
> On 2/21/20 1:00 PM, Adrian Bunk wrote:
> > From: Anuj Mittal <anuj.mittal@intel.com>
> >
> > Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
> > Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > Signed-off-by: Adrian Bunk <bunk@stusta.de>
> 
> Is this a backport from Master?

Yes.

> please include masters commit id.

openembedded-core commit id or poky commit id?
They are always different, and I am working on top of poky.

> Since Master and Zeus are at different versions, was there anything you
> had to do to make this apply to Zeus?

There is always the trivial change to the bb file.

> I have adopted the kernel stable note of [Fixup for XXX context] so the
> folks know things had to be tweaked from the original commit.

I am already doing the same for non-trivial changes, e.g.
http://lists.openembedded.org/pipermail/openembedded-core/2020-February/293312.html

> - Armin

cu
Adrian


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595
  2020-02-22 21:12   ` Adrian Bunk
@ 2020-02-23 16:33     ` akuster808
  0 siblings, 0 replies; 5+ messages in thread
From: akuster808 @ 2020-02-23 16:33 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: openembedded-core



On 2/22/20 1:12 PM, Adrian Bunk wrote:
> On Sat, Feb 22, 2020 at 10:50:13AM -0800, akuster808 wrote:
>> On 2/21/20 1:00 PM, Adrian Bunk wrote:
>>> From: Anuj Mittal <anuj.mittal@intel.com>
>>>
>>> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
>>> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>>> Signed-off-by: Adrian Bunk <bunk@stusta.de>
>> Is this a backport from Master?
> Yes.
>
>> please include masters commit id.
> openembedded-core commit id or poky commit id?
Openembedded-core  ID

- armin
> They are always different, and I am working on top of poky.
>
>> Since Master and Zeus are at different versions, was there anything you
>> had to do to make this apply to Zeus?
> There is always the trivial change to the bb file.
>
>> I have adopted the kernel stable note of [Fixup for XXX context] so the
>> folks know things had to be tweaked from the original commit.
> I am already doing the same for non-trivial changes, e.g.
> http://lists.openembedded.org/pipermail/openembedded-core/2020-February/293312.html
>
>> - Armin
> cu
> Adrian



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-02-23 16:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-21 21:00 [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595 Adrian Bunk
2020-02-21 21:00 ` [zeus][PATCH 2/2] libxml2: Fix CVE-2019-20388 Adrian Bunk
2020-02-22 18:50 ` [zeus][PATCH 1/2] libxml2: fix CVE-2020-7595 akuster808
2020-02-22 21:12   ` Adrian Bunk
2020-02-23 16:33     ` akuster808

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox