jdk/src/share/classes/sun/security/ssl/EngineInputRecord.java
author xuelei
Fri, 01 Mar 2013 02:34:34 -0800
changeset 16045 9d08c3b9a6a0
parent 14664 e71aa0962e70
child 16067 36055e4b5305
permissions -rw-r--r--
7030966: Support AEAD CipherSuites Reviewed-by: weijun, wetmore, valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
16045
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
     2
 * Copyright (c) 2003, 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: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
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.nio.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.crypto.BadPaddingException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.misc.HexDumpEncoder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * Wrapper class around InputRecord.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Application data is kept external to the InputRecord,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * but handshake data (alert/change_cipher_spec/handshake) will
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * be kept internally in the ByteArrayInputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @author Brad Wetmore
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
final class EngineInputRecord extends InputRecord {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private SSLEngineImpl engine;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * A dummy ByteBuffer we'll pass back even when the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * is stored internally.  It'll never actually be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    static private ByteBuffer tmpBB = ByteBuffer.allocate(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * Flag to tell whether the last read/parsed data resides
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * internal in the ByteArrayInputStream, or in the external
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private boolean internalData;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    EngineInputRecord(SSLEngineImpl engine) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        this.engine = engine;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
    67
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    byte contentType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        if (internalData) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            return super.contentType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            return ct_application_data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * Check if there is enough inbound data in the ByteBuffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * to make a inbound packet.  Look for both SSLv2 and SSLv3.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * @return -1 if there are not enough bytes to tell (small header),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    int bytesInCompletePacket(ByteBuffer buf) throws SSLException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
         * SSLv2 length field is in bytes 0/1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
         * SSLv3/TLS length field is in bytes 3/4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        if (buf.remaining() < 5) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        int pos = buf.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        byte byteZero = buf.get(pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        int len = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
         * If we have already verified previous packets, we can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
         * ignore the verifications steps, and jump right to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
         * determination.  Otherwise, try one last hueristic to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
         * see if it's SSL/TLS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        if (formatVerified ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                (byteZero == ct_handshake) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                (byteZero == ct_alert)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
             * Last sanity check that it's not a wild record
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            ProtocolVersion recordVersion =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                ProtocolVersion.valueOf(buf.get(pos + 1), buf.get(pos + 2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            // Check if too old (currently not possible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            // or if the major version does not match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            // The actual version negotiation is in the handshaker classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            if ((recordVersion.v < ProtocolVersion.MIN.v)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                    || (recordVersion.major > ProtocolVersion.MAX.major)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                throw new SSLException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                    "Unsupported record version " + recordVersion);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
             * Reasonably sure this is a V3, disable further checks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
             * We can't do the same in the v2 check below, because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
             * read still needs to parse/handle the v2 clientHello.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            formatVerified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
             * One of the SSLv3/TLS message types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            len = ((buf.get(pos + 3) & 0xff) << 8) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                (buf.get(pos + 4) & 0xff) + headerSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
             * Must be SSLv2 or something unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
             * Check if it's short (2 bytes) or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
             * long (3) header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
             *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
             * Internals can warn about unsupported SSLv2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            boolean isShort = ((byteZero & 0x80) != 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            if (isShort &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                    ((buf.get(pos + 2) == 1) || buf.get(pos + 2) == 4)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                ProtocolVersion recordVersion =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                    ProtocolVersion.valueOf(buf.get(pos + 3), buf.get(pos + 4));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                // Check if too old (currently not possible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                // or if the major version does not match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                // The actual version negotiation is in the handshaker classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                if ((recordVersion.v < ProtocolVersion.MIN.v)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                        || (recordVersion.major > ProtocolVersion.MAX.major)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                    // if it's not SSLv2, we're out of here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                    if (recordVersion.v != ProtocolVersion.SSL20Hello.v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                        throw new SSLException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                            "Unsupported record version " + recordVersion);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                 * Client or Server Hello
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                int mask = (isShort ? 0x7f : 0x3f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                len = ((byteZero & mask) << 8) + (buf.get(pos + 1) & 0xff) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                    (isShort ? 2 : 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                // Gobblygook!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                throw new SSLException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                    "Unrecognized SSL message, plaintext connection?");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        return len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Pass the data down if it's internally cached, otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * do it here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * If internal data, data is decrypted internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * If external data(app), return a new ByteBuffer with data to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
16045
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   189
    ByteBuffer decrypt(Authenticator authenticator,
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   190
            CipherBox box, ByteBuffer bb) throws BadPaddingException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        if (internalData) {
16045
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   193
            decrypt(authenticator, box);    // MAC is checked during decryption
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            return tmpBB;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
16045
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   197
        BadPaddingException bpe = null;
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   198
        if (!box.isNullCipher()) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   199
            try {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   200
                // apply explicit nonce for AEAD/CBC cipher suites if needed
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   201
                int nonceSize =
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   202
                    box.applyExplicitNonce(authenticator, contentType(), bb);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   203
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   204
                // decrypt the content
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   205
                if (box.isAEADMode()) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   206
                    // DON'T encrypt the nonce_explicit for AEAD mode
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   207
                    bb.position(bb.position() + nonceSize);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   208
                }   // The explicit IV for CBC mode can be decrypted.
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   209
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   210
                box.decrypt(bb);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   211
                bb.position(nonceSize); // We don't actually remove the nonce.
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   212
            } catch (BadPaddingException e) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   213
                // RFC 2246 states that decryption_failed should be used
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   214
                // for this purpose. However, that allows certain attacks,
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   215
                // so we just send bad record MAC. We also need to make
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   216
                // sure to always check the MAC to avoid a timing attack
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   217
                // for the same issue. See paper by Vaudenay et al and the
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   218
                // update in RFC 4346/5246.
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   219
                //
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   220
                // Failover to message authentication code checking.
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   221
                bpe = new BadPaddingException("invalid padding");
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   222
            }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   223
        }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   224
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   225
        // Requires message authentication code for null, stream and block
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   226
        // cipher suites.
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   227
        if (authenticator instanceof MAC) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   228
            MAC signer = (MAC)authenticator;
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   229
            int macLen = signer.MAClen();
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   230
            if (macLen != 0) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   231
                if (bb.remaining() < macLen) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   232
                    // negative data length, something is wrong
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   233
                    throw new BadPaddingException("bad record");
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   234
                }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   235
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   236
                int position = bb.position();
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   237
                int limit = bb.limit();
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   238
                int macOffset = limit - macLen;
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   239
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   240
                bb.limit(macOffset);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   241
                byte[] hash = signer.compute(contentType(), bb);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   242
                if (hash == null || macLen != hash.length) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   243
                    // something is wrong with MAC implementation
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   244
                    throw new RuntimeException("Internal MAC error");
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   245
                }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   246
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   247
                bb.position(macOffset);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   248
                bb.limit(limit);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   249
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   250
                try {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   251
                    for (byte b : hash) {       // No BB.equals(byte []); !
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   252
                        if (bb.get() != b) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   253
                            throw new BadPaddingException("bad record MAC");
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   254
                        }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   255
                    }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   256
                } finally {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   257
                    // reset to the data
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   258
                    bb.position(position);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   259
                    bb.limit(macOffset);
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   260
                }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   261
            }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   262
        }
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   263
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   264
        // Is it a failover?
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   265
        if (bpe != null) {
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   266
            throw bpe;
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   267
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        return bb.slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Override the actual write below.  We do things this way to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * consistent with InputRecord.  InputRecord may try to write out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * data to the peer, and *then* throw an Exception.  This forces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * data to be generated/output before the exception is ever
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * generated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   279
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    void writeBuffer(OutputStream s, byte [] buf, int off, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
         * Copy data out of buffer, it's ready to go.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        ByteBuffer netBB = (ByteBuffer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            (ByteBuffer.allocate(len).put(buf, 0, len).flip());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        engine.writer.putOutboundDataSync(netBB);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * Delineate or read a complete packet from src.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * If internal data (hs, alert, ccs), the data is read and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * stored internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * If external data (app), return a new ByteBuffer which points
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * to the data to process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    ByteBuffer read(ByteBuffer srcBB) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
         * Could have a src == null/dst == null check here,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
         * but that was already checked by SSLEngine.unwrap before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
         * ever attempting to read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
         * If we have anything besides application data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
         * or if we haven't even done the initial v2 verification,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
         * we send this down to be processed by the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
         * internal cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        if (!formatVerified ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                (srcBB.get(srcBB.position()) != ct_application_data)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            internalData = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
            read(new ByteBufferInputStream(srcBB), (OutputStream) null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            return tmpBB;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        internalData = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        int srcPos = srcBB.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        int srcLim = srcBB.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        ProtocolVersion recordVersion = ProtocolVersion.valueOf(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                srcBB.get(srcPos + 1), srcBB.get(srcPos + 2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        // Check if too old (currently not possible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        // or if the major version does not match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        // The actual version negotiation is in the handshaker classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        if ((recordVersion.v < ProtocolVersion.MIN.v)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                || (recordVersion.major > ProtocolVersion.MAX.major)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
            throw new SSLException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                "Unsupported record version " + recordVersion);
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
         * It's really application data.  How much to consume?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
         * Jump over the header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        int len = bytesInCompletePacket(srcBB);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        assert(len > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        if (debug != null && Debug.isOn("packet")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                HexDumpEncoder hd = new HexDumpEncoder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                ByteBuffer bb = srcBB.duplicate();  // Use copy of BB
16045
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 14664
diff changeset
   346
                bb.limit(srcPos + len);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                System.out.println("[Raw read (bb)]: length = " + len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
                hd.encodeBuffer(bb, System.out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            } catch (IOException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        // Demarcate past header to end of packet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        srcBB.position(srcPos + headerSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        srcBB.limit(srcPos + len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        // Protect remainder of buffer, create slice to actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        // operate on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        ByteBuffer bb = srcBB.slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        srcBB.position(srcBB.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        srcBB.limit(srcLim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        return bb;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
}