blob: c45f49e8886f479d1ea0c1885916f05150c862f0 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.xml.secure;
import static org.apache.commons.xml.secure.AttackTestSupport.LEAKED_MARKER;
import static org.apache.commons.xml.secure.AttackTestSupport.resourceUrl;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assumptions.assumeTrue;
import javax.xml.XMLConstants;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import org.xml.sax.helpers.DefaultHandler;
/**
* Tests that a secure {@link DocumentBuilderFactory} performing JAXP 1.2 XSD validation does not fetch an external schema named by an
* {@code xsi:noNamespaceSchemaLocation} hint in the instance document.
*
* <p>The instance is empty {@code <root/>}; the referenced schema declares a default {@code leak} attribute carrying {@link AttackTestSupport#LEAKED_MARKER}. A
* parser that fetches the schema inlines that default into the DOM (the permissive control), while a secure parser resolves the schema reference to empty
* content instead. Either the empty schema makes the validating parse fail, or the parse completes but the default is never inlined; either way the marker never
* reaches the DOM.</p>
*
* <p>The test runs only where the implementation supports JAXP 1.2 schema-language XSD validation (the stock JDK and external Xerces do; Android does not), so
* it skips on parsers without it.</p>
*/
@Tag("dom")
class SchemaLocationDomTest {
/** JAXP 1.2 property selecting the schema language used by {@link DocumentBuilderFactory#setValidating(boolean)}. */
private static final String SCHEMA_LANGUAGE = "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
private static final String INSTANCE = "schema-location-instance.xml";
private static DocumentBuilderFactory enableXsdValidation(final DocumentBuilderFactory factory) {
factory.setNamespaceAware(true);
factory.setValidating(true);
factory.setAttribute(SCHEMA_LANGUAGE, XMLConstants.W3C_XML_SCHEMA_NS_URI);
return factory;
}
private static Document parse(final DocumentBuilderFactory factory) throws Exception {
final DocumentBuilder builder = factory.newDocumentBuilder();
builder.setErrorHandler(new DefaultHandler() {
@Override
public void error(final SAXParseException exception) throws SAXException {
throw exception;
}
});
return builder.parse(new InputSource(resourceUrl(INSTANCE).toString()));
}
private static boolean supportsSchemaLanguage() {
try {
final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setValidating(true);
factory.setAttribute(SCHEMA_LANGUAGE, XMLConstants.W3C_XML_SCHEMA_NS_URI);
return true;
} catch (final Exception e) {
return false;
}
}
@Test
void secureDoesNotFetchExternalSchema() {
assumeTrue(supportsSchemaLanguage(), "parser does not support JAXP 1.2 schema-language XSD validation");
final DocumentBuilderFactory factory = enableXsdValidation(SecureDocumentBuilderFactory.newInstance());
// The schemaLocation reference resolves to empty rather than being fetched. Either the empty schema fails the validating parse (acceptable), or the
// parse completes but the schema's default leak attribute is never inlined. Either way the marker must not reach the DOM.
try {
final Document document = parse(factory);
assertNotEquals(LEAKED_MARKER, document.getDocumentElement().getAttribute("leak"),
"Secured parse must not inline the external schema's default attribute.");
} catch (final Exception blocked) {
// Acceptable: the empty schema was rejected at parse time, so nothing was fetched or inlined.
}
}
@Test
void unconfiguredFetchesExternalSchema() throws Exception {
assumeTrue(supportsSchemaLanguage(), "parser does not support JAXP 1.2 schema-language XSD validation");
final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, false);
// Positive control: without securing the external schema is fetched and its default attribute is inlined into the DOM.
final Document document = parse(enableXsdValidation(factory));
assertEquals(LEAKED_MARKER, document.getDocumentElement().getAttribute("leak"),
"Permissive parse should have fetched the external schema and inlined its default attribute.");
}
}