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