Coverage Report

Created: 2026-05-24 07:14

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