]> git.ipfire.org Git - thirdparty/openssl.git/blob - ssl/record/recordmethod.h
Remove some TODO(RECLAYER) comments
[thirdparty/openssl.git] / ssl / record / recordmethod.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 #ifndef OSSL_INTERNAL_RECORDMETHOD_H
11 # define OSSL_INTERNAL_RECORDMETHOD_H
12 # pragma once
13
14 # include <openssl/ssl.h>
15
16 /*
17 * We use the term "record" here to refer to a packet of data. Records are
18 * typically protected via a cipher and MAC, or an AEAD cipher (although not
19 * always). This usage of the term record is consistent with the TLS concept.
20 * In QUIC the term "record" is not used but it is analogous to the QUIC term
21 * "packet". The interface in this file applies to all protocols that protect
22 * records/packets of data, i.e. (D)TLS and QUIC. The term record is used to
23 * refer to both contexts.
24 */
25
26
27 /*
28 * Types of QUIC record layer;
29 *
30 * QUIC reuses the TLS handshake for agreeing secrets. An SSL object representing
31 * a QUIC connection will have an additional SSL object internally representing
32 * the TLS state of the QUIC handshake. This internal TLS is referred to as
33 * QUIC-TLS in this file.
34 * "Records" output from QUIC-TLS contains standard TLS handshake messages and
35 * are *not* encrypted directly but are instead wrapped up in plaintext
36 * CRYPTO frames. These CRYPTO frames could be collected together with other
37 * QUIC frames into a single QUIC packet. The QUIC record layer will then
38 * encrypt the whole packet.
39 *
40 * So we have:
41 * QUIC-TLS record layer: outputs plaintext CRYPTO frames containing TLS
42 * handshake messages only.
43 * QUIC record layer: outputs encrypted packets which may contain CRYPTO frames
44 * or any other type of QUIC frame.
45 */
46
47 /*
48 * An OSSL_RECORD_METHOD is a protcol specific method which provides the
49 * functions for reading and writing records for that protocol. Which
50 * OSSL_RECORD_METHOD to use for a given protocol is defined by the SSL_METHOD.
51 */
52 typedef struct ossl_record_method_st OSSL_RECORD_METHOD;
53
54 /*
55 * An OSSL_RECORD_LAYER is just an externally defined opaque pointer created by
56 * the method
57 */
58 typedef struct ossl_record_layer_st OSSL_RECORD_LAYER;
59
60
61 # define OSSL_RECORD_ROLE_CLIENT 0
62 # define OSSL_RECORD_ROLE_SERVER 1
63
64 # define OSSL_RECORD_DIRECTION_READ 0
65 # define OSSL_RECORD_DIRECTION_WRITE 1
66
67 /*
68 * Protection level. For <= TLSv1.2 only "NONE" and "APPLICATION" are used.
69 */
70 # define OSSL_RECORD_PROTECTION_LEVEL_NONE 0
71 # define OSSL_RECORD_PROTECTION_LEVEL_EARLY 1
72 # define OSSL_RECORD_PROTECTION_LEVEL_HANDSHAKE 2
73 # define OSSL_RECORD_PROTECTION_LEVEL_APPLICATION 3
74
75
76 # define OSSL_RECORD_RETURN_SUCCESS 1
77 # define OSSL_RECORD_RETURN_RETRY 0
78 # define OSSL_RECORD_RETURN_NON_FATAL_ERR -1
79 # define OSSL_RECORD_RETURN_FATAL -2
80 # define OSSL_RECORD_RETURN_EOF -3
81
82 /*
83 * Template for creating a record. A record consists of the |type| of data it
84 * will contain (e.g. alert, handshake, application data, etc) along with an
85 * array of buffers in |bufs| of size |numbufs|. There is a corresponding array
86 * of buffer lengths in |buflens|. Concatenating all of the buffer data together
87 * would give you the complete plaintext payload to be sent in a single record.
88 */
89 struct ossl_record_template_st {
90 int type;
91 void **bufs;
92 size_t *buflens;
93 size_t numbufs;
94 };
95
96 typedef struct ossl_record_template_st OSSL_RECORD_TEMPLATE;
97
98 /*
99 * Rather than a "method" approach, we could make this fetchable - Should we?
100 * There could be some complexity in finding suitable record layer implementations
101 * e.g. we need to find one that matches the negotiated protocol, cipher,
102 * extensions, etc. The selection_cb approach given above doesn't work so well
103 * if unknown third party providers with OSSL_RECORD_METHOD implementations are
104 * loaded.
105 */
106
107 /*
108 * If this becomes public API then we will need functions to create and
109 * free an OSSL_RECORD_METHOD, as well as functions to get/set the various
110 * function pointers....unless we make it fetchable.
111 */
112 struct ossl_record_method_st {
113 /*
114 * Create a new OSSL_RECORD_LAYER object for handling the protocol version
115 * set by |vers|. |role| is 0 for client and 1 for server. |direction|
116 * indicates either read or write. |level| is the protection level as
117 * described above. |settings| are mandatory settings that will cause the
118 * new() call to fail if they are not understood (for example to require
119 * Encrypt-Then-Mac support). |options| are optional settings that will not
120 * cause the new() call to fail if they are not understood (for example
121 * whether to use "read ahead" or not).
122 *
123 * The BIO in |transport| is the BIO for the underlying transport layer.
124 * Where the direction is "read", then this BIO will only ever be used for
125 * reading data. Where the direction is "write", then this BIO will only
126 * every be used for writing data.
127 *
128 * An SSL object will always have at least 2 OSSL_RECORD_LAYER objects in
129 * force at any one time (one for reading and one for writing). In some
130 * protocols more than 2 might be used (e.g. in DTLS for retransmitting
131 * messages from an earlier epoch).
132 *
133 * The created OSSL_RECORD_LAYER object is stored in *ret on success (or
134 * NULL otherwise). The return value will be one of
135 * OSSL_RECORD_RETURN_SUCCESS, OSSL_RECORD_RETURN_FATAL or
136 * OSSL_RECORD_RETURN_NON_FATAL. A non-fatal return means that creation of
137 * the record layer has failed because it is unsuitable, but an alternative
138 * record layer can be tried instead.
139 */
140
141 /*
142 * If we eventually make this fetchable then we will need to use something
143 * other than EVP_CIPHER. Also mactype would not be a NID, but a string. For
144 * now though, this works.
145 */
146 int (*new_record_layer)(OSSL_LIB_CTX *libctx,
147 const char *propq, int vers,
148 int role, int direction,
149 int level,
150 unsigned int epoch,
151 unsigned char *key,
152 size_t keylen,
153 unsigned char *iv,
154 size_t ivlen,
155 unsigned char *mackey,
156 size_t mackeylen,
157 const EVP_CIPHER *ciph,
158 size_t taglen,
159 int mactype,
160 const EVP_MD *md,
161 const SSL_COMP *comp,
162 BIO *prev,
163 BIO *transport,
164 BIO *next,
165 BIO_ADDR *local,
166 BIO_ADDR *peer,
167 const OSSL_PARAM *settings,
168 const OSSL_PARAM *options,
169 const OSSL_DISPATCH *fns,
170 void *cbarg,
171 OSSL_RECORD_LAYER **ret);
172 int (*free)(OSSL_RECORD_LAYER *rl);
173
174 int (*reset)(OSSL_RECORD_LAYER *rl); /* Is this needed? */
175
176 /* Returns 1 if we have unprocessed data buffered or 0 otherwise */
177 int (*unprocessed_read_pending)(OSSL_RECORD_LAYER *rl);
178 /*
179 * Returns 1 if we have processed data buffered that can be read or 0 otherwise
180 * - not necessarily app data
181 */
182 int (*processed_read_pending)(OSSL_RECORD_LAYER *rl);
183
184 /*
185 * The amount of processed app data that is internally bufferred and
186 * available to read
187 */
188 size_t (*app_data_pending)(OSSL_RECORD_LAYER *rl);
189
190 int (*write_pending)(OSSL_RECORD_LAYER *rl);
191
192
193 /*
194 * Find out the maximum amount of plaintext data that the record layer is
195 * prepared to write in a single record. When calling write_records it is
196 * the caller's responsibility to ensure that no record template exceeds
197 * this maximum when calling write_records.
198 */
199 size_t (*get_max_record_len)(OSSL_RECORD_LAYER *rl);
200
201 /*
202 * Find out the maximum number of records that the record layer is prepared
203 * to process in a single call to write_records. It is the caller's
204 * responsibility to ensure that no call to write_records exceeds this
205 * number of records.
206 */
207 size_t (*get_max_records)(OSSL_RECORD_LAYER *rl);
208
209 /*
210 * Write |numtempl| records from the array of record templates pointed to
211 * by |templates|. Each record should be no longer than the value returned
212 * by get_max_record_len(), and there should be no more records than the
213 * value returned by get_max_records().
214 * |allowance| is the maximum amount of "on-the-wire" data that is allowed
215 * to be sent at the moment (including all QUIC headers, but excluding any
216 * UDP/IP headers). After a successful or retry return |*sent| will
217 * be updated with the amount of data that has been sent so far. In the case
218 * of a retry this could be 0.
219 * Where possible the caller will attempt to ensure that all records are the
220 * same length, except the last record. This may not always be possible so
221 * the record method implementation should not rely on this being the case.
222 * In the event of a retry the caller should call retry_write_records()
223 * to try again. No more calls to write_records() should be attempted until
224 * retry_write_records() returns success.
225 * Buffers allocated for the record templates can be freed immediately after
226 * write_records() returns - even in the case a retry.
227 * The record templates represent the plaintext payload. The encrypted
228 * output is written to the |transport| BIO.
229 * Returns:
230 * 1 on success
231 * 0 on retry
232 * -1 on failure
233 */
234 int (*write_records)(OSSL_RECORD_LAYER *rl, OSSL_RECORD_TEMPLATE **templates,
235 size_t numtempl, size_t allowance, size_t *sent);
236
237 /*
238 * Retry a previous call to write_records. The caller should continue to
239 * call this until the function returns with success or failure. After
240 * each retry more of the data may have been incrementally sent. |allowance|
241 * is the amount of "on-the-wire" data that is allowed to be sent at the
242 * moment. After a successful or retry return |*sent| will
243 * be updated with the amount of data that has been sent by this call to
244 * retry_write_records().
245 * Returns:
246 * 1 on success
247 * 0 on retry
248 * -1 on failure
249 */
250 int (*retry_write_records)(OSSL_RECORD_LAYER *rl, size_t allowance,
251 size_t *sent);
252
253 /*
254 * Read a record and return the record layer version and record type in
255 * the |rversion| and |type| parameters. |*data| is set to point to a
256 * record layer buffer containing the record payload data and |*datalen|
257 * is filled in with the length of that data. The |epoch| and |seq_num|
258 * values are only used if DTLS has been negotiated. In that case they are
259 * filled in with the epoch and sequence number from the record.
260 * An opaque record layer handle for the record is returned in |*rechandle|
261 * which is used in a subsequent call to |release_record|. The buffer must
262 * remain available until release_record is called.
263 *
264 * Internally the the OSSL_RECORD_METHOD the implementation may read/process
265 * multiple records in one go and buffer them.
266 */
267 int (*read_record)(OSSL_RECORD_LAYER *rl, void **rechandle, int *rversion,
268 int *type, unsigned char **data, size_t *datalen,
269 uint16_t *epoch, unsigned char *seq_num);
270 /*
271 * Release a buffer associated with a record previously read with
272 * read_record. Records are guaranteed to be released in the order that they
273 * are read.
274 */
275 int (*release_record)(OSSL_RECORD_LAYER *rl, void *rechandle);
276
277 /*
278 * In the event that a fatal error is returned from the functions above then
279 * get_alert_code() can be called to obtain a more details identifier for
280 * the error. In (D)TLS this is the alert description code.
281 */
282 int (*get_alert_code)(OSSL_RECORD_LAYER *rl);
283
284 /*
285 * Update the transport BIO from the one originally set in the
286 * new_record_layer call
287 */
288 int (*set1_bio)(OSSL_RECORD_LAYER *rl, BIO *bio);
289
290 /* Called when protocol negotiation selects a protocol version to use */
291 int (*set_protocol_version)(OSSL_RECORD_LAYER *rl, int version);
292
293 /*
294 * Whether we are allowed to receive unencrypted alerts, even if we might
295 * otherwise expect encrypted records. Ignored by protocol versions where
296 * this isn't relevant
297 */
298 void (*set_plain_alerts)(OSSL_RECORD_LAYER *rl, int allow);
299
300 /*
301 * Called immediately after creation of the record layer if we are in a
302 * first handshake. Also called at the end of the first handshake
303 */
304 void (*set_first_handshake)(OSSL_RECORD_LAYER *rl, int first);
305
306 /*
307 * Set the maximum number of pipelines that the record layer should process.
308 * The default is 1.
309 */
310 void (*set_max_pipelines)(OSSL_RECORD_LAYER *rl, size_t max_pipelines);
311
312 /*
313 * Called to tell the record layer whether we are currently "in init" or
314 * not. Default at creation of the record layer is "yes".
315 */
316 void (*set_in_init)(OSSL_RECORD_LAYER *rl, int in_init);
317 };
318
319
320 /* Standard built-in record methods */
321 extern const OSSL_RECORD_METHOD ossl_tls_record_method;
322 # ifndef OPENSSL_NO_KTLS
323 extern const OSSL_RECORD_METHOD ossl_ktls_record_method;
324 # endif
325 extern const OSSL_RECORD_METHOD ossl_dtls_record_method;
326
327 #endif /* !defined(OSSL_INTERNAL_RECORDMETHOD_H) */