Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8280379

Malformed ImmutableCollections Map serialization data causes InternalError

XMLWordPrintable

    • 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 ----------

            smarks Stuart Marks
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: