-
Bug
-
Resolution: Unresolved
-
P4
-
11, 17, 18, 19
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
Malformed serialization data for ImmutableCollections Map can cause an java.lang.InternalError when the deserialized array length is not a multiple of 2.
Note: Misuse of InternalError is related to JDK-6194382
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
An InvalidObjectException should be thrown
ACTUAL -
An InternalError is thrown
---------- BEGIN SOURCE ----------
import java.io.ByteArrayInputStream;
import java.io.ObjectInputStream;
public class CollSerInternalError {
public static void main(String... args) throws Exception {
byte[] serialData = new byte[] {-84, -19, 0, 5, 115, 114, 0, 17, 106, 97, 118, 97, 46, 117, 116, 105, 108, 46, 67, 111, 108, 108, 83, 101, 114, 87, -114, -85, -74, 58, 27, -88, 17, 3, 0, 1, 73, 0, 3, 116, 97, 103, 120, 112, 0, 0, 0, 3, 119, 4, 0, 0, 0, 1, 116, 0, 1, 97, 120};
ObjectInputStream objIn = new ObjectInputStream(new ByteArrayInputStream(serialData));
objIn.readObject();
}
}
---------- END SOURCE ----------
Malformed serialization data for ImmutableCollections Map can cause an java.lang.InternalError when the deserialized array length is not a multiple of 2.
Note: Misuse of InternalError is related to JDK-6194382
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
An InvalidObjectException should be thrown
ACTUAL -
An InternalError is thrown
---------- BEGIN SOURCE ----------
import java.io.ByteArrayInputStream;
import java.io.ObjectInputStream;
public class CollSerInternalError {
public static void main(String... args) throws Exception {
byte[] serialData = new byte[] {-84, -19, 0, 5, 115, 114, 0, 17, 106, 97, 118, 97, 46, 117, 116, 105, 108, 46, 67, 111, 108, 108, 83, 101, 114, 87, -114, -85, -74, 58, 27, -88, 17, 3, 0, 1, 73, 0, 3, 116, 97, 103, 120, 112, 0, 0, 0, 3, 119, 4, 0, 0, 0, 1, 116, 0, 1, 97, 120};
ObjectInputStream objIn = new ObjectInputStream(new ByteArrayInputStream(serialData));
objIn.readObject();
}
}
---------- END SOURCE ----------
- relates to
-
JDK-6194382 Problem with java.lang.InternalError description / usage
-
- Open
-