Move recordmethod.h to be an "internal" header
[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
12 #include <openssl/core_dispatch.h>
13 #include "internal/recordmethod.h"
14
15 /*****************************************************************************
16  *                                                                           *
17  * These structures should be considered PRIVATE to the record layer. No     *
18  * non-record layer code should be using these structures in any way.        *
19  *                                                                           *
20  *****************************************************************************/
21
22 #define SEQ_NUM_SIZE                            8
23
24 typedef struct tls_record_st {
25     void *rechandle;
26     int version;
27     int type;
28     /* The data buffer containing bytes from the record */
29     unsigned char *data;
30     /* Number of remaining to be read in the data buffer */
31     size_t length;
32     /* Offset into the data buffer where to start reading */
33     size_t off;
34     /* epoch number. DTLS only */
35     uint16_t epoch;
36     /* sequence number. DTLS only */
37     unsigned char seq_num[SEQ_NUM_SIZE];
38 #ifndef OPENSSL_NO_SCTP
39     struct bio_dgram_sctp_rcvinfo recordinfo;
40 #endif
41 } TLS_RECORD;
42
43 typedef struct record_pqueue_st {
44     uint16_t epoch;
45     struct pqueue_st *q;
46 } record_pqueue;
47
48 typedef struct dtls_record_layer_st {
49     /*
50      * The current data and handshake epoch.  This is initially
51      * undefined, and starts at zero once the initial handshake is
52      * completed
53      */
54     uint16_t r_epoch;
55     uint16_t w_epoch;
56
57     /*
58      * Buffered application records. Only for records between CCS and
59      * Finished to prevent either protocol violation or unnecessary message
60      * loss.
61      */
62     record_pqueue buffered_app_data;
63 } DTLS_RECORD_LAYER;
64
65 /*****************************************************************************
66  *                                                                           *
67  * This structure should be considered "opaque" to anything outside of the   *
68  * record layer. No non-record layer code should be accessing the members of *
69  * this structure.                                                           *
70  *                                                                           *
71  *****************************************************************************/
72
73 typedef struct record_layer_st {
74     /* The parent SSL_CONNECTION structure */
75     SSL_CONNECTION *s;
76
77     /* Method to use for the read record layer*/
78     const OSSL_RECORD_METHOD *rrlmethod;
79     /* Method to use for the write record layer*/
80     const OSSL_RECORD_METHOD *wrlmethod;
81     /* The read record layer object itself */
82     OSSL_RECORD_LAYER *rrl;
83     /* The write record layer object itself */
84     OSSL_RECORD_LAYER *wrl;
85     /* BIO to store data destined for the next read record layer epoch */
86     BIO *rrlnext;
87     /* Default read buffer length to be passed to the record layer */
88     size_t default_read_buf_len;
89
90     /*
91      * Read as many input bytes as possible (for
92      * non-blocking reads)
93      */
94     int read_ahead;
95
96     /* number of bytes sent so far */
97     size_t wnum;
98     unsigned char handshake_fragment[4];
99     size_t handshake_fragment_len;
100     /* partial write - check the numbers match */
101     /* number bytes written */
102     size_t wpend_tot;
103     int wpend_type;
104     /* number of bytes submitted */
105     size_t wpend_ret;
106     const unsigned char *wpend_buf;
107
108     /* Count of the number of consecutive warning alerts received */
109     unsigned int alert_count;
110     DTLS_RECORD_LAYER *d;
111
112     /* TLS1.3 padding callback */
113     size_t (*record_padding_cb)(SSL *s, int type, size_t len, void *arg);
114     void *record_padding_arg;
115     size_t block_padding;
116
117     /* How many records we have read from the record layer */
118     size_t num_recs;
119     /* The next record from the record layer that we need to process */
120     size_t curr_rec;
121     /* Record layer data to be processed */
122     TLS_RECORD tlsrecs[SSL_MAX_PIPELINES];
123
124 } RECORD_LAYER;
125
126 /*****************************************************************************
127  *                                                                           *
128  * The following macros/functions represent the libssl internal API to the   *
129  * record layer. Any libssl code may call these functions/macros             *
130  *                                                                           *
131  *****************************************************************************/
132
133 #define RECORD_LAYER_set_read_ahead(rl, ra)     ((rl)->read_ahead = (ra))
134 #define RECORD_LAYER_get_read_ahead(rl)         ((rl)->read_ahead)
135 #define DTLS_RECORD_LAYER_get_w_epoch(rl)       ((rl)->d->w_epoch)
136
137 void RECORD_LAYER_init(RECORD_LAYER *rl, SSL_CONNECTION *s);
138 void RECORD_LAYER_clear(RECORD_LAYER *rl);
139 int RECORD_LAYER_read_pending(const RECORD_LAYER *rl);
140 int RECORD_LAYER_processed_read_pending(const RECORD_LAYER *rl);
141 int RECORD_LAYER_write_pending(const RECORD_LAYER *rl);
142 int RECORD_LAYER_is_sslv2_record(RECORD_LAYER *rl);
143 __owur size_t ssl3_pending(const SSL *s);
144 __owur int ssl3_write_bytes(SSL *s, int type, const void *buf, size_t len,
145                             size_t *written);
146 __owur int ssl3_read_bytes(SSL *s, int type, int *recvd_type,
147                            unsigned char *buf, size_t len, int peek,
148                            size_t *readbytes);
149
150 int DTLS_RECORD_LAYER_new(RECORD_LAYER *rl);
151 void DTLS_RECORD_LAYER_free(RECORD_LAYER *rl);
152 void DTLS_RECORD_LAYER_clear(RECORD_LAYER *rl);
153 __owur int dtls1_read_bytes(SSL *s, int type, int *recvd_type,
154                             unsigned char *buf, size_t len, int peek,
155                             size_t *readbytes);
156 __owur int dtls1_write_bytes(SSL_CONNECTION *s, int type, const void *buf,
157                              size_t len, size_t *written);
158 int do_dtls1_write(SSL_CONNECTION *s, int type, const unsigned char *buf,
159                    size_t len, size_t *written);
160 void dtls1_increment_epoch(SSL_CONNECTION *s, int rw);
161 void ssl_release_record(SSL_CONNECTION *s, TLS_RECORD *rr);
162
163 # define HANDLE_RLAYER_READ_RETURN(s, ret) \
164     ossl_tls_handle_rlayer_return(s, 0, ret, OPENSSL_FILE, OPENSSL_LINE)
165
166 # define HANDLE_RLAYER_WRITE_RETURN(s, ret) \
167     ossl_tls_handle_rlayer_return(s, 1, ret, OPENSSL_FILE, OPENSSL_LINE)
168
169 int ossl_tls_handle_rlayer_return(SSL_CONNECTION *s, int writing, int ret,
170                                   char *file, int line);
171
172 int ssl_set_new_record_layer(SSL_CONNECTION *s, int version, int direction,
173                              int level, unsigned char *key, size_t keylen,
174                              unsigned char *iv,  size_t ivlen,
175                              unsigned char *mackey, size_t mackeylen,
176                              const EVP_CIPHER *ciph, size_t taglen,
177                              int mactype, const EVP_MD *md,
178                              const SSL_COMP *comp);
179 int ssl_set_record_protocol_version(SSL_CONNECTION *s, int vers);
180
181 # define OSSL_FUNC_RLAYER_SKIP_EARLY_DATA        1
182 OSSL_CORE_MAKE_FUNC(int, rlayer_skip_early_data, (void *cbarg))
183 # define OSSL_FUNC_RLAYER_MSG_CALLBACK           2
184 OSSL_CORE_MAKE_FUNC(void, rlayer_msg_callback, (int write_p, int version,
185                                                 int content_type,
186                                                 const void *buf, size_t len,
187                                                 void *cbarg))
188 # define OSSL_FUNC_RLAYER_SECURITY               3
189 OSSL_CORE_MAKE_FUNC(int, rlayer_security, (void *cbarg, int op, int bits,
190                                            int nid, void *other))
191 # define OSSL_FUNC_RLAYER_PADDING                4
192 OSSL_CORE_MAKE_FUNC(size_t, rlayer_padding, (void *cbarg, int type, size_t len))