src/java.base/share/classes/sun/security/ssl/EphemeralKeyManager.java
author wetmore
Fri, 11 May 2018 15:53:12 -0700
branchJDK-8145252-TLS13-branch
changeset 56542 56aaa6cb3693
parent 47216 71c04702a3d5
child 53734 cb1642ccc732
permissions -rw-r--r--
Initial TLSv1.3 Implementation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
56542
56aaa6cb3693 Initial TLSv1.3 Implementation
wetmore
parents: 47216
diff changeset
     2
 * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.ssl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * The "KeyManager" for ephemeral RSA keys. Ephemeral DH and ECDH keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * are handled by the DHCrypt and ECDHCrypt classes, respectively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * @author  Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
final class EphemeralKeyManager {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    // indices for the keys array below
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 28059
diff changeset
    39
    private static final int INDEX_RSA512 = 0;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 28059
diff changeset
    40
    private static final int INDEX_RSA1024 = 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
     * Current cached RSA KeyPairs. Elements are never null.
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 25859
diff changeset
    44
     * Indexed via the constants above.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private final EphemeralKeyPair[] keys = new EphemeralKeyPair[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        new EphemeralKeyPair(null),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        new EphemeralKeyPair(null),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    EphemeralKeyManager() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * Get a temporary RSA KeyPair.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    KeyPair getRSAKeyPair(boolean export, SecureRandom random) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        int length, index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        if (export) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            length = 512;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            index = INDEX_RSA512;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            length = 1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            index = INDEX_RSA1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        synchronized (keys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            KeyPair kp = keys[index].getKeyPair();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            if (kp == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                    KeyPairGenerator kgen = JsseJce.getKeyPairGenerator("RSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                    kgen.initialize(length, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                    keys[index] = new EphemeralKeyPair(kgen.genKeyPair());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                    kp = keys[index].getKeyPair();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                    // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            return kp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Inner class to handle storage of ephemeral KeyPairs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    private static class EphemeralKeyPair {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        // maximum number of times a KeyPair is used
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 28059
diff changeset
    90
        private static final int MAX_USE = 200;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        // maximum time interval in which the keypair is used (1 hour in ms)
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 28059
diff changeset
    93
        private static final long USE_INTERVAL = 3600*1000;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        private KeyPair keyPair;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        private int uses;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        private long expirationTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        private EphemeralKeyPair(KeyPair keyPair) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            this.keyPair = keyPair;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            expirationTime = System.currentTimeMillis() + USE_INTERVAL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
         * Check if the KeyPair can still be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        private boolean isValid() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            return (keyPair != null) && (uses < MAX_USE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                   && (System.currentTimeMillis() < expirationTime);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
         * Return the KeyPair or null if it is invalid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        private KeyPair getKeyPair() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            if (isValid() == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                keyPair = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            uses++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            return keyPair;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
}