jdk/src/java.base/share/classes/java/net/URLClassLoader.java
author alanb
Thu, 17 Mar 2016 19:04:16 +0000
changeset 36511 9d0388c6b336
parent 34953 67245e3259bf
child 36674 7ab530dd6f10
permissions -rw-r--r--
8142968: Module System implementation Summary: Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282 Reviewed-by: alanb, mchung, naoto, rriggs, psandoz, plevart, mullan, ascarpino, vinnie, prr, sherman, dfuchs, mhaupt Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, chris.hegarty@oracle.com, alexandr.scherbatiy@oracle.com, amy.lu@oracle.com, calvin.cheung@oracle.com, daniel.fuchs@oracle.com, erik.joelsson@oracle.com, harold.seigel@oracle.com, jaroslav.bachorik@oracle.com, jean-francois.denise@oracle.com, jan.lahoda@oracle.com, james.laskey@oracle.com, lois.foltan@oracle.com, miroslav.kos@oracle.com, huaming.li@oracle.com, sean.mullan@oracle.com, naoto.sato@oracle.com, masayoshi.okutsu@oracle.com, peter.levart@gmail.com, philip.race@oracle.com, claes.redestad@oracle.com, sergey.bylokhov@oracle.com, alexandre.iline@oracle.com, volker.simonis@gmail.com, staffan.larsen@oracle.com, stuart.marks@oracle.com, semyon.sadetsky@oracle.com, serguei.spitsyn@oracle.com, sundararajan.athijegannathan@oracle.com, valerie.peng@oracle.com, vincent.x.ryan@oracle.com, weijun.wang@oracle.com, yuri.nesterenko@oracle.com, yekaterina.kantserova@oracle.com, alexander.kulyakhtin@oracle.com, felix.yang@oracle.com, andrei.eremeev@oracle.com, frank.yuan@oracle.com, sergei.pikalev@oracle.com, sibabrata.sahoo@oracle.com, tiantian.du@oracle.com, sha.jiang@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
31687
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 29986
diff changeset
     2
 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3849
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3849
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3849
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3849
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3849
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    28
import java.io.Closeable;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    29
import java.io.File;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    30
import java.io.FilePermission;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    31
import java.io.IOException;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    32
import java.io.InputStream;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    33
import java.security.AccessControlContext;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    34
import java.security.AccessController;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.CodeSigner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.CodeSource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.Permission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.PermissionCollection;
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    39
import java.security.PrivilegedAction;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    40
import java.security.PrivilegedExceptionAction;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    41
import java.security.SecureClassLoader;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    42
import java.util.Enumeration;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    43
import java.util.List;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    44
import java.util.NoSuchElementException;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    45
import java.util.Set;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    46
import java.util.WeakHashMap;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    47
import java.util.jar.Attributes;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    48
import java.util.jar.Attributes.Name;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    49
import java.util.jar.JarFile;
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    50
import java.util.jar.Manifest;
32834
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 31918
diff changeset
    51
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 31918
diff changeset
    52
import jdk.internal.misc.JavaNetAccess;
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 31918
diff changeset
    53
import jdk.internal.misc.SharedSecrets;
34953
67245e3259bf 8146736: Move sun.misc performance counters to jdk.internal.perf
chegar
parents: 32834
diff changeset
    54
