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

exceptions thrown reading optional data object before calling defaultReadObject

XMLWordPrintable

    • b01
    • generic
    • solaris_2.5
    • Verified

        Within a Serializable class' customization of the readObject method,
        There is a serious bug in serialization if an optional data
        object is read before calling defaultReadObject. This bug
        can lead to InvalidClassException or ClassCastException being
        thrown by defaultReadObject(). A regression test is at the end of this
        report.

        InvalidClassException is getting thrown at line 119 in ObjectStreamClass.c
        because inputClassFields() is called with mismatch parameters.
        The ObjectInputStream static currentClass gets out of sync with
        the static currentClassDesc and these mismatched parameters get passed
        to the native method inputClassFields. The problem disappears
        when the Suggested Fix is applied.

        joseph.fialli@East 1998-06-23

        Regression test: Fails in JDK 1.1, not JDK 1.2.

        import java.io.*;

        class A implements Serializable {
            String str1 = new String("A");
        };

        public class OptionalDataFirst implements Serializable{
            transient A transientA;
            Object a;

            OptionalDataFirst() {
        a = new A();
        transientA = new A();
            }
            
            private void writeObject(ObjectOutputStream out) throws IOException {
        out.writeObject(transientA);
        out.defaultWriteObject();
            }
            
            private void readObject(ObjectInputStream in )
                throws IOException, ClassNotFoundException
            {
        transientA = (A) in.readObject();
        in.defaultReadObject();
            }

            public static void main(String args[])
        throws IOException, ClassNotFoundException
            {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        ObjectOutputStream os = new ObjectOutputStream(baos);
        os.writeObject(new OptionalDataFirst());
        os.close();

        ObjectInputStream in =
        new ObjectInputStream(new ByteArrayInputStream(baos.toByteArray()));
        OptionalDataFirst o = (OptionalDataFirst)in.readObject();
        in.close();
            }
        };

              jfialli Joe Fialli
              jfialli Joe Fialli
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: