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.
|
2015-07-24 01:01:51 +01: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).
|
2015-07-24 01:01:51 +01: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.
|
2015-07-24 01:01:51 +01: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 :-).
|
2015-07-24 01:01:51 +01: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)"
|
2015-07-24 01:01:51 +01: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.
|
2015-07-24 01:01:51 +01: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
|
2015-07-24 01:01:51 +01: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 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>
|
2015-04-08 04:05:04 +01:00
|
|
|
#include <string.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2017-01-12 18:17:07 +00:00
|
|
|
#include <openssl/buf.h>
|
|
|
|
#include <openssl/digest.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/mem.h>
|
|
|
|
#include <openssl/md5.h>
|
2016-03-25 22:07:11 +00:00
|
|
|
#include <openssl/nid.h>
|
2017-01-12 18:17:07 +00:00
|
|
|
#include <openssl/sha.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2016-12-13 06:07:13 +00:00
|
|
|
#include "../crypto/internal.h"
|
2015-04-08 03:38:30 +01:00
|
|
|
#include "internal.h"
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2016-12-13 06:07:13 +00: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-07-19 21:38:21 +01:00
|
|
|
SSLTranscript::SSLTranscript() {}
|
|
|
|
|
|
|
|
SSLTranscript::~SSLTranscript() {}
|
|
|
|
|
|
|
|
bool SSLTranscript::Init() {
|
|
|
|
buffer_.reset(BUF_MEM_new());
|
|
|
|
if (!buffer_) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
hash_.Reset();
|
|
|
|
md5_.Reset();
|
|
|
|
return true;
|
2014-12-18 20:09:04 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// InitDigestWithData calls |EVP_DigestInit_ex| on |ctx| with |md| and then
|
|
|
|
// writes the data in |buf| to it.
|
2017-07-19 21:38:21 +01:00
|
|
|
static bool InitDigestWithData(EVP_MD_CTX *ctx, const EVP_MD *md,
|
|
|
|
const BUF_MEM *buf) {
|
2015-08-06 14:54:13 +01:00
|
|
|
if (!EVP_DigestInit_ex(ctx, md, NULL)) {
|
2017-07-19 21:38:21 +01:00
|
|
|
return false;
|
2015-08-06 14:54:13 +01:00
|
|
|
}
|
|
|
|
EVP_DigestUpdate(ctx, buf->data, buf->length);
|
2017-07-19 21:38:21 +01:00
|
|
|
return true;
|
2015-08-06 14:54:13 +01:00
|
|
|
}
|
2014-12-18 20:09:04 +00:00
|
|
|
|
2017-08-09 20:02:34 +01:00
|
|
|
bool SSLTranscript::InitHash(uint16_t version, const SSL_CIPHER *cipher) {
|
|
|
|
const EVP_MD *md = ssl_get_handshake_digest(version, cipher);
|
2015-08-06 14:54:13 +01:00
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// To support SSL 3.0's Finished and CertificateVerify constructions,
|
|
|
|
// EVP_md5_sha1() is split into MD5 and SHA-1 halves. When SSL 3.0 is removed,
|
|
|
|
// we can simplify this.
|
2017-01-12 18:17:07 +00:00
|
|
|
if (md == EVP_md5_sha1()) {
|
2017-07-19 21:38:21 +01:00
|
|
|
if (!InitDigestWithData(md5_.get(), EVP_md5(), buffer_.get())) {
|
|
|
|
return false;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
md = EVP_sha1();
|
2014-12-18 20:09:04 +00:00
|
|
|
}
|
2015-08-06 14:54:13 +01:00
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
return InitDigestWithData(hash_.get(), md, buffer_.get());
|
2015-08-05 13:50:34 +01:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
void SSLTranscript::FreeBuffer() {
|
|
|
|
buffer_.reset();
|
2015-08-05 13:50:34 +01:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
size_t SSLTranscript::DigestLen() const {
|
|
|
|
return EVP_MD_size(Digest());
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
const EVP_MD *SSLTranscript::Digest() const {
|
|
|
|
if (EVP_MD_CTX_md(md5_.get()) != nullptr) {
|
2017-01-12 18:17:07 +00:00
|
|
|
return EVP_md5_sha1();
|
|
|
|
}
|
2017-07-19 21:38:21 +01:00
|
|
|
return EVP_MD_CTX_md(hash_.get());
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 17:29:36 +01:00
|
|
|
bool SSLTranscript::UpdateForHelloRetryRequest() {
|
|
|
|
if (buffer_) {
|
|
|
|
buffer_->length = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t old_hash[EVP_MAX_MD_SIZE];
|
|
|
|
size_t hash_len;
|
|
|
|
if (!GetHash(old_hash, &hash_len)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const uint8_t header[4] = {SSL3_MT_MESSAGE_HASH, 0, 0,
|
|
|
|
static_cast<uint8_t>(hash_len)};
|
|
|
|
if (!EVP_DigestInit_ex(hash_.get(), Digest(), nullptr) ||
|
|
|
|
!Update(header) ||
|
|
|
|
!Update(MakeConstSpan(old_hash, hash_len))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SSLTranscript::CopyHashContext(EVP_MD_CTX *ctx) {
|
|
|
|
return EVP_MD_CTX_copy_ex(ctx, hash_.get());
|
|
|
|
}
|
|
|
|
|
2017-10-11 22:19:19 +01:00
|
|
|
bool SSLTranscript::Update(Span<const uint8_t> in) {
|
2017-08-29 21:33:21 +01:00
|
|
|
// Depending on the state of the handshake, either the handshake buffer may be
|
|
|
|
// active, the rolling hash, or both.
|
2017-10-06 23:26:36 +01:00
|
|
|
if (buffer_ &&
|
|
|
|
!BUF_MEM_append(buffer_.get(), in.data(), in.size())) {
|
|
|
|
return false;
|
2015-08-05 13:50:34 +01:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
if (EVP_MD_CTX_md(hash_.get()) != NULL) {
|
2017-10-11 22:19:19 +01:00
|
|
|
EVP_DigestUpdate(hash_.get(), in.data(), in.size());
|
2015-08-06 14:54:13 +01:00
|
|
|
}
|
2017-07-19 21:38:21 +01:00
|
|
|
if (EVP_MD_CTX_md(md5_.get()) != NULL) {
|
2017-10-11 22:19:19 +01:00
|
|
|
EVP_DigestUpdate(md5_.get(), in.data(), in.size());
|
2015-08-05 13:50:34 +01:00
|
|
|
}
|
2017-01-12 18:17:07 +00:00
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
return true;
|
2014-12-18 20:09:04 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
bool SSLTranscript::GetHash(uint8_t *out, size_t *out_len) {
|
|
|
|
ScopedEVP_MD_CTX ctx;
|
2017-01-12 18:17:07 +00:00
|
|
|
unsigned md5_len = 0;
|
2017-07-19 21:38:21 +01:00
|
|
|
if (EVP_MD_CTX_md(md5_.get()) != NULL) {
|
|
|
|
if (!EVP_MD_CTX_copy_ex(ctx.get(), md5_.get()) ||
|
|
|
|
!EVP_DigestFinal_ex(ctx.get(), out, &md5_len)) {
|
|
|
|
return false;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned len;
|
2017-07-19 21:38:21 +01:00
|
|
|
if (!EVP_MD_CTX_copy_ex(ctx.get(), hash_.get()) ||
|
|
|
|
!EVP_DigestFinal_ex(ctx.get(), out + md5_len, &len)) {
|
|
|
|
return false;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*out_len = md5_len + len;
|
2017-07-19 21:38:21 +01:00
|
|
|
return true;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
static bool SSL3HandshakeMAC(const SSL_SESSION *session,
|
|
|
|
const EVP_MD_CTX *ctx_template, const char *sender,
|
|
|
|
size_t sender_len, uint8_t *p, size_t *out_len) {
|
|
|
|
ScopedEVP_MD_CTX ctx;
|
|
|
|
if (!EVP_MD_CTX_copy_ex(ctx.get(), ctx_template)) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_LIB_EVP);
|
2017-07-19 21:38:21 +01:00
|
|
|
return false;
|
2014-12-18 20:09:04 +00:00
|
|
|
}
|
|
|
|
|
2015-12-30 04:41:34 +00:00
|
|
|
static const uint8_t kPad1[48] = {
|
|
|
|
0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
|
|
|
|
0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
|
|
|
|
0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
|
|
|
|
0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const uint8_t kPad2[48] = {
|
|
|
|
0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
|
|
|
|
0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
|
|
|
|
0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
|
|
|
|
0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c, 0x5c,
|
|
|
|
};
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
size_t n = EVP_MD_CTX_size(ctx.get());
|
2014-12-18 20:09:04 +00:00
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
size_t npad = (48 / n) * n;
|
|
|
|
EVP_DigestUpdate(ctx.get(), sender, sender_len);
|
|
|
|
EVP_DigestUpdate(ctx.get(), session->master_key, session->master_key_length);
|
|
|
|
EVP_DigestUpdate(ctx.get(), kPad1, npad);
|
|
|
|
unsigned md_buf_len;
|
|
|
|
uint8_t md_buf[EVP_MAX_MD_SIZE];
|
|
|
|
EVP_DigestFinal_ex(ctx.get(), md_buf, &md_buf_len);
|
2014-12-18 20:09:04 +00:00
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
if (!EVP_DigestInit_ex(ctx.get(), EVP_MD_CTX_md(ctx.get()), NULL)) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_LIB_EVP);
|
2017-07-19 21:38:21 +01:00
|
|
|
return false;
|
2014-12-18 20:09:04 +00:00
|
|
|
}
|
2017-07-19 21:38:21 +01:00
|
|
|
EVP_DigestUpdate(ctx.get(), session->master_key, session->master_key_length);
|
|
|
|
EVP_DigestUpdate(ctx.get(), kPad2, npad);
|
|
|
|
EVP_DigestUpdate(ctx.get(), md_buf, md_buf_len);
|
|
|
|
unsigned len;
|
|
|
|
EVP_DigestFinal_ex(ctx.get(), p, &len);
|
2014-12-18 20:09:04 +00:00
|
|
|
|
2017-01-12 18:17:07 +00:00
|
|
|
*out_len = len;
|
2017-07-19 21:38:21 +01:00
|
|
|
return true;
|
2014-12-18 20:09:04 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
bool SSLTranscript::GetSSL3CertVerifyHash(uint8_t *out, size_t *out_len,
|
|
|
|
const SSL_SESSION *session,
|
|
|
|
uint16_t signature_algorithm) {
|
|
|
|
if (Digest() != EVP_md5_sha1()) {
|
2017-01-12 18:17:07 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2017-07-19 21:38:21 +01:00
|
|
|
return false;
|
2016-06-30 18:27:23 +01:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:17:07 +00:00
|
|
|
if (signature_algorithm == SSL_SIGN_RSA_PKCS1_MD5_SHA1) {
|
|
|
|
size_t md5_len, len;
|
2017-07-19 21:38:21 +01:00
|
|
|
if (!SSL3HandshakeMAC(session, md5_.get(), NULL, 0, out, &md5_len) ||
|
|
|
|
!SSL3HandshakeMAC(session, hash_.get(), NULL, 0, out + md5_len, &len)) {
|
|
|
|
return false;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
*out_len = md5_len + len;
|
2017-07-19 21:38:21 +01:00
|
|
|
return true;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
2016-06-30 18:27:23 +01:00
|
|
|
|
2017-01-12 18:17:07 +00:00
|
|
|
if (signature_algorithm == SSL_SIGN_ECDSA_SHA1) {
|
2017-07-19 21:38:21 +01:00
|
|
|
return SSL3HandshakeMAC(session, hash_.get(), NULL, 0, out, out_len);
|
2016-06-30 18:27:23 +01:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:17:07 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2017-07-19 21:38:21 +01:00
|
|
|
return false;
|
2016-06-30 18:27:23 +01:00
|
|
|
}
|
|
|
|
|
2017-07-19 21:38:21 +01:00
|
|
|
bool SSLTranscript::GetFinishedMAC(uint8_t *out, size_t *out_len,
|
2017-08-31 06:12:28 +01:00
|
|
|
const SSL_SESSION *session,
|
|
|
|
bool from_server) {
|
|
|
|
if (session->ssl_version == SSL3_VERSION) {
|
2017-07-19 21:38:21 +01:00
|
|
|
if (Digest() != EVP_md5_sha1()) {
|
2017-01-12 18:17:07 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2017-07-19 21:38:21 +01:00
|
|
|
return false;
|
2016-06-30 18:27:23 +01:00
|
|
|
}
|
2017-01-12 18:17:07 +00:00
|
|
|
|
|
|
|
const char *sender = from_server ? SSL3_MD_SERVER_FINISHED_CONST
|
|
|
|
: SSL3_MD_CLIENT_FINISHED_CONST;
|
|
|
|
const size_t sender_len = 4;
|
|
|
|
size_t md5_len, len;
|
2017-07-19 21:38:21 +01:00
|
|
|
if (!SSL3HandshakeMAC(session, md5_.get(), sender, sender_len, out,
|
|
|
|
&md5_len) ||
|
|
|
|
!SSL3HandshakeMAC(session, hash_.get(), sender, sender_len,
|
|
|
|
out + md5_len, &len)) {
|
|
|
|
return false;
|
2016-06-30 18:27:23 +01:00
|
|
|
}
|
2017-01-12 18:17:07 +00:00
|
|
|
|
|
|
|
*out_len = md5_len + len;
|
2017-07-19 21:38:21 +01:00
|
|
|
return true;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:33:21 +01:00
|
|
|
// At this point, the handshake should have released the handshake buffer on
|
|
|
|
// its own.
|
2017-07-19 21:38:21 +01:00
|
|
|
assert(!buffer_);
|
2017-01-12 18:17:07 +00:00
|
|
|
|
2017-10-27 05:56:55 +01:00
|
|
|
static const char kClientLabel[] = "client finished";
|
|
|
|
static const char kServerLabel[] = "server finished";
|
|
|
|
auto label = from_server
|
|
|
|
? MakeConstSpan(kServerLabel, sizeof(kServerLabel) - 1)
|
|
|
|
: MakeConstSpan(kClientLabel, sizeof(kClientLabel) - 1);
|
2017-01-12 18:17:07 +00:00
|
|
|
|
|
|
|
uint8_t digests[EVP_MAX_MD_SIZE];
|
|
|
|
size_t digests_len;
|
2017-07-19 21:38:21 +01:00
|
|
|
if (!GetHash(digests, &digests_len)) {
|
|
|
|
return false;
|
2016-06-30 18:27:23 +01:00
|
|
|
}
|
2014-12-18 20:09:04 +00:00
|
|
|
|
2017-01-12 18:17:07 +00:00
|
|
|
static const size_t kFinishedLen = 12;
|
2017-10-27 05:56:55 +01:00
|
|
|
if (!tls1_prf(Digest(), MakeSpan(out, kFinishedLen),
|
|
|
|
MakeConstSpan(session->master_key, session->master_key_length),
|
|
|
|
label, MakeConstSpan(digests, digests_len), {})) {
|
2017-07-19 21:38:21 +01:00
|
|
|
return false;
|
2017-01-12 18:17:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*out_len = kFinishedLen;
|
2017-07-19 21:38:21 +01:00
|
|
|
return true;
|
2016-06-30 18:27:23 +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
|