parser: Support encoded external PEs in entity values

Corner case which was never supported.
This commit is contained in:
Nick Wellnhofer 2023-10-05 22:05:04 +02:00
parent 8afd321abd
commit 0ba22c0513
5 changed files with 37 additions and 1 deletions

View File

@ -8183,7 +8183,7 @@ xmlParsePEReference(xmlParserCtxtPtr ctxt)
*/
static int
xmlLoadEntityContent(xmlParserCtxtPtr ctxt, xmlEntityPtr entity) {
xmlParserInputPtr input = NULL;
xmlParserInputPtr oldinput, input = NULL;
xmlChar *content = NULL;
size_t length, i;
int ret = -1;
@ -8210,6 +8210,32 @@ xmlLoadEntityContent(xmlParserCtxtPtr ctxt, xmlEntityPtr entity) {
return(-1);
}
xmlBufResetInput(input->buf->buffer, input);
oldinput = ctxt->input;
ctxt->input = input;
xmlDetectEncoding(ctxt);
/*
* Parse a possible text declaration first
*/
if ((CMP5(CUR_PTR, '<', '?', 'x', 'm', 'l')) && (IS_BLANK_CH(NXT(5)))) {
xmlParseTextDecl(ctxt);
/*
* An XML-1.0 document can't reference an entity not XML-1.0
*/
if ((xmlStrEqual(ctxt->version, BAD_CAST "1.0")) &&
(!xmlStrEqual(ctxt->input->version, BAD_CAST "1.0"))) {
xmlFatalErrMsg(ctxt, XML_ERR_VERSION_MISMATCH,
"Version mismatch between document and entity\n");
}
}
ctxt->input = oldinput;
xmlBufShrink(input->buf->buffer, input->cur - input->base);
while ((res = xmlParserInputBufferGrow(input->buf, 16384)) > 0)
;

View File

@ -0,0 +1,3 @@
<?xml version="1.0"?>
<!DOCTYPE doc SYSTEM "dtds/pe-val-latin1.dtd">
<doc>&latin1;</doc>

View File

@ -0,0 +1,3 @@
<!ELEMENT doc (#PCDATA)>
<!ENTITY % pe SYSTEM "pe-val-latin1.ent">
<!ENTITY latin1 "%pe;">

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
äöü

View File

@ -0,0 +1,2 @@
<!DOCTYPE doc SYSTEM "dtds/pe-val-latin1.dtd">
<doc>&latin1;</doc>