21
21
import java .io .IOException ;
22
22
import java .io .ObjectOutputStream ;
23
23
import java .text .MessageFormat ;
24
+ import java .util .ArrayList ;
25
+ import java .util .Arrays ;
26
+ import java .util .HashSet ;
27
+ import java .util .List ;
28
+ import java .util .Set ;
24
29
25
30
import org .apache .aries .rsa .provider .fastbin .FastBinProvider ;
26
31
import org .apache .aries .rsa .provider .fastbin .util .ClassLoaderObjectInputStream ;
32
+ import org .apache .aries .rsa .provider .fastbin .util .FilteredClassLoaderObjectInputStream ;
27
33
import org .fusesource .hawtbuf .DataByteArrayInputStream ;
28
34
import org .fusesource .hawtbuf .DataByteArrayOutputStream ;
29
35
import org .osgi .framework .ServiceException ;
@@ -38,6 +44,50 @@ public class ObjectSerializationStrategy implements SerializationStrategy {
38
44
private static final ObjectSerializationStrategy V1 = INSTANCE ;
39
45
private int protocolVersion = FastBinProvider .PROTOCOL_VERSION ;
40
46
47
+ private static final Set <String > ALLOWEDCLASSES ;
48
+ private static final FilteredClassLoaderObjectInputStream .AllowlistPackagesPredicate ALLOWED_PACKAGES ;
49
+ private static final String ADDITIONAL_ALLOWED_PACKAGE = System .getProperty ( "org.apache.aries.rsa.provider.fastbin.api.DESERIALIZATION_PACKAGE_ALLOW_LIST" , "" );
50
+ private static final String ADDITIONAL_ALLOWED_CLASSES = System .getProperty ( "org.apache.aries.rsa.provider.fastbin.api.DESERIALIZATION_CLASS_ALLOW_LIST" , "" );
51
+
52
+ static
53
+ {
54
+ Set <String > classes = new HashSet <>();
55
+ classes .addAll (Arrays .asList (
56
+ "B" , // byte
57
+ "C" , // char
58
+ "D" , // double
59
+ "F" , // float
60
+ "I" , // int
61
+ "J" , // long
62
+ "S" , // short
63
+ "Z" , // boolean
64
+ "L" // Object type (LClassName;)
65
+ ));
66
+ final String [] customClasses = ADDITIONAL_ALLOWED_CLASSES .split ("," );
67
+ if (customClasses .length > 0 )
68
+ {
69
+ classes .addAll (Arrays .asList (customClasses ));
70
+ }
71
+ ALLOWEDCLASSES = classes ;
72
+
73
+ List <String > packages = new ArrayList <>();
74
+ packages .addAll (Arrays .asList (
75
+ "java" ,
76
+ "javax" ,
77
+ "Ljava" ,
78
+ "org.apache.aries.rsa" ,
79
+ "org.osgi.framework" ,
80
+ "com.seeburger" ));
81
+
82
+ final String [] customPackages = ADDITIONAL_ALLOWED_PACKAGE .split ("," );
83
+ if (customPackages .length > 0 )
84
+ {
85
+ packages .addAll (Arrays .asList (customPackages ));
86
+ }
87
+ ALLOWED_PACKAGES = new FilteredClassLoaderObjectInputStream .AllowlistPackagesPredicate (packages );
88
+ }
89
+
90
+
41
91
42
92
public String name () {
43
93
return "object" ;
@@ -50,7 +100,7 @@ public void encodeRequest(ClassLoader loader, Class<?>[] types, Object[] args, D
50
100
}
51
101
52
102
public void decodeResponse (ClassLoader loader , Class <?> type , DataByteArrayInputStream source , AsyncCallback result ) throws IOException , ClassNotFoundException {
53
- ClassLoaderObjectInputStream ois = new ClassLoaderObjectInputStream (source );
103
+ ClassLoaderObjectInputStream ois = new FilteredClassLoaderObjectInputStream (source , ALLOWEDCLASSES , ALLOWED_PACKAGES );
54
104
ois .setClassLoader (loader );
55
105
Throwable error = (Throwable ) ois .readObject ();
56
106
Object value = ois .readObject ();
@@ -62,7 +112,7 @@ public void decodeResponse(ClassLoader loader, Class<?> type, DataByteArrayInput
62
112
}
63
113
64
114
public void decodeRequest (ClassLoader loader , Class <?>[] types , DataByteArrayInputStream source , Object [] target ) throws IOException , ClassNotFoundException {
65
- final ClassLoaderObjectInputStream ois = new ClassLoaderObjectInputStream (source );
115
+ ClassLoaderObjectInputStream ois = new FilteredClassLoaderObjectInputStream (source , ALLOWEDCLASSES , ALLOWED_PACKAGES );
66
116
ois .setClassLoader (loader );
67
117
final Object [] args = (Object []) ois .readObject ();
68
118
if ( args !=null ) {
0 commit comments