2014-06-20 20:00:00 +01:00
|
|
|
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This package is an SSL implementation written
|
|
|
|
* by Eric Young (eay@cryptsoft.com).
|
|
|
|
* The implementation was written so as to conform with Netscapes SSL.
|
|
|
|
*
|
|
|
|
* This library is free for commercial and non-commercial use as long as
|
|
|
|
* the following conditions are aheared to. The following conditions
|
|
|
|
* apply to all code found in this distribution, be it the RC4, RSA,
|
|
|
|
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
|
|
|
* included with this distribution is covered by the same copyright terms
|
|
|
|
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
|
|
|
*
|
|
|
|
* Copyright remains Eric Young's, and as such any Copyright notices in
|
|
|
|
* the code are not to be removed.
|
|
|
|
* If this package is used in a product, Eric Young should be given attribution
|
|
|
|
* as the author of the parts of the library used.
|
|
|
|
* This can be in the form of a textual message at program startup or
|
|
|
|
* in documentation (online or textual) provided with the package.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* "This product includes cryptographic software written by
|
|
|
|
* Eric Young (eay@cryptsoft.com)"
|
|
|
|
* The word 'cryptographic' can be left out if the rouines from the library
|
|
|
|
* being used are not cryptographic related :-).
|
|
|
|
* 4. If you include any Windows specific code (or a derivative thereof) from
|
|
|
|
* the apps directory (application code) you must include an acknowledgement:
|
|
|
|
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* The licence and distribution terms for any publically available version or
|
|
|
|
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
|
|
|
* copied and put under another distribution licence
|
|
|
|
* [including the GNU Public Licence.]
|
|
|
|
*/
|
|
|
|
/* ====================================================================
|
|
|
|
* Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. All advertising materials mentioning features or use of this
|
|
|
|
* software must display the following acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
|
|
|
*
|
|
|
|
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* prior written permission. For written permission, please contact
|
|
|
|
* openssl-core@openssl.org.
|
|
|
|
*
|
|
|
|
* 5. Products derived from this software may not be called "OpenSSL"
|
|
|
|
* nor may "OpenSSL" appear in their names without prior written
|
|
|
|
* permission of the OpenSSL Project.
|
|
|
|
*
|
|
|
|
* 6. Redistributions of any form whatsoever must retain the following
|
|
|
|
* acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
|
|
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
* ====================================================================
|
|
|
|
*
|
|
|
|
* This product includes cryptographic software written by Eric Young
|
|
|
|
* (eay@cryptsoft.com). This product includes software written by Tim
|
|
|
|
* Hudson (tjh@cryptsoft.com). */
|
|
|
|
|
2015-09-15 06:48:04 +01:00
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <assert.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
#include <limits.h>
|
2015-04-08 04:05:04 +01:00
|
|
|
#include <string.h>
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
#include <openssl/buf.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/mem.h>
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
|
2015-04-08 03:38:30 +01:00
|
|
|
#include "internal.h"
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
static int do_ssl3_write(SSL *ssl, int type, const uint8_t *buf, unsigned len);
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-07-29 02:34:45 +01:00
|
|
|
/* ssl3_get_record reads a new input record. On success, it places it in
|
|
|
|
* |ssl->s3->rrec| and returns one. Otherwise it returns <= 0 on error or if
|
|
|
|
* more data is needed. */
|
|
|
|
static int ssl3_get_record(SSL *ssl) {
|
2014-06-20 20:00:00 +01:00
|
|
|
again:
|
2016-05-10 22:03:10 +01:00
|
|
|
switch (ssl->s3->recv_shutdown) {
|
|
|
|
case ssl_shutdown_none:
|
|
|
|
break;
|
|
|
|
case ssl_shutdown_fatal_alert:
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
|
|
|
return -1;
|
|
|
|
case ssl_shutdown_close_notify:
|
2016-03-10 06:15:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-06 23:54:51 +01:00
|
|
|
CBS body;
|
2015-07-29 02:34:45 +01:00
|
|
|
uint8_t type, alert;
|
2016-06-06 23:54:51 +01:00
|
|
|
size_t consumed;
|
2016-06-02 20:42:01 +01:00
|
|
|
enum ssl_open_record_t open_ret =
|
2016-06-06 23:54:51 +01:00
|
|
|
tls_open_record(ssl, &type, &body, &consumed, &alert,
|
2016-06-02 20:42:01 +01:00
|
|
|
ssl_read_buffer(ssl), ssl_read_buffer_len(ssl));
|
|
|
|
if (open_ret != ssl_open_record_partial) {
|
|
|
|
ssl_read_buffer_consume(ssl, consumed);
|
|
|
|
}
|
|
|
|
switch (open_ret) {
|
2016-06-06 23:54:51 +01:00
|
|
|
case ssl_open_record_partial: {
|
|
|
|
int read_ret = ssl_read_buffer_extend_to(ssl, consumed);
|
2016-06-02 20:42:01 +01:00
|
|
|
if (read_ret <= 0) {
|
|
|
|
return read_ret;
|
|
|
|
}
|
|
|
|
goto again;
|
2016-06-06 23:54:51 +01:00
|
|
|
}
|
2015-07-29 02:34:45 +01:00
|
|
|
|
2016-06-02 20:42:01 +01:00
|
|
|
case ssl_open_record_success:
|
2016-06-06 23:54:51 +01:00
|
|
|
if (CBS_len(&body) > 0xffff) {
|
2015-07-29 02:34:45 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-07-29 02:34:45 +01:00
|
|
|
SSL3_RECORD *rr = &ssl->s3->rrec;
|
|
|
|
rr->type = type;
|
2016-06-06 23:54:51 +01:00
|
|
|
rr->length = (uint16_t)CBS_len(&body);
|
|
|
|
rr->data = (uint8_t *)CBS_data(&body);
|
2015-07-29 02:34:45 +01:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
case ssl_open_record_discard:
|
|
|
|
goto again;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-06-02 20:42:01 +01:00
|
|
|
case ssl_open_record_close_notify:
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case ssl_open_record_fatal_alert:
|
|
|
|
return -1;
|
|
|
|
|
2015-07-29 02:34:45 +01:00
|
|
|
case ssl_open_record_error:
|
|
|
|
ssl3_send_alert(ssl, SSL3_AL_FATAL, alert);
|
|
|
|
return -1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-07-29 02:34:45 +01:00
|
|
|
assert(0);
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
|
|
|
return -1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-05-30 21:14:58 +01:00
|
|
|
int ssl3_write_app_data(SSL *ssl, const void *buf, int len) {
|
2016-03-10 05:41:25 +00:00
|
|
|
assert(!SSL_in_init(ssl) || SSL_in_false_start(ssl));
|
|
|
|
|
2015-05-30 21:14:58 +01:00
|
|
|
return ssl3_write_bytes(ssl, SSL3_RT_APPLICATION_DATA, buf, len);
|
|
|
|
}
|
|
|
|
|
2014-12-19 01:42:32 +00:00
|
|
|
/* Call this to write data in records of type |type|. It will return <= 0 if
|
|
|
|
* not all data has been sent or non-blocking IO. */
|
2015-12-19 22:05:56 +00:00
|
|
|
int ssl3_write_bytes(SSL *ssl, int type, const void *buf_, int len) {
|
2014-12-19 01:42:32 +00:00
|
|
|
const uint8_t *buf = buf_;
|
2016-03-10 06:41:55 +00:00
|
|
|
unsigned tot, n, nw;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
assert(ssl->s3->wnum <= INT_MAX);
|
|
|
|
tot = ssl->s3->wnum;
|
|
|
|
ssl->s3->wnum = 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
/* Ensure that if we end up with a smaller value of data to write out than
|
|
|
|
* the the original len from a write which didn't complete for non-blocking
|
|
|
|
* I/O and also somehow ended up avoiding the check for this in
|
|
|
|
* ssl3_write_pending/SSL_R_BAD_WRITE_RETRY as it must never be possible to
|
|
|
|
* end up with (len-tot) as a large number that will then promptly send
|
|
|
|
* beyond the end of the users buffer ... so we trap and report the error in
|
|
|
|
* a way the user will notice. */
|
|
|
|
if (len < 0 || (size_t)len < tot) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_LENGTH);
|
2014-12-19 01:42:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = (len - tot);
|
|
|
|
for (;;) {
|
|
|
|
/* max contains the maximum number of bytes that we can put into a
|
|
|
|
* record. */
|
2015-12-19 22:05:56 +00:00
|
|
|
unsigned max = ssl->max_send_fragment;
|
2014-12-19 01:42:32 +00:00
|
|
|
if (n > max) {
|
|
|
|
nw = max;
|
|
|
|
} else {
|
|
|
|
nw = n;
|
|
|
|
}
|
|
|
|
|
2016-03-10 06:41:55 +00:00
|
|
|
int ret = do_ssl3_write(ssl, type, &buf[tot], nw);
|
|
|
|
if (ret <= 0) {
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl->s3->wnum = tot;
|
2016-03-10 06:41:55 +00:00
|
|
|
return ret;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-03-10 06:41:55 +00:00
|
|
|
if (ret == (int)n || (type == SSL3_RT_APPLICATION_DATA &&
|
|
|
|
(ssl->mode & SSL_MODE_ENABLE_PARTIAL_WRITE))) {
|
|
|
|
return tot + ret;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-03-10 06:41:55 +00:00
|
|
|
n -= ret;
|
|
|
|
tot += ret;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
static int ssl3_write_pending(SSL *ssl, int type, const uint8_t *buf,
|
2015-11-02 22:50:10 +00:00
|
|
|
unsigned int len) {
|
2015-12-19 22:05:56 +00:00
|
|
|
if (ssl->s3->wpend_tot > (int)len ||
|
|
|
|
(ssl->s3->wpend_buf != buf &&
|
|
|
|
!(ssl->mode & SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER)) ||
|
|
|
|
ssl->s3->wpend_type != type) {
|
2015-11-02 22:50:10 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_WRITE_RETRY);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
int ret = ssl_write_buffer_flush(ssl);
|
2015-11-02 22:50:10 +00:00
|
|
|
if (ret <= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2015-12-19 22:05:56 +00:00
|
|
|
return ssl->s3->wpend_ret;
|
2015-11-02 22:50:10 +00:00
|
|
|
}
|
|
|
|
|
2015-07-29 02:34:45 +01:00
|
|
|
/* do_ssl3_write writes an SSL record of the given type. */
|
2015-12-19 22:05:56 +00:00
|
|
|
static int do_ssl3_write(SSL *ssl, int type, const uint8_t *buf, unsigned len) {
|
2015-07-29 02:34:45 +01:00
|
|
|
/* If there is still data from the previous record, flush it. */
|
2015-12-19 22:05:56 +00:00
|
|
|
if (ssl_write_buffer_is_pending(ssl)) {
|
|
|
|
return ssl3_write_pending(ssl, type, buf, len);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If we have an alert to send, lets send it */
|
2015-12-19 22:05:56 +00:00
|
|
|
if (ssl->s3->alert_dispatch) {
|
2016-06-15 22:44:37 +01:00
|
|
|
int ret = ssl->method->dispatch_alert(ssl);
|
2015-04-05 00:23:10 +01:00
|
|
|
if (ret <= 0) {
|
|
|
|
return ret;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
/* if it went, fall through and send more stuff */
|
|
|
|
}
|
|
|
|
|
2015-07-29 02:34:45 +01:00
|
|
|
if (len > SSL3_RT_MAX_PLAIN_LENGTH) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2014-12-19 01:42:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
size_t max_out = len + ssl_max_seal_overhead(ssl);
|
2015-07-29 02:34:45 +01:00
|
|
|
if (max_out < len) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_OVERFLOW);
|
|
|
|
return -1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2015-07-29 02:34:45 +01:00
|
|
|
uint8_t *out;
|
2015-04-05 00:23:10 +01:00
|
|
|
size_t ciphertext_len;
|
2015-12-19 22:05:56 +00:00
|
|
|
if (!ssl_write_buffer_init(ssl, &out, max_out) ||
|
|
|
|
!tls_seal_record(ssl, out, &ciphertext_len, max_out, type, buf, len)) {
|
2015-04-05 00:23:10 +01:00
|
|
|
return -1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl_write_buffer_set_len(ssl, ciphertext_len);
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
/* memorize arguments so that ssl3_write_pending can detect bad write retries
|
|
|
|
* later */
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl->s3->wpend_tot = len;
|
|
|
|
ssl->s3->wpend_buf = buf;
|
|
|
|
ssl->s3->wpend_type = type;
|
|
|
|
ssl->s3->wpend_ret = len;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
/* we now just need to write the buffer */
|
2015-12-19 22:05:56 +00:00
|
|
|
return ssl3_write_pending(ssl, type, buf, len);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2014-06-20 20:00:00 +01:00
|
|
|
|
2015-11-26 07:16:49 +00:00
|
|
|
int ssl3_read_app_data(SSL *ssl, uint8_t *buf, int len, int peek) {
|
2016-03-10 06:28:00 +00:00
|
|
|
assert(!SSL_in_init(ssl));
|
2016-05-12 14:34:55 +01:00
|
|
|
assert(ssl->s3->initial_handshake_complete);
|
|
|
|
|
2015-11-26 07:16:49 +00:00
|
|
|
return ssl3_read_bytes(ssl, SSL3_RT_APPLICATION_DATA, buf, len, peek);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ssl3_read_change_cipher_spec(SSL *ssl) {
|
2016-05-11 01:46:16 +01:00
|
|
|
SSL3_RECORD *rr = &ssl->s3->rrec;
|
|
|
|
|
|
|
|
if (rr->length == 0) {
|
|
|
|
int ret = ssl3_get_record(ssl);
|
|
|
|
if (ret <= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-05-11 01:46:16 +01:00
|
|
|
if (rr->type != SSL3_RT_CHANGE_CIPHER_SPEC) {
|
|
|
|
ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE);
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_RECORD);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rr->length != 1 || rr->data[0] != SSL3_MT_CCS) {
|
2015-11-26 07:16:49 +00:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_CHANGE_CIPHER_SPEC);
|
|
|
|
ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_ILLEGAL_PARAMETER);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-07-21 21:14:03 +01:00
|
|
|
|
2016-06-02 01:16:03 +01:00
|
|
|
ssl_do_msg_callback(ssl, 0 /* read */, ssl->version,
|
2016-05-11 01:46:16 +01:00
|
|
|
SSL3_RT_CHANGE_CIPHER_SPEC, rr->data, rr->length);
|
|
|
|
|
|
|
|
rr->length = 0;
|
|
|
|
ssl_read_buffer_discard(ssl);
|
2015-11-26 07:16:49 +00:00
|
|
|
return 1;
|
2015-05-30 21:22:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ssl3_read_close_notify(SSL *ssl) {
|
2016-06-02 00:40:23 +01:00
|
|
|
/* Read records until an error or close_notify. */
|
|
|
|
while (ssl3_get_record(ssl) > 0) {
|
|
|
|
;
|
|
|
|
}
|
2015-05-30 21:22:10 +01:00
|
|
|
}
|
|
|
|
|
2015-10-13 00:54:18 +01:00
|
|
|
static int ssl3_can_renegotiate(SSL *ssl) {
|
2016-07-08 22:14:36 +01:00
|
|
|
if (ssl->server || ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-13 00:54:18 +01:00
|
|
|
switch (ssl->renegotiate_mode) {
|
|
|
|
case ssl_renegotiate_never:
|
|
|
|
return 0;
|
|
|
|
case ssl_renegotiate_once:
|
|
|
|
return ssl->s3->total_renegotiations == 0;
|
|
|
|
case ssl_renegotiate_freely:
|
|
|
|
return 1;
|
2015-11-03 21:34:10 +00:00
|
|
|
case ssl_renegotiate_ignore:
|
|
|
|
return 1;
|
2015-10-13 00:54:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
/* Return up to 'len' payload bytes received in 'type' records.
|
|
|
|
* 'type' is one of the following:
|
|
|
|
*
|
|
|
|
* - SSL3_RT_HANDSHAKE (when ssl3_get_message calls us)
|
2015-11-26 07:16:49 +00:00
|
|
|
* - SSL3_RT_APPLICATION_DATA (when ssl3_read_app_data calls us)
|
2014-06-20 20:00:00 +01:00
|
|
|
*
|
|
|
|
* If we don't have stored data to work from, read a SSL/TLS record first
|
|
|
|
* (possibly multiple records if we still don't have anything to return).
|
|
|
|
*
|
|
|
|
* This function must handle any surprises the peer may have for us, such as
|
2015-11-26 07:16:49 +00:00
|
|
|
* Alert records (e.g. close_notify) or renegotiation requests. */
|
2015-12-19 22:05:56 +00:00
|
|
|
int ssl3_read_bytes(SSL *ssl, int type, uint8_t *buf, int len, int peek) {
|
2015-02-22 18:07:21 +00:00
|
|
|
int al, i, ret;
|
2014-12-19 01:42:32 +00:00
|
|
|
unsigned int n;
|
|
|
|
SSL3_RECORD *rr;
|
|
|
|
|
2016-05-11 01:46:16 +01:00
|
|
|
if ((type != SSL3_RT_APPLICATION_DATA && type != SSL3_RT_HANDSHAKE) ||
|
2014-12-19 01:42:32 +00:00
|
|
|
(peek && type != SSL3_RT_APPLICATION_DATA)) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
|
2014-12-19 01:42:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-06-20 20:00:00 +01:00
|
|
|
start:
|
2015-12-19 22:05:56 +00:00
|
|
|
/* ssl->s3->rrec.type - is the type of record
|
|
|
|
* ssl->s3->rrec.data - data
|
|
|
|
* ssl->s3->rrec.off - offset into 'data' for next read
|
|
|
|
* ssl->s3->rrec.length - number of bytes. */
|
|
|
|
rr = &ssl->s3->rrec;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
|
|
|
/* get new packet if necessary */
|
2015-07-29 02:34:45 +01:00
|
|
|
if (rr->length == 0) {
|
2015-12-19 22:05:56 +00:00
|
|
|
ret = ssl3_get_record(ssl);
|
2014-12-19 01:42:32 +00:00
|
|
|
if (ret <= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we now have a packet which can be read and processed */
|
|
|
|
|
2016-07-28 16:29:18 +01:00
|
|
|
/* Do not allow interleaving application data and HelloRequest. */
|
|
|
|
if (type == rr->type && ssl->s3->hello_request_len == 0) {
|
2015-08-22 06:35:43 +01:00
|
|
|
/* Discard empty records. */
|
|
|
|
if (rr->length == 0) {
|
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
|
2014-12-19 01:42:32 +00:00
|
|
|
if (len <= 0) {
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((unsigned int)len > rr->length) {
|
|
|
|
n = rr->length;
|
|
|
|
} else {
|
|
|
|
n = (unsigned int)len;
|
|
|
|
}
|
|
|
|
|
2015-12-06 20:48:22 +00:00
|
|
|
memcpy(buf, rr->data, n);
|
2014-12-19 01:42:32 +00:00
|
|
|
if (!peek) {
|
|
|
|
rr->length -= n;
|
2015-12-06 20:48:22 +00:00
|
|
|
rr->data += n;
|
2014-12-19 01:42:32 +00:00
|
|
|
if (rr->length == 0) {
|
2015-07-29 02:34:45 +01:00
|
|
|
/* The record has been consumed, so we may now clear the buffer. */
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl_read_buffer_discard(ssl);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2015-05-21 06:29:55 +01:00
|
|
|
/* Process unexpected records. */
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-11-26 07:16:49 +00:00
|
|
|
if (type == SSL3_RT_APPLICATION_DATA && rr->type == SSL3_RT_HANDSHAKE) {
|
2016-07-11 18:19:03 +01:00
|
|
|
if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
|
|
|
|
/* TODO(svaldez): Handle TLS 1.3 post-handshake messages. For now,
|
|
|
|
* silently drop all handshake records. */
|
|
|
|
rr->length = 0;
|
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
|
2015-04-09 00:16:58 +01:00
|
|
|
/* If peer renegotiations are disabled, all out-of-order handshake records
|
2015-05-21 06:29:55 +01:00
|
|
|
* are fatal. Renegotiations as a server are never supported. */
|
2015-12-19 22:05:56 +00:00
|
|
|
if (ssl->server || !ssl3_can_renegotiate(ssl)) {
|
2015-04-09 00:16:58 +01:00
|
|
|
al = SSL_AD_NO_RENEGOTIATION;
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION);
|
2015-04-09 00:16:58 +01:00
|
|
|
goto f_err;
|
|
|
|
}
|
|
|
|
|
2015-11-26 06:39:53 +00:00
|
|
|
/* This must be a HelloRequest, possibly fragmented over multiple records.
|
|
|
|
* Consume data from the handshake protocol until it is complete. */
|
|
|
|
static const uint8_t kHelloRequest[] = {SSL3_MT_HELLO_REQUEST, 0, 0, 0};
|
2015-12-19 22:05:56 +00:00
|
|
|
while (ssl->s3->hello_request_len < sizeof(kHelloRequest)) {
|
2015-11-26 06:39:53 +00:00
|
|
|
if (rr->length == 0) {
|
|
|
|
/* Get a new record. */
|
|
|
|
goto start;
|
|
|
|
}
|
2015-12-19 22:05:56 +00:00
|
|
|
if (rr->data[0] != kHelloRequest[ssl->s3->hello_request_len]) {
|
2015-11-26 06:39:53 +00:00
|
|
|
al = SSL_AD_DECODE_ERROR;
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_HELLO_REQUEST);
|
|
|
|
goto f_err;
|
|
|
|
}
|
2015-12-06 20:48:22 +00:00
|
|
|
rr->data++;
|
2015-11-26 06:39:53 +00:00
|
|
|
rr->length--;
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl->s3->hello_request_len++;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl->s3->hello_request_len = 0;
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-06-02 01:16:03 +01:00
|
|
|
ssl_do_msg_callback(ssl, 0 /* read */, ssl->version, SSL3_RT_HANDSHAKE,
|
|
|
|
kHelloRequest, sizeof(kHelloRequest));
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
if (ssl->renegotiate_mode == ssl_renegotiate_ignore) {
|
2015-11-03 21:34:10 +00:00
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
|
2015-05-21 06:37:55 +01:00
|
|
|
/* 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. */
|
2015-12-19 22:05:56 +00:00
|
|
|
if (ssl_write_buffer_is_pending(ssl)) {
|
2015-05-21 06:37:55 +01:00
|
|
|
al = SSL_AD_NO_RENEGOTIATION;
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION);
|
2015-05-21 06:37:55 +01:00
|
|
|
goto f_err;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
2015-05-21 06:37:55 +01:00
|
|
|
|
|
|
|
/* Begin a new handshake. */
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl->s3->total_renegotiations++;
|
|
|
|
ssl->state = SSL_ST_CONNECT;
|
2016-05-26 00:05:11 +01:00
|
|
|
i = ssl->handshake_func(ssl);
|
2015-05-21 06:37:55 +01:00
|
|
|
if (i < 0) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
if (i == 0) {
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE);
|
2015-05-21 06:37:55 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The handshake completed synchronously. Continue reading records. */
|
2014-12-19 01:42:32 +00:00
|
|
|
goto start;
|
|
|
|
}
|
|
|
|
|
2015-02-08 21:06:54 +00:00
|
|
|
al = SSL_AD_UNEXPECTED_MESSAGE;
|
2015-06-29 05:28:17 +01:00
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_RECORD);
|
2014-06-20 20:00:00 +01:00
|
|
|
|
|
|
|
f_err:
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl3_send_alert(ssl, SSL3_AL_FATAL, al);
|
2014-12-19 01:42:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
int ssl3_send_alert(SSL *ssl, int level, int desc) {
|
2016-05-10 22:03:10 +01:00
|
|
|
/* It is illegal to send an alert when we've already sent a closing one. */
|
|
|
|
if (ssl->s3->send_shutdown != ssl_shutdown_none) {
|
|
|
|
OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (level == SSL3_AL_FATAL) {
|
|
|
|
if (ssl->session != NULL) {
|
|
|
|
SSL_CTX_remove_session(ssl->ctx, ssl->session);
|
|
|
|
}
|
|
|
|
ssl->s3->send_shutdown = ssl_shutdown_fatal_alert;
|
|
|
|
} else if (level == SSL3_AL_WARNING && desc == SSL_AD_CLOSE_NOTIFY) {
|
|
|
|
ssl->s3->send_shutdown = ssl_shutdown_close_notify;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl->s3->alert_dispatch = 1;
|
|
|
|
ssl->s3->send_alert[0] = level;
|
|
|
|
ssl->s3->send_alert[1] = desc;
|
|
|
|
if (!ssl_write_buffer_is_pending(ssl)) {
|
2015-07-29 02:34:45 +01:00
|
|
|
/* Nothing is being written out, so the alert may be dispatched
|
|
|
|
* immediately. */
|
2016-06-15 22:44:37 +01:00
|
|
|
return ssl->method->dispatch_alert(ssl);
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|
|
|
|
|
2016-05-10 22:03:10 +01:00
|
|
|
/* The alert will be dispatched later. */
|
2014-12-19 01:42:32 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-12-19 22:05:56 +00:00
|
|
|
int ssl3_dispatch_alert(SSL *ssl) {
|
|
|
|
ssl->s3->alert_dispatch = 0;
|
2016-03-10 06:41:55 +00:00
|
|
|
int ret = do_ssl3_write(ssl, SSL3_RT_ALERT, &ssl->s3->send_alert[0], 2);
|
|
|
|
if (ret <= 0) {
|
2015-12-19 22:05:56 +00:00
|
|
|
ssl->s3->alert_dispatch = 1;
|
2016-03-10 06:41:55 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-03-10 06:41:55 +00:00
|
|
|
/* If the alert is fatal, flush the BIO now. */
|
|
|
|
if (ssl->s3->send_alert[0] == SSL3_AL_FATAL) {
|
|
|
|
BIO_flush(ssl->wbio);
|
|
|
|
}
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-06-02 01:16:03 +01:00
|
|
|
ssl_do_msg_callback(ssl, 1 /* write */, ssl->version, SSL3_RT_ALERT,
|
|
|
|
ssl->s3->send_alert, 2);
|
2014-12-19 01:42:32 +00:00
|
|
|
|
2016-06-02 01:16:03 +01:00
|
|
|
int alert = (ssl->s3->send_alert[0] << 8) | ssl->s3->send_alert[1];
|
|
|
|
ssl_do_info_callback(ssl, SSL_CB_WRITE_ALERT, alert);
|
2016-03-10 06:41:55 +00:00
|
|
|
|
|
|
|
return 1;
|
2014-12-19 01:42:32 +00:00
|
|
|
}
|