Coverage Report

Created: 2025-07-11 07:30

/src/irssi/subprojects/openssl-1.1.1l/ssl/statem/statem_clnt.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2021 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
0
{
44
    /* TLS does not like anon-DH with client cert */
45
0
    if ((s->version > SSL3_VERSION
46
0
         && (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL))
47
0
        || (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aSRP | SSL_aPSK)))
48
0
        return 0;
49
50
0
    return 1;
51
0
}
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
0
{
62
0
    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
0
    if (alg_k & (SSL_kDHE | SSL_kECDHE | SSL_kDHEPSK | SSL_kECDHEPSK
69
0
                 | SSL_kSRP)) {
70
0
        return 1;
71
0
    }
72
73
0
    return 0;
74
0
}
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
0
{
87
0
    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
0
    switch (st->hand_state) {
96
0
    default:
97
0
        break;
98
99
0
    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
0
        if (mt == SSL3_MT_SERVER_HELLO) {
105
0
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
106
0
            return 1;
107
0
        }
108
0
        break;
109
110
0
    case TLS_ST_CR_SRVR_HELLO:
111
0
        if (mt == SSL3_MT_ENCRYPTED_EXTENSIONS) {
112
0
            st->hand_state = TLS_ST_CR_ENCRYPTED_EXTENSIONS;
113
0
            return 1;
114
0
        }
115
0
        break;
116
117
0
    case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
118
0
        if (s->hit) {
119
0
            if (mt == SSL3_MT_FINISHED) {
120
0
                st->hand_state = TLS_ST_CR_FINISHED;
121
0
                return 1;
122
0
            }
123
0
        } else {
124
0
            if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
125
0
                st->hand_state = TLS_ST_CR_CERT_REQ;
126
0
                return 1;
127
0
            }
128
0
            if (mt == SSL3_MT_CERTIFICATE) {
129
0
                st->hand_state = TLS_ST_CR_CERT;
130
0
                return 1;
131
0
            }
132
0
        }
133
0
        break;
134
135
0
    case TLS_ST_CR_CERT_REQ:
136
0
        if (mt == SSL3_MT_CERTIFICATE) {
137
0
            st->hand_state = TLS_ST_CR_CERT;
138
0
            return 1;
139
0
        }
140
0
        break;
141
142
0
    case TLS_ST_CR_CERT:
143
0
        if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
144
0
            st->hand_state = TLS_ST_CR_CERT_VRFY;
145
0
            return 1;
146
0
        }
147
0
        break;
148
149
0
    case TLS_ST_CR_CERT_VRFY:
150
0
        if (mt == SSL3_MT_FINISHED) {
151
0
            st->hand_state = TLS_ST_CR_FINISHED;
152
0
            return 1;
153
0
        }
154
0
        break;
155
156
0
    case TLS_ST_OK:
157
0
        if (mt == SSL3_MT_NEWSESSION_TICKET) {
158
0
            st->hand_state = TLS_ST_CR_SESSION_TICKET;
159
0
            return 1;
160
0
        }
161
0
        if (mt == SSL3_MT_KEY_UPDATE) {
162
0
            st->hand_state = TLS_ST_CR_KEY_UPDATE;
163
0
            return 1;
164
0
        }
165
0
        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
0
            if (!SSL_IS_DTLS(s) && s->post_handshake_auth == SSL_PHA_EXT_SENT) {
170
0
                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
0
                if (!tls13_restore_handshake_digest_for_pha(s)) {
178
                    /* SSLfatal() already called */
179
0
                    return 0;
180
0
                }
181
0
                st->hand_state = TLS_ST_CR_CERT_REQ;
182
0
                return 1;
183
0
            }
184
0
        }
185
0
        break;
186
0
    }
187
188
    /* No valid transition found */
189
0
    return 0;
190
0
}
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
0
{
203
0
    OSSL_STATEM *st = &s->statem;
204
0
    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
0
    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
0
    switch (st->hand_state) {
217
0
    default:
218
0
        break;
219
220
0
    case TLS_ST_CW_CLNT_HELLO:
221
0
        if (mt == SSL3_MT_SERVER_HELLO) {
222
0
            st->hand_state = TLS_ST_CR_SRVR_HELLO;
223
0
            return 1;
224
0
        }
225
226
0
        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
0
        break;
233
234
0
    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
0
    case TLS_ST_CR_SRVR_HELLO:
247
0
        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
0
        } else {
258
0
            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
0
            } else if (s->version >= TLS1_VERSION
262
0
                       && s->ext.session_secret_cb != NULL
263
0
                       && s->session->ext.tick != NULL
264
0
                       && 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
0
            } else if (!(s->s3->tmp.new_cipher->algorithm_auth
275
0
                         & (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
276
0
                if (mt == SSL3_MT_CERTIFICATE) {
277
0
                    st->hand_state = TLS_ST_CR_CERT;
278
0
                    return 1;
279
0
                }
280
0
            } else {
281
0
                ske_expected = key_exchange_expected(s);
282
                /* SKE is optional for some PSK ciphersuites */
283
0
                if (ske_expected
284
0
                    || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
285
0
                        && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
286
0
                    if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
287
0
                        st->hand_state = TLS_ST_CR_KEY_EXCH;
288
0
                        return 1;
289
0
                    }
290
0
                } 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
0
            }
299
0
        }
300
0
        break;
301
302
0
    case TLS_ST_CR_CERT:
303
        /*
304
         * The CertificateStatus message is optional even if
305
         * |ext.status_expected| is set
306
         */
307
0
        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
0
    case TLS_ST_CR_CERT_STATUS:
314
0
        ske_expected = key_exchange_expected(s);
315
        /* SKE is optional for some PSK ciphersuites */
316
0
        if (ske_expected || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
317
0
                             && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
318
0
            if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
319
0
                st->hand_state = TLS_ST_CR_KEY_EXCH;
320
0
                return 1;
321
0
            }
322
0
            goto err;
323
0
        }
324
        /* Fall through */
325
326
0
    case TLS_ST_CR_KEY_EXCH:
327
0
        if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
328
0
            if (cert_req_allowed(s)) {
329
0
                st->hand_state = TLS_ST_CR_CERT_REQ;
330
0
                return 1;
331
0
            }
332
0
            goto err;
333
0
        }
334
        /* Fall through */
335
336
0
    case TLS_ST_CR_CERT_REQ:
337
0
        if (mt == SSL3_MT_SERVER_DONE) {
338
0
            st->hand_state = TLS_ST_CR_SRVR_DONE;
339
0
            return 1;
340
0
        }
341
0
        break;
342
343
0
    case TLS_ST_CW_FINISHED:
344
0
        if (s->ext.ticket_expected) {
345
0
            if (mt == SSL3_MT_NEWSESSION_TICKET) {
346
0
                st->hand_state = TLS_ST_CR_SESSION_TICKET;
347
0
                return 1;
348
0
            }
349
0
        } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
350
0
            st->hand_state = TLS_ST_CR_CHANGE;
351
0
            return 1;
352
0
        }
353
0
        break;
354
355
0
    case TLS_ST_CR_SESSION_TICKET:
356
0
        if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
357
0
            st->hand_state = TLS_ST_CR_CHANGE;
358
0
            return 1;
359
0
        }
360
0
        break;
361
362
0
    case TLS_ST_CR_CHANGE:
363
0
        if (mt == SSL3_MT_FINISHED) {
364
0
            st->hand_state = TLS_ST_CR_FINISHED;
365
0
            return 1;
366
0
        }
367
0
        break;
368
369
0
    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
0
    }
376
377
0
 err:
378
    /* No valid transition found */
379
0
    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
0
    SSLfatal(s, SSL3_AD_UNEXPECTED_MESSAGE,
394
0
             SSL_F_OSSL_STATEM_CLIENT_READ_TRANSITION,
395
0
             SSL_R_UNEXPECTED_MESSAGE);
396
0
    return 0;
397
0
}
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
135k
{
499
135k
    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
135k
    if (SSL_IS_TLS13(s))
507
0
        return ossl_statem_client13_write_transition(s);
508
509
135k
    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
0
    case TLS_ST_OK:
518
0
        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
0
            return WRITE_TRAN_FINISHED;
524
0
        }
525
        /* Renegotiation */
526
        /* fall thru */
527
67.5k
    case TLS_ST_BEFORE:
528
67.5k
        st->hand_state = TLS_ST_CW_CLNT_HELLO;
529
67.5k
        return WRITE_TRAN_CONTINUE;
530
531
67.5k
    case TLS_ST_CW_CLNT_HELLO:
532
67.5k
        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
67.5k
        return WRITE_TRAN_FINISHED;
548
549
0
    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
0
        if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0
556
0
                && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING)
557
0
            st->hand_state = TLS_ST_CW_CHANGE;
558
0
        else
559
0
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
560
0
        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
0
    case TLS_ST_CR_SRVR_DONE:
570
0
        if (s->s3->tmp.cert_req)
571
0
            st->hand_state = TLS_ST_CW_CERT;
572
0
        else
573
0
            st->hand_state = TLS_ST_CW_KEY_EXCH;
574
0
        return WRITE_TRAN_CONTINUE;
575
576
0
    case TLS_ST_CW_CERT:
577
0
        st->hand_state = TLS_ST_CW_KEY_EXCH;
578
0
        return WRITE_TRAN_CONTINUE;
579
580
0
    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
0
        if (s->s3->tmp.cert_req == 1) {
592
0
            st->hand_state = TLS_ST_CW_CERT_VRFY;
593
0
        } else {
594
0
            st->hand_state = TLS_ST_CW_CHANGE;
595
0
        }
596
0
        if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY) {
597
0
            st->hand_state = TLS_ST_CW_CHANGE;
598
0
        }
599
0
        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
0
    case TLS_ST_CW_CHANGE:
606
0
        if (s->hello_retry_request == SSL_HRR_PENDING) {
607
0
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
608
0
        } else if (s->early_data_state == SSL_EARLY_DATA_CONNECTING) {
609
0
            st->hand_state = TLS_ST_EARLY_DATA;
610
0
        } else {
611
#if defined(OPENSSL_NO_NEXTPROTONEG)
612
            st->hand_state = TLS_ST_CW_FINISHED;
613
#else
614
0
            if (!SSL_IS_DTLS(s) && s->s3->npn_seen)
615
0
                st->hand_state = TLS_ST_CW_NEXT_PROTO;
616
0
            else
617
0
                st->hand_state = TLS_ST_CW_FINISHED;
618
0
#endif
619
0
        }
620
0
        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
0
    case TLS_ST_CW_FINISHED:
629
0
        if (s->hit) {
630
0
            st->hand_state = TLS_ST_OK;
631
0
            return WRITE_TRAN_CONTINUE;
632
0
        } else {
633
0
            return WRITE_TRAN_FINISHED;
634
0
        }
635
636
0
    case TLS_ST_CR_FINISHED:
637
0
        if (s->hit) {
638
0
            st->hand_state = TLS_ST_CW_CHANGE;
639
0
            return WRITE_TRAN_CONTINUE;
640
0
        } else {
641
0
            st->hand_state = TLS_ST_OK;
642
0
            return WRITE_TRAN_CONTINUE;
643
0
        }
644
645
0
    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
0
        if (ssl3_renegotiate_check(s, 1)) {
651
0
            if (!tls_setup_handshake(s)) {
652
                /* SSLfatal() already called */
653
0
                return WRITE_TRAN_ERROR;
654
0
            }
655
0
            st->hand_state = TLS_ST_CW_CLNT_HELLO;
656
0
            return WRITE_TRAN_CONTINUE;
657
0
        }
658
0
        st->hand_state = TLS_ST_OK;
659
0
        return WRITE_TRAN_CONTINUE;
660
135k
    }
661
135k
}
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
67.5k
{
669
67.5k
    OSSL_STATEM *st = &s->statem;
670
671
67.5k
    switch (st->hand_state) {
672
0
    default:
673
        /* No pre work to be done */
674
0
        break;
675
676
67.5k
    case TLS_ST_CW_CLNT_HELLO:
677
67.5k
        s->shutdown = 0;
678
67.5k
        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
67.5k
        break;
686
687
67.5k
    case TLS_ST_CW_CHANGE:
688
0
        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
0
        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
67.5k
    }
723
724
67.5k
    return WORK_FINISHED_CONTINUE;
725
67.5k
}
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
67.5k
{
733
67.5k
    OSSL_STATEM *st = &s->statem;
734
735
67.5k
    s->init_num = 0;
736
737
67.5k
    switch (st->hand_state) {
738
0
    default:
739
        /* No post work to be done */
740
0
        break;
741
742
67.5k
    case TLS_ST_CW_CLNT_HELLO:
743
67.5k
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING
744
67.5k
                && 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
67.5k
        } else if (!statem_flush(s)) {
759
0
            return WORK_MORE_A;
760
0
        }
761
762
67.5k
        if (SSL_IS_DTLS(s)) {
763
            /* Treat the next message as the first packet */
764
0
            s->first_packet = 1;
765
0
        }
766
67.5k
        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
0
    case TLS_ST_CW_KEY_EXCH:
778
0
        if (tls_client_key_exchange_post_work(s) == 0) {
779
            /* SSLfatal() already called */
780
0
            return WORK_ERROR;
781
0
        }
782
0
        break;
783
784
0
    case TLS_ST_CW_CHANGE:
785
0
        if (SSL_IS_TLS13(s) || s->hello_retry_request == SSL_HRR_PENDING)
786
0
            break;
787
0
        if (s->early_data_state == SSL_EARLY_DATA_CONNECTING
788
0
                    && 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
0
        s->session->cipher = s->s3->tmp.new_cipher;
800
0
#ifdef OPENSSL_NO_COMP
801
0
        s->session->compress_meth = 0;
802
#else
803
        if (s->s3->tmp.new_compression == NULL)
804
            s->session->compress_meth = 0;
805
        else
806
            s->session->compress_meth = s->s3->tmp.new_compression->id;
807
#endif
808
0
        if (!s->method->ssl3_enc->setup_key_block(s)) {
809
            /* SSLfatal() already called */
810
0
            return WORK_ERROR;
811
0
        }
812
813
0
        if (!s->method->ssl3_enc->change_cipher_state(s,
814
0
                                          SSL3_CHANGE_CIPHER_CLIENT_WRITE)) {
815
            /* SSLfatal() already called */
816
0
            return WORK_ERROR;
817
0
        }
818
819
0
        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
0
        break;
834
835
0
    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
0
        if (statem_flush(s) != 1)
847
0
            return WORK_MORE_B;
848
849
0
        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
0
        break;
863
864
0
    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
67.5k
    }
873
874
67.5k
    return WORK_FINISHED_CONTINUE;
875
67.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
67.5k
{
888
67.5k
    OSSL_STATEM *st = &s->statem;
889
890
67.5k
    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
0
    case TLS_ST_CW_CHANGE:
899
0
        if (SSL_IS_DTLS(s))
900
0
            *confunc = dtls_construct_change_cipher_spec;
901
0
        else
902
0
            *confunc = tls_construct_change_cipher_spec;
903
0
        *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
904
0
        break;
905
906
67.5k
    case TLS_ST_CW_CLNT_HELLO:
907
67.5k
        *confunc = tls_construct_client_hello;
908
67.5k
        *mt = SSL3_MT_CLIENT_HELLO;
909
67.5k
        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
0
    case TLS_ST_CW_CERT:
922
0
        *confunc = tls_construct_client_certificate;
923
0
        *mt = SSL3_MT_CERTIFICATE;
924
0
        break;
925
926
0
    case TLS_ST_CW_KEY_EXCH:
927
0
        *confunc = tls_construct_client_key_exchange;
928
0
        *mt = SSL3_MT_CLIENT_KEY_EXCHANGE;
929
0
        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
0
    case TLS_ST_CW_FINISHED:
943
0
        *confunc = tls_construct_finished;
944
0
        *mt = SSL3_MT_FINISHED;
945
0
        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
67.5k
    }
952
953
67.5k
    return 1;
954
67.5k
}
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
0
{
962
0
    OSSL_STATEM *st = &s->statem;
963
964
0
    switch (st->hand_state) {
965
0
    default:
966
        /* Shouldn't happen */
967
0
        return 0;
968
969
0
    case TLS_ST_CR_SRVR_HELLO:
970
0
        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
0
    case TLS_ST_CR_CERT:
976
0
        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
0
    case TLS_ST_CR_KEY_EXCH:
985
0
        return SERVER_KEY_EXCH_MAX_LENGTH;
986
987
0
    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
0
        return s->max_cert_list;
994
995
0
    case TLS_ST_CR_SRVR_DONE:
996
0
        return SERVER_HELLO_DONE_MAX_LENGTH;
997
998
0
    case TLS_ST_CR_CHANGE:
999
0
        if (s->version == DTLS1_BAD_VER)
1000
0
            return 3;
1001
0
        return CCS_MAX_LENGTH;
1002
1003
0
    case TLS_ST_CR_SESSION_TICKET:
1004
0
        return (SSL_IS_TLS13(s)) ? SESSION_TICKET_MAX_LENGTH_TLS13
1005
0
                                 : SESSION_TICKET_MAX_LENGTH_TLS12;
1006
1007
0
    case TLS_ST_CR_FINISHED:
1008
0
        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
0
    }
1016
0
}
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
0
{
1023
0
    OSSL_STATEM *st = &s->statem;
1024
1025
0
    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
0
    case TLS_ST_CR_SRVR_HELLO:
1034
0
        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
0
    case TLS_ST_CR_CERT:
1040
0
        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
0
    case TLS_ST_CR_KEY_EXCH:
1049
0
        return tls_process_key_exchange(s, pkt);
1050
1051
0
    case TLS_ST_CR_CERT_REQ:
1052
0
        return tls_process_certificate_request(s, pkt);
1053
1054
0
    case TLS_ST_CR_SRVR_DONE:
1055
0
        return tls_process_server_done(s, pkt);
1056
1057
0
    case TLS_ST_CR_CHANGE:
1058
0
        return tls_process_change_cipher_spec(s, pkt);
1059
1060
0
    case TLS_ST_CR_SESSION_TICKET:
1061
0
        return tls_process_new_session_ticket(s, pkt);
1062
1063
0
    case TLS_ST_CR_FINISHED:
1064
0
        return tls_process_finished(s, pkt);
1065
1066
0
    case TLS_ST_CR_HELLO_REQ:
1067
0
        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
0
    }
1075
0
}
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
0
{
1083
0
    OSSL_STATEM *st = &s->statem;
1084
1085
0
    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
0
    case TLS_ST_CR_CERT_REQ:
1095
0
        return tls_prepare_client_certificate(s, wst);
1096
0
    }
1097
0
}
1098
1099
int tls_construct_client_hello(SSL *s, WPACKET *pkt)
1100
67.5k
{
1101
67.5k
    unsigned char *p;
1102
67.5k
    size_t sess_id_len;
1103
67.5k
    int i, protverr;
1104
#ifndef OPENSSL_NO_COMP
1105
    SSL_COMP *comp;
1106
#endif
1107
67.5k
    SSL_SESSION *sess = s->session;
1108
67.5k
    unsigned char *session_id;
1109
1110
    /* Work out what SSL/TLS/DTLS version to use */
1111
67.5k
    protverr = ssl_set_client_hello_version(s);
1112
67.5k
    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
67.5k
    if (sess == NULL
1119
67.5k
            || !ssl_version_supported(s, sess->ssl_version, NULL)
1120
67.5k
            || !SSL_SESSION_is_resumable(sess)) {
1121
67.5k
        if (s->hello_retry_request == SSL_HRR_NONE
1122
67.5k
                && !ssl_get_new_session(s, 0)) {
1123
            /* SSLfatal() already called */
1124
0
            return 0;
1125
0
        }
1126
67.5k
    }
1127
    /* else use the pre-loaded session */
1128
1129
67.5k
    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
67.5k
    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
67.5k
    } else {
1145
67.5k
        i = (s->hello_retry_request == SSL_HRR_NONE);
1146
67.5k
    }
1147
1148
67.5k
    if (i && ssl_fill_hello_random(s, 0, p, sizeof(s->s3->client_random),
1149
67.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
67.5k
    if (!WPACKET_put_bytes_u16(pkt, s->client_version)
1189
67.5k
            || !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
67.5k
    session_id = s->session->session_id;
1197
67.5k
    if (s->new_session || s->session->ssl_version == TLS1_3_VERSION) {
1198
67.5k
        if (s->version == TLS1_3_VERSION
1199
67.5k
                && (s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0) {
1200
67.5k
            sess_id_len = sizeof(s->tmp_session_id);
1201
67.5k
            s->tmp_session_id_len = sess_id_len;
1202
67.5k
            session_id = s->tmp_session_id;
1203
67.5k
            if (s->hello_retry_request == SSL_HRR_NONE
1204
67.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
67.5k
        } else {
1211
0
            sess_id_len = 0;
1212
0
        }
1213
67.5k
    } else {
1214
0
        assert(s->session->session_id_length <= sizeof(s->session->session_id));
1215
0
        sess_id_len = s->session->session_id_length;
1216
0
        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
0
    }
1221
67.5k
    if (!WPACKET_start_sub_packet_u8(pkt)
1222
67.5k
            || (sess_id_len != 0 && !WPACKET_memcpy(pkt, session_id,
1223
67.5k
                                                    sess_id_len))
1224
67.5k
            || !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
67.5k
    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
67.5k
    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
67.5k
    if (!ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), pkt)) {
1249
        /* SSLfatal() already called */
1250
0
        return 0;
1251
0
    }
1252
67.5k
    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
67.5k
    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
#ifndef OPENSSL_NO_COMP
1265
    if (ssl_allow_compression(s)
1266
            && s->ctx->comp_methods
1267
            && (SSL_IS_DTLS(s) || s->s3->tmp.max_ver < TLS1_3_VERSION)) {
1268
        int compnum = sk_SSL_COMP_num(s->ctx->comp_methods);
1269
        for (i = 0; i < compnum; i++) {
1270
            comp = sk_SSL_COMP_value(s->ctx->comp_methods, i);
1271
            if (!WPACKET_put_bytes_u8(pkt, comp->id)) {
1272
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1273
                         SSL_F_TLS_CONSTRUCT_CLIENT_HELLO,
1274
                         ERR_R_INTERNAL_ERROR);
1275
                return 0;
1276
            }
1277
        }
1278
    }
1279
#endif
1280
    /* Add the NULL method */
1281
67.5k
    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
67.5k
    if (!tls_construct_extensions(s, pkt, SSL_EXT_CLIENT_HELLO, NULL, 0)) {
1289
        /* SSLfatal() already called */
1290
0
        return 0;
1291
0
    }
1292
1293
67.5k
    return 1;
1294
67.5k
}
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
0
{
1327
0
    STACK_OF(SSL_CIPHER) *sk;
1328
0
    const SSL_CIPHER *c;
1329
0
    int i;
1330
1331
0
    c = ssl_get_cipher_by_char(s, cipherchars, 0);
1332
0
    if (c == NULL) {
1333
        /* unknown cipher */
1334
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1335
0
                 SSL_R_UNKNOWN_CIPHER_RETURNED);
1336
0
        return 0;
1337
0
    }
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
0
    if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_CHECK, 1)) {
1343
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1344
0
                 SSL_R_WRONG_CIPHER_RETURNED);
1345
0
        return 0;
1346
0
    }
1347
1348
0
    sk = ssl_get_ciphers_by_id(s);
1349
0
    i = sk_SSL_CIPHER_find(sk, c);
1350
0
    if (i < 0) {
1351
        /* we did not say we would use this cipher */
1352
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1353
0
                 SSL_R_WRONG_CIPHER_RETURNED);
1354
0
        return 0;
1355
0
    }
1356
1357
0
    if (SSL_IS_TLS13(s) && s->s3->tmp.new_cipher != NULL
1358
0
            && s->s3->tmp.new_cipher->id != c->id) {
1359
        /* ServerHello selected a different ciphersuite to that in the HRR */
1360
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_SET_CLIENT_CIPHERSUITE,
1361
0
                 SSL_R_WRONG_CIPHER_RETURNED);
1362
0
        return 0;
1363
0
    }
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
0
    if (s->session->cipher != NULL)
1371
0
        s->session->cipher_id = s->session->cipher->id;
1372
0
    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
0
    s->s3->tmp.new_cipher = c;
1396
1397
0
    return 1;
1398
0
}
1399
1400
MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt)
1401
0
{
1402
0
    PACKET session_id, extpkt;
1403
0
    size_t session_id_len;
1404
0
    const unsigned char *cipherchars;
1405
0
    int hrr = 0;
1406
0
    unsigned int compression;
1407
0
    unsigned int sversion;
1408
0
    unsigned int context;
1409
0
    RAW_EXTENSION *extensions = NULL;
1410
#ifndef OPENSSL_NO_COMP
1411
    SSL_COMP *comp;
1412
#endif
1413
1414
0
    if (!PACKET_get_net_2(pkt, &sversion)) {
1415
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1416
0
                 SSL_R_LENGTH_MISMATCH);
1417
0
        goto err;
1418
0
    }
1419
1420
    /* load the server random */
1421
0
    if (s->version == TLS1_3_VERSION
1422
0
            && sversion == TLS1_2_VERSION
1423
0
            && PACKET_remaining(pkt) >= SSL3_RANDOM_SIZE
1424
0
            && memcmp(hrrrandom, PACKET_data(pkt), SSL3_RANDOM_SIZE) == 0) {
1425
0
        s->hello_retry_request = SSL_HRR_PENDING;
1426
0
        hrr = 1;
1427
0
        if (!PACKET_forward(pkt, SSL3_RANDOM_SIZE)) {
1428
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1429
0
                     SSL_R_LENGTH_MISMATCH);
1430
0
            goto err;
1431
0
        }
1432
0
    } else {
1433
0
        if (!PACKET_copy_bytes(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1434
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1435
0
                     SSL_R_LENGTH_MISMATCH);
1436
0
            goto err;
1437
0
        }
1438
0
    }
1439
1440
    /* Get the session-id. */
1441
0
    if (!PACKET_get_length_prefixed_1(pkt, &session_id)) {
1442
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1443
0
                 SSL_R_LENGTH_MISMATCH);
1444
0
        goto err;
1445
0
    }
1446
0
    session_id_len = PACKET_remaining(&session_id);
1447
0
    if (session_id_len > sizeof(s->session->session_id)
1448
0
        || session_id_len > SSL3_SESSION_ID_SIZE) {
1449
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1450
0
                 SSL_R_SSL3_SESSION_ID_TOO_LONG);
1451
0
        goto err;
1452
0
    }
1453
1454
0
    if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) {
1455
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1456
0
                 SSL_R_LENGTH_MISMATCH);
1457
0
        goto err;
1458
0
    }
1459
1460
0
    if (!PACKET_get_1(pkt, &compression)) {
1461
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1462
0
                 SSL_R_LENGTH_MISMATCH);
1463
0
        goto err;
1464
0
    }
1465
1466
    /* TLS extensions */
1467
0
    if (PACKET_remaining(pkt) == 0 && !hrr) {
1468
0
        PACKET_null_init(&extpkt);
1469
0
    } else if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
1470
0
               || PACKET_remaining(pkt) != 0) {
1471
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1472
0
                 SSL_R_BAD_LENGTH);
1473
0
        goto err;
1474
0
    }
1475
1476
0
    if (!hrr) {
1477
0
        if (!tls_collect_extensions(s, &extpkt,
1478
0
                                    SSL_EXT_TLS1_2_SERVER_HELLO
1479
0
                                    | SSL_EXT_TLS1_3_SERVER_HELLO,
1480
0
                                    &extensions, NULL, 1)) {
1481
            /* SSLfatal() already called */
1482
0
            goto err;
1483
0
        }
1484
1485
0
        if (!ssl_choose_client_version(s, sversion, extensions)) {
1486
            /* SSLfatal() already called */
1487
0
            goto err;
1488
0
        }
1489
0
    }
1490
1491
0
    if (SSL_IS_TLS13(s) || hrr) {
1492
0
        if (compression != 0) {
1493
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1494
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1495
0
                     SSL_R_INVALID_COMPRESSION_ALGORITHM);
1496
0
            goto err;
1497
0
        }
1498
1499
0
        if (session_id_len != s->tmp_session_id_len
1500
0
                || memcmp(PACKET_data(&session_id), s->tmp_session_id,
1501
0
                          session_id_len) != 0) {
1502
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1503
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_INVALID_SESSION_ID);
1504
0
            goto err;
1505
0
        }
1506
0
    }
1507
1508
0
    if (hrr) {
1509
0
        if (!set_client_ciphersuite(s, cipherchars)) {
1510
            /* SSLfatal() already called */
1511
0
            goto err;
1512
0
        }
1513
1514
0
        return tls_process_as_hello_retry_request(s, &extpkt);
1515
0
    }
1516
1517
    /*
1518
     * Now we have chosen the version we need to check again that the extensions
1519
     * are appropriate for this version.
1520
     */
1521
0
    context = SSL_IS_TLS13(s) ? SSL_EXT_TLS1_3_SERVER_HELLO
1522
0
                              : SSL_EXT_TLS1_2_SERVER_HELLO;
1523
0
    if (!tls_validate_all_contexts(s, context, extensions)) {
1524
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1525
0
                 SSL_R_BAD_EXTENSION);
1526
0
        goto err;
1527
0
    }
1528
1529
0
    s->hit = 0;
1530
1531
0
    if (SSL_IS_TLS13(s)) {
1532
        /*
1533
         * In TLSv1.3 a ServerHello message signals a key change so the end of
1534
         * the message must be on a record boundary.
1535
         */
1536
0
        if (RECORD_LAYER_processed_read_pending(&s->rlayer)) {
1537
0
            SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE,
1538
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1539
0
                     SSL_R_NOT_ON_RECORD_BOUNDARY);
1540
0
            goto err;
1541
0
        }
1542
1543
        /* This will set s->hit if we are resuming */
1544
0
        if (!tls_parse_extension(s, TLSEXT_IDX_psk,
1545
0
                                 SSL_EXT_TLS1_3_SERVER_HELLO,
1546
0
                                 extensions, NULL, 0)) {
1547
            /* SSLfatal() already called */
1548
0
            goto err;
1549
0
        }
