jdk/src/java.base/share/classes/sun/security/ssl/SSLSocketImpl.java
author xuelei
Wed, 04 Feb 2015 11:13:14 +0000
changeset 31687 d6eb4f028c60
parent 30904 ec0224270f90
child 31918 1f13aceb00d7
permissions -rw-r--r--
8067694: Improved certification checking Reviewed-by: mullan, jnimeh, coffeys, robm, asmotrak, ahgross
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
31687
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
     2
 * Copyright (c) 1996, 2015, 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: 5195
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: 5195
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: 5195
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5195
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5195
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
package sun.security.ssl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
    30
import java.nio.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.GeneralSecurityException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.AccessControlContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.PrivilegedAction;
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
    36
import java.security.AlgorithmConstraints;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.*;
100
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
    38
import java.util.concurrent.TimeUnit;
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
    39
import java.util.concurrent.locks.ReentrantLock;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import javax.crypto.BadPaddingException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import javax.net.ssl.*;
29923
e3ee0996bedb 8042332: Enhance thread contexts in security libraries
valeriep
parents: 28550
diff changeset
    43
import sun.misc.ManagedLocalsThread;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
31687
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
    45
import sun.misc.JavaNetAccess;
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
    46
import sun.misc.SharedSecrets;
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
    47
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * Implementation of an SSL socket.  This is a normal connection type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * socket, implementing SSL over some lower level socket, such as TCP.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * Because it is layered over some lower level socket, it MUST override
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * all default socket methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <P> This API offers a non-traditional option for establishing SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * connections.  You may first establish the connection directly, then pass
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * that connection to the SSL socket constructor with a flag saying which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * role should be taken in the handshake protocol.  (The two ends of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * connection must not choose the same role!)  This allows setup of SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * proxying or tunneling, and also allows the kind of "role reversal"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * that is required for most FTP data transfers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * @see javax.net.ssl.SSLSocket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * @see SSLServerSocket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * @author David Brownell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
final public class SSLSocketImpl extends BaseSSLSocketImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * ERROR HANDLING GUIDELINES
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * (which exceptions to throw and catch and which not to throw and catch)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * . if there is an IOException (SocketException) when accessing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     *   underlying Socket, pass it through
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * . do not throw IOExceptions, throw SSLExceptions (or a subclass)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * . for internal errors (things that indicate a bug in JSSE or a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     *   grossly misconfigured J2RE), throw either an SSLException or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *   a RuntimeException at your convenience.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * . handshaking code (Handshaker or HandshakeMessage) should generally
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *   pass through exceptions, but can handle them if they know what to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *   do.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * . exception chaining should be used for all new code. If you happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *   to touch old code that does not use chaining, you should change it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * . there is a top level exception handler that sits at all entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *   points from application code to SSLSocket read/write code. It
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *   makes sure that all errors are handled (see handleException()).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * . JSSE internal code should generally not call close(), call
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     *   closeInternal().
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * There's a state machine associated with each connection, which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * among other roles serves to negotiate session changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * - START with constructor, until the TCP connection's around.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * - HANDSHAKE picks session parameters before allowing traffic.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *          There are many substates due to sequencing requirements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *          for handshake messages.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * - DATA may be transmitted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * - RENEGOTIATE state allows concurrent data and handshaking
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     *          traffic ("same" substates as HANDSHAKE), and terminates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *          in selection of new session (and connection) parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * - ERROR state immediately precedes abortive disconnect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * - SENT_CLOSE sent a close_notify to the peer. For layered,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *          non-autoclose socket, must now read close_notify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *          from peer before closing the connection. For nonlayered or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     *          non-autoclose socket, close connection and go onto
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     *          cs_CLOSED state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * - CLOSED after sending close_notify alert, & socket is closed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     *          SSL connection objects are not reused.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * - APP_CLOSED once the application calls close(). Then it behaves like
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *          a closed socket, e.g.. getInputStream() throws an Exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * State affects what SSL record types may legally be sent:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * - Handshake ... only in HANDSHAKE and RENEGOTIATE states
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * - App Data ... only in DATA and RENEGOTIATE states
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * - Alert ... in HANDSHAKE, DATA, RENEGOTIATE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Re what may be received:  same as what may be sent, except that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * HandshakeRequest handshaking messages can come from servers even
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * in the application data state, to request entry to RENEGOTIATE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * The state machine within HANDSHAKE and RENEGOTIATE states controls
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * the pending session, not the connection state, until the change
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * cipher spec and "Finished" handshake messages are processed and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * make the "new" session become the current one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * NOTE: details of the SMs always need to be nailed down better.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * The text above illustrates the core ideas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     *                +---->-------+------>--------->-------+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *                |            |                        |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *     <-----<    ^            ^  <-----<               v
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *START>----->HANDSHAKE>----->DATA>----->RENEGOTIATE  SENT_CLOSE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *                v            v               v        |   |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *                |            |               |        |   v
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *                +------------+---------------+        v ERROR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     *                |                                     |   |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     *                v                                     |   |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *               ERROR>------>----->CLOSED<--------<----+-- +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *                                     |
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *                                     v
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *                                 APP_CLOSED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 25859
diff changeset
   152
     * ALSO, note that the purpose of handshaking (renegotiation is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * included) is to assign a different, and perhaps new, session to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * the connection.  The SSLv3 spec is a bit confusing on that new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * protocol feature.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    private static final int    cs_START = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    private static final int    cs_HANDSHAKE = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    private static final int    cs_DATA = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    private static final int    cs_RENEGOTIATE = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    private static final int    cs_ERROR = 4;
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   162
    private static final int    cs_SENT_CLOSE = 5;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    private static final int    cs_CLOSED = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    private static final int    cs_APP_CLOSED = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * Drives the protocol state machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
19223
e27cda06fe6a 8013809: deadlock in SSLSocketImpl between between write and close
xuelei
parents: 16913
diff changeset
   169
    private volatile int        connectionState;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Flag indicating if the next record we receive MUST be a Finished
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * message. Temporarily set during the handshake to ensure that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * a change cipher spec message is followed by a finished message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    private boolean             expectingFinished;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * For improved diagnostics, we detail connection closure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * If the socket is closed (connectionState >= cs_ERROR),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * closeReason != null indicates if the socket was closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * because of an error or because or normal shutdown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    private SSLException        closeReason;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * Per-connection private state that doesn't change when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * session is changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   190
    private ClientAuthType      doClientAuth =
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   191
                                        ClientAuthType.CLIENT_AUTH_NONE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    private boolean             roleIsServer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    private boolean             enableSessionCreation = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    private String              host;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    private boolean             autoClose = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    private AccessControlContext acc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   198
    // The cipher suites enabled for use on this connection.
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   199
    private CipherSuiteList     enabledCipherSuites;
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   200
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   201
    // The endpoint identification protocol
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   202
    private String              identificationProtocol = null;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   203
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   204
    // The cryptographic algorithm constraints
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   205
    private AlgorithmConstraints    algorithmConstraints = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   207
    // The server name indication and matchers
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   208
    List<SNIServerName>         serverNames =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   209
                                    Collections.<SNIServerName>emptyList();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   210
    Collection<SNIMatcher>      sniMatchers =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   211
                                    Collections.<SNIMatcher>emptyList();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   212
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * READ ME * READ ME * READ ME * READ ME * READ ME * READ ME *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * IMPORTANT STUFF TO UNDERSTANDING THE SYNCHRONIZATION ISSUES.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * READ ME * READ ME * READ ME * READ ME * READ ME * READ ME *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * There are several locks here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * The primary lock is the per-instance lock used by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * synchronized(this) and the synchronized methods.  It controls all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * access to things such as the connection state and variables which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * affect handshaking.  If we are inside a synchronized method, we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * can access the state directly, otherwise, we must use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * synchronized equivalents.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * The handshakeLock is used to ensure that only one thread performs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * the *complete initial* handshake.  If someone is handshaking, any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * stray application or startHandshake() requests who find the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * connection state is cs_HANDSHAKE will stall on handshakeLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * until handshaking is done.  Once the handshake is done, we either
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * succeeded or failed, but we can never go back to the cs_HANDSHAKE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * or cs_START state again.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * Note that the read/write() calls here in SSLSocketImpl are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * obviously synchronized.  In fact, it's very nonintuitive, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * requires careful examination of code paths.  Grab some coffee,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * and be careful with any code changes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * There can be only three threads active at a time in the I/O
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * subsection of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     *    1.  startHandshake
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *    2.  AppInputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     *    3.  AppOutputStream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * One thread could call startHandshake().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * AppInputStream/AppOutputStream read() and write() calls are each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * synchronized on 'this' in their respective classes, so only one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * app. thread will be doing a SSLSocketImpl.read() or .write()'s at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * a time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * If handshaking is required (state cs_HANDSHAKE), and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * getConnectionState() for some/all threads returns cs_HANDSHAKE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * only one can grab the handshakeLock, and the rest will stall
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * either on getConnectionState(), or on the handshakeLock if they
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * happen to successfully race through the getConnectionState().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * If a writer is doing the initial handshaking, it must create a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * temporary reader to read the responses from the other side.  As a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * side-effect, the writer's reader will have priority over any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * other reader.  However, the writer's reader is not allowed to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * consume any application data.  When handshakeLock is finally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * released, we either have a cs_DATA connection, or a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * cs_CLOSED/cs_ERROR socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * The writeLock is held while writing on a socket connection and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * also to protect the MAC and cipher for their direction.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * writeLock is package private for Handshaker which holds it while
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * writing the ChangeCipherSpec message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * To avoid the problem of a thread trying to change operational
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * modes on a socket while handshaking is going on, we synchronize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * on 'this'.  If handshaking has not started yet, we tell the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * handshaker to change its mode.  If handshaking has started,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * we simply store that request until the next pending session
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * is created, at which time the new handshaker's state is set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * The readLock is held during readRecord(), which is responsible
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   278
     * for reading an SSLInputRecord, decrypting it, and processing it.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * The readLock ensures that these three steps are done atomically
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   280
     * and that once started, no other thread can block on SSLInputRecord.read.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * This is necessary so that processing of close_notify alerts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * from the peer are handled properly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     */
