jdk/src/share/classes/sun/security/ssl/AppOutputStream.java
author wetmore
Wed, 11 Apr 2012 17:12:35 -0700
changeset 12428 e9feb65d37fa
parent 10915 1e20964cebf3
child 14664 e71aa0962e70
permissions -rw-r--r--
7157903: JSSE client sockets are very slow Reviewed-by: xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
12428
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
     2
 * Copyright (c) 1996, 2012, 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: 2061
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: 2061
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: 2061
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2061
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2061
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.OutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * Output stream for application data. This is the kind of stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * that's handed out via SSLSocket.getOutputStream(). It's all the application
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * ever sees.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * Once the initial handshake has completed, application data may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * interleaved with handshake data. That is handled internally and remains
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * transparent to the application.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author  David Brownell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
class AppOutputStream extends OutputStream {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private SSLSocketImpl c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    OutputRecord r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // One element array used to implement the write(byte) method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private final byte[] oneByte = new byte[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    AppOutputStream(SSLSocketImpl conn) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        r = new OutputRecord(Record.ct_application_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        c = conn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * Write the data out, NOW.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    synchronized public void write(byte b[], int off, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            throws IOException {
2061
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    61
        if (b == null) {
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    62
            throw new NullPointerException();
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    63
        } else if (off < 0 || len < 0 || len > b.length - off) {
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    64
            throw new IndexOutOfBoundsException();
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    65
        } else if (len == 0) {
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    66
            return;
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    67
        }
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    68
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        // check if the Socket is invalid (error or closed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        c.checkWrite();
2061
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
    71
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    72
        /*
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    73
         * By default, we counter chosen plaintext issues on CBC mode
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    74
         * ciphersuites in SSLv3/TLS1.0 by sending one byte of application
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    75
         * data in the first record of every payload, and the rest in
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    76
         * subsequent record(s). Note that the issues have been solved in
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    77
         * TLS 1.1 or later.
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    78
         *
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    79
         * It is not necessary to split the very first application record of
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    80
         * a freshly negotiated TLS session, as there is no previous
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    81
         * application data to guess.  To improve compatibility, we will not
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    82
         * split such records.
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    83
         *
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    84
         * This avoids issues in the outbound direction.  For a full fix,
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    85
         * the peer must have similar protections.
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    86
         */
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    87
        boolean isFirstRecordOfThePayload = true;
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    88
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        // Always flush at the end of each application level record.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        // This lets application synchronize read and write streams
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        // however they like; if we buffered here, they couldn't.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            do {
12428
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
    94
                boolean holdRecord = false;
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    95
                int howmuch;
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    96
                if (isFirstRecordOfThePayload && c.needToSplitPayload()) {
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
    97
                    howmuch = Math.min(0x01, r.availableDataBytes());
12428
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
    98
                     /*
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
    99
                      * Nagle's algorithm (TCP_NODELAY) was coming into
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   100
                      * play here when writing short (split) packets.
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   101
                      * Signal to the OutputRecord code to internally
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   102
                      * buffer this small packet until the next outbound
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   103
                      * packet (of any type) is written.
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   104
                      */
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   105
                     if ((len != 1) && (howmuch == 1)) {
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   106
                         holdRecord = true;
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   107
                     }
10915
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
   108
                } else {
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
   109
                    howmuch = Math.min(len, r.availableDataBytes());
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
   110
                }
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
   111
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
   112
                if (isFirstRecordOfThePayload && howmuch != 0) {
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
   113
                    isFirstRecordOfThePayload = false;
1e20964cebf3 7064341: jsse/runtime security problem
xuelei
parents: 5506
diff changeset
   114
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
2061
5a32855b67d4 6697270: Inputstream dosent behave correct
xuelei
parents: 2
diff changeset
   116
                // NOTE: *must* call c.writeRecord() even for howmuch == 0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                if (howmuch > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                    r.write(b, off, howmuch);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                    off += howmuch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                    len -= howmuch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                }
12428
e9feb65d37fa 7157903: JSSE client sockets are very slow
wetmore
parents: 10915
diff changeset
   122
                c.writeRecord(r, holdRecord);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                c.checkWrite();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            } while (len > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            // shutdown and rethrow (wrapped) exception as appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            c.handleException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * Write one byte now.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    synchronized public void write(int i) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        oneByte[0] = (byte)i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        write(oneByte, 0, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * Socket close is already synchronized, no need to block here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    public void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        c.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    // inherit no-op flush()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
}