1550
0
    } else {
1551
        /*
1552
         * Check if we can resume the session based on external pre-shared
1553
         * secret. EAP-FAST (RFC 4851) supports two types of session resumption.
1554
         * Resumption based on server-side state works with session IDs.
1555
         * Resumption based on pre-shared Protected Access Credentials (PACs)
1556
         * works by overriding the SessionTicket extension at the application
1557
         * layer, and does not send a session ID. (We do not know whether
1558
         * EAP-FAST servers would honour the session ID.) Therefore, the session
1559
         * ID alone is not a reliable indicator of session resumption, so we
1560
         * first check if we can resume, and later peek at the next handshake
1561
         * message to see if the server wants to resume.
1562
         */
1563
0
        if (s->version >= TLS1_VERSION
1564
0
                && s->ext.session_secret_cb != NULL && s->session->ext.tick) {
1565
0
            const SSL_CIPHER *pref_cipher = NULL;
1566
            /*
1567
             * s->session->master_key_length is a size_t, but this is an int for
1568
             * backwards compat reasons
1569
             */
1570
0
            int master_key_length;
1571
0
            master_key_length = sizeof(s->session->master_key);
1572
0
            if (s->ext.session_secret_cb(s, s->session->master_key,
1573
0
                                         &master_key_length,
1574
0
                                         NULL, &pref_cipher,
1575
0
                                         s->ext.session_secret_cb_arg)
1576
0
                     && master_key_length > 0) {
1577
0
                s->session->master_key_length = master_key_length;
1578
0
                s->session->cipher = pref_cipher ?
1579
0
                    pref_cipher : ssl_get_cipher_by_char(s, cipherchars, 0);
1580
0
            } else {
1581
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1582
0
                         SSL_F_TLS_PROCESS_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1583
0
                goto err;
1584
0
            }
1585
0
        }
1586
1587
0
        if (session_id_len != 0
1588
0
                && session_id_len == s->session->session_id_length
1589
0
                && memcmp(PACKET_data(&session_id), s->session->session_id,
1590
0
                          session_id_len) == 0)
1591
0
            s->hit = 1;
1592
0
    }
1593
1594
0
    if (s->hit) {
1595
0
        if (s->sid_ctx_length != s->session->sid_ctx_length
1596
0
                || memcmp(s->session->sid_ctx, s->sid_ctx, s->sid_ctx_length)) {
1597
            /* actually a client application bug */
1598
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1599
0
                     SSL_F_TLS_PROCESS_SERVER_HELLO,
1600
0
                     SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
1601
0
            goto err;
1602
0
        }
1603
0
    } else {
1604
        /*
1605
         * If we were trying for session-id reuse but the server
1606
         * didn't resume, make a new SSL_SESSION.
1607
         * In the case of EAP-FAST and PAC, we do not send a session ID,
1608
         * so the PAC-based session secret is always preserved. It'll be
1609
         * overwritten if the server refuses resumption.
1610
         */
1611
0
        if (s->session->session_id_length > 0) {
1612
0
            tsan_counter(&s->session_ctx->stats.sess_miss);
1613
0
            if (!ssl_get_new_session(s, 0)) {
1614
                /* SSLfatal() already called */
1615
0
                goto err;
1616
0
            }
1617
0
        }
1618
1619
0
        s->session->ssl_version = s->version;
1620
        /*
1621
         * In TLSv1.2 and below we save the session id we were sent so we can
1622
         * resume it later. In TLSv1.3 the session id we were sent is just an
1623
         * echo of what we originally sent in the ClientHello and should not be
1624
         * used for resumption.
1625
         */
1626
0
        if (!SSL_IS_TLS13(s)) {
1627
0
            s->session->session_id_length = session_id_len;
1628
            /* session_id_len could be 0 */
1629
0
            if (session_id_len > 0)
1630
0
                memcpy(s->session->session_id, PACKET_data(&session_id),
1631
0
                       session_id_len);
1632
0
        }
1633
0
    }
1634
1635
    /* Session version and negotiated protocol version should match */
1636
0
    if (s->version != s->session->ssl_version) {
1637
0
        SSLfatal(s, SSL_AD_PROTOCOL_VERSION, SSL_F_TLS_PROCESS_SERVER_HELLO,
1638
0
                 SSL_R_SSL_SESSION_VERSION_MISMATCH);
1639
0
        goto err;
1640
0
    }
1641
    /*
1642
     * Now that we know the version, update the check to see if it's an allowed
1643
     * version.
1644
     */
1645
0
    s->s3->tmp.min_ver = s->version;
1646
0
    s->s3->tmp.max_ver = s->version;
1647
1648
0
    if (!set_client_ciphersuite(s, cipherchars)) {
1649
        /* SSLfatal() already called */
1650
0
        goto err;
1651
0
    }
1652
1653
0
#ifdef OPENSSL_NO_COMP
1654
0
    if (compression != 0) {
1655
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1656
0
                 SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1657
0
        goto err;
1658
0
    }
1659
    /*
1660
     * If compression is disabled we'd better not try to resume a session
1661
     * using compression.
1662
     */
1663
0
    if (s->session->compress_meth != 0) {
1664
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_PROCESS_SERVER_HELLO,
1665
0
                 SSL_R_INCONSISTENT_COMPRESSION);
1666
0
        goto err;
1667
0
    }
1668
#else
1669
    if (s->hit && compression != s->session->compress_meth) {
1670
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1671
                 SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
1672
        goto err;
1673
    }
1674
    if (compression == 0)
1675
        comp = NULL;
1676
    else if (!ssl_allow_compression(s)) {
1677
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1678
                 SSL_R_COMPRESSION_DISABLED);
1679
        goto err;
1680
    } else {
1681
        comp = ssl3_comp_find(s->ctx->comp_methods, compression);
1682
    }
1683
1684
    if (compression != 0 && comp == NULL) {
1685
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SERVER_HELLO,
1686
                 SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1687
        goto err;
1688
    } else {
1689
        s->s3->tmp.new_compression = comp;
1690
    }
1691
#endif
1692
1693
0
    if (!tls_parse_all_extensions(s, context, extensions, NULL, 0, 1)) {
1694
        /* SSLfatal() already called */
1695
0
        goto err;
1696
0
    }
1697
1698
#ifndef OPENSSL_NO_SCTP
1699
    if (SSL_IS_DTLS(s) && s->hit) {
1700
        unsigned char sctpauthkey[64];
1701
        char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
1702
        size_t labellen;
1703
1704
        /*
1705
         * Add new shared key for SCTP-Auth, will be ignored if
1706
         * no SCTP used.
1707
         */
1708
        memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
1709
               sizeof(DTLS1_SCTP_AUTH_LABEL));
1710
1711
        /* Don't include the terminating zero. */
1712
        labellen = sizeof(labelbuffer) - 1;
1713
        if (s->mode & SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG)
1714
            labellen += 1;
1715
1716
        if (SSL_export_keying_material(s, sctpauthkey,
1717
                                       sizeof(sctpauthkey),
1718
                                       labelbuffer,
1719
                                       labellen, NULL, 0, 0) <= 0) {
1720
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_HELLO,
1721
                     ERR_R_INTERNAL_ERROR);
1722
            goto err;
1723
        }
1724
1725
        BIO_ctrl(SSL_get_wbio(s),
1726
                 BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
1727
                 sizeof(sctpauthkey), sctpauthkey);
1728
    }
1729
#endif
1730
1731
    /*
1732
     * In TLSv1.3 we have some post-processing to change cipher state, otherwise
1733
     * we're done with this message
1734
     */
1735
0
    if (SSL_IS_TLS13(s)
1736
0
            && (!s->method->ssl3_enc->setup_key_block(s)
1737
0
                || !s->method->ssl3_enc->change_cipher_state(s,
1738
0
                    SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_READ))) {
1739
        /* SSLfatal() already called */
1740
0
        goto err;
1741
0
    }
1742
1743
0
    OPENSSL_free(extensions);
1744
0
    return MSG_PROCESS_CONTINUE_READING;
1745
0
 err:
1746
0
    OPENSSL_free(extensions);
1747
0
    return MSG_PROCESS_ERROR;
1748
0
}
1749
1750
static MSG_PROCESS_RETURN tls_process_as_hello_retry_request(SSL *s,
1751
                                                             PACKET *extpkt)
1752
0
{
1753
0
    RAW_EXTENSION *extensions = NULL;
1754
1755
    /*
1756
     * If we were sending early_data then the enc_write_ctx is now invalid and
1757
     * should not be used.
1758
     */
1759
0
    EVP_CIPHER_CTX_free(s->enc_write_ctx);
1760
0
    s->enc_write_ctx = NULL;
1761
1762
0
    if (!tls_collect_extensions(s, extpkt, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST,
1763
0
                                &extensions, NULL, 1)
1764
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST,
1765
0
                                         extensions, NULL, 0, 1)) {
1766
        /* SSLfatal() already called */
1767
0
        goto err;
1768
0
    }
1769
1770
0
    OPENSSL_free(extensions);
1771
0
    extensions = NULL;
1772
1773
0
    if (s->ext.tls13_cookie_len == 0
1774
0
#if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
1775
0
        && s->s3->tmp.pkey != NULL
1776
0
#endif
1777
0
        ) {
1778
        /*
1779
         * We didn't receive a cookie or a new key_share so the next
1780
         * ClientHello will not change
1781
         */
1782
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1783
0
                 SSL_F_TLS_PROCESS_AS_HELLO_RETRY_REQUEST,
1784
0
                 SSL_R_NO_CHANGE_FOLLOWING_HRR);
1785
0
        goto err;
1786
0
    }
1787
1788
    /*
1789
     * Re-initialise the Transcript Hash. We're going to prepopulate it with
1790
     * a synthetic message_hash in place of ClientHello1.
1791
     */
1792
0
    if (!create_synthetic_message_hash(s, NULL, 0, NULL, 0)) {
1793
        /* SSLfatal() already called */
1794
0
        goto err;
1795
0
    }
1796
1797
    /*
1798
     * Add this message to the Transcript Hash. Normally this is done
1799
     * automatically prior to the message processing stage. However due to the
1800
     * need to create the synthetic message hash, we defer that step until now
1801
     * for HRR messages.
1802
     */
1803
0
    if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
1804
0
                                s->init_num + SSL3_HM_HEADER_LENGTH)) {
1805
        /* SSLfatal() already called */
1806
0
        goto err;
1807
0
    }
1808
1809
0
    return MSG_PROCESS_FINISHED_READING;
1810
0
 err:
1811
0
    OPENSSL_free(extensions);
1812
0
    return MSG_PROCESS_ERROR;
1813
0
}
1814
1815
MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s, PACKET *pkt)
1816
0
{
1817
0
    int i;
1818
0
    MSG_PROCESS_RETURN ret = MSG_PROCESS_ERROR;
1819
0
    unsigned long cert_list_len, cert_len;
1820
0
    X509 *x = NULL;
1821
0
    const unsigned char *certstart, *certbytes;
1822
0
    STACK_OF(X509) *sk = NULL;
1823
0
    EVP_PKEY *pkey = NULL;
1824
0
    size_t chainidx, certidx;
1825
0
    unsigned int context = 0;
1826
0
    const SSL_CERT_LOOKUP *clu;
1827
1828
0
    if ((sk = sk_X509_new_null()) == NULL) {
1829
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1830
0
                 ERR_R_MALLOC_FAILURE);
1831
0
        goto err;
1832
0
    }
1833
1834
0
    if ((SSL_IS_TLS13(s) && !PACKET_get_1(pkt, &context))
1835
0
            || context != 0
1836
0
            || !PACKET_get_net_3(pkt, &cert_list_len)
1837
0
            || PACKET_remaining(pkt) != cert_list_len
1838
0
            || PACKET_remaining(pkt) == 0) {
1839
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1840
0
                 SSL_R_LENGTH_MISMATCH);
1841
0
        goto err;
1842
0
    }
1843
0
    for (chainidx = 0; PACKET_remaining(pkt); chainidx++) {
1844
0
        if (!PACKET_get_net_3(pkt, &cert_len)
1845
0
            || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
1846
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
1847
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1848
0
                     SSL_R_CERT_LENGTH_MISMATCH);
1849
0
            goto err;
1850
0
        }
1851
1852
0
        certstart = certbytes;
1853
0
        x = d2i_X509(NULL, (const unsigned char **)&certbytes, cert_len);
1854
0
        if (x == NULL) {
1855
0
            SSLfatal(s, SSL_AD_BAD_CERTIFICATE,
1856
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_ASN1_LIB);
1857
0
            goto err;
1858
0
        }
1859
0
        if (certbytes != (certstart + cert_len)) {
1860
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
1861
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1862
0
                     SSL_R_CERT_LENGTH_MISMATCH);
1863
0
            goto err;
1864
0
        }
1865
1866
0
        if (SSL_IS_TLS13(s)) {
1867
0
            RAW_EXTENSION *rawexts = NULL;
1868
0
            PACKET extensions;
1869
1870
0
            if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
1871
0
                SSLfatal(s, SSL_AD_DECODE_ERROR,
1872
0
                         SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1873
0
                         SSL_R_BAD_LENGTH);
1874
0
                goto err;
1875
0
            }
1876
0
            if (!tls_collect_extensions(s, &extensions,
1877
0
                                        SSL_EXT_TLS1_3_CERTIFICATE, &rawexts,
1878
0
                                        NULL, chainidx == 0)
1879
0
                || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE,
1880
0
                                             rawexts, x, chainidx,
1881
0
                                             PACKET_remaining(pkt) == 0)) {
1882
0
                OPENSSL_free(rawexts);
1883
                /* SSLfatal already called */
1884
0
                goto err;
1885
0
            }
1886
0
            OPENSSL_free(rawexts);
1887
0
        }
1888
1889
0
        if (!sk_X509_push(sk, x)) {
1890
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1891
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1892
0
                     ERR_R_MALLOC_FAILURE);
1893
0
            goto err;
1894
0
        }
1895
0
        x = NULL;
1896
0
    }
1897
1898
0
    i = ssl_verify_cert_chain(s, sk);
1899
    /*
1900
     * The documented interface is that SSL_VERIFY_PEER should be set in order
1901
     * for client side verification of the server certificate to take place.
1902
     * However, historically the code has only checked that *any* flag is set
1903
     * to cause server verification to take place. Use of the other flags makes
1904
     * no sense in client mode. An attempt to clean up the semantics was
1905
     * reverted because at least one application *only* set
1906
     * SSL_VERIFY_FAIL_IF_NO_PEER_CERT. Prior to the clean up this still caused
1907
     * server verification to take place, after the clean up it silently did
1908
     * nothing. SSL_CTX_set_verify()/SSL_set_verify() cannot validate the flags
1909
     * sent to them because they are void functions. Therefore, we now use the
1910
     * (less clean) historic behaviour of performing validation if any flag is
1911
     * set. The *documented* interface remains the same.
1912
     */
1913
0
    if (s->verify_mode != SSL_VERIFY_NONE && i <= 0) {
1914
0
        SSLfatal(s, ssl_x509err2alert(s->verify_result),
1915
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1916
0
                 SSL_R_CERTIFICATE_VERIFY_FAILED);
1917
0
        goto err;
1918
0
    }
1919
0
    ERR_clear_error();          /* but we keep s->verify_result */
1920
0
    if (i > 1) {
1921
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
1922
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, i);
1923
0
        goto err;
1924
0
    }
1925
1926
0
    s->session->peer_chain = sk;
1927
    /*
1928
     * Inconsistency alert: cert_chain does include the peer's certificate,
1929
     * which we don't include in statem_srvr.c
1930
     */
