Coverage Report

Created: 2023-06-08 06:43

/src/openssl111/ssl/statem/statem_clnt.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 * Copyright 2005 Nokia. All rights reserved.
5
 *
6
 * Licensed under the OpenSSL license (the "License").  You may not use
7
 * this file except in compliance with the License.  You can obtain a copy
8
 * in the file LICENSE in the source distribution or at
9
 * https://www.openssl.org/source/license.html
10
 */
11
12
#include <stdio.h>
13
#include <time.h>
14
#include <assert.h>
15
#include "../ssl_local.h"
16
#include "statem_local.h"
17
#include <openssl/buffer.h>
18
#include <openssl/rand.h>
19
#include <openssl/objects.h>
20
#include <openssl/evp.h>
21
#include <openssl/md5.h>
22
#include <openssl/dh.h>
23
#include <openssl/bn.h>
24
#include <openssl/engine.h>
25
#include <internal/cryptlib.h>
26
27
static MSG_PROCESS_RETURN tls_process_as_hello_retry_request(SSL *s, PACKET *pkt);
28
static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt);
29
30
static ossl_inline int cert_req_allowed(SSL *s);
31
static int key_exchange_expected(SSL *s);
32
static int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk,
33
                                    WPACKET *pkt);
34
35
/*
36
 * Is a CertificateRequest message allowed at the moment or not?
37
 *
38
 *  Return values are:
39
 *  1: Yes
40
 *  0: No
41
 */
42
static ossl_inline int cert_req_allowed(SSL *s)
43
1.66k
{
44
    /* TLS does not like anon-DH with client cert */
45
1.66k
    if ((s->version > SSL3_VERSION
46
1.66k
         && (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL))
47
1.66k
        || (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aSRP | SSL_aPSK)))
48
3
        return 0;
49
50
1.65k
    return 1;
51
1.66k
}
52
53
/*
54
 * Should we expect the ServerKeyExchange message or not?
55
 *
56
 *  Return values are:
57
 *  1: Yes
58
 *  0: No
59
 */
60
static int key_exchange_expected(SSL *s)
61
11.8k
{
62
11.8k
    long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
63
64
    /*
65
     * Can't skip server key exchange if this is an ephemeral
66
     * ciphersuite or for SRP
67
     */
68
11.8k
    if (alg_k & (SSL_kDHE | SSL_kECDHE | SSL_kDHEPSK | SSL_kECDHEPSK
69
11.8k
                 | SSL_kSRP)) {
70
9.33k
        return 1;
71
9.33k
    }
72
73
2.48k
    return 0;
74
11.8k
}
75
76
/*
77
 * ossl_statem_client_read_transition() encapsulates the logic for the allowed
78
 * handshake state transitions when a TLS1.3 client is reading messages from the
79
 * server. The message type that the server has sent is provided in |mt|. The
80
 * current state is in |s->statem.hand_state|.
81
 *
82
 * Return values are 1 for success (transition allowed) and  0 on error
83
 * (transition not allowed)
84
 */
85
static int ossl_statem_client13_read_transition(SSL *s, int mt)
86
{
87
    OSSL_STATEM *st = &s->statem;
88
89
    /*
90
     * Note: There is no case for TLS_ST_CW_CLNT_HELLO, because we haven't
91
     * yet negotiated TLSv1.3 at that point so that is handled by
92
     * ossl_statem_client_read_transition()
93
     */
94
95
    switch (st->hand_state) {
96
    default:
97
        break;
98
99
    case TLS_ST_CW_CLNT_HELLO:
100
        /*
101
         * This must a ClientHello following a HelloRetryRequest, so the only
102
         * thing we can get now is a ServerHello.
103
         */
104
        if (mt == SSL3_MT_SERVER_HELLO) {
105
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
106
            return 1;
107
        }
108
        break;
109
110
    case TLS_ST_CR_SRVR_HELLO:
111
        if (mt == SSL3_MT_ENCRYPTED_EXTENSIONS) {
112
            st->hand_state = TLS_ST_CR_ENCRYPTED_EXTENSIONS;
113
            return 1;
114
        }
115
        break;
116
117
    case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
118
        if (s->hit) {
119
            if (mt == SSL3_MT_FINISHED) {
120
                st->hand_state = TLS_ST_CR_FINISHED;
121
                return 1;
122
            }
123
        } else {
124
            if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
125
                st->hand_state = TLS_ST_CR_CERT_REQ;
126
                return 1;
127
            }
128
            if (mt == SSL3_MT_CERTIFICATE) {
129
                st->hand_state = TLS_ST_CR_CERT;
130
                return 1;
131
            }
132
        }
133
        break;
134
135
    case TLS_ST_CR_CERT_REQ:
136
        if (mt == SSL3_MT_CERTIFICATE) {
137
            st->hand_state = TLS_ST_CR_CERT;
138
            return 1;
139
        }
140
        break;
141
142
    case TLS_ST_CR_CERT:
143
        if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
144
            st->hand_state = TLS_ST_CR_CERT_VRFY;
145
            return 1;
146
        }
147
        break;
148
149
    case TLS_ST_CR_CERT_VRFY:
150
        if (mt == SSL3_MT_FINISHED) {
151
            st->hand_state = TLS_ST_CR_FINISHED;
152
            return 1;
153
        }
154
        break;
155
156
    case TLS_ST_OK:
157
        if (mt == SSL3_MT_NEWSESSION_TICKET) {
158
            st->hand_state = TLS_ST_CR_SESSION_TICKET;
159
            return 1;
160
        }
161
        if (mt == SSL3_MT_KEY_UPDATE) {
162
            st->hand_state = TLS_ST_CR_KEY_UPDATE;
163
            return 1;
164
        }
165
        if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
166
#if DTLS_MAX_VERSION != DTLS1_2_VERSION
167
# error TODO(DTLS1.3): Restore digest for PHA before adding message.
168
#endif
169
            if (!SSL_IS_DTLS(s) && s->post_handshake_auth == SSL_PHA_EXT_SENT) {
170
                s->post_handshake_auth = SSL_PHA_REQUESTED;
171
                /*
172
                 * In TLS, this is called before the message is added to the
173
                 * digest. In DTLS, this is expected to be called after adding
174
                 * to the digest. Either move the digest restore, or add the
175
                 * message here after the swap, or do it after the clientFinished?
176
                 */
177
                if (!tls13_restore_handshake_digest_for_pha(s)) {
178
                    /* SSLfatal() already called */
179
                    return 0;
180
                }
181
                st->hand_state = TLS_ST_CR_CERT_REQ;
182
                return 1;
183
            }
184
        }
185
        break;
186
    }
187
188
    /* No valid transition found */
189
    return 0;
190
}
191
192
/*
193
 * ossl_statem_client_read_transition() encapsulates the logic for the allowed
194
 * handshake state transitions when the client is reading messages from the
195
 * server. The message type that the server has sent is provided in |mt|. The
196
 * current state is in |s->statem.hand_state|.
197
 *
198
 * Return values are 1 for success (transition allowed) and  0 on error
199
 * (transition not allowed)
200
 */
201
int ossl_statem_client_read_transition(SSL *s, int mt)
202
34.7k
{
203
34.7k
    OSSL_STATEM *st = &s->statem;
204
34.7k
    int ske_expected;
205
206
    /*
207
     * Note that after writing the first ClientHello we don't know what version
208
     * we are going to negotiate yet, so we don't take this branch until later.
209
     */
210
34.7k
    if (SSL_IS_TLS13(s)) {
211
0
        if (!ossl_statem_client13_read_transition(s, mt))
212
0
            goto err;
213
0
        return 1;
214
0
    }
215
216
34.7k
    switch (st->hand_state) {
217
0
    default:
218
0
        break;
219
220
14.2k
    case TLS_ST_CW_CLNT_HELLO:
221
14.2k
        if (mt == SSL3_MT_SERVER_HELLO) {
222
14.1k
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
223
14.1k
            return 1;
224
14.1k
        }
225
226
85
        if (SSL_IS_DTLS(s)) {
227
0
            if (mt == DTLS1_MT_HELLO_VERIFY_REQUEST) {
228
0
                st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST;
229
0
                return 1;
230
0
            }
231
0
        }
232
85
        break;
233
234
85
    case TLS_ST_EARLY_DATA:
235
        /*
236
         * We've not actually selected TLSv1.3 yet, but we have sent early
237
         * data. The only thing allowed now is a ServerHello or a
238
         * HelloRetryRequest.
239
         */
240
0
        if (mt == SSL3_MT_SERVER_HELLO) {
241
0
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
242
0
            return 1;
243
0
        }
244
0
        break;
245
246
12.2k
    case TLS_ST_CR_SRVR_HELLO:
247
12.2k
        if (s->hit) {
248
0
            if (s->ext.ticket_expected) {
249
0
                if (mt == SSL3_MT_NEWSESSION_TICKET) {
250
0
                    st->hand_state = TLS_ST_CR_SESSION_TICKET;
251
0
                    return 1;
252
0
                }
253
0
            } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
254
0
                st->hand_state = TLS_ST_CR_CHANGE;
255
0
                return 1;
256
0
            }
257
12.2k
        } else {
258
12.2k
            if (SSL_IS_DTLS(s) && mt == DTLS1_MT_HELLO_VERIFY_REQUEST) {
259
0
                st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST;
260
0
                return 1;
261
12.2k
            } else if (s->version >= TLS1_VERSION
262
12.2k
                       && s->ext.session_secret_cb != NULL
263
12.2k
                       && s->session->ext.tick != NULL
264
12.2k
                       && mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
265
                /*
266
                 * Normally, we can tell if the server is resuming the session
267
                 * from the session ID. EAP-FAST (RFC 4851), however, relies on
268
                 * the next server message after the ServerHello to determine if
269
                 * the server is resuming.
270
                 */
271
0
                s->hit = 1;
272
0
                st->hand_state = TLS_ST_CR_CHANGE;
273
0
                return 1;
274
12.2k
            } else if (!(s->s3->tmp.new_cipher->algorithm_auth
275
12.2k
                         & (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
276
7.82k
                if (mt == SSL3_MT_CERTIFICATE) {
277
7.80k
                    st->hand_state = TLS_ST_CR_CERT;
278
7.80k
                    return 1;
279
7.80k
                }
280
7.82k
            } else {
281
4.46k
                ske_expected = key_exchange_expected(s);
282
                /* SKE is optional for some PSK ciphersuites */
283
4.46k
                if (ske_expected
284
4.46k
                    || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
285
4.46k
                        && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
286
4.46k
                    if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
287
4.44k
                        st->hand_state = TLS_ST_CR_KEY_EXCH;
288
4.44k
                        return 1;
289
4.44k
                    }
290
4.46k
                } else if (mt == SSL3_MT_CERTIFICATE_REQUEST
291
0
                           && cert_req_allowed(s)) {
292
0
                    st->hand_state = TLS_ST_CR_CERT_REQ;
293
0
                    return 1;
294
0
                } else if (mt == SSL3_MT_SERVER_DONE) {
295
0
                    st->hand_state = TLS_ST_CR_SRVR_DONE;
296
0
                    return 1;
297
0
                }
298
4.46k
            }
299
12.2k
        }
300
32
        break;
301
302
3.57k
    case TLS_ST_CR_CERT:
303
        /*
304
         * The CertificateStatus message is optional even if
305
         * |ext.status_expected| is set
306
         */
307
3.57k
        if (s->ext.status_expected && mt == SSL3_MT_CERTIFICATE_STATUS) {
308
0
            st->hand_state = TLS_ST_CR_CERT_STATUS;
309
0
            return 1;
310
0
        }
311
        /* Fall through */
312
313
3.57k
    case TLS_ST_CR_CERT_STATUS:
314
3.57k
        ske_expected = key_exchange_expected(s);
315
        /* SKE is optional for some PSK ciphersuites */
316
3.57k
        if (ske_expected || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
317
1.85k
                             && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
318
1.72k
            if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
319
1.68k
                st->hand_state = TLS_ST_CR_KEY_EXCH;
320
1.68k
                return 1;
321
1.68k
            }
322
41
            goto err;
323
1.72k
        }
324
        /* Fall through */
325
326
5.08k
    case TLS_ST_CR_KEY_EXCH:
327
5.08k
        if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
328
1.19k
            if (cert_req_allowed(s)) {
329
1.19k
                st->hand_state = TLS_ST_CR_CERT_REQ;
330
1.19k
                return 1;
331
1.19k
            }
332
2
            goto err;
333
1.19k
        }
334
        /* Fall through */
335
336
3.91k
    case TLS_ST_CR_CERT_REQ:
337
3.91k
        if (mt == SSL3_MT_SERVER_DONE) {
338
3.88k
            st->hand_state = TLS_ST_CR_SRVR_DONE;
339
3.88k
            return 1;
340
3.88k
        }
341
32
        break;
342
343
1.24k
    case TLS_ST_CW_FINISHED:
344
1.24k
        if (s->ext.ticket_expected) {
345
182
            if (mt == SSL3_MT_NEWSESSION_TICKET) {
346
160
                st->hand_state = TLS_ST_CR_SESSION_TICKET;
347
160
                return 1;
348
160
            }
349
1.06k
        } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
350
1.02k
            st->hand_state = TLS_ST_CR_CHANGE;
351
1.02k
            return 1;
352
1.02k
        }
353
56
        break;
354
355
98
    case TLS_ST_CR_SESSION_TICKET:
356
98
        if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
357
81
            st->hand_state = TLS_ST_CR_CHANGE;
358
81
            return 1;
359
81
        }
360
17
        break;
361
362
36
    case TLS_ST_CR_CHANGE:
363
36
        if (mt == SSL3_MT_FINISHED) {
364
20
            st->hand_state = TLS_ST_CR_FINISHED;
365
20
            return 1;
366
20
        }
367
16
        break;
368
369
16
    case TLS_ST_OK:
370
0
        if (mt == SSL3_MT_HELLO_REQUEST) {
371
0
            st->hand_state = TLS_ST_CR_HELLO_REQ;
372
0
            return 1;
373
0
        }
374
0
        break;
375
34.7k
    }
376
377
281
 err:
378
    /* No valid transition found */
379
281
    if (SSL_IS_DTLS(s) && mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
380
0
        BIO *rbio;
381
382
        /*
383
         * CCS messages don't have a message sequence number so this is probably
384
         * because of an out-of-order CCS. We'll just drop it.
385
         */
386
0
        s->init_num = 0;
387
0
        s->rwstate = SSL_READING;
388
0
        rbio = SSL_get_rbio(s);
389
0
        BIO_clear_retry_flags(rbio);
390
0
        BIO_set_retry_read(rbio);
391
0
        return 0;
392
0
    }
393
281
    SSLfatal(s, SSL3_AD_UNEXPECTED_MESSAGE,
394
281
             SSL_F_OSSL_STATEM_CLIENT_READ_TRANSITION,
395
281
             SSL_R_UNEXPECTED_MESSAGE);
396
281
    return 0;
397
281
}
398
399
/*
400
 * ossl_statem_client13_write_transition() works out what handshake state to
401
 * move to next when the TLSv1.3 client is writing messages to be sent to the
402
 * server.
403
 */
404
static WRITE_TRAN ossl_statem_client13_write_transition(SSL *s)
405
0
{
406
0
    OSSL_STATEM *st = &s->statem;
407
408
    /*
409
     * Note: There are no cases for TLS_ST_BEFORE because we haven't negotiated
410
     * TLSv1.3 yet at that point. They are handled by
411
     * ossl_statem_client_write_transition().
412
     */
413
0
    switch (st->hand_state) {
414
0
    default:
415
        /* Shouldn't happen */
416
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
417
0
                 SSL_F_OSSL_STATEM_CLIENT13_WRITE_TRANSITION,
418
0
                 ERR_R_INTERNAL_ERROR);
419
0
        return WRITE_TRAN_ERROR;
420
421
0
    case TLS_ST_CR_CERT_REQ:
422
0
        if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
423
0
            st->hand_state = TLS_ST_CW_CERT;
424
0
            return WRITE_TRAN_CONTINUE;
425
0
        }
426
        /*
427
         * We should only get here if we received a CertificateRequest after
428
         * we already sent close_notify
429
         */
430
0
        if (!ossl_assert((s->shutdown & SSL_SENT_SHUTDOWN) != 0)) {
431
            /* Shouldn't happen - same as default case */
432
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
433
0
                     SSL_F_OSSL_STATEM_CLIENT13_WRITE_TRANSITION,
434
0
                     ERR_R_INTERNAL_ERROR);
435
0
            return WRITE_TRAN_ERROR;
436
0
        }
437
0
        st->hand_state = TLS_ST_OK;
438
0
        return WRITE_TRAN_CONTINUE;
439
440
0
    case TLS_ST_CR_FINISHED:
441
0
        if (s->early_data_state == SSL_EARLY_DATA_WRITE_RETRY
442
0
                || s->early_data_state == SSL_EARLY_DATA_FINISHED_WRITING)
443
0
            st->hand_state = TLS_ST_PENDING_EARLY_DATA_END;
444
0
        else if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0
445
0
                 && s->hello_retry_request == SSL_HRR_NONE)
446
0
            st->hand_state = TLS_ST_CW_CHANGE;
447
0
        else
448
0
            st->hand_state = (s->s3->tmp.cert_req != 0) ? TLS_ST_CW_CERT
449
0
                                                        : TLS_ST_CW_FINISHED;
450
0
        return WRITE_TRAN_CONTINUE;
451
452
0
    case TLS_ST_PENDING_EARLY_DATA_END:
453
0
        if (s->ext.early_data == SSL_EARLY_DATA_ACCEPTED) {
454
0
            st->hand_state = TLS_ST_CW_END_OF_EARLY_DATA;
455
0
            return WRITE_TRAN_CONTINUE;
456
0
        }
457
        /* Fall through */
458
459
0
    case TLS_ST_CW_END_OF_EARLY_DATA:
460
0
    case TLS_ST_CW_CHANGE:
461
0
        st->hand_state = (s->s3->tmp.cert_req != 0) ? TLS_ST_CW_CERT
462
0
                                                    : TLS_ST_CW_FINISHED;
463
0
        return WRITE_TRAN_CONTINUE;
464
465
0
    case TLS_ST_CW_CERT:
466
        /* If a non-empty Certificate we also send CertificateVerify */
467
0
        st->hand_state = (s->s3->tmp.cert_req == 1) ? TLS_ST_CW_CERT_VRFY
468
0
                                                    : TLS_ST_CW_FINISHED;
469
0
        return WRITE_TRAN_CONTINUE;
470
471
0
    case TLS_ST_CW_CERT_VRFY:
472
0
        st->hand_state = TLS_ST_CW_FINISHED;
473
0
        return WRITE_TRAN_CONTINUE;
474
475
0
    case TLS_ST_CR_KEY_UPDATE:
476
0
    case TLS_ST_CW_KEY_UPDATE:
477
0
    case TLS_ST_CR_SESSION_TICKET:
478
0
    case TLS_ST_CW_FINISHED:
479
0
        st->hand_state = TLS_ST_OK;
480
0
        return WRITE_TRAN_CONTINUE;
481
482
0
    case TLS_ST_OK:
483
0
        if (s->key_update != SSL_KEY_UPDATE_NONE) {
484
0
            st->hand_state = TLS_ST_CW_KEY_UPDATE;
485
0
            return WRITE_TRAN_CONTINUE;
486
0
        }
487
488
        /* Try to read from the server instead */
489
0
        return WRITE_TRAN_FINISHED;
490
0
    }
491
0
}
492
493
/*
494
 * ossl_statem_client_write_transition() works out what handshake state to
495
 * move to next when the client is writing messages to be sent to the server.
496
 */