6856
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   284
    final private Object        handshakeLock = new Object();
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   285
    final ReentrantLock         writeLock = new ReentrantLock();
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   286
    final private Object        readLock = new Object();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   288
    InputRecord                 inputRecord;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   289
    OutputRecord                outputRecord;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    /*
6856
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   292
     * security parameters for secure renegotiation.
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   293
     */
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   294
    private boolean             secureRenegotiation;
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   295
    private byte[]              clientVerifyData;
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   296
    private byte[]              serverVerifyData;
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   297
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   298
    /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * The authentication context holds all information used to establish
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * who this end of the connection is (certificate chains, private keys,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * etc) and who is trusted (e.g. as CAs or websites).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    private SSLContextImpl      sslContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * This connection is one of (potentially) many associated with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * any given session.  The output of the handshake protocol is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * new session ... although all the protocol description talks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * about changing the cipher spec (and it does change), in fact
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * that's incidental since it's done by changing everything that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * is associated with a session at the same time.  (TLS/IETF may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * change that to add client authentication w/o new key exchg.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   315
    private Handshaker                  handshaker;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   316
    private SSLSessionImpl              sess;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   317
    private volatile SSLSessionImpl     handshakeSession;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * If anyone wants to get notified about handshake completions,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * they'll show up on this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    private HashMap<HandshakeCompletedListener, AccessControlContext>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                                                        handshakeListeners;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * Reuse the same internal input/output streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    private InputStream         sockInput;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    private OutputStream        sockOutput;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * These input and output streams block their data in SSL records,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * and usually arrange integrity and privacy protection for those
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * records.  The guts of the SSL protocol are wrapped up in these
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * streams, and in the handshaking that establishes the details of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * that integrity and privacy protection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    private AppInputStream      input;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    private AppOutputStream     output;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /*
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   345
     * The protocol versions enabled for use on this connection.
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   346
     *
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   347
     * Note: we support a pseudo protocol called SSLv2Hello which when
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   348
     * set will result in an SSL v2 Hello being sent with SSL (version 3.0)
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   349
     * or TLS (version 3.1, 3.2, etc.) version info.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    private ProtocolList enabledProtocols;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * The SSL version associated with this connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   356
    private ProtocolVersion     protocolVersion = ProtocolVersion.DEFAULT_TLS;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    /* Class and subclass dynamic debugging support */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    private static final Debug debug = Debug.getInstance("ssl");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   361
    /*
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   362
     * Is it the first application record to write?
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   363
     */
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   364
    private boolean isFirstAppOutputRecord = true;
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   365
12428
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   366
    /*
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   367
     * If AppOutputStream needs to delay writes of small packets, we
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   368
     * will use this to store the data until we actually do the write.
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   369
     */
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   370
    private ByteArrayOutputStream heldRecordBuffer = null;
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   371
19823
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   372
    /*
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   373
     * Whether local cipher suites preference in server side should be
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   374
     * honored during handshaking?
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   375
     */
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   376
    private boolean preferLocalCipherSuites = false;
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   377
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   378
    /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   379
     * The maximum expected network packet size for SSL/TLS/DTLS records.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   380
     */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   381
    private int maximumPacketSize = 0;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   382
31687
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   383
    /*
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   384
     * Is the local name service trustworthy?
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   385
     *
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   386
     * If the local name service is not trustworthy, reverse host name
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   387
     * resolution should not be performed for endpoint identification.
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   388
     */
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   389
    static final boolean trustNameService =
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   390
            Debug.getBooleanProperty("jdk.tls.trustNameService", false);
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
   391
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    // CONSTRUCTORS AND INITIALIZATION CODE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * Constructs an SSL connection to a named host at a specified port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * using the authentication context provided.  This endpoint acts as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * the client, and may rejoin an existing SSL session if appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * @param context authentication context to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * @param host name of the host with which to connect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * @param port number of the server's port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    SSLSocketImpl(SSLContextImpl context, String host, int port)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            throws IOException, UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        this.host = host;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   409
        this.serverNames =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   410
            Utilities.addToSNIServerNameList(this.serverNames, this.host);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        init(context, false);
2068
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
   412
        SocketAddress socketAddress =
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
   413
               host != null ? new InetSocketAddress(host, port) :
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
   414
               new InetSocketAddress(InetAddress.getByName(null), port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        connect(socketAddress, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Constructs an SSL connection to a server at a specified address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * and TCP port, using the authentication context provided.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * endpoint acts as the client, and may rejoin an existing SSL session
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * if appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * @param context authentication context to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * @param address the server's host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * @param port its port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    SSLSocketImpl(SSLContextImpl context, InetAddress host, int port)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        init(context, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        SocketAddress socketAddress = new InetSocketAddress(host, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        connect(socketAddress, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * Constructs an SSL connection to a named host at a specified port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * using the authentication context provided.  This endpoint acts as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * the client, and may rejoin an existing SSL session if appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @param context authentication context to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * @param host name of the host with which to connect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * @param port number of the server's port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * @param localAddr the local address the socket is bound to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * @param localPort the local port the socket is bound to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    SSLSocketImpl(SSLContextImpl context, String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            InetAddress localAddr, int localPort)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            throws IOException, UnknownHostException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        this.host = host;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   453
        this.serverNames =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   454
            Utilities.addToSNIServerNameList(this.serverNames, this.host);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        init(context, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        bind(new InetSocketAddress(localAddr, localPort));
2068
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
   457
        SocketAddress socketAddress =
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
   458
               host != null ? new InetSocketAddress(host, port) :
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
   459
               new InetSocketAddress(InetAddress.getByName(null), port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        connect(socketAddress, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * Constructs an SSL connection to a server at a specified address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * and TCP port, using the authentication context provided.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * endpoint acts as the client, and may rejoin an existing SSL session
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * if appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * @param context authentication context to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @param address the server's host
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @param port its port
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @param localAddr the local address the socket is bound to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @param localPort the local port the socket is bound to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    SSLSocketImpl(SSLContextImpl context, InetAddress host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            InetAddress localAddr, int localPort)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        init(context, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        bind(new InetSocketAddress(localAddr, localPort));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        SocketAddress socketAddress = new InetSocketAddress(host, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        connect(socketAddress, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * Package-private constructor used ONLY by SSLServerSocket.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * java.net package accepts the TCP connection after this call is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * made.  This just initializes handshake state to use "server mode",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * giving control over the use of SSL client authentication.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    SSLSocketImpl(SSLContextImpl context, boolean serverMode,
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   493
            CipherSuiteList suites, ClientAuthType clientAuth,
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   494
            boolean sessionCreation, ProtocolList protocols,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   495
            String identificationProtocol,
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   496
            AlgorithmConstraints algorithmConstraints,
19823
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   497
            Collection<SNIMatcher> sniMatchers,
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   498
            boolean preferLocalCipherSuites) throws IOException {
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   499
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        doClientAuth = clientAuth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        enableSessionCreation = sessionCreation;
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   503
        this.identificationProtocol = identificationProtocol;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   504
        this.algorithmConstraints = algorithmConstraints;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   505
        this.sniMatchers = sniMatchers;
19823
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
   506
        this.preferLocalCipherSuites = preferLocalCipherSuites;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        init(context, serverMode);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
         * Override what was picked out for us.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        enabledCipherSuites = suites;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        enabledProtocols = protocols;
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
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * Package-private constructor used to instantiate an unconnected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * socket. The java.net package will connect it, either when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * connect() call is made by the application.  This instance is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * meant to set handshake state to use "client mode".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
    SSLSocketImpl(SSLContextImpl context) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        init(context, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * Layer SSL traffic over an existing connection, rather than creating
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * a new connection.  The existing connection may be used only for SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * traffic (using this SSLSocket) until the SSLSocket.close() call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * returns. However, if a protocol error is detected, that existing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * connection is automatically closed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * <P> This particular constructor always uses the socket in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * role of an SSL client. It may be useful in cases which start
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * using SSL after some initial data transfers, for example in some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * SSL tunneling applications or as part of some kinds of application
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * protocols which negotiate use of a SSL based security.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * @param sock the existing connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * @param context the authentication context to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    SSLSocketImpl(SSLContextImpl context, Socket sock, String host,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            int port, boolean autoClose) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        super(sock);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
        // We always layer over a connected socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        if (!sock.isConnected()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            throw new SocketException("Underlying socket is not connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        this.host = host;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   553
        this.serverNames =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   554
            Utilities.addToSNIServerNameList(this.serverNames, this.host);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        init(context, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        this.autoClose = autoClose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        doneConnect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    /**
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   561
     * Creates a server mode {@link Socket} layered over an
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   562
     * existing connected socket, and is able to read data which has
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   563
     * already been consumed/removed from the {@link Socket}'s
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   564
     * underlying {@link InputStream}.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   565
     */
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   566
    SSLSocketImpl(SSLContextImpl context, Socket sock,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   567
            InputStream consumed, boolean autoClose) throws IOException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   568
        super(sock, consumed);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   569
        // We always layer over a connected socket
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   570
        if (!sock.isConnected()) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   571
            throw new SocketException("Underlying socket is not connected");
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   572
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   573
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   574
        // In server mode, it is not necessary to set host and serverNames.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   575
        // Otherwise, would require a reverse DNS lookup to get the hostname.
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   576
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   577
        init(context, true);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   578
        this.autoClose = autoClose;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   579
        doneConnect();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   580
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   581
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   582
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * Initializes the client socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
    private void init(SSLContextImpl context, boolean isServer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        sslContext = context;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        sess = SSLSessionImpl.nullSession;
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
   588
        handshakeSession = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
         * role is as specified, state is START until after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
         * the low level connection's established.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        roleIsServer = isServer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        connectionState = cs_START;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
6856
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   597
        // initial security parameters for secure renegotiation
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   598
        secureRenegotiation = false;
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   599
        clientVerifyData = new byte[0];
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   600
        serverVerifyData = new byte[0];
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
   601
9246
c459f79af46b 6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents: 7043
diff changeset
   602
        enabledCipherSuites =
c459f79af46b 6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents: 7043
diff changeset
   603
                sslContext.getDefaultCipherSuiteList(roleIsServer);
c459f79af46b 6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents: 7043
diff changeset
   604
        enabledProtocols =
c459f79af46b 6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents: 7043
diff changeset
   605
                sslContext.getDefaultProtocolList(roleIsServer);
c459f79af46b 6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents: 7043
diff changeset
   606
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   607
        inputRecord = new SSLSocketInputRecord();;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   608
        outputRecord = new SSLSocketOutputRecord();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   609
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   610
        maximumPacketSize = outputRecord.getMaxPacketSize();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        // save the acc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        acc = AccessController.getContext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
        input = new AppInputStream(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        output = new AppOutputStream(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * Connects this socket to the server with a specified timeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * This method is either called on an unconnected SSLSocketImpl by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * application, or it is called in the constructor of a regular
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * SSLSocketImpl. If we are layering on top on another socket, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * this method should not be called, because we assume that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * underlying socket is already connected by the time it is passed to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * us.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * @param   endpoint the <code>SocketAddress</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * @param   timeout  the timeout value to be used, 0 is no timeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * @throws  IOException if an error occurs during the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * @throws  SocketTimeoutException if timeout expires before connecting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   635
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    public void connect(SocketAddress endpoint, int timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   639
        if (isLayered()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            throw new SocketException("Already connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        if (!(endpoint instanceof InetSocketAddress)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
            throw new SocketException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                                  "Cannot handle non-Inet socket addresses.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        super.connect(endpoint, timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        doneConnect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * Initialize the handshaker and socket streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * Called by connect, the layered constructor, and SSLServerSocket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    void doneConnect() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
         * Save the input and output streams.  May be done only after
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
         * java.net actually connects using the socket "self", else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
         * we get some pretty bizarre failure modes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
         */
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   663
        sockInput = super.getInputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
   664
        sockOutput = super.getOutputStream();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   666
        inputRecord.setDeliverStream(sockOutput);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   667
        outputRecord.setDeliverStream(sockOutput);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   668
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
         * Move to handshaking state, with pending session initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
         * to defaults and the appropriate kind of handshaker set up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        initHandshaker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    synchronized private int getConnectionState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        return connectionState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    synchronized private void setConnectionState(int state) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        connectionState = state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    AccessControlContext getAcc() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        return acc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    // READING AND WRITING RECORDS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
    /*
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   693
     * Application data record output.
12428
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   694
     *
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   695
     * Application data can't be sent until the first handshake establishes
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   696
     * a session.
12428
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 11026
diff changeset
   697
     */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   698
    void writeRecord(byte[] source, int offset, int length) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
         * The loop is in case of HANDSHAKE --> ERROR transitions, etc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
         */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   702
        // Don't bother to check the emptiness of source applicatoin data
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   703
        // before the security connection established.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   704
        for (boolean readyForApp = false; !readyForApp;) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
             * Not all states support passing application data.  We
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
             * synchronize access to the connection state, so that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
             * synchronous handshakes can complete cleanly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            switch (getConnectionState()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   712
                /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   713
                 * We've deferred the initial handshaking till just now,
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   714
                 * when presumably a thread's decided it's OK to block for
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   715
                 * longish periods of time for I/O purposes (as well as
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   716
                 * configured the cipher suites it wants to use).
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   717
                 */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   718
                case cs_HANDSHAKE:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   719
                    performInitialHandshake();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   720
                    break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   722
                case cs_DATA:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   723
                case cs_RENEGOTIATE:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   724
                    readyForApp = true;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   725
                    break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   727
                case cs_ERROR:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   728
                    fatal(Alerts.alert_close_notify,
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   729
                            "error while writing to socket");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   730
                    break; // dummy
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   732
                case cs_SENT_CLOSE:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   733
                case cs_CLOSED:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   734
                case cs_APP_CLOSED:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   735
                    // we should never get here (check in AppOutputStream)
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   736
                    // this is just a fallback
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   737
                    if (closeReason != null) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   738
                        throw closeReason;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   739
                    } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   740
                        throw new SocketException("Socket closed");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   741
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   743
                /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   744
                 * Else something's goofy in this state machine's use.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   745
                 */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   746
                default:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   747
                    throw new SSLProtocolException(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   748
                            "State error, send app data");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        // Don't bother to really write empty records.  We went this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        // far to drive the handshake machinery, for correctness; not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        // writing empty records improves performance by cutting CPU
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        // time and network resource usage.  However, some protocol
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        // implementations are fragile and don't like to see empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        // records, so this also increases robustness.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        //
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   760
        if (length > 0) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   761
            writeLock.lock();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   762
            try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   763
                outputRecord.deliver(source, offset, length);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   764
            } catch (SSLHandshakeException she) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   765
                // may be record sequence number overflow
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   766
                fatal(Alerts.alert_handshake_failure, she);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   767
            } catch (IOException e) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   768
                fatal(Alerts.alert_unexpected_message, e);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   769
            } finally {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   770
                writeLock.unlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        }
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   773
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   774
        /*
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   775
         * Check the sequence number state
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   776
         *
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   777
         * Note that in order to maintain the connection I/O
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   778
         * properly, we check the sequence number after the last
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   779
         * record writing process. As we request renegotiation
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   780
         * or close the connection for wrapped sequence number
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   781
         * when there is enough sequence number space left to
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   782
         * handle a few more records, so the sequence number
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   783
         * of the last record cannot be wrapped.
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   784
         *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   785
         * Don't bother to kickstart the renegotiation when the
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   786
         * local is asking for it.
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
   787
         */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   788
        if ((connectionState == cs_DATA) && outputRecord.seqNumIsHuge()) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   789
            /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   790
             * Ask for renegotiation when need to renew sequence number.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   791
             *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   792
             * Don't bother to kickstart the renegotiation when the local is
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   793
             * asking for it.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   794
             */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   795
            if (debug != null && Debug.isOn("ssl")) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   796
                System.out.println(Thread.currentThread().getName() +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   797
                        ", request renegotiation " +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   798
                        "to avoid sequence number overflow");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   799
            }
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   800
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   801
            startHandshake();
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   802
        }
100
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
   803
    }
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
   804
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   805
    /*
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   806
     * Alert record output.
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   807
     */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   808
    void writeAlert(byte level, byte description) throws IOException {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   809
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   810
        // If the record is a close notify alert, we need to honor
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   811
        // socket option SO_LINGER. Note that we will try to send
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   812
        // the close notify even if the SO_LINGER set to zero.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   813
        if ((description == Alerts.alert_close_notify) && getSoLinger() >= 0) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   814
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   815
            // keep and clear the current thread interruption status.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   816
            boolean interrupted = Thread.interrupted();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   817
            try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   818
                if (writeLock.tryLock(getSoLinger(), TimeUnit.SECONDS)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   819
                    try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   820
                        outputRecord.encodeAlert(level, description);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   821
                    } finally {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   822
                        writeLock.unlock();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   823
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   824
                } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   825
                    SSLException ssle = new SSLException(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   826
                            "SO_LINGER timeout," +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   827
                            " close_notify message cannot be sent.");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   828
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   829
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   830
                    // For layered, non-autoclose sockets, we are not
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   831
                    // able to bring them into a usable state, so we
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   832
                    // treat it as fatal error.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   833
                    if (isLayered() && !autoClose) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   834
                        // Note that the alert description is
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   835
                        // specified as -1, so no message will be send
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   836
                        // to peer anymore.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   837
                        fatal((byte)(-1), ssle);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   838
                    } else if ((debug != null) && Debug.isOn("ssl")) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   839
                        System.out.println(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   840
                            Thread.currentThread().getName() +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   841
                            ", received Exception: " + ssle);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   842
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   843
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   844
                    // RFC2246 requires that the session becomes
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   845
                    // unresumable if any connection is terminated
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   846
                    // without proper close_notify messages with
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   847
                    // level equal to warning.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   848
                    //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   849
                    // RFC4346 no longer requires that a session not be
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   850
                    // resumed if failure to properly close a connection.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   851
                    //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   852
                    // We choose to make the session unresumable if
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   853
                    // failed to send the close_notify message.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   854
                    //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   855
                    sess.invalidate();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   856
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   857
            } catch (InterruptedException ie) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   858
                // keep interrupted status
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   859
                interrupted = true;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   860
            }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   861
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   862
            // restore the interrupted status
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   863
            if (interrupted) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   864
                Thread.currentThread().interrupt();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   865
            }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   866
        } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   867
            writeLock.lock();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   868
            try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   869
                outputRecord.encodeAlert(level, description);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   870
            } finally {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   871
                writeLock.unlock();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   872
            }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   873
        }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   874
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   875
        // Don't bother to check sequence number overlap here.  If sequence
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   876
        // number is huge, there should be enough sequence number space to
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   877
        // request renegotiation in next application data read and write.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   878
    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   879
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   880
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   881
    int bytesInCompletePacket() throws IOException {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   882
        if (getConnectionState() == cs_HANDSHAKE) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   883
            performInitialHandshake();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   884
        }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   885
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   886
        synchronized (readLock) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   887
            int state = getConnectionState();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   888
            if ((state == cs_CLOSED) ||
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   889
                    (state == cs_ERROR) || (state == cs_APP_CLOSED)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   890
                return -1;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   891
            }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   892
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   893
            try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   894
                return inputRecord.bytesInCompletePacket(sockInput);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   895
            } catch (EOFException eofe) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   896
                boolean handshaking = (connectionState <= cs_HANDSHAKE);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   897
                boolean rethrow = requireCloseNotify || handshaking;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   898
                if ((debug != null) && Debug.isOn("ssl")) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   899
                    System.out.println(Thread.currentThread().getName() +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   900
                        ", received EOFException: "
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   901
                        + (rethrow ? "error" : "ignored"));
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   902
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   903
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   904
                if (!rethrow) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   905
                    // treat as if we had received a close_notify
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   906
                    closeInternal(false);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   907
                } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   908
                    SSLException e;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   909
                    if (handshaking) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   910
                        e = new SSLHandshakeException(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   911
                            "Remote host terminated the handshake");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   912
                    } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   913
                        e = new SSLProtocolException(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   914
                            "Remote host terminated the handshake");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   915
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   916
                    e.initCause(eofe);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   917
                    throw e;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   918
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   919
            }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   920
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   921
            return -1;
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   922
        }
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 9514
diff changeset
   923
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   925
    // the caller have synchronized readLock
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   926
    void expectingFinishFlight() {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   927
        inputRecord.expectingFinishFlight();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   928
    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   929
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
    /*
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   931
     * Read an application data record.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   932
     *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   933
     * Alerts and handshake messages are internally handled directly.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
     */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   935
    int readRecord(ByteBuffer buffer) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        if (getConnectionState() == cs_HANDSHAKE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
            performInitialHandshake();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   939
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   940
        return readRecord(buffer, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   943
    /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   944
     * Read a record, no application data input required.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   945
     *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   946
     * Alerts and handshake messages are internally handled directly.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   947
     */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   948
    int readRecord(boolean needAppData) throws IOException {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   949
        return readRecord(null, needAppData);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   950
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     * Clear the pipeline of records from the peer, optionally returning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     * application data.   Caller is responsible for knowing that it's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     * possible to do this kind of clearing, if they don't want app
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     * data -- e.g. since it's the initial SSL handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     * Don't synchronize (this) during a blocking read() since it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
     * protects data which is accessed on the write side as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
     */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   961
    private int readRecord(ByteBuffer buffer, boolean needAppData)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        int state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   965
        // readLock protects reading and processing of an SSLInputRecord.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        // It keeps the reading from sockInput and processing of the record
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        // atomic so that no two threads can be blocked on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        // read from the same input stream at the same time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        // This is required for example when a reader thread is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
        // blocked on the read and another thread is trying to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        // close the socket. For a non-autoclose, layered socket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        // the thread performing the close needs to read the close_notify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
        // Use readLock instead of 'this' for locking because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
        // 'this' also protects data accessed during writing.
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   976
        synchronized (readLock) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
            /*
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   978
             * Read and handle records ... return application data
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   979
             * ONLY if it's needed.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
             */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   981
            Plaintext plainText = null;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   982
            while (((state = getConnectionState()) != cs_CLOSED) &&
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   983
                    (state != cs_ERROR) && (state != cs_APP_CLOSED)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   984
                // clean the buffer
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   985
                if (buffer != null) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   986
                    buffer.clear();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   987
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   989
                /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   990
                 * Read a record ... maybe emitting an alert if we get a
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   991
                 * comprehensible but unsupported "hello" message during
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   992
                 * format checking (e.g. V2).
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   993
                 */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   994
                try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   995
                    plainText = inputRecord.decode(sockInput, buffer);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   996
                } catch (BadPaddingException bpe) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   997
                    byte alertType = (state != cs_DATA) ?
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   998
                            Alerts.alert_handshake_failure :
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
   999
                            Alerts.alert_bad_record_mac;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1000
                    fatal(alertType, bpe.getMessage(), bpe);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1001
                } catch (SSLProtocolException spe) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1002
                    try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1003
                        fatal(Alerts.alert_unexpected_message, spe);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1004
                    } catch (IOException x) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1005
                        // discard this exception, throw the original exception
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1006
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1007
                    throw spe;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1008
                } catch (SSLHandshakeException she) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1009
                    // may be record sequence number overflow
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1010
                    fatal(Alerts.alert_handshake_failure, she);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1011
                } catch (EOFException eof) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1012
                    boolean handshaking = (connectionState <= cs_HANDSHAKE);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1013
                    boolean rethrow = requireCloseNotify || handshaking;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1014
                    if ((debug != null) && Debug.isOn("ssl")) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1015
                        System.out.println(Thread.currentThread().getName() +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1016
                            ", received EOFException: "
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1017
                            + (rethrow ? "error" : "ignored"));
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1018
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1019
                    if (rethrow) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1020
                        SSLException e;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1021
                        if (handshaking) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1022
                            e = new SSLHandshakeException(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1023
                                    "Remote host terminated the handshake");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1024
                        } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1025
                            e = new SSLProtocolException(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1026
                                    "Remote host terminated the connection");