1931
0
    x = sk_X509_value(sk, 0);
1932
0
    sk = NULL;
1933
1934
0
    pkey = X509_get0_pubkey(x);
1935
1936
0
    if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) {
1937
0
        x = NULL;
1938
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1939
0
                 SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1940
0
        goto err;
1941
0
    }
1942
1943
0
    if ((clu = ssl_cert_lookup_by_pkey(pkey, &certidx)) == NULL) {
1944
0
        x = NULL;
1945
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1946
0
                 SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1947
0
                 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1948
0
        goto err;
1949
0
    }
1950
    /*
1951
     * Check certificate type is consistent with ciphersuite. For TLS 1.3
1952
     * skip check since TLS 1.3 ciphersuites can be used with any certificate
1953
     * type.
1954
     */
1955
0
    if (!SSL_IS_TLS13(s)) {
1956
0
        if ((clu->amask & s->s3->tmp.new_cipher->algorithm_auth) == 0) {
1957
0
            x = NULL;
1958
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1959
0
                     SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1960
0
                     SSL_R_WRONG_CERTIFICATE_TYPE);
1961
0
            goto err;
1962
0
        }
1963
0
    }
1964
1965
0
    X509_free(s->session->peer);
1966
0
    X509_up_ref(x);
1967
0
    s->session->peer = x;
1968
0
    s->session->verify_result = s->verify_result;
1969
0
    x = NULL;
1970
1971
    /* Save the current hash state for when we receive the CertificateVerify */
1972
0
    if (SSL_IS_TLS13(s)
1973
0
            && !ssl_handshake_hash(s, s->cert_verify_hash,
1974
0
                                   sizeof(s->cert_verify_hash),
1975
0
                                   &s->cert_verify_hash_len)) {
1976
0
        /* SSLfatal() already called */;
1977
0
        goto err;
1978
0
    }
1979
1980
0
    ret = MSG_PROCESS_CONTINUE_READING;
1981
1982
0
 err:
1983
0
    X509_free(x);
1984
0
    sk_X509_pop_free(sk, X509_free);
1985
0
    return ret;
1986
0
}
1987
1988
static int tls_process_ske_psk_preamble(SSL *s, PACKET *pkt)
1989
0
{
1990
0
#ifndef OPENSSL_NO_PSK
1991
0
    PACKET psk_identity_hint;
1992
1993
    /* PSK ciphersuites are preceded by an identity hint */
1994
1995
0
    if (!PACKET_get_length_prefixed_2(pkt, &psk_identity_hint)) {
1996
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
1997
0
                 SSL_R_LENGTH_MISMATCH);
1998
0
        return 0;
1999
0
    }
2000
2001
    /*
2002
     * Store PSK identity hint for later use, hint is used in
2003
     * tls_construct_client_key_exchange.  Assume that the maximum length of
2004
     * a PSK identity hint can be as long as the maximum length of a PSK
2005
     * identity.
2006
     */
2007
0
    if (PACKET_remaining(&psk_identity_hint) > PSK_MAX_IDENTITY_LEN) {
2008
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2009
0
                 SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2010
0
                 SSL_R_DATA_LENGTH_TOO_LONG);
2011
0
        return 0;
2012
0
    }
2013
2014
0
    if (PACKET_remaining(&psk_identity_hint) == 0) {
2015
0
        OPENSSL_free(s->session->psk_identity_hint);
2016
0
        s->session->psk_identity_hint = NULL;
2017
0
    } else if (!PACKET_strndup(&psk_identity_hint,
2018
0
                               &s->session->psk_identity_hint)) {
2019
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2020
0
                 ERR_R_INTERNAL_ERROR);
2021
0
        return 0;
2022
0
    }
2023
2024
0
    return 1;
2025
#else
2026
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE,
2027
             ERR_R_INTERNAL_ERROR);
2028
    return 0;
2029
#endif
2030
0
}
2031
2032
static int tls_process_ske_srp(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2033
0
{
2034
0
#ifndef OPENSSL_NO_SRP
2035
0
    PACKET prime, generator, salt, server_pub;
2036
2037
0
    if (!PACKET_get_length_prefixed_2(pkt, &prime)
2038
0
        || !PACKET_get_length_prefixed_2(pkt, &generator)
2039
0
        || !PACKET_get_length_prefixed_1(pkt, &salt)
2040
0
        || !PACKET_get_length_prefixed_2(pkt, &server_pub)) {
2041
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2042
0
                 SSL_R_LENGTH_MISMATCH);
2043
0
        return 0;
2044
0
    }
2045
2046
    /* TODO(size_t): Convert BN_bin2bn() calls */
2047
0
    if ((s->srp_ctx.N =
2048
0
         BN_bin2bn(PACKET_data(&prime),
2049
0
                   (int)PACKET_remaining(&prime), NULL)) == NULL
2050
0
        || (s->srp_ctx.g =
2051
0
            BN_bin2bn(PACKET_data(&generator),
2052
0
                      (int)PACKET_remaining(&generator), NULL)) == NULL
2053
0
        || (s->srp_ctx.s =
2054
0
            BN_bin2bn(PACKET_data(&salt),
2055
0
                      (int)PACKET_remaining(&salt), NULL)) == NULL
2056
0
        || (s->srp_ctx.B =
2057
0
            BN_bin2bn(PACKET_data(&server_pub),
2058
0
                      (int)PACKET_remaining(&server_pub), NULL)) == NULL) {
2059
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2060
0
                 ERR_R_BN_LIB);
2061
0
        return 0;
2062
0
    }
2063
2064
0
    if (!srp_verify_server_param(s)) {
2065
        /* SSLfatal() already called */
2066
0
        return 0;
2067
0
    }
2068
2069
    /* We must check if there is a certificate */
2070
0
    if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
2071
0
        *pkey = X509_get0_pubkey(s->session->peer);
2072
2073
0
    return 1;
2074
#else
2075
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_SRP,
2076
             ERR_R_INTERNAL_ERROR);
2077
    return 0;
2078
#endif
2079
0
}
2080
2081
static int tls_process_ske_dhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2082
0
{
2083
0
#ifndef OPENSSL_NO_DH
2084
0
    PACKET prime, generator, pub_key;
2085
0
    EVP_PKEY *peer_tmp = NULL;
2086
2087
0
    DH *dh = NULL;
2088
0
    BIGNUM *p = NULL, *g = NULL, *bnpub_key = NULL;
2089
2090
0
    int check_bits = 0;
2091
2092
0
    if (!PACKET_get_length_prefixed_2(pkt, &prime)
2093
0
        || !PACKET_get_length_prefixed_2(pkt, &generator)
2094
0
        || !PACKET_get_length_prefixed_2(pkt, &pub_key)) {
2095
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2096
0
                 SSL_R_LENGTH_MISMATCH);
2097
0
        return 0;
2098
0
    }
2099
2100
0
    peer_tmp = EVP_PKEY_new();
2101
0
    dh = DH_new();
2102
2103
0
    if (peer_tmp == NULL || dh == NULL) {
2104
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2105
0
                 ERR_R_MALLOC_FAILURE);
2106
0
        goto err;
2107
0
    }
2108
2109
    /* TODO(size_t): Convert these calls */
2110
0
    p = BN_bin2bn(PACKET_data(&prime), (int)PACKET_remaining(&prime), NULL);
2111
0
    g = BN_bin2bn(PACKET_data(&generator), (int)PACKET_remaining(&generator),
2112
0
                  NULL);
2113
0
    bnpub_key = BN_bin2bn(PACKET_data(&pub_key),
2114
0
                          (int)PACKET_remaining(&pub_key), NULL);
2115
0
    if (p == NULL || g == NULL || bnpub_key == NULL) {
2116
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2117
0
                 ERR_R_BN_LIB);
2118
0
        goto err;
2119
0
    }
2120
2121
    /* test non-zero pubkey */
2122
0
    if (BN_is_zero(bnpub_key)) {
2123
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_DHE,
2124
0
                 SSL_R_BAD_DH_VALUE);
2125
0
        goto err;
2126
0
    }
2127
2128
0
    if (!DH_set0_pqg(dh, p, NULL, g)) {
2129
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2130
0
                 ERR_R_BN_LIB);
2131
0
        goto err;
2132
0
    }
2133
0
    p = g = NULL;
2134
2135
0
    if (DH_check_params(dh, &check_bits) == 0 || check_bits != 0) {
2136
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_DHE,
2137
0
                 SSL_R_BAD_DH_VALUE);
2138
0
        goto err;
2139
0
    }
2140
2141
0
    if (!DH_set0_key(dh, bnpub_key, NULL)) {
2142
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2143
0
                 ERR_R_BN_LIB);
2144
0
        goto err;
2145
0
    }
2146
0
    bnpub_key = NULL;
2147
2148
0
    if (EVP_PKEY_assign_DH(peer_tmp, dh) == 0) {
2149
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2150
0
                 ERR_R_EVP_LIB);
2151
0
        goto err;
2152
0
    }
2153
0
    dh = NULL;
2154
2155
0
    if (!ssl_security(s, SSL_SECOP_TMP_DH, EVP_PKEY_security_bits(peer_tmp),
2156
0
                      0, peer_tmp)) {
2157
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_PROCESS_SKE_DHE,
2158
0
                 SSL_R_DH_KEY_TOO_SMALL);
2159
0
        goto err;
2160
0
    }
2161
2162
0
    s->s3->peer_tmp = peer_tmp;
2163
2164
    /*
2165
     * FIXME: This makes assumptions about which ciphersuites come with
2166
     * public keys. We should have a less ad-hoc way of doing this
2167
     */
2168
0
    if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
2169
0
        *pkey = X509_get0_pubkey(s->session->peer);
2170
    /* else anonymous DH, so no certificate or pkey. */
2171
2172
0
    return 1;
2173
2174
0
 err:
2175
0
    BN_free(p);
2176
0
    BN_free(g);
2177
0
    BN_free(bnpub_key);
2178
0
    DH_free(dh);
2179
0
    EVP_PKEY_free(peer_tmp);
2180
2181
0
    return 0;
2182
#else
2183
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_DHE,
2184
             ERR_R_INTERNAL_ERROR);
2185
    return 0;
2186
#endif
2187
0
}
2188
2189
static int tls_process_ske_ecdhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey)
2190
0
{
2191
0
#ifndef OPENSSL_NO_EC
2192
0
    PACKET encoded_pt;
2193
0
    unsigned int curve_type, curve_id;
2194
2195
    /*
2196
     * Extract elliptic curve parameters and the server's ephemeral ECDH
2197
     * public key. We only support named (not generic) curves and
2198
     * ECParameters in this case is just three bytes.
2199
     */
2200
0
    if (!PACKET_get_1(pkt, &curve_type) || !PACKET_get_net_2(pkt, &curve_id)) {
2201
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2202
0
                 SSL_R_LENGTH_TOO_SHORT);
2203
0
        return 0;
2204
0
    }
2205
    /*
2206
     * Check curve is named curve type and one of our preferences, if not
2207
     * server has sent an invalid curve.
2208
     */
2209
0
    if (curve_type != NAMED_CURVE_TYPE
2210
0
            || !tls1_check_group_id(s, curve_id, 1)) {
2211
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_ECDHE,
2212
0
                 SSL_R_WRONG_CURVE);
2213
0
        return 0;
2214
0
    }
2215
2216
0
    if ((s->s3->peer_tmp = ssl_generate_param_group(curve_id)) == NULL) {
2217
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2218
0
                 SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
2219
0
        return 0;
2220
0
    }
2221
2222
0
    if (!PACKET_get_length_prefixed_1(pkt, &encoded_pt)) {
2223
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2224
0
                 SSL_R_LENGTH_MISMATCH);
2225
0
        return 0;
2226
0
    }
2227
2228
0
    if (!EVP_PKEY_set1_tls_encodedpoint(s->s3->peer_tmp,
2229
0
                                        PACKET_data(&encoded_pt),
2230
0
                                        PACKET_remaining(&encoded_pt))) {
2231
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PROCESS_SKE_ECDHE,
2232
0
                 SSL_R_BAD_ECPOINT);
2233
0
        return 0;
2234
0
    }
2235
2236
    /*
2237
     * The ECC/TLS specification does not mention the use of DSA to sign
2238
     * ECParameters in the server key exchange message. We do support RSA
2239
     * and ECDSA.
2240
     */
2241
0
    if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aECDSA)
2242
0
        *pkey = X509_get0_pubkey(s->session->peer);
2243
0
    else if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aRSA)
2244
0
        *pkey = X509_get0_pubkey(s->session->peer);
2245
    /* else anonymous ECDH, so no certificate or pkey. */
2246
2247
0
    return 1;
2248
#else
2249
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SKE_ECDHE,
2250
             ERR_R_INTERNAL_ERROR);
2251
    return 0;
2252
#endif
2253
0
}
2254
2255
MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s, PACKET *pkt)
2256
0
{
2257
0
    long alg_k;
2258
0
    EVP_PKEY *pkey = NULL;
2259
0
    EVP_MD_CTX *md_ctx = NULL;
2260
0
    EVP_PKEY_CTX *pctx = NULL;
2261
0
    PACKET save_param_start, signature;
2262
2263
0
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2264
2265
0
    save_param_start = *pkt;
2266
2267
0
#if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
2268
0
    EVP_PKEY_free(s->s3->peer_tmp);
2269
0
    s->s3->peer_tmp = NULL;
2270
0
#endif
2271
2272
0
    if (alg_k & SSL_PSK) {
2273
0
        if (!tls_process_ske_psk_preamble(s, pkt)) {
2274
            /* SSLfatal() already called */
2275
0
            goto err;
2276
0
        }
2277
0
    }
2278
2279
    /* Nothing else to do for plain PSK or RSAPSK */
2280
0
    if (alg_k & (SSL_kPSK | SSL_kRSAPSK)) {
2281
0
    } else if (alg_k & SSL_kSRP) {
2282
0
        if (!tls_process_ske_srp(s, pkt, &pkey)) {
2283
            /* SSLfatal() already called */
2284
0
            goto err;
2285
0
        }
2286
0
    } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2287
0
        if (!tls_process_ske_dhe(s, pkt, &pkey)) {
2288
            /* SSLfatal() already called */
2289
0
            goto err;
2290
0
        }
2291
0
    } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2292
0
        if (!tls_process_ske_ecdhe(s, pkt, &pkey)) {
2293
            /* SSLfatal() already called */
2294
0
            goto err;
2295
0
        }
2296
0
    } else if (alg_k) {
2297
0
        SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2298
0
                 SSL_R_UNEXPECTED_MESSAGE);
2299
0
        goto err;
2300
0
    }
2301
2302
    /* if it was signed, check the signature */
2303
0
    if (pkey != NULL) {
2304
0
        PACKET params;
2305
0
        int maxsig;
2306
0
        const EVP_MD *md = NULL;
2307
0
        unsigned char *tbs;
2308
0
        size_t tbslen;
2309
0
        int rv;
2310
2311
        /*
2312
         * |pkt| now points to the beginning of the signature, so the difference
2313
         * equals the length of the parameters.
2314
         */
2315
0
        if (!PACKET_get_sub_packet(&save_param_start, &params,
2316
0
                                   PACKET_remaining(&save_param_start) -
2317
0
                                   PACKET_remaining(pkt))) {
2318
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2319
0
                     ERR_R_INTERNAL_ERROR);
2320
0
            goto err;
2321
0
        }
2322
2323
0
        if (SSL_USE_SIGALGS(s)) {
2324
0
            unsigned int sigalg;
2325
2326
0
            if (!PACKET_get_net_2(pkt, &sigalg)) {
2327
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2328
0
                         SSL_R_LENGTH_TOO_SHORT);
2329
0
                goto err;
2330
0
            }
2331
0
            if (tls12_check_peer_sigalg(s, sigalg, pkey) <=0) {
2332
                /* SSLfatal() already called */
2333
0
                goto err;
2334
0
            }
2335
0
        } else if (!tls1_set_peer_legacy_sigalg(s, pkey)) {
2336
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2337
0
                     ERR_R_INTERNAL_ERROR);
2338
0
            goto err;
2339
0
        }
2340
2341
0
        if (!tls1_lookup_md(s->s3->tmp.peer_sigalg, &md)) {
2342
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2343
0
                     ERR_R_INTERNAL_ERROR);
2344
0
            goto err;
2345
0
        }
2346
#ifdef SSL_DEBUG
2347
        if (SSL_USE_SIGALGS(s))
2348
            fprintf(stderr, "USING TLSv1.2 HASH %s\n",
2349
                    md == NULL ? "n/a" : EVP_MD_name(md));
2350
#endif
2351
2352
0
        if (!PACKET_get_length_prefixed_2(pkt, &signature)
2353
0
            || PACKET_remaining(pkt) != 0) {
2354
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2355
0
                     SSL_R_LENGTH_MISMATCH);
2356
0
            goto err;
2357
0
        }
2358
0
        maxsig = EVP_PKEY_size(pkey);
2359
0
        if (maxsig < 0) {
2360
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2361
0
                     ERR_R_INTERNAL_ERROR);
2362
0
            goto err;
2363
0
        }
2364
2365
        /*
2366
         * Check signature length
2367
         */
2368
0
        if (PACKET_remaining(&signature) > (size_t)maxsig) {
2369
            /* wrong packet length */
2370
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2371
0
                   SSL_R_WRONG_SIGNATURE_LENGTH);
2372
0
            goto err;
2373
0
        }
2374
2375
0
        md_ctx = EVP_MD_CTX_new();
2376
0
        if (md_ctx == NULL) {
2377
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2378
0
                     ERR_R_MALLOC_FAILURE);
2379
0
            goto err;
2380
0
        }
2381
2382
0
        if (EVP_DigestVerifyInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2383
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2384
0
                     ERR_R_EVP_LIB);
2385
0
            goto err;
2386
0
        }
2387
0
        if (SSL_USE_PSS(s)) {
2388
0
            if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2389
0
                || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx,
2390
0
                                                RSA_PSS_SALTLEN_DIGEST) <= 0) {
2391
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2392
0
                         SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2393
0
                goto err;
2394
0
            }
2395
0
        }
2396
0
        tbslen = construct_key_exchange_tbs(s, &tbs, PACKET_data(&params),
2397
0
                                            PACKET_remaining(&params));
2398
0
        if (tbslen == 0) {
2399
            /* SSLfatal() already called */
2400
0
            goto err;
2401
0
        }
2402
2403
0
        rv = EVP_DigestVerify(md_ctx, PACKET_data(&signature),
2404
0
                              PACKET_remaining(&signature), tbs, tbslen);
2405
0
        OPENSSL_free(tbs);
2406
0
        if (rv <= 0) {
2407
0
            SSLfatal(s, SSL_AD_DECRYPT_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2408
0
                     SSL_R_BAD_SIGNATURE);
2409
0
            goto err;
2410
0
        }
2411
0
        EVP_MD_CTX_free(md_ctx);
2412
0
        md_ctx = NULL;
2413
0
    } else {
2414
        /* aNULL, aSRP or PSK do not need public keys */
2415
0
        if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
2416
0
            && !(alg_k & SSL_PSK)) {
2417
            /* Might be wrong key type, check it */
2418
0
            if (ssl3_check_cert_and_algorithm(s)) {
2419
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2420
0
                         SSL_R_BAD_DATA);
2421
0
            }
2422
            /* else this shouldn't happen, SSLfatal() already called */
2423
0
            goto err;
2424
0
        }
2425
        /* still data left over */
2426
0
        if (PACKET_remaining(pkt) != 0) {
2427
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2428
0
                     SSL_R_EXTRA_DATA_IN_MESSAGE);
2429
0
            goto err;
2430
0
        }
2431
0
    }
2432
2433
0
    return MSG_PROCESS_CONTINUE_READING;
2434
0
 err:
2435
0
    EVP_MD_CTX_free(md_ctx);
2436
0
    return MSG_PROCESS_ERROR;
2437
0
}
2438
2439
MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s, PACKET *pkt)
2440
0
{
2441
0
    size_t i;
2442
2443
    /* Clear certificate validity flags */
2444
0
    for (i = 0; i < SSL_PKEY_NUM; i++)
2445
0
        s->s3->tmp.valid_flags[i] = 0;
2446
2447
0
    if (SSL_IS_TLS13(s)) {
2448
0
        PACKET reqctx, extensions;
2449
0
        RAW_EXTENSION *rawexts = NULL;
2450
2451
0
        if ((s->shutdown & SSL_SENT_SHUTDOWN) != 0) {
2452
            /*
2453
             * We already sent close_notify. This can only happen in TLSv1.3
2454
             * post-handshake messages. We can't reasonably respond to this, so
2455
             * we just ignore it
2456
             */
2457
0
            return MSG_PROCESS_FINISHED_READING;
2458
0
        }
2459
2460
        /* Free and zero certificate types: it is not present in TLS 1.3 */
2461
0
        OPENSSL_free(s->s3->tmp.ctype);
2462
0
        s->s3->tmp.ctype = NULL;
2463
0
        s->s3->tmp.ctype_len = 0;
2464
0
        OPENSSL_free(s->pha_context);
2465
0
        s->pha_context = NULL;
2466
0
        s->pha_context_len = 0;
2467
2468
0
        if (!PACKET_get_length_prefixed_1(pkt, &reqctx) ||
2469
0
            !PACKET_memdup(&reqctx, &s->pha_context, &s->pha_context_len)) {
2470
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2471
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2472
0
                     SSL_R_LENGTH_MISMATCH);
2473
0
            return MSG_PROCESS_ERROR;
2474
0
        }
2475
2476
0
        if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
2477
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2478
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2479
0
                     SSL_R_BAD_LENGTH);
2480
0
            return MSG_PROCESS_ERROR;
2481
0
        }
2482
0
        if (!tls_collect_extensions(s, &extensions,
2483
0
                                    SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
2484
0
                                    &rawexts, NULL, 1)
2485
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
2486
0
                                         rawexts, NULL, 0, 1)) {
2487
            /* SSLfatal() already called */
2488
0
            OPENSSL_free(rawexts);
2489
0
            return MSG_PROCESS_ERROR;
2490
0
        }
2491
0
        OPENSSL_free(rawexts);
2492
0
        if (!tls1_process_sigalgs(s)) {
2493
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2494
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2495
0
                     SSL_R_BAD_LENGTH);
2496
0
            return MSG_PROCESS_ERROR;
2497
0
        }
2498
0
    } else {
2499
0
        PACKET ctypes;
2500
2501
        /* get the certificate types */
2502
0
        if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) {
2503
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2504
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2505
0
                     SSL_R_LENGTH_MISMATCH);
2506
0
            return MSG_PROCESS_ERROR;
2507
0
        }
2508
2509
0
        if (!PACKET_memdup(&ctypes, &s->s3->tmp.ctype, &s->s3->tmp.ctype_len)) {
2510
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2511
0
                     SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2512
0
                     ERR_R_INTERNAL_ERROR);
2513
0
            return MSG_PROCESS_ERROR;
2514
0
        }
2515
2516
0
        if (SSL_USE_SIGALGS(s)) {
2517
0
            PACKET sigalgs;
2518
2519
0
            if (!PACKET_get_length_prefixed_2(pkt, &sigalgs)) {
2520
0
                SSLfatal(s, SSL_AD_DECODE_ERROR,
2521
0
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2522
0
                         SSL_R_LENGTH_MISMATCH);
2523
0
                return MSG_PROCESS_ERROR;
2524
0
            }
2525
2526
            /*
2527
             * Despite this being for certificates, preserve compatibility
2528
             * with pre-TLS 1.3 and use the regular sigalgs field.
2529
             */
2530
0
            if (!tls1_save_sigalgs(s, &sigalgs, 0)) {
2531
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2532
0
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2533
0
                         SSL_R_SIGNATURE_ALGORITHMS_ERROR);
2534
0
                return MSG_PROCESS_ERROR;
2535
0
            }
2536
0
            if (!tls1_process_sigalgs(s)) {
2537
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2538
0
                         SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2539
0
                         ERR_R_MALLOC_FAILURE);
2540
0
                return MSG_PROCESS_ERROR;
2541
0
            }
2542
0
        }
2543
2544
        /* get the CA RDNs */
2545
0
        if (!parse_ca_names(s, pkt)) {
2546
            /* SSLfatal() already called */
2547
0
            return MSG_PROCESS_ERROR;
2548
0
        }
2549
0
    }
2550
2551
0
    if (PACKET_remaining(pkt) != 0) {
2552
0
        SSLfatal(s, SSL_AD_DECODE_ERROR,
2553
0
                 SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2554
0
                 SSL_R_LENGTH_MISMATCH);
2555
0
        return MSG_PROCESS_ERROR;
2556
0
    }
2557
2558
    /* we should setup a certificate to return.... */
2559
0
    s->s3->tmp.cert_req = 1;
2560
2561
    /*
2562
     * In TLSv1.3 we don't prepare the client certificate yet. We wait until
2563
     * after the CertificateVerify message has been received. This is because
2564
     * in TLSv1.3 the CertificateRequest arrives before the Certificate message
2565
     * but in TLSv1.2 it is the other way around. We want to make sure that
2566
     * SSL_get_peer_certificate() returns something sensible in
2567
     * client_cert_cb.
2568
     */
2569
0
    if (SSL_IS_TLS13(s) && s->post_handshake_auth != SSL_PHA_REQUESTED)
2570
0
        return MSG_PROCESS_CONTINUE_READING;
2571
2572
0
    return MSG_PROCESS_CONTINUE_PROCESSING;
2573
0
}
2574
2575
MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt)
2576
0
{
2577
0
    unsigned int ticklen;
2578
0
    unsigned long ticket_lifetime_hint, age_add = 0;
2579
0
    unsigned int sess_len;
2580
0
    RAW_EXTENSION *exts = NULL;
2581
0
    PACKET nonce;
2582
2583
0
    PACKET_null_init(&nonce);
2584
2585
0
    if (!PACKET_get_net_4(pkt, &ticket_lifetime_hint)
2586
0
        || (SSL_IS_TLS13(s)
2587
0
            && (!PACKET_get_net_4(pkt, &age_add)
2588
0
                || !PACKET_get_length_prefixed_1(pkt, &nonce)))
2589
0
        || !PACKET_get_net_2(pkt, &ticklen)
2590
0
        || (SSL_IS_TLS13(s) ? (ticklen == 0 || PACKET_remaining(pkt) < ticklen)
2591
0
                            : PACKET_remaining(pkt) != ticklen)) {
2592
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2593
0
                 SSL_R_LENGTH_MISMATCH);
2594
0
        goto err;
2595
0
    }
2596
2597
    /*
2598
     * Server is allowed to change its mind (in <=TLSv1.2) and send an empty
2599
     * ticket. We already checked this TLSv1.3 case above, so it should never
2600
     * be 0 here in that instance
2601
     */
2602
0
    if (ticklen == 0)
2603
0
        return MSG_PROCESS_CONTINUE_READING;
2604
2605
    /*
2606
     * Sessions must be immutable once they go into the session cache. Otherwise
2607
     * we can get multi-thread problems. Therefore we don't "update" sessions,
2608
     * we replace them with a duplicate. In TLSv1.3 we need to do this every
2609
     * time a NewSessionTicket arrives because those messages arrive
2610
     * post-handshake and the session may have already gone into the session
2611
     * cache.
2612
     */
2613
0
    if (SSL_IS_TLS13(s) || s->session->session_id_length > 0) {
2614
0
        SSL_SESSION *new_sess;
2615
2616
        /*
2617
         * We reused an existing session, so we need to replace it with a new
2618
         * one
2619
         */
2620
0
        if ((new_sess = ssl_session_dup(s->session, 0)) == 0) {
2621
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2622
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2623
0
                     ERR_R_MALLOC_FAILURE);
2624
0
            goto err;
2625
0
        }
2626
2627
0
        if ((s->session_ctx->session_cache_mode & SSL_SESS_CACHE_CLIENT) != 0
2628
0
                && !SSL_IS_TLS13(s)) {
2629
            /*
2630
             * In TLSv1.2 and below the arrival of a new tickets signals that
2631
             * any old ticket we were using is now out of date, so we remove the
2632
             * old session from the cache. We carry on if this fails
2633
             */
2634
0
            SSL_CTX_remove_session(s->session_ctx, s->session);
2635
0
        }
2636
2637
0
        SSL_SESSION_free(s->session);
2638
0
        s->session = new_sess;
2639
0
    }
2640
2641
    /*
2642
     * Technically the cast to long here is not guaranteed by the C standard -
2643
     * but we use it elsewhere, so this should be ok.
2644
     */
2645
0
    s->session->time = (long)time(NULL);
2646
2647
0
    OPENSSL_free(s->session->ext.tick);
2648
0
    s->session->ext.tick = NULL;
2649
0
    s->session->ext.ticklen = 0;
2650
2651
0
    s->session->ext.tick = OPENSSL_malloc(ticklen);
2652
0
    if (s->session->ext.tick == NULL) {
2653
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2654
0
                 ERR_R_MALLOC_FAILURE);
2655
0
        goto err;
2656
0
    }
2657
0
    if (!PACKET_copy_bytes(pkt, s->session->ext.tick, ticklen)) {
2658
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2659
0
                 SSL_R_LENGTH_MISMATCH);
2660
0
        goto err;
2661
0
    }
2662
2663
0
    s->session->ext.tick_lifetime_hint = ticket_lifetime_hint;
2664
0
    s->session->ext.tick_age_add = age_add;
2665
0
    s->session->ext.ticklen = ticklen;
2666
2667
0
    if (SSL_IS_TLS13(s)) {
2668
0
        PACKET extpkt;
2669
2670
0
        if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
2671
0
                || PACKET_remaining(pkt) != 0) {
2672
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
2673
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2674
0
                     SSL_R_LENGTH_MISMATCH);
2675
0
            goto err;
2676
0
        }
2677
2678
0
        if (!tls_collect_extensions(s, &extpkt,
2679
0
                                    SSL_EXT_TLS1_3_NEW_SESSION_TICKET, &exts,
2680
0
                                    NULL, 1)
2681
0
                || !tls_parse_all_extensions(s,
2682
0
                                             SSL_EXT_TLS1_3_NEW_SESSION_TICKET,
2683
0
                                             exts, NULL, 0, 1)) {
2684
            /* SSLfatal() already called */
2685
0
            goto err;
2686
0
        }
2687
0
    }
