Coverage Report

Created: 2024-02-25 06:25

/src/openssl/ssl/statem/statem_srvr.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2023 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 Apache License 2.0 (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 "../ssl_local.h"
14
#include "statem_local.h"
15
#include "internal/constant_time.h"
16
#include "internal/cryptlib.h"
17
#include <openssl/buffer.h>
18
#include <openssl/rand.h>
19
#include <openssl/objects.h>
20
#include <openssl/evp.h>
21
#include <openssl/x509.h>
22
#include <openssl/dh.h>
23
#include <openssl/rsa.h>
24
#include <openssl/bn.h>
25
#include <openssl/md5.h>
26
#include <openssl/trace.h>
27
#include <openssl/core_names.h>
28
#include <openssl/asn1t.h>
29
#include <openssl/comp.h>
30
31
0
#define TICKET_NONCE_SIZE       8
32
33
typedef struct {
34
  ASN1_TYPE *kxBlob;
35
  ASN1_TYPE *opaqueBlob;
36
} GOST_KX_MESSAGE;
37
38
DECLARE_ASN1_FUNCTIONS(GOST_KX_MESSAGE)
39
40
ASN1_SEQUENCE(GOST_KX_MESSAGE) = {
41
  ASN1_SIMPLE(GOST_KX_MESSAGE,  kxBlob, ASN1_ANY),
42
  ASN1_OPT(GOST_KX_MESSAGE, opaqueBlob, ASN1_ANY),
43
} ASN1_SEQUENCE_END(GOST_KX_MESSAGE)
44
45
IMPLEMENT_ASN1_FUNCTIONS(GOST_KX_MESSAGE)
46
47
static CON_FUNC_RETURN tls_construct_encrypted_extensions(SSL_CONNECTION *s,
48
                                                          WPACKET *pkt);
49
50
static ossl_inline int received_client_cert(const SSL_CONNECTION *sc)
51
0
{
52
0
    return sc->session->peer_rpk != NULL || sc->session->peer != NULL;
53
0
}
54
55
/*
56
 * ossl_statem_server13_read_transition() encapsulates the logic for the allowed
57
 * handshake state transitions when a TLSv1.3 server is reading messages from
58
 * the client. The message type that the client has sent is provided in |mt|.
59
 * The current state is in |s->statem.hand_state|.
60
 *
61
 * Return values are 1 for success (transition allowed) and  0 on error
62
 * (transition not allowed)
63
 */
64
static int ossl_statem_server13_read_transition(SSL_CONNECTION *s, int mt)
65
0
{
66
0
    OSSL_STATEM *st = &s->statem;
67
68
    /*
69
     * Note: There is no case for TLS_ST_BEFORE because at that stage we have
70
     * not negotiated TLSv1.3 yet, so that case is handled by
71
     * ossl_statem_server_read_transition()
72
     */
73
0
    switch (st->hand_state) {
74
0
    default:
75
0
        break;
76
77
0
    case TLS_ST_EARLY_DATA:
78
0
        if (s->hello_retry_request == SSL_HRR_PENDING) {
79
0
            if (mt == SSL3_MT_CLIENT_HELLO) {
80
0
                st->hand_state = TLS_ST_SR_CLNT_HELLO;
81
0
                return 1;
82
0
            }
83
0
            break;
84
0
        } else if (s->ext.early_data == SSL_EARLY_DATA_ACCEPTED) {
85
0
            if (mt == SSL3_MT_END_OF_EARLY_DATA) {
86
0
                st->hand_state = TLS_ST_SR_END_OF_EARLY_DATA;
87
0
                return 1;
88
0
            }
89
0
            break;
90
0
        }
91
        /* Fall through */
92
93
0
    case TLS_ST_SR_END_OF_EARLY_DATA:
94
0
    case TLS_ST_SW_FINISHED:
95
0
        if (s->s3.tmp.cert_request) {
96
0
            if (mt == SSL3_MT_CERTIFICATE) {
97
0
                st->hand_state = TLS_ST_SR_CERT;
98
0
                return 1;
99
0
            }
100
#ifndef OPENSSL_NO_COMP_ALG
101
            if (mt == SSL3_MT_COMPRESSED_CERTIFICATE
102
                    && s->ext.compress_certificate_sent) {
103
                st->hand_state = TLS_ST_SR_COMP_CERT;
104
                return 1;
105
            }
106
#endif
107
0
        } else {
108
0
            if (mt == SSL3_MT_FINISHED) {
109
0
                st->hand_state = TLS_ST_SR_FINISHED;
110
0
                return 1;
111
0
            }
112
0
        }
113
0
        break;
114
115
0
    case TLS_ST_SR_COMP_CERT:
116
0
    case TLS_ST_SR_CERT:
117
0
        if (!received_client_cert(s)) {
118
0
            if (mt == SSL3_MT_FINISHED) {
119
0
                st->hand_state = TLS_ST_SR_FINISHED;
120
0
                return 1;
121
0
            }
122
0
        } else {
123
0
            if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
124
0
                st->hand_state = TLS_ST_SR_CERT_VRFY;
125
0
                return 1;
126
0
            }
127
0
        }
128
0
        break;
129
130
0
    case TLS_ST_SR_CERT_VRFY:
131
0
        if (mt == SSL3_MT_FINISHED) {
132
0
            st->hand_state = TLS_ST_SR_FINISHED;
133
0
            return 1;
134
0
        }
135
0
        break;
136
137
0
    case TLS_ST_OK:
138
        /*
139
         * Its never ok to start processing handshake messages in the middle of
140
         * early data (i.e. before we've received the end of early data alert)
141
         */
142
0
        if (s->early_data_state == SSL_EARLY_DATA_READING)
143
0
            break;
144
145
0
        if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
146
0
            if (mt == SSL3_MT_CERTIFICATE) {
147
0
                st->hand_state = TLS_ST_SR_CERT;
148
0
                return 1;
149
0
            }
150
#ifndef OPENSSL_NO_COMP_ALG
151
            if (mt == SSL3_MT_COMPRESSED_CERTIFICATE
152
                    && s->ext.compress_certificate_sent) {
153
                st->hand_state = TLS_ST_SR_COMP_CERT;
154
                return 1;
155
            }
156
#endif
157
0
        }
158
159
0
        if (mt == SSL3_MT_KEY_UPDATE && !SSL_IS_QUIC_HANDSHAKE(s)) {
160
0
            st->hand_state = TLS_ST_SR_KEY_UPDATE;
161
0
            return 1;
162
0
        }
163
0
        break;
164
0
    }
165
166
    /* No valid transition found */
167
0
    return 0;
168
0
}
169
170
/*
171
 * ossl_statem_server_read_transition() encapsulates the logic for the allowed
172
 * handshake state transitions when the server is reading messages from the
173
 * client. The message type that the client has sent is provided in |mt|. The
174
 * current state is in |s->statem.hand_state|.
175
 *
176
 * Return values are 1 for success (transition allowed) and  0 on error
177
 * (transition not allowed)
178
 */
179
int ossl_statem_server_read_transition(SSL_CONNECTION *s, int mt)
180
0
{
181
0
    OSSL_STATEM *st = &s->statem;
182
183
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
184
0
        if (!ossl_statem_server13_read_transition(s, mt))
185
0
            goto err;
186
0
        return 1;
187
0
    }
188
189
0
    switch (st->hand_state) {
190
0
    default:
191
0
        break;
192
193
0
    case TLS_ST_BEFORE:
194
0
    case TLS_ST_OK:
195
0
    case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
196
0
        if (mt == SSL3_MT_CLIENT_HELLO) {
197
0
            st->hand_state = TLS_ST_SR_CLNT_HELLO;
198
0
            return 1;
199
0
        }
200
0
        break;
201
202
0
    case TLS_ST_SW_SRVR_DONE:
203
        /*
204
         * If we get a CKE message after a ServerDone then either
205
         * 1) We didn't request a Certificate
206
         * OR
207
         * 2) If we did request one then
208
         *      a) We allow no Certificate to be returned
209
         *      AND
210
         *      b) We are running SSL3 (in TLS1.0+ the client must return a 0
211
         *         list if we requested a certificate)
212
         */
213
0
        if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
214
0
            if (s->s3.tmp.cert_request) {
215
0
                if (s->version == SSL3_VERSION) {
216
0
                    if ((s->verify_mode & SSL_VERIFY_PEER)
217
0
                        && (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
218
                        /*
219
                         * This isn't an unexpected message as such - we're just
220
                         * not going to accept it because we require a client
221
                         * cert.
222
                         */
223
0
                        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
224
0
                                 SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
225
0
                        return 0;
226
0
                    }
227
0
                    st->hand_state = TLS_ST_SR_KEY_EXCH;
228
0
                    return 1;
229
0
                }
230
0
            } else {
231
0
                st->hand_state = TLS_ST_SR_KEY_EXCH;
232
0
                return 1;
233
0
            }
234
0
        } else if (s->s3.tmp.cert_request) {
235
0
            if (mt == SSL3_MT_CERTIFICATE) {
236
0
                st->hand_state = TLS_ST_SR_CERT;
237
0
                return 1;
238
0
            }
239
0
        }
240
0
        break;
241
242
0
    case TLS_ST_SR_CERT:
243
0
        if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
244
0
            st->hand_state = TLS_ST_SR_KEY_EXCH;
245
0
            return 1;
246
0
        }
247
0
        break;
248
249
0
    case TLS_ST_SR_KEY_EXCH:
250
        /*
251
         * We should only process a CertificateVerify message if we have
252
         * received a Certificate from the client. If so then |s->session->peer|
253
         * will be non NULL. In some instances a CertificateVerify message is
254
         * not required even if the peer has sent a Certificate (e.g. such as in
255
         * the case of static DH). In that case |st->no_cert_verify| should be
256
         * set.
257
         */
258
0
        if (!received_client_cert(s) || st->no_cert_verify) {
259
0
            if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
260
                /*
261
                 * For the ECDH ciphersuites when the client sends its ECDH
262
                 * pub key in a certificate, the CertificateVerify message is
263
                 * not sent. Also for GOST ciphersuites when the client uses
264
                 * its key from the certificate for key exchange.
265
                 */
266
0
                st->hand_state = TLS_ST_SR_CHANGE;
267
0
                return 1;
268
0
            }
269
0
        } else {
270
0
            if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
271
0
                st->hand_state = TLS_ST_SR_CERT_VRFY;
272
0
                return 1;
273
0
            }
274
0
        }
275
0
        break;
276
277
0
    case TLS_ST_SR_CERT_VRFY:
278
0
        if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
279
0
            st->hand_state = TLS_ST_SR_CHANGE;
280
0
            return 1;
281
0
        }
282
0
        break;
283
284
0
    case TLS_ST_SR_CHANGE:
285
0
#ifndef OPENSSL_NO_NEXTPROTONEG
286
0
        if (s->s3.npn_seen) {
287
0
            if (mt == SSL3_MT_NEXT_PROTO) {
288
0
                st->hand_state = TLS_ST_SR_NEXT_PROTO;
289
0
                return 1;
290
0
            }
291
0
        } else {
292
0
#endif
293
0
            if (mt == SSL3_MT_FINISHED) {
294
0
                st->hand_state = TLS_ST_SR_FINISHED;
295
0
                return 1;
296
0
            }
297
0
#ifndef OPENSSL_NO_NEXTPROTONEG
298
0
        }
299
0
#endif
300
0
        break;
301
302
0
#ifndef OPENSSL_NO_NEXTPROTONEG
303
0
    case TLS_ST_SR_NEXT_PROTO:
304
0
        if (mt == SSL3_MT_FINISHED) {
305
0
            st->hand_state = TLS_ST_SR_FINISHED;
306
0
            return 1;
307
0
        }
308
0
        break;
309
0
#endif
310
311
0
    case TLS_ST_SW_FINISHED:
312
0
        if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
313
0
            st->hand_state = TLS_ST_SR_CHANGE;
314
0
            return 1;
315
0
        }
316
0
        break;
317
0
    }
318
319
0
 err:
320
    /* No valid transition found */
321
0
    if (SSL_CONNECTION_IS_DTLS(s) && mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
322
0
        BIO *rbio;
323
324
        /*
325
         * CCS messages don't have a message sequence number so this is probably
326
         * because of an out-of-order CCS. We'll just drop it.
327
         */
328
0
        s->init_num = 0;
329
0
        s->rwstate = SSL_READING;
330
0
        rbio = SSL_get_rbio(SSL_CONNECTION_GET_SSL(s));
331
0
        BIO_clear_retry_flags(rbio);
332
0
        BIO_set_retry_read(rbio);
333
0
        return 0;
334
0
    }
335
0
    SSLfatal(s, SSL3_AD_UNEXPECTED_MESSAGE, SSL_R_UNEXPECTED_MESSAGE);
336
0
    return 0;
337
0
}
338
339
/*
340
 * Should we send a ServerKeyExchange message?
341
 *
342
 * Valid return values are:
343
 *   1: Yes
344
 *   0: No
345
 */
346
static int send_server_key_exchange(SSL_CONNECTION *s)
347
0
{
348
0
    unsigned long alg_k = s->s3.tmp.new_cipher->algorithm_mkey;
349
350
    /*
351
     * only send a ServerKeyExchange if DH or fortezza but we have a
352
     * sign only certificate PSK: may send PSK identity hints For
353
     * ECC ciphersuites, we send a serverKeyExchange message only if
354
     * the cipher suite is either ECDH-anon or ECDHE. In other cases,
355
     * the server certificate contains the server's public key for
356
     * key exchange.
357
     */
358
0
    if (alg_k & (SSL_kDHE | SSL_kECDHE)
359
        /*
360
         * PSK: send ServerKeyExchange if PSK identity hint if
361
         * provided
362
         */
363
0
#ifndef OPENSSL_NO_PSK
364
        /* Only send SKE if we have identity hint for plain PSK */
365
0
        || ((alg_k & (SSL_kPSK | SSL_kRSAPSK))
366
0
            && s->cert->psk_identity_hint)
367
        /* For other PSK always send SKE */
368
0
        || (alg_k & (SSL_PSK & (SSL_kDHEPSK | SSL_kECDHEPSK)))
369
0
#endif
370
0
#ifndef OPENSSL_NO_SRP
371
        /* SRP: send ServerKeyExchange */
372
0
        || (alg_k & SSL_kSRP)
373
0
#endif
374
0
        ) {
375
0
        return 1;
376
0
    }
377
378
0
    return 0;
379
0
}
380
381
/*
382
 * Used to determine if we should send a CompressedCertificate message
383
 *
384
 * Returns the algorithm to use, TLSEXT_comp_cert_none means no compression
385
 */
386
static int get_compressed_certificate_alg(SSL_CONNECTION *sc)
387
0
{
388
#ifndef OPENSSL_NO_COMP_ALG
389
    int *alg = sc->ext.compress_certificate_from_peer;
390
391
    if (sc->s3.tmp.cert == NULL)
392
        return TLSEXT_comp_cert_none;
393
394
    for (; *alg != TLSEXT_comp_cert_none; alg++) {
395
        if (sc->s3.tmp.cert->comp_cert[*alg] != NULL)
396
            return *alg;
397
    }
398
#endif
399
0
    return TLSEXT_comp_cert_none;
400
0
}
401
402
/*
403
 * Should we send a CertificateRequest message?
404
 *
405
 * Valid return values are:
406
 *   1: Yes
407
 *   0: No
408
 */
409
int send_certificate_request(SSL_CONNECTION *s)
410
0
{
411
0
    if (
412
           /* don't request cert unless asked for it: */
413
0
           s->verify_mode & SSL_VERIFY_PEER
414
           /*
415
            * don't request if post-handshake-only unless doing
416
            * post-handshake in TLSv1.3:
417
            */
418
0
           && (!SSL_CONNECTION_IS_TLS13(s)
419
0
               || !(s->verify_mode & SSL_VERIFY_POST_HANDSHAKE)
420
0
               || s->post_handshake_auth == SSL_PHA_REQUEST_PENDING)
421
           /*
422
            * if SSL_VERIFY_CLIENT_ONCE is set, don't request cert
423
            * a second time:
424
            */
425
0
           && (s->certreqs_sent < 1 ||
426
0
               !(s->verify_mode & SSL_VERIFY_CLIENT_ONCE))
427
           /*
428
            * never request cert in anonymous ciphersuites (see
429
            * section "Certificate request" in SSL 3 drafts and in
430
            * RFC 2246):
431
            */
432
0
           && (!(s->s3.tmp.new_cipher->algorithm_auth & SSL_aNULL)
433
               /*
434
                * ... except when the application insists on
435
                * verification (against the specs, but statem_clnt.c accepts
436
                * this for SSL 3)
437
                */
438
0
               || (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
439
           /* don't request certificate for SRP auth */
440
0
           && !(s->s3.tmp.new_cipher->algorithm_auth & SSL_aSRP)
441
           /*
442
            * With normal PSK Certificates and Certificate Requests
443
            * are omitted
444
            */
445
0
           && !(s->s3.tmp.new_cipher->algorithm_auth & SSL_aPSK)) {
446
0
        return 1;
447
0
    }
448
449
0
    return 0;
450
0
}
451
452
static int do_compressed_cert(SSL_CONNECTION *sc)
453
0
{
454
    /* If we negotiated RPK, we won't attempt to compress it */
455
0
    return sc->ext.server_cert_type == TLSEXT_cert_type_x509
456
0
        && get_compressed_certificate_alg(sc) != TLSEXT_comp_cert_none;
457
0
}
458
459
/*
460
 * ossl_statem_server13_write_transition() works out what handshake state to
461
 * move to next when a TLSv1.3 server is writing messages to be sent to the
462
 * client.
463
 */
464
static WRITE_TRAN ossl_statem_server13_write_transition(SSL_CONNECTION *s)
465
0
{
466
0
    OSSL_STATEM *st = &s->statem;
467
468
    /*
469
     * No case for TLS_ST_BEFORE, because at that stage we have not negotiated
470
     * TLSv1.3 yet, so that is handled by ossl_statem_server_write_transition()
471
     */
472
473
0
    switch (st->hand_state) {
474
0
    default:
475
        /* Shouldn't happen */
476
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
477
0
        return WRITE_TRAN_ERROR;
478
479
0
    case TLS_ST_OK:
480
0
        if (s->key_update != SSL_KEY_UPDATE_NONE) {
481
0
            st->hand_state = TLS_ST_SW_KEY_UPDATE;
482
0
            return WRITE_TRAN_CONTINUE;
483
0
        }
484
0
        if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) {
485
0
            st->hand_state = TLS_ST_SW_CERT_REQ;
486
0
            return WRITE_TRAN_CONTINUE;
487
0
        }
488
0
        if (s->ext.extra_tickets_expected > 0) {
489
0
            st->hand_state = TLS_ST_SW_SESSION_TICKET;
490
0
            return WRITE_TRAN_CONTINUE;
491
0
        }
492
        /* Try to read from the client instead */
493
0
        return WRITE_TRAN_FINISHED;
494
495
0
    case TLS_ST_SR_CLNT_HELLO:
496
0
        st->hand_state = TLS_ST_SW_SRVR_HELLO;
497
0
        return WRITE_TRAN_CONTINUE;
498
499
0
    case TLS_ST_SW_SRVR_HELLO:
500
0
        if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0
501
0
                && s->hello_retry_request != SSL_HRR_COMPLETE)
502
0
            st->hand_state = TLS_ST_SW_CHANGE;
503
0
        else if (s->hello_retry_request == SSL_HRR_PENDING)
504
0
            st->hand_state = TLS_ST_EARLY_DATA;
505
0
        else
506
0
            st->hand_state = TLS_ST_SW_ENCRYPTED_EXTENSIONS;
507
0
        return WRITE_TRAN_CONTINUE;
508
509
0
    case TLS_ST_SW_CHANGE:
510
0
        if (s->hello_retry_request == SSL_HRR_PENDING)
511
0
            st->hand_state = TLS_ST_EARLY_DATA;
512
0
        else
513
0
            st->hand_state = TLS_ST_SW_ENCRYPTED_EXTENSIONS;
514
0
        return WRITE_TRAN_CONTINUE;
515
516
0
    case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
517
0
        if (s->hit)
518
0
            st->hand_state = TLS_ST_SW_FINISHED;
519
0
        else if (send_certificate_request(s))
520
0
            st->hand_state = TLS_ST_SW_CERT_REQ;
521
0
        else if (do_compressed_cert(s))
522
0
            st->hand_state = TLS_ST_SW_COMP_CERT;
523
0
        else
524
0
            st->hand_state = TLS_ST_SW_CERT;
525
526
0
        return WRITE_TRAN_CONTINUE;
527
528
0
    case TLS_ST_SW_CERT_REQ:
529
0
        if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) {
530
0
            s->post_handshake_auth = SSL_PHA_REQUESTED;
531
0
            st->hand_state = TLS_ST_OK;
532
0
        } else if (do_compressed_cert(s)) {
533
0
            st->hand_state = TLS_ST_SW_COMP_CERT;
534
0
        } else {
535
0
            st->hand_state = TLS_ST_SW_CERT;
536
0
        }
537
0
        return WRITE_TRAN_CONTINUE;
538
539
0
    case TLS_ST_SW_COMP_CERT:
540
0
    case TLS_ST_SW_CERT:
541
0
        st->hand_state = TLS_ST_SW_CERT_VRFY;
542
0
        return WRITE_TRAN_CONTINUE;
543
544
0
    case TLS_ST_SW_CERT_VRFY:
545
0
        st->hand_state = TLS_ST_SW_FINISHED;
546
0
        return WRITE_TRAN_CONTINUE;
547
548
0
    case TLS_ST_SW_FINISHED:
549
0
        st->hand_state = TLS_ST_EARLY_DATA;
550
0
        s->ts_msg_write = ossl_time_now();
551
0
        return WRITE_TRAN_CONTINUE;
552
553
0
    case TLS_ST_EARLY_DATA:
554
0
        return WRITE_TRAN_FINISHED;
555
556
0
    case TLS_ST_SR_FINISHED:
557
0
        s->ts_msg_read = ossl_time_now();
558
        /*
559
         * Technically we have finished the handshake at this point, but we're
560
         * going to remain "in_init" for now and write out any session tickets
561
         * immediately.
562
         */
563
0
        if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
564
0
            s->post_handshake_auth = SSL_PHA_EXT_RECEIVED;
565
0
        } else if (!s->ext.ticket_expected) {
566
            /*
567
             * If we're not going to renew the ticket then we just finish the
568
             * handshake at this point.
569
             */
570
0
            st->hand_state = TLS_ST_OK;
571
0
            return WRITE_TRAN_CONTINUE;
572
0
        }
573
0
        if (s->num_tickets > s->sent_tickets)
574
0
            st->hand_state = TLS_ST_SW_SESSION_TICKET;
575
0
        else
576
0
            st->hand_state = TLS_ST_OK;
577
0
        return WRITE_TRAN_CONTINUE;
578
579
0
    case TLS_ST_SR_KEY_UPDATE:
580
0
    case TLS_ST_SW_KEY_UPDATE:
