Is it possible to serialize anonymous class without outer class?

前端 未结 6 968
广开言路
广开言路 2021-02-06 03:45

I made a small research on web and reviewed related topics on this site, but the answers were contradictory: some people said it is not possible, others said it is possible, but

6条回答
  •  隐瞒了意图╮
    2021-02-06 04:22

    You could try making Caller.call() a static method.

    However, the anonymous class would still need to be available in the context in which you deserialize the serialized instance. That is unavoidable.

    (It is hard to imagine a situation where the anonymous class would be available but the enclosing class isn't.)


    So, if someone can show, how I can properly override writeObject and readObject methods in my anonymous class ...

    If you make Caller.call() static, then you would do this just like you would if it was a named class, I think. (I'm sure you can find examples of that for yourself.)


    Indeed, (modulo the anonymous class availability issue) it works. Here, the static main method substitutes for a static Classer.call() method. The program compiles and runs, showing that an anonymous class declared in a static method can be serialized and deserialized.

    import java.io.*;
    
    public class Bar {
    
        private interface Foo extends Runnable, Serializable {}
    
        public static void main (String[] args) 
                throws InterruptedException, IOException, ClassNotFoundException {
    
            Runnable foo = new Foo() {
                @Override
                public void run() {
                    System.out.println("Lala");
                }
            };
    
            Thread t = new Thread(foo);
            t.start();
            t.join();
    
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            ObjectOutputStream oos = new ObjectOutputStream(baos);
            oos.writeObject(foo);
            oos.close();
            Foo foofoo = (Foo) new ObjectInputStream(
                new ByteArrayInputStream(baos.toByteArray())).readObject();
    
            t = new Thread(foofoo);
            t.start();
            t.join();
        }
    }
    

    Another important thing to remember about: the Caller class is not present in the environment, that executes the method, so I'd like to exclude all information about it during serialization to avoid NoClassDefFoundError.

    There is no way to avoid that. The reason that deserialization in the remote JVM is complaining is that the class descriptor includes a reference to the outer class. The deserializing side needs to resolve that reference even if you managed to clobber the reference, and even if you never explicitly or implicitly used the synthetic variable in the deserialized object.

    The problem is that the remote JVM's classloader needs to know the type of the outer class when it loads the classfile for the inner class. It is needed for verification. It is needed for reflection. It is needed by the garbage collector.

    There is no workaround.

    (I'm not sure if this also applies to a static inner class ... but I suspect that it does.)


    Attempting to serialize anonymous Runnable instance without outer class refers not only to a serialization problem, but to a possibility of arbitrary code execution in another environment. It would be nice to see a JLS reference, describing this question.

    There is no JLS reference for this. Serialization and classloaders are not specified in the JLS. (Class initialization is ... but that is a different issue.)

    It is possible to run arbitrary code on a remote system via RMI. However you need to implement RMI dynamic class loading to achieve this. Here is a reference:

    • http://www.cis.upenn.edu/~bcpierce/courses/629/jdkdocs/guide/rmi/spec/rmi-arch.doc.html#280

    Note that adding dynamic class loading for remote classes to RMI introduces significant security issues. And you have to consider issues like classloader leaks.

提交回复
热议问题