src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11TlsMasterSecretGenerator.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 43248 jdk/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11TlsMasterSecretGenerator.java@5e15de85a1a0
child 51800 bccd9966f1ed
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
/*
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
     2
 * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 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.pkcs11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.spec.AlgorithmParameterSpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.crypto.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.crypto.spec.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.security.internal.spec.TlsMasterSecretParameterSpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import static sun.security.pkcs11.TemplateManager.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.security.pkcs11.wrapper.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import static sun.security.pkcs11.wrapper.PKCS11Constants.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * KeyGenerator for the SSL/TLS master secret.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @author  Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @since   1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
public final class P11TlsMasterSecretGenerator extends KeyGeneratorSpi {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private final static String MSG = "TlsMasterSecretGenerator must be "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        + "initialized using a TlsMasterSecretParameterSpec";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // token instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private final Token token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    // algorithm name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private final String algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    // mechanism id
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private long mechanism;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
27936
ca9ee8e3d527 8066638: Suppress deprecation warnings in jdk.crypto module
darcy
parents: 25859
diff changeset
    60
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    private TlsMasterSecretParameterSpec spec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    private P11Key p11Key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    64
    CK_VERSION ckVersion;
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    65
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    66
    // whether SSLv3 is supported
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    67
    private final boolean supportSSLv3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    P11TlsMasterSecretGenerator(Token token, String algorithm, long mechanism)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            throws PKCS11Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        this.token = token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        this.algorithm = algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        this.mechanism = mechanism;
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    75
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    76
        // Given the current lookup order specified in SunPKCS11.java, if
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    77
        // CKM_SSL3_MASTER_KEY_DERIVE is not used to construct this object,
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    78
        // it means that this mech is disabled or unsupported.
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    79
        supportSSLv3 = (mechanism == CKM_SSL3_MASTER_KEY_DERIVE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    protected void engineInit(SecureRandom random) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        throw new InvalidParameterException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
27936
ca9ee8e3d527 8066638: Suppress deprecation warnings in jdk.crypto module
darcy
parents: 25859
diff changeset
    86
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    protected void engineInit(AlgorithmParameterSpec params,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            SecureRandom random) throws InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        if (params instanceof TlsMasterSecretParameterSpec == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            throw new InvalidAlgorithmParameterException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        }
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    92
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    93
        TlsMasterSecretParameterSpec spec = (TlsMasterSecretParameterSpec)params;
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    94
        int version = (spec.getMajorVersion() << 8) | spec.getMinorVersion();
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    95
        if ((version == 0x0300 && !supportSSLv3) || (version < 0x0300) ||
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    96
            (version > 0x0302)) {
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    97
             throw new InvalidAlgorithmParameterException
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    98
                    ("Only" + (supportSSLv3? " SSL 3.0,": "") +
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    99
                     " TLS 1.0, and TLS 1.1 are supported (0x" +
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   100
                     Integer.toHexString(version) + ")");
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   101
        }
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   102
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        SecretKey key = spec.getPremasterSecret();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        // algorithm should be either TlsRsaPremasterSecret or TlsPremasterSecret,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        // but we omit the check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            p11Key = P11SecretKeyFactory.convertKey(token, key, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        } catch (InvalidKeyException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            throw new InvalidAlgorithmParameterException("init() failed", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   111
        this.spec = spec;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (p11Key.getAlgorithm().equals("TlsRsaPremasterSecret")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            mechanism = (version == 0x0300) ? CKM_SSL3_MASTER_KEY_DERIVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                                             : CKM_TLS_MASTER_KEY_DERIVE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            ckVersion = new CK_VERSION(0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            // Note: we use DH for all non-RSA premaster secrets. That includes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            // Kerberos. That should not be a problem because master secret
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            // calculation is always a straightforward application of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            // TLS PRF (or the SSL equivalent).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            // The only thing special about RSA master secret calculation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            // that it extracts the version numbers from the premaster secret.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            mechanism = (version == 0x0300) ? CKM_SSL3_MASTER_KEY_DERIVE_DH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                                             : CKM_TLS_MASTER_KEY_DERIVE_DH;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            ckVersion = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        }
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   127
    }
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   128
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   129
    protected void engineInit(int keysize, SecureRandom random) {
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   130
        throw new InvalidParameterException(MSG);
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   131
    }
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   132
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   133
    protected SecretKey engineGenerateKey() {
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   134
        if (spec == null) {
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   135
            throw new IllegalStateException
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   136
                ("TlsMasterSecretGenerator must be initialized");
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   137
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        byte[] clientRandom = spec.getClientRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        byte[] serverRandom = spec.getServerRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        CK_SSL3_RANDOM_DATA random =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                new CK_SSL3_RANDOM_DATA(clientRandom, serverRandom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        CK_SSL3_MASTER_KEY_DERIVE_PARAMS params =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                new CK_SSL3_MASTER_KEY_DERIVE_PARAMS(random, ckVersion);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        Session session = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            session = token.getObjSession();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            CK_ATTRIBUTE[] attributes = token.getAttributes(O_GENERATE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                CKO_SECRET_KEY, CKK_GENERIC_SECRET, new CK_ATTRIBUTE[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            long keyID = token.p11.C_DeriveKey(session.id(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                new CK_MECHANISM(mechanism, params), p11Key.keyID, attributes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            int major, minor;
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   153
            if (params.pVersion == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                major = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                minor = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            } else {
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   157
                major = params.pVersion.major;
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   158
                minor = params.pVersion.minor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            SecretKey key = P11Key.masterSecretKey(session, keyID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                "TlsMasterSecret", 48 << 3, attributes, major, minor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            return key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            throw new ProviderException("Could not generate key", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            token.releaseSession(session);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
}