jdk/src/share/classes/com/sun/jndi/ldap/VersionHelper12.java
author weijun
Thu, 13 Jun 2013 10:21:06 +0800
changeset 20805 ae41216325dd
parent 10324 e28265130e4f
child 23010 6dadb192ad81
permissions -rw-r--r--
8013739: Better LDAP resource management Reviewed-by: ahgross, mchung, xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
10324
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
     2
 * Copyright (c) 1999, 2011, 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: 2623
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: 2623
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: 2623
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2623
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2623
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 com.sun.jndi.ldap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.net.URLClassLoader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.net.MalformedURLException;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    30
import java.security.AccessControlContext;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.PrivilegedAction;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    33
import sun.misc.SharedSecrets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
final class VersionHelper12 extends VersionHelper {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
2623
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    37
    // System property to control whether classes may be loaded from an
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    38
    // arbitrary URL code base.
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    39
    private static final String TRUST_URL_CODEBASE_PROPERTY =
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    40
        "com.sun.jndi.ldap.object.trustURLCodebase";
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    41
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    42
    // Determine whether classes may be loaded from an arbitrary URL code base.
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    43
    private static final String trustURLCodebase =
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    44
        AccessController.doPrivileged(
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    45
            new PrivilegedAction<String>() {
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    46
                public String run() {
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    47
                    return System.getProperty(TRUST_URL_CODEBASE_PROPERTY,
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    48
                            "false");
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    49
                }
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    50
            }
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    51
        );
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    52
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    VersionHelper12() {} // Disallow external from creating one of these.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    ClassLoader getURLClassLoader(String[] url)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        throws MalformedURLException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            ClassLoader parent = getContextClassLoader();
2623
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    58
            /*
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    59
             * Classes may only be loaded from an arbitrary URL code base when
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    60
             * the system property com.sun.jndi.ldap.object.trustURLCodebase
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    61
             * has been set to "true".
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    62
             */
7ff092350529 6737315: LDAP serialized data vulnerability
vinnie
parents: 2
diff changeset
    63
            if (url != null && "true".equalsIgnoreCase(trustURLCodebase)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                return URLClassLoader.newInstance(getUrlArray(url), parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                return parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
10324
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
    70
    Class<?> loadClass(String className) throws ClassNotFoundException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        ClassLoader cl = getContextClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        return Class.forName(className, true, cl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    private ClassLoader getContextClassLoader() {
10324
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
    76
        return AccessController.doPrivileged(
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
    77
            new PrivilegedAction<ClassLoader>() {
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
    78
                public ClassLoader run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                    return Thread.currentThread().getContextClassLoader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        );
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    Thread createThread(final Runnable r) {
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    86
        final AccessControlContext acc = AccessController.getContext();
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    87
        // 4290486: doPrivileged is needed to create a thread in
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    88
        // an environment that restricts "modifyThreadGroup".
10324
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 5506
diff changeset
    89
        return AccessController.doPrivileged(
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    90
                new PrivilegedAction<Thread>() {
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    91
                    public Thread run() {
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    92
                        return SharedSecrets.getJavaLangAccess()
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    93
                                .newThreadWithAcc(r, acc);
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 10324
diff changeset
    94
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        );
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
}