8facdb27cee14f7ed86da73d1c6568ddc683a59f
[openssl.git] / ssl / record / record.h
1 /*
2  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 typedef struct ssl_connection_st SSL_CONNECTION;
11 typedef struct ssl3_buffer_st SSL3_BUFFER;
12
13 #include <openssl/core_dispatch.h>
14 #include "recordmethod.h"
15
16 /*****************************************************************************
17  *                                                                           *
18  * These structures should be considered PRIVATE to the record layer. No     *
19  * non-record layer code should be using these structures in any way.        *
20  *                                                                           *
21  *****************************************************************************/
22
23 struct ssl3_buffer_st {
24     /* at least SSL3_RT_MAX_PACKET_SIZE bytes, see ssl3_setup_buffers() */
25     unsigned char *buf;
26     /* default buffer size (or 0 if no default set) */
27     size_t default_len;
28     /* buffer size */
29     size_t len;
30     /* where to 'copy from' */
31     size_t offset;
32     /* how many bytes left */
33     size_t left;
34     /* 'buf' is from application for KTLS */
35     int app_buffer;
36 };
37
38 #define SEQ_NUM_SIZE                            8
39
40 typedef struct ssl3_record_st {
41     /* Record layer version */
42     /* r */
43     int rec_version;
44     /* type of record */
45     /* r */
46     int type;
47     /* How many bytes available */
48     /* rw */
49     size_t length;
50     /*
51      * How many bytes were available before padding was removed? This is used
52      * to implement the MAC check in constant time for CBC records.
53      */
54     /* rw */
55     size_t orig_len;
56     /* read/write offset into 'buf' */
57     /* r */
58     size_t off;
59     /* pointer to the record data */
60     /* rw */
61     unsigned char *data;
62     /* where the decode bytes are */
63     /* rw */
64     unsigned char *input;
65     /* only used with decompression - malloc()ed */
66     /* r */
67     unsigned char *comp;
68     /* Whether the data from this record has already been read or not */
69     /* r */
70     unsigned int read;
71     /* epoch number, needed by DTLS1 */
72     /* r */
73     unsigned long epoch;
74     /* sequence number, needed by DTLS1 */
75     /* r */
76     unsigned char seq_num[SEQ_NUM_SIZE];
77 } SSL3_RECORD;
78
79 typedef struct tls_record_st {
80     void *rechandle;
81     int version;
82     int type;
83     /* The data buffer containing bytes from the record */
84     unsigned char *data;
85     /* Number of remaining to be read in the data buffer */
86     size_t length;
87     /* Offset into the data buffer where to start reading */
88     size_t off;
89     /* epoch number. DTLS only */
90     uint16_t epoch;
91     /* sequence number. DTLS only */
92     unsigned char seq_num[SEQ_NUM_SIZE];
93 #ifndef OPENSSL_NO_SCTP
94     struct bio_dgram_sctp_rcvinfo recordinfo;
95 #endif
96 } TLS_RECORD;
97
98 typedef struct dtls1_bitmap_st {
99     /* Track 32 packets on 32-bit systems and 64 - on 64-bit systems */
100     unsigned long map;
101     /* Max record number seen so far, 64-bit value in big-endian encoding */
102     unsigned char max_seq_num[SEQ_NUM_SIZE];
103 } DTLS1_BITMAP;
104
105 typedef struct record_pqueue_st {
106     unsigned short epoch;
107     struct pqueue_st *q;
108 } record_pqueue;
109
110 typedef struct dtls1_record_data_st {
111     unsigned char *packet;
112     size_t packet_length;
113     SSL3_BUFFER rbuf;
114     SSL3_RECORD rrec;
115 #ifndef OPENSSL_NO_SCTP
116     struct bio_dgram_sctp_rcvinfo recordinfo;
117 #endif
118 } DTLS1_RECORD_DATA;
119
120 typedef struct dtls_record_layer_st {
121     /*
122      * The current data and handshake epoch.  This is initially
123      * undefined, and starts at zero once the initial handshake is
124      * completed
125      */
126     unsigned short r_epoch;
127     unsigned short w_epoch;
128
129     /*
130      * Buffered application records. Only for records between CCS and
131      * Finished to prevent either protocol violation or unnecessary message
132      * loss.
133      */
134     record_pqueue buffered_app_data;
135     /* save last and current sequence numbers for retransmissions */
136     unsigned char last_write_sequence[8];
137     unsigned char curr_write_sequence[8];
138 } DTLS_RECORD_LAYER;
139
140 /*****************************************************************************
141  *                                                                           *
142  * This structure should be considered "opaque" to anything outside of the   *
143  * record layer. No non-record layer code should be accessing the members of *
144  * this structure.                                                           *
145  *                                                                           *
146  *****************************************************************************/
147
148 typedef struct record_layer_st {
149     /* The parent SSL_CONNECTION structure */
150     SSL_CONNECTION *s;
151
152     /* Method to use for the read record layer*/
153     const OSSL_RECORD_METHOD *rrlmethod;
154     /* The read record layer object itself */
155     OSSL_RECORD_LAYER *rrl;
156     /* BIO to store data destined for the next read record layer epoch */
157     BIO *rrlnext;
158     /* Default read buffer length to be passed to the record layer */
159     size_t default_read_buf_len;
160
161     /*
162      * Read as many input bytes as possible (for
163      * non-blocking reads)
164      */
165     int read_ahead;
166     /* How many pipelines can be used to write data */
167     size_t numwpipes;
168     /* write IO goes into here */
169     SSL3_BUFFER wbuf[SSL_MAX_PIPELINES];
170     /* number of bytes sent so far */
171     size_t wnum;
172     unsigned char handshake_fragment[4];
173     size_t handshake_fragment_len;
174     /* partial write - check the numbers match */
175     /* number bytes written */
176     size_t wpend_tot;
177     int wpend_type;
178     /* number of bytes submitted */
179     size_t wpend_ret;
180     const unsigned char *wpend_buf;
181     /* TODO(RECLAYER): Why do we need this */
182     unsigned char read_sequence[SEQ_NUM_SIZE];
183     unsigned char write_sequence[SEQ_NUM_SIZE];
184     /* Count of the number of consecutive warning alerts received */
185     unsigned int alert_count;
186     DTLS_RECORD_LAYER *d;
187
188     /* How many records we have read from the record layer */
189     size_t num_recs;
190     /* The next record from the record layer that we need to process */
191     size_t curr_rec;
192     /* Record layer data to be processed */
193     TLS_RECORD tlsrecs[SSL_MAX_PIPELINES];
194
195 } RECORD_LAYER;
196
197 /*****************************************************************************
198  *                                                                           *
199  * The following macros/functions represent the libssl internal API to the   *
200  * record layer. Any libssl code may call these functions/macros             *
201  *                                                                           *
202  *****************************************************************************/
203
204 struct ssl_mac_buf_st {
205     unsigned char *mac;
206     int alloced;
207 };
208 typedef struct ssl_mac_buf_st SSL_MAC_BUF;
209
210 #define MIN_SSL2_RECORD_LEN     9
211
212 #define RECORD_LAYER_set_read_ahead(rl, ra)     ((rl)->read_ahead = (ra))
213 #define RECORD_LAYER_get_read_ahead(rl)         ((rl)->read_ahead)
214 #define RECORD_LAYER_get_packet(rl)             ((rl)->packet)
215 #define RECORD_LAYER_add_packet_length(rl, inc) ((rl)->packet_length += (inc))
216 #define DTLS_RECORD_LAYER_get_w_epoch(rl)       ((rl)->d->w_epoch)
217 #define RECORD_LAYER_get_rbuf(rl)               (&(rl)->rbuf)
218 #define RECORD_LAYER_get_wbuf(rl)               ((rl)->wbuf)
219
220 void RECORD_LAYER_init(RECORD_LAYER *rl, SSL_CONNECTION *s);
221 void RECORD_LAYER_clear(RECORD_LAYER *rl);
222 void RECORD_LAYER_release(RECORD_LAYER *rl);
223 int RECORD_LAYER_read_pending(const RECORD_LAYER *rl);
224 int RECORD_LAYER_processed_read_pending(const RECORD_LAYER *rl);
225 int RECORD_LAYER_write_pending(const RECORD_LAYER *rl);
226 void RECORD_LAYER_reset_read_sequence(RECORD_LAYER *rl);
227 void RECORD_LAYER_reset_write_sequence(RECORD_LAYER *rl);
228 int RECORD_LAYER_is_sslv2_record(RECORD_LAYER *rl);
229 __owur size_t ssl3_pending(const SSL *s);
230 __owur int ssl3_write_bytes(SSL *s, int type, const void *buf, size_t len,
231                             size_t *written);
232 int do_ssl3_write(SSL_CONNECTION *s, int type, const unsigned char *buf,
233                   size_t *pipelens, size_t numpipes,
234                   int create_empty_fragment, size_t *written);
235 __owur int ssl3_read_bytes(SSL *s, int type, int *recvd_type,
236                            unsigned char *buf, size_t len, int peek,
237                            size_t *readbytes);
238 __owur int ssl3_setup_buffers(SSL_CONNECTION *s);
239 __owur int ssl3_enc(SSL_CONNECTION *s, SSL3_RECORD *inrecs, size_t n_recs,
240                     int send, SSL_MAC_BUF *mac, size_t macsize);
241 __owur int n_ssl3_mac(SSL_CONNECTION *s, SSL3_RECORD *rec, unsigned char *md,
242                       int send);
243 __owur int ssl3_write_pending(SSL_CONNECTION *s, int type,
244                               const unsigned char *buf, size_t len,
245                               size_t *written);
246 __owur int tls1_enc(SSL_CONNECTION *s, SSL3_RECORD *recs, size_t n_recs,
247                     int sending, SSL_MAC_BUF *mac, size_t macsize);
248 __owur int tls1_mac_old(SSL_CONNECTION *s, SSL3_RECORD *rec, unsigned char *md,
249                         int send);
250 __owur int tls13_enc(SSL_CONNECTION *s, SSL3_RECORD *recs, size_t n_recs,
251                      int send, SSL_MAC_BUF *mac, size_t macsize);
252 int DTLS_RECORD_LAYER_new(RECORD_LAYER *rl);
253 void DTLS_RECORD_LAYER_free(RECORD_LAYER *rl);
254 void DTLS_RECORD_LAYER_clear(RECORD_LAYER *rl);
255 void DTLS_RECORD_LAYER_set_saved_w_epoch(RECORD_LAYER *rl, unsigned short e);
256 void DTLS_RECORD_LAYER_clear(RECORD_LAYER *rl);
257 void DTLS_RECORD_LAYER_set_write_sequence(RECORD_LAYER *rl, unsigned char *seq);
258 __owur int dtls1_read_bytes(SSL *s, int type, int *recvd_type,
259                             unsigned char *buf, size_t len, int peek,
260                             size_t *readbytes);
261 __owur int dtls1_write_bytes(SSL_CONNECTION *s, int type, const void *buf,
262                              size_t len, size_t *written);
263 int do_dtls1_write(SSL_CONNECTION *s, int type, const unsigned char *buf,
264                    size_t len, int create_empty_fragment, size_t *written);
265 void dtls1_reset_seq_numbers(SSL_CONNECTION *s, int rw);
266 void ssl_release_record(SSL_CONNECTION *s, TLS_RECORD *rr);
267
268 # define HANDLE_RLAYER_RETURN(s, ret) \
269     ossl_tls_handle_rlayer_return(s, ret, OPENSSL_FILE, OPENSSL_LINE)
270
271 int ossl_tls_handle_rlayer_return(SSL_CONNECTION *s, int ret, char *file,
272                                   int line);
273
274 int ssl_set_new_record_layer(SSL_CONNECTION *s, int version, int direction,
275                              int level, unsigned char *key, size_t keylen,
276                              unsigned char *iv,  size_t ivlen,
277                              unsigned char *mackey, size_t mackeylen,
278                              const EVP_CIPHER *ciph, size_t taglen,
279                              int mactype, const EVP_MD *md,
280                              const SSL_COMP *comp);
281
282 # define OSSL_FUNC_RLAYER_SKIP_EARLY_DATA        1
283 OSSL_CORE_MAKE_FUNC(const OSSL_PARAM *, rlayer_skip_early_data, (void *cbarg))
284 # define OSSL_FUNC_RLAYER_MSG_CALLBACK           2
285 OSSL_CORE_MAKE_FUNC(void, rlayer_msg_callback, (int write_p, int version,
286                                                 int content_type,
287                                                 const void *buf, size_t len,
288                                                 void *cbarg))
289 # define OSSL_FUNC_RLAYER_SECURITY               3
290 OSSL_CORE_MAKE_FUNC(int, rlayer_security, (void *cbarg, int op, int bits,
291                                            int nid, void *other))