jdk/src/share/classes/sun/misc/SharedSecrets.java
author mullan
Fri, 09 Apr 2010 07:21:46 -0700
changeset 5288 e91651d24b2a
parent 5183 7825d97c4cf2
child 5462 cb614e59f7f9
permissions -rw-r--r--
6909281: 6u19 b99(pit):Error loading first applet in browser session( both FF && IE, windows ): NPE is thrown Summary: Fix for 6633872 causes NPE due to uninitialised ProtectionDomain class Reviewed-by: andrew
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5288
e91651d24b2a 6909281: 6u19 b99(pit):Error loading first applet in browser session( both FF && IE, windows ): NPE is thrown
mullan
parents: 5183
diff changeset
     2
 * Copyright 2002-2010 Sun Microsystems, Inc.  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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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 sun.misc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.jar.JarFile;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.Console;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.FileDescriptor;
5288
e91651d24b2a 6909281: 6u19 b99(pit):Error loading first applet in browser session( both FF && IE, windows ): NPE is thrown
mullan
parents: 5183
diff changeset
    32
import java.security.ProtectionDomain;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/** A repository of "shared secrets", which are a mechanism for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    calling implementation-private methods in another package without
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    using reflection. A package-private class implements a public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    interface and provides the ability to call package-private methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    within that package; the object implementing that interface is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    provided through a third package to which access is restricted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    This framework avoids the primary disadvantage of using reflection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    for this purpose, namely the loss of compile-time checking. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
public class SharedSecrets {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    private static final Unsafe unsafe = Unsafe.getUnsafe();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private static JavaUtilJarAccess javaUtilJarAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private static JavaLangAccess javaLangAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static JavaIOAccess javaIOAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private static JavaNetAccess javaNetAccess;
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    49
    private static JavaNioAccess javaNioAccess;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private static JavaIOFileDescriptorAccess javaIOFileDescriptorAccess;
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
    51
    private static JavaSecurityProtectionDomainAccess javaSecurityProtectionDomainAccess;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    public static JavaUtilJarAccess javaUtilJarAccess() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        if (javaUtilJarAccess == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            // Ensure JarFile is initialized; we know that that class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            // provides the shared secret
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            unsafe.ensureClassInitialized(JarFile.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        return javaUtilJarAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public static void setJavaUtilJarAccess(JavaUtilJarAccess access) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        javaUtilJarAccess = access;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    public static void setJavaLangAccess(JavaLangAccess jla) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        javaLangAccess = jla;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    public static JavaLangAccess getJavaLangAccess() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        return javaLangAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    public static void setJavaNetAccess(JavaNetAccess jna) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        javaNetAccess = jna;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    public static JavaNetAccess getJavaNetAccess() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        return javaNetAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
1143
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    82
    public static void setJavaNioAccess(JavaNioAccess jna) {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    83
        javaNioAccess = jna;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    84
    }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    85
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    86
    public static JavaNioAccess getJavaNioAccess() {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    87
        if (javaNioAccess == null) {
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    88
            // Ensure java.nio.ByteOrder is initialized; we know that
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    89
            // this class initializes java.nio.Bits that provides the
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    90
            // shared secret.
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    91
            unsafe.ensureClassInitialized(java.nio.ByteOrder.class);
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    92
        }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    93
        return javaNioAccess;
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    94
    }
645d4b930f93 6682020: (bf) Support monitoring of direct and mapped buffer usage
alanb
parents: 2
diff changeset
    95
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    public static void setJavaIOAccess(JavaIOAccess jia) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        javaIOAccess = jia;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    public static JavaIOAccess getJavaIOAccess() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        if (javaIOAccess == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            unsafe.ensureClassInitialized(Console.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        return javaIOAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public static void setJavaIOFileDescriptorAccess(JavaIOFileDescriptorAccess jiofda) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        javaIOFileDescriptorAccess = jiofda;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public static JavaIOFileDescriptorAccess getJavaIOFileDescriptorAccess() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (javaIOFileDescriptorAccess == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            unsafe.ensureClassInitialized(FileDescriptor.class);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        return javaIOFileDescriptorAccess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   118
    public static void setJavaSecurityProtectionDomainAccess
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   119
        (JavaSecurityProtectionDomainAccess jspda) {
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   120
            javaSecurityProtectionDomainAccess = jspda;
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   121
    }
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   122
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   123
    public static JavaSecurityProtectionDomainAccess
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   124
        getJavaSecurityProtectionDomainAccess() {
5288
e91651d24b2a 6909281: 6u19 b99(pit):Error loading first applet in browser session( both FF && IE, windows ): NPE is thrown
mullan
parents: 5183
diff changeset
   125
            if (javaSecurityProtectionDomainAccess == null)
e91651d24b2a 6909281: 6u19 b99(pit):Error loading first applet in browser session( both FF && IE, windows ): NPE is thrown
mullan
parents: 5183
diff changeset
   126
                unsafe.ensureClassInitialized(ProtectionDomain.class);
5183
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   127
            return javaSecurityProtectionDomainAccess;
7825d97c4cf2 6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents: 2277
diff changeset
   128
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
}