jdk/src/java.base/share/classes/javax/crypto/JceSecurity.java
author xuelei
Wed, 24 Feb 2016 02:50:14 +0000
changeset 36119 75308cd1bf2c
parent 32649 2ee9017c7597
child 36511 9d0388c6b336
permissions -rw-r--r--
8149417: Use final restricted flag Reviewed-by: mullan, weijun, coffeys
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36119
75308cd1bf2c 8149417: Use final restricted flag
xuelei
parents: 32649
diff changeset
     2
 * Copyright (c) 1997, 2016, 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: 3353
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: 3353
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: 3353
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3353
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3353
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 javax.crypto;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.jar.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.Provider.Service;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.security.jca.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.security.jca.GetInstance.Instance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * This class instantiates implementations of JCE engine classes from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * providers registered with the java.security.Security object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @author Jan Luehe
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @author Sharon Liu
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
final class JceSecurity {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    static final SecureRandom RANDOM = new SecureRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    // The defaultPolicy and exemptPolicy will be set up
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    // in the static initializer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private static CryptoPermissions defaultPolicy = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private static CryptoPermissions exemptPolicy = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    // Map<Provider,?> of the providers we already have verified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    // value == PROVIDER_VERIFIED is successfully verified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    // value is failure cause Exception in error case
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30033
diff changeset
    60
    private static final Map<Provider, Object> verificationResults =
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    61
            new IdentityHashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    // Map<Provider,?> of the providers currently being verified
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30033
diff changeset
    64
    private static final Map<Provider, Object> verifyingProviders =
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    65
            new IdentityHashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
36119
75308cd1bf2c 8149417: Use final restricted flag
xuelei
parents: 32649
diff changeset
    67
    private static final boolean isRestricted;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * Don't let anyone instantiate this.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    private JceSecurity() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        try {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    77
            AccessController.doPrivileged(
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 26861
diff changeset
    78
                new PrivilegedExceptionAction<> () {
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
    79
                    @Override
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
    80
                    public Void run() throws Exception {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    81
                        setupJurisdictionPolicies();
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    82
                        return null;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    83
                    }
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
    84
                }
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
    85
            );
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            isRestricted = defaultPolicy.implies(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
                CryptoAllPermission.INSTANCE) ? false : true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        } catch (Exception e) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    90
            throw new SecurityException(
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    91
                    "Can not initialize cryptographic mechanism", e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
    95
    static Instance getInstance(String type, Class<?> clazz, String algorithm,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            String provider) throws NoSuchAlgorithmException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            NoSuchProviderException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        Service s = GetInstance.getService(type, algorithm, provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        Exception ve = getVerificationResult(s.getProvider());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        if (ve != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            String msg = "JCE cannot authenticate the provider " + provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            throw (NoSuchProviderException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                                new NoSuchProviderException(msg).initCause(ve);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return GetInstance.getInstance(s, clazz);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   108
    static Instance getInstance(String type, Class<?> clazz, String algorithm,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            Provider provider) throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        Service s = GetInstance.getService(type, algorithm, provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        Exception ve = JceSecurity.getVerificationResult(provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (ve != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            String msg = "JCE cannot authenticate the provider "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                + provider.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            throw new SecurityException(msg, ve);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        return GetInstance.getInstance(s, clazz);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   120
    static Instance getInstance(String type, Class<?> clazz, String algorithm)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            throws NoSuchAlgorithmException {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   122
        List<Service> services = GetInstance.getServices(type, algorithm);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        NoSuchAlgorithmException failure = null;
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   124
        for (Service s : services) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            if (canUseProvider(s.getProvider()) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                // allow only signed providers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                Instance instance = GetInstance.getInstance(s, clazz);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                return instance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            } catch (NoSuchAlgorithmException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                failure = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        throw new NoSuchAlgorithmException("Algorithm " + algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                + " not available", failure);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * Verify if the JAR at URL codeBase is a signed exempt application
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * JAR file and returns the permissions bundled with the JAR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @throws Exception on error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    static CryptoPermissions verifyExemptJar(URL codeBase) throws Exception {
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   147
        ProviderVerifier pv = new ProviderVerifier(codeBase, true);
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   148
        pv.verify();
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   149
        return pv.getPermissions();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * Verify if the JAR at URL codeBase is a signed provider JAR file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * @throws Exception on error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     */
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   157
    static void verifyProvider(URL codeBase, Provider p) throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        // Verify the provider JAR file and all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        // supporting JAR files if there are any.
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   160
        ProviderVerifier pv = new ProviderVerifier(codeBase, p, false);
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   161
        pv.verify();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30033
diff changeset
   164
    private static final Object PROVIDER_VERIFIED = Boolean.TRUE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Verify that the provider JAR files are signed properly, which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * means the signer's certificate can be traced back to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * JCE trusted CA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * Return null if ok, failure Exception if verification failed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    static synchronized Exception getVerificationResult(Provider p) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        Object o = verificationResults.get(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        if (o == PROVIDER_VERIFIED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        } else if (o != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            return (Exception)o;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        if (verifyingProviders.get(p) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            // this method is static synchronized, must be recursion
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            // return failure now but do not save the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            return new NoSuchProviderException("Recursion during verification");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            verifyingProviders.put(p, Boolean.FALSE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            URL providerURL = getCodeBase(p.getClass());
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   187
            verifyProvider(providerURL, p);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            // Verified ok, cache result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            verificationResults.put(p, PROVIDER_VERIFIED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            verificationResults.put(p, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            return e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            verifyingProviders.remove(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    // return whether this provider is properly signed and can be used by JCE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    static boolean canUseProvider(Provider p) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        return getVerificationResult(p) == null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    // dummy object to represent null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    private static final URL NULL_URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            NULL_URL = new URL("http://null.sun.com/");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            throw new RuntimeException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    // reference to a Map we use as a cache for codebases
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   216
    private static final Map<Class<?>, URL> codeBaseCacheRef =
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   217
            new WeakHashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    /*
24501
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   220
     * Returns the CodeBase for the given class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     */
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   222
    static URL getCodeBase(final Class<?> clazz) {
24501
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   223
        synchronized (codeBaseCacheRef) {
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   224
            URL url = codeBaseCacheRef.get(clazz);
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   225
            if (url == null) {
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   226
                url = AccessController.doPrivileged(
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 26861
diff changeset
   227
                    new PrivilegedAction<>() {
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   228
                        @Override
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   229
                        public URL run() {
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   230
                            ProtectionDomain pd = clazz.getProtectionDomain();
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   231
                            if (pd != null) {
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   232
                                CodeSource cs = pd.getCodeSource();
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   233
                                if (cs != null) {
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   234
                                    return cs.getLocation();
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   235
                                }
24501
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   236
                            }
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   237
                            return NULL_URL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                        }
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   239
                    });
24501
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   240
                codeBaseCacheRef.put(clazz, url);
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   241
            }
767c30e88a61 8028627: Unsynchronized code path from javax.crypto.Cipher to the WeakHashMap used by JceSecurity to store codebase mappings
robm
parents: 10336
diff changeset
   242
            return (url == NULL_URL) ? null : url;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    private static void setupJurisdictionPolicies() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        String javaHomeDir = System.getProperty("java.home");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        String sep = File.separator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        String pathToPolicyJar = javaHomeDir + sep + "lib" + sep +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            "security" + sep;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        File exportJar = new File(pathToPolicyJar, "US_export_policy.jar");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        File importJar = new File(pathToPolicyJar, "local_policy.jar");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        URL jceCipherURL = ClassLoader.getSystemResource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                ("javax/crypto/Cipher.class");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        if ((jceCipherURL == null) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                !exportJar.exists() || !importJar.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            throw new SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                                ("Cannot locate policy or framework files!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        // Read jurisdiction policies.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        CryptoPermissions defaultExport = new CryptoPermissions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        CryptoPermissions exemptExport = new CryptoPermissions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        loadPolicies(exportJar, defaultExport, exemptExport);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        CryptoPermissions defaultImport = new CryptoPermissions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        CryptoPermissions exemptImport = new CryptoPermissions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        loadPolicies(importJar, defaultImport, exemptImport);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        // Merge the export and import policies for default applications.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        if (defaultExport.isEmpty() || defaultImport.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            throw new SecurityException("Missing mandatory jurisdiction " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                                        "policy files");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        defaultPolicy = defaultExport.getMinimum(defaultImport);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        // Merge the export and import policies for exempt applications.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        if (exemptExport.isEmpty())  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            exemptPolicy = exemptImport.isEmpty() ? null : exemptImport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            exemptPolicy = exemptExport.getMinimum(exemptImport);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * Load the policies from the specified file. Also checks that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * policies are correctly signed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    private static void loadPolicies(File jarPathName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                                     CryptoPermissions defaultPolicy,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                                     CryptoPermissions exemptPolicy)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        JarFile jf = new JarFile(jarPathName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   298
        Enumeration<JarEntry> entries = jf.entries();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        while (entries.hasMoreElements()) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   300
            JarEntry je = entries.nextElement();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            InputStream is = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                if (je.getName().startsWith("default_")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                    is = jf.getInputStream(je);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                    defaultPolicy.load(is);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                } else if (je.getName().startsWith("exempt_")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                    is = jf.getInputStream(je);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                    exemptPolicy.load(is);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                if (is != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                    is.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            // Enforce the signer restraint, i.e. signer of JCE framework
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            // jar should also be the signer of the two jurisdiction policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            // jar files.
26861
47dde7f5cf36 8058845: Update JCE environment for build improvements
wetmore
parents: 25859
diff changeset
   321
            ProviderVerifier.verifyPolicySigned(je.getCertificates());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        // Close and nullify the JarFile reference to help GC.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        jf.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        jf = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    static CryptoPermissions getDefaultPolicy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        return defaultPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    static CryptoPermissions getExemptPolicy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        return exemptPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    static boolean isRestricted() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        return isRestricted;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
}