2014-06-20 20:00:00 +01:00
|
|
|
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This package is an SSL implementation written
|
|
|
|
* by Eric Young (eay@cryptsoft.com).
|
|
|
|
* The implementation was written so as to conform with Netscapes SSL.
|
|
|
|
*
|
|
|
|
* This library is free for commercial and non-commercial use as long as
|
|
|
|
* the following conditions are aheared to. The following conditions
|
|
|
|
* apply to all code found in this distribution, be it the RC4, RSA,
|
|
|
|
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
|
|
|
* included with this distribution is covered by the same copyright terms
|
|
|
|
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
|
|
|
*
|
|
|
|
* Copyright remains Eric Young's, and as such any Copyright notices in
|
|
|
|
* the code are not to be removed.
|
|
|
|
* If this package is used in a product, Eric Young should be given attribution
|
|
|
|
* as the author of the parts of the library used.
|
|
|
|
* This can be in the form of a textual message at program startup or
|
|
|
|
* in documentation (online or textual) provided with the package.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* "This product includes cryptographic software written by
|
|
|
|
* Eric Young (eay@cryptsoft.com)"
|
|
|
|
* The word 'cryptographic' can be left out if the rouines from the library
|
|
|
|
* being used are not cryptographic related :-).
|
|
|
|
* 4. If you include any Windows specific code (or a derivative thereof) from
|
|
|
|
* the apps directory (application code) you must include an acknowledgement:
|
|
|
|
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* The licence and distribution terms for any publically available version or
|
|
|
|
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
|
|
|
* copied and put under another distribution licence
|
|
|
|
* [including the GNU Public Licence.]
|
|
|
|
*/
|
|
|
|
/* ====================================================================
|
|
|
|
* Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. All advertising materials mentioning features or use of this
|
|
|
|
* software must display the following acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
|
|
|
*
|
|
|
|
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* prior written permission. For written permission, please contact
|
|
|
|
* openssl-core@openssl.org.
|
|
|
|
*
|
|
|
|
* 5. Products derived from this software may not be called "OpenSSL"
|
|
|
|
* nor may "OpenSSL" appear in their names without prior written
|
|
|
|
* permission of the OpenSSL Project.
|
|
|
|
*
|
|
|
|
* 6. Redistributions of any form whatsoever must retain the following
|
|
|
|
* acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
|
|
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
* ====================================================================
|
|
|
|
*
|
|
|
|
* This product includes cryptographic software written by Eric Young
|
|
|
|
* (eay@cryptsoft.com). This product includes software written by Tim
|
|
|
|
* Hudson (tjh@cryptsoft.com). */
|
|
|
|
/* ====================================================================
|
|
|
|
* Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
|
|
|
|
* ECC cipher suite support in OpenSSL originally developed by
|
|
|
|
* SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */
|
|
|
|
|
2015-09-15 06:48:04 +01:00
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <openssl/buf.h>
|
2016-06-17 23:48:29 +01:00
|
|
|
#include <openssl/bytestring.h>
|
2015-04-08 04:05:04 +01:00
|
|
|
#include <openssl/err.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/mem.h>
|
2014-08-26 05:32:30 +01:00
|
|
|
#include <openssl/md5.h>
|
2016-03-25 22:07:11 +00:00
|
|
|
#include <openssl/nid.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <openssl/rand.h>
|
2014-08-26 05:32:30 +01:00
|
|
|
#include <openssl/sha.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2016-12-13 06:07:13 +00:00
|
|
|
#include "../crypto/internal.h"
|
2015-04-08 03:38:30 +01:00
|
|
|
#include "internal.h"
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-12-16 02:42:07 +00:00
|
|
|
|
Support symbol prefixes
- In base.h, if BORINGSSL_PREFIX is defined, include
boringssl_prefix_symbols.h
- In all .S files, if BORINGSSL_PREFIX is defined, include
boringssl_prefix_symbols_asm.h
- In base.h, BSSL_NAMESPACE_BEGIN and BSSL_NAMESPACE_END are
defined with appropriate values depending on whether
BORINGSSL_PREFIX is defined; these macros are used in place
of 'namespace bssl {' and '}'
- Add util/make_prefix_headers.go, which takes a list of symbols
and auto-generates the header files mentioned above
- In CMakeLists.txt, if BORINGSSL_PREFIX and BORINGSSL_PREFIX_SYMBOLS
are defined, run util/make_prefix_headers.go to generate header
files
- In various CMakeLists.txt files, add "global_target" that all
targets depend on to give us a place to hook logic that must run
before all other targets (in particular, the header file generation
logic)
- Document this in BUILDING.md, including the fact that it is
the caller's responsibility to provide the symbol list and keep it
up to date
- Note that this scheme has not been tested on Windows, and likely
does not work on it; Windows support will need to be added in a
future commit
Change-Id: If66a7157f46b5b66230ef91e15826b910cf979a2
Reviewed-on: https://boringssl-review.googlesource.com/31364
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: David Benjamin <davidben@google.com>
2018-08-27 02:53:36 +01:00
|
|
|
BSSL_NAMESPACE_BEGIN
|
Move libssl's internals into the bssl namespace.
This is horrible, but everything else I tried was worse. The goal with
this CL is to take the extern "C" out of ssl/internal.h and move most
symbols to namespace bssl, so we can start using C++ helpers and
destructors without worry.
Complications:
- Public API functions must be extern "C" and match their declaration in
ssl.h, which is unnamespaced. C++ really does not want you to
interleave namespaced and unnamespaced things. One can actually write
a namespaced extern "C" function, but this means, from C++'s
perspective, the function is namespaced. Trying to namespace the
public header would worked but ended up too deep a rabbithole.
- Our STACK_OF macros do not work right in namespaces.
- The typedefs for our exposed but opaque types are visible in the
header files and copied into consuming projects as forward
declarations. We ultimately want to give SSL a destructor, but
clobbering an unnamespaced ssl_st::~ssl_st seems bad manners.
- MSVC complains about ambiguous names if one typedefs SSL to bssl::SSL.
This CL opts for:
- ssl/*.cc must begin with #define BORINGSSL_INTERNAL_CXX_TYPES. This
informs the public headers to create forward declarations which are
compatible with our namespaces.
- For now, C++-defined type FOO ends up at bssl::FOO with a typedef
outside. Later I imagine we'll rename many of them.
- Internal functions get namespace bssl, so we stop worrying about
stomping the tls1_prf symbol. Exported C functions are stuck as they
are. Rather than try anything weird, bite the bullet and reorder files
which have a mix of public and private functions. I expect that over
time, the public functions will become fairly small as we move logic
to more idiomatic C++.
Files without any public C functions can just be written normally.
- To avoid MSVC troubles, some bssl types are renamed to CPlusPlusStyle
in advance of them being made idiomatic C++.
Bug: 132
Change-Id: Ic931895e117c38b14ff8d6e5a273e868796c7581
Reviewed-on: https://boringssl-review.googlesource.com/18124
Reviewed-by: David Benjamin <davidben@google.com>
2017-07-18 21:34:25 +01:00
|
|
|
|
2017-10-07 09:12:35 +01:00
|
|
|
static bool add_record_to_flight(SSL *ssl, uint8_t type,
|
|
|
|
Span<const uint8_t> in) {
|
2018-05-24 22:17:34 +01:00
|
|
|
// The caller should have flushed |pending_hs_data| first.
|
|
|
|
assert(!ssl->s3->pending_hs_data);
|
2017-08-29 21:33:21 +01:00
|
|
|
// We'll never add a flight while in the process of writing it out.
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
assert(ssl->s3->pending_flight_offset == 0);
|
|
|
|
|
2017-10-13 22:18:35 +01:00
|
|
|
if (ssl->s3->pending_flight == nullptr) {
|
|
|
|
ssl->s3->pending_flight.reset(BUF_MEM_new());
|
|
|
|
if (ssl->s3->pending_flight == nullptr) {
|
2017-10-07 09:12:35 +01:00
|
|
|
return false;
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
}
|
2014-12-16 02:42:07 +00:00
|
|
|
}
|
|
|
|
|
2017-09-28 00:02:51 +01:00
|
|
|
size_t max_out = in.size() + SSL_max_seal_overhead(ssl);
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
size_t new_cap = ssl->s3->pending_flight->length + max_out;
|
2017-09-28 00:02:51 +01:00
|
|
|
if (max_out < in.size() || new_cap < max_out) {
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
|
2017-10-07 09:12:35 +01:00
|
|
|
return false;
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
}
|
2016-06-17 23:48:29 +01:00
|
|
|
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
size_t len;
|
2017-10-13 22:18:35 +01:00
|
|
|
if (!BUF_MEM_reserve(ssl->s3->pending_flight.get(), new_cap) ||
|
2017-09-28 00:02:51 +01:00
|
|
|
!tls_seal_record(ssl,
|
|
|
|
(uint8_t *)ssl->s3->pending_flight->data +
|
|
|
|
ssl->s3->pending_flight->length,
|
|
|
|
&len, max_out, type, in.data(), in.size())) {
|
2017-10-07 09:12:35 +01:00
|
|
|
return false;
|
2016-06-17 23:48:29 +01:00
|
|
|
}
|
|
|
|
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
ssl->s3->pending_flight->length += len;
|
2017-10-07 09:12:35 +01:00
|
|
|
return true;
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 09:12:35 +01:00
|
|
|
bool ssl3_init_message(SSL *ssl, CBB *cbb, CBB *body, uint8_t type) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Pick a modest size hint to save most of the |realloc| calls.
|
2016-06-17 23:48:29 +01:00
|
|
|
if (!CBB_init(cbb, 64) ||
|
|
|
|
!CBB_add_u8(cbb, type) ||
|
|
|
|
!CBB_add_u24_length_prefixed(cbb, body)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
CBB_cleanup(cbb);
|
2017-10-07 09:12:35 +01:00
|
|
|
return false;
|
2016-06-17 23:48:29 +01:00
|
|
|
}
|
|
|
|
|
2017-10-07 09:12:35 +01:00
|
|
|
return true;
|
2016-06-17 23:48:29 +01:00
|
|
|
}
|
|
|
|
|
2017-10-07 09:12:35 +01:00
|
|
|
bool ssl3_finish_message(SSL *ssl, CBB *cbb, Array<uint8_t> *out_msg) {
|
2017-09-21 16:20:53 +01:00
|
|
|
return CBBFinishArray(cbb, out_msg);
|
2016-11-12 03:23:25 +00:00
|
|
|
}
|
2016-06-17 23:48:29 +01:00
|
|
|
|
2017-10-07 09:12:35 +01:00
|
|
|
bool ssl3_add_message(SSL *ssl, Array<uint8_t> msg) {
|
2018-10-31 00:45:22 +00:00
|
|
|
// Pack handshake data into the minimal number of records. This avoids
|
|
|
|
// unnecessary encryption overhead, notably in TLS 1.3 where we send several
|
|
|
|
// encrypted messages in a row. For now, we do not do this for the null
|
|
|
|
// cipher. The benefit is smaller and there is a risk of breaking buggy
|
2018-08-28 15:14:07 +01:00
|
|
|
// implementations.
|
2018-10-31 00:45:22 +00:00
|
|
|
//
|
|
|
|
// TODO(davidben): See if we can do this uniformly.
|
|
|
|
Span<const uint8_t> rest = msg;
|
2018-12-13 13:53:57 +00:00
|
|
|
if (ssl->quic_method == nullptr &&
|
2018-08-28 15:14:07 +01:00
|
|
|
ssl->s3->aead_write_ctx->is_null_cipher()) {
|
2018-10-31 00:45:22 +00:00
|
|
|
while (!rest.empty()) {
|
|
|
|
Span<const uint8_t> chunk = rest.subspan(0, ssl->max_send_fragment);
|
|
|
|
rest = rest.subspan(chunk.size());
|
|
|
|
|
|
|
|
if (!add_record_to_flight(ssl, SSL3_RT_HANDSHAKE, chunk)) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-24 22:17:34 +01:00
|
|
|
}
|
|
|
|
} else {
|
2018-10-31 00:45:22 +00:00
|
|
|
while (!rest.empty()) {
|
|
|
|
// Flush if |pending_hs_data| is full.
|
|
|
|
if (ssl->s3->pending_hs_data &&
|
|
|
|
ssl->s3->pending_hs_data->length >= ssl->max_send_fragment &&
|
|
|
|
!tls_flush_pending_hs_data(ssl)) {
|
|
|
|
return false;
|
2018-05-24 22:17:34 +01:00
|
|
|
}
|
2018-10-31 00:45:22 +00:00
|
|
|
|
|
|
|
size_t pending_len =
|
|
|
|
ssl->s3->pending_hs_data ? ssl->s3->pending_hs_data->length : 0;
|
|
|
|
Span<const uint8_t> chunk =
|
|
|
|
rest.subspan(0, ssl->max_send_fragment - pending_len);
|
|
|
|
assert(!chunk.empty());
|
|
|
|
rest = rest.subspan(chunk.size());
|
|
|
|
|
|
|
|
if (!ssl->s3->pending_hs_data) {
|
|
|
|
ssl->s3->pending_hs_data.reset(BUF_MEM_new());
|
|
|
|
}
|
|
|
|
if (!ssl->s3->pending_hs_data ||
|
|
|
|
!BUF_MEM_append(ssl->s3->pending_hs_data.get(), chunk.data(),
|
|
|
|
chunk.size())) {
|
|
|
|
return false;
|
2018-05-24 22:17:34 +01:00
|
|
|
}
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
}
|
2018-05-24 22:17:34 +01:00
|
|
|
}
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
|
2017-10-04 23:14:28 +01:00
|
|
|
ssl_do_msg_callback(ssl, 1 /* write */, SSL3_RT_HANDSHAKE, msg);
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(svaldez): Move this up a layer to fix abstraction for SSLTranscript on
|
|
|
|
// hs.
|
2017-01-12 18:17:07 +00:00
|
|
|
if (ssl->s3->hs != NULL &&
|
2017-10-11 22:19:19 +01:00
|
|
|
!ssl->s3->hs->transcript.Update(msg)) {
|
2017-10-07 09:12:35 +01:00
|
|
|
return false;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
2017-10-07 09:12:35 +01:00
|
|
|
return true;
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 22:17:34 +01:00
|
|
|
bool tls_flush_pending_hs_data(SSL *ssl) {
|
2018-10-31 00:45:22 +00:00
|
|
|
if (!ssl->s3->pending_hs_data || ssl->s3->pending_hs_data->length == 0) {
|
2018-05-24 22:17:34 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
UniquePtr<BUF_MEM> pending_hs_data = std::move(ssl->s3->pending_hs_data);
|
2018-10-31 00:45:22 +00:00
|
|
|
auto data =
|
2018-05-24 22:17:34 +01:00
|
|
|
MakeConstSpan(reinterpret_cast<const uint8_t *>(pending_hs_data->data),
|
2018-10-31 00:45:22 +00:00
|
|
|
pending_hs_data->length);
|
2018-12-13 13:53:57 +00:00
|
|
|
if (ssl->quic_method) {
|
|
|
|
if (!ssl->quic_method->add_handshake_data(ssl, ssl->s3->write_level,
|
|
|
|
data.data(), data.size())) {
|
2018-10-31 00:45:22 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_QUIC_INTERNAL_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return add_record_to_flight(ssl, SSL3_RT_HANDSHAKE, data);
|
2018-05-24 22:17:34 +01:00
|
|
|
}
|
|
|
|
|
2017-10-07 09:12:35 +01:00
|
|
|
bool ssl3_add_change_cipher_spec(SSL *ssl) {
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
static const uint8_t kChangeCipherSpec[1] = {SSL3_MT_CCS};
|
|
|
|
|
2018-07-14 16:23:01 +01:00
|
|
|
if (!tls_flush_pending_hs_data(ssl)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-13 13:53:57 +00:00
|
|
|
if (!ssl->quic_method &&
|
2018-05-24 22:17:34 +01:00
|
|
|
!add_record_to_flight(ssl, SSL3_RT_CHANGE_CIPHER_SPEC,
|
2017-09-28 00:02:51 +01:00
|
|
|
kChangeCipherSpec)) {
|
2017-10-07 09:12:35 +01:00
|
|
|
return false;
|
2016-06-17 23:48:29 +01:00
|
|
|
}
|
|
|
|
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
ssl_do_msg_callback(ssl, 1 /* write */, SSL3_RT_CHANGE_CIPHER_SPEC,
|
2017-10-04 23:14:28 +01:00
|
|
|
kChangeCipherSpec);
|
2017-10-07 09:12:35 +01:00
|
|
|
return true;
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ssl3_flush_flight(SSL *ssl) {
|
2018-10-31 00:45:22 +00:00
|
|
|
if (!tls_flush_pending_hs_data(ssl)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-12-13 13:53:57 +00:00
|
|
|
if (ssl->quic_method) {
|
2018-07-14 16:23:01 +01:00
|
|
|
if (ssl->s3->write_shutdown != ssl_shutdown_none) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-12-13 13:53:57 +00:00
|
|
|
if (!ssl->quic_method->flush_flight(ssl)) {
|
2018-07-14 16:23:01 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_QUIC_INTERNAL_ERROR);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 22:18:35 +01:00
|
|
|
if (ssl->s3->pending_flight == nullptr) {
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-10-12 23:09:20 +01:00
|
|
|
if (ssl->s3->write_shutdown != ssl_shutdown_none) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-05-08 23:04:35 +01:00
|
|
|
static_assert(INT_MAX <= 0xffffffff, "int is larger than 32 bits");
|
|
|
|
if (ssl->s3->pending_flight->length > INT_MAX) {
|
2016-06-17 23:48:29 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
return -1;
|
2016-06-17 23:48:29 +01:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// If there is pending data in the write buffer, it must be flushed out before
|
|
|
|
// any new data in pending_flight.
|
2017-10-13 21:50:39 +01:00
|
|
|
if (!ssl->s3->write_buffer.empty()) {
|
2017-03-09 19:56:07 +00:00
|
|
|
int ret = ssl_write_buffer_flush(ssl);
|
|
|
|
if (ret <= 0) {
|
2017-10-14 00:17:22 +01:00
|
|
|
ssl->s3->rwstate = SSL_WRITING;
|
2017-03-09 19:56:07 +00:00
|
|
|
return ret;
|
|
|
|
}
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Write the pending flight.
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
while (ssl->s3->pending_flight_offset < ssl->s3->pending_flight->length) {
|
|
|
|
int ret = BIO_write(
|
2018-07-03 00:47:27 +01:00
|
|
|
ssl->wbio.get(),
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
ssl->s3->pending_flight->data + ssl->s3->pending_flight_offset,
|
|
|
|
ssl->s3->pending_flight->length - ssl->s3->pending_flight_offset);
|
|
|
|
if (ret <= 0) {
|
2017-10-14 00:17:22 +01:00
|
|
|
ssl->s3->rwstate = SSL_WRITING;
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->s3->pending_flight_offset += ret;
|
|
|
|
}
|
|
|
|
|
2018-07-03 00:47:27 +01:00
|
|
|
if (BIO_flush(ssl->wbio.get()) <= 0) {
|
2017-10-14 00:17:22 +01:00
|
|
|
ssl->s3->rwstate = SSL_WRITING;
|
2017-01-27 15:06:07 +00:00
|
|
|
return -1;
|
2016-06-17 23:48:29 +01:00
|
|
|
}
|
|
|
|
|
2017-10-13 22:18:35 +01:00
|
|
|
ssl->s3->pending_flight.reset();
|
Don't use the buffer BIO in TLS.
On the TLS side, we introduce a running buffer of ciphertext. Queuing up
pending data consists of encrypting the record into the buffer. This
effectively reimplements what the buffer BIO was doing previously, but
this resizes to fit the whole flight.
As part of this, rename all the functions to add to the pending flight
to be more uniform. This CL proposes "add_foo" to add to the pending
flight and "flush_flight" to drain it.
We add an add_alert hook for alerts but, for now, only the SSL 3.0
warning alert (sent mid-handshake) uses this mechanism. Later work will
push this down to the rest of the write path so closure alerts use it
too, as in DTLS. The intended end state is that all the ssl_buffer.c and
wpend_ret logic will only be used for application data and eventually
optionally replaced by the in-place API, while all "incidental" data
will be handled internally.
For now, the two buffers are mutually exclusive. Moving closure alerts
to "incidentals" will change this, but flushing application data early
is tricky due to wpend_ret. (If we call ssl_write_buffer_flush,
do_ssl3_write doesn't realize it still has a wpend_ret to replay.) That
too is all left alone in this change.
To keep the diff down, write_message is retained for now and will be
removed from the state machines in a follow-up change.
BUG=72
Change-Id: Ibce882f5f7196880648f25d5005322ca4055c71d
Reviewed-on: https://boringssl-review.googlesource.com/13224
Reviewed-by: Adam Langley <agl@google.com>
2017-01-03 23:37:41 +00:00
|
|
|
ssl->s3->pending_flight_offset = 0;
|
2016-06-07 20:06:39 +01:00
|
|
|
return 1;
|
2014-12-16 02:42:07 +00:00
|
|
|
}
|
|
|
|
|
2017-10-06 22:36:20 +01:00
|
|
|
static ssl_open_record_t read_v2_client_hello(SSL *ssl, size_t *out_consumed,
|
|
|
|
Span<const uint8_t> in) {
|
|
|
|
*out_consumed = 0;
|
|
|
|
assert(in.size() >= SSL3_RT_HEADER_LENGTH);
|
2017-08-29 21:33:21 +01:00
|
|
|
// Determine the length of the V2ClientHello.
|
2017-10-06 22:36:20 +01:00
|
|
|
size_t msg_length = ((in[0] & 0x7f) << 8) | in[1];
|
2016-07-07 05:55:10 +01:00
|
|
|
if (msg_length > (1024 * 4)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_RECORD_TOO_LARGE);
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
if (msg_length < SSL3_RT_HEADER_LENGTH - 2) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Reject lengths that are too short early. We have already read
|
|
|
|
// |SSL3_RT_HEADER_LENGTH| bytes, so we should not attempt to process an
|
|
|
|
// (invalid) V2ClientHello which would be shorter than that.
|
2016-07-07 05:55:10 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_RECORD_LENGTH_MISMATCH);
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-10-06 22:36:20 +01:00
|
|
|
// Ask for the remainder of the V2ClientHello.
|
|
|
|
if (in.size() < 2 + msg_length) {
|
|
|
|
*out_consumed = 2 + msg_length;
|
|
|
|
return ssl_open_record_partial;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-10-13 21:50:39 +01:00
|
|
|
CBS v2_client_hello = CBS(ssl->s3->read_buffer.span().subspan(2, msg_length));
|
2017-08-29 21:33:21 +01:00
|
|
|
// The V2ClientHello without the length is incorporated into the handshake
|
|
|
|
// hash. This is only ever called at the start of the handshake, so hs is
|
|
|
|
// guaranteed to be non-NULL.
|
2017-10-11 22:19:19 +01:00
|
|
|
if (!ssl->s3->hs->transcript.Update(v2_client_hello)) {
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2016-09-20 01:15:07 +01:00
|
|
|
ssl_do_msg_callback(ssl, 0 /* read */, 0 /* V2ClientHello */,
|
2017-10-04 23:14:28 +01:00
|
|
|
v2_client_hello);
|
2016-07-07 05:55:10 +01:00
|
|
|
|
|
|
|
uint8_t msg_type;
|
|
|
|
uint16_t version, cipher_spec_length, session_id_length, challenge_length;
|
|
|
|
CBS cipher_specs, session_id, challenge;
|
|
|
|
if (!CBS_get_u8(&v2_client_hello, &msg_type) ||
|
|
|
|
!CBS_get_u16(&v2_client_hello, &version) ||
|
|
|
|
!CBS_get_u16(&v2_client_hello, &cipher_spec_length) ||
|
|
|
|
!CBS_get_u16(&v2_client_hello, &session_id_length) ||
|
|
|
|
!CBS_get_u16(&v2_client_hello, &challenge_length) ||
|
|
|
|
!CBS_get_bytes(&v2_client_hello, &cipher_specs, cipher_spec_length) ||
|
|
|
|
!CBS_get_bytes(&v2_client_hello, &session_id, session_id_length) ||
|
|
|
|
!CBS_get_bytes(&v2_client_hello, &challenge, challenge_length) ||
|
|
|
|
CBS_len(&v2_client_hello) != 0) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR);
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// msg_type has already been checked.
|
2016-07-07 05:55:10 +01:00
|
|
|
assert(msg_type == SSL2_MT_CLIENT_HELLO);
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// The client_random is the V2ClientHello challenge. Truncate or left-pad with
|
|
|
|
// zeros as needed.
|
2016-07-07 05:55:10 +01:00
|
|
|
size_t rand_len = CBS_len(&challenge);
|
|
|
|
if (rand_len > SSL3_RANDOM_SIZE) {
|
|
|
|
rand_len = SSL3_RANDOM_SIZE;
|
|
|
|
}
|
|
|
|
uint8_t random[SSL3_RANDOM_SIZE];
|
2016-12-13 06:07:13 +00:00
|
|
|
OPENSSL_memset(random, 0, SSL3_RANDOM_SIZE);
|
|
|
|
OPENSSL_memcpy(random + (SSL3_RANDOM_SIZE - rand_len), CBS_data(&challenge),
|
|
|
|
rand_len);
|
2016-07-07 05:55:10 +01:00
|
|
|
|
2018-11-02 23:31:17 +00:00
|
|
|
// Write out an equivalent TLS ClientHello directly to the handshake buffer.
|
2016-07-27 19:01:59 +01:00
|
|
|
size_t max_v3_client_hello = SSL3_HM_HEADER_LENGTH + 2 /* version */ +
|
|
|
|
SSL3_RANDOM_SIZE + 1 /* session ID length */ +
|
|
|
|
2 /* cipher list length */ +
|
|
|
|
CBS_len(&cipher_specs) / 3 * 2 +
|
|
|
|
1 /* compression length */ + 1 /* compression */;
|
2017-07-20 04:57:40 +01:00
|
|
|
ScopedCBB client_hello;
|
|
|
|
CBB hello_body, cipher_suites;
|
2018-11-02 23:31:17 +00:00
|
|
|
if (!ssl->s3->hs_buf) {
|
|
|
|
ssl->s3->hs_buf.reset(BUF_MEM_new());
|
|
|
|
}
|
|
|
|
if (!ssl->s3->hs_buf ||
|
|
|
|
!BUF_MEM_reserve(ssl->s3->hs_buf.get(), max_v3_client_hello) ||
|
2017-10-14 00:17:22 +01:00
|
|
|
!CBB_init_fixed(client_hello.get(), (uint8_t *)ssl->s3->hs_buf->data,
|
|
|
|
ssl->s3->hs_buf->max) ||
|
2017-07-20 04:57:40 +01:00
|
|
|
!CBB_add_u8(client_hello.get(), SSL3_MT_CLIENT_HELLO) ||
|
|
|
|
!CBB_add_u24_length_prefixed(client_hello.get(), &hello_body) ||
|
2016-07-07 05:55:10 +01:00
|
|
|
!CBB_add_u16(&hello_body, version) ||
|
|
|
|
!CBB_add_bytes(&hello_body, random, SSL3_RANDOM_SIZE) ||
|
2017-08-29 21:33:21 +01:00
|
|
|
// No session id.
|
2016-07-07 05:55:10 +01:00
|
|
|
!CBB_add_u8(&hello_body, 0) ||
|
|
|
|
!CBB_add_u16_length_prefixed(&hello_body, &cipher_suites)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Copy the cipher suites.
|
2016-07-07 05:55:10 +01:00
|
|
|
while (CBS_len(&cipher_specs) > 0) {
|
|
|
|
uint32_t cipher_spec;
|
|
|
|
if (!CBS_get_u24(&cipher_specs, &cipher_spec)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR);
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Skip SSLv2 ciphers.
|
2016-07-07 05:55:10 +01:00
|
|
|
if ((cipher_spec & 0xff0000) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!CBB_add_u16(&cipher_suites, cipher_spec)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Add the null compression scheme and finish.
|
2017-07-20 04:57:40 +01:00
|
|
|
if (!CBB_add_u8(&hello_body, 1) ||
|
|
|
|
!CBB_add_u8(&hello_body, 0) ||
|
2017-10-14 00:17:22 +01:00
|
|
|
!CBB_finish(client_hello.get(), NULL, &ssl->s3->hs_buf->length)) {
|
2016-07-07 05:55:10 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_error;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-10-06 22:36:20 +01:00
|
|
|
*out_consumed = 2 + msg_length;
|
2017-08-31 20:06:42 +01:00
|
|
|
ssl->s3->is_v2_hello = true;
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_success;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
|
|
|
|
2017-10-06 23:26:36 +01:00
|
|
|
static bool parse_message(const SSL *ssl, SSLMessage *out,
|
|
|
|
size_t *out_bytes_needed) {
|
2017-10-14 00:17:22 +01:00
|
|
|
if (!ssl->s3->hs_buf) {
|
2017-08-01 21:32:25 +01:00
|
|
|
*out_bytes_needed = 4;
|
|
|
|
return false;
|
2016-07-27 19:01:59 +01:00
|
|
|
}
|
|
|
|
|
2017-08-01 21:32:25 +01:00
|
|
|
CBS cbs;
|
|
|
|
uint32_t len;
|
2017-10-14 00:17:22 +01:00
|
|
|
CBS_init(&cbs, reinterpret_cast<const uint8_t *>(ssl->s3->hs_buf->data),
|
|
|
|
ssl->s3->hs_buf->length);
|
2017-08-01 21:32:25 +01:00
|
|
|
if (!CBS_get_u8(&cbs, &out->type) ||
|
|
|
|
!CBS_get_u24(&cbs, &len)) {
|
|
|
|
*out_bytes_needed = 4;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!CBS_get_bytes(&cbs, &out->body, len)) {
|
|
|
|
*out_bytes_needed = 4 + len;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-14 00:17:22 +01:00
|
|
|
CBS_init(&out->raw, reinterpret_cast<const uint8_t *>(ssl->s3->hs_buf->data),
|
2017-08-01 21:32:25 +01:00
|
|
|
4 + len);
|
|
|
|
out->is_v2_hello = ssl->s3->is_v2_hello;
|
2017-10-06 22:54:10 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ssl3_get_message(SSL *ssl, SSLMessage *out) {
|
|
|
|
size_t unused;
|
|
|
|
if (!parse_message(ssl, out, &unused)) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-01 21:32:25 +01:00
|
|
|
if (!ssl->s3->has_message) {
|
|
|
|
if (!out->is_v2_hello) {
|
2017-10-04 23:14:28 +01:00
|
|
|
ssl_do_msg_callback(ssl, 0 /* read */, SSL3_RT_HANDSHAKE, out->raw);
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
2017-08-31 20:06:42 +01:00
|
|
|
ssl->s3->has_message = true;
|
2016-07-07 05:55:10 +01:00
|
|
|
}
|
2017-08-01 21:32:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
2016-07-07 05:55:10 +01:00
|
|
|
|
2017-10-07 21:52:50 +01:00
|
|
|
bool tls_can_accept_handshake_data(const SSL *ssl, uint8_t *out_alert) {
|
|
|
|
// If there is a complete message, the caller must have consumed it first.
|
|
|
|
SSLMessage msg;
|
|
|
|
size_t bytes_needed;
|
|
|
|
if (parse_message(ssl, &msg, &bytes_needed)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
|
|
|
*out_alert = SSL_AD_INTERNAL_ERROR;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enforce the limit so the peer cannot force us to buffer 16MB.
|
|
|
|
if (bytes_needed > 4 + ssl_max_handshake_message_len(ssl)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_EXCESSIVE_MESSAGE_SIZE);
|
|
|
|
*out_alert = SSL_AD_ILLEGAL_PARAMETER;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-06 23:26:36 +01:00
|
|
|
bool tls_has_unprocessed_handshake_data(const SSL *ssl) {
|
|
|
|
size_t msg_len = 0;
|
|
|
|
if (ssl->s3->has_message) {
|
|
|
|
SSLMessage msg;
|
|
|
|
size_t unused;
|
|
|
|
if (parse_message(ssl, &msg, &unused)) {
|
|
|
|
msg_len = CBS_len(&msg.raw);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-14 00:17:22 +01:00
|
|
|
return ssl->s3->hs_buf && ssl->s3->hs_buf->length > msg_len;
|
2017-10-06 23:26:36 +01:00
|
|
|
}
|
|
|
|
|
2018-11-02 23:31:17 +00:00
|
|
|
bool tls_append_handshake_data(SSL *ssl, Span<const uint8_t> data) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Re-create the handshake buffer if needed.
|
2017-10-14 00:17:22 +01:00
|
|
|
if (!ssl->s3->hs_buf) {
|
|
|
|
ssl->s3->hs_buf.reset(BUF_MEM_new());
|
2016-05-13 23:12:19 +01:00
|
|
|
}
|
2018-11-02 23:31:17 +00:00
|
|
|
return ssl->s3->hs_buf &&
|
|
|
|
BUF_MEM_append(ssl->s3->hs_buf.get(), data.data(), data.size());
|
|
|
|
}
|
2014-12-16 02:46:16 +00:00
|
|
|
|
2018-11-02 23:31:17 +00:00
|
|
|
ssl_open_record_t ssl3_open_handshake(SSL *ssl, size_t *out_consumed,
|
|
|
|
uint8_t *out_alert, Span<uint8_t> in) {
|
|
|
|
*out_consumed = 0;
|
2017-08-29 21:33:21 +01:00
|
|
|
// Bypass the record layer for the first message to handle V2ClientHello.
|
2017-08-01 21:32:25 +01:00
|
|
|
if (ssl->server && !ssl->s3->v2_hello_done) {
|
2017-10-06 22:36:20 +01:00
|
|
|
// Ask for the first 5 bytes, the size of the TLS record header. This is
|
|
|
|
// sufficient to detect a V2ClientHello and ensures that we never read
|
|
|
|
// beyond the first record.
|
|
|
|
if (in.size() < SSL3_RT_HEADER_LENGTH) {
|
|
|
|
*out_consumed = SSL3_RT_HEADER_LENGTH;
|
|
|
|
return ssl_open_record_partial;
|
2017-08-01 21:32:25 +01:00
|
|
|
}
|
2014-12-16 02:42:07 +00:00
|
|
|
|
2017-10-06 22:36:20 +01:00
|
|
|
// Some dedicated error codes for protocol mixups should the application
|
|
|
|
// wish to interpret them differently. (These do not overlap with
|
|
|
|
// ClientHello or V2ClientHello.)
|
|
|
|
const char *str = reinterpret_cast<const char*>(in.data());
|
|
|
|
if (strncmp("GET ", str, 4) == 0 ||
|
|
|
|
strncmp("POST ", str, 5) == 0 ||
|
|
|
|
strncmp("HEAD ", str, 5) == 0 ||
|
|
|
|
strncmp("PUT ", str, 4) == 0) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_HTTP_REQUEST);
|
|
|
|
*out_alert = 0;
|
|
|
|
return ssl_open_record_error;
|
|
|
|
}
|
|
|
|
if (strncmp("CONNE", str, 5) == 0) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_HTTPS_PROXY_REQUEST);
|
|
|
|
*out_alert = 0;
|
|
|
|
return ssl_open_record_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for a V2ClientHello.
|
|
|
|
if ((in[0] & 0x80) != 0 && in[2] == SSL2_MT_CLIENT_HELLO &&
|
|
|
|
in[3] == SSL3_VERSION_MAJOR) {
|
|
|
|
auto ret = read_v2_client_hello(ssl, out_consumed, in);
|
|
|
|
if (ret == ssl_open_record_error) {
|
|
|
|
*out_alert = 0;
|
|
|
|
} else if (ret == ssl_open_record_success) {
|
|
|
|
ssl->s3->v2_hello_done = true;
|
|
|
|
}
|
2017-10-06 23:26:36 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2017-10-06 22:36:20 +01:00
|
|
|
|
|
|
|
ssl->s3->v2_hello_done = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t type;
|
|
|
|
Span<uint8_t> body;
|
|
|
|
auto ret = tls_open_record(ssl, &type, &body, out_consumed, out_alert, in);
|
|
|
|
if (ret != ssl_open_record_success) {
|
|
|
|
return ret;
|
2017-10-06 23:26:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// WatchGuard's TLS 1.3 interference bug is very distinctive: they drop the
|
|
|
|
// ServerHello and send the remaining encrypted application data records
|
|
|
|
// as-is. This manifests as an application data record when we expect
|
|
|
|
// handshake. Report a dedicated error code for this case.
|
2017-10-06 22:36:20 +01:00
|
|
|
if (!ssl->server && type == SSL3_RT_APPLICATION_DATA &&
|
2017-10-06 23:26:36 +01:00
|
|
|
ssl->s3->aead_read_ctx->is_null_cipher()) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_APPLICATION_DATA_INSTEAD_OF_HANDSHAKE);
|
2017-10-06 22:36:20 +01:00
|
|
|
*out_alert = SSL_AD_UNEXPECTED_MESSAGE;
|
|
|
|
return ssl_open_record_error;
|
2017-10-06 23:26:36 +01:00
|
|
|
}
|
|
|
|
|
2017-10-06 22:36:20 +01:00
|
|
|
if (type != SSL3_RT_HANDSHAKE) {
|
2017-10-06 23:26:36 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_RECORD);
|
2017-10-06 22:36:20 +01:00
|
|
|
*out_alert = SSL_AD_UNEXPECTED_MESSAGE;
|
|
|
|
return ssl_open_record_error;
|
2017-10-06 23:26:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Append the entire handshake record to the buffer.
|
2018-11-02 23:31:17 +00:00
|
|
|
if (!tls_append_handshake_data(ssl, body)) {
|
2017-10-06 22:36:20 +01:00
|
|
|
*out_alert = SSL_AD_INTERNAL_ERROR;
|
|
|
|
return ssl_open_record_error;
|
2017-10-06 23:26:36 +01:00
|
|
|
}
|
|
|
|
|
2017-10-06 22:36:20 +01:00
|
|
|
return ssl_open_record_success;
|
2016-11-14 08:12:11 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 22:35:55 +01:00
|
|
|
void ssl3_next_message(SSL *ssl) {
|
2017-08-01 21:32:25 +01:00
|
|
|
SSLMessage msg;
|
|
|
|
if (!ssl3_get_message(ssl, &msg) ||
|
2017-10-14 00:17:22 +01:00
|
|
|
!ssl->s3->hs_buf ||
|
|
|
|
ssl->s3->hs_buf->length < CBS_len(&msg.raw)) {
|
2017-08-01 21:32:25 +01:00
|
|
|
assert(0);
|
|
|
|
return;
|
|
|
|
}
|
2017-08-03 01:06:53 +01:00
|
|
|
|
2017-10-14 00:17:22 +01:00
|
|
|
OPENSSL_memmove(ssl->s3->hs_buf->data,
|
|
|
|
ssl->s3->hs_buf->data + CBS_len(&msg.raw),
|
|
|
|
ssl->s3->hs_buf->length - CBS_len(&msg.raw));
|
|
|
|
ssl->s3->hs_buf->length -= CBS_len(&msg.raw);
|
2017-08-31 20:06:42 +01:00
|
|
|
ssl->s3->is_v2_hello = false;
|
|
|
|
ssl->s3->has_message = false;
|
2017-08-03 01:06:53 +01:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Post-handshake messages are rare, so release the buffer after every
|
|
|
|
// message. During the handshake, |on_handshake_complete| will release it.
|
2017-10-14 00:17:22 +01:00
|
|
|
if (!SSL_in_init(ssl) && ssl->s3->hs_buf->length == 0) {
|
|
|
|
ssl->s3->hs_buf.reset();
|
2016-07-27 22:51:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Support symbol prefixes
- In base.h, if BORINGSSL_PREFIX is defined, include
boringssl_prefix_symbols.h
- In all .S files, if BORINGSSL_PREFIX is defined, include
boringssl_prefix_symbols_asm.h
- In base.h, BSSL_NAMESPACE_BEGIN and BSSL_NAMESPACE_END are
defined with appropriate values depending on whether
BORINGSSL_PREFIX is defined; these macros are used in place
of 'namespace bssl {' and '}'
- Add util/make_prefix_headers.go, which takes a list of symbols
and auto-generates the header files mentioned above
- In CMakeLists.txt, if BORINGSSL_PREFIX and BORINGSSL_PREFIX_SYMBOLS
are defined, run util/make_prefix_headers.go to generate header
files
- In various CMakeLists.txt files, add "global_target" that all
targets depend on to give us a place to hook logic that must run
before all other targets (in particular, the header file generation
logic)
- Document this in BUILDING.md, including the fact that it is
the caller's responsibility to provide the symbol list and keep it
up to date
- Note that this scheme has not been tested on Windows, and likely
does not work on it; Windows support will need to be added in a
future commit
Change-Id: If66a7157f46b5b66230ef91e15826b910cf979a2
Reviewed-on: https://boringssl-review.googlesource.com/31364
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: David Benjamin <davidben@google.com>
2018-08-27 02:53:36 +01:00
|
|
|
BSSL_NAMESPACE_END
|