2022-05-09 19:00:54 +08:00
|
|
|
/*
|
|
|
|
* Copyright 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 <openssl/bio.h>
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include "../../ssl_local.h"
|
|
|
|
#include "../record_local.h"
|
|
|
|
|
2022-07-27 21:44:28 +08:00
|
|
|
typedef struct dtls_bitmap_st {
|
|
|
|
/* Track 64 packets */
|
|
|
|
uint64_t map;
|
|
|
|
/* Max record number seen so far, 64-bit value in big-endian encoding */
|
|
|
|
unsigned char max_seq_num[SEQ_NUM_SIZE];
|
|
|
|
} DTLS_BITMAP;
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
/* Protocol version specific function pointers */
|
|
|
|
struct record_functions_st
|
|
|
|
{
|
2022-05-12 23:35:52 +08:00
|
|
|
/*
|
|
|
|
* Returns either OSSL_RECORD_RETURN_SUCCESS, OSSL_RECORD_RETURN_FATAL or
|
|
|
|
* OSSL_RECORD_RETURN_NON_FATAL_ERR if we can keep trying to find an
|
|
|
|
* alternative record layer.
|
|
|
|
*/
|
2022-05-09 19:00:54 +08:00
|
|
|
int (*set_crypto_state)(OSSL_RECORD_LAYER *rl, int level,
|
|
|
|
unsigned char *key, size_t keylen,
|
|
|
|
unsigned char *iv, size_t ivlen,
|
|
|
|
unsigned char *mackey, size_t mackeylen,
|
|
|
|
const EVP_CIPHER *ciph,
|
|
|
|
size_t taglen,
|
|
|
|
int mactype,
|
|
|
|
const EVP_MD *md,
|
2022-09-15 23:03:02 +08:00
|
|
|
COMP_METHOD *comp);
|
2022-05-13 00:21:25 +08:00
|
|
|
|
2022-05-12 23:35:52 +08:00
|
|
|
/*
|
|
|
|
* Returns:
|
|
|
|
* 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)
|
|
|
|
*/
|
2022-05-09 19:00:54 +08:00
|
|
|
int (*cipher)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *recs, size_t n_recs,
|
2022-05-26 00:30:33 +08:00
|
|
|
int sending, SSL_MAC_BUF *macs, size_t macsize);
|
2022-05-12 23:35:52 +08:00
|
|
|
/* Returns 1 for success or 0 for error */
|
2022-05-09 19:00:54 +08:00
|
|
|
int (*mac)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec, unsigned char *md,
|
2022-05-26 00:30:33 +08:00
|
|
|
int sending);
|
2022-05-13 00:21:25 +08:00
|
|
|
|
|
|
|
/* Return 1 for success or 0 for error */
|
|
|
|
int (*set_protocol_version)(OSSL_RECORD_LAYER *rl, int version);
|
|
|
|
|
2022-09-12 22:50:26 +08:00
|
|
|
/* Read related functions */
|
|
|
|
|
|
|
|
int (*read_n)(OSSL_RECORD_LAYER *rl, size_t n, size_t max, int extend,
|
|
|
|
int clearold, size_t *readbytes);
|
|
|
|
|
|
|
|
int (*get_more_records)(OSSL_RECORD_LAYER *rl);
|
|
|
|
|
2022-05-13 00:21:25 +08:00
|
|
|
/* Return 1 for success or 0 for error */
|
|
|
|
int (*validate_record_header)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
|
|
|
|
|
|
|
|
/* Return 1 for success or 0 for error */
|
2022-05-26 00:30:33 +08:00
|
|
|
int (*post_process_record)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
|
2022-09-12 22:50:26 +08:00
|
|
|
|
|
|
|
/* Write related functions */
|
|
|
|
|
|
|
|
size_t (*get_max_records)(OSSL_RECORD_LAYER *rl, int type, size_t len,
|
|
|
|
size_t maxfrag, size_t *preffrag);
|
|
|
|
|
|
|
|
/* Return 1 for success or 0 for error */
|
|
|
|
int (*write_records)(OSSL_RECORD_LAYER *rl, OSSL_RECORD_TEMPLATE *templates,
|
|
|
|
size_t numtempl);
|
2022-05-09 19:00:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ossl_record_layer_st
|
|
|
|
{
|
|
|
|
OSSL_LIB_CTX *libctx;
|
|
|
|
const char *propq;
|
|
|
|
int isdtls;
|
|
|
|
int version;
|
|
|
|
int role;
|
|
|
|
int direction;
|
2022-05-25 22:16:48 +08:00
|
|
|
int level;
|
2022-06-08 21:52:44 +08:00
|
|
|
/* DTLS only */
|
2022-07-27 21:37:27 +08:00
|
|
|
uint16_t epoch;
|
2022-05-17 23:16:40 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A BIO containing any data read in the previous epoch that was destined
|
|
|
|
* for this epoch
|
|
|
|
*/
|
|
|
|
BIO *prev;
|
|
|
|
|
|
|
|
/* The transport BIO */
|
2022-05-09 19:00:54 +08:00
|
|
|
BIO *bio;
|
2022-05-17 23:16:40 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A BIO where we will send any data read by us that is destined for the
|
|
|
|
* next epoch.
|
|
|
|
*/
|
|
|
|
BIO *next;
|
|
|
|
|
2022-07-22 00:01:54 +08:00
|
|
|
/* Types match the equivalent fields in the SSL object */
|
2022-05-09 19:00:54 +08:00
|
|
|
uint64_t options;
|
|
|
|
uint32_t mode;
|
|
|
|
|
2022-08-25 22:05:13 +08:00
|
|
|
/* write IO goes into here */
|
|
|
|
SSL3_BUFFER wbuf[SSL_MAX_PIPELINES + 1];
|
|
|
|
|
|
|
|
/* Next wbuf with pending data still to write */
|
|
|
|
size_t nextwbuf;
|
|
|
|
|
2022-08-26 00:34:48 +08:00
|
|
|
/* How many pipelines can be used to write data */
|
|
|
|
size_t numwpipes;
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
/* read IO goes into here */
|
|
|
|
SSL3_BUFFER rbuf;
|
|
|
|
/* each decoded record goes in here */
|
|
|
|
SSL3_RECORD rrec[SSL_MAX_PIPELINES];
|
|
|
|
|
|
|
|
/* How many records have we got available in the rrec bufer */
|
|
|
|
size_t num_recs;
|
|
|
|
|
|
|
|
/* The record number in the rrec buffer that can be read next */
|
|
|
|
size_t curr_rec;
|
|
|
|
|
|
|
|
/* The number of records that have been released via tls_release_record */
|
|
|
|
size_t num_released;
|
|
|
|
|
|
|
|
/* where we are when reading */
|
|
|
|
int rstate;
|
|
|
|
|
|
|
|
/* used internally to point at a raw packet */
|
|
|
|
unsigned char *packet;
|
|
|
|
size_t packet_length;
|
|
|
|
|
2022-05-24 23:00:50 +08:00
|
|
|
/* Sequence number for the next record */
|
|
|
|
unsigned char sequence[SEQ_NUM_SIZE];
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
int alert;
|
|
|
|
|
|
|
|
/*
|
2022-07-22 00:01:54 +08:00
|
|
|
* Read as many input bytes as possible (for non-blocking reads)
|
2022-05-09 19:00:54 +08:00
|
|
|
*/
|
|
|
|
int read_ahead;
|
|
|
|
|
|
|
|
/* The number of consecutive empty records we have received */
|
|
|
|
size_t empty_record_count;
|
|
|
|
|
2022-08-30 23:26:33 +08:00
|
|
|
/*
|
|
|
|
* Do we need to send a prefix empty record before application data as a
|
|
|
|
* countermeasure against known-IV weakness (necessary for SSLv3 and
|
|
|
|
* TLSv1.0)
|
|
|
|
*/
|
|
|
|
int need_empty_fragments;
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
/* cryptographic state */
|
2022-05-26 00:19:33 +08:00
|
|
|
EVP_CIPHER_CTX *enc_ctx;
|
2022-05-13 00:21:25 +08:00
|
|
|
|
2022-09-14 22:24:10 +08:00
|
|
|
/* Explicit IV length */
|
|
|
|
size_t eivlen;
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
/* used for mac generation */
|
2022-05-26 00:19:33 +08:00
|
|
|
EVP_MD_CTX *md_ctx;
|
|
|
|
|
2022-09-14 22:24:10 +08:00
|
|
|
/* compress/uncompress */
|
|
|
|
COMP_CTX *compctx;
|
2022-05-09 19:00:54 +08:00
|
|
|
|
2022-05-13 00:21:25 +08:00
|
|
|
/* Set to 1 if this is the first handshake. 0 otherwise */
|
|
|
|
int is_first_handshake;
|
|
|
|
|
2022-05-23 18:31:53 +08:00
|
|
|
/* The negotiated maximum fragment length */
|
|
|
|
unsigned int max_frag_len;
|
|
|
|
|
2022-05-25 22:16:48 +08:00
|
|
|
/* The maxium amount of early data we can receive/send */
|
|
|
|
uint32_t max_early_data;
|
|
|
|
|
|
|
|
/* The amount of early data that we have sent/received */
|
|
|
|
size_t early_data_count;
|
|
|
|
|
2022-08-31 23:39:36 +08:00
|
|
|
/* TLSv1.3 record padding */
|
|
|
|
size_t block_padding;
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
/* Only used by SSLv3 */
|
|
|
|
unsigned char mac_secret[EVP_MAX_MD_SIZE];
|
|
|
|
|
2022-05-20 23:54:12 +08:00
|
|
|
/* TLSv1.0/TLSv1.1/TLSv1.2 */
|
|
|
|
int use_etm;
|
|
|
|
|
2022-05-26 00:30:33 +08:00
|
|
|
/* Flags for GOST ciphers */
|
|
|
|
int stream_mac;
|
|
|
|
int tlstree;
|
|
|
|
|
2022-05-13 00:21:25 +08:00
|
|
|
/* TLSv1.3 fields */
|
|
|
|
/* static IV */
|
2022-05-09 19:00:54 +08:00
|
|
|
unsigned char iv[EVP_MAX_IV_LENGTH];
|
2022-05-13 00:21:25 +08:00
|
|
|
/* static read IV */
|
|
|
|
unsigned char read_iv[EVP_MAX_IV_LENGTH];
|
|
|
|
int allow_plain_alerts;
|
|
|
|
|
|
|
|
/* TLS "any" fields */
|
|
|
|
/* Set to true if this is the first record in a connection */
|
|
|
|
unsigned int is_first_record;
|
2022-05-09 19:00:54 +08:00
|
|
|
|
|
|
|
size_t taglen;
|
|
|
|
|
2022-06-24 23:45:14 +08:00
|
|
|
/* DTLS received handshake records (processed and unprocessed) */
|
2022-06-02 23:29:04 +08:00
|
|
|
record_pqueue unprocessed_rcds;
|
|
|
|
record_pqueue processed_rcds;
|
|
|
|
|
2022-06-24 23:45:14 +08:00
|
|
|
/* records being received in the current epoch */
|
2022-07-27 21:44:28 +08:00
|
|
|
DTLS_BITMAP bitmap;
|
2022-06-24 23:45:14 +08:00
|
|
|
/* renegotiation starts a new set of sequence numbers */
|
2022-07-27 21:44:28 +08:00
|
|
|
DTLS_BITMAP next_bitmap;
|
2022-06-24 23:45:14 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Whether we are currently in a hanshake or not. Only maintained for DTLS
|
|
|
|
*/
|
|
|
|
int in_init;
|
|
|
|
|
2022-05-25 22:16:48 +08:00
|
|
|
/* Callbacks */
|
|
|
|
void *cbarg;
|
2022-05-25 23:41:30 +08:00
|
|
|
OSSL_FUNC_rlayer_skip_early_data_fn *skip_early_data;
|
|
|
|
OSSL_FUNC_rlayer_msg_callback_fn *msg_callback;
|
2022-05-26 00:10:38 +08:00
|
|
|
OSSL_FUNC_rlayer_security_fn *security;
|
2022-08-31 22:41:16 +08:00
|
|
|
OSSL_FUNC_rlayer_padding_fn *padding;
|
2022-05-25 22:16:48 +08:00
|
|
|
|
2022-05-26 00:30:33 +08:00
|
|
|
size_t max_pipelines;
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
/* Function pointers for version specific functions */
|
|
|
|
struct record_functions_st *funcs;
|
|
|
|
};
|
|
|
|
|
2022-06-02 23:29:04 +08:00
|
|
|
typedef struct dtls_rlayer_record_data_st {
|
|
|
|
unsigned char *packet;
|
|
|
|
size_t packet_length;
|
|
|
|
SSL3_BUFFER rbuf;
|
|
|
|
SSL3_RECORD rrec;
|
|
|
|
} DTLS_RLAYER_RECORD_DATA;
|
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
extern struct record_functions_st ssl_3_0_funcs;
|
|
|
|
extern struct record_functions_st tls_1_funcs;
|
|
|
|
extern struct record_functions_st tls_1_3_funcs;
|
|
|
|
extern struct record_functions_st tls_any_funcs;
|
2022-06-08 21:52:44 +08:00
|
|
|
extern struct record_functions_st dtls_1_funcs;
|
|
|
|
extern struct record_functions_st dtls_any_funcs;
|
2022-05-09 19:00:54 +08:00
|
|
|
|
|
|
|
void ossl_rlayer_fatal(OSSL_RECORD_LAYER *rl, int al, int reason,
|
|
|
|
const char *fmt, ...);
|
|
|
|
|
2022-07-27 21:20:23 +08:00
|
|
|
#define RLAYERfatal(rl, al, r) RLAYERfatal_data((rl), (al), (r), NULL)
|
|
|
|
#define RLAYERfatal_data \
|
2022-05-09 19:00:54 +08:00
|
|
|
(ERR_new(), \
|
|
|
|
ERR_set_debug(OPENSSL_FILE, OPENSSL_LINE, OPENSSL_FUNC), \
|
|
|
|
ossl_rlayer_fatal)
|
|
|
|
|
2022-07-27 21:20:23 +08:00
|
|
|
#define RLAYER_USE_EXPLICIT_IV(rl) ((rl)->version == TLS1_1_VERSION \
|
|
|
|
|| (rl)->version == TLS1_2_VERSION \
|
|
|
|
|| (rl)->isdtls)
|
2022-05-20 00:11:13 +08:00
|
|
|
|
2022-05-09 19:00:54 +08:00
|
|
|
int ossl_set_tls_provider_parameters(OSSL_RECORD_LAYER *rl,
|
|
|
|
EVP_CIPHER_CTX *ctx,
|
|
|
|
const EVP_CIPHER *ciph,
|
2022-05-20 23:54:12 +08:00
|
|
|
const EVP_MD *md);
|
2022-05-09 19:00:54 +08:00
|
|
|
/* ssl3_cbc.c */
|
|
|
|
__owur char ssl3_cbc_record_digest_supported(const EVP_MD_CTX *ctx);
|
|
|
|
__owur int ssl3_cbc_digest_record(const EVP_MD *md,
|
|
|
|
unsigned char *md_out,
|
|
|
|
size_t *md_out_size,
|
|
|
|
const unsigned char *header,
|
|
|
|
const unsigned char *data,
|
|
|
|
size_t data_size,
|
|
|
|
size_t data_plus_mac_plus_padding_size,
|
|
|
|
const unsigned char *mac_secret,
|
|
|
|
size_t mac_secret_length, char is_sslv3);
|
2022-05-13 00:21:25 +08:00
|
|
|
|
|
|
|
int tls_default_read_n(OSSL_RECORD_LAYER *rl, size_t n, size_t max, int extend,
|
|
|
|
int clearold, size_t *readbytes);
|
2022-06-02 23:29:04 +08:00
|
|
|
int tls_get_more_records(OSSL_RECORD_LAYER *rl);
|
2022-06-08 21:52:44 +08:00
|
|
|
int dtls_get_more_records(OSSL_RECORD_LAYER *rl);
|
2022-05-13 00:21:25 +08:00
|
|
|
|
|
|
|
int tls_default_set_protocol_version(OSSL_RECORD_LAYER *rl, int version);
|
|
|
|
int tls_default_validate_record_header(OSSL_RECORD_LAYER *rl, SSL3_RECORD *re);
|
2022-06-08 21:52:44 +08:00
|
|
|
int tls_do_uncompress(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
|
2022-05-26 00:30:33 +08:00
|
|
|
int tls_default_post_process_record(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
|
|
|
|
int tls13_common_post_process_record(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
|
2022-05-13 00:21:25 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
tls_int_new_record_layer(OSSL_LIB_CTX *libctx, const char *propq, int vers,
|
|
|
|
int role, int direction, int level, unsigned char *key,
|
|
|
|
size_t keylen, unsigned char *iv, size_t ivlen,
|
|
|
|
unsigned char *mackey, size_t mackeylen,
|
|
|
|
const EVP_CIPHER *ciph, size_t taglen,
|
|
|
|
int mactype,
|
2022-09-15 23:03:02 +08:00
|
|
|
const EVP_MD *md, COMP_METHOD *comp, BIO *prev,
|
2022-05-17 23:16:40 +08:00
|
|
|
BIO *transport, BIO *next,
|
2022-05-13 00:21:25 +08:00
|
|
|
BIO_ADDR *local, BIO_ADDR *peer,
|
|
|
|
const OSSL_PARAM *settings, const OSSL_PARAM *options,
|
2022-05-25 22:16:48 +08:00
|
|
|
const OSSL_DISPATCH *fns, void *cbarg,
|
2022-05-26 00:30:33 +08:00
|
|
|
OSSL_RECORD_LAYER **retrl);
|
2022-05-17 23:16:40 +08:00
|
|
|
int tls_free(OSSL_RECORD_LAYER *rl);
|
2022-05-13 00:21:25 +08:00
|
|
|
int tls_reset(OSSL_RECORD_LAYER *rl);
|
|
|
|
int tls_unprocessed_read_pending(OSSL_RECORD_LAYER *rl);
|
|
|
|
int tls_processed_read_pending(OSSL_RECORD_LAYER *rl);
|
|
|
|
size_t tls_app_data_pending(OSSL_RECORD_LAYER *rl);
|
|
|
|
int tls_write_pending(OSSL_RECORD_LAYER *rl);
|
|
|
|
size_t tls_get_max_record_len(OSSL_RECORD_LAYER *rl);
|
2022-09-09 20:26:50 +08:00
|
|
|
size_t tls_get_max_records(OSSL_RECORD_LAYER *rl, int type, size_t len,
|
2022-09-01 04:03:22 +08:00
|
|
|
size_t maxfrag, size_t *preffrag);
|
2022-08-19 23:54:09 +08:00
|
|
|
int tls_write_records(OSSL_RECORD_LAYER *rl, OSSL_RECORD_TEMPLATE *templates,
|
|
|
|
size_t numtempl);
|
|
|
|
int tls_retry_write_records(OSSL_RECORD_LAYER *rl);
|
2022-05-13 00:21:25 +08:00
|
|
|
int tls_get_alert_code(OSSL_RECORD_LAYER *rl);
|
|
|
|
int tls_set1_bio(OSSL_RECORD_LAYER *rl, BIO *bio);
|
2022-07-27 21:20:23 +08:00
|
|
|
int tls_read_record(OSSL_RECORD_LAYER *rl, void **rechandle, int *rversion,
|
2022-05-13 00:21:25 +08:00
|
|
|
int *type, unsigned char **data, size_t *datalen,
|
2022-05-26 00:30:33 +08:00
|
|
|
uint16_t *epoch, unsigned char *seq_num);
|
2022-05-13 00:21:25 +08:00
|
|
|
int tls_release_record(OSSL_RECORD_LAYER *rl, void *rechandle);
|
|
|
|
int tls_default_set_protocol_version(OSSL_RECORD_LAYER *rl, int version);
|
|
|
|
int tls_set_protocol_version(OSSL_RECORD_LAYER *rl, int version);
|
|
|
|
void tls_set_plain_alerts(OSSL_RECORD_LAYER *rl, int allow);
|
|
|
|
void tls_set_first_handshake(OSSL_RECORD_LAYER *rl, int first);
|
2022-05-26 00:30:33 +08:00
|
|
|
void tls_set_max_pipelines(OSSL_RECORD_LAYER *rl, size_t max_pipelines);
|
2022-07-22 22:38:26 +08:00
|
|
|
void tls_get_state(OSSL_RECORD_LAYER *rl, const char **shortstr,
|
|
|
|
const char **longstr);
|
2022-07-26 21:34:38 +08:00
|
|
|
int tls_set_options(OSSL_RECORD_LAYER *rl, const OSSL_PARAM *options);
|
2022-09-15 23:03:02 +08:00
|
|
|
const COMP_METHOD *tls_get_compression(OSSL_RECORD_LAYER *rl);
|
2022-07-27 21:50:16 +08:00
|
|
|
int tls_setup_read_buffer(OSSL_RECORD_LAYER *rl);
|
2022-09-12 22:50:26 +08:00
|
|
|
int tls_setup_write_buffer(OSSL_RECORD_LAYER *rl, size_t numwpipes,
|
|
|
|
size_t firstlen, size_t nextlen);
|
|
|
|
|
|
|
|
int tls_write_records_multiblock(OSSL_RECORD_LAYER *rl,
|
|
|
|
OSSL_RECORD_TEMPLATE *templates,
|
|
|
|
size_t numtempl);
|
|
|
|
|
|
|
|
size_t tls_get_max_records_default(OSSL_RECORD_LAYER *rl, int type, size_t len,
|
|
|
|
size_t maxfrag, size_t *preffrag);
|
|
|
|
size_t tls_get_max_records_multiblock(OSSL_RECORD_LAYER *rl, int type,
|
|
|
|
size_t len, size_t maxfrag,
|
|
|
|
size_t *preffrag);
|
|
|
|
int tls_write_records_default(OSSL_RECORD_LAYER *rl,
|
|
|
|
OSSL_RECORD_TEMPLATE *templates,
|
|
|
|
size_t numtempl);
|