5182
62836694baeb 6898739: TLS renegotiation issue
xuelei
parents: 2068
diff changeset
  1027
                        }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1028
                        e.initCause(eof);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1029
                        throw e;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1030
                    } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1031
                        // treat as if we had received a close_notify
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1032
                        closeInternal(false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
                    }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1035
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1036
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1037
                // PlainText should never be null. Process input record.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1038
                int volume = processInputRecord(plainText, needAppData);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1039
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1040
                if (plainText.contentType == Record.ct_application_data) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1041
                    return volume;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1042
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1043
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1044
                if (plainText.contentType == Record.ct_handshake) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1045
                    if (!needAppData && connectionState == cs_DATA) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1046
                        return volume;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1047
                    }   // otherwise, need to read more for app data.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1048
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1050
                // continue to read more net data
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1051
            }   // while
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1053
            //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1054
            // couldn't read, due to some kind of error
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1055
            //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1056
            return -1;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1057
        }  // readLock synchronization
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1058
    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1059
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1060
    /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1061
     * Process the plainText input record.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1062
     */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1063
    private synchronized int processInputRecord(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1064
            Plaintext plainText, boolean needAppData) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1066
        /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1067
         * Process the record.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1068
         */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1069
        int volume = 0;    // no application data
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1070
        switch (plainText.contentType) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1071
            case Record.ct_handshake:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1072
                /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1073
                 * Handshake messages always go to a pending session
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1074
                 * handshaker ... if there isn't one, create one.  This
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1075
                 * must work asynchronously, for renegotiation.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1076
                 *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1077
                 * NOTE that handshaking will either resume a session
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1078
                 * which was in the cache (and which might have other
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1079
                 * connections in it already), or else will start a new
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1080
                 * session (new keys exchanged) with just this connection
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1081
                 * in it.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1082
                 */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1083
                initHandshaker();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1084
                if (!handshaker.activated()) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1085
                    // prior to handshaking, activate the handshake
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1086
                    if (connectionState == cs_RENEGOTIATE) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1087
                        // don't use SSLv2Hello when renegotiating
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1088
                        handshaker.activate(protocolVersion);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1089
                    } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1090
                        handshaker.activate(null);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1091
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1092
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1094
                /*
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1095
                 * process the handshake record ... may contain just
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1096
                 * a partial handshake message or multiple messages.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1097
                 *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1098
                 * The handshaker state machine will ensure that it's
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1099
                 * a finished message.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1100
                 */
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1101
                handshaker.processRecord(plainText.fragment, expectingFinished);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1102
                expectingFinished = false;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1103
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1104
                if (handshaker.invalidated) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1105
                    handshaker = null;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1106
                    inputRecord.setHandshakeHash(null);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1107
                    outputRecord.setHandshakeHash(null);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1108
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1109
                    // if state is cs_RENEGOTIATE, revert it to cs_DATA
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1110
                    if (connectionState == cs_RENEGOTIATE) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1111
                        connectionState = cs_DATA;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
                    }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1113
                } else if (handshaker.isDone()) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1114
                    // reset the parameters for secure renegotiation.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1115
                    secureRenegotiation =
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1116
                                    handshaker.isSecureRenegotiation();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1117
                    clientVerifyData = handshaker.getClientVerifyData();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1118
                    serverVerifyData = handshaker.getServerVerifyData();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1120
                    sess = handshaker.getSession();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1121
                    handshakeSession = null;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1122
                    handshaker = null;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1123
                    inputRecord.setHandshakeHash(null);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1124
                    outputRecord.setHandshakeHash(null);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1125
                    connectionState = cs_DATA;