581
0
        st->hand_state = TLS_ST_OK;
582
0
        return WRITE_TRAN_CONTINUE;
583
584
0
    case TLS_ST_SW_SESSION_TICKET:
585
        /* In a resumption we only ever send a maximum of one new ticket.
586
         * Following an initial handshake we send the number of tickets we have
587
         * been configured for.
588
         */
589
0
        if (!SSL_IS_FIRST_HANDSHAKE(s) && s->ext.extra_tickets_expected > 0) {
590
0
            return WRITE_TRAN_CONTINUE;
591
0
        } else if (s->hit || s->num_tickets <= s->sent_tickets) {
592
            /* We've written enough tickets out. */
593
0
            st->hand_state = TLS_ST_OK;
594
0
        }
595
0
        return WRITE_TRAN_CONTINUE;
596
0
    }
597
0
}
598
599
/*
600
 * ossl_statem_server_write_transition() works out what handshake state to move
601
 * to next when the server is writing messages to be sent to the client.
602
 */
603
WRITE_TRAN ossl_statem_server_write_transition(SSL_CONNECTION *s)
604
0
{
605
0
    OSSL_STATEM *st = &s->statem;
606
607
    /*
608
     * Note that before the ClientHello we don't know what version we are going
609
     * to negotiate yet, so we don't take this branch until later
610
     */
611
612
0
    if (SSL_CONNECTION_IS_TLS13(s))
613
0
        return ossl_statem_server13_write_transition(s);
614
615
0
    switch (st->hand_state) {
616
0
    default:
617
        /* Shouldn't happen */
618
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
619
0
        return WRITE_TRAN_ERROR;
620
621
0
    case TLS_ST_OK:
622
0
        if (st->request_state == TLS_ST_SW_HELLO_REQ) {
623
            /* We must be trying to renegotiate */
624
0
            st->hand_state = TLS_ST_SW_HELLO_REQ;
625
0
            st->request_state = TLS_ST_BEFORE;
626
0
            return WRITE_TRAN_CONTINUE;
627
0
        }
628
        /* Must be an incoming ClientHello */
629
0
        if (!tls_setup_handshake(s)) {
630
            /* SSLfatal() already called */
631
0
            return WRITE_TRAN_ERROR;
632
0
        }
633
        /* Fall through */
634
635
0
    case TLS_ST_BEFORE:
636
        /* Just go straight to trying to read from the client */
637
0
        return WRITE_TRAN_FINISHED;
638
639
0
    case TLS_ST_SW_HELLO_REQ:
640
0
        st->hand_state = TLS_ST_OK;
641
0
        return WRITE_TRAN_CONTINUE;
642
643
0
    case TLS_ST_SR_CLNT_HELLO:
644
0
        if (SSL_CONNECTION_IS_DTLS(s) && !s->d1->cookie_verified
645
0
            && (SSL_get_options(SSL_CONNECTION_GET_SSL(s)) & SSL_OP_COOKIE_EXCHANGE)) {
646
0
            st->hand_state = DTLS_ST_SW_HELLO_VERIFY_REQUEST;
647
0
        } else if (s->renegotiate == 0 && !SSL_IS_FIRST_HANDSHAKE(s)) {
648
            /* We must have rejected the renegotiation */
649
0
            st->hand_state = TLS_ST_OK;
650
0
            return WRITE_TRAN_CONTINUE;
651
0
        } else {
652
0
            st->hand_state = TLS_ST_SW_SRVR_HELLO;
653
0
        }
654
0
        return WRITE_TRAN_CONTINUE;
655
656
0
    case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
657
0
        return WRITE_TRAN_FINISHED;
658
659
0
    case TLS_ST_SW_SRVR_HELLO:
660
0
        if (s->hit) {
661
0
            if (s->ext.ticket_expected)
662
0
                st->hand_state = TLS_ST_SW_SESSION_TICKET;
663
0
            else
664
0
                st->hand_state = TLS_ST_SW_CHANGE;
665
0
        } else {
666
            /* Check if it is anon DH or anon ECDH, */
667
            /* normal PSK or SRP */
668
0
            if (!(s->s3.tmp.new_cipher->algorithm_auth &
669
0
                  (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
670
0
                st->hand_state = TLS_ST_SW_CERT;
671
0
            } else if (send_server_key_exchange(s)) {
672
0
                st->hand_state = TLS_ST_SW_KEY_EXCH;
673
0
            } else if (send_certificate_request(s)) {
674
0
                st->hand_state = TLS_ST_SW_CERT_REQ;
675
0
            } else {
676
0
                st->hand_state = TLS_ST_SW_SRVR_DONE;
677
0
            }
678
0
        }
679
0
        return WRITE_TRAN_CONTINUE;
680
681
0
    case TLS_ST_SW_CERT:
682
0
        if (s->ext.status_expected) {
683
0
            st->hand_state = TLS_ST_SW_CERT_STATUS;
684
0
            return WRITE_TRAN_CONTINUE;
685
0
        }
686
        /* Fall through */
687
688
0
    case TLS_ST_SW_CERT_STATUS:
689
0
        if (send_server_key_exchange(s)) {
690
0
            st->hand_state = TLS_ST_SW_KEY_EXCH;
691
0
            return WRITE_TRAN_CONTINUE;
692
0
        }
693
        /* Fall through */
694
695
0
    case TLS_ST_SW_KEY_EXCH:
696
0
        if (send_certificate_request(s)) {
697
0
            st->hand_state = TLS_ST_SW_CERT_REQ;
698
0
            return WRITE_TRAN_CONTINUE;
699
0
        }
700
        /* Fall through */
701
702
0
    case TLS_ST_SW_CERT_REQ:
703
0
        st->hand_state = TLS_ST_SW_SRVR_DONE;
704
0
        return WRITE_TRAN_CONTINUE;
705
706
0
    case TLS_ST_SW_SRVR_DONE:
707
0
        s->ts_msg_write = ossl_time_now();
708
0
        return WRITE_TRAN_FINISHED;
709
710
0
    case TLS_ST_SR_FINISHED:
711
0
        s->ts_msg_read = ossl_time_now();
712
0
        if (s->hit) {
713
0
            st->hand_state = TLS_ST_OK;
714
0
            return WRITE_TRAN_CONTINUE;
715
0
        } else if (s->ext.ticket_expected) {
716
0
            st->hand_state = TLS_ST_SW_SESSION_TICKET;
717
0
        } else {
718
0
            st->hand_state = TLS_ST_SW_CHANGE;
719
0
        }
720
0
        return WRITE_TRAN_CONTINUE;
721
722
0
    case TLS_ST_SW_SESSION_TICKET:
723
0
        st->hand_state = TLS_ST_SW_CHANGE;
724
0
        return WRITE_TRAN_CONTINUE;
725
726
0
    case TLS_ST_SW_CHANGE:
727
0
        st->hand_state = TLS_ST_SW_FINISHED;
728
0
        return WRITE_TRAN_CONTINUE;
729
730
0
    case TLS_ST_SW_FINISHED:
731
0
        if (s->hit) {
732
0
            return WRITE_TRAN_FINISHED;
733
0
        }
734
0
        st->hand_state = TLS_ST_OK;
735
0
        return WRITE_TRAN_CONTINUE;
736
0
    }
737
0
}
738
739
/*
740
 * Perform any pre work that needs to be done prior to sending a message from
741
 * the server to the client.
742
 */
743
WORK_STATE ossl_statem_server_pre_work(SSL_CONNECTION *s, WORK_STATE wst)
744
0
{
745
0
    OSSL_STATEM *st = &s->statem;
746
0
    SSL *ssl = SSL_CONNECTION_GET_SSL(s);
747
748
0
    switch (st->hand_state) {
749
0
    default:
750
        /* No pre work to be done */
751
0
        break;
752
753
0
    case TLS_ST_SW_HELLO_REQ:
754
0
        s->shutdown = 0;
755
0
        if (SSL_CONNECTION_IS_DTLS(s))
756
0
            dtls1_clear_sent_buffer(s);
757
0
        break;
758
759
0
    case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
760
0
        s->shutdown = 0;
761
0
        if (SSL_CONNECTION_IS_DTLS(s)) {
762
0
            dtls1_clear_sent_buffer(s);
763
            /* We don't buffer this message so don't use the timer */
764
0
            st->use_timer = 0;
765
0
        }
766
0
        break;
767
768
0
    case TLS_ST_SW_SRVR_HELLO:
769
0
        if (SSL_CONNECTION_IS_DTLS(s)) {
770
            /*
771
             * Messages we write from now on should be buffered and
772
             * retransmitted if necessary, so we need to use the timer now
773
             */
774
0
            st->use_timer = 1;
775
0
        }
776
0
        break;
777
778
0
    case TLS_ST_SW_SRVR_DONE:
779
#ifndef OPENSSL_NO_SCTP
780
        if (SSL_CONNECTION_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(ssl))) {
781
            /* Calls SSLfatal() as required */
782
            return dtls_wait_for_dry(s);
783
        }
784
#endif
785
0
        return WORK_FINISHED_CONTINUE;
786
787
0
    case TLS_ST_SW_SESSION_TICKET:
788
0
        if (SSL_CONNECTION_IS_TLS13(s) && s->sent_tickets == 0
789
0
                && s->ext.extra_tickets_expected == 0) {
790
            /*
791
             * Actually this is the end of the handshake, but we're going
792
             * straight into writing the session ticket out. So we finish off
793
             * the handshake, but keep the various buffers active.
794
             *
795
             * Calls SSLfatal as required.
796
             */
797
0
            return tls_finish_handshake(s, wst, 0, 0);
798
0
        }
799
0
        if (SSL_CONNECTION_IS_DTLS(s)) {
800
            /*
801
             * We're into the last flight. We don't retransmit the last flight
802
             * unless we need to, so we don't use the timer
803
             */
804
0
            st->use_timer = 0;
805
0
        }
806
0
        break;
807
808
0
    case TLS_ST_SW_CHANGE:
809
0
        if (SSL_CONNECTION_IS_TLS13(s))
810
0
            break;
811
        /* Writes to s->session are only safe for initial handshakes */
812
0
        if (s->session->cipher == NULL) {
813
0
            s->session->cipher = s->s3.tmp.new_cipher;
814
0
        } else if (s->session->cipher != s->s3.tmp.new_cipher) {
815
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
816
0
            return WORK_ERROR;
817
0
        }
818
0
        if (!ssl->method->ssl3_enc->setup_key_block(s)) {
819
            /* SSLfatal() already called */
820
0
            return WORK_ERROR;
821
0
        }
822
0
        if (SSL_CONNECTION_IS_DTLS(s)) {
823
            /*
824
             * We're into the last flight. We don't retransmit the last flight
825
             * unless we need to, so we don't use the timer. This might have
826
             * already been set to 0 if we sent a NewSessionTicket message,
827
             * but we'll set it again here in case we didn't.
828
             */
829
0
            st->use_timer = 0;
830
0
        }
831
0
        return WORK_FINISHED_CONTINUE;
832
833
0
    case TLS_ST_EARLY_DATA:
834
0
        if (s->early_data_state != SSL_EARLY_DATA_ACCEPTING
835
0
                && (s->s3.flags & TLS1_FLAGS_STATELESS) == 0)
836
0
            return WORK_FINISHED_CONTINUE;
837
        /* Fall through */
838
839
0
    case TLS_ST_OK:
840
        /* Calls SSLfatal() as required */
841
0
        return tls_finish_handshake(s, wst, 1, 1);
842
0
    }
843
844
0
    return WORK_FINISHED_CONTINUE;
845
0
}
846
847
static ossl_inline int conn_is_closed(void)
848
0
{
849
0
    switch (get_last_sys_error()) {
850
0
#if defined(EPIPE)
851
0
    case EPIPE:
852
0
        return 1;
853
0
#endif
854
0
#if defined(ECONNRESET)
855
0
    case ECONNRESET:
856
0
        return 1;
857
0
#endif
858
#if defined(WSAECONNRESET)
859
    case WSAECONNRESET:
860
        return 1;
861
#endif
862
0
    default:
863
0
        return 0;
864
0
    }
865
0
}
866
867
/*
868
 * Perform any work that needs to be done after sending a message from the
869
 * server to the client.
870
 */
871
WORK_STATE ossl_statem_server_post_work(SSL_CONNECTION *s, WORK_STATE wst)
872
0
{
873
0
    OSSL_STATEM *st = &s->statem;
874
0
    SSL *ssl = SSL_CONNECTION_GET_SSL(s);
875
876
0
    s->init_num = 0;
877
878
0
    switch (st->hand_state) {
879
0
    default:
880
        /* No post work to be done */
881
0
        break;
882
883
0
    case TLS_ST_SW_HELLO_REQ:
884
0
        if (statem_flush(s) != 1)
885
0
            return WORK_MORE_A;
886
0
        if (!ssl3_init_finished_mac(s)) {
887
            /* SSLfatal() already called */
888
0
            return WORK_ERROR;
889
0
        }
890
0
        break;
891
892
0
    case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
893
0
        if (statem_flush(s) != 1)
894
0
            return WORK_MORE_A;
895
        /* HelloVerifyRequest resets Finished MAC */
896
0
        if (s->version != DTLS1_BAD_VER && !ssl3_init_finished_mac(s)) {
897
            /* SSLfatal() already called */
898
0
            return WORK_ERROR;
899
0
        }
900
        /*
901
         * The next message should be another ClientHello which we need to
902
         * treat like it was the first packet
903
         */
904
0
        s->first_packet = 1;
905
0
        break;
906
907
0
    case TLS_ST_SW_SRVR_HELLO:
908
0
        if (SSL_CONNECTION_IS_TLS13(s)
909
0
            && s->hello_retry_request == SSL_HRR_PENDING) {
910
0
            if ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) == 0
911
0
                    && statem_flush(s) != 1)
912
0
                return WORK_MORE_A;
913
0
            break;
914
0
        }
915
#ifndef OPENSSL_NO_SCTP
916
        if (SSL_CONNECTION_IS_DTLS(s) && s->hit) {
917
            unsigned char sctpauthkey[64];
918
            char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
919
            size_t labellen;
920
921
            /*
922
             * Add new shared key for SCTP-Auth, will be ignored if no
923
             * SCTP used.
924
             */
925
            memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
926
                   sizeof(DTLS1_SCTP_AUTH_LABEL));
927
928
            /* Don't include the terminating zero. */
929
            labellen = sizeof(labelbuffer) - 1;
930
            if (s->mode & SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG)
931
                labellen += 1;
932
933
            if (SSL_export_keying_material(ssl, sctpauthkey,
934
                                           sizeof(sctpauthkey), labelbuffer,
935
                                           labellen, NULL, 0,
936
                                           0) <= 0) {
937
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
938
                return WORK_ERROR;
939
            }
940
941
            BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
942
                     sizeof(sctpauthkey), sctpauthkey);
943
        }
944
#endif
945
0
        if (!SSL_CONNECTION_IS_TLS13(s)
946
0
                || ((s->options & SSL_OP_ENABLE_MIDDLEBOX_COMPAT) != 0
947
0
                    && s->hello_retry_request != SSL_HRR_COMPLETE))
948
0
            break;
949
        /* Fall through */
950
951
0
    case TLS_ST_SW_CHANGE:
952
0
        if (s->hello_retry_request == SSL_HRR_PENDING) {
953
0
            if (!statem_flush(s))
954
0
                return WORK_MORE_A;
955
0
            break;
956
0
        }
957
958
0
        if (SSL_CONNECTION_IS_TLS13(s)) {
959
0
            if (!ssl->method->ssl3_enc->setup_key_block(s)
960
0
                || !ssl->method->ssl3_enc->change_cipher_state(s,
961
0
                        SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_WRITE)) {
962
                /* SSLfatal() already called */
963
0
                return WORK_ERROR;
964
0
            }
965
966
0
            if (s->ext.early_data != SSL_EARLY_DATA_ACCEPTED
967
0
                && !ssl->method->ssl3_enc->change_cipher_state(s,
968
0
                        SSL3_CC_HANDSHAKE |SSL3_CHANGE_CIPHER_SERVER_READ)) {
969
                /* SSLfatal() already called */
970
0
                return WORK_ERROR;
971
0
            }
972
            /*
973
             * We don't yet know whether the next record we are going to receive
974
             * is an unencrypted alert, an encrypted alert, or an encrypted
975
             * handshake message. We temporarily tolerate unencrypted alerts.
976
             */
977
0
            if (s->rlayer.rrlmethod->set_plain_alerts != NULL)
978
0
                s->rlayer.rrlmethod->set_plain_alerts(s->rlayer.rrl, 1);
979
0
            break;
980
0
        }
981
982
#ifndef OPENSSL_NO_SCTP
983
        if (SSL_CONNECTION_IS_DTLS(s) && !s->hit) {
984
            /*
985
             * Change to new shared key of SCTP-Auth, will be ignored if
986
             * no SCTP used.
987
             */
988
            BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
989
                     0, NULL);
990
        }
991
#endif
992
0
        if (!ssl->method->ssl3_enc->change_cipher_state(s,
993
0
                                SSL3_CHANGE_CIPHER_SERVER_WRITE)) {
994
            /* SSLfatal() already called */
995
0
            return WORK_ERROR;
996
0
        }
997
0
        break;
998
999
0
    case TLS_ST_SW_SRVR_DONE:
1000
0
        if (statem_flush(s) != 1)
1001
0
            return WORK_MORE_A;
1002
0
        break;
1003
1004
0
    case TLS_ST_SW_FINISHED:
1005
0
        if (statem_flush(s) != 1)
1006
0
            return WORK_MORE_A;
1007
#ifndef OPENSSL_NO_SCTP
1008
        if (SSL_CONNECTION_IS_DTLS(s) && s->hit) {
1009
            /*
1010
             * Change to new shared key of SCTP-Auth, will be ignored if
1011
             * no SCTP used.
1012
             */
1013
            BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
1014
                     0, NULL);
1015
        }
1016
#endif
1017
0
        if (SSL_CONNECTION_IS_TLS13(s)) {
1018
            /* TLS 1.3 gets the secret size from the handshake md */
1019
0
            size_t dummy;
1020
0
            if (!ssl->method->ssl3_enc->generate_master_secret(s,
1021
0
                        s->master_secret, s->handshake_secret, 0,
1022
0
                        &dummy)
1023
0
                || !ssl->method->ssl3_enc->change_cipher_state(s,
1024
0
                        SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_WRITE))
1025
            /* SSLfatal() already called */
1026
0
            return WORK_ERROR;
1027
0
        }
1028
0
        break;
1029
1030
0
    case TLS_ST_SW_CERT_REQ:
1031
0
        if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) {
1032
0
            if (statem_flush(s) != 1)
1033
0
                return WORK_MORE_A;
1034
0
        } else {
1035
0
            if (!SSL_CONNECTION_IS_TLS13(s)
1036
0
                    || (s->options & SSL_OP_NO_TX_CERTIFICATE_COMPRESSION) != 0)
1037
0
                s->ext.compress_certificate_from_peer[0] = TLSEXT_comp_cert_none;
1038
0
        }
1039
0
        break;
1040
1041
0
    case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
1042
0
        if (!s->hit && !send_certificate_request(s)) {
1043
0
            if (!SSL_CONNECTION_IS_TLS13(s)
1044
0
                    || (s->options & SSL_OP_NO_TX_CERTIFICATE_COMPRESSION) != 0)
1045
0
                s->ext.compress_certificate_from_peer[0] = TLSEXT_comp_cert_none;
1046
0
        }
1047
0
        break;
1048
1049
0
    case TLS_ST_SW_KEY_UPDATE:
1050
0
        if (statem_flush(s) != 1)
1051
0
            return WORK_MORE_A;
1052
0
        if (!tls13_update_key(s, 1)) {
1053
            /* SSLfatal() already called */
1054
0
            return WORK_ERROR;
1055
0
        }
1056
0
        break;
1057
1058
0
    case TLS_ST_SW_SESSION_TICKET:
1059
0
        clear_sys_error();
1060
0
        if (SSL_CONNECTION_IS_TLS13(s) && statem_flush(s) != 1) {
1061
0
            if (SSL_get_error(ssl, 0) == SSL_ERROR_SYSCALL
1062
0
                    && conn_is_closed()) {
1063
                /*
1064
                 * We ignore connection closed errors in TLSv1.3 when sending a
1065
                 * NewSessionTicket and behave as if we were successful. This is
1066
                 * so that we are still able to read data sent to us by a client
1067
                 * that closes soon after the end of the handshake without
1068
                 * waiting to read our post-handshake NewSessionTickets.
1069
                 */
1070
0
                s->rwstate = SSL_NOTHING;
1071
0
                break;
1072
0
            }
1073
1074
0
            return WORK_MORE_A;
1075
0
        }
1076
0
        break;
1077
0
    }
1078
1079
0
    return WORK_FINISHED_CONTINUE;
1080
0
}
1081
1082
/*
1083
 * Get the message construction function and message type for sending from the
1084
 * server
1085
 *
1086
 * Valid return values are:
1087
 *   1: Success
1088
 *   0: Error
1089
 */
1090
int ossl_statem_server_construct_message(SSL_CONNECTION *s,
1091
                                         confunc_f *confunc, int *mt)
1092
0
{
1093
0
    OSSL_STATEM *st = &s->statem;
1094
1095
0
    switch (st->hand_state) {
1096
0
    default:
1097
        /* Shouldn't happen */
1098
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_BAD_HANDSHAKE_STATE);
1099
0
        return 0;
1100
1101
0
    case TLS_ST_SW_CHANGE:
1102
0
        if (SSL_CONNECTION_IS_DTLS(s))
1103
0
            *confunc = dtls_construct_change_cipher_spec;
1104
0
        else
1105
0
            *confunc = tls_construct_change_cipher_spec;
1106
0
        *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
1107
0
        break;
1108
1109
0
    case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
1110
0
        *confunc = dtls_construct_hello_verify_request;
1111
0
        *mt = DTLS1_MT_HELLO_VERIFY_REQUEST;
1112
0
        break;
1113
1114
0
    case TLS_ST_SW_HELLO_REQ:
1115
        /* No construction function needed */
1116
0
        *confunc = NULL;
1117
0
        *mt = SSL3_MT_HELLO_REQUEST;
1118
0
        break;
1119
1120
0
    case TLS_ST_SW_SRVR_HELLO:
1121
0
        *confunc = tls_construct_server_hello;
1122
0
        *mt = SSL3_MT_SERVER_HELLO;
1123
0
        break;
1124
1125
0
    case TLS_ST_SW_CERT:
1126
0
        *confunc = tls_construct_server_certificate;
1127
0
        *mt = SSL3_MT_CERTIFICATE;
1128
0
        break;
1129
1130
#ifndef OPENSSL_NO_COMP_ALG
1131
    case TLS_ST_SW_COMP_CERT:
1132
        *confunc = tls_construct_server_compressed_certificate;
1133
        *mt = SSL3_MT_COMPRESSED_CERTIFICATE;
1134
        break;
1135
#endif
1136
1137
0
    case TLS_ST_SW_CERT_VRFY:
1138
0
        *confunc = tls_construct_cert_verify;
1139
0
        *mt = SSL3_MT_CERTIFICATE_VERIFY;
1140
0
        break;
1141
1142
1143
0
    case TLS_ST_SW_KEY_EXCH:
1144
0
        *confunc = tls_construct_server_key_exchange;
1145
0
        *mt = SSL3_MT_SERVER_KEY_EXCHANGE;
1146
0
        break;
1147
1148
0
    case TLS_ST_SW_CERT_REQ:
1149
0
        *confunc = tls_construct_certificate_request;
1150
0
        *mt = SSL3_MT_CERTIFICATE_REQUEST;
1151
0
        break;
1152
1153
0
    case TLS_ST_SW_SRVR_DONE:
1154
0
        *confunc = tls_construct_server_done;
1155
0
        *mt = SSL3_MT_SERVER_DONE;
1156
0
        break;
1157
1158
0
    case TLS_ST_SW_SESSION_TICKET:
1159
0
        *confunc = tls_construct_new_session_ticket;
1160
0
        *mt = SSL3_MT_NEWSESSION_TICKET;
1161
0
        break;
1162
1163
0
    case TLS_ST_SW_CERT_STATUS:
1164
0
        *confunc = tls_construct_cert_status;
1165
0
        *mt = SSL3_MT_CERTIFICATE_STATUS;
1166
0
        break;
1167
1168
0
    case TLS_ST_SW_FINISHED:
1169
0
        *confunc = tls_construct_finished;
1170
0
        *mt = SSL3_MT_FINISHED;
1171
0
        break;
1172
1173
0
    case TLS_ST_EARLY_DATA:
1174
0
        *confunc = NULL;
1175
0
        *mt = SSL3_MT_DUMMY;
1176
0
        break;
1177
1178
0
    case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
1179
0
        *confunc = tls_construct_encrypted_extensions;
1180
0
        *mt = SSL3_MT_ENCRYPTED_EXTENSIONS;
1181
0
        break;
1182
1183
0
    case TLS_ST_SW_KEY_UPDATE:
1184
0
        *confunc = tls_construct_key_update;
1185
0
        *mt = SSL3_MT_KEY_UPDATE;
1186
0
        break;
1187
0
    }
1188
1189
0
    return 1;
1190
0
}
1191
1192
/*
1193
 * Maximum size (excluding the Handshake header) of a ClientHello message,
1194
 * calculated as follows:
1195
 *
1196
 *  2 + # client_version
1197
 *  32 + # only valid length for random
1198
 *  1 + # length of session_id
1199
 *  32 + # maximum size for session_id
1200
 *  2 + # length of cipher suites
1201
 *  2^16-2 + # maximum length of cipher suites array
1202
 *  1 + # length of compression_methods
1203
 *  2^8-1 + # maximum length of compression methods
1204
 *  2 + # length of extensions
1205
 *  2^16-1 # maximum length of extensions
1206
 */
1207
0
#define CLIENT_HELLO_MAX_LENGTH         131396
1208
1209
0
#define CLIENT_KEY_EXCH_MAX_LENGTH      2048
1210
0
#define NEXT_PROTO_MAX_LENGTH           514
1211
1212
/*
1213
 * Returns the maximum allowed length for the current message that we are
1214
 * reading. Excludes the message header.
1215
 */
1216
size_t ossl_statem_server_max_message_size(SSL_CONNECTION *s)
1217
0
{
1218
0
    OSSL_STATEM *st = &s->statem;
1219
1220
0
    switch (st->hand_state) {
1221
0
    default:
1222
        /* Shouldn't happen */
1223
0
        return 0;
1224
1225
0
    case TLS_ST_SR_CLNT_HELLO:
1226
0
        return CLIENT_HELLO_MAX_LENGTH;
1227
1228
0
    case TLS_ST_SR_END_OF_EARLY_DATA:
1229
0
        return END_OF_EARLY_DATA_MAX_LENGTH;
1230
1231
0
    case TLS_ST_SR_COMP_CERT:
1232
0
    case TLS_ST_SR_CERT:
1233
0
        return s->max_cert_list;
1234
1235
0
    case TLS_ST_SR_KEY_EXCH:
1236
0
        return CLIENT_KEY_EXCH_MAX_LENGTH;
1237
1238
0
    case TLS_ST_SR_CERT_VRFY:
1239
0
        return CERTIFICATE_VERIFY_MAX_LENGTH;
1240
1241
0
#ifndef OPENSSL_NO_NEXTPROTONEG
1242
0
    case TLS_ST_SR_NEXT_PROTO:
1243
0
        return NEXT_PROTO_MAX_LENGTH;
1244
0
#endif
1245
1246
0
    case TLS_ST_SR_CHANGE:
1247
0
        return CCS_MAX_LENGTH;
1248
1249
0
    case TLS_ST_SR_FINISHED:
1250
0
        return FINISHED_MAX_LENGTH;
1251
1252
0
    case TLS_ST_SR_KEY_UPDATE:
1253
0
        return KEY_UPDATE_MAX_LENGTH;
1254
0
    }
1255
0
}
1256
1257
/*
1258
 * Process a message that the server has received from the client.
1259
 */
1260
MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL_CONNECTION *s,
1261
                                                      PACKET *pkt)
1262
0
{
1263
0
    OSSL_STATEM *st = &s->statem;
1264
1265
0
    switch (st->hand_state) {
1266
0
    default:
1267
        /* Shouldn't happen */
1268
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1269
0
        return MSG_PROCESS_ERROR;
1270
1271
0
    case TLS_ST_SR_CLNT_HELLO:
1272
0
        return tls_process_client_hello(s, pkt);
1273
1274
0
    case TLS_ST_SR_END_OF_EARLY_DATA:
1275
0
        return tls_process_end_of_early_data(s, pkt);
1276
1277
0
    case TLS_ST_SR_CERT:
1278
0
        return tls_process_client_certificate(s, pkt);
1279
1280
#ifndef OPENSSL_NO_COMP_ALG
1281
    case TLS_ST_SR_COMP_CERT:
1282
        return tls_process_client_compressed_certificate(s, pkt);
1283
#endif
1284
1285
0
    case TLS_ST_SR_KEY_EXCH:
1286
0
        return tls_process_client_key_exchange(s, pkt);
1287
1288
0
    case TLS_ST_SR_CERT_VRFY:
1289
0
        return tls_process_cert_verify(s, pkt);
1290
1291
0
#ifndef OPENSSL_NO_NEXTPROTONEG
1292
0
    case TLS_ST_SR_NEXT_PROTO:
1293
0
        return tls_process_next_proto(s, pkt);
1294
0
#endif
1295
1296
0
    case TLS_ST_SR_CHANGE:
1297
0
        return tls_process_change_cipher_spec(s, pkt);
1298
1299
0
    case TLS_ST_SR_FINISHED:
1300
0
        return tls_process_finished(s, pkt);
1301
1302
0
    case TLS_ST_SR_KEY_UPDATE:
1303
0
        return tls_process_key_update(s, pkt);
1304
1305
0
    }
1306
0
}
1307
1308
/*
1309
 * Perform any further processing required following the receipt of a message
1310
 * from the client
1311
 */
1312
WORK_STATE ossl_statem_server_post_process_message(SSL_CONNECTION *s,
1313
                                                   WORK_STATE wst)
1314
0
{
1315
0
    OSSL_STATEM *st = &s->statem;
1316
1317
0
    switch (st->hand_state) {
1318
0
    default:
1319
        /* Shouldn't happen */
1320
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1321
0
        return WORK_ERROR;
1322
1323
0
    case TLS_ST_SR_CLNT_HELLO:
1324
0
        return tls_post_process_client_hello(s, wst);
1325
1326
0
    case TLS_ST_SR_KEY_EXCH:
1327
0
        return tls_post_process_client_key_exchange(s, wst);
1328
0
    }
1329
0
}
1330
1331
#ifndef OPENSSL_NO_SRP
1332
/* Returns 1 on success, 0 for retryable error, -1 for fatal error */
1333
static int ssl_check_srp_ext_ClientHello(SSL_CONNECTION *s)
1334
0
{
1335
0
    int ret;
1336
0
    int al = SSL_AD_UNRECOGNIZED_NAME;
1337
1338
0
    if ((s->s3.tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
1339
0
        (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
1340
0
        if (s->srp_ctx.login == NULL) {
1341
            /*
1342
             * RFC 5054 says SHOULD reject, we do so if There is no srp
1343
             * login name
1344
             */
1345
0
            SSLfatal(s, SSL_AD_UNKNOWN_PSK_IDENTITY,
1346
0
                     SSL_R_PSK_IDENTITY_NOT_FOUND);
1347
0
            return -1;
1348
0
        } else {
1349
0
            ret = ssl_srp_server_param_with_username_intern(s, &al);
1350
0
            if (ret < 0)
1351
0
                return 0;
1352
0
            if (ret == SSL3_AL_FATAL) {
1353
0
                SSLfatal(s, al,
1354
0
                         al == SSL_AD_UNKNOWN_PSK_IDENTITY
1355
0
                         ? SSL_R_PSK_IDENTITY_NOT_FOUND
1356
0
                         : SSL_R_CLIENTHELLO_TLSEXT);
1357
0
                return -1;
1358
0
            }
1359
0
        }
1360
0
    }
1361
0
    return 1;
1362
0
}
1363
#endif
1364
1365
int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
1366
                                  size_t cookie_len)
1367
0
{
1368
    /* Always use DTLS 1.0 version: see RFC 6347 */
1369
0
    if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION)
1370
0
            || !WPACKET_sub_memcpy_u8(pkt, cookie, cookie_len))
1371
0
        return 0;
1372
1373
0
    return 1;
1374
0
}
1375
1376
CON_FUNC_RETURN dtls_construct_hello_verify_request(SSL_CONNECTION *s,
1377
                                                    WPACKET *pkt)
1378
0
{
1379
0
    unsigned int cookie_leni;
1380
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
1381
1382
0
    if (sctx->app_gen_cookie_cb == NULL
1383
0
        || sctx->app_gen_cookie_cb(SSL_CONNECTION_GET_SSL(s), s->d1->cookie,
1384
0
                                   &cookie_leni) == 0
1385
0
        || cookie_leni > DTLS1_COOKIE_LENGTH) {
1386
0
        SSLfatal(s, SSL_AD_NO_ALERT, SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
1387
0
        return CON_FUNC_ERROR;
1388
0
    }
1389
0
    s->d1->cookie_len = cookie_leni;
1390
1391
0
    if (!dtls_raw_hello_verify_request(pkt, s->d1->cookie,
1392
0
                                       s->d1->cookie_len)) {
1393
0
        SSLfatal(s, SSL_AD_NO_ALERT, ERR_R_INTERNAL_ERROR);
1394
0
        return CON_FUNC_ERROR;
1395
0
    }
1396
1397
0
    return CON_FUNC_SUCCESS;
1398
0
}
1399
1400
/*-
1401
 * ssl_check_for_safari attempts to fingerprint Safari using OS X
1402
 * SecureTransport using the TLS extension block in |hello|.
1403
 * Safari, since 10.6, sends exactly these extensions, in this order:
1404
 *   SNI,
1405
 *   elliptic_curves
1406
 *   ec_point_formats
1407
 *   signature_algorithms (for TLSv1.2 only)
1408
 *
1409
 * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
1410
 * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
1411
 * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
1412
 * 10.8..10.8.3 (which don't work).
1413
 */
1414
static void ssl_check_for_safari(SSL_CONNECTION *s,
1415
                                 const CLIENTHELLO_MSG *hello)
1416
0
{
1417
0
    static const unsigned char kSafariExtensionsBlock[] = {
1418
0
        0x00, 0x0a,             /* elliptic_curves extension */
1419
0
        0x00, 0x08,             /* 8 bytes */
1420
0
        0x00, 0x06,             /* 6 bytes of curve ids */
1421
0
        0x00, 0x17,             /* P-256 */
1422
0
        0x00, 0x18,             /* P-384 */
1423
0
        0x00, 0x19,             /* P-521 */
1424
1425
0
        0x00, 0x0b,             /* ec_point_formats */
1426
0
        0x00, 0x02,             /* 2 bytes */
1427
0
        0x01,                   /* 1 point format */
1428
0
        0x00,                   /* uncompressed */
1429
        /* The following is only present in TLS 1.2 */
1430
0
        0x00, 0x0d,             /* signature_algorithms */
1431
0
        0x00, 0x0c,             /* 12 bytes */
1432
0
        0x00, 0x0a,             /* 10 bytes */
1433
0
        0x05, 0x01,             /* SHA-384/RSA */
1434
0
        0x04, 0x01,             /* SHA-256/RSA */
1435
0
        0x02, 0x01,             /* SHA-1/RSA */
1436
0
        0x04, 0x03,             /* SHA-256/ECDSA */
1437
0
        0x02, 0x03,             /* SHA-1/ECDSA */
1438
0
    };
1439
    /* Length of the common prefix (first two extensions). */
1440
0
    static const size_t kSafariCommonExtensionsLength = 18;
1441
0
    unsigned int type;
1442
0
    PACKET sni, tmppkt;
1443
0
    size_t ext_len;
1444
1445
0
    tmppkt = hello->extensions;
1446
1447
0
    if (!PACKET_forward(&tmppkt, 2)
1448
0
        || !PACKET_get_net_2(&tmppkt, &type)
1449
0
        || !PACKET_get_length_prefixed_2(&tmppkt, &sni)) {
1450
0
        return;
1451
0
    }
1452
1453
0
    if (type != TLSEXT_TYPE_server_name)
1454
0
        return;
1455
1456
0
    ext_len = TLS1_get_client_version(
1457
0
        SSL_CONNECTION_GET_SSL(s)) >= TLS1_2_VERSION ?
1458
0
                      sizeof(kSafariExtensionsBlock) : kSafariCommonExtensionsLength;
1459
1460
0
    s->s3.is_probably_safari = PACKET_equal(&tmppkt, kSafariExtensionsBlock,
1461
0
                                             ext_len);
1462
0
}
1463
1464
#define RENEG_OPTIONS_OK(options) \
1465
0
    ((options & SSL_OP_NO_RENEGOTIATION) == 0 \
1466
0
     && (options & SSL_OP_ALLOW_CLIENT_RENEGOTIATION) != 0)
1467
1468
MSG_PROCESS_RETURN tls_process_client_hello(SSL_CONNECTION *s, PACKET *pkt)
1469
0
{
1470
    /* |cookie| will only be initialized for DTLS. */
1471
0
    PACKET session_id, compression, extensions, cookie;
1472
0
    static const unsigned char null_compression = 0;
1473
0
    CLIENTHELLO_MSG *clienthello = NULL;
1474
1475
    /* Check if this is actually an unexpected renegotiation ClientHello */
1476
0
    if (s->renegotiate == 0 && !SSL_IS_FIRST_HANDSHAKE(s)) {
1477
0
        if (!ossl_assert(!SSL_CONNECTION_IS_TLS13(s))) {
1478
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1479
0
            goto err;
1480
0
        }
1481
0
        if (!RENEG_OPTIONS_OK(s->options)
1482
0
                || (!s->s3.send_connection_binding
1483
0
                    && (s->options
1484
0
                        & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION) == 0)) {
1485
0
            ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_RENEGOTIATION);
1486
0
            return MSG_PROCESS_FINISHED_READING;
1487
0
        }
1488
0
        s->renegotiate = 1;
1489
0
        s->new_session = 1;
1490
0
    }
1491
1492
0
    clienthello = OPENSSL_zalloc(sizeof(*clienthello));
1493
0
    if (clienthello == NULL) {
1494
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1495
0
        goto err;
1496
0
    }
1497
1498
    /*
1499
     * First, parse the raw ClientHello data into the CLIENTHELLO_MSG structure.
1500
     */
1501
0
    clienthello->isv2 = RECORD_LAYER_is_sslv2_record(&s->rlayer);
1502
0
    PACKET_null_init(&cookie);
1503
1504
0
    if (clienthello->isv2) {
1505
0
        unsigned int mt;
1506
1507
0
        if (!SSL_IS_FIRST_HANDSHAKE(s)
1508
0
                || s->hello_retry_request != SSL_HRR_NONE) {
1509
0
            SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE, SSL_R_UNEXPECTED_MESSAGE);
1510
0
            goto err;
1511
0
        }
1512
1513
        /*-
1514
         * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
1515
         * header is sent directly on the wire, not wrapped as a TLS
1516
         * record. Our record layer just processes the message length and passes
1517
         * the rest right through. Its format is:
1518
         * Byte  Content
1519
         * 0-1   msg_length - decoded by the record layer
1520
         * 2     msg_type - s->init_msg points here
1521
         * 3-4   version
1522
         * 5-6   cipher_spec_length
1523
         * 7-8   session_id_length
1524
         * 9-10  challenge_length
1525
         * ...   ...
1526
         */
1527
1528
0
        if (!PACKET_get_1(pkt, &mt)
1529
0
            || mt != SSL2_MT_CLIENT_HELLO) {
1530
            /*
1531
             * Should never happen. We should have tested this in the record
1532
             * layer in order to have determined that this is a SSLv2 record
1533
             * in the first place
1534
             */
1535
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1536
0
            goto err;
1537
0
        }
1538
0
    }
1539
1540
0
    if (!PACKET_get_net_2(pkt, &clienthello->legacy_version)) {
1541
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_TOO_SHORT);
1542
0
        goto err;
1543
0
    }
1544
1545
    /* Parse the message and load client random. */
1546
0
    if (clienthello->isv2) {
1547
        /*
1548
         * Handle an SSLv2 backwards compatible ClientHello
1549
         * Note, this is only for SSLv3+ using the backward compatible format.
1550
         * Real SSLv2 is not supported, and is rejected below.
1551
         */
1552
0
        unsigned int ciphersuite_len, session_id_len, challenge_len;
1553
0
        PACKET challenge;
1554
1555
0
        if (!PACKET_get_net_2(pkt, &ciphersuite_len)
1556
0
            || !PACKET_get_net_2(pkt, &session_id_len)
1557
0
            || !PACKET_get_net_2(pkt, &challenge_len)) {
1558
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_RECORD_LENGTH_MISMATCH);
1559
0
            goto err;
1560
0
        }
1561
1562
0
        if (session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
1563
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_LENGTH_MISMATCH);
1564
0
            goto err;
1565
0
        }
1566
1567
0
        if (!PACKET_get_sub_packet(pkt, &clienthello->ciphersuites,
1568
0
                                   ciphersuite_len)
1569
0
            || !PACKET_copy_bytes(pkt, clienthello->session_id, session_id_len)
1570
0
            || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
1571
            /* No extensions. */
1572
0
            || PACKET_remaining(pkt) != 0) {
1573
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_RECORD_LENGTH_MISMATCH);
1574
0
            goto err;
1575
0
        }
1576
0
        clienthello->session_id_len = session_id_len;
1577
1578
        /* Load the client random and compression list. We use SSL3_RANDOM_SIZE
1579
         * here rather than sizeof(clienthello->random) because that is the limit
1580
         * for SSLv3 and it is fixed. It won't change even if
1581
         * sizeof(clienthello->random) does.
1582
         */
1583
0
        challenge_len = challenge_len > SSL3_RANDOM_SIZE
1584
0
                        ? SSL3_RANDOM_SIZE : challenge_len;
1585
0
        memset(clienthello->random, 0, SSL3_RANDOM_SIZE);
1586
0
        if (!PACKET_copy_bytes(&challenge,
1587
0
                               clienthello->random + SSL3_RANDOM_SIZE -
1588
0
                               challenge_len, challenge_len)
1589
            /* Advertise only null compression. */
1590
0
            || !PACKET_buf_init(&compression, &null_compression, 1)) {
1591
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1592
0
            goto err;
1593
0
        }
1594
1595
0
        PACKET_null_init(&clienthello->extensions);
1596
0
    } else {
1597
        /* Regular ClientHello. */
1598
0
        if (!PACKET_copy_bytes(pkt, clienthello->random, SSL3_RANDOM_SIZE)
1599
0
            || !PACKET_get_length_prefixed_1(pkt, &session_id)
1600
0
            || !PACKET_copy_all(&session_id, clienthello->session_id,
1601
0
                    SSL_MAX_SSL_SESSION_ID_LENGTH,
1602
0
                    &clienthello->session_id_len)) {
1603
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
1604
0
            goto err;
1605
0
        }
1606
1607
0
        if (SSL_CONNECTION_IS_DTLS(s)) {
1608
0
            if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
1609
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
1610
0
                goto err;
1611
0
            }
1612
0
            if (!PACKET_copy_all(&cookie, clienthello->dtls_cookie,
1613
0
                                 DTLS1_COOKIE_LENGTH,
1614
0
                                 &clienthello->dtls_cookie_len)) {
1615
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1616
0
                goto err;
1617
0
            }
1618
            /*
1619
             * If we require cookies and this ClientHello doesn't contain one,
1620
             * just return since we do not want to allocate any memory yet.
1621
             * So check cookie length...
1622
             */
1623
0
            if (SSL_get_options(SSL_CONNECTION_GET_SSL(s)) & SSL_OP_COOKIE_EXCHANGE) {
1624
0
                if (clienthello->dtls_cookie_len == 0) {
1625
0
                    OPENSSL_free(clienthello);
1626
0
                    return MSG_PROCESS_FINISHED_READING;
1627
0
                }
1628
0
            }
1629
0
        }
1630
1631
0
        if (!PACKET_get_length_prefixed_2(pkt, &clienthello->ciphersuites)) {
1632
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
1633
0
            goto err;
1634
0
        }
1635
1636
0
        if (!PACKET_get_length_prefixed_1(pkt, &compression)) {
1637
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
1638
0
            goto err;
1639
0
        }
1640
1641
        /* Could be empty. */
1642
0
        if (PACKET_remaining(pkt) == 0) {
1643
0
            PACKET_null_init(&clienthello->extensions);
1644
0
        } else {
1645
0
            if (!PACKET_get_length_prefixed_2(pkt, &clienthello->extensions)
1646
0
                    || PACKET_remaining(pkt) != 0) {
1647
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
1648
0
                goto err;
1649
0
            }
1650
0
        }
1651
0
    }
1652
1653
0
    if (!PACKET_copy_all(&compression, clienthello->compressions,
1654
0
                         MAX_COMPRESSIONS_SIZE,
1655
0
                         &clienthello->compressions_len)) {
1656
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1657
0
        goto err;
1658
0
    }
1659
1660
    /* Preserve the raw extensions PACKET for later use */
1661
0
    extensions = clienthello->extensions;
1662
0
    if (!tls_collect_extensions(s, &extensions, SSL_EXT_CLIENT_HELLO,
1663
0
                                &clienthello->pre_proc_exts,
1664
0
                                &clienthello->pre_proc_exts_len, 1)) {
1665
        /* SSLfatal already been called */
1666
0
        goto err;
1667
0
    }
1668
0
    s->clienthello = clienthello;
1669
1670
0
    return MSG_PROCESS_CONTINUE_PROCESSING;
1671
1672
0
 err:
1673
0
    if (clienthello != NULL)