import jdk.internal.perf.PerfCounter;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import sun.misc.Resource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import sun.misc.URLClassPath;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import sun.net.www.ParseUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import sun.security.util.SecurityConstants;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * This class loader is used to load classes and resources from a search
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * path of URLs referring to both JAR files and directories. Any URL that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * ends with a '/' is assumed to refer to a directory. Otherwise, the URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * is assumed to refer to a JAR file which will be opened as needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * The AccessControlContext of the thread that created the instance of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * URLClassLoader will be used when subsequently loading classes and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * resources.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * The classes that are loaded are by default granted permission only to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * access the URLs specified when the URLClassLoader was created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * @author  David Connelly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 */
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    76
public class URLClassLoader extends SecureClassLoader implements Closeable {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /* The search path for classes and resources */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
    78
    private final URLClassPath ucp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /* The context to be used when loading classes and resources */
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
    81
    private final AccessControlContext acc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Constructs a new URLClassLoader for the given URLs. The URLs will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * searched in the order specified for classes and resources after first
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * searching in the specified parent class loader. Any URL that ends with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * a '/' is assumed to refer to a directory. Otherwise, the URL is assumed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * to refer to a JAR file which will be downloaded and opened as needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * <p>If there is a security manager, this method first
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    91
     * calls the security manager's {@code checkCreateClassLoader} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * to ensure creation of a class loader is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @param urls the URLs from which to load classes and resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @param parent the parent class loader for delegation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @exception  SecurityException  if a security manager exists and its
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
    97
     *             {@code checkCreateClassLoader} method doesn't allow
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     *             creation of a class loader.
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
    99
     * @exception  NullPointerException if {@code urls} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @see SecurityManager#checkCreateClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    public URLClassLoader(URL[] urls, ClassLoader parent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        super(parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        // this is to make the stack depth consistent with 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            security.checkCreateClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        ucp = new URLClassPath(urls);
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   110
        this.acc = AccessController.getContext();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   111
    }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   112
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   113
    URLClassLoader(URL[] urls, ClassLoader parent,
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   114
                   AccessControlContext acc) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   115
        super(parent);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   116
        // this is to make the stack depth consistent with 1.1
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   117
        SecurityManager security = System.getSecurityManager();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   118
        if (security != null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   119
            security.checkCreateClassLoader();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   120
        }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   121
        ucp = new URLClassPath(urls);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   122
        this.acc = acc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Constructs a new URLClassLoader for the specified URLs using the
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   127
     * default delegation parent {@code ClassLoader}. The URLs will
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * be searched in the order specified for classes and resources after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * first searching in the parent class loader. Any URL that ends with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * a '/' is assumed to refer to a directory. Otherwise, the URL is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * assumed to refer to a JAR file which will be downloaded and opened
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * as needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * <p>If there is a security manager, this method first
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   135
     * calls the security manager's {@code checkCreateClassLoader} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * to ensure creation of a class loader is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @param urls the URLs from which to load classes and resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @exception  SecurityException  if a security manager exists and its
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   141
     *             {@code checkCreateClassLoader} method doesn't allow
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *             creation of a class loader.
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   143
     * @exception  NullPointerException if {@code urls} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @see SecurityManager#checkCreateClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    public URLClassLoader(URL[] urls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        // this is to make the stack depth consistent with 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            security.checkCreateClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        ucp = new URLClassPath(urls);
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   154
        this.acc = AccessController.getContext();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   155
    }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   156
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   157
    URLClassLoader(URL[] urls, AccessControlContext acc) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   158
        super();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   159
        // this is to make the stack depth consistent with 1.1
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   160
        SecurityManager security = System.getSecurityManager();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   161
        if (security != null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   162
            security.checkCreateClassLoader();
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   163
        }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   164
        ucp = new URLClassPath(urls);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   165
        this.acc = acc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Constructs a new URLClassLoader for the specified URLs, parent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * class loader, and URLStreamHandlerFactory. The parent argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * will be used as the parent class loader for delegation. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * factory argument will be used as the stream handler factory to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * obtain protocol handlers when creating new jar URLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * <p>If there is a security manager, this method first
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   176
     * calls the security manager's {@code checkCreateClassLoader} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * to ensure creation of a class loader is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @param urls the URLs from which to load classes and resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param parent the parent class loader for delegation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param factory the URLStreamHandlerFactory to use when creating URLs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @exception  SecurityException  if a security manager exists and its
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   184
     *             {@code checkCreateClassLoader} method doesn't allow
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *             creation of a class loader.
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   186
     * @exception  NullPointerException if {@code urls} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @see SecurityManager#checkCreateClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    public URLClassLoader(URL[] urls, ClassLoader parent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                          URLStreamHandlerFactory factory) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        super(parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        // this is to make the stack depth consistent with 1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            security.checkCreateClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        ucp = new URLClassPath(urls, factory);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        acc = AccessController.getContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