2688
2689
    /*
2690
     * There are two ways to detect a resumed ticket session. One is to set
2691
     * an appropriate session ID and then the server must return a match in
2692
     * ServerHello. This allows the normal client session ID matching to work
2693
     * and we know much earlier that the ticket has been accepted. The
2694
     * other way is to set zero length session ID when the ticket is
2695
     * presented and rely on the handshake to determine session resumption.
2696
     * We choose the former approach because this fits in with assumptions
2697
     * elsewhere in OpenSSL. The session ID is set to the SHA256 (or SHA1 is
2698
     * SHA256 is disabled) hash of the ticket.
2699
     */
2700
    /*
2701
     * TODO(size_t): we use sess_len here because EVP_Digest expects an int
2702
     * but s->session->session_id_length is a size_t
2703
     */
2704
0
    if (!EVP_Digest(s->session->ext.tick, ticklen,
2705
0
                    s->session->session_id, &sess_len,
2706
0
                    EVP_sha256(), NULL)) {
2707
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2708
0
                 ERR_R_EVP_LIB);
2709
0
        goto err;
2710
0
    }
2711
0
    s->session->session_id_length = sess_len;
2712
0
    s->session->not_resumable = 0;
2713
2714
    /* This is a standalone message in TLSv1.3, so there is no more to read */
2715
0
    if (SSL_IS_TLS13(s)) {
2716
0
        const EVP_MD *md = ssl_handshake_md(s);
2717
0
        int hashleni = EVP_MD_size(md);
2718
0
        size_t hashlen;
2719
0
        static const unsigned char nonce_label[] = "resumption";
2720
2721
        /* Ensure cast to size_t is safe */
2722
0
        if (!ossl_assert(hashleni >= 0)) {
2723
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2724
0
                     SSL_F_TLS_PROCESS_NEW_SESSION_TICKET,
2725
0
                     ERR_R_INTERNAL_ERROR);
2726
0
            goto err;
2727
0
        }
2728
0
        hashlen = (size_t)hashleni;
2729
2730
0
        if (!tls13_hkdf_expand(s, md, s->resumption_master_secret,
2731
0
                               nonce_label,
2732
0
                               sizeof(nonce_label) - 1,
2733
0
                               PACKET_data(&nonce),
2734
0
                               PACKET_remaining(&nonce),
2735
0
                               s->session->master_key,
2736
0
                               hashlen, 1)) {
2737
            /* SSLfatal() already called */
2738
0
            goto err;
2739
0
        }
2740
0
        s->session->master_key_length = hashlen;
2741
2742
0
        OPENSSL_free(exts);
2743
0
        ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
2744
0
        return MSG_PROCESS_FINISHED_READING;
2745
0
    }
2746
2747
0
    return MSG_PROCESS_CONTINUE_READING;
2748
0
 err:
2749
0
    OPENSSL_free(exts);
2750
0
    return MSG_PROCESS_ERROR;
2751
0
}
2752
2753
/*
2754
 * In TLSv1.3 this is called from the extensions code, otherwise it is used to
2755
 * parse a separate message. Returns 1 on success or 0 on failure
2756
 */
2757
int tls_process_cert_status_body(SSL *s, PACKET *pkt)
2758
0
{
2759
0
    size_t resplen;
2760
0
    unsigned int type;
2761
2762
0
    if (!PACKET_get_1(pkt, &type)
2763
0
        || type != TLSEXT_STATUSTYPE_ocsp) {
2764
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2765
0
                 SSL_R_UNSUPPORTED_STATUS_TYPE);
2766
0
        return 0;
2767
0
    }
2768
0
    if (!PACKET_get_net_3_len(pkt, &resplen)
2769
0
        || PACKET_remaining(pkt) != resplen) {
2770
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2771
0
                 SSL_R_LENGTH_MISMATCH);
2772
0
        return 0;
2773
0
    }
2774
0
    s->ext.ocsp.resp = OPENSSL_malloc(resplen);
2775
0
    if (s->ext.ocsp.resp == NULL) {
2776
0
        s->ext.ocsp.resp_len = 0;
2777
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2778
0
                 ERR_R_MALLOC_FAILURE);
2779
0
        return 0;
2780
0
    }
2781
0
    s->ext.ocsp.resp_len = resplen;
2782
0
    if (!PACKET_copy_bytes(pkt, s->ext.ocsp.resp, resplen)) {
2783
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2784
0
                 SSL_R_LENGTH_MISMATCH);
2785
0
        return 0;
2786
0
    }
2787
2788
0
    return 1;
2789
0
}
2790
2791
2792
MSG_PROCESS_RETURN tls_process_cert_status(SSL *s, PACKET *pkt)
2793
0
{
2794
0
    if (!tls_process_cert_status_body(s, pkt)) {
2795
        /* SSLfatal() already called */
2796
0
        return MSG_PROCESS_ERROR;
2797
0
    }
2798
2799
0
    return MSG_PROCESS_CONTINUE_READING;
2800
0
}
2801
2802
/*
2803
 * Perform miscellaneous checks and processing after we have received the
2804
 * server's initial flight. In TLS1.3 this is after the Server Finished message.
2805
 * In <=TLS1.2 this is after the ServerDone message. Returns 1 on success or 0
2806
 * on failure.
2807
 */
2808
int tls_process_initial_server_flight(SSL *s)
2809
0
{
2810
    /*
2811
     * at this point we check that we have the required stuff from
2812
     * the server
2813
     */
2814
0
    if (!ssl3_check_cert_and_algorithm(s)) {
2815
        /* SSLfatal() already called */
2816
0
        return 0;
2817
0
    }
2818
2819
    /*
2820
     * Call the ocsp status callback if needed. The |ext.ocsp.resp| and
2821
     * |ext.ocsp.resp_len| values will be set if we actually received a status
2822
     * message, or NULL and -1 otherwise
2823
     */
2824
0
    if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing
2825
0
            && s->ctx->ext.status_cb != NULL) {
2826
0
        int ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
2827
2828
0
        if (ret == 0) {
2829
0
            SSLfatal(s, SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE,
2830
0
                     SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2831
0
                     SSL_R_INVALID_STATUS_RESPONSE);
2832
0
            return 0;
2833
0
        }
2834
0
        if (ret < 0) {
2835
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2836
0
                     SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2837
0
                     SSL_R_OCSP_CALLBACK_FAILURE);
2838
0
            return 0;
2839
0
        }
2840
0
    }
2841
0
#ifndef OPENSSL_NO_CT
2842
0
    if (s->ct_validation_callback != NULL) {
2843
        /* Note we validate the SCTs whether or not we abort on error */
2844
0
        if (!ssl_validate_ct(s) && (s->verify_mode & SSL_VERIFY_PEER)) {
2845
            /* SSLfatal() already called */
2846
0
            return 0;
2847
0
        }
2848
0
    }
2849
0
#endif
2850
2851
0
    return 1;
2852
0
}
2853
2854
MSG_PROCESS_RETURN tls_process_server_done(SSL *s, PACKET *pkt)
2855
0
{
2856
0
    if (PACKET_remaining(pkt) > 0) {
2857
        /* should contain no data */
2858
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_SERVER_DONE,
2859
0
                 SSL_R_LENGTH_MISMATCH);
2860
0
        return MSG_PROCESS_ERROR;
2861
0
    }
2862
0
#ifndef OPENSSL_NO_SRP
2863
0
    if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
2864
0
        if (SRP_Calc_A_param(s) <= 0) {
2865
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PROCESS_SERVER_DONE,
2866
0
                     SSL_R_SRP_A_CALC);
2867
0
            return MSG_PROCESS_ERROR;
2868
0
        }
2869
0
    }
2870
0
#endif
2871
2872
0
    if (!tls_process_initial_server_flight(s)) {
2873
        /* SSLfatal() already called */
2874
0
        return MSG_PROCESS_ERROR;
2875
0
    }
2876
2877
0
    return MSG_PROCESS_FINISHED_READING;
2878
0
}
2879
2880
static int tls_construct_cke_psk_preamble(SSL *s, WPACKET *pkt)
2881
0
{
2882
0
#ifndef OPENSSL_NO_PSK
2883
0
    int ret = 0;
2884
    /*
2885
     * The callback needs PSK_MAX_IDENTITY_LEN + 1 bytes to return a
2886
     * \0-terminated identity. The last byte is for us for simulating
2887
     * strnlen.
2888
     */
2889
0
    char identity[PSK_MAX_IDENTITY_LEN + 1];
2890
0
    size_t identitylen = 0;
2891
0
    unsigned char psk[PSK_MAX_PSK_LEN];
2892
0
    unsigned char *tmppsk = NULL;
2893
0
    char *tmpidentity = NULL;
2894
0
    size_t psklen = 0;
2895
2896
0
    if (s->psk_client_callback == NULL) {
2897
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2898
0
                 SSL_R_PSK_NO_CLIENT_CB);
2899
0
        goto err;
2900
0
    }
2901
2902
0
    memset(identity, 0, sizeof(identity));
2903
2904
0
    psklen = s->psk_client_callback(s, s->session->psk_identity_hint,
2905
0
                                    identity, sizeof(identity) - 1,
2906
0
                                    psk, sizeof(psk));
2907
2908
0
    if (psklen > PSK_MAX_PSK_LEN) {
2909
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2910
0
                 SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2911
0
        psklen = PSK_MAX_PSK_LEN;   /* Avoid overrunning the array on cleanse */
2912
0
        goto err;
2913
0
    } else if (psklen == 0) {
2914
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2915
0
                 SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2916
0
                 SSL_R_PSK_IDENTITY_NOT_FOUND);
2917
0
        goto err;
2918
0
    }
2919
2920
0
    identitylen = strlen(identity);
2921
0
    if (identitylen > PSK_MAX_IDENTITY_LEN) {
2922
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2923
0
                 ERR_R_INTERNAL_ERROR);
2924
0
        goto err;
2925
0
    }
2926
2927
0
    tmppsk = OPENSSL_memdup(psk, psklen);
2928
0
    tmpidentity = OPENSSL_strdup(identity);
2929
0
    if (tmppsk == NULL || tmpidentity == NULL) {
2930
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2931
0
                 ERR_R_MALLOC_FAILURE);
2932
0
        goto err;
2933
0
    }
2934
2935
0
    OPENSSL_free(s->s3->tmp.psk);
2936
0
    s->s3->tmp.psk = tmppsk;
2937
0
    s->s3->tmp.psklen = psklen;
2938
0
    tmppsk = NULL;
2939
0
    OPENSSL_free(s->session->psk_identity);
2940
0
    s->session->psk_identity = tmpidentity;
2941
0
    tmpidentity = NULL;
2942
2943
0
    if (!WPACKET_sub_memcpy_u16(pkt, identity, identitylen))  {
2944
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2945
0
                 ERR_R_INTERNAL_ERROR);
2946
0
        goto err;
2947
0
    }
2948
2949
0
    ret = 1;
2950
2951
0
 err:
2952
0
    OPENSSL_cleanse(psk, psklen);
2953
0
    OPENSSL_cleanse(identity, sizeof(identity));
2954
0
    OPENSSL_clear_free(tmppsk, psklen);
2955
0
    OPENSSL_clear_free(tmpidentity, identitylen);
2956
2957
0
    return ret;
2958
#else
2959
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2960
             ERR_R_INTERNAL_ERROR);
2961
    return 0;
2962
#endif
2963
0
}
2964
2965
static int tls_construct_cke_rsa(SSL *s, WPACKET *pkt)
2966
0
{
2967
0
#ifndef OPENSSL_NO_RSA
2968
0
    unsigned char *encdata = NULL;
2969
0
    EVP_PKEY *pkey = NULL;
2970
0
    EVP_PKEY_CTX *pctx = NULL;
2971
0
    size_t enclen;
2972
0
    unsigned char *pms = NULL;
2973
0
    size_t pmslen = 0;
2974
2975
0
    if (s->session->peer == NULL) {
2976
        /*
2977
         * We should always have a server certificate with SSL_kRSA.
2978
         */
2979
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2980
0
                 ERR_R_INTERNAL_ERROR);
2981
0
        return 0;
2982
0
    }
2983
2984
0
    pkey = X509_get0_pubkey(s->session->peer);
2985
0
    if (EVP_PKEY_get0_RSA(pkey) == NULL) {
2986
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2987
0
                 ERR_R_INTERNAL_ERROR);
2988
0
        return 0;
2989
0
    }
2990
2991
0
    pmslen = SSL_MAX_MASTER_KEY_LENGTH;
2992
0
    pms = OPENSSL_malloc(pmslen);
2993
0
    if (pms == NULL) {
2994
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
2995
0
                 ERR_R_MALLOC_FAILURE);
2996
0
        return 0;
2997
0
    }
2998
2999
0
    pms[0] = s->client_version >> 8;
3000
0
    pms[1] = s->client_version & 0xff;
3001
    /* TODO(size_t): Convert this function */
3002
0
    if (RAND_bytes(pms + 2, (int)(pmslen - 2)) <= 0) {
3003
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3004
0
                 ERR_R_MALLOC_FAILURE);
3005
0
        goto err;
3006
0
    }
3007
3008
    /* Fix buf for TLS and beyond */
3009
0
    if (s->version > SSL3_VERSION && !WPACKET_start_sub_packet_u16(pkt)) {
3010
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3011
0
                 ERR_R_INTERNAL_ERROR);
3012
0
        goto err;
3013
0
    }
3014
0
    pctx = EVP_PKEY_CTX_new(pkey, NULL);
3015
0
    if (pctx == NULL || EVP_PKEY_encrypt_init(pctx) <= 0
3016
0
        || EVP_PKEY_encrypt(pctx, NULL, &enclen, pms, pmslen) <= 0) {
3017
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3018
0
                 ERR_R_EVP_LIB);
3019
0
        goto err;
3020
0
    }
3021
0
    if (!WPACKET_allocate_bytes(pkt, enclen, &encdata)
3022
0
            || EVP_PKEY_encrypt(pctx, encdata, &enclen, pms, pmslen) <= 0) {
3023
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3024
0
                 SSL_R_BAD_RSA_ENCRYPT);
3025
0
        goto err;
3026
0
    }
3027
0
    EVP_PKEY_CTX_free(pctx);
3028
0
    pctx = NULL;
3029
3030
    /* Fix buf for TLS and beyond */
3031
0
    if (s->version > SSL3_VERSION && !WPACKET_close(pkt)) {
3032
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3033
0
                 ERR_R_INTERNAL_ERROR);
3034
0
        goto err;
3035
0
    }
3036
3037
    /* Log the premaster secret, if logging is enabled. */
3038
0
    if (!ssl_log_rsa_client_key_exchange(s, encdata, enclen, pms, pmslen)) {
3039
        /* SSLfatal() already called */
3040
0
        goto err;
3041
0
    }
3042
3043
0
    s->s3->tmp.pms = pms;
3044
0
    s->s3->tmp.pmslen = pmslen;
3045
3046
0
    return 1;
3047
0
 err:
3048
0
    OPENSSL_clear_free(pms, pmslen);
3049
0
    EVP_PKEY_CTX_free(pctx);
3050
3051
0
    return 0;
3052
#else
3053
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_RSA,
3054
             ERR_R_INTERNAL_ERROR);
3055
    return 0;