1674
0
        OPENSSL_free(clienthello->pre_proc_exts);
1675
0
    OPENSSL_free(clienthello);
1676
1677
0
    return MSG_PROCESS_ERROR;
1678
0
}
1679
1680
static int tls_early_post_process_client_hello(SSL_CONNECTION *s)
1681
0
{
1682
0
    unsigned int j;
1683
0
    int i, al = SSL_AD_INTERNAL_ERROR;
1684
0
    int protverr;
1685
0
    size_t loop;
1686
0
    unsigned long id;
1687
0
#ifndef OPENSSL_NO_COMP
1688
0
    SSL_COMP *comp = NULL;
1689
0
#endif
1690
0
    const SSL_CIPHER *c;
1691
0
    STACK_OF(SSL_CIPHER) *ciphers = NULL;
1692
0
    STACK_OF(SSL_CIPHER) *scsvs = NULL;
1693
0
    CLIENTHELLO_MSG *clienthello = s->clienthello;
1694
0
    DOWNGRADE dgrd = DOWNGRADE_NONE;
1695
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
1696
0
    SSL *ssl = SSL_CONNECTION_GET_SSL(s);
1697
1698
    /* Finished parsing the ClientHello, now we can start processing it */
1699
    /* Give the ClientHello callback a crack at things */
1700
0
    if (sctx->client_hello_cb != NULL) {
1701
        /* A failure in the ClientHello callback terminates the connection. */
1702
0
        switch (sctx->client_hello_cb(ssl, &al, sctx->client_hello_cb_arg)) {
1703
0
        case SSL_CLIENT_HELLO_SUCCESS:
1704
0
            break;
1705
0
        case SSL_CLIENT_HELLO_RETRY:
1706
0
            s->rwstate = SSL_CLIENT_HELLO_CB;
1707
0
            return -1;
1708
0
        case SSL_CLIENT_HELLO_ERROR:
1709
0
        default:
1710
0
            SSLfatal(s, al, SSL_R_CALLBACK_FAILED);
1711
0
            goto err;
1712
0
        }
1713
0
    }
1714
1715
    /* Set up the client_random */
1716
0
    memcpy(s->s3.client_random, clienthello->random, SSL3_RANDOM_SIZE);
1717
1718
    /* Choose the version */
1719
1720
0
    if (clienthello->isv2) {
1721
0
        if (clienthello->legacy_version == SSL2_VERSION
1722
0
                || (clienthello->legacy_version & 0xff00)
1723
0
                   != (SSL3_VERSION_MAJOR << 8)) {
1724
            /*
1725
             * This is real SSLv2 or something completely unknown. We don't
1726
             * support it.
1727
             */
1728
0
            SSLfatal(s, SSL_AD_PROTOCOL_VERSION, SSL_R_UNKNOWN_PROTOCOL);
1729
0
            goto err;
1730
0
        }
1731
        /* SSLv3/TLS */
1732
0
        s->client_version = clienthello->legacy_version;
1733
0
    }
1734
1735
    /* Choose the server SSL/TLS/DTLS version. */
1736
0
    protverr = ssl_choose_server_version(s, clienthello, &dgrd);
1737
1738
0
    if (protverr) {
1739
0
        if (SSL_IS_FIRST_HANDSHAKE(s)) {
1740
            /* like ssl3_get_record, send alert using remote version number */
1741
0
            s->version = s->client_version = clienthello->legacy_version;
1742
0
        }
1743
0
        SSLfatal(s, SSL_AD_PROTOCOL_VERSION, protverr);
1744
0
        goto err;
1745
0
    }
1746
1747
    /* TLSv1.3 specifies that a ClientHello must end on a record boundary */
1748
0
    if (SSL_CONNECTION_IS_TLS13(s)
1749
0
        && RECORD_LAYER_processed_read_pending(&s->rlayer)) {
1750
0
        SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE, SSL_R_NOT_ON_RECORD_BOUNDARY);
1751
0
        goto err;
1752
0
    }
1753
1754
0
    if (SSL_CONNECTION_IS_DTLS(s)) {
1755
        /* Empty cookie was already handled above by returning early. */
1756
0
        if (SSL_get_options(ssl) & SSL_OP_COOKIE_EXCHANGE) {
1757
0
            if (sctx->app_verify_cookie_cb != NULL) {
1758
0
                if (sctx->app_verify_cookie_cb(ssl, clienthello->dtls_cookie,
1759
0
                        clienthello->dtls_cookie_len) == 0) {
1760
0
                    SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
1761
0
                             SSL_R_COOKIE_MISMATCH);
1762
0
                    goto err;
1763
                    /* else cookie verification succeeded */
1764
0
                }
1765
                /* default verification */
1766
0
            } else if (s->d1->cookie_len != clienthello->dtls_cookie_len
1767
0
                    || memcmp(clienthello->dtls_cookie, s->d1->cookie,
1768
0
                              s->d1->cookie_len) != 0) {
1769
0
                SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_COOKIE_MISMATCH);
1770
0
                goto err;
1771
0
            }
1772
0
            s->d1->cookie_verified = 1;
1773
0
        }
1774
0
    }
1775
1776
0
    s->hit = 0;
1777
1778
0
    if (!ssl_cache_cipherlist(s, &clienthello->ciphersuites,
1779
0
                              clienthello->isv2) ||
1780
0
        !ossl_bytes_to_cipher_list(s, &clienthello->ciphersuites, &ciphers,
1781
0
                                   &scsvs, clienthello->isv2, 1)) {
1782
        /* SSLfatal() already called */
1783
0
        goto err;
1784
0
    }
1785
1786
0
    s->s3.send_connection_binding = 0;
1787
    /* Check what signalling cipher-suite values were received. */
1788
0
    if (scsvs != NULL) {
1789
0
        for (i = 0; i < sk_SSL_CIPHER_num(scsvs); i++) {
1790
0
            c = sk_SSL_CIPHER_value(scsvs, i);
1791
0
            if (SSL_CIPHER_get_id(c) == SSL3_CK_SCSV) {
1792
0
                if (s->renegotiate) {
1793
                    /* SCSV is fatal if renegotiating */
1794
0
                    SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
1795
0
                             SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
1796
0
                    goto err;
1797
0
                }
1798
0
                s->s3.send_connection_binding = 1;
1799
0
            } else if (SSL_CIPHER_get_id(c) == SSL3_CK_FALLBACK_SCSV &&
1800
0
                       !ssl_check_version_downgrade(s)) {
1801
                /*
1802
                 * This SCSV indicates that the client previously tried
1803
                 * a higher version.  We should fail if the current version
1804
                 * is an unexpected downgrade, as that indicates that the first
1805
                 * connection may have been tampered with in order to trigger
1806
                 * an insecure downgrade.
1807
                 */
1808
0
                SSLfatal(s, SSL_AD_INAPPROPRIATE_FALLBACK,
1809
0
                         SSL_R_INAPPROPRIATE_FALLBACK);
1810
0
                goto err;
1811
0
            }
1812
0
        }
1813
0
    }
1814
1815
    /* For TLSv1.3 we must select the ciphersuite *before* session resumption */
1816
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
1817
0
        const SSL_CIPHER *cipher =
1818
0
            ssl3_choose_cipher(s, ciphers, SSL_get_ciphers(ssl));
1819
1820
0
        if (cipher == NULL) {
1821
0
            SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_NO_SHARED_CIPHER);
1822
0
            goto err;
1823
0
        }
1824
0
        if (s->hello_retry_request == SSL_HRR_PENDING
1825
0
                && (s->s3.tmp.new_cipher == NULL
1826
0
                    || s->s3.tmp.new_cipher->id != cipher->id)) {
1827
            /*
1828
             * A previous HRR picked a different ciphersuite to the one we
1829
             * just selected. Something must have changed.
1830
             */
1831
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_CIPHER);
1832
0
            goto err;
1833
0
        }
1834
0
        s->s3.tmp.new_cipher = cipher;
1835
0
    }
1836
1837
    /* We need to do this before getting the session */
1838
0
    if (!tls_parse_extension(s, TLSEXT_IDX_extended_master_secret,
1839
0
                             SSL_EXT_CLIENT_HELLO,
1840
0
                             clienthello->pre_proc_exts, NULL, 0)) {
1841
        /* SSLfatal() already called */
1842
0
        goto err;
1843
0
    }
1844
1845
    /*
1846
     * We don't allow resumption in a backwards compatible ClientHello.
1847
     * In TLS1.1+, session_id MUST be empty.
1848
     *
1849
     * Versions before 0.9.7 always allow clients to resume sessions in
1850
     * renegotiation. 0.9.7 and later allow this by default, but optionally
1851
     * ignore resumption requests with flag
1852
     * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1853
     * than a change to default behavior so that applications relying on
1854
     * this for security won't even compile against older library versions).
1855
     * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1856
     * request renegotiation but not a new session (s->new_session remains
1857
     * unset): for servers, this essentially just means that the
1858
     * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
1859
     * ignored.
1860
     */
1861
0
    if (clienthello->isv2 ||
1862
0
        (s->new_session &&
1863
0
         (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1864
0
        if (!ssl_get_new_session(s, 1)) {
1865
            /* SSLfatal() already called */
1866
0
            goto err;
1867
0
        }
1868
0
    } else {
1869
0
        i = ssl_get_prev_session(s, clienthello);
1870
0
        if (i == 1) {
1871
            /* previous session */
1872
0
            s->hit = 1;
1873
0
        } else if (i == -1) {
1874
            /* SSLfatal() already called */
1875
0
            goto err;
1876
0
        } else {
1877
            /* i == 0 */
1878
0
            if (!ssl_get_new_session(s, 1)) {
1879
                /* SSLfatal() already called */
1880
0
                goto err;
1881
0
            }
1882
0
        }
1883
0
    }
1884
1885
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
1886
0
        memcpy(s->tmp_session_id, s->clienthello->session_id,
1887
0
               s->clienthello->session_id_len);
1888
0
        s->tmp_session_id_len = s->clienthello->session_id_len;
1889
0
    }
1890
1891
    /*
1892
     * If it is a hit, check that the cipher is in the list. In TLSv1.3 we check
1893
     * ciphersuite compatibility with the session as part of resumption.
1894
     */
1895
0
    if (!SSL_CONNECTION_IS_TLS13(s) && s->hit) {
1896
0
        j = 0;
1897
0
        id = s->session->cipher->id;
1898
1899
0
        OSSL_TRACE_BEGIN(TLS_CIPHER) {
1900
0
            BIO_printf(trc_out, "client sent %d ciphers\n",
1901
0
                       sk_SSL_CIPHER_num(ciphers));
1902
0
        }
1903
0
        for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1904
0
            c = sk_SSL_CIPHER_value(ciphers, i);
1905
0
            if (trc_out != NULL)
1906
0
                BIO_printf(trc_out, "client [%2d of %2d]:%s\n", i,
1907
0
                           sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1908
0
            if (c->id == id) {
1909
0
                j = 1;
1910
0
                break;
1911
0
            }
1912
0
        }
1913
0
        if (j == 0) {
1914
            /*
1915
             * we need to have the cipher in the cipher list if we are asked
1916
             * to reuse it
1917
             */
1918
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
1919
0
                     SSL_R_REQUIRED_CIPHER_MISSING);
1920
0
            OSSL_TRACE_CANCEL(TLS_CIPHER);
1921
0
            goto err;
1922
0
        }
1923
0
        OSSL_TRACE_END(TLS_CIPHER);
1924
0
    }
1925
1926
0
    for (loop = 0; loop < clienthello->compressions_len; loop++) {
1927
0
        if (clienthello->compressions[loop] == 0)
1928
0
            break;
1929
0
    }
1930
1931
0
    if (loop >= clienthello->compressions_len) {
1932
        /* no compress */
1933
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_NO_COMPRESSION_SPECIFIED);
1934
0
        goto err;
1935
0
    }
1936
1937
0
    if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
1938
0
        ssl_check_for_safari(s, clienthello);
1939
1940
    /* TLS extensions */
1941
0
    if (!tls_parse_all_extensions(s, SSL_EXT_CLIENT_HELLO,
1942
0
                                  clienthello->pre_proc_exts, NULL, 0, 1)) {
1943
        /* SSLfatal() already called */
1944
0
        goto err;
1945
0
    }
1946
1947
    /*
1948
     * Check if we want to use external pre-shared secret for this handshake
1949
     * for not reused session only. We need to generate server_random before
1950
     * calling tls_session_secret_cb in order to allow SessionTicket
1951
     * processing to use it in key derivation.
1952
     */
1953
0
    {
1954
0
        unsigned char *pos;
1955
0
        pos = s->s3.server_random;
1956
0
        if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE, dgrd) <= 0) {
1957
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
1958
0
            goto err;
1959
0
        }
1960
0
    }
1961
1962
0
    if (!s->hit
1963
0
            && s->version >= TLS1_VERSION
1964
0
            && !SSL_CONNECTION_IS_TLS13(s)
1965
0
            && !SSL_CONNECTION_IS_DTLS(s)
1966
0
            && s->ext.session_secret_cb != NULL) {
1967
0
        const SSL_CIPHER *pref_cipher = NULL;
1968
        /*
1969
         * s->session->master_key_length is a size_t, but this is an int for
1970
         * backwards compat reasons
1971
         */
1972
0
        int master_key_length;
1973
1974
0
        master_key_length = sizeof(s->session->master_key);
1975
0
        if (s->ext.session_secret_cb(ssl, s->session->master_key,
1976
0
                                     &master_key_length, ciphers,
1977
0
                                     &pref_cipher,
1978
0
                                     s->ext.session_secret_cb_arg)
1979
0
                && master_key_length > 0) {
1980
0
            s->session->master_key_length = master_key_length;
1981
0
            s->hit = 1;
1982
0
            s->peer_ciphers = ciphers;
1983
0
            s->session->verify_result = X509_V_OK;
1984
1985
0
            ciphers = NULL;
1986
1987
            /* check if some cipher was preferred by call back */
1988
0
            if (pref_cipher == NULL)
1989
0
                pref_cipher = ssl3_choose_cipher(s, s->peer_ciphers,
1990
0
                                                 SSL_get_ciphers(ssl));
1991
0
            if (pref_cipher == NULL) {
1992
0
                SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_NO_SHARED_CIPHER);
1993
0
                goto err;
1994
0
            }
1995
1996
0
            s->session->cipher = pref_cipher;
1997
0
            sk_SSL_CIPHER_free(s->cipher_list);
1998
0
            s->cipher_list = sk_SSL_CIPHER_dup(s->peer_ciphers);
1999
0
            sk_SSL_CIPHER_free(s->cipher_list_by_id);
2000
0
            s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->peer_ciphers);
2001
0
        }
2002
0
    }
2003
2004
    /*
2005
     * Worst case, we will use the NULL compression, but if we have other
2006
     * options, we will now look for them.  We have complen-1 compression
2007
     * algorithms from the client, starting at q.
2008
     */
2009
0
    s->s3.tmp.new_compression = NULL;
2010
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
2011
        /*
2012
         * We already checked above that the NULL compression method appears in
2013
         * the list. Now we check there aren't any others (which is illegal in
2014
         * a TLSv1.3 ClientHello.
2015
         */
2016
0
        if (clienthello->compressions_len != 1) {
2017
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
2018
0
                     SSL_R_INVALID_COMPRESSION_ALGORITHM);
2019
0
            goto err;
2020
0
        }
2021
0
    }
2022
0
#ifndef OPENSSL_NO_COMP
2023
    /* This only happens if we have a cache hit */
2024
0
    else if (s->session->compress_meth != 0) {
2025
0
        int m, comp_id = s->session->compress_meth;
2026
0
        unsigned int k;
2027
        /* Perform sanity checks on resumed compression algorithm */
2028
        /* Can't disable compression */
2029
0
        if (!ssl_allow_compression(s)) {
2030
0
            SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2031
0
                     SSL_R_INCONSISTENT_COMPRESSION);
2032
0
            goto err;
2033
0
        }
2034
        /* Look for resumed compression method */
2035
0
        for (m = 0; m < sk_SSL_COMP_num(sctx->comp_methods); m++) {
2036
0
            comp = sk_SSL_COMP_value(sctx->comp_methods, m);
2037
0
            if (comp_id == comp->id) {
2038
0
                s->s3.tmp.new_compression = comp;
2039
0
                break;
2040
0
            }
2041
0
        }
2042
0
        if (s->s3.tmp.new_compression == NULL) {
2043
0
            SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2044
0
                     SSL_R_INVALID_COMPRESSION_ALGORITHM);
2045
0
            goto err;
2046
0
        }
2047
        /* Look for resumed method in compression list */
2048
0
        for (k = 0; k < clienthello->compressions_len; k++) {
2049
0
            if (clienthello->compressions[k] == comp_id)
2050
0
                break;
2051
0
        }
2052
0
        if (k >= clienthello->compressions_len) {
2053
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER,
2054
0
                     SSL_R_REQUIRED_COMPRESSION_ALGORITHM_MISSING);
2055
0
            goto err;
2056
0
        }
2057
0
    } else if (s->hit) {
2058
0
        comp = NULL;
2059
0
    } else if (ssl_allow_compression(s) && sctx->comp_methods) {
2060
        /* See if we have a match */
2061
0
        int m, nn, v, done = 0;
2062
0
        unsigned int o;
2063
2064
0
        nn = sk_SSL_COMP_num(sctx->comp_methods);
2065
0
        for (m = 0; m < nn; m++) {
2066
0
            comp = sk_SSL_COMP_value(sctx->comp_methods, m);
2067
0
            v = comp->id;
2068
0
            for (o = 0; o < clienthello->compressions_len; o++) {
2069
0
                if (v == clienthello->compressions[o]) {
2070
0
                    done = 1;
2071
0
                    break;
2072
0
                }
2073
0
            }
2074
0
            if (done)
2075
0
                break;
2076
0
        }
2077
0
        if (done)
2078
0
            s->s3.tmp.new_compression = comp;
2079
0
        else
2080
0
            comp = NULL;
2081
0
    }
2082
#else
2083
    /*
2084
     * If compression is disabled we'd better not try to resume a session
2085
     * using compression.
2086
     */
2087
    if (s->session->compress_meth != 0) {
2088
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_INCONSISTENT_COMPRESSION);
2089
        goto err;
2090
    }
2091
#endif
2092
2093
    /*
2094
     * Given s->peer_ciphers and SSL_get_ciphers, we must pick a cipher
2095
     */
2096
2097
0
    if (!s->hit || SSL_CONNECTION_IS_TLS13(s)) {
2098
0
        sk_SSL_CIPHER_free(s->peer_ciphers);
2099
0
        s->peer_ciphers = ciphers;
2100
0
        if (ciphers == NULL) {
2101
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2102
0
            goto err;
2103
0
        }
2104
0
        ciphers = NULL;
2105
0
    }
2106
2107
0
    if (!s->hit) {
2108
#ifdef OPENSSL_NO_COMP
2109
        s->session->compress_meth = 0;
2110
#else
2111
0
        s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
2112
0
#endif
2113
0
        if (!tls1_set_server_sigalgs(s)) {
2114
            /* SSLfatal() already called */
2115
0
            goto err;
2116
0
        }
2117
0
    }
2118
2119
0
    sk_SSL_CIPHER_free(ciphers);
2120
0
    sk_SSL_CIPHER_free(scsvs);
2121
0
    OPENSSL_free(clienthello->pre_proc_exts);
2122
0
    OPENSSL_free(s->clienthello);
2123
0
    s->clienthello = NULL;
2124
0
    return 1;
2125
0
 err:
2126
0
    sk_SSL_CIPHER_free(ciphers);
2127
0
    sk_SSL_CIPHER_free(scsvs);
2128
0
    OPENSSL_free(clienthello->pre_proc_exts);
2129
0
    OPENSSL_free(s->clienthello);
2130
0
    s->clienthello = NULL;
2131
2132
0
    return 0;
2133
0
}
2134
2135
/*
2136
 * Call the status request callback if needed. Upon success, returns 1.
2137
 * Upon failure, returns 0.
2138
 */
2139
static int tls_handle_status_request(SSL_CONNECTION *s)
2140
0
{
2141
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
2142
2143
0
    s->ext.status_expected = 0;
2144
2145
    /*
2146
     * If status request then ask callback what to do. Note: this must be
2147
     * called after servername callbacks in case the certificate has changed,
2148
     * and must be called after the cipher has been chosen because this may
2149
     * influence which certificate is sent
2150
     */
2151
0
    if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing && sctx != NULL
2152
0
            && sctx->ext.status_cb != NULL) {
2153
0
        int ret;
2154
2155
        /* If no certificate can't return certificate status */
2156
0
        if (s->s3.tmp.cert != NULL) {
2157
            /*
2158
             * Set current certificate to one we will use so SSL_get_certificate
2159
             * et al can pick it up.
2160
             */
2161
0
            s->cert->key = s->s3.tmp.cert;
2162
0
            ret = sctx->ext.status_cb(SSL_CONNECTION_GET_SSL(s),
2163
0
                                      sctx->ext.status_arg);
2164
0
            switch (ret) {
2165
                /* We don't want to send a status request response */
2166
0
            case SSL_TLSEXT_ERR_NOACK:
2167
0
                s->ext.status_expected = 0;
2168
0
                break;
2169
                /* status request response should be sent */
2170
0
            case SSL_TLSEXT_ERR_OK:
2171
0
                if (s->ext.ocsp.resp)
2172
0
                    s->ext.status_expected = 1;
2173
0
                break;
2174
                /* something bad happened */
2175
0
            case SSL_TLSEXT_ERR_ALERT_FATAL:
2176
0
            default:
2177
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_CLIENTHELLO_TLSEXT);
2178
0
                return 0;
2179
0
            }
2180
0
        }
2181
0
    }
2182
2183
0
    return 1;
2184
0
}
2185
2186
/*
2187
 * Call the alpn_select callback if needed. Upon success, returns 1.
2188
 * Upon failure, returns 0.
2189
 */