7983
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   201
    /* A map (used as a set) to keep track of closeable local resources
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   202
     * (either JarFiles or FileInputStreams). We don't care about
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   203
     * Http resources since they don't need to be closed.
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   204
     *
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   205
     * If the resource is coming from a jar file
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   206
     * we keep a (weak) reference to the JarFile object which can
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   207
     * be closed if URLClassLoader.close() called. Due to jar file
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   208
     * caching there will typically be only one JarFile object
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   209
     * per underlying jar file.
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   210
     *
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   211
     * For file resources, which is probably a less common situation
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   212
     * we have to keep a weak reference to each stream.
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   213
     */
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   214
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   215
    private WeakHashMap<Closeable,Void>
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   216
        closeables = new WeakHashMap<>();
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   217
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   218
    /**
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   219
     * Returns an input stream for reading the specified resource.
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   220
     * If this loader is closed, then any resources opened by this method
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   221
     * will be closed.
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   222
     *
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   223
     * <p> The search order is described in the documentation for {@link
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   224
     * #getResource(String)}.  </p>
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   225
     *
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   226
     * @param  name
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   227
     *         The resource name
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   228
     *
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   229
     * @return  An input stream for reading the resource, or {@code null}
7983
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   230
     *          if the resource could not be found
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   231
     *
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   232
     * @since  1.7
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   233
     */
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   234
    public InputStream getResourceAsStream(String name) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   235
        URL url = getResource(name);
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   236
        try {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   237
            if (url == null) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   238
                return null;
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   239
            }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   240
            URLConnection urlc = url.openConnection();
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   241
            InputStream is = urlc.getInputStream();
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   242
            if (urlc instanceof JarURLConnection) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   243
                JarURLConnection juc = (JarURLConnection)urlc;
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   244
                JarFile jar = juc.getJarFile();
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   245
                synchronized (closeables) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   246
                    if (!closeables.containsKey(jar)) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   247
                        closeables.put(jar, null);
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   248
                    }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   249
                }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   250
            } else if (urlc instanceof sun.net.www.protocol.file.FileURLConnection) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   251
                synchronized (closeables) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   252
                    closeables.put(is, null);
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   253
                }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   254
            }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   255
            return is;
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   256
        } catch (IOException e) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   257
            return null;
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   258
        }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   259
    }
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   260
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   261
   /**
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   262
    * Closes this URLClassLoader, so that it can no longer be used to load
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   263
    * new classes or resources that are defined by this loader.
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   264
    * Classes and resources defined by any of this loader's parents in the
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   265
    * delegation hierarchy are still accessible. Also, any classes or resources
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   266
    * that are already loaded, are still accessible.
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   267
    * <p>
7983
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   268
    * In the case of jar: and file: URLs, it also closes any files
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   269
    * that were opened by it. If another thread is loading a
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   270
    * class when the {@code close} method is invoked, then the result of
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   271
    * that load is undefined.
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   272
    * <p>
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   273
    * The method makes a best effort attempt to close all opened files,
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   274
    * by catching {@link IOException}s internally. Unchecked exceptions
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   275
    * and errors are not caught. Calling close on an already closed
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   276
    * loader has no effect.
23720
7d5147c21927 8039172: Tidy warnings cleanup for java.net, java.math, java.time, java.rmi
yan
parents: 21328
diff changeset
   277
    *
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   278
    * @exception IOException if closing any file opened by this class loader
7983
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   279
    * resulted in an IOException. Any such exceptions are caught internally.
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   280
    * If only one is caught, then it is re-thrown. If more than one exception
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   281
    * is caught, then the second and following exceptions are added
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   282
    * as suppressed exceptions of the first one caught, which is then re-thrown.
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   283
    *
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   284
    * @exception SecurityException if a security manager is set, and it denies
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   285
    *   {@link RuntimePermission}{@code ("closeClassLoader")}
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   286
    *
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   287
    * @since 1.7
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   288
    */
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   289
    public void close() throws IOException {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   290
        SecurityManager security = System.getSecurityManager();
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   291
        if (security != null) {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   292
            security.checkPermission(new RuntimePermission("closeClassLoader"));
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   293
        }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   294
        List<IOException> errors = ucp.closeLoaders();
7983
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   295
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   296
        // now close any remaining streams.
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   297
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   298
        synchronized (closeables) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   299
            Set<Closeable> keys = closeables.keySet();
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   300
            for (Closeable c : keys) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   301
                try {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   302
                    c.close();
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   303
                } catch (IOException ioex) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   304
                    errors.add(ioex);
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   305
                }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   306
            }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   307
            closeables.clear();
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   308
        }
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   309
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   310
        if (errors.isEmpty()) {
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   311
            return;
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   312
        }
