Skip to content

Commit 138f598

Browse files
JoeWang-Javaslowhog
authored andcommittedJul 21, 2021
8262380: Enhance XML processing passes
Reviewed-by: lancea, naoto, ahgross, rhalade
1 parent 0e6c011 commit 138f598

File tree

6 files changed

+48
-18
lines changed

6 files changed

+48
-18
lines changed
 

‎src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/XML11EntityScanner.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
*/
44

55
/*
@@ -39,6 +39,8 @@
3939
*
4040
* @author Michael Glavassevich, IBM
4141
* @author Neil Graham, IBM
42+
*
43+
* @LastModified: Apr 2021
4244
*/
4345

4446
public class XML11EntityScanner
@@ -696,7 +698,7 @@ else if (XML11Char.isXML11NameHighSurrogate(ch)) {
696698
sawIncompleteSurrogatePair)){
697699
fErrorReporter.reportError(XMLMessageFormatter.XML_DOMAIN,
698700
"IllegalQName",
699-
null,
701+
new Object[]{rawname},
700702
XMLErrorReporter.SEVERITY_FATAL_ERROR);
701703
}
702704
//check the result: localpart

‎src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/XMLEntityScanner.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
33
*/
44

55
/*
@@ -55,6 +55,7 @@
5555
* @author Arnaud Le Hors, IBM
5656
* @author K.Venugopal Sun Microsystems
5757
*
58+
* @LastModified: Apr 2021
5859
*/
5960
public class XMLEntityScanner implements XMLLocator {
6061

@@ -860,6 +861,14 @@ protected boolean scanQName(QName qname, NameType nt) throws IOException {
860861
prefix = fSymbolTable.addSymbol(fCurrentEntity.ch,
861862
offset, prefixLength);
862863
int len = length - prefixLength - 1;
864+
int startLocal = index +1;
865+
if (!XMLChar.isNCNameStart(fCurrentEntity.ch[startLocal])){
866+
fErrorReporter.reportError(XMLMessageFormatter.XML_DOMAIN,
867+
"IllegalQName",
868+
new Object[]{rawname},
869+
XMLErrorReporter.SEVERITY_FATAL_ERROR);
870+
}
871+
863872
//check the result: localpart
864873
checkLimit(Limit.MAX_NAME_LIMIT, fCurrentEntity, index + 1, len);
865874
localpart = fSymbolTable.addSymbol(fCurrentEntity.ch,

‎src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/msg/XMLMessages.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278

279279
# Namespaces support
280280
# 4. Using Qualified Names
281-
IllegalQName = Element or attribute do not match QName production: QName::=(NCName':')?NCName.
281+
IllegalQName = Element or attribute \"{0}\" do not match QName production: QName::=(NCName':')?NCName.
282282
ElementXMLNSPrefix = Element \"{0}\" cannot have \"xmlns\" as its prefix.
283283
ElementPrefixUnbound = The prefix \"{0}\" for element \"{1}\" is not bound.
284284
AttributePrefixUnbound = The prefix \"{2}\" for attribute \"{1}\" associated with an element type \"{0}\" is not bound.

‎src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/ToStream.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
import javax.xml.transform.Transformer;
4444
import javax.xml.transform.TransformerException;
4545
import jdk.xml.internal.JdkConstants;
46+
import jdk.xml.internal.JdkXmlUtils;
4647
import org.w3c.dom.Node;
4748
import org.xml.sax.Attributes;
4849
import org.xml.sax.ContentHandler;
@@ -1978,21 +1979,21 @@ void outputDocTypeDecl(String name, boolean closeDecl) throws SAXException
19781979
String doctypeSystem = getDoctypeSystem();
19791980
if (null != doctypeSystem)
19801981
{
1981-
if (null == doctypePublic)
1982-
writer.write(" SYSTEM \"");
1983-
else
1984-
writer.write(" \"");
1982+
char quote = JdkXmlUtils.getQuoteChar(doctypeSystem);
1983+
if (null == doctypePublic) {
1984+
writer.write(" SYSTEM");
1985+
}
1986+
writer.write(" ");
1987+
writer.write(quote);
19851988

19861989
writer.write(doctypeSystem);
1987-
1990+
writer.write(quote);
19881991
if (closeDecl)
19891992
{
1990-
writer.write("\">");
1993+
writer.write(">");
19911994
writer.write(m_lineSep, 0, m_lineSepLen);
19921995
closeDecl = false; // done closing
19931996
}
1994-
else
1995-
writer.write('\"');
19961997
}
19971998
boolean dothis = false;
19981999
if (dothis)

‎src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/dom3/DOM3TreeWalker.java

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
*/
44
/*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -33,6 +33,7 @@
3333
import java.util.HashMap;
3434
import java.util.Map;
3535
import java.util.Properties;
36+
import jdk.xml.internal.JdkXmlUtils;
3637
import org.w3c.dom.Attr;
3738
import org.w3c.dom.CDATASection;
3839
import org.w3c.dom.Comment;
@@ -62,7 +63,7 @@
6263
* parameters and filters if any during serialization.
6364
*
6465
* @xsl.usage internal
65-
* @LastModified: Oct 2017
66+
* @LastModified: Apr 2021
6667
*/
6768
final class DOM3TreeWalker {
6869

@@ -501,7 +502,7 @@ protected void serializeDocType(DocumentType node, boolean bStart)
501502
// DOCTYPE internal subset via an event call, so we write it
502503
// out here.
503504
Writer writer = fSerializer.getWriter();
504-
StringBuffer dtd = new StringBuffer();
505+
StringBuilder dtd = new StringBuilder();
505506

506507
dtd.append("<!DOCTYPE ");
507508
dtd.append(docTypeName);
@@ -512,13 +513,14 @@ protected void serializeDocType(DocumentType node, boolean bStart)
512513
}
513514

514515
if (null != systemId) {
516+
char quote = JdkXmlUtils.getQuoteChar(systemId);
515517
if (null == publicId) {
516-
dtd.append(" SYSTEM \"");
518+
dtd.append(" SYSTEM ").append(quote);
517519
} else {
518-
dtd.append(" \"");
520+
dtd.append(" ").append(quote);
519521
}
520522
dtd.append(systemId);
521-
dtd.append('\"');
523+
dtd.append(quote);
522524
}
523525

524526
dtd.append(" [ ");

‎src/java.xml/share/classes/jdk/xml/internal/JdkXmlUtils.java

+16
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,22 @@ public static SAXTransformerFactory getSAXTransformFactory(boolean overrideDefau
366366
return tf;
367367
}
368368

369+
/**
370+
* Returns the character to be used to quote the input content. Between
371+
* single and double quotes, this method returns the one that is not found
372+
* in the input. Returns double quote by default.
373+
*
374+
* @param s the input string
375+
* @return returns the quote not found in the input
376+
*/
377+
public static char getQuoteChar(String s) {
378+
if (s != null && s.indexOf('"') > -1) {
379+
return '\'';
380+
} else {
381+
return '"';
382+
}
383+
}
384+
369385
private static XMLReader getXMLReaderWSAXFactory(boolean overrideDefaultParser) {
370386
SAXParserFactory saxFactory = getSAXFactory(overrideDefaultParser);
371387
try {

0 commit comments

Comments
 (0)
Please sign in to comment.