INT-4342: White List for Payload Deserializer
JIRA: https://jira.spring.io/browse/INT-4342 Use similar code to Spring AMQP to add white list support for Integration's use of the `DeserializingMessageConverter`; introduce the `WhiteListDeserializingMessageConverter`. Polishing Missed this change in PR. Fix XSD attribute
This commit is contained in:
committed by
Artem Bilan
parent
5749c5b237
commit
0d495294ed
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -26,6 +26,7 @@ import org.springframework.integration.transformer.PayloadDeserializingTransform
|
||||
* Parser for the 'payload-deserializing-transformer' element.
|
||||
*
|
||||
* @author Mark Fisher
|
||||
* @author Gary Russell
|
||||
*/
|
||||
public class PayloadDeserializingTransformerParser extends AbstractTransformerParser {
|
||||
|
||||
@@ -37,6 +38,7 @@ public class PayloadDeserializingTransformerParser extends AbstractTransformerPa
|
||||
@Override
|
||||
protected void parseTransformer(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) {
|
||||
IntegrationNamespaceUtils.setReferenceIfAttributeDefined(builder, element, "deserializer");
|
||||
IntegrationNamespaceUtils.setValueIfAttributeDefined(builder, element, "white-list", "whiteListPatterns");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -165,12 +165,14 @@ public abstract class Transformers {
|
||||
return transformer;
|
||||
}
|
||||
|
||||
public static PayloadDeserializingTransformer deserializer() {
|
||||
return deserializer(null);
|
||||
public static PayloadDeserializingTransformer deserializer(String... whiteListPatterns) {
|
||||
return deserializer(null, whiteListPatterns);
|
||||
}
|
||||
|
||||
public static PayloadDeserializingTransformer deserializer(Deserializer<Object> deserializer) {
|
||||
public static PayloadDeserializingTransformer deserializer(Deserializer<Object> deserializer,
|
||||
String... whiteListPatterns) {
|
||||
PayloadDeserializingTransformer transformer = new PayloadDeserializingTransformer();
|
||||
transformer.setWhiteListPatterns(whiteListPatterns);
|
||||
if (deserializer != null) {
|
||||
transformer.setDeserializer(deserializer);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,182 @@
|
||||
/*
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* http://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.springframework.integration.support.converter;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.ObjectInputStream;
|
||||
import java.io.ObjectStreamClass;
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import org.springframework.beans.DirectFieldAccessor;
|
||||
import org.springframework.core.ConfigurableObjectInputStream;
|
||||
import org.springframework.core.NestedIOException;
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
import org.springframework.core.serializer.DefaultDeserializer;
|
||||
import org.springframework.core.serializer.Deserializer;
|
||||
import org.springframework.core.serializer.support.SerializationFailedException;
|
||||
import org.springframework.util.Assert;
|
||||
import org.springframework.util.PatternMatchUtils;
|
||||
|
||||
/**
|
||||
* A {@link Converter} that delegates to a
|
||||
* {@link org.springframework.core.serializer.Deserializer} to convert data in a byte
|
||||
* array to an object. By default, if using a {@link DefaultDeserializer} all
|
||||
* classes/packages are deserialized. If you receive data from untrusted sources, consider
|
||||
* adding trusted classes/packages using {@link #setWhiteListPatterns(String...)} or
|
||||
* {@link #addWhiteListPatterns(String...)}.
|
||||
*
|
||||
* @author Gary Russell
|
||||
* @author Mark Fisher
|
||||
* @author Juergen Hoeller
|
||||
* @since 4.2.13
|
||||
*/
|
||||
public class WhiteListDeserializingConverter implements Converter<byte[], Object> {
|
||||
|
||||
private final Deserializer<Object> deserializer;
|
||||
|
||||
private final ClassLoader defaultDeserializerClassLoader;
|
||||
|
||||
private final boolean usingDefaultDeserializer;
|
||||
|
||||
private final Set<String> whiteListPatterns = new LinkedHashSet<String>();
|
||||
|
||||
|
||||
/**
|
||||
* Create a {@code WhiteListDeserializingConverter} with default
|
||||
* {@link java.io.ObjectInputStream} configuration, using the "latest user-defined
|
||||
* ClassLoader".
|
||||
*/
|
||||
public WhiteListDeserializingConverter() {
|
||||
this(new DefaultDeserializer());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a {@code WhiteListDeserializingConverter} for using an
|
||||
* {@link java.io.ObjectInputStream} with the given {@code ClassLoader}.
|
||||
* @param classLoader the class loader to use for deserialization.
|
||||
*/
|
||||
public WhiteListDeserializingConverter(ClassLoader classLoader) {
|
||||
this(new DefaultDeserializer(classLoader));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a {@code WhiteListDeserializingConverter} that delegates to the provided
|
||||
* {@link Deserializer}.
|
||||
* @param deserializer the deserializer to use.
|
||||
*/
|
||||
public WhiteListDeserializingConverter(Deserializer<Object> deserializer) {
|
||||
Assert.notNull(deserializer, "Deserializer must not be null");
|
||||
this.deserializer = deserializer;
|
||||
if (deserializer instanceof DefaultDeserializer) {
|
||||
ClassLoader classLoader = null;
|
||||
try {
|
||||
classLoader = (ClassLoader) new DirectFieldAccessor(deserializer).getPropertyValue("classLoader");
|
||||
}
|
||||
catch (Exception e) {
|
||||
// no-op
|
||||
}
|
||||
this.defaultDeserializerClassLoader = classLoader;
|
||||
this.usingDefaultDeserializer = true;
|
||||
}
|
||||
else {
|
||||
this.defaultDeserializerClassLoader = null;
|
||||
this.usingDefaultDeserializer = false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set simple patterns for allowable packages/classes for deserialization.
|
||||
* The patterns will be applied in order until a match is found.
|
||||
* A class can be fully qualified or a wildcard '*' is allowed at the
|
||||
* beginning or end of the class name.
|
||||
* Examples: {@code com.foo.*}, {@code *.MyClass}.
|
||||
* @param whiteListPatterns the patterns.
|
||||
*/
|
||||
public void setWhiteListPatterns(String... whiteListPatterns) {
|
||||
this.whiteListPatterns.clear();
|
||||
Collections.addAll(this.whiteListPatterns, whiteListPatterns);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add package/class patterns to the white list.
|
||||
* @param patterns the patterns to add.
|
||||
* @see #setWhiteListPatterns(String...)
|
||||
*/
|
||||
public void addWhiteListPatterns(String... patterns) {
|
||||
Collections.addAll(this.whiteListPatterns, patterns);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object convert(byte[] source) {
|
||||
ByteArrayInputStream byteStream = new ByteArrayInputStream(source);
|
||||
try {
|
||||
if (this.usingDefaultDeserializer) {
|
||||
return deserialize(byteStream);
|
||||
}
|
||||
else {
|
||||
return this.deserializer.deserialize(byteStream);
|
||||
}
|
||||
}
|
||||
catch (Throwable ex) {
|
||||
throw new SerializationFailedException("Failed to deserialize payload. " +
|
||||
"Is the byte array a result of corresponding serialization for " +
|
||||
this.deserializer.getClass().getSimpleName() + "?", ex);
|
||||
}
|
||||
}
|
||||
|
||||
protected Object deserialize(ByteArrayInputStream inputStream) throws IOException {
|
||||
try {
|
||||
ObjectInputStream objectInputStream = new ConfigurableObjectInputStream(inputStream,
|
||||
this.defaultDeserializerClassLoader) {
|
||||
|
||||
@Override
|
||||
protected Class<?> resolveClass(ObjectStreamClass classDesc)
|
||||
throws IOException, ClassNotFoundException {
|
||||
Class<?> clazz = super.resolveClass(classDesc);
|
||||
checkWhiteList(clazz);
|
||||
return clazz;
|
||||
}
|
||||
|
||||
};
|
||||
return objectInputStream.readObject();
|
||||
}
|
||||
catch (ClassNotFoundException ex) {
|
||||
throw new NestedIOException("Failed to deserialize object type", ex);
|
||||
}
|
||||
}
|
||||
|
||||
protected void checkWhiteList(Class<?> clazz) throws IOException {
|
||||
if (this.whiteListPatterns.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
if (clazz.isArray() || clazz.isPrimitive() || clazz.equals(String.class)
|
||||
|| Number.class.isAssignableFrom(clazz)) {
|
||||
return;
|
||||
}
|
||||
String className = clazz.getName();
|
||||
for (String pattern : this.whiteListPatterns) {
|
||||
if (PatternMatchUtils.simpleMatch(pattern, className)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
throw new SecurityException("Attempt to deserialize unauthorized " + clazz);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2010 the original author or authors.
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -16,15 +16,18 @@
|
||||
|
||||
package org.springframework.integration.transformer;
|
||||
|
||||
import org.springframework.core.convert.converter.Converter;
|
||||
import org.springframework.core.serializer.Deserializer;
|
||||
import org.springframework.core.serializer.support.DeserializingConverter;
|
||||
import org.springframework.integration.support.converter.WhiteListDeserializingConverter;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
/**
|
||||
* Transformer that deserializes the inbound byte array payload to an object by delegating to a
|
||||
* Converter<byte[], Object>. Default delegate is a {@link DeserializingConverter} using
|
||||
* Java serialization.
|
||||
* Transformer that deserializes the inbound byte array payload to an object by delegating
|
||||
* to a Converter<byte[], Object>. Default delegate is a
|
||||
* {@link WhiteListDeserializingConverter} using Java serialization.
|
||||
*
|
||||
* <p>The byte array payload must be a result of equivalent serialization.
|
||||
* <p>
|
||||
* The byte array payload must be a result of equivalent serialization.
|
||||
*
|
||||
* @author Mark Fisher
|
||||
* @author Gary Russell
|
||||
@@ -32,15 +35,36 @@ import org.springframework.core.serializer.support.DeserializingConverter;
|
||||
*/
|
||||
public class PayloadDeserializingTransformer extends PayloadTypeConvertingTransformer<byte[], Object> {
|
||||
|
||||
|
||||
public PayloadDeserializingTransformer() {
|
||||
doSetConverter(new WhiteListDeserializingConverter());
|
||||
}
|
||||
|
||||
private void doSetConverter(Converter<byte[], Object> converter) {
|
||||
this.converter = converter;
|
||||
}
|
||||
|
||||
public void setDeserializer(Deserializer<Object> deserializer) {
|
||||
this.setConverter(new DeserializingConverter(deserializer));
|
||||
setConverter(new WhiteListDeserializingConverter(deserializer));
|
||||
}
|
||||
|
||||
/**
|
||||
* When using a {@link WhiteListDeserializingConverter} (the default) add patterns
|
||||
* for packages/classes that are allowed to be deserialized.
|
||||
* A class can be fully qualified or a wildcard '*' is allowed at the
|
||||
* beginning or end of the class name.
|
||||
* Examples: {@code com.foo.*}, {@code *.MyClass}.
|
||||
* @param patterns the patterns.
|
||||
* @since 4.2.13
|
||||
*/
|
||||
public void setWhiteListPatterns(String... patterns) {
|
||||
Assert.isTrue(this.converter instanceof WhiteListDeserializingConverter,
|
||||
"Patterns can only be provided when using a 'WhiteListDeserializingConverter'");
|
||||
((WhiteListDeserializingConverter) this.converter).setWhiteListPatterns(patterns);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Object transformPayload(byte[] payload) throws Exception {
|
||||
if (this.converter == null) {
|
||||
this.setConverter(new DeserializingConverter());
|
||||
}
|
||||
return this.converter.convert(payload);
|
||||
}
|
||||
|
||||
|
||||
@@ -2696,7 +2696,7 @@
|
||||
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xsd:element ref="poller" />
|
||||
</xsd:choice>
|
||||
<xsd:attribute name="deserializer" use="optional">
|
||||
<xsd:attribute name="deserializer">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
Reference to a Deserializer instance to convert from a byte array to an object.
|
||||
@@ -2710,6 +2710,15 @@
|
||||
</xsd:appinfo>
|
||||
</xsd:annotation>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="white-list">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
When using the default Deserializer, a list of package/class patterns indicating
|
||||
classes that are allowed to be deserialized. Consider providing this if you receive
|
||||
data from untrusted sources. Example: "com.mycom.*, com.yourcom.*".
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:attribute>
|
||||
<xsd:attribute name="id" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user