7983
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   313
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   314
        IOException firstex = errors.remove(0);
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   315
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   316
        // Suppress any remaining exceptions
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   317
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   318
        for (IOException error: errors) {
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   319
            firstex.addSuppressed(error);
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   320
        }
7983
fb83b663cadc 6829919: URLClassLoader.close() doesn't close resource file if getResourceAsStream(...) was called before
michaelm
parents: 5506
diff changeset
   321
        throw firstex;
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   322
    }
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   323
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * Appends the specified URL to the list of URLs to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * classes and resources.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * <p>
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   328
     * If the URL specified is {@code null} or is already in the
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   329
     * list of URLs, or if this loader is closed, then invoking this
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   330
     * method has no effect.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @param url the URL to be added to the search path of URLs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    protected void addURL(URL url) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        ucp.addURL(url);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * Returns the search path of URLs for loading classes and resources.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * This includes the original list of URLs specified to the constructor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * along with any URLs subsequently appended by the addURL() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @return the search path of URLs for loading classes and resources.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public URL[] getURLs() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        return ucp.getURLs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * Finds and loads the class with the specified name from the URL search
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * path. Any URLs referring to JAR files are loaded and opened as needed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * until the class is found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @param name the name of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @return the resulting class
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   355
     * @exception ClassNotFoundException if the class could not be found,
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   356
     *            or if the loader is closed.
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   357
     * @exception NullPointerException if {@code name} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    protected Class<?> findClass(final String name)
