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.
|
2018-02-26 22:02:17 +00:00
|
|
|
*
|
2014-06-20 20:00:00 +01:00
|
|
|
* 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).
|
2018-02-26 22:02:17 +00:00
|
|
|
*
|
2014-06-20 20:00:00 +01:00
|
|
|
* 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.
|
2018-02-26 22:02:17 +00:00
|
|
|
*
|
2014-06-20 20:00:00 +01:00
|
|
|
* 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 :-).
|
2018-02-26 22:02:17 +00:00
|
|
|
* 4. If you include any Windows specific code (or a derivative thereof) from
|
2014-06-20 20:00:00 +01:00
|
|
|
* the apps directory (application code) you must include an acknowledgement:
|
|
|
|
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
2018-02-26 22:02:17 +00:00
|
|
|
*
|
2014-06-20 20:00:00 +01:00
|
|
|
* 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.
|
2018-02-26 22:02:17 +00:00
|
|
|
*
|
2014-06-20 20:00:00 +01:00
|
|
|
* 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-2007 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
|
2018-02-26 22:02:17 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2014-06-20 20:00:00 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2018-02-26 22:02:17 +00:00
|
|
|
* ECC cipher suite support in OpenSSL originally developed by
|
2014-06-20 20:00:00 +01:00
|
|
|
* SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
|
|
|
|
*/
|
|
|
|
/* ====================================================================
|
|
|
|
* Copyright 2005 Nokia. All rights reserved.
|
|
|
|
*
|
|
|
|
* The portions of the attached software ("Contribution") is developed by
|
|
|
|
* Nokia Corporation and is licensed pursuant to the OpenSSL open source
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* The Contribution, originally written by Mika Kousa and Pasi Eronen of
|
|
|
|
* Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
|
|
|
|
* support (see RFC 4279) to OpenSSL.
|
|
|
|
*
|
|
|
|
* No patent licenses or other rights except those expressly stated in
|
|
|
|
* the OpenSSL open source license shall be deemed granted or received
|
|
|
|
* expressly, by implication, estoppel, or otherwise.
|
|
|
|
*
|
|
|
|
* No assurances are provided by Nokia that the Contribution does not
|
|
|
|
* infringe the patent or other intellectual property rights of any third
|
|
|
|
* party or that the license provides you with all the necessary rights
|
|
|
|
* to make use of the Contribution.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
|
|
|
|
* ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
|
|
|
|
* SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
|
|
|
|
* OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
|
|
|
|
* OTHERWISE. */
|
|
|
|
|
2015-09-15 06:48:04 +01:00
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <assert.h>
|
2016-08-09 02:22:47 +01:00
|
|
|
#include <stdlib.h>
|
2015-04-08 04:05:04 +01:00
|
|
|
#include <string.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-07-20 18:30:15 +01:00
|
|
|
#include <openssl/bytestring.h>
|
2015-09-05 16:00:19 +01:00
|
|
|
#include <openssl/crypto.h>
|
2015-04-08 04:05:04 +01:00
|
|
|
#include <openssl/err.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <openssl/lhash.h>
|
|
|
|
#include <openssl/mem.h>
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
|
2015-04-08 03:38:30 +01:00
|
|
|
#include "internal.h"
|
2015-04-15 21:46:09 +01:00
|
|
|
#include "../crypto/internal.h"
|
|
|
|
|
2016-08-03 18:13:17 +01:00
|
|
|
#if defined(OPENSSL_WINDOWS)
|
|
|
|
#include <sys/timeb.h>
|
|
|
|
#else
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
|
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
|
|
|
namespace bssl {
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// |SSL_R_UNKNOWN_PROTOCOL| is no longer emitted, but continue to define it
|
|
|
|
// to avoid downstream churn.
|
2015-08-31 19:24:29 +01:00
|
|
|
OPENSSL_DECLARE_ERROR_REASON(SSL, UNKNOWN_PROTOCOL)
|
2015-07-25 04:02:49 +01:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// The following errors are no longer emitted, but are used in nginx without
|
|
|
|
// #ifdefs.
|
2016-08-17 20:54:36 +01:00
|
|
|
OPENSSL_DECLARE_ERROR_REASON(SSL, BLOCK_CIPHER_PAD_IS_WRONG)
|
|
|
|
OPENSSL_DECLARE_ERROR_REASON(SSL, NO_CIPHERS_SPECIFIED)
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Some error codes are special. Ensure the make_errors.go script never
|
|
|
|
// regresses this.
|
2017-07-15 00:36:07 +01:00
|
|
|
static_assert(SSL_R_TLSV1_ALERT_NO_RENEGOTIATION ==
|
|
|
|
SSL_AD_NO_RENEGOTIATION + SSL_AD_REASON_OFFSET,
|
|
|
|
"alert reason code mismatch");
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// kMaxHandshakeSize is the maximum size, in bytes, of a handshake message.
|
2015-04-26 20:35:35 +01:00
|
|
|
static const size_t kMaxHandshakeSize = (1u << 24) - 1;
|
|
|
|
|
Reserve ex_data index zero for app_data.
In the ancient times, before ex_data and OpenSSL, SSLeay supported a
single app_data slot in various types. Later app_data begat ex_data, and
app_data was replaced by compatibility macros to ex_data index zero.
Today, app_data is still in use, but ex_data never reserved index zero
for app_data. This causes some danger where, if the first ex_data
registration did not use NULL callbacks, the registration's callbacks
would collide with app_data.
Instead, add an option to the types with app_data to reserve index zero.
Also switch SSL_get_ex_data_X509_STORE_CTX_idx to always return zero
rather than allocate a new one. It used to be that you used
X509_STORE_CTX_get_app_data. I only found one consumer that we probably
don't care about, but, to be safe and since it's easy, go with the
conservative option. (Although SSL_get_ex_data_X509_STORE_CTX_idx wasn't
guaranteed to alias app_data, in practice it always did. No consumer
ever calls X509_STORE_CTX_get_ex_new_index.)
Change-Id: Ie75b279d60aefd003ffef103f99021c5d696a5e9
Reviewed-on: https://boringssl-review.googlesource.com/5313
Reviewed-by: Adam Langley <agl@google.com>
2015-06-30 04:36:17 +01:00
|
|
|
static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl =
|
|
|
|
CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA;
|
|
|
|
static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl_ctx =
|
|
|
|
CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA;
|
2015-04-15 22:29:53 +01:00
|
|
|
|
2017-09-21 16:20:53 +01:00
|
|
|
bool CBBFinishArray(CBB *cbb, Array<uint8_t> *out) {
|
|
|
|
uint8_t *ptr;
|
|
|
|
size_t len;
|
|
|
|
if (!CBB_finish(cbb, &ptr, &len)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
out->Reset(ptr, len);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
void ssl_reset_error_state(SSL *ssl) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Functions which use |SSL_get_error| must reset I/O and error state on
|
|
|
|
// entry.
|
2017-10-14 00:17:22 +01:00
|
|
|
ssl->s3->rwstate = SSL_NOTHING;
|
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
|
|
|
ERR_clear_error();
|
|
|
|
ERR_clear_system_error();
|
|
|
|
}
|
|
|
|
|
2017-10-06 21:04:06 +01:00
|
|
|
void ssl_set_read_error(SSL* ssl) {
|
|
|
|
ssl->s3->read_shutdown = ssl_shutdown_error;
|
2017-10-13 22:18:35 +01:00
|
|
|
ssl->s3->read_error.reset(ERR_save_state());
|
2017-10-06 21:04:06 +01:00
|
|
|
}
|
|
|
|
|
2017-10-13 00:11:47 +01:00
|
|
|
static bool check_read_error(const SSL *ssl) {
|
|
|
|
if (ssl->s3->read_shutdown == ssl_shutdown_error) {
|
2017-10-13 22:18:35 +01:00
|
|
|
ERR_restore_state(ssl->s3->read_error.get());
|
2017-10-13 00:11:47 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-07-14 22:40:26 +01:00
|
|
|
bool ssl_can_write(const SSL *ssl) {
|
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
|
|
|
return !SSL_in_init(ssl) || ssl->s3->hs->can_early_write;
|
|
|
|
}
|
|
|
|
|
2018-07-14 22:40:26 +01:00
|
|
|
bool ssl_can_read(const SSL *ssl) {
|
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
|
|
|
return !SSL_in_init(ssl) || ssl->s3->hs->can_early_read;
|
|
|
|
}
|
|
|
|
|
2017-10-13 00:11:47 +01:00
|
|
|
ssl_open_record_t ssl_open_handshake(SSL *ssl, size_t *out_consumed,
|
|
|
|
uint8_t *out_alert, Span<uint8_t> in) {
|
|
|
|
*out_consumed = 0;
|
|
|
|
if (!check_read_error(ssl)) {
|
|
|
|
*out_alert = 0;
|
|
|
|
return ssl_open_record_error;
|
|
|
|
}
|
|
|
|
auto ret = ssl->method->open_handshake(ssl, out_consumed, out_alert, in);
|
|
|
|
if (ret == ssl_open_record_error) {
|
|
|
|
ssl_set_read_error(ssl);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl_open_record_t ssl_open_change_cipher_spec(SSL *ssl, size_t *out_consumed,
|
|
|
|
uint8_t *out_alert,
|
|
|
|
Span<uint8_t> in) {
|
|
|
|
*out_consumed = 0;
|
|
|
|
if (!check_read_error(ssl)) {
|
|
|
|
*out_alert = 0;
|
|
|
|
return ssl_open_record_error;
|
|
|
|
}
|
|
|
|
auto ret =
|
|
|
|
ssl->method->open_change_cipher_spec(ssl, out_consumed, out_alert, in);
|
|
|
|
if (ret == ssl_open_record_error) {
|
|
|
|
ssl_set_read_error(ssl);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl_open_record_t ssl_open_app_data(SSL *ssl, Span<uint8_t> *out,
|
|
|
|
size_t *out_consumed, uint8_t *out_alert,
|
|
|
|
Span<uint8_t> in) {
|
|
|
|
*out_consumed = 0;
|
|
|
|
if (!check_read_error(ssl)) {
|
|
|
|
*out_alert = 0;
|
|
|
|
return ssl_open_record_error;
|
|
|
|
}
|
|
|
|
auto ret = ssl->method->open_app_data(ssl, out, out_consumed, out_alert, in);
|
|
|
|
if (ret == ssl_open_record_error) {
|
|
|
|
ssl_set_read_error(ssl);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
void ssl_update_cache(SSL_HANDSHAKE *hs, int mode) {
|
|
|
|
SSL *const ssl = hs->ssl;
|
2018-07-03 00:47:27 +01:00
|
|
|
SSL_CTX *ctx = ssl->session_ctx.get();
|
2017-08-29 21:33:21 +01:00
|
|
|
// Never cache sessions with empty session IDs.
|
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
|
|
|
if (ssl->s3->established_session->session_id_length == 0 ||
|
2017-08-24 05:28:29 +01:00
|
|
|
ssl->s3->established_session->not_resumable ||
|
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
|
|
|
(ctx->session_cache_mode & mode) != mode) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Clients never use the internal session cache.
|
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
|
|
|
int use_internal_cache = ssl->server && !(ctx->session_cache_mode &
|
|
|
|
SSL_SESS_CACHE_NO_INTERNAL_STORE);
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// A client may see new sessions on abbreviated handshakes if the server
|
|
|
|
// decides to renew the ticket. Once the handshake is completed, it should be
|
|
|
|
// inserted into the cache.
|
2018-07-03 00:47:27 +01:00
|
|
|
if (ssl->s3->established_session.get() != ssl->session.get() ||
|
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
|
|
|
(!ssl->server && hs->ticket_expected)) {
|
|
|
|
if (use_internal_cache) {
|
2017-10-13 22:18:35 +01:00
|
|
|
SSL_CTX_add_session(ctx, ssl->s3->established_session.get());
|
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
|
|
|
}
|
|
|
|
if (ctx->new_session_cb != NULL) {
|
2018-06-29 22:46:42 +01:00
|
|
|
UniquePtr<SSL_SESSION> ref = UpRef(ssl->s3->established_session);
|
|
|
|
if (ctx->new_session_cb(ssl, ref.get())) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// |new_session_cb|'s return value signals whether it took ownership.
|
2018-06-29 22:46:42 +01:00
|
|
|
ref.release();
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (use_internal_cache &&
|
|
|
|
!(ctx->session_cache_mode & SSL_SESS_CACHE_NO_AUTO_CLEAR)) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Automatically flush the internal session cache every 255 connections.
|
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
|
|
|
int flush_cache = 0;
|
|
|
|
CRYPTO_MUTEX_lock_write(&ctx->lock);
|
|
|
|
ctx->handshakes_since_cache_flush++;
|
|
|
|
if (ctx->handshakes_since_cache_flush >= 255) {
|
|
|
|
flush_cache = 1;
|
|
|
|
ctx->handshakes_since_cache_flush = 0;
|
|
|
|
}
|
|
|
|
CRYPTO_MUTEX_unlock_write(&ctx->lock);
|
|
|
|
|
|
|
|
if (flush_cache) {
|
|
|
|
struct OPENSSL_timeval now;
|
|
|
|
ssl_get_current_time(ssl, &now);
|
|
|
|
SSL_CTX_flush_sessions(ctx, now.tv_sec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cbb_add_hex(CBB *cbb, const uint8_t *in, size_t in_len) {
|
|
|
|
static const char hextable[] = "0123456789abcdef";
|
|
|
|
uint8_t *out;
|
|
|
|
|
|
|
|
if (!CBB_add_space(cbb, &out, in_len * 2)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < in_len; i++) {
|
|
|
|
*(out++) = (uint8_t)hextable[in[i] >> 4];
|
|
|
|
*(out++) = (uint8_t)hextable[in[i] & 0xf];
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ssl_log_secret(const SSL *ssl, const char *label, const uint8_t *secret,
|
|
|
|
size_t secret_len) {
|
|
|
|
if (ssl->ctx->keylog_callback == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-07-20 04:57:40 +01:00
|
|
|
ScopedCBB cbb;
|
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
|
|
|
uint8_t *out;
|
|
|
|
size_t out_len;
|
2017-07-20 04:57:40 +01:00
|
|
|
if (!CBB_init(cbb.get(), strlen(label) + 1 + SSL3_RANDOM_SIZE * 2 + 1 +
|
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
|
|
|
secret_len * 2 + 1) ||
|
2017-07-20 04:57:40 +01:00
|
|
|
!CBB_add_bytes(cbb.get(), (const uint8_t *)label, strlen(label)) ||
|
|
|
|
!CBB_add_bytes(cbb.get(), (const uint8_t *)" ", 1) ||
|
|
|
|
!cbb_add_hex(cbb.get(), ssl->s3->client_random, SSL3_RANDOM_SIZE) ||
|
|
|
|
!CBB_add_bytes(cbb.get(), (const uint8_t *)" ", 1) ||
|
|
|
|
!cbb_add_hex(cbb.get(), secret, secret_len) ||
|
|
|
|
!CBB_add_u8(cbb.get(), 0 /* NUL */) ||
|
|
|
|
!CBB_finish(cbb.get(), &out, &out_len)) {
|
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
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->ctx->keylog_callback(ssl, (const char *)out);
|
|
|
|
OPENSSL_free(out);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ssl_do_info_callback(const SSL *ssl, int type, int value) {
|
|
|
|
void (*cb)(const SSL *ssl, int type, int value) = NULL;
|
|
|
|
if (ssl->info_callback != NULL) {
|
|
|
|
cb = ssl->info_callback;
|
|
|
|
} else if (ssl->ctx->info_callback != NULL) {
|
|
|
|
cb = ssl->ctx->info_callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cb != NULL) {
|
|
|
|
cb(ssl, type, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ssl_do_msg_callback(SSL *ssl, int is_write, int content_type,
|
2017-10-04 23:14:28 +01:00
|
|
|
Span<const uint8_t> in) {
|
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
|
|
|
if (ssl->msg_callback == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// |version| is zero when calling for |SSL3_RT_HEADER| and |SSL2_VERSION| for
|
|
|
|
// a V2ClientHello.
|
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
|
|
|
int version;
|
|
|
|
switch (content_type) {
|
|
|
|
case 0:
|
2017-08-29 21:33:21 +01:00
|
|
|
// V2ClientHello
|
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
|
|
|
version = SSL2_VERSION;
|
|
|
|
break;
|
|
|
|
case SSL3_RT_HEADER:
|
|
|
|
version = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
version = SSL_version(ssl);
|
|
|
|
}
|
|
|
|
|
2017-10-04 23:14:28 +01:00
|
|
|
ssl->msg_callback(is_write, version, content_type, in.data(), in.size(), ssl,
|
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
|
|
|
ssl->msg_callback_arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ssl_get_current_time(const SSL *ssl, struct OPENSSL_timeval *out_clock) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(martinkr): Change callers to |ssl_ctx_get_current_time| and drop the
|
|
|
|
// |ssl| arg from |current_time_cb| if possible.
|
2018-07-03 00:47:27 +01:00
|
|
|
ssl_ctx_get_current_time(ssl->ctx.get(), out_clock);
|
2017-08-04 20:06:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ssl_ctx_get_current_time(const SSL_CTX *ctx,
|
|
|
|
struct OPENSSL_timeval *out_clock) {
|
|
|
|
if (ctx->current_time_cb != NULL) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(davidben): Update current_time_cb to use OPENSSL_timeval. See
|
|
|
|
// https://crbug.com/boringssl/155.
|
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
|
|
|
struct timeval clock;
|
2017-08-04 20:06:43 +01:00
|
|
|
ctx->current_time_cb(nullptr /* ssl */, &clock);
|
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
|
|
|
if (clock.tv_sec < 0) {
|
|
|
|
assert(0);
|
|
|
|
out_clock->tv_sec = 0;
|
|
|
|
out_clock->tv_usec = 0;
|
|
|
|
} else {
|
|
|
|
out_clock->tv_sec = (uint64_t)clock.tv_sec;
|
|
|
|
out_clock->tv_usec = (uint32_t)clock.tv_usec;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE)
|
|
|
|
out_clock->tv_sec = 1234;
|
|
|
|
out_clock->tv_usec = 1234;
|
|
|
|
#elif defined(OPENSSL_WINDOWS)
|
|
|
|
struct _timeb time;
|
|
|
|
_ftime(&time);
|
|
|
|
if (time.time < 0) {
|
|
|
|
assert(0);
|
|
|
|
out_clock->tv_sec = 0;
|
|
|
|
out_clock->tv_usec = 0;
|
|
|
|
} else {
|
|
|
|
out_clock->tv_sec = time.time;
|
|
|
|
out_clock->tv_usec = time.millitm * 1000;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
struct timeval clock;
|
|
|
|
gettimeofday(&clock, NULL);
|
|
|
|
if (clock.tv_sec < 0) {
|
|
|
|
assert(0);
|
|
|
|
out_clock->tv_sec = 0;
|
|
|
|
out_clock->tv_usec = 0;
|
|
|
|
} else {
|
|
|
|
out_clock->tv_sec = (uint64_t)clock.tv_sec;
|
|
|
|
out_clock->tv_usec = (uint32_t)clock.tv_usec;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-01-26 17:14:30 +00:00
|
|
|
void SSL_CTX_set_handoff_mode(SSL_CTX *ctx, bool on) {
|
|
|
|
ctx->handoff = on;
|
|
|
|
}
|
|
|
|
|
2018-05-01 22:14:27 +01:00
|
|
|
static bool ssl_can_renegotiate(const SSL *ssl) {
|
|
|
|
if (ssl->server || SSL_is_dtls(ssl)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-26 05:07:40 +01:00
|
|
|
if (ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
2018-05-01 22:14:27 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The config has already been shed.
|
|
|
|
if (!ssl->config) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ssl->renegotiate_mode) {
|
|
|
|
case ssl_renegotiate_ignore:
|
|
|
|
case ssl_renegotiate_never:
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case ssl_renegotiate_freely:
|
|
|
|
return true;
|
|
|
|
case ssl_renegotiate_once:
|
|
|
|
return ssl->s3->total_renegotiations == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ssl_maybe_shed_handshake_config(SSL *ssl) {
|
|
|
|
if (ssl->s3->hs != nullptr ||
|
|
|
|
ssl->config == nullptr ||
|
|
|
|
!ssl->config->shed_handshake_config ||
|
|
|
|
ssl_can_renegotiate(ssl)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-03 00:47:27 +01:00
|
|
|
ssl->config.reset();
|
2018-04-06 00:50:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_set_handoff_mode(SSL *ssl, bool on) {
|
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->handoff = on;
|
2018-05-01 22:14:27 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
} // namespace bssl
|
|
|
|
|
|
|
|
using namespace bssl;
|
|
|
|
|
2015-09-05 16:00:19 +01:00
|
|
|
int SSL_library_init(void) {
|
|
|
|
CRYPTO_library_init();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-08-12 19:48:19 +01:00
|
|
|
int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings) {
|
|
|
|
CRYPTO_library_init();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-02-15 22:01:10 +00:00
|
|
|
static uint32_t ssl_session_hash(const SSL_SESSION *sess) {
|
2018-06-30 04:58:43 +01:00
|
|
|
return ssl_hash_session_id(
|
|
|
|
MakeConstSpan(sess->session_id, sess->session_id_length));
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b) {
|
|
|
|
if (a->session_id_length != b->session_id_length) {
|
|
|
|
return 1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 06:07:13 +00:00
|
|
|
return OPENSSL_memcmp(a->session_id, b->session_id, a->session_id_length);
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
ssl_ctx_st::ssl_ctx_st(const SSL_METHOD *ssl_method)
|
|
|
|
: method(ssl_method->method),
|
|
|
|
x509_method(ssl_method->x509_method),
|
|
|
|
retain_only_sha256_of_client_certs(false),
|
|
|
|
quiet_shutdown(false),
|
|
|
|
ocsp_stapling_enabled(false),
|
|
|
|
signed_cert_timestamps_enabled(false),
|
2018-07-03 19:01:26 +01:00
|
|
|
channel_id_enabled(false),
|
2018-07-03 00:13:42 +01:00
|
|
|
grease_enabled(false),
|
|
|
|
allow_unknown_alpn_protos(false),
|
|
|
|
ed25519_enabled(false),
|
|
|
|
rsa_pss_rsae_certs_enabled(true),
|
|
|
|
false_start_allowed_without_alpn(false),
|
2018-08-13 15:54:48 +01:00
|
|
|
ignore_tls13_downgrade(false),
|
2018-07-03 00:13:42 +01:00
|
|
|
handoff(false),
|
|
|
|
enable_early_data(false) {
|
|
|
|
CRYPTO_MUTEX_init(&lock);
|
|
|
|
CRYPTO_new_ex_data(&ex_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl_ctx_st::~ssl_ctx_st() {
|
|
|
|
// Free the internal session cache. Note that this calls the caller-supplied
|
|
|
|
// remove callback, so we must do it before clearing ex_data. (See ticket
|
|
|
|
// [openssl.org #212].)
|
|
|
|
SSL_CTX_flush_sessions(this, 0);
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
CRYPTO_free_ex_data(&g_ex_data_class_ssl_ctx, this, &ex_data);
|
|
|
|
|
|
|
|
CRYPTO_MUTEX_cleanup(&lock);
|
|
|
|
lh_SSL_SESSION_free(sessions);
|
|
|
|
x509_method->ssl_ctx_free(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_CTX *SSL_CTX_new(const SSL_METHOD *method) {
|
2015-09-13 05:54:37 +01:00
|
|
|
if (method == NULL) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_METHOD_PASSED);
|
2018-07-03 00:13:42 +01:00
|
|
|
return nullptr;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
UniquePtr<SSL_CTX> ret = MakeUnique<SSL_CTX>(method);
|
|
|
|
if (!ret) {
|
|
|
|
return nullptr;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-07-03 01:24:40 +01:00
|
|
|
ret->cert = MakeUnique<CERT>(method->x509_method);
|
2015-09-13 05:54:37 +01:00
|
|
|
ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp);
|
2018-07-03 01:24:40 +01:00
|
|
|
ret->client_CA.reset(sk_CRYPTO_BUFFER_new_null());
|
2018-07-03 00:13:42 +01:00
|
|
|
if (ret->cert == nullptr ||
|
|
|
|
ret->sessions == nullptr ||
|
|
|
|
ret->client_CA == nullptr ||
|
|
|
|
!ret->x509_method->ssl_ctx_new(ret.get())) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SSL_CTX_set_strict_cipher_list(ret.get(), SSL_DEFAULT_CIPHER_LIST) ||
|
|
|
|
// Lock the SSL_CTX to the specified version, for compatibility with
|
|
|
|
// legacy uses of SSL_METHOD.
|
|
|
|
!SSL_CTX_set_max_proto_version(ret.get(), method->version) ||
|
|
|
|
!SSL_CTX_set_min_proto_version(ret.get(), method->version)) {
|
2016-09-21 21:53:09 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2018-07-03 00:13:42 +01:00
|
|
|
return nullptr;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
return ret.release();
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-07-01 02:29:44 +01:00
|
|
|
int SSL_CTX_up_ref(SSL_CTX *ctx) {
|
|
|
|
CRYPTO_refcount_inc(&ctx->references);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
void SSL_CTX_free(SSL_CTX *ctx) {
|
|
|
|
if (ctx == NULL ||
|
|
|
|
!CRYPTO_refcount_dec_and_test_zero(&ctx->references)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
ctx->~ssl_ctx_st();
|
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
ssl_st::ssl_st(SSL_CTX *ctx_arg)
|
|
|
|
: method(ctx_arg->method),
|
|
|
|
max_send_fragment(ctx_arg->max_send_fragment),
|
|
|
|
msg_callback(ctx_arg->msg_callback),
|
|
|
|
msg_callback_arg(ctx_arg->msg_callback_arg),
|
|
|
|
tls13_variant(ctx_arg->tls13_variant),
|
2018-07-03 00:47:27 +01:00
|
|
|
ctx(UpRef(ctx_arg)),
|
|
|
|
session_ctx(UpRef(ctx_arg)),
|
2018-07-03 00:13:42 +01:00
|
|
|
options(ctx->options),
|
|
|
|
mode(ctx->mode),
|
|
|
|
max_cert_list(ctx->max_cert_list),
|
|
|
|
server(false),
|
|
|
|
quiet_shutdown(ctx->quiet_shutdown),
|
|
|
|
enable_early_data(ctx->enable_early_data) {
|
|
|
|
CRYPTO_new_ex_data(&ex_data);
|
|
|
|
}
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
ssl_st::~ssl_st() {
|
|
|
|
CRYPTO_free_ex_data(&g_ex_data_class_ssl, this, &ex_data);
|
2018-07-03 00:47:27 +01:00
|
|
|
// |config| refers to |this|, so we must release it earlier.
|
|
|
|
config.reset();
|
2018-07-03 00:13:42 +01:00
|
|
|
if (method != NULL) {
|
|
|
|
method->ssl_free(this);
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SSL *SSL_new(SSL_CTX *ctx) {
|
2018-07-03 00:13:42 +01:00
|
|
|
if (ctx == nullptr) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_CTX);
|
2018-07-03 00:13:42 +01:00
|
|
|
return nullptr;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
UniquePtr<SSL> ssl = MakeUnique<SSL>(ctx);
|
|
|
|
if (ssl == nullptr) {
|
|
|
|
return nullptr;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 00:47:27 +01:00
|
|
|
ssl->config = MakeUnique<SSL_CONFIG>(ssl.get());
|
2018-04-13 23:51:30 +01:00
|
|
|
if (ssl->config == nullptr) {
|
2018-07-03 00:13:42 +01:00
|
|
|
return nullptr;
|
2018-04-13 23:51:30 +01:00
|
|
|
}
|
|
|
|
ssl->config->conf_min_version = ctx->conf_min_version;
|
|
|
|
ssl->config->conf_max_version = ctx->conf_max_version;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-07-03 01:24:40 +01:00
|
|
|
ssl->config->cert = ssl_cert_dup(ctx->cert.get());
|
|
|
|
if (ssl->config->cert == nullptr) {
|
2018-07-03 00:13:42 +01:00
|
|
|
return nullptr;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 23:51:30 +01:00
|
|
|
ssl->config->verify_mode = ctx->verify_mode;
|
|
|
|
ssl->config->verify_callback = ctx->default_verify_callback;
|
|
|
|
ssl->config->custom_verify_callback = ctx->custom_verify_callback;
|
|
|
|
ssl->config->retain_only_sha256_of_client_certs =
|
2016-11-17 01:53:09 +00:00
|
|
|
ctx->retain_only_sha256_of_client_certs;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-07-03 01:24:40 +01:00
|
|
|
if (!ssl->config->supported_group_list.CopyFrom(ctx->supported_group_list) ||
|
|
|
|
!ssl->config->alpn_client_proto_list.CopyFrom(
|
2018-08-03 18:31:21 +01:00
|
|
|
ctx->alpn_client_proto_list) ||
|
|
|
|
!ssl->config->verify_sigalgs.CopyFrom(ctx->verify_sigalgs)) {
|
2018-07-03 01:24:40 +01:00
|
|
|
return nullptr;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-12-19 01:42:32 +00:00
|
|
|
if (ctx->psk_identity_hint) {
|
2018-07-03 01:24:40 +01:00
|
|
|
ssl->config->psk_identity_hint.reset(
|
|
|
|
BUF_strdup(ctx->psk_identity_hint.get()));
|
|
|
|
if (ssl->config->psk_identity_hint == nullptr) {
|
2018-07-03 00:13:42 +01:00
|
|
|
return nullptr;
|
2014-06-20 20:00:00 +01:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2018-04-13 23:51:30 +01:00
|
|
|
ssl->config->psk_client_callback = ctx->psk_client_callback;
|
|
|
|
ssl->config->psk_server_callback = ctx->psk_server_callback;
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2018-07-03 19:01:26 +01:00
|
|
|
ssl->config->channel_id_enabled = ctx->channel_id_enabled;
|
|
|
|
ssl->config->channel_id_private = UpRef(ctx->channel_id_private);
|
2015-01-11 18:09:11 +00:00
|
|
|
|
2018-04-13 23:51:30 +01:00
|
|
|
ssl->config->signed_cert_timestamps_enabled =
|
|
|
|
ctx->signed_cert_timestamps_enabled;
|
|
|
|
ssl->config->ocsp_stapling_enabled = ctx->ocsp_stapling_enabled;
|
|
|
|
ssl->config->handoff = ctx->handoff;
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
if (!ssl->method->ssl_new(ssl.get()) ||
|
|
|
|
!ssl->ctx->x509_method->ssl_new(ssl->s3->hs.get())) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-07-03 00:13:42 +01:00
|
|
|
return ssl.release();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 23:51:30 +01:00
|
|
|
SSL_CONFIG::SSL_CONFIG(SSL *ssl_arg)
|
|
|
|
: ssl(ssl_arg),
|
|
|
|
signed_cert_timestamps_enabled(false),
|
|
|
|
ocsp_stapling_enabled(false),
|
2018-07-03 19:01:26 +01:00
|
|
|
channel_id_enabled(false),
|
2018-04-13 23:51:30 +01:00
|
|
|
retain_only_sha256_of_client_certs(false),
|
|
|
|
handoff(false),
|
|
|
|
shed_handshake_config(false) {
|
|
|
|
assert(ssl);
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_CONFIG::~SSL_CONFIG() {
|
|
|
|
if (ssl->ctx != nullptr) {
|
|
|
|
ssl->ctx->x509_method->ssl_config_free(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
void SSL_free(SSL *ssl) {
|
2018-07-03 00:13:42 +01:00
|
|
|
Delete(ssl);
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_set_connect_state(SSL *ssl) {
|
2017-10-11 18:01:08 +01:00
|
|
|
ssl->server = false;
|
2017-08-14 20:08:34 +01:00
|
|
|
ssl->do_handshake = ssl_client_handshake;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_set_accept_state(SSL *ssl) {
|
2017-10-11 18:01:08 +01:00
|
|
|
ssl->server = true;
|
2017-08-14 20:08:34 +01:00
|
|
|
ssl->do_handshake = ssl_server_handshake;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-08-01 18:39:41 +01:00
|
|
|
void SSL_set0_rbio(SSL *ssl, BIO *rbio) {
|
2018-07-03 00:47:27 +01:00
|
|
|
ssl->rbio.reset(rbio);
|
2016-06-12 00:01:56 +01:00
|
|
|
}
|
|
|
|
|
2016-08-01 18:39:41 +01:00
|
|
|
void SSL_set0_wbio(SSL *ssl, BIO *wbio) {
|
2018-07-03 00:47:27 +01:00
|
|
|
ssl->wbio.reset(wbio);
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-06-12 00:01:56 +01:00
|
|
|
void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// For historical reasons, this function has many different cases in ownership
|
|
|
|
// handling.
|
2016-06-12 00:01:56 +01:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// If nothing has changed, do nothing
|
2016-08-01 18:39:41 +01:00
|
|
|
if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// If the two arguments are equal, one fewer reference is granted than
|
|
|
|
// taken.
|
2016-06-12 00:01:56 +01:00
|
|
|
if (rbio != NULL && rbio == wbio) {
|
|
|
|
BIO_up_ref(rbio);
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// If only the wbio is changed, adopt only one reference.
|
2016-06-12 00:01:56 +01:00
|
|
|
if (rbio == SSL_get_rbio(ssl)) {
|
2016-08-01 18:39:41 +01:00
|
|
|
SSL_set0_wbio(ssl, wbio);
|
2016-06-12 00:01:56 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-08-01 18:39:41 +01:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// There is an asymmetry here for historical reasons. If only the rbio is
|
|
|
|
// changed AND the rbio and wbio were originally different, then we only adopt
|
|
|
|
// one reference.
|
2016-08-01 18:39:41 +01:00
|
|
|
if (wbio == SSL_get_wbio(ssl) && SSL_get_rbio(ssl) != SSL_get_wbio(ssl)) {
|
|
|
|
SSL_set0_rbio(ssl, rbio);
|
2016-06-12 00:01:56 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Otherwise, adopt both references.
|
2016-08-01 18:39:41 +01:00
|
|
|
SSL_set0_rbio(ssl, rbio);
|
|
|
|
SSL_set0_wbio(ssl, wbio);
|
2016-06-12 00:01:56 +01:00
|
|
|
}
|
|
|
|
|
2018-07-03 00:47:27 +01:00
|
|
|
BIO *SSL_get_rbio(const SSL *ssl) { return ssl->rbio.get(); }
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2018-07-03 00:47:27 +01:00
|
|
|
BIO *SSL_get_wbio(const SSL *ssl) { return ssl->wbio.get(); }
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2017-01-02 12:56:51 +00:00
|
|
|
int SSL_do_handshake(SSL *ssl) {
|
|
|
|
ssl_reset_error_state(ssl);
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
|
2017-08-14 20:08:34 +01:00
|
|
|
if (ssl->do_handshake == NULL) {
|
2015-09-13 05:54:37 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_CONNECTION_TYPE_NOT_SET);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SSL_in_init(ssl)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Run the handshake.
|
2017-10-13 22:18:35 +01:00
|
|
|
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
2017-08-14 20:08:34 +01:00
|
|
|
|
2017-08-31 20:13:12 +01:00
|
|
|
bool early_return = false;
|
2017-08-14 20:08:34 +01:00
|
|
|
int ret = ssl_run_handshake(hs, &early_return);
|
|
|
|
ssl_do_info_callback(
|
|
|
|
ssl, ssl->server ? SSL_CB_ACCEPT_EXIT : SSL_CB_CONNECT_EXIT, ret);
|
2016-11-14 01:45:16 +00:00
|
|
|
if (ret <= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Destroy the handshake object if the handshake has completely finished.
|
2017-08-14 20:08:34 +01:00
|
|
|
if (!early_return) {
|
2017-10-13 22:18:35 +01:00
|
|
|
ssl->s3->hs.reset();
|
2018-05-01 22:14:27 +01:00
|
|
|
ssl_maybe_shed_handshake_config(ssl);
|
2016-11-14 01:45:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_connect(SSL *ssl) {
|
2017-08-14 20:08:34 +01:00
|
|
|
if (ssl->do_handshake == NULL) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Not properly initialized yet
|
2015-09-13 05:54:37 +01:00
|
|
|
SSL_set_connect_state(ssl);
|
|
|
|
}
|
|
|
|
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
return SSL_do_handshake(ssl);
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_accept(SSL *ssl) {
|
2017-08-14 20:08:34 +01:00
|
|
|
if (ssl->do_handshake == NULL) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Not properly initialized yet
|
2015-09-13 05:54:37 +01:00
|
|
|
SSL_set_accept_state(ssl);
|
|
|
|
}
|
|
|
|
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
return SSL_do_handshake(ssl);
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2017-08-01 21:32:25 +01:00
|
|
|
static int ssl_do_post_handshake(SSL *ssl, const SSLMessage &msg) {
|
2017-10-06 23:31:15 +01:00
|
|
|
if (ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
2017-08-01 21:32:25 +01:00
|
|
|
return tls13_post_handshake(ssl, msg);
|
|
|
|
}
|
|
|
|
|
2018-05-01 22:14:27 +01:00
|
|
|
// Check for renegotiation on the server before parsing to use the correct
|
|
|
|
// error. Renegotiation is triggered by a different message for servers.
|
|
|
|
if (ssl->server) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION);
|
|
|
|
ssl_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_NO_RENEGOTIATION);
|
|
|
|
return 0;
|
2016-07-28 16:05:58 +01:00
|
|
|
}
|
|
|
|
|
2017-08-01 21:32:25 +01:00
|
|
|
if (msg.type != SSL3_MT_HELLO_REQUEST || CBS_len(&msg.body) != 0) {
|
2017-10-06 23:31:15 +01:00
|
|
|
ssl_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
|
2016-07-28 16:05:58 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_HELLO_REQUEST);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-01 22:14:27 +01:00
|
|
|
if (ssl->renegotiate_mode == ssl_renegotiate_ignore) {
|
|
|
|
return 1; // Ignore the HelloRequest.
|
2018-04-13 23:51:30 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 22:14:27 +01:00
|
|
|
if (!ssl_can_renegotiate(ssl) ||
|
|
|
|
// Renegotiation is only supported at quiescent points in the application
|
|
|
|
// protocol, namely in HTTPS, just before reading the HTTP response.
|
|
|
|
// Require the record-layer be idle and avoid complexities of sending a
|
|
|
|
// handshake record while an application_data record is being written.
|
|
|
|
!ssl->s3->write_buffer.empty() ||
|
2017-10-12 01:48:25 +01:00
|
|
|
ssl->s3->write_shutdown != ssl_shutdown_none) {
|
2018-05-01 22:14:27 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION);
|
|
|
|
ssl_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_NO_RENEGOTIATION);
|
|
|
|
return 0;
|
2016-07-28 16:05:58 +01:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Begin a new handshake.
|
2017-10-13 22:18:35 +01:00
|
|
|
if (ssl->s3->hs != nullptr) {
|
2016-12-11 18:41:17 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ssl->s3->hs = ssl_handshake_new(ssl);
|
2017-10-13 22:18:35 +01:00
|
|
|
if (ssl->s3->hs == nullptr) {
|
2016-12-11 18:41:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-07-28 16:05:58 +01:00
|
|
|
ssl->s3->total_renegotiations++;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-10-12 01:48:25 +01:00
|
|
|
static int ssl_read_impl(SSL *ssl) {
|
2017-01-02 12:56:51 +00:00
|
|
|
ssl_reset_error_state(ssl);
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
|
2017-08-14 20:08:34 +01:00
|
|
|
if (ssl->do_handshake == NULL) {
|
2015-09-13 05:54:37 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-10-13 00:11:47 +01:00
|
|
|
// Replay post-handshake message errors.
|
|
|
|
if (!check_read_error(ssl)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-10-12 01:48:25 +01:00
|
|
|
while (ssl->s3->pending_app_data.empty()) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Complete the current handshake, if any. False Start will cause
|
|
|
|
// |SSL_do_handshake| to return mid-handshake, so this may require multiple
|
|
|
|
// iterations.
|
2016-12-19 18:19:29 +00:00
|
|
|
while (!ssl_can_read(ssl)) {
|
2016-07-28 16:05:58 +01:00
|
|
|
int ret = SSL_do_handshake(ssl);
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (ret == 0) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-06 23:26:36 +01:00
|
|
|
// Process any buffered post-handshake messages.
|
2017-08-01 21:32:25 +01:00
|
|
|
SSLMessage msg;
|
2017-10-06 23:26:36 +01:00
|
|
|
if (ssl->method->get_message(ssl, &msg)) {
|
2017-10-11 17:29:36 +01:00
|
|
|
// If we received an interrupt in early read (EndOfEarlyData), loop again
|
|
|
|
// for the handshake to process it.
|
|
|
|
if (SSL_in_init(ssl)) {
|
|
|
|
ssl->s3->hs->can_early_read = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Handle the post-handshake message and try again.
|
2017-08-01 21:32:25 +01:00
|
|
|
if (!ssl_do_post_handshake(ssl, msg)) {
|
2017-10-13 00:11:47 +01:00
|
|
|
ssl_set_read_error(ssl);
|
2017-08-01 21:32:25 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ssl->method->next_message(ssl);
|
2017-10-06 23:26:36 +01:00
|
|
|
continue; // Loop again. We may have begun a new handshake.
|
2016-03-10 06:28:00 +00:00
|
|
|
}
|
2017-10-06 23:26:36 +01:00
|
|
|
|
2017-10-12 01:48:25 +01:00
|
|
|
uint8_t alert = SSL_AD_DECODE_ERROR;
|
|
|
|
size_t consumed = 0;
|
2017-10-13 00:11:47 +01:00
|
|
|
auto ret = ssl_open_app_data(ssl, &ssl->s3->pending_app_data, &consumed,
|
2017-10-13 21:50:39 +01:00
|
|
|
&alert, ssl->s3->read_buffer.span());
|
2017-10-12 01:48:25 +01:00
|
|
|
bool retry;
|
|
|
|
int bio_ret = ssl_handle_open_record(ssl, &retry, ret, consumed, alert);
|
|
|
|
if (bio_ret <= 0) {
|
|
|
|
return bio_ret;
|
2017-10-06 22:36:20 +01:00
|
|
|
}
|
2017-10-12 01:48:25 +01:00
|
|
|
if (!retry) {
|
|
|
|
assert(!ssl->s3->pending_app_data.empty());
|
|
|
|
ssl->s3->key_update_count = 0;
|
2017-10-06 22:36:20 +01:00
|
|
|
}
|
2016-03-10 06:28:00 +00:00
|
|
|
}
|
2017-10-12 01:48:25 +01:00
|
|
|
|
|
|
|
return 1;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
int SSL_read(SSL *ssl, void *buf, int num) {
|
2017-10-12 01:48:25 +01:00
|
|
|
int ret = SSL_peek(ssl, buf, num);
|
|
|
|
if (ret <= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
// TODO(davidben): In DTLS, should the rest of the record be discarded? DTLS
|
|
|
|
// is not a stream. See https://crbug.com/boringssl/65.
|
|
|
|
ssl->s3->pending_app_data =
|
|
|
|
ssl->s3->pending_app_data.subspan(static_cast<size_t>(ret));
|
|
|
|
if (ssl->s3->pending_app_data.empty()) {
|
2017-10-13 21:50:39 +01:00
|
|
|
ssl->s3->read_buffer.DiscardConsumed();
|
2017-10-12 01:48:25 +01:00
|
|
|
}
|
|
|
|
return ret;
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
}
|
2015-09-13 05:54:37 +01:00
|
|
|
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
int SSL_peek(SSL *ssl, void *buf, int num) {
|
2017-10-12 01:48:25 +01:00
|
|
|
int ret = ssl_read_impl(ssl);
|
|
|
|
if (ret <= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (num <= 0) {
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
size_t todo =
|
|
|
|
std::min(ssl->s3->pending_app_data.size(), static_cast<size_t>(num));
|
|
|
|
OPENSSL_memcpy(buf, ssl->s3->pending_app_data.data(), todo);
|
|
|
|
return static_cast<int>(todo);
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_write(SSL *ssl, const void *buf, int num) {
|
2017-01-02 12:56:51 +00:00
|
|
|
ssl_reset_error_state(ssl);
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
|
2017-08-14 20:08:34 +01:00
|
|
|
if (ssl->do_handshake == NULL) {
|
2015-09-13 05:54:37 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-10-06 21:02:47 +01:00
|
|
|
if (ssl->s3->write_shutdown != ssl_shutdown_none) {
|
2015-09-13 05:54:37 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-08-31 20:13:12 +01:00
|
|
|
int ret = 0;
|
|
|
|
bool needs_handshake = false;
|
2017-03-09 19:56:07 +00:00
|
|
|
do {
|
2017-08-29 21:33:21 +01:00
|
|
|
// If necessary, complete the handshake implicitly.
|
2017-03-09 19:56:07 +00:00
|
|
|
if (!ssl_can_write(ssl)) {
|
|
|
|
ret = SSL_do_handshake(ssl);
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (ret == 0) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE);
|
|
|
|
return -1;
|
|
|
|
}
|
2016-03-10 05:41:25 +00:00
|
|
|
}
|
|
|
|
|
2017-07-12 22:16:39 +01:00
|
|
|
ret = ssl->method->write_app_data(ssl, &needs_handshake,
|
|
|
|
(const uint8_t *)buf, num);
|
2017-03-09 19:56:07 +00:00
|
|
|
} while (needs_handshake);
|
|
|
|
return ret;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_shutdown(SSL *ssl) {
|
2017-01-02 12:56:51 +00:00
|
|
|
ssl_reset_error_state(ssl);
|
Clear the error queue on entry to core SSL operations.
OpenSSL historically made some poor API decisions. Rather than returning a
status enum in SSL_read, etc., these functions must be paired with
SSL_get_error which determines the cause of the last error's failure. This
requires SSL_read communicate with SSL_get_error with some stateful flag,
rwstate.
Further, probably as workarounds for bugs elsewhere, SSL_get_error does not
trust rwstate. Among other quirks, if the error queue is non-empty,
SSL_get_error overrides rwstate and returns a value based on that. This
requires that SSL_read, etc., be called with an empty error queue. (Or we hit
one of the spurious ERR_clear_error calls in the handshake state machine,
likely added as further self-workarounds.)
Since requiring callers consistently clear the error queue everywhere is
unreasonable (crbug.com/567501), clear ERR_clear_error *once* at the entry
point. Until/unless[*] we make SSL_get_error sane, this is the most reasonable
way to get to the point that clearing the error queue on error is optional.
With those in place, the calls in the handshake state machine are no longer
needed. (I suspect all the ERR_clear_system_error calls can also go, but I'll
investigate and think about that separately.)
[*] I'm not even sure it's possible anymore, thanks to the possibility of
BIO_write pushing to the error queue.
BUG=567501,593963
Change-Id: I564ace199e5a4a74b2554ad3335e99cd17120741
Reviewed-on: https://boringssl-review.googlesource.com/7455
Reviewed-by: Steven Valdez <svaldez@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
2016-03-14 18:25:46 +00:00
|
|
|
|
2017-08-14 20:08:34 +01:00
|
|
|
if (ssl->do_handshake == NULL) {
|
2015-09-13 05:54:37 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// If we are in the middle of a handshake, silently succeed. Consumers often
|
|
|
|
// call this function before |SSL_free|, whether the handshake succeeded or
|
|
|
|
// not. We assume the caller has already handled failed handshakes.
|
2016-02-29 15:05:08 +00:00
|
|
|
if (SSL_in_init(ssl)) {
|
2017-02-17 18:51:50 +00:00
|
|
|
return 1;
|
2016-02-29 15:05:08 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
if (ssl->quiet_shutdown) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Do nothing if configured not to send a close_notify.
|
2017-10-06 21:02:47 +01:00
|
|
|
ssl->s3->write_shutdown = ssl_shutdown_close_notify;
|
|
|
|
ssl->s3->read_shutdown = ssl_shutdown_close_notify;
|
2015-09-13 05:54:37 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// This function completes in two stages. It sends a close_notify and then it
|
|
|
|
// waits for a close_notify to come in. Perform exactly one action and return
|
|
|
|
// whether or not it succeeds.
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2017-10-06 21:02:47 +01:00
|
|
|
if (ssl->s3->write_shutdown != ssl_shutdown_close_notify) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Send a close_notify.
|
2017-10-06 23:31:15 +01:00
|
|
|
if (ssl_send_alert(ssl, SSL3_AL_WARNING, SSL_AD_CLOSE_NOTIFY) <= 0) {
|
2016-05-10 22:03:10 +01:00
|
|
|
return -1;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
} else if (ssl->s3->alert_dispatch) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Finish sending the close_notify.
|
2016-06-15 22:44:37 +01:00
|
|
|
if (ssl->method->dispatch_alert(ssl) <= 0) {
|
2016-05-10 22:03:10 +01:00
|
|
|
return -1;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
2017-10-06 21:02:47 +01:00
|
|
|
} else if (ssl->s3->read_shutdown != ssl_shutdown_close_notify) {
|
2017-10-12 01:48:25 +01:00
|
|
|
if (SSL_is_dtls(ssl)) {
|
|
|
|
// Bidirectional shutdown doesn't make sense for an unordered
|
|
|
|
// transport. DTLS alerts also aren't delivered reliably, so we may even
|
|
|
|
// time out because the peer never received our close_notify. Report to
|
|
|
|
// the caller that the channel has fully shut down.
|
|
|
|
if (ssl->s3->read_shutdown == ssl_shutdown_error) {
|
2017-10-13 22:18:35 +01:00
|
|
|
ERR_restore_state(ssl->s3->read_error.get());
|
2017-10-12 01:48:25 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ssl->s3->read_shutdown = ssl_shutdown_close_notify;
|
|
|
|
} else {
|
2018-05-30 15:18:09 +01:00
|
|
|
// Process records until an error, close_notify, or application data.
|
|
|
|
if (ssl_read_impl(ssl) > 0) {
|
|
|
|
// We received some unexpected application data.
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_APPLICATION_DATA_ON_SHUTDOWN);
|
|
|
|
return -1;
|
2017-10-12 01:48:25 +01:00
|
|
|
}
|
|
|
|
if (ssl->s3->read_shutdown != ssl_shutdown_close_notify) {
|
|
|
|
return -1;
|
2017-10-06 22:36:20 +01:00
|
|
|
}
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Return 0 for unidirectional shutdown and 1 for bidirectional shutdown.
|
2017-10-06 21:02:47 +01:00
|
|
|
return ssl->s3->read_shutdown == ssl_shutdown_close_notify;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-07-26 23:03:08 +01:00
|
|
|
int SSL_send_fatal_alert(SSL *ssl, uint8_t alert) {
|
|
|
|
if (ssl->s3->alert_dispatch) {
|
|
|
|
if (ssl->s3->send_alert[0] != SSL3_AL_FATAL ||
|
|
|
|
ssl->s3->send_alert[1] != alert) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// We are already attempting to write a different alert.
|
2016-07-26 23:03:08 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return ssl->method->dispatch_alert(ssl);
|
|
|
|
}
|
|
|
|
|
2017-10-06 23:31:15 +01:00
|
|
|
return ssl_send_alert(ssl, SSL3_AL_FATAL, alert);
|
2016-07-26 23:03:08 +01:00
|
|
|
}
|
|
|
|
|
2017-12-22 23:50:43 +00:00
|
|
|
int SSL_set_quic_transport_params(SSL *ssl, const uint8_t *params,
|
|
|
|
size_t params_len) {
|
2018-07-03 01:24:40 +01:00
|
|
|
return ssl->config && ssl->config->quic_transport_params.CopyFrom(
|
|
|
|
MakeConstSpan(params, params_len));
|
2017-12-22 23:50:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_get_peer_quic_transport_params(const SSL *ssl,
|
|
|
|
const uint8_t **out_params,
|
|
|
|
size_t *out_params_len) {
|
|
|
|
*out_params = ssl->s3->peer_quic_transport_params.data();
|
|
|
|
*out_params_len = ssl->s3->peer_quic_transport_params.size();
|
|
|
|
}
|
|
|
|
|
2016-12-07 20:29:45 +00:00
|
|
|
void SSL_CTX_set_early_data_enabled(SSL_CTX *ctx, int enabled) {
|
2018-04-13 23:51:30 +01:00
|
|
|
ctx->enable_early_data = !!enabled;
|
2017-03-30 22:33:24 +01:00
|
|
|
}
|
|
|
|
|
2017-06-13 17:45:25 +01:00
|
|
|
void SSL_CTX_set_tls13_variant(SSL_CTX *ctx, enum tls13_variant_t variant) {
|
|
|
|
ctx->tls13_variant = variant;
|
|
|
|
}
|
|
|
|
|
2017-07-11 20:08:32 +01:00
|
|
|
void SSL_set_tls13_variant(SSL *ssl, enum tls13_variant_t variant) {
|
|
|
|
ssl->tls13_variant = variant;
|
|
|
|
}
|
|
|
|
|
2017-03-30 22:33:24 +01:00
|
|
|
void SSL_set_early_data_enabled(SSL *ssl, int enabled) {
|
2018-04-13 23:51:30 +01:00
|
|
|
ssl->enable_early_data = !!enabled;
|
2016-12-07 20:29:45 +00:00
|
|
|
}
|
|
|
|
|
2017-03-09 19:56:07 +00:00
|
|
|
int SSL_in_early_data(const SSL *ssl) {
|
|
|
|
if (ssl->s3->hs == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ssl->s3->hs->in_early_data;
|
|
|
|
}
|
|
|
|
|
2017-01-11 16:34:52 +00:00
|
|
|
int SSL_early_data_accepted(const SSL *ssl) {
|
2017-12-18 23:04:01 +00:00
|
|
|
return ssl->s3->early_data_accepted;
|
2017-01-11 16:34:52 +00:00
|
|
|
}
|
|
|
|
|
2017-03-09 19:56:07 +00:00
|
|
|
void SSL_reset_early_data_reject(SSL *ssl) {
|
2017-10-13 22:18:35 +01:00
|
|
|
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
2017-03-09 19:56:07 +00:00
|
|
|
if (hs == NULL ||
|
|
|
|
hs->wait != ssl_hs_early_data_rejected) {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
hs->wait = ssl_hs_ok;
|
2017-08-31 19:49:09 +01:00
|
|
|
hs->in_early_data = false;
|
2017-07-20 19:49:15 +01:00
|
|
|
hs->early_session.reset();
|
2017-03-09 19:56:07 +00:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Discard any unfinished writes from the perspective of |SSL_write|'s
|
|
|
|
// retry. The handshake will transparently flush out the pending record
|
|
|
|
// (discarded by the server) to keep the framing correct.
|
2017-08-31 20:06:42 +01:00
|
|
|
ssl->s3->wpend_pending = false;
|
2017-03-09 19:56:07 +00:00
|
|
|
}
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
static int bio_retry_reason_to_error(int reason) {
|
|
|
|
switch (reason) {
|
|
|
|
case BIO_RR_CONNECT:
|
|
|
|
return SSL_ERROR_WANT_CONNECT;
|
|
|
|
case BIO_RR_ACCEPT:
|
|
|
|
return SSL_ERROR_WANT_ACCEPT;
|
|
|
|
default:
|
|
|
|
return SSL_ERROR_SYSCALL;
|
|
|
|
}
|
|
|
|
}
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
int SSL_get_error(const SSL *ssl, int ret_code) {
|
2015-09-13 05:54:37 +01:00
|
|
|
if (ret_code > 0) {
|
|
|
|
return SSL_ERROR_NONE;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
|
|
|
|
// where we do encode the error
|
2016-12-10 20:12:03 +00:00
|
|
|
uint32_t err = ERR_peek_error();
|
2015-09-13 05:54:37 +01:00
|
|
|
if (err != 0) {
|
|
|
|
if (ERR_GET_LIB(err) == ERR_LIB_SYS) {
|
|
|
|
return SSL_ERROR_SYSCALL;
|
|
|
|
}
|
|
|
|
return SSL_ERROR_SSL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret_code == 0) {
|
2017-10-06 21:02:47 +01:00
|
|
|
if (ssl->s3->read_shutdown == ssl_shutdown_close_notify) {
|
2015-09-13 05:54:37 +01:00
|
|
|
return SSL_ERROR_ZERO_RETURN;
|
|
|
|
}
|
2017-08-29 21:33:21 +01:00
|
|
|
// An EOF was observed which violates the protocol, and the underlying
|
|
|
|
// transport does not participate in the error queue. Bubble up to the
|
|
|
|
// caller.
|
2015-09-13 05:54:37 +01:00
|
|
|
return SSL_ERROR_SYSCALL;
|
|
|
|
}
|
|
|
|
|
2017-10-14 00:17:22 +01:00
|
|
|
switch (ssl->s3->rwstate) {
|
2016-12-10 20:12:03 +00:00
|
|
|
case SSL_PENDING_SESSION:
|
|
|
|
return SSL_ERROR_PENDING_SESSION;
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
case SSL_CERTIFICATE_SELECTION_PENDING:
|
|
|
|
return SSL_ERROR_PENDING_CERTIFICATE;
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2018-01-26 17:14:30 +00:00
|
|
|
case SSL_HANDOFF:
|
|
|
|
return SSL_ERROR_HANDOFF;
|
|
|
|
|
2018-03-22 18:48:33 +00:00
|
|
|
case SSL_HANDBACK:
|
|
|
|
return SSL_ERROR_HANDBACK;
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
case SSL_READING: {
|
|
|
|
BIO *bio = SSL_get_rbio(ssl);
|
|
|
|
if (BIO_should_read(bio)) {
|
|
|
|
return SSL_ERROR_WANT_READ;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
if (BIO_should_write(bio)) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(davidben): OpenSSL historically checked for writes on the read
|
|
|
|
// BIO. Can this be removed?
|
2016-12-10 20:12:03 +00:00
|
|
|
return SSL_ERROR_WANT_WRITE;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
if (BIO_should_io_special(bio)) {
|
|
|
|
return bio_retry_reason_to_error(BIO_get_retry_reason(bio));
|
|
|
|
}
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
break;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
case SSL_WRITING: {
|
|
|
|
BIO *bio = SSL_get_wbio(ssl);
|
|
|
|
if (BIO_should_write(bio)) {
|
|
|
|
return SSL_ERROR_WANT_WRITE;
|
|
|
|
}
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
if (BIO_should_read(bio)) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(davidben): OpenSSL historically checked for reads on the write
|
|
|
|
// BIO. Can this be removed?
|
2016-12-10 20:12:03 +00:00
|
|
|
return SSL_ERROR_WANT_READ;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
if (BIO_should_io_special(bio)) {
|
|
|
|
return bio_retry_reason_to_error(BIO_get_retry_reason(bio));
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
break;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
case SSL_X509_LOOKUP:
|
|
|
|
return SSL_ERROR_WANT_X509_LOOKUP;
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
case SSL_CHANNEL_ID_LOOKUP:
|
|
|
|
return SSL_ERROR_WANT_CHANNEL_ID_LOOKUP;
|
2015-09-13 05:54:37 +01:00
|
|
|
|
2016-12-10 20:12:03 +00:00
|
|
|
case SSL_PRIVATE_KEY_OPERATION:
|
|
|
|
return SSL_ERROR_WANT_PRIVATE_KEY_OPERATION;
|
2017-03-09 03:33:21 +00:00
|
|
|
|
|
|
|
case SSL_PENDING_TICKET:
|
|
|
|
return SSL_ERROR_PENDING_TICKET;
|
2017-03-09 19:56:07 +00:00
|
|
|
|
|
|
|
case SSL_EARLY_DATA_REJECTED:
|
|
|
|
return SSL_ERROR_EARLY_DATA_REJECTED;
|
2017-07-11 21:13:10 +01:00
|
|
|
|
|
|
|
case SSL_CERTIFICATE_VERIFY:
|
|
|
|
return SSL_ERROR_WANT_CERTIFICATE_VERIFY;
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return SSL_ERROR_SYSCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options) {
|
|
|
|
ctx->options |= options;
|
|
|
|
return ctx->options;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options) {
|
|
|
|
ctx->options &= ~options;
|
|
|
|
return ctx->options;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_CTX_get_options(const SSL_CTX *ctx) { return ctx->options; }
|
|
|
|
|
|
|
|
uint32_t SSL_set_options(SSL *ssl, uint32_t options) {
|
|
|
|
ssl->options |= options;
|
|
|
|
return ssl->options;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_clear_options(SSL *ssl, uint32_t options) {
|
|
|
|
ssl->options &= ~options;
|
|
|
|
return ssl->options;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_get_options(const SSL *ssl) { return ssl->options; }
|
|
|
|
|
|
|
|
uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode) {
|
|
|
|
ctx->mode |= mode;
|
|
|
|
return ctx->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode) {
|
|
|
|
ctx->mode &= ~mode;
|
|
|
|
return ctx->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx) { return ctx->mode; }
|
|
|
|
|
|
|
|
uint32_t SSL_set_mode(SSL *ssl, uint32_t mode) {
|
|
|
|
ssl->mode |= mode;
|
|
|
|
return ssl->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode) {
|
|
|
|
ssl->mode &= ~mode;
|
|
|
|
return ssl->mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t SSL_get_mode(const SSL *ssl) { return ssl->mode; }
|
|
|
|
|
2016-12-12 19:16:44 +00:00
|
|
|
void SSL_CTX_set0_buffer_pool(SSL_CTX *ctx, CRYPTO_BUFFER_POOL *pool) {
|
|
|
|
ctx->pool = pool;
|
|
|
|
}
|
|
|
|
|
2015-09-13 06:03:54 +01:00
|
|
|
int SSL_get_tls_unique(const SSL *ssl, uint8_t *out, size_t *out_len,
|
|
|
|
size_t max_out) {
|
2017-07-12 22:16:39 +01:00
|
|
|
*out_len = 0;
|
|
|
|
OPENSSL_memset(out, 0, max_out);
|
|
|
|
|
2018-06-26 05:07:40 +01:00
|
|
|
// tls-unique is not defined for TLS 1.3.
|
2016-10-08 16:24:09 +01:00
|
|
|
if (!ssl->s3->initial_handshake_complete ||
|
2017-10-06 23:31:15 +01:00
|
|
|
ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
2017-07-12 22:16:39 +01:00
|
|
|
return 0;
|
2016-10-08 16:24:09 +01:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// The tls-unique value is the first Finished message in the handshake, which
|
|
|
|
// is the client's in a full handshake and the server's for a resumption. See
|
|
|
|
// https://tools.ietf.org/html/rfc5929#section-3.1.
|
2015-09-13 06:03:54 +01:00
|
|
|
const uint8_t *finished = ssl->s3->previous_client_finished;
|
|
|
|
size_t finished_len = ssl->s3->previous_client_finished_len;
|
2016-06-27 21:34:59 +01:00
|
|
|
if (ssl->session != NULL) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// tls-unique is broken for resumed sessions unless EMS is used.
|
2015-09-13 06:03:54 +01:00
|
|
|
if (!ssl->session->extended_master_secret) {
|
2017-07-12 22:16:39 +01:00
|
|
|
return 0;
|
2015-09-13 06:03:54 +01:00
|
|
|
}
|
|
|
|
finished = ssl->s3->previous_server_finished;
|
|
|
|
finished_len = ssl->s3->previous_server_finished_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_len = finished_len;
|
|
|
|
if (finished_len > max_out) {
|
|
|
|
*out_len = max_out;
|
|
|
|
}
|
|
|
|
|
2016-12-13 06:07:13 +00:00
|
|
|
OPENSSL_memcpy(out, finished, *out_len);
|
2015-09-13 06:03:54 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-15 01:07:11 +00:00
|
|
|
static int set_session_id_context(CERT *cert, const uint8_t *sid_ctx,
|
2016-12-08 03:35:24 +00:00
|
|
|
size_t sid_ctx_len) {
|
2017-02-15 01:07:11 +00:00
|
|
|
if (sid_ctx_len > sizeof(cert->sid_ctx)) {
|
2015-09-13 05:54:37 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-12-08 03:35:24 +00:00
|
|
|
|
2017-07-15 00:36:07 +01:00
|
|
|
static_assert(sizeof(cert->sid_ctx) < 256, "sid_ctx too large");
|
2017-02-15 01:07:11 +00:00
|
|
|
cert->sid_ctx_length = (uint8_t)sid_ctx_len;
|
|
|
|
OPENSSL_memcpy(cert->sid_ctx, sid_ctx, sid_ctx_len);
|
2015-09-13 05:54:37 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-02-15 01:07:11 +00:00
|
|
|
int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const uint8_t *sid_ctx,
|
|
|
|
size_t sid_ctx_len) {
|
2018-07-03 01:24:40 +01:00
|
|
|
return set_session_id_context(ctx->cert.get(), sid_ctx, sid_ctx_len);
|
2017-02-15 01:07:11 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
int SSL_set_session_id_context(SSL *ssl, const uint8_t *sid_ctx,
|
2016-12-08 03:35:24 +00:00
|
|
|
size_t sid_ctx_len) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-03 01:24:40 +01:00
|
|
|
return set_session_id_context(ssl->config->cert.get(), sid_ctx, sid_ctx_len);
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
|
2016-12-08 02:13:41 +00:00
|
|
|
const uint8_t *SSL_get0_session_id_context(const SSL *ssl, size_t *out_len) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
assert(ssl->config);
|
|
|
|
*out_len = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*out_len = ssl->config->cert->sid_ctx_length;
|
|
|
|
return ssl->config->cert->sid_ctx;
|
2016-12-08 02:13:41 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 23:51:30 +01:00
|
|
|
void SSL_certs_clear(SSL *ssl) {
|
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-03 01:24:40 +01:00
|
|
|
ssl_cert_clear_certs(ssl->config->cert.get());
|
2018-04-13 23:51:30 +01:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-10-18 02:11:33 +01:00
|
|
|
int SSL_get_fd(const SSL *ssl) { return SSL_get_rfd(ssl); }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-10-18 02:11:33 +01:00
|
|
|
int SSL_get_rfd(const SSL *ssl) {
|
2014-12-19 01:42:32 +00:00
|
|
|
int ret = -1;
|
2015-10-18 02:11:33 +01:00
|
|
|
BIO *b = BIO_find_type(SSL_get_rbio(ssl), BIO_TYPE_DESCRIPTOR);
|
|
|
|
if (b != NULL) {
|
|
|
|
BIO_get_fd(b, &ret);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-18 02:11:33 +01:00
|
|
|
int SSL_get_wfd(const SSL *ssl) {
|
2014-12-19 01:42:32 +00:00
|
|
|
int ret = -1;
|
2015-10-18 02:11:33 +01:00
|
|
|
BIO *b = BIO_find_type(SSL_get_wbio(ssl), BIO_TYPE_DESCRIPTOR);
|
|
|
|
if (b != NULL) {
|
|
|
|
BIO_get_fd(b, &ret);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-18 02:11:33 +01:00
|
|
|
int SSL_set_fd(SSL *ssl, int fd) {
|
2016-03-07 00:26:52 +00:00
|
|
|
BIO *bio = BIO_new(BIO_s_socket());
|
2014-12-19 01:42:32 +00:00
|
|
|
if (bio == NULL) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB);
|
2015-10-18 02:11:33 +01:00
|
|
|
return 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
BIO_set_fd(bio, fd, BIO_NOCLOSE);
|
2015-10-18 02:11:33 +01:00
|
|
|
SSL_set_bio(ssl, bio, bio);
|
|
|
|
return 1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-10-18 02:11:33 +01:00
|
|
|
int SSL_set_wfd(SSL *ssl, int fd) {
|
2016-05-20 19:27:17 +01:00
|
|
|
BIO *rbio = SSL_get_rbio(ssl);
|
|
|
|
if (rbio == NULL || BIO_method_type(rbio) != BIO_TYPE_SOCKET ||
|
|
|
|
BIO_get_fd(rbio, NULL) != fd) {
|
2016-03-07 00:26:52 +00:00
|
|
|
BIO *bio = BIO_new(BIO_s_socket());
|
2014-12-19 01:42:32 +00:00
|
|
|
if (bio == NULL) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB);
|
2015-10-18 02:11:33 +01:00
|
|
|
return 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
BIO_set_fd(bio, fd, BIO_NOCLOSE);
|
2016-08-01 18:39:41 +01:00
|
|
|
SSL_set0_wbio(ssl, bio);
|
2014-12-19 01:42:32 +00:00
|
|
|
} else {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Copy the rbio over to the wbio.
|
2016-08-01 18:39:41 +01:00
|
|
|
BIO_up_ref(rbio);
|
|
|
|
SSL_set0_wbio(ssl, rbio);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-10-18 02:11:33 +01:00
|
|
|
return 1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-10-18 02:11:33 +01:00
|
|
|
int SSL_set_rfd(SSL *ssl, int fd) {
|
2016-05-20 19:27:17 +01:00
|
|
|
BIO *wbio = SSL_get_wbio(ssl);
|
|
|
|
if (wbio == NULL || BIO_method_type(wbio) != BIO_TYPE_SOCKET ||
|
|
|
|
BIO_get_fd(wbio, NULL) != fd) {
|
2016-03-07 00:26:52 +00:00
|
|
|
BIO *bio = BIO_new(BIO_s_socket());
|
2014-12-19 01:42:32 +00:00
|
|
|
if (bio == NULL) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB);
|
2015-10-18 02:11:33 +01:00
|
|
|
return 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
BIO_set_fd(bio, fd, BIO_NOCLOSE);
|
2016-08-01 18:39:41 +01:00
|
|
|
SSL_set0_rbio(ssl, bio);
|
2014-12-19 01:42:32 +00:00
|
|
|
} else {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Copy the wbio over to the rbio.
|
2016-08-01 18:39:41 +01:00
|
|
|
BIO_up_ref(wbio);
|
|
|
|
SSL_set0_rbio(ssl, wbio);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2015-10-18 02:11:33 +01:00
|
|
|
return 1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2016-10-08 16:56:01 +01:00
|
|
|
static size_t copy_finished(void *out, size_t out_len, const uint8_t *in,
|
|
|
|
size_t in_len) {
|
|
|
|
if (out_len > in_len) {
|
|
|
|
out_len = in_len;
|
|
|
|
}
|
2016-12-13 06:07:13 +00:00
|
|
|
OPENSSL_memcpy(out, in, out_len);
|
2016-10-08 16:56:01 +01:00
|
|
|
return in_len;
|
|
|
|
}
|
|
|
|
|
2015-10-17 17:51:52 +01:00
|
|
|
size_t SSL_get_finished(const SSL *ssl, void *buf, size_t count) {
|
2016-10-08 16:24:09 +01:00
|
|
|
if (!ssl->s3->initial_handshake_complete ||
|
2017-10-06 23:31:15 +01:00
|
|
|
ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
2016-10-08 16:24:09 +01:00
|
|
|
return 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-10-08 16:56:01 +01:00
|
|
|
if (ssl->server) {
|
|
|
|
return copy_finished(buf, count, ssl->s3->previous_server_finished,
|
|
|
|
ssl->s3->previous_server_finished_len);
|
2016-10-08 16:24:09 +01:00
|
|
|
}
|
2016-10-08 16:56:01 +01:00
|
|
|
|
|
|
|
return copy_finished(buf, count, ssl->s3->previous_client_finished,
|
|
|
|
ssl->s3->previous_client_finished_len);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-10-17 17:51:52 +01:00
|
|
|
size_t SSL_get_peer_finished(const SSL *ssl, void *buf, size_t count) {
|
2016-10-08 16:24:09 +01:00
|
|
|
if (!ssl->s3->initial_handshake_complete ||
|
2017-10-06 23:31:15 +01:00
|
|
|
ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
2016-10-08 16:24:09 +01:00
|
|
|
return 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-10-08 16:56:01 +01:00
|
|
|
if (ssl->server) {
|
|
|
|
return copy_finished(buf, count, ssl->s3->previous_client_finished,
|
|
|
|
ssl->s3->previous_client_finished_len);
|
2016-10-08 16:24:09 +01:00
|
|
|
}
|
2016-10-08 16:56:01 +01:00
|
|
|
|
|
|
|
return copy_finished(buf, count, ssl->s3->previous_server_finished,
|
|
|
|
ssl->s3->previous_server_finished_len);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 23:51:30 +01:00
|
|
|
int SSL_get_verify_mode(const SSL *ssl) {
|
|
|
|
if (!ssl->config) {
|
|
|
|
assert(ssl->config);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return ssl->config->verify_mode;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-09-19 06:22:44 +01:00
|
|
|
int SSL_get_extms_support(const SSL *ssl) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TLS 1.3 does not require extended master secret and always reports as
|
|
|
|
// supporting it.
|
2016-07-24 05:14:33 +01:00
|
|
|
if (!ssl->s3->have_version) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-10-06 23:31:15 +01:00
|
|
|
if (ssl_protocol_version(ssl) >= TLS1_3_VERSION) {
|
2017-02-17 21:26:01 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// If the initial handshake completed, query the established session.
|
2017-02-17 21:26:01 +00:00
|
|
|
if (ssl->s3->established_session != NULL) {
|
|
|
|
return ssl->s3->established_session->extended_master_secret;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Otherwise, query the in-progress handshake.
|
2017-02-17 21:26:01 +00:00
|
|
|
if (ssl->s3->hs != NULL) {
|
|
|
|
return ssl->s3->hs->extended_master_secret;
|
|
|
|
}
|
|
|
|
assert(0);
|
|
|
|
return 0;
|
2015-09-17 20:54:42 +01:00
|
|
|
}
|
|
|
|
|
2015-05-16 06:30:09 +01:00
|
|
|
int SSL_CTX_get_read_ahead(const SSL_CTX *ctx) { return 0; }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
int SSL_get_read_ahead(const SSL *ssl) { return 0; }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-05-11 00:55:02 +01:00
|
|
|
int SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes) { return 1; }
|
2015-05-05 14:44:51 +01:00
|
|
|
|
2018-05-11 00:55:02 +01:00
|
|
|
int SSL_set_read_ahead(SSL *ssl, int yes) { return 1; }
|
2015-05-05 14:44:51 +01:00
|
|
|
|
2015-10-03 15:44:30 +01:00
|
|
|
int SSL_pending(const SSL *ssl) {
|
2017-10-06 22:36:20 +01:00
|
|
|
return static_cast<int>(ssl->s3->pending_app_data.size());
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
int SSL_CTX_check_private_key(const SSL_CTX *ctx) {
|
2018-07-03 01:24:40 +01:00
|
|
|
return ssl_cert_check_private_key(ctx->cert.get(),
|
|
|
|
ctx->cert->privatekey.get());
|
2015-05-05 14:44:51 +01:00
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
int SSL_check_private_key(const SSL *ssl) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-03 01:24:40 +01:00
|
|
|
return ssl_cert_check_private_key(ssl->config->cert.get(),
|
2018-04-13 23:51:30 +01:00
|
|
|
ssl->config->cert->privatekey.get());
|
2015-05-05 14:44:51 +01:00
|
|
|
}
|
|
|
|
|
2015-09-19 06:22:44 +01:00
|
|
|
long SSL_get_default_timeout(const SSL *ssl) {
|
2015-09-13 05:54:37 +01:00
|
|
|
return SSL_DEFAULT_SESSION_TIMEOUT;
|
2015-05-05 14:44:51 +01:00
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
int SSL_renegotiate(SSL *ssl) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Caller-initiated renegotiation is not supported.
|
2015-09-13 05:54:37 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
|
|
|
|
return 0;
|
2015-05-05 14:44:51 +01:00
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
int SSL_renegotiate_pending(SSL *ssl) {
|
|
|
|
return SSL_in_init(ssl) && ssl->s3->initial_handshake_complete;
|
2015-05-05 14:44:51 +01:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-06-08 00:09:22 +01:00
|
|
|
int SSL_total_renegotiations(const SSL *ssl) {
|
|
|
|
return ssl->s3->total_renegotiations;
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:35:35 +01:00
|
|
|
size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx) {
|
|
|
|
return ctx->max_cert_list;
|
|
|
|
}
|
2015-05-05 14:44:51 +01:00
|
|
|
|
2015-04-26 20:35:35 +01:00
|
|
|
void SSL_CTX_set_max_cert_list(SSL_CTX *ctx, size_t max_cert_list) {
|
|
|
|
if (max_cert_list > kMaxHandshakeSize) {
|
|
|
|
max_cert_list = kMaxHandshakeSize;
|
|
|
|
}
|
|
|
|
ctx->max_cert_list = (uint32_t)max_cert_list;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-04-26 20:35:35 +01:00
|
|
|
size_t SSL_get_max_cert_list(const SSL *ssl) {
|
|
|
|
return ssl->max_cert_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list) {
|
|
|
|
if (max_cert_list > kMaxHandshakeSize) {
|
|
|
|
max_cert_list = kMaxHandshakeSize;
|
|
|
|
}
|
|
|
|
ssl->max_cert_list = (uint32_t)max_cert_list;
|
|
|
|
}
|
|
|
|
|
2016-01-24 23:58:39 +00:00
|
|
|
int SSL_CTX_set_max_send_fragment(SSL_CTX *ctx, size_t max_send_fragment) {
|
2015-04-26 20:35:35 +01:00
|
|
|
if (max_send_fragment < 512) {
|
|
|
|
max_send_fragment = 512;
|
|
|
|
}
|
|
|
|
if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) {
|
|
|
|
max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
|
|
|
|
}
|
|
|
|
ctx->max_send_fragment = (uint16_t)max_send_fragment;
|
2016-01-24 23:58:39 +00:00
|
|
|
|
|
|
|
return 1;
|
2015-04-26 20:35:35 +01:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-01-24 23:58:39 +00:00
|
|
|
int SSL_set_max_send_fragment(SSL *ssl, size_t max_send_fragment) {
|
2015-04-26 20:35:35 +01:00
|
|
|
if (max_send_fragment < 512) {
|
|
|
|
max_send_fragment = 512;
|
|
|
|
}
|
|
|
|
if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) {
|
|
|
|
max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
|
|
|
|
}
|
|
|
|
ssl->max_send_fragment = (uint16_t)max_send_fragment;
|
2016-01-24 23:58:39 +00:00
|
|
|
|
|
|
|
return 1;
|
2015-04-26 20:35:35 +01:00
|
|
|
}
|
|
|
|
|
2015-05-05 14:46:14 +01:00
|
|
|
int SSL_set_mtu(SSL *ssl, unsigned mtu) {
|
2016-08-02 21:22:34 +01:00
|
|
|
if (!SSL_is_dtls(ssl) || mtu < dtls1_min_mtu()) {
|
2015-05-05 14:46:14 +01:00
|
|
|
return 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2015-05-05 14:46:14 +01:00
|
|
|
ssl->d1->mtu = mtu;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_get_secure_renegotiation_support(const SSL *ssl) {
|
2017-01-03 15:49:28 +00:00
|
|
|
if (!ssl->s3->have_version) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-10-06 23:31:15 +01:00
|
|
|
return ssl_protocol_version(ssl) >= TLS1_3_VERSION ||
|
2017-01-03 15:49:28 +00:00
|
|
|
ssl->s3->send_connection_binding;
|
2015-05-05 14:46:14 +01:00
|
|
|
}
|
|
|
|
|
2015-05-05 14:46:38 +01:00
|
|
|
size_t SSL_CTX_sess_number(const SSL_CTX *ctx) {
|
2017-09-27 22:03:54 +01:00
|
|
|
MutexReadLock lock(const_cast<CRYPTO_MUTEX *>(&ctx->lock));
|
2015-05-05 14:46:38 +01:00
|
|
|
return lh_SSL_SESSION_num_items(ctx->sessions);
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-05-05 14:46:38 +01:00
|
|
|
unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx, unsigned long size) {
|
|
|
|
unsigned long ret = ctx->session_cache_size;
|
|
|
|
ctx->session_cache_size = size;
|
|
|
|
return ret;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-05-05 14:46:38 +01:00
|
|
|
unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx) {
|
|
|
|
return ctx->session_cache_size;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-05-05 14:46:38 +01:00
|
|
|
int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode) {
|
|
|
|
int ret = ctx->session_cache_mode;
|
|
|
|
ctx->session_cache_mode = mode;
|
|
|
|
return ret;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-05-05 14:46:38 +01:00
|
|
|
int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx) {
|
|
|
|
return ctx->session_cache_mode;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-06-08 00:09:22 +01:00
|
|
|
|
|
|
|
int SSL_CTX_get_tlsext_ticket_keys(SSL_CTX *ctx, void *out, size_t len) {
|
|
|
|
if (out == NULL) {
|
|
|
|
return 48;
|
|
|
|
}
|
|
|
|
if (len != 48) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH);
|
|
|
|
return 0;
|
|
|
|
}
|
2017-08-04 20:06:43 +01:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// The default ticket keys are initialized lazily. Trigger a key
|
|
|
|
// rotation to initialize them.
|
2017-08-04 20:06:43 +01:00
|
|
|
if (!ssl_ctx_rotate_ticket_encryption_key(ctx)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-07-12 22:16:39 +01:00
|
|
|
uint8_t *out_bytes = reinterpret_cast<uint8_t *>(out);
|
2017-08-04 20:06:43 +01:00
|
|
|
MutexReadLock lock(&ctx->lock);
|
2018-07-03 18:55:42 +01:00
|
|
|
OPENSSL_memcpy(out_bytes, ctx->ticket_key_current->name, 16);
|
|
|
|
OPENSSL_memcpy(out_bytes + 16, ctx->ticket_key_current->hmac_key, 16);
|
|
|
|
OPENSSL_memcpy(out_bytes + 32, ctx->ticket_key_current->aes_key, 16);
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_tlsext_ticket_keys(SSL_CTX *ctx, const void *in, size_t len) {
|
|
|
|
if (in == NULL) {
|
|
|
|
return 48;
|
|
|
|
}
|
|
|
|
if (len != 48) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH);
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-03 18:55:42 +01:00
|
|
|
auto key = MakeUnique<TicketKey>();
|
|
|
|
if (!key) {
|
|
|
|
return 0;
|
2017-08-04 20:06:43 +01:00
|
|
|
}
|
2017-07-12 22:16:39 +01:00
|
|
|
const uint8_t *in_bytes = reinterpret_cast<const uint8_t *>(in);
|
2018-07-03 18:55:42 +01:00
|
|
|
OPENSSL_memcpy(key->name, in_bytes, 16);
|
|
|
|
OPENSSL_memcpy(key->hmac_key, in_bytes + 16, 16);
|
|
|
|
OPENSSL_memcpy(key->aes_key, in_bytes + 32, 16);
|
|
|
|
// Disable automatic key rotation for manually-configured keys. This is now
|
|
|
|
// the caller's responsibility.
|
|
|
|
key->next_rotation_tv_sec = 0;
|
|
|
|
ctx->ticket_key_current = std::move(key);
|
|
|
|
ctx->ticket_key_prev.reset();
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_tlsext_ticket_key_cb(
|
|
|
|
SSL_CTX *ctx, int (*callback)(SSL *ssl, uint8_t *key_name, uint8_t *iv,
|
|
|
|
EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx,
|
|
|
|
int encrypt)) {
|
2018-07-03 18:55:42 +01:00
|
|
|
ctx->ticket_key_cb = callback;
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves, size_t curves_len) {
|
|
|
|
return tls1_set_curves(&ctx->supported_group_list,
|
2018-07-03 01:24:40 +01:00
|
|
|
MakeConstSpan(curves, curves_len));
|
2016-06-08 00:09:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set1_curves(SSL *ssl, const int *curves, size_t curves_len) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return tls1_set_curves(&ssl->config->supported_group_list,
|
2018-07-03 01:24:40 +01:00
|
|
|
MakeConstSpan(curves, curves_len));
|
2016-06-08 00:09:22 +01:00
|
|
|
}
|
|
|
|
|
2016-09-28 21:04:25 +01:00
|
|
|
int SSL_CTX_set1_curves_list(SSL_CTX *ctx, const char *curves) {
|
2018-07-03 01:24:40 +01:00
|
|
|
return tls1_set_curves_list(&ctx->supported_group_list, curves);
|
2016-09-28 21:04:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set1_curves_list(SSL *ssl, const char *curves) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-03 01:24:40 +01:00
|
|
|
return tls1_set_curves_list(&ssl->config->supported_group_list, curves);
|
2016-09-28 21:04:25 +01:00
|
|
|
}
|
|
|
|
|
2016-06-30 19:55:33 +01:00
|
|
|
uint16_t SSL_get_curve_id(const SSL *ssl) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(davidben): This checks the wrong session if there is a renegotiation
|
|
|
|
// in progress.
|
2016-06-27 21:34:59 +01:00
|
|
|
SSL_SESSION *session = SSL_get_session(ssl);
|
2016-12-11 07:48:12 +00:00
|
|
|
if (session == NULL) {
|
2016-06-30 19:55:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-12-11 07:48:12 +00:00
|
|
|
return session->group_id;
|
2016-06-30 19:55:33 +01:00
|
|
|
}
|
|
|
|
|
2016-06-08 00:09:22 +01:00
|
|
|
int SSL_CTX_set_tmp_dh(SSL_CTX *ctx, const DH *dh) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set_tmp_dh(SSL *ssl, const DH *dh) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-08-08 23:51:37 +01:00
|
|
|
STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx) {
|
2018-04-12 22:37:32 +01:00
|
|
|
return ctx->cipher_list->ciphers.get();
|
2017-03-03 03:04:07 +00:00
|
|
|
}
|
|
|
|
|
2017-08-08 23:51:37 +01:00
|
|
|
int SSL_CTX_cipher_in_group(const SSL_CTX *ctx, size_t i) {
|
2018-04-12 22:37:32 +01:00
|
|
|
if (i >= sk_SSL_CIPHER_num(ctx->cipher_list->ciphers.get())) {
|
2017-08-08 23:51:37 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ctx->cipher_list->in_group_flags[i];
|
|
|
|
}
|
|
|
|
|
2015-09-20 17:17:03 +01:00
|
|
|
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl) {
|
|
|
|
if (ssl == NULL) {
|
2014-12-19 01:42:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-04-13 23:51:30 +01:00
|
|
|
if (ssl->config == NULL) {
|
|
|
|
assert(ssl->config);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-04-13 23:51:30 +01:00
|
|
|
return ssl->config->cipher_list ? ssl->config->cipher_list->ciphers.get()
|
|
|
|
: ssl->ctx->cipher_list->ciphers.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 17:17:03 +01:00
|
|
|
const char *SSL_get_cipher_list(const SSL *ssl, int n) {
|
|
|
|
if (ssl == NULL) {
|
2014-12-19 01:42:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-03-03 03:04:07 +00:00
|
|
|
STACK_OF(SSL_CIPHER) *sk = SSL_get_ciphers(ssl);
|
2014-12-19 01:42:32 +00:00
|
|
|
if (sk == NULL || n < 0 || (size_t)n >= sk_SSL_CIPHER_num(sk)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-03-03 03:04:07 +00:00
|
|
|
const SSL_CIPHER *c = sk_SSL_CIPHER_value(sk, n);
|
2014-12-19 01:42:32 +00:00
|
|
|
if (c == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return c->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str) {
|
2017-10-28 21:08:58 +01:00
|
|
|
return ssl_create_cipher_list(&ctx->cipher_list, str, false /* not strict */);
|
2017-02-18 06:08:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_strict_cipher_list(SSL_CTX *ctx, const char *str) {
|
2017-10-28 21:08:58 +01:00
|
|
|
return ssl_create_cipher_list(&ctx->cipher_list, str, true /* strict */);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 17:17:03 +01:00
|
|
|
int SSL_set_cipher_list(SSL *ssl, const char *str) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ssl_create_cipher_list(&ssl->config->cipher_list, str,
|
|
|
|
false /* not strict */);
|
2017-02-18 06:08:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set_strict_cipher_list(SSL *ssl, const char *str) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ssl_create_cipher_list(&ssl->config->cipher_list, str,
|
|
|
|
true /* strict */);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-10-17 18:48:04 +01:00
|
|
|
const char *SSL_get_servername(const SSL *ssl, const int type) {
|
2014-12-19 01:42:32 +00:00
|
|
|
if (type != TLSEXT_NAMETYPE_host_name) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Historically, |SSL_get_servername| was also the configuration getter
|
|
|
|
// corresponding to |SSL_set_tlsext_host_name|.
|
2018-07-03 19:01:26 +01:00
|
|
|
if (ssl->hostname != nullptr) {
|
|
|
|
return ssl->hostname.get();
|
2015-10-17 18:48:04 +01:00
|
|
|
}
|
|
|
|
|
2017-10-13 22:18:35 +01:00
|
|
|
return ssl->s3->hostname.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-10-17 18:48:04 +01:00
|
|
|
int SSL_get_servername_type(const SSL *ssl) {
|
2017-09-06 20:40:19 +01:00
|
|
|
if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) == NULL) {
|
2016-06-27 21:34:59 +01:00
|
|
|
return -1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2016-06-27 21:34:59 +01:00
|
|
|
return TLSEXT_NAMETYPE_host_name;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 21:13:10 +01:00
|
|
|
void SSL_CTX_set_custom_verify(
|
|
|
|
SSL_CTX *ctx, int mode,
|
|
|
|
enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)) {
|
|
|
|
ctx->verify_mode = mode;
|
|
|
|
ctx->custom_verify_callback = callback;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2017-07-11 21:13:10 +01:00
|
|
|
void SSL_set_custom_verify(
|
|
|
|
SSL *ssl, int mode,
|
|
|
|
enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->verify_mode = mode;
|
|
|
|
ssl->config->custom_verify_callback = callback;
|
2017-07-11 21:13:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx) {
|
2017-10-11 18:01:08 +01:00
|
|
|
ctx->signed_cert_timestamps_enabled = true;
|
2017-03-08 00:41:04 +00:00
|
|
|
}
|
|
|
|
|
2017-02-15 01:13:00 +00:00
|
|
|
void SSL_enable_signed_cert_timestamps(SSL *ssl) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->signed_cert_timestamps_enabled = true;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx) {
|
2017-10-11 18:01:08 +01:00
|
|
|
ctx->ocsp_stapling_enabled = true;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2017-02-15 01:13:00 +00:00
|
|
|
void SSL_enable_ocsp_stapling(SSL *ssl) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->ocsp_stapling_enabled = true;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_get0_signed_cert_timestamp_list(const SSL *ssl, const uint8_t **out,
|
|
|
|
size_t *out_len) {
|
2016-06-27 21:34:59 +01:00
|
|
|
SSL_SESSION *session = SSL_get_session(ssl);
|
2017-08-22 23:07:51 +01:00
|
|
|
if (ssl->server || !session || !session->signed_cert_timestamp_list) {
|
|
|
|
*out_len = 0;
|
|
|
|
*out = NULL;
|
2014-12-19 01:42:32 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
Give SSL_SESSION a destructor.
Previously we'd partially attempted the ssl_st / bssl::SSLConnection
subclassing split, but that gets messy when we actually try to add a
destructor, because CRYPTO_EX_DATA's cleanup function needs an ssl_st*,
not a bssl::SSLConnection*. Downcasting is technically undefined at this
point and will likely offend some CFI-like check.
Moreover, it appears that even with today's subclassing split,
New<SSL>() emits symbols like:
W ssl_st*& std::forward<ssl_st*&>(std::remove_reference<ssl_st*&>::type&)
The compiler does not bother emitting them in optimized builds, but it
does suggest we can't really avoid claiming the ssl_st type name at the
symbol level, short of doing reinterpret_casts at all API boundaries.
And, of course, we've already long claimed it at the #include level.
So I've just left this defining directly on ssl_session_st. The cost is
we need to write some silly "bssl::" prefixes in the headers, but so it
goes. In the likely event we change our minds again, we can always
revise this.
Change-Id: Ieb429e8eaabe7c2961ef7f8d9234fb71f19a5e2a
Reviewed-on: https://boringssl-review.googlesource.com/29587
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: Adam Langley <agl@google.com>
2018-06-29 21:26:38 +01:00
|
|
|
*out = CRYPTO_BUFFER_data(session->signed_cert_timestamp_list.get());
|
|
|
|
*out_len = CRYPTO_BUFFER_len(session->signed_cert_timestamp_list.get());
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out,
|
|
|
|
size_t *out_len) {
|
2016-06-27 21:34:59 +01:00
|
|
|
SSL_SESSION *session = SSL_get_session(ssl);
|
2014-12-19 01:42:32 +00:00
|
|
|
if (ssl->server || !session || !session->ocsp_response) {
|
2017-08-22 23:07:51 +01:00
|
|
|
*out_len = 0;
|
|
|
|
*out = NULL;
|
2014-12-19 01:42:32 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-08-22 23:07:51 +01:00
|
|
|
|
Give SSL_SESSION a destructor.
Previously we'd partially attempted the ssl_st / bssl::SSLConnection
subclassing split, but that gets messy when we actually try to add a
destructor, because CRYPTO_EX_DATA's cleanup function needs an ssl_st*,
not a bssl::SSLConnection*. Downcasting is technically undefined at this
point and will likely offend some CFI-like check.
Moreover, it appears that even with today's subclassing split,
New<SSL>() emits symbols like:
W ssl_st*& std::forward<ssl_st*&>(std::remove_reference<ssl_st*&>::type&)
The compiler does not bother emitting them in optimized builds, but it
does suggest we can't really avoid claiming the ssl_st type name at the
symbol level, short of doing reinterpret_casts at all API boundaries.
And, of course, we've already long claimed it at the #include level.
So I've just left this defining directly on ssl_session_st. The cost is
we need to write some silly "bssl::" prefixes in the headers, but so it
goes. In the likely event we change our minds again, we can always
revise this.
Change-Id: Ieb429e8eaabe7c2961ef7f8d9234fb71f19a5e2a
Reviewed-on: https://boringssl-review.googlesource.com/29587
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: Adam Langley <agl@google.com>
2018-06-29 21:26:38 +01:00
|
|
|
*out = CRYPTO_BUFFER_data(session->ocsp_response.get());
|
|
|
|
*out_len = CRYPTO_BUFFER_len(session->ocsp_response.get());
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-06-08 00:09:22 +01:00
|
|
|
int SSL_set_tlsext_host_name(SSL *ssl, const char *name) {
|
2018-07-03 19:01:26 +01:00
|
|
|
ssl->hostname.reset();
|
2018-07-03 00:47:27 +01:00
|
|
|
if (name == nullptr) {
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t len = strlen(name);
|
|
|
|
if (len == 0 || len > TLSEXT_MAXLEN_host_name) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL3_EXT_INVALID_SERVERNAME);
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-03 19:01:26 +01:00
|
|
|
ssl->hostname.reset(BUF_strdup(name));
|
|
|
|
if (ssl->hostname == nullptr) {
|
2016-06-08 00:09:22 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_tlsext_servername_callback(
|
|
|
|
SSL_CTX *ctx, int (*callback)(SSL *ssl, int *out_alert, void *arg)) {
|
2018-07-03 19:01:26 +01:00
|
|
|
ctx->servername_callback = callback;
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_tlsext_servername_arg(SSL_CTX *ctx, void *arg) {
|
2018-07-03 19:01:26 +01:00
|
|
|
ctx->servername_arg = arg;
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-06-15 22:51:35 +01:00
|
|
|
int SSL_select_next_proto(uint8_t **out, uint8_t *out_len, const uint8_t *peer,
|
|
|
|
unsigned peer_len, const uint8_t *supported,
|
|
|
|
unsigned supported_len) {
|
2014-12-19 01:42:32 +00:00
|
|
|
const uint8_t *result;
|
2017-06-15 22:51:35 +01:00
|
|
|
int status;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// For each protocol in peer preference order, see if we support it.
|
2017-06-15 22:51:35 +01:00
|
|
|
for (unsigned i = 0; i < peer_len;) {
|
|
|
|
for (unsigned j = 0; j < supported_len;) {
|
|
|
|
if (peer[i] == supported[j] &&
|
|
|
|
OPENSSL_memcmp(&peer[i + 1], &supported[j + 1], peer[i]) == 0) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// We found a match
|
2017-06-15 22:51:35 +01:00
|
|
|
result = &peer[i];
|
2014-12-19 01:42:32 +00:00
|
|
|
status = OPENSSL_NPN_NEGOTIATED;
|
|
|
|
goto found;
|
|
|
|
}
|
2017-06-15 22:51:35 +01:00
|
|
|
j += supported[j];
|
2014-12-19 01:42:32 +00:00
|
|
|
j++;
|
|
|
|
}
|
2017-06-15 22:51:35 +01:00
|
|
|
i += peer[i];
|
2014-12-19 01:42:32 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// There's no overlap between our protocols and the peer's list.
|
2017-06-15 22:51:35 +01:00
|
|
|
result = supported;
|
2014-12-19 01:42:32 +00:00
|
|
|
status = OPENSSL_NPN_NO_OVERLAP;
|
|
|
|
|
|
|
|
found:
|
|
|
|
*out = (uint8_t *)result + 1;
|
2015-09-16 05:25:52 +01:00
|
|
|
*out_len = result[0];
|
2014-12-19 01:42:32 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2015-09-16 05:25:52 +01:00
|
|
|
void SSL_get0_next_proto_negotiated(const SSL *ssl, const uint8_t **out_data,
|
|
|
|
unsigned *out_len) {
|
2017-10-13 22:18:35 +01:00
|
|
|
*out_data = ssl->s3->next_proto_negotiated.data();
|
|
|
|
*out_len = ssl->s3->next_proto_negotiated.size();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_set_next_protos_advertised_cb(
|
|
|
|
SSL_CTX *ctx,
|
2015-09-16 05:25:52 +01:00
|
|
|
int (*cb)(SSL *ssl, const uint8_t **out, unsigned *out_len, void *arg),
|
2014-12-19 01:42:32 +00:00
|
|
|
void *arg) {
|
|
|
|
ctx->next_protos_advertised_cb = cb;
|
|
|
|
ctx->next_protos_advertised_cb_arg = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_set_next_proto_select_cb(
|
2015-09-16 05:25:52 +01:00
|
|
|
SSL_CTX *ctx, int (*cb)(SSL *ssl, uint8_t **out, uint8_t *out_len,
|
|
|
|
const uint8_t *in, unsigned in_len, void *arg),
|
2014-12-19 01:42:32 +00:00
|
|
|
void *arg) {
|
|
|
|
ctx->next_proto_select_cb = cb;
|
|
|
|
ctx->next_proto_select_cb_arg = arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos,
|
|
|
|
unsigned protos_len) {
|
2018-07-03 01:24:40 +01:00
|
|
|
// Note this function's calling convention is backwards.
|
|
|
|
return ctx->alpn_client_proto_list.CopyFrom(MakeConstSpan(protos, protos_len))
|
|
|
|
? 0
|
|
|
|
: 1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set_alpn_protos(SSL *ssl, const uint8_t *protos, unsigned protos_len) {
|
2018-07-03 01:24:40 +01:00
|
|
|
// Note this function's calling convention is backwards.
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
2014-12-19 01:42:32 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-07-03 01:24:40 +01:00
|
|
|
return ssl->config->alpn_client_proto_list.CopyFrom(
|
|
|
|
MakeConstSpan(protos, protos_len))
|
|
|
|
? 0
|
|
|
|
: 1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
|
|
|
|
int (*cb)(SSL *ssl, const uint8_t **out,
|
2015-09-16 05:10:19 +01:00
|
|
|
uint8_t *out_len, const uint8_t *in,
|
|
|
|
unsigned in_len, void *arg),
|
2014-12-19 01:42:32 +00:00
|
|
|
void *arg) {
|
|
|
|
ctx->alpn_select_cb = cb;
|
2015-09-13 05:54:37 +01:00
|
|
|
ctx->alpn_select_cb_arg = arg;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-09-16 05:10:19 +01:00
|
|
|
void SSL_get0_alpn_selected(const SSL *ssl, const uint8_t **out_data,
|
|
|
|
unsigned *out_len) {
|
2017-03-09 19:56:07 +00:00
|
|
|
if (SSL_in_early_data(ssl) && !ssl->server) {
|
Give SSL_SESSION a destructor.
Previously we'd partially attempted the ssl_st / bssl::SSLConnection
subclassing split, but that gets messy when we actually try to add a
destructor, because CRYPTO_EX_DATA's cleanup function needs an ssl_st*,
not a bssl::SSLConnection*. Downcasting is technically undefined at this
point and will likely offend some CFI-like check.
Moreover, it appears that even with today's subclassing split,
New<SSL>() emits symbols like:
W ssl_st*& std::forward<ssl_st*&>(std::remove_reference<ssl_st*&>::type&)
The compiler does not bother emitting them in optimized builds, but it
does suggest we can't really avoid claiming the ssl_st type name at the
symbol level, short of doing reinterpret_casts at all API boundaries.
And, of course, we've already long claimed it at the #include level.
So I've just left this defining directly on ssl_session_st. The cost is
we need to write some silly "bssl::" prefixes in the headers, but so it
goes. In the likely event we change our minds again, we can always
revise this.
Change-Id: Ieb429e8eaabe7c2961ef7f8d9234fb71f19a5e2a
Reviewed-on: https://boringssl-review.googlesource.com/29587
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: Adam Langley <agl@google.com>
2018-06-29 21:26:38 +01:00
|
|
|
*out_data = ssl->s3->hs->early_session->early_alpn.data();
|
|
|
|
*out_len = ssl->s3->hs->early_session->early_alpn.size();
|
2015-09-13 05:54:37 +01:00
|
|
|
} else {
|
2017-10-13 22:18:35 +01:00
|
|
|
*out_data = ssl->s3->alpn_selected.data();
|
|
|
|
*out_len = ssl->s3->alpn_selected.size();
|
2015-09-13 05:54:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 18:52:36 +01:00
|
|
|
void SSL_CTX_set_allow_unknown_alpn_protos(SSL_CTX *ctx, int enabled) {
|
|
|
|
ctx->allow_unknown_alpn_protos = !!enabled;
|
|
|
|
}
|
2016-06-08 00:09:22 +01:00
|
|
|
|
2018-07-03 16:04:58 +01:00
|
|
|
int SSL_CTX_add_cert_compression_alg(SSL_CTX *ctx, uint16_t alg_id,
|
|
|
|
ssl_cert_compression_func_t compress,
|
|
|
|
ssl_cert_decompression_func_t decompress) {
|
|
|
|
assert(compress != nullptr || decompress != nullptr);
|
|
|
|
|
2018-07-14 22:04:41 +01:00
|
|
|
for (const auto *alg : ctx->cert_compression_algs.get()) {
|
2018-07-03 16:04:58 +01:00
|
|
|
if (alg->alg_id == alg_id) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-14 22:04:41 +01:00
|
|
|
UniquePtr<CertCompressionAlg> alg = MakeUnique<CertCompressionAlg>();
|
2018-07-03 16:04:58 +01:00
|
|
|
if (alg == nullptr) {
|
2018-07-14 22:04:41 +01:00
|
|
|
return 0;
|
2018-07-03 16:04:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
alg->alg_id = alg_id;
|
|
|
|
alg->compress = compress;
|
|
|
|
alg->decompress = decompress;
|
|
|
|
|
|
|
|
if (ctx->cert_compression_algs == nullptr) {
|
2018-07-14 22:04:41 +01:00
|
|
|
ctx->cert_compression_algs.reset(sk_CertCompressionAlg_new_null());
|
2018-07-03 16:04:58 +01:00
|
|
|
if (ctx->cert_compression_algs == nullptr) {
|
2018-07-14 22:04:41 +01:00
|
|
|
return 0;
|
2018-07-03 16:04:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-14 22:04:41 +01:00
|
|
|
if (!PushToStack(ctx->cert_compression_algs.get(), std::move(alg))) {
|
|
|
|
if (sk_CertCompressionAlg_num(ctx->cert_compression_algs.get()) == 0) {
|
|
|
|
ctx->cert_compression_algs.reset();
|
|
|
|
}
|
2018-07-17 05:38:32 +01:00
|
|
|
return 0;
|
2018-07-03 16:04:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-12-06 22:43:58 +00:00
|
|
|
void SSL_CTX_set_tls_channel_id_enabled(SSL_CTX *ctx, int enabled) {
|
2018-07-03 19:01:26 +01:00
|
|
|
ctx->channel_id_enabled = !!enabled;
|
2016-12-06 22:43:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-08 00:09:22 +01:00
|
|
|
int SSL_CTX_enable_tls_channel_id(SSL_CTX *ctx) {
|
2016-12-06 22:43:58 +00:00
|
|
|
SSL_CTX_set_tls_channel_id_enabled(ctx, 1);
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-12-06 22:43:58 +00:00
|
|
|
void SSL_set_tls_channel_id_enabled(SSL *ssl, int enabled) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-03 19:01:26 +01:00
|
|
|
ssl->config->channel_id_enabled = !!enabled;
|
2016-12-06 22:43:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-08 00:09:22 +01:00
|
|
|
int SSL_enable_tls_channel_id(SSL *ssl) {
|
2016-12-06 22:43:58 +00:00
|
|
|
SSL_set_tls_channel_id_enabled(ssl, 1);
|
2016-06-08 00:09:22 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int is_p256_key(EVP_PKEY *private_key) {
|
|
|
|
const EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(private_key);
|
|
|
|
return ec_key != NULL &&
|
|
|
|
EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)) ==
|
|
|
|
NID_X9_62_prime256v1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set1_tls_channel_id(SSL_CTX *ctx, EVP_PKEY *private_key) {
|
|
|
|
if (!is_p256_key(private_key)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-07-03 19:01:26 +01:00
|
|
|
ctx->channel_id_private = UpRef(private_key);
|
|
|
|
ctx->channel_id_enabled = true;
|
2016-06-08 00:09:22 +01:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set1_tls_channel_id(SSL *ssl, EVP_PKEY *private_key) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
2016-06-08 00:09:22 +01:00
|
|
|
if (!is_p256_key(private_key)) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-07-03 19:01:26 +01:00
|
|
|
ssl->config->channel_id_private = UpRef(private_key);
|
|
|
|
ssl->config->channel_id_enabled = true;
|
2016-06-08 00:09:22 +01:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out, size_t max_out) {
|
2018-07-03 19:01:26 +01:00
|
|
|
if (!ssl->s3->channel_id_valid) {
|
2016-06-08 00:09:22 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2018-07-03 19:01:26 +01:00
|
|
|
OPENSSL_memcpy(out, ssl->s3->channel_id, (max_out < 64) ? max_out : 64);
|
2016-06-08 00:09:22 +01:00
|
|
|
return 64;
|
|
|
|
}
|
|
|
|
|
2017-09-21 23:02:22 +01:00
|
|
|
int SSL_set_token_binding_params(SSL *ssl, const uint8_t *params, size_t len) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-09-21 23:02:22 +01:00
|
|
|
if (len > 256) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-03 01:24:40 +01:00
|
|
|
return ssl->config->token_binding_params.CopyFrom(MakeConstSpan(params, len));
|
2017-09-21 23:02:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_is_token_binding_negotiated(const SSL *ssl) {
|
2018-04-12 20:36:30 +01:00
|
|
|
return ssl->s3->token_binding_negotiated;
|
2017-09-21 23:02:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t SSL_get_negotiated_token_binding_param(const SSL *ssl) {
|
2018-04-12 20:36:30 +01:00
|
|
|
return ssl->s3->negotiated_token_binding_param;
|
2017-09-21 23:02:22 +01:00
|
|
|
}
|
|
|
|
|
2018-07-10 22:27:45 +01:00
|
|
|
size_t SSL_get0_certificate_types(const SSL *ssl, const uint8_t **out_types) {
|
|
|
|
Span<const uint8_t> types;
|
|
|
|
if (!ssl->server && ssl->s3->hs != nullptr) {
|
|
|
|
types = ssl->s3->hs->certificate_types;
|
|
|
|
}
|
|
|
|
*out_types = types.data();
|
|
|
|
return types.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t SSL_get0_peer_verify_algorithms(const SSL *ssl,
|
|
|
|
const uint16_t **out_sigalgs) {
|
|
|
|
Span<const uint16_t> sigalgs;
|
|
|
|
if (ssl->s3->hs != nullptr) {
|
|
|
|
sigalgs = ssl->s3->hs->peer_sigalgs;
|
2016-06-08 00:09:22 +01:00
|
|
|
}
|
2018-07-10 22:27:45 +01:00
|
|
|
*out_sigalgs = sigalgs.data();
|
|
|
|
return sigalgs.size();
|
2016-06-08 00:09:22 +01:00
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
EVP_PKEY *SSL_get_privatekey(const SSL *ssl) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
assert(ssl->config);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (ssl->config->cert != NULL) {
|
|
|
|
return ssl->config->cert->privatekey.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx) {
|
|
|
|
if (ctx->cert != NULL) {
|
2018-04-12 21:11:15 +01:00
|
|
|
return ctx->cert->privatekey.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-09-19 06:22:44 +01:00
|
|
|
const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl) {
|
2017-07-19 03:45:18 +01:00
|
|
|
return ssl->s3->aead_write_ctx->cipher();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-06-08 00:09:22 +01:00
|
|
|
int SSL_session_reused(const SSL *ssl) {
|
2017-03-09 19:56:07 +00:00
|
|
|
return ssl->s3->session_reused || SSL_in_early_data(ssl);
|
2016-06-08 00:09:22 +01:00
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
const COMP_METHOD *SSL_get_current_compression(SSL *ssl) { return NULL; }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
const COMP_METHOD *SSL_get_current_expansion(SSL *ssl) { return NULL; }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-05-11 00:55:02 +01:00
|
|
|
int SSL_get_server_tmp_key(SSL *ssl, EVP_PKEY **out_key) { return 0; }
|
2016-03-02 00:12:28 +00:00
|
|
|
|
2014-12-19 01:42:32 +00:00
|
|
|
void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode) {
|
2015-10-29 01:44:11 +00:00
|
|
|
ctx->quiet_shutdown = (mode != 0);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx) {
|
|
|
|
return ctx->quiet_shutdown;
|
|
|
|
}
|
|
|
|
|
2015-10-29 01:44:11 +00:00
|
|
|
void SSL_set_quiet_shutdown(SSL *ssl, int mode) {
|
|
|
|
ssl->quiet_shutdown = (mode != 0);
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-10-03 15:44:30 +01:00
|
|
|
int SSL_get_quiet_shutdown(const SSL *ssl) { return ssl->quiet_shutdown; }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-10-18 05:00:06 +01:00
|
|
|
void SSL_set_shutdown(SSL *ssl, int mode) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// It is an error to clear any bits that have already been set. (We can't try
|
|
|
|
// to get a second close_notify or send two.)
|
2016-05-10 22:03:10 +01:00
|
|
|
assert((SSL_get_shutdown(ssl) & mode) == SSL_get_shutdown(ssl));
|
|
|
|
|
|
|
|
if (mode & SSL_RECEIVED_SHUTDOWN &&
|
2017-10-06 21:02:47 +01:00
|
|
|
ssl->s3->read_shutdown == ssl_shutdown_none) {
|
|
|
|
ssl->s3->read_shutdown = ssl_shutdown_close_notify;
|
2016-05-10 22:03:10 +01:00
|
|
|
}
|
2015-10-18 05:00:06 +01:00
|
|
|
|
2016-05-10 22:03:10 +01:00
|
|
|
if (mode & SSL_SENT_SHUTDOWN &&
|
2017-10-06 21:02:47 +01:00
|
|
|
ssl->s3->write_shutdown == ssl_shutdown_none) {
|
|
|
|
ssl->s3->write_shutdown = ssl_shutdown_close_notify;
|
2016-05-10 22:03:10 +01:00
|
|
|
}
|
2015-10-18 05:00:06 +01:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-05-10 22:03:10 +01:00
|
|
|
int SSL_get_shutdown(const SSL *ssl) {
|
|
|
|
int ret = 0;
|
2017-10-06 21:02:47 +01:00
|
|
|
if (ssl->s3->read_shutdown != ssl_shutdown_none) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Historically, OpenSSL set |SSL_RECEIVED_SHUTDOWN| on both close_notify
|
|
|
|
// and fatal alert.
|
2016-05-10 22:03:10 +01:00
|
|
|
ret |= SSL_RECEIVED_SHUTDOWN;
|
|
|
|
}
|
2017-10-06 21:02:47 +01:00
|
|
|
if (ssl->s3->write_shutdown == ssl_shutdown_close_notify) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Historically, OpenSSL set |SSL_SENT_SHUTDOWN| on only close_notify.
|
2016-05-10 22:03:10 +01:00
|
|
|
ret |= SSL_SENT_SHUTDOWN;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-07-03 00:47:27 +01:00
|
|
|
SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl) { return ssl->ctx.get(); }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-07-03 00:47:27 +01:00
|
|
|
if (ssl->ctx.get() == ctx) {
|
|
|
|
return ssl->ctx.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// One cannot change the X.509 callbacks during a connection.
|
2017-02-01 19:59:18 +00:00
|
|
|
if (ssl->ctx->x509_method != ctx->x509_method) {
|
|
|
|
assert(0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-07-03 01:24:40 +01:00
|
|
|
UniquePtr<CERT> new_cert = ssl_cert_dup(ctx->cert.get());
|
|
|
|
if (!new_cert) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-04-22 21:17:58 +01:00
|
|
|
|
2018-07-03 01:24:40 +01:00
|
|
|
ssl->config->cert = std::move(new_cert);
|
2018-07-03 00:47:27 +01:00
|
|
|
ssl->ctx = UpRef(ctx);
|
2018-04-13 23:51:30 +01:00
|
|
|
ssl->enable_early_data = ssl->ctx->enable_early_data;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2018-07-03 00:47:27 +01:00
|
|
|
return ssl->ctx.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_set_info_callback(SSL *ssl,
|
2015-10-18 03:51:17 +01:00
|
|
|
void (*cb)(const SSL *ssl, int type, int value)) {
|
2014-12-19 01:42:32 +00:00
|
|
|
ssl->info_callback = cb;
|
|
|
|
}
|
|
|
|
|
2015-10-18 03:51:17 +01:00
|
|
|
void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl, int type,
|
|
|
|
int value) {
|
2014-12-19 01:42:32 +00:00
|
|
|
return ssl->info_callback;
|
|
|
|
}
|
|
|
|
|
2016-12-12 22:00:50 +00:00
|
|
|
int SSL_state(const SSL *ssl) {
|
2017-02-11 04:14:17 +00:00
|
|
|
return SSL_in_init(ssl) ? SSL_ST_INIT : SSL_ST_OK;
|
2016-12-12 22:00:50 +00:00
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-05-16 04:52:42 +01:00
|
|
|
void SSL_set_state(SSL *ssl, int state) { }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-02-26 05:12:28 +00:00
|
|
|
char *SSL_get_shared_ciphers(const SSL *ssl, char *buf, int len) {
|
|
|
|
if (len <= 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
buf[0] = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2015-12-05 04:14:35 +00:00
|
|
|
int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused,
|
2017-05-14 22:10:18 +01:00
|
|
|
CRYPTO_EX_dup *dup_unused, CRYPTO_EX_free *free_func) {
|
2015-04-15 22:29:53 +01:00
|
|
|
int index;
|
|
|
|
if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl, &index, argl, argp,
|
2017-05-14 22:10:18 +01:00
|
|
|
free_func)) {
|
2015-04-15 22:29:53 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return index;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 00:09:42 +01:00
|
|
|
int SSL_set_ex_data(SSL *ssl, int idx, void *data) {
|
|
|
|
return CRYPTO_set_ex_data(&ssl->ex_data, idx, data);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 06:36:22 +01:00
|
|
|
void *SSL_get_ex_data(const SSL *ssl, int idx) {
|
|
|
|
return CRYPTO_get_ex_data(&ssl->ex_data, idx);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-12-05 04:14:35 +00:00
|
|
|
int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused,
|
2017-05-14 22:10:18 +01:00
|
|
|
CRYPTO_EX_dup *dup_unused,
|
2014-12-19 01:42:32 +00:00
|
|
|
CRYPTO_EX_free *free_func) {
|
2015-04-15 22:29:53 +01:00
|
|
|
int index;
|
|
|
|
if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl_ctx, &index, argl, argp,
|
2017-05-14 22:10:18 +01:00
|
|
|
free_func)) {
|
2015-04-15 22:29:53 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return index;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 00:09:42 +01:00
|
|
|
int SSL_CTX_set_ex_data(SSL_CTX *ctx, int idx, void *data) {
|
|
|
|
return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 06:36:22 +01:00
|
|
|
void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx) {
|
|
|
|
return CRYPTO_get_ex_data(&ctx->ex_data, idx);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2017-10-14 00:17:22 +01:00
|
|
|
int SSL_want(const SSL *ssl) { return ssl->s3->rwstate; }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,
|
|
|
|
RSA *(*cb)(SSL *ssl, int is_export,
|
2017-08-01 00:09:42 +01:00
|
|
|
int keylength)) {}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb)(SSL *ssl, int is_export,
|
2017-08-01 00:09:42 +01:00
|
|
|
int keylength)) {}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
|
2017-08-01 00:09:42 +01:00
|
|
|
DH *(*cb)(SSL *ssl, int is_export,
|
|
|
|
int keylength)) {}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2017-08-01 00:09:42 +01:00
|
|
|
void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*cb)(SSL *ssl, int is_export,
|
|
|
|
int keylength)) {}
|
2016-06-30 19:55:33 +01:00
|
|
|
|
2018-07-03 01:24:40 +01:00
|
|
|
static int use_psk_identity_hint(UniquePtr<char> *out,
|
|
|
|
const char *identity_hint) {
|
2014-12-19 01:42:32 +00:00
|
|
|
if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_DATA_LENGTH_TOO_LONG);
|
2014-12-19 01:42:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Clear currently configured hint, if any.
|
2018-07-03 01:24:40 +01:00
|
|
|
out->reset();
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// Treat the empty hint as not supplying one. Plain PSK makes it possible to
|
|
|
|
// send either no hint (omit ServerKeyExchange) or an empty hint, while
|
|
|
|
// ECDHE_PSK can only spell empty hint. Having different capabilities is odd,
|
|
|
|
// so we interpret empty and missing as identical.
|
2016-09-17 00:42:05 +01:00
|
|
|
if (identity_hint != NULL && identity_hint[0] != '\0') {
|
2018-07-03 01:24:40 +01:00
|
|
|
out->reset(BUF_strdup(identity_hint));
|
|
|
|
if (*out == nullptr) {
|
2014-12-19 01:42:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-06-21 21:34:15 +01:00
|
|
|
int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) {
|
|
|
|
return use_psk_identity_hint(&ctx->psk_identity_hint, identity_hint);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return use_psk_identity_hint(&ssl->config->psk_identity_hint, identity_hint);
|
2017-06-21 21:34:15 +01:00
|
|
|
}
|
|
|
|
|
2015-09-15 13:05:54 +01:00
|
|
|
const char *SSL_get_psk_identity_hint(const SSL *ssl) {
|
|
|
|
if (ssl == NULL) {
|
2014-12-19 01:42:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-04-13 23:51:30 +01:00
|
|
|
if (ssl->config == NULL) {
|
|
|
|
assert(ssl->config);
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-07-03 01:24:40 +01:00
|
|
|
return ssl->config->psk_identity_hint.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-09-15 13:05:54 +01:00
|
|
|
const char *SSL_get_psk_identity(const SSL *ssl) {
|
2016-06-27 21:34:59 +01:00
|
|
|
if (ssl == NULL) {
|
2014-12-19 01:42:32 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2016-06-27 21:34:59 +01:00
|
|
|
SSL_SESSION *session = SSL_get_session(ssl);
|
|
|
|
if (session == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
Give SSL_SESSION a destructor.
Previously we'd partially attempted the ssl_st / bssl::SSLConnection
subclassing split, but that gets messy when we actually try to add a
destructor, because CRYPTO_EX_DATA's cleanup function needs an ssl_st*,
not a bssl::SSLConnection*. Downcasting is technically undefined at this
point and will likely offend some CFI-like check.
Moreover, it appears that even with today's subclassing split,
New<SSL>() emits symbols like:
W ssl_st*& std::forward<ssl_st*&>(std::remove_reference<ssl_st*&>::type&)
The compiler does not bother emitting them in optimized builds, but it
does suggest we can't really avoid claiming the ssl_st type name at the
symbol level, short of doing reinterpret_casts at all API boundaries.
And, of course, we've already long claimed it at the #include level.
So I've just left this defining directly on ssl_session_st. The cost is
we need to write some silly "bssl::" prefixes in the headers, but so it
goes. In the likely event we change our minds again, we can always
revise this.
Change-Id: Ieb429e8eaabe7c2961ef7f8d9234fb71f19a5e2a
Reviewed-on: https://boringssl-review.googlesource.com/29587
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: Adam Langley <agl@google.com>
2018-06-29 21:26:38 +01:00
|
|
|
return session->psk_identity.get();
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_set_psk_client_callback(
|
2015-09-15 13:05:54 +01:00
|
|
|
SSL *ssl, unsigned (*cb)(SSL *ssl, const char *hint, char *identity,
|
|
|
|
unsigned max_identity_len, uint8_t *psk,
|
|
|
|
unsigned max_psk_len)) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->psk_client_callback = cb;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_set_psk_client_callback(
|
2015-09-15 13:05:54 +01:00
|
|
|
SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *hint, char *identity,
|
|
|
|
unsigned max_identity_len, uint8_t *psk,
|
|
|
|
unsigned max_psk_len)) {
|
2014-12-19 01:42:32 +00:00
|
|
|
ctx->psk_client_callback = cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_set_psk_server_callback(
|
2015-09-15 13:05:54 +01:00
|
|
|
SSL *ssl, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk,
|
|
|
|
unsigned max_psk_len)) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->psk_server_callback = cb;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_set_psk_server_callback(
|
2015-09-15 13:05:54 +01:00
|
|
|
SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *identity,
|
|
|
|
uint8_t *psk, unsigned max_psk_len)) {
|
2014-12-19 01:42:32 +00:00
|
|
|
ctx->psk_server_callback = cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
|
|
|
|
void (*cb)(int write_p, int version,
|
|
|
|
int content_type, const void *buf,
|
|
|
|
size_t len, SSL *ssl, void *arg)) {
|
2015-04-26 18:13:55 +01:00
|
|
|
ctx->msg_callback = cb;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2015-05-05 14:44:51 +01:00
|
|
|
|
|
|
|
void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg) {
|
|
|
|
ctx->msg_callback_arg = arg;
|
|
|
|
}
|
|
|
|
|
2014-12-19 01:42:32 +00:00
|
|
|
void SSL_set_msg_callback(SSL *ssl,
|
|
|
|
void (*cb)(int write_p, int version, int content_type,
|
|
|
|
const void *buf, size_t len, SSL *ssl,
|
|
|
|
void *arg)) {
|
2015-04-26 18:13:55 +01:00
|
|
|
ssl->msg_callback = cb;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-05-05 14:44:51 +01:00
|
|
|
void SSL_set_msg_callback_arg(SSL *ssl, void *arg) {
|
|
|
|
ssl->msg_callback_arg = arg;
|
|
|
|
}
|
|
|
|
|
2015-11-18 03:32:50 +00:00
|
|
|
void SSL_CTX_set_keylog_callback(SSL_CTX *ctx,
|
|
|
|
void (*cb)(const SSL *ssl, const char *line)) {
|
|
|
|
ctx->keylog_callback = cb;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-09-14 19:43:14 +01:00
|
|
|
void (*SSL_CTX_get_keylog_callback(const SSL_CTX *ctx))(const SSL *ssl,
|
|
|
|
const char *line) {
|
|
|
|
return ctx->keylog_callback;
|
|
|
|
}
|
|
|
|
|
2016-06-08 23:26:59 +01:00
|
|
|
void SSL_CTX_set_current_time_cb(SSL_CTX *ctx,
|
|
|
|
void (*cb)(const SSL *ssl,
|
|
|
|
struct timeval *out_clock)) {
|
|
|
|
ctx->current_time_cb = cb;
|
|
|
|
}
|
|
|
|
|
2015-10-18 04:26:35 +01:00
|
|
|
int SSL_is_init_finished(const SSL *ssl) {
|
2017-02-11 04:14:17 +00:00
|
|
|
return !SSL_in_init(ssl);
|
2015-10-18 04:26:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_in_init(const SSL *ssl) {
|
2017-08-31 15:15:48 +01:00
|
|
|
// This returns false once all the handshake state has been finalized, to
|
|
|
|
// allow callbacks and getters based on SSL_in_init to return the correct
|
|
|
|
// values.
|
2017-10-13 22:18:35 +01:00
|
|
|
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
2017-08-31 15:15:48 +01:00
|
|
|
return hs != nullptr && !hs->handshake_finalized;
|
2015-10-18 04:26:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_in_false_start(const SSL *ssl) {
|
2016-10-07 00:11:32 +01:00
|
|
|
if (ssl->s3->hs == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return ssl->s3->hs->in_false_start;
|
2015-02-17 00:16:46 +00:00
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
int SSL_cutthrough_complete(const SSL *ssl) {
|
|
|
|
return SSL_in_false_start(ssl);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SSL_get_structure_sizes(size_t *ssl_size, size_t *ssl_ctx_size,
|
|
|
|
size_t *ssl_session_size) {
|
|
|
|
*ssl_size = sizeof(SSL);
|
|
|
|
*ssl_ctx_size = sizeof(SSL_CTX);
|
|
|
|
*ssl_session_size = sizeof(SSL_SESSION);
|
|
|
|
}
|
|
|
|
|
2016-08-02 21:22:34 +01:00
|
|
|
int SSL_is_server(const SSL *ssl) { return ssl->server; }
|
|
|
|
|
|
|
|
int SSL_is_dtls(const SSL *ssl) { return ssl->method->is_dtls; }
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2017-03-14 23:36:00 +00:00
|
|
|
void SSL_CTX_set_select_certificate_cb(
|
|
|
|
SSL_CTX *ctx,
|
|
|
|
enum ssl_select_cert_result_t (*cb)(const SSL_CLIENT_HELLO *)) {
|
2015-10-17 17:28:18 +01:00
|
|
|
ctx->select_certificate_cb = cb;
|
|
|
|
}
|
|
|
|
|
2016-12-04 04:15:13 +00:00
|
|
|
void SSL_CTX_set_dos_protection_cb(SSL_CTX *ctx,
|
|
|
|
int (*cb)(const SSL_CLIENT_HELLO *)) {
|
2015-02-21 00:04:00 +00:00
|
|
|
ctx->dos_protection_cb = cb;
|
|
|
|
}
|
|
|
|
|
2018-08-10 18:28:47 +01:00
|
|
|
void SSL_CTX_set_reverify_on_resume(SSL_CTX *ctx, int enabled) {
|
|
|
|
ctx->reverify_on_resume = !!enabled;
|
|
|
|
}
|
|
|
|
|
2015-10-13 00:54:18 +01:00
|
|
|
void SSL_set_renegotiate_mode(SSL *ssl, enum ssl_renegotiate_mode_t mode) {
|
|
|
|
ssl->renegotiate_mode = mode;
|
2018-05-01 22:14:27 +01:00
|
|
|
|
|
|
|
// Check if |ssl_can_renegotiate| has changed and the configuration may now be
|
|
|
|
// shed. HTTP clients may initially allow renegotiation for HTTP/1.1, and then
|
|
|
|
// disable after the handshake once the ALPN protocol is known to be HTTP/2.
|
|
|
|
ssl_maybe_shed_handshake_config(ssl);
|
2015-10-13 00:54:18 +01:00
|
|
|
}
|
|
|
|
|
2015-11-04 02:36:10 +00:00
|
|
|
int SSL_get_ivs(const SSL *ssl, const uint8_t **out_read_iv,
|
|
|
|
const uint8_t **out_write_iv, size_t *out_iv_len) {
|
|
|
|
size_t write_iv_len;
|
2017-07-19 03:45:18 +01:00
|
|
|
if (!ssl->s3->aead_read_ctx->GetIV(out_read_iv, out_iv_len) ||
|
|
|
|
!ssl->s3->aead_write_ctx->GetIV(out_write_iv, &write_iv_len) ||
|
2015-11-04 02:36:10 +00:00
|
|
|
*out_iv_len != write_iv_len) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2015-11-06 22:55:30 +00:00
|
|
|
}
|
2015-11-02 17:02:20 +00:00
|
|
|
|
2016-01-21 21:39:58 +00:00
|
|
|
static uint64_t be_to_u64(const uint8_t in[8]) {
|
2016-02-11 17:02:01 +00:00
|
|
|
return (((uint64_t)in[0]) << 56) | (((uint64_t)in[1]) << 48) |
|
|
|
|
(((uint64_t)in[2]) << 40) | (((uint64_t)in[3]) << 32) |
|
|
|
|
(((uint64_t)in[4]) << 24) | (((uint64_t)in[5]) << 16) |
|
|
|
|
(((uint64_t)in[6]) << 8) | ((uint64_t)in[7]);
|
2016-01-21 21:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t SSL_get_read_sequence(const SSL *ssl) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(davidben): Internally represent sequence numbers as uint64_t.
|
2016-08-02 21:22:34 +01:00
|
|
|
if (SSL_is_dtls(ssl)) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// max_seq_num already includes the epoch.
|
2016-02-11 17:02:01 +00:00
|
|
|
assert(ssl->d1->r_epoch == (ssl->d1->bitmap.max_seq_num >> 48));
|
|
|
|
return ssl->d1->bitmap.max_seq_num;
|
|
|
|
}
|
2016-01-21 21:39:58 +00:00
|
|
|
return be_to_u64(ssl->s3->read_sequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t SSL_get_write_sequence(const SSL *ssl) {
|
2016-02-11 17:02:01 +00:00
|
|
|
uint64_t ret = be_to_u64(ssl->s3->write_sequence);
|
2016-08-02 21:22:34 +01:00
|
|
|
if (SSL_is_dtls(ssl)) {
|
2016-02-11 17:02:01 +00:00
|
|
|
assert((ret >> 48) == 0);
|
|
|
|
ret |= ((uint64_t)ssl->d1->w_epoch) << 48;
|
|
|
|
}
|
|
|
|
return ret;
|
2016-01-21 21:39:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 18:33:05 +01:00
|
|
|
uint16_t SSL_get_peer_signature_algorithm(const SSL *ssl) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// TODO(davidben): This checks the wrong session if there is a renegotiation
|
|
|
|
// in progress.
|
2016-12-14 01:05:36 +00:00
|
|
|
SSL_SESSION *session = SSL_get_session(ssl);
|
|
|
|
if (session == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return session->peer_signature_algorithm;
|
2016-06-23 18:33:05 +01:00
|
|
|
}
|
|
|
|
|
2015-12-25 19:10:17 +00:00
|
|
|
size_t SSL_get_client_random(const SSL *ssl, uint8_t *out, size_t max_out) {
|
|
|
|
if (max_out == 0) {
|
|
|
|
return sizeof(ssl->s3->client_random);
|
|
|
|
}
|
|
|
|
if (max_out > sizeof(ssl->s3->client_random)) {
|
|
|
|
max_out = sizeof(ssl->s3->client_random);
|
|
|
|
}
|
2016-12-13 06:07:13 +00:00
|
|
|
OPENSSL_memcpy(out, ssl->s3->client_random, max_out);
|
2015-12-25 19:10:17 +00:00
|
|
|
return max_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t SSL_get_server_random(const SSL *ssl, uint8_t *out, size_t max_out) {
|
|
|
|
if (max_out == 0) {
|
|
|
|
return sizeof(ssl->s3->server_random);
|
|
|
|
}
|
|
|
|
if (max_out > sizeof(ssl->s3->server_random)) {
|
|
|
|
max_out = sizeof(ssl->s3->server_random);
|
|
|
|
}
|
2016-12-13 06:07:13 +00:00
|
|
|
OPENSSL_memcpy(out, ssl->s3->server_random, max_out);
|
2015-12-25 19:10:17 +00:00
|
|
|
return max_out;
|
|
|
|
}
|
|
|
|
|
2016-01-07 20:37:41 +00:00
|
|
|
const SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl) {
|
2017-10-13 22:18:35 +01:00
|
|
|
SSL_HANDSHAKE *hs = ssl->s3->hs.get();
|
2017-02-10 01:01:26 +00:00
|
|
|
if (hs == NULL) {
|
2016-01-07 20:37:41 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2017-02-10 01:01:26 +00:00
|
|
|
return hs->new_cipher;
|
2016-01-07 20:37:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-17 01:53:09 +00:00
|
|
|
void SSL_set_retain_only_sha256_of_client_certs(SSL *ssl, int enabled) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->retain_only_sha256_of_client_certs = !!enabled;
|
2016-11-17 01:53:09 +00:00
|
|
|
}
|
|
|
|
|
2016-01-07 18:10:41 +00:00
|
|
|
void SSL_CTX_set_retain_only_sha256_of_client_certs(SSL_CTX *ctx, int enabled) {
|
|
|
|
ctx->retain_only_sha256_of_client_certs = !!enabled;
|
|
|
|
}
|
|
|
|
|
2016-09-03 02:35:25 +01:00
|
|
|
void SSL_CTX_set_grease_enabled(SSL_CTX *ctx, int enabled) {
|
|
|
|
ctx->grease_enabled = !!enabled;
|
|
|
|
}
|
|
|
|
|
2017-03-03 20:05:56 +00:00
|
|
|
int32_t SSL_get_ticket_age_skew(const SSL *ssl) {
|
|
|
|
return ssl->s3->ticket_age_skew;
|
|
|
|
}
|
|
|
|
|
2017-12-01 18:05:12 +00:00
|
|
|
void SSL_CTX_set_false_start_allowed_without_alpn(SSL_CTX *ctx, int allowed) {
|
|
|
|
ctx->false_start_allowed_without_alpn = !!allowed;
|
|
|
|
}
|
|
|
|
|
2018-08-13 15:54:48 +01:00
|
|
|
int SSL_is_tls13_downgrade(const SSL *ssl) { return ssl->s3->tls13_downgrade; }
|
|
|
|
|
|
|
|
void SSL_CTX_set_ignore_tls13_downgrade(SSL_CTX *ctx, int ignore) {
|
|
|
|
ctx->ignore_tls13_downgrade = !!ignore;
|
|
|
|
}
|
2017-12-18 23:00:23 +00:00
|
|
|
|
2018-04-13 23:51:30 +01:00
|
|
|
void SSL_set_shed_handshake_config(SSL *ssl, int enable) {
|
|
|
|
if (!ssl->config) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ssl->config->shed_handshake_config = !!enable;
|
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
int SSL_clear(SSL *ssl) {
|
2018-04-13 23:51:30 +01:00
|
|
|
if (!ssl->config) {
|
|
|
|
return 0; // SSL_clear may not be used after shedding config.
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// In OpenSSL, reusing a client |SSL| with |SSL_clear| causes the previously
|
|
|
|
// established session to be offered the next time around. wpa_supplicant
|
|
|
|
// depends on this behavior, so emulate it.
|
2017-10-13 22:18:35 +01:00
|
|
|
UniquePtr<SSL_SESSION> session;
|
2016-12-07 20:57:14 +00:00
|
|
|
if (!ssl->server && ssl->s3->established_session != NULL) {
|
2018-06-29 22:46:42 +01:00
|
|
|
session = UpRef(ssl->s3->established_session);
|
2016-12-07 20:57:14 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// The ssl->d1->mtu is simultaneously configuration (preserved across
|
|
|
|
// clear) and connection-specific state (gets reset).
|
|
|
|
//
|
|
|
|
// TODO(davidben): Avoid this.
|
2015-09-13 05:54:37 +01:00
|
|
|
unsigned mtu = 0;
|
|
|
|
if (ssl->d1 != NULL) {
|
|
|
|
mtu = ssl->d1->mtu;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->method->ssl_free(ssl);
|
|
|
|
if (!ssl->method->ssl_new(ssl)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-08-02 21:22:34 +01:00
|
|
|
if (SSL_is_dtls(ssl) && (SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) {
|
2015-09-13 05:54:37 +01:00
|
|
|
ssl->d1->mtu = mtu;
|
|
|
|
}
|
|
|
|
|
2017-10-13 22:18:35 +01:00
|
|
|
if (session != nullptr) {
|
|
|
|
SSL_set_session(ssl, session.get());
|
2016-12-07 20:57:14 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 05:54:37 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-04-26 19:45:04 +01:00
|
|
|
int SSL_CTX_sess_connect(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_connect_good(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_accept(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_accept_good(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_hits(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_misses(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_timeouts(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_CTX_sess_cache_full(const SSL_CTX *ctx) { return 0; }
|
2016-06-08 00:09:22 +01:00
|
|
|
|
|
|
|
int SSL_num_renegotiations(const SSL *ssl) {
|
|
|
|
return SSL_total_renegotiations(ssl);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx) { return 0; }
|
|
|
|
int SSL_need_tmp_RSA(const SSL *ssl) { return 0; }
|
|
|
|
int SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, const RSA *rsa) { return 1; }
|
|
|
|
int SSL_set_tmp_rsa(SSL *ssl, const RSA *rsa) { return 1; }
|
2015-08-20 21:20:03 +01:00
|
|
|
void ERR_load_SSL_strings(void) {}
|
2015-09-13 05:54:37 +01:00
|
|
|
void SSL_load_error_strings(void) {}
|
2016-06-08 00:09:22 +01:00
|
|
|
int SSL_cache_hit(SSL *ssl) { return SSL_session_reused(ssl); }
|
|
|
|
|
|
|
|
int SSL_CTX_set_tmp_ecdh(SSL_CTX *ctx, const EC_KEY *ec_key) {
|
|
|
|
if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key));
|
|
|
|
return SSL_CTX_set1_curves(ctx, &nid, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set_tmp_ecdh(SSL *ssl, const EC_KEY *ec_key) {
|
|
|
|
if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key));
|
|
|
|
return SSL_set1_curves(ssl, &nid, 1);
|
|
|
|
}
|
2016-08-03 18:13:17 +01:00
|
|
|
|
2017-03-09 03:33:21 +00:00
|
|
|
void SSL_CTX_set_ticket_aead_method(SSL_CTX *ctx,
|
|
|
|
const SSL_TICKET_AEAD_METHOD *aead_method) {
|
|
|
|
ctx->ticket_aead_method = aead_method;
|
|
|
|
}
|
2018-05-11 00:55:02 +01:00
|
|
|
|
|
|
|
int SSL_set_tlsext_status_type(SSL *ssl, int type) {
|
|
|
|
if (!ssl->config) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ssl->config->ocsp_stapling_enabled = type == TLSEXT_STATUSTYPE_ocsp;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_set_tlsext_status_ocsp_resp(SSL *ssl, uint8_t *resp, size_t resp_len) {
|
|
|
|
if (SSL_set_ocsp_response(ssl, resp, resp_len)) {
|
|
|
|
OPENSSL_free(resp);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t SSL_get_tlsext_status_ocsp_resp(const SSL *ssl, const uint8_t **out) {
|
|
|
|
size_t ret;
|
|
|
|
SSL_get0_ocsp_response(ssl, out, &ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_tlsext_status_cb(SSL_CTX *ctx,
|
|
|
|
int (*callback)(SSL *ssl, void *arg)) {
|
|
|
|
ctx->legacy_ocsp_callback = callback;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SSL_CTX_set_tlsext_status_arg(SSL_CTX *ctx, void *arg) {
|
|
|
|
ctx->legacy_ocsp_callback_arg = arg;
|
|
|
|
return 1;
|
|
|
|
}
|