Skip to content

Commit 755722c

Browse files
committedJan 4, 2024
8322214: Return value of XMLInputFactory.getProperty() changed from boolean to String in JDK 22 early access builds
Reviewed-by: lancea
1 parent 1cf9335 commit 755722c

File tree

3 files changed

+144
-4
lines changed

3 files changed

+144
-4
lines changed
 

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

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -46,7 +46,7 @@
4646
* @author K Venugopal
4747
* @author Sunitha Reddy
4848
*
49-
* @LastModified: Nov 2023
49+
* @LastModified: Jan 2024
5050
*/
5151
public class PropertyManager {
5252

@@ -184,6 +184,9 @@ public boolean containsProperty(String property) {
184184
* @return the value of a property
185185
*/
186186
public Object getProperty(String property) {
187+
if (XMLInputFactory.SUPPORT_DTD.equals(property)) {
188+
return fSecurityManager.is(XMLSecurityManager.Limit.STAX_SUPPORT_DTD);
189+
}
187190
/**
188191
* Check to see if the property is managed by the security manager *
189192
*/

‎src/java.xml/share/classes/com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser.java

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
33
*/
44
/*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
@@ -79,7 +79,7 @@
7979
* @author Arnaud Le Hors, IBM
8080
* @author Andy Clark, IBM
8181
*
82-
* @LastModified: July 2023
82+
* @LastModified: Jan 2024
8383
*/
8484
@SuppressWarnings("deprecation")
8585
public abstract class AbstractSAXParser
@@ -1831,6 +1831,11 @@ else if (featureId.startsWith(XERCES_FEATURES_PREFIX)) {
18311831
}
18321832
*/
18331833

1834+
// Handle properties managed by XMLSecurityManager
1835+
if (featureId.equals(XMLSecurityManager.DISALLOW_DTD)) {
1836+
return securityManager.is(XMLSecurityManager.Limit.XERCES_DISALLOW_DTD);
1837+
}
1838+
18341839
return fConfiguration.getFeature(featureId);
18351840
}
18361841
catch (XMLConfigurationException e) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
/*
2+
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
package common.dtd;
25+
26+
import javax.xml.parsers.DocumentBuilderFactory;
27+
import javax.xml.parsers.SAXParser;
28+
import javax.xml.parsers.SAXParserFactory;
29+
import javax.xml.stream.XMLInputFactory;
30+
import org.testng.Assert;
31+
import org.testng.annotations.DataProvider;
32+
import org.testng.annotations.Test;
33+
import org.xml.sax.XMLReader;
34+
35+
/*
36+
* @test
37+
* @bug 8322214
38+
* @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest
39+
* @run testng common.dtd.DTDPropertiesTest
40+
* @summary Verifies the getProperty function on DTD properties works the same
41+
* as before the property 'jdk.xml.dtd.support' was introduced.
42+
*/
43+
public class DTDPropertiesTest {
44+
// Xerces Property
45+
public static final String DISALLOW_DTD = "http://apache.org/xml/features/disallow-doctype-decl";
46+
47+
/*
48+
* DataProvider for verifying Xerces' disallow-DTD feature
49+
* Fields: property name, setting (null indicates not specified), expected
50+
*/
51+
@DataProvider(name = "XercesProperty")
52+
public Object[][] getXercesProperty() throws Exception {
53+
return new Object[][] {
54+
{ DISALLOW_DTD, null, false},
55+
{ DISALLOW_DTD, true, true},
56+
{ DISALLOW_DTD, false, false},
57+
};
58+
}
59+
60+
/*
61+
* DataProvider for verifying StAX's supportDTD feature
62+
* Fields: property name, setting (null indicates not specified), expected
63+
*/
64+
@DataProvider(name = "StAXProperty")
65+
public Object[][] getStAXProperty() throws Exception {
66+
return new Object[][] {
67+
{ XMLInputFactory.SUPPORT_DTD, null, true},
68+
{ XMLInputFactory.SUPPORT_DTD, true, true},
69+
{ XMLInputFactory.SUPPORT_DTD, false, false},
70+
};
71+
}
72+
73+
/**
74+
* Verifies the disallow DTD feature with SAX.
75+
*
76+
* @param name the name of the property
77+
* @param setting the setting of the property, null means not specified
78+
* @param expected the expected value
79+
* @throws Exception if the test fails
80+
*/
81+
@Test(dataProvider = "XercesProperty")
82+
public void testSAX(String name, Boolean setting, Boolean expected) throws Exception {
83+
SAXParserFactory spf = SAXParserFactory.newDefaultInstance();
84+
if (setting != null) {
85+
spf.setFeature(name, setting);
86+
}
87+
Assert.assertEquals((Boolean)spf.getFeature(name), expected);
88+
System.out.println(spf.getFeature(name));
89+
90+
91+
SAXParser saxParser = spf.newSAXParser();
92+
XMLReader reader = saxParser.getXMLReader();
93+
Assert.assertEquals((Boolean)reader.getFeature(name), expected);
94+
System.out.println(reader.getFeature(name));
95+
}
96+
97+
/**
98+
* Verifies the disallow DTD feature with DOM.
99+
*
100+
* @param name the name of the property
101+
* @param setting the setting of the property, null means not specified
102+
* @param expected the expected value
103+
* @throws Exception if the test fails
104+
*/
105+
@Test(dataProvider = "XercesProperty")
106+
public void testDOM(String name, Boolean setting, Boolean expected) throws Exception {
107+
DocumentBuilderFactory dbf = DocumentBuilderFactory.newDefaultInstance();
108+
if (setting != null) {
109+
dbf.setFeature(name, setting);
110+
}
111+
Assert.assertEquals((Boolean)dbf.getFeature(name), expected);
112+
System.out.println(dbf.getFeature(name));
113+
}
114+
115+
/**
116+
* Verifies the StAX's supportDTD feature.
117+
*
118+
* @param name the name of the property
119+
* @param setting the setting of the property, null means not specified
120+
* @param expected the expected value
121+
* @throws Exception if the test fails
122+
*/
123+
@Test(dataProvider = "StAXProperty")
124+
public void testStAX(String name, Boolean setting, Boolean expected) throws Exception {
125+
XMLInputFactory xif = XMLInputFactory.newInstance();
126+
if (setting != null) {
127+
xif.setProperty(name, setting);
128+
}
129+
Assert.assertEquals((Boolean)xif.getProperty(name), expected);
130+
System.out.println((Boolean)xif.getProperty(name));
131+
}
132+
}

3 commit comments

Comments
 (3)

openjdk-notifier[bot] commented on Jan 4, 2024

@openjdk-notifier[bot]

JoeWang-Java commented on Jan 4, 2024

@JoeWang-Java
MemberAuthor

/backport jdk22

openjdk[bot] commented on Jan 4, 2024

@openjdk[bot]

@JoeWang-Java the backport was successfully created on the branch backport-JoeWang-Java-755722ce in my personal fork of openjdk/jdk22. To create a pull request with this backport targeting openjdk/jdk22:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 755722ce from the openjdk/jdk repository.

The commit being backported was authored by Joe Wang on 4 Jan 2024 and was reviewed by Lance Andersen.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk22:

$ git fetch https://github.com/openjdk-bots/jdk22.git backport-JoeWang-Java-755722ce:backport-JoeWang-Java-755722ce
$ git checkout backport-JoeWang-Java-755722ce
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk22.git backport-JoeWang-Java-755722ce
Please sign in to comment.