26487
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   360
        throws ClassNotFoundException
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    {
26487
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   362
        final Class<?> result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        try {
26487
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   364
            result = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26487
diff changeset
   365
                new PrivilegedExceptionAction<>() {
10596
39b3a979e600 7090158: Networking Libraries don't build with javac -Werror
chegar
parents: 9035
diff changeset
   366
                    public Class<?> run() throws ClassNotFoundException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                        String path = name.replace('.', '/').concat(".class");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                        Resource res = ucp.getResource(path, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                        if (res != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                                return defineClass(name, res);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                                throw new ClassNotFoundException(name, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                        } else {
26487
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   376
                            return null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                }, acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        } catch (java.security.PrivilegedActionException pae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            throw (ClassNotFoundException) pae.getException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        }
26487
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   383
        if (result == null) {
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   384
            throw new ClassNotFoundException(name);
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   385
        }
605e2ffaec14 8057936: java.net.URLClassLoader.findClass uses exceptions in control flow
michaelm
parents: 26214
diff changeset
   386
        return result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    /*
3228
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   390
     * Retrieve the package using the specified package name.
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   391
     * If non-null, verify the package using the specified code
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   392
     * source and manifest.
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   393
     */
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   394
    private Package getAndVerifyPackage(String pkgname,
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   395
                                        Manifest man, URL url) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   396
        Package pkg = getDefinedPackage(pkgname);
3228
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   397
        if (pkg != null) {
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   398
            // Package found, so check package sealing.
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   399
            if (pkg.isSealed()) {
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   400
                // Verify that code source URL is the same.
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   401
                if (!pkg.isSealed(url)) {
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   402
                    throw new SecurityException(
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   403
                        "sealing violation: package " + pkgname + " is sealed");
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   404
                }
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   405
            } else {
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   406
                // Make sure we are not attempting to seal the package
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   407
                // at this code source URL.
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   408
                if ((man != null) && isSealed(pkgname, man)) {
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   409
                    throw new SecurityException(
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   410
                        "sealing violation: can't seal package " + pkgname +
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   411
                        ": already loaded");
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   412
                }
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   413
            }
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   414
        }
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   415
        return pkg;
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   416
    }
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   417
d7c00dbea781 6832540: IllegalArgumentException in ClassLoader.definePackage when classes are loaded in parallel
valeriep
parents: 2448
diff changeset
   418
    /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * Defines a Class using the class bytes obtained from the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Resource. The resulting Class must be resolved before it can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     */
10596
39b3a979e600 7090158: Networking Libraries don't build with javac -Werror
chegar
parents: 9035
diff changeset
   423
    private Class<?> defineClass(String name, Resource res) throws IOException {
3849
34469964aa98 6878481: Add performance counters in the JDK
mchung
parents: 3228
diff changeset
   424
        long t0 = System.nanoTime();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        int i = name.lastIndexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        URL url = res.getCodeSourceURL();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        if (i != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            String pkgname = name.substring(0, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            // Check if package already loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            Manifest man = res.getManifest();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   431
            if (getAndVerifyPackage(pkgname, man, url) == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   432
                try {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   433
                    if (man != null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   434
                        definePackage(pkgname, man, url);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   435
                    } else {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   436
                        definePackage(pkgname, null, null, null, null, null, null, null);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   437
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   438
                } catch (IllegalArgumentException iae) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   439
                    // parallel-capable class loaders: re-verify in case of a
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   440
                    // race condition
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   441
                    if (getAndVerifyPackage(pkgname, man, url) == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   442
                        // Should never happen
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   443
                        throw new AssertionError("Cannot find package " +
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   444
                                                 pkgname);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   445
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   446
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   447
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        // Now read the class bytes and define the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        java.nio.ByteBuffer bb = res.getByteBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        if (bb != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
            // Use (direct) ByteBuffer:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
            CodeSigner[] signers = res.getCodeSigners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            CodeSource cs = new CodeSource(url, signers);
34953
67245e3259bf 8146736: Move sun.misc performance counters to jdk.internal.perf
chegar
parents: 32834
diff changeset
   455
            PerfCounter.getReadClassBytesTime().addElapsedTimeFrom(t0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            return defineClass(name, bb, cs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            byte[] b = res.getBytes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
            // must read certificates AFTER reading bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
            CodeSigner[] signers = res.getCodeSigners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            CodeSource cs = new CodeSource(url, signers);
34953
67245e3259bf 8146736: Move sun.misc performance counters to jdk.internal.perf
chegar
parents: 32834
diff changeset
   462
            PerfCounter.getReadClassBytesTime().addElapsedTimeFrom(t0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
            return defineClass(name, b, 0, b.length, cs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * Defines a new package by name in this ClassLoader. The attributes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * contained in the specified Manifest will be used to obtain package
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * version and sealing information. For sealed packages, the additional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * URL specifies the code source URL from which the package was loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @param name  the package name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @param man   the Manifest containing package version and sealing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     *              information
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * @param url   the code source url for the package, or null if none
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * @exception   IllegalArgumentException if the package name duplicates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     *              an existing package either in this class loader or one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     *              of its ancestors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * @return the newly defined Package object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    protected Package definePackage(String name, Manifest man, URL url)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        throws IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        String path = name.replace('.', '/').concat("/");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        String specTitle = null, specVersion = null, specVendor = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        String implTitle = null, implVersion = null, implVendor = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        String sealed = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        URL sealBase = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        Attributes attr = man.getAttributes(path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        if (attr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            specTitle   = attr.getValue(Name.SPECIFICATION_TITLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
            specVersion = attr.getValue(Name.SPECIFICATION_VERSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            specVendor  = attr.getValue(Name.SPECIFICATION_VENDOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            implTitle   = attr.getValue(Name.IMPLEMENTATION_TITLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            implVersion = attr.getValue(Name.IMPLEMENTATION_VERSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            implVendor  = attr.getValue(Name.IMPLEMENTATION_VENDOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            sealed      = attr.getValue(Name.SEALED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        attr = man.getMainAttributes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        if (attr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            if (specTitle == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                specTitle = attr.getValue(Name.SPECIFICATION_TITLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            if (specVersion == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                specVersion = attr.getValue(Name.SPECIFICATION_VERSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            if (specVendor == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                specVendor = attr.getValue(Name.SPECIFICATION_VENDOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            if (implTitle == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                implTitle = attr.getValue(Name.IMPLEMENTATION_TITLE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            if (implVersion == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                implVersion = attr.getValue(Name.IMPLEMENTATION_VERSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
            if (implVendor == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                implVendor = attr.getValue(Name.IMPLEMENTATION_VENDOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            if (sealed == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                sealed = attr.getValue(Name.SEALED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        if ("true".equalsIgnoreCase(sealed)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            sealBase = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        return definePackage(name, specTitle, specVersion, specVendor,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                             implTitle, implVersion, implVendor, sealBase);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * Returns true if the specified package name is sealed according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * given manifest.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    private boolean isSealed(String name, Manifest man) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        String path = name.replace('.', '/').concat("/");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        Attributes attr = man.getAttributes(path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        String sealed = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        if (attr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
            sealed = attr.getValue(Name.SEALED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        if (sealed == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            if ((attr = man.getMainAttributes()) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                sealed = attr.getValue(Name.SEALED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        return "true".equalsIgnoreCase(sealed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * Finds the resource with the specified name on the URL search path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * @param name the name of the resource
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   555
     * @return a {@code URL} for the resource, or {@code null}
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   556
     * if the resource could not be found, or if the loader is closed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    public URL findResource(final String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
         * The same restriction to finding classes applies to resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
         */
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   562
        URL url = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26487
diff changeset
   563
            new PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   564
                public URL run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                    return ucp.findResource(name, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
            }, acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   569
        return url != null ? URLClassPath.checkURL(url) : null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * Returns an Enumeration of URLs representing all of the resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * on the URL search path having the specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * @param name the resource name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * @exception IOException if an I/O exception occurs
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   578
     * @return an {@code Enumeration} of {@code URL}s
1940
e81514210873 4167874: URL-downloaded jar files can consume all available file descriptors
michaelm
parents: 715
diff changeset
   579
     *         If the loader is closed, the Enumeration will be empty.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
    public Enumeration<URL> findResources(final String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
    {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   584
        final Enumeration<URL> e = ucp.findResources(name, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26487
diff changeset
   586
        return new Enumeration<>() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
            private URL url = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            private boolean next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                if (url != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                do {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   594
                    URL u = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26487
diff changeset
   595
                        new PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   596
                            public URL run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                                if (!e.hasMoreElements())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                                return e.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                        }, acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                    if (u == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                        break;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34953
diff changeset
   604
                    url = URLClassPath.checkURL(u);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                } while (url == null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                return url != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
            public URL nextElement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                if (!next()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                    throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                URL u = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                url = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                return u;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                return next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * Returns the permissions for the given codesource object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * The implementation of this method first calls super.getPermissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * and then adds permissions based on the URL of the codesource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * If the protocol of this URL is "jar", then the permission granted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * is based on the permission that is required by the URL of the Jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * If the protocol is "file" and there is an authority component, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * permission to connect to and accept connections from that authority
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * may be granted. If the protocol is "file"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * and the path specifies a file, then permission to read that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * file is granted. If protocol is "file" and the path is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * a directory, permission is granted to read all files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * and (recursively) all files and subdirectories contained in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     * that directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * If the protocol is not "file", then permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * to connect to and accept connections from the URL's host is granted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * @param codesource the codesource
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   645
     * @exception NullPointerException if {@code codesource} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * @return the permissions granted to the codesource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    protected PermissionCollection getPermissions(CodeSource codesource)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        PermissionCollection perms = super.getPermissions(codesource);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        URL url = codesource.getLocation();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
        Permission p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        URLConnection urlConnection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            urlConnection = url.openConnection();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            p = urlConnection.getPermission();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        } catch (java.io.IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
            p = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
            urlConnection = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        if (p instanceof FilePermission) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            // if the permission has a separator char on the end,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
            // it means the codebase is a directory, and we need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
            // to add an additional permission to read recursively
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            String path = p.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            if (path.endsWith(File.separator)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
                path += "-";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
                p = new FilePermission(path, SecurityConstants.FILE_READ_ACTION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        } else if ((p == null) && (url.getProtocol().equals("file"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
            String path = url.getFile().replace('/', File.separatorChar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            path = ParseUtil.decode(path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            if (path.endsWith(File.separator))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
                path += "-";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
            p =  new FilePermission(path, SecurityConstants.FILE_READ_ACTION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
             * Not loading from a 'file:' URL so we want to give the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
             * permission to connect to and accept from the remote host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
             * after we've made sure the host is the correct one and is valid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
            URL locUrl = url;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
            if (urlConnection instanceof JarURLConnection) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
                locUrl = ((JarURLConnection)urlConnection).getJarFileURL();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
            String host = locUrl.getHost();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
            if (host != null && (host.length() > 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
                p = new SocketPermission(host,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
                                         SecurityConstants.SOCKET_CONNECT_ACCEPT_ACTION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        // make sure the person that created this class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        // would have this permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        if (p != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
            final SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
            if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
                final Permission fp = p;
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26487
diff changeset
   703
                AccessController.doPrivileged(new PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   704
                    public Void run() throws SecurityException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                        sm.checkPermission(fp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                }, acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            perms.add(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
        return perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * Creates a new instance of URLClassLoader for the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * URLs and parent class loader. If a security manager is
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   718
     * installed, the {@code loadClass} method of the URLClassLoader
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     * returned by this method will invoke the
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   720
     * {@code SecurityManager.checkPackageAccess} method before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * loading the class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * @param urls the URLs to search for classes and resources
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * @param parent the parent class loader for delegation
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   725
     * @exception  NullPointerException if {@code urls} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * @return the resulting class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    public static URLClassLoader newInstance(final URL[] urls,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
                                             final ClassLoader parent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        // Save the caller's context
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   731
        final AccessControlContext acc = AccessController.getContext();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
        // Need a privileged block to create the class loader
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   733
        URLClassLoader ucl = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26487
diff changeset
   734
            new PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   735
                public URLClassLoader run() {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   736
                    return new FactoryURLClassLoader(urls, parent, acc);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        return ucl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * Creates a new instance of URLClassLoader for the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     * URLs and default parent class loader. If a security manager is
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   745
     * installed, the {@code loadClass} method of the URLClassLoader
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     * returned by this method will invoke the
19069
1d9cb0d080e3 8021833: javadoc cleanup in java.net
juh
parents: 15682
diff changeset
   747
     * {@code SecurityManager.checkPackageAccess} before
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * loading the class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * @param urls the URLs to search for classes and resources
21328
13dbd66f4c09 7179567: JCK8 tests: api/java_net/URLClassLoader/index.html#Ctor3 failed with NPE
bpb
parents: 19409
diff changeset
   751
     * @exception  NullPointerException if {@code urls} is {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * @return the resulting class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
    public static URLClassLoader newInstance(final URL[] urls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        // Save the caller's context
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   756
        final AccessControlContext acc = AccessController.getContext();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        // Need a privileged block to create the class loader
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   758
        URLClassLoader ucl = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 26487
diff changeset
   759
            new PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   760
                public URLClassLoader run() {
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   761
                    return new FactoryURLClassLoader(urls, acc);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        return ucl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    static {
32834
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 31918
diff changeset
   768
        SharedSecrets.setJavaNetAccess(
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 31918
diff changeset
   769
            new JavaNetAccess() {
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 31918
diff changeset
   770
                public URLClassPath getURLClassPath(URLClassLoader u) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                    return u.ucp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        );
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   775
        ClassLoader.registerAsParallelCapable();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
final class FactoryURLClassLoader extends URLClassLoader {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   781
    static {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   782
        ClassLoader.registerAsParallelCapable();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   785
    FactoryURLClassLoader(URL[] urls, ClassLoader parent,
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   786
                          AccessControlContext acc) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   787
        super(urls, parent, acc);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   790
    FactoryURLClassLoader(URL[] urls, AccessControlContext acc) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   791
        super(urls, acc);
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   792
    }
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 1940
diff changeset
   793
10596
39b3a979e600 7090158: Networking Libraries don't build with javac -Werror
chegar
parents: 9035
diff changeset
   794
    public final Class<?> loadClass(String name, boolean resolve)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        throws ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        // First check if we have permission to access the package. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        // should go away once we've added support for exported packages.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            int i = name.lastIndexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
            if (i != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                sm.checkPackageAccess(name.substring(0, i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        return super.loadClass(name, resolve);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
}