28543
31afdc0e77af 8046656: Update protocol support
wetmore
parents: 28059
diff changeset
  1126
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
                    //
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1128
                    // Tell folk about handshake completion, but do
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1129
                    // it in a separate thread.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
                    //
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1131
                    if (handshakeListeners != null) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1132
                        HandshakeCompletedEvent event =
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1133
                            new HandshakeCompletedEvent(this, sess);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1134
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1135
                        Thread thread = new ManagedLocalsThread(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1136
                            new NotifyHandshake(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1137
                                handshakeListeners.entrySet(), event),
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1138
                            "HandshakeCompletedNotify-Thread");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1139
                        thread.start();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1140
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1141
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1142
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1143
                break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1145
            case Record.ct_application_data:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1146
                if (connectionState != cs_DATA
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1147
                        && connectionState != cs_RENEGOTIATE
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1148
                        && connectionState != cs_SENT_CLOSE) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1149
                    throw new SSLProtocolException(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1150
                        "Data received in non-data state: " +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1151
                        connectionState);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1152
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1153
                if (expectingFinished) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1154
                    throw new SSLProtocolException
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1155
                            ("Expecting finished message, received data");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1156
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1157
                if (!needAppData) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1158
                    throw new SSLException("Discarding app data");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1159
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1160
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1161
                volume = plainText.fragment.remaining();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1162
                break;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1163
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1164
            case Record.ct_alert:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1165
                recvAlert(plainText.fragment);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1166
                break;
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1167
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1168
            case Record.ct_change_cipher_spec:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1169
                if ((connectionState != cs_HANDSHAKE
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1170
                        && connectionState != cs_RENEGOTIATE)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1171
                    // For the CCS message arriving in the wrong state
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1172
                    fatal(Alerts.alert_unexpected_message,
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1173
                            "illegal change cipher spec msg, conn state = "
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1174
                            + connectionState);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1175
                } else if (plainText.fragment.remaining() != 1
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1176
                        || plainText.fragment.get() != 1) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1177
                    // For structural/content issues with the CCS
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1178
                    fatal(Alerts.alert_unexpected_message,
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1179
                            "Malformed change cipher spec msg");
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1180
                }
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1181
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1182
                //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1183
                // The first message after a change_cipher_spec
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1184
                // record MUST be a "Finished" handshake record,
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1185
                // else it's a protocol violation.  We force this
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1186
                // to be checked by a minor tweak to the state
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1187
                // machine.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1188
                //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1189
                handshaker.receiveChangeCipherSpec();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1191
                CipherBox readCipher;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1192
                Authenticator readAuthenticator;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1193
                try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1194
                    readCipher = handshaker.newReadCipher();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1195
                    readAuthenticator = handshaker.newReadAuthenticator();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1196
                } catch (GeneralSecurityException e) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1197
                    // can't happen
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1198
                    throw new SSLException("Algorithm missing:  ", e);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1199
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1200
                inputRecord.changeReadCiphers(readAuthenticator, readCipher);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1202
                // next message MUST be a finished message
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1203
                expectingFinished = true;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1204
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1205
                break;
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1206
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1207
            default:
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1208
                //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1209
                // TLS requires that unrecognized records be ignored.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1210
                //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1211
                if (debug != null && Debug.isOn("ssl")) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1212
                    System.out.println(Thread.currentThread().getName() +
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1213
                        ", Received record type: " + plainText.contentType);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1214
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1215
                break;
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1216
        }
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1217
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1218
        /*
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1219
         * Check the sequence number state
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1220
         *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1221
         * Note that in order to maintain the connection I/O
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1222
         * properly, we check the sequence number after the last
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1223
         * record reading process. As we request renegotiation
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1224
         * or close the connection for wrapped sequence number
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1225
         * when there is enough sequence number space left to
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1226
         * handle a few more records, so the sequence number
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1227
         * of the last record cannot be wrapped.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1228
         *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1229
         * Don't bother to kickstart the renegotiation when the
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1230
         * local is asking for it.
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1231
         */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1232
        if ((connectionState == cs_DATA) && inputRecord.seqNumIsHuge()) {
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1233
            /*
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1234
             * Ask for renegotiation when need to renew sequence number.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1235
             *
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1236
             * Don't bother to kickstart the renegotiation when the local is
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1237
             * asking for it.
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1238
             */
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1239
            if (debug != null && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1240
                System.out.println(Thread.currentThread().getName() +
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1241
                        ", request renegotiation " +
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1242
                        "to avoid sequence number overflow");
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1243
            }
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1244
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1245
            startHandshake();
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1246
        }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1247
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1248
        return volume;
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1249
    }
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1250
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1251
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
    // HANDSHAKE RELATED CODE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
     * Return the AppInputStream. For use by Handshaker only.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
    AppInputStream getAppInputStream() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        return input;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
    /**
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1264
     * Return the AppOutputStream. For use by Handshaker only.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
     */
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1266
    AppOutputStream getAppOutputStream() {
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1267
        return output;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
     * Initialize the handshaker object. This means:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
     *  . if a handshake is already in progress (state is cs_HANDSHAKE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
     *    or cs_RENEGOTIATE), do nothing and return
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
     *  . if the socket is already closed, throw an Exception (internal error)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
     *  . otherwise (cs_START or cs_DATA), create the appropriate handshaker
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1279
     *    object, and advance the connection state (to cs_HANDSHAKE or
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1280
     *    cs_RENEGOTIATE, respectively).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     * This method is called right after a new socket is created, when
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     * starting renegotiation, or when changing client/ server mode of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
     * socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
    private void initHandshaker() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
        switch (connectionState) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
        // Starting a new handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        case cs_START:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
        case cs_DATA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
        // We're already in the middle of a handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
        case cs_HANDSHAKE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
        case cs_RENEGOTIATE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
        // Anyone allowed to call this routine is required to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
        // do so ONLY if the connection state is reasonable...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
            throw new IllegalStateException("Internal error");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
        // state is either cs_START or cs_DATA
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
        if (connectionState == cs_START) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
            connectionState = cs_HANDSHAKE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
        } else { // cs_DATA
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
            connectionState = cs_RENEGOTIATE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
        if (roleIsServer) {
5182
62836694baeb 6898739: TLS renegotiation issue
xuelei
parents: 2068
diff changeset
  1318
            handshaker = new ServerHandshaker(this, sslContext,
6856
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1319
                    enabledProtocols, doClientAuth,
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1320
                    protocolVersion, connectionState == cs_HANDSHAKE,
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1321
                    secureRenegotiation, clientVerifyData, serverVerifyData);
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1322
            handshaker.setSNIMatchers(sniMatchers);
19823
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
  1323
            handshaker.setUseCipherSuitesOrder(preferLocalCipherSuites);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
        } else {
5182
62836694baeb 6898739: TLS renegotiation issue
xuelei
parents: 2068
diff changeset
  1325
            handshaker = new ClientHandshaker(this, sslContext,
6856
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1326
                    enabledProtocols,
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1327
                    protocolVersion, connectionState == cs_HANDSHAKE,
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1328
                    secureRenegotiation, clientVerifyData, serverVerifyData);
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1329
            handshaker.setSNIServerNames(serverNames);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
        }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1331
        handshaker.setMaximumPacketSize(maximumPacketSize);
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1332
        handshaker.setEnabledCipherSuites(enabledCipherSuites);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
        handshaker.setEnableSessionCreation(enableSessionCreation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
     * Synchronously perform the initial handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     * If the handshake is already in progress, this method blocks until it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     * is completed. If the initial handshake has already been completed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     * it returns immediately.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
    private void performInitialHandshake() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
        // use handshakeLock and the state check to make sure only
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
        // one thread performs the handshake
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
        synchronized (handshakeLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
            if (getConnectionState() == cs_HANDSHAKE) {
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1348
                kickstartHandshake();
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1349
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
                /*
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1351
                 * All initial handshaking goes through this operation
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1352
                 * until we have a valid SSL connection.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
                 *
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1354
                 * Handle handshake messages only, need no application data.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
                 */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1356
                readRecord(false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
     * Starts an SSL handshake on this connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  1364
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
    public void startHandshake() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
        // start an ssl handshake that could be resumed from timeout exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
        startHandshake(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
     * Starts an ssl handshake on this connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
     * @param resumable indicates the handshake process is resumable from a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
     *          certain exception. If <code>resumable</code>, the socket will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
     *          be reserved for exceptions like timeout; otherwise, the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
     *          will be closed, no further communications could be done.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
    private void startHandshake(boolean resumable) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
        checkWrite();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
            if (getConnectionState() == cs_HANDSHAKE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
                // do initial handshake
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
                performInitialHandshake();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
                // start renegotiation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
                kickstartHandshake();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
            // shutdown and rethrow (wrapped) exception as appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
            handleException(e, resumable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
     * Kickstart the handshake if it is not already in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
     * This means:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
     *  . if handshaking is already underway, do nothing and return
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
     *  . if the socket is not connected or already closed, throw an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
     *    Exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
     *  . otherwise, call initHandshake() to initialize the handshaker
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
     *    object and progress the state. Then, send the initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
     *    handshaking message if appropriate (always on clients and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
     *    on servers when renegotiating).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
    private synchronized void kickstartHandshake() throws IOException {
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1409
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
        switch (connectionState) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
        case cs_HANDSHAKE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
            // handshaker already setup, proceed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
        case cs_DATA:
6856
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1417
            if (!secureRenegotiation && !Handshaker.allowUnsafeRenegotiation) {
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1418
                throw new SSLHandshakeException(
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1419
                        "Insecure renegotiation is not allowed");
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1420
            }
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1421
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1422
            if (!secureRenegotiation) {
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1423
                if (debug != null && Debug.isOn("handshake")) {
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1424
                    System.out.println(
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1425
                        "Warning: Using insecure renegotiation");
533f4ad71f88 6914943: Implement final TLS renegotiation fix
xuelei
parents: 5506
diff changeset
  1426
                }
5182
62836694baeb 6898739: TLS renegotiation issue
xuelei
parents: 2068
diff changeset
  1427
            }
62836694baeb 6898739: TLS renegotiation issue
xuelei
parents: 2068
diff changeset
  1428
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
            // initialize the handshaker, move to cs_RENEGOTIATE
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
            initHandshaker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
        case cs_RENEGOTIATE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
            // handshaking already in progress, return
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
         * The only way to get a socket in the state is when
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
         * you have an unconnected socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
        case cs_START:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
            throw new SocketException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
                "handshaking attempted on unconnected socket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
            throw new SocketException("connection is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
        // Kickstart handshake state machine if we need to ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
        // Note that handshaker.kickstart() writes the message
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
        // to its HandshakeOutStream, which calls back into
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
        // SSLSocketImpl.writeRecord() to send it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
        //
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1456
        if (!handshaker.activated()) {
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1457
             // prior to handshaking, activate the handshake
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1458
            if (connectionState == cs_RENEGOTIATE) {
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1459
                // don't use SSLv2Hello when renegotiating
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1460
                handshaker.activate(protocolVersion);
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1461
            } else {
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1462
                handshaker.activate(null);
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1463
            }
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  1464
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
            if (handshaker instanceof ClientHandshaker) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
                // send client hello
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
                handshaker.kickstart();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
                if (connectionState == cs_HANDSHAKE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
                    // initial handshake, no kickstart message to send
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
                    // we want to renegotiate, send hello request
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
                    handshaker.kickstart();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
    // CLOSURE RELATED CALLS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
     * Return whether the socket has been explicitly closed by the application.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  1486
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
    public boolean isClosed() {
19223
e27cda06fe6a 8013809: deadlock in SSLSocketImpl between between write and close
xuelei
parents: 16913
diff changeset
  1488
        return connectionState == cs_APP_CLOSED;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
     * Return whether we have reached end-of-file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
     * If the socket is not connected, has been shutdown because of an error
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
     * or has been closed, throw an Exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
    boolean checkEOF() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
        switch (getConnectionState()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
        case cs_START:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
            throw new SocketException("Socket is not connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
        case cs_HANDSHAKE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
        case cs_DATA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
        case cs_RENEGOTIATE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
        case cs_SENT_CLOSE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
        case cs_APP_CLOSED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
        case cs_ERROR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
        case cs_CLOSED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
            // either closed because of error, or normal EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
            if (closeReason == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
                return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
            IOException e = new SSLException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
                        ("Connection has been shutdown: " + closeReason);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
            e.initCause(closeReason);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
     * Check if we can write data to this socket. If not, throw an IOException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
    void checkWrite() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
        if (checkEOF() || (getConnectionState() == cs_SENT_CLOSE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
            // we are at EOF, write must throw Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
            throw new SocketException("Connection closed by remote host");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1536
    private void closeSocket() throws IOException {
1580
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 100
diff changeset
  1537
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
        if ((debug != null) && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1539
            System.out.println(Thread.currentThread().getName() +
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1540
                                                ", called closeSocket()");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
        }
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1542
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1543
        super.close();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1546
    private void closeSocket(boolean selfInitiated) throws IOException {
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1547
        if ((debug != null) && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1548
            System.out.println(Thread.currentThread().getName() +
11018
be74e8b8f3eb 7111548: unexpected debug log message
xuelei
parents: 10336
diff changeset
  1549
                ", called closeSocket(" + selfInitiated + ")");
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1550
        }
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1551
        if (!isLayered() || autoClose) {
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1552
            super.close();
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1553
        } else if (selfInitiated) {
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1554
            // layered && non-autoclose
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1555
            // read close_notify alert to clear input stream
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1556
            waitForClose(false);
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1557
        }
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1558
    }
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1559
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
     * Closing the connection is tricky ... we can't officially close the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     * connection until we know the other end is ready to go away too,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     * and if ever the connection gets aborted we must forget session
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     * state (it becomes invalid).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
     * Closes the SSL connection.  SSL includes an application level
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
     * shutdown handshake; you should close SSL sockets explicitly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * rather than leaving it for finalization, so that your remote
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     * peer does not experience a protocol error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  1573
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
    public void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
        if ((debug != null) && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1576
            System.out.println(Thread.currentThread().getName() +
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1577
                                                    ", called close()");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
        closeInternal(true);  // caller is initiating close
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1580
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1581
        // Clearup the resources.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1582
        try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1583
            synchronized (readLock) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1584
                inputRecord.close();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1585
            }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1586
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1587
            writeLock.lock();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1588
            try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1589
                outputRecord.close();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1590
            } finally {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1591
                writeLock.unlock();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1592
            }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1593
        } catch (IOException ioe) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1594
           // ignore
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1595
        }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1596
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
        setConnectionState(cs_APP_CLOSED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
     * Don't synchronize the whole method because waitForClose()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     * (which calls readRecord()) might be called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     * @param selfInitiated Indicates which party initiated the close.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
     * If selfInitiated, this side is initiating a close; for layered and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
     * non-autoclose socket, wait for close_notify response.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
     * If !selfInitiated, peer sent close_notify; we reciprocate but
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
     * no need to wait for response.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
    private void closeInternal(boolean selfInitiated) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
        if ((debug != null) && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1612
            System.out.println(Thread.currentThread().getName() +
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1613
                        ", called closeInternal(" + selfInitiated + ")");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
        int state = getConnectionState();
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1617
        boolean closeSocketCalled = false;
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1618
        Throwable cachedThrowable = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
            switch (state) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
            case cs_START:
13370
785cedd026db 7179879: SSLSocket connect times out instead of throwing socket closed exception
coffeys
parents: 12428
diff changeset
  1622
                // unconnected socket or handshaking has not been initialized
785cedd026db 7179879: SSLSocket connect times out instead of throwing socket closed exception
coffeys
parents: 12428
diff changeset
  1623
                closeSocket(selfInitiated);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
             * If we're closing down due to error, we already sent (or else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
             * received) the fatal alert ... no niceties, blow the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
             * away as quickly as possible (even if we didn't allocate the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
             * socket ourselves; it's unusable, regardless).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
            case cs_ERROR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
                closeSocket();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
             * Sometimes close() gets called more than once.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
            case cs_CLOSED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
            case cs_APP_CLOSED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
                 break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
             * Otherwise we indicate clean termination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
            // case cs_HANDSHAKE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
            // case cs_DATA:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
            // case cs_RENEGOTIATE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
            // case cs_SENT_CLOSE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
            default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
                synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
                    if (((state = getConnectionState()) == cs_CLOSED) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
                       (state == cs_ERROR) || (state == cs_APP_CLOSED)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
                        return;  // connection was closed while we waited
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
                    if (state != cs_SENT_CLOSE) {
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1657
                        try {
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1658
                            warning(Alerts.alert_close_notify);
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1659
                            connectionState = cs_SENT_CLOSE;
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1660
                        } catch (Throwable th) {
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1661
                            // we need to ensure socket is closed out
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1662
                            // if we encounter any errors.
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1663
                            connectionState = cs_ERROR;
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1664
                            // cache this for later use
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1665
                            cachedThrowable = th;
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1666
                            closeSocketCalled = true;
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1667
                            closeSocket(selfInitiated);
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1668
                        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
                // If state was cs_SENT_CLOSE before, we don't do the actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
                // closing since it is already in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
                if (state == cs_SENT_CLOSE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
                    if (debug != null && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1675
                        System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
                            ", close invoked again; state = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
                            getConnectionState());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
                    if (selfInitiated == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
                        // We were called because a close_notify message was
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
                        // received. This may be due to another thread calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
                        // read() or due to our call to waitForClose() below.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
                        // In either case, just return.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
                        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
                    // Another thread explicitly called close(). We need to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
                    // wait for the closing to complete before returning.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
                    synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
                        while (connectionState < cs_CLOSED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
                            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
                                this.wait();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
                            } catch (InterruptedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
                                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
                    if ((debug != null) && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1698
                        System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
                            ", after primary close; state = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
                            getConnectionState());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1705
                if (!closeSocketCalled)  {
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1706
                    closeSocketCalled = true;
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1707
                    closeSocket(selfInitiated);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
                // Upon exit from this method, the state is always >= cs_CLOSED
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
                connectionState = (connectionState == cs_APP_CLOSED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
                                ? cs_APP_CLOSED : cs_CLOSED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
                // notify any threads waiting for the closing to finish
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
                this.notifyAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
            }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1720
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1721
            if (cachedThrowable != null) {
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1722
               /*
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1723
                * Rethrow the error to the calling method
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1724
                * The Throwable caught can only be an Error or RuntimeException
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1725
                */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1726
                if (cachedThrowable instanceof Error) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1727
                    throw (Error)cachedThrowable;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1728
                } else if (cachedThrowable instanceof RuntimeException) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1729
                    throw (RuntimeException)cachedThrowable;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1730
                }   // Otherwise, unlikely
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1731
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
     * Reads a close_notify or a fatal alert from the input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
     * Keep reading records until we get a close_notify or until
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
     * the connection is otherwise closed.  The close_notify or alert
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
     * might be read by another reader,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
     * which will then process the close and set the connection state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
    void waitForClose(boolean rethrow) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
        if (debug != null && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1744
            System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
                ", waiting for close_notify or alert: state "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
                + getConnectionState());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
            int state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
            while (((state = getConnectionState()) != cs_CLOSED) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
                   (state != cs_ERROR) && (state != cs_APP_CLOSED)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
                // Ask for app data and then throw it away
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
                try {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1757
                    readRecord(true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
                } catch (SocketTimeoutException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
                    // if time out, ignore the exception and continue
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
            if (debug != null && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1764
                System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
                    ", Exception while waiting for close " +e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
            if (rethrow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
                throw e; // pass exception up
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
    // EXCEPTION AND ALERT HANDLING
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
     * Handle an exception. This method is called by top level exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
     * handlers (in read(), write()) to make sure we always shutdown the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
     * connection correctly and do not pass runtime exception to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
     * application.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
    void handleException(Exception e) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
        handleException(e, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
     * Handle an exception. This method is called by top level exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
     * handlers (in read(), write(), startHandshake()) to make sure we
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
     * always shutdown the connection correctly and do not pass runtime
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
     * exception to the application.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
     * This method never returns normally, it always throws an IOException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
     * We first check if the socket has already been shutdown because of an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
     * error. If so, we just rethrow the exception. If the socket has not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
     * been shutdown, we sent a fatal alert and remember the exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
     * @param e the Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
     * @param resumable indicates the caller process is resumable from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
     *          exception. If <code>resumable</code>, the socket will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
     *          reserved for exceptions like timeout; otherwise, the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
     *          will be closed, no further communications could be done.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
    synchronized private void handleException(Exception e, boolean resumable)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
        throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
        if ((debug != null) && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1808
            System.out.println(Thread.currentThread().getName() +
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1809
                        ", handling exception: " + e.toString());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
        // don't close the Socket in case of timeouts or interrupts if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
        // the process is resumable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
        if (e instanceof InterruptedIOException && resumable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
            throw (IOException)e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
        // if we've already shutdown because of an error,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
        // there is nothing to do except rethrow the exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
        if (closeReason != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
            if (e instanceof IOException) { // includes SSLException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
                throw (IOException)e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
                // this is odd, not an IOException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
                // normally, this should not happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
                // if closeReason has been already been set
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
                throw Alerts.getSSLException(Alerts.alert_internal_error, e,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
                                      "Unexpected exception");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
        // need to perform error shutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
        boolean isSSLException = (e instanceof SSLException);
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1834
        if ((!isSSLException) && (e instanceof IOException)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
            // IOException from the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
            // this means the TCP connection is already dead
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
            // we call fatal just to set the error status
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
                fatal(Alerts.alert_unexpected_message, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
            } catch (IOException ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
                // ignore (IOException wrapped in SSLException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
            // rethrow original IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
            throw (IOException)e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
        // must be SSLException or RuntimeException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
        byte alertType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
        if (isSSLException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
            if (e instanceof SSLHandshakeException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
                alertType = Alerts.alert_handshake_failure;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
                alertType = Alerts.alert_unexpected_message;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
            alertType = Alerts.alert_internal_error;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
        fatal(alertType, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
     * Send a warning alert.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
    void warning(byte description) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
        sendAlert(Alerts.alert_warning, description);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
    synchronized void fatal(byte description, String diagnostic)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
        fatal(description, diagnostic, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
    synchronized void fatal(byte description, Throwable cause)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
        fatal(description, null, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
     * Send a fatal alert, and throw an exception so that callers will
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
     * need to stand on their heads to accidentally continue processing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
    synchronized void fatal(byte description, String diagnostic,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
            Throwable cause) throws IOException {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1884
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1885
        // Be care of deadlock. Please don't synchronize readLock.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1886
        try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1887
            inputRecord.close();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1888
        } catch (IOException ioe) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1889
            // ignore
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
        }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1891
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
        sess.invalidate();
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  1893
        if (handshakeSession != null) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  1894
            handshakeSession.invalidate();
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  1895
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
        int oldState = connectionState;
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1898
        if (connectionState < cs_ERROR) {
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1899
            connectionState = cs_ERROR;
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1900
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
         * Has there been an error received yet?  If not, remember it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
         * By RFC 2246, we don't bother waiting for a response.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
         * Fatal errors require immediate shutdown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
        if (closeReason == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
             * Try to clear the kernel buffer to avoid TCP connection resets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
            if (oldState == cs_HANDSHAKE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
                sockInput.skip(sockInput.available());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
            }
100
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
  1914
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
  1915
            // If the description equals -1, the alert won't be sent to peer.
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
  1916
            if (description != -1) {
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
  1917
                sendAlert(Alerts.alert_fatal, description);
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
  1918
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
            if (cause instanceof SSLException) { // only true if != null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
                closeReason = (SSLException)cause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
                closeReason =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
                    Alerts.getSSLException(description, cause, diagnostic);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
         * Clean up our side.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
        closeSocket();
1763
0a6b65d56746 6750401: SSL stress test with GF leads to 32 bit max process size in less than 5 minutes,with PCKS11 provider
wetmore
parents: 1580
diff changeset
  1931
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1932
        // Be care of deadlock. Please don't synchronize writeLock.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1933
        try {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1934
            outputRecord.close();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1935
        } catch (IOException ioe) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1936
            // ignore
9514
bdb24db75fe8 7025227: SSLSocketImpl does not close the TCP layer socket if a close notify cannot be sent to the peer
coffeys
parents: 9246
diff changeset
  1937
        }
1763
0a6b65d56746 6750401: SSL stress test with GF leads to 32 bit max process size in less than 5 minutes,with PCKS11 provider
wetmore
parents: 1580
diff changeset
  1938
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
        throw closeReason;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
     * Process an incoming alert ... caller must already have synchronized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
     * access to "this".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
     */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1947
    private void recvAlert(ByteBuffer fragment) throws IOException {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1948
        byte level = fragment.get();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1949
        byte description = fragment.get();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  1950
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
        if (description == -1) { // check for short message
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
            fatal(Alerts.alert_illegal_parameter, "Short alert message");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
        if (debug != null && (Debug.isOn("record") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
                Debug.isOn("handshake"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
            synchronized (System.out) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  1958
                System.out.print(Thread.currentThread().getName());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
                System.out.print(", RECV " + protocolVersion + " ALERT:  ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
                if (level == Alerts.alert_fatal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
                    System.out.print("fatal, ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
                } else if (level == Alerts.alert_warning) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
                    System.out.print("warning, ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
                    System.out.print("<level " + (0x0ff & level) + ">, ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
                System.out.println(Alerts.alertDescription(description));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
        if (level == Alerts.alert_warning) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
            if (description == Alerts.alert_close_notify) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
                if (connectionState == cs_HANDSHAKE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
                    fatal(Alerts.alert_unexpected_message,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
                                "Received close_notify during handshake");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
                    closeInternal(false);  // reply to close
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
                // The other legal warnings relate to certificates,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
                // e.g. no_certificate, bad_certificate, etc; these
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
                // are important to the handshaking code, which can
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
                // also handle illegal protocol alerts if needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
                //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
                if (handshaker != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
                    handshaker.handshakeAlert(description);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
        } else { // fatal or unknown level
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
            String reason = "Received fatal alert: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
                + Alerts.alertDescription(description);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
            if (closeReason == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
                closeReason = Alerts.getSSLException(description, reason);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
            fatal(Alerts.alert_unexpected_message, reason);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     * Emit alerts.  Caller must have synchronized with "this".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
    private void sendAlert(byte level, byte description) {
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2006
        // the connectionState cannot be cs_START
100
01ef29ca378f 6447412: Issue with socket.close() for ssl sockets when poweroff on other system
xuelei
parents: 2
diff changeset
  2007
        if (connectionState >= cs_SENT_CLOSE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2011
        // For initial handshaking, don't send alert message to peer if
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2012
        // handshaker has not started.
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2013
        //
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2014
        // Shall we send an fatal alter to terminate the connection gracefully?
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2015
        if (connectionState <= cs_HANDSHAKE &&
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2016
                (handshaker == null || !handshaker.started() ||
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2017
                        !handshaker.activated())) {
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2018
            return;
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2019
        }
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2020
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
        boolean useDebug = debug != null && Debug.isOn("ssl");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
        if (useDebug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
            synchronized (System.out) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2024
                System.out.print(Thread.currentThread().getName());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
                System.out.print(", SEND " + protocolVersion + " ALERT:  ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
                if (level == Alerts.alert_fatal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
                    System.out.print("fatal, ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
                } else if (level == Alerts.alert_warning) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
                    System.out.print("warning, ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
                    System.out.print("<level = " + (0x0ff & level) + ">, ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
                System.out.println("description = "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
                        + Alerts.alertDescription(description));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
        try {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2039
            writeAlert(level, description);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
            if (useDebug) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2042
                System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
                    ", Exception sending alert: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
    // VARIOUS OTHER METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
    // used by Handshaker
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2053
    void changeWriteCiphers() throws IOException {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2054
        Authenticator writeAuthenticator;
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2055
        CipherBox writeCipher;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
            writeCipher = handshaker.newWriteCipher();
16913
a6f4d1626ad9 8011680: Re-integrate AEAD implementation of JSSE
xuelei
parents: 16126
diff changeset
  2058
            writeAuthenticator = handshaker.newWriteAuthenticator();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
        } catch (GeneralSecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
            // "can't happen"
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 10128
diff changeset
  2061
            throw new SSLException("Algorithm missing:  ", e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
        }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2063
        outputRecord.changeWriteCiphers(writeAuthenticator, writeCipher);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
     * Updates the SSL version associated with this connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
     * Called from Handshaker once it has determined the negotiated version.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
    synchronized void setVersion(ProtocolVersion protocolVersion) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
        this.protocolVersion = protocolVersion;
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2072
        outputRecord.setVersion(protocolVersion);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
    synchronized String getHost() {
2068
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
  2076
        // Note that the host may be null or empty for localhost.
cdbc5929b91e 5067458: Loopback SSLSocketImpl createSocket is throwing an exception
xuelei
parents: 1763
diff changeset
  2077
        if (host == null || host.length() == 0) {
31687
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2078
            if (!trustNameService) {
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2079
                // If the local name service is not trustworthy, reverse host
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2080
                // name resolution should not be performed for endpoint
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2081
                // identification.  Use the application original specified
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2082
                // hostname or IP address instead.
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2083
                host = getOriginalHostname(getInetAddress());
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2084
            } else {
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2085
                host = getInetAddress().getHostName();
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2086
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
        }
31687
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2088
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
        return host;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
31687
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2092
    /*
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2093
     * Get the original application specified hostname.
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2094
     */
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2095
    private static String getOriginalHostname(InetAddress inetAddress) {
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2096
        /*
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2097
         * Get the original hostname via sun.misc.SharedSecrets.
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2098
         */
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2099
        JavaNetAccess jna = SharedSecrets.getJavaNetAccess();
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2100
        String originalHostname = jna.getOriginalHostName(inetAddress);
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2101
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2102
        /*
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2103
         * If no application specified hostname, use the IP address.
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2104
         */
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2105
        if (originalHostname == null || originalHostname.length() == 0) {
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2106
            originalHostname = inetAddress.getHostAddress();
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2107
        }
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2108
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2109
        return originalHostname;
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2110
    }
d6eb4f028c60 8067694: Improved certification checking
xuelei
parents: 30904
diff changeset
  2111
5162
0dbedf4fdb8c 6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets
chegar
parents: 2068
diff changeset
  2112
    // ONLY used by HttpsClient to setup the URI specified hostname
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2113
    //
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2114
    // Please NOTE that this method MUST be called before calling to
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2115
    // SSLSocket.setSSLParameters(). Otherwise, the {@code host} parameter
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2116
    // may override SNIHostName in the customized server name indication.
5162
0dbedf4fdb8c 6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets
chegar
parents: 2068
diff changeset
  2117
    synchronized public void setHost(String host) {
0dbedf4fdb8c 6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets
chegar
parents: 2068
diff changeset
  2118
        this.host = host;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2119
        this.serverNames =
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2120
            Utilities.addToSNIServerNameList(this.serverNames, this.host);
5162
0dbedf4fdb8c 6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets
chegar
parents: 2068
diff changeset
  2121
    }
0dbedf4fdb8c 6614957: HttpsURLConnection not using the set SSLSocketFactory for creating all its Sockets
chegar
parents: 2068
diff changeset
  2122
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
     * Gets an input stream to read from the peer on the other side.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2125
     * Data read from this stream was always integrity protected in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
     * transit, and will usually have been confidentiality protected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2128
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
    synchronized public InputStream getInputStream() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
        if (isClosed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
         * Can't call isConnected() here, because the Handshakers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
         * do some initialization before we actually connect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
        if (connectionState == cs_START) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
            throw new SocketException("Socket is not connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
        return input;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
     * Gets an output stream to write to the peer on the other side.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
     * Data written on this stream is always integrity protected, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
     * will usually be confidentiality protected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2150
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
    synchronized public OutputStream getOutputStream() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
        if (isClosed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
            throw new SocketException("Socket is closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
         * Can't call isConnected() here, because the Handshakers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
         * do some initialization before we actually connect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
        if (connectionState == cs_START) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
            throw new SocketException("Socket is not connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
        return output;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
    /**
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 25859
diff changeset
  2168
     * Returns the SSL Session in use by this connection.  These can
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
     * be long lived, and frequently correspond to an entire login session
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
     * for some user.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2172
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
    public SSLSession getSession() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
         * Force a synchronous handshake, if appropriate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
        if (getConnectionState() == cs_HANDSHAKE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
                // start handshaking, if failed, the connection will be closed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
                startHandshake(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
                // handshake failed. log and return a nullSession
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
                if (debug != null && Debug.isOn("handshake")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2184
                      System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
                          ", IOException in getSession():  " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
            return sess;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2194
    @Override
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2195
    synchronized public SSLSession getHandshakeSession() {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2196
        return handshakeSession;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2197
    }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2198
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2199
    synchronized void setHandshakeSession(SSLSessionImpl session) {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2200
        // update the fragment size, which may be negotiated during handshaking
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2201
        inputRecord.changeFragmentSize(session.getNegotiatedMaxFragSize());
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2202
        outputRecord.changeFragmentSize(session.getNegotiatedMaxFragSize());
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2203
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2204
        handshakeSession = session;
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2205
    }
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2206
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
     * Controls whether new connections may cause creation of new SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2209
     * sessions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2210
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2211
     * As long as handshaking has not started, we can change
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2212
     * whether we enable session creations.  Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2213
     * we will need to wait for the next handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2215
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2216
    synchronized public void setEnableSessionCreation(boolean flag) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
        enableSessionCreation = flag;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2218
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2219
        if ((handshaker != null) && !handshaker.activated()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2220
            handshaker.setEnableSessionCreation(enableSessionCreation);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
     * Returns true if new connections may cause creation of new SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2226
     * sessions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2228
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
    synchronized public boolean getEnableSessionCreation() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
        return enableSessionCreation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2231
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2235
     * Sets the flag controlling whether a server mode socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
     * *REQUIRES* SSL client authentication.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2237
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
     * As long as handshaking has not started, we can change
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
     * whether client authentication is needed.  Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
     * we will need to wait for the next handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2242
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
    synchronized public void setNeedClientAuth(boolean flag) {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2244
        doClientAuth = (flag ? ClientAuthType.CLIENT_AUTH_REQUIRED :
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2245
                ClientAuthType.CLIENT_AUTH_NONE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
        if ((handshaker != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
                (handshaker instanceof ServerHandshaker) &&
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2249
                !handshaker.activated()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
            ((ServerHandshaker) handshaker).setClientAuth(doClientAuth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2254
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
    synchronized public boolean getNeedClientAuth() {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2256
        return (doClientAuth == ClientAuthType.CLIENT_AUTH_REQUIRED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
     * Sets the flag controlling whether a server mode socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2261
     * *REQUESTS* SSL client authentication.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
     * As long as handshaking has not started, we can change
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
     * whether client authentication is requested.  Otherwise,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2265
     * we will need to wait for the next handshake.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2266
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2267
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2268
    synchronized public void setWantClientAuth(boolean flag) {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2269
        doClientAuth = (flag ? ClientAuthType.CLIENT_AUTH_REQUESTED :
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2270
                ClientAuthType.CLIENT_AUTH_NONE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2271
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
        if ((handshaker != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2273
                (handshaker instanceof ServerHandshaker) &&
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2274
                !handshaker.activated()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2275
            ((ServerHandshaker) handshaker).setClientAuth(doClientAuth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2276
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2278
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2279
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2280
    synchronized public boolean getWantClientAuth() {
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2281
        return (doClientAuth == ClientAuthType.CLIENT_AUTH_REQUESTED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2282
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2283
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2284
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2285
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2286
     * Sets the flag controlling whether the socket is in SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2287
     * client or server mode.  Must be called before any SSL
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2288
     * traffic has started.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2289
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2290
    @Override
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 10128
diff changeset
  2291
    @SuppressWarnings("fallthrough")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2292
    synchronized public void setUseClientMode(boolean flag) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2293
        switch (connectionState) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
        case cs_START:
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2296
            /*
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2297
             * If we need to change the socket mode and the enabled
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2298
             * protocols and cipher suites haven't specifically been
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2299
             * set by the user, change them to the corresponding
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2300
             * default ones.
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2301
             */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2302
            if (roleIsServer != (!flag)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2303
                if (sslContext.isDefaultProtocolList(enabledProtocols)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2304
                    enabledProtocols =
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2305
                            sslContext.getDefaultProtocolList(!flag);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2306
                }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2307
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2308
                if (sslContext.isDefaultCipherSuiteList(enabledCipherSuites)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2309
                    enabledCipherSuites =
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2310
                            sslContext.getDefaultCipherSuiteList(!flag);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2311
                }
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2312
            }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2313
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2314
            roleIsServer = !flag;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
        case cs_HANDSHAKE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2318
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
             * If we have a handshaker, but haven't started
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
             * SSL traffic, we can throw away our current
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
             * handshaker, and start from scratch.  Don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
             * need to call doneConnect() again, we already
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
             * have the streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
            assert(handshaker != null);
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2326
            if (!handshaker.activated()) {
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2327
                /*
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2328
                 * If we need to change the socket mode and the enabled
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2329
                 * protocols and cipher suites haven't specifically been
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2330
                 * set by the user, change them to the corresponding
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2331
                 * default ones.
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2332
                 */
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2333
                if (roleIsServer != (!flag)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2334
                    if (sslContext.isDefaultProtocolList(enabledProtocols)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2335
                        enabledProtocols =
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2336
                                sslContext.getDefaultProtocolList(!flag);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2337
                    }
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2338
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2339
                    if (sslContext.isDefaultCipherSuiteList(
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2340
                                                    enabledCipherSuites)) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2341
                        enabledCipherSuites =
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2342
                            sslContext.getDefaultCipherSuiteList(!flag);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2343
                    }
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2344
                }
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2345
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
                roleIsServer = !flag;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
                connectionState = cs_START;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
                initHandshaker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
            // If handshake has started, that's an error.  Fall through...
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
        default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
            if (debug != null && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2356
                System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
                    ", setUseClientMode() invoked in state = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
                    connectionState);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
            throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
                "Cannot change mode after SSL traffic has started");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2365
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
    synchronized public boolean getUseClientMode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
        return !roleIsServer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2369
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2370
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2372
     * Returns the names of the cipher suites which could be enabled for use
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
     * on an SSL connection.  Normally, only a subset of these will actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
     * be enabled by default, since this list may include cipher suites which
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
     * do not support the mutual authentication of servers and clients, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
     * which do not protect data confidentiality.  Servers may also need
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
     * certain kinds of certificates to use certain cipher suites.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2379
     * @return an array of cipher suite names
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2381
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
    public String[] getSupportedCipherSuites() {
13815
2de30ecf335e 7199066: Typo in method name
xuelei
parents: 13370
diff changeset
  2383
        return sslContext.getSupportedCipherSuiteList().toStringArray();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2384
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2385
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2386
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
     * Controls which particular cipher suites are enabled for use on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2388
     * this connection.  The cipher suites must have been listed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2389
     * getCipherSuites() as being supported.  Even if a suite has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2390
     * enabled, it might never be used if no peer supports it or the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
     * requisite certificates (and private keys) are not available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
     * @param suites Names of all the cipher suites to enable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2395
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
    synchronized public void setEnabledCipherSuites(String[] suites) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
        enabledCipherSuites = new CipherSuiteList(suites);
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2398
        if ((handshaker != null) && !handshaker.activated()) {
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2399
            handshaker.setEnabledCipherSuites(enabledCipherSuites);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
     * Returns the names of the SSL cipher suites which are currently enabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
     * for use on this connection.  When an SSL socket is first created,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
     * all enabled cipher suites <em>(a)</em> protect data confidentiality,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
     * by traffic encryption, and <em>(b)</em> can mutually authenticate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
     * both clients and servers.  Thus, in some environments, this value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
     * might be empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
     * @return an array of cipher suite names
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2413
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
    synchronized public String[] getEnabledCipherSuites() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
        return enabledCipherSuites.toStringArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
     * Returns the protocols that are supported by this implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
     * A subset of the supported protocols may be enabled for this connection
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2422
     * @return an array of protocol names.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2423
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2424
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2425
    public String[] getSupportedProtocols() {
9246
c459f79af46b 6976117: SSLContext.getInstance("TLSv1.1") returns SSLEngines/SSLSockets without TLSv1.1 enabled
xuelei
parents: 7043
diff changeset
  2426
        return sslContext.getSuportedProtocolList().toStringArray();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2427
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2428
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2429
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2430
     * Controls which protocols are enabled for use on
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
     * this connection.  The protocols must have been listed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2432
     * getSupportedProtocols() as being supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2434
     * @param protocols protocols to enable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2435
     * @exception IllegalArgumentException when one of the protocols
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
     *  named by the parameter is not supported.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2438
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
    synchronized public void setEnabledProtocols(String[] protocols) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
        enabledProtocols = new ProtocolList(protocols);
7039
6464c8e62a18 4873188: Support TLS 1.1
xuelei
parents: 6856
diff changeset
  2441
        if ((handshaker != null) && !handshaker.activated()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2442
            handshaker.setEnabledProtocols(enabledProtocols);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2443
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2445
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2446
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2447
    synchronized public String[] getEnabledProtocols() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
        return enabledProtocols.toStringArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2450
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2451
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2452
     * Assigns the socket timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2453
     * @see java.net.Socket#setSoTimeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2454
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2455
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2456
    public void setSoTimeout(int timeout) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
        if ((debug != null) && Debug.isOn("ssl")) {
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2458
            System.out.println(Thread.currentThread().getName() +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2459
                ", setSoTimeout(" + timeout + ") called");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2460
        }
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2461
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2462
        super.setSoTimeout(timeout);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2463
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2464
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2465
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2466
     * Registers an event listener to receive notifications that an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
     * SSL handshake has completed on this connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2469
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
    public synchronized void addHandshakeCompletedListener(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
            HandshakeCompletedListener listener) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
        if (listener == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2473
            throw new IllegalArgumentException("listener is null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2475
        if (handshakeListeners == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2476
            handshakeListeners = new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
                HashMap<HandshakeCompletedListener, AccessControlContext>(4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
        handshakeListeners.put(listener, AccessController.getContext());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2480
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
     * Removes a previously registered handshake completion listener.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2486
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
    public synchronized void removeHandshakeCompletedListener(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
            HandshakeCompletedListener listener) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
        if (handshakeListeners == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
            throw new IllegalArgumentException("no listeners");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2492
        if (handshakeListeners.remove(listener) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
            throw new IllegalArgumentException("listener not registered");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
        if (handshakeListeners.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2496
            handshakeListeners = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2499
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2500
    /**
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2501
     * Returns the SSLParameters in effect for this SSLSocket.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2502
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2503
    @Override
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2504
    synchronized public SSLParameters getSSLParameters() {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2505
        SSLParameters params = super.getSSLParameters();
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2506
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2507
        // the super implementation does not handle the following parameters
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2508
        params.setEndpointIdentificationAlgorithm(identificationProtocol);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2509
        params.setAlgorithmConstraints(algorithmConstraints);
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2510
        params.setSNIMatchers(sniMatchers);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2511
        params.setServerNames(serverNames);
19823
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
  2512
        params.setUseCipherSuitesOrder(preferLocalCipherSuites);
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2513
        params.setMaximumPacketSize(maximumPacketSize);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2514
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2515
        // DTLS handshake retransmissions parameter does not apply here.
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2516
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2517
        return params;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2519
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2520
    /**
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2521
     * Applies SSLParameters to this socket.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2522
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2523
    @Override
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2524
    synchronized public void setSSLParameters(SSLParameters params) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2525
        super.setSSLParameters(params);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2526
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2527
        // the super implementation does not handle the following parameters
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2528
        identificationProtocol = params.getEndpointIdentificationAlgorithm();
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2529
        algorithmConstraints = params.getAlgorithmConstraints();
19823
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
  2530
        preferLocalCipherSuites = params.getUseCipherSuitesOrder();
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2531
        maximumPacketSize = params.getMaximumPacketSize();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2532
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2533
        // DTLS handshake retransmissions parameter does not apply here.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2534
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2535
        if (maximumPacketSize != 0) {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2536
            outputRecord.changePacketSize(maximumPacketSize);
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2537
        } else {
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2538
            // use the implicit maximum packet size.
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2539
            maximumPacketSize = outputRecord.getMaxPacketSize();
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2540
        }
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2541
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2542
        List<SNIServerName> sniNames = params.getServerNames();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2543
        if (sniNames != null) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2544
            serverNames = sniNames;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2545
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2546
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2547
        Collection<SNIMatcher> matchers = params.getSNIMatchers();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2548
        if (matchers != null) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2549
            sniMatchers = matchers;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2550
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2551
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2552
        if ((handshaker != null) && !handshaker.started()) {
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2553
            handshaker.setIdentificationProtocol(identificationProtocol);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2554
            handshaker.setAlgorithmConstraints(algorithmConstraints);
30904
ec0224270f90 8043758: Datagram Transport Layer Security (DTLS)
xuelei
parents: 29923
diff changeset
  2555
            handshaker.setMaximumPacketSize(maximumPacketSize);
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2556
            if (roleIsServer) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2557
                handshaker.setSNIMatchers(sniMatchers);
19823
f0fd09e20528 7188657: There should be a way to reorder the JSSE ciphers
xuelei
parents: 19223
diff changeset
  2558
                handshaker.setUseCipherSuitesOrder(preferLocalCipherSuites);
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2559
            } else {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2560
                handshaker.setSNIServerNames(serverNames);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2561
            }
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 7039
diff changeset
  2562
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
    // We allocate a separate thread to deliver handshake completion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
    // events.  This ensures that the notifications don't block the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
    // protocol state machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
    //
29923
e3ee0996bedb 8042332: Enhance thread contexts in security libraries
valeriep
parents: 28550
diff changeset
  2570
    private static class NotifyHandshake implements Runnable {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
        private Set<Map.Entry<HandshakeCompletedListener,AccessControlContext>>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
                targets;        // who gets notified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
        private HandshakeCompletedEvent event;          // the notification
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
29923
e3ee0996bedb 8042332: Enhance thread contexts in security libraries
valeriep
parents: 28550
diff changeset
  2576
        NotifyHandshake(
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
            Set<Map.Entry<HandshakeCompletedListener,AccessControlContext>>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
            entrySet, HandshakeCompletedEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
10128
f505a8514bd7 7065972: Some race condition may happen in SSLSocketImpl class
xuelei
parents: 9514
diff changeset
  2580
            targets = new HashSet<>(entrySet);          // clone the entry set
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
            event = e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2584
        @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
        public void run() {
10128
f505a8514bd7 7065972: Some race condition may happen in SSLSocketImpl class
xuelei
parents: 9514
diff changeset
  2586
            // Don't need to synchronize, as it only runs in one thread.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
            for (Map.Entry<HandshakeCompletedListener,AccessControlContext>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
                entry : targets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2589
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2590
                final HandshakeCompletedListener l = entry.getKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
                AccessControlContext acc = entry.getValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2592
                AccessController.doPrivileged(new PrivilegedAction<Void>() {
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2593
                    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2594
                    public Void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2595
                        l.handshakeCompleted(event);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
                        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
                }, acc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2602
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2603
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
     * Returns a printable representation of this end of the connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
  2606
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
    public String toString() {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 21278
diff changeset
  2608
        StringBuilder retval = new StringBuilder(80);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2609
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2610
        retval.append(Integer.toHexString(hashCode()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2611
        retval.append("[");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2612
        retval.append(sess.getCipherSuite());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2613
        retval.append(": ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2614
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 13815
diff changeset
  2615
        retval.append(super.toString());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2616
        retval.append("]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2617
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2618
        return retval.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2619
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2620
}