diff options
author | Bryce McKinlay <bryce@waitaki.otago.ac.nz> | 2001-04-26 02:02:05 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2001-04-26 03:02:05 +0100 |
commit | 0cd99be7377980b537d5b3a5c1b2903f6b114d9b (patch) | |
tree | 6e9ae6e83b7184ea72086b949cfcbb9f8a4c3a3d /libjava/java/io/ObjectStreamClass.java | |
parent | 7b518b39532eb29e51d8e1a81794ed1c59fdff86 (diff) | |
download | gcc-0cd99be7377980b537d5b3a5c1b2903f6b114d9b.zip gcc-0cd99be7377980b537d5b3a5c1b2903f6b114d9b.tar.gz gcc-0cd99be7377980b537d5b3a5c1b2903f6b114d9b.tar.bz2 |
re PR libgcj/2237 (serialization doesn't throw exception on failure)
Fix PR libgcj/2237:
* java/io/ObjectStreamClass.java (setClass): Calculate
serialVersionUID for local class and compare it against the UID
from the Object Stream. Throw InvalidClassException upon mismatch.
(setUID): Renamed to...
(getClassUID): this. Return the calculated class UID rather than
setting uid field directly.
(getDefinedSUID): Removed.
* java/io/ObjectInputStream.java (resolveClass): Use the
three-argument Class.forName().
* java/io/InvalidClassException (toString): Don't include classname in
result if it is null.
From-SVN: r41567
Diffstat (limited to 'libjava/java/io/ObjectStreamClass.java')
-rw-r--r-- | libjava/java/io/ObjectStreamClass.java | 69 |
1 files changed, 29 insertions, 40 deletions
diff --git a/libjava/java/io/ObjectStreamClass.java b/libjava/java/io/ObjectStreamClass.java index eca172a..1930329 100644 --- a/libjava/java/io/ObjectStreamClass.java +++ b/libjava/java/io/ObjectStreamClass.java @@ -246,13 +246,27 @@ public class ObjectStreamClass implements Serializable this.fields = fields; } - - void setClass (Class clazz) + void setClass (Class cl) throws InvalidClassException { - this.clazz = clazz; + this.clazz = cl; + long class_uid = getClassUID (cl); + if (uid == 0) + { + uid = class_uid; + return; + } + + // Check that the actual UID of the resolved class matches the UID from + // the stream. + if (uid != class_uid) + { + String msg = cl + + ": Local class not compatible: stream serialVersionUID=" + + uid + ", local serialVersionUID=" + class_uid; + throw new InvalidClassException (msg); + } } - void setSuperclass (ObjectStreamClass osc) { superClass = osc; @@ -308,7 +322,7 @@ public class ObjectStreamClass implements Serializable name = cl.getName (); setFlags (cl); setFields (cl); - setUID (cl); + uid = getClassUID (cl); superClass = lookup (cl.getSuperclass ()); } @@ -396,24 +410,24 @@ public class ObjectStreamClass implements Serializable calculateOffsets (); } - // Sets uid to be serial version UID defined by class, or if that + // Returns the serial version UID defined by class, or if that // isn't present, calculates value of serial version UID. - private void setUID (Class cl) + private long getClassUID (Class cl) { try { Field suid = cl.getDeclaredField ("serialVersionUID"); int modifiers = suid.getModifiers (); - if (Modifier.isStatic (modifiers) - && Modifier.isFinal (modifiers)) - { - uid = getDefinedSUID (cl); - return; - } + if (Modifier.isStatic (modifiers) && Modifier.isFinal (modifiers)) + return suid.getLong (null); } catch (NoSuchFieldException ignore) - {} + { + } + catch (IllegalAccessException ignore) + { + } // cl didn't define serialVersionUID, so we have to compute it try @@ -534,7 +548,7 @@ public class ObjectStreamClass implements Serializable for (int i=0; i < len; i++) result += (long)(sha[i] & 0xFF) << (8 * i); - uid = result; + return result; } catch (NoSuchAlgorithmException e) { @@ -547,31 +561,6 @@ public class ObjectStreamClass implements Serializable } } - - // Returns the value of CLAZZ's final static long field named - // `serialVersionUID'. - private long getDefinedSUID (Class clazz) - { - long l = 0; - try - { - // Use getDeclaredField rather than getField, since serialVersionUID - // may not be public AND we only want the serialVersionUID of this - // class, not a superclass or interface. - Field f = clazz.getDeclaredField ("serialVersionUID"); - l = f.getLong (null); - } - catch (java.lang.NoSuchFieldException e) - { - } - - catch (java.lang.IllegalAccessException e) - { - } - - return l; - } - // Returns the value of CLAZZ's private static final field named // `serialPersistentFields'. private ObjectStreamField[] getSerialPersistentFields (Class clazz) |