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

codebase annotation of platform classes causes UnmarshalExceptions

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.3.1
    • 1.2.2, 1.3.0
    • core-libs
    • None
    • ladybird
    • generic, x86
    • generic, windows_nt
    • Verified

        If a client makes a remote call to a server, sending instances of J2SE platform classes, and the client happens to have java.rmi.server.codebase set to something that the server does not have permission to connect to or read from, the remote call with fail with an UnmarshalException containing a ClassNotFoundException containing an AccessControlException (access denied). This is both nonintuitive and undesirable.

        Here's a trivial example:

        public class Test implements Test.Simple {

            public interface Simple extends java.rmi.Remote {
        public void foo(Object x) throws java.rmi.RemoteException;
            }

            public void foo(Object s) {
            }

            public static void main(String[] args) throws Exception {
        System.setSecurityManager(new SecurityManager());
        Simple s = (Simple)java.rmi.server.UnicastRemoteObject.exportObject(new Test());
        s.foo(Boolean.TRUE);
            }
        }

        Run this with only localhost connect permission granted, and java.rmi.server.codebase set to some file: URL.

              peterjones Peter Jones (Inactive)
              bscheiflsunw Bob Scheifler (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: