jdk/src/jdk.crypto.pkcs11/share/classes/sun/security/pkcs11/P11TlsMasterSecretGenerator.java
author sundar
Mon, 31 Aug 2015 17:51:02 +0530
changeset 32434 769b3d81ae69
parent 27936 ca9ee8e3d527
child 41123 66eaead2a150
permissions -rw-r--r--
8134731: Function.prototype.apply interacts incorrectly with arguments Reviewed-by: attila, hannesw
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
27936
ca9ee8e3d527 8066638: Suppress deprecation warnings in jdk.crypto module
darcy
parents: 25859
diff changeset
     2
 * Copyright (c) 2005, 2014, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    int version;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    P11TlsMasterSecretGenerator(Token token, String algorithm, long mechanism)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            throws PKCS11Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        this.token = token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        this.algorithm = algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        this.mechanism = mechanism;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    protected void engineInit(SecureRandom random) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        throw new InvalidParameterException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
27936
ca9ee8e3d527 8066638: Suppress deprecation warnings in jdk.crypto module
darcy
parents: 25859
diff changeset
    78
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    protected void engineInit(AlgorithmParameterSpec params,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            SecureRandom random) throws InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (params instanceof TlsMasterSecretParameterSpec == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            throw new InvalidAlgorithmParameterException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        this.spec = (TlsMasterSecretParameterSpec)params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        SecretKey key = spec.getPremasterSecret();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        // algorithm should be either TlsRsaPremasterSecret or TlsPremasterSecret,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        // but we omit the check
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            p11Key = P11SecretKeyFactory.convertKey(token, key, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        } catch (InvalidKeyException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            throw new InvalidAlgorithmParameterException("init() failed", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        version = (spec.getMajorVersion() << 8) | spec.getMinorVersion();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        if ((version < 0x0300) || (version > 0x0302)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            throw new InvalidAlgorithmParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                ("Only SSL 3.0, TLS 1.0, and TLS 1.1 supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        // We assume the token supports the required mechanism. If it does not,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        // generateKey() will fail and the failover should take care of us.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    protected void engineInit(int keysize, SecureRandom random) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        throw new InvalidParameterException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    protected SecretKey engineGenerateKey() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        if (spec == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            throw new IllegalStateException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                ("TlsMasterSecretGenerator must be initialized");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        CK_VERSION ckVersion;
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
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        byte[] clientRandom = spec.getClientRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        byte[] serverRandom = spec.getServerRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        CK_SSL3_RANDOM_DATA random =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                new CK_SSL3_RANDOM_DATA(clientRandom, serverRandom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        CK_SSL3_MASTER_KEY_DERIVE_PARAMS params =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                new CK_SSL3_MASTER_KEY_DERIVE_PARAMS(random, ckVersion);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        Session session = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            session = token.getObjSession();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            CK_ATTRIBUTE[] attributes = token.getAttributes(O_GENERATE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                CKO_SECRET_KEY, CKK_GENERIC_SECRET, new CK_ATTRIBUTE[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            long keyID = token.p11.C_DeriveKey(session.id(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                new CK_MECHANISM(mechanism, params), p11Key.keyID, attributes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            int major, minor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            ckVersion = params.pVersion;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            if (ckVersion == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                major = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                minor = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                major = ckVersion.major;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                minor = ckVersion.minor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            SecretKey key = P11Key.masterSecretKey(session, keyID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                "TlsMasterSecret", 48 << 3, attributes, major, minor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            return key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            throw new ProviderException("Could not generate key", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            token.releaseSession(session);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
}