3056
#endif
3057
0
}
3058
3059
static int tls_construct_cke_dhe(SSL *s, WPACKET *pkt)
3060
0
{
3061
0
#ifndef OPENSSL_NO_DH
3062
0
    DH *dh_clnt = NULL;
3063
0
    const BIGNUM *pub_key;
3064
0
    EVP_PKEY *ckey = NULL, *skey = NULL;
3065
0
    unsigned char *keybytes = NULL;
3066
3067
0
    skey = s->s3->peer_tmp;
3068
0
    if (skey == NULL) {
3069
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3070
0
                 ERR_R_INTERNAL_ERROR);
3071
0
        goto err;
3072
0
    }
3073
3074
0
    ckey = ssl_generate_pkey(skey);
3075
0
    if (ckey == NULL) {
3076
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3077
0
                 ERR_R_INTERNAL_ERROR);
3078
0
        goto err;
3079
0
    }
3080
3081
0
    dh_clnt = EVP_PKEY_get0_DH(ckey);
3082
3083
0
    if (dh_clnt == NULL) {
3084
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3085
0
                 ERR_R_INTERNAL_ERROR);
3086
0
        goto err;
3087
0
    }
3088
3089
0
    if (ssl_derive(s, ckey, skey, 0) == 0) {
3090
        /* SSLfatal() already called */
3091
0
        goto err;
3092
0
    }
3093
3094
    /* send off the data */
3095
0
    DH_get0_key(dh_clnt, &pub_key, NULL);
3096
0
    if (!WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(pub_key),
3097
0
                                        &keybytes)) {
3098
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3099
0
                 ERR_R_INTERNAL_ERROR);
3100
0
        goto err;
3101
0
    }
3102
3103
0
    BN_bn2bin(pub_key, keybytes);
3104
0
    EVP_PKEY_free(ckey);
3105
3106
0
    return 1;
3107
0
 err:
3108
0
    EVP_PKEY_free(ckey);
3109
0
    return 0;
3110
#else
3111
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_DHE,
3112
             ERR_R_INTERNAL_ERROR);
3113
    return 0;
3114
#endif
3115
0
}
3116
3117
static int tls_construct_cke_ecdhe(SSL *s, WPACKET *pkt)
3118
0
{
3119
0
#ifndef OPENSSL_NO_EC
3120
0
    unsigned char *encodedPoint = NULL;
3121
0
    size_t encoded_pt_len = 0;
3122
0
    EVP_PKEY *ckey = NULL, *skey = NULL;
3123
0
    int ret = 0;
3124
3125
0
    skey = s->s3->peer_tmp;
3126
0
    if (skey == NULL) {
3127
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3128
0
                 ERR_R_INTERNAL_ERROR);
3129
0
        return 0;
3130
0
    }
3131
3132
0
    ckey = ssl_generate_pkey(skey);
3133
0
    if (ckey == NULL) {
3134
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3135
0
                 ERR_R_MALLOC_FAILURE);
3136
0
        goto err;
3137
0
    }
3138
3139
0
    if (ssl_derive(s, ckey, skey, 0) == 0) {
3140
        /* SSLfatal() already called */
3141
0
        goto err;
3142
0
    }
3143
3144
    /* Generate encoding of client key */
3145
0
    encoded_pt_len = EVP_PKEY_get1_tls_encodedpoint(ckey, &encodedPoint);
3146
3147
0
    if (encoded_pt_len == 0) {
3148
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3149
0
                 ERR_R_EC_LIB);
3150
0
        goto err;
3151
0
    }
3152
3153
0
    if (!WPACKET_sub_memcpy_u8(pkt, encodedPoint, encoded_pt_len)) {
3154
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3155
0
                 ERR_R_INTERNAL_ERROR);
3156
0
        goto err;
3157
0
    }
3158
3159
0
    ret = 1;
3160
0
 err:
3161
0
    OPENSSL_free(encodedPoint);
3162
0
    EVP_PKEY_free(ckey);
3163
0
    return ret;
3164
#else
3165
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_ECDHE,
3166
             ERR_R_INTERNAL_ERROR);
3167
    return 0;
3168
#endif
3169
0
}
3170
3171
static int tls_construct_cke_gost(SSL *s, WPACKET *pkt)
3172
0
{
3173
0
#ifndef OPENSSL_NO_GOST
3174
    /* GOST key exchange message creation */
3175
0
    EVP_PKEY_CTX *pkey_ctx = NULL;
3176
0
    X509 *peer_cert;
3177
0
    size_t msglen;
3178
0
    unsigned int md_len;
3179
0
    unsigned char shared_ukm[32], tmp[256];
3180
0
    EVP_MD_CTX *ukm_hash = NULL;
3181
0
    int dgst_nid = NID_id_GostR3411_94;
3182
0
    unsigned char *pms = NULL;
3183
0
    size_t pmslen = 0;
3184
3185
0
    if ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aGOST12) != 0)
3186
0
        dgst_nid = NID_id_GostR3411_2012_256;
3187
3188
    /*
3189
     * Get server certificate PKEY and create ctx from it
3190
     */
3191
0
    peer_cert = s->session->peer;
3192
0
    if (!peer_cert) {
3193
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3194
0
               SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
3195
0
        return 0;
3196
0
    }
3197
3198
0
    pkey_ctx = EVP_PKEY_CTX_new(X509_get0_pubkey(peer_cert), NULL);
3199
0
    if (pkey_ctx == NULL) {
3200
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3201
0
                 ERR_R_MALLOC_FAILURE);
3202
0
        return 0;
3203
0
    }
3204
    /*
3205
     * If we have send a certificate, and certificate key
3206
     * parameters match those of server certificate, use
3207
     * certificate key for key exchange
3208
     */
3209
3210
    /* Otherwise, generate ephemeral key pair */
3211
0
    pmslen = 32;
3212
0
    pms = OPENSSL_malloc(pmslen);
3213
0
    if (pms == NULL) {
3214
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3215
0
                 ERR_R_MALLOC_FAILURE);
3216
0
        goto err;
3217
0
    }
3218
3219
0
    if (EVP_PKEY_encrypt_init(pkey_ctx) <= 0
3220
        /* Generate session key
3221
         * TODO(size_t): Convert this function
3222
         */
3223
0
        || RAND_bytes(pms, (int)pmslen) <= 0) {
3224
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3225
0
                 ERR_R_INTERNAL_ERROR);
3226
0
        goto err;
3227
0
    };
3228
    /*
3229
     * Compute shared IV and store it in algorithm-specific context
3230
     * data
3231
     */
3232
0
    ukm_hash = EVP_MD_CTX_new();
3233
0
    if (ukm_hash == NULL
3234
0
        || EVP_DigestInit(ukm_hash, EVP_get_digestbynid(dgst_nid)) <= 0
3235
0
        || EVP_DigestUpdate(ukm_hash, s->s3->client_random,
3236
0
                            SSL3_RANDOM_SIZE) <= 0
3237
0
        || EVP_DigestUpdate(ukm_hash, s->s3->server_random,
3238
0
                            SSL3_RANDOM_SIZE) <= 0
3239
0
        || EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len) <= 0) {
3240
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3241
0
                 ERR_R_INTERNAL_ERROR);
3242
0
        goto err;
3243
0
    }
3244
0
    EVP_MD_CTX_free(ukm_hash);
3245
0
    ukm_hash = NULL;
3246
0
    if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_ENCRYPT,
3247
0
                          EVP_PKEY_CTRL_SET_IV, 8, shared_ukm) < 0) {
3248
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3249
0
                 SSL_R_LIBRARY_BUG);
3250
0
        goto err;
3251
0
    }
3252
    /* Make GOST keytransport blob message */
3253
    /*
3254
     * Encapsulate it into sequence
3255
     */
3256
0
    msglen = 255;
3257
0
    if (EVP_PKEY_encrypt(pkey_ctx, tmp, &msglen, pms, pmslen) <= 0) {
3258
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3259
0
                 SSL_R_LIBRARY_BUG);
3260
0
        goto err;
3261
0
    }
3262
3263
0
    if (!WPACKET_put_bytes_u8(pkt, V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED)
3264
0
            || (msglen >= 0x80 && !WPACKET_put_bytes_u8(pkt, 0x81))
3265
0
            || !WPACKET_sub_memcpy_u8(pkt, tmp, msglen)) {
3266
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3267
0
                 ERR_R_INTERNAL_ERROR);
3268
0
        goto err;
3269
0
    }
3270
3271
0
    EVP_PKEY_CTX_free(pkey_ctx);
3272
0
    s->s3->tmp.pms = pms;
3273
0
    s->s3->tmp.pmslen = pmslen;
3274
3275
0
    return 1;
3276
0
 err:
3277
0
    EVP_PKEY_CTX_free(pkey_ctx);
3278
0
    OPENSSL_clear_free(pms, pmslen);
3279
0
    EVP_MD_CTX_free(ukm_hash);
3280
0
    return 0;
3281
#else
3282
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_GOST,
3283
             ERR_R_INTERNAL_ERROR);
3284
    return 0;
3285
#endif
3286
0
}
3287
3288
static int tls_construct_cke_srp(SSL *s, WPACKET *pkt)
3289
0
{
3290
0
#ifndef OPENSSL_NO_SRP
3291
0
    unsigned char *abytes = NULL;
3292
3293
0
    if (s->srp_ctx.A == NULL
3294
0
            || !WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(s->srp_ctx.A),
3295
0
                                               &abytes)) {
3296
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3297
0
                 ERR_R_INTERNAL_ERROR);
3298
0
        return 0;
3299
0
    }
3300
0
    BN_bn2bin(s->srp_ctx.A, abytes);
3301
3302
0
    OPENSSL_free(s->session->srp_username);
3303
0
    s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
3304
0
    if (s->session->srp_username == NULL) {
3305
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3306
0
                 ERR_R_MALLOC_FAILURE);
3307
0
        return 0;
3308
0
    }
3309
3310
0
    return 1;
3311
#else
3312
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_CKE_SRP,
3313
             ERR_R_INTERNAL_ERROR);
3314
    return 0;
3315
#endif
3316
0
}
3317
3318
int tls_construct_client_key_exchange(SSL *s, WPACKET *pkt)
3319
0
{
3320
0
    unsigned long alg_k;
3321
3322
0
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3323
3324
    /*
3325
     * All of the construct functions below call SSLfatal() if necessary so
3326
     * no need to do so here.
3327
     */
3328
0
    if ((alg_k & SSL_PSK)
3329
0
        && !tls_construct_cke_psk_preamble(s, pkt))
3330
0
        goto err;
3331
3332
0
    if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
3333
0
        if (!tls_construct_cke_rsa(s, pkt))
3334
0
            goto err;
3335
0
    } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
3336
0
        if (!tls_construct_cke_dhe(s, pkt))
3337
0
            goto err;
3338
0
    } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
3339
0
        if (!tls_construct_cke_ecdhe(s, pkt))
3340
0
            goto err;
3341
0
    } else if (alg_k & SSL_kGOST) {
3342
0
        if (!tls_construct_cke_gost(s, pkt))
3343
0
            goto err;
3344
0
    } else if (alg_k & SSL_kSRP) {
3345
0
        if (!tls_construct_cke_srp(s, pkt))
3346
0
            goto err;
3347
0
    } else if (!(alg_k & SSL_kPSK)) {
3348
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3349
0
                 SSL_F_TLS_CONSTRUCT_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
3350
0
        goto err;
3351
0
    }
3352
3353
0
    return 1;
3354
0
 err:
3355
0
    OPENSSL_clear_free(s->s3->tmp.pms, s->s3->tmp.pmslen);
3356
0
    s->s3->tmp.pms = NULL;
3357
0
    s->s3->tmp.pmslen = 0;
3358
0
#ifndef OPENSSL_NO_PSK
3359
0
    OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
3360
0
    s->s3->tmp.psk = NULL;
3361
0
    s->s3->tmp.psklen = 0;
3362
0
#endif
3363
0
    return 0;
3364
0
}
3365
3366
int tls_client_key_exchange_post_work(SSL *s)
3367
0
{
3368
0
    unsigned char *pms = NULL;
3369
0
    size_t pmslen = 0;
3370
3371
0
    pms = s->s3->tmp.pms;
3372
0
    pmslen = s->s3->tmp.pmslen;
3373
3374
0
#ifndef OPENSSL_NO_SRP
3375
    /* Check for SRP */
3376
0
    if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
3377
0
        if (!srp_generate_client_master_secret(s)) {
3378
            /* SSLfatal() already called */
3379
0
            goto err;
3380
0
        }
3381
0
        return 1;
3382
0
    }
3383
0
#endif
3384
3385
0
    if (pms == NULL && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
3386
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3387
0
                 SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_MALLOC_FAILURE);
3388
0
        goto err;
3389
0
    }
3390
0
    if (!ssl_generate_master_secret(s, pms, pmslen, 1)) {
3391
        /* SSLfatal() already called */
3392
        /* ssl_generate_master_secret frees the pms even on error */
3393
0
        pms = NULL;
3394
0
        pmslen = 0;
3395
0
        goto err;
3396
0
    }
3397
0
    pms = NULL;
3398
0
    pmslen = 0;
3399
3400
#ifndef OPENSSL_NO_SCTP
3401
    if (SSL_IS_DTLS(s)) {
3402
        unsigned char sctpauthkey[64];
3403
        char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
3404
        size_t labellen;
3405
3406
        /*
3407
         * Add new shared key for SCTP-Auth, will be ignored if no SCTP
3408
         * used.
3409
         */
3410
        memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
3411
               sizeof(DTLS1_SCTP_AUTH_LABEL));
3412
3413
        /* Don't include the terminating zero. */
3414
        labellen = sizeof(labelbuffer) - 1;
3415
        if (s->mode & SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG)
3416
            labellen += 1;
3417
3418
        if (SSL_export_keying_material(s, sctpauthkey,
3419
                                       sizeof(sctpauthkey), labelbuffer,
3420
                                       labellen, NULL, 0, 0) <= 0) {
3421
            SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3422
                     SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK,
3423
                     ERR_R_INTERNAL_ERROR);
3424
            goto err;
3425
        }
3426
3427
        BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
3428
                 sizeof(sctpauthkey), sctpauthkey);
3429
    }
3430
#endif
3431
3432
0
    return 1;
3433
0
 err:
3434
0
    OPENSSL_clear_free(pms, pmslen);
3435
0
    s->s3->tmp.pms = NULL;
3436
0
    s->s3->tmp.pmslen = 0;
3437
0
    return 0;
3438
0
}
3439
3440
/*
3441
 * Check a certificate can be used for client authentication. Currently check
3442
 * cert exists, if we have a suitable digest for TLS 1.2 if static DH client
3443
 * certificates can be used and optionally checks suitability for Suite B.
3444
 */
3445
static int ssl3_check_client_certificate(SSL *s)
3446
0
{
3447
    /* If no suitable signature algorithm can't use certificate */
3448
0
    if (!tls_choose_sigalg(s, 0) || s->s3->tmp.sigalg == NULL)
3449
0
        return 0;
3450
    /*
3451
     * If strict mode check suitability of chain before using it. This also
3452
     * adjusts suite B digest if necessary.
3453
     */
3454
0
    if (s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT &&
3455
0
        !tls1_check_chain(s, NULL, NULL, NULL, -2))
3456
0
        return 0;
3457
0
    return 1;
3458
0
}
3459
3460
WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst)
3461
0
{
3462
0
    X509 *x509 = NULL;
3463
0
    EVP_PKEY *pkey = NULL;
3464
0
    int i;
3465
3466
0
    if (wst == WORK_MORE_A) {
3467
        /* Let cert callback update client certificates if required */
3468
0
        if (s->cert->cert_cb) {
3469
0
            i = s->cert->cert_cb(s, s->cert->cert_cb_arg);
3470
0
            if (i < 0) {
3471
0
                s->rwstate = SSL_X509_LOOKUP;
3472
0
                return WORK_MORE_A;
3473
0
            }
3474
0
            if (i == 0) {
3475
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3476
0
                         SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3477
0
                         SSL_R_CALLBACK_FAILED);
3478
0
                return WORK_ERROR;
3479
0
            }
3480
0
            s->rwstate = SSL_NOTHING;
3481
0
        }
3482
0
        if (ssl3_check_client_certificate(s)) {
3483
0
            if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
3484
0
                return WORK_FINISHED_STOP;
3485
0
            }
3486
0
            return WORK_FINISHED_CONTINUE;
3487
0
        }
3488
3489
        /* Fall through to WORK_MORE_B */
3490
0
        wst = WORK_MORE_B;
3491
0
    }
3492
3493
    /* We need to get a client cert */
3494
0
    if (wst == WORK_MORE_B) {
3495
        /*
3496
         * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP;
3497
         * return(-1); We then get retied later
3498
         */
3499
0
        i = ssl_do_client_cert_cb(s, &x509, &pkey);
3500
0
        if (i < 0) {
3501
0
            s->rwstate = SSL_X509_LOOKUP;
3502
0
            return WORK_MORE_B;
3503
0
        }
3504
0
        s->rwstate = SSL_NOTHING;
3505
0
        if ((i == 1) && (pkey != NULL) && (x509 != NULL)) {
3506
0
            if (!SSL_use_certificate(s, x509) || !SSL_use_PrivateKey(s, pkey))
3507
0
                i = 0;
3508
0
        } else if (i == 1) {
3509
0
            i = 0;
3510
0
            SSLerr(SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3511
0
                   SSL_R_BAD_DATA_RETURNED_BY_CALLBACK);
3512
0
        }
3513
3514
0
        X509_free(x509);
3515
0
        EVP_PKEY_free(pkey);
3516
0
        if (i && !ssl3_check_client_certificate(s))
3517
0
            i = 0;
3518
0
        if (i == 0) {
3519
0
            if (s->version == SSL3_VERSION) {
3520
0
                s->s3->tmp.cert_req = 0;
3521
0
                ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_CERTIFICATE);
3522
0
                return WORK_FINISHED_CONTINUE;
3523
0
            } else {
3524
0
                s->s3->tmp.cert_req = 2;
3525
0
                if (!ssl3_digest_cached_records(s, 0)) {
3526
                    /* SSLfatal() already called */
3527
0
                    return WORK_ERROR;
3528
0
                }
3529
0
            }
3530
0
        }
3531
3532
0
        if (s->post_handshake_auth == SSL_PHA_REQUESTED)
3533
0
            return WORK_FINISHED_STOP;
3534
0
        return WORK_FINISHED_CONTINUE;
3535
0
    }
3536
3537
    /* Shouldn't ever get here */
3538
0
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3539
0
             ERR_R_INTERNAL_ERROR);
3540
0
    return WORK_ERROR;
3541
0
}
3542
3543
int tls_construct_client_certificate(SSL *s, WPACKET *pkt)
3544
0
{
3545
0
    if (SSL_IS_TLS13(s)) {
3546
0
        if (s->pha_context == NULL) {
3547
            /* no context available, add 0-length context */
3548
0
            if (!WPACKET_put_bytes_u8(pkt, 0)) {
3549
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3550
0
                         SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3551
0
                return 0;
3552
0
            }
3553
0
        } else if (!WPACKET_sub_memcpy_u8(pkt, s->pha_context, s->pha_context_len)) {
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
    }
3559
0
    if (!ssl3_output_cert_chain(s, pkt,
3560
0
                                (s->s3->tmp.cert_req == 2) ? NULL
3561
0
                                                           : s->cert->key)) {
3562
        /* SSLfatal() already called */
3563
0
        return 0;
3564
0
    }
3565
3566
0
    if (SSL_IS_TLS13(s)
3567
0
            && SSL_IS_FIRST_HANDSHAKE(s)
3568
0
            && (!s->method->ssl3_enc->change_cipher_state(s,
3569
0
                    SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_WRITE))) {
3570
        /*
3571
         * This is a fatal error, which leaves enc_write_ctx in an inconsistent
3572
         * state and thus ssl3_send_alert may crash.
3573
         */
3574
0
        SSLfatal(s, SSL_AD_NO_ALERT, SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE,
3575
0
                 SSL_R_CANNOT_CHANGE_CIPHER);
3576
0
        return 0;
3577
0
    }
3578
3579
0
    return 1;
3580
0
}
3581
3582
int ssl3_check_cert_and_algorithm(SSL *s)
3583
0
{
3584
0
    const SSL_CERT_LOOKUP *clu;
3585
0
    size_t idx;
3586
0
    long alg_k, alg_a;
3587
3588
0
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3589
0
    alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3590
3591
    /* we don't have a certificate */
3592
0
    if (!(alg_a & SSL_aCERT))
3593
0
        return 1;
3594
3595
    /* This is the passed certificate */
3596
0
    clu = ssl_cert_lookup_by_pkey(X509_get0_pubkey(s->session->peer), &idx);
3597
3598
    /* Check certificate is recognised and suitable for cipher */
3599
0
    if (clu == NULL || (alg_a & clu->amask) == 0) {
3600
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3601
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3602
0
                 SSL_R_MISSING_SIGNING_CERT);
3603
0
        return 0;
3604
0
    }
3605
3606
0
#ifndef OPENSSL_NO_EC
3607
0
    if (clu->amask & SSL_aECDSA) {
3608
0
        if (ssl_check_srvr_ecc_cert_and_alg(s->session->peer, s))
3609
0
            return 1;
3610
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3611
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_BAD_ECC_CERT);
3612
0
        return 0;
3613
0
    }
3614
0
#endif
3615
0
#ifndef OPENSSL_NO_RSA
3616
0
    if (alg_k & (SSL_kRSA | SSL_kRSAPSK) && idx != SSL_PKEY_RSA) {
3617
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3618
0
                 SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3619
0
                 SSL_R_MISSING_RSA_ENCRYPTING_CERT);
3620
0
        return 0;
3621
0
    }
3622
0
#endif
3623
0
#ifndef OPENSSL_NO_DH
3624
0
    if ((alg_k & SSL_kDHE) && (s->s3->peer_tmp == NULL)) {
3625
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3626
0
                 ERR_R_INTERNAL_ERROR);
3627
0
        return 0;
3628
0
    }
3629
0
#endif
3630
3631
0
    return 1;
3632
0
}
3633
3634
#ifndef OPENSSL_NO_NEXTPROTONEG
3635
int tls_construct_next_proto(SSL *s, WPACKET *pkt)
3636
0
{
3637
0
    size_t len, padding_len;
3638
0
    unsigned char *padding = NULL;
3639
3640
0
    len = s->ext.npn_len;
3641
0
    padding_len = 32 - ((len + 2) % 32);
3642
3643
0
    if (!WPACKET_sub_memcpy_u8(pkt, s->ext.npn, len)
3644
0
            || !WPACKET_sub_allocate_bytes_u8(pkt, padding_len, &padding)) {
3645
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_NEXT_PROTO,
3646
0
                 ERR_R_INTERNAL_ERROR);
3647
0
        return 0;
3648
0
    }
3649
3650
0
    memset(padding, 0, padding_len);
3651
3652
0
    return 1;
3653
0
}
3654
#endif
3655
3656
MSG_PROCESS_RETURN tls_process_hello_req(SSL *s, PACKET *pkt)
3657
0
{
3658
0
    if (PACKET_remaining(pkt) > 0) {
3659
        /* should contain no data */
3660
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_HELLO_REQ,
3661
0
                 SSL_R_LENGTH_MISMATCH);
3662
0
        return MSG_PROCESS_ERROR;
3663
0
    }
3664
3665
0
    if ((s->options & SSL_OP_NO_RENEGOTIATION)) {
3666
0
        ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_RENEGOTIATION);
3667
0
        return MSG_PROCESS_FINISHED_READING;
3668
0
    }
3669
3670
    /*
3671
     * This is a historical discrepancy (not in the RFC) maintained for
3672
     * compatibility reasons. If a TLS client receives a HelloRequest it will
3673
     * attempt an abbreviated handshake. However if a DTLS client receives a
3674
     * HelloRequest it will do a full handshake. Either behaviour is reasonable
3675
     * but doing one for TLS and another for DTLS is odd.
3676
     */
3677
0
    if (SSL_IS_DTLS(s))
3678
0
        SSL_renegotiate(s);
3679
0
    else
3680
0
        SSL_renegotiate_abbreviated(s);
3681
3682
0
    return MSG_PROCESS_FINISHED_READING;
3683
0
}
3684
3685
static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt)
3686
0
{
3687
0
    PACKET extensions;
3688
0
    RAW_EXTENSION *rawexts = NULL;
3689
3690
0
    if (!PACKET_as_length_prefixed_2(pkt, &extensions)
3691
0
            || PACKET_remaining(pkt) != 0) {
3692
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_PROCESS_ENCRYPTED_EXTENSIONS,
3693
0
                 SSL_R_LENGTH_MISMATCH);
3694
0
        goto err;
3695
0
    }
3696
3697
0
    if (!tls_collect_extensions(s, &extensions,
3698
0
                                SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS, &rawexts,
3699
0
                                NULL, 1)
3700
0
            || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3701
0
                                         rawexts, NULL, 0, 1)) {
3702
        /* SSLfatal() already called */
3703
0
        goto err;
3704
0
    }
3705
3706
0
    OPENSSL_free(rawexts);
3707
0
    return MSG_PROCESS_CONTINUE_READING;
3708
3709
0
 err:
3710
0
    OPENSSL_free(rawexts);
3711
0
    return MSG_PROCESS_ERROR;
3712
0
}
3713
3714
int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey)
3715
0
{
3716
0
    int i = 0;
3717
0
#ifndef OPENSSL_NO_ENGINE
3718
0
    if (s->ctx->client_cert_engine) {
3719
0
        i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s,
3720
0
                                        SSL_get_client_CA_list(s),
3721
0
                                        px509, ppkey, NULL, NULL, NULL);
3722
0
        if (i != 0)
3723
0
            return i;
3724
0
    }
3725
0
#endif
3726
0
    if (s->ctx->client_cert_cb)
3727
0
        i = s->ctx->client_cert_cb(s, px509, ppkey);
3728
0
    return i;
3729
0
}
3730
3731
int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, WPACKET *pkt)
3732
67.5k
{
3733
67.5k
    int i;
3734
67.5k
    size_t totlen = 0, len, maxlen, maxverok = 0;
3735
67.5k
    int empty_reneg_info_scsv = !s->renegotiate;
3736
3737
    /* Set disabled masks for this session */
3738
67.5k
    if (!ssl_set_client_disabled(s)) {
3739
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3740
0
                 SSL_R_NO_PROTOCOLS_AVAILABLE);
3741
0
        return 0;
3742
0
    }
3743
3744
67.5k
    if (sk == NULL) {
3745
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3746
0
                 ERR_R_INTERNAL_ERROR);
3747
0
        return 0;
3748
0
    }
3749
3750
#ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
3751
# if OPENSSL_MAX_TLS1_2_CIPHER_LENGTH < 6
3752
#  error Max cipher length too short
3753
# endif
3754
    /*
3755
     * Some servers hang if client hello > 256 bytes as hack workaround
3756
     * chop number of supported ciphers to keep it well below this if we
3757
     * use TLS v1.2
3758
     */
3759
    if (TLS1_get_version(s) >= TLS1_2_VERSION)
3760
        maxlen = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
3761
    else
3762
#endif
3763
        /* Maximum length that can be stored in 2 bytes. Length must be even */
3764
67.5k
        maxlen = 0xfffe;
3765
3766
67.5k
    if (empty_reneg_info_scsv)
3767
67.5k
        maxlen -= 2;
3768
67.5k
    if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV)
3769
0
        maxlen -= 2;
3770
3771
4.11M
    for (i = 0; i < sk_SSL_CIPHER_num(sk) && totlen < maxlen; i++) {
3772
4.05M
        const SSL_CIPHER *c;
3773
3774
4.05M
        c = sk_SSL_CIPHER_value(sk, i);
3775
        /* Skip disabled ciphers */
3776
4.05M
        if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED, 0))
3777
2.02M
            continue;
3778
3779
2.02M
        if (!s->method->put_cipher_by_char(c, pkt, &len)) {
3780
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3781
0
                     ERR_R_INTERNAL_ERROR);
3782
0
            return 0;
3783
0
        }
3784
3785
        /* Sanity check that the maximum version we offer has ciphers enabled */
3786
2.02M
        if (!maxverok) {
3787
67.5k
            if (SSL_IS_DTLS(s)) {
3788
0
                if (DTLS_VERSION_GE(c->max_dtls, s->s3->tmp.max_ver)
3789
0
                        && DTLS_VERSION_LE(c->min_dtls, s->s3->tmp.max_ver))
3790
0
                    maxverok = 1;
3791
67.5k
            } else {
3792
67.5k
                if (c->max_tls >= s->s3->tmp.max_ver
3793
67.5k
                        && c->min_tls <= s->s3->tmp.max_ver)
3794
67.5k
                    maxverok = 1;
3795
67.5k
            }
3796
67.5k
        }
3797
3798
2.02M
        totlen += len;
3799
2.02M
    }
3800
3801
67.5k
    if (totlen == 0 || !maxverok) {
3802
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_SSL_CIPHER_LIST_TO_BYTES,
3803
0
                 SSL_R_NO_CIPHERS_AVAILABLE);
3804
3805
0
        if (!maxverok)
3806
0
            ERR_add_error_data(1, "No ciphers enabled for max supported "
3807
0
                                  "SSL/TLS version");
3808
3809
0
        return 0;
3810
0
    }
3811
3812
67.5k
    if (totlen != 0) {
3813
67.5k
        if (empty_reneg_info_scsv) {
3814
67.5k
            static SSL_CIPHER scsv = {
3815
67.5k
                0, NULL, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3816
67.5k
            };
3817
67.5k
            if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3818
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3819
0
                         SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3820
0
                return 0;
3821
0
            }
3822
67.5k
        }
3823
67.5k
        if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) {
3824
0
            static SSL_CIPHER scsv = {
3825
0
                0, NULL, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3826
0
            };
3827
0
            if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3828
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3829
0
                         SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3830
0
                return 0;
3831
0
            }
3832
0
        }
3833
67.5k
    }
3834
3835
67.5k
    return 1;
3836
67.5k
}
3837
3838
int tls_construct_end_of_early_data(SSL *s, WPACKET *pkt)
3839
0
{
3840
0
    if (s->early_data_state != SSL_EARLY_DATA_WRITE_RETRY
3841
0
            && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING) {
3842
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
3843
0
                 SSL_F_TLS_CONSTRUCT_END_OF_EARLY_DATA,
3844
0
                 ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3845
0
        return 0;
3846
0
    }
3847
3848
0
    s->early_data_state = SSL_EARLY_DATA_FINISHED_WRITING;
3849
0
    return 1;
3850
0
}