2022-04-07 19:30:30 +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
|
|
|
|
*/
|
|
|
|
|
2022-05-06 22:10:00 +08:00
|
|
|
#ifndef OSSL_INTERNAL_RECORDMETHOD_H
|
|
|
|
# define OSSL_INTERNAL_RECORDMETHOD_H
|
|
|
|
# pragma once
|
|
|
|
|
|
|
|
# include <openssl/ssl.h>
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We use the term "record" here to refer to a packet of data. Records are
|
|
|
|
* typically protected via a cipher and MAC, or an AEAD cipher (although not
|
|
|
|
* always). This usage of the term record is consistent with the TLS concept.
|
|
|
|
* In QUIC the term "record" is not used but it is analogous to the QUIC term
|
|
|
|
* "packet". The interface in this file applies to all protocols that protect
|
|
|
|
* records/packets of data, i.e. (D)TLS and QUIC. The term record is used to
|
|
|
|
* refer to both contexts.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Types of QUIC record layer;
|
|
|
|
*
|
|
|
|
* QUIC reuses the TLS handshake for agreeing secrets. An SSL object representing
|
|
|
|
* a QUIC connection will have an additional SSL object internally representing
|
|
|
|
* the TLS state of the QUIC handshake. This internal TLS is referred to as
|
|
|
|
* QUIC-TLS in this file.
|
|
|
|
* "Records" output from QUIC-TLS contains standard TLS handshake messages and
|
|
|
|
* are *not* encrypted directly but are instead wrapped up in plaintext
|
|
|
|
* CRYPTO frames. These CRYPTO frames could be collected together with other
|
|
|
|
* QUIC frames into a single QUIC packet. The QUIC record layer will then
|
|
|
|
* encrypt the whole packet.
|
|
|
|
*
|
|
|
|
* So we have:
|
|
|
|
* QUIC-TLS record layer: outputs plaintext CRYPTO frames containing TLS
|
|
|
|
* handshake messages only.
|
|
|
|
* QUIC record layer: outputs encrypted packets which may contain CRYPTO frames
|
|
|
|
* or any other type of QUIC frame.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An OSSL_RECORD_METHOD is a protcol specific method which provides the
|
|
|
|
* functions for reading and writing records for that protocol. Which
|
|
|
|
* OSSL_RECORD_METHOD to use for a given protocol is defined by the SSL_METHOD.
|
|
|
|
*/
|
|
|
|
typedef struct ossl_record_method_st OSSL_RECORD_METHOD;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An OSSL_RECORD_LAYER is just an externally defined opaque pointer created by
|
|
|
|
* the method
|
|
|
|
*/
|
|
|
|
typedef struct ossl_record_layer_st OSSL_RECORD_LAYER;
|
|
|
|
|
|
|
|
|
2022-05-06 22:10:00 +08:00
|
|
|
# define OSSL_RECORD_ROLE_CLIENT 0
|
|
|
|
# define OSSL_RECORD_ROLE_SERVER 1
|
2022-04-07 19:30:30 +08:00
|
|
|
|
2022-05-06 22:10:00 +08:00
|
|
|
# define OSSL_RECORD_DIRECTION_READ 0
|
|
|
|
# define OSSL_RECORD_DIRECTION_WRITE 1
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Protection level. For <= TLSv1.2 only "NONE" and "APPLICATION" are used.
|
|
|
|
*/
|
2022-05-06 22:10:00 +08:00
|
|
|
# define OSSL_RECORD_PROTECTION_LEVEL_NONE 0
|
|
|
|
# define OSSL_RECORD_PROTECTION_LEVEL_EARLY 1
|
|
|
|
# define OSSL_RECORD_PROTECTION_LEVEL_HANDSHAKE 2
|
|
|
|
# define OSSL_RECORD_PROTECTION_LEVEL_APPLICATION 3
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
|
2022-05-06 22:10:00 +08:00
|
|
|
# define OSSL_RECORD_RETURN_SUCCESS 1
|
|
|
|
# define OSSL_RECORD_RETURN_RETRY 0
|
|
|
|
# define OSSL_RECORD_RETURN_NON_FATAL_ERR -1
|
|
|
|
# define OSSL_RECORD_RETURN_FATAL -2
|
|
|
|
# define OSSL_RECORD_RETURN_EOF -3
|
2022-04-08 00:35:36 +08:00
|
|
|
|
2022-04-07 19:30:30 +08:00
|
|
|
/*
|
|
|
|
* Template for creating a record. A record consists of the |type| of data it
|
|
|
|
* will contain (e.g. alert, handshake, application data, etc) along with an
|
|
|
|
* array of buffers in |bufs| of size |numbufs|. There is a corresponding array
|
|
|
|
* of buffer lengths in |buflens|. Concatenating all of the buffer data together
|
|
|
|
* would give you the complete plaintext payload to be sent in a single record.
|
|
|
|
*/
|
|
|
|
struct ossl_record_template_st {
|
|
|
|
int type;
|
|
|
|
void **bufs;
|
|
|
|
size_t *buflens;
|
|
|
|
size_t numbufs;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct ossl_record_template_st OSSL_RECORD_TEMPLATE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Rather than a "method" approach, we could make this fetchable - Should we?
|
|
|
|
* There could be some complexity in finding suitable record layer implementations
|
|
|
|
* e.g. we need to find one that matches the negotiated protocol, cipher,
|
|
|
|
* extensions, etc. The selection_cb approach given above doesn't work so well
|
|
|
|
* if unknown third party providers with OSSL_RECORD_METHOD implementations are
|
|
|
|
* loaded.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this becomes public API then we will need functions to create and
|
|
|
|
* free an OSSL_RECORD_METHOD, as well as functions to get/set the various
|
|
|
|
* function pointers....unless we make it fetchable.
|
|
|
|
*/
|
|
|
|
struct ossl_record_method_st {
|
|
|
|
/*
|
|
|
|
* Create a new OSSL_RECORD_LAYER object for handling the protocol version
|
|
|
|
* set by |vers|. |role| is 0 for client and 1 for server. |direction|
|
|
|
|
* indicates either read or write. |level| is the protection level as
|
|
|
|
* described above. |settings| are mandatory settings that will cause the
|
|
|
|
* new() call to fail if they are not understood (for example to require
|
|
|
|
* Encrypt-Then-Mac support). |options| are optional settings that will not
|
|
|
|
* cause the new() call to fail if they are not understood (for example
|
|
|
|
* whether to use "read ahead" or not).
|
|
|
|
*
|
|
|
|
* The BIO in |transport| is the BIO for the underlying transport layer.
|
|
|
|
* Where the direction is "read", then this BIO will only ever be used for
|
|
|
|
* reading data. Where the direction is "write", then this BIO will only
|
|
|
|
* every be used for writing data.
|
|
|
|
*
|
|
|
|
* An SSL object will always have at least 2 OSSL_RECORD_LAYER objects in
|
|
|
|
* force at any one time (one for reading and one for writing). In some
|
|
|
|
* protocols more than 2 might be used (e.g. in DTLS for retransmitting
|
|
|
|
* messages from an earlier epoch).
|
2022-05-12 23:35:52 +08:00
|
|
|
*
|
|
|
|
* The created OSSL_RECORD_LAYER object is stored in *ret on success (or
|
|
|
|
* NULL otherwise). The return value will be one of
|
|
|
|
* OSSL_RECORD_RETURN_SUCCESS, OSSL_RECORD_RETURN_FATAL or
|
|
|
|
* OSSL_RECORD_RETURN_NON_FATAL. A non-fatal return means that creation of
|
|
|
|
* the record layer has failed because it is unsuitable, but an alternative
|
|
|
|
* record layer can be tried instead.
|
2022-04-07 19:30:30 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2022-04-18 15:57:32 +08:00
|
|
|
* TODO(RECLAYER): Will have to be something other than EVP_CIPHER if we
|
|
|
|
* make this fetchable
|
|
|
|
* TODO(RECLAYER): mactype should not be an int
|
2022-04-07 19:30:30 +08:00
|
|
|
*/
|
2022-05-12 23:35:52 +08:00
|
|
|
int (*new_record_layer)(OSSL_LIB_CTX *libctx,
|
|
|
|
const char *propq, int vers,
|
|
|
|
int role, int direction,
|
2022-06-08 21:52:44 +08:00
|
|
|
int level,
|
|
|
|
unsigned int epoch,
|
|
|
|
unsigned char *key,
|
2022-05-12 23:35:52 +08:00
|
|
|
size_t keylen,
|
|
|
|
unsigned char *iv,
|
|
|
|
size_t ivlen,
|
|
|
|
unsigned char *mackey,
|
|
|
|
size_t mackeylen,
|
|
|
|
const EVP_CIPHER *ciph,
|
|
|
|
size_t taglen,
|
|
|
|
/* TODO(RECLAYER): This probably should not be an int */
|
|
|
|
int mactype,
|
|
|
|
const EVP_MD *md,
|
|
|
|
const SSL_COMP *comp,
|
2022-05-17 23:16:40 +08:00
|
|
|
BIO *prev,
|
|
|
|
BIO *transport,
|
|
|
|
BIO *next,
|
|
|
|
BIO_ADDR *local,
|
2022-05-12 23:35:52 +08:00
|
|
|
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 **ret);
|
2022-05-17 23:16:40 +08:00
|
|
|
int (*free)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
2022-04-07 19:38:13 +08:00
|
|
|
int (*reset)(OSSL_RECORD_LAYER *rl); /* Is this needed? */
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/* Returns 1 if we have unprocessed data buffered or 0 otherwise */
|
2022-04-07 19:38:13 +08:00
|
|
|
int (*unprocessed_read_pending)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
/*
|
|
|
|
* Returns 1 if we have processed data buffered that can be read or 0 otherwise
|
|
|
|
* - not necessarily app data
|
|
|
|
*/
|
2022-04-07 19:38:13 +08:00
|
|
|
int (*processed_read_pending)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The amount of processed app data that is internally bufferred and
|
|
|
|
* available to read
|
|
|
|
*/
|
2022-04-07 19:38:13 +08:00
|
|
|
size_t (*app_data_pending)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
2022-04-07 19:38:13 +08:00
|
|
|
int (*write_pending)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find out the maximum amount of plaintext data that the record layer is
|
|
|
|
* prepared to write in a single record. When calling write_records it is
|
|
|
|
* the caller's responsibility to ensure that no record template exceeds
|
|
|
|
* this maximum when calling write_records.
|
|
|
|
*/
|
2022-04-07 19:38:13 +08:00
|
|
|
size_t (*get_max_record_len)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Find out the maximum number of records that the record layer is prepared
|
|
|
|
* to process in a single call to write_records. It is the caller's
|
|
|
|
* responsibility to ensure that no call to write_records exceeds this
|
|
|
|
* number of records.
|
|
|
|
*/
|
2022-04-07 19:38:13 +08:00
|
|
|
size_t (*get_max_records)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Write |numtempl| records from the array of record templates pointed to
|
|
|
|
* by |templates|. Each record should be no longer than the value returned
|
|
|
|
* by get_max_record_len(), and there should be no more records than the
|
|
|
|
* value returned by get_max_records().
|
|
|
|
* |allowance| is the maximum amount of "on-the-wire" data that is allowed
|
|
|
|
* to be sent at the moment (including all QUIC headers, but excluding any
|
|
|
|
* UDP/IP headers). After a successful or retry return |*sent| will
|
|
|
|
* be updated with the amount of data that has been sent so far. In the case
|
|
|
|
* of a retry this could be 0.
|
|
|
|
* Where possible the caller will attempt to ensure that all records are the
|
|
|
|
* same length, except the last record. This may not always be possible so
|
|
|
|
* the record method implementation should not rely on this being the case.
|
|
|
|
* In the event of a retry the caller should call retry_write_records()
|
|
|
|
* to try again. No more calls to write_records() should be attempted until
|
|
|
|
* retry_write_records() returns success.
|
|
|
|
* Buffers allocated for the record templates can be freed immediately after
|
|
|
|
* write_records() returns - even in the case a retry.
|
|
|
|
* The record templates represent the plaintext payload. The encrypted
|
|
|
|
* output is written to the |transport| BIO.
|
|
|
|
* Returns:
|
|
|
|
* 1 on success
|
|
|
|
* 0 on retry
|
|
|
|
* -1 on failure
|
|
|
|
*/
|
2022-04-07 19:38:13 +08:00
|
|
|
int (*write_records)(OSSL_RECORD_LAYER *rl, OSSL_RECORD_TEMPLATE **templates,
|
|
|
|
size_t numtempl, size_t allowance, size_t *sent);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Retry a previous call to write_records. The caller should continue to
|
|
|
|
* call this until the function returns with success or failure. After
|
|
|
|
* each retry more of the data may have been incrementally sent. |allowance|
|
|
|
|
* is the amount of "on-the-wire" data that is allowed to be sent at the
|
|
|
|
* moment. After a successful or retry return |*sent| will
|
|
|
|
* be updated with the amount of data that has been sent by this call to
|
|
|
|
* retry_write_records().
|
|
|
|
* Returns:
|
|
|
|
* 1 on success
|
|
|
|
* 0 on retry
|
|
|
|
* -1 on failure
|
|
|
|
*/
|
2022-04-07 19:38:13 +08:00
|
|
|
int (*retry_write_records)(OSSL_RECORD_LAYER *rl, size_t allowance,
|
|
|
|
size_t *sent);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read a record and return the record layer version and record type in
|
|
|
|
* the |rversion| and |type| parameters. |*data| is set to point to a
|
|
|
|
* record layer buffer containing the record payload data and |*datalen|
|
|
|
|
* is filled in with the length of that data. The |epoch| and |seq_num|
|
|
|
|
* values are only used if DTLS has been negotiated. In that case they are
|
|
|
|
* filled in with the epoch and sequence number from the record.
|
|
|
|
* An opaque record layer handle for the record is returned in |*rechandle|
|
|
|
|
* which is used in a subsequent call to |release_record|. The buffer must
|
|
|
|
* remain available until release_record is called.
|
|
|
|
*
|
|
|
|
* Internally the the OSSL_RECORD_METHOD the implementation may read/process
|
|
|
|
* multiple records in one go and buffer them.
|
|
|
|
*/
|
2022-04-07 19:38:13 +08:00
|
|
|
int (*read_record)(OSSL_RECORD_LAYER *rl, void **rechandle, int *rversion,
|
|
|
|
int *type, unsigned char **data, size_t *datalen,
|
2022-05-26 00:30:33 +08:00
|
|
|
uint16_t *epoch, unsigned char *seq_num);
|
2022-04-07 19:30:30 +08:00
|
|
|
/*
|
|
|
|
* Release a buffer associated with a record previously read with
|
|
|
|
* read_record. Records are guaranteed to be released in the order that they
|
|
|
|
* are read.
|
|
|
|
*/
|
2022-04-12 21:50:28 +08:00
|
|
|
int (*release_record)(OSSL_RECORD_LAYER *rl, void *rechandle);
|
2022-04-07 19:30:30 +08:00
|
|
|
|
2022-04-08 00:35:36 +08:00
|
|
|
/*
|
|
|
|
* In the event that a fatal error is returned from the functions above then
|
|
|
|
* get_alert_code() can be called to obtain a more details identifier for
|
|
|
|
* the error. In (D)TLS this is the alert description code.
|
|
|
|
*/
|
|
|
|
int (*get_alert_code)(OSSL_RECORD_LAYER *rl);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the transport BIO from the one originally set in the
|
|
|
|
* new_record_layer call
|
|
|
|
*/
|
|
|
|
int (*set1_bio)(OSSL_RECORD_LAYER *rl, BIO *bio);
|
|
|
|
|
2022-05-13 00:21:25 +08:00
|
|
|
/* Called when protocol negotiation selects a protocol version to use */
|
|
|
|
int (*set_protocol_version)(OSSL_RECORD_LAYER *rl, int version);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Whether we are allowed to receive unencrypted alerts, even if we might
|
|
|
|
* otherwise expect encrypted records. Ignored by protocol versions where
|
|
|
|
* this isn't relevant
|
|
|
|
*/
|
|
|
|
void (*set_plain_alerts)(OSSL_RECORD_LAYER *rl, int allow);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called immediately after creation of the recory layer if we are in a
|
|
|
|
* first handshake. Also called at the end of the first handshake
|
|
|
|
*/
|
|
|
|
void (*set_first_handshake)(OSSL_RECORD_LAYER *rl, int first);
|
|
|
|
|
2022-05-26 00:30:33 +08:00
|
|
|
/*
|
|
|
|
* Set the maximum number of pipelines that the record layer should process.
|
|
|
|
* The default is 1.
|
|
|
|
*/
|
|
|
|
void (*set_max_pipelines)(OSSL_RECORD_LAYER *rl, size_t max_pipelines);
|
|
|
|
|
2022-04-08 00:35:36 +08:00
|
|
|
/*
|
|
|
|
* TODO(RECLAYER): Remove these. These function pointers are temporary hacks
|
|
|
|
* during the record layer refactoring. They need to be removed before the
|
|
|
|
* refactor is complete.
|
|
|
|
*/
|
|
|
|
int (*read_n)(OSSL_RECORD_LAYER *rl, size_t n, size_t max, int extend,
|
|
|
|
int clearold, size_t *readbytes);
|
|
|
|
SSL3_BUFFER *(*get0_rbuf)(OSSL_RECORD_LAYER *rl);
|
|
|
|
unsigned char *(*get0_packet)(OSSL_RECORD_LAYER *rl);
|
|
|
|
void (*set0_packet)(OSSL_RECORD_LAYER *rl, unsigned char *packet,
|
|
|
|
size_t packetlen);
|
|
|
|
size_t (*get_packet_length)(OSSL_RECORD_LAYER *rl);
|
|
|
|
void (*reset_packet_length)(OSSL_RECORD_LAYER *rl);
|
2022-04-07 19:30:30 +08:00
|
|
|
};
|
2022-04-08 00:35:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* Standard built-in record methods */
|
|
|
|
extern const OSSL_RECORD_METHOD ossl_tls_record_method;
|
2022-05-11 01:50:00 +08:00
|
|
|
# ifndef OPENSSL_NO_KTLS
|
|
|
|
extern const OSSL_RECORD_METHOD ossl_ktls_record_method;
|
|
|
|
# endif
|
2022-05-06 22:10:00 +08:00
|
|
|
extern const OSSL_RECORD_METHOD ossl_dtls_record_method;
|
|
|
|
|
|
|
|
#endif /* !defined(OSSL_INTERNAL_RECORDMETHOD_H) */
|