src/java.base/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java
author wetmore
Fri, 11 May 2018 15:53:12 -0700
branchJDK-8145252-TLS13-branch
changeset 56542 56aaa6cb3693
parent 47216 71c04702a3d5
permissions -rw-r--r--
Initial TLSv1.3 Implementation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
     2
 * Copyright (c) 1999, 2018, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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 sun.security.ssl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.cert.*;
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    31
import java.util.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.net.ssl.*;
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    33
import sun.security.validator.TrustStoreUtil;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.security.validator.Validator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
abstract class TrustManagerFactoryImpl extends TrustManagerFactorySpi {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    private X509TrustManager trustManager = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private boolean isInitialized = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    TrustManagerFactoryImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 10125
diff changeset
    45
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    protected void engineInit(KeyStore ks) throws KeyStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        if (ks == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            try {
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
    49
                trustManager = getInstance(TrustStoreManager.getTrustedCerts());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
            } catch (SecurityException se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                // eat security exceptions but report other throwables
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    52
                if (SSLLogger.isOn && SSLLogger.isOn("trustmanager")) {
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    53
                    SSLLogger.fine(
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    54
                            "SunX509: skip default keystore", se);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            } catch (Error err) {
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    57
                if (SSLLogger.isOn && SSLLogger.isOn("trustmanager")) {
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    58
                    SSLLogger.fine(
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    59
                        "SunX509: skip default keystore", err);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                throw err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            } catch (RuntimeException re) {
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    63
                if (SSLLogger.isOn && SSLLogger.isOn("trustmanager")) {
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    64
                    SSLLogger.fine(
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    65
                        "SunX509: skip default keystor", re);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                throw re;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            } catch (Exception e) {
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    69
                if (SSLLogger.isOn && SSLLogger.isOn("trustmanager")) {
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    70
                    SSLLogger.fine(
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
    71
                        "SunX509: skip default keystore", e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                throw new KeyStoreException(
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
    74
                    "problem accessing trust store", e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            }
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
    76
        } else {
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
    77
            trustManager = getInstance(TrustStoreUtil.getTrustedCerts(ks));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        }
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
    79
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        isInitialized = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
    83
    abstract X509TrustManager getInstance(
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
    84
            Collection<X509Certificate> trustedCerts);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    abstract X509TrustManager getInstance(ManagerFactoryParameters spec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            throws InvalidAlgorithmParameterException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 10125
diff changeset
    89
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    protected void engineInit(ManagerFactoryParameters spec) throws
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        trustManager = getInstance(spec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        isInitialized = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Returns one trust manager for each type of trust material.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 10125
diff changeset
    99
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    protected TrustManager[] engineGetTrustManagers() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        if (!isInitialized) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            throw new IllegalStateException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                        "TrustManagerFactoryImpl is not initialized");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        return new TrustManager[] { trustManager };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Try to get an InputStream based on the file we pass in.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    private static FileInputStream getFileInputStream(final File file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        return AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                new PrivilegedExceptionAction<FileInputStream>() {
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 10125
diff changeset
   115
                    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                    public FileInputStream run() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                            if (file.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                                return new FileInputStream(file);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                        } catch (FileNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                            // couldn't find it, oh well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   131
    public static final class SimpleFactory extends TrustManagerFactoryImpl {
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   132
        @Override
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   133
        X509TrustManager getInstance(
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   134
                Collection<X509Certificate> trustedCerts) {
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   135
            return new X509TrustManagerImpl(
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   136
                    Validator.TYPE_SIMPLE, trustedCerts);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 10125
diff changeset
   139
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        X509TrustManager getInstance(ManagerFactoryParameters spec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                throws InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            throw new InvalidAlgorithmParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                ("SunX509 TrustManagerFactory does not use "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                + "ManagerFactoryParameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   146
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    public static final class PKIXFactory extends TrustManagerFactoryImpl {
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 10125
diff changeset
   149
        @Override
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   150
        X509TrustManager getInstance(
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   151
                Collection<X509Certificate> trustedCerts) {
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   152
            return new X509TrustManagerImpl(Validator.TYPE_PKIX, trustedCerts);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        }
43009
5af9f7aa93e5 8129988: JSSE should create a single instance of the cacerts KeyStore
xuelei
parents: 25859
diff changeset
   154
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 10125
diff changeset
   155
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        X509TrustManager getInstance(ManagerFactoryParameters spec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                throws InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            if (spec instanceof CertPathTrustManagerParameters == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                throw new InvalidAlgorithmParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                    ("Parameters must be CertPathTrustManagerParameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            CertPathParameters params =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                ((CertPathTrustManagerParameters)spec).getParameters();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            if (params instanceof PKIXBuilderParameters == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                throw new InvalidAlgorithmParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                    ("Encapsulated parameters must be PKIXBuilderParameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            PKIXBuilderParameters pkixParams = (PKIXBuilderParameters)params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            return new X509TrustManagerImpl(Validator.TYPE_PKIX, pkixParams);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
}