2190
int tls_handle_alpn(SSL_CONNECTION *s)
2191
0
{
2192
0
    const unsigned char *selected = NULL;
2193
0
    unsigned char selected_len = 0;
2194
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
2195
2196
0
    if (sctx->ext.alpn_select_cb != NULL && s->s3.alpn_proposed != NULL) {
2197
0
        int r = sctx->ext.alpn_select_cb(SSL_CONNECTION_GET_SSL(s),
2198
0
                                         &selected, &selected_len,
2199
0
                                         s->s3.alpn_proposed,
2200
0
                                         (unsigned int)s->s3.alpn_proposed_len,
2201
0
                                         sctx->ext.alpn_select_cb_arg);
2202
2203
0
        if (r == SSL_TLSEXT_ERR_OK) {
2204
0
            OPENSSL_free(s->s3.alpn_selected);
2205
0
            s->s3.alpn_selected = OPENSSL_memdup(selected, selected_len);
2206
0
            if (s->s3.alpn_selected == NULL) {
2207
0
                s->s3.alpn_selected_len = 0;
2208
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2209
0
                return 0;
2210
0
            }
2211
0
            s->s3.alpn_selected_len = selected_len;
2212
0
#ifndef OPENSSL_NO_NEXTPROTONEG
2213
            /* ALPN takes precedence over NPN. */
2214
0
            s->s3.npn_seen = 0;
2215
0
#endif
2216
2217
            /* Check ALPN is consistent with session */
2218
0
            if (s->session->ext.alpn_selected == NULL
2219
0
                        || selected_len != s->session->ext.alpn_selected_len
2220
0
                        || memcmp(selected, s->session->ext.alpn_selected,
2221
0
                                  selected_len) != 0) {
2222
                /* Not consistent so can't be used for early_data */
2223
0
                s->ext.early_data_ok = 0;
2224
2225
0
                if (!s->hit) {
2226
                    /*
2227
                     * This is a new session and so alpn_selected should have
2228
                     * been initialised to NULL. We should update it with the
2229
                     * selected ALPN.
2230
                     */
2231
0
                    if (!ossl_assert(s->session->ext.alpn_selected == NULL)) {
2232
0
                        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2233
0
                                 ERR_R_INTERNAL_ERROR);
2234
0
                        return 0;
2235
0
                    }
2236
0
                    s->session->ext.alpn_selected = OPENSSL_memdup(selected,
2237
0
                                                                   selected_len);
2238
0
                    if (s->session->ext.alpn_selected == NULL) {
2239
0
                        SSLfatal(s, SSL_AD_INTERNAL_ERROR,
2240
0
                                 ERR_R_INTERNAL_ERROR);
2241
0
                        return 0;
2242
0
                    }
2243
0
                    s->session->ext.alpn_selected_len = selected_len;
2244
0
                }
2245
0
            }
2246
2247
0
            return 1;
2248
0
        } else if (r != SSL_TLSEXT_ERR_NOACK) {
2249
0
            SSLfatal(s, SSL_AD_NO_APPLICATION_PROTOCOL,
2250
0
                     SSL_R_NO_APPLICATION_PROTOCOL);
2251
0
            return 0;
2252
0
        }
2253
        /*
2254
         * If r == SSL_TLSEXT_ERR_NOACK then behave as if no callback was
2255
         * present.
2256
         */
2257
0
    }
2258
2259
    /* Check ALPN is consistent with session */
2260
0
    if (s->session->ext.alpn_selected != NULL) {
2261
        /* Not consistent so can't be used for early_data */
2262
0
        s->ext.early_data_ok = 0;
2263
0
    }
2264
2265
0
    return 1;
2266
0
}
2267
2268
WORK_STATE tls_post_process_client_hello(SSL_CONNECTION *s, WORK_STATE wst)
2269
0
{
2270
0
    const SSL_CIPHER *cipher;
2271
0
    SSL *ssl = SSL_CONNECTION_GET_SSL(s);
2272
2273
0
    if (wst == WORK_MORE_A) {
2274
0
        int rv = tls_early_post_process_client_hello(s);
2275
0
        if (rv == 0) {
2276
            /* SSLfatal() was already called */
2277
0
            goto err;
2278
0
        }
2279
0
        if (rv < 0)
2280
0
            return WORK_MORE_A;
2281
0
        wst = WORK_MORE_B;
2282
0
    }
2283
0
    if (wst == WORK_MORE_B) {
2284
0
        if (!s->hit || SSL_CONNECTION_IS_TLS13(s)) {
2285
            /* Let cert callback update server certificates if required */
2286
0
            if (!s->hit && s->cert->cert_cb != NULL) {
2287
0
                int rv = s->cert->cert_cb(ssl, s->cert->cert_cb_arg);
2288
0
                if (rv == 0) {
2289
0
                    SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_CERT_CB_ERROR);
2290
0
                    goto err;
2291
0
                }
2292
0
                if (rv < 0) {
2293
0
                    s->rwstate = SSL_X509_LOOKUP;
2294
0
                    return WORK_MORE_B;
2295
0
                }
2296
0
                s->rwstate = SSL_NOTHING;
2297
0
            }
2298
2299
            /* In TLSv1.3 we selected the ciphersuite before resumption */
2300
0
            if (!SSL_CONNECTION_IS_TLS13(s)) {
2301
0
                cipher =
2302
0
                    ssl3_choose_cipher(s, s->peer_ciphers,
2303
0
                                       SSL_get_ciphers(ssl));
2304
2305
0
                if (cipher == NULL) {
2306
0
                    SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2307
0
                             SSL_R_NO_SHARED_CIPHER);
2308
0
                    goto err;
2309
0
                }
2310
0
                s->s3.tmp.new_cipher = cipher;
2311
0
            }
2312
0
            if (!s->hit) {
2313
0
                if (!tls_choose_sigalg(s, 1)) {
2314
                    /* SSLfatal already called */
2315
0
                    goto err;
2316
0
                }
2317
                /* check whether we should disable session resumption */
2318
0
                if (s->not_resumable_session_cb != NULL)
2319
0
                    s->session->not_resumable =
2320
0
                        s->not_resumable_session_cb(ssl,
2321
0
                            ((s->s3.tmp.new_cipher->algorithm_mkey
2322
0
                              & (SSL_kDHE | SSL_kECDHE)) != 0));
2323
0
                if (s->session->not_resumable)
2324
                    /* do not send a session ticket */
2325
0
                    s->ext.ticket_expected = 0;
2326
0
            }
2327
0
        } else {
2328
            /* Session-id reuse */
2329
0
            s->s3.tmp.new_cipher = s->session->cipher;
2330
0
        }
2331
2332
        /*-
2333
         * we now have the following setup.
2334
         * client_random
2335
         * cipher_list          - our preferred list of ciphers
2336
         * ciphers              - the client's preferred list of ciphers
2337
         * compression          - basically ignored right now
2338
         * ssl version is set   - sslv3
2339
         * s->session           - The ssl session has been setup.
2340
         * s->hit               - session reuse flag
2341
         * s->s3.tmp.new_cipher - the new cipher to use.
2342
         */
2343
2344
        /*
2345
         * Call status_request callback if needed. Has to be done after the
2346
         * certificate callbacks etc above.
2347
         */
2348
0
        if (!tls_handle_status_request(s)) {
2349
            /* SSLfatal() already called */
2350
0
            goto err;
2351
0
        }
2352
        /*
2353
         * Call alpn_select callback if needed.  Has to be done after SNI and
2354
         * cipher negotiation (HTTP/2 restricts permitted ciphers). In TLSv1.3
2355
         * we already did this because cipher negotiation happens earlier, and
2356
         * we must handle ALPN before we decide whether to accept early_data.
2357
         */
2358
0
        if (!SSL_CONNECTION_IS_TLS13(s) && !tls_handle_alpn(s)) {
2359
            /* SSLfatal() already called */
2360
0
            goto err;
2361
0
        }
2362
2363
0
        wst = WORK_MORE_C;
2364
0
    }
2365
0
#ifndef OPENSSL_NO_SRP
2366
0
    if (wst == WORK_MORE_C) {
2367
0
        int ret;
2368
0
        if ((ret = ssl_check_srp_ext_ClientHello(s)) == 0) {
2369
            /*
2370
             * callback indicates further work to be done
2371
             */
2372
0
            s->rwstate = SSL_X509_LOOKUP;
2373
0
            return WORK_MORE_C;
2374
0
        }
2375
0
        if (ret < 0) {
2376
            /* SSLfatal() already called */
2377
0
            goto err;
2378
0
        }
2379
0
    }
2380
0
#endif
2381
2382
0
    return WORK_FINISHED_STOP;
2383
0
 err:
2384
0
    return WORK_ERROR;
2385
0
}
2386
2387
CON_FUNC_RETURN tls_construct_server_hello(SSL_CONNECTION *s, WPACKET *pkt)
2388
0
{
2389
0
    int compm;
2390
0
    size_t sl, len;
2391
0
    int version;
2392
0
    unsigned char *session_id;
2393
0
    int usetls13 = SSL_CONNECTION_IS_TLS13(s)
2394
0
                   || s->hello_retry_request == SSL_HRR_PENDING;
2395
2396
0
    version = usetls13 ? TLS1_2_VERSION : s->version;
2397
0
    if (!WPACKET_put_bytes_u16(pkt, version)
2398
               /*
2399
                * Random stuff. Filling of the server_random takes place in
2400
                * tls_process_client_hello()
2401
                */
2402
0
            || !WPACKET_memcpy(pkt,
2403
0
                               s->hello_retry_request == SSL_HRR_PENDING
2404
0
                                   ? hrrrandom : s->s3.server_random,
2405
0
                               SSL3_RANDOM_SIZE)) {
2406
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2407
0
        return CON_FUNC_ERROR;
2408
0
    }
2409
2410
    /*-
2411
     * There are several cases for the session ID to send
2412
     * back in the server hello:
2413
     * - For session reuse from the session cache,
2414
     *   we send back the old session ID.
2415
     * - If stateless session reuse (using a session ticket)
2416
     *   is successful, we send back the client's "session ID"
2417
     *   (which doesn't actually identify the session).
2418
     * - If it is a new session, we send back the new
2419
     *   session ID.
2420
     * - However, if we want the new session to be single-use,
2421
     *   we send back a 0-length session ID.
2422
     * - In TLSv1.3 we echo back the session id sent to us by the client
2423
     *   regardless
2424
     * s->hit is non-zero in either case of session reuse,
2425
     * so the following won't overwrite an ID that we're supposed
2426
     * to send back.
2427
     */
2428
0
    if (s->session->not_resumable ||
2429
0
        (!(SSL_CONNECTION_GET_CTX(s)->session_cache_mode & SSL_SESS_CACHE_SERVER)
2430
0
         && !s->hit))
2431
0
        s->session->session_id_length = 0;
2432
2433
0
    if (usetls13) {
2434
0
        sl = s->tmp_session_id_len;
2435
0
        session_id = s->tmp_session_id;
2436
0
    } else {
2437
0
        sl = s->session->session_id_length;
2438
0
        session_id = s->session->session_id;
2439
0
    }
2440
2441
0
    if (sl > sizeof(s->session->session_id)) {
2442
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2443
0
        return CON_FUNC_ERROR;
2444
0
    }
2445
2446
    /* set up the compression method */
2447
#ifdef OPENSSL_NO_COMP
2448
    compm = 0;
2449
#else
2450
0
    if (usetls13 || s->s3.tmp.new_compression == NULL)
2451
0
        compm = 0;
2452
0
    else
2453
0
        compm = s->s3.tmp.new_compression->id;
2454
0
#endif
2455
2456
0
    if (!WPACKET_sub_memcpy_u8(pkt, session_id, sl)
2457
0
            || !SSL_CONNECTION_GET_SSL(s)->method->put_cipher_by_char(s->s3.tmp.new_cipher,
2458
0
                                                                      pkt, &len)
2459
0
            || !WPACKET_put_bytes_u8(pkt, compm)) {
2460
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2461
0
        return CON_FUNC_ERROR;
2462
0
    }
2463
2464
0
    if (!tls_construct_extensions(s, pkt,
2465
0
                                  s->hello_retry_request == SSL_HRR_PENDING
2466
0
                                      ? SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST
2467
0
                                      : (SSL_CONNECTION_IS_TLS13(s)
2468
0
                                          ? SSL_EXT_TLS1_3_SERVER_HELLO
2469
0
                                          : SSL_EXT_TLS1_2_SERVER_HELLO),
2470
0
                                  NULL, 0)) {
2471
        /* SSLfatal() already called */
2472
0
        return CON_FUNC_ERROR;
2473
0
    }
2474
2475
0
    if (s->hello_retry_request == SSL_HRR_PENDING) {
2476
        /* Ditch the session. We'll create a new one next time around */
2477
0
        SSL_SESSION_free(s->session);
2478
0
        s->session = NULL;
2479
0
        s->hit = 0;
2480
2481
        /*
2482
         * Re-initialise the Transcript Hash. We're going to prepopulate it with
2483
         * a synthetic message_hash in place of ClientHello1.
2484
         */
2485
0
        if (!create_synthetic_message_hash(s, NULL, 0, NULL, 0)) {
2486
            /* SSLfatal() already called */
2487
0
            return CON_FUNC_ERROR;
2488
0
        }
2489
0
    } else if (!(s->verify_mode & SSL_VERIFY_PEER)
2490
0
                && !ssl3_digest_cached_records(s, 0)) {
2491
0
        /* SSLfatal() already called */;
2492
0
        return CON_FUNC_ERROR;
2493
0
    }
2494
2495
0
    return CON_FUNC_SUCCESS;
2496
0
}
2497
2498
CON_FUNC_RETURN tls_construct_server_done(SSL_CONNECTION *s, WPACKET *pkt)
2499
0
{
2500
0
    if (!s->s3.tmp.cert_request) {
2501
0
        if (!ssl3_digest_cached_records(s, 0)) {
2502
            /* SSLfatal() already called */
2503
0
            return CON_FUNC_ERROR;
2504
0
        }
2505
0
    }
2506
0
    return CON_FUNC_SUCCESS;
2507
0
}
2508
2509
CON_FUNC_RETURN tls_construct_server_key_exchange(SSL_CONNECTION *s,
2510
                                                  WPACKET *pkt)
2511
0
{
2512
0
    EVP_PKEY *pkdh = NULL;
2513
0
    unsigned char *encodedPoint = NULL;
2514
0
    size_t encodedlen = 0;
2515
0
    int curve_id = 0;
2516
0
    const SIGALG_LOOKUP *lu = s->s3.tmp.sigalg;
2517
0
    int i;
2518
0
    unsigned long type;
2519
0
    BIGNUM *r[4];
2520
0
    EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
2521
0
    EVP_PKEY_CTX *pctx = NULL;
2522
0
    size_t paramlen, paramoffset;
2523
0
    int freer = 0;
2524
0
    CON_FUNC_RETURN ret = CON_FUNC_ERROR;
2525
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
2526
2527
0
    if (!WPACKET_get_total_written(pkt, &paramoffset)) {
2528
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2529
0
        goto err;
2530
0
    }
2531
2532
0
    if (md_ctx == NULL) {
2533
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
2534
0
        goto err;
2535
0
    }
2536
2537
0
    type = s->s3.tmp.new_cipher->algorithm_mkey;
2538
2539
0
    r[0] = r[1] = r[2] = r[3] = NULL;
2540
0
#ifndef OPENSSL_NO_PSK
2541
    /* Plain PSK or RSAPSK nothing to do */
2542
0
    if (type & (SSL_kPSK | SSL_kRSAPSK)) {
2543
0
    } else
2544
0
#endif                          /* !OPENSSL_NO_PSK */
2545
0
    if (type & (SSL_kDHE | SSL_kDHEPSK)) {
2546
0
        CERT *cert = s->cert;
2547
0
        EVP_PKEY *pkdhp = NULL;
2548
2549
0
        if (s->cert->dh_tmp_auto) {
2550
0
            pkdh = ssl_get_auto_dh(s);
2551
0
            if (pkdh == NULL) {
2552
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2553
0
                goto err;
2554
0
            }
2555
0
            pkdhp = pkdh;
2556
0
        } else {
2557
0
            pkdhp = cert->dh_tmp;
2558
0
        }
2559
0
#if !defined(OPENSSL_NO_DEPRECATED_3_0)
2560
0
        if ((pkdhp == NULL) && (s->cert->dh_tmp_cb != NULL)) {
2561
0
            pkdh = ssl_dh_to_pkey(s->cert->dh_tmp_cb(SSL_CONNECTION_GET_SSL(s),
2562
0
                                                     0, 1024));
2563
0
            if (pkdh == NULL) {
2564
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2565
0
                goto err;
2566
0
            }
2567
0
            pkdhp = pkdh;
2568
0
        }
2569
0
#endif
2570
0
        if (pkdhp == NULL) {
2571
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_MISSING_TMP_DH_KEY);
2572
0
            goto err;
2573
0
        }
2574
0
        if (!ssl_security(s, SSL_SECOP_TMP_DH,
2575
0
                          EVP_PKEY_get_security_bits(pkdhp), 0, pkdhp)) {
2576
0
            SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_DH_KEY_TOO_SMALL);
2577
0
            goto err;
2578
0
        }
2579
0
        if (s->s3.tmp.pkey != NULL) {
2580
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2581
0
            goto err;
2582
0
        }
2583
2584
0
        s->s3.tmp.pkey = ssl_generate_pkey(s, pkdhp);
2585
0
        if (s->s3.tmp.pkey == NULL) {
2586
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2587
0
            goto err;
2588
0
        }
2589
2590
0
        EVP_PKEY_free(pkdh);
2591
0
        pkdh = NULL;
2592
2593
        /* These BIGNUMs need to be freed when we're finished */
2594
0
        freer = 1;
2595
0
        if (!EVP_PKEY_get_bn_param(s->s3.tmp.pkey, OSSL_PKEY_PARAM_FFC_P,
2596
0
                                   &r[0])
2597
0
                || !EVP_PKEY_get_bn_param(s->s3.tmp.pkey, OSSL_PKEY_PARAM_FFC_G,
2598
0
                                          &r[1])
2599
0
                || !EVP_PKEY_get_bn_param(s->s3.tmp.pkey,
2600
0
                                          OSSL_PKEY_PARAM_PUB_KEY, &r[2])) {
2601
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2602
0
            goto err;
2603
0
        }
2604
0
    } else if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2605
2606
0
        if (s->s3.tmp.pkey != NULL) {
2607
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2608
0
            goto err;
2609
0
        }
2610
2611
        /* Get NID of appropriate shared curve */
2612
0
        curve_id = tls1_shared_group(s, -2);
2613
0
        if (curve_id == 0) {
2614
0
            SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
2615
0
                     SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
2616
0
            goto err;
2617
0
        }
2618
        /* Cache the group used in the SSL_SESSION */
2619
0
        s->session->kex_group = curve_id;
2620
        /* Generate a new key for this curve */
2621
0
        s->s3.tmp.pkey = ssl_generate_pkey_group(s, curve_id);
2622
0
        if (s->s3.tmp.pkey == NULL) {
2623
            /* SSLfatal() already called */
2624
0
            goto err;
2625
0
        }
2626
2627
        /* Encode the public key. */
2628
0
        encodedlen = EVP_PKEY_get1_encoded_public_key(s->s3.tmp.pkey,
2629
0
                                                      &encodedPoint);
2630
0
        if (encodedlen == 0) {
2631
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EC_LIB);
2632
0
            goto err;
2633
0
        }
2634
2635
        /*
2636
         * We'll generate the serverKeyExchange message explicitly so we
2637
         * can set these to NULLs
2638
         */
2639
0
        r[0] = NULL;
2640
0
        r[1] = NULL;
2641
0
        r[2] = NULL;
2642
0
        r[3] = NULL;
2643
0
    } else
2644
0
#ifndef OPENSSL_NO_SRP
2645
0
    if (type & SSL_kSRP) {
2646
0
        if ((s->srp_ctx.N == NULL) ||
2647
0
            (s->srp_ctx.g == NULL) ||
2648
0
            (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
2649
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_MISSING_SRP_PARAM);
2650
0
            goto err;
2651
0
        }
2652
0
        r[0] = s->srp_ctx.N;
2653
0
        r[1] = s->srp_ctx.g;
2654
0
        r[2] = s->srp_ctx.s;
2655
0
        r[3] = s->srp_ctx.B;
2656
0
    } else
2657
0
#endif
2658
0
    {
2659
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
2660
0
        goto err;
2661
0
    }
2662
2663
0
    if (((s->s3.tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP)) != 0)
2664
0
        || ((s->s3.tmp.new_cipher->algorithm_mkey & SSL_PSK)) != 0) {
2665
0
        lu = NULL;
2666
0
    } else if (lu == NULL) {
2667
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, ERR_R_INTERNAL_ERROR);
2668
0
        goto err;
2669
0
    }
2670
2671
0
#ifndef OPENSSL_NO_PSK
2672
0
    if (type & SSL_PSK) {
2673
0
        size_t len = (s->cert->psk_identity_hint == NULL)
2674
0
                        ? 0 : strlen(s->cert->psk_identity_hint);
2675
2676
        /*
2677
         * It should not happen that len > PSK_MAX_IDENTITY_LEN - we already
2678
         * checked this when we set the identity hint - but just in case
2679
         */
2680
0
        if (len > PSK_MAX_IDENTITY_LEN
2681
0
                || !WPACKET_sub_memcpy_u16(pkt, s->cert->psk_identity_hint,
2682
0
                                           len)) {
2683
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2684
0
            goto err;
2685
0
        }
2686
0
    }
2687
0
#endif
2688
2689
0
    for (i = 0; i < 4 && r[i] != NULL; i++) {
2690
0
        unsigned char *binval;
2691
0
        int res;
2692
2693
0
#ifndef OPENSSL_NO_SRP
2694
0
        if ((i == 2) && (type & SSL_kSRP)) {
2695
0
            res = WPACKET_start_sub_packet_u8(pkt);
2696
0
        } else
2697
0
#endif
2698
0
            res = WPACKET_start_sub_packet_u16(pkt);
2699
2700
0
        if (!res) {
2701
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2702
0
            goto err;
2703
0
        }
2704
2705
        /*-
2706
         * for interoperability with some versions of the Microsoft TLS
2707
         * stack, we need to zero pad the DHE pub key to the same length
2708
         * as the prime
2709
         */
2710
0
        if ((i == 2) && (type & (SSL_kDHE | SSL_kDHEPSK))) {
2711
0
            size_t len = BN_num_bytes(r[0]) - BN_num_bytes(r[2]);
2712
2713
0
            if (len > 0) {
2714
0
                if (!WPACKET_allocate_bytes(pkt, len, &binval)) {
2715
0
                    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2716
0
                    goto err;
2717
0
                }
2718
0
                memset(binval, 0, len);
2719
0
            }
2720
0
        }
2721
2722
0
        if (!WPACKET_allocate_bytes(pkt, BN_num_bytes(r[i]), &binval)
2723
0
                || !WPACKET_close(pkt)) {
2724
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2725
0
            goto err;
2726
0
        }
2727
2728
0
        BN_bn2bin(r[i], binval);
2729
0
    }
2730
2731
0
    if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2732
        /*
2733
         * We only support named (not generic) curves. In this situation, the
2734
         * ServerKeyExchange message has: [1 byte CurveType], [2 byte CurveName]
2735
         * [1 byte length of encoded point], followed by the actual encoded
2736
         * point itself
2737
         */
2738
0
        if (!WPACKET_put_bytes_u8(pkt, NAMED_CURVE_TYPE)
2739
0
                || !WPACKET_put_bytes_u8(pkt, 0)
2740
0
                || !WPACKET_put_bytes_u8(pkt, curve_id)
2741
0
                || !WPACKET_sub_memcpy_u8(pkt, encodedPoint, encodedlen)) {
2742
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2743
0
            goto err;
2744
0
        }
2745
0
        OPENSSL_free(encodedPoint);
2746
0
        encodedPoint = NULL;
2747
0
    }
2748
2749
    /* not anonymous */
