summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadaf Ebrahimi <sadafebrahimi@google.com>2022-11-16 16:31:05 +0000
committerSadaf Ebrahimi <sadafebrahimi@google.com>2022-11-16 19:35:20 +0000
commiteb8f10fb1f4eb13c5a2ba1edbfd64b5f2a50ff4a (patch)
treea3f09e37a6ad41a16a923648a040f3a874ccdd4a
parent07a61b7c58827dc8c98881446b0ab3e70808d820 (diff)
downloadexpat-eb8f10fb1f4eb13c5a2ba1edbfd64b5f2a50ff4a.tar.gz
[CVE-2022-43680] Fix overeager DTD destruction (fixes #649)
Bug: http://b/255449293 Test: TreeHugger Change-Id: I15ba529c07a6b868484bd5972be154c07cd97cc6
-rw-r--r--lib/xmlparse.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/xmlparse.c b/lib/xmlparse.c
index 14ea9673..074c841a 100644
--- a/lib/xmlparse.c
+++ b/lib/xmlparse.c
@@ -1016,7 +1016,15 @@ parserCreate(const XML_Char *encodingName,
poolInit(&parser->m_temp2Pool, &(parser->m_mem));
parserInit(parser, encodingName);
- if (encodingName && !parser->m_protocolEncodingName) {
+ if (encodingName && ! parser->m_protocolEncodingName) {
+ if (dtd) {
+ // We need to stop the upcoming call to XML_ParserFree from happily
+ // destroying parser->m_dtd because the DTD is shared with the parent
+ // parser and the only guard that keeps XML_ParserFree from destroying
+ // parser->m_dtd is parser->m_isParamEntity but it will be set to
+ // XML_TRUE only later in XML_ExternalEntityParserCreate (or not at all).
+ parser->m_dtd = NULL;
+ }
XML_ParserFree(parser);
return NULL;
}