Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > fa24236f6e96f9e06cfcf9cda5894c3d > files > 1

libxml2-2.9.9-2.3.mga7.src.rpm

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>
---
 parser.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: libxml2-2.9.4+dfsg1/parser.c
===================================================================
--- libxml2-2.9.4+dfsg1.orig/parser.c
+++ libxml2-2.9.4+dfsg1/parser.c
@@ -2791,7 +2791,8 @@ xmlStringLenDecodeEntities(xmlParserCtxt
     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] == '#')) {