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

Change URLClassLoader.getPermissions to return empty PermissionCollection

XMLWordPrintable

    • Icon: CSR CSR
    • Resolution: Approved
    • Icon: P4 P4
    • 24
    • core-libs
    • None
    • behavioral
    • low
    • Hide
      With the removal of SecurityManager implementation, there's no practical relevance of the Permissions returned by the URLClassLoader.getPermissions() method. Returning an empty PermissionCollection should thus have a low compatibility impact to any usages of this method.
      Show
      With the removal of SecurityManager implementation, there's no practical relevance of the Permissions returned by the URLClassLoader.getPermissions() method. Returning an empty PermissionCollection should thus have a low compatibility impact to any usages of this method.
    • Java API
    • SE

      Summary

      Specify the protected PermissionCollection getPermissions(CodeSource codesource) method on java.net.URLClassLoader to return an empty java.security.PermissionCollection.

      Problem

      The protected getPermissions() method on URLClassLoader was specified to return a java.security.PermissionCollection with permissions applicable for the given java.security.CodeSource, in addition to the permissions returned by super.getPermissions(). JEP 486 (https://openjdk.org/jeps/486) permanently disabled the SecurityManager implementation. With the SecurityManager no longer available, the Permissions returned by getPermissions() method are no longer relevant.

      Solution

      The URLClassLoader.getPermissions(CodeSource) method will be specified to return an empty PermissionCollection. A consequence of this change is that any Class loaded by an URLClassLoader will now have a java.security.ProtectionDomain with empty PermissionCollection. Thus Class.getProtectionDomain().getPermissions() will now return an empty PermissionCollection for such classes.

      Specification

      Any Class loaded by a URLClassLoader will have its ProtectionDomain return an empty PermissionCollection.

      Additionally, the URLClassLoader.getPermissions() will be specified as follows:

      src/java.base/share/classes/java/net/URLClassLoader.java
      /**
       * {@return an {@linkplain PermissionCollection empty Permission collection}}
       *
       * @param codesource the {@code CodeSource}
       * @throws NullPointerException if {@code codesource} is {@code null}.
       */
      @Override
      protected PermissionCollection getPermissions(CodeSource codesource) {
          Objects.requireNonNull(codesource);
          return new Permissions();
      }

            jpai Jaikiran Pai
            mullan Sean Mullan
            Alan Bateman, Michael McMahon
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: