Restructure the write code
[openssl.git] / ssl / record / methods / recmethod_local.h
1 /*
2  * Copyright 2022 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 #include <openssl/bio.h>
11 #include <openssl/ssl.h>
12 #include <openssl/err.h>
13 #include "../../ssl_local.h"
14 #include "../record_local.h"
15
16 typedef struct dtls_bitmap_st {
17     /* Track 64 packets */
18     uint64_t map;
19     /* Max record number seen so far, 64-bit value in big-endian encoding */
20     unsigned char max_seq_num[SEQ_NUM_SIZE];
21 } DTLS_BITMAP;
22
23 /* Protocol version specific function pointers */
24 struct record_functions_st
25 {
26     /*
27      * Returns either OSSL_RECORD_RETURN_SUCCESS, OSSL_RECORD_RETURN_FATAL or
28      * OSSL_RECORD_RETURN_NON_FATAL_ERR if we can keep trying to find an
29      * alternative record layer.
30      */
31     int (*set_crypto_state)(OSSL_RECORD_LAYER *rl, int level,
32                             unsigned char *key, size_t keylen,
33                             unsigned char *iv, size_t ivlen,
34                             unsigned char *mackey, size_t mackeylen,
35                             const EVP_CIPHER *ciph,
36                             size_t taglen,
37                             int mactype,
38                             const EVP_MD *md,
39                             const SSL_COMP *comp);
40
41     /*
42      * Returns:
43      *    0: if the record is publicly invalid, or an internal error, or AEAD
44      *       decryption failed, or EtM decryption failed.
45      *    1: Success or MtE decryption failed (MAC will be randomised)
46      */
47     int (*cipher)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *recs, size_t n_recs,
48                   int sending, SSL_MAC_BUF *macs, size_t macsize);
49     /* Returns 1 for success or 0 for error */
50     int (*mac)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec, unsigned char *md,
51                int sending);
52
53     /* Return 1 for success or 0 for error */
54     int (*set_protocol_version)(OSSL_RECORD_LAYER *rl, int version);
55
56     /* Read related functions */
57
58     int (*read_n)(OSSL_RECORD_LAYER *rl, size_t n, size_t max, int extend,
59                   int clearold, size_t *readbytes);
60
61     int (*get_more_records)(OSSL_RECORD_LAYER *rl);
62
63     /* Return 1 for success or 0 for error */
64     int (*validate_record_header)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
65
66     /* Return 1 for success or 0 for error */
67     int (*post_process_record)(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
68
69     /* Write related functions */
70
71     size_t (*get_max_records)(OSSL_RECORD_LAYER *rl, int type, size_t len,
72                               size_t maxfrag, size_t *preffrag);
73
74     /* Return 1 for success or 0 for error */
75     int (*write_records)(OSSL_RECORD_LAYER *rl, OSSL_RECORD_TEMPLATE *templates,
76                          size_t numtempl);
77 };
78
79 struct ossl_record_layer_st
80 {
81     OSSL_LIB_CTX *libctx;
82     const char *propq;
83     int isdtls;
84     int version;
85     int role;
86     int direction;
87     int level;
88     /* DTLS only */
89     uint16_t epoch;
90
91     /*
92      * A BIO containing any data read in the previous epoch that was destined
93      * for this epoch
94      */
95     BIO *prev;
96
97     /* The transport BIO */
98     BIO *bio;
99
100     /*
101      * A BIO where we will send any data read by us that is destined for the
102      * next epoch.
103      */
104     BIO *next;
105
106     /* Types match the equivalent fields in the SSL object */
107     uint64_t options;
108     uint32_t mode;
109
110     /* write IO goes into here */
111     SSL3_BUFFER wbuf[SSL_MAX_PIPELINES + 1];
112
113     /* Next wbuf with pending data still to write */
114     size_t nextwbuf;
115
116     /* How many pipelines can be used to write data */
117     size_t numwpipes;
118
119     /* read IO goes into here */
120     SSL3_BUFFER rbuf;
121     /* each decoded record goes in here */
122     SSL3_RECORD rrec[SSL_MAX_PIPELINES];
123
124     /* How many records have we got available in the rrec bufer */
125     size_t num_recs;
126
127     /* The record number in the rrec buffer that can be read next */
128     size_t curr_rec;
129
130     /* The number of records that have been released via tls_release_record */
131     size_t num_released;
132
133     /* where we are when reading */
134     int rstate;
135
136     /* used internally to point at a raw packet */
137     unsigned char *packet;
138     size_t packet_length;
139
140     /* Sequence number for the next record */
141     unsigned char sequence[SEQ_NUM_SIZE];
142
143     int alert;
144
145     /*
146      * Read as many input bytes as possible (for non-blocking reads)
147      */
148     int read_ahead;
149
150     /* The number of consecutive empty records we have received */
151     size_t empty_record_count;
152
153     /*
154      * Do we need to send a prefix empty record before application data as a
155      * countermeasure against known-IV weakness (necessary for SSLv3 and
156      * TLSv1.0)
157      */
158     int need_empty_fragments;
159
160     /* cryptographic state */
161     EVP_CIPHER_CTX *enc_ctx;
162
163     /* used for mac generation */
164     EVP_MD_CTX *md_ctx;
165
166     /* uncompress */
167     COMP_CTX *expand;
168
169     /* Set to 1 if this is the first handshake. 0 otherwise */
170     int is_first_handshake;
171
172     /* The negotiated maximum fragment length */
173     unsigned int max_frag_len;
174
175     /* The maxium amount of early data we can receive/send */
176     uint32_t max_early_data;
177
178     /* The amount of early data that we have sent/received */
179     size_t early_data_count;
180
181     /* TLSv1.3 record padding */
182     size_t block_padding;
183
184     /* Only used by SSLv3 */
185     unsigned char mac_secret[EVP_MAX_MD_SIZE];
186
187     /* TLSv1.0/TLSv1.1/TLSv1.2 */
188     int use_etm;
189
190     /* Flags for GOST ciphers */
191     int stream_mac;
192     int tlstree;
193
194     /* TLSv1.3 fields */
195     /* static IV */
196     unsigned char iv[EVP_MAX_IV_LENGTH];
197     /* static read IV */
198     unsigned char read_iv[EVP_MAX_IV_LENGTH];
199     int allow_plain_alerts;
200
201     /* TLS "any" fields */
202     /* Set to true if this is the first record in a connection */
203     unsigned int is_first_record;
204
205     size_t taglen;
206
207     /* DTLS received handshake records (processed and unprocessed) */
208     record_pqueue unprocessed_rcds;
209     record_pqueue processed_rcds;
210
211     /* records being received in the current epoch */
212     DTLS_BITMAP bitmap;
213     /* renegotiation starts a new set of sequence numbers */
214     DTLS_BITMAP next_bitmap;
215
216     /*
217      * Whether we are currently in a hanshake or not. Only maintained for DTLS
218      */
219     int in_init;
220
221     /* Callbacks */
222     void *cbarg;
223     OSSL_FUNC_rlayer_skip_early_data_fn *skip_early_data;
224     OSSL_FUNC_rlayer_msg_callback_fn *msg_callback;
225     OSSL_FUNC_rlayer_security_fn *security;
226     OSSL_FUNC_rlayer_padding_fn *padding;
227
228     size_t max_pipelines;
229
230     /* Function pointers for version specific functions */
231     struct record_functions_st *funcs;
232 };
233
234 typedef struct dtls_rlayer_record_data_st {
235     unsigned char *packet;
236     size_t packet_length;
237     SSL3_BUFFER rbuf;
238     SSL3_RECORD rrec;
239 } DTLS_RLAYER_RECORD_DATA;
240
241 extern struct record_functions_st ssl_3_0_funcs;
242 extern struct record_functions_st tls_1_funcs;
243 extern struct record_functions_st tls_1_3_funcs;
244 extern struct record_functions_st tls_any_funcs;
245 extern struct record_functions_st dtls_1_funcs;
246 extern struct record_functions_st dtls_any_funcs;
247
248 void ossl_rlayer_fatal(OSSL_RECORD_LAYER *rl, int al, int reason,
249                        const char *fmt, ...);
250
251 #define RLAYERfatal(rl, al, r) RLAYERfatal_data((rl), (al), (r), NULL)
252 #define RLAYERfatal_data                                           \
253     (ERR_new(),                                                    \
254      ERR_set_debug(OPENSSL_FILE, OPENSSL_LINE, OPENSSL_FUNC),      \
255      ossl_rlayer_fatal)
256
257 #define RLAYER_USE_EXPLICIT_IV(rl) ((rl)->version == TLS1_1_VERSION \
258                                     || (rl)->version == TLS1_2_VERSION \
259                                     || (rl)->isdtls)
260
261 int ossl_set_tls_provider_parameters(OSSL_RECORD_LAYER *rl,
262                                      EVP_CIPHER_CTX *ctx,
263                                      const EVP_CIPHER *ciph,
264                                      const EVP_MD *md);
265 /* ssl3_cbc.c */
266 __owur char ssl3_cbc_record_digest_supported(const EVP_MD_CTX *ctx);
267 __owur int ssl3_cbc_digest_record(const EVP_MD *md,
268                                   unsigned char *md_out,
269                                   size_t *md_out_size,
270                                   const unsigned char *header,
271                                   const unsigned char *data,
272                                   size_t data_size,
273                                   size_t data_plus_mac_plus_padding_size,
274                                   const unsigned char *mac_secret,
275                                   size_t mac_secret_length, char is_sslv3);
276
277 int tls_default_read_n(OSSL_RECORD_LAYER *rl, size_t n, size_t max, int extend,
278                        int clearold, size_t *readbytes);
279 int tls_get_more_records(OSSL_RECORD_LAYER *rl);
280 int dtls_get_more_records(OSSL_RECORD_LAYER *rl);
281
282 int tls_default_set_protocol_version(OSSL_RECORD_LAYER *rl, int version);
283 int tls_default_validate_record_header(OSSL_RECORD_LAYER *rl, SSL3_RECORD *re);
284 int tls_do_uncompress(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
285 int tls_default_post_process_record(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
286 int tls13_common_post_process_record(OSSL_RECORD_LAYER *rl, SSL3_RECORD *rec);
287
288 int
289 tls_int_new_record_layer(OSSL_LIB_CTX *libctx, const char *propq, int vers,
290                          int role, int direction, int level, unsigned char *key,
291                          size_t keylen, unsigned char *iv, size_t ivlen,
292                          unsigned char *mackey, size_t mackeylen,
293                          const EVP_CIPHER *ciph, size_t taglen,
294                          int mactype,
295                          const EVP_MD *md, const SSL_COMP *comp, BIO *prev,
296                          BIO *transport, BIO *next,
297                          BIO_ADDR *local, BIO_ADDR *peer,
298                          const OSSL_PARAM *settings, const OSSL_PARAM *options,
299                          const OSSL_DISPATCH *fns, void *cbarg,
300                          OSSL_RECORD_LAYER **retrl);
301 int tls_free(OSSL_RECORD_LAYER *rl);
302 int tls_reset(OSSL_RECORD_LAYER *rl);
303 int tls_unprocessed_read_pending(OSSL_RECORD_LAYER *rl);
304 int tls_processed_read_pending(OSSL_RECORD_LAYER *rl);
305 size_t tls_app_data_pending(OSSL_RECORD_LAYER *rl);
306 int tls_write_pending(OSSL_RECORD_LAYER *rl);
307 size_t tls_get_max_record_len(OSSL_RECORD_LAYER *rl);
308 size_t tls_get_max_records(OSSL_RECORD_LAYER *rl, int type, size_t len,
309                            size_t maxfrag, size_t *preffrag);
310 int tls_write_records(OSSL_RECORD_LAYER *rl, OSSL_RECORD_TEMPLATE *templates,
311                       size_t numtempl);
312 int tls_retry_write_records(OSSL_RECORD_LAYER *rl);
313 int tls_get_alert_code(OSSL_RECORD_LAYER *rl);
314 int tls_set1_bio(OSSL_RECORD_LAYER *rl, BIO *bio);
315 int tls_read_record(OSSL_RECORD_LAYER *rl, void **rechandle, int *rversion,
316                     int *type, unsigned char **data, size_t *datalen,
317                     uint16_t *epoch, unsigned char *seq_num);
318 int tls_release_record(OSSL_RECORD_LAYER *rl, void *rechandle);
319 int tls_default_set_protocol_version(OSSL_RECORD_LAYER *rl, int version);
320 int tls_set_protocol_version(OSSL_RECORD_LAYER *rl, int version);
321 void tls_set_plain_alerts(OSSL_RECORD_LAYER *rl, int allow);
322 void tls_set_first_handshake(OSSL_RECORD_LAYER *rl, int first);
323 void tls_set_max_pipelines(OSSL_RECORD_LAYER *rl, size_t max_pipelines);
324 void tls_get_state(OSSL_RECORD_LAYER *rl, const char **shortstr,
325                    const char **longstr);
326 int tls_set_options(OSSL_RECORD_LAYER *rl, const OSSL_PARAM *options);
327 int tls_setup_read_buffer(OSSL_RECORD_LAYER *rl);
328 int tls_setup_write_buffer(OSSL_RECORD_LAYER *rl, size_t numwpipes,
329                            size_t firstlen, size_t nextlen);
330
331 int tls_write_records_multiblock(OSSL_RECORD_LAYER *rl,
332                                  OSSL_RECORD_TEMPLATE *templates,
333                                  size_t numtempl);
334
335 size_t tls_get_max_records_default(OSSL_RECORD_LAYER *rl, int type, size_t len,
336                                    size_t maxfrag, size_t *preffrag);
337 size_t tls_get_max_records_multiblock(OSSL_RECORD_LAYER *rl, int type,
338                                       size_t len, size_t maxfrag,
339                                       size_t *preffrag);
340 int tls_write_records_default(OSSL_RECORD_LAYER *rl,
341                               OSSL_RECORD_TEMPLATE *templates,
342                               size_t numtempl);