2750
0
    if (lu != NULL) {
2751
0
        EVP_PKEY *pkey = s->s3.tmp.cert->privatekey;
2752
0
        const EVP_MD *md;
2753
0
        unsigned char *sigbytes1, *sigbytes2, *tbs;
2754
0
        size_t siglen = 0, tbslen;
2755
2756
0
        if (pkey == NULL || !tls1_lookup_md(sctx, lu, &md)) {
2757
            /* Should never happen */
2758
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2759
0
            goto err;
2760
0
        }
2761
        /* Get length of the parameters we have written above */
2762
0
        if (!WPACKET_get_length(pkt, &paramlen)) {
2763
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2764
0
            goto err;
2765
0
        }
2766
        /* send signature algorithm */
2767
0
        if (SSL_USE_SIGALGS(s) && !WPACKET_put_bytes_u16(pkt, lu->sigalg)) {
2768
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2769
0
            goto err;
2770
0
        }
2771
2772
0
        if (EVP_DigestSignInit_ex(md_ctx, &pctx,
2773
0
                                  md == NULL ? NULL : EVP_MD_get0_name(md),
2774
0
                                  sctx->libctx, sctx->propq, pkey,
2775
0
                                  NULL) <= 0) {
2776
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2777
0
            goto err;
2778
0
        }
2779
0
        if (lu->sig == EVP_PKEY_RSA_PSS) {
2780
0
            if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2781
0
                || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx, RSA_PSS_SALTLEN_DIGEST) <= 0) {
2782
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
2783
0
                goto err;
2784
0
            }
2785
0
        }
2786
0
        tbslen = construct_key_exchange_tbs(s, &tbs,
2787
0
                                            s->init_buf->data + paramoffset,
2788
0
                                            paramlen);
2789
0
        if (tbslen == 0) {
2790
            /* SSLfatal() already called */
2791
0
            goto err;
2792
0
        }
2793
2794
0
        if (EVP_DigestSign(md_ctx, NULL, &siglen, tbs, tbslen) <=0
2795
0
                || !WPACKET_sub_reserve_bytes_u16(pkt, siglen, &sigbytes1)
2796
0
                || EVP_DigestSign(md_ctx, sigbytes1, &siglen, tbs, tbslen) <= 0
2797
0
                || !WPACKET_sub_allocate_bytes_u16(pkt, siglen, &sigbytes2)
2798
0
                || sigbytes1 != sigbytes2) {
2799
0
            OPENSSL_free(tbs);
2800
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2801
0
            goto err;
2802
0
        }
2803
0
        OPENSSL_free(tbs);
2804
0
    }
2805
2806
0
    ret = CON_FUNC_SUCCESS;
2807
0
 err:
2808
0
    EVP_PKEY_free(pkdh);
2809
0
    OPENSSL_free(encodedPoint);
2810
0
    EVP_MD_CTX_free(md_ctx);
2811
0
    if (freer) {
2812
0
        BN_free(r[0]);
2813
0
        BN_free(r[1]);
2814
0
        BN_free(r[2]);
2815
0
        BN_free(r[3]);
2816
0
    }
2817
0
    return ret;
2818
0
}
2819
2820
CON_FUNC_RETURN tls_construct_certificate_request(SSL_CONNECTION *s,
2821
                                                  WPACKET *pkt)
2822
0
{
2823
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
2824
        /* Send random context when doing post-handshake auth */
2825
0
        if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) {
2826
0
            OPENSSL_free(s->pha_context);
2827
0
            s->pha_context_len = 32;
2828
0
            if ((s->pha_context = OPENSSL_malloc(s->pha_context_len)) == NULL) {
2829
0
                s->pha_context_len = 0;
2830
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2831
0
                return CON_FUNC_ERROR;
2832
0
            }
2833
0
            if (RAND_bytes_ex(SSL_CONNECTION_GET_CTX(s)->libctx,
2834
0
                              s->pha_context, s->pha_context_len, 0) <= 0
2835
0
                    || !WPACKET_sub_memcpy_u8(pkt, s->pha_context,
2836
0
                                              s->pha_context_len)) {
2837
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2838
0
                return CON_FUNC_ERROR;
2839
0
            }
2840
            /* reset the handshake hash back to just after the ClientFinished */
2841
0
            if (!tls13_restore_handshake_digest_for_pha(s)) {
2842
                /* SSLfatal() already called */
2843
0
                return CON_FUNC_ERROR;
2844
0
            }
2845
0
        } else {
2846
0
            if (!WPACKET_put_bytes_u8(pkt, 0)) {
2847
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2848
0
                return CON_FUNC_ERROR;
2849
0
            }
2850
0
        }
2851
2852
0
        if (!tls_construct_extensions(s, pkt,
2853
0
                                      SSL_EXT_TLS1_3_CERTIFICATE_REQUEST, NULL,
2854
0
                                      0)) {
2855
            /* SSLfatal() already called */
2856
0
            return CON_FUNC_ERROR;
2857
0
        }
2858
0
        goto done;
2859
0
    }
2860
2861
    /* get the list of acceptable cert types */
2862
0
    if (!WPACKET_start_sub_packet_u8(pkt)
2863
0
        || !ssl3_get_req_cert_type(s, pkt) || !WPACKET_close(pkt)) {
2864
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2865
0
        return CON_FUNC_ERROR;
2866
0
    }
2867
2868
0
    if (SSL_USE_SIGALGS(s)) {
2869
0
        const uint16_t *psigs;
2870
0
        size_t nl = tls12_get_psigalgs(s, 1, &psigs);
2871
2872
0
        if (!WPACKET_start_sub_packet_u16(pkt)
2873
0
                || !WPACKET_set_flags(pkt, WPACKET_FLAGS_NON_ZERO_LENGTH)
2874
0
                || !tls12_copy_sigalgs(s, pkt, psigs, nl)
2875
0
                || !WPACKET_close(pkt)) {
2876
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2877
0
            return CON_FUNC_ERROR;
2878
0
        }
2879
0
    }
2880
2881
0
    if (!construct_ca_names(s, get_ca_names(s), pkt)) {
2882
        /* SSLfatal() already called */
2883
0
        return CON_FUNC_ERROR;
2884
0
    }
2885
2886
0
 done:
2887
0
    s->certreqs_sent++;
2888
0
    s->s3.tmp.cert_request = 1;
2889
0
    return CON_FUNC_SUCCESS;
2890
0
}
2891
2892
static int tls_process_cke_psk_preamble(SSL_CONNECTION *s, PACKET *pkt)
2893
0
{
2894
0
#ifndef OPENSSL_NO_PSK
2895
0
    unsigned char psk[PSK_MAX_PSK_LEN];
2896
0
    size_t psklen;
2897
0
    PACKET psk_identity;
2898
2899
0
    if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
2900
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
2901
0
        return 0;
2902
0
    }
2903
0
    if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
2904
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_DATA_LENGTH_TOO_LONG);
2905
0
        return 0;
2906
0
    }
2907
0
    if (s->psk_server_callback == NULL) {
2908
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_PSK_NO_SERVER_CB);
2909
0
        return 0;
2910
0
    }
2911
2912
0
    if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
2913
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2914
0
        return 0;
2915
0
    }
2916
2917
0
    psklen = s->psk_server_callback(SSL_CONNECTION_GET_SSL(s),
2918
0
                                    s->session->psk_identity,
2919
0
                                    psk, sizeof(psk));
2920
2921
0
    if (psklen > PSK_MAX_PSK_LEN) {
2922
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2923
0
        return 0;
2924
0
    } else if (psklen == 0) {
2925
        /*
2926
         * PSK related to the given identity not found
2927
         */
2928
0
        SSLfatal(s, SSL_AD_UNKNOWN_PSK_IDENTITY, SSL_R_PSK_IDENTITY_NOT_FOUND);
2929
0
        return 0;
2930
0
    }
2931
2932
0
    OPENSSL_free(s->s3.tmp.psk);
2933
0
    s->s3.tmp.psk = OPENSSL_memdup(psk, psklen);
2934
0
    OPENSSL_cleanse(psk, psklen);
2935
2936
0
    if (s->s3.tmp.psk == NULL) {
2937
0
        s->s3.tmp.psklen = 0;
2938
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
2939
0
        return 0;
2940
0
    }
2941
2942
0
    s->s3.tmp.psklen = psklen;
2943
2944
0
    return 1;
2945
#else
2946
    /* Should never happen */
2947
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
2948
    return 0;
2949
#endif
2950
0
}
2951
2952
static int tls_process_cke_rsa(SSL_CONNECTION *s, PACKET *pkt)
2953
0
{
2954
0
    size_t outlen;
2955
0
    PACKET enc_premaster;
2956
0
    EVP_PKEY *rsa = NULL;
2957
0
    unsigned char *rsa_decrypt = NULL;
2958
0
    int ret = 0;
2959
0
    EVP_PKEY_CTX *ctx = NULL;
2960
0
    OSSL_PARAM params[3], *p = params;
2961
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
2962
2963
0
    rsa = s->cert->pkeys[SSL_PKEY_RSA].privatekey;
2964
0
    if (rsa == NULL) {
2965
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_MISSING_RSA_CERTIFICATE);
2966
0
        return 0;
2967
0
    }
2968
2969
    /* SSLv3 and pre-standard DTLS omit the length bytes. */
2970
0
    if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
2971
0
        enc_premaster = *pkt;
2972
0
    } else {
2973
0
        if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
2974
0
            || PACKET_remaining(pkt) != 0) {
2975
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
2976
0
            return 0;
2977
0
        }
2978
0
    }
2979
2980
0
    outlen = SSL_MAX_MASTER_KEY_LENGTH;
2981
0
    rsa_decrypt = OPENSSL_malloc(outlen);
2982
0
    if (rsa_decrypt == NULL) {
2983
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
2984
0
        return 0;
2985
0
    }
2986
2987
0
    ctx = EVP_PKEY_CTX_new_from_pkey(sctx->libctx, rsa, sctx->propq);
2988
0
    if (ctx == NULL) {
2989
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
2990
0
        goto err;
2991
0
    }
2992
2993
    /*
2994
     * We must not leak whether a decryption failure occurs because of
2995
     * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2996
     * section 7.4.7.1). We use the special padding type
2997
     * RSA_PKCS1_WITH_TLS_PADDING to do that. It will automatically decrypt the
2998
     * RSA, check the padding and check that the client version is as expected
2999
     * in the premaster secret. If any of that fails then the function appears
3000
     * to return successfully but with a random result. The call below could
3001
     * still fail if the input is publicly invalid.
3002
     * See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
3003
     */
3004
0
    if (EVP_PKEY_decrypt_init(ctx) <= 0
3005
0
            || EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_WITH_TLS_PADDING) <= 0) {
3006
0
        SSLfatal(s, SSL_AD_DECRYPT_ERROR, SSL_R_DECRYPTION_FAILED);
3007
0
        goto err;
3008
0
    }
3009
3010
0
    *p++ = OSSL_PARAM_construct_uint(OSSL_ASYM_CIPHER_PARAM_TLS_CLIENT_VERSION,
3011
0
                                     (unsigned int *)&s->client_version);
3012
0
   if ((s->options & SSL_OP_TLS_ROLLBACK_BUG) != 0)
3013
0
        *p++ = OSSL_PARAM_construct_uint(
3014
0
            OSSL_ASYM_CIPHER_PARAM_TLS_NEGOTIATED_VERSION,
3015
0
            (unsigned int *)&s->version);
3016
0
    *p++ = OSSL_PARAM_construct_end();
3017
3018
0
    if (!EVP_PKEY_CTX_set_params(ctx, params)
3019
0
            || EVP_PKEY_decrypt(ctx, rsa_decrypt, &outlen,
3020
0
                                PACKET_data(&enc_premaster),
3021
0
                                PACKET_remaining(&enc_premaster)) <= 0) {
3022
0
        SSLfatal(s, SSL_AD_DECRYPT_ERROR, SSL_R_DECRYPTION_FAILED);
3023
0
        goto err;
3024
0
    }
3025
3026
    /*
3027
     * This test should never fail (otherwise we should have failed above) but
3028
     * we double check anyway.
3029
     */
3030
0
    if (outlen != SSL_MAX_MASTER_KEY_LENGTH) {
3031
0
        OPENSSL_cleanse(rsa_decrypt, SSL_MAX_MASTER_KEY_LENGTH);
3032
0
        SSLfatal(s, SSL_AD_DECRYPT_ERROR, SSL_R_DECRYPTION_FAILED);
3033
0
        goto err;
3034
0
    }
3035
3036
    /* Also cleanses rsa_decrypt (on success or failure) */
3037
0
    if (!ssl_generate_master_secret(s, rsa_decrypt, outlen, 0)) {
3038
        /* SSLfatal() already called */
3039
0
        goto err;
3040
0
    }
3041
3042
0
    ret = 1;
3043
0
 err:
3044
0
    OPENSSL_free(rsa_decrypt);
3045
0
    EVP_PKEY_CTX_free(ctx);
3046
0
    return ret;
3047
0
}
3048
3049
static int tls_process_cke_dhe(SSL_CONNECTION *s, PACKET *pkt)
3050
0
{
3051
0
    EVP_PKEY *skey = NULL;
3052
0
    unsigned int i;
3053
0
    const unsigned char *data;
3054
0
    EVP_PKEY *ckey = NULL;
3055
0
    int ret = 0;
3056
3057
0
    if (!PACKET_get_net_2(pkt, &i) || PACKET_remaining(pkt) != i) {
3058
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
3059
0
        goto err;
3060
0
    }
3061
0
    skey = s->s3.tmp.pkey;
3062
0
    if (skey == NULL) {
3063
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_MISSING_TMP_DH_KEY);
3064
0
        goto err;
3065
0
    }
3066
3067
0
    if (PACKET_remaining(pkt) == 0L) {
3068
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_MISSING_TMP_DH_KEY);
3069
0
        goto err;
3070
0
    }
3071
0
    if (!PACKET_get_bytes(pkt, &data, i)) {
3072
        /* We already checked we have enough data */
3073
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3074
0
        goto err;
3075
0
    }
3076
0
    ckey = EVP_PKEY_new();
3077
0
    if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) {
3078
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_COPY_PARAMETERS_FAILED);
3079
0
        goto err;
3080
0
    }
3081
3082
0
    if (!EVP_PKEY_set1_encoded_public_key(ckey, data, i)) {
3083
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3084
0
        goto err;
3085
0
    }
3086
3087
0
    if (ssl_derive(s, skey, ckey, 1) == 0) {
3088
        /* SSLfatal() already called */
3089
0
        goto err;
3090
0
    }
3091
3092
0
    ret = 1;
3093
0
    EVP_PKEY_free(s->s3.tmp.pkey);
3094
0
    s->s3.tmp.pkey = NULL;
3095
0
 err:
3096
0
    EVP_PKEY_free(ckey);
3097
0
    return ret;
3098
0
}
3099
3100
static int tls_process_cke_ecdhe(SSL_CONNECTION *s, PACKET *pkt)
3101
0
{
3102
0
    EVP_PKEY *skey = s->s3.tmp.pkey;
3103
0
    EVP_PKEY *ckey = NULL;
3104
0
    int ret = 0;
3105
3106
0
    if (PACKET_remaining(pkt) == 0L) {
3107
        /* We don't support ECDH client auth */
3108
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_MISSING_TMP_ECDH_KEY);
3109
0
        goto err;
3110
0
    } else {
3111
0
        unsigned int i;
3112
0
        const unsigned char *data;
3113
3114
        /*
3115
         * Get client's public key from encoded point in the
3116
         * ClientKeyExchange message.
3117
         */
3118
3119
        /* Get encoded point length */
3120
0
        if (!PACKET_get_1(pkt, &i) || !PACKET_get_bytes(pkt, &data, i)
3121
0
            || PACKET_remaining(pkt) != 0) {
3122
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
3123
0
            goto err;
3124
0
        }
3125
0
        if (skey == NULL) {
3126
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_MISSING_TMP_ECDH_KEY);
3127
0
            goto err;
3128
0
        }
3129
3130
0
        ckey = EVP_PKEY_new();
3131
0
        if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) {
3132
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_COPY_PARAMETERS_FAILED);
3133
0
            goto err;
3134
0
        }
3135
3136
0
        if (EVP_PKEY_set1_encoded_public_key(ckey, data, i) <= 0) {
3137
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EC_LIB);
3138
0
            goto err;
3139
0
        }
3140
0
    }
3141
3142
0
    if (ssl_derive(s, skey, ckey, 1) == 0) {
3143
        /* SSLfatal() already called */
3144
0
        goto err;
3145
0
    }
3146
3147
0
    ret = 1;
3148
0
    EVP_PKEY_free(s->s3.tmp.pkey);
3149
0
    s->s3.tmp.pkey = NULL;
3150
0
 err:
3151
0
    EVP_PKEY_free(ckey);
3152
3153
0
    return ret;
3154
0
}
3155
3156
static int tls_process_cke_srp(SSL_CONNECTION *s, PACKET *pkt)
3157
0
{
3158
0
#ifndef OPENSSL_NO_SRP
3159
0
    unsigned int i;
3160
0
    const unsigned char *data;
3161
3162
0
    if (!PACKET_get_net_2(pkt, &i)
3163
0
        || !PACKET_get_bytes(pkt, &data, i)) {
3164
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_SRP_A_LENGTH);
3165
0
        return 0;
3166
0
    }
3167
0
    if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
3168
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_BN_LIB);
3169
0
        return 0;
3170
0
    }
3171
0
    if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) {
3172
0
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_SRP_PARAMETERS);
3173
0
        return 0;
3174
0
    }
3175
0
    OPENSSL_free(s->session->srp_username);
3176
0
    s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
3177
0
    if (s->session->srp_username == NULL) {
3178
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
3179
0
        return 0;
3180
0
    }
3181
3182
0
    if (!srp_generate_server_master_secret(s)) {
3183
        /* SSLfatal() already called */
3184
0
        return 0;
3185
0
    }
3186
3187
0
    return 1;
3188
#else
3189
    /* Should never happen */
3190
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3191
    return 0;
3192
#endif
3193
0
}
3194
3195
static int tls_process_cke_gost(SSL_CONNECTION *s, PACKET *pkt)
3196
0
{
3197
0
#ifndef OPENSSL_NO_GOST
3198
0
    EVP_PKEY_CTX *pkey_ctx;
3199
0
    EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
3200
0
    unsigned char premaster_secret[32];
3201
0
    const unsigned char *start;
3202
0
    size_t outlen = sizeof(premaster_secret), inlen;
3203
0
    unsigned long alg_a;
3204
0
    GOST_KX_MESSAGE *pKX = NULL;
3205
0
    const unsigned char *ptr;
3206
0
    int ret = 0;
3207
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
3208
3209
    /* Get our certificate private key */
3210
0
    alg_a = s->s3.tmp.new_cipher->algorithm_auth;
3211
0
    if (alg_a & SSL_aGOST12) {
3212
        /*
3213
         * New GOST ciphersuites have SSL_aGOST01 bit too
3214
         */
3215
0
        pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey;
3216
0
        if (pk == NULL) {
3217
0
            pk = s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
3218
0
        }
3219
0
        if (pk == NULL) {
3220
0
            pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
3221
0
        }
3222
0
    } else if (alg_a & SSL_aGOST01) {
3223
0
        pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
3224
0
    }
3225
3226
0
    pkey_ctx = EVP_PKEY_CTX_new_from_pkey(sctx->libctx, pk, sctx->propq);
3227
0
    if (pkey_ctx == NULL) {
3228
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
3229
0
        return 0;
3230
0
    }
3231
0
    if (EVP_PKEY_decrypt_init(pkey_ctx) <= 0) {
3232
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3233
0
        return 0;
3234
0
    }
3235
    /*
3236
     * If client certificate is present and is of the same type, maybe
3237
     * use it for key exchange.  Don't mind errors from
3238
     * EVP_PKEY_derive_set_peer, because it is completely valid to use a
3239
     * client certificate for authorization only.
3240
     */
3241
0
    client_pub_pkey = tls_get_peer_pkey(s);
3242
0
    if (client_pub_pkey) {
3243
0
        if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
3244
0
            ERR_clear_error();
3245
0
    }
3246
3247
0
    ptr = PACKET_data(pkt);
3248
    /* Some implementations provide extra data in the opaqueBlob
3249
     * We have nothing to do with this blob so we just skip it */
3250
0
    pKX = d2i_GOST_KX_MESSAGE(NULL, &ptr, PACKET_remaining(pkt));
3251
0
    if (pKX == NULL
3252
0
       || pKX->kxBlob == NULL
3253
0
       || ASN1_TYPE_get(pKX->kxBlob) != V_ASN1_SEQUENCE) {
3254
0
         SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_DECRYPTION_FAILED);
3255
0
         goto err;
3256
0
    }
3257
3258
0
    if (!PACKET_forward(pkt, ptr - PACKET_data(pkt))) {
3259
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_DECRYPTION_FAILED);
3260
0
        goto err;
3261
0
    }
3262
3263
0
    if (PACKET_remaining(pkt) != 0) {
3264
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_DECRYPTION_FAILED);
3265
0
        goto err;
3266
0
    }
3267
3268
0
    inlen = pKX->kxBlob->value.sequence->length;
3269
0
    start = pKX->kxBlob->value.sequence->data;
3270
3271
0
    if (EVP_PKEY_decrypt(pkey_ctx, premaster_secret, &outlen, start,
3272
0
                         inlen) <= 0) {
3273
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_DECRYPTION_FAILED);
3274
0
        goto err;
3275
0
    }
3276
    /* Generate master secret */
3277
0
    if (!ssl_generate_master_secret(s, premaster_secret, outlen, 0)) {
3278
        /* SSLfatal() already called */
3279
0
        goto err;
3280
0
    }
3281
    /* Check if pubkey from client certificate was used */
3282
0
    if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2,
3283
0
                          NULL) > 0)
3284
0
        s->statem.no_cert_verify = 1;
3285
3286
0
    ret = 1;
3287
0
 err:
3288
0
    EVP_PKEY_CTX_free(pkey_ctx);
3289
0
    GOST_KX_MESSAGE_free(pKX);
3290
0
    return ret;
3291
#else
3292
    /* Should never happen */
3293
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3294
    return 0;
3295
#endif
3296
0
}
3297
3298
static int tls_process_cke_gost18(SSL_CONNECTION *s, PACKET *pkt)
3299
0
{
3300
0
#ifndef OPENSSL_NO_GOST
3301
0
    unsigned char rnd_dgst[32];
3302
0
    EVP_PKEY_CTX *pkey_ctx = NULL;
3303
0
    EVP_PKEY *pk = NULL;
3304
0
    unsigned char premaster_secret[32];
3305
0
    const unsigned char *start = NULL;
3306
0
    size_t outlen = sizeof(premaster_secret), inlen = 0;
3307
0
    int ret = 0;
3308
0
    int cipher_nid = ossl_gost18_cke_cipher_nid(s);
3309
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
3310
3311
0
    if (cipher_nid == NID_undef) {
3312
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3313
0
        return 0;
3314
0
    }
3315
3316
0
    if (ossl_gost_ukm(s, rnd_dgst) <= 0) {
3317
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3318
0
        goto err;
3319
0
    }
3320
3321
    /* Get our certificate private key */
3322
0
    pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey != NULL ?
3323
0
         s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey :
3324
0
         s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
3325
0
    if (pk == NULL) {
3326
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_BAD_HANDSHAKE_STATE);
3327
0
        goto err;
3328
0
    }
