-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request from GHSA-q6xr-9x9x-g7w2
Co-authored-by: Jörg Kubitz <[email protected]>
- Loading branch information
1 parent
ab84e5d
commit 13675b1
Showing
20 changed files
with
554 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
166 changes: 166 additions & 0 deletions
166
...e.jdt.junit.core/src/org/eclipse/jdt/internal/junit/util/XmlProcessorFactoryJdtJunit.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2023 Joerg Kubitz and others. | ||
* | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*******************************************************************************/ | ||
package org.eclipse.jdt.internal.junit.util; | ||
|
||
import javax.xml.XMLConstants; | ||
import javax.xml.parsers.DocumentBuilder; | ||
import javax.xml.parsers.DocumentBuilderFactory; | ||
import javax.xml.parsers.ParserConfigurationException; | ||
import javax.xml.parsers.SAXParser; | ||
import javax.xml.parsers.SAXParserFactory; | ||
import javax.xml.transform.TransformerFactory; | ||
|
||
import org.xml.sax.SAXException; | ||
import org.xml.sax.SAXNotRecognizedException; | ||
import org.xml.sax.SAXNotSupportedException; | ||
|
||
/** | ||
* XML processing which prohibits external entities. | ||
* | ||
* @see <a href="https://rules.sonarsource.com/java/RSPEC-2755/">RSPEC-2755</a> | ||
*/ | ||
public class XmlProcessorFactoryJdtJunit { | ||
private XmlProcessorFactoryJdtJunit() { | ||
// static Utility only | ||
} | ||
|
||
private static final DocumentBuilderFactory DOCUMENT_BUILDER_FACTORY_ERROR_ON_DOCTYPE = createDocumentBuilderFactoryWithErrorOnDOCTYPE(); | ||
private static final SAXParserFactory SAX_FACTORY_ERROR_ON_DOCTYPE = createSAXFactoryWithErrorOnDOCTYPE(false); | ||
private static final SAXParserFactory SAX_FACTORY_ERROR_ON_DOCTYPE_NS = createSAXFactoryWithErrorOnDOCTYPE(true); | ||
private static final SAXParserFactory SAX_FACTORY_IGNORING_DOCTYPE = createSAXFactoryIgnoringDOCTYPE(); | ||
|
||
/** | ||
* Creates TransformerFactory which throws TransformerException when | ||
* detecting external entities. | ||
* | ||
* @return javax.xml.transform.TransformerFactory | ||
*/ | ||
public static TransformerFactory createTransformerFactoryWithErrorOnDOCTYPE() { | ||
TransformerFactory factory = TransformerFactory.newInstance(); | ||
// prohibit the use of all protocols by external entities: | ||
factory.setAttribute(XMLConstants.ACCESS_EXTERNAL_DTD, ""); //$NON-NLS-1$ | ||
factory.setAttribute(XMLConstants.ACCESS_EXTERNAL_STYLESHEET, ""); //$NON-NLS-1$ | ||
return factory; | ||
} | ||
|
||
/** | ||
* Creates DocumentBuilderFactory which throws SAXParseException when | ||
* detecting external entities. It's magnitudes faster to call | ||
* {@link #createDocumentBuilderWithErrorOnDOCTYPE()}. | ||
* | ||
* @return javax.xml.parsers.DocumentBuilderFactory | ||
*/ | ||
public static synchronized DocumentBuilderFactory createDocumentBuilderFactoryWithErrorOnDOCTYPE() { | ||
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); | ||
// completely disable DOCTYPE declaration: | ||
try { | ||
factory.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); //$NON-NLS-1$ | ||
} catch (ParserConfigurationException e) { | ||
throw new RuntimeException(e.getMessage(), e); | ||
} | ||
return factory; | ||
} | ||
|
||
/** | ||
* Creates DocumentBuilder which throws SAXParseException when detecting | ||
* external entities. The builder is not thread safe. | ||
* | ||
* @return javax.xml.parsers.DocumentBuilder | ||
* @throws ParserConfigurationException | ||
*/ | ||
public static DocumentBuilder createDocumentBuilderWithErrorOnDOCTYPE() throws ParserConfigurationException { | ||
return DOCUMENT_BUILDER_FACTORY_ERROR_ON_DOCTYPE.newDocumentBuilder(); | ||
} | ||
|
||
/** | ||
* Creates DocumentBuilderFactory which throws SAXParseException when | ||
* detecting external entities. | ||
* | ||
* @return javax.xml.parsers.DocumentBuilderFactory | ||
*/ | ||
public static SAXParserFactory createSAXFactoryWithErrorOnDOCTYPE() { | ||
SAXParserFactory f = SAXParserFactory.newInstance(); | ||
try { | ||
// force org.xml.sax.SAXParseException for any DOCTYPE: | ||
f.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); //$NON-NLS-1$ | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
return f; | ||
} | ||
|
||
private static synchronized SAXParserFactory createSAXFactoryWithErrorOnDOCTYPE(boolean awareness) { | ||
SAXParserFactory f = SAXParserFactory.newInstance(); | ||
f.setNamespaceAware(awareness); | ||
try { | ||
// force org.xml.sax.SAXParseException for any DOCTYPE: | ||
f.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); //$NON-NLS-1$ | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
return f; | ||
} | ||
|
||
private static synchronized SAXParserFactory createSAXFactoryIgnoringDOCTYPE() { | ||
SAXParserFactory f = SAXParserFactory.newInstance(); | ||
try { | ||
// ignore DOCTYPE: | ||
f.setFeature("http://xml.org/sax/features/external-general-entities", false); //$NON-NLS-1$ | ||
f.setFeature("http://xml.org/sax/features/external-parameter-entities", false); //$NON-NLS-1$ | ||
f.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false); //$NON-NLS-1$ | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
return f; | ||
} | ||
|
||
/** | ||
* Creates SAXParser which throws SAXParseException when detecting external | ||
* entities. | ||
* | ||
* @return javax.xml.parsers.SAXParser | ||
*/ | ||
|
||
public static SAXParser createSAXParserWithErrorOnDOCTYPE() throws ParserConfigurationException, SAXException { | ||
return createSAXParserWithErrorOnDOCTYPE(false); | ||
} | ||
|
||
/** | ||
* Creates SAXParser which throws SAXParseException when detecting external | ||
* entities. | ||
* | ||
* @param namespaceAware | ||
* parameter for SAXParserFactory | ||
* | ||
* @return javax.xml.parsers.SAXParser | ||
*/ | ||
public static SAXParser createSAXParserWithErrorOnDOCTYPE(boolean namespaceAware) | ||
throws ParserConfigurationException, SAXException { | ||
if (namespaceAware) { | ||
return SAX_FACTORY_ERROR_ON_DOCTYPE_NS.newSAXParser(); | ||
} | ||
return SAX_FACTORY_ERROR_ON_DOCTYPE.newSAXParser(); | ||
} | ||
|
||
/** | ||
* Creates SAXParser which does not throw Exception when detecting external | ||
* entities but ignores them. | ||
* | ||
* @return javax.xml.parsers.SAXParser | ||
*/ | ||
public static SAXParser createSAXParserIgnoringDOCTYPE() | ||
throws ParserConfigurationException, SAXNotRecognizedException, SAXNotSupportedException, SAXException { | ||
SAXParser parser = SAX_FACTORY_IGNORING_DOCTYPE.newSAXParser(); | ||
parser.setProperty(XMLConstants.ACCESS_EXTERNAL_DTD, ""); //$NON-NLS-1$ | ||
parser.setProperty(XMLConstants.ACCESS_EXTERNAL_SCHEMA, ""); //$NON-NLS-1$ | ||
return parser; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.