Coverage Report

Created: 2023-06-08 06:41

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