3329
3330
0
    pkey_ctx = EVP_PKEY_CTX_new_from_pkey(sctx->libctx, pk, sctx->propq);
3331
0
    if (pkey_ctx == NULL) {
3332
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
3333
0
        goto err;
3334
0
    }
3335
0
    if (EVP_PKEY_decrypt_init(pkey_ctx) <= 0) {
3336
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3337
0
        goto err;
3338
0
    }
3339
3340
    /* Reuse EVP_PKEY_CTRL_SET_IV, make choice in engine code depending on size */
3341
0
    if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_DECRYPT,
3342
0
                          EVP_PKEY_CTRL_SET_IV, 32, rnd_dgst) <= 0) {
3343
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_LIBRARY_BUG);
3344
0
        goto err;
3345
0
    }
3346
3347
0
    if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_DECRYPT,
3348
0
                          EVP_PKEY_CTRL_CIPHER, cipher_nid, NULL) <= 0) {
3349
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_LIBRARY_BUG);
3350
0
        goto err;
3351
0
    }
3352
0
    inlen = PACKET_remaining(pkt);
3353
0
    start = PACKET_data(pkt);
3354
3355
0
    if (EVP_PKEY_decrypt(pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
3356
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_DECRYPTION_FAILED);
3357
0
        goto err;
3358
0
    }
3359
    /* Generate master secret */
3360
0
    if (!ssl_generate_master_secret(s, premaster_secret, outlen, 0)) {
3361
         /* SSLfatal() already called */
3362
0
         goto err;
3363
0
    }
3364
0
    ret = 1;
3365
3366
0
 err:
3367
0
    EVP_PKEY_CTX_free(pkey_ctx);
3368
0
    return ret;
3369
#else
3370
    /* Should never happen */
3371
    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3372
    return 0;
3373
#endif
3374
0
}
3375
3376
MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL_CONNECTION *s,
3377
                                                   PACKET *pkt)
3378
0
{
3379
0
    unsigned long alg_k;
3380
3381
0
    alg_k = s->s3.tmp.new_cipher->algorithm_mkey;
3382
3383
    /* For PSK parse and retrieve identity, obtain PSK key */
3384
0
    if ((alg_k & SSL_PSK) && !tls_process_cke_psk_preamble(s, pkt)) {
3385
        /* SSLfatal() already called */
3386
0
        goto err;
3387
0
    }
3388
3389
0
    if (alg_k & SSL_kPSK) {
3390
        /* Identity extracted earlier: should be nothing left */
3391
0
        if (PACKET_remaining(pkt) != 0) {
3392
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
3393
0
            goto err;
3394
0
        }
3395
        /* PSK handled by ssl_generate_master_secret */
3396
0
        if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
3397
            /* SSLfatal() already called */
3398
0
            goto err;
3399
0
        }
3400
0
    } else if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
3401
0
        if (!tls_process_cke_rsa(s, pkt)) {
3402
            /* SSLfatal() already called */
3403
0
            goto err;
3404
0
        }
3405
0
    } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
3406
0
        if (!tls_process_cke_dhe(s, pkt)) {
3407
            /* SSLfatal() already called */
3408
0
            goto err;
3409
0
        }
3410
0
    } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
3411
0
        if (!tls_process_cke_ecdhe(s, pkt)) {
3412
            /* SSLfatal() already called */
3413
0
            goto err;
3414
0
        }
3415
0
    } else if (alg_k & SSL_kSRP) {
3416
0
        if (!tls_process_cke_srp(s, pkt)) {
3417
            /* SSLfatal() already called */
3418
0
            goto err;
3419
0
        }
3420
0
    } else if (alg_k & SSL_kGOST) {
3421
0
        if (!tls_process_cke_gost(s, pkt)) {
3422
            /* SSLfatal() already called */
3423
0
            goto err;
3424
0
        }
3425
0
    } else if (alg_k & SSL_kGOST18) {
3426
0
        if (!tls_process_cke_gost18(s, pkt)) {
3427
            /* SSLfatal() already called */
3428
0
            goto err;
3429
0
        }
3430
0
    } else {
3431
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_UNKNOWN_CIPHER_TYPE);
3432
0
        goto err;
3433
0
    }
3434
3435
0
    return MSG_PROCESS_CONTINUE_PROCESSING;
3436
0
 err:
3437
0
#ifndef OPENSSL_NO_PSK
3438
0
    OPENSSL_clear_free(s->s3.tmp.psk, s->s3.tmp.psklen);
3439
0
    s->s3.tmp.psk = NULL;
3440
0
    s->s3.tmp.psklen = 0;
3441
0
#endif
3442
0
    return MSG_PROCESS_ERROR;
3443
0
}
3444
3445
WORK_STATE tls_post_process_client_key_exchange(SSL_CONNECTION *s,
3446
                                                WORK_STATE wst)
3447
0
{
3448
#ifndef OPENSSL_NO_SCTP
3449
    if (wst == WORK_MORE_A) {
3450
        if (SSL_CONNECTION_IS_DTLS(s)) {
3451
            unsigned char sctpauthkey[64];
3452
            char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
3453
            size_t labellen;
3454
            /*
3455
             * Add new shared key for SCTP-Auth, will be ignored if no SCTP
3456
             * used.
3457
             */
3458
            memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
3459
                   sizeof(DTLS1_SCTP_AUTH_LABEL));
3460
3461
            /* Don't include the terminating zero. */
3462
            labellen = sizeof(labelbuffer) - 1;
3463
            if (s->mode & SSL_MODE_DTLS_SCTP_LABEL_LENGTH_BUG)
3464
                labellen += 1;
3465
3466
            if (SSL_export_keying_material(SSL_CONNECTION_GET_SSL(s),
3467
                                           sctpauthkey,
3468
                                           sizeof(sctpauthkey), labelbuffer,
3469
                                           labellen, NULL, 0,
3470
                                           0) <= 0) {
3471
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3472
                return WORK_ERROR;
3473
            }
3474
3475
            BIO_ctrl(s->wbio, BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
3476
                     sizeof(sctpauthkey), sctpauthkey);
3477
        }
3478
    }
3479
#endif
3480
3481
0
    if (s->statem.no_cert_verify || !received_client_cert(s)) {
3482
        /*
3483
         * No certificate verify or no peer certificate so we no longer need
3484
         * the handshake_buffer
3485
         */
3486
0
        if (!ssl3_digest_cached_records(s, 0)) {
3487
            /* SSLfatal() already called */
3488
0
            return WORK_ERROR;
3489
0
        }
3490
0
        return WORK_FINISHED_CONTINUE;
3491
0
    } else {
3492
0
        if (!s->s3.handshake_buffer) {
3493
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3494
0
            return WORK_ERROR;
3495
0
        }
3496
        /*
3497
         * For sigalgs freeze the handshake buffer. If we support
3498
         * extms we've done this already so this is a no-op
3499
         */
3500
0
        if (!ssl3_digest_cached_records(s, 1)) {
3501
            /* SSLfatal() already called */
3502
0
            return WORK_ERROR;
3503
0
        }
3504
0
    }
3505
3506
0
    return WORK_FINISHED_CONTINUE;
3507
0
}
3508
3509
MSG_PROCESS_RETURN tls_process_client_rpk(SSL_CONNECTION *sc, PACKET *pkt)
3510
0
{
3511
0
    MSG_PROCESS_RETURN ret = MSG_PROCESS_ERROR;
3512
0
    SSL_SESSION *new_sess = NULL;
3513
0
    EVP_PKEY *peer_rpk = NULL;
3514
3515
0
    if (!tls_process_rpk(sc, pkt, &peer_rpk)) {
3516
        /* SSLfatal already called */
3517
0
        goto err;
3518
0
    }
3519
3520
0
    if (peer_rpk == NULL) {
3521
0
        if ((sc->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)
3522
0
                && (sc->verify_mode & SSL_VERIFY_PEER)) {
3523
0
            SSLfatal(sc, SSL_AD_CERTIFICATE_REQUIRED,
3524
0
                     SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3525
0
            goto err;
3526
0
        }
3527
0
    } else {
3528
0
        if (ssl_verify_rpk(sc, peer_rpk) <= 0) {
3529
0
            SSLfatal(sc, ssl_x509err2alert(sc->verify_result),
3530
0
                     SSL_R_CERTIFICATE_VERIFY_FAILED);
3531
0
            goto err;
3532
0
        }
3533
0
    }
3534
3535
    /*
3536
     * Sessions must be immutable once they go into the session cache. Otherwise
3537
     * we can get multi-thread problems. Therefore we don't "update" sessions,
3538
     * we replace them with a duplicate. Here, we need to do this every time
3539
     * a new RPK (or certificate) is received via post-handshake authentication,
3540
     * as the session may have already gone into the session cache.
3541
     */
3542
3543
0
    if (sc->post_handshake_auth == SSL_PHA_REQUESTED) {
3544
0
        if ((new_sess = ssl_session_dup(sc->session, 0)) == NULL) {
3545
0
            SSLfatal(sc, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE);
3546
0
            goto err;
3547
0
        }
3548
3549
0
        SSL_SESSION_free(sc->session);
3550
0
        sc->session = new_sess;
3551
0
    }
3552
3553
    /* Ensure there is no peer/peer_chain */
3554
0
    X509_free(sc->session->peer);
3555
0
    sc->session->peer = NULL;
3556
0
    sk_X509_pop_free(sc->session->peer_chain, X509_free);
3557
0
    sc->session->peer_chain = NULL;
3558
    /* Save RPK */
3559
0
    EVP_PKEY_free(sc->session->peer_rpk);
3560
0
    sc->session->peer_rpk = peer_rpk;
3561
0
    peer_rpk = NULL;
3562
3563
0
    sc->session->verify_result = sc->verify_result;
3564
3565
    /*
3566
     * Freeze the handshake buffer. For <TLS1.3 we do this after the CKE
3567
     * message
3568
     */
3569
0
    if (SSL_CONNECTION_IS_TLS13(sc)) {
3570
0
        if (!ssl3_digest_cached_records(sc, 1)) {
3571
            /* SSLfatal() already called */
3572
0
            goto err;
3573
0
        }
3574
3575
        /* Save the current hash state for when we receive the CertificateVerify */
3576
0
        if (!ssl_handshake_hash(sc, sc->cert_verify_hash,
3577
0
                                sizeof(sc->cert_verify_hash),
3578
0
                                &sc->cert_verify_hash_len)) {
3579
0
            /* SSLfatal() already called */;
3580
0
            goto err;
3581
0
        }
3582
3583
        /* resend session tickets */
3584
0
        sc->sent_tickets = 0;
3585
0
    }
3586
3587
0
    ret = MSG_PROCESS_CONTINUE_READING;
3588
3589
0
 err:
3590
0
    EVP_PKEY_free(peer_rpk);
3591
0
    return ret;
3592
0
}
3593
3594
MSG_PROCESS_RETURN tls_process_client_certificate(SSL_CONNECTION *s,
3595
                                                  PACKET *pkt)
3596
0
{
3597
0
    int i;
3598
0
    MSG_PROCESS_RETURN ret = MSG_PROCESS_ERROR;
3599
0
    X509 *x = NULL;
3600
0
    unsigned long l;
3601
0
    const unsigned char *certstart, *certbytes;
3602
0
    STACK_OF(X509) *sk = NULL;
3603
0
    PACKET spkt, context;
3604
0
    size_t chainidx;
3605
0
    SSL_SESSION *new_sess = NULL;
3606
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
3607
3608
    /*
3609
     * To get this far we must have read encrypted data from the client. We no
3610
     * longer tolerate unencrypted alerts. This is ignored if less than TLSv1.3
3611
     */
3612
0
    if (s->rlayer.rrlmethod->set_plain_alerts != NULL)
3613
0
        s->rlayer.rrlmethod->set_plain_alerts(s->rlayer.rrl, 0);
3614
3615
0
    if (s->ext.client_cert_type == TLSEXT_cert_type_rpk)
3616
0
        return tls_process_client_rpk(s, pkt);
3617
3618
0
    if (s->ext.client_cert_type != TLSEXT_cert_type_x509) {
3619
0
        SSLfatal(s, SSL_AD_UNSUPPORTED_CERTIFICATE,
3620
0
                 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
3621
0
        goto err;
3622
0
    }
3623
3624
0
    if ((sk = sk_X509_new_null()) == NULL) {
3625
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
3626
0
        goto err;
3627
0
    }
3628
3629
0
    if (SSL_CONNECTION_IS_TLS13(s)
3630
0
        && (!PACKET_get_length_prefixed_1(pkt, &context)
3631
0
                || (s->pha_context == NULL && PACKET_remaining(&context) != 0)
3632
0
                || (s->pha_context != NULL
3633
0
                    && !PACKET_equal(&context, s->pha_context,
3634
0
                                     s->pha_context_len)))) {
3635
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_INVALID_CONTEXT);
3636
0
        goto err;
3637
0
    }
3638
3639
0
    if (!PACKET_get_length_prefixed_3(pkt, &spkt)
3640
0
            || PACKET_remaining(pkt) != 0) {
3641
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
3642
0
        goto err;
3643
0
    }
3644
3645
0
    for (chainidx = 0; PACKET_remaining(&spkt) > 0; chainidx++) {
3646
0
        if (!PACKET_get_net_3(&spkt, &l)
3647
0
            || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3648
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_CERT_LENGTH_MISMATCH);
3649
0
            goto err;
3650
0
        }
3651
3652
0
        certstart = certbytes;
3653
0
        x = X509_new_ex(sctx->libctx, sctx->propq);
3654
0
        if (x == NULL) {
3655
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, ERR_R_X509_LIB);
3656
0
            goto err;
3657
0
        }
3658
0
        if (d2i_X509(&x, (const unsigned char **)&certbytes, l) == NULL) {
3659
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, ERR_R_ASN1_LIB);
3660
0
            goto err;
3661
0
        }
3662
3663
0
        if (certbytes != (certstart + l)) {
3664
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_CERT_LENGTH_MISMATCH);
3665
0
            goto err;
3666
0
        }
3667
3668
0
        if (SSL_CONNECTION_IS_TLS13(s)) {
3669
0
            RAW_EXTENSION *rawexts = NULL;
3670
0
            PACKET extensions;
3671
3672
0
            if (!PACKET_get_length_prefixed_2(&spkt, &extensions)) {
3673
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_LENGTH);
3674
0
                goto err;
3675
0
            }
3676
0
            if (!tls_collect_extensions(s, &extensions,
3677
0
                                        SSL_EXT_TLS1_3_CERTIFICATE, &rawexts,
3678
0
                                        NULL, chainidx == 0)
3679
0
                || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE,
3680
0
                                             rawexts, x, chainidx,
3681
0
                                             PACKET_remaining(&spkt) == 0)) {
3682
0
                OPENSSL_free(rawexts);
3683
0
                goto err;
3684
0
            }
3685
0
            OPENSSL_free(rawexts);
3686
0
        }
3687
3688
0
        if (!sk_X509_push(sk, x)) {
3689
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
3690
0
            goto err;
3691
0
        }
3692
0
        x = NULL;
3693
0
    }
3694
3695
0
    if (sk_X509_num(sk) <= 0) {
3696
        /* TLS does not mind 0 certs returned */
3697
0
        if (s->version == SSL3_VERSION) {
3698
0
            SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3699
0
                     SSL_R_NO_CERTIFICATES_RETURNED);
3700
0
            goto err;
3701
0
        }
3702
        /* Fail for TLS only if we required a certificate */
3703
0
        else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3704
0
                 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3705
0
            SSLfatal(s, SSL_AD_CERTIFICATE_REQUIRED,
3706
0
                     SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3707
0
            goto err;
3708
0
        }
3709
        /* No client certificate so digest cached records */
3710
0
        if (s->s3.handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
3711
            /* SSLfatal() already called */
3712
0
            goto err;
3713
0
        }
3714
0
    } else {
3715
0
        EVP_PKEY *pkey;
3716
0
        i = ssl_verify_cert_chain(s, sk);
3717
0
        if (i <= 0) {
3718
0
            SSLfatal(s, ssl_x509err2alert(s->verify_result),
3719
0
                     SSL_R_CERTIFICATE_VERIFY_FAILED);
3720
0
            goto err;
3721
0
        }
3722
0
        pkey = X509_get0_pubkey(sk_X509_value(sk, 0));
3723
0
        if (pkey == NULL) {
3724
0
            SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE,
3725
0
                     SSL_R_UNKNOWN_CERTIFICATE_TYPE);
3726
0
            goto err;
3727
0
        }
3728
0
    }
3729
3730
    /*
3731
     * Sessions must be immutable once they go into the session cache. Otherwise
3732
     * we can get multi-thread problems. Therefore we don't "update" sessions,
3733
     * we replace them with a duplicate. Here, we need to do this every time
3734
     * a new certificate is received via post-handshake authentication, as the
3735
     * session may have already gone into the session cache.
3736
     */
3737
3738
0
    if (s->post_handshake_auth == SSL_PHA_REQUESTED) {
3739
0
        if ((new_sess = ssl_session_dup(s->session, 0)) == 0) {
3740
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_SSL_LIB);
3741
0
            goto err;
3742
0
        }
3743
3744
0
        SSL_SESSION_free(s->session);
3745
0
        s->session = new_sess;
3746
0
    }
3747
3748
0
    X509_free(s->session->peer);
3749
0
    s->session->peer = sk_X509_shift(sk);
3750
0
    s->session->verify_result = s->verify_result;
3751
3752
0
    OSSL_STACK_OF_X509_free(s->session->peer_chain);
3753
0
    s->session->peer_chain = sk;
3754
0
    sk = NULL;
3755
    /* Ensure there is no RPK */
3756
0
    EVP_PKEY_free(s->session->peer_rpk);
3757
0
    s->session->peer_rpk = NULL;
3758
3759
    /*
3760
     * Freeze the handshake buffer. For <TLS1.3 we do this after the CKE
3761
     * message
3762
     */
3763
0
    if (SSL_CONNECTION_IS_TLS13(s) && !ssl3_digest_cached_records(s, 1)) {
3764
        /* SSLfatal() already called */
3765
0
        goto err;
3766
0
    }
3767
3768
    /*
3769
     * Inconsistency alert: cert_chain does *not* include the peer's own
3770
     * certificate, while we do include it in statem_clnt.c
3771
     */
3772
3773
    /* Save the current hash state for when we receive the CertificateVerify */
3774
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
3775
0
        if (!ssl_handshake_hash(s, s->cert_verify_hash,
3776
0
                                sizeof(s->cert_verify_hash),
3777
0
                                &s->cert_verify_hash_len)) {
3778
            /* SSLfatal() already called */
3779
0
            goto err;
3780
0
        }
3781
3782
        /* Resend session tickets */
3783
0
        s->sent_tickets = 0;
3784
0
    }
3785
3786
0
    ret = MSG_PROCESS_CONTINUE_READING;
3787
3788
0
 err:
3789
0
    X509_free(x);
3790
0
    OSSL_STACK_OF_X509_free(sk);
3791
0
    return ret;
3792
0
}
3793
3794
#ifndef OPENSSL_NO_COMP_ALG
3795
MSG_PROCESS_RETURN tls_process_client_compressed_certificate(SSL_CONNECTION *sc, PACKET *pkt)
3796
{
3797
    MSG_PROCESS_RETURN ret = MSG_PROCESS_ERROR;
3798
    PACKET tmppkt;
3799
    BUF_MEM *buf = BUF_MEM_new();
3800
3801
    if (tls13_process_compressed_certificate(sc, pkt, &tmppkt, buf) != MSG_PROCESS_ERROR)
3802
        ret = tls_process_client_certificate(sc, &tmppkt);
3803
3804
    BUF_MEM_free(buf);
3805
    return ret;
3806
}
3807
#endif
3808
3809
CON_FUNC_RETURN tls_construct_server_certificate(SSL_CONNECTION *s, WPACKET *pkt)
3810
0
{
3811
0
    CERT_PKEY *cpk = s->s3.tmp.cert;
3812
3813
0
    if (cpk == NULL) {
3814
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3815
0
        return CON_FUNC_ERROR;
3816
0
    }
3817
3818
    /*
3819
     * In TLSv1.3 the certificate chain is always preceded by a 0 length context
3820
     * for the server Certificate message
3821
     */
3822
0
    if (SSL_CONNECTION_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0)) {
3823
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3824
0
        return CON_FUNC_ERROR;
3825
0
    }
3826
0
    switch (s->ext.server_cert_type) {
3827
0
    case TLSEXT_cert_type_rpk:
3828
0
        if (!tls_output_rpk(s, pkt, cpk)) {
3829
            /* SSLfatal() already called */
3830
0
            return 0;
3831
0
        }
3832
0
        break;
3833
0
    case TLSEXT_cert_type_x509:
3834
0
        if (!ssl3_output_cert_chain(s, pkt, cpk, 0)) {
3835
            /* SSLfatal() already called */
3836
0
            return 0;
3837
0
        }
3838
0
        break;
3839
0
    default:
3840
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3841
0
        return 0;
3842
0
    }
3843
3844
0
    return CON_FUNC_SUCCESS;
3845
0
}
3846
3847
#ifndef OPENSSL_NO_COMP_ALG
3848
CON_FUNC_RETURN tls_construct_server_compressed_certificate(SSL_CONNECTION *sc, WPACKET *pkt)
3849
{
3850
    int alg = get_compressed_certificate_alg(sc);
3851
    OSSL_COMP_CERT *cc = sc->s3.tmp.cert->comp_cert[alg];
3852
3853
    if (!ossl_assert(cc != NULL)) {
3854
        SSLfatal(sc, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3855
        return 0;
3856
    }
3857
    /*
3858
     * Server can't compress on-demand
3859
     * Use pre-compressed certificate
3860
     */
3861
    if (!WPACKET_put_bytes_u16(pkt, alg)
3862
            || !WPACKET_put_bytes_u24(pkt, cc->orig_len)
3863
            || !WPACKET_start_sub_packet_u24(pkt)
3864
            || !WPACKET_memcpy(pkt, cc->data, cc->len)
3865
            || !WPACKET_close(pkt))
3866
        return 0;
3867
3868
    sc->s3.tmp.cert->cert_comp_used++;
3869
    return 1;
3870
}
3871
#endif
3872
3873
static int create_ticket_prequel(SSL_CONNECTION *s, WPACKET *pkt,
3874
                                 uint32_t age_add, unsigned char *tick_nonce)
3875
0
{
3876
0
    uint32_t timeout = (uint32_t)ossl_time2seconds(s->session->timeout);
3877
3878
    /*
3879
     * Ticket lifetime hint:
3880
     * In TLSv1.3 we reset the "time" field above, and always specify the
3881
     * timeout, limited to a 1 week period per RFC8446.
3882
     * For TLSv1.2 this is advisory only and we leave this unspecified for
3883
     * resumed session (for simplicity).
3884
     */
3885
0
#define ONE_WEEK_SEC (7 * 24 * 60 * 60)
3886
3887
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
3888
0
        if (ossl_time_compare(s->session->timeout,
3889
0
                              ossl_seconds2time(ONE_WEEK_SEC)) > 0)
3890
0
            timeout = ONE_WEEK_SEC;
3891
0
    } else if (s->hit)
3892
0
        timeout = 0;
3893
3894
0
    if (!WPACKET_put_bytes_u32(pkt, timeout)) {
3895
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3896
0
        return 0;
3897
0
    }
3898
3899
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
3900
0
        if (!WPACKET_put_bytes_u32(pkt, age_add)
3901
0
                || !WPACKET_sub_memcpy_u8(pkt, tick_nonce, TICKET_NONCE_SIZE)) {
3902
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3903
0
            return 0;
3904
0
        }
3905
0
    }
