]> git.ipfire.org Git - thirdparty/openssl.git/blame - ssl/statem/statem.c
Use centralized fetching errors
[thirdparty/openssl.git] / ssl / statem / statem.c
CommitLineData
f8e0a557 1/*
605856d7 2 * Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
f8e0a557 3 *
2c18d164 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
846e33c7
RS
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
f8e0a557
MC
8 */
9
198c42f5 10#include "internal/cryptlib.h"
07016a8a 11#include <openssl/rand.h>
706457b7
DMSP
12#include "../ssl_local.h"
13#include "statem_local.h"
f9f674eb 14#include <assert.h>
f8e0a557
MC
15
16/*
17 * This file implements the SSL/TLS/DTLS state machines.
18 *
19 * There are two primary state machines:
20 *
21 * 1) Message flow state machine
22 * 2) Handshake state machine
23 *
24 * The Message flow state machine controls the reading and sending of messages
25 * including handling of non-blocking IO events, flushing of the underlying
26 * write BIO, handling unexpected messages, etc. It is itself broken into two
27 * separate sub-state machines which control reading and writing respectively.
28 *
29 * The Handshake state machine keeps track of the current SSL/TLS handshake
30 * state. Transitions of the handshake state are the result of events that
31 * occur within the Message flow state machine.
32 *
33 * Overall it looks like this:
34 *
35 * --------------------------------------------- -------------------
36 * | | | |
37 * | Message flow state machine | | |
38 * | | | |
39 * | -------------------- -------------------- | Transition | Handshake state |
61ae935a 40 * | | MSG_FLOW_READING | | MSG_FLOW_WRITING | | Event | machine |
f8e0a557
MC
41 * | | sub-state | | sub-state | |----------->| |
42 * | | machine for | | machine for | | | |
43 * | | reading messages | | writing messages | | | |
44 * | -------------------- -------------------- | | |
45 * | | | |
46 * --------------------------------------------- -------------------
47 *
48 */
49
50/* Sub state machine return values */
a230b26e 51typedef enum {
f8e0a557
MC
52 /* Something bad happened or NBIO */
53 SUB_STATE_ERROR,
54 /* Sub state finished go to the next sub state */
55 SUB_STATE_FINISHED,
56 /* Sub state finished and handshake was completed */
57 SUB_STATE_END_HANDSHAKE
d78052cf 58} SUB_STATE_RETURN;
f8e0a557 59
8723588e 60static int state_machine(SSL *s, int server);
f8e0a557 61static void init_read_state_machine(SSL *s);
d78052cf 62static SUB_STATE_RETURN read_state_machine(SSL *s);
f8e0a557 63static void init_write_state_machine(SSL *s);
d78052cf 64static SUB_STATE_RETURN write_state_machine(SSL *s);
49ae7423 65
5998e290 66OSSL_HANDSHAKE_STATE SSL_get_state(const SSL *ssl)
49ae7423
MC
67{
68 return ssl->statem.hand_state;
69}
70
4cc968df 71int SSL_in_init(const SSL *s)
49ae7423
MC
72{
73 return s->statem.in_init;
74}
75
4cc968df 76int SSL_is_init_finished(const SSL *s)
49ae7423
MC
77{
78 return !(s->statem.in_init) && (s->statem.hand_state == TLS_ST_OK);
79}
80
4cc968df 81int SSL_in_before(const SSL *s)
49ae7423
MC
82{
83 /*
84 * Historically being "in before" meant before anything had happened. In the
85 * current code though we remain in the "before" state for a while after we
86 * have started the handshake process (e.g. as a server waiting for the
87 * first message to arrive). There "in before" is taken to mean "in before"
88 * and not started any handshake process yet.
89 */
90 return (s->statem.hand_state == TLS_ST_BEFORE)
91 && (s->statem.state == MSG_FLOW_UNINITED);
92}
93
f8e0a557
MC
94/*
95 * Clear the state machine state and reset back to MSG_FLOW_UNINITED
96 */
fe3a3291 97void ossl_statem_clear(SSL *s)
f8e0a557
MC
98{
99 s->statem.state = MSG_FLOW_UNINITED;
49ae7423
MC
100 s->statem.hand_state = TLS_ST_BEFORE;
101 s->statem.in_init = 1;
a71a4966 102 s->statem.no_cert_verify = 0;
f8e0a557
MC
103}
104
105/*
106 * Set the state machine up ready for a renegotiation handshake
107 */
fe3a3291 108void ossl_statem_set_renegotiate(SSL *s)
f8e0a557 109{
c64359db 110 s->statem.in_init = 1;
0386aad1 111 s->statem.request_state = TLS_ST_SW_HELLO_REQ;
f8e0a557
MC
112}
113
114/*
e92519b5
RL
115 * Error reporting building block that's used instead of ERR_set_error().
116 * In addition to what ERR_set_error() does, this puts the state machine
117 * into an error state and sends an alert if appropriate.
1f359471 118 * This is a permanent error for the current connection.
f8e0a557 119 */
e92519b5 120void ossl_statem_fatal(SSL *s, int al, int reason, const char *fmt, ...)
f8e0a557 121{
e92519b5
RL
122 va_list args;
123
124 va_start(args, fmt);
125 ERR_vset_error(ERR_LIB_SSL, reason, fmt, args);
126 va_end(args);
127
f9f674eb 128 /* We shouldn't call SSLfatal() twice. Once is enough */
6839a7a7
BE
129 if (s->statem.in_init && s->statem.state == MSG_FLOW_ERROR)
130 return;
1f359471 131 s->statem.in_init = 1;
f8e0a557 132 s->statem.state = MSG_FLOW_ERROR;
7426cd34
MC
133 if (al != SSL_AD_NO_ALERT
134 && s->statem.enc_write_state != ENC_WRITE_STATE_INVALID)
1f359471 135 ssl3_send_alert(s, SSL3_AL_FATAL, al);
49ae7423
MC
136}
137
47e2ee07
MC
138/*
139 * This macro should only be called if we are already expecting to be in
140 * a fatal error state. We verify that we are, and set it if not (this would
141 * indicate a bug).
142 */
c48ffbcc 143#define check_fatal(s) \
47e2ee07
MC
144 do { \
145 if (!ossl_assert((s)->statem.in_init \
e1dd8fa0 146 && (s)->statem.state == MSG_FLOW_ERROR)) \
c48ffbcc 147 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_MISSING_FATAL); \
47e2ee07
MC
148 } while (0)
149
49ae7423
MC
150/*
151 * Discover whether the current connection is in the error state.
152 *
153 * Valid return values are:
154 * 1: Yes
155 * 0: No
156 */
fe3a3291 157int ossl_statem_in_error(const SSL *s)
49ae7423
MC
158{
159 if (s->statem.state == MSG_FLOW_ERROR)
160 return 1;
161
162 return 0;
163}
164
fe3a3291 165void ossl_statem_set_in_init(SSL *s, int init)
49ae7423
MC
166{
167 s->statem.in_init = init;
f8e0a557
MC
168}
169
024f543c
MC
170int ossl_statem_get_in_handshake(SSL *s)
171{
172 return s->statem.in_handshake;
173}
174
175void ossl_statem_set_in_handshake(SSL *s, int inhand)
176{
177 if (inhand)
178 s->statem.in_handshake++;
179 else
180 s->statem.in_handshake--;
181}
182
0a87d0ac
MC
183/* Are we in a sensible state to skip over unreadable early data? */
184int ossl_statem_skip_early_data(SSL *s)
185{
1ea4d09a 186 if (s->ext.early_data != SSL_EARLY_DATA_REJECTED)
0a87d0ac
MC
187 return 0;
188
1c1e4160
MC
189 if (!s->server
190 || s->statem.hand_state != TLS_ST_EARLY_DATA
191 || s->hello_retry_request == SSL_HRR_COMPLETE)
d4504fe5 192 return 0;
0a87d0ac
MC
193
194 return 1;
195}
196
3eaa4170
MC
197/*
198 * Called when we are in SSL_read*(), SSL_write*(), or SSL_accept()
199 * /SSL_connect()/SSL_do_handshake(). Used to test whether we are in an early
200 * data state and whether we should attempt to move the handshake on if so.
d1186c30 201 * |sending| is 1 if we are attempting to send data (SSL_write*()), 0 if we are
3eaa4170
MC
202 * attempting to read data (SSL_read*()), or -1 if we are in SSL_do_handshake()
203 * or similar.
204 */
d1186c30 205void ossl_statem_check_finish_init(SSL *s, int sending)
564547e4 206{
d1186c30 207 if (sending == -1) {
3eaa4170 208 if (s->statem.hand_state == TLS_ST_PENDING_EARLY_DATA_END
ef6c191b 209 || s->statem.hand_state == TLS_ST_EARLY_DATA) {
3eaa4170 210 ossl_statem_set_in_init(s, 1);
ef6c191b
MC
211 if (s->early_data_state == SSL_EARLY_DATA_WRITE_RETRY) {
212 /*
213 * SSL_connect() or SSL_do_handshake() has been called directly.
214 * We don't allow any more writing of early data.
215 */
216 s->early_data_state = SSL_EARLY_DATA_FINISHED_WRITING;
217 }
218 }
3eaa4170 219 } else if (!s->server) {
d1186c30 220 if ((sending && (s->statem.hand_state == TLS_ST_PENDING_EARLY_DATA_END
ef6c191b 221 || s->statem.hand_state == TLS_ST_EARLY_DATA)
f7e393be 222 && s->early_data_state != SSL_EARLY_DATA_WRITING)
d1186c30 223 || (!sending && s->statem.hand_state == TLS_ST_EARLY_DATA)) {
d7f8783f 224 ossl_statem_set_in_init(s, 1);
ef6c191b
MC
225 /*
226 * SSL_write() has been called directly. We don't allow any more
227 * writing of early data.
228 */
d1186c30 229 if (sending && s->early_data_state == SSL_EARLY_DATA_WRITE_RETRY)
ef6c191b
MC
230 s->early_data_state = SSL_EARLY_DATA_FINISHED_WRITING;
231 }
f7e393be
MC
232 } else {
233 if (s->early_data_state == SSL_EARLY_DATA_FINISHED_READING
234 && s->statem.hand_state == TLS_ST_EARLY_DATA)
235 ossl_statem_set_in_init(s, 1);
d7f8783f 236 }
564547e4
MC
237}
238
31fd10e6
MC
239void ossl_statem_set_hello_verify_done(SSL *s)
240{
241 s->statem.state = MSG_FLOW_UNINITED;
242 s->statem.in_init = 1;
243 /*
244 * This will get reset (briefly) back to TLS_ST_BEFORE when we enter
245 * state_machine() because |state| is MSG_FLOW_UNINITED, but until then any
246 * calls to SSL_in_before() will return false. Also calls to
247 * SSL_state_string() and SSL_state_string_long() will return something
248 * sensible.
249 */
250 s->statem.hand_state = TLS_ST_SR_CLNT_HELLO;
251}
252
a230b26e
EK
253int ossl_statem_connect(SSL *s)
254{
8723588e
MC
255 return state_machine(s, 0);
256}
257
fe3a3291 258int ossl_statem_accept(SSL *s)
c130dd8e
MC
259{
260 return state_machine(s, 1);
261}
262
a230b26e
EK
263typedef void (*info_cb) (const SSL *, int, int);
264
265static info_cb get_callback(SSL *s)
91eac8d5
MC
266{
267 if (s->info_callback != NULL)
268 return s->info_callback;
269 else if (s->ctx->info_callback != NULL)
270 return s->ctx->info_callback;
271
272 return NULL;
273}
274
f8e0a557
MC
275/*
276 * The main message flow state machine. We start in the MSG_FLOW_UNINITED or
c7f47786 277 * MSG_FLOW_FINISHED state and finish in MSG_FLOW_FINISHED. Valid states and
f8e0a557
MC
278 * transitions are as follows:
279 *
c7f47786 280 * MSG_FLOW_UNINITED MSG_FLOW_FINISHED
f8e0a557
MC
281 * | |
282 * +-----------------------+
283 * v
284 * MSG_FLOW_WRITING <---> MSG_FLOW_READING
285 * |
286 * V
287 * MSG_FLOW_FINISHED
288 * |
289 * V
290 * [SUCCESS]
291 *
292 * We may exit at any point due to an error or NBIO event. If an NBIO event
293 * occurs then we restart at the point we left off when we are recalled.
294 * MSG_FLOW_WRITING and MSG_FLOW_READING have sub-state machines associated with them.
295 *
296 * In addition to the above there is also the MSG_FLOW_ERROR state. We can move
297 * into that state at any point in the event that an irrecoverable error occurs.
298 *
299 * Valid return values are:
300 * 1: Success
301 * <=0: NBIO or error
302 */
4fa52141
VD
303static int state_machine(SSL *s, int server)
304{
f8e0a557 305 BUF_MEM *buf = NULL;
f8e0a557 306 void (*cb) (const SSL *ssl, int type, int val) = NULL;
d6f1a6e9 307 OSSL_STATEM *st = &s->statem;
f8e0a557
MC
308 int ret = -1;
309 int ssret;
310
311 if (st->state == MSG_FLOW_ERROR) {
312 /* Shouldn't have been called if we're already in the error state */
313 return -1;
314 }
315
f8e0a557
MC
316 ERR_clear_error();
317 clear_sys_error();
318
91eac8d5 319 cb = get_callback(s);
f8e0a557 320
024f543c 321 st->in_handshake++;
f8e0a557 322 if (!SSL_in_init(s) || SSL_in_before(s)) {
808d1601
MC
323 /*
324 * If we are stateless then we already called SSL_clear() - don't do
325 * it again and clear the STATELESS flag itself.
326 */
555cbb32 327 if ((s->s3.flags & TLS1_FLAGS_STATELESS) == 0 && !SSL_clear(s))
f8e0a557
MC
328 return -1;
329 }
473483d4 330#ifndef OPENSSL_NO_SCTP
99240875 331 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))) {
473483d4
MC
332 /*
333 * Notify SCTP BIO socket to enter handshake mode and prevent stream
99240875 334 * identifier other than 0.
473483d4
MC
335 */
336 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE,
024f543c 337 st->in_handshake, NULL);
473483d4
MC
338 }
339#endif
340
f8e0a557 341 /* Initialise state machine */
0386aad1 342 if (st->state == MSG_FLOW_UNINITED
0386aad1 343 || st->state == MSG_FLOW_FINISHED) {
f8e0a557
MC
344 if (st->state == MSG_FLOW_UNINITED) {
345 st->hand_state = TLS_ST_BEFORE;
0386aad1 346 st->request_state = TLS_ST_BEFORE;
f8e0a557
MC
347 }
348
349 s->server = server;
4af5836b
MC
350 if (cb != NULL) {
351 if (SSL_IS_FIRST_HANDSHAKE(s) || !SSL_IS_TLS13(s))
352 cb(s, SSL_CB_HANDSHAKE_START, 1);
353 }
f8e0a557 354
47e2ee07
MC
355 /*
356 * Fatal errors in this block don't send an alert because we have
357 * failed to even initialise properly. Sending an alert is probably
358 * doomed to failure.
359 */
360
f8e0a557
MC
361 if (SSL_IS_DTLS(s)) {
362 if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00) &&
a230b26e 363 (server || (s->version & 0xff00) != (DTLS1_BAD_VER & 0xff00))) {
c48ffbcc 364 SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
f8e0a557
MC
365 goto end;
366 }
367 } else {
4fa52141 368 if ((s->version >> 8) != SSL3_VERSION_MAJOR) {
c48ffbcc 369 SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
f8e0a557
MC
370 goto end;
371 }
372 }
373
4fa52141 374 if (!ssl_security(s, SSL_SECOP_VERSION, 0, s->version, NULL)) {
c48ffbcc 375 SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
4fa52141 376 goto end;
f8e0a557
MC
377 }
378
f8e0a557
MC
379 if (s->init_buf == NULL) {
380 if ((buf = BUF_MEM_new()) == NULL) {
c48ffbcc 381 SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
f8e0a557
MC
382 goto end;
383 }
384 if (!BUF_MEM_grow(buf, SSL3_RT_MAX_PLAIN_LENGTH)) {
c48ffbcc 385 SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
f8e0a557
MC
386 goto end;
387 }
388 s->init_buf = buf;
389 buf = NULL;
390 }
391
392 if (!ssl3_setup_buffers(s)) {
c48ffbcc 393 SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
f8e0a557
MC
394 goto end;
395 }
396 s->init_num = 0;
397
398 /*
399 * Should have been reset by tls_process_finished, too.
400 */
555cbb32 401 s->s3.change_cipher_spec = 0;
f8e0a557 402
46417569
MC
403 /*
404 * Ok, we now need to push on a buffering BIO ...but not with
405 * SCTP
406 */
f8e0a557 407#ifndef OPENSSL_NO_SCTP
46417569 408 if (!SSL_IS_DTLS(s) || !BIO_dgram_is_sctp(SSL_get_wbio(s)))
f8e0a557 409#endif
46417569 410 if (!ssl_init_wbio_buffer(s)) {
c48ffbcc 411 SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
46417569
MC
412 goto end;
413 }
f8e0a557 414
f7e393be 415 if ((SSL_in_before(s))
49e7fe12 416 || s->renegotiate) {
47e2ee07
MC
417 if (!tls_setup_handshake(s)) {
418 /* SSLfatal() already called */
c7f47786 419 goto end;
47e2ee07 420 }
0386aad1 421
c7f47786
MC
422 if (SSL_IS_FIRST_HANDSHAKE(s))
423 st->read_state_first_init = 1;
f8e0a557
MC
424 }
425
426 st->state = MSG_FLOW_WRITING;
427 init_write_state_machine(s);
f8e0a557
MC
428 }
429
e8aa8b6c
F
430 while (st->state != MSG_FLOW_FINISHED) {
431 if (st->state == MSG_FLOW_READING) {
f8e0a557
MC
432 ssret = read_state_machine(s);
433 if (ssret == SUB_STATE_FINISHED) {
434 st->state = MSG_FLOW_WRITING;
435 init_write_state_machine(s);
436 } else {
437 /* NBIO or error */
438 goto end;
439 }
440 } else if (st->state == MSG_FLOW_WRITING) {
441 ssret = write_state_machine(s);
442 if (ssret == SUB_STATE_FINISHED) {
443 st->state = MSG_FLOW_READING;
444 init_read_state_machine(s);
445 } else if (ssret == SUB_STATE_END_HANDSHAKE) {
446 st->state = MSG_FLOW_FINISHED;
447 } else {
448 /* NBIO or error */
449 goto end;
450 }
451 } else {
452 /* Error */
c48ffbcc 453 check_fatal(s);
6849b73c 454 ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
f8e0a557
MC
455 goto end;
456 }
457 }
458
f8e0a557
MC
459 ret = 1;
460
461 end:
024f543c 462 st->in_handshake--;
473483d4
MC
463
464#ifndef OPENSSL_NO_SCTP
99240875 465 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))) {
473483d4
MC
466 /*
467 * Notify SCTP BIO socket to leave handshake mode and allow stream
99240875 468 * identifier other than 0.
473483d4
MC
469 */
470 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE,
024f543c 471 st->in_handshake, NULL);
473483d4
MC
472 }
473#endif
474
f8e0a557
MC
475 BUF_MEM_free(buf);
476 if (cb != NULL) {
477 if (server)
478 cb(s, SSL_CB_ACCEPT_EXIT, ret);
479 else
480 cb(s, SSL_CB_CONNECT_EXIT, ret);
481 }
482 return ret;
483}
484
485/*
486 * Initialise the MSG_FLOW_READING sub-state machine
487 */
488static void init_read_state_machine(SSL *s)
489{
d6f1a6e9 490 OSSL_STATEM *st = &s->statem;
f8e0a557
MC
491
492 st->read_state = READ_STATE_HEADER;
493}
494
0d698f66
MC
495static int grow_init_buf(SSL *s, size_t size) {
496
497 size_t msg_offset = (char *)s->init_msg - s->init_buf->data;
498
499 if (!BUF_MEM_grow_clean(s->init_buf, (int)size))
500 return 0;
501
502 if (size < msg_offset)
503 return 0;
504
505 s->init_msg = s->init_buf->data + msg_offset;
506
507 return 1;
508}
509
f8e0a557
MC
510/*
511 * This function implements the sub-state machine when the message flow is in
512 * MSG_FLOW_READING. The valid sub-states and transitions are:
513 *
514 * READ_STATE_HEADER <--+<-------------+
515 * | | |
516 * v | |
517 * READ_STATE_BODY -----+-->READ_STATE_POST_PROCESS
518 * | |
519 * +----------------------------+
520 * v
521 * [SUB_STATE_FINISHED]
522 *
523 * READ_STATE_HEADER has the responsibility for reading in the message header
524 * and transitioning the state of the handshake state machine.
525 *
526 * READ_STATE_BODY reads in the rest of the message and then subsequently
527 * processes it.
528 *
529 * READ_STATE_POST_PROCESS is an optional step that may occur if some post
530 * processing activity performed on the message may block.
531 *
0d4fb843 532 * Any of the above states could result in an NBIO event occurring in which case
f8e0a557
MC
533 * control returns to the calling application. When this function is recalled we
534 * will resume in the same state where we left off.
535 */
a230b26e
EK
536static SUB_STATE_RETURN read_state_machine(SSL *s)
537{
d6f1a6e9 538 OSSL_STATEM *st = &s->statem;
f8e0a557 539 int ret, mt;
eda75751 540 size_t len = 0;
a230b26e 541 int (*transition) (SSL *s, int mt);
73999b62 542 PACKET pkt;
a230b26e
EK
543 MSG_PROCESS_RETURN(*process_message) (SSL *s, PACKET *pkt);
544 WORK_STATE(*post_process_message) (SSL *s, WORK_STATE wst);
eda75751 545 size_t (*max_message_size) (SSL *s);
f8e0a557
MC
546 void (*cb) (const SSL *ssl, int type, int val) = NULL;
547
91eac8d5 548 cb = get_callback(s);
f8e0a557 549
e8aa8b6c 550 if (s->server) {
8481f583
MC
551 transition = ossl_statem_server_read_transition;
552 process_message = ossl_statem_server_process_message;
553 max_message_size = ossl_statem_server_max_message_size;
554 post_process_message = ossl_statem_server_post_process_message;
f8e0a557 555 } else {
8481f583
MC
556 transition = ossl_statem_client_read_transition;
557 process_message = ossl_statem_client_process_message;
558 max_message_size = ossl_statem_client_max_message_size;
559 post_process_message = ossl_statem_client_post_process_message;
f8e0a557
MC
560 }
561
562 if (st->read_state_first_init) {
563 s->first_packet = 1;
564 st->read_state_first_init = 0;
565 }
566
e8aa8b6c
F
567 while (1) {
568 switch (st->read_state) {
f8e0a557 569 case READ_STATE_HEADER:
f8e0a557 570 /* Get the state the peer wants to move to */
76af3037
MC
571 if (SSL_IS_DTLS(s)) {
572 /*
573 * In DTLS we get the whole message in one go - header and body
574 */
575 ret = dtls_get_message(s, &mt, &len);
576 } else {
577 ret = tls_get_message_header(s, &mt);
578 }
f8e0a557
MC
579
580 if (ret == 0) {
581 /* Could be non-blocking IO */
582 return SUB_STATE_ERROR;
583 }
584
585 if (cb != NULL) {
586 /* Notify callback of an impending state change */
587 if (s->server)
588 cb(s, SSL_CB_ACCEPT_LOOP, 1);
589 else
590 cb(s, SSL_CB_CONNECT_LOOP, 1);
591 }
592 /*
593 * Validate that we are allowed to move to the new state and move
594 * to that state if so
595 */
f20404fc 596 if (!transition(s, mt))
f8e0a557 597 return SUB_STATE_ERROR;
f8e0a557 598
555cbb32 599 if (s->s3.tmp.message_size > max_message_size(s)) {
c48ffbcc 600 SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
f63a17d6 601 SSL_R_EXCESSIVE_MESSAGE_SIZE);
f8e0a557
MC
602 return SUB_STATE_ERROR;
603 }
604
c1ef7c97
MC
605 /* dtls_get_message already did this */
606 if (!SSL_IS_DTLS(s)
555cbb32
TS
607 && s->s3.tmp.message_size > 0
608 && !grow_init_buf(s, s->s3.tmp.message_size
0d698f66 609 + SSL3_HM_HEADER_LENGTH)) {
c48ffbcc 610 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_BUF_LIB);
c1ef7c97
MC
611 return SUB_STATE_ERROR;
612 }
613
f8e0a557
MC
614 st->read_state = READ_STATE_BODY;
615 /* Fall through */
616
617 case READ_STATE_BODY:
618 if (!SSL_IS_DTLS(s)) {
619 /* We already got this above for DTLS */
620 ret = tls_get_message_body(s, &len);
621 if (ret == 0) {
622 /* Could be non-blocking IO */
623 return SUB_STATE_ERROR;
624 }
625 }
626
627 s->first_packet = 0;
73999b62 628 if (!PACKET_buf_init(&pkt, s->init_msg, len)) {
c48ffbcc 629 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
73999b62
MC
630 return SUB_STATE_ERROR;
631 }
632 ret = process_message(s, &pkt);
1689e7e6
MC
633
634 /* Discard the packet data */
635 s->init_num = 0;
636
4f8a5f4d
AG
637 switch (ret) {
638 case MSG_PROCESS_ERROR:
c48ffbcc 639 check_fatal(s);
f8e0a557 640 return SUB_STATE_ERROR;
f8e0a557 641
4f8a5f4d 642 case MSG_PROCESS_FINISHED_READING:
f8e0a557
MC
643 if (SSL_IS_DTLS(s)) {
644 dtls1_stop_timer(s);
645 }
646 return SUB_STATE_FINISHED;
f8e0a557 647
4f8a5f4d 648 case MSG_PROCESS_CONTINUE_PROCESSING:
f8e0a557
MC
649 st->read_state = READ_STATE_POST_PROCESS;
650 st->read_state_work = WORK_MORE_A;
4f8a5f4d
AG
651 break;
652
653 default:
f8e0a557 654 st->read_state = READ_STATE_HEADER;
4f8a5f4d 655 break;
f8e0a557
MC
656 }
657 break;
658
659 case READ_STATE_POST_PROCESS:
660 st->read_state_work = post_process_message(s, st->read_state_work);
e8aa8b6c 661 switch (st->read_state_work) {
f3b3d7f0 662 case WORK_ERROR:
c48ffbcc 663 check_fatal(s);
47e2ee07 664 /* Fall through */
f3b3d7f0
RS
665 case WORK_MORE_A:
666 case WORK_MORE_B:
ddf97258 667 case WORK_MORE_C:
f8e0a557
MC
668 return SUB_STATE_ERROR;
669
670 case WORK_FINISHED_CONTINUE:
671 st->read_state = READ_STATE_HEADER;
672 break;
673
674 case WORK_FINISHED_STOP:
675 if (SSL_IS_DTLS(s)) {
676 dtls1_stop_timer(s);
677 }
678 return SUB_STATE_FINISHED;
679 }
680 break;
681
682 default:
683 /* Shouldn't happen */
c48ffbcc 684 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
f8e0a557
MC
685 return SUB_STATE_ERROR;
686 }
687 }
688}
689
690/*
691 * Send a previously constructed message to the peer.
692 */
693static int statem_do_write(SSL *s)
694{
d6f1a6e9 695 OSSL_STATEM *st = &s->statem;
f8e0a557
MC
696
697 if (st->hand_state == TLS_ST_CW_CHANGE
a230b26e 698 || st->hand_state == TLS_ST_SW_CHANGE) {
f8e0a557
MC
699 if (SSL_IS_DTLS(s))
700 return dtls1_do_write(s, SSL3_RT_CHANGE_CIPHER_SPEC);
701 else
702 return ssl3_do_write(s, SSL3_RT_CHANGE_CIPHER_SPEC);
703 } else {
704 return ssl_do_write(s);
705 }
706}
707
708/*
709 * Initialise the MSG_FLOW_WRITING sub-state machine
710 */
711static void init_write_state_machine(SSL *s)
712{
d6f1a6e9 713 OSSL_STATEM *st = &s->statem;
f8e0a557
MC
714
715 st->write_state = WRITE_STATE_TRANSITION;
716}
717
718/*
719 * This function implements the sub-state machine when the message flow is in
720 * MSG_FLOW_WRITING. The valid sub-states and transitions are:
721 *
722 * +-> WRITE_STATE_TRANSITION ------> [SUB_STATE_FINISHED]
723 * | |
724 * | v
725 * | WRITE_STATE_PRE_WORK -----> [SUB_STATE_END_HANDSHAKE]
726 * | |
727 * | v
728 * | WRITE_STATE_SEND
729 * | |
730 * | v
731 * | WRITE_STATE_POST_WORK
732 * | |
733 * +-------------+
734 *
735 * WRITE_STATE_TRANSITION transitions the state of the handshake state machine
736
737 * WRITE_STATE_PRE_WORK performs any work necessary to prepare the later
0d4fb843 738 * sending of the message. This could result in an NBIO event occurring in
f8e0a557
MC
739 * which case control returns to the calling application. When this function
740 * is recalled we will resume in the same state where we left off.
741 *
742 * WRITE_STATE_SEND sends the message and performs any work to be done after
743 * sending.
744 *
745 * WRITE_STATE_POST_WORK performs any work necessary after the sending of the
746 * message has been completed. As for WRITE_STATE_PRE_WORK this could also
747 * result in an NBIO event.
748 */
d78052cf 749static SUB_STATE_RETURN write_state_machine(SSL *s)
f8e0a557 750{
d6f1a6e9 751 OSSL_STATEM *st = &s->statem;
f8e0a557 752 int ret;
a230b26e
EK
753 WRITE_TRAN(*transition) (SSL *s);
754 WORK_STATE(*pre_work) (SSL *s, WORK_STATE wst);
755 WORK_STATE(*post_work) (SSL *s, WORK_STATE wst);
6392fb8e
MC
756 int (*get_construct_message_f) (SSL *s, WPACKET *pkt,
757 int (**confunc) (SSL *s, WPACKET *pkt),
758 int *mt);
f8e0a557 759 void (*cb) (const SSL *ssl, int type, int val) = NULL;
6392fb8e
MC
760 int (*confunc) (SSL *s, WPACKET *pkt);
761 int mt;
7cea05dc 762 WPACKET pkt;
f8e0a557 763
91eac8d5 764 cb = get_callback(s);
f8e0a557 765
e8aa8b6c 766 if (s->server) {
8481f583
MC
767 transition = ossl_statem_server_write_transition;
768 pre_work = ossl_statem_server_pre_work;
769 post_work = ossl_statem_server_post_work;
6392fb8e 770 get_construct_message_f = ossl_statem_server_construct_message;
f8e0a557 771 } else {
8481f583
MC
772 transition = ossl_statem_client_write_transition;
773 pre_work = ossl_statem_client_pre_work;
774 post_work = ossl_statem_client_post_work;
6392fb8e 775 get_construct_message_f = ossl_statem_client_construct_message;
f8e0a557
MC
776 }
777
e8aa8b6c
F
778 while (1) {
779 switch (st->write_state) {
f8e0a557
MC
780 case WRITE_STATE_TRANSITION:
781 if (cb != NULL) {
782 /* Notify callback of an impending state change */
783 if (s->server)
784 cb(s, SSL_CB_ACCEPT_LOOP, 1);
785 else
786 cb(s, SSL_CB_CONNECT_LOOP, 1);
787 }
e8aa8b6c 788 switch (transition(s)) {
f8e0a557
MC
789 case WRITE_TRAN_CONTINUE:
790 st->write_state = WRITE_STATE_PRE_WORK;
791 st->write_state_work = WORK_MORE_A;
792 break;
793
794 case WRITE_TRAN_FINISHED:
795 return SUB_STATE_FINISHED;
796 break;
797
f3b3d7f0 798 case WRITE_TRAN_ERROR:
c48ffbcc 799 check_fatal(s);
f8e0a557
MC
800 return SUB_STATE_ERROR;
801 }
802 break;
803
804 case WRITE_STATE_PRE_WORK:
e8aa8b6c 805 switch (st->write_state_work = pre_work(s, st->write_state_work)) {
f3b3d7f0 806 case WORK_ERROR:
c48ffbcc 807 check_fatal(s);
47e2ee07 808 /* Fall through */
f3b3d7f0
RS
809 case WORK_MORE_A:
810 case WORK_MORE_B:
ddf97258 811 case WORK_MORE_C:
f8e0a557
MC
812 return SUB_STATE_ERROR;
813
814 case WORK_FINISHED_CONTINUE:
815 st->write_state = WRITE_STATE_SEND;
816 break;
817
818 case WORK_FINISHED_STOP:
819 return SUB_STATE_END_HANDSHAKE;
820 }
f7e393be 821 if (!get_construct_message_f(s, &pkt, &confunc, &mt)) {
f63a17d6 822 /* SSLfatal() already called */
f7e393be
MC
823 return SUB_STATE_ERROR;
824 }
825 if (mt == SSL3_MT_DUMMY) {
826 /* Skip construction and sending. This isn't a "real" state */
827 st->write_state = WRITE_STATE_POST_WORK;
828 st->write_state_work = WORK_MORE_A;
829 break;
830 }
7cea05dc 831 if (!WPACKET_init(&pkt, s->init_buf)
f63a17d6
MC
832 || !ssl_set_handshake_header(s, &pkt, mt)) {
833 WPACKET_cleanup(&pkt);
c48ffbcc 834 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
f63a17d6
MC
835 return SUB_STATE_ERROR;
836 }
837 if (confunc != NULL && !confunc(s, &pkt)) {
838 WPACKET_cleanup(&pkt);
c48ffbcc 839 check_fatal(s);
f63a17d6
MC
840 return SUB_STATE_ERROR;
841 }
842 if (!ssl_close_construct_packet(s, &pkt, mt)
7cea05dc
MC
843 || !WPACKET_finish(&pkt)) {
844 WPACKET_cleanup(&pkt);
c48ffbcc 845 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
f8e0a557 846 return SUB_STATE_ERROR;
7cea05dc 847 }
f8e0a557
MC
848
849 /* Fall through */
850
851 case WRITE_STATE_SEND:
852 if (SSL_IS_DTLS(s) && st->use_timer) {
853 dtls1_start_timer(s);
854 }
855 ret = statem_do_write(s);
856 if (ret <= 0) {
857 return SUB_STATE_ERROR;
858 }
859 st->write_state = WRITE_STATE_POST_WORK;
860 st->write_state_work = WORK_MORE_A;
861 /* Fall through */
862
863 case WRITE_STATE_POST_WORK:
e8aa8b6c 864 switch (st->write_state_work = post_work(s, st->write_state_work)) {
f3b3d7f0 865 case WORK_ERROR:
c48ffbcc 866 check_fatal(s);
47e2ee07 867 /* Fall through */
f3b3d7f0
RS
868 case WORK_MORE_A:
869 case WORK_MORE_B:
ddf97258 870 case WORK_MORE_C:
f8e0a557
MC
871 return SUB_STATE_ERROR;
872
873 case WORK_FINISHED_CONTINUE:
874 st->write_state = WRITE_STATE_TRANSITION;
875 break;
876
877 case WORK_FINISHED_STOP:
878 return SUB_STATE_END_HANDSHAKE;
879 }
880 break;
881
882 default:
c48ffbcc 883 SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
f8e0a557
MC
884 return SUB_STATE_ERROR;
885 }
886 }
887}
888
8723588e
MC
889/*
890 * Flush the write BIO
891 */
61ae935a 892int statem_flush(SSL *s)
8723588e
MC
893{
894 s->rwstate = SSL_WRITING;
895 if (BIO_flush(s->wbio) <= 0) {
896 return 0;
897 }
898 s->rwstate = SSL_NOTHING;
899
900 return 1;
901}
902
f8e0a557
MC
903/*
904 * Called by the record layer to determine whether application data is
c7f47786 905 * allowed to be received in the current handshake state or not.
f8e0a557
MC
906 *
907 * Return values are:
908 * 1: Yes (application data allowed)
909 * 0: No (application data not allowed)
910 */
fe3a3291 911int ossl_statem_app_data_allowed(SSL *s)
f8e0a557 912{
d6f1a6e9 913 OSSL_STATEM *st = &s->statem;
f8e0a557 914
c7f47786 915 if (st->state == MSG_FLOW_UNINITED)
8723588e
MC
916 return 0;
917
555cbb32 918 if (!s->s3.in_read_app_data || (s->s3.total_renegotiations == 0))
94836de2 919 return 0;
8723588e 920
94836de2
MC
921 if (s->server) {
922 /*
923 * If we're a server and we haven't got as far as writing our
924 * ServerHello yet then we allow app data
925 */
926 if (st->hand_state == TLS_ST_BEFORE
a230b26e 927 || st->hand_state == TLS_ST_SR_CLNT_HELLO)
94836de2
MC
928 return 1;
929 } else {
930 /*
931 * If we're a client and we haven't read the ServerHello yet then we
932 * allow app data
933 */
934 if (st->hand_state == TLS_ST_CW_CLNT_HELLO)
8723588e 935 return 1;
8723588e
MC
936 }
937
8723588e
MC
938 return 0;
939}
1f5878b8
TT
940
941/*
942 * This function returns 1 if TLS exporter is ready to export keying
943 * material, or 0 if otherwise.
944 */
945int ossl_statem_export_allowed(SSL *s)
946{
555cbb32 947 return s->s3.previous_server_finished_len != 0
1f5878b8
TT
948 && s->statem.hand_state != TLS_ST_SW_FINISHED;
949}
b38ede80
TT
950
951/*
952 * Return 1 if early TLS exporter is ready to export keying material,
953 * or 0 if otherwise.
954 */
955int ossl_statem_export_early_allowed(SSL *s)
956{
957 /*
958 * The early exporter secret is only present on the server if we
959 * have accepted early_data. It is present on the client as long
960 * as we have sent early_data.
961 */
962 return s->ext.early_data == SSL_EARLY_DATA_ACCEPTED
963 || (!s->server && s->ext.early_data != SSL_EARLY_DATA_NOT_SENT);
964}