497
WRITE_TRAN ossl_statem_client_write_transition(SSL *s)
498
67.1k
{
499
67.1k
    OSSL_STATEM *st = &s->statem;
500
501
    /*
502
     * Note that immediately before/after a ClientHello we don't know what
503
     * version we are going to negotiate yet, so we don't take this branch until
504
     * later
505
     */
506
67.1k
    if (SSL_IS_TLS13(s))
507
0
        return ossl_statem_client13_write_transition(s);
508
509
67.1k
    switch (st->hand_state) {
510
0
    default:
511
        /* Shouldn't happen */
512
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
513
0
                 SSL_F_OSSL_STATEM_CLIENT_WRITE_TRANSITION,
514
0
                 ERR_R_INTERNAL_ERROR);
515
0
        return WRITE_TRAN_ERROR;
516
517
218
    case TLS_ST_OK:
518
218
        if (!s->renegotiate) {
519
            /*
520
             * We haven't requested a renegotiation ourselves so we must have
521
             * received a message from the server. Better read it.
522
             */
523
218
            return WRITE_TRAN_FINISHED;
524
218
        }
525
        /* Renegotiation */
526
        /* fall thru */
527
22.3k
    case TLS_ST_BEFORE:
528
22.3k
        st->hand_state = TLS_ST_CW_CLNT_HELLO;
529
22.3k
        return WRITE_TRAN_CONTINUE;
530
531
22.7k
    case TLS_ST_CW_CLNT_HELLO:
532
22.7k
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING) {
533
            /*
534
             * We are assuming this is a TLSv1.3 connection, although we haven't
535
             * actually selected a version yet.
536
             */
537
0
            if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0)
538
0
                st->hand_state = TLS_ST_CW_CHANGE;
539
0
            else
540
0
                st->hand_state = TLS_ST_EARLY_DATA;
541
0
            return WRITE_TRAN_CONTINUE;
542
0
        }
543
        /*
544
         * No transition at the end of writing because we don't know what
545
         * we will be sent
546
         */
547
22.7k
        return WRITE_TRAN_FINISHED;
548
549
193
    case TLS_ST_CR_SRVR_HELLO:
550
        /*
551
         * We only get here in TLSv1.3. We just received an HRR, so issue a
552
         * CCS unless middlebox compat mode is off, or we already issued one
553
         * because we did early data.
554
         */
555
193
        if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0
556
193
                && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING)
557
193
            st->hand_state = TLS_ST_CW_CHANGE;
558
0
        else
559
0
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
560
193
        return WRITE_TRAN_CONTINUE;
561
562
0
    case TLS_ST_EARLY_DATA:
563
0
        return WRITE_TRAN_FINISHED;
564
565
0
    case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
566
0
        st->hand_state = TLS_ST_CW_CLNT_HELLO;
567
0
        return WRITE_TRAN_CONTINUE;
568
569
5.81k
    case TLS_ST_CR_SRVR_DONE:
570
5.81k
        if (s->s3->tmp.cert_req)
571
19
            st->hand_state = TLS_ST_CW_CERT;
572
5.79k
        else
573
5.79k
            st->hand_state = TLS_ST_CW_KEY_EXCH;
574
5.81k
        return WRITE_TRAN_CONTINUE;
575
576
19
    case TLS_ST_CW_CERT:
577
19
        st->hand_state = TLS_ST_CW_KEY_EXCH;
578
19
        return WRITE_TRAN_CONTINUE;
579
580
5.06k
    case TLS_ST_CW_KEY_EXCH:
581
        /*
582
         * For TLS, cert_req is set to 2, so a cert chain of nothing is
583
         * sent, but no verify packet is sent
584
         */
585
        /*
586
         * XXX: For now, we do not support client authentication in ECDH
587
         * cipher suites with ECDH (rather than ECDSA) certificates. We
588
         * need to skip the certificate verify message when client's
589
         * ECDH public key is sent inside the client certificate.
590
         */
591
5.06k
        if (s->s3->tmp.cert_req == 1) {
592
0
            st->hand_state = TLS_ST_CW_CERT_VRFY;
593
5.06k
        } else {
594
5.06k
            st->hand_state = TLS_ST_CW_CHANGE;
595
5.06k
        }
596
5.06k
        if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY) {
597
0
            st->hand_state = TLS_ST_CW_CHANGE;
598
0
        }
599
5.06k
        return WRITE_TRAN_CONTINUE;
600
601
0
    case TLS_ST_CW_CERT_VRFY:
602
0
        st->hand_state = TLS_ST_CW_CHANGE;
603
0
        return WRITE_TRAN_CONTINUE;
604
605
5.26k
    case TLS_ST_CW_CHANGE:
606
5.26k
        if (s->hello_retry_request == SSL_HRR_PENDING) {
607
193
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
608
5.06k
        } else if (s->early_data_state == SSL_EARLY_DATA_CONNECTING) {
609
0
            st->hand_state = TLS_ST_EARLY_DATA;
610
5.06k
        } else {
611
#if defined(OPENSSL_NO_NEXTPROTONEG)
612
            st->hand_state = TLS_ST_CW_FINISHED;
613
#else
614
5.06k
            if (!SSL_IS_DTLS(s) && s->s3->npn_seen)
615
0
                st->hand_state = TLS_ST_CW_NEXT_PROTO;
616
5.06k
            else
617
5.06k
                st->hand_state = TLS_ST_CW_FINISHED;
618
5.06k
#endif
619
5.06k
        }
620
5.26k
        return WRITE_TRAN_CONTINUE;
621
622
0
#if !defined(OPENSSL_NO_NEXTPROTONEG)
623
0
    case TLS_ST_CW_NEXT_PROTO:
624
0
        st->hand_state = TLS_ST_CW_FINISHED;
625
0
        return WRITE_TRAN_CONTINUE;
626
0
#endif
627
628
5.06k
    case TLS_ST_CW_FINISHED:
629
5.06k
        if (s->hit) {
630
0
            st->hand_state = TLS_ST_OK;
631
0
            return WRITE_TRAN_CONTINUE;
632
5.06k
        } else {
633
5.06k
            return WRITE_TRAN_FINISHED;
634
5.06k
        }
635
636
257
    case TLS_ST_CR_FINISHED:
637
257
        if (s->hit) {
638
0
            st->hand_state = TLS_ST_CW_CHANGE;
639
0
            return WRITE_TRAN_CONTINUE;
640
257
        } else {
641
257
            st->hand_state = TLS_ST_OK;
642
257
            return WRITE_TRAN_CONTINUE;
643
257
        }
644
645
208
    case TLS_ST_CR_HELLO_REQ:
646
        /*
647
         * If we can renegotiate now then do so, otherwise wait for a more
648
         * convenient time.
649
         */
650
208
        if (ssl3_renegotiate_check(s, 1)) {
651
208
            if (!tls_setup_handshake(s)) {
652
                /* SSLfatal() already called */
653
0
                return WRITE_TRAN_ERROR;
654
0
            }
655
208
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
656
208
            return WRITE_TRAN_CONTINUE;
657
208
        }
658
0
        st->hand_state = TLS_ST_OK;
659
0
        return WRITE_TRAN_CONTINUE;
660
67.1k
    }
661
67.1k
}
662
663
/*
664
 * Perform any pre work that needs to be done prior to sending a message from
665
 * the client to the server.
666
 */
667
WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst)
668
26.0k
{
669
26.0k
    OSSL_STATEM *st = &s->statem;
670
671
26.0k
    switch (st->hand_state) {
672
7.35k
    default:
673
        /* No pre work to be done */
674
7.35k
        break;
675
676
15.0k
    case TLS_ST_CW_CLNT_HELLO:
677
15.0k
        s->shutdown = 0;
678
15.0k
        if (SSL_IS_DTLS(s)) {
679
            /* every DTLS ClientHello resets Finished MAC */
680
0
            if (!ssl3_init_finished_mac(s)) {
681
                /* SSLfatal() already called */
682
0
                return WORK_ERROR;
683
0
            }
684
0
        }
685
15.0k
        break;
686
687
15.0k
    case TLS_ST_CW_CHANGE:
688
3.58k
        if (SSL_IS_DTLS(s)) {
689
0
            if (s->hit) {
690
                /*
691
                 * We're into the last flight so we don't retransmit these
692
                 * messages unless we need to.
693
                 */
694
0
                st->use_timer = 0;
695
0
            }
696
#ifndef OPENSSL_NO_SCTP
697
            if (BIO_dgram_is_sctp(SSL_get_wbio(s))) {
698
                /* Calls SSLfatal() as required */
699
                return dtls_wait_for_dry(s);
700
            }
701
#endif
702
0
        }
703
3.58k
        break;
704
705
0
    case TLS_ST_PENDING_EARLY_DATA_END:
706
        /*
707
         * If we've been called by SSL_do_handshake()/SSL_write(), or we did not
708
         * attempt to write early data before calling SSL_read() then we press
709
         * on with the handshake. Otherwise we pause here.
710
         */
711
0
        if (s->early_data_state == SSL_EARLY_DATA_FINISHED_WRITING
712
0
                || s->early_data_state == SSL_EARLY_DATA_NONE)
713
0
            return WORK_FINISHED_CONTINUE;
714
        /* Fall through */
715
716
0
    case TLS_ST_EARLY_DATA:
717
0
        return tls_finish_handshake(s, wst, 0, 1);
718
719
0
    case TLS_ST_OK:
720
        /* Calls SSLfatal() as required */
721
0
        return tls_finish_handshake(s, wst, 1, 1);
722
26.0k
    }
723
724
26.0k
    return WORK_FINISHED_CONTINUE;
725
26.0k
}
726
727
/*
728
 * Perform any work that needs to be done after sending a message from the
729
 * client to the server.
730
 */
731
WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst)
732
25.5k
{
733
25.5k
    OSSL_STATEM *st = &s->statem;
734
735
25.5k
    s->init_num = 0;
736
737
25.5k
    switch (st->hand_state) {
738
15
    default:
739
        /* No post work to be done */
740
15
        break;
741
742
15.0k
    case TLS_ST_CW_CLNT_HELLO:
743
15.0k
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING
744
15.0k
                && s->max_early_data > 0) {
745
            /*
746
             * We haven't selected TLSv1.3 yet so we don't call the change
747
             * cipher state function associated with the SSL_METHOD. Instead
748
             * we call tls13_change_cipher_state() directly.
749
             */
750
0
            if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) == 0) {
751
0
                if (!tls13_change_cipher_state(s,
752
0
                            SSL3_CC_EARLY | SSL3_CHANGE_CIPHER_CLIENT_WRITE)) {
753
                    /* SSLfatal() already called */
754
0
                    return WORK_ERROR;
755
0
                }
756
0
            }
757
            /* else we're in compat mode so we delay flushing until after CCS */
758
15.0k
        } else if (!statem_flush(s)) {
759
0
            return WORK_MORE_A;
760
0
        }
761
762
15.0k
        if (SSL_IS_DTLS(s)) {
763
            /* Treat the next message as the first packet */
764
0
            s->first_packet = 1;
765
0
        }
766
15.0k
        break;
767
768
0
    case TLS_ST_CW_END_OF_EARLY_DATA:
769
        /*
770
         * We set the enc_write_ctx back to NULL because we may end up writing
771
         * in cleartext again if we get a HelloRetryRequest from the server.
772
         */
773
0
        EVP_CIPHER_CTX_free(s->enc_write_ctx);
774
0
        s->enc_write_ctx = NULL;
775
0
        break;
776
777
3.46k
    case TLS_ST_CW_KEY_EXCH:
778
3.46k
        if (tls_client_key_exchange_post_work(s) == 0) {
779
            /* SSLfatal() already called */
780
0
            return WORK_ERROR;
781
0
        }
782
3.46k
        break;
783
784
3.58k
    case TLS_ST_CW_CHANGE:
785
3.58k
        if (SSL_IS_TLS13(s) || s->hello_retry_request == SSL_HRR_PENDING)
786
125
            break;
787
3.46k
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING
788
3.46k
                    && s->max_early_data > 0) {
789
            /*
790
             * We haven't selected TLSv1.3 yet so we don't call the change
791
             * cipher state function associated with the SSL_METHOD. Instead
792
             * we call tls13_change_cipher_state() directly.
793
             */
794
0
            if (!tls13_change_cipher_state(s,
795
0
                        SSL3_CC_EARLY | SSL3_CHANGE_CIPHER_CLIENT_WRITE))
796
0
                return WORK_ERROR;
797
0
            break;
798
0
        }
799
3.46k
        s->session->cipher = s->s3->tmp.new_cipher;
800
#ifdef OPENSSL_NO_COMP
801
        s->session->compress_meth = 0;
802
#else
803
3.46k
        if (s->s3->tmp.new_compression == NULL)
804
3.46k
            s->session->compress_meth = 0;
805
0
        else
806
0
            s->session->compress_meth = s->s3->tmp.new_compression->id;
807
3.46k
#endif
808
3.46k
        if (!s->method->ssl3_enc->setup_key_block(s)) {
809
            /* SSLfatal() already called */
810
0
            return WORK_ERROR;
811
0
        }
812
813
3.46k
        if (!s->method->ssl3_enc->change_cipher_state(s,
814
3.46k
                                          SSL3_CHANGE_CIPHER_CLIENT_WRITE)) {
815
            /* SSLfatal() already called */
816
0
            return WORK_ERROR;
817
0
        }
818
819
3.46k
        if (SSL_IS_DTLS(s)) {
820
#ifndef OPENSSL_NO_SCTP
821
            if (s->hit) {
822
                /*
823
                 * Change to new shared key of SCTP-Auth, will be ignored if
824
                 * no SCTP used.
825
                 */
826
                BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
827
                         0, NULL);
828
            }
829
#endif
830
831
0
            dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
832
0
        }
833
3.46k
        break;
834
835
3.46k
    case TLS_ST_CW_FINISHED:
836
#ifndef OPENSSL_NO_SCTP
837
        if (wst == WORK_MORE_A && SSL_IS_DTLS(s) && s->hit == 0) {
838
            /*
839
             * Change to new shared key of SCTP-Auth, will be ignored if
840
             * no SCTP used.
841
             */
842
            BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
843
                     0, NULL);
844
        }
845
#endif
846
3.46k
        if (statem_flush(s) != 1)
847
0
            return WORK_MORE_B;
848
849
3.46k
        if (SSL_IS_TLS13(s)) {
850
0
            if (!tls13_save_handshake_digest_for_pha(s)) {
851
                /* SSLfatal() already called */
852
0
                return WORK_ERROR;
853
0
            }
854
0
            if (s->post_handshake_auth != SSL_PHA_REQUESTED) {
855
0
                if (!s->method->ssl3_enc->change_cipher_state(s,
856
0
                        SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_CLIENT_WRITE)) {
857
                    /* SSLfatal() already called */
858
0
                    return WORK_ERROR;
859
0
                }
860
0
            }
861
0
        }
862
3.46k
        break;
863
864
3.46k
    case TLS_ST_CW_KEY_UPDATE:
865
0
        if (statem_flush(s) != 1)
866
0
            return WORK_MORE_A;
867
0
        if (!tls13_update_key(s, 1)) {
868
            /* SSLfatal() already called */
869
0
            return WORK_ERROR;
870
0
        }
871
0
        break;
872
25.5k
    }
873
874
25.5k
    return WORK_FINISHED_CONTINUE;
875
25.5k
}
876
877
/*
878
 * Get the message construction function and message type for sending from the
879
 * client
880
 *
881
 * Valid return values are:
882
 *   1: Success
883
 *   0: Error
884
 */
885
int ossl_statem_client_construct_message(SSL *s, WPACKET *pkt,
886
                                         confunc_f *confunc, int *mt)
887
38.8k
{
888
38.8k
    OSSL_STATEM *st = &s->statem;
889
890
38.8k
    switch (st->hand_state) {
891
0
    default:
892
        /* Shouldn't happen */
893
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
894
0
                 SSL_F_OSSL_STATEM_CLIENT_CONSTRUCT_MESSAGE,
895
0
                 SSL_R_BAD_HANDSHAKE_STATE);
896
0
        return 0;
897
898
5.26k
    case TLS_ST_CW_CHANGE:
899
5.26k
        if (SSL_IS_DTLS(s))
900
0
            *confunc = dtls_construct_change_cipher_spec;
901
5.26k
        else
902
5.26k
            *confunc = tls_construct_change_cipher_spec;
903
5.26k
        *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
904
5.26k
        break;
905
906
22.7k
    case TLS_ST_CW_CLNT_HELLO:
907
22.7k
        *confunc = tls_construct_client_hello;
908
22.7k
        *mt = SSL3_MT_CLIENT_HELLO;
909
22.7k
        break;
910
911
0
    case TLS_ST_CW_END_OF_EARLY_DATA:
912
0
        *confunc = tls_construct_end_of_early_data;
913
0
        *mt = SSL3_MT_END_OF_EARLY_DATA;
914
0
        break;
915
916
0
    case TLS_ST_PENDING_EARLY_DATA_END:
917
0
        *confunc = NULL;
918
0
        *mt = SSL3_MT_DUMMY;
919
0
        break;
920
921
19
    case TLS_ST_CW_CERT:
922
19
        *confunc = tls_construct_client_certificate;
923
19
        *mt = SSL3_MT_CERTIFICATE;
924
19
        break;
925
926
5.81k
    case TLS_ST_CW_KEY_EXCH:
927
5.81k
        *confunc = tls_construct_client_key_exchange;
928
5.81k
        *mt = SSL3_MT_CLIENT_KEY_EXCHANGE;
929
5.81k
        break;
930
931
0
    case TLS_ST_CW_CERT_VRFY:
932
0
        *confunc = tls_construct_cert_verify;
933
0
        *mt = SSL3_MT_CERTIFICATE_VERIFY;
934
0
        break;
935
936
0
#if !defined(OPENSSL_NO_NEXTPROTONEG)
937
0
    case TLS_ST_CW_NEXT_PROTO:
938
0
        *confunc = tls_construct_next_proto;
939
0
        *mt = SSL3_MT_NEXT_PROTO;
940
0
        break;
941
0
#endif
942
5.06k
    case TLS_ST_CW_FINISHED:
943
5.06k
        *confunc = tls_construct_finished;
944
5.06k
        *mt = SSL3_MT_FINISHED;
945
5.06k
        break;
946
947
0
    case TLS_ST_CW_KEY_UPDATE:
948
0
        *confunc = tls_construct_key_update;
949
0
        *mt = SSL3_MT_KEY_UPDATE;
950
0
        break;
951
38.8k
    }
952
953
38.8k
    return 1;
954
38.8k
}
955
956
/*
957
 * Returns the maximum allowed length for the current message that we are
958
 * reading. Excludes the message header.
959
 */
960
size_t ossl_statem_client_max_message_size(SSL *s)
961
34.4k
{
962
34.4k
    OSSL_STATEM *st = &s->statem;
963
964
34.4k
    switch (st->hand_state) {
965
0
    default:
966
        /* Shouldn't happen */
967
0
        return 0;
968
969
14.1k
    case TLS_ST_CR_SRVR_HELLO:
970
14.1k
        return SERVER_HELLO_MAX_LENGTH;
971
972
0
    case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
973
0
        return HELLO_VERIFY_REQUEST_MAX_LENGTH;
974
975
7.80k
    case TLS_ST_CR_CERT:
976
7.80k
        return s->max_cert_list;
977
978
0
    case TLS_ST_CR_CERT_VRFY:
979
0
        return SSL3_RT_MAX_PLAIN_LENGTH;
980
981
0
    case TLS_ST_CR_CERT_STATUS:
982
0
        return SSL3_RT_MAX_PLAIN_LENGTH;
983
984
6.12k
    case TLS_ST_CR_KEY_EXCH:
985
6.12k
        return SERVER_KEY_EXCH_MAX_LENGTH;
986
987
1.19k
    case TLS_ST_CR_CERT_REQ:
988
        /*
989
         * Set to s->max_cert_list for compatibility with previous releases. In
990
         * practice these messages can get quite long if servers are configured
991
         * to provide a long list of acceptable CAs
992
         */
993
1.19k
        return s->max_cert_list;
994
995
3.88k
    case TLS_ST_CR_SRVR_DONE:
996
3.88k
        return SERVER_HELLO_DONE_MAX_LENGTH;
997
998
1.10k
    case TLS_ST_CR_CHANGE:
999
1.10k
        if (s->version == DTLS1_BAD_VER)
1000
0
            return 3;
1001
1.10k
        return CCS_MAX_LENGTH;
1002
1003
160
    case TLS_ST_CR_SESSION_TICKET:
1004
160
        return (SSL_IS_TLS13(s)) ? SESSION_TICKET_MAX_LENGTH_TLS13
1005
160
                                 : SESSION_TICKET_MAX_LENGTH_TLS12;
1006
1007
20
    case TLS_ST_CR_FINISHED:
1008
20
        return FINISHED_MAX_LENGTH;
1009
1010
0
    case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
1011
0
        return ENCRYPTED_EXTENSIONS_MAX_LENGTH;
1012
1013
0
    case TLS_ST_CR_KEY_UPDATE:
1014
0
        return KEY_UPDATE_MAX_LENGTH;
1015
34.4k
    }
1016
34.4k
}
1017
1018
/*
1019
 * Process a message that the client has been received from the server.
1020
 */
1021
MSG_PROCESS_RETURN ossl_statem_client_process_message(SSL *s, PACKET *pkt)
1022
51.4k
{
1023
51.4k
    OSSL_STATEM *st = &s->statem;
1024
1025
51.4k
    switch (st->hand_state) {
1026
0
    default:
1027
        /* Shouldn't happen */
1028
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1029
0
                 SSL_F_OSSL_STATEM_CLIENT_PROCESS_MESSAGE,
1030
0
                 ERR_R_INTERNAL_ERROR);
1031
0
        return MSG_PROCESS_ERROR;
1032
1033
20.7k
    case TLS_ST_CR_SRVR_HELLO:
1034
20.7k
        return tls_process_server_hello(s, pkt);
1035
1036
0
    case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
1037
0
        return dtls_process_hello_verify(s, pkt);
1038
1039
11.5k
    case TLS_ST_CR_CERT:
1040
11.5k
        return tls_process_server_certificate(s, pkt);
1041
1042
0
    case TLS_ST_CR_CERT_VRFY:
1043
0
        return tls_process_cert_verify(s, pkt);
1044
1045
0
    case TLS_ST_CR_CERT_STATUS:
1046
0
        return tls_process_cert_status(s, pkt);
1047
1048
9.20k
    case TLS_ST_CR_KEY_EXCH:
1049
9.20k
        return tls_process_key_exchange(s, pkt);
1050
1051
1.65k
    case TLS_ST_CR_CERT_REQ:
1052
1.65k
        return tls_process_certificate_request(s, pkt);
1053
1054
5.81k
    case TLS_ST_CR_SRVR_DONE:
1055
5.81k
        return tls_process_server_done(s, pkt);
1056
1057
1.81k
    case TLS_ST_CR_CHANGE:
1058
1.81k
        return tls_process_change_cipher_spec(s, pkt);
1059
1060
225
    case TLS_ST_CR_SESSION_TICKET:
1061
225
        return tls_process_new_session_ticket(s, pkt);
1062
1063
285
    case TLS_ST_CR_FINISHED:
1064
285
        return tls_process_finished(s, pkt);
1065
1066
208
    case TLS_ST_CR_HELLO_REQ:
1067
208
        return tls_process_hello_req(s, pkt);
1068
1069
0
    case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
1070
0
        return tls_process_encrypted_extensions(s, pkt);
1071
1072
0
    case TLS_ST_CR_KEY_UPDATE:
1073
0
        return tls_process_key_update(s, pkt);
1074
51.4k
    }
1075
51.4k
}
1076
1077
/*
1078
 * Perform any further processing required following the receipt of a message
1079
 * from the server
1080
 */
1081
WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst)
1082
20
{
1083
20
    OSSL_STATEM *st = &s->statem;
1084
1085
20
    switch (st->hand_state) {
1086
0
    default:
1087
        /* Shouldn't happen */
1088
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1089
0
                 SSL_F_OSSL_STATEM_CLIENT_POST_PROCESS_MESSAGE,
1090
0
                 ERR_R_INTERNAL_ERROR);
1091
0
        return WORK_ERROR;
1092
1093
0
    case TLS_ST_CR_CERT_VRFY:
1094
20
    case TLS_ST_CR_CERT_REQ:
1095
20
        return tls_prepare_client_certificate(s, wst);
1096
20
    }
1097
20
}
1098
1099
int tls_construct_client_hello(SSL *s, WPACKET *pkt)
1100
22.7k
{
1101
22.7k
    unsigned char *p;
1102
22.7k
    size_t sess_id_len;
1103
22.7k
    int i, protverr;
1104
22.7k
#ifndef OPENSSL_NO_COMP
1105
22.7k
    SSL_COMP *comp;
1106
22.7k
#endif
1107
22.7k
    SSL_SESSION *sess = s->session;
1108
22.7k
    unsigned char *session_id;
1109
1110
    /* Work out what SSL/TLS/DTLS version to use */
1111
22.7k
    protverr = ssl_set_client_hello_version(s);
1112
22.7k
    if (protverr != 0) {
1113
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1114
0
                 protverr);
1115
0
        return 0;
1116
0
    }
1117
1118
22.7k
    if (sess == NULL
1119
22.7k
            || !ssl_version_supported(s, sess->ssl_version, NULL)
1120
22.7k
            || !SSL_SESSION_is_resumable(sess)) {
1121
22.5k
        if (s->hello_retry_request == SSL_HRR_NONE
1122
22.5k
                && !ssl_get_new_session(s, 0)) {
1123
            /* SSLfatal() already called */
1124
0
            return 0;
1125
0
        }
1126
22.5k
    }
1127
    /* else use the pre-loaded session */
1128
1129
22.7k
    p = s->s3->client_random;
1130
1131
    /*
1132
     * for DTLS if client_random is initialized, reuse it, we are
1133
     * required to use same upon reply to HelloVerify
1134
     */
1135
22.7k
    if (SSL_IS_DTLS(s)) {
1136
0
        size_t idx;
1137
0
        i = 1;
1138
0
        for (idx = 0; idx < sizeof(s->s3->client_random); idx++) {
1139
0
            if (p[idx]) {
1140
0
                i = 0;
1141
0
                break;
1142
0
            }
1143
0
        }
1144
22.7k
    } else {
1145
22.7k
        i = (s->hello_retry_request == SSL_HRR_NONE);
1146
22.7k
    }
1147
1148
22.7k
    if (i && ssl_fill_hello_random(s, 0, p, sizeof(s->s3->client_random),
1149
22.5k
                                   DOWNGRADE_NONE) <= 0) {
1150
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1151
0
                 ERR_R_INTERNAL_ERROR);
1152
0
        return 0;
1153
0
    }
1154
1155
    /*-
1156
     * version indicates the negotiated version: for example from
1157
     * an SSLv2/v3 compatible client hello). The client_version
1158
     * field is the maximum version we permit and it is also
1159
     * used in RSA encrypted premaster secrets. Some servers can
1160
     * choke if we initially report a higher version then
1161
     * renegotiate to a lower one in the premaster secret. This
1162
     * didn't happen with TLS 1.0 as most servers supported it
1163
     * but it can with TLS 1.1 or later if the server only supports
1164
     * 1.0.
1165
     *
1166
     * Possible scenario with previous logic:
1167
     *      1. Client hello indicates TLS 1.2
1168
     *      2. Server hello says TLS 1.0
1169
     *      3. RSA encrypted premaster secret uses 1.2.
1170
     *      4. Handshake proceeds using TLS 1.0.
1171
     *      5. Server sends hello request to renegotiate.
1172
     *      6. Client hello indicates TLS v1.0 as we now
1173
     *         know that is maximum server supports.
1174
     *      7. Server chokes on RSA encrypted premaster secret
1175
     *         containing version 1.0.
1176
     *
1177
     * For interoperability it should be OK to always use the
1178
     * maximum version we support in client hello and then rely
1179
     * on the checking of version to ensure the servers isn't
1180
     * being inconsistent: for example initially negotiating with
1181
     * TLS 1.0 and renegotiating with TLS 1.2. We do this by using
1182
     * client_version in client hello and not resetting it to
1183
     * the negotiated version.
1184
     *
1185
     * For TLS 1.3 we always set the ClientHello version to 1.2 and rely on the
1186
     * supported_versions extension for the real supported versions.
1187
     */
1188
22.7k
    if (!WPACKET_put_bytes_u16(pkt, s->client_version)
1189
22.7k
            || !WPACKET_memcpy(pkt, s->s3->client_random, SSL3_RANDOM_SIZE)) {
1190
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1191
0
                 ERR_R_INTERNAL_ERROR);
1192
0
        return 0;
1193
0
    }
1194
1195
    /* Session ID */
1196
22.7k
    session_id = s->session->session_id;
1197
22.7k
    if (s->new_session || s->session->ssl_version == TLS1_3_VERSION) {
1198
22.5k
        if (s->version == TLS1_3_VERSION
1199
22.5k
                && (s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0) {
1200
22.5k
            sess_id_len = sizeof(s->tmp_session_id);
1201
22.5k
            s->tmp_session_id_len = sess_id_len;
1202
22.5k
            session_id = s->tmp_session_id;
1203
22.5k
            if (s->hello_retry_request == SSL_HRR_NONE
1204
22.5k
                    && RAND_bytes(s->tmp_session_id, sess_id_len) <= 0) {
1205
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1206
0
                         SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1207
0
                         ERR_R_INTERNAL_ERROR);
1208
0
                return 0;
1209
0
            }
1210
22.5k
        } else {
1211
0
            sess_id_len = 0;
1212
0
        }
1213
22.5k
    } else {
1214
208
        assert(s->session->session_id_length <= sizeof(s->session->session_id));
1215
208
        sess_id_len = s->session->session_id_length;
1216
208
        if (s->version == TLS1_3_VERSION) {
1217
0
            s->tmp_session_id_len = sess_id_len;
1218
0
            memcpy(s->tmp_session_id, s->session->session_id, sess_id_len);
1219
0
        }
1220
208
    }
1221
22.7k
    if (!WPACKET_start_sub_packet_u8(pkt)
1222
22.7k
            || (sess_id_len != 0 && !WPACKET_memcpy(pkt, session_id,
1223
22.6k
                                                    sess_id_len))
1224
22.7k
            || !WPACKET_close(pkt)) {
1225
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1226
0
                 ERR_R_INTERNAL_ERROR);
1227
0
        return 0;
1228
0
    }
1229
1230
    /* cookie stuff for DTLS */
1231
22.7k
    if (SSL_IS_DTLS(s)) {
1232
0
        if (s->d1->cookie_len > sizeof(s->d1->cookie)
1233
0
                || !WPACKET_sub_memcpy_u8(pkt, s->d1->cookie,
1234
0
                                          s->d1->cookie_len)) {
1235
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1236
0
                     ERR_R_INTERNAL_ERROR);
1237
0
            return 0;
1238
0
        }
1239
0
    }
1240
1241
    /* Ciphers supported */
1242
22.7k
    if (!WPACKET_start_sub_packet_u16(pkt)) {
1243
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1244
0
                 ERR_R_INTERNAL_ERROR);
1245
0
        return 0;
1246
0
    }
1247
1248
22.7k
    if (!ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), pkt)) {
1249
        /* SSLfatal() already called */
1250
0
        return 0;
1251
0
    }
1252
22.7k
    if (!WPACKET_close(pkt)) {
1253
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1254
0
                 ERR_R_INTERNAL_ERROR);
1255
0
        return 0;
1256
0
    }
1257
1258
    /* COMPRESSION */
1259
22.7k
    if (!WPACKET_start_sub_packet_u8(pkt)) {
1260
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1261
0
                 ERR_R_INTERNAL_ERROR);
1262
0
        return 0;
1263
0
    }
1264
22.7k
#ifndef OPENSSL_NO_COMP
1265
22.7k
    if (ssl_allow_compression(s)
1266
22.7k
            && s->ctx->comp_methods
1267
22.7k
            && (SSL_IS_DTLS(s) || s->s3->tmp.max_ver < TLS1_3_VERSION)) {
1268
0
        int compnum = sk_SSL_COMP_num(s->ctx->comp_methods);
1269
0
        for (i = 0; i < compnum; i++) {
1270
0
            comp = sk_SSL_COMP_value(s->ctx->comp_methods, i);
1271
0
            if (!WPACKET_put_bytes_u8(pkt, comp->id)) {
1272
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1273
0
                         SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1274
0
                         ERR_R_INTERNAL_ERROR);
1275
0
                return 0;
1276
0
            }
1277
0
        }
1278
0
    }
1279
22.7k
#endif
1280
    /* Add the NULL method */
1281
22.7k
    if (!WPACKET_put_bytes_u8(pkt, 0) || !WPACKET_close(pkt)) {
1282
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1283
0
                 ERR_R_INTERNAL_ERROR);
1284
0
        return 0;
1285
0
    }
1286
1287
    /* TLS extensions */
1288
22.7k
    if (!tls_construct_extensions(s, pkt, SSL_EXT_CLIENT_HELLO, NULL, 0)) {
1289
        /* SSLfatal() already called */
1290
0
        return 0;
1291
0
    }
1292
1293
22.7k
    return 1;
1294
22.7k
}
1295
1296
MSG_PROCESS_RETURN dtls_process_hello_verify(SSL *s, PACKET *pkt)
1297
0
{
1298
0
    size_t cookie_len;
1299
0
    PACKET cookiepkt;
1300
1301
0
    if (!PACKET_forward(pkt, 2)
1302
0
        || !PACKET_get_length_prefixed_1(pkt, &cookiepkt)) {
1303
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_DTLS_PROCESS_HELLO_VERIFY,
1304
0
                 SSL_R_LENGTH_MISMATCH);
1305
0
        return MSG_PROCESS_ERROR;
1306
0
    }
1307
1308
0
    cookie_len = PACKET_remaining(&cookiepkt);
1309
0
    if (cookie_len > sizeof(s->d1->cookie)) {
1310
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_DTLS_PROCESS_HELLO_VERIFY,
1311
0
                 SSL_R_LENGTH_TOO_LONG);
1312
0
        return MSG_PROCESS_ERROR;
1313
0
    }
1314
1315
0
    if (!PACKET_copy_bytes(&cookiepkt, s->d1->cookie, cookie_len)) {
1316
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_DTLS_PROCESS_HELLO_VERIFY,
1317
0
                 SSL_R_LENGTH_MISMATCH);
1318
0
        return MSG_PROCESS_ERROR;
1319
0
    }
1320
0
    s->d1->cookie_len = cookie_len;
1321
1322
0
    return MSG_PROCESS_FINISHED_READING;
1323
0
}
1324
1325
static int set_client_ciphersuite(SSL *s, const unsigned char *cipherchars)
1326
6.82k
{
1327
6.82k
    STACK_OF(SSL_CIPHER) *sk;
1328
6.82k
    const SSL_CIPHER *c;
1329
6.82k
    int i;
1330
1331
6.82k
    c = ssl_get_cipher_by_char(s, cipherchars, 0);
1332
6.82k
    if (c == NULL) {
1333
        /* unknown cipher */
1334
27
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1335
27
                 SSL_R_UNKNOWN_CIPHER_RETURNED);
1336
27
        return 0;
1337
27
    }
1338
    /*
1339
     * If it is a disabled cipher we either didn't send it in client hello,
1340
     * or it's not allowed for the selected protocol. So we return an error.
1341
     */
1342
6.79k
    if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_CHECK, 1)) {
1343
9
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1344
9
                 SSL_R_WRONG_CIPHER_RETURNED);
1345
9
        return 0;
1346
9
    }
1347
1348
6.78k
    sk = ssl_get_ciphers_by_id(s);
1349
6.78k
    i = sk_SSL_CIPHER_find(sk, c);
1350
6.78k
    if (i < 0) {
1351
        /* we did not say we would use this cipher */
1352
4
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1353
4
                 SSL_R_WRONG_CIPHER_RETURNED);
1354
4
        return 0;
1355
4
    }
1356
1357
6.78k
    if (SSL_IS_TLS13(s) && s->s3->tmp.new_cipher != NULL
1358
6.78k
            && s->s3->tmp.new_cipher->id != c->id) {
1359
        /* ServerHello selected a different ciphersuite to that in the HRR */
1360
8
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1361
8
                 SSL_R_WRONG_CIPHER_RETURNED);
1362
8
        return 0;
1363
8
    }
1364
1365
    /*
1366
     * Depending on the session caching (internal/external), the cipher
1367
     * and/or cipher_id values may not be set. Make sure that cipher_id is
1368
     * set and use it for comparison.
1369
     */
1370
6.77k
    if (s->session->cipher != NULL)
1371
0
        s->session->cipher_id = s->session->cipher->id;
1372
6.77k
    if (s->hit && (s->session->cipher_id != c->id)) {
1373
0
        if (SSL_IS_TLS13(s)) {
1374
            /*
1375
             * In TLSv1.3 it is valid for the server to select a different
1376
             * ciphersuite as long as the hash is the same.
1377
             */
1378
0
            if (ssl_md(c->algorithm2)
1379
0
                    != ssl_md(s->session->cipher->algorithm2)) {
1380
0
                SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1381
0
                         SSL_F_SET_CLIENT_CIPHERSUITE,
1382
0
                         SSL_R_CIPHERSUITE_DIGEST_HAS_CHANGED);
1383
0
                return 0;
1384
0
            }
1385
0
        } else {
1386
            /*
1387
             * Prior to TLSv1.3 resuming a session always meant using the same
1388
             * ciphersuite.
1389
             */
1390
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1391
0
                     SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED);
1392
0
            return 0;
1393
0
        }
1394
0
    }
1395
6.77k
    s->s3->tmp.new_cipher = c;
1396
1397
6.77k
    return 1;
1398
6.77k
}
1399
1400
MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt)
1401
13.8k
{
1402
13.8k
    PACKET session_id, extpkt;
1403
13.8k
    size_t session_id_len;
1404
13.8k
    const unsigned char *cipherchars;
1405
13.8k
    int hrr = 0;
1406
13.8k
    unsigned int compression;
1407
13.8k
    unsigned int sversion;
1408
13.8k
    unsigned int context;
1409
13.8k
    RAW_EXTENSION *extensions = NULL;
1410
13.8k
#ifndef OPENSSL_NO_COMP
1411
13.8k
    SSL_COMP *comp;
1412
13.8k
#endif
1413
1414
13.8k
    if (!PACKET_get_net_2(pkt, &sversion)) {
1415
9
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1416
9
                 SSL_R_LENGTH_MISMATCH);
1417
9
        goto err;
1418
9
    }
1419
1420
    /* load the server random */
1421
13.8k
    if (s->version == TLS1_3_VERSION
1422
13.8k
            && sversion == TLS1_2_VERSION
1423
13.8k
            && PACKET_remaining(pkt) >= SSL3_RANDOM_SIZE
1424
13.8k
            && memcmp(hrrrandom, PACKET_data(pkt), SSL3_RANDOM_SIZE) == 0) {
1425
229
        if (s->hello_retry_request != SSL_HRR_NONE) {
1426
2
            SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE,
1427
2
                     SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_UNEXPECTED_MESSAGE);
1428
2
            goto err;
1429
2
        }
1430
227
        s->hello_retry_request = SSL_HRR_PENDING;
1431
227
        hrr = 1;
1432
227
        if (!PACKET_forward(pkt, SSL3_RANDOM_SIZE)) {
1433
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1434
0
                     SSL_R_LENGTH_MISMATCH);
1435
0
            goto err;
1436
0
        }
1437
13.6k
    } else {
1438
13.6k
        if (!PACKET_copy_bytes(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1439
58
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1440
58
                     SSL_R_LENGTH_MISMATCH);
1441
58
            goto err;
1442
58
        }
1443
13.6k
    }
1444
1445
    /* Get the session-id. */
1446
13.8k
    if (!PACKET_get_length_prefixed_1(pkt, &session_id)) {
1447
187
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1448
187
                 SSL_R_LENGTH_MISMATCH);
1449
187
        goto err;
1450
187
    }
1451
13.6k
    session_id_len = PACKET_remaining(&session_id);
1452
13.6k
    if (session_id_len > sizeof(s->session->session_id)
1453
13.6k
        || session_id_len > SSL3_SESSION_ID_SIZE) {
1454
9
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1455
9
                 SSL_R_SSL3_SESSION_ID_TOO_LONG);
1456
9
        goto err;
1457
9
    }
1458
1459
13.6k
    if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) {
1460
6
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1461
6
                 SSL_R_LENGTH_MISMATCH);
1462
6
        goto err;
1463
6
    }
1464
1465
13.6k
    if (!PACKET_get_1(pkt, &compression)) {
1466
4
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1467
4
                 SSL_R_LENGTH_MISMATCH);
1468
4
        goto err;
1469
4
    }
1470
1471
    /* TLS extensions */
1472
13.6k
    if (PACKET_remaining(pkt) == 0 && !hrr) {
1473
884
        PACKET_null_init(&extpkt);
1474
12.7k
    } else if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
1475
12.7k
               || PACKET_remaining(pkt) != 0) {
1476
159
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1477
159
                 SSL_R_BAD_LENGTH);
1478
159
        goto err;
1479
159
    }
1480
1481
13.4k
    if (!hrr) {
1482
13.2k
        if (!tls_collect_extensions(s, &extpkt,
1483
13.2k
                                    SSL_EXT_TLS1_2_SERVER_HELLO
1484
13.2k
                                    | SSL_EXT_TLS1_3_SERVER_HELLO,
1485
13.2k
                                    &extensions, NULL, 1)) {
1486
            /* SSLfatal() already called */
1487
91
            goto err;
1488
91
        }
1489
1490
13.1k
        if (!ssl_choose_client_version(s, sversion, extensions)) {
1491
            /* SSLfatal() already called */
1492
192
            goto err;
1493
192
        }
1494
13.1k
    }
1495
1496
13.1k
    if (SSL_IS_TLS13(s) || hrr) {
1497
562
        if (compression != 0) {
1498
14
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1499
14
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1500
14
                     SSL_R_INVALID_COMPRESSION_ALGORITHM);
1501
14
            goto err;
1502
14
        }
1503
1504
548
        if (session_id_len != s->tmp_session_id_len
1505
548
                || memcmp(PACKET_data(&session_id), s->tmp_session_id,
1506
539
                          session_id_len) != 0) {
1507
31
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1508
31
                     SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_INVALID_SESSION_ID);
1509
31
            goto err;
1510
31
        }
1511
548
    }
1512
1513
13.1k
    if (hrr) {
1514
215
        if (!set_client_ciphersuite(s, cipherchars)) {
1515
            /* SSLfatal() already called */
1516
2
            goto err;
1517
2
        }
1518
1519
213
        return tls_process_as_hello_retry_request(s, &extpkt);
1520
215
    }
1521
1522
    /*
1523
     * Now we have chosen the version we need to check again that the extensions
1524
     * are appropriate for this version.
1525
     */
1526
12.9k
    context = SSL_IS_TLS13(s) ? SSL_EXT_TLS1_3_SERVER_HELLO
1527
12.9k
                              : SSL_EXT_TLS1_2_SERVER_HELLO;
1528
12.9k
    if (!tls_validate_all_contexts(s, context, extensions)) {
1529
10
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1530
10
                 SSL_R_BAD_EXTENSION);
1531
10
        goto err;
1532
10
    }
1533
1534
12.9k
    s->hit = 0;
1535
1536
12.9k
    if (SSL_IS_TLS13(s)) {
1537
        /*
1538
         * In TLSv1.3 a ServerHello message signals a key change so the end of
1539
         * the message must be on a record boundary.
1540
         */
1541
296
        if (RECORD_LAYER_processed_read_pending(&s->rlayer)) {
1542
3
            SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE,
1543
3
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1544
3
                     SSL_R_NOT_ON_RECORD_BOUNDARY);
1545
3
            goto err;
1546
3
        }
1547
1548
        /* This will set s->hit if we are resuming */
1549
293
        if (!tls_parse_extension(s, TLSEXT_IDX_psk,
1550
293
                                 SSL_EXT_TLS1_3_SERVER_HELLO,
1551
293
                                 extensions, NULL, 0)) {
1552
            /* SSLfatal() already called */
1553
0
            goto err;
1554
0
        }
1555
12.6k
    } else {
1556
        /*
1557
         * Check if we can resume the session based on external pre-shared
1558
         * secret. EAP-FAST (RFC 4851) supports two types of session resumption.
1559
         * Resumption based on server-side state works with session IDs.
1560
         * Resumption based on pre-shared Protected Access Credentials (PACs)
1561
         * works by overriding the SessionTicket extension at the application
1562
         * layer, and does not send a session ID. (We do not know whether
1563
         * EAP-FAST servers would honour the session ID.) Therefore, the session
1564
         * ID alone is not a reliable indicator of session resumption, so we
1565
         * first check if we can resume, and later peek at the next handshake
1566
         * message to see if the server wants to resume.
1567
         */
1568
12.6k
        if (s->version >= TLS1_VERSION
1569
12.6k
                && s->ext.session_secret_cb != NULL && s->session->ext.tick) {
1570
0
            const SSL_CIPHER *pref_cipher = NULL;
1571
            /*
1572
             * s->session->master_key_length is a size_t, but this is an int for
1573
             * backwards compat reasons
1574
             */
1575
0
            int master_key_length;
1576
0
            master_key_length = sizeof(s->session->master_key);
1577
0
            if (s->ext.session_secret_cb(s, s->session->master_key,
1578
0
                                         &master_key_length,
1579
0
                                         NULL, &pref_cipher,
1580
0
                                         s->ext.session_secret_cb_arg)
1581
0
                     && master_key_length > 0) {
1582
0
                s->session->master_key_length = master_key_length;
1583
0
                s->session->cipher = pref_cipher ?
1584
0
                    pref_cipher : ssl_get_cipher_by_char(s, cipherchars, 0);
1585
0
            } else {
1586
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1587
0
                         SSL_F_TLS_PROCESS_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1588
0
                goto err;
1589
0
            }
1590
0
        }
1591
1592
12.6k
        if (session_id_len != 0
1593
12.6k
                && session_id_len == s->session->session_id_length
1594
12.6k
                && memcmp(PACKET_data(&session_id), s->session->session_id,
1595
0
                          session_id_len) == 0)
1596
0
            s->hit = 1;
1597
12.6k
    }
1598
1599
12.9k
    if (s->hit) {
1600
0
        if (s->sid_ctx_length != s->session->sid_ctx_length
1601
0
                || memcmp(s->session->sid_ctx, s->sid_ctx, s->sid_ctx_length)) {
1602
            /* actually a client application bug */
1603
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1604
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1605
0
                     SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
1606
0
            goto err;
1607
0
        }
1608
12.9k
    } else {
1609
        /*
1610
         * If we were trying for session-id reuse but the server
1611
         * didn't resume, make a new SSL_SESSION.
1612
         * In the case of EAP-FAST and PAC, we do not send a session ID,
1613
         * so the PAC-based session secret is always preserved. It'll be
1614
         * overwritten if the server refuses resumption.
1615
         */
1616
12.9k
        if (s->session->session_id_length > 0) {
1617
0
            tsan_counter(&s->session_ctx->stats.sess_miss);
1618
0
            if (!ssl_get_new_session(s, 0)) {
1619
                /* SSLfatal() already called */
1620
0
                goto err;
1621
0
            }
1622
0
        }
1623
1624
12.9k
        s->session->ssl_version = s->version;
1625
        /*
1626
         * In TLSv1.2 and below we save the session id we were sent so we can
1627
         * resume it later. In TLSv1.3 the session id we were sent is just an
1628
         * echo of what we originally sent in the ClientHello and should not be
1629
         * used for resumption.
1630
         */
1631
12.9k
        if (!SSL_IS_TLS13(s)) {
1632
12.6k
            s->session->session_id_length = session_id_len;
1633
            /* session_id_len could be 0 */
1634
12.6k
            if (session_id_len > 0)
1635
4.98k
                memcpy(s->session->session_id, PACKET_data(&session_id),
1636
4.98k
                       session_id_len);
1637
12.6k
        }
1638
12.9k
    }
1639
1640
    /* Session version and negotiated protocol version should match */
1641
12.9k
    if (s->version != s->session->ssl_version) {
1642
0
        SSLfatal(s, SSL_AD_PROTOCOL_VERSION, SSL_F_TLS_PROCESS_SERVER_HELLO,
1643
0
                 SSL_R_SSL_SESSION_VERSION_MISMATCH);
1644
0
        goto err;
1645
0
    }
1646
    /*
1647
     * Now that we know the version, update the check to see if it's an allowed
1648
     * version.
1649
     */
1650
12.9k
    s->s3->tmp.min_ver = s->version;
1651
12.9k
    s->s3->tmp.max_ver = s->version;
1652
1653
12.9k
    if (!set_client_ciphersuite(s, cipherchars)) {
1654
        /* SSLfatal() already called */
1655
111
        goto err;
1656
111
    }
1657
1658
#ifdef OPENSSL_NO_COMP
1659
    if (compression != 0) {
1660
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1661
                 SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1662
        goto err;
1663
    }
1664
    /*
1665
     * If compression is disabled we'd better not try to resume a session
1666
     * using compression.
1667
     */
1668
    if (s->session->compress_meth != 0) {
1669
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_PROCESS_SERVER_HELLO,
1670
                 SSL_R_INCONSISTENT_COMPRESSION);
1671
        goto err;
1672
    }
1673
#else
1674
12.7k
    if (s->hit && compression != s->session->compress_meth) {
1675
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1676
0
                 SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
1677
0
        goto err;
1678
0
    }
1679
12.7k
    if (compression == 0)
1680
12.7k
        comp = NULL;
1681
22
    else if (!ssl_allow_compression(s)) {
1682
22
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1683
22
                 SSL_R_COMPRESSION_DISABLED);
1684
22
        goto err;
1685
22
    } else {
1686
0
        comp = ssl3_comp_find(s->ctx->comp_methods, compression);
1687
0
    }
1688
1689
12.7k
    if (compression != 0 && comp == NULL) {
1690
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1691
0
                 SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1692
0
        goto err;
1693
12.7k
    } else {
1694
12.7k
        s->s3->tmp.new_compression = comp;
1695
12.7k
    }
1696
12.7k
#endif
1697
1698
12.7k
    if (!tls_parse_all_extensions(s, context, extensions, NULL, 0, 1)) {
1699
        /* SSLfatal() already called */
1700
155
        goto err;
1701
155
    }
1702
1703
#ifndef OPENSSL_NO_SCTP
1704
    if (SSL_IS_DTLS(s) && s->hit) {
1705
        unsigned char sctpauthkey[64];
1706
        char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
1707
        size_t labellen;
1708
1709
        /*
1710
         * Add new shared key for SCTP-Auth, will be ignored if
1711
         * no SCTP used.
1712
         */
1713
        memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
1714
               sizeof(DTLS1_SCTP_AUTH_LABEL));
1715
1716
        /* Don't include the terminating zero. */
1717
        labellen = sizeof(labelbuffer) - 1;
1718
        if (s->mode & SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG)
1719
            labellen += 1;
1720
1721
        if (SSL_export_keying_material(s, sctpauthkey,
1722
                                       sizeof(sctpauthkey),
1723
                                       labelbuffer,
1724
                                       labellen, NULL, 0, 0) <= 0) {
1725
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1726
                     ERR_R_INTERNAL_ERROR);
1727
            goto err;
1728
        }
1729
1730
        BIO_ctrl(SSL_get_wbio(s),
1731
                 BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
1732
                 sizeof(sctpauthkey), sctpauthkey);
1733
    }
1734
#endif
1735
1736
    /*
1737
     * In TLSv1.3 we have some post-processing to change cipher state, otherwise
1738
     * we're done with this message
1739
     */
1740
12.6k
    if (SSL_IS_TLS13(s)
1741
12.6k
            && (!s->method->ssl3_enc->setup_key_block(s)
1742
201
                || !s->method->ssl3_enc->change_cipher_state(s,
1743
201
                    SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_READ))) {
1744
        /* SSLfatal() already called */
1745
0
        goto err;
1746
0
    }
1747
1748
12.6k
    OPENSSL_free(extensions);
1749
12.6k
    return MSG_PROCESS_CONTINUE_READING;
1750
1.06k
 err:
1751
1.06k
    OPENSSL_free(extensions);
1752
1.06k
    return MSG_PROCESS_ERROR;
1753
12.6k
}
1754
1755
static MSG_PROCESS_RETURN tls_process_as_hello_retry_request(SSL *s,
1756
                                                             PACKET *extpkt)
1757
213
{
1758
213
    RAW_EXTENSION *extensions = NULL;
1759
1760
    /*
1761
     * If we were sending early_data then the enc_write_ctx is now invalid and
1762
     * should not be used.
1763
     */
1764
213
    EVP_CIPHER_CTX_free(s->enc_write_ctx);
1765
213
    s->enc_write_ctx = NULL;
1766
1767
213
    if (!tls_collect_extensions(s, extpkt, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST,
1768
213
                                &extensions, NULL, 1)
1769
213
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST,
1770
207
                                         extensions, NULL, 0, 1)) {
1771
        /* SSLfatal() already called */
1772
82
        goto err;
1773
82
    }
1774
1775
131
    OPENSSL_free(extensions);
1776
131
    extensions = NULL;
1777
1778
131
    if (s->ext.tls13_cookie_len == 0
1779
131
#if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
1780
131
        && s->s3->tmp.pkey != NULL
1781
131
#endif
1782
131
        ) {
1783
        /*
1784
         * We didn't receive a cookie or a new key_share so the next
1785
         * ClientHello will not change
1786
         */
1787
6
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1788
6
                 SSL_F_TLS_PROCESS_AS_HELLO_RETRY_REQUEST,
1789
6
                 SSL_R_NO_CHANGE_FOLLOWING_HRR);
1790
6
        goto err;
1791
6
    }
1792
1793
    /*
1794
     * Re-initialise the Transcript Hash. We're going to prepopulate it with
1795
     * a synthetic message_hash in place of ClientHello1.
1796
     */
1797
125
    if (!create_synthetic_message_hash(s, NULL, 0, NULL, 0)) {
1798
        /* SSLfatal() already called */
1799
0
        goto err;
1800
0
    }
1801
1802
    /*
1803
     * Add this message to the Transcript Hash. Normally this is done
1804
     * automatically prior to the message processing stage. However due to the
1805
     * need to create the synthetic message hash, we defer that step until now
1806
     * for HRR messages.
1807
     */
1808
125
    if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
1809
125
                                s->init_num + SSL3_HM_HEADER_LENGTH)) {
1810
        /* SSLfatal() already called */
1811
0
        goto err;
1812
0
    }
1813
1814
125
    return MSG_PROCESS_FINISHED_READING;
1815
88
 err:
1816
88
    OPENSSL_free(extensions);
1817
88
    return MSG_PROCESS_ERROR;
1818
125
}
1819
1820
MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s, PACKET *pkt)
1821
4.04k
{
1822
4.04k
    int i;
1823
4.04k
    MSG_PROCESS_RETURN ret = MSG_PROCESS_ERROR;
1824
4.04k
    unsigned long cert_list_len, cert_len;
1825
4.04k
    X509 *x = NULL;
1826
4.04k
    const unsigned char *certstart, *certbytes;
1827
4.04k
    STACK_OF(X509) *sk = NULL;
1828
4.04k
    EVP_PKEY *pkey = NULL;
1829
4.04k
    size_t chainidx, certidx;
1830
4.04k
    unsigned int context = 0;
1831
4.04k
    const SSL_CERT_LOOKUP *clu;
1832
1833
4.04k
    if ((sk = sk_X509_new_null()) == NULL) {
1834
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1835
0
                 ERR_R_MALLOC_FAILURE);
1836
0
        goto err;
1837
0
    }
1838
1839
4.04k
    if ((SSL_IS_TLS13(s) && !PACKET_get_1(pkt, &context))
1840
4.04k
            || context != 0
1841
4.04k
            || !PACKET_get_net_3(pkt, &cert_list_len)
1842
4.04k
            || PACKET_remaining(pkt) != cert_list_len
1843
4.04k
            || PACKET_remaining(pkt) == 0) {
1844
37
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1845
37
                 SSL_R_LENGTH_MISMATCH);
1846
37
        goto err;
1847
37
    }
1848
7.26k
    for (chainidx = 0; PACKET_remaining(pkt); chainidx++) {
1849
4.74k
        if (!PACKET_get_net_3(pkt, &cert_len)
1850
4.74k
            || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
1851
35
            SSLfatal(s, SSL_AD_DECODE_ERROR,
1852
35
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1853
35
                     SSL_R_CERT_LENGTH_MISMATCH);
1854
35
            goto err;
1855
35
        }
1856
1857
4.71k
        certstart = certbytes;
1858
4.71k
        x = d2i_X509(NULL, (const unsigned char **)&certbytes, cert_len);
1859
4.71k
        if (x == NULL) {
1860
1.45k
            SSLfatal(s, SSL_AD_BAD_CERTIFICATE,
1861
1.45k
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_ASN1_LIB);
1862
1.45k
            goto err;
1863
1.45k
        }
1864
3.25k
        if (certbytes != (certstart + cert_len)) {
1865
1
            SSLfatal(s, SSL_AD_DECODE_ERROR,
1866
1
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1867
1
                     SSL_R_CERT_LENGTH_MISMATCH);
1868
1
            goto err;
1869
1
        }
1870
1871
3.25k
        if (SSL_IS_TLS13(s)) {
1872
0
            RAW_EXTENSION *rawexts = NULL;
1873
0
            PACKET extensions;
1874
1875
0
            if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
1876
0
                SSLfatal(s, SSL_AD_DECODE_ERROR,
1877
0
                         SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1878
0
                         SSL_R_BAD_LENGTH);
1879
0
                goto err;
1880
0
            }
1881
0
            if (!tls_collect_extensions(s, &extensions,
1882
0
                                        SSL_EXT_TLS1_3_CERTIFICATE, &rawexts,
1883
0
                                        NULL, chainidx == 0)
1884
0
                || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE,
1885
0
                                             rawexts, x, chainidx,
1886
0
                                             PACKET_remaining(pkt) == 0)) {
1887
0
                OPENSSL_free(rawexts);
1888
                /* SSLfatal already called */
1889
0
                goto err;
1890
0
            }
1891
0
            OPENSSL_free(rawexts);
1892
0
        }
1893
1894
3.25k
        if (!sk_X509_push(sk, x)) {
1895
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1896
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1897
0
                     ERR_R_MALLOC_FAILURE);
1898
0
            goto err;
1899
0
        }
1900
3.25k
        x = NULL;
1901
3.25k
    }
1902
1903
2.51k
    i = ssl_verify_cert_chain(s, sk);
1904
    /*
1905
     * The documented interface is that SSL_VERIFY_PEER should be set in order
1906
     * for client side verification of the server certificate to take place.
1907
     * However, historically the code has only checked that *any* flag is set
1908
     * to cause server verification to take place. Use of the other flags makes
1909
     * no sense in client mode. An attempt to clean up the semantics was
1910
     * reverted because at least one application *only* set
1911
     * SSL_VERIFY_FAIL_IF_NO_PEER_CERT. Prior to the clean up this still caused
1912
     * server verification to take place, after the clean up it silently did
1913
     * nothing. SSL_CTX_set_verify()/SSL_set_verify() cannot validate the flags
1914
     * sent to them because they are void functions. Therefore, we now use the
1915
     * (less clean) historic behaviour of performing validation if any flag is
1916
     * set. The *documented* interface remains the same.
1917
     */
1918
2.51k
    if (s->verify_mode != SSL_VERIFY_NONE && i <= 0) {
1919
0
        SSLfatal(s, ssl_x509err2alert(s->verify_result),
1920
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1921
0
                 SSL_R_CERTIFICATE_VERIFY_FAILED);
1922
0
        goto err;
1923
0
    }
1924
2.51k
    ERR_clear_error();          /* but we keep s->verify_result */
1925
2.51k
    if (i > 1) {
1926
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
1927
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, i);
1928
0
        goto err;
1929
0
    }
1930
1931
2.51k
    s->session->peer_chain = sk;
1932
    /*
1933
     * Inconsistency alert: cert_chain does include the peer's certificate,
1934
     * which we don't include in statem_srvr.c
1935
     */
1936
2.51k
    x = sk_X509_value(sk, 0);
1937
2.51k
    sk = NULL;
1938
1939
2.51k
    pkey = X509_get0_pubkey(x);
1940
1941
2.51k
    if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) {
1942
619
        x = NULL;
1943
619
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1944
619
                 SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1945
619
        goto err;
1946
619
    }
1947
1948
1.89k
    if ((clu = ssl_cert_lookup_by_pkey(pkey, &certidx)) == NULL) {
1949
5
        x = NULL;
1950
5
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1951
5
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1952
5
                 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1953
5
        goto err;
1954
5
    }
1955
    /*
1956
     * Check certificate type is consistent with ciphersuite. For TLS 1.3
1957
     * skip check since TLS 1.3 ciphersuites can be used with any certificate
1958
     * type.
1959
     */
1960
1.89k
    if (!SSL_IS_TLS13(s)) {
1961
1.89k
        if ((clu->amask & s->s3->tmp.new_cipher->algorithm_auth) == 0) {
1962
10
            x = NULL;
1963
10
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1964
10
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1965
10
                     SSL_R_WRONG_CERTIFICATE_TYPE);
1966
10
            goto err;
1967
10
        }
1968
1.89k
    }
1969
1970
1.88k
    X509_free(s->session->peer);
1971
1.88k
    X509_up_ref(x);
1972
1.88k
    s->session->peer = x;
1973
1.88k
    s->session->verify_result = s->verify_result;
1974
1.88k
    x = NULL;
1975
1976
    /* Save the current hash state for when we receive the CertificateVerify */
1977
1.88k
    if (SSL_IS_TLS13(s)
1978
1.88k
            && !ssl_handshake_hash(s, s->cert_verify_hash,
1979
0
                                   sizeof(s->cert_verify_hash),
1980
0
                                   &s->cert_verify_hash_len)) {
1981
0
        /* SSLfatal() already called */;
1982
0
        goto err;
1983
0
    }
1984
1985
1.88k
    ret = MSG_PROCESS_CONTINUE_READING;
1986
1987
4.04k
 err:
1988
4.04k
    X509_free(x);
1989
4.04k
    sk_X509_pop_free(sk, X509_free);
1990
4.04k
    return ret;
1991
1.88k
}
1992
1993
static int tls_process_ske_psk_preamble(SSL *s, PACKET *pkt)
1994
0
{
1995
0
#ifndef OPENSSL_NO_PSK
1996
0
    PACKET psk_identity_hint;
1997
1998
    /* PSK ciphersuites are preceded by an identity hint */
1999
2000
0
    if (!PACKET_get_length_prefixed_2(pkt, &psk_identity_hint)) {
2001
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2002
0
                 SSL_R_LENGTH_MISMATCH);
2003
0
        return 0;
2004
0
    }
2005
2006
    /*
2007
     * Store PSK identity hint for later use, hint is used in
2008
     * tls_construct_client_key_exchange.  Assume that the maximum length of
2009
     * a PSK identity hint can be as long as the maximum length of a PSK
2010
     * identity.
2011
     */
2012
0
    if (PACKET_remaining(&psk_identity_hint) > PSK_MAX_IDENTITY_LEN) {
2013
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2014
0
                 SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2015
0
                 SSL_R_DATA_LENGTH_TOO_LONG);
2016
0
        return 0;
2017
0
    }
2018
2019
0
    if (PACKET_remaining(&psk_identity_hint) == 0) {
2020
0
        OPENSSL_free(s->session->psk_identity_hint);
2021
0
        s->session->psk_identity_hint = NULL;
2022
0
    } else if (!PACKET_strndup(&psk_identity_hint,
2023
0
                               &s->session->psk_identity_hint)) {
2024
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2025
0
                 ERR_R_INTERNAL_ERROR);
2026
0
        return 0;
2027
0
    }
2028
2029
0
    return 1;
2030
#else
2031
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2032
             ERR_R_INTERNAL_ERROR);
2033
    return 0;
2034
#endif
2035
0
}
2036
2037
static int tls_process_ske_srp(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2038
0
{
2039
0
#ifndef OPENSSL_NO_SRP
2040
0
    PACKET prime, generator, salt, server_pub;
2041
2042
0
    if (!PACKET_get_length_prefixed_2(pkt, &prime)
2043
0
        || !PACKET_get_length_prefixed_2(pkt, &generator)
2044
0
        || !PACKET_get_length_prefixed_1(pkt, &salt)
2045
0
        || !PACKET_get_length_prefixed_2(pkt, &server_pub)) {
2046
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2047
0
                 SSL_R_LENGTH_MISMATCH);
2048
0
        return 0;
2049
0
    }
2050
2051
    /* TODO(size_t): Convert BN_bin2bn() calls */
2052
0
    if ((s->srp_ctx.N =
2053
0
         BN_bin2bn(PACKET_data(&prime),
2054
0
                   (int)PACKET_remaining(&prime), NULL)) == NULL
2055
0
        || (s->srp_ctx.g =
2056
0
            BN_bin2bn(PACKET_data(&generator),
2057
0
                      (int)PACKET_remaining(&generator), NULL)) == NULL
2058
0
        || (s->srp_ctx.s =
2059
0
            BN_bin2bn(PACKET_data(&salt),
2060
0
                      (int)PACKET_remaining(&salt), NULL)) == NULL
2061
0
        || (s->srp_ctx.B =
2062
0
            BN_bin2bn(PACKET_data(&server_pub),
2063
0
                      (int)PACKET_remaining(&server_pub), NULL)) == NULL) {
2064
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2065
0
                 ERR_R_BN_LIB);
2066
0
        return 0;
2067
0
    }
2068
2069
0
    if (!srp_verify_server_param(s)) {
2070
        /* SSLfatal() already called */
2071
0
        return 0;
2072
0
    }
2073
2074
    /* We must check if there is a certificate */
2075
0
    if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
2076
0
        *pkey = X509_get0_pubkey(s->session->peer);
2077
2078
0
    return 1;
2079
#else
2080
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2081
             ERR_R_INTERNAL_ERROR);
2082
    return 0;
2083
#endif
2084
0
}
2085
2086
static int tls_process_ske_dhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2087
1.77k
{
2088
1.77k
#ifndef OPENSSL_NO_DH
2089
1.77k
    PACKET prime, generator, pub_key;
2090
1.77k
    EVP_PKEY *peer_tmp = NULL;
2091
2092
1.77k
    DH *dh = NULL;
2093
1.77k
    BIGNUM *p = NULL, *g = NULL, *bnpub_key = NULL;
2094
2095
1.77k
    int check_bits = 0;
2096
2097
1.77k
    if (!PACKET_get_length_prefixed_2(pkt, &prime)
2098
1.77k
        || !PACKET_get_length_prefixed_2(pkt, &generator)
2099
1.77k
        || !PACKET_get_length_prefixed_2(pkt, &pub_key)) {
2100
51
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2101
51
                 SSL_R_LENGTH_MISMATCH);
2102
51
        return 0;
2103
51
    }
2104
2105
1.72k
    peer_tmp = EVP_PKEY_new();
2106
1.72k
    dh = DH_new();
2107
2108
1.72k
    if (peer_tmp == NULL || dh == NULL) {
2109
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2110
0
                 ERR_R_MALLOC_FAILURE);
2111
0
        goto err;
2112
0
    }
2113
2114
    /* TODO(size_t): Convert these calls */
2115
1.72k
    p = BN_bin2bn(PACKET_data(&prime), (int)PACKET_remaining(&prime), NULL);
2116
1.72k
    g = BN_bin2bn(PACKET_data(&generator), (int)PACKET_remaining(&generator),
2117
1.72k
                  NULL);
2118
1.72k
    bnpub_key = BN_bin2bn(PACKET_data(&pub_key),
2119
1.72k
                          (int)PACKET_remaining(&pub_key), NULL);
2120
1.72k
    if (p == NULL || g == NULL || bnpub_key == NULL) {
2121
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2122
0
                 ERR_R_BN_LIB);
2123
0
        goto err;
2124
0
    }
2125
2126
    /* test non-zero pubkey */
2127
1.72k
    if (BN_is_zero(bnpub_key)) {
2128
17
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_DHE,
2129
17
                 SSL_R_BAD_DH_VALUE);
2130
17
        goto err;
2131
17
    }
2132
2133
1.70k
    if (!DH_set0_pqg(dh, p, NULL, g)) {
2134
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2135
0
                 ERR_R_BN_LIB);
2136
0
        goto err;
2137
0
    }
2138
1.70k
    p = g = NULL;
2139
2140
1.70k
    if (DH_check_params(dh, &check_bits) == 0 || check_bits != 0) {
2141
123
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_DHE,
2142
123
                 SSL_R_BAD_DH_VALUE);
2143
123
        goto err;
2144
123
    }
2145
2146
1.58k
    if (!DH_set0_key(dh, bnpub_key, NULL)) {
2147
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2148
0
                 ERR_R_BN_LIB);
2149
0
        goto err;
2150
0
    }
2151
1.58k
    bnpub_key = NULL;
2152
2153
1.58k
    if (EVP_PKEY_assign_DH(peer_tmp, dh) == 0) {
2154
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2155
0
                 ERR_R_EVP_LIB);
2156
0
        goto err;
2157
0
    }
2158
1.58k
    dh = NULL;
2159
2160
1.58k
    if (!ssl_security(s, SSL_SECOP_TMP_DH, EVP_PKEY_security_bits(peer_tmp),
2161
1.58k
                      0, peer_tmp)) {
2162
169
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_PROCESS_SKE_DHE,
2163
169
                 SSL_R_DH_KEY_TOO_SMALL);
2164
169
        goto err;
2165
169
    }
2166
2167
1.41k
    s->s3->peer_tmp = peer_tmp;
2168
2169
    /*
2170
     * FIXME: This makes assumptions about which ciphersuites come with
2171
     * public keys. We should have a less ad-hoc way of doing this
2172
     */
2173
1.41k
    if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
2174
377
        *pkey = X509_get0_pubkey(s->session->peer);
2175
    /* else anonymous DH, so no certificate or pkey. */
2176
2177
1.41k
    return 1;
2178
2179
309
 err:
2180
309
    BN_free(p);
2181
309
    BN_free(g);
2182
309
    BN_free(bnpub_key);
2183
309
    DH_free(dh);
2184
309
    EVP_PKEY_free(peer_tmp);
2185
2186
309
    return 0;
2187
#else
2188
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2189
             ERR_R_INTERNAL_ERROR);
2190
    return 0;
2191
#endif
2192
1.58k
}
2193
2194
static int tls_process_ske_ecdhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2195
1.28k
{
2196
1.28k
#ifndef OPENSSL_NO_EC
2197
1.28k
    PACKET encoded_pt;
2198
1.28k
    unsigned int curve_type, curve_id;
2199
2200
    /*
2201
     * Extract elliptic curve parameters and the server's ephemeral ECDH
2202
     * public key. We only support named (not generic) curves and
2203
     * ECParameters in this case is just three bytes.
2204
     */
2205
1.28k
    if (!PACKET_get_1(pkt, &curve_type) || !PACKET_get_net_2(pkt, &curve_id)) {
2206
2
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2207
2
                 SSL_R_LENGTH_TOO_SHORT);
2208
2
        return 0;
2209
2
    }
2210
    /*
2211
     * Check curve is named curve type and one of our preferences, if not
2212
     * server has sent an invalid curve.
2213
     */
2214
1.28k
    if (curve_type != NAMED_CURVE_TYPE
2215
1.28k
            || !tls1_check_group_id(s, curve_id, 1)) {
2216
17
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_ECDHE,
2217
17
                 SSL_R_WRONG_CURVE);
2218
17
        return 0;
2219
17
    }
2220
2221
1.26k
    if ((s->s3->peer_tmp = ssl_generate_param_group(curve_id)) == NULL) {
2222
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2223
0
                 SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
2224
0
        return 0;
2225
0
    }
2226
2227
1.26k
    if (!PACKET_get_length_prefixed_1(pkt, &encoded_pt)) {
2228
10
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2229
10
                 SSL_R_LENGTH_MISMATCH);
2230
10
        return 0;
2231
10
    }
2232
2233
1.25k
    if (!EVP_PKEY_set1_tls_encodedpoint(s->s3->peer_tmp,
2234
1.25k
                                        PACKET_data(&encoded_pt),
2235
1.25k
                                        PACKET_remaining(&encoded_pt))) {
2236
106
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_ECDHE,
2237
106
                 SSL_R_BAD_ECPOINT);
2238
106
        return 0;
2239
106
    }
2240
2241
    /*
2242
     * The ECC/TLS specification does not mention the use of DSA to sign
2243
     * ECParameters in the server key exchange message. We do support RSA
2244
     * and ECDSA.
2245
     */
2246
1.15k
    if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aECDSA)
2247
252
        *pkey = X509_get0_pubkey(s->session->peer);
2248
899
    else if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aRSA)
2249
124
        *pkey = X509_get0_pubkey(s->session->peer);
2250
    /* else anonymous ECDH, so no certificate or pkey. */
2251
2252
1.15k
    return 1;
2253
#else
2254
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2255
             ERR_R_INTERNAL_ERROR);
2256
    return 0;
2257
#endif
2258
1.25k
}
2259
2260
MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s, PACKET *pkt)
2261
3.05k
{
2262
3.05k
    long alg_k;
2263
3.05k
    EVP_PKEY *pkey = NULL;
2264
3.05k
    EVP_MD_CTX *md_ctx = NULL;
2265
3.05k
    EVP_PKEY_CTX *pctx = NULL;
2266
3.05k
    PACKET save_param_start, signature;
2267
2268
3.05k
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2269
2270
3.05k
    save_param_start = *pkt;
2271
2272
3.05k
#if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
2273
3.05k
    EVP_PKEY_free(s->s3->peer_tmp);
2274
3.05k
    s->s3->peer_tmp = NULL;
2275
3.05k
#endif
2276
2277
3.05k
    if (alg_k & SSL_PSK) {
2278
0
        if (!tls_process_ske_psk_preamble(s, pkt)) {
2279
            /* SSLfatal() already called */
2280
0
            goto err;
2281
0
        }
2282
0
    }
2283
2284
    /* Nothing else to do for plain PSK or RSAPSK */
2285
3.05k
    if (alg_k & (SSL_kPSK | SSL_kRSAPSK)) {
2286
3.05k
    } else if (alg_k & SSL_kSRP) {
2287
0
        if (!tls_process_ske_srp(s, pkt, &pkey)) {
2288
            /* SSLfatal() already called */
2289
0
            goto err;
2290
0
        }
2291
3.05k
    } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2292
1.77k
        if (!tls_process_ske_dhe(s, pkt, &pkey)) {
2293
            /* SSLfatal() already called */
2294
360
            goto err;
2295
360
        }
2296
1.77k
    } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2297
1.28k
        if (!tls_process_ske_ecdhe(s, pkt, &pkey)) {
2298
            /* SSLfatal() already called */
2299
135
            goto err;
2300
135
        }
2301
1.28k
    } else if (alg_k) {
2302
0
        SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2303
0
                 SSL_R_UNEXPECTED_MESSAGE);
2304
0
        goto err;
2305
0
    }
2306
2307
    /* if it was signed, check the signature */
2308
2.56k
    if (pkey != NULL) {
2309
753
        PACKET params;
2310
753
        int maxsig;
2311
753
        const EVP_MD *md = NULL;
2312
753
        unsigned char *tbs;
2313
753
        size_t tbslen;
2314
753
        int rv;
2315
2316
        /*
2317
         * |pkt| now points to the beginning of the signature, so the difference
2318
         * equals the length of the parameters.
2319
         */
2320
753
        if (!PACKET_get_sub_packet(&save_param_start, &params,
2321
753
                                   PACKET_remaining(&save_param_start) -
2322
753
                                   PACKET_remaining(pkt))) {
2323
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2324
0
                     ERR_R_INTERNAL_ERROR);
2325
0
            goto err;
2326
0
        }
2327
2328
753
        if (SSL_USE_SIGALGS(s)) {
2329
410
            unsigned int sigalg;
2330
2331
410
            if (!PACKET_get_net_2(pkt, &sigalg)) {
2332
8
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2333
8
                         SSL_R_LENGTH_TOO_SHORT);
2334
8
                goto err;
2335
8
            }
2336
402
            if (tls12_check_peer_sigalg(s, sigalg, pkey) <=0) {
2337
                /* SSLfatal() already called */
2338
21
                goto err;
2339
21
            }
2340
402
        } else if (!tls1_set_peer_legacy_sigalg(s, pkey)) {
2341
1
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2342
1
                     ERR_R_INTERNAL_ERROR);
2343
1
            goto err;
2344
1
        }
2345
2346
723
        if (!tls1_lookup_md(s->s3->tmp.peer_sigalg, &md)) {
2347
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2348
0
                     ERR_R_INTERNAL_ERROR);
2349
0
            goto err;
2350
0
        }
2351
#ifdef SSL_DEBUG
2352
        if (SSL_USE_SIGALGS(s))
2353
            fprintf(stderr, "USING TLSv1.2 HASH %s\n",
2354
                    md == NULL ? "n/a" : EVP_MD_name(md));
2355
#endif
2356
2357
723
        if (!PACKET_get_length_prefixed_2(pkt, &signature)
2358
723
            || PACKET_remaining(pkt) != 0) {
2359
18
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2360
18
                     SSL_R_LENGTH_MISMATCH);
2361
18
            goto err;
2362
18
        }
2363
705
        maxsig = EVP_PKEY_size(pkey);
2364
705
        if (maxsig < 0) {
2365
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2366
0
                     ERR_R_INTERNAL_ERROR);
2367
0
            goto err;
2368
0
        }
2369
2370
        /*
2371
         * Check signature length
2372
         */
2373
705
        if (PACKET_remaining(&signature) > (size_t)maxsig) {
2374
            /* wrong packet length */
2375
9
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2376
9
                   SSL_R_WRONG_SIGNATURE_LENGTH);
2377
9
            goto err;
2378
9
        }
2379
2380
696
        md_ctx = EVP_MD_CTX_new();
2381
696
        if (md_ctx == NULL) {
2382
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2383
0
                     ERR_R_MALLOC_FAILURE);
2384
0
            goto err;
2385
0
        }
2386
2387
696
        if (EVP_DigestVerifyInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2388
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2389
0
                     ERR_R_EVP_LIB);
2390
0
            goto err;
2391
0
        }
2392
696
        if (SSL_USE_PSS(s)) {
2393
41
            if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2394
41
                || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx,
2395
41
                                                RSA_PSS_SALTLEN_DIGEST) <= 0) {
2396
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2397
0
                         SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2398
0
                goto err;
2399
0
            }
2400
41
        }
2401
696
        tbslen = construct_key_exchange_tbs(s, &tbs, PACKET_data(&params),
2402
696
                                            PACKET_remaining(&params));
2403
696
        if (tbslen == 0) {
2404
            /* SSLfatal() already called */
2405
0
            goto err;
2406
0
        }
2407
2408
696
        rv = EVP_DigestVerify(md_ctx, PACKET_data(&signature),
2409
696
                              PACKET_remaining(&signature), tbs, tbslen);
2410
696
        OPENSSL_free(tbs);
2411
696
        if (rv <= 0) {
2412
677
            SSLfatal(s, SSL_AD_DECRYPT_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2413
677
                     SSL_R_BAD_SIGNATURE);
2414
677
            goto err;
2415
677
        }
2416
19
        EVP_MD_CTX_free(md_ctx);
2417
19
        md_ctx = NULL;
2418
1.80k
    } else {
2419
        /* aNULL, aSRP or PSK do not need public keys */
2420
1.80k
        if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
2421
1.80k
            && !(alg_k & SSL_PSK)) {
2422
            /* Might be wrong key type, check it */
2423
0
            if (ssl3_check_cert_and_algorithm(s)) {
2424
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2425
0
                         SSL_R_BAD_DATA);
2426
0
            }
2427
            /* else this shouldn't happen, SSLfatal() already called */
2428
0
            goto err;
2429
0
        }
2430
        /* still data left over */
2431
1.80k
        if (PACKET_remaining(pkt) != 0) {
2432
13
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2433
13
                     SSL_R_EXTRA_DATA_IN_MESSAGE);
2434
13
            goto err;
2435
13
        }
2436
1.80k
    }
2437
2438
1.81k
    return MSG_PROCESS_CONTINUE_READING;
2439
1.24k
 err:
2440
1.24k
    EVP_MD_CTX_free(md_ctx);
2441
1.24k
    return MSG_PROCESS_ERROR;
2442
2.56k
}
2443
2444
MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s, PACKET *pkt)
2445
1.19k
{
2446
1.19k
    size_t i;
2447
2448
    /* Clear certificate validity flags */
2449
11.9k
    for (i = 0; i < SSL_PKEY_NUM; i++)
2450
10.7k
        s->s3->tmp.valid_flags[i] = 0;
2451
2452
1.19k
    if (SSL_IS_TLS13(s)) {
2453
0
        PACKET reqctx, extensions;
2454
0
        RAW_EXTENSION *rawexts = NULL;
2455
2456
0
        if ((s->shutdown & SSL_SENT_SHUTDOWN) != 0) {
2457
            /*
2458
             * We already sent close_notify. This can only happen in TLSv1.3
2459
             * post-handshake messages. We can't reasonably respond to this, so
2460
             * we just ignore it
2461
             */
2462
0
            return MSG_PROCESS_FINISHED_READING;
2463
0
        }
2464
2465
        /* Free and zero certificate types: it is not present in TLS 1.3 */
2466
0
        OPENSSL_free(s->s3->tmp.ctype);
2467
0
        s->s3->tmp.ctype = NULL;
2468
0
        s->s3->tmp.ctype_len = 0;
2469
0
        OPENSSL_free(s->pha_context);
2470
0
        s->pha_context = NULL;
2471
0
        s->pha_context_len = 0;
2472
2473
0
        if (!PACKET_get_length_prefixed_1(pkt, &reqctx) ||
2474
0
            !PACKET_memdup(&reqctx, &s->pha_context, &s->pha_context_len)) {
2475
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2476
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2477
0
                     SSL_R_LENGTH_MISMATCH);
2478
0
            return MSG_PROCESS_ERROR;
2479
0
        }
2480
2481
0
        if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
2482
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2483
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2484
0
                     SSL_R_BAD_LENGTH);
2485
0
            return MSG_PROCESS_ERROR;
2486
0
        }
2487
0
        if (!tls_collect_extensions(s, &extensions,
2488
0
                                    SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
2489
0
                                    &rawexts, NULL, 1)
2490
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
2491
0
                                         rawexts, NULL, 0, 1)) {
2492
            /* SSLfatal() already called */
2493
0
            OPENSSL_free(rawexts);
2494
0
            return MSG_PROCESS_ERROR;
2495
0
        }
2496
0
        OPENSSL_free(rawexts);
2497
0
        if (!tls1_process_sigalgs(s)) {
2498
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2499
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2500
0
                     SSL_R_BAD_LENGTH);
2501
0
            return MSG_PROCESS_ERROR;
2502
0
        }
2503
1.19k
    } else {
2504
1.19k
        PACKET ctypes;
2505
2506
        /* get the certificate types */
2507
1.19k
        if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) {
2508
13
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2509
13
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2510
13
                     SSL_R_LENGTH_MISMATCH);
2511
13
            return MSG_PROCESS_ERROR;
2512
13
        }
2513
2514
1.18k
        if (!PACKET_memdup(&ctypes, &s->s3->tmp.ctype, &s->s3->tmp.ctype_len)) {
2515
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2516
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2517
0
                     ERR_R_INTERNAL_ERROR);
2518
0
            return MSG_PROCESS_ERROR;
2519
0
        }
2520
2521
1.18k
        if (SSL_USE_SIGALGS(s)) {
2522
211
            PACKET sigalgs;
2523
2524
211
            if (!PACKET_get_length_prefixed_2(pkt, &sigalgs)) {
2525
21
                SSLfatal(s, SSL_AD_DECODE_ERROR,
2526
21
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2527
21
                         SSL_R_LENGTH_MISMATCH);
2528
21
                return MSG_PROCESS_ERROR;
2529
21
            }
2530
2531
            /*
2532
             * Despite this being for certificates, preserve compatibility
2533
             * with pre-TLS 1.3 and use the regular sigalgs field.
2534
             */
2535
190
            if (!tls1_save_sigalgs(s, &sigalgs, 0)) {
2536
12
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2537
12
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2538
12
                         SSL_R_SIGNATURE_ALGORITHMS_ERROR);
2539
12
                return MSG_PROCESS_ERROR;
2540
12
            }
2541
178
            if (!tls1_process_sigalgs(s)) {
2542
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2543
0
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2544
0
                         ERR_R_MALLOC_FAILURE);
2545
0
                return MSG_PROCESS_ERROR;
2546
0
            }
2547
178
        }
2548
2549
        /* get the CA RDNs */
2550
1.14k
        if (!parse_ca_names(s, pkt)) {
2551
            /* SSLfatal() already called */
2552
1.09k
            return MSG_PROCESS_ERROR;
2553
1.09k
        }
2554
1.14k
    }
2555
2556
54
    if (PACKET_remaining(pkt) != 0) {
2557
22
        SSLfatal(s, SSL_AD_DECODE_ERROR,
2558
22
                 SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2559
22
                 SSL_R_LENGTH_MISMATCH);
2560
22
        return MSG_PROCESS_ERROR;
2561
22
    }
2562
2563
    /* we should setup a certificate to return.... */
2564
32
    s->s3->tmp.cert_req = 1;
2565
2566
    /*
2567
     * In TLSv1.3 we don't prepare the client certificate yet. We wait until
2568
     * after the CertificateVerify message has been received. This is because
2569
     * in TLSv1.3 the CertificateRequest arrives before the Certificate message
2570
     * but in TLSv1.2 it is the other way around. We want to make sure that
2571
     * SSL_get_peer_certificate() returns something sensible in
2572
     * client_cert_cb.
2573
     */
2574
32
    if (SSL_IS_TLS13(s) && s->post_handshake_auth != SSL_PHA_REQUESTED)
2575
0
        return MSG_PROCESS_CONTINUE_READING;
2576
2577
32
    return MSG_PROCESS_CONTINUE_PROCESSING;
2578
32
}
2579
2580
MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt)
2581
88
{
2582
88
    unsigned int ticklen;
2583
88
    unsigned long ticket_lifetime_hint, age_add = 0;
2584
88
    unsigned int sess_len;
2585
88
    RAW_EXTENSION *exts = NULL;
2586
88
    PACKET nonce;
2587
2588
88
    PACKET_null_init(&nonce);
2589
2590
88
    if (!PACKET_get_net_4(pkt, &ticket_lifetime_hint)
2591
88
        || (SSL_IS_TLS13(s)
2592
85
            && (!PACKET_get_net_4(pkt, &age_add)
2593
0
                || !PACKET_get_length_prefixed_1(pkt, &nonce)))
2594
88
        || !PACKET_get_net_2(pkt, &ticklen)
2595
88
        || (SSL_IS_TLS13(s) ? (ticklen == 0 || PACKET_remaining(pkt) < ticklen)
2596
84
                            : PACKET_remaining(pkt) != ticklen)) {
2597
25
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2598
25
                 SSL_R_LENGTH_MISMATCH);
2599
25
        goto err;
2600
25
    }
2601
2602
    /*
2603
     * Server is allowed to change its mind (in <=TLSv1.2) and send an empty
2604
     * ticket. We already checked this TLSv1.3 case above, so it should never
2605
     * be 0 here in that instance
2606
     */
2607
63
    if (ticklen == 0)
2608
3
        return MSG_PROCESS_CONTINUE_READING;
2609
2610
    /*
2611
     * Sessions must be immutable once they go into the session cache. Otherwise
2612
     * we can get multi-thread problems. Therefore we don't "update" sessions,
2613
     * we replace them with a duplicate. In TLSv1.3 we need to do this every
2614
     * time a NewSessionTicket arrives because those messages arrive
2615
     * post-handshake and the session may have already gone into the session
2616
     * cache.
2617
     */
2618
60
    if (SSL_IS_TLS13(s) || s->session->session_id_length > 0) {
2619
0
        SSL_SESSION *new_sess;
2620
2621
        /*
2622
         * We reused an existing session, so we need to replace it with a new
2623
         * one
2624
         */
2625
0
        if ((new_sess = ssl_session_dup(s->session, 0)) == 0) {
2626
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2627
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2628
0
                     ERR_R_MALLOC_FAILURE);
2629
0
            goto err;
2630
0
        }
2631
2632
0
        if ((s->session_ctx->session_cache_mode & SSL_SESS_CACHE_CLIENT) != 0
2633
0
                && !SSL_IS_TLS13(s)) {
2634
            /*
2635
             * In TLSv1.2 and below the arrival of a new tickets signals that
2636
             * any old ticket we were using is now out of date, so we remove the
2637
             * old session from the cache. We carry on if this fails
2638
             */
2639
0
            SSL_CTX_remove_session(s->session_ctx, s->session);
2640
0
        }
2641
2642
0
        SSL_SESSION_free(s->session);
2643
0
        s->session = new_sess;
2644
0
    }
2645
2646
    /*
2647
     * Technically the cast to long here is not guaranteed by the C standard -
2648
     * but we use it elsewhere, so this should be ok.
2649
     */
2650
60
    s->session->time = (long)time(NULL);
2651
2652
60
    OPENSSL_free(s->session->ext.tick);
2653
60
    s->session->ext.tick = NULL;
2654
60
    s->session->ext.ticklen = 0;
2655
2656
60
    s->session->ext.tick = OPENSSL_malloc(ticklen);
2657
60
    if (s->session->ext.tick == NULL) {
2658
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2659
0
                 ERR_R_MALLOC_FAILURE);
2660
0
        goto err;
2661
0
    }
2662
60
    if (!PACKET_copy_bytes(pkt, s->session->ext.tick, ticklen)) {
2663
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2664
0
                 SSL_R_LENGTH_MISMATCH);
2665
0
        goto err;
2666
0
    }
2667
2668
60
    s->session->ext.tick_lifetime_hint = ticket_lifetime_hint;
2669
60
    s->session->ext.tick_age_add = age_add;
2670
60
    s->session->ext.ticklen = ticklen;
2671
2672
60
    if (SSL_IS_TLS13(s)) {
2673
0
        PACKET extpkt;
2674
2675
0
        if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
2676
0
                || PACKET_remaining(pkt) != 0) {
2677
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2678
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2679
0
                     SSL_R_LENGTH_MISMATCH);
2680
0
            goto err;
2681
0
        }
2682
2683
0
        if (!tls_collect_extensions(s, &extpkt,
2684
0
                                    SSL_EXT_TLS1_3_NEW_SESSION_TICKET, &exts,
2685
0
                                    NULL, 1)
2686
0
                || !tls_parse_all_extensions(s,
2687
0
                                             SSL_EXT_TLS1_3_NEW_SESSION_TICKET,
2688
0
                                             exts, NULL, 0, 1)) {
2689
            /* SSLfatal() already called */
2690
0
            goto err;
2691
0
        }
2692
0
    }
2693
2694
    /*
2695
     * There are two ways to detect a resumed ticket session. One is to set
2696
     * an appropriate session ID and then the server must return a match in
2697
     * ServerHello. This allows the normal client session ID matching to work
2698
     * and we know much earlier that the ticket has been accepted. The
2699
     * other way is to set zero length session ID when the ticket is
2700
     * presented and rely on the handshake to determine session resumption.
2701
     * We choose the former approach because this fits in with assumptions
2702
     * elsewhere in OpenSSL. The session ID is set to the SHA256 (or SHA1 is
2703
     * SHA256 is disabled) hash of the ticket.
2704
     */
2705
    /*
2706
     * TODO(size_t): we use sess_len here because EVP_Digest expects an int
2707
     * but s->session->session_id_length is a size_t
2708
     */
2709
60
    if (!EVP_Digest(s->session->ext.tick, ticklen,
2710
60
                    s->session->session_id, &sess_len,
2711
60
                    EVP_sha256(), NULL)) {
2712
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2713
0
                 ERR_R_EVP_LIB);
2714
0
        goto err;
2715
0
    }
2716
60
    s->session->session_id_length = sess_len;
2717
60
    s->session->not_resumable = 0;
2718
2719
    /* This is a standalone message in TLSv1.3, so there is no more to read */
2720
60
    if (SSL_IS_TLS13(s)) {
2721
0
        const EVP_MD *md = ssl_handshake_md(s);
2722
0
        int hashleni = EVP_MD_size(md);
2723
0
        size_t hashlen;
2724
0
        static const unsigned char nonce_label[] = "resumption";
2725
2726
        /* Ensure cast to size_t is safe */
2727
0
        if (!ossl_assert(hashleni >= 0)) {
2728
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2729
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2730
0
                     ERR_R_INTERNAL_ERROR);
2731
0
            goto err;
2732
0
        }
2733
0
        hashlen = (size_t)hashleni;
2734
2735
0
        if (!tls13_hkdf_expand(s, md, s->resumption_master_secret,
2736
0
                               nonce_label,
2737
0
                               sizeof(nonce_label) - 1,
2738
0
                               PACKET_data(&nonce),
2739
0
                               PACKET_remaining(&nonce),
2740
0
                               s->session->master_key,
2741
0
                               hashlen, 1)) {
2742
            /* SSLfatal() already called */
2743
0
            goto err;
2744
0
        }
2745
0
        s->session->master_key_length = hashlen;
2746
2747
0
        OPENSSL_free(exts);
2748
0
        ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
2749
0
        return MSG_PROCESS_FINISHED_READING;
2750
0
    }
2751
2752
60
    return MSG_PROCESS_CONTINUE_READING;
2753
25
 err:
2754
25
    OPENSSL_free(exts);
2755
25
    return MSG_PROCESS_ERROR;
2756
60
}
2757
2758
/*
2759
 * In TLSv1.3 this is called from the extensions code, otherwise it is used to
2760
 * parse a separate message. Returns 1 on success or 0 on failure
2761
 */
2762
int tls_process_cert_status_body(SSL *s, PACKET *pkt)
2763
0
{
2764
0
    size_t resplen;
2765
0
    unsigned int type;
2766
2767
0
    if (!PACKET_get_1(pkt, &type)
2768
0
        || type != TLSEXT_STATUSTYPE_ocsp) {
2769
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2770
0
                 SSL_R_UNSUPPORTED_STATUS_TYPE);
2771
0
        return 0;
2772
0
    }
2773
0
    if (!PACKET_get_net_3_len(pkt, &resplen)
2774
0
        || PACKET_remaining(pkt) != resplen) {
2775
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2776
0
                 SSL_R_LENGTH_MISMATCH);
2777
0
        return 0;
2778
0
    }
2779
0
    s->ext.ocsp.resp = OPENSSL_malloc(resplen);
2780
0
    if (s->ext.ocsp.resp == NULL) {
2781
0
        s->ext.ocsp.resp_len = 0;
2782
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2783
0
                 ERR_R_MALLOC_FAILURE);
2784
0
        return 0;
2785
0
    }
2786
0
    s->ext.ocsp.resp_len = resplen;
2787
0
    if (!PACKET_copy_bytes(pkt, s->ext.ocsp.resp, resplen)) {
2788
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2789
0
                 SSL_R_LENGTH_MISMATCH);
2790
0
        return 0;
2791
0
    }
2792
2793
0
    return 1;
2794
0
}
2795
2796
2797
MSG_PROCESS_RETURN tls_process_cert_status(SSL *s, PACKET *pkt)
2798
0
{
2799
0
    if (!tls_process_cert_status_body(s, pkt)) {
2800
        /* SSLfatal() already called */
2801
0
        return MSG_PROCESS_ERROR;
2802
0
    }
2803
2804
0
    return MSG_PROCESS_CONTINUE_READING;
2805
0
}
2806
2807
/*
2808
 * Perform miscellaneous checks and processing after we have received the
2809
 * server's initial flight. In TLS1.3 this is after the Server Finished message.
2810
 * In <=TLS1.2 this is after the ServerDone message. Returns 1 on success or 0
2811
 * on failure.
2812
 */
2813
int tls_process_initial_server_flight(SSL *s)
2814
5.81k
{
2815
    /*
2816
     * at this point we check that we have the required stuff from
2817
     * the server
2818
     */
2819
5.81k
    if (!ssl3_check_cert_and_algorithm(s)) {
2820
        /* SSLfatal() already called */
2821
3
        return 0;
2822
3
    }
2823
2824
    /*
2825
     * Call the ocsp status callback if needed. The |ext.ocsp.resp| and
2826
     * |ext.ocsp.resp_len| values will be set if we actually received a status
2827
     * message, or NULL and -1 otherwise
2828
     */
2829
5.81k
    if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing
2830
5.81k
            && s->ctx->ext.status_cb != NULL) {
2831
0
        int ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
2832
2833
0
        if (ret == 0) {
2834
0
            SSLfatal(s, SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE,
2835
0
                     SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2836
0
                     SSL_R_INVALID_STATUS_RESPONSE);
2837
0
            return 0;
2838
0
        }
2839
0
        if (ret < 0) {
2840
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2841
0
                     SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2842
0
                     SSL_R_OCSP_CALLBACK_FAILURE);
2843
0
            return 0;
2844
0
        }
2845
0
    }
2846
5.81k
#ifndef OPENSSL_NO_CT
2847
5.81k
    if (s->ct_validation_callback != NULL) {
2848
        /* Note we validate the SCTs whether or not we abort on error */
2849
0
        if (!ssl_validate_ct(s) && (s->verify_mode & SSL_VERIFY_PEER)) {
2850
            /* SSLfatal() already called */
2851
0
            return 0;
2852
0
        }
2853
0
    }
2854
5.81k
#endif
2855
2856
5.81k
    return 1;
