src/java.base/share/classes/sun/security/ssl/X509KeyManagerImpl.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 43701 jdk/src/java.base/share/classes/sun/security/ssl/X509KeyManagerImpl.java@fe8c324ba97c
child 50768 68fa3d4026ea
child 56542 56aaa6cb3693
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
43220
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
     2
 * Copyright (c) 2004, 2017, 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.lang.ref.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import static java.util.Locale.ENGLISH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.concurrent.atomic.AtomicLong;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.Socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.KeyStore.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.cert.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.cert.Certificate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    41
import sun.security.provider.certpath.AlgorithmChecker;
43701
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
    42
import sun.security.validator.Validator;
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    43
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * The new X509 key manager implementation. The main differences to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * old SunX509 key manager are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *  . it is based around the KeyStore.Builder API. This allows it to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *    other forms of KeyStore protection or password input (e.g. a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *    CallbackHandler) or to have keys within one KeyStore protected by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *    different keys.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *  . it can use multiple KeyStores at the same time.
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 14664
diff changeset
    52
 *  . it is explicitly designed to accommodate KeyStores that change over
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *    the lifetime of the process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *  . it makes an effort to choose the key that matches best, i.e. one that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *    is not expired and has the appropriate certificate extensions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * Note that this code is not explicitly performance optimzied yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * @author  Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
final class X509KeyManagerImpl extends X509ExtendedKeyManager
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        implements X509KeyManager {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private static final Debug debug = Debug.getInstance("ssl");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 30904
diff changeset
    66
    private static final boolean useDebug =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                            (debug != null) && Debug.isOn("keymanager");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    // for unit testing only, set via privileged reflection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private static Date verificationDate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    // list of the builders
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    private final List<Builder> builders;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    // counter to generate unique ids for the aliases
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private final AtomicLong uidCounter;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    // cached entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    private final Map<String,Reference<PrivateKeyEntry>> entryCacheMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    X509KeyManagerImpl(Builder builder) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        this(Collections.singletonList(builder));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    X509KeyManagerImpl(List<Builder> builders) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        this.builders = builders;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        uidCounter = new AtomicLong();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        entryCacheMap = Collections.synchronizedMap
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                        (new SizedMap<String,Reference<PrivateKeyEntry>>());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    // LinkedHashMap with a max size of 10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    // see LinkedHashMap JavaDocs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private static class SizedMap<K,V> extends LinkedHashMap<K,V> {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
    95
        private static final long serialVersionUID = -8211222668790986062L;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
    96
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        @Override protected boolean removeEldestEntry(Map.Entry<K,V> eldest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            return size() > 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    // public methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   106
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public X509Certificate[] getCertificateChain(String alias) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        PrivateKeyEntry entry = getEntry(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        return entry == null ? null :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                (X509Certificate[])entry.getCertificateChain();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   113
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    public PrivateKey getPrivateKey(String alias) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        PrivateKeyEntry entry = getEntry(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        return entry == null ? null : entry.getPrivateKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   119
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    public String chooseClientAlias(String[] keyTypes, Principal[] issuers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            Socket socket) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   122
        return chooseAlias(getKeyTypes(keyTypes), issuers, CheckType.CLIENT,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   123
                        getAlgorithmConstraints(socket));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   126
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    public String chooseEngineClientAlias(String[] keyTypes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            Principal[] issuers, SSLEngine engine) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   129
        return chooseAlias(getKeyTypes(keyTypes), issuers, CheckType.CLIENT,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   130
                        getAlgorithmConstraints(engine));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   133
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    public String chooseServerAlias(String keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            Principal[] issuers, Socket socket) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   136
        return chooseAlias(getKeyTypes(keyType), issuers, CheckType.SERVER,
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   137
            getAlgorithmConstraints(socket),
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   138
            X509TrustManagerImpl.getRequestedServerNames(socket),
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   139
            "HTTPS");    // The SNI HostName is a fully qualified domain name.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   140
                         // The certificate selection scheme for SNI HostName
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   141
                         // is similar to HTTPS endpoint identification scheme
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   142
                         // implemented in this provider.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   143
                         //
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   144
                         // Using HTTPS endpoint identification scheme to guide
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   145
                         // the selection of an appropriate authentication
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   146
                         // certificate according to requested SNI extension.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   147
                         //
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   148
                         // It is not a really HTTPS endpoint identification.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   151
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    public String chooseEngineServerAlias(String keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            Principal[] issuers, SSLEngine engine) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   154
        return chooseAlias(getKeyTypes(keyType), issuers, CheckType.SERVER,
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   155
            getAlgorithmConstraints(engine),
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   156
            X509TrustManagerImpl.getRequestedServerNames(engine),
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   157
            "HTTPS");    // The SNI HostName is a fully qualified domain name.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   158
                         // The certificate selection scheme for SNI HostName
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   159
                         // is similar to HTTPS endpoint identification scheme
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   160
                         // implemented in this provider.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   161
                         //
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   162
                         // Using HTTPS endpoint identification scheme to guide
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   163
                         // the selection of an appropriate authentication
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   164
                         // certificate according to requested SNI extension.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   165
                         //
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   166
                         // It is not a really HTTPS endpoint identification.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   169
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    public String[] getClientAliases(String keyType, Principal[] issuers) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   171
        return getAliases(keyType, issuers, CheckType.CLIENT, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   174
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    public String[] getServerAliases(String keyType, Principal[] issuers) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   176
        return getAliases(keyType, issuers, CheckType.SERVER, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    // implementation private methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   183
    // Gets algorithm constraints of the socket.
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   184
    private AlgorithmConstraints getAlgorithmConstraints(Socket socket) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   185
        if (socket != null && socket.isConnected() &&
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   186
                                        socket instanceof SSLSocket) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   187
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   188
            SSLSocket sslSocket = (SSLSocket)socket;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   189
            SSLSession session = sslSocket.getHandshakeSession();
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   190
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   191
            if (session != null) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   192
                ProtocolVersion protocolVersion =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   193
                    ProtocolVersion.valueOf(session.getProtocol());
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 25859
diff changeset
   194
                if (protocolVersion.useTLS12PlusSpec()) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   195
                    String[] peerSupportedSignAlgs = null;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   196
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   197
                    if (session instanceof ExtendedSSLSession) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   198
                        ExtendedSSLSession extSession =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   199
                            (ExtendedSSLSession)session;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   200
                        peerSupportedSignAlgs =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   201
                            extSession.getPeerSupportedSignatureAlgorithms();
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   202
                    }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   203
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   204
                    return new SSLAlgorithmConstraints(
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   205
                        sslSocket, peerSupportedSignAlgs, true);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   206
                }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   207
            }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   208
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   209
            return new SSLAlgorithmConstraints(sslSocket, true);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   210
        }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   211
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   212
        return new SSLAlgorithmConstraints((SSLSocket)null, true);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   213
    }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   214
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   215
    // Gets algorithm constraints of the engine.
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   216
    private AlgorithmConstraints getAlgorithmConstraints(SSLEngine engine) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   217
        if (engine != null) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   218
            SSLSession session = engine.getHandshakeSession();
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   219
            if (session != null) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   220
                ProtocolVersion protocolVersion =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   221
                    ProtocolVersion.valueOf(session.getProtocol());
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 25859
diff changeset
   222
                if (protocolVersion.useTLS12PlusSpec()) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   223
                    String[] peerSupportedSignAlgs = null;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   224
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   225
                    if (session instanceof ExtendedSSLSession) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   226
                        ExtendedSSLSession extSession =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   227
                            (ExtendedSSLSession)session;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   228
                        peerSupportedSignAlgs =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   229
                            extSession.getPeerSupportedSignatureAlgorithms();
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   230
                    }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   231
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   232
                    return new SSLAlgorithmConstraints(
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   233
                        engine, peerSupportedSignAlgs, true);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   234
                }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   235
            }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   236
        }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   237
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   238
        return new SSLAlgorithmConstraints(engine, true);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   239
    }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   240
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    // we construct the alias we return to JSSE as seen in the code below
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    // a unique id is included to allow us to reliably cache entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    // between the calls to getCertificateChain() and getPrivateKey()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    // even if tokens are inserted or removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    private String makeAlias(EntryStatus entry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        return uidCounter.incrementAndGet() + "." + entry.builderIndex + "."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                + entry.alias;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    private PrivateKeyEntry getEntry(String alias) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        // if the alias is null, return immediately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        if (alias == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        // try to get the entry from cache
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        Reference<PrivateKeyEntry> ref = entryCacheMap.get(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        PrivateKeyEntry entry = (ref != null) ? ref.get() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        if (entry != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            return entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        // parse the alias
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        int firstDot = alias.indexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        int secondDot = alias.indexOf('.', firstDot + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        if ((firstDot == -1) || (secondDot == firstDot)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            // invalid alias
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            int builderIndex = Integer.parseInt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                                (alias.substring(firstDot + 1, secondDot));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            String keyStoreAlias = alias.substring(secondDot + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            Builder builder = builders.get(builderIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
            KeyStore ks = builder.getKeyStore();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            Entry newEntry = ks.getEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                    (keyStoreAlias, builder.getProtectionParameter(alias));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            if (newEntry instanceof PrivateKeyEntry == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                // unexpected type of entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            entry = (PrivateKeyEntry)newEntry;
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   283
            entryCacheMap.put(alias, new SoftReference<PrivateKeyEntry>(entry));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            return entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    // Class to help verify that the public key algorithm (and optionally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    // the signature algorithm) of a certificate matches what we need.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    private static class KeyType {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        final String keyAlgorithm;
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   296
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   297
        // In TLS 1.2, the signature algorithm  has been obsoleted by the
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   298
        // supported_signature_algorithms, and the certificate type no longer
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   299
        // restricts the algorithm used to sign the certificate.
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   300
        // However, because we don't support certificate type checking other
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   301
        // than rsa_sign, dss_sign and ecdsa_sign, we don't have to check the
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   302
        // protocol version here.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        final String sigKeyAlgorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        KeyType(String algorithm) {
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 23010
diff changeset
   306
            int k = algorithm.indexOf('_');
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            if (k == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                keyAlgorithm = algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                sigKeyAlgorithm = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                keyAlgorithm = algorithm.substring(0, k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                sigKeyAlgorithm = algorithm.substring(k + 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        boolean matches(Certificate[] chain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
            if (!chain[0].getPublicKey().getAlgorithm().equals(keyAlgorithm)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            if (sigKeyAlgorithm == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
            if (chain.length > 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                // if possible, check the public key in the issuer cert
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   325
                return sigKeyAlgorithm.equals(
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   326
                        chain[1].getPublicKey().getAlgorithm());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                // Check the signature algorithm of the certificate itself.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                // Look for the "withRSA" in "SHA1withRSA", etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                X509Certificate issuer = (X509Certificate)chain[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                String sigAlgName = issuer.getSigAlgName().toUpperCase(ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                String pattern = "WITH" + sigKeyAlgorithm.toUpperCase(ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                return sigAlgName.contains(pattern);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    private static List<KeyType> getKeyTypes(String ... keyTypes) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   339
        if ((keyTypes == null) ||
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   340
                (keyTypes.length == 0) || (keyTypes[0] == null)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        }
7990
57019dc81b66 7012003: diamond conversion for ssl
smarks
parents: 7043
diff changeset
   343
        List<KeyType> list = new ArrayList<>(keyTypes.length);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        for (String keyType : keyTypes) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            list.add(new KeyType(keyType));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        return list;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Return the best alias that fits the given parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * The algorithm we use is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *   . scan through all the aliases in all builders in order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     *   . as soon as we find a perfect match, return
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   355
     *     (i.e. a match with a cert that has appropriate key usage,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   356
     *      qualified endpoint identity, and is not expired).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *   . if we do not find a perfect match, keep looping and remember
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     *     the imperfect matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *   . at the end, sort the imperfect matches. we prefer expired certs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     *     with appropriate key usage to certs with the wrong key usage.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     *     return the first one of them.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     */
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   363
    private String chooseAlias(List<KeyType> keyTypeList, Principal[] issuers,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   364
            CheckType checkType, AlgorithmConstraints constraints) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   365
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   366
        return chooseAlias(keyTypeList, issuers,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   367
                                    checkType, constraints, null, null);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   368
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   369
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   370
    private String chooseAlias(List<KeyType> keyTypeList, Principal[] issuers,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   371
            CheckType checkType, AlgorithmConstraints constraints,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   372
            List<SNIServerName> requestedServerNames, String idAlgorithm) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   373
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   374
        if (keyTypeList == null || keyTypeList.isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        Set<Principal> issuerSet = getIssuerSet(issuers);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        List<EntryStatus> allResults = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        for (int i = 0, n = builders.size(); i < n; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            try {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   382
                List<EntryStatus> results = getAliases(i, keyTypeList,
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   383
                            issuerSet, false, checkType, constraints,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   384
                            requestedServerNames, idAlgorithm);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                if (results != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                    // the results will either be a single perfect match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                    // or 1 or more imperfect matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                    // if it's a perfect match, return immediately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                    EntryStatus status = results.get(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                    if (status.checkResult == CheckResult.OK) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                        if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                            debug.println("KeyMgr: choosing key: " + status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                        return makeAlias(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
                    if (allResults == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                        allResults = new ArrayList<EntryStatus>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                    allResults.addAll(results);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        if (allResults == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                debug.println("KeyMgr: no matching key found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        Collections.sort(allResults);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            debug.println("KeyMgr: no good matching key found, "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                        + "returning best match out of:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            debug.println(allResults.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        return makeAlias(allResults.get(0));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * Return all aliases that (approximately) fit the parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * These are perfect matches plus imperfect matches (expired certificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * and certificates with the wrong extensions).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * The perfect matches will be first in the array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    public String[] getAliases(String keyType, Principal[] issuers,
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   427
            CheckType checkType, AlgorithmConstraints constraints) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        if (keyType == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        Set<Principal> issuerSet = getIssuerSet(issuers);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        List<KeyType> keyTypeList = getKeyTypes(keyType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        List<EntryStatus> allResults = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        for (int i = 0, n = builders.size(); i < n; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
            try {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   437
                List<EntryStatus> results = getAliases(i, keyTypeList,
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   438
                                    issuerSet, true, checkType, constraints,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   439
                                    null, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                if (results != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                    if (allResults == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                        allResults = new ArrayList<EntryStatus>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
                    allResults.addAll(results);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        }
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   450
        if (allResults == null || allResults.isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
            if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                debug.println("KeyMgr: no matching alias found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        Collections.sort(allResults);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            debug.println("KeyMgr: getting aliases: " + allResults);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        return toAliases(allResults);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    // turn candidate entries into unique aliases we can return to JSSE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    private String[] toAliases(List<EntryStatus> results) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        String[] s = new String[results.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        for (EntryStatus result : results) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            s[i++] = makeAlias(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    // make a Set out of the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    private Set<Principal> getIssuerSet(Principal[] issuers) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        if ((issuers != null) && (issuers.length != 0)) {
7990
57019dc81b66 7012003: diamond conversion for ssl
smarks
parents: 7043
diff changeset
   476
            return new HashSet<>(Arrays.asList(issuers));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    // a candidate match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    // identifies the entry by builder and alias
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    // and includes the result of the certificate check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    private static class EntryStatus implements Comparable<EntryStatus> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        final int builderIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        final int keyIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        final String alias;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        final CheckResult checkResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        EntryStatus(int builderIndex, int keyIndex, String alias,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                Certificate[] chain, CheckResult checkResult) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
            this.builderIndex = builderIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            this.keyIndex = keyIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            this.alias = alias;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
            this.checkResult = checkResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   500
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        public int compareTo(EntryStatus other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
            int result = this.checkResult.compareTo(other.checkResult);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            return (result == 0) ? (this.keyIndex - other.keyIndex) : result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   506
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            String s = alias + " (verified: " + checkResult + ")";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            if (builderIndex == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                return "Builder #" + builderIndex + ", alias: " + s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    // enum for the type of certificate check we want to perform
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
    // (client or server)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
    // also includes the check code itself
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
    private static enum CheckType {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        // enum constant for "no check" (currently not used)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        NONE(Collections.<String>emptySet()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        // enum constant for "tls client" check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        // valid EKU for TLS client: any, tls_client
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        CLIENT(new HashSet<String>(Arrays.asList(new String[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
            "2.5.29.37.0", "1.3.6.1.5.5.7.3.2" }))),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        // enum constant for "tls server" check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        // valid EKU for TLS server: any, tls_server, ns_sgc, ms_sgc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        SERVER(new HashSet<String>(Arrays.asList(new String[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            "2.5.29.37.0", "1.3.6.1.5.5.7.3.1", "2.16.840.1.113730.4.1",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            "1.3.6.1.4.1.311.10.3.3" })));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        // set of valid EKU values for this type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        final Set<String> validEku;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        CheckType(Set<String> validEku) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            this.validEku = validEku;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        private static boolean getBit(boolean[] keyUsage, int bit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            return (bit < keyUsage.length) && keyUsage[bit];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        // check if this certificate is appropriate for this type of use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        // first check extensions, if they match, check expiration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        // note: we may want to move this code into the sun.security.validator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        // package
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   551
        CheckResult check(X509Certificate cert, Date date,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   552
                List<SNIServerName> serverNames, String idAlgorithm) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   553
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
            if (this == NONE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                return CheckResult.OK;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            // check extensions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                // check extended key usage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                List<String> certEku = cert.getExtendedKeyUsage();
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   562
                if ((certEku != null) &&
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   563
                        Collections.disjoint(validEku, certEku)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                    // if extension present and it does not contain any of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                    // the valid EKU OIDs, return extension_mismatch
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                    return CheckResult.EXTENSION_MISMATCH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                // check key usage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                boolean[] ku = cert.getKeyUsage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                if (ku != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                    String algorithm = cert.getPublicKey().getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                    boolean kuSignature = getBit(ku, 0);
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   574
                    switch (algorithm) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   575
                        case "RSA":
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   576
                            // require either signature bit
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   577
                            // or if server also allow key encipherment bit
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   578
                            if (kuSignature == false) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   579
                                if ((this == CLIENT) || (getBit(ku, 2) == false)) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   580
                                    return CheckResult.EXTENSION_MISMATCH;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   581
                                }
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   582
                            }
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   583
                            break;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   584
                        case "DSA":
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   585
                            // require signature bit
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   586
                            if (kuSignature == false) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                                return CheckResult.EXTENSION_MISMATCH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                            }
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   589
                            break;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   590
                        case "DH":
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   591
                            // require keyagreement bit
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   592
                            if (getBit(ku, 4) == false) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   593
                                return CheckResult.EXTENSION_MISMATCH;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   594
                            }
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   595
                            break;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   596
                        case "EC":
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   597
                            // require signature bit
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   598
                            if (kuSignature == false) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   599
                                return CheckResult.EXTENSION_MISMATCH;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   600
                            }
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   601
                            // For servers, also require key agreement.
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   602
                            // This is not totally accurate as the keyAgreement
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   603
                            // bit is only necessary for static ECDH key
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   604
                            // exchange and not ephemeral ECDH. We leave it in
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   605
                            // for now until there are signs that this check
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   606
                            // causes problems for real world EC certificates.
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   607
                            if ((this == SERVER) && (getBit(ku, 4) == false)) {
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   608
                                return CheckResult.EXTENSION_MISMATCH;
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   609
                            }
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 9035
diff changeset
   610
                            break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
            } catch (CertificateException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                // extensions unparseable, return failure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                return CheckResult.EXTENSION_MISMATCH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                cert.checkValidity(date);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            } catch (CertificateException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                return CheckResult.EXPIRED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            }
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   623
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   624
            if (serverNames != null && !serverNames.isEmpty()) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   625
                for (SNIServerName serverName : serverNames) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   626
                    if (serverName.getType() ==
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   627
                                StandardConstants.SNI_HOST_NAME) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   628
                        if (!(serverName instanceof SNIHostName)) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   629
                            try {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   630
                                serverName =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   631
                                    new SNIHostName(serverName.getEncoded());
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   632
                            } catch (IllegalArgumentException iae) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   633
                                // unlikely to happen, just in case ...
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   634
                                if (useDebug) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   635
                                    debug.println(
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   636
                                       "Illegal server name: " + serverName);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   637
                                }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   638
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   639
                                return CheckResult.INSENSITIVE;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   640
                            }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   641
                        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   642
                        String hostname =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   643
                                ((SNIHostName)serverName).getAsciiName();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   644
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   645
                        try {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   646
                            X509TrustManagerImpl.checkIdentity(hostname,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   647
                                                        cert, idAlgorithm);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   648
                        } catch (CertificateException e) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   649
                            if (useDebug) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   650
                                debug.println(
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   651
                                   "Certificate identity does not match " +
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   652
                                   "Server Name Inidication (SNI): " +
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   653
                                   hostname);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   654
                            }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   655
                            return CheckResult.INSENSITIVE;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   656
                        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   657
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   658
                        break;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   659
                    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   660
                }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   661
            }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   662
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   663
            return CheckResult.OK;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
        }
43701
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   665
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   666
        public String getValidator() {
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   667
            if (this == CLIENT) {
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   668
                return Validator.VAR_TLS_CLIENT;
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   669
            } else if (this == SERVER) {
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   670
                return Validator.VAR_TLS_SERVER;
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   671
            }
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   672
            return Validator.VAR_GENERIC;
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   673
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    // enum for the result of the extension check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    // NOTE: the order of the constants is important as they are used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    // for sorting, i.e. OK is best, followed by EXPIRED and EXTENSION_MISMATCH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    private static enum CheckResult {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        OK,                     // ok or not checked
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   681
        INSENSITIVE,            // server name indication insensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        EXPIRED,                // extensions valid but cert expired
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        EXTENSION_MISMATCH,     // extensions invalid (expiration not checked)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * Return a List of all candidate matches in the specified builder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * that fit the parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * We exclude entries in the KeyStore if they are not:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     *  . private key entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     *  . the certificates are not X509 certificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     *  . the algorithm of the key in the EE cert doesn't match one of keyTypes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     *  . none of the certs is issued by a Principal in issuerSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * Using those entries would not be possible or they would almost
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * certainly be rejected by the peer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * In addition to those checks, we also check the extensions in the EE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * cert and its expiration. Even if there is a mismatch, we include
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * such certificates because they technically work and might be accepted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * by the peer. This leads to more graceful failure and better error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * messages if the cert expires from one day to the next.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * The return values are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     *   . null, if there are no matching entries at all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     *   . if 'findAll' is 'false' and there is a perfect match, a List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     *     with a single element (early return)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     *   . if 'findAll' is 'false' and there is NO perfect match, a List
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     *     with all the imperfect matches (expired, wrong extensions)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     *   . if 'findAll' is 'true', a List with all perfect and imperfect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *     matches
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    private List<EntryStatus> getAliases(int builderIndex,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
            List<KeyType> keyTypes, Set<Principal> issuerSet,
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   714
            boolean findAll, CheckType checkType,
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   715
            AlgorithmConstraints constraints,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   716
            List<SNIServerName> requestedServerNames,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   717
            String idAlgorithm) throws Exception {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   718
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        Builder builder = builders.get(builderIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        KeyStore ks = builder.getKeyStore();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        List<EntryStatus> results = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        Date date = verificationDate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
        boolean preferred = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
        for (Enumeration<String> e = ks.aliases(); e.hasMoreElements(); ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            String alias = e.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            // check if it is a key entry (private key or secret key)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
            if (ks.isKeyEntry(alias) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
            Certificate[] chain = ks.getCertificateChain(alias);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
            if ((chain == null) || (chain.length == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
                // must be secret key entry, ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
            }
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   736
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   737
            boolean incompatible = false;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   738
            for (Certificate cert : chain) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   739
                if (cert instanceof X509Certificate == false) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   740
                    // not an X509Certificate, ignore this alias
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   741
                    incompatible = true;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   742
                    break;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   743
                }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   744
            }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   745
            if (incompatible) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   746
                continue;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   747
            }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   748
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            // check keytype
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
            int keyIndex = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
            int j = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
            for (KeyType keyType : keyTypes) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
                if (keyType.matches(chain)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                    keyIndex = j;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                j++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
            if (keyIndex == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                    debug.println("Ignoring alias " + alias
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                                + ": key algorithm does not match");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
            // check issuers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
            if (issuerSet != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                boolean found = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                for (Certificate cert : chain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
                    X509Certificate xcert = (X509Certificate)cert;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                    if (issuerSet.contains(xcert.getIssuerX500Principal())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                        found = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
                if (found == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                    if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                        debug.println("Ignoring alias " + alias
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                                    + ": issuers do not match");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
            }
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   784
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   785
            // check the algorithm constraints
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   786
            if (constraints != null &&
43701
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   787
                    !conformsToAlgorithmConstraints(constraints, chain,
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   788
                            checkType.getValidator())) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   789
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   790
                if (useDebug) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   791
                    debug.println("Ignoring alias " + alias +
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   792
                            ": certificate list does not conform to " +
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   793
                            "algorithm constraints");
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   794
                }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   795
                continue;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   796
            }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   797
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
            if (date == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                date = new Date();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            CheckResult checkResult =
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   802
                    checkType.check((X509Certificate)chain[0], date,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 10336
diff changeset
   803
                                    requestedServerNames, idAlgorithm);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            EntryStatus status =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
                    new EntryStatus(builderIndex, keyIndex,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                                        alias, chain, checkResult);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
            if (!preferred && checkResult == CheckResult.OK && keyIndex == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
                preferred = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
            if (preferred && (findAll == false)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                // if we have a good match and do not need all matches,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                // return immediately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
                return Collections.singletonList(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                if (results == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
                    results = new ArrayList<EntryStatus>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                results.add(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        return results;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   824
    private static boolean conformsToAlgorithmConstraints(
43701
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   825
            AlgorithmConstraints constraints, Certificate[] chain,
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   826
            String variant) {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   827
43701
fe8c324ba97c 8160655: Fix denyAfter and usage types for security properties
ascarpino
parents: 43220
diff changeset
   828
        AlgorithmChecker checker = new AlgorithmChecker(constraints, null, variant);
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   829
        try {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   830
            checker.init(false);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   831
        } catch (CertPathValidatorException cpve) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   832
            // unlikely to happen
43220
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   833
            if (useDebug) {
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   834
                debug.println(
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   835
                    "Cannot initialize algorithm constraints checker: " + cpve);
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   836
            }
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   837
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   838
            return false;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   839
        }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   840
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   841
        // It is a forward checker, so we need to check from trust to target.
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   842
        for (int i = chain.length - 1; i >= 0; i--) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   843
            Certificate cert = chain[i];
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   844
            try {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   845
                // We don't care about the unresolved critical extensions.
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   846
                checker.check(cert, Collections.<String>emptySet());
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   847
            } catch (CertPathValidatorException cpve) {
43220
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   848
                if (useDebug) {
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   849
                    debug.println("Certificate (" + cert +
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   850
                        ") does not conform to algorithm constraints: " + cpve);
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   851
                }
937cb78b2016 8173066: More verbose debug output for selection of X509 certs
xuelei
parents: 32649
diff changeset
   852
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   853
                return false;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   854
            }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   855
        }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   856
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   857
        return true;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   858
    }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   859
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
}