3906
3907
    /* Start the sub-packet for the actual ticket data */
3908
0
    if (!WPACKET_start_sub_packet_u16(pkt)) {
3909
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3910
0
        return 0;
3911
0
    }
3912
3913
0
    return 1;
3914
0
}
3915
3916
static CON_FUNC_RETURN construct_stateless_ticket(SSL_CONNECTION *s,
3917
                                                  WPACKET *pkt,
3918
                                                  uint32_t age_add,
3919
                                                  unsigned char *tick_nonce)
3920
0
{
3921
0
    unsigned char *senc = NULL;
3922
0
    EVP_CIPHER_CTX *ctx = NULL;
3923
0
    SSL_HMAC *hctx = NULL;
3924
0
    unsigned char *p, *encdata1, *encdata2, *macdata1, *macdata2;
3925
0
    const unsigned char *const_p;
3926
0
    int len, slen_full, slen, lenfinal;
3927
0
    SSL_SESSION *sess;
3928
0
    size_t hlen;
3929
0
    SSL_CTX *tctx = s->session_ctx;
3930
0
    unsigned char iv[EVP_MAX_IV_LENGTH];
3931
0
    unsigned char key_name[TLSEXT_KEYNAME_LENGTH];
3932
0
    int iv_len;
3933
0
    CON_FUNC_RETURN ok = CON_FUNC_ERROR;
3934
0
    size_t macoffset, macendoffset;
3935
0
    SSL *ssl = SSL_CONNECTION_GET_SSL(s);
3936
0
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(s);
3937
3938
    /* get session encoding length */
3939
0
    slen_full = i2d_SSL_SESSION(s->session, NULL);
3940
    /*
3941
     * Some length values are 16 bits, so forget it if session is too
3942
     * long
3943
     */
3944
0
    if (slen_full == 0 || slen_full > 0xFF00) {
3945
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3946
0
        goto err;
3947
0
    }
3948
0
    senc = OPENSSL_malloc(slen_full);
3949
0
    if (senc == NULL) {
3950
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
3951
0
        goto err;
3952
0
    }
3953
3954
0
    ctx = EVP_CIPHER_CTX_new();
3955
0
    if (ctx == NULL) {
3956
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EVP_LIB);
3957
0
        goto err;
3958
0
    }
3959
0
    hctx = ssl_hmac_new(tctx);
3960
0
    if (hctx == NULL) {
3961
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_SSL_LIB);
3962
0
        goto err;
3963
0
    }
3964
3965
0
    p = senc;
3966
0
    if (!i2d_SSL_SESSION(s->session, &p)) {
3967
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3968
0
        goto err;
3969
0
    }
3970
3971
    /*
3972
     * create a fresh copy (not shared with other threads) to clean up
3973
     */
3974
0
    const_p = senc;
3975
0
    sess = d2i_SSL_SESSION_ex(NULL, &const_p, slen_full, sctx->libctx,
3976
0
                              sctx->propq);
3977
0
    if (sess == NULL) {
3978
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3979
0
        goto err;
3980
0
    }
3981
3982
0
    slen = i2d_SSL_SESSION(sess, NULL);
3983
0
    if (slen == 0 || slen > slen_full) {
3984
        /* shouldn't ever happen */
3985
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3986
0
        SSL_SESSION_free(sess);
3987
0
        goto err;
3988
0
    }
3989
0
    p = senc;
3990
0
    if (!i2d_SSL_SESSION(sess, &p)) {
3991
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
3992
0
        SSL_SESSION_free(sess);
3993
0
        goto err;
3994
0
    }
3995
0
    SSL_SESSION_free(sess);
3996
3997
    /*
3998
     * Initialize HMAC and cipher contexts. If callback present it does
3999
     * all the work otherwise use generated values from parent ctx.
4000
     */
4001
0
#ifndef OPENSSL_NO_DEPRECATED_3_0
4002
0
    if (tctx->ext.ticket_key_evp_cb != NULL || tctx->ext.ticket_key_cb != NULL)
4003
#else
4004
    if (tctx->ext.ticket_key_evp_cb != NULL)
4005
#endif
4006
0
    {
4007
0
        int ret = 0;
4008
4009
0
        if (tctx->ext.ticket_key_evp_cb != NULL)
4010
0
            ret = tctx->ext.ticket_key_evp_cb(ssl, key_name, iv, ctx,
4011
0
                                              ssl_hmac_get0_EVP_MAC_CTX(hctx),
4012
0
                                              1);
4013
0
#ifndef OPENSSL_NO_DEPRECATED_3_0
4014
0
        else if (tctx->ext.ticket_key_cb != NULL)
4015
            /* if 0 is returned, write an empty ticket */
4016
0
            ret = tctx->ext.ticket_key_cb(ssl, key_name, iv, ctx,
4017
0
                                          ssl_hmac_get0_HMAC_CTX(hctx), 1);
4018
0
#endif
4019
4020
0
        if (ret == 0) {
4021
            /*
4022
             * In TLSv1.2 we construct a 0 length ticket. In TLSv1.3 a 0
4023
             * length ticket is not allowed so we abort construction of the
4024
             * ticket
4025
             */
4026
0
            if (SSL_CONNECTION_IS_TLS13(s)) {
4027
0
                ok = CON_FUNC_DONT_SEND;
4028
0
                goto err;
4029
0
            }
4030
            /* Put timeout and length */
4031
0
            if (!WPACKET_put_bytes_u32(pkt, 0)
4032
0
                    || !WPACKET_put_bytes_u16(pkt, 0)) {
4033
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4034
0
                goto err;
4035
0
            }
4036
0
            OPENSSL_free(senc);
4037
0
            EVP_CIPHER_CTX_free(ctx);
4038
0
            ssl_hmac_free(hctx);
4039
0
            return CON_FUNC_SUCCESS;
4040
0
        }
4041
0
        if (ret < 0) {
4042
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_CALLBACK_FAILED);
4043
0
            goto err;
4044
0
        }
4045
0
        iv_len = EVP_CIPHER_CTX_get_iv_length(ctx);
4046
0
        if (iv_len < 0) {
4047
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4048
0
            goto err;
4049
0
        }
4050
0
    } else {
4051
0
        EVP_CIPHER *cipher = EVP_CIPHER_fetch(sctx->libctx, "AES-256-CBC",
4052
0
                                              sctx->propq);
4053
4054
0
        if (cipher == NULL) {
4055
            /* Error is already recorded */
4056
0
            SSLfatal_alert(s, SSL_AD_INTERNAL_ERROR);
4057
0
            goto err;
4058
0
        }
4059
4060
0
        iv_len = EVP_CIPHER_get_iv_length(cipher);
4061
0
        if (iv_len < 0
4062
0
                || RAND_bytes_ex(sctx->libctx, iv, iv_len, 0) <= 0
4063
0
                || !EVP_EncryptInit_ex(ctx, cipher, NULL,
4064
0
                                       tctx->ext.secure->tick_aes_key, iv)
4065
0
                || !ssl_hmac_init(hctx, tctx->ext.secure->tick_hmac_key,
4066
0
                                  sizeof(tctx->ext.secure->tick_hmac_key),
4067
0
                                  "SHA256")) {
4068
0
            EVP_CIPHER_free(cipher);
4069
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4070
0
            goto err;
4071
0
        }
4072
0
        EVP_CIPHER_free(cipher);
4073
0
        memcpy(key_name, tctx->ext.tick_key_name,
4074
0
               sizeof(tctx->ext.tick_key_name));
4075
0
    }
4076
4077
0
    if (!create_ticket_prequel(s, pkt, age_add, tick_nonce)) {
4078
        /* SSLfatal() already called */
4079
0
        goto err;
4080
0
    }
4081
4082
0
    if (!WPACKET_get_total_written(pkt, &macoffset)
4083
               /* Output key name */
4084
0
            || !WPACKET_memcpy(pkt, key_name, sizeof(key_name))
4085
               /* output IV */
4086
0
            || !WPACKET_memcpy(pkt, iv, iv_len)
4087
0
            || !WPACKET_reserve_bytes(pkt, slen + EVP_MAX_BLOCK_LENGTH,
4088
0
                                      &encdata1)
4089
               /* Encrypt session data */
4090
0
            || !EVP_EncryptUpdate(ctx, encdata1, &len, senc, slen)
4091
0
            || !WPACKET_allocate_bytes(pkt, len, &encdata2)
4092
0
            || encdata1 != encdata2
4093
0
            || !EVP_EncryptFinal(ctx, encdata1 + len, &lenfinal)
4094
0
            || !WPACKET_allocate_bytes(pkt, lenfinal, &encdata2)
4095
0
            || encdata1 + len != encdata2
4096
0
            || len + lenfinal > slen + EVP_MAX_BLOCK_LENGTH
4097
0
            || !WPACKET_get_total_written(pkt, &macendoffset)
4098
0
            || !ssl_hmac_update(hctx,
4099
0
                                (unsigned char *)s->init_buf->data + macoffset,
4100
0
                                macendoffset - macoffset)
4101
0
            || !WPACKET_reserve_bytes(pkt, EVP_MAX_MD_SIZE, &macdata1)
4102
0
            || !ssl_hmac_final(hctx, macdata1, &hlen, EVP_MAX_MD_SIZE)
4103
0
            || hlen > EVP_MAX_MD_SIZE
4104
0
            || !WPACKET_allocate_bytes(pkt, hlen, &macdata2)
4105
0
            || macdata1 != macdata2) {
4106
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4107
0
        goto err;
4108
0
    }
4109
4110
    /* Close the sub-packet created by create_ticket_prequel() */
4111
0
    if (!WPACKET_close(pkt)) {
4112
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4113
0
        goto err;
4114
0
    }
4115
4116
0
    ok = CON_FUNC_SUCCESS;
4117
0
 err:
4118
0
    OPENSSL_free(senc);
4119
0
    EVP_CIPHER_CTX_free(ctx);
4120
0
    ssl_hmac_free(hctx);
4121
0
    return ok;
4122
0
}
4123
4124
static int construct_stateful_ticket(SSL_CONNECTION *s, WPACKET *pkt,
4125
                                     uint32_t age_add,
4126
                                     unsigned char *tick_nonce)
4127
0
{
4128
0
    if (!create_ticket_prequel(s, pkt, age_add, tick_nonce)) {
4129
        /* SSLfatal() already called */
4130
0
        return 0;
4131
0
    }
4132
4133
0
    if (!WPACKET_memcpy(pkt, s->session->session_id,
4134
0
                        s->session->session_id_length)
4135
0
            || !WPACKET_close(pkt)) {
4136
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4137
0
        return 0;
4138
0
    }
4139
4140
0
    return 1;
4141
0
}
4142
4143
static void tls_update_ticket_counts(SSL_CONNECTION *s)
4144
0
{
4145
    /*
4146
     * Increment both |sent_tickets| and |next_ticket_nonce|. |sent_tickets|
4147
     * gets reset to 0 if we send more tickets following a post-handshake
4148
     * auth, but |next_ticket_nonce| does not.  If we're sending extra
4149
     * tickets, decrement the count of pending extra tickets.
4150
     */
4151
0
    s->sent_tickets++;
4152
0
    s->next_ticket_nonce++;
4153
0
    if (s->ext.extra_tickets_expected > 0)
4154
0
        s->ext.extra_tickets_expected--;
4155
0
}
4156
4157
CON_FUNC_RETURN tls_construct_new_session_ticket(SSL_CONNECTION *s, WPACKET *pkt)
4158
0
{
4159
0
    SSL_CTX *tctx = s->session_ctx;
4160
0
    unsigned char tick_nonce[TICKET_NONCE_SIZE];
4161
0
    union {
4162
0
        unsigned char age_add_c[sizeof(uint32_t)];
4163
0
        uint32_t age_add;
4164
0
    } age_add_u;
4165
0
    CON_FUNC_RETURN ret = CON_FUNC_ERROR;
4166
4167
0
    age_add_u.age_add = 0;
4168
4169
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
4170
0
        size_t i, hashlen;
4171
0
        uint64_t nonce;
4172
0
        static const unsigned char nonce_label[] = "resumption";
4173
0
        const EVP_MD *md = ssl_handshake_md(s);
4174
0
        int hashleni = EVP_MD_get_size(md);
4175
4176
        /* Ensure cast to size_t is safe */
4177
0
        if (!ossl_assert(hashleni >= 0)) {
4178
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4179
0
            goto err;
4180
0
        }
4181
0
        hashlen = (size_t)hashleni;
4182
4183
        /*
4184
         * If we already sent one NewSessionTicket, or we resumed then
4185
         * s->session may already be in a cache and so we must not modify it.
4186
         * Instead we need to take a copy of it and modify that.
4187
         */
4188
0
        if (s->sent_tickets != 0 || s->hit) {
4189
0
            SSL_SESSION *new_sess = ssl_session_dup(s->session, 0);
4190
4191
0
            if (new_sess == NULL) {
4192
                /* SSLfatal already called */
4193
0
                goto err;
4194
0
            }
4195
4196
0
            SSL_SESSION_free(s->session);
4197
0
            s->session = new_sess;
4198
0
        }
4199
4200
0
        if (!ssl_generate_session_id(s, s->session)) {
4201
            /* SSLfatal() already called */
4202
0
            goto err;
4203
0
        }
4204
0
        if (RAND_bytes_ex(SSL_CONNECTION_GET_CTX(s)->libctx,
4205
0
                          age_add_u.age_add_c, sizeof(age_add_u), 0) <= 0) {
4206
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4207
0
            goto err;
4208
0
        }
4209
0
        s->session->ext.tick_age_add = age_add_u.age_add;
4210
4211
0
        nonce = s->next_ticket_nonce;
4212
0
        for (i = TICKET_NONCE_SIZE; i > 0; i--) {
4213
0
            tick_nonce[i - 1] = (unsigned char)(nonce & 0xff);
4214
0
            nonce >>= 8;
4215
0
        }
4216
4217
0
        if (!tls13_hkdf_expand(s, md, s->resumption_master_secret,
4218
0
                               nonce_label,
4219
0
                               sizeof(nonce_label) - 1,
4220
0
                               tick_nonce,
4221
0
                               TICKET_NONCE_SIZE,
4222
0
                               s->session->master_key,
4223
0
                               hashlen, 1)) {
4224
            /* SSLfatal() already called */
4225
0
            goto err;
4226
0
        }
4227
0
        s->session->master_key_length = hashlen;
4228
4229
0
        s->session->time = ossl_time_now();
4230
0
        ssl_session_calculate_timeout(s->session);
4231
0
        if (s->s3.alpn_selected != NULL) {
4232
0
            OPENSSL_free(s->session->ext.alpn_selected);
4233
0
            s->session->ext.alpn_selected =
4234
0
                OPENSSL_memdup(s->s3.alpn_selected, s->s3.alpn_selected_len);
4235
0
            if (s->session->ext.alpn_selected == NULL) {
4236
0
                s->session->ext.alpn_selected_len = 0;
4237
0
                SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
4238
0
                goto err;
4239
0
            }
4240
0
            s->session->ext.alpn_selected_len = s->s3.alpn_selected_len;
4241
0
        }
4242
0
        s->session->ext.max_early_data = s->max_early_data;
4243
0
    }
4244
4245
0
    if (tctx->generate_ticket_cb != NULL &&
4246
0
        tctx->generate_ticket_cb(SSL_CONNECTION_GET_SSL(s),
4247
0
                                 tctx->ticket_cb_data) == 0) {
4248
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4249
0
        goto err;
4250
0
    }
4251
    /*
4252
     * If we are using anti-replay protection then we behave as if
4253
     * SSL_OP_NO_TICKET is set - we are caching tickets anyway so there
4254
     * is no point in using full stateless tickets.
4255
     */
4256
0
    if (SSL_CONNECTION_IS_TLS13(s)
4257
0
            && ((s->options & SSL_OP_NO_TICKET) != 0
4258
0
                || (s->max_early_data > 0
4259
0
                    && (s->options & SSL_OP_NO_ANTI_REPLAY) == 0))) {
4260
0
        if (!construct_stateful_ticket(s, pkt, age_add_u.age_add, tick_nonce)) {
4261
            /* SSLfatal() already called */
4262
0
            goto err;
4263
0
        }
4264
0
    } else {
4265
0
        CON_FUNC_RETURN tmpret;
4266
4267
0
        tmpret = construct_stateless_ticket(s, pkt, age_add_u.age_add,
4268
0
                                            tick_nonce);
4269
0
        if (tmpret != CON_FUNC_SUCCESS) {
4270
0
            if (tmpret == CON_FUNC_DONT_SEND) {
4271
                /* Non-fatal. Abort construction but continue */
4272
0
                ret = CON_FUNC_DONT_SEND;
4273
                /* We count this as a success so update the counts anwyay */
4274
0
                tls_update_ticket_counts(s);
4275
0
            }
4276
            /* else SSLfatal() already called */
4277
0
            goto err;
4278
0
        }
4279
0
    }
4280
4281
0
    if (SSL_CONNECTION_IS_TLS13(s)) {
4282
0
        if (!tls_construct_extensions(s, pkt,
4283
0
                                      SSL_EXT_TLS1_3_NEW_SESSION_TICKET,
4284
0
                                      NULL, 0)) {
4285
            /* SSLfatal() already called */
4286
0
            goto err;
4287
0
        }
4288
0
        tls_update_ticket_counts(s);
4289
0
        ssl_update_cache(s, SSL_SESS_CACHE_SERVER);
4290
0
    }
4291
4292
0
    ret = CON_FUNC_SUCCESS;
4293
0
 err:
4294
0
    return ret;
4295
0
}
4296
4297
/*
4298
 * In TLSv1.3 this is called from the extensions code, otherwise it is used to
4299
 * create a separate message. Returns 1 on success or 0 on failure.
4300
 */
4301
int tls_construct_cert_status_body(SSL_CONNECTION *s, WPACKET *pkt)
4302
0
{
4303
0
    if (!WPACKET_put_bytes_u8(pkt, s->ext.status_type)
4304
0
            || !WPACKET_sub_memcpy_u24(pkt, s->ext.ocsp.resp,
4305
0
                                       s->ext.ocsp.resp_len)) {
4306
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4307
0
        return 0;
4308
0
    }
4309
4310
0
    return 1;
4311
0
}
4312
4313
CON_FUNC_RETURN tls_construct_cert_status(SSL_CONNECTION *s, WPACKET *pkt)
4314
0
{
4315
0
    if (!tls_construct_cert_status_body(s, pkt)) {
4316
        /* SSLfatal() already called */
4317
0
        return CON_FUNC_ERROR;
4318
0
    }
4319
4320
0
    return CON_FUNC_SUCCESS;
4321
0
}
4322
4323
#ifndef OPENSSL_NO_NEXTPROTONEG
4324
/*
4325
 * tls_process_next_proto reads a Next Protocol Negotiation handshake message.
4326
 * It sets the next_proto member in s if found
4327
 */
4328
MSG_PROCESS_RETURN tls_process_next_proto(SSL_CONNECTION *s, PACKET *pkt)
4329
0
{
4330
0
    PACKET next_proto, padding;
4331
0
    size_t next_proto_len;
4332
4333
    /*-
4334
     * The payload looks like:
4335
     *   uint8 proto_len;
4336
     *   uint8 proto[proto_len];
4337
     *   uint8 padding_len;
4338
     *   uint8 padding[padding_len];
4339
     */
4340
0
    if (!PACKET_get_length_prefixed_1(pkt, &next_proto)
4341
0
        || !PACKET_get_length_prefixed_1(pkt, &padding)
4342
0
        || PACKET_remaining(pkt) > 0) {
4343
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
4344
0
        return MSG_PROCESS_ERROR;
4345
0
    }
4346
4347
0
    if (!PACKET_memdup(&next_proto, &s->ext.npn, &next_proto_len)) {
4348
0
        s->ext.npn_len = 0;
4349
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4350
0
        return MSG_PROCESS_ERROR;
4351
0
    }
4352
4353
0
    s->ext.npn_len = (unsigned char)next_proto_len;
4354
4355
0
    return MSG_PROCESS_CONTINUE_READING;
4356
0
}
4357
#endif
4358
4359
static CON_FUNC_RETURN tls_construct_encrypted_extensions(SSL_CONNECTION *s,
4360
                                                          WPACKET *pkt)
4361
0
{
4362
0
    if (!tls_construct_extensions(s, pkt, SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
4363
0
                                  NULL, 0)) {
4364
        /* SSLfatal() already called */
4365
0
        return CON_FUNC_ERROR;
4366
0
    }
4367
4368
0
    return CON_FUNC_SUCCESS;
4369
0
}
4370
4371
MSG_PROCESS_RETURN tls_process_end_of_early_data(SSL_CONNECTION *s, PACKET *pkt)
4372
0
{
4373
0
    if (PACKET_remaining(pkt) != 0) {
4374
0
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH);
4375
0
        return MSG_PROCESS_ERROR;
4376
0
    }
4377
4378
0
    if (s->early_data_state != SSL_EARLY_DATA_READING
4379
0
            && s->early_data_state != SSL_EARLY_DATA_READ_RETRY) {
4380
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4381
0
        return MSG_PROCESS_ERROR;
4382
0
    }
4383
4384
    /*
4385
     * EndOfEarlyData signals a key change so the end of the message must be on
4386
     * a record boundary.
4387
     */
4388
0
    if (RECORD_LAYER_processed_read_pending(&s->rlayer)) {
4389
0
        SSLfatal(s, SSL_AD_UNEXPECTED_MESSAGE, SSL_R_NOT_ON_RECORD_BOUNDARY);
4390
0
        return MSG_PROCESS_ERROR;
4391
0
    }
4392
4393
0
    s->early_data_state = SSL_EARLY_DATA_FINISHED_READING;
4394
0
    if (!SSL_CONNECTION_GET_SSL(s)->method->ssl3_enc->change_cipher_state(s,
4395
0
                SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_READ)) {
4396
        /* SSLfatal() already called */
4397
0
        return MSG_PROCESS_ERROR;
4398
0
    }
4399
4400
0
    return MSG_PROCESS_CONTINUE_READING;
4401
0
}