2857
5.81k
}
2858
2859
MSG_PROCESS_RETURN tls_process_server_done(SSL *s, PACKET *pkt)
2860
5.81k
{
2861
5.81k
    if (PACKET_remaining(pkt) > 0) {
2862
        /* should contain no data */
2863
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_DONE,
2864
0
                 SSL_R_LENGTH_MISMATCH);
2865
0
        return MSG_PROCESS_ERROR;
2866
0
    }
2867
5.81k
#ifndef OPENSSL_NO_SRP
2868
5.81k
    if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
2869
0
        if (SRP_Calc_A_param(s) <= 0) {
2870
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_DONE,
2871
0
                     SSL_R_SRP_A_CALC);
2872
0
            return MSG_PROCESS_ERROR;
2873
0
        }
2874
0
    }
2875
5.81k
#endif
2876
2877
5.81k
    if (!tls_process_initial_server_flight(s)) {
2878
        /* SSLfatal() already called */
2879
3
        return MSG_PROCESS_ERROR;
2880
3
    }
2881
2882
5.81k
    return MSG_PROCESS_FINISHED_READING;
2883
5.81k
}
2884
2885
static int tls_construct_cke_psk_preamble(SSL *s, WPACKET *pkt)
2886
0
{
2887
0
#ifndef OPENSSL_NO_PSK
2888
0
    int ret = 0;
2889
    /*
2890
     * The callback needs PSK_MAX_IDENTITY_LEN + 1 bytes to return a
2891
     * \0-terminated identity. The last byte is for us for simulating
2892
     * strnlen.
2893
     */
2894
0
    char identity[PSK_MAX_IDENTITY_LEN + 1];
2895
0
    size_t identitylen = 0;
2896
0
    unsigned char psk[PSK_MAX_PSK_LEN];
2897
0
    unsigned char *tmppsk = NULL;
2898
0
    char *tmpidentity = NULL;
2899
0
    size_t psklen = 0;
2900
2901
0
    if (s->psk_client_callback == NULL) {
2902
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2903
0
                 SSL_R_PSK_NO_CLIENT_CB);
2904
0
        goto err;
2905
0
    }
2906
2907
0
    memset(identity, 0, sizeof(identity));
2908
2909
0
    psklen = s->psk_client_callback(s, s->session->psk_identity_hint,
2910
0
                                    identity, sizeof(identity) - 1,
2911
0
                                    psk, sizeof(psk));
2912
2913
0
    if (psklen > PSK_MAX_PSK_LEN) {
2914
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2915
0
                 SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2916
0
        psklen = PSK_MAX_PSK_LEN;   /* Avoid overrunning the array on cleanse */
2917
0
        goto err;
2918
0
    } else if (psklen == 0) {
2919
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2920
0
                 SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2921
0
                 SSL_R_PSK_IDENTITY_NOT_FOUND);
2922
0
        goto err;
2923
0
    }
2924
2925
0
    identitylen = strlen(identity);
2926
0
    if (identitylen > PSK_MAX_IDENTITY_LEN) {
2927
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2928
0
                 ERR_R_INTERNAL_ERROR);
2929
0
        goto err;
2930
0
    }
2931
2932
0
    tmppsk = OPENSSL_memdup(psk, psklen);
2933
0
    tmpidentity = OPENSSL_strdup(identity);
2934
0
    if (tmppsk == NULL || tmpidentity == NULL) {
2935
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2936
0
                 ERR_R_MALLOC_FAILURE);
2937
0
        goto err;
2938
0
    }
2939
2940
0
    OPENSSL_free(s->s3->tmp.psk);
2941
0
    s->s3->tmp.psk = tmppsk;
2942
0
    s->s3->tmp.psklen = psklen;
2943
0
    tmppsk = NULL;
2944
0
    OPENSSL_free(s->session->psk_identity);
2945
0
    s->session->psk_identity = tmpidentity;
2946
0
    tmpidentity = NULL;
2947
2948
0
    if (!WPACKET_sub_memcpy_u16(pkt, identity, identitylen))  {
2949
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2950
0
                 ERR_R_INTERNAL_ERROR);
2951
0
        goto err;
2952
0
    }
2953
2954
0
    ret = 1;
2955
2956
0
 err:
2957
0
    OPENSSL_cleanse(psk, psklen);
2958
0
    OPENSSL_cleanse(identity, sizeof(identity));
2959
0
    OPENSSL_clear_free(tmppsk, psklen);
2960
0
    OPENSSL_clear_free(tmpidentity, identitylen);
2961
2962
0
    return ret;
2963
#else
2964
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2965
             ERR_R_INTERNAL_ERROR);
2966
    return 0;
2967
#endif
2968
0
}
2969
2970
static int tls_construct_cke_rsa(SSL *s, WPACKET *pkt)
2971
890
{
2972
890
#ifndef OPENSSL_NO_RSA
2973
890
    unsigned char *encdata = NULL;
2974
890
    EVP_PKEY *pkey = NULL;
2975
890
    EVP_PKEY_CTX *pctx = NULL;
2976
890
    size_t enclen;
2977
890
    unsigned char *pms = NULL;
2978
890
    size_t pmslen = 0;
2979
2980
890
    if (s->session->peer == NULL) {
2981
        /*
2982
         * We should always have a server certificate with SSL_kRSA.
2983
         */
2984
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2985
0
                 ERR_R_INTERNAL_ERROR);
2986
0
        return 0;
2987
0
    }
2988
2989
890
    pkey = X509_get0_pubkey(s->session->peer);
2990
890
    if (EVP_PKEY_get0_RSA(pkey) == NULL) {
2991
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2992
0
                 ERR_R_INTERNAL_ERROR);
2993
0
        return 0;
2994
0
    }
2995
2996
890
    pmslen = SSL_MAX_MASTER_KEY_LENGTH;
2997
890
    pms = OPENSSL_malloc(pmslen);
2998
890
    if (pms == NULL) {
2999
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3000
0
                 ERR_R_MALLOC_FAILURE);
3001
0
        return 0;
3002
0
    }
3003
3004
890
    pms[0] = s->client_version >> 8;
3005
890
    pms[1] = s->client_version & 0xff;
3006
    /* TODO(size_t): Convert this function */
3007
890
    if (RAND_bytes(pms + 2, (int)(pmslen - 2)) <= 0) {
3008
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3009
0
                 ERR_R_MALLOC_FAILURE);
3010
0
        goto err;
3011
0
    }
3012
3013
    /* Fix buf for TLS and beyond */
3014
890
    if (s->version > SSL3_VERSION && !WPACKET_start_sub_packet_u16(pkt)) {
3015
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3016
0
                 ERR_R_INTERNAL_ERROR);
3017
0
        goto err;
3018
0
    }
3019
890
    pctx = EVP_PKEY_CTX_new(pkey, NULL);
3020
890
    if (pctx == NULL || EVP_PKEY_encrypt_init(pctx) <= 0
3021
890
        || EVP_PKEY_encrypt(pctx, NULL, &enclen, pms, pmslen) <= 0) {
3022
1
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3023
1
                 ERR_R_EVP_LIB);
3024
1
        goto err;
3025
1
    }
3026
889
    if (!WPACKET_allocate_bytes(pkt, enclen, &encdata)
3027
889
            || EVP_PKEY_encrypt(pctx, encdata, &enclen, pms, pmslen) <= 0) {
3028
87
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3029
87
                 SSL_R_BAD_RSA_ENCRYPT);
3030
87
        goto err;
3031
87
    }
3032
802
    EVP_PKEY_CTX_free(pctx);
3033
802
    pctx = NULL;
3034
3035
    /* Fix buf for TLS and beyond */
3036
802
    if (s->version > SSL3_VERSION && !WPACKET_close(pkt)) {
3037
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3038
0
                 ERR_R_INTERNAL_ERROR);
3039
0
        goto err;
3040
0
    }
3041
3042
    /* Log the premaster secret, if logging is enabled. */
3043
802
    if (!ssl_log_rsa_client_key_exchange(s, encdata, enclen, pms, pmslen)) {
3044
        /* SSLfatal() already called */
3045
0
        goto err;
3046
0
    }
3047
3048
802
    s->s3->tmp.pms = pms;
3049
802
    s->s3->tmp.pmslen = pmslen;
3050
3051
802
    return 1;
3052
88
 err:
3053
88
    OPENSSL_clear_free(pms, pmslen);
3054
88
    EVP_PKEY_CTX_free(pctx);
3055
3056
88
    return 0;
3057
#else
3058
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3059
             ERR_R_INTERNAL_ERROR);
3060
    return 0;
3061
#endif
3062
802
}
3063
3064
static int tls_construct_cke_dhe(SSL *s, WPACKET *pkt)
3065
1.01k
{
3066
1.01k
#ifndef OPENSSL_NO_DH
3067
1.01k
    DH *dh_clnt = NULL;
3068
1.01k
    const BIGNUM *pub_key;
3069
1.01k
    EVP_PKEY *ckey = NULL, *skey = NULL;
3070
1.01k
    unsigned char *keybytes = NULL;
3071
3072
1.01k
    skey = s->s3->peer_tmp;
3073
1.01k
    if (skey == NULL) {
3074
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3075
0
                 ERR_R_INTERNAL_ERROR);
3076
0
        goto err;
3077
0
    }
3078
3079
1.01k
    ckey = ssl_generate_pkey(skey);
3080
1.01k
    if (ckey == NULL) {
3081
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3082
0
                 ERR_R_INTERNAL_ERROR);
3083
0
        goto err;
3084
0
    }
3085
3086
1.01k
    dh_clnt = EVP_PKEY_get0_DH(ckey);
3087
3088
1.01k
    if (dh_clnt == NULL) {
3089
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3090
0
                 ERR_R_INTERNAL_ERROR);
3091
0
        goto err;
3092
0
    }
3093
3094
1.01k
    if (ssl_derive(s, ckey, skey, 0) == 0) {
3095
        /* SSLfatal() already called */
3096
9
        goto err;
3097
9
    }
3098
3099
    /* send off the data */
3100
1.00k
    DH_get0_key(dh_clnt, &pub_key, NULL);
3101
1.00k
    if (!WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(pub_key),
3102
1.00k
                                        &keybytes)) {
3103
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3104
0
                 ERR_R_INTERNAL_ERROR);
3105
0
        goto err;
3106
0
    }
3107
3108
1.00k
    BN_bn2bin(pub_key, keybytes);
3109
1.00k
    EVP_PKEY_free(ckey);
3110
3111
1.00k
    return 1;
3112
9
 err:
3113
9
    EVP_PKEY_free(ckey);
3114
9
    return 0;
3115
#else
3116
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3117
             ERR_R_INTERNAL_ERROR);
3118
    return 0;
3119
#endif
3120
1.00k
}
3121
3122
static int tls_construct_cke_ecdhe(SSL *s, WPACKET *pkt)
3123
1.41k
{
3124
1.41k
#ifndef OPENSSL_NO_EC
3125
1.41k
    unsigned char *encodedPoint = NULL;
3126
1.41k
    size_t encoded_pt_len = 0;
3127
1.41k
    EVP_PKEY *ckey = NULL, *skey = NULL;
3128
1.41k
    int ret = 0;
3129
3130
1.41k
    skey = s->s3->peer_tmp;
3131
1.41k
    if (skey == NULL) {
3132
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3133
0
                 ERR_R_INTERNAL_ERROR);
3134
0
        return 0;
3135
0
    }
3136
3137
1.41k
    ckey = ssl_generate_pkey(skey);
3138
1.41k
    if (ckey == NULL) {
3139
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3140
0
                 ERR_R_MALLOC_FAILURE);
3141
0
        goto err;
3142
0
    }
3143
3144
1.41k
    if (ssl_derive(s, ckey, skey, 0) == 0) {
3145
        /* SSLfatal() already called */
3146
221
        goto err;
3147
221
    }
3148
3149
    /* Generate encoding of client key */
3150
1.18k
    encoded_pt_len = EVP_PKEY_get1_tls_encodedpoint(ckey, &encodedPoint);
3151
3152
1.18k
    if (encoded_pt_len == 0) {
3153
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3154
0
                 ERR_R_EC_LIB);
3155
0
        goto err;
3156
0
    }
3157
3158
1.18k
    if (!WPACKET_sub_memcpy_u8(pkt, encodedPoint, encoded_pt_len)) {
3159
233
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3160
233
                 ERR_R_INTERNAL_ERROR);
3161
233
        goto err;
3162
233
    }
3163
3164
956
    ret = 1;
3165
1.41k
 err:
3166
1.41k
    OPENSSL_free(encodedPoint);
3167
1.41k
    EVP_PKEY_free(ckey);
3168
1.41k
    return ret;
3169
#else
3170
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3171
             ERR_R_INTERNAL_ERROR);
3172
    return 0;
3173
#endif
3174
956
}
3175
3176
static int tls_construct_cke_gost(SSL *s, WPACKET *pkt)
3177
0
{
3178
0
#ifndef OPENSSL_NO_GOST
3179
    /* GOST key exchange message creation */
3180
0
    EVP_PKEY_CTX *pkey_ctx = NULL;
3181
0
    X509 *peer_cert;
3182
0
    size_t msglen;
3183
0
    unsigned int md_len;
3184
0
    unsigned char shared_ukm[32], tmp[256];
3185
0
    EVP_MD_CTX *ukm_hash = NULL;
3186
0
    int dgst_nid = NID_id_GostR3411_94;
3187
0
    unsigned char *pms = NULL;
3188
0
    size_t pmslen = 0;
3189
3190
0
    if ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aGOST12) != 0)
3191
0
        dgst_nid = NID_id_GostR3411_2012_256;
3192
3193
    /*
3194
     * Get server certificate PKEY and create ctx from it
3195
     */
3196
0
    peer_cert = s->session->peer;
3197
0
    if (!peer_cert) {
3198
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3199
0
               SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
3200
0
        return 0;
3201
0
    }
3202
3203
0
    pkey_ctx = EVP_PKEY_CTX_new(X509_get0_pubkey(peer_cert), NULL);
3204
0
    if (pkey_ctx == NULL) {
3205
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3206
0
                 ERR_R_MALLOC_FAILURE);
3207
0
        return 0;
3208
0
    }
3209
    /*
3210
     * If we have send a certificate, and certificate key
3211
     * parameters match those of server certificate, use
3212
     * certificate key for key exchange
3213
     */
3214
3215
    /* Otherwise, generate ephemeral key pair */
3216
0
    pmslen = 32;
3217
0
    pms = OPENSSL_malloc(pmslen);
3218
0
    if (pms == NULL) {
3219
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3220
0
                 ERR_R_MALLOC_FAILURE);
3221
0
        goto err;
3222
0
    }
3223
3224
0
    if (EVP_PKEY_encrypt_init(pkey_ctx) <= 0
3225
        /* Generate session key
3226
         * TODO(size_t): Convert this function
3227
         */
3228
0
        || RAND_bytes(pms, (int)pmslen) <= 0) {
3229
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3230
0
                 ERR_R_INTERNAL_ERROR);
3231
0
        goto err;
3232
0
    };
3233
    /*
3234
     * Compute shared IV and store it in algorithm-specific context
3235
     * data
3236
     */
3237
0
    ukm_hash = EVP_MD_CTX_new();
3238
0
    if (ukm_hash == NULL
3239
0
        || EVP_DigestInit(ukm_hash, EVP_get_digestbynid(dgst_nid)) <= 0
3240
0
        || EVP_DigestUpdate(ukm_hash, s->s3->client_random,
3241
0
                            SSL3_RANDOM_SIZE) <= 0
3242
0
        || EVP_DigestUpdate(ukm_hash, s->s3->server_random,
3243
0
                            SSL3_RANDOM_SIZE) <= 0
3244
0
        || EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len) <= 0) {
3245
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3246
0
                 ERR_R_INTERNAL_ERROR);
3247
0
        goto err;
3248
0
    }
3249
0
    EVP_MD_CTX_free(ukm_hash);
3250
0
    ukm_hash = NULL;
3251
0
    if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_ENCRYPT,
3252
0
                          EVP_PKEY_CTRL_SET_IV, 8, shared_ukm) < 0) {
3253
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3254
0
                 SSL_R_LIBRARY_BUG);
3255
0
        goto err;
3256
0
    }
3257
    /* Make GOST keytransport blob message */
3258
    /*
3259
     * Encapsulate it into sequence
3260
     */
3261
0
    msglen = 255;
3262
0
    if (EVP_PKEY_encrypt(pkey_ctx, tmp, &msglen, pms, pmslen) <= 0) {
3263
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3264
0
                 SSL_R_LIBRARY_BUG);
3265
0
        goto err;
3266
0
    }
3267
3268
0
    if (!WPACKET_put_bytes_u8(pkt, V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED)
3269
0
            || (msglen >= 0x80 && !WPACKET_put_bytes_u8(pkt, 0x81))
3270
0
            || !WPACKET_sub_memcpy_u8(pkt, tmp, msglen)) {
3271
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3272
0
                 ERR_R_INTERNAL_ERROR);
3273
0
        goto err;
3274
0
    }
3275
3276
0
    EVP_PKEY_CTX_free(pkey_ctx);
3277
0
    s->s3->tmp.pms = pms;
3278
0
    s->s3->tmp.pmslen = pmslen;
3279
3280
0
    return 1;
3281
0
 err:
3282
0
    EVP_PKEY_CTX_free(pkey_ctx);
3283
0
    OPENSSL_clear_free(pms, pmslen);
3284
0
    EVP_MD_CTX_free(ukm_hash);
3285
0
    return 0;
3286
#else
3287
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3288
             ERR_R_INTERNAL_ERROR);
3289
    return 0;
3290
#endif
3291
0
}
3292
3293
static int tls_construct_cke_srp(SSL *s, WPACKET *pkt)
3294
0
{
3295
0
#ifndef OPENSSL_NO_SRP
3296
0
    unsigned char *abytes = NULL;
3297
3298
0
    if (s->srp_ctx.A == NULL
3299
0
            || !WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(s->srp_ctx.A),
3300
0
                                               &abytes)) {
3301
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3302
0
                 ERR_R_INTERNAL_ERROR);
3303
0
        return 0;
3304
0
    }
3305
0
    BN_bn2bin(s->srp_ctx.A, abytes);
3306
3307
0
    OPENSSL_free(s->session->srp_username);
3308
0
    s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
3309
0
    if (s->session->srp_username == NULL) {
3310
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3311
0
                 ERR_R_MALLOC_FAILURE);
3312
0
        return 0;
3313
0
    }
3314
3315
0
    return 1;
3316
#else
3317
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3318
             ERR_R_INTERNAL_ERROR);
3319
    return 0;
3320
#endif
3321
0
}
3322
3323
int tls_construct_client_key_exchange(SSL *s, WPACKET *pkt)
3324
2.18k
{
3325
2.18k
    unsigned long alg_k;
3326
3327
2.18k
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3328
3329
    /*
3330
     * All of the construct functions below call SSLfatal() if necessary so
3331
     * no need to do so here.
3332
     */
3333
2.18k
    if ((alg_k & SSL_PSK)
3334
2.18k
        && !tls_construct_cke_psk_preamble(s, pkt))
3335
0
        goto err;
3336
3337
2.18k
    if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
3338
890
        if (!tls_construct_cke_rsa(s, pkt))
3339
88
            goto err;
3340
1.29k
    } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
3341
1.01k
        if (!tls_construct_cke_dhe(s, pkt))
3342
9
            goto err;
3343
1.01k
    } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
3344
278
        if (!tls_construct_cke_ecdhe(s, pkt))
3345
6
            goto err;
3346
278
    } else if (alg_k & SSL_kGOST) {
3347
0
        if (!tls_construct_cke_gost(s, pkt))
3348
0
            goto err;
3349
0
    } else if (alg_k & SSL_kSRP) {
3350
0
        if (!tls_construct_cke_srp(s, pkt))
3351
0
            goto err;
3352
0
    } else if (!(alg_k & SSL_kPSK)) {
3353
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3354
0
                 SSL_F_TLS_CONSTRUCT_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
3355
0
        goto err;
3356
0
    }
