jdk/src/share/classes/sun/security/ssl/EngineInputRecord.java
author wetmore
Tue, 12 Mar 2013 15:31:49 -0700
changeset 16067 36055e4b5305
parent 16045 9d08c3b9a6a0
child 16126 aad71cf676d7
permissions -rw-r--r--
8009925: Back out AEAD CipherSuites temporarily Reviewed-by: valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
16067
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
     2
 * Copyright (c) 2003, 2007, 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
    /*
16067
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   181
     * Verifies and removes the MAC value.  Returns true if
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   182
     * the MAC checks out OK.
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   183
     *
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   184
     * On entry:
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   185
     *     position = beginning of app/MAC data
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   186
     *     limit = end of MAC data.
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   187
     *
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   188
     * On return:
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   189
     *     position = beginning of app data
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   190
     *     limit = end of app data
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   191
     */
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   192
    boolean checkMAC(MAC signer, ByteBuffer bb) {
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   193
        if (internalData) {
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   194
            return checkMAC(signer);
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   195
        }
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   196
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   197
        int len = signer.MAClen();
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   198
        if (len == 0) { // no mac
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   199
            return true;
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   200
        }
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   201
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   202
        /*
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   203
         * Grab the original limit
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   204
         */
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   205
        int lim = bb.limit();
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   206
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   207
        /*
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   208
         * Delineate the area to apply a MAC on.
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   209
         */
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   210
        int macData = lim - len;
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   211
        bb.limit(macData);
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   212
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   213
        byte[] mac = signer.compute(contentType(), bb);
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   214
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   215
        if (len != mac.length) {
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   216
            throw new RuntimeException("Internal MAC error");
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   217
        }
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   218
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   219
        /*
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   220
         * Delineate the MAC values, position was already set
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   221
         * by doing the compute above.
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   222
         *
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   223
         * We could zero the MAC area, but not much useful information
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   224
         * there anyway.
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   225
         */
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   226
        bb.position(macData);
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   227
        bb.limit(lim);
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   228
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   229
        try {
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   230
            for (int i = 0; i < len; i++) {
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   231
                if (bb.get() != mac[i]) {  // No BB.equals(byte []); !
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   232
                    return false;
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   233
                }
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   234
            }
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   235
            return true;
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   236
        } finally {
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   237
            /*
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   238
             * Position to the data.
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   239
             */
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   240
            bb.rewind();
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   241
            bb.limit(macData);
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   242
        }
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   243
    }
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   244
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   245
    /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Pass the data down if it's internally cached, otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * do it here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * If internal data, data is decrypted internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * If external data(app), return a new ByteBuffer with data to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     */
16067
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   254
    ByteBuffer decrypt(CipherBox box, ByteBuffer bb)
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   255
            throws BadPaddingException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        if (internalData) {
16067
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   258
            decrypt(box);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            return tmpBB;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
16067
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   262
        box.decrypt(bb);
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   263
        bb.rewind();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        return bb.slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * Override the actual write below.  We do things this way to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * consistent with InputRecord.  InputRecord may try to write out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * data to the peer, and *then* throw an Exception.  This forces
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * data to be generated/output before the exception is ever
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * generated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   275
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    void writeBuffer(OutputStream s, byte [] buf, int off, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
         * Copy data out of buffer, it's ready to go.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        ByteBuffer netBB = (ByteBuffer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            (ByteBuffer.allocate(len).put(buf, 0, len).flip());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        engine.writer.putOutboundDataSync(netBB);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * Delineate or read a complete packet from src.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     * If internal data (hs, alert, ccs), the data is read and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * stored internally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * If external data (app), return a new ByteBuffer which points
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * to the data to process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    ByteBuffer read(ByteBuffer srcBB) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
         * Could have a src == null/dst == null check here,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
         * but that was already checked by SSLEngine.unwrap before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
         * ever attempting to read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
         * If we have anything besides application data,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
         * or if we haven't even done the initial v2 verification,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
         * we send this down to be processed by the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
         * internal cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        if (!formatVerified ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                (srcBB.get(srcBB.position()) != ct_application_data)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            internalData = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            read(new ByteBufferInputStream(srcBB), (OutputStream) null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            return tmpBB;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        internalData = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        int srcPos = srcBB.position();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
        int srcLim = srcBB.limit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        ProtocolVersion recordVersion = ProtocolVersion.valueOf(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                srcBB.get(srcPos + 1), srcBB.get(srcPos + 2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
        // Check if too old (currently not possible)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        // or if the major version does not match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        // The actual version negotiation is in the handshaker classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        if ((recordVersion.v < ProtocolVersion.MIN.v)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                || (recordVersion.major > ProtocolVersion.MAX.major)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            throw new SSLException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                "Unsupported record version " + recordVersion);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
         * It's really application data.  How much to consume?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
         * Jump over the header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
        int len = bytesInCompletePacket(srcBB);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        assert(len > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        if (debug != null && Debug.isOn("packet")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                HexDumpEncoder hd = new HexDumpEncoder();
16067
36055e4b5305 8009925: Back out AEAD CipherSuites temporarily
wetmore
parents: 16045
diff changeset
   341
                srcBB.limit(srcPos + len);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                ByteBuffer bb = srcBB.duplicate();  // Use copy of BB
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                System.out.println("[Raw read (bb)]: length = " + len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                hd.encodeBuffer(bb, System.out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            } catch (IOException e) { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        // Demarcate past header to end of packet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        srcBB.position(srcPos + headerSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        srcBB.limit(srcPos + len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        // Protect remainder of buffer, create slice to actually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        // operate on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        ByteBuffer bb = srcBB.slice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        srcBB.position(srcBB.limit());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        srcBB.limit(srcLim);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        return bb;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
}