mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
aedbb71b63
Only done for the read side so far. Still need to do TLS1.3 and SSL3.0. Also need to separate out KTLS. Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18132)
1259 lines
42 KiB
C
1259 lines
42 KiB
C
/*
|
|
* Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
* in the file LICENSE in the source distribution or at
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
#include "../ssl_local.h"
|
|
#include <openssl/trace.h>
|
|
#include <openssl/rand.h>
|
|
#include <openssl/core_names.h>
|
|
#include "record_local.h"
|
|
#include "internal/cryptlib.h"
|
|
|
|
static const unsigned char ssl3_pad_1[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 unsigned char ssl3_pad_2[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
|
|
};
|
|
|
|
/*
|
|
* Clear the contents of an SSL3_RECORD but retain any memory allocated
|
|
*/
|
|
void SSL3_RECORD_clear(SSL3_RECORD *r, size_t num_recs)
|
|
{
|
|
unsigned char *comp;
|
|
size_t i;
|
|
|
|
for (i = 0; i < num_recs; i++) {
|
|
comp = r[i].comp;
|
|
|
|
memset(&r[i], 0, sizeof(*r));
|
|
r[i].comp = comp;
|
|
}
|
|
}
|
|
|
|
void SSL3_RECORD_release(SSL3_RECORD *r, size_t num_recs)
|
|
{
|
|
size_t i;
|
|
|
|
for (i = 0; i < num_recs; i++) {
|
|
OPENSSL_free(r[i].comp);
|
|
r[i].comp = NULL;
|
|
}
|
|
}
|
|
|
|
void SSL3_RECORD_set_seq_num(SSL3_RECORD *r, const unsigned char *seq_num)
|
|
{
|
|
memcpy(r->seq_num, seq_num, SEQ_NUM_SIZE);
|
|
}
|
|
|
|
int ossl_early_data_count_ok(SSL_CONNECTION *s, size_t length,
|
|
size_t overhead, int send)
|
|
{
|
|
uint32_t max_early_data;
|
|
SSL_SESSION *sess = s->session;
|
|
|
|
/*
|
|
* If we are a client then we always use the max_early_data from the
|
|
* session/psksession. Otherwise we go with the lowest out of the max early
|
|
* data set in the session and the configured max_early_data.
|
|
*/
|
|
if (!s->server && sess->ext.max_early_data == 0) {
|
|
if (!ossl_assert(s->psksession != NULL
|
|
&& s->psksession->ext.max_early_data > 0)) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
sess = s->psksession;
|
|
}
|
|
|
|
if (!s->server)
|
|
max_early_data = sess->ext.max_early_data;
|
|
else if (s->ext.early_data != SSL_EARLY_DATA_ACCEPTED)
|
|
max_early_data = s->recv_max_early_data;
|
|
else
|
|
max_early_data = s->recv_max_early_data < sess->ext.max_early_data
|
|
? s->recv_max_early_data : sess->ext.max_early_data;
|
|
|
|
if (max_early_data == 0) {
|
|
SSLfatal(s, send ? SSL_AD_INTERNAL_ERROR : SSL_AD_UNEXPECTED_MESSAGE,
|
|
SSL_R_TOO_MUCH_EARLY_DATA);
|
|
return 0;
|
|
}
|
|
|
|
/* If we are dealing with ciphertext we need to allow for the overhead */
|
|
max_early_data += overhead;
|
|
|
|
if (s->early_data_count + length > max_early_data) {
|
|
SSLfatal(s, send ? SSL_AD_INTERNAL_ERROR : SSL_AD_UNEXPECTED_MESSAGE,
|
|
SSL_R_TOO_MUCH_EARLY_DATA);
|
|
return 0;
|
|
}
|
|
s->early_data_count += length;
|
|
|
|
return 1;
|
|
}
|
|
|
|
|
|
int ssl3_do_uncompress(SSL_CONNECTION *sc, SSL3_RECORD *rr)
|
|
{
|
|
#ifndef OPENSSL_NO_COMP
|
|
int i;
|
|
|
|
if (rr->comp == NULL) {
|
|
rr->comp = (unsigned char *)
|
|
OPENSSL_malloc(SSL3_RT_MAX_ENCRYPTED_LENGTH);
|
|
}
|
|
if (rr->comp == NULL)
|
|
return 0;
|
|
|
|
i = COMP_expand_block(sc->expand, rr->comp,
|
|
SSL3_RT_MAX_PLAIN_LENGTH, rr->data, (int)rr->length);
|
|
if (i < 0)
|
|
return 0;
|
|
else
|
|
rr->length = i;
|
|
rr->data = rr->comp;
|
|
#endif
|
|
return 1;
|
|
}
|
|
|
|
int ssl3_do_compress(SSL_CONNECTION *sc, SSL3_RECORD *wr)
|
|
{
|
|
#ifndef OPENSSL_NO_COMP
|
|
int i;
|
|
|
|
i = COMP_compress_block(sc->compress, wr->data,
|
|
(int)(wr->length + SSL3_RT_MAX_COMPRESSED_OVERHEAD),
|
|
wr->input, (int)wr->length);
|
|
if (i < 0)
|
|
return 0;
|
|
else
|
|
wr->length = i;
|
|
|
|
wr->input = wr->data;
|
|
#endif
|
|
return 1;
|
|
}
|
|
|
|
/*-
|
|
* ssl3_enc encrypts/decrypts |n_recs| records in |inrecs|. Calls SSLfatal on
|
|
* internal error, but not otherwise. It is the responsibility of the caller to
|
|
* report a bad_record_mac
|
|
*
|
|
* Returns:
|
|
* 0: if the record is publicly invalid, or an internal error
|
|
* 1: Success or Mac-then-encrypt decryption failed (MAC will be randomised)
|
|
*/
|
|
int ssl3_enc(SSL_CONNECTION *s, SSL3_RECORD *inrecs, size_t n_recs, int sending,
|
|
SSL_MAC_BUF *mac, size_t macsize)
|
|
{
|
|
SSL3_RECORD *rec;
|
|
EVP_CIPHER_CTX *ds;
|
|
size_t l, i;
|
|
size_t bs;
|
|
const EVP_CIPHER *enc;
|
|
|
|
rec = inrecs;
|
|
/*
|
|
* We shouldn't ever be called with more than one record in the SSLv3 case
|
|
*/
|
|
if (n_recs != 1)
|
|
return 0;
|
|
if (sending) {
|
|
ds = s->enc_write_ctx;
|
|
if (s->enc_write_ctx == NULL)
|
|
enc = NULL;
|
|
else
|
|
enc = EVP_CIPHER_CTX_get0_cipher(s->enc_write_ctx);
|
|
} else {
|
|
ds = s->enc_read_ctx;
|
|
if (s->enc_read_ctx == NULL)
|
|
enc = NULL;
|
|
else
|
|
enc = EVP_CIPHER_CTX_get0_cipher(s->enc_read_ctx);
|
|
}
|
|
|
|
if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) {
|
|
memmove(rec->data, rec->input, rec->length);
|
|
rec->input = rec->data;
|
|
} else {
|
|
int provided = (EVP_CIPHER_get0_provider(enc) != NULL);
|
|
|
|
l = rec->length;
|
|
bs = EVP_CIPHER_CTX_get_block_size(ds);
|
|
|
|
/* COMPRESS */
|
|
|
|
if ((bs != 1) && sending && !provided) {
|
|
/*
|
|
* We only do this for legacy ciphers. Provided ciphers add the
|
|
* padding on the provider side.
|
|
*/
|
|
i = bs - (l % bs);
|
|
|
|
/* we need to add 'i-1' padding bytes */
|
|
l += i;
|
|
/*
|
|
* the last of these zero bytes will be overwritten with the
|
|
* padding length.
|
|
*/
|
|
memset(&rec->input[rec->length], 0, i);
|
|
rec->length += i;
|
|
rec->input[l - 1] = (unsigned char)(i - 1);
|
|
}
|
|
|
|
if (!sending) {
|
|
if (l == 0 || l % bs != 0) {
|
|
/* Publicly invalid */
|
|
return 0;
|
|
}
|
|
/* otherwise, rec->length >= bs */
|
|
}
|
|
|
|
if (EVP_CIPHER_get0_provider(enc) != NULL) {
|
|
int outlen;
|
|
|
|
if (!EVP_CipherUpdate(ds, rec->data, &outlen, rec->input,
|
|
(unsigned int)l))
|
|
return 0;
|
|
rec->length = outlen;
|
|
|
|
if (!sending && mac != NULL) {
|
|
/* Now get a pointer to the MAC */
|
|
OSSL_PARAM params[2], *p = params;
|
|
|
|
/* Get the MAC */
|
|
mac->alloced = 0;
|
|
|
|
*p++ = OSSL_PARAM_construct_octet_ptr(OSSL_CIPHER_PARAM_TLS_MAC,
|
|
(void **)&mac->mac,
|
|
macsize);
|
|
*p = OSSL_PARAM_construct_end();
|
|
|
|
if (!EVP_CIPHER_CTX_get_params(ds, params)) {
|
|
/* Shouldn't normally happen */
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
}
|
|
} else {
|
|
if (EVP_Cipher(ds, rec->data, rec->input, (unsigned int)l) < 1) {
|
|
/* Shouldn't happen */
|
|
SSLfatal(s, SSL_AD_BAD_RECORD_MAC, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
if (!sending)
|
|
return ssl3_cbc_remove_padding_and_mac(&rec->length,
|
|
rec->orig_len,
|
|
rec->data,
|
|
(mac != NULL) ? &mac->mac : NULL,
|
|
(mac != NULL) ? &mac->alloced : NULL,
|
|
bs,
|
|
macsize,
|
|
SSL_CONNECTION_GET_CTX(s)->libctx);
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
#define MAX_PADDING 256
|
|
/*-
|
|
* tls1_enc encrypts/decrypts |n_recs| in |recs|. Calls SSLfatal on internal
|
|
* error, but not otherwise. It is the responsibility of the caller to report
|
|
* a bad_record_mac - if appropriate (DTLS just drops the record).
|
|
*
|
|
* Returns:
|
|
* 0: if the record is publicly invalid, or an internal error, or AEAD
|
|
* decryption failed, or Encrypt-then-mac decryption failed.
|
|
* 1: Success or Mac-then-encrypt decryption failed (MAC will be randomised)
|
|
*/
|
|
int tls1_enc(SSL_CONNECTION *s, SSL3_RECORD *recs, size_t n_recs, int sending,
|
|
SSL_MAC_BUF *macs, size_t macsize)
|
|
{
|
|
EVP_CIPHER_CTX *ds;
|
|
size_t reclen[SSL_MAX_PIPELINES];
|
|
unsigned char buf[SSL_MAX_PIPELINES][EVP_AEAD_TLS1_AAD_LEN];
|
|
int i, pad = 0, tmpr;
|
|
size_t bs, ctr, padnum, loop;
|
|
unsigned char padval;
|
|
const EVP_CIPHER *enc;
|
|
int tlstree_enc = sending ? (s->mac_flags & SSL_MAC_FLAG_WRITE_MAC_TLSTREE)
|
|
: (s->mac_flags & SSL_MAC_FLAG_READ_MAC_TLSTREE);
|
|
|
|
if (n_recs == 0) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
if (sending) {
|
|
if (EVP_MD_CTX_get0_md(s->write_hash)) {
|
|
int n = EVP_MD_CTX_get_size(s->write_hash);
|
|
if (!ossl_assert(n >= 0)) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
}
|
|
ds = s->enc_write_ctx;
|
|
if (s->enc_write_ctx == NULL)
|
|
enc = NULL;
|
|
else {
|
|
int ivlen;
|
|
|
|
enc = EVP_CIPHER_CTX_get0_cipher(s->enc_write_ctx);
|
|
/* For TLSv1.1 and later explicit IV */
|
|
if (SSL_USE_EXPLICIT_IV(s)
|
|
&& EVP_CIPHER_get_mode(enc) == EVP_CIPH_CBC_MODE)
|
|
ivlen = EVP_CIPHER_get_iv_length(enc);
|
|
else
|
|
ivlen = 0;
|
|
if (ivlen > 1) {
|
|
for (ctr = 0; ctr < n_recs; ctr++) {
|
|
if (recs[ctr].data != recs[ctr].input) {
|
|
/*
|
|
* we can't write into the input stream: Can this ever
|
|
* happen?? (steve)
|
|
*/
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
} else if (RAND_bytes_ex(SSL_CONNECTION_GET_CTX(s)->libctx,
|
|
recs[ctr].input,
|
|
ivlen, 0) <= 0) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
if (EVP_MD_CTX_get0_md(s->read_hash)) {
|
|
int n = EVP_MD_CTX_get_size(s->read_hash);
|
|
if (!ossl_assert(n >= 0)) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
}
|
|
ds = s->enc_read_ctx;
|
|
if (s->enc_read_ctx == NULL)
|
|
enc = NULL;
|
|
else
|
|
enc = EVP_CIPHER_CTX_get0_cipher(s->enc_read_ctx);
|
|
}
|
|
|
|
if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) {
|
|
for (ctr = 0; ctr < n_recs; ctr++) {
|
|
memmove(recs[ctr].data, recs[ctr].input, recs[ctr].length);
|
|
recs[ctr].input = recs[ctr].data;
|
|
}
|
|
} else {
|
|
int provided = (EVP_CIPHER_get0_provider(enc) != NULL);
|
|
|
|
bs = EVP_CIPHER_get_block_size(EVP_CIPHER_CTX_get0_cipher(ds));
|
|
|
|
if (n_recs > 1) {
|
|
if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ds))
|
|
& EVP_CIPH_FLAG_PIPELINE) == 0) {
|
|
/*
|
|
* We shouldn't have been called with pipeline data if the
|
|
* cipher doesn't support pipelining
|
|
*/
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_PIPELINE_FAILURE);
|
|
return 0;
|
|
}
|
|
}
|
|
for (ctr = 0; ctr < n_recs; ctr++) {
|
|
reclen[ctr] = recs[ctr].length;
|
|
|
|
if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ds))
|
|
& EVP_CIPH_FLAG_AEAD_CIPHER) != 0) {
|
|
unsigned char *seq;
|
|
|
|
seq = sending ? RECORD_LAYER_get_write_sequence(&s->rlayer)
|
|
: RECORD_LAYER_get_read_sequence(&s->rlayer);
|
|
|
|
if (SSL_CONNECTION_IS_DTLS(s)) {
|
|
/* DTLS does not support pipelining */
|
|
unsigned char dtlsseq[8], *p = dtlsseq;
|
|
|
|
s2n(sending ? DTLS_RECORD_LAYER_get_w_epoch(&s->rlayer) :
|
|
DTLS_RECORD_LAYER_get_r_epoch(&s->rlayer), p);
|
|
memcpy(p, &seq[2], 6);
|
|
memcpy(buf[ctr], dtlsseq, 8);
|
|
} else {
|
|
memcpy(buf[ctr], seq, 8);
|
|
for (i = 7; i >= 0; i--) { /* increment */
|
|
++seq[i];
|
|
if (seq[i] != 0)
|
|
break;
|
|
}
|
|
}
|
|
|
|
buf[ctr][8] = recs[ctr].type;
|
|
buf[ctr][9] = (unsigned char)(s->version >> 8);
|
|
buf[ctr][10] = (unsigned char)(s->version);
|
|
buf[ctr][11] = (unsigned char)(recs[ctr].length >> 8);
|
|
buf[ctr][12] = (unsigned char)(recs[ctr].length & 0xff);
|
|
pad = EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_AEAD_TLS1_AAD,
|
|
EVP_AEAD_TLS1_AAD_LEN, buf[ctr]);
|
|
if (pad <= 0) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
if (sending) {
|
|
reclen[ctr] += pad;
|
|
recs[ctr].length += pad;
|
|
}
|
|
|
|
} else if ((bs != 1) && sending && !provided) {
|
|
/*
|
|
* We only do this for legacy ciphers. Provided ciphers add the
|
|
* padding on the provider side.
|
|
*/
|
|
padnum = bs - (reclen[ctr] % bs);
|
|
|
|
/* Add weird padding of up to 256 bytes */
|
|
|
|
if (padnum > MAX_PADDING) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
/* we need to add 'padnum' padding bytes of value padval */
|
|
padval = (unsigned char)(padnum - 1);
|
|
for (loop = reclen[ctr]; loop < reclen[ctr] + padnum; loop++)
|
|
recs[ctr].input[loop] = padval;
|
|
reclen[ctr] += padnum;
|
|
recs[ctr].length += padnum;
|
|
}
|
|
|
|
if (!sending) {
|
|
if (reclen[ctr] == 0 || reclen[ctr] % bs != 0) {
|
|
/* Publicly invalid */
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
if (n_recs > 1) {
|
|
unsigned char *data[SSL_MAX_PIPELINES];
|
|
|
|
/* Set the output buffers */
|
|
for (ctr = 0; ctr < n_recs; ctr++) {
|
|
data[ctr] = recs[ctr].data;
|
|
}
|
|
if (EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_OUTPUT_BUFS,
|
|
(int)n_recs, data) <= 0) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_PIPELINE_FAILURE);
|
|
return 0;
|
|
}
|
|
/* Set the input buffers */
|
|
for (ctr = 0; ctr < n_recs; ctr++) {
|
|
data[ctr] = recs[ctr].input;
|
|
}
|
|
if (EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_INPUT_BUFS,
|
|
(int)n_recs, data) <= 0
|
|
|| EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_SET_PIPELINE_INPUT_LENS,
|
|
(int)n_recs, reclen) <= 0) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_PIPELINE_FAILURE);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (!SSL_CONNECTION_IS_DTLS(s) && tlstree_enc) {
|
|
unsigned char *seq;
|
|
int decrement_seq = 0;
|
|
|
|
/*
|
|
* When sending, seq is incremented after MAC calculation.
|
|
* So if we are in ETM mode, we use seq 'as is' in the ctrl-function.
|
|
* Otherwise we have to decrease it in the implementation
|
|
*/
|
|
if (sending && !SSL_WRITE_ETM(s))
|
|
decrement_seq = 1;
|
|
|
|
seq = sending ? RECORD_LAYER_get_write_sequence(&s->rlayer)
|
|
: RECORD_LAYER_get_read_sequence(&s->rlayer);
|
|
if (EVP_CIPHER_CTX_ctrl(ds, EVP_CTRL_TLSTREE, decrement_seq, seq) <= 0) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (provided) {
|
|
int outlen;
|
|
|
|
/* Provided cipher - we do not support pipelining on this path */
|
|
if (n_recs > 1) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
if (!EVP_CipherUpdate(ds, recs[0].data, &outlen, recs[0].input,
|
|
(unsigned int)reclen[0]))
|
|
return 0;
|
|
recs[0].length = outlen;
|
|
|
|
/*
|
|
* The length returned from EVP_CipherUpdate above is the actual
|
|
* payload length. We need to adjust the data/input ptr to skip over
|
|
* any explicit IV
|
|
*/
|
|
if (!sending) {
|
|
if (EVP_CIPHER_get_mode(enc) == EVP_CIPH_GCM_MODE) {
|
|
recs[0].data += EVP_GCM_TLS_EXPLICIT_IV_LEN;
|
|
recs[0].input += EVP_GCM_TLS_EXPLICIT_IV_LEN;
|
|
} else if (EVP_CIPHER_get_mode(enc) == EVP_CIPH_CCM_MODE) {
|
|
recs[0].data += EVP_CCM_TLS_EXPLICIT_IV_LEN;
|
|
recs[0].input += EVP_CCM_TLS_EXPLICIT_IV_LEN;
|
|
} else if (bs != 1 && SSL_USE_EXPLICIT_IV(s)) {
|
|
recs[0].data += bs;
|
|
recs[0].input += bs;
|
|
recs[0].orig_len -= bs;
|
|
}
|
|
|
|
/* Now get a pointer to the MAC (if applicable) */
|
|
if (macs != NULL) {
|
|
OSSL_PARAM params[2], *p = params;
|
|
|
|
/* Get the MAC */
|
|
macs[0].alloced = 0;
|
|
|
|
*p++ = OSSL_PARAM_construct_octet_ptr(OSSL_CIPHER_PARAM_TLS_MAC,
|
|
(void **)&macs[0].mac,
|
|
macsize);
|
|
*p = OSSL_PARAM_construct_end();
|
|
|
|
if (!EVP_CIPHER_CTX_get_params(ds, params)) {
|
|
/* Shouldn't normally happen */
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR,
|
|
ERR_R_INTERNAL_ERROR);
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
/* Legacy cipher */
|
|
|
|
tmpr = EVP_Cipher(ds, recs[0].data, recs[0].input,
|
|
(unsigned int)reclen[0]);
|
|
if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ds))
|
|
& EVP_CIPH_FLAG_CUSTOM_CIPHER) != 0
|
|
? (tmpr < 0)
|
|
: (tmpr == 0)) {
|
|
/* AEAD can fail to verify MAC */
|
|
return 0;
|
|
}
|
|
|
|
if (!sending) {
|
|
for (ctr = 0; ctr < n_recs; ctr++) {
|
|
/* Adjust the record to remove the explicit IV/MAC/Tag */
|
|
if (EVP_CIPHER_get_mode(enc) == EVP_CIPH_GCM_MODE) {
|
|
recs[ctr].data += EVP_GCM_TLS_EXPLICIT_IV_LEN;
|
|
recs[ctr].input += EVP_GCM_TLS_EXPLICIT_IV_LEN;
|
|
recs[ctr].length -= EVP_GCM_TLS_EXPLICIT_IV_LEN;
|
|
} else if (EVP_CIPHER_get_mode(enc) == EVP_CIPH_CCM_MODE) {
|
|
recs[ctr].data += EVP_CCM_TLS_EXPLICIT_IV_LEN;
|
|
recs[ctr].input += EVP_CCM_TLS_EXPLICIT_IV_LEN;
|
|
recs[ctr].length -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
|
|
} else if (bs != 1 && SSL_USE_EXPLICIT_IV(s)) {
|
|
if (recs[ctr].length < bs)
|
|
return 0;
|
|
recs[ctr].data += bs;
|
|
recs[ctr].input += bs;
|
|
recs[ctr].length -= bs;
|
|
recs[ctr].orig_len -= bs;
|
|
}
|
|
|
|
/*
|
|
* If using Mac-then-encrypt, then this will succeed but
|
|
* with a random MAC if padding is invalid
|
|
*/
|
|
if (!tls1_cbc_remove_padding_and_mac(&recs[ctr].length,
|
|
recs[ctr].orig_len,
|
|
recs[ctr].data,
|
|
(macs != NULL) ? &macs[ctr].mac : NULL,
|
|
(macs != NULL) ? &macs[ctr].alloced
|
|
: NULL,
|
|
bs,
|
|
pad ? (size_t)pad : macsize,
|
|
(EVP_CIPHER_get_flags(enc)
|
|
& EVP_CIPH_FLAG_AEAD_CIPHER) != 0,
|
|
SSL_CONNECTION_GET_CTX(s)->libctx))
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* ssl3_cbc_record_digest_supported returns 1 iff |ctx| uses a hash function
|
|
* which ssl3_cbc_digest_record supports.
|
|
*/
|
|
char ssl3_cbc_record_digest_supported(const EVP_MD_CTX *ctx)
|
|
{
|
|
switch (EVP_MD_CTX_get_type(ctx)) {
|
|
case NID_md5:
|
|
case NID_sha1:
|
|
case NID_sha224:
|
|
case NID_sha256:
|
|
case NID_sha384:
|
|
case NID_sha512:
|
|
return 1;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int n_ssl3_mac(SSL_CONNECTION *sc, SSL3_RECORD *rec, unsigned char *md,
|
|
int sending)
|
|
{
|
|
unsigned char *mac_sec, *seq;
|
|
const EVP_MD_CTX *hash;
|
|
unsigned char *p, rec_char;
|
|
size_t md_size;
|
|
size_t npad;
|
|
int t;
|
|
|
|
if (sending) {
|
|
mac_sec = &(sc->s3.write_mac_secret[0]);
|
|
seq = RECORD_LAYER_get_write_sequence(&sc->rlayer);
|
|
hash = sc->write_hash;
|
|
} else {
|
|
mac_sec = &(sc->s3.read_mac_secret[0]);
|
|
seq = RECORD_LAYER_get_read_sequence(&sc->rlayer);
|
|
hash = sc->read_hash;
|
|
}
|
|
|
|
t = EVP_MD_CTX_get_size(hash);
|
|
if (t < 0)
|
|
return 0;
|
|
md_size = t;
|
|
npad = (48 / md_size) * md_size;
|
|
|
|
if (!sending
|
|
&& EVP_CIPHER_CTX_get_mode(sc->enc_read_ctx) == EVP_CIPH_CBC_MODE
|
|
&& ssl3_cbc_record_digest_supported(hash)) {
|
|
#ifdef OPENSSL_NO_DEPRECATED_3_0
|
|
return 0;
|
|
#else
|
|
/*
|
|
* This is a CBC-encrypted record. We must avoid leaking any
|
|
* timing-side channel information about how many blocks of data we
|
|
* are hashing because that gives an attacker a timing-oracle.
|
|
*/
|
|
|
|
/*-
|
|
* npad is, at most, 48 bytes and that's with MD5:
|
|
* 16 + 48 + 8 (sequence bytes) + 1 + 2 = 75.
|
|
*
|
|
* With SHA-1 (the largest hash speced for SSLv3) the hash size
|
|
* goes up 4, but npad goes down by 8, resulting in a smaller
|
|
* total size.
|
|
*/
|
|
unsigned char header[75];
|
|
size_t j = 0;
|
|
memcpy(header + j, mac_sec, md_size);
|
|
j += md_size;
|
|
memcpy(header + j, ssl3_pad_1, npad);
|
|
j += npad;
|
|
memcpy(header + j, seq, 8);
|
|
j += 8;
|
|
header[j++] = rec->type;
|
|
header[j++] = (unsigned char)(rec->length >> 8);
|
|
header[j++] = (unsigned char)(rec->length & 0xff);
|
|
|
|
/* Final param == is SSLv3 */
|
|
if (ssl3_cbc_digest_record(EVP_MD_CTX_get0_md(hash),
|
|
md, &md_size,
|
|
header, rec->input,
|
|
rec->length, rec->orig_len,
|
|
mac_sec, md_size, 1) <= 0)
|
|
return 0;
|
|
#endif
|
|
} else {
|
|
unsigned int md_size_u;
|
|
/* Chop the digest off the end :-) */
|
|
EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
|
|
|
|
if (md_ctx == NULL)
|
|
return 0;
|
|
|
|
rec_char = rec->type;
|
|
p = md;
|
|
s2n(rec->length, p);
|
|
if (EVP_MD_CTX_copy_ex(md_ctx, hash) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, mac_sec, md_size) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, ssl3_pad_1, npad) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, seq, 8) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, &rec_char, 1) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, md, 2) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, rec->input, rec->length) <= 0
|
|
|| EVP_DigestFinal_ex(md_ctx, md, NULL) <= 0
|
|
|| EVP_MD_CTX_copy_ex(md_ctx, hash) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, mac_sec, md_size) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, ssl3_pad_2, npad) <= 0
|
|
|| EVP_DigestUpdate(md_ctx, md, md_size) <= 0
|
|
|| EVP_DigestFinal_ex(md_ctx, md, &md_size_u) <= 0) {
|
|
EVP_MD_CTX_free(md_ctx);
|
|
return 0;
|
|
}
|
|
|
|
EVP_MD_CTX_free(md_ctx);
|
|
}
|
|
|
|
ssl3_record_sequence_update(seq);
|
|
return 1;
|
|
}
|
|
|
|
int tls1_mac_old(SSL_CONNECTION *sc, SSL3_RECORD *rec, unsigned char *md,
|
|
int sending)
|
|
{
|
|
unsigned char *seq;
|
|
EVP_MD_CTX *hash;
|
|
size_t md_size;
|
|
int i;
|
|
EVP_MD_CTX *hmac = NULL, *mac_ctx;
|
|
unsigned char header[13];
|
|
int stream_mac = sending ? (sc->mac_flags & SSL_MAC_FLAG_WRITE_MAC_STREAM)
|
|
: (sc->mac_flags & SSL_MAC_FLAG_READ_MAC_STREAM);
|
|
int tlstree_mac = sending ? (sc->mac_flags & SSL_MAC_FLAG_WRITE_MAC_TLSTREE)
|
|
: (sc->mac_flags & SSL_MAC_FLAG_READ_MAC_TLSTREE);
|
|
int t;
|
|
int ret = 0;
|
|
|
|
if (sending) {
|
|
seq = RECORD_LAYER_get_write_sequence(&sc->rlayer);
|
|
hash = sc->write_hash;
|
|
} else {
|
|
seq = RECORD_LAYER_get_read_sequence(&sc->rlayer);
|
|
hash = sc->read_hash;
|
|
}
|
|
|
|
t = EVP_MD_CTX_get_size(hash);
|
|
if (!ossl_assert(t >= 0))
|
|
return 0;
|
|
md_size = t;
|
|
|
|
/* I should fix this up TLS TLS TLS TLS TLS XXXXXXXX */
|
|
if (stream_mac) {
|
|
mac_ctx = hash;
|
|
} else {
|
|
hmac = EVP_MD_CTX_new();
|
|
if (hmac == NULL || !EVP_MD_CTX_copy(hmac, hash)) {
|
|
goto end;
|
|
}
|
|
mac_ctx = hmac;
|
|
}
|
|
|
|
if (!SSL_CONNECTION_IS_DTLS(sc) && tlstree_mac
|
|
&& EVP_MD_CTX_ctrl(mac_ctx, EVP_MD_CTRL_TLSTREE, 0, seq) <= 0) {
|
|
goto end;
|
|
}
|
|
|
|
if (SSL_CONNECTION_IS_DTLS(sc)) {
|
|
unsigned char dtlsseq[8], *p = dtlsseq;
|
|
|
|
s2n(sending ? DTLS_RECORD_LAYER_get_w_epoch(&sc->rlayer) :
|
|
DTLS_RECORD_LAYER_get_r_epoch(&sc->rlayer), p);
|
|
memcpy(p, &seq[2], 6);
|
|
|
|
memcpy(header, dtlsseq, 8);
|
|
} else
|
|
memcpy(header, seq, 8);
|
|
|
|
header[8] = rec->type;
|
|
header[9] = (unsigned char)(sc->version >> 8);
|
|
header[10] = (unsigned char)(sc->version);
|
|
header[11] = (unsigned char)(rec->length >> 8);
|
|
header[12] = (unsigned char)(rec->length & 0xff);
|
|
|
|
if (!sending && !SSL_READ_ETM(sc)
|
|
&& EVP_CIPHER_CTX_get_mode(sc->enc_read_ctx) == EVP_CIPH_CBC_MODE
|
|
&& ssl3_cbc_record_digest_supported(mac_ctx)) {
|
|
OSSL_PARAM tls_hmac_params[2], *p = tls_hmac_params;
|
|
|
|
*p++ = OSSL_PARAM_construct_size_t(OSSL_MAC_PARAM_TLS_DATA_SIZE,
|
|
&rec->orig_len);
|
|
*p++ = OSSL_PARAM_construct_end();
|
|
|
|
if (!EVP_PKEY_CTX_set_params(EVP_MD_CTX_get_pkey_ctx(mac_ctx),
|
|
tls_hmac_params)) {
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
if (EVP_DigestSignUpdate(mac_ctx, header, sizeof(header)) <= 0
|
|
|| EVP_DigestSignUpdate(mac_ctx, rec->input, rec->length) <= 0
|
|
|| EVP_DigestSignFinal(mac_ctx, md, &md_size) <= 0) {
|
|
goto end;
|
|
}
|
|
|
|
OSSL_TRACE_BEGIN(TLS) {
|
|
BIO_printf(trc_out, "seq:\n");
|
|
BIO_dump_indent(trc_out, seq, 8, 4);
|
|
BIO_printf(trc_out, "rec:\n");
|
|
BIO_dump_indent(trc_out, rec->data, rec->length, 4);
|
|
} OSSL_TRACE_END(TLS);
|
|
|
|
if (!SSL_CONNECTION_IS_DTLS(sc)) {
|
|
for (i = 7; i >= 0; i--) {
|
|
++seq[i];
|
|
if (seq[i] != 0)
|
|
break;
|
|
}
|
|
}
|
|
OSSL_TRACE_BEGIN(TLS) {
|
|
BIO_printf(trc_out, "md:\n");
|
|
BIO_dump_indent(trc_out, md, md_size, 4);
|
|
} OSSL_TRACE_END(TLS);
|
|
ret = 1;
|
|
end:
|
|
EVP_MD_CTX_free(hmac);
|
|
return ret;
|
|
}
|
|
|
|
int dtls1_process_record(SSL_CONNECTION *s, DTLS1_BITMAP *bitmap)
|
|
{
|
|
int i;
|
|
int enc_err;
|
|
SSL_SESSION *sess;
|
|
SSL3_RECORD *rr;
|
|
int imac_size;
|
|
size_t mac_size = 0;
|
|
unsigned char md[EVP_MAX_MD_SIZE];
|
|
size_t max_plain_length = SSL3_RT_MAX_PLAIN_LENGTH;
|
|
SSL_MAC_BUF macbuf = { NULL, 0 };
|
|
int ret = 0;
|
|
SSL *ssl = SSL_CONNECTION_GET_SSL(s);
|
|
|
|
rr = RECORD_LAYER_get_rrec(&s->rlayer);
|
|
sess = s->session;
|
|
|
|
/*
|
|
* At this point, s->rlayer.packet_length == SSL3_RT_HEADER_LNGTH + rr->length,
|
|
* and we have that many bytes in s->rlayer.packet
|
|
*/
|
|
rr->input = &(s->rrlmethod->get0_packet(s->rrl)[DTLS1_RT_HEADER_LENGTH]);
|
|
|
|
/*
|
|
* ok, we can now read from 's->rlayer.packet' data into 'rr'. rr->input
|
|
* points at rr->length bytes, which need to be copied into rr->data by
|
|
* either the decryption or by the decompression. When the data is 'copied'
|
|
* into the rr->data buffer, rr->input will be pointed at the new buffer
|
|
*/
|
|
|
|
/*
|
|
* We now have - encrypted [ MAC [ compressed [ plain ] ] ] rr->length
|
|
* bytes of encrypted compressed stuff.
|
|
*/
|
|
|
|
/* check is not needed I believe */
|
|
if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
|
|
SSLfatal(s, SSL_AD_RECORD_OVERFLOW, SSL_R_ENCRYPTED_LENGTH_TOO_LONG);
|
|
return 0;
|
|
}
|
|
|
|
/* decrypt in place in 'rr->input' */
|
|
rr->data = rr->input;
|
|
rr->orig_len = rr->length;
|
|
|
|
if (s->read_hash != NULL) {
|
|
const EVP_MD *tmpmd = EVP_MD_CTX_get0_md(s->read_hash);
|
|
|
|
if (tmpmd != NULL) {
|
|
imac_size = EVP_MD_get_size(tmpmd);
|
|
if (!ossl_assert(imac_size >= 0 && imac_size <= EVP_MAX_MD_SIZE)) {
|
|
SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
|
|
return 0;
|
|
}
|
|
mac_size = (size_t)imac_size;
|
|
}
|
|
}
|
|
|
|
if (SSL_READ_ETM(s) && s->read_hash) {
|
|
unsigned char *mac;
|
|
|
|
if (rr->orig_len < mac_size) {
|
|
SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_TOO_SHORT);
|
|
return 0;
|
|
}
|
|
rr->length -= mac_size;
|
|
mac = rr->data + rr->length;
|
|
i = ssl->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ );
|
|
if (i == 0 || CRYPTO_memcmp(md, mac, (size_t)mac_size) != 0) {
|
|
SSLfatal(s, SSL_AD_BAD_RECORD_MAC,
|
|
SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC);
|
|
return 0;
|
|
}
|
|
/*
|
|
* We've handled the mac now - there is no MAC inside the encrypted
|
|
* record
|
|
*/
|
|
mac_size = 0;
|
|
}
|
|
|
|
/*
|
|
* Set a mark around the packet decryption attempt. This is DTLS, so
|
|
* bad packets are just ignored, and we don't want to leave stray
|
|
* errors in the queue from processing bogus junk that we ignored.
|
|
*/
|
|
ERR_set_mark();
|
|
enc_err = ssl->method->ssl3_enc->enc(s, rr, 1, 0, &macbuf, mac_size);
|
|
|
|
/*-
|
|
* enc_err is:
|
|
* 0: if the record is publicly invalid, or an internal error, or AEAD
|
|
* decryption failed, or ETM decryption failed.
|
|
* 1: Success or MTE decryption failed (MAC will be randomised)
|
|
*/
|
|
if (enc_err == 0) {
|
|
ERR_pop_to_mark();
|
|
if (ossl_statem_in_error(s)) {
|
|
/* SSLfatal() got called */
|
|
goto end;
|
|
}
|
|
/* For DTLS we simply ignore bad packets. */
|
|
rr->length = 0;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto end;
|
|
}
|
|
ERR_clear_last_mark();
|
|
OSSL_TRACE_BEGIN(TLS) {
|
|
BIO_printf(trc_out, "dec %zd\n", rr->length);
|
|
BIO_dump_indent(trc_out, rr->data, rr->length, 4);
|
|
} OSSL_TRACE_END(TLS);
|
|
|
|
/* r->length is now the compressed data plus mac */
|
|
if ((sess != NULL)
|
|
&& !SSL_READ_ETM(s)
|
|
&& (s->enc_read_ctx != NULL)
|
|
&& (EVP_MD_CTX_get0_md(s->read_hash) != NULL)) {
|
|
/* s->read_hash != NULL => mac_size != -1 */
|
|
|
|
i = ssl->method->ssl3_enc->mac(s, rr, md, 0 /* not send */ );
|
|
if (i == 0 || macbuf.mac == NULL
|
|
|| CRYPTO_memcmp(md, macbuf.mac, mac_size) != 0)
|
|
enc_err = 0;
|
|
if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH + mac_size)
|
|
enc_err = 0;
|
|
}
|
|
|
|
if (enc_err == 0) {
|
|
/* decryption failed, silently discard message */
|
|
rr->length = 0;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto end;
|
|
}
|
|
|
|
/* r->length is now just compressed */
|
|
if (s->expand != NULL) {
|
|
if (rr->length > SSL3_RT_MAX_COMPRESSED_LENGTH) {
|
|
SSLfatal(s, SSL_AD_RECORD_OVERFLOW,
|
|
SSL_R_COMPRESSED_LENGTH_TOO_LONG);
|
|
goto end;
|
|
}
|
|
if (!ssl3_do_uncompress(s, rr)) {
|
|
SSLfatal(s, SSL_AD_DECOMPRESSION_FAILURE, SSL_R_BAD_DECOMPRESSION);
|
|
goto end;
|
|
}
|
|
}
|
|
|
|
/* use current Max Fragment Length setting if applicable */
|
|
if (s->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(s->session))
|
|
max_plain_length = GET_MAX_FRAGMENT_LENGTH(s->session);
|
|
|
|
/* send overflow if the plaintext is too long now it has passed MAC */
|
|
if (rr->length > max_plain_length) {
|
|
SSLfatal(s, SSL_AD_RECORD_OVERFLOW, SSL_R_DATA_LENGTH_TOO_LONG);
|
|
goto end;
|
|
}
|
|
|
|
rr->off = 0;
|
|
/*-
|
|
* So at this point the following is true
|
|
* ssl->s3.rrec.type is the type of record
|
|
* ssl->s3.rrec.length == number of bytes in record
|
|
* ssl->s3.rrec.off == offset to first valid byte
|
|
* ssl->s3.rrec.data == where to take bytes from, increment
|
|
* after use :-).
|
|
*/
|
|
|
|
/* we have pulled in a full packet so zero things */
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
|
|
/* Mark receipt of record. */
|
|
dtls1_record_bitmap_update(s, bitmap);
|
|
|
|
ret = 1;
|
|
end:
|
|
if (macbuf.alloced)
|
|
OPENSSL_free(macbuf.mac);
|
|
return ret;
|
|
}
|
|
|
|
/*
|
|
* Retrieve a buffered record that belongs to the current epoch, i.e. processed
|
|
*/
|
|
#define dtls1_get_processed_record(s) \
|
|
dtls1_retrieve_buffered_record((s), \
|
|
&(DTLS_RECORD_LAYER_get_processed_rcds(&s->rlayer)))
|
|
|
|
/*-
|
|
* Call this to get a new input record.
|
|
* It will return <= 0 if more data is needed, normally due to an error
|
|
* or non-blocking IO.
|
|
* When it finishes, one packet has been decoded and can be found in
|
|
* ssl->s3.rrec.type - is the type of record
|
|
* ssl->s3.rrec.data - data
|
|
* ssl->s3.rrec.length - number of bytes
|
|
*/
|
|
/* used only by dtls1_read_bytes */
|
|
int dtls1_get_record(SSL_CONNECTION *s)
|
|
{
|
|
int ssl_major, ssl_minor;
|
|
int rret;
|
|
size_t more, n;
|
|
SSL3_RECORD *rr;
|
|
unsigned char *p = NULL;
|
|
unsigned short version;
|
|
DTLS1_BITMAP *bitmap;
|
|
unsigned int is_next_epoch;
|
|
SSL *ssl = SSL_CONNECTION_GET_SSL(s);
|
|
|
|
rr = RECORD_LAYER_get_rrec(&s->rlayer);
|
|
|
|
again:
|
|
/*
|
|
* The epoch may have changed. If so, process all the pending records.
|
|
* This is a non-blocking operation.
|
|
*/
|
|
if (!dtls1_process_buffered_records(s)) {
|
|
/* SSLfatal() already called */
|
|
return -1;
|
|
}
|
|
|
|
/* if we're renegotiating, then there may be buffered records */
|
|
if (dtls1_get_processed_record(s))
|
|
return 1;
|
|
|
|
/* get something from the wire */
|
|
|
|
/* check if we have the header */
|
|
if ((RECORD_LAYER_get_rstate(&s->rlayer) != SSL_ST_READ_BODY) ||
|
|
(s->rrlmethod->get_packet_length(s->rrl) < DTLS1_RT_HEADER_LENGTH)) {
|
|
rret = HANDLE_RLAYER_RETURN(s,
|
|
s->rrlmethod->read_n(s->rrl, DTLS1_RT_HEADER_LENGTH,
|
|
SSL3_BUFFER_get_len(s->rrlmethod->get0_rbuf(s->rrl)), 0, 1, &n));
|
|
/* read timeout is handled by dtls1_read_bytes */
|
|
if (rret <= 0) {
|
|
/* SSLfatal() already called if appropriate */
|
|
return rret; /* error or non-blocking */
|
|
}
|
|
|
|
/* this packet contained a partial record, dump it */
|
|
if (s->rrlmethod->get_packet_length(s->rrl) != DTLS1_RT_HEADER_LENGTH) {
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto again;
|
|
}
|
|
|
|
RECORD_LAYER_set_rstate(&s->rlayer, SSL_ST_READ_BODY);
|
|
|
|
p = s->rrlmethod->get0_packet(s->rrl);
|
|
|
|
if (s->msg_callback)
|
|
s->msg_callback(0, 0, SSL3_RT_HEADER, p, DTLS1_RT_HEADER_LENGTH,
|
|
ssl, s->msg_callback_arg);
|
|
|
|
/* Pull apart the header into the DTLS1_RECORD */
|
|
rr->type = *(p++);
|
|
ssl_major = *(p++);
|
|
ssl_minor = *(p++);
|
|
version = (ssl_major << 8) | ssl_minor;
|
|
|
|
/* sequence number is 64 bits, with top 2 bytes = epoch */
|
|
n2s(p, rr->epoch);
|
|
|
|
memcpy(&(RECORD_LAYER_get_read_sequence(&s->rlayer)[2]), p, 6);
|
|
p += 6;
|
|
|
|
n2s(p, rr->length);
|
|
rr->read = 0;
|
|
|
|
/*
|
|
* Lets check the version. We tolerate alerts that don't have the exact
|
|
* version number (e.g. because of protocol version errors)
|
|
*/
|
|
if (!s->first_packet && rr->type != SSL3_RT_ALERT) {
|
|
if (version != s->version) {
|
|
/* unexpected version, silently discard */
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto again;
|
|
}
|
|
}
|
|
|
|
if ((version & 0xff00) != (s->version & 0xff00)) {
|
|
/* wrong version, silently discard record */
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto again;
|
|
}
|
|
|
|
if (rr->length > SSL3_RT_MAX_ENCRYPTED_LENGTH) {
|
|
/* record too long, silently discard it */
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto again;
|
|
}
|
|
|
|
/* If received packet overflows own-client Max Fragment Length setting */
|
|
if (s->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(s->session)
|
|
&& rr->length > GET_MAX_FRAGMENT_LENGTH(s->session) + SSL3_RT_MAX_ENCRYPTED_OVERHEAD) {
|
|
/* record too long, silently discard it */
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto again;
|
|
}
|
|
|
|
/* now s->rlayer.rstate == SSL_ST_READ_BODY */
|
|
}
|
|
|
|
/* s->rlayer.rstate == SSL_ST_READ_BODY, get and decode the data */
|
|
|
|
if (rr->length >
|
|
s->rrlmethod->get_packet_length(s->rrl) - DTLS1_RT_HEADER_LENGTH) {
|
|
/* now s->rlayer.packet_length == DTLS1_RT_HEADER_LENGTH */
|
|
more = rr->length;
|
|
rret = HANDLE_RLAYER_RETURN(s,
|
|
s->rrlmethod->read_n(s->rrl, more, more, 1, 1, &n));
|
|
/* this packet contained a partial record, dump it */
|
|
if (rret <= 0 || n != more) {
|
|
if (ossl_statem_in_error(s)) {
|
|
/* read_n() called SSLfatal() */
|
|
return -1;
|
|
}
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto again;
|
|
}
|
|
|
|
/*
|
|
* now n == rr->length, and s->rlayer.packet_length ==
|
|
* DTLS1_RT_HEADER_LENGTH + rr->length
|
|
*/
|
|
}
|
|
/* set state for later operations */
|
|
RECORD_LAYER_set_rstate(&s->rlayer, SSL_ST_READ_HEADER);
|
|
|
|
/* match epochs. NULL means the packet is dropped on the floor */
|
|
bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch);
|
|
if (bitmap == NULL) {
|
|
rr->length = 0;
|
|
s->rrlmethod->reset_packet_length(s->rrl); /* dump this record */
|
|
goto again; /* get another record */
|
|
}
|
|
#ifndef OPENSSL_NO_SCTP
|
|
/* Only do replay check if no SCTP bio */
|
|
if (!BIO_dgram_is_sctp(SSL_get_rbio(ssl))) {
|
|
#endif
|
|
/* Check whether this is a repeat, or aged record. */
|
|
if (!dtls1_record_replay_check(s, bitmap)) {
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl); /* dump this record */
|
|
goto again; /* get another record */
|
|
}
|
|
#ifndef OPENSSL_NO_SCTP
|
|
}
|
|
#endif
|
|
|
|
/* just read a 0 length packet */
|
|
if (rr->length == 0) {
|
|
rr->read = 1;
|
|
goto again;
|
|
}
|
|
|
|
/*
|
|
* If this record is from the next epoch (either HM or ALERT), and a
|
|
* handshake is currently in progress, buffer it since it cannot be
|
|
* processed at this time.
|
|
*/
|
|
if (is_next_epoch) {
|
|
if ((SSL_in_init(ssl) || ossl_statem_get_in_handshake(s))) {
|
|
if (dtls1_buffer_record (s,
|
|
&(DTLS_RECORD_LAYER_get_unprocessed_rcds(&s->rlayer)),
|
|
rr->seq_num) < 0) {
|
|
/* SSLfatal() already called */
|
|
return -1;
|
|
}
|
|
}
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl);
|
|
goto again;
|
|
}
|
|
|
|
if (!dtls1_process_record(s, bitmap)) {
|
|
if (ossl_statem_in_error(s)) {
|
|
/* dtls1_process_record() called SSLfatal */
|
|
return -1;
|
|
}
|
|
rr->length = 0;
|
|
rr->read = 1;
|
|
s->rrlmethod->reset_packet_length(s->rrl); /* dump this record */
|
|
goto again; /* get another record */
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
int dtls_buffer_listen_record(SSL_CONNECTION *s, size_t len, unsigned char *seq,
|
|
size_t off)
|
|
{
|
|
SSL3_RECORD *rr;
|
|
|
|
rr = RECORD_LAYER_get_rrec(&s->rlayer);
|
|
memset(rr, 0, sizeof(SSL3_RECORD));
|
|
|
|
rr->length = len;
|
|
rr->type = SSL3_RT_HANDSHAKE;
|
|
memcpy(rr->seq_num, seq, sizeof(rr->seq_num));
|
|
rr->off = off;
|
|
|
|
s->rrlmethod->set0_packet(s->rrl, s->rrlmethod->get0_rbuf(s->rrl)->buf,
|
|
DTLS1_RT_HEADER_LENGTH + len);
|
|
rr->data = s->rrlmethod->get0_packet(s->rrl) + DTLS1_RT_HEADER_LENGTH;
|
|
|
|
if (dtls1_buffer_record(s, &(s->rlayer.d->processed_rcds),
|
|
SSL3_RECORD_get_seq_num(s->rlayer.rrec)) <= 0) {
|
|
/* SSLfatal() already called */
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|