3357
3358
2.08k
    return 1;
3359
103
 err:
3360
103
    OPENSSL_clear_free(s->s3->tmp.pms, s->s3->tmp.pmslen);
3361
103
    s->s3->tmp.pms = NULL;
3362
103
    s->s3->tmp.pmslen = 0;
3363
103
#ifndef OPENSSL_NO_PSK
3364
103
    OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
3365
103
    s->s3->tmp.psk = NULL;
3366
103
    s->s3->tmp.psklen = 0;
3367
103
#endif
3368
103
    return 0;
3369
2.18k
}
3370
3371
int tls_client_key_exchange_post_work(SSL *s)
3372
5.06k
{
3373
5.06k
    unsigned char *pms = NULL;
3374
5.06k
    size_t pmslen = 0;
3375
3376
5.06k
    pms = s->s3->tmp.pms;
3377
5.06k
    pmslen = s->s3->tmp.pmslen;
3378
3379
5.06k
#ifndef OPENSSL_NO_SRP
3380
    /* Check for SRP */
3381
5.06k
    if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
3382
0
        if (!srp_generate_client_master_secret(s)) {
3383
            /* SSLfatal() already called */
3384
0
            goto err;
3385
0
        }
3386
0
        return 1;
3387
0
    }
3388
5.06k
#endif
3389
3390
5.06k
    if (pms == NULL && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
3391
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3392
0
                 SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_MALLOC_FAILURE);
3393
0
        goto err;
3394
0
    }
3395
5.06k
    if (!ssl_generate_master_secret(s, pms, pmslen, 1)) {
3396
        /* SSLfatal() already called */
3397
        /* ssl_generate_master_secret frees the pms even on error */
3398
0
        pms = NULL;
3399
0
        pmslen = 0;
3400
0
        goto err;
3401
0
    }
3402
5.06k
    pms = NULL;
3403
5.06k
    pmslen = 0;
3404
3405
#ifndef OPENSSL_NO_SCTP
3406
    if (SSL_IS_DTLS(s)) {
3407
        unsigned char sctpauthkey[64];
3408
        char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
3409
        size_t labellen;
3410
3411
        /*
3412
         * Add new shared key for SCTP-Auth, will be ignored if no SCTP
3413
         * used.
3414
         */
3415
        memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
3416
               sizeof(DTLS1_SCTP_AUTH_LABEL));
3417
3418
        /* Don't include the terminating zero. */
3419
        labellen = sizeof(labelbuffer) - 1;
3420
        if (s->mode & SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG)
3421
            labellen += 1;
3422
3423
        if (SSL_export_keying_material(s, sctpauthkey,
3424
                                       sizeof(sctpauthkey), labelbuffer,
3425
                                       labellen, NULL, 0, 0) <= 0) {
3426
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3427
                     SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK,
3428
                     ERR_R_INTERNAL_ERROR);
3429
            goto err;
3430
        }
3431
3432
        BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
3433
                 sizeof(sctpauthkey), sctpauthkey);
3434
    }
3435
#endif
3436
3437
5.06k
    return 1;
3438
0
 err:
3439
0
    OPENSSL_clear_free(pms, pmslen);
3440
0
    s->s3->tmp.pms = NULL;
3441
0
    s->s3->tmp.pmslen = 0;
3442
0
    return 0;
3443
5.06k
}
3444
3445
/*
3446
 * Check a certificate can be used for client authentication. Currently check
3447
 * cert exists, if we have a suitable digest for TLS 1.2 if static DH client
3448
 * certificates can be used and optionally checks suitability for Suite B.
3449
 */
3450
static int ssl3_check_client_certificate(SSL *s)
3451
62
{
3452
    /* If no suitable signature algorithm can't use certificate */
3453
62
    if (!tls_choose_sigalg(s, 0) || s->s3->tmp.sigalg == NULL)
3454
62
        return 0;
3455
    /*
3456
     * If strict mode check suitability of chain before using it. This also
3457
     * adjusts suite B digest if necessary.
3458
     */
3459
0
    if (s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT &&
3460
0
        !tls1_check_chain(s, NULL, NULL, NULL, -2))
3461
0
        return 0;
3462
0
    return 1;
3463
0
}
3464
3465
WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst)
3466
32
{
3467
32
    X509 *x509 = NULL;
3468
32
    EVP_PKEY *pkey = NULL;
3469
32
    int i;
3470
3471
32
    if (wst == WORK_MORE_A) {
3472
        /* Let cert callback update client certificates if required */
3473
32
        if (s->cert->cert_cb) {
3474
0
            i = s->cert->cert_cb(s, s->cert->cert_cb_arg);
3475
0
            if (i < 0) {
3476
0
                s->rwstate = SSL_X509_LOOKUP;
3477
0
                return WORK_MORE_A;
3478
0
            }
3479
0
            if (i == 0) {
3480
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3481
0
                         SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3482
0
                         SSL_R_CALLBACK_FAILED);
3483
0
                return WORK_ERROR;
3484
0
            }
3485
0
            s->rwstate = SSL_NOTHING;
3486
0
        }
3487
32
        if (ssl3_check_client_certificate(s)) {
3488
0
            if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
3489
0
                return WORK_FINISHED_STOP;
3490
0
            }
3491
0
            return WORK_FINISHED_CONTINUE;
3492
0
        }
3493
3494
        /* Fall through to WORK_MORE_B */
3495
32
        wst = WORK_MORE_B;
3496
32
    }
3497
3498
    /* We need to get a client cert */
3499
32
    if (wst == WORK_MORE_B) {
3500
        /*
3501
         * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP;
3502
         * return(-1); We then get retied later
3503
         */
3504
32
        i = ssl_do_client_cert_cb(s, &x509, &pkey);
3505
32
        if (i < 0) {
3506
0
            s->rwstate = SSL_X509_LOOKUP;
3507
0
            return WORK_MORE_B;
3508
0
        }
3509
32
        s->rwstate = SSL_NOTHING;
3510
32
        if ((i == 1) && (pkey != NULL) && (x509 != NULL)) {
3511
0
            if (!SSL_use_certificate(s, x509) || !SSL_use_PrivateKey(s, pkey))
3512
0
                i = 0;
3513
32
        } else if (i == 1) {
3514
0
            i = 0;
3515
0
            SSLerr(SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3516
0
                   SSL_R_BAD_DATA_RETURNED_BY_CALLBACK);
3517
0
        }
3518
3519
32
        X509_free(x509);
3520
32
        EVP_PKEY_free(pkey);
3521
32
        if (i && !ssl3_check_client_certificate(s))
3522
0
            i = 0;
3523
32
        if (i == 0) {
3524
32
            if (s->version == SSL3_VERSION) {
3525
9
                s->s3->tmp.cert_req = 0;
3526
9
                ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_CERTIFICATE);
3527
9
                return WORK_FINISHED_CONTINUE;
3528
23
            } else {
3529
23
                s->s3->tmp.cert_req = 2;
3530
23
                if (!ssl3_digest_cached_records(s, 0)) {
3531
                    /* SSLfatal() already called */
3532
0
                    return WORK_ERROR;
3533
0
                }
3534
23
            }
3535
32
        }
3536
3537
23
        if (s->post_handshake_auth == SSL_PHA_REQUESTED)
3538
0
            return WORK_FINISHED_STOP;
3539
23
        return WORK_FINISHED_CONTINUE;
3540
23
    }
3541
3542
    /* Shouldn't ever get here */
3543
0
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3544
0
             ERR_R_INTERNAL_ERROR);
3545
0
    return WORK_ERROR;
3546
32
}
3547
3548
int tls_construct_client_certificate(SSL *s, WPACKET *pkt)
3549
15
{
3550
15
    if (SSL_IS_TLS13(s)) {
3551
0
        if (s->pha_context == NULL) {
3552
            /* no context available, add 0-length context */
3553
0
            if (!WPACKET_put_bytes_u8(pkt, 0)) {
3554
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3555
0
                         SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3556
0
                return 0;
3557
0
            }
3558
0
        } else if (!WPACKET_sub_memcpy_u8(pkt, s->pha_context, s->pha_context_len)) {
3559
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3560
0
                     SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3561
0
            return 0;
3562
0
        }
3563
0
    }
3564
15
    if (!ssl3_output_cert_chain(s, pkt,
3565
15
                                (s->s3->tmp.cert_req == 2) ? NULL
3566
15
                                                           : s->cert->key)) {
3567
        /* SSLfatal() already called */
3568
0
        return 0;
3569
0
    }
3570
3571
15
    if (SSL_IS_TLS13(s)
3572
15
            && SSL_IS_FIRST_HANDSHAKE(s)
3573
15
            && (!s->method->ssl3_enc->change_cipher_state(s,
3574
0
                    SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_WRITE))) {
3575
        /*
3576
         * This is a fatal error, which leaves enc_write_ctx in an inconsistent
3577
         * state and thus ssl3_send_alert may crash.
3578
         */
3579
0
        SSLfatal(s, SSL_AD_NO_ALERT, SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE,
3580
0
                 SSL_R_CANNOT_CHANGE_CIPHER);
3581
0
        return 0;
3582
0
    }
3583
3584
15
    return 1;
3585
15
}
3586
3587
int ssl3_check_cert_and_algorithm(SSL *s)
3588
3.88k
{
3589
3.88k
    const SSL_CERT_LOOKUP *clu;
3590
3.88k
    size_t idx;
3591
3.88k
    long alg_k, alg_a;
3592
3593
3.88k
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3594
3.88k
    alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3595
3596
    /* we don't have a certificate */
3597
3.88k
    if (!(alg_a & SSL_aCERT))
3598
2.19k
        return 1;
3599
3600
    /* This is the passed certificate */
3601
1.68k
    clu = ssl_cert_lookup_by_pkey(X509_get0_pubkey(s->session->peer), &idx);
3602
3603
    /* Check certificate is recognised and suitable for cipher */
3604
1.68k
    if (clu == NULL || (alg_a & clu->amask) == 0) {
3605
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3606
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3607
0
                 SSL_R_MISSING_SIGNING_CERT);
3608
0
        return 0;
3609
0
    }
3610
3611
1.68k
#ifndef OPENSSL_NO_EC
3612
1.68k
    if (clu->amask & SSL_aECDSA) {
3613
0
        if (ssl_check_srvr_ecc_cert_and_alg(s->session->peer, s))
3614
0
            return 1;
3615
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3616
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_BAD_ECC_CERT);
3617
0
        return 0;
3618
0
    }
3619
1.68k
#endif
3620
1.68k
#ifndef OPENSSL_NO_RSA
3621
1.68k
    if (alg_k & (SSL_kRSA | SSL_kRSAPSK) && idx != SSL_PKEY_RSA) {
3622
2
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3623
2
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3624
2
                 SSL_R_MISSING_RSA_ENCRYPTING_CERT);
3625
2
        return 0;
3626
2
    }
3627
1.68k
#endif
3628
1.68k
#ifndef OPENSSL_NO_DH
3629
1.68k
    if ((alg_k & SSL_kDHE) && (s->s3->peer_tmp == NULL)) {
3630
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3631
0
                 ERR_R_INTERNAL_ERROR);
3632
0
        return 0;
3633
0
    }
3634
1.68k
#endif
3635
3636
1.68k
    return 1;
3637
1.68k
}
3638
3639
#ifndef OPENSSL_NO_NEXTPROTONEG
3640
int tls_construct_next_proto(SSL *s, WPACKET *pkt)
3641
0
{
3642
0
    size_t len, padding_len;
3643
0
    unsigned char *padding = NULL;
3644
3645
0
    len = s->ext.npn_len;
3646
0
    padding_len = 32 - ((len + 2) % 32);
3647
3648
0
    if (!WPACKET_sub_memcpy_u8(pkt, s->ext.npn, len)
3649
0
            || !WPACKET_sub_allocate_bytes_u8(pkt, padding_len, &padding)) {
3650
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_NEXT_PROTO,
3651
0
                 ERR_R_INTERNAL_ERROR);
3652
0
        return 0;
3653
0
    }
3654
3655
0
    memset(padding, 0, padding_len);
3656
3657
0
    return 1;
3658
0
}
3659
#endif
3660
3661
MSG_PROCESS_RETURN tls_process_hello_req(SSL *s, PACKET *pkt)
3662
208
{
3663
208
    if (PACKET_remaining(pkt) > 0) {
3664
        /* should contain no data */
3665
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_HELLO_REQ,
3666
0
                 SSL_R_LENGTH_MISMATCH);
3667
0
        return MSG_PROCESS_ERROR;
3668
0
    }
3669
3670
208
    if ((s->options & SSL_OP_NO_RENEGOTIATION)) {
3671
0
        ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_RENEGOTIATION);
3672
0
        return MSG_PROCESS_FINISHED_READING;
3673
0
    }
3674
3675
    /*
3676
     * This is a historical discrepancy (not in the RFC) maintained for
3677
     * compatibility reasons. If a TLS client receives a HelloRequest it will
3678
     * attempt an abbreviated handshake. However if a DTLS client receives a
3679
     * HelloRequest it will do a full handshake. Either behaviour is reasonable
3680
     * but doing one for TLS and another for DTLS is odd.
3681
     */
3682
208
    if (SSL_IS_DTLS(s))
3683
0
        SSL_renegotiate(s);
3684
208
    else
3685
208
        SSL_renegotiate_abbreviated(s);
3686
3687
208
    return MSG_PROCESS_FINISHED_READING;
3688
208
}
3689
3690
static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt)
3691
0
{
3692
0
    PACKET extensions;
3693
0
    RAW_EXTENSION *rawexts = NULL;
3694
3695
0
    if (!PACKET_as_length_prefixed_2(pkt, &extensions)
3696
0
            || PACKET_remaining(pkt) != 0) {
3697
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_ENCRYPTED_EXTENSIONS,
3698
0
                 SSL_R_LENGTH_MISMATCH);
3699
0
        goto err;
3700
0
    }
3701
3702
0
    if (!tls_collect_extensions(s, &extensions,
3703
0
                                SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS, &rawexts,
3704
0
                                NULL, 1)
3705
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3706
0
                                         rawexts, NULL, 0, 1)) {
3707
        /* SSLfatal() already called */
3708
0
        goto err;
3709
0
    }
3710
3711
0
    OPENSSL_free(rawexts);
3712
0
    return MSG_PROCESS_CONTINUE_READING;
3713
3714
0
 err:
3715
0
    OPENSSL_free(rawexts);
3716
0
    return MSG_PROCESS_ERROR;
3717
0
}
3718
3719
int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey)
3720
62
{
3721
62
    int i = 0;
3722
62
#ifndef OPENSSL_NO_ENGINE
3723
62
    if (s->ctx->client_cert_engine) {
3724
0
        i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s,
3725
0
                                        SSL_get_client_CA_list(s),
3726
0
                                        px509, ppkey, NULL, NULL, NULL);
3727
0
        if (i != 0)
3728
0
            return i;
3729
0
    }
3730
62
#endif
3731
62
    if (s->ctx->client_cert_cb)
3732
0
        i = s->ctx->client_cert_cb(s, px509, ppkey);
3733
62
    return i;
3734
62
}
3735
3736
int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, WPACKET *pkt)
3737
7.82k
{
3738
7.82k
    int i;
3739
7.82k
    size_t totlen = 0, len, maxlen, maxverok = 0;
3740
7.82k
    int empty_reneg_info_scsv = !s->renegotiate;
3741
3742
    /* Set disabled masks for this session */
3743
7.82k
    if (!ssl_set_client_disabled(s)) {
3744
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3745
0
                 SSL_R_NO_PROTOCOLS_AVAILABLE);
3746
0
        return 0;
3747
0
    }
3748
3749
7.82k
    if (sk == NULL) {
3750
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3751
0
                 ERR_R_INTERNAL_ERROR);
3752
0
        return 0;
3753
0
    }
3754
3755
#ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
3756
# if OPENSSL_MAX_TLS1_2_CIPHER_LENGTH < 6
3757
#  error Max cipher length too short
3758
# endif
3759
    /*
3760
     * Some servers hang if client hello > 256 bytes as hack workaround
3761
     * chop number of supported ciphers to keep it well below this if we
3762
     * use TLS v1.2
3763
     */
3764
    if (TLS1_get_version(s) >= TLS1_2_VERSION)
3765
        maxlen = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
3766
    else
3767
#endif
3768
        /* Maximum length that can be stored in 2 bytes. Length must be even */
3769
7.82k
        maxlen = 0xfffe;
3770
3771
7.82k
    if (empty_reneg_info_scsv)
3772
7.82k
        maxlen -= 2;
3773
7.82k
    if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV)
3774
0
        maxlen -= 2;
3775
3776
1.47M
    for (i = 0; i < sk_SSL_CIPHER_num(sk) && totlen < maxlen; i++) {
3777
1.46M
        const SSL_CIPHER *c;
3778
3779
1.46M
        c = sk_SSL_CIPHER_value(sk, i);
3780
        /* Skip disabled ciphers */
3781
1.46M
        if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED, 0))
3782
602k
            continue;
3783
3784
860k
        if (!s->method->put_cipher_by_char(c, pkt, &len)) {
3785
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3786
0
                     ERR_R_INTERNAL_ERROR);
3787
0
            return 0;
3788
0
        }
3789
3790
        /* Sanity check that the maximum version we offer has ciphers enabled */
3791
860k
        if (!maxverok) {
3792
7.82k
            if (SSL_IS_DTLS(s)) {
3793
0
                if (DTLS_VERSION_GE(c->max_dtls, s->s3->tmp.max_ver)
3794
0
                        && DTLS_VERSION_LE(c->min_dtls, s->s3->tmp.max_ver))
3795
0
                    maxverok = 1;
3796
7.82k
            } else {
3797
7.82k
                if (c->max_tls >= s->s3->tmp.max_ver
3798
7.82k
                        && c->min_tls <= s->s3->tmp.max_ver)
3799
7.82k
                    maxverok = 1;
3800
7.82k
            }
3801
7.82k
        }
3802
3803
860k
        totlen += len;
3804
860k
    }
3805
3806
7.82k
    if (totlen == 0 || !maxverok) {
3807
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3808
0
                 SSL_R_NO_CIPHERS_AVAILABLE);
3809
3810
0
        if (!maxverok)
3811
0
            ERR_add_error_data(1, "No ciphers enabled for max supported "
3812
0
                                  "SSL/TLS version");
3813
3814
0
        return 0;
3815
0
    }
3816
3817
7.82k
    if (totlen != 0) {
3818
7.82k
        if (empty_reneg_info_scsv) {
3819
7.82k
            static SSL_CIPHER scsv = {
3820
7.82k
                0, NULL, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3821
7.82k
            };
3822
7.82k
            if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3823
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3824
0
                         SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3825
0
                return 0;
3826
0
            }
3827
7.82k
        }
3828
7.82k
        if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) {
3829
0
            static SSL_CIPHER scsv = {
3830
0
                0, NULL, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3831
0
            };
3832
0
            if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3833
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3834
0
                         SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3835
0
                return 0;
3836
0
            }
3837
0
        }
3838
7.82k
    }
3839
3840
7.82k
    return 1;
3841
7.82k
}
3842
3843
int tls_construct_end_of_early_data(SSL *s, WPACKET *pkt)
3844
0
{
3845
0
    if (s->early_data_state != SSL_EARLY_DATA_WRITE_RETRY
3846
0
            && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING) {
3847
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3848
0
                 SSL_F_TLS_CONSTRUCT_END_OF_EARLY_DATA,
3849
0
                 ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3850
0
        return 0;
3851
0
    }
3852
3853
0
    s->early_data_state = SSL_EARLY_DATA_FINISHED_WRITING;
3854
0
    return 1;
3855
0
}