0N/A/*
3760N/A * Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/Apackage java.lang;
0N/A
0N/Aimport java.io.InputStream;
0N/Aimport java.io.IOException;
0N/Aimport java.io.File;
0N/Aimport java.lang.reflect.Constructor;
0N/Aimport java.lang.reflect.InvocationTargetException;
0N/Aimport java.net.MalformedURLException;
0N/Aimport java.net.URL;
0N/Aimport java.security.AccessController;
0N/Aimport java.security.AccessControlContext;
0N/Aimport java.security.CodeSource;
0N/Aimport java.security.Policy;
0N/Aimport java.security.PrivilegedAction;
0N/Aimport java.security.PrivilegedActionException;
0N/Aimport java.security.PrivilegedExceptionAction;
0N/Aimport java.security.ProtectionDomain;
28N/Aimport java.security.cert.Certificate;
1042N/Aimport java.util.Collections;
0N/Aimport java.util.Enumeration;
0N/Aimport java.util.HashMap;
0N/Aimport java.util.HashSet;
0N/Aimport java.util.Set;
0N/Aimport java.util.Stack;
0N/Aimport java.util.Map;
0N/Aimport java.util.Vector;
1042N/Aimport java.util.Hashtable;
1042N/Aimport java.util.WeakHashMap;
1042N/Aimport java.util.concurrent.ConcurrentHashMap;
0N/Aimport sun.misc.ClassFileTransformer;
0N/Aimport sun.misc.CompoundEnumeration;
0N/Aimport sun.misc.Resource;
0N/Aimport sun.misc.URLClassPath;
0N/Aimport sun.misc.VM;
6338N/Aimport sun.reflect.CallerSensitive;
0N/Aimport sun.reflect.Reflection;
0N/Aimport sun.security.util.SecurityConstants;
0N/A
0N/A/**
0N/A * A class loader is an object that is responsible for loading classes. The
0N/A * class <tt>ClassLoader</tt> is an abstract class. Given the <a
0N/A * href="#name">binary name</a> of a class, a class loader should attempt to
0N/A * locate or generate data that constitutes a definition for the class. A
0N/A * typical strategy is to transform the name into a file name and then read a
0N/A * "class file" of that name from a file system.
0N/A *
0N/A * <p> Every {@link Class <tt>Class</tt>} object contains a {@link
0N/A * Class#getClassLoader() reference} to the <tt>ClassLoader</tt> that defined
0N/A * it.
0N/A *
0N/A * <p> <tt>Class</tt> objects for array classes are not created by class
0N/A * loaders, but are created automatically as required by the Java runtime.
0N/A * The class loader for an array class, as returned by {@link
0N/A * Class#getClassLoader()} is the same as the class loader for its element
0N/A * type; if the element type is a primitive type, then the array class has no
0N/A * class loader.
0N/A *
0N/A * <p> Applications implement subclasses of <tt>ClassLoader</tt> in order to
0N/A * extend the manner in which the Java virtual machine dynamically loads
0N/A * classes.
0N/A *
0N/A * <p> Class loaders may typically be used by security managers to indicate
0N/A * security domains.
0N/A *
0N/A * <p> The <tt>ClassLoader</tt> class uses a delegation model to search for
0N/A * classes and resources. Each instance of <tt>ClassLoader</tt> has an
0N/A * associated parent class loader. When requested to find a class or
0N/A * resource, a <tt>ClassLoader</tt> instance will delegate the search for the
0N/A * class or resource to its parent class loader before attempting to find the
0N/A * class or resource itself. The virtual machine's built-in class loader,
0N/A * called the "bootstrap class loader", does not itself have a parent but may
0N/A * serve as the parent of a <tt>ClassLoader</tt> instance.
0N/A *
1042N/A * <p> Class loaders that support concurrent loading of classes are known as
1042N/A * <em>parallel capable</em> class loaders and are required to register
1042N/A * themselves at their class initialization time by invoking the
1042N/A * {@link
1042N/A * #registerAsParallelCapable <tt>ClassLoader.registerAsParallelCapable</tt>}
2924N/A * method. Note that the <tt>ClassLoader</tt> class is registered as parallel
2924N/A * capable by default. However, its subclasses still need to register themselves
2924N/A * if they are parallel capable. <br>
2924N/A * In environments in which the delegation model is not strictly
2924N/A * hierarchical, class loaders need to be parallel capable, otherwise class
1042N/A * loading can lead to deadlocks because the loader lock is held for the
1042N/A * duration of the class loading process (see {@link #loadClass
1042N/A * <tt>loadClass</tt>} methods).
1042N/A *
0N/A * <p> Normally, the Java virtual machine loads classes from the local file
0N/A * system in a platform-dependent manner. For example, on UNIX systems, the
0N/A * virtual machine loads classes from the directory defined by the
0N/A * <tt>CLASSPATH</tt> environment variable.
0N/A *
0N/A * <p> However, some classes may not originate from a file; they may originate
0N/A * from other sources, such as the network, or they could be constructed by an
0N/A * application. The method {@link #defineClass(String, byte[], int, int)
0N/A * <tt>defineClass</tt>} converts an array of bytes into an instance of class
0N/A * <tt>Class</tt>. Instances of this newly defined class can be created using
0N/A * {@link Class#newInstance <tt>Class.newInstance</tt>}.
0N/A *
0N/A * <p> The methods and constructors of objects created by a class loader may
0N/A * reference other classes. To determine the class(es) referred to, the Java
0N/A * virtual machine invokes the {@link #loadClass <tt>loadClass</tt>} method of
0N/A * the class loader that originally created the class.
0N/A *
0N/A * <p> For example, an application could create a network class loader to
0N/A * download class files from a server. Sample code might look like:
0N/A *
0N/A * <blockquote><pre>
0N/A * ClassLoader loader&nbsp;= new NetworkClassLoader(host,&nbsp;port);
0N/A * Object main&nbsp;= loader.loadClass("Main", true).newInstance();
0N/A * &nbsp;.&nbsp;.&nbsp;.
0N/A * </pre></blockquote>
0N/A *
0N/A * <p> The network class loader subclass must define the methods {@link
0N/A * #findClass <tt>findClass</tt>} and <tt>loadClassData</tt> to load a class
0N/A * from the network. Once it has downloaded the bytes that make up the class,
0N/A * it should use the method {@link #defineClass <tt>defineClass</tt>} to
0N/A * create a class instance. A sample implementation is:
0N/A *
0N/A * <blockquote><pre>
0N/A * class NetworkClassLoader extends ClassLoader {
0N/A * String host;
0N/A * int port;
0N/A *
0N/A * public Class findClass(String name) {
0N/A * byte[] b = loadClassData(name);
0N/A * return defineClass(name, b, 0, b.length);
0N/A * }
0N/A *
0N/A * private byte[] loadClassData(String name) {
0N/A * // load the class data from the connection
0N/A * &nbsp;.&nbsp;.&nbsp;.
0N/A * }
0N/A * }
0N/A * </pre></blockquote>
0N/A *
0N/A * <h4> <a name="name">Binary names</a> </h4>
0N/A *
0N/A * <p> Any class name provided as a {@link String} parameter to methods in
4008N/A * <tt>ClassLoader</tt> must be a binary name as defined by
4008N/A * <cite>The Java&trade; Language Specification</cite>.
0N/A *
0N/A * <p> Examples of valid class names include:
0N/A * <blockquote><pre>
0N/A * "java.lang.String"
0N/A * "javax.swing.JSpinner$DefaultEditor"
0N/A * "java.security.KeyStore$Builder$FileBuilder$1"
0N/A * "java.net.URLClassLoader$3$1"
0N/A * </pre></blockquote>
0N/A *
0N/A * @see #resolveClass(Class)
0N/A * @since 1.0
0N/A */
0N/Apublic abstract class ClassLoader {
0N/A
0N/A private static native void registerNatives();
0N/A static {
0N/A registerNatives();
0N/A }
0N/A
0N/A // The parent class loader for delegation
1042N/A // Note: VM hardcoded the offset of this field, thus all new fields
1042N/A // must be added *after* it.
1042N/A private final ClassLoader parent;
1042N/A
1957N/A /**
1957N/A * Encapsulates the set of parallel capable loader types.
1957N/A */
1957N/A private static class ParallelLoaders {
1957N/A private ParallelLoaders() {}
1957N/A
1957N/A // the set of parallel capable loader types
1957N/A private static final Set<Class<? extends ClassLoader>> loaderTypes =
1957N/A Collections.newSetFromMap(
1957N/A new WeakHashMap<Class<? extends ClassLoader>, Boolean>());
1957N/A static {
1957N/A synchronized (loaderTypes) { loaderTypes.add(ClassLoader.class); }
1957N/A }
1957N/A
1957N/A /**
1957N/A * Registers the given class loader type as parallel capabale.
1957N/A * Returns {@code true} is successfully registered; {@code false} if
1957N/A * loader's super class is not registered.
1957N/A */
1957N/A static boolean register(Class<? extends ClassLoader> c) {
1957N/A synchronized (loaderTypes) {
1957N/A if (loaderTypes.contains(c.getSuperclass())) {
1957N/A // register the class loader as parallel capable
1957N/A // if and only if all of its super classes are.
1957N/A // Note: given current classloading sequence, if
1957N/A // the immediate super class is parallel capable,
1957N/A // all the super classes higher up must be too.
1957N/A loaderTypes.add(c);
1957N/A return true;
1957N/A } else {
1957N/A return false;
1957N/A }
1957N/A }
1957N/A }
1957N/A
1957N/A /**
1957N/A * Returns {@code true} if the given class loader type is
1957N/A * registered as parallel capable.
1957N/A */
1957N/A static boolean isRegistered(Class<? extends ClassLoader> c) {
1957N/A synchronized (loaderTypes) {
1957N/A return loaderTypes.contains(c);
1957N/A }
1957N/A }
1957N/A }
1957N/A
1042N/A // Maps class name to the corresponding lock object when the current
1042N/A // class loader is parallel capable.
1042N/A // Note: VM also uses this field to decide if the current class loader
1042N/A // is parallel capable and the appropriate lock object for class loading.
1042N/A private final ConcurrentHashMap<String, Object> parallelLockMap;
0N/A
0N/A // Hashtable that maps packages to certs
1042N/A private final Map <String, Certificate[]> package2certs;
0N/A
0N/A // Shared among all packages with unsigned classes
1042N/A private static final Certificate[] nocerts = new Certificate[0];
1042N/A
1042N/A // The classes loaded by this class loader. The only purpose of this table
1042N/A // is to keep the classes from being GC'ed until the loader is GC'ed.
3323N/A private final Vector<Class<?>> classes = new Vector<>();
0N/A
1042N/A // The "default" domain. Set as the default ProtectionDomain on newly
1042N/A // created classes.
1042N/A private final ProtectionDomain defaultDomain =
1042N/A new ProtectionDomain(new CodeSource(null, (Certificate[]) null),
1042N/A null, this, null);
0N/A
0N/A // The initiating protection domains for all classes loaded by this loader
1042N/A private final Set<ProtectionDomain> domains;
0N/A
0N/A // Invoked by the VM to record every loaded class with this loader.
0N/A void addClass(Class c) {
0N/A classes.addElement(c);
0N/A }
0N/A
0N/A // The packages defined in this class loader. Each package name is mapped
0N/A // to its corresponding Package object.
1042N/A // @GuardedBy("itself")
3323N/A private final HashMap<String, Package> packages = new HashMap<>();
0N/A
1826N/A private static Void checkCreateClassLoader() {
1826N/A SecurityManager security = System.getSecurityManager();
1826N/A if (security != null) {
1826N/A security.checkCreateClassLoader();
1826N/A }
1826N/A return null;
1826N/A }
1826N/A
1826N/A private ClassLoader(Void unused, ClassLoader parent) {
1826N/A this.parent = parent;
1957N/A if (ParallelLoaders.isRegistered(this.getClass())) {
3323N/A parallelLockMap = new ConcurrentHashMap<>();
3323N/A package2certs = new ConcurrentHashMap<>();
1826N/A domains =
1826N/A Collections.synchronizedSet(new HashSet<ProtectionDomain>());
1826N/A assertionLock = new Object();
1826N/A } else {
1826N/A // no finer-grained lock; lock on the classloader instance
1826N/A parallelLockMap = null;
3323N/A package2certs = new Hashtable<>();
3323N/A domains = new HashSet<>();
1826N/A assertionLock = this;
1826N/A }
1826N/A }
1826N/A
0N/A /**
0N/A * Creates a new class loader using the specified parent class loader for
0N/A * delegation.
0N/A *
0N/A * <p> If there is a security manager, its {@link
0N/A * SecurityManager#checkCreateClassLoader()
0N/A * <tt>checkCreateClassLoader</tt>} method is invoked. This may result in
0N/A * a security exception. </p>
0N/A *
0N/A * @param parent
0N/A * The parent class loader
0N/A *
0N/A * @throws SecurityException
0N/A * If a security manager exists and its
0N/A * <tt>checkCreateClassLoader</tt> method doesn't allow creation
0N/A * of a new class loader.
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected ClassLoader(ClassLoader parent) {
1826N/A this(checkCreateClassLoader(), parent);
0N/A }
0N/A
0N/A /**
0N/A * Creates a new class loader using the <tt>ClassLoader</tt> returned by
0N/A * the method {@link #getSystemClassLoader()
0N/A * <tt>getSystemClassLoader()</tt>} as the parent class loader.
0N/A *
0N/A * <p> If there is a security manager, its {@link
0N/A * SecurityManager#checkCreateClassLoader()
0N/A * <tt>checkCreateClassLoader</tt>} method is invoked. This may result in
0N/A * a security exception. </p>
0N/A *
0N/A * @throws SecurityException
0N/A * If a security manager exists and its
0N/A * <tt>checkCreateClassLoader</tt> method doesn't allow creation
0N/A * of a new class loader.
0N/A */
0N/A protected ClassLoader() {
1826N/A this(checkCreateClassLoader(), getSystemClassLoader());
0N/A }
0N/A
0N/A // -- Class --
0N/A
0N/A /**
0N/A * Loads the class with the specified <a href="#name">binary name</a>.
0N/A * This method searches for classes in the same manner as the {@link
0N/A * #loadClass(String, boolean)} method. It is invoked by the Java virtual
0N/A * machine to resolve class references. Invoking this method is equivalent
0N/A * to invoking {@link #loadClass(String, boolean) <tt>loadClass(name,
0N/A * false)</tt>}. </p>
0N/A *
0N/A * @param name
0N/A * The <a href="#name">binary name</a> of the class
0N/A *
0N/A * @return The resulting <tt>Class</tt> object
0N/A *
0N/A * @throws ClassNotFoundException
0N/A * If the class was not found
0N/A */
0N/A public Class<?> loadClass(String name) throws ClassNotFoundException {
0N/A return loadClass(name, false);
0N/A }
0N/A
0N/A /**
0N/A * Loads the class with the specified <a href="#name">binary name</a>. The
0N/A * default implementation of this method searches for classes in the
0N/A * following order:
0N/A *
0N/A * <p><ol>
0N/A *
0N/A * <li><p> Invoke {@link #findLoadedClass(String)} to check if the class
0N/A * has already been loaded. </p></li>
0N/A *
0N/A * <li><p> Invoke the {@link #loadClass(String) <tt>loadClass</tt>} method
0N/A * on the parent class loader. If the parent is <tt>null</tt> the class
0N/A * loader built-in to the virtual machine is used, instead. </p></li>
0N/A *
0N/A * <li><p> Invoke the {@link #findClass(String)} method to find the
0N/A * class. </p></li>
0N/A *
0N/A * </ol>
0N/A *
0N/A * <p> If the class was found using the above steps, and the
0N/A * <tt>resolve</tt> flag is true, this method will then invoke the {@link
0N/A * #resolveClass(Class)} method on the resulting <tt>Class</tt> object.
0N/A *
0N/A * <p> Subclasses of <tt>ClassLoader</tt> are encouraged to override {@link
0N/A * #findClass(String)}, rather than this method. </p>
0N/A *
1042N/A * <p> Unless overridden, this method synchronizes on the result of
1042N/A * {@link #getClassLoadingLock <tt>getClassLoadingLock</tt>} method
1042N/A * during the entire class loading process.
1042N/A *
0N/A * @param name
0N/A * The <a href="#name">binary name</a> of the class
0N/A *
0N/A * @param resolve
0N/A * If <tt>true</tt> then resolve the class
0N/A *
0N/A * @return The resulting <tt>Class</tt> object
0N/A *
0N/A * @throws ClassNotFoundException
0N/A * If the class could not be found
0N/A */
1042N/A protected Class<?> loadClass(String name, boolean resolve)
0N/A throws ClassNotFoundException
0N/A {
1042N/A synchronized (getClassLoadingLock(name)) {
1042N/A // First, check if the class has already been loaded
1042N/A Class c = findLoadedClass(name);
1042N/A if (c == null) {
1660N/A long t0 = System.nanoTime();
1042N/A try {
1042N/A if (parent != null) {
1042N/A c = parent.loadClass(name, false);
1042N/A } else {
1644N/A c = findBootstrapClassOrNull(name);
1042N/A }
1042N/A } catch (ClassNotFoundException e) {
1644N/A // ClassNotFoundException thrown if class not found
1644N/A // from the non-null parent class loader
1644N/A }
1644N/A
1644N/A if (c == null) {
1042N/A // If still not found, then invoke findClass in order
1042N/A // to find the class.
1660N/A long t1 = System.nanoTime();
1042N/A c = findClass(name);
1660N/A
1660N/A // this is the defining class loader; record the stats
1660N/A sun.misc.PerfCounter.getParentDelegationTime().addTime(t1 - t0);
1660N/A sun.misc.PerfCounter.getFindClassTime().addElapsedTimeFrom(t1);
1660N/A sun.misc.PerfCounter.getFindClasses().increment();
0N/A }
1042N/A }
1042N/A if (resolve) {
1042N/A resolveClass(c);
1042N/A }
1042N/A return c;
1042N/A }
1042N/A }
1042N/A
1042N/A /**
1042N/A * Returns the lock object for class loading operations.
1042N/A * For backward compatibility, the default implementation of this method
1042N/A * behaves as follows. If this ClassLoader object is registered as
1042N/A * parallel capable, the method returns a dedicated object associated
1042N/A * with the specified class name. Otherwise, the method returns this
1042N/A * ClassLoader object. </p>
1042N/A *
1042N/A * @param className
1042N/A * The name of the to-be-loaded class
1042N/A *
1042N/A * @return the lock for class loading operations
1042N/A *
1042N/A * @throws NullPointerException
1042N/A * If registered as parallel capable and <tt>className</tt> is null
1042N/A *
1042N/A * @see #loadClass(String, boolean)
1042N/A *
1042N/A * @since 1.7
1042N/A */
1042N/A protected Object getClassLoadingLock(String className) {
1042N/A Object lock = this;
1042N/A if (parallelLockMap != null) {
1042N/A Object newLock = new Object();
1042N/A lock = parallelLockMap.putIfAbsent(className, newLock);
1042N/A if (lock == null) {
1042N/A lock = newLock;
0N/A }
0N/A }
1042N/A return lock;
0N/A }
0N/A
0N/A // This method is invoked by the virtual machine to load a class.
1042N/A private Class loadClassInternal(String name)
0N/A throws ClassNotFoundException
0N/A {
1042N/A // For backward compatibility, explicitly lock on 'this' when
1042N/A // the current class loader is not parallel capable.
1042N/A if (parallelLockMap == null) {
1042N/A synchronized (this) {
1042N/A return loadClass(name);
1042N/A }
1042N/A } else {
1042N/A return loadClass(name);
1042N/A }
0N/A }
0N/A
1042N/A // Invoked by the VM after loading class with this loader.
0N/A private void checkPackageAccess(Class cls, ProtectionDomain pd) {
0N/A final SecurityManager sm = System.getSecurityManager();
0N/A if (sm != null) {
0N/A final String name = cls.getName();
0N/A final int i = name.lastIndexOf('.');
0N/A if (i != -1) {
28N/A AccessController.doPrivileged(new PrivilegedAction<Void>() {
28N/A public Void run() {
0N/A sm.checkPackageAccess(name.substring(0, i));
0N/A return null;
0N/A }
0N/A }, new AccessControlContext(new ProtectionDomain[] {pd}));
0N/A }
0N/A }
0N/A domains.add(pd);
0N/A }
0N/A
0N/A /**
0N/A * Finds the class with the specified <a href="#name">binary name</a>.
0N/A * This method should be overridden by class loader implementations that
0N/A * follow the delegation model for loading classes, and will be invoked by
0N/A * the {@link #loadClass <tt>loadClass</tt>} method after checking the
0N/A * parent class loader for the requested class. The default implementation
0N/A * throws a <tt>ClassNotFoundException</tt>. </p>
0N/A *
0N/A * @param name
0N/A * The <a href="#name">binary name</a> of the class
0N/A *
0N/A * @return The resulting <tt>Class</tt> object
0N/A *
0N/A * @throws ClassNotFoundException
0N/A * If the class could not be found
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected Class<?> findClass(String name) throws ClassNotFoundException {
0N/A throw new ClassNotFoundException(name);
0N/A }
0N/A
0N/A /**
0N/A * Converts an array of bytes into an instance of class <tt>Class</tt>.
0N/A * Before the <tt>Class</tt> can be used it must be resolved. This method
0N/A * is deprecated in favor of the version that takes a <a
0N/A * href="#name">binary name</a> as its first argument, and is more secure.
0N/A *
0N/A * @param b
0N/A * The bytes that make up the class data. The bytes in positions
0N/A * <tt>off</tt> through <tt>off+len-1</tt> should have the format
4008N/A * of a valid class file as defined by
4008N/A * <cite>The Java&trade; Virtual Machine Specification</cite>.
0N/A *
0N/A * @param off
0N/A * The start offset in <tt>b</tt> of the class data
0N/A *
0N/A * @param len
0N/A * The length of the class data
0N/A *
0N/A * @return The <tt>Class</tt> object that was created from the specified
0N/A * class data
0N/A *
0N/A * @throws ClassFormatError
0N/A * If the data did not contain a valid class
0N/A *
0N/A * @throws IndexOutOfBoundsException
0N/A * If either <tt>off</tt> or <tt>len</tt> is negative, or if
0N/A * <tt>off+len</tt> is greater than <tt>b.length</tt>.
0N/A *
2988N/A * @throws SecurityException
2988N/A * If an attempt is made to add this class to a package that
2988N/A * contains classes that were signed by a different set of
2988N/A * certificates than this class, or if an attempt is made
2988N/A * to define a class in a package with a fully-qualified name
2988N/A * that starts with "{@code java.}".
2988N/A *
0N/A * @see #loadClass(String, boolean)
0N/A * @see #resolveClass(Class)
0N/A *
0N/A * @deprecated Replaced by {@link #defineClass(String, byte[], int, int)
0N/A * defineClass(String, byte[], int, int)}
0N/A */
0N/A @Deprecated
0N/A protected final Class<?> defineClass(byte[] b, int off, int len)
0N/A throws ClassFormatError
0N/A {
0N/A return defineClass(null, b, off, len, null);
0N/A }
0N/A
0N/A /**
0N/A * Converts an array of bytes into an instance of class <tt>Class</tt>.
0N/A * Before the <tt>Class</tt> can be used it must be resolved.
0N/A *
0N/A * <p> This method assigns a default {@link java.security.ProtectionDomain
0N/A * <tt>ProtectionDomain</tt>} to the newly defined class. The
0N/A * <tt>ProtectionDomain</tt> is effectively granted the same set of
0N/A * permissions returned when {@link
0N/A * java.security.Policy#getPermissions(java.security.CodeSource)
0N/A * <tt>Policy.getPolicy().getPermissions(new CodeSource(null, null))</tt>}
0N/A * is invoked. The default domain is created on the first invocation of
0N/A * {@link #defineClass(String, byte[], int, int) <tt>defineClass</tt>},
0N/A * and re-used on subsequent invocations.
0N/A *
0N/A * <p> To assign a specific <tt>ProtectionDomain</tt> to the class, use
0N/A * the {@link #defineClass(String, byte[], int, int,
0N/A * java.security.ProtectionDomain) <tt>defineClass</tt>} method that takes a
0N/A * <tt>ProtectionDomain</tt> as one of its arguments. </p>
0N/A *
0N/A * @param name
0N/A * The expected <a href="#name">binary name</a> of the class, or
0N/A * <tt>null</tt> if not known
0N/A *
0N/A * @param b
0N/A * The bytes that make up the class data. The bytes in positions
0N/A * <tt>off</tt> through <tt>off+len-1</tt> should have the format
4008N/A * of a valid class file as defined by
4008N/A * <cite>The Java&trade; Virtual Machine Specification</cite>.
0N/A *
0N/A * @param off
0N/A * The start offset in <tt>b</tt> of the class data
0N/A *
0N/A * @param len
0N/A * The length of the class data
0N/A *
0N/A * @return The <tt>Class</tt> object that was created from the specified
0N/A * class data.
0N/A *
0N/A * @throws ClassFormatError
0N/A * If the data did not contain a valid class
0N/A *
0N/A * @throws IndexOutOfBoundsException
0N/A * If either <tt>off</tt> or <tt>len</tt> is negative, or if
0N/A * <tt>off+len</tt> is greater than <tt>b.length</tt>.
0N/A *
0N/A * @throws SecurityException
0N/A * If an attempt is made to add this class to a package that
0N/A * contains classes that were signed by a different set of
0N/A * certificates than this class (which is unsigned), or if
0N/A * <tt>name</tt> begins with "<tt>java.</tt>".
0N/A *
0N/A * @see #loadClass(String, boolean)
0N/A * @see #resolveClass(Class)
0N/A * @see java.security.CodeSource
0N/A * @see java.security.SecureClassLoader
0N/A *
0N/A * @since 1.1
0N/A */
0N/A protected final Class<?> defineClass(String name, byte[] b, int off, int len)
0N/A throws ClassFormatError
0N/A {
0N/A return defineClass(name, b, off, len, null);
0N/A }
0N/A
0N/A /* Determine protection domain, and check that:
0N/A - not define java.* class,
1042N/A - signer of this class matches signers for the rest of the classes in
1042N/A package.
0N/A */
0N/A private ProtectionDomain preDefineClass(String name,
1042N/A ProtectionDomain pd)
0N/A {
0N/A if (!checkName(name))
0N/A throw new NoClassDefFoundError("IllegalName: " + name);
0N/A
0N/A if ((name != null) && name.startsWith("java.")) {
1042N/A throw new SecurityException
1042N/A ("Prohibited package name: " +
1042N/A name.substring(0, name.lastIndexOf('.')));
0N/A }
1042N/A if (pd == null) {
1042N/A pd = defaultDomain;
0N/A }
0N/A
1042N/A if (name != null) checkCerts(name, pd.getCodeSource());
0N/A
1042N/A return pd;
0N/A }
0N/A
1042N/A private String defineClassSourceLocation(ProtectionDomain pd)
0N/A {
1042N/A CodeSource cs = pd.getCodeSource();
0N/A String source = null;
0N/A if (cs != null && cs.getLocation() != null) {
0N/A source = cs.getLocation().toString();
0N/A }
0N/A return source;
0N/A }
0N/A
0N/A private Class defineTransformedClass(String name, byte[] b, int off, int len,
1042N/A ProtectionDomain pd,
0N/A ClassFormatError cfe, String source)
0N/A throws ClassFormatError
0N/A {
0N/A // Class format error - try to transform the bytecode and
0N/A // define the class again
0N/A //
1042N/A ClassFileTransformer[] transformers =
1042N/A ClassFileTransformer.getTransformers();
0N/A Class c = null;
0N/A
28N/A if (transformers != null) {
28N/A for (ClassFileTransformer transformer : transformers) {
28N/A try {
28N/A // Transform byte code using transformer
28N/A byte[] tb = transformer.transform(b, off, len);
28N/A c = defineClass1(name, tb, 0, tb.length,
1042N/A pd, source);
28N/A break;
28N/A } catch (ClassFormatError cfe2) {
28N/A // If ClassFormatError occurs, try next transformer
28N/A }
0N/A }
0N/A }
0N/A
0N/A // Rethrow original ClassFormatError if unable to transform
0N/A // bytecode to well-formed
0N/A //
0N/A if (c == null)
0N/A throw cfe;
0N/A
0N/A return c;
0N/A }
0N/A
1042N/A private void postDefineClass(Class c, ProtectionDomain pd)
0N/A {
1042N/A if (pd.getCodeSource() != null) {
1042N/A Certificate certs[] = pd.getCodeSource().getCertificates();
0N/A if (certs != null)
0N/A setSigners(c, certs);
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Converts an array of bytes into an instance of class <tt>Class</tt>,
0N/A * with an optional <tt>ProtectionDomain</tt>. If the domain is
0N/A * <tt>null</tt>, then a default domain will be assigned to the class as
0N/A * specified in the documentation for {@link #defineClass(String, byte[],
0N/A * int, int)}. Before the class can be used it must be resolved.
0N/A *
0N/A * <p> The first class defined in a package determines the exact set of
0N/A * certificates that all subsequent classes defined in that package must
0N/A * contain. The set of certificates for a class is obtained from the
0N/A * {@link java.security.CodeSource <tt>CodeSource</tt>} within the
0N/A * <tt>ProtectionDomain</tt> of the class. Any classes added to that
0N/A * package must contain the same set of certificates or a
0N/A * <tt>SecurityException</tt> will be thrown. Note that if
0N/A * <tt>name</tt> is <tt>null</tt>, this check is not performed.
0N/A * You should always pass in the <a href="#name">binary name</a> of the
0N/A * class you are defining as well as the bytes. This ensures that the
0N/A * class you are defining is indeed the class you think it is.
0N/A *
0N/A * <p> The specified <tt>name</tt> cannot begin with "<tt>java.</tt>", since
0N/A * all classes in the "<tt>java.*</tt> packages can only be defined by the
0N/A * bootstrap class loader. If <tt>name</tt> is not <tt>null</tt>, it
0N/A * must be equal to the <a href="#name">binary name</a> of the class
0N/A * specified by the byte array "<tt>b</tt>", otherwise a {@link
0N/A * <tt>NoClassDefFoundError</tt>} will be thrown. </p>
0N/A *
0N/A * @param name
0N/A * The expected <a href="#name">binary name</a> of the class, or
0N/A * <tt>null</tt> if not known
0N/A *
0N/A * @param b
0N/A * The bytes that make up the class data. The bytes in positions
0N/A * <tt>off</tt> through <tt>off+len-1</tt> should have the format
4008N/A * of a valid class file as defined by
4008N/A * <cite>The Java&trade; Virtual Machine Specification</cite>.
0N/A *
0N/A * @param off
0N/A * The start offset in <tt>b</tt> of the class data
0N/A *
0N/A * @param len
0N/A * The length of the class data
0N/A *
0N/A * @param protectionDomain
0N/A * The ProtectionDomain of the class
0N/A *
0N/A * @return The <tt>Class</tt> object created from the data,
0N/A * and optional <tt>ProtectionDomain</tt>.
0N/A *
0N/A * @throws ClassFormatError
0N/A * If the data did not contain a valid class
0N/A *
0N/A * @throws NoClassDefFoundError
0N/A * If <tt>name</tt> is not equal to the <a href="#name">binary
0N/A * name</a> of the class specified by <tt>b</tt>
0N/A *
0N/A * @throws IndexOutOfBoundsException
0N/A * If either <tt>off</tt> or <tt>len</tt> is negative, or if
0N/A * <tt>off+len</tt> is greater than <tt>b.length</tt>.
0N/A *
0N/A * @throws SecurityException
0N/A * If an attempt is made to add this class to a package that
0N/A * contains classes that were signed by a different set of
0N/A * certificates than this class, or if <tt>name</tt> begins with
0N/A * "<tt>java.</tt>".
0N/A */
0N/A protected final Class<?> defineClass(String name, byte[] b, int off, int len,
0N/A ProtectionDomain protectionDomain)
0N/A throws ClassFormatError
0N/A {
0N/A protectionDomain = preDefineClass(name, protectionDomain);
0N/A
0N/A Class c = null;
0N/A String source = defineClassSourceLocation(protectionDomain);
0N/A
0N/A try {
0N/A c = defineClass1(name, b, off, len, protectionDomain, source);
0N/A } catch (ClassFormatError cfe) {
1042N/A c = defineTransformedClass(name, b, off, len, protectionDomain, cfe,
1042N/A source);
0N/A }
0N/A
0N/A postDefineClass(c, protectionDomain);
0N/A return c;
0N/A }
0N/A
0N/A /**
0N/A * Converts a {@link java.nio.ByteBuffer <tt>ByteBuffer</tt>}
0N/A * into an instance of class <tt>Class</tt>,
0N/A * with an optional <tt>ProtectionDomain</tt>. If the domain is
0N/A * <tt>null</tt>, then a default domain will be assigned to the class as
0N/A * specified in the documentation for {@link #defineClass(String, byte[],
0N/A * int, int)}. Before the class can be used it must be resolved.
0N/A *
1042N/A * <p>The rules about the first class defined in a package determining the
1042N/A * set of certificates for the package, and the restrictions on class names
1042N/A * are identical to those specified in the documentation for {@link
1042N/A * #defineClass(String, byte[], int, int, ProtectionDomain)}.
0N/A *
0N/A * <p> An invocation of this method of the form
0N/A * <i>cl</i><tt>.defineClass(</tt><i>name</i><tt>,</tt>
0N/A * <i>bBuffer</i><tt>,</tt> <i>pd</i><tt>)</tt> yields exactly the same
0N/A * result as the statements
0N/A *
0N/A * <blockquote><tt>
0N/A * ...<br>
1042N/A * byte[] temp = new byte[</tt><i>bBuffer</i><tt>.{@link
1042N/A * java.nio.ByteBuffer#remaining remaining}()];<br>
0N/A * </tt><i>bBuffer</i><tt>.{@link java.nio.ByteBuffer#get(byte[])
0N/A * get}(temp);<br>
0N/A * return {@link #defineClass(String, byte[], int, int, ProtectionDomain)
1042N/A * </tt><i>cl</i><tt>.defineClass}(</tt><i>name</i><tt>, temp, 0,
1042N/A * temp.length, </tt><i>pd</i><tt>);<br>
0N/A * </tt></blockquote>
0N/A *
0N/A * @param name
2730N/A * The expected <a href="#name">binary name</a>. of the class, or
0N/A * <tt>null</tt> if not known
0N/A *
0N/A * @param b
0N/A * The bytes that make up the class data. The bytes from positions
1042N/A * <tt>b.position()</tt> through <tt>b.position() + b.limit() -1
1042N/A * </tt> should have the format of a valid class file as defined by
4008N/A * <cite>The Java&trade; Virtual Machine Specification</cite>.
0N/A *
0N/A * @param protectionDomain
0N/A * The ProtectionDomain of the class, or <tt>null</tt>.
0N/A *
0N/A * @return The <tt>Class</tt> object created from the data,
0N/A * and optional <tt>ProtectionDomain</tt>.
0N/A *
0N/A * @throws ClassFormatError
0N/A * If the data did not contain a valid class.
0N/A *
0N/A * @throws NoClassDefFoundError
0N/A * If <tt>name</tt> is not equal to the <a href="#name">binary
0N/A * name</a> of the class specified by <tt>b</tt>
0N/A *
0N/A * @throws SecurityException
0N/A * If an attempt is made to add this class to a package that
0N/A * contains classes that were signed by a different set of
0N/A * certificates than this class, or if <tt>name</tt> begins with
0N/A * "<tt>java.</tt>".
0N/A *
0N/A * @see #defineClass(String, byte[], int, int, ProtectionDomain)
0N/A *
0N/A * @since 1.5
0N/A */
0N/A protected final Class<?> defineClass(String name, java.nio.ByteBuffer b,
0N/A ProtectionDomain protectionDomain)
0N/A throws ClassFormatError
0N/A {
0N/A int len = b.remaining();
0N/A
0N/A // Use byte[] if not a direct ByteBufer:
0N/A if (!b.isDirect()) {
0N/A if (b.hasArray()) {
0N/A return defineClass(name, b.array(),
0N/A b.position() + b.arrayOffset(), len,
0N/A protectionDomain);
0N/A } else {
0N/A // no array, or read-only array
0N/A byte[] tb = new byte[len];
0N/A b.get(tb); // get bytes out of byte buffer.
0N/A return defineClass(name, tb, 0, len, protectionDomain);
0N/A }
0N/A }
0N/A
0N/A protectionDomain = preDefineClass(name, protectionDomain);
0N/A
0N/A Class c = null;
0N/A String source = defineClassSourceLocation(protectionDomain);
0N/A
0N/A try {
1042N/A c = defineClass2(name, b, b.position(), len, protectionDomain,
1042N/A source);
0N/A } catch (ClassFormatError cfe) {
0N/A byte[] tb = new byte[len];
0N/A b.get(tb); // get bytes out of byte buffer.
1042N/A c = defineTransformedClass(name, tb, 0, len, protectionDomain, cfe,
1042N/A source);
0N/A }
0N/A
0N/A postDefineClass(c, protectionDomain);
0N/A return c;
0N/A }
0N/A
0N/A private native Class defineClass0(String name, byte[] b, int off, int len,
0N/A ProtectionDomain pd);
0N/A
0N/A private native Class defineClass1(String name, byte[] b, int off, int len,
0N/A ProtectionDomain pd, String source);
0N/A
0N/A private native Class defineClass2(String name, java.nio.ByteBuffer b,
0N/A int off, int len, ProtectionDomain pd,
0N/A String source);
0N/A
0N/A // true if the name is null or has the potential to be a valid binary name
0N/A private boolean checkName(String name) {
0N/A if ((name == null) || (name.length() == 0))
0N/A return true;
0N/A if ((name.indexOf('/') != -1)
0N/A || (!VM.allowArraySyntax() && (name.charAt(0) == '[')))
0N/A return false;
0N/A return true;
0N/A }
0N/A
1042N/A private void checkCerts(String name, CodeSource cs) {
0N/A int i = name.lastIndexOf('.');
0N/A String pname = (i == -1) ? "" : name.substring(0, i);
1042N/A
1042N/A Certificate[] certs = null;
1042N/A if (cs != null) {
1042N/A certs = cs.getCertificates();
1042N/A }
1042N/A Certificate[] pcerts = null;
1042N/A if (parallelLockMap == null) {
1042N/A synchronized (this) {
1042N/A pcerts = package2certs.get(pname);
1042N/A if (pcerts == null) {
1042N/A package2certs.put(pname, (certs == null? nocerts:certs));
1042N/A }
0N/A }
0N/A } else {
1042N/A pcerts = ((ConcurrentHashMap<String, Certificate[]>)package2certs).
1042N/A putIfAbsent(pname, (certs == null? nocerts:certs));
1042N/A }
1042N/A if (pcerts != null && !compareCerts(pcerts, certs)) {
1042N/A throw new SecurityException("class \""+ name +
1042N/A "\"'s signer information does not match signer information of other classes in the same package");
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * check to make sure the certs for the new class (certs) are the same as
0N/A * the certs for the first class inserted in the package (pcerts)
0N/A */
28N/A private boolean compareCerts(Certificate[] pcerts,
28N/A Certificate[] certs)
0N/A {
0N/A // certs can be null, indicating no certs.
0N/A if ((certs == null) || (certs.length == 0)) {
0N/A return pcerts.length == 0;
0N/A }
0N/A
0N/A // the length must be the same at this point
0N/A if (certs.length != pcerts.length)
0N/A return false;
0N/A
0N/A // go through and make sure all the certs in one array
0N/A // are in the other and vice-versa.
0N/A boolean match;
0N/A for (int i = 0; i < certs.length; i++) {
0N/A match = false;
0N/A for (int j = 0; j < pcerts.length; j++) {
0N/A if (certs[i].equals(pcerts[j])) {
0N/A match = true;
0N/A break;
0N/A }
0N/A }
0N/A if (!match) return false;
0N/A }
0N/A
0N/A // now do the same for pcerts
0N/A for (int i = 0; i < pcerts.length; i++) {
0N/A match = false;
0N/A for (int j = 0; j < certs.length; j++) {
0N/A if (pcerts[i].equals(certs[j])) {
0N/A match = true;
0N/A break;
0N/A }
0N/A }
0N/A if (!match) return false;
0N/A }
0N/A
0N/A return true;
0N/A }
0N/A
0N/A /**
0N/A * Links the specified class. This (misleadingly named) method may be
0N/A * used by a class loader to link a class. If the class <tt>c</tt> has
0N/A * already been linked, then this method simply returns. Otherwise, the
4008N/A * class is linked as described in the "Execution" chapter of
4008N/A * <cite>The Java&trade; Language Specification</cite>.
0N/A * </p>
0N/A *
0N/A * @param c
0N/A * The class to link
0N/A *
0N/A * @throws NullPointerException
0N/A * If <tt>c</tt> is <tt>null</tt>.
0N/A *
0N/A * @see #defineClass(String, byte[], int, int)
0N/A */
0N/A protected final void resolveClass(Class<?> c) {
0N/A resolveClass0(c);
0N/A }
0N/A
0N/A private native void resolveClass0(Class c);
0N/A
0N/A /**
0N/A * Finds a class with the specified <a href="#name">binary name</a>,
0N/A * loading it if necessary.
0N/A *
0N/A * <p> This method loads the class through the system class loader (see
0N/A * {@link #getSystemClassLoader()}). The <tt>Class</tt> object returned
0N/A * might have more than one <tt>ClassLoader</tt> associated with it.
0N/A * Subclasses of <tt>ClassLoader</tt> need not usually invoke this method,
0N/A * because most class loaders need to override just {@link
0N/A * #findClass(String)}. </p>
0N/A *
0N/A * @param name
0N/A * The <a href="#name">binary name</a> of the class
0N/A *
0N/A * @return The <tt>Class</tt> object for the specified <tt>name</tt>
0N/A *
0N/A * @throws ClassNotFoundException
0N/A * If the class could not be found
0N/A *
0N/A * @see #ClassLoader(ClassLoader)
0N/A * @see #getParent()
0N/A */
0N/A protected final Class<?> findSystemClass(String name)
0N/A throws ClassNotFoundException
0N/A {
0N/A ClassLoader system = getSystemClassLoader();
0N/A if (system == null) {
0N/A if (!checkName(name))
0N/A throw new ClassNotFoundException(name);
1644N/A Class cls = findBootstrapClass(name);
1644N/A if (cls == null) {
1644N/A throw new ClassNotFoundException(name);
1644N/A }
1644N/A return cls;
0N/A }
0N/A return system.loadClass(name);
0N/A }
0N/A
1644N/A /**
1644N/A * Returns a class loaded by the bootstrap class loader;
1644N/A * or return null if not found.
1644N/A */
1644N/A private Class findBootstrapClassOrNull(String name)
0N/A {
1644N/A if (!checkName(name)) return null;
1644N/A
0N/A return findBootstrapClass(name);
0N/A }
0N/A
1644N/A // return null if not found
1644N/A private native Class findBootstrapClass(String name);
0N/A
0N/A /**
0N/A * Returns the class with the given <a href="#name">binary name</a> if this
0N/A * loader has been recorded by the Java virtual machine as an initiating
0N/A * loader of a class with that <a href="#name">binary name</a>. Otherwise
0N/A * <tt>null</tt> is returned. </p>
0N/A *
0N/A * @param name
0N/A * The <a href="#name">binary name</a> of the class
0N/A *
0N/A * @return The <tt>Class</tt> object, or <tt>null</tt> if the class has
0N/A * not been loaded
0N/A *
0N/A * @since 1.1
0N/A */
0N/A protected final Class<?> findLoadedClass(String name) {
0N/A if (!checkName(name))
0N/A return null;
0N/A return findLoadedClass0(name);
0N/A }
0N/A
0N/A private native final Class findLoadedClass0(String name);
0N/A
0N/A /**
0N/A * Sets the signers of a class. This should be invoked after defining a
0N/A * class. </p>
0N/A *
0N/A * @param c
0N/A * The <tt>Class</tt> object
0N/A *
0N/A * @param signers
0N/A * The signers for the class
0N/A *
0N/A * @since 1.1
0N/A */
0N/A protected final void setSigners(Class<?> c, Object[] signers) {
0N/A c.setSigners(signers);
0N/A }
0N/A
0N/A
0N/A // -- Resource --
0N/A
0N/A /**
0N/A * Finds the resource with the given name. A resource is some data
0N/A * (images, audio, text, etc) that can be accessed by class code in a way
0N/A * that is independent of the location of the code.
0N/A *
0N/A * <p> The name of a resource is a '<tt>/</tt>'-separated path name that
0N/A * identifies the resource.
0N/A *
0N/A * <p> This method will first search the parent class loader for the
0N/A * resource; if the parent is <tt>null</tt> the path of the class loader
0N/A * built-in to the virtual machine is searched. That failing, this method
0N/A * will invoke {@link #findResource(String)} to find the resource. </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return A <tt>URL</tt> object for reading the resource, or
0N/A * <tt>null</tt> if the resource could not be found or the invoker
0N/A * doesn't have adequate privileges to get the resource.
0N/A *
0N/A * @since 1.1
0N/A */
0N/A public URL getResource(String name) {
0N/A URL url;
0N/A if (parent != null) {
0N/A url = parent.getResource(name);
0N/A } else {
0N/A url = getBootstrapResource(name);
0N/A }
0N/A if (url == null) {
0N/A url = findResource(name);
0N/A }
0N/A return url;
0N/A }
0N/A
0N/A /**
0N/A * Finds all the resources with the given name. A resource is some data
0N/A * (images, audio, text, etc) that can be accessed by class code in a way
0N/A * that is independent of the location of the code.
0N/A *
0N/A * <p>The name of a resource is a <tt>/</tt>-separated path name that
0N/A * identifies the resource.
0N/A *
0N/A * <p> The search order is described in the documentation for {@link
0N/A * #getResource(String)}. </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return An enumeration of {@link java.net.URL <tt>URL</tt>} objects for
0N/A * the resource. If no resources could be found, the enumeration
0N/A * will be empty. Resources that the class loader doesn't have
0N/A * access to will not be in the enumeration.
0N/A *
0N/A * @throws IOException
0N/A * If I/O errors occur
0N/A *
0N/A * @see #findResources(String)
0N/A *
0N/A * @since 1.2
0N/A */
0N/A public Enumeration<URL> getResources(String name) throws IOException {
0N/A Enumeration[] tmp = new Enumeration[2];
0N/A if (parent != null) {
0N/A tmp[0] = parent.getResources(name);
0N/A } else {
0N/A tmp[0] = getBootstrapResources(name);
0N/A }
0N/A tmp[1] = findResources(name);
0N/A
3323N/A return new CompoundEnumeration<>(tmp);
0N/A }
0N/A
0N/A /**
0N/A * Finds the resource with the given name. Class loader implementations
0N/A * should override this method to specify where to find resources. </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return A <tt>URL</tt> object for reading the resource, or
0N/A * <tt>null</tt> if the resource could not be found
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected URL findResource(String name) {
0N/A return null;
0N/A }
0N/A
0N/A /**
0N/A * Returns an enumeration of {@link java.net.URL <tt>URL</tt>} objects
0N/A * representing all the resources with the given name. Class loader
0N/A * implementations should override this method to specify where to load
0N/A * resources from. </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return An enumeration of {@link java.net.URL <tt>URL</tt>} objects for
0N/A * the resources
0N/A *
0N/A * @throws IOException
0N/A * If I/O errors occur
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected Enumeration<URL> findResources(String name) throws IOException {
28N/A return java.util.Collections.emptyEnumeration();
0N/A }
0N/A
1042N/A /**
2924N/A * Registers the caller as parallel capable.</p>
2924N/A * The registration succeeds if and only if all of the following
2924N/A * conditions are met: <br>
2924N/A * 1. no instance of the caller has been created</p>
2924N/A * 2. all of the super classes (except class Object) of the caller are
2924N/A * registered as parallel capable</p>
2924N/A * Note that once a class loader is registered as parallel capable, there
2924N/A * is no way to change it back. </p>
1042N/A *
1042N/A * @return true if the caller is successfully registered as
1042N/A * parallel capable and false if otherwise.
1042N/A *
1042N/A * @since 1.7
1042N/A */
6338N/A @CallerSensitive
1042N/A protected static boolean registerAsParallelCapable() {
6338N/A Class<? extends ClassLoader> callerClass =
6338N/A Reflection.getCallerClass().asSubclass(ClassLoader.class);
6338N/A return ParallelLoaders.register(callerClass);
1042N/A }
1042N/A
0N/A /**
0N/A * Find a resource of the specified name from the search path used to load
0N/A * classes. This method locates the resource through the system class
0N/A * loader (see {@link #getSystemClassLoader()}). </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return A {@link java.net.URL <tt>URL</tt>} object for reading the
0N/A * resource, or <tt>null</tt> if the resource could not be found
0N/A *
0N/A * @since 1.1
0N/A */
0N/A public static URL getSystemResource(String name) {
0N/A ClassLoader system = getSystemClassLoader();
0N/A if (system == null) {
0N/A return getBootstrapResource(name);
0N/A }
0N/A return system.getResource(name);
0N/A }
0N/A
0N/A /**
0N/A * Finds all resources of the specified name from the search path used to
0N/A * load classes. The resources thus found are returned as an
0N/A * {@link java.util.Enumeration <tt>Enumeration</tt>} of {@link
0N/A * java.net.URL <tt>URL</tt>} objects.
0N/A *
0N/A * <p> The search order is described in the documentation for {@link
0N/A * #getSystemResource(String)}. </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return An enumeration of resource {@link java.net.URL <tt>URL</tt>}
0N/A * objects
0N/A *
0N/A * @throws IOException
0N/A * If I/O errors occur
0N/A
0N/A * @since 1.2
0N/A */
0N/A public static Enumeration<URL> getSystemResources(String name)
0N/A throws IOException
0N/A {
0N/A ClassLoader system = getSystemClassLoader();
0N/A if (system == null) {
0N/A return getBootstrapResources(name);
0N/A }
0N/A return system.getResources(name);
0N/A }
0N/A
0N/A /**
0N/A * Find resources from the VM's built-in classloader.
0N/A */
0N/A private static URL getBootstrapResource(String name) {
0N/A URLClassPath ucp = getBootstrapClassPath();
0N/A Resource res = ucp.getResource(name);
0N/A return res != null ? res.getURL() : null;
0N/A }
0N/A
0N/A /**
0N/A * Find resources from the VM's built-in classloader.
0N/A */
28N/A private static Enumeration<URL> getBootstrapResources(String name)
0N/A throws IOException
0N/A {
1042N/A final Enumeration<Resource> e =
1042N/A getBootstrapClassPath().getResources(name);
28N/A return new Enumeration<URL> () {
28N/A public URL nextElement() {
28N/A return e.nextElement().getURL();
0N/A }
0N/A public boolean hasMoreElements() {
0N/A return e.hasMoreElements();
0N/A }
0N/A };
0N/A }
0N/A
0N/A // Returns the URLClassPath that is used for finding system resources.
0N/A static URLClassPath getBootstrapClassPath() {
1365N/A return sun.misc.Launcher.getBootstrapClassPath();
0N/A }
0N/A
0N/A
0N/A /**
0N/A * Returns an input stream for reading the specified resource.
0N/A *
0N/A * <p> The search order is described in the documentation for {@link
0N/A * #getResource(String)}. </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return An input stream for reading the resource, or <tt>null</tt>
0N/A * if the resource could not be found
0N/A *
0N/A * @since 1.1
0N/A */
0N/A public InputStream getResourceAsStream(String name) {
0N/A URL url = getResource(name);
0N/A try {
0N/A return url != null ? url.openStream() : null;
0N/A } catch (IOException e) {
0N/A return null;
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Open for reading, a resource of the specified name from the search path
0N/A * used to load classes. This method locates the resource through the
0N/A * system class loader (see {@link #getSystemClassLoader()}). </p>
0N/A *
0N/A * @param name
0N/A * The resource name
0N/A *
0N/A * @return An input stream for reading the resource, or <tt>null</tt>
0N/A * if the resource could not be found
0N/A *
0N/A * @since 1.1
0N/A */
0N/A public static InputStream getSystemResourceAsStream(String name) {
0N/A URL url = getSystemResource(name);
0N/A try {
0N/A return url != null ? url.openStream() : null;
0N/A } catch (IOException e) {
0N/A return null;
0N/A }
0N/A }
0N/A
0N/A
0N/A // -- Hierarchy --
0N/A
0N/A /**
0N/A * Returns the parent class loader for delegation. Some implementations may
0N/A * use <tt>null</tt> to represent the bootstrap class loader. This method
0N/A * will return <tt>null</tt> in such implementations if this class loader's
0N/A * parent is the bootstrap class loader.
0N/A *
0N/A * <p> If a security manager is present, and the invoker's class loader is
0N/A * not <tt>null</tt> and is not an ancestor of this class loader, then this
0N/A * method invokes the security manager's {@link
0N/A * SecurityManager#checkPermission(java.security.Permission)
0N/A * <tt>checkPermission</tt>} method with a {@link
0N/A * RuntimePermission#RuntimePermission(String)
0N/A * <tt>RuntimePermission("getClassLoader")</tt>} permission to verify
0N/A * access to the parent class loader is permitted. If not, a
0N/A * <tt>SecurityException</tt> will be thrown. </p>
0N/A *
0N/A * @return The parent <tt>ClassLoader</tt>
0N/A *
0N/A * @throws SecurityException
0N/A * If a security manager exists and its <tt>checkPermission</tt>
0N/A * method doesn't allow access to this class loader's parent class
0N/A * loader.
0N/A *
0N/A * @since 1.2
0N/A */
6338N/A @CallerSensitive
0N/A public final ClassLoader getParent() {
0N/A if (parent == null)
0N/A return null;
0N/A SecurityManager sm = System.getSecurityManager();
0N/A if (sm != null) {
6338N/A checkClassLoaderPermission(parent, Reflection.getCallerClass());
0N/A }
0N/A return parent;
0N/A }
0N/A
0N/A /**
0N/A * Returns the system class loader for delegation. This is the default
0N/A * delegation parent for new <tt>ClassLoader</tt> instances, and is
0N/A * typically the class loader used to start the application.
0N/A *
0N/A * <p> This method is first invoked early in the runtime's startup
0N/A * sequence, at which point it creates the system class loader and sets it
0N/A * as the context class loader of the invoking <tt>Thread</tt>.
0N/A *
0N/A * <p> The default system class loader is an implementation-dependent
0N/A * instance of this class.
0N/A *
0N/A * <p> If the system property "<tt>java.system.class.loader</tt>" is defined
0N/A * when this method is first invoked then the value of that property is
0N/A * taken to be the name of a class that will be returned as the system
0N/A * class loader. The class is loaded using the default system class loader
0N/A * and must define a public constructor that takes a single parameter of
0N/A * type <tt>ClassLoader</tt> which is used as the delegation parent. An
0N/A * instance is then created using this constructor with the default system
0N/A * class loader as the parameter. The resulting class loader is defined
0N/A * to be the system class loader.
0N/A *
0N/A * <p> If a security manager is present, and the invoker's class loader is
0N/A * not <tt>null</tt> and the invoker's class loader is not the same as or
0N/A * an ancestor of the system class loader, then this method invokes the
0N/A * security manager's {@link
0N/A * SecurityManager#checkPermission(java.security.Permission)
0N/A * <tt>checkPermission</tt>} method with a {@link
0N/A * RuntimePermission#RuntimePermission(String)
0N/A * <tt>RuntimePermission("getClassLoader")</tt>} permission to verify
0N/A * access to the system class loader. If not, a
0N/A * <tt>SecurityException</tt> will be thrown. </p>
0N/A *
0N/A * @return The system <tt>ClassLoader</tt> for delegation, or
0N/A * <tt>null</tt> if none
0N/A *
0N/A * @throws SecurityException
0N/A * If a security manager exists and its <tt>checkPermission</tt>
0N/A * method doesn't allow access to the system class loader.
0N/A *
0N/A * @throws IllegalStateException
0N/A * If invoked recursively during the construction of the class
0N/A * loader specified by the "<tt>java.system.class.loader</tt>"
0N/A * property.
0N/A *
0N/A * @throws Error
0N/A * If the system property "<tt>java.system.class.loader</tt>"
0N/A * is defined but the named class could not be loaded, the
0N/A * provider class does not define the required constructor, or an
0N/A * exception is thrown by that constructor when it is invoked. The
0N/A * underlying cause of the error can be retrieved via the
0N/A * {@link Throwable#getCause()} method.
0N/A *
0N/A * @revised 1.4
0N/A */
6338N/A @CallerSensitive
0N/A public static ClassLoader getSystemClassLoader() {
0N/A initSystemClassLoader();
0N/A if (scl == null) {
0N/A return null;
0N/A }
0N/A SecurityManager sm = System.getSecurityManager();
0N/A if (sm != null) {
6338N/A checkClassLoaderPermission(scl, Reflection.getCallerClass());
0N/A }
0N/A return scl;
0N/A }
0N/A
0N/A private static synchronized void initSystemClassLoader() {
0N/A if (!sclSet) {
0N/A if (scl != null)
0N/A throw new IllegalStateException("recursive invocation");
0N/A sun.misc.Launcher l = sun.misc.Launcher.getLauncher();
0N/A if (l != null) {
0N/A Throwable oops = null;
0N/A scl = l.getClassLoader();
0N/A try {
28N/A scl = AccessController.doPrivileged(
28N/A new SystemClassLoaderAction(scl));
0N/A } catch (PrivilegedActionException pae) {
0N/A oops = pae.getCause();
0N/A if (oops instanceof InvocationTargetException) {
0N/A oops = oops.getCause();
0N/A }
0N/A }
0N/A if (oops != null) {
0N/A if (oops instanceof Error) {
0N/A throw (Error) oops;
0N/A } else {
0N/A // wrap the exception
0N/A throw new Error(oops);
0N/A }
0N/A }
0N/A }
0N/A sclSet = true;
0N/A }
0N/A }
0N/A
0N/A // Returns true if the specified class loader can be found in this class
0N/A // loader's delegation chain.
0N/A boolean isAncestor(ClassLoader cl) {
0N/A ClassLoader acl = this;
0N/A do {
0N/A acl = acl.parent;
0N/A if (cl == acl) {
0N/A return true;
0N/A }
0N/A } while (acl != null);
0N/A return false;
0N/A }
0N/A
6338N/A // Tests if class loader access requires "getClassLoader" permission
6338N/A // check. A class loader 'from' can access class loader 'to' if
6338N/A // class loader 'from' is same as class loader 'to' or an ancestor
6338N/A // of 'to'. The class loader in a system domain can access
6338N/A // any class loader.
6338N/A private static boolean needsClassLoaderPermissionCheck(ClassLoader from,
6338N/A ClassLoader to)
6338N/A {
6338N/A if (from == to)
6338N/A return false;
6338N/A
6338N/A if (from == null)
6338N/A return false;
6338N/A
6338N/A return !to.isAncestor(from);
6338N/A }
6338N/A
6338N/A // Returns the class's class loader, or null if none.
6338N/A static ClassLoader getClassLoader(Class<?> caller) {
0N/A // This can be null if the VM is requesting it
0N/A if (caller == null) {
0N/A return null;
0N/A }
0N/A // Circumvent security check since this is package-private
0N/A return caller.getClassLoader0();
0N/A }
0N/A
6338N/A static void checkClassLoaderPermission(ClassLoader cl, Class<?> caller) {
6338N/A SecurityManager sm = System.getSecurityManager();
6338N/A if (sm != null) {
6338N/A // caller can be null if the VM is requesting it
6338N/A ClassLoader ccl = getClassLoader(caller);
6338N/A if (needsClassLoaderPermissionCheck(ccl, cl)) {
6338N/A sm.checkPermission(SecurityConstants.GET_CLASSLOADER_PERMISSION);
6338N/A }
6338N/A }
6338N/A }
6338N/A
0N/A // The class loader for the system
1042N/A // @GuardedBy("ClassLoader.class")
0N/A private static ClassLoader scl;
0N/A
0N/A // Set to true once the system class loader has been set
1042N/A // @GuardedBy("ClassLoader.class")
0N/A private static boolean sclSet;
0N/A
0N/A
0N/A // -- Package --
0N/A
0N/A /**
0N/A * Defines a package by name in this <tt>ClassLoader</tt>. This allows
0N/A * class loaders to define the packages for their classes. Packages must
0N/A * be created before the class is defined, and package names must be
0N/A * unique within a class loader and cannot be redefined or changed once
0N/A * created. </p>
0N/A *
0N/A * @param name
0N/A * The package name
0N/A *
0N/A * @param specTitle
0N/A * The specification title
0N/A *
0N/A * @param specVersion
0N/A * The specification version
0N/A *
0N/A * @param specVendor
0N/A * The specification vendor
0N/A *
0N/A * @param implTitle
0N/A * The implementation title
0N/A *
0N/A * @param implVersion
0N/A * The implementation version
0N/A *
0N/A * @param implVendor
0N/A * The implementation vendor
0N/A *
0N/A * @param sealBase
0N/A * If not <tt>null</tt>, then this package is sealed with
0N/A * respect to the given code source {@link java.net.URL
0N/A * <tt>URL</tt>} object. Otherwise, the package is not sealed.
0N/A *
0N/A * @return The newly defined <tt>Package</tt> object
0N/A *
0N/A * @throws IllegalArgumentException
0N/A * If package name duplicates an existing package either in this
0N/A * class loader or one of its ancestors
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected Package definePackage(String name, String specTitle,
0N/A String specVersion, String specVendor,
0N/A String implTitle, String implVersion,
0N/A String implVendor, URL sealBase)
0N/A throws IllegalArgumentException
0N/A {
0N/A synchronized (packages) {
0N/A Package pkg = getPackage(name);
0N/A if (pkg != null) {
0N/A throw new IllegalArgumentException(name);
0N/A }
0N/A pkg = new Package(name, specTitle, specVersion, specVendor,
0N/A implTitle, implVersion, implVendor,
0N/A sealBase, this);
0N/A packages.put(name, pkg);
0N/A return pkg;
0N/A }
0N/A }
0N/A
0N/A /**
0N/A * Returns a <tt>Package</tt> that has been defined by this class loader
0N/A * or any of its ancestors. </p>
0N/A *
0N/A * @param name
0N/A * The package name
0N/A *
0N/A * @return The <tt>Package</tt> corresponding to the given name, or
0N/A * <tt>null</tt> if not found
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected Package getPackage(String name) {
3760N/A Package pkg;
0N/A synchronized (packages) {
3760N/A pkg = packages.get(name);
3760N/A }
3760N/A if (pkg == null) {
3760N/A if (parent != null) {
3760N/A pkg = parent.getPackage(name);
3760N/A } else {
3760N/A pkg = Package.getSystemPackage(name);
3760N/A }
3760N/A if (pkg != null) {
3760N/A synchronized (packages) {
3760N/A Package pkg2 = packages.get(name);
3760N/A if (pkg2 == null) {
3760N/A packages.put(name, pkg);
3760N/A } else {
3760N/A pkg = pkg2;
3760N/A }
0N/A }
0N/A }
0N/A }
3760N/A return pkg;
0N/A }
0N/A
0N/A /**
0N/A * Returns all of the <tt>Packages</tt> defined by this class loader and
0N/A * its ancestors. </p>
0N/A *
0N/A * @return The array of <tt>Package</tt> objects defined by this
0N/A * <tt>ClassLoader</tt>
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected Package[] getPackages() {
28N/A Map<String, Package> map;
0N/A synchronized (packages) {
3323N/A map = new HashMap<>(packages);
0N/A }
0N/A Package[] pkgs;
0N/A if (parent != null) {
0N/A pkgs = parent.getPackages();
0N/A } else {
0N/A pkgs = Package.getSystemPackages();
0N/A }
0N/A if (pkgs != null) {
0N/A for (int i = 0; i < pkgs.length; i++) {
0N/A String pkgName = pkgs[i].getName();
0N/A if (map.get(pkgName) == null) {
0N/A map.put(pkgName, pkgs[i]);
0N/A }
0N/A }
0N/A }
28N/A return map.values().toArray(new Package[map.size()]);
0N/A }
0N/A
0N/A
0N/A // -- Native library access --
0N/A
0N/A /**
0N/A * Returns the absolute path name of a native library. The VM invokes this
0N/A * method to locate the native libraries that belong to classes loaded with
0N/A * this class loader. If this method returns <tt>null</tt>, the VM
0N/A * searches the library along the path specified as the
0N/A * "<tt>java.library.path</tt>" property. </p>
0N/A *
0N/A * @param libname
0N/A * The library name
0N/A *
0N/A * @return The absolute path of the native library
0N/A *
0N/A * @see System#loadLibrary(String)
0N/A * @see System#mapLibraryName(String)
0N/A *
0N/A * @since 1.2
0N/A */
0N/A protected String findLibrary(String libname) {
0N/A return null;
0N/A }
0N/A
0N/A /**
0N/A * The inner class NativeLibrary denotes a loaded native library instance.
0N/A * Every classloader contains a vector of loaded native libraries in the
0N/A * private field <tt>nativeLibraries</tt>. The native libraries loaded
0N/A * into the system are entered into the <tt>systemNativeLibraries</tt>
0N/A * vector.
0N/A *
0N/A * <p> Every native library requires a particular version of JNI. This is
0N/A * denoted by the private <tt>jniVersion</tt> field. This field is set by
0N/A * the VM when it loads the library, and used by the VM to pass the correct
0N/A * version of JNI to the native methods. </p>
0N/A *
0N/A * @see ClassLoader
0N/A * @since 1.2
0N/A */
0N/A static class NativeLibrary {
0N/A // opaque handle to native library, used in native code.
0N/A long handle;
0N/A // the version of JNI environment the native library requires.
0N/A private int jniVersion;
0N/A // the class from which the library is loaded, also indicates
0N/A // the loader this native library belongs.
0N/A private Class fromClass;
0N/A // the canonicalized name of the native library.
0N/A String name;
0N/A
0N/A native void load(String name);
0N/A native long find(String name);
0N/A native void unload();
0N/A
0N/A public NativeLibrary(Class fromClass, String name) {
0N/A this.name = name;
0N/A this.fromClass = fromClass;
0N/A }
0N/A
0N/A protected void finalize() {
0N/A synchronized (loadedLibraryNames) {
0N/A if (fromClass.getClassLoader() != null && handle != 0) {
0N/A /* remove the native library name */
0N/A int size = loadedLibraryNames.size();
0N/A for (int i = 0; i < size; i++) {
0N/A if (name.equals(loadedLibraryNames.elementAt(i))) {
0N/A loadedLibraryNames.removeElementAt(i);
0N/A break;
0N/A }
0N/A }
0N/A /* unload the library. */
0N/A ClassLoader.nativeLibraryContext.push(this);
0N/A try {
0N/A unload();
0N/A } finally {
0N/A ClassLoader.nativeLibraryContext.pop();
0N/A }
0N/A }
0N/A }
0N/A }
0N/A // Invoked in the VM to determine the context class in
0N/A // JNI_Load/JNI_Unload
0N/A static Class getFromClass() {
28N/A return ClassLoader.nativeLibraryContext.peek().fromClass;
0N/A }
0N/A }
0N/A
0N/A // All native library names we've loaded.
3323N/A private static Vector<String> loadedLibraryNames = new Vector<>();
28N/A
0N/A // Native libraries belonging to system classes.
28N/A private static Vector<NativeLibrary> systemNativeLibraries
3323N/A = new Vector<>();
28N/A
0N/A // Native libraries associated with the class loader.
3323N/A private Vector<NativeLibrary> nativeLibraries = new Vector<>();
0N/A
0N/A // native libraries being loaded/unloaded.
3323N/A private static Stack<NativeLibrary> nativeLibraryContext = new Stack<>();
0N/A
0N/A // The paths searched for libraries
1042N/A private static String usr_paths[];
1042N/A private static String sys_paths[];
0N/A
0N/A private static String[] initializePath(String propname) {
0N/A String ldpath = System.getProperty(propname, "");
0N/A String ps = File.pathSeparator;
0N/A int ldlen = ldpath.length();
0N/A int i, j, n;
0N/A // Count the separators in the path
0N/A i = ldpath.indexOf(ps);
0N/A n = 0;
0N/A while (i >= 0) {
0N/A n++;
0N/A i = ldpath.indexOf(ps, i + 1);
0N/A }
0N/A
0N/A // allocate the array of paths - n :'s = n + 1 path elements
0N/A String[] paths = new String[n + 1];
0N/A
0N/A // Fill the array with paths from the ldpath
0N/A n = i = 0;
0N/A j = ldpath.indexOf(ps);
0N/A while (j >= 0) {
0N/A if (j - i > 0) {
0N/A paths[n++] = ldpath.substring(i, j);
0N/A } else if (j - i == 0) {
0N/A paths[n++] = ".";
0N/A }
0N/A i = j + 1;
0N/A j = ldpath.indexOf(ps, i);
0N/A }
0N/A paths[n] = ldpath.substring(i, ldlen);
0N/A return paths;
0N/A }
0N/A
0N/A // Invoked in the java.lang.Runtime class to implement load and loadLibrary.
0N/A static void loadLibrary(Class fromClass, String name,
0N/A boolean isAbsolute) {
0N/A ClassLoader loader =
0N/A (fromClass == null) ? null : fromClass.getClassLoader();
0N/A if (sys_paths == null) {
0N/A usr_paths = initializePath("java.library.path");
0N/A sys_paths = initializePath("sun.boot.library.path");
0N/A }
0N/A if (isAbsolute) {
0N/A if (loadLibrary0(fromClass, new File(name))) {
0N/A return;
0N/A }
0N/A throw new UnsatisfiedLinkError("Can't load library: " + name);
0N/A }
0N/A if (loader != null) {
0N/A String libfilename = loader.findLibrary(name);
0N/A if (libfilename != null) {
0N/A File libfile = new File(libfilename);
0N/A if (!libfile.isAbsolute()) {
0N/A throw new UnsatisfiedLinkError(
0N/A "ClassLoader.findLibrary failed to return an absolute path: " + libfilename);
0N/A }
0N/A if (loadLibrary0(fromClass, libfile)) {
0N/A return;
0N/A }
0N/A throw new UnsatisfiedLinkError("Can't load " + libfilename);
0N/A }
0N/A }
0N/A for (int i = 0 ; i < sys_paths.length ; i++) {
0N/A File libfile = new File(sys_paths[i], System.mapLibraryName(name));
0N/A if (loadLibrary0(fromClass, libfile)) {
0N/A return;
0N/A }
0N/A }
0N/A if (loader != null) {
0N/A for (int i = 0 ; i < usr_paths.length ; i++) {
0N/A File libfile = new File(usr_paths[i],
0N/A System.mapLibraryName(name));
0N/A if (loadLibrary0(fromClass, libfile)) {
0N/A return;
0N/A }
0N/A }
0N/A }
0N/A // Oops, it failed
0N/A throw new UnsatisfiedLinkError("no " + name + " in java.library.path");
0N/A }
0N/A
0N/A private static boolean loadLibrary0(Class fromClass, final File file) {
4945N/A if (loadLibrary1(fromClass, file)) {
4945N/A return true;
4945N/A }
4945N/A final File libfile = ClassLoaderHelper.mapAlternativeName(file);
4945N/A if (libfile != null && loadLibrary1(fromClass, libfile)) {
4945N/A return true;
4945N/A }
4945N/A return false;
4945N/A }
4945N/A
4945N/A private static boolean loadLibrary1(Class fromClass, final File file) {
28N/A boolean exists = AccessController.doPrivileged(
28N/A new PrivilegedAction<Object>() {
0N/A public Object run() {
28N/A return file.exists() ? Boolean.TRUE : null;
28N/A }})
28N/A != null;
28N/A if (!exists) {
0N/A return false;
0N/A }
0N/A String name;
0N/A try {
0N/A name = file.getCanonicalPath();
0N/A } catch (IOException e) {
0N/A return false;
0N/A }
0N/A ClassLoader loader =
0N/A (fromClass == null) ? null : fromClass.getClassLoader();
28N/A Vector<NativeLibrary> libs =
0N/A loader != null ? loader.nativeLibraries : systemNativeLibraries;
0N/A synchronized (libs) {
0N/A int size = libs.size();
0N/A for (int i = 0; i < size; i++) {
28N/A NativeLibrary lib = libs.elementAt(i);
0N/A if (name.equals(lib.name)) {
0N/A return true;
0N/A }
0N/A }
0N/A
0N/A synchronized (loadedLibraryNames) {
0N/A if (loadedLibraryNames.contains(name)) {
0N/A throw new UnsatisfiedLinkError
0N/A ("Native Library " +
0N/A name +
0N/A " already loaded in another classloader");
0N/A }
0N/A /* If the library is being loaded (must be by the same thread,
0N/A * because Runtime.load and Runtime.loadLibrary are
0N/A * synchronous). The reason is can occur is that the JNI_OnLoad
0N/A * function can cause another loadLibrary invocation.
0N/A *
0N/A * Thus we can use a static stack to hold the list of libraries
0N/A * we are loading.
0N/A *
0N/A * If there is a pending load operation for the library, we
0N/A * immediately return success; otherwise, we raise
0N/A * UnsatisfiedLinkError.
0N/A */
0N/A int n = nativeLibraryContext.size();
0N/A for (int i = 0; i < n; i++) {
28N/A NativeLibrary lib = nativeLibraryContext.elementAt(i);
0N/A if (name.equals(lib.name)) {
0N/A if (loader == lib.fromClass.getClassLoader()) {
0N/A return true;
0N/A } else {
0N/A throw new UnsatisfiedLinkError
0N/A ("Native Library " +
0N/A name +
0N/A " is being loaded in another classloader");
0N/A }
0N/A }
0N/A }
0N/A NativeLibrary lib = new NativeLibrary(fromClass, name);
0N/A nativeLibraryContext.push(lib);
0N/A try {
0N/A lib.load(name);
0N/A } finally {
0N/A nativeLibraryContext.pop();
0N/A }
0N/A if (lib.handle != 0) {
0N/A loadedLibraryNames.addElement(name);
0N/A libs.addElement(lib);
0N/A return true;
0N/A }
0N/A return false;
0N/A }
0N/A }
0N/A }
0N/A
0N/A // Invoked in the VM class linking code.
0N/A static long findNative(ClassLoader loader, String name) {
28N/A Vector<NativeLibrary> libs =
0N/A loader != null ? loader.nativeLibraries : systemNativeLibraries;
0N/A synchronized (libs) {
0N/A int size = libs.size();
0N/A for (int i = 0; i < size; i++) {
28N/A NativeLibrary lib = libs.elementAt(i);
0N/A long entry = lib.find(name);
0N/A if (entry != 0)
0N/A return entry;
0N/A }
0N/A }
0N/A return 0;
0N/A }
0N/A
0N/A
0N/A // -- Assertion management --
0N/A
1042N/A final Object assertionLock;
1042N/A
0N/A // The default toggle for assertion checking.
1042N/A // @GuardedBy("assertionLock")
0N/A private boolean defaultAssertionStatus = false;
0N/A
0N/A // Maps String packageName to Boolean package default assertion status Note
0N/A // that the default package is placed under a null map key. If this field
0N/A // is null then we are delegating assertion status queries to the VM, i.e.,
0N/A // none of this ClassLoader's assertion status modification methods have
0N/A // been invoked.
1042N/A // @GuardedBy("assertionLock")
28N/A private Map<String, Boolean> packageAssertionStatus = null;
0N/A
0N/A // Maps String fullyQualifiedClassName to Boolean assertionStatus If this
0N/A // field is null then we are delegating assertion status queries to the VM,
0N/A // i.e., none of this ClassLoader's assertion status modification methods
0N/A // have been invoked.
1042N/A // @GuardedBy("assertionLock")
28N/A Map<String, Boolean> classAssertionStatus = null;
0N/A
0N/A /**
0N/A * Sets the default assertion status for this class loader. This setting
0N/A * determines whether classes loaded by this class loader and initialized
0N/A * in the future will have assertions enabled or disabled by default.
0N/A * This setting may be overridden on a per-package or per-class basis by
0N/A * invoking {@link #setPackageAssertionStatus(String, boolean)} or {@link
0N/A * #setClassAssertionStatus(String, boolean)}. </p>
0N/A *
0N/A * @param enabled
0N/A * <tt>true</tt> if classes loaded by this class loader will
0N/A * henceforth have assertions enabled by default, <tt>false</tt>
0N/A * if they will have assertions disabled by default.
0N/A *
0N/A * @since 1.4
0N/A */
1042N/A public void setDefaultAssertionStatus(boolean enabled) {
1042N/A synchronized (assertionLock) {
1042N/A if (classAssertionStatus == null)
1042N/A initializeJavaAssertionMaps();
0N/A
1042N/A defaultAssertionStatus = enabled;
1042N/A }
0N/A }
0N/A
0N/A /**
0N/A * Sets the package default assertion status for the named package. The
0N/A * package default assertion status determines the assertion status for
0N/A * classes initialized in the future that belong to the named package or
0N/A * any of its "subpackages".
0N/A *
0N/A * <p> A subpackage of a package named p is any package whose name begins
0N/A * with "<tt>p.</tt>". For example, <tt>javax.swing.text</tt> is a
0N/A * subpackage of <tt>javax.swing</tt>, and both <tt>java.util</tt> and
0N/A * <tt>java.lang.reflect</tt> are subpackages of <tt>java</tt>.
0N/A *
0N/A * <p> In the event that multiple package defaults apply to a given class,
0N/A * the package default pertaining to the most specific package takes
0N/A * precedence over the others. For example, if <tt>javax.lang</tt> and
0N/A * <tt>javax.lang.reflect</tt> both have package defaults associated with
0N/A * them, the latter package default applies to classes in
0N/A * <tt>javax.lang.reflect</tt>.
0N/A *
0N/A * <p> Package defaults take precedence over the class loader's default
0N/A * assertion status, and may be overridden on a per-class basis by invoking
0N/A * {@link #setClassAssertionStatus(String, boolean)}. </p>
0N/A *
0N/A * @param packageName
0N/A * The name of the package whose package default assertion status
0N/A * is to be set. A <tt>null</tt> value indicates the unnamed
0N/A * package that is "current"
4008N/A * (see section 7.4.2 of
4008N/A * <cite>The Java&trade; Language Specification</cite>.)
0N/A *
0N/A * @param enabled
0N/A * <tt>true</tt> if classes loaded by this classloader and
0N/A * belonging to the named package or any of its subpackages will
0N/A * have assertions enabled by default, <tt>false</tt> if they will
0N/A * have assertions disabled by default.
0N/A *
0N/A * @since 1.4
0N/A */
1042N/A public void setPackageAssertionStatus(String packageName,
1042N/A boolean enabled) {
1042N/A synchronized (assertionLock) {
1042N/A if (packageAssertionStatus == null)
1042N/A initializeJavaAssertionMaps();
0N/A
1042N/A packageAssertionStatus.put(packageName, enabled);
1042N/A }
0N/A }
0N/A
0N/A /**
0N/A * Sets the desired assertion status for the named top-level class in this
0N/A * class loader and any nested classes contained therein. This setting
0N/A * takes precedence over the class loader's default assertion status, and
0N/A * over any applicable per-package default. This method has no effect if
0N/A * the named class has already been initialized. (Once a class is
0N/A * initialized, its assertion status cannot change.)
0N/A *
0N/A * <p> If the named class is not a top-level class, this invocation will
0N/A * have no effect on the actual assertion status of any class. </p>
0N/A *
0N/A * @param className
0N/A * The fully qualified class name of the top-level class whose
0N/A * assertion status is to be set.
0N/A *
0N/A * @param enabled
0N/A * <tt>true</tt> if the named class is to have assertions
0N/A * enabled when (and if) it is initialized, <tt>false</tt> if the
0N/A * class is to have assertions disabled.
0N/A *
0N/A * @since 1.4
0N/A */
1042N/A public void setClassAssertionStatus(String className, boolean enabled) {
1042N/A synchronized (assertionLock) {
1042N/A if (classAssertionStatus == null)
1042N/A initializeJavaAssertionMaps();
0N/A
1042N/A classAssertionStatus.put(className, enabled);
1042N/A }
0N/A }
0N/A
0N/A /**
0N/A * Sets the default assertion status for this class loader to
0N/A * <tt>false</tt> and discards any package defaults or class assertion
0N/A * status settings associated with the class loader. This method is
0N/A * provided so that class loaders can be made to ignore any command line or
0N/A * persistent assertion status settings and "start with a clean slate."
0N/A * </p>
0N/A *
0N/A * @since 1.4
0N/A */
1042N/A public void clearAssertionStatus() {
0N/A /*
0N/A * Whether or not "Java assertion maps" are initialized, set
0N/A * them to empty maps, effectively ignoring any present settings.
0N/A */
1042N/A synchronized (assertionLock) {
3323N/A classAssertionStatus = new HashMap<>();
3323N/A packageAssertionStatus = new HashMap<>();
1042N/A defaultAssertionStatus = false;
1042N/A }
0N/A }
0N/A
0N/A /**
0N/A * Returns the assertion status that would be assigned to the specified
0N/A * class if it were to be initialized at the time this method is invoked.
0N/A * If the named class has had its assertion status set, the most recent
0N/A * setting will be returned; otherwise, if any package default assertion
0N/A * status pertains to this class, the most recent setting for the most
0N/A * specific pertinent package default assertion status is returned;
0N/A * otherwise, this class loader's default assertion status is returned.
0N/A * </p>
0N/A *
0N/A * @param className
0N/A * The fully qualified class name of the class whose desired
0N/A * assertion status is being queried.
0N/A *
0N/A * @return The desired assertion status of the specified class.
0N/A *
0N/A * @see #setClassAssertionStatus(String, boolean)
0N/A * @see #setPackageAssertionStatus(String, boolean)
0N/A * @see #setDefaultAssertionStatus(boolean)
0N/A *
0N/A * @since 1.4
0N/A */
1042N/A boolean desiredAssertionStatus(String className) {
1042N/A synchronized (assertionLock) {
1042N/A // assert classAssertionStatus != null;
1042N/A // assert packageAssertionStatus != null;
0N/A
1042N/A // Check for a class entry
1042N/A Boolean result = classAssertionStatus.get(className);
0N/A if (result != null)
0N/A return result.booleanValue();
1042N/A
1042N/A // Check for most specific package entry
1042N/A int dotIndex = className.lastIndexOf(".");
1042N/A if (dotIndex < 0) { // default package
1042N/A result = packageAssertionStatus.get(null);
1042N/A if (result != null)
1042N/A return result.booleanValue();
1042N/A }
1042N/A while(dotIndex > 0) {
1042N/A className = className.substring(0, dotIndex);
1042N/A result = packageAssertionStatus.get(className);
1042N/A if (result != null)
1042N/A return result.booleanValue();
1042N/A dotIndex = className.lastIndexOf(".", dotIndex-1);
1042N/A }
1042N/A
1042N/A // Return the classloader default
1042N/A return defaultAssertionStatus;
0N/A }
0N/A }
0N/A
0N/A // Set up the assertions with information provided by the VM.
1042N/A // Note: Should only be called inside a synchronized block
0N/A private void initializeJavaAssertionMaps() {
1042N/A // assert Thread.holdsLock(assertionLock);
0N/A
3323N/A classAssertionStatus = new HashMap<>();
3323N/A packageAssertionStatus = new HashMap<>();
0N/A AssertionStatusDirectives directives = retrieveDirectives();
0N/A
0N/A for(int i = 0; i < directives.classes.length; i++)
0N/A classAssertionStatus.put(directives.classes[i],
28N/A directives.classEnabled[i]);
0N/A
0N/A for(int i = 0; i < directives.packages.length; i++)
0N/A packageAssertionStatus.put(directives.packages[i],
28N/A directives.packageEnabled[i]);
0N/A
0N/A defaultAssertionStatus = directives.deflt;
0N/A }
0N/A
0N/A // Retrieves the assertion directives from the VM.
0N/A private static native AssertionStatusDirectives retrieveDirectives();
0N/A}
0N/A
0N/A
28N/Aclass SystemClassLoaderAction
28N/A implements PrivilegedExceptionAction<ClassLoader> {
0N/A private ClassLoader parent;
0N/A
0N/A SystemClassLoaderAction(ClassLoader parent) {
0N/A this.parent = parent;
0N/A }
0N/A
28N/A public ClassLoader run() throws Exception {
0N/A String cls = System.getProperty("java.system.class.loader");
0N/A if (cls == null) {
0N/A return parent;
0N/A }
0N/A
28N/A Constructor ctor = Class.forName(cls, true, parent)
28N/A .getDeclaredConstructor(new Class[] { ClassLoader.class });
28N/A ClassLoader sys = (ClassLoader) ctor.newInstance(
28N/A new Object[] { parent });
0N/A Thread.currentThread().setContextClassLoader(sys);
0N/A return sys;
0N/A }
0N/A}