Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl34/ssl/ssl_lib.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2025 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 "ssl_local.h"
13
#include "internal/e_os.h"
14
#include <openssl/objects.h>
15
#include <openssl/x509v3.h>
16
#include <openssl/rand.h>
17
#include <openssl/ocsp.h>
18
#include <openssl/dh.h>
19
#include <openssl/engine.h>
20
#include <openssl/async.h>
21
#include <openssl/ct.h>
22
#include <openssl/trace.h>
23
#include <openssl/core_names.h>
24
#include <openssl/provider.h>
25
#include "internal/cryptlib.h"
26
#include "internal/nelem.h"
27
#include "internal/refcount.h"
28
#include "internal/ktls.h"
29
#include "internal/to_hex.h"
30
#include "quic/quic_local.h"
31
32
static int ssl_undefined_function_3(SSL_CONNECTION *sc, unsigned char *r,
33
    unsigned char *s, size_t t, size_t *u)
34
0
{
35
0
    return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
36
0
}
37
38
static int ssl_undefined_function_4(SSL_CONNECTION *sc, int r)
39
0
{
40
0
    return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
41
0
}
42
43
static size_t ssl_undefined_function_5(SSL_CONNECTION *sc, const char *r,
44
    size_t s, unsigned char *t)
45
0
{
46
0
    return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
47
0
}
48
49
static int ssl_undefined_function_6(int r)
50
0
{
51
0
    return ssl_undefined_function(NULL);
52
0
}
53
54
static int ssl_undefined_function_7(SSL_CONNECTION *sc, unsigned char *r,
55
    size_t s, const char *t, size_t u,
56
    const unsigned char *v, size_t w, int x)
57
0
{
58
0
    return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
59
0
}
60
61
static int ssl_undefined_function_8(SSL_CONNECTION *sc)
62
0
{
63
0
    return ssl_undefined_function(SSL_CONNECTION_GET_SSL(sc));
64
0
}
65
66
const SSL3_ENC_METHOD ssl3_undef_enc_method = {
67
    ssl_undefined_function_8,
68
    ssl_undefined_function_3,
69
    ssl_undefined_function_4,
70
    ssl_undefined_function_5,
71
    NULL, /* client_finished_label */
72
    0, /* client_finished_label_len */
73
    NULL, /* server_finished_label */
74
    0, /* server_finished_label_len */
75
    ssl_undefined_function_6,
76
    ssl_undefined_function_7,
77
};
78
79
struct ssl_async_args {
80
    SSL *s;
81
    void *buf;
82
    size_t num;
83
    enum { READFUNC,
84
        WRITEFUNC,
85
        OTHERFUNC } type;
86
    union {
87
        int (*func_read)(SSL *, void *, size_t, size_t *);
88
        int (*func_write)(SSL *, const void *, size_t, size_t *);
89
        int (*func_other)(SSL *);
90
    } f;
91
};
92
93
static const struct {
94
    uint8_t mtype;
95
    uint8_t ord;
96
    int nid;
97
} dane_mds[] = {
98
    { DANETLS_MATCHING_FULL, 0, NID_undef },
99
    { DANETLS_MATCHING_2256, 1, NID_sha256 },
100
    { DANETLS_MATCHING_2512, 2, NID_sha512 },
101
};
102
103
static int dane_ctx_enable(struct dane_ctx_st *dctx)
104
0
{
105
0
    const EVP_MD **mdevp;
106
0
    uint8_t *mdord;
107
0
    uint8_t mdmax = DANETLS_MATCHING_LAST;
108
0
    int n = ((int)mdmax) + 1; /* int to handle PrivMatch(255) */
109
0
    size_t i;
110
111
0
    if (dctx->mdevp != NULL)
112
0
        return 1;
113
114
0
    mdevp = OPENSSL_zalloc(n * sizeof(*mdevp));
115
0
    mdord = OPENSSL_zalloc(n * sizeof(*mdord));
116
117
0
    if (mdord == NULL || mdevp == NULL) {
118
0
        OPENSSL_free(mdord);
119
0
        OPENSSL_free(mdevp);
120
0
        return 0;
121
0
    }
122
123
    /* Install default entries */
124
0
    for (i = 0; i < OSSL_NELEM(dane_mds); ++i) {
125
0
        const EVP_MD *md;
126
127
0
        if (dane_mds[i].nid == NID_undef || (md = EVP_get_digestbynid(dane_mds[i].nid)) == NULL)
128
0
            continue;
129
0
        mdevp[dane_mds[i].mtype] = md;
130
0
        mdord[dane_mds[i].mtype] = dane_mds[i].ord;
131
0
    }
132
133
0
    dctx->mdevp = mdevp;
134
0
    dctx->mdord = mdord;
135
0
    dctx->mdmax = mdmax;
136
137
0
    return 1;
138
0
}
139
140
static void dane_ctx_final(struct dane_ctx_st *dctx)
141
163k
{
142
163k
    OPENSSL_free(dctx->mdevp);
143
163k
    dctx->mdevp = NULL;
144
145
163k
    OPENSSL_free(dctx->mdord);
146
163k
    dctx->mdord = NULL;
147
163k
    dctx->mdmax = 0;
148
163k
}
149
150
static void tlsa_free(danetls_record *t)
151
0
{
152
0
    if (t == NULL)
153
0
        return;
154
0
    OPENSSL_free(t->data);
155
0
    EVP_PKEY_free(t->spki);
156
0
    OPENSSL_free(t);
157
0
}
158
159
static void dane_final(SSL_DANE *dane)
160
163k
{
161
163k
    sk_danetls_record_pop_free(dane->trecs, tlsa_free);
162
163k
    dane->trecs = NULL;
163
164
163k
    OSSL_STACK_OF_X509_free(dane->certs);
165
163k
    dane->certs = NULL;
166
167
163k
    X509_free(dane->mcert);
168
163k
    dane->mcert = NULL;
169
163k
    dane->mtlsa = NULL;
170
163k
    dane->mdpth = -1;
171
163k
    dane->pdpth = -1;
172
163k
}
173
174
/*
175
 * dane_copy - Copy dane configuration, sans verification state.
176
 */
177
static int ssl_dane_dup(SSL_CONNECTION *to, SSL_CONNECTION *from)
178
0
{
179
0
    int num;
180
0
    int i;
181
182
0
    if (!DANETLS_ENABLED(&from->dane))
183
0
        return 1;
184
185
0
    num = sk_danetls_record_num(from->dane.trecs);
186
0
    dane_final(&to->dane);
187
0
    to->dane.flags = from->dane.flags;
188
0
    to->dane.dctx = &SSL_CONNECTION_GET_CTX(to)->dane;
189
0
    to->dane.trecs = sk_danetls_record_new_reserve(NULL, num);
190
191
0
    if (to->dane.trecs == NULL) {
192
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
193
0
        return 0;
194
0
    }
195
196
0
    for (i = 0; i < num; ++i) {
197
0
        danetls_record *t = sk_danetls_record_value(from->dane.trecs, i);
198
199
0
        if (SSL_dane_tlsa_add(SSL_CONNECTION_GET_SSL(to), t->usage,
200
0
                t->selector, t->mtype, t->data, t->dlen)
201
0
            <= 0)
202
0
            return 0;
203
0
    }
204
0
    return 1;
205
0
}
206
207
static int dane_mtype_set(struct dane_ctx_st *dctx,
208
    const EVP_MD *md, uint8_t mtype, uint8_t ord)
209
0
{
210
0
    int i;
211
212
0
    if (mtype == DANETLS_MATCHING_FULL && md != NULL) {
213
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_CANNOT_OVERRIDE_MTYPE_FULL);
214
0
        return 0;
215
0
    }
216
217
0
    if (mtype > dctx->mdmax) {
218
0
        const EVP_MD **mdevp;
219
0
        uint8_t *mdord;
220
0
        int n = ((int)mtype) + 1;
221
222
0
        mdevp = OPENSSL_realloc(dctx->mdevp, n * sizeof(*mdevp));
223
0
        if (mdevp == NULL)
224
0
            return -1;
225
0
        dctx->mdevp = mdevp;
226
227
0
        mdord = OPENSSL_realloc(dctx->mdord, n * sizeof(*mdord));
228
0
        if (mdord == NULL)
229
0
            return -1;
230
0
        dctx->mdord = mdord;
231
232
        /* Zero-fill any gaps */
233
0
        for (i = dctx->mdmax + 1; i < mtype; ++i) {
234
0
            mdevp[i] = NULL;
235
0
            mdord[i] = 0;
236
0
        }
237
238
0
        dctx->mdmax = mtype;
239
0
    }
240
241
0
    dctx->mdevp[mtype] = md;
242
    /* Coerce ordinal of disabled matching types to 0 */
243
0
    dctx->mdord[mtype] = (md == NULL) ? 0 : ord;
244
245
0
    return 1;
246
0
}
247
248
static const EVP_MD *tlsa_md_get(SSL_DANE *dane, uint8_t mtype)
249
0
{
250
0
    if (mtype > dane->dctx->mdmax)
251
0
        return NULL;
252
0
    return dane->dctx->mdevp[mtype];
253
0
}
254
255
static int dane_tlsa_add(SSL_DANE *dane,
256
    uint8_t usage,
257
    uint8_t selector,
258
    uint8_t mtype, const unsigned char *data, size_t dlen)
259
0
{
260
0
    danetls_record *t;
261
0
    const EVP_MD *md = NULL;
262
0
    int ilen = (int)dlen;
263
0
    int i;
264
0
    int num;
265
0
    int mdsize;
266
267
0
    if (dane->trecs == NULL) {
268
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_NOT_ENABLED);
269
0
        return -1;
270
0
    }
271
272
0
    if (ilen < 0 || dlen != (size_t)ilen) {
273
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_DATA_LENGTH);
274
0
        return 0;
275
0
    }
276
277
0
    if (usage > DANETLS_USAGE_LAST) {
278
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE_USAGE);
279
0
        return 0;
280
0
    }
281
282
0
    if (selector > DANETLS_SELECTOR_LAST) {
283
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_SELECTOR);
284
0
        return 0;
285
0
    }
286
287
0
    if (mtype != DANETLS_MATCHING_FULL) {
288
0
        md = tlsa_md_get(dane, mtype);
289
0
        if (md == NULL) {
290
0
            ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_MATCHING_TYPE);
291
0
            return 0;
292
0
        }
293
0
    }
294
295
0
    if (md != NULL) {
296
0
        mdsize = EVP_MD_get_size(md);
297
0
        if (mdsize <= 0 || dlen != (size_t)mdsize) {
298
0
            ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_DIGEST_LENGTH);
299
0
            return 0;
300
0
        }
301
0
    }
302
0
    if (!data) {
303
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_NULL_DATA);
304
0
        return 0;
305
0
    }
306
307
0
    if ((t = OPENSSL_zalloc(sizeof(*t))) == NULL)
308
0
        return -1;
309
310
0
    t->usage = usage;
311
0
    t->selector = selector;
312
0
    t->mtype = mtype;
313
0
    t->data = OPENSSL_malloc(dlen);
314
0
    if (t->data == NULL) {
315
0
        tlsa_free(t);
316
0
        return -1;
317
0
    }
318
0
    memcpy(t->data, data, dlen);
319
0
    t->dlen = dlen;
320
321
    /* Validate and cache full certificate or public key */
322
0
    if (mtype == DANETLS_MATCHING_FULL) {
323
0
        const unsigned char *p = data;
324
0
        X509 *cert = NULL;
325
0
        EVP_PKEY *pkey = NULL;
326
327
0
        switch (selector) {
328
0
        case DANETLS_SELECTOR_CERT:
329
0
            if (!d2i_X509(&cert, &p, ilen) || p < data || dlen != (size_t)(p - data)) {
330
0
                X509_free(cert);
331
0
                tlsa_free(t);
332
0
                ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
333
0
                return 0;
334
0
            }
335
0
            if (X509_get0_pubkey(cert) == NULL) {
336
0
                X509_free(cert);
337
0
                tlsa_free(t);
338
0
                ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
339
0
                return 0;
340
0
            }
341
342
0
            if ((DANETLS_USAGE_BIT(usage) & DANETLS_TA_MASK) == 0) {
343
                /*
344
                 * The Full(0) certificate decodes to a seemingly valid X.509
345
                 * object with a plausible key, so the TLSA record is well
346
                 * formed.  However, we don't actually need the certificate for
347
                 * usages PKIX-EE(1) or DANE-EE(3), because at least the EE
348
                 * certificate is always presented by the peer.  We discard the
349
                 * certificate, and just use the TLSA data as an opaque blob
350
                 * for matching the raw presented DER octets.
351
                 *
352
                 * DO NOT FREE `t` here, it will be added to the TLSA record
353
                 * list below!
354
                 */
355
0
                X509_free(cert);
356
0
                break;
357
0
            }
358
359
            /*
360
             * For usage DANE-TA(2), we support authentication via "2 0 0" TLSA
361
             * records that contain full certificates of trust-anchors that are
362
             * not present in the wire chain.  For usage PKIX-TA(0), we augment
363
             * the chain with untrusted Full(0) certificates from DNS, in case
364
             * they are missing from the chain.
365
             */
366
0
            if ((dane->certs == NULL && (dane->certs = sk_X509_new_null()) == NULL) || !sk_X509_push(dane->certs, cert)) {
367
0
                ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
368
0
                X509_free(cert);
369
0
                tlsa_free(t);
370
0
                return -1;
371
0
            }
372
0
            break;
373
374
0
        case DANETLS_SELECTOR_SPKI:
375
0
            if (!d2i_PUBKEY(&pkey, &p, ilen) || p < data || dlen != (size_t)(p - data)) {
376
0
                EVP_PKEY_free(pkey);
377
0
                tlsa_free(t);
378
0
                ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_PUBLIC_KEY);
379
0
                return 0;
380
0
            }
381
382
            /*
383
             * For usage DANE-TA(2), we support authentication via "2 1 0" TLSA
384
             * records that contain full bare keys of trust-anchors that are
385
             * not present in the wire chain.
386
             */
387
0
            if (usage == DANETLS_USAGE_DANE_TA)
388
0
                t->spki = pkey;
389
0
            else
390
0
                EVP_PKEY_free(pkey);
391
0
            break;
392
0
        }
393
0
    }
394
395
    /*-
396
     * Find the right insertion point for the new record.
397
     *
398
     * See crypto/x509/x509_vfy.c.  We sort DANE-EE(3) records first, so that
399
     * they can be processed first, as they require no chain building, and no
400
     * expiration or hostname checks.  Because DANE-EE(3) is numerically
401
     * largest, this is accomplished via descending sort by "usage".
402
     *
403
     * We also sort in descending order by matching ordinal to simplify
404
     * the implementation of digest agility in the verification code.
405
     *
406
     * The choice of order for the selector is not significant, so we
407
     * use the same descending order for consistency.
408
     */
409
0
    num = sk_danetls_record_num(dane->trecs);
410
0
    for (i = 0; i < num; ++i) {
411
0
        danetls_record *rec = sk_danetls_record_value(dane->trecs, i);
412
413
0
        if (rec->usage > usage)
414
0
            continue;
415
0
        if (rec->usage < usage)
416
0
            break;
417
0
        if (rec->selector > selector)
418
0
            continue;
419
0
        if (rec->selector < selector)
420
0
            break;
421
0
        if (dane->dctx->mdord[rec->mtype] > dane->dctx->mdord[mtype])
422
0
            continue;
423
0
        break;
424
0
    }
425
426
0
    if (!sk_danetls_record_insert(dane->trecs, t, i)) {
427
0
        tlsa_free(t);
428
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
429
0
        return -1;
430
0
    }
431
0
    dane->umask |= DANETLS_USAGE_BIT(usage);
432
433
0
    return 1;
434
0
}
435
436
/*
437
 * Return 0 if there is only one version configured and it was disabled
438
 * at configure time.  Return 1 otherwise.
439
 */
440
static int ssl_check_allowed_versions(int min_version, int max_version)
441
133k
{
442
133k
    int minisdtls = 0, maxisdtls = 0;
443
444
    /* Figure out if we're doing DTLS versions or TLS versions */
445
133k
    if (min_version == DTLS1_BAD_VER
446
133k
        || min_version >> 8 == DTLS1_VERSION_MAJOR)
447
0
        minisdtls = 1;
448
133k
    if (max_version == DTLS1_BAD_VER
449
133k
        || max_version >> 8 == DTLS1_VERSION_MAJOR)
450
0
        maxisdtls = 1;
451
    /* A wildcard version of 0 could be DTLS or TLS. */
452
133k
    if ((minisdtls && !maxisdtls && max_version != 0)
453
133k
        || (maxisdtls && !minisdtls && min_version != 0)) {
454
        /* Mixing DTLS and TLS versions will lead to sadness; deny it. */
455
0
        return 0;
456
0
    }
457
458
133k
    if (minisdtls || maxisdtls) {
459
        /* Do DTLS version checks. */
460
0
        if (min_version == 0)
461
            /* Ignore DTLS1_BAD_VER */
462
0
            min_version = DTLS1_VERSION;
463
0
        if (max_version == 0)
464
0
            max_version = DTLS1_2_VERSION;
465
#ifdef OPENSSL_NO_DTLS1_2
466
        if (max_version == DTLS1_2_VERSION)
467
            max_version = DTLS1_VERSION;
468
#endif
469
#ifdef OPENSSL_NO_DTLS1
470
        if (min_version == DTLS1_VERSION)
471
            min_version = DTLS1_2_VERSION;
472
#endif
473
        /* Done massaging versions; do the check. */
474
0
        if (0
475
#ifdef OPENSSL_NO_DTLS1
476
            || (DTLS_VERSION_GE(min_version, DTLS1_VERSION)
477
                && DTLS_VERSION_GE(DTLS1_VERSION, max_version))
478
#endif
479
#ifdef OPENSSL_NO_DTLS1_2
480
            || (DTLS_VERSION_GE(min_version, DTLS1_2_VERSION)
481
                && DTLS_VERSION_GE(DTLS1_2_VERSION, max_version))
482
#endif
483
0
        )
484
0
            return 0;
485
133k
    } else {
486
        /* Regular TLS version checks. */
487
133k
        if (min_version == 0)
488
93.3k
            min_version = SSL3_VERSION;
489
133k
        if (max_version == 0)
490
133k
            max_version = TLS1_3_VERSION;
491
#ifdef OPENSSL_NO_TLS1_3
492
        if (max_version == TLS1_3_VERSION)
493
            max_version = TLS1_2_VERSION;
494
#endif
495
#ifdef OPENSSL_NO_TLS1_2
496
        if (max_version == TLS1_2_VERSION)
497
            max_version = TLS1_1_VERSION;
498
#endif
499
#ifdef OPENSSL_NO_TLS1_1
500
        if (max_version == TLS1_1_VERSION)
501
            max_version = TLS1_VERSION;
502
#endif
503
#ifdef OPENSSL_NO_TLS1
504
        if (max_version == TLS1_VERSION)
505
            max_version = SSL3_VERSION;
506
#endif
507
133k
#ifdef OPENSSL_NO_SSL3
508
133k
        if (min_version == SSL3_VERSION)
509
93.3k
            min_version = TLS1_VERSION;
510
133k
#endif
511
#ifdef OPENSSL_NO_TLS1
512
        if (min_version == TLS1_VERSION)
513
            min_version = TLS1_1_VERSION;
514
#endif
515
#ifdef OPENSSL_NO_TLS1_1
516
        if (min_version == TLS1_1_VERSION)
517
            min_version = TLS1_2_VERSION;
518
#endif
519
#ifdef OPENSSL_NO_TLS1_2
520
        if (min_version == TLS1_2_VERSION)
521
            min_version = TLS1_3_VERSION;
522
#endif
523
        /* Done massaging versions; do the check. */
524
133k
        if (0
525
133k
#ifdef OPENSSL_NO_SSL3
526
133k
            || (min_version <= SSL3_VERSION && SSL3_VERSION <= max_version)
527
133k
#endif
528
#ifdef OPENSSL_NO_TLS1
529
            || (min_version <= TLS1_VERSION && TLS1_VERSION <= max_version)
530
#endif
531
#ifdef OPENSSL_NO_TLS1_1
532
            || (min_version <= TLS1_1_VERSION && TLS1_1_VERSION <= max_version)
533
#endif
534
#ifdef OPENSSL_NO_TLS1_2
535
            || (min_version <= TLS1_2_VERSION && TLS1_2_VERSION <= max_version)
536
#endif
537
#ifdef OPENSSL_NO_TLS1_3
538
            || (min_version <= TLS1_3_VERSION && TLS1_3_VERSION <= max_version)
539
#endif
540
133k
        )
541
0
            return 0;
542
133k
    }
543
133k
    return 1;
544
133k
}
545
546
#if defined(__TANDEM) && defined(OPENSSL_VPROC)
547
/*
548
 * Define a VPROC function for HP NonStop build ssl library.
549
 * This is used by platform version identification tools.
550
 * Do not inline this procedure or make it static.
551
 */
552
#define OPENSSL_VPROC_STRING_(x) x##_SSL
553
#define OPENSSL_VPROC_STRING(x) OPENSSL_VPROC_STRING_(x)
554
#define OPENSSL_VPROC_FUNC OPENSSL_VPROC_STRING(OPENSSL_VPROC)
555
void OPENSSL_VPROC_FUNC(void) { }
556
#endif
557
558
int SSL_clear(SSL *s)
559
151k
{
560
151k
    if (s->method == NULL) {
561
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_METHOD_SPECIFIED);
562
0
        return 0;
563
0
    }
564
565
151k
    return s->method->ssl_reset(s);
566
151k
}
567
568
int ossl_ssl_connection_reset(SSL *s)
569
122k
{
570
122k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
571
572
122k
    if (sc == NULL)
573
0
        return 0;
574
575
122k
    if (ssl_clear_bad_session(sc)) {
576
0
        SSL_SESSION_free(sc->session);
577
0
        sc->session = NULL;
578
0
    }
579
122k
    SSL_SESSION_free(sc->psksession);
580
122k
    sc->psksession = NULL;
581
122k
    OPENSSL_free(sc->psksession_id);
582
122k
    sc->psksession_id = NULL;
583
122k
    sc->psksession_id_len = 0;
584
122k
    sc->hello_retry_request = SSL_HRR_NONE;
585
122k
    sc->sent_tickets = 0;
586
587
122k
    sc->error = 0;
588
122k
    sc->hit = 0;
589
122k
    sc->shutdown = 0;
590
591
122k
    if (sc->renegotiate) {
592
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
593
0
        return 0;
594
0
    }
595
596
122k
    ossl_statem_clear(sc);
597
598
122k
    sc->version = s->method->version;
599
122k
    sc->client_version = sc->version;
600
122k
    sc->rwstate = SSL_NOTHING;
601
602
122k
    BUF_MEM_free(sc->init_buf);
603
122k
    sc->init_buf = NULL;
604
122k
    sc->first_packet = 0;
605
606
122k
    sc->key_update = SSL_KEY_UPDATE_NONE;
607
122k
    memset(sc->ext.compress_certificate_from_peer, 0,
608
122k
        sizeof(sc->ext.compress_certificate_from_peer));
609
122k
    sc->ext.compress_certificate_sent = 0;
610
611
122k
    EVP_MD_CTX_free(sc->pha_dgst);
612
122k
    sc->pha_dgst = NULL;
613
614
    /* Reset DANE verification result state */
615
122k
    sc->dane.mdpth = -1;
616
122k
    sc->dane.pdpth = -1;
617
122k
    X509_free(sc->dane.mcert);
618
122k
    sc->dane.mcert = NULL;
619
122k
    sc->dane.mtlsa = NULL;
620
621
    /* Clear the verification result peername */
622
122k
    X509_VERIFY_PARAM_move_peername(sc->param, NULL);
623
624
    /* Clear any shared connection state */
625
122k
    OPENSSL_free(sc->shared_sigalgs);
626
122k
    sc->shared_sigalgs = NULL;
627
122k
    sc->shared_sigalgslen = 0;
628
629
    /*
630
     * Check to see if we were changed into a different method, if so, revert
631
     * back.
632
     */
633
122k
    if (s->method != s->defltmeth) {
634
0
        s->method->ssl_deinit(s);
635
0
        s->method = s->defltmeth;
636
0
        if (!s->method->ssl_init(s))
637
0
            return 0;
638
122k
    } else {
639
122k
        if (!s->method->ssl_clear(s))
640
0
            return 0;
641
122k
    }
642
643
122k
    if (!RECORD_LAYER_reset(&sc->rlayer))
644
0
        return 0;
645
646
122k
    return 1;
647
122k
}
648
649
#ifndef OPENSSL_NO_DEPRECATED_3_0
650
/** Used to change an SSL_CTXs default SSL method type */
651
int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
652
0
{
653
0
    STACK_OF(SSL_CIPHER) *sk;
654
655
0
    if (IS_QUIC_CTX(ctx)) {
656
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
657
0
        return 0;
658
0
    }
659
660
0
    ctx->method = meth;
661
662
0
    if (!SSL_CTX_set_ciphersuites(ctx, OSSL_default_ciphersuites())) {
663
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
664
0
        return 0;
665
0
    }
666
0
    sk = ssl_create_cipher_list(ctx,
667
0
        ctx->tls13_ciphersuites,
668
0
        &(ctx->cipher_list),
669
0
        &(ctx->cipher_list_by_id),
670
0
        OSSL_default_cipher_list(), ctx->cert);
671
0
    if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0)) {
672
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
673
0
        return 0;
674
0
    }
675
0
    return 1;
676
0
}
677
#endif
678
679
SSL *SSL_new(SSL_CTX *ctx)
680
151k
{
681
151k
    if (ctx == NULL) {
682
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_CTX);
683
0
        return NULL;
684
0
    }
685
151k
    if (ctx->method == NULL) {
686
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
687
0
        return NULL;
688
0
    }
689
151k
    return ctx->method->ssl_new(ctx);
690
151k
}
691
692
int ossl_ssl_init(SSL *ssl, SSL_CTX *ctx, const SSL_METHOD *method, int type)
693
87.7k
{
694
87.7k
    ssl->type = type;
695
696
87.7k
    ssl->lock = CRYPTO_THREAD_lock_new();
697
87.7k
    if (ssl->lock == NULL)
698
0
        return 0;
699
700
87.7k
    if (!CRYPTO_NEW_REF(&ssl->references, 1)) {
701
0
        CRYPTO_THREAD_lock_free(ssl->lock);
702
0
        return 0;
703
0
    }
704
705
87.7k
    if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, ssl, &ssl->ex_data)) {
706
0
        CRYPTO_THREAD_lock_free(ssl->lock);
707
0
        CRYPTO_FREE_REF(&ssl->references);
708
0
        ssl->lock = NULL;
709
0
        return 0;
710
0
    }
711
712
87.7k
    SSL_CTX_up_ref(ctx);
713
87.7k
    ssl->ctx = ctx;
714
715
87.7k
    ssl->defltmeth = ssl->method = method;
716
717
87.7k
    return 1;
718
87.7k
}
719
720
SSL *ossl_ssl_connection_new_int(SSL_CTX *ctx, SSL *user_ssl,
721
    const SSL_METHOD *method)
722
61.4k
{
723
61.4k
    SSL_CONNECTION *s;
724
61.4k
    SSL *ssl;
725
726
61.4k
    s = OPENSSL_zalloc(sizeof(*s));
727
61.4k
    if (s == NULL)
728
0
        return NULL;
729
730
61.4k
    ssl = &s->ssl;
731
61.4k
    s->user_ssl = (user_ssl == NULL) ? ssl : user_ssl;
732
733
61.4k
    if (!ossl_ssl_init(ssl, ctx, method, SSL_TYPE_SSL_CONNECTION)) {
734
0
        OPENSSL_free(s);
735
0
        s = NULL;
736
0
        ssl = NULL;
737
0
        goto sslerr;
738
0
    }
739
740
61.4k
    RECORD_LAYER_init(&s->rlayer, s);
741
742
61.4k
    s->options = ctx->options;
743
744
61.4k
    s->dane.flags = ctx->dane.flags;
745
61.4k
    if (method->version == ctx->method->version) {
746
40.4k
        s->min_proto_version = ctx->min_proto_version;
747
40.4k
        s->max_proto_version = ctx->max_proto_version;
748
40.4k
    }
749
750
61.4k
    s->mode = ctx->mode;
751
61.4k
    s->max_cert_list = ctx->max_cert_list;
752
61.4k
    s->max_early_data = ctx->max_early_data;
753
61.4k
    s->recv_max_early_data = ctx->recv_max_early_data;
754
755
61.4k
    s->num_tickets = ctx->num_tickets;
756
61.4k
    s->pha_enabled = ctx->pha_enabled;
757
758
    /* Shallow copy of the ciphersuites stack */
759
61.4k
    s->tls13_ciphersuites = sk_SSL_CIPHER_dup(ctx->tls13_ciphersuites);
760
61.4k
    if (s->tls13_ciphersuites == NULL)
761
0
        goto cerr;
762
763
    /*
764
     * Earlier library versions used to copy the pointer to the CERT, not
765
     * its contents; only when setting new parameters for the per-SSL
766
     * copy, ssl_cert_new would be called (and the direct reference to
767
     * the per-SSL_CTX settings would be lost, but those still were
768
     * indirectly accessed for various purposes, and for that reason they
769
     * used to be known as s->ctx->default_cert). Now we don't look at the
770
     * SSL_CTX's CERT after having duplicated it once.
771
     */
772
61.4k
    s->cert = ssl_cert_dup(ctx->cert);
773
61.4k
    if (s->cert == NULL)
774
0
        goto sslerr;
775
776
61.4k
    RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead);
777
61.4k
    s->msg_callback = ctx->msg_callback;
778
61.4k
    s->msg_callback_arg = ctx->msg_callback_arg;
779
61.4k
    s->verify_mode = ctx->verify_mode;
780
61.4k
    s->not_resumable_session_cb = ctx->not_resumable_session_cb;
781
61.4k
    s->rlayer.record_padding_cb = ctx->record_padding_cb;
782
61.4k
    s->rlayer.record_padding_arg = ctx->record_padding_arg;
783
61.4k
    s->rlayer.block_padding = ctx->block_padding;
784
61.4k
    s->rlayer.hs_padding = ctx->hs_padding;
785
61.4k
    s->sid_ctx_length = ctx->sid_ctx_length;
786
61.4k
    if (!ossl_assert(s->sid_ctx_length <= sizeof(s->sid_ctx)))
787
0
        goto err;
788
61.4k
    memcpy(&s->sid_ctx, &ctx->sid_ctx, sizeof(s->sid_ctx));
789
61.4k
    s->verify_callback = ctx->default_verify_callback;
790
61.4k
    s->generate_session_id = ctx->generate_session_id;
791
792
61.4k
    s->param = X509_VERIFY_PARAM_new();
793
61.4k
    if (s->param == NULL)
794
0
        goto asn1err;
795
61.4k
    X509_VERIFY_PARAM_inherit(s->param, ctx->param);
796
61.4k
    s->quiet_shutdown = IS_QUIC_CTX(ctx) ? 0 : ctx->quiet_shutdown;
797
798
61.4k
    if (!IS_QUIC_CTX(ctx))
799
40.4k
        s->ext.max_fragment_len_mode = ctx->ext.max_fragment_len_mode;
800
801
61.4k
    s->max_send_fragment = ctx->max_send_fragment;
802
61.4k
    s->split_send_fragment = ctx->split_send_fragment;
803
61.4k
    s->max_pipelines = ctx->max_pipelines;
804
61.4k
    s->rlayer.default_read_buf_len = ctx->default_read_buf_len;
805
806
61.4k
    s->ext.debug_cb = 0;
807
61.4k
    s->ext.debug_arg = NULL;
808
61.4k
    s->ext.ticket_expected = 0;
809
61.4k
    s->ext.status_type = ctx->ext.status_type;
810
61.4k
    s->ext.status_expected = 0;
811
61.4k
    s->ext.ocsp.ids = NULL;
812
61.4k
    s->ext.ocsp.exts = NULL;
813
61.4k
    s->ext.ocsp.resp = NULL;
814
61.4k
    s->ext.ocsp.resp_len = 0;
815
61.4k
    SSL_CTX_up_ref(ctx);
816
61.4k
    s->session_ctx = ctx;
817
61.4k
    if (ctx->ext.ecpointformats) {
818
0
        s->ext.ecpointformats = OPENSSL_memdup(ctx->ext.ecpointformats,
819
0
            ctx->ext.ecpointformats_len);
820
0
        if (!s->ext.ecpointformats) {
821
0
            s->ext.ecpointformats_len = 0;
822
0
            goto err;
823
0
        }
824
0
        s->ext.ecpointformats_len = ctx->ext.ecpointformats_len;
825
0
    }
826
61.4k
    if (ctx->ext.supportedgroups) {
827
0
        s->ext.supportedgroups = OPENSSL_memdup(ctx->ext.supportedgroups,
828
0
            ctx->ext.supportedgroups_len
829
0
                * sizeof(*ctx->ext.supportedgroups));
830
0
        if (!s->ext.supportedgroups) {
831
0
            s->ext.supportedgroups_len = 0;
832
0
            goto err;
833
0
        }
834
0
        s->ext.supportedgroups_len = ctx->ext.supportedgroups_len;
835
0
    }
836
837
61.4k
#ifndef OPENSSL_NO_NEXTPROTONEG
838
61.4k
    s->ext.npn = NULL;
839
61.4k
#endif
840
841
61.4k
    if (ctx->ext.alpn != NULL) {
842
0
        s->ext.alpn = OPENSSL_malloc(ctx->ext.alpn_len);
843
0
        if (s->ext.alpn == NULL) {
844
0
            s->ext.alpn_len = 0;
845
0
            goto err;
846
0
        }
847
0
        memcpy(s->ext.alpn, ctx->ext.alpn, ctx->ext.alpn_len);
848
0
        s->ext.alpn_len = ctx->ext.alpn_len;
849
0
    }
850
851
61.4k
    s->verified_chain = NULL;
852
61.4k
    s->verify_result = X509_V_OK;
853
854
61.4k
    s->default_passwd_callback = ctx->default_passwd_callback;
855
61.4k
    s->default_passwd_callback_userdata = ctx->default_passwd_callback_userdata;
856
857
61.4k
    s->key_update = SSL_KEY_UPDATE_NONE;
858
859
61.4k
    if (!IS_QUIC_CTX(ctx)) {
860
40.4k
        s->allow_early_data_cb = ctx->allow_early_data_cb;
861
40.4k
        s->allow_early_data_cb_data = ctx->allow_early_data_cb_data;
862
40.4k
    }
863
864
61.4k
    if (!method->ssl_init(ssl))
865
0
        goto sslerr;
866
867
61.4k
    s->server = (method->ssl_accept == ssl_undefined_function) ? 0 : 1;
868
869
61.4k
    if (!method->ssl_reset(ssl))
870
0
        goto sslerr;
871
872
61.4k
#ifndef OPENSSL_NO_PSK
873
61.4k
    s->psk_client_callback = ctx->psk_client_callback;
874
61.4k
    s->psk_server_callback = ctx->psk_server_callback;
875
61.4k
#endif
876
61.4k
    s->psk_find_session_cb = ctx->psk_find_session_cb;
877
61.4k
    s->psk_use_session_cb = ctx->psk_use_session_cb;
878
879
61.4k
    s->async_cb = ctx->async_cb;
880
61.4k
    s->async_cb_arg = ctx->async_cb_arg;
881
882
61.4k
    s->job = NULL;
883
884
#ifndef OPENSSL_NO_COMP_ALG
885
    memcpy(s->cert_comp_prefs, ctx->cert_comp_prefs, sizeof(s->cert_comp_prefs));
886
#endif
887
61.4k
    if (ctx->client_cert_type != NULL) {
888
0
        s->client_cert_type = OPENSSL_memdup(ctx->client_cert_type,
889
0
            ctx->client_cert_type_len);
890
0
        if (s->client_cert_type == NULL)
891
0
            goto sslerr;
892
0
        s->client_cert_type_len = ctx->client_cert_type_len;
893
0
    }
894
61.4k
    if (ctx->server_cert_type != NULL) {
895
0
        s->server_cert_type = OPENSSL_memdup(ctx->server_cert_type,
896
0
            ctx->server_cert_type_len);
897
0
        if (s->server_cert_type == NULL)
898
0
            goto sslerr;
899
0
        s->server_cert_type_len = ctx->server_cert_type_len;
900
0
    }
901
902
61.4k
#ifndef OPENSSL_NO_CT
903
61.4k
    if (!SSL_set_ct_validation_callback(ssl, ctx->ct_validation_callback,
904
61.4k
            ctx->ct_validation_callback_arg))
905
0
        goto sslerr;
906
61.4k
#endif
907
908
61.4k
    s->ssl_pkey_num = SSL_PKEY_NUM + ctx->sigalg_list_len;
909
61.4k
    return ssl;
910
0
cerr:
911
0
    ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
912
0
    goto err;
913
0
asn1err:
914
0
    ERR_raise(ERR_LIB_SSL, ERR_R_ASN1_LIB);
915
0
    goto err;
916
0
sslerr:
917
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
918
0
err:
919
0
    SSL_free(ssl);
920
0
    return NULL;
921
0
}
922
923
SSL *ossl_ssl_connection_new(SSL_CTX *ctx)
924
101k
{
925
101k
    return ossl_ssl_connection_new_int(ctx, NULL, ctx->method);
926
101k
}
927
928
int SSL_is_dtls(const SSL *s)
929
0
{
930
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
931
932
0
#ifndef OPENSSL_NO_QUIC
933
0
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
934
0
        return 0;
935
0
#endif
936
937
0
    if (sc == NULL)
938
0
        return 0;
939
940
0
    return SSL_CONNECTION_IS_DTLS(sc) ? 1 : 0;
941
0
}
942
943
int SSL_is_tls(const SSL *s)
944
0
{
945
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
946
947
0
#ifndef OPENSSL_NO_QUIC
948
0
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
949
0
        return 0;
950
0
#endif
951
952
0
    if (sc == NULL)
953
0
        return 0;
954
955
0
    return SSL_CONNECTION_IS_DTLS(sc) ? 0 : 1;
956
0
}
957
958
int SSL_is_quic(const SSL *s)
959
0
{
960
0
#ifndef OPENSSL_NO_QUIC
961
0
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
962
0
        return 1;
963
0
#endif
964
0
    return 0;
965
0
}
966
967
int SSL_up_ref(SSL *s)
968
12.4k
{
969
12.4k
    int i;
970
971
12.4k
    if (CRYPTO_UP_REF(&s->references, &i) <= 0)
972
0
        return 0;
973
974
12.4k
    REF_PRINT_COUNT("SSL", i, s);
975
12.4k
    REF_ASSERT_ISNT(i < 2);
976
12.4k
    return ((i > 1) ? 1 : 0);
977
12.4k
}
978
979
int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx,
980
    unsigned int sid_ctx_len)
981
0
{
982
0
    if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
983
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
984
0
        return 0;
985
0
    }
986
0
    ctx->sid_ctx_length = sid_ctx_len;
987
0
    memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len);
988
989
0
    return 1;
990
0
}
991
992
int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
993
    unsigned int sid_ctx_len)
994
0
{
995
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
996
997
0
    if (sc == NULL)
998
0
        return 0;
999
1000
0
    if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
1001
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
1002
0
        return 0;
1003
0
    }
1004
0
    sc->sid_ctx_length = sid_ctx_len;
1005
0
    memcpy(sc->sid_ctx, sid_ctx, sid_ctx_len);
1006
1007
0
    return 1;
1008
0
}
1009
1010
int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
1011
0
{
1012
0
    if (!CRYPTO_THREAD_write_lock(ctx->lock))
1013
0
        return 0;
1014
0
    ctx->generate_session_id = cb;
1015
0
    CRYPTO_THREAD_unlock(ctx->lock);
1016
0
    return 1;
1017
0
}
1018
1019
int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
1020
0
{
1021
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1022
1023
0
    if (sc == NULL || !CRYPTO_THREAD_write_lock(ssl->lock))
1024
0
        return 0;
1025
0
    sc->generate_session_id = cb;
1026
0
    CRYPTO_THREAD_unlock(ssl->lock);
1027
0
    return 1;
1028
0
}
1029
1030
int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
1031
    unsigned int id_len)
1032
20.5k
{
1033
    /*
1034
     * A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
1035
     * we can "construct" a session to give us the desired check - i.e. to
1036
     * find if there's a session in the hash table that would conflict with
1037
     * any new session built out of this id/id_len and the ssl_version in use
1038
     * by this SSL.
1039
     */
1040
20.5k
    SSL_SESSION r, *p;
1041
20.5k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
1042
1043
20.5k
    if (sc == NULL || id_len > sizeof(r.session_id))
1044
0
        return 0;
1045
1046
20.5k
    r.ssl_version = sc->version;
1047
20.5k
    r.session_id_length = id_len;
1048
20.5k
    memcpy(r.session_id, id, id_len);
1049
1050
20.5k
    if (!CRYPTO_THREAD_read_lock(sc->session_ctx->lock))
1051
0
        return 0;
1052
20.5k
    p = lh_SSL_SESSION_retrieve(sc->session_ctx->sessions, &r);
1053
20.5k
    CRYPTO_THREAD_unlock(sc->session_ctx->lock);
1054
20.5k
    return (p != NULL);
1055
20.5k
}
1056
1057
int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
1058
0
{
1059
0
    return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
1060
0
}
1061
1062
int SSL_set_purpose(SSL *s, int purpose)
1063
0
{
1064
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1065
1066
0
    if (sc == NULL)
1067
0
        return 0;
1068
1069
0
    return X509_VERIFY_PARAM_set_purpose(sc->param, purpose);
1070
0
}
1071
1072
int SSL_CTX_set_trust(SSL_CTX *s, int trust)
1073
0
{
1074
0
    return X509_VERIFY_PARAM_set_trust(s->param, trust);
1075
0
}
1076
1077
int SSL_set_trust(SSL *s, int trust)
1078
0
{
1079
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1080
1081
0
    if (sc == NULL)
1082
0
        return 0;
1083
1084
0
    return X509_VERIFY_PARAM_set_trust(sc->param, trust);
1085
0
}
1086
1087
int SSL_set1_host(SSL *s, const char *host)
1088
0
{
1089
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1090
1091
0
    if (sc == NULL)
1092
0
        return 0;
1093
1094
    /* clear hostname(s) and IP address in any case, also if host parses as an IP address */
1095
0
    (void)X509_VERIFY_PARAM_set1_host(sc->param, NULL, 0);
1096
0
    (void)X509_VERIFY_PARAM_set1_ip(sc->param, NULL, 0);
1097
0
    if (host == NULL)
1098
0
        return 1;
1099
1100
    /* If a host is provided and parses as an IP address, treat it as such. */
1101
0
    return X509_VERIFY_PARAM_set1_ip_asc(sc->param, host)
1102
0
        || X509_VERIFY_PARAM_set1_host(sc->param, host, 0);
1103
0
}
1104
1105
int SSL_add1_host(SSL *s, const char *host)
1106
0
{
1107
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1108
1109
0
    if (sc == NULL)
1110
0
        return 0;
1111
1112
    /* If a host is provided and parses as an IP address, treat it as such. */
1113
0
    if (host != NULL) {
1114
0
        ASN1_OCTET_STRING *ip;
1115
0
        char *old_ip;
1116
1117
0
        ip = a2i_IPADDRESS(host);
1118
0
        if (ip != NULL) {
1119
            /* We didn't want it; only to check if it *is* an IP address */
1120
0
            ASN1_OCTET_STRING_free(ip);
1121
1122
0
            old_ip = X509_VERIFY_PARAM_get1_ip_asc(sc->param);
1123
0
            if (old_ip != NULL) {
1124
0
                OPENSSL_free(old_ip);
1125
                /* There can be only one IP address */
1126
0
                ERR_raise_data(ERR_LIB_SSL, ERR_R_PASSED_INVALID_ARGUMENT,
1127
0
                    "IP address was already set");
1128
0
                return 0;
1129
0
            }
1130
1131
0
            return X509_VERIFY_PARAM_set1_ip_asc(sc->param, host);
1132
0
        }
1133
0
    }
1134
1135
0
    return X509_VERIFY_PARAM_add1_host(sc->param, host, 0);
1136
0
}
1137
1138
void SSL_set_hostflags(SSL *s, unsigned int flags)
1139
0
{
1140
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1141
1142
0
    if (sc == NULL)
1143
0
        return;
1144
1145
0
    X509_VERIFY_PARAM_set_hostflags(sc->param, flags);
1146
0
}
1147
1148
const char *SSL_get0_peername(SSL *s)
1149
0
{
1150
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1151
1152
0
    if (sc == NULL)
1153
0
        return NULL;
1154
1155
0
    return X509_VERIFY_PARAM_get0_peername(sc->param);
1156
0
}
1157
1158
int SSL_CTX_dane_enable(SSL_CTX *ctx)
1159
0
{
1160
0
    return dane_ctx_enable(&ctx->dane);
1161
0
}
1162
1163
unsigned long SSL_CTX_dane_set_flags(SSL_CTX *ctx, unsigned long flags)
1164
0
{
1165
0
    unsigned long orig = ctx->dane.flags;
1166
1167
0
    ctx->dane.flags |= flags;
1168
0
    return orig;
1169
0
}
1170
1171
unsigned long SSL_CTX_dane_clear_flags(SSL_CTX *ctx, unsigned long flags)
1172
0
{
1173
0
    unsigned long orig = ctx->dane.flags;
1174
1175
0
    ctx->dane.flags &= ~flags;
1176
0
    return orig;
1177
0
}
1178
1179
int SSL_dane_enable(SSL *s, const char *basedomain)
1180
0
{
1181
0
    SSL_DANE *dane;
1182
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1183
1184
0
    if (sc == NULL)
1185
0
        return 0;
1186
1187
0
    dane = &sc->dane;
1188
0
    if (s->ctx->dane.mdmax == 0) {
1189
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONTEXT_NOT_DANE_ENABLED);
1190
0
        return 0;
1191
0
    }
1192
0
    if (dane->trecs != NULL) {
1193
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_ALREADY_ENABLED);
1194
0
        return 0;
1195
0
    }
1196
1197
    /*
1198
     * Default SNI name.  This rejects empty names, while set1_host below
1199
     * accepts them and disables hostname checks.  To avoid side-effects with
1200
     * invalid input, set the SNI name first.
1201
     */
1202
0
    if (sc->ext.hostname == NULL) {
1203
0
        if (!SSL_set_tlsext_host_name(s, basedomain)) {
1204
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
1205
0
            return -1;
1206
0
        }
1207
0
    }
1208
1209
    /* Primary RFC6125 reference identifier */
1210
0
    if (!X509_VERIFY_PARAM_set1_host(sc->param, basedomain, 0)) {
1211
0
        ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
1212
0
        return -1;
1213
0
    }
1214
1215
0
    dane->mdpth = -1;
1216
0
    dane->pdpth = -1;
1217
0
    dane->dctx = &s->ctx->dane;
1218
0
    dane->trecs = sk_danetls_record_new_null();
1219
1220
0
    if (dane->trecs == NULL) {
1221
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
1222
0
        return -1;
1223
0
    }
1224
0
    return 1;
1225
0
}
1226
1227
unsigned long SSL_dane_set_flags(SSL *ssl, unsigned long flags)
1228
0
{
1229
0
    unsigned long orig;
1230
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1231
1232
0
    if (sc == NULL)
1233
0
        return 0;
1234
1235
0
    orig = sc->dane.flags;
1236
1237
0
    sc->dane.flags |= flags;
1238
0
    return orig;
1239
0
}
1240
1241
unsigned long SSL_dane_clear_flags(SSL *ssl, unsigned long flags)
1242
0
{
1243
0
    unsigned long orig;
1244
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1245
1246
0
    if (sc == NULL)
1247
0
        return 0;
1248
1249
0
    orig = sc->dane.flags;
1250
1251
0
    sc->dane.flags &= ~flags;
1252
0
    return orig;
1253
0
}
1254
1255
int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki)
1256
0
{
1257
0
    SSL_DANE *dane;
1258
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1259
1260
0
    if (sc == NULL)
1261
0
        return -1;
1262
1263
0
    dane = &sc->dane;
1264
1265
0
    if (!DANETLS_ENABLED(dane) || sc->verify_result != X509_V_OK)
1266
0
        return -1;
1267
0
    if (dane->mtlsa) {
1268
0
        if (mcert)
1269
0
            *mcert = dane->mcert;
1270
0
        if (mspki)
1271
0
            *mspki = (dane->mcert == NULL) ? dane->mtlsa->spki : NULL;
1272
0
    }
1273
0
    return dane->mdpth;
1274
0
}
1275
1276
int SSL_get0_dane_tlsa(SSL *s, uint8_t *usage, uint8_t *selector,
1277
    uint8_t *mtype, const unsigned char **data, size_t *dlen)
1278
0
{
1279
0
    SSL_DANE *dane;
1280
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1281
1282
0
    if (sc == NULL)
1283
0
        return -1;
1284
1285
0
    dane = &sc->dane;
1286
1287
0
    if (!DANETLS_ENABLED(dane) || sc->verify_result != X509_V_OK)
1288
0
        return -1;
1289
0
    if (dane->mtlsa) {
1290
0
        if (usage)
1291
0
            *usage = dane->mtlsa->usage;
1292
0
        if (selector)
1293
0
            *selector = dane->mtlsa->selector;
1294
0
        if (mtype)
1295
0
            *mtype = dane->mtlsa->mtype;
1296
0
        if (data)
1297
0
            *data = dane->mtlsa->data;
1298
0
        if (dlen)
1299
0
            *dlen = dane->mtlsa->dlen;
1300
0
    }
1301
0
    return dane->mdpth;
1302
0
}
1303
1304
SSL_DANE *SSL_get0_dane(SSL *s)
1305
0
{
1306
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1307
1308
0
    if (sc == NULL)
1309
0
        return NULL;
1310
1311
0
    return &sc->dane;
1312
0
}
1313
1314
int SSL_dane_tlsa_add(SSL *s, uint8_t usage, uint8_t selector,
1315
    uint8_t mtype, const unsigned char *data, size_t dlen)
1316
0
{
1317
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1318
1319
0
    if (sc == NULL)
1320
0
        return 0;
1321
1322
0
    return dane_tlsa_add(&sc->dane, usage, selector, mtype, data, dlen);
1323
0
}
1324
1325
int SSL_CTX_dane_mtype_set(SSL_CTX *ctx, const EVP_MD *md, uint8_t mtype,
1326
    uint8_t ord)
1327
0
{
1328
0
    return dane_mtype_set(&ctx->dane, md, mtype, ord);
1329
0
}
1330
1331
int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm)
1332
0
{
1333
0
    return X509_VERIFY_PARAM_set1(ctx->param, vpm);
1334
0
}
1335
1336
int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm)
1337
0
{
1338
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1339
1340
0
    if (sc == NULL)
1341
0
        return 0;
1342
1343
0
    return X509_VERIFY_PARAM_set1(sc->param, vpm);
1344
0
}
1345
1346
X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx)
1347
0
{
1348
0
    return ctx->param;
1349
0
}
1350
1351
X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl)
1352
0
{
1353
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
1354
1355
0
    if (sc == NULL)
1356
0
        return NULL;
1357
1358
0
    return sc->param;
1359
0
}
1360
1361
void SSL_certs_clear(SSL *s)
1362
0
{
1363
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1364
1365
0
    if (sc == NULL)
1366
0
        return;
1367
1368
0
    ssl_cert_clear_certs(sc->cert);
1369
0
}
1370
1371
void SSL_free(SSL *s)
1372
220k
{
1373
220k
    int i;
1374
1375
220k
    if (s == NULL)
1376
0
        return;
1377
220k
    CRYPTO_DOWN_REF(&s->references, &i);
1378
220k
    REF_PRINT_COUNT("SSL", i, s);
1379
220k
    if (i > 0)
1380
5.78k
        return;
1381
214k
    REF_ASSERT_ISNT(i < 0);
1382
1383
214k
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
1384
1385
214k
    if (s->method != NULL)
1386
214k
        s->method->ssl_free(s);
1387
1388
214k
    SSL_CTX_free(s->ctx);
1389
214k
    CRYPTO_THREAD_lock_free(s->lock);
1390
214k
    CRYPTO_FREE_REF(&s->references);
1391
1392
214k
    OPENSSL_free(s);
1393
214k
}
1394
1395
void ossl_ssl_connection_free(SSL *ssl)
1396
151k
{
1397
151k
    SSL_CONNECTION *s;
1398
1399
151k
    s = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
1400
151k
    if (s == NULL)
1401
0
        return;
1402
1403
151k
    X509_VERIFY_PARAM_free(s->param);
1404
151k
    dane_final(&s->dane);
1405
1406
    /* Ignore return value */
1407
151k
    ssl_free_wbio_buffer(s);
1408
1409
    /* Ignore return value */
1410
151k
    RECORD_LAYER_clear(&s->rlayer);
1411
1412
151k
    BUF_MEM_free(s->init_buf);
1413
1414
    /* add extra stuff */
1415
151k
    sk_SSL_CIPHER_free(s->cipher_list);
1416
151k
    sk_SSL_CIPHER_free(s->cipher_list_by_id);
1417
151k
    sk_SSL_CIPHER_free(s->tls13_ciphersuites);
1418
151k
    sk_SSL_CIPHER_free(s->peer_ciphers);
1419
1420
    /* Make the next call work :-) */
1421
151k
    if (s->session != NULL) {
1422
141k
        ssl_clear_bad_session(s);
1423
141k
        SSL_SESSION_free(s->session);
1424
141k
    }
1425
151k
    SSL_SESSION_free(s->psksession);
1426
151k
    OPENSSL_free(s->psksession_id);
1427
1428
151k
    ssl_cert_free(s->cert);
1429
151k
    OPENSSL_free(s->shared_sigalgs);
1430
    /* Free up if allocated */
1431
1432
151k
    OPENSSL_free(s->ext.hostname);
1433
151k
    SSL_CTX_free(s->session_ctx);
1434
151k
    OPENSSL_free(s->ext.ecpointformats);
1435
151k
    OPENSSL_free(s->ext.peer_ecpointformats);
1436
151k
    OPENSSL_free(s->ext.supportedgroups);
1437
151k
    OPENSSL_free(s->ext.peer_supportedgroups);
1438
151k
    sk_X509_EXTENSION_pop_free(s->ext.ocsp.exts, X509_EXTENSION_free);
1439
151k
#ifndef OPENSSL_NO_OCSP
1440
151k
    sk_OCSP_RESPID_pop_free(s->ext.ocsp.ids, OCSP_RESPID_free);
1441
151k
#endif
1442
151k
#ifndef OPENSSL_NO_CT
1443
151k
    SCT_LIST_free(s->scts);
1444
151k
    OPENSSL_free(s->ext.scts);
1445
151k
#endif
1446
151k
    OPENSSL_free(s->ext.ocsp.resp);
1447
151k
    OPENSSL_free(s->ext.alpn);
1448
151k
    OPENSSL_free(s->ext.tls13_cookie);
1449
151k
    if (s->clienthello != NULL)
1450
0
        OPENSSL_free(s->clienthello->pre_proc_exts);
1451
151k
    OPENSSL_free(s->clienthello);
1452
151k
    OPENSSL_free(s->pha_context);
1453
151k
    EVP_MD_CTX_free(s->pha_dgst);
1454
1455
151k
    sk_X509_NAME_pop_free(s->ca_names, X509_NAME_free);
1456
151k
    sk_X509_NAME_pop_free(s->client_ca_names, X509_NAME_free);
1457
1458
151k
    OPENSSL_free(s->client_cert_type);
1459
151k
    OPENSSL_free(s->server_cert_type);
1460
1461
151k
    OSSL_STACK_OF_X509_free(s->verified_chain);
1462
1463
151k
    if (ssl->method != NULL)
1464
151k
        ssl->method->ssl_deinit(ssl);
1465
1466
151k
    ASYNC_WAIT_CTX_free(s->waitctx);
1467
1468
151k
#if !defined(OPENSSL_NO_NEXTPROTONEG)
1469
151k
    OPENSSL_free(s->ext.npn);
1470
151k
#endif
1471
1472
151k
#ifndef OPENSSL_NO_SRTP
1473
151k
    sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles);
1474
151k
#endif
1475
1476
    /*
1477
     * We do this late. We want to ensure that any other references we held to
1478
     * these BIOs are freed first *before* we call BIO_free_all(), because
1479
     * BIO_free_all() will only free each BIO in the chain if the number of
1480
     * references to the first BIO have dropped to 0
1481
     */
1482
151k
    BIO_free_all(s->wbio);
1483
151k
    s->wbio = NULL;
1484
151k
    BIO_free_all(s->rbio);
1485
151k
    s->rbio = NULL;
1486
151k
    OPENSSL_free(s->s3.tmp.valid_flags);
1487
151k
}
1488
1489
void SSL_set0_rbio(SSL *s, BIO *rbio)
1490
82.3k
{
1491
82.3k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1492
1493
82.3k
#ifndef OPENSSL_NO_QUIC
1494
82.3k
    if (IS_QUIC(s)) {
1495
20.9k
        ossl_quic_conn_set0_net_rbio(s, rbio);
1496
20.9k
        return;
1497
20.9k
    }
1498
61.4k
#endif
1499
1500
61.4k
    if (sc == NULL)
1501
0
        return;
1502
1503
61.4k
    BIO_free_all(sc->rbio);
1504
61.4k
    sc->rbio = rbio;
1505
61.4k
    sc->rlayer.rrlmethod->set1_bio(sc->rlayer.rrl, sc->rbio);
1506
61.4k
}
1507
1508
void SSL_set0_wbio(SSL *s, BIO *wbio)
1509
82.3k
{
1510
82.3k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1511
1512
82.3k
#ifndef OPENSSL_NO_QUIC
1513
82.3k
    if (IS_QUIC(s)) {
1514
20.9k
        ossl_quic_conn_set0_net_wbio(s, wbio);
1515
20.9k
        return;
1516
20.9k
    }
1517
61.4k
#endif
1518
1519
61.4k
    if (sc == NULL)
1520
0
        return;
1521
1522
    /*
1523
     * If the output buffering BIO is still in place, remove it
1524
     */
1525
61.4k
    if (sc->bbio != NULL)
1526
0
        sc->wbio = BIO_pop(sc->wbio);
1527
1528
61.4k
    BIO_free_all(sc->wbio);
1529
61.4k
    sc->wbio = wbio;
1530
1531
    /* Re-attach |bbio| to the new |wbio|. */
1532
61.4k
    if (sc->bbio != NULL)
1533
0
        sc->wbio = BIO_push(sc->bbio, sc->wbio);
1534
1535
61.4k
    sc->rlayer.wrlmethod->set1_bio(sc->rlayer.wrl, sc->wbio);
1536
61.4k
}
1537
1538
void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
1539
93.8k
{
1540
    /*
1541
     * For historical reasons, this function has many different cases in
1542
     * ownership handling.
1543
     */
1544
1545
    /* If nothing has changed, do nothing */
1546
93.8k
    if (rbio == SSL_get_rbio(s) && wbio == SSL_get_wbio(s))
1547
0
        return;
1548
1549
    /*
1550
     * If the two arguments are equal then one fewer reference is granted by the
1551
     * caller than we want to take
1552
     */
1553
93.8k
    if (rbio != NULL && rbio == wbio)
1554
20.9k
        BIO_up_ref(rbio);
1555
1556
    /*
1557
     * If only the wbio is changed only adopt one reference.
1558
     */
1559
93.8k
    if (rbio == SSL_get_rbio(s)) {
1560
0
        SSL_set0_wbio(s, wbio);
1561
0
        return;
1562
0
    }
1563
    /*
1564
     * There is an asymmetry here for historical reasons. If only the rbio is
1565
     * changed AND the rbio and wbio were originally different, then we only
1566
     * adopt one reference.
1567
     */
1568
93.8k
    if (wbio == SSL_get_wbio(s) && SSL_get_rbio(s) != SSL_get_wbio(s)) {
1569
0
        SSL_set0_rbio(s, rbio);
1570
0
        return;
1571
0
    }
1572
1573
    /* Otherwise, adopt both references. */
1574
93.8k
    SSL_set0_rbio(s, rbio);
1575
93.8k
    SSL_set0_wbio(s, wbio);
1576
93.8k
}
1577
1578
BIO *SSL_get_rbio(const SSL *s)
1579
32.0M
{
1580
32.0M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1581
1582
32.0M
#ifndef OPENSSL_NO_QUIC
1583
32.0M
    if (IS_QUIC(s))
1584
41.8k
        return ossl_quic_conn_get_net_rbio(s);
1585
32.0M
#endif
1586
1587
32.0M
    if (sc == NULL)
1588
0
        return NULL;
1589
1590
32.0M
    return sc->rbio;
1591
32.0M
}
1592
1593
BIO *SSL_get_wbio(const SSL *s)
1594
203k
{
1595
203k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1596
1597
203k
#ifndef OPENSSL_NO_QUIC
1598
203k
    if (IS_QUIC(s))
1599
20.9k
        return ossl_quic_conn_get_net_wbio(s);
1600
183k
#endif
1601
1602
183k
    if (sc == NULL)
1603
0
        return NULL;
1604
1605
183k
    if (sc->bbio != NULL) {
1606
        /*
1607
         * If |bbio| is active, the true caller-configured BIO is its
1608
         * |next_bio|.
1609
         */
1610
121k
        return BIO_next(sc->bbio);
1611
121k
    }
1612
61.4k
    return sc->wbio;
1613
183k
}
1614
1615
int SSL_get_fd(const SSL *s)
1616
0
{
1617
0
    return SSL_get_rfd(s);
1618
0
}
1619
1620
int SSL_get_rfd(const SSL *s)
1621
0
{
1622
0
    int ret = -1;
1623
0
    BIO *b, *r;
1624
1625
0
    b = SSL_get_rbio(s);
1626
0
    r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1627
0
    if (r != NULL)
1628
0
        BIO_get_fd(r, &ret);
1629
0
    return ret;
1630
0
}
1631
1632
int SSL_get_wfd(const SSL *s)
1633
0
{
1634
0
    int ret = -1;
1635
0
    BIO *b, *r;
1636
1637
0
    b = SSL_get_wbio(s);
1638
0
    r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1639
0
    if (r != NULL)
1640
0
        BIO_get_fd(r, &ret);
1641
0
    return ret;
1642
0
}
1643
1644
#ifndef OPENSSL_NO_SOCK
1645
static const BIO_METHOD *fd_method(SSL *s)
1646
0
{
1647
0
#ifndef OPENSSL_NO_DGRAM
1648
0
    if (IS_QUIC(s))
1649
0
        return BIO_s_datagram();
1650
0
#endif
1651
1652
0
    return BIO_s_socket();
1653
0
}
1654
1655
int SSL_set_fd(SSL *s, int fd)
1656
0
{
1657
0
    int ret = 0;
1658
0
    BIO *bio = NULL;
1659
1660
0
    if (s->type == SSL_TYPE_QUIC_XSO) {
1661
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONN_USE_ONLY);
1662
0
        goto err;
1663
0
    }
1664
1665
0
    bio = BIO_new(fd_method(s));
1666
1667
0
    if (bio == NULL) {
1668
0
        ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
1669
0
        goto err;
1670
0
    }
1671
0
    BIO_set_fd(bio, fd, BIO_NOCLOSE);
1672
0
    SSL_set_bio(s, bio, bio);
1673
0
    ret = 1;
1674
0
err:
1675
0
    return ret;
1676
0
}
1677
1678
int SSL_set_wfd(SSL *s, int fd)
1679
0
{
1680
0
    BIO *rbio = SSL_get_rbio(s);
1681
0
    int desired_type = IS_QUIC(s) ? BIO_TYPE_DGRAM : BIO_TYPE_SOCKET;
1682
1683
0
    if (s->type == SSL_TYPE_QUIC_XSO) {
1684
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONN_USE_ONLY);
1685
0
        return 0;
1686
0
    }
1687
1688
0
    if (rbio == NULL || BIO_method_type(rbio) != desired_type
1689
0
        || (int)BIO_get_fd(rbio, NULL) != fd) {
1690
0
        BIO *bio = BIO_new(fd_method(s));
1691
1692
0
        if (bio == NULL) {
1693
0
            ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
1694
0
            return 0;
1695
0
        }
1696
0
        BIO_set_fd(bio, fd, BIO_NOCLOSE);
1697
0
        SSL_set0_wbio(s, bio);
1698
0
    } else {
1699
0
        BIO_up_ref(rbio);
1700
0
        SSL_set0_wbio(s, rbio);
1701
0
    }
1702
0
    return 1;
1703
0
}
1704
1705
int SSL_set_rfd(SSL *s, int fd)
1706
0
{
1707
0
    BIO *wbio = SSL_get_wbio(s);
1708
0
    int desired_type = IS_QUIC(s) ? BIO_TYPE_DGRAM : BIO_TYPE_SOCKET;
1709
1710
0
    if (s->type == SSL_TYPE_QUIC_XSO) {
1711
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONN_USE_ONLY);
1712
0
        return 0;
1713
0
    }
1714
1715
0
    if (wbio == NULL || BIO_method_type(wbio) != desired_type
1716
0
        || ((int)BIO_get_fd(wbio, NULL) != fd)) {
1717
0
        BIO *bio = BIO_new(fd_method(s));
1718
1719
0
        if (bio == NULL) {
1720
0
            ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
1721
0
            return 0;
1722
0
        }
1723
0
        BIO_set_fd(bio, fd, BIO_NOCLOSE);
1724
0
        SSL_set0_rbio(s, bio);
1725
0
    } else {
1726
0
        BIO_up_ref(wbio);
1727
0
        SSL_set0_rbio(s, wbio);
1728
0
    }
1729
1730
0
    return 1;
1731
0
}
1732
#endif
1733
1734
/* return length of latest Finished message we sent, copy to 'buf' */
1735
size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
1736
0
{
1737
0
    size_t ret = 0;
1738
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1739
1740
0
    if (sc == NULL)
1741
0
        return 0;
1742
1743
0
    ret = sc->s3.tmp.finish_md_len;
1744
0
    if (count > ret)
1745
0
        count = ret;
1746
0
    memcpy(buf, sc->s3.tmp.finish_md, count);
1747
0
    return ret;
1748
0
}
1749
1750
/* return length of latest Finished message we expected, copy to 'buf' */
1751
size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
1752
0
{
1753
0
    size_t ret = 0;
1754
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1755
1756
0
    if (sc == NULL)
1757
0
        return 0;
1758
1759
0
    ret = sc->s3.tmp.peer_finish_md_len;
1760
0
    if (count > ret)
1761
0
        count = ret;
1762
0
    memcpy(buf, sc->s3.tmp.peer_finish_md, count);
1763
0
    return ret;
1764
0
}
1765
1766
int SSL_get_verify_mode(const SSL *s)
1767
0
{
1768
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1769
1770
0
    if (sc == NULL)
1771
0
        return 0;
1772
1773
0
    return sc->verify_mode;
1774
0
}
1775
1776
int SSL_get_verify_depth(const SSL *s)
1777
0
{
1778
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1779
1780
0
    if (sc == NULL)
1781
0
        return 0;
1782
1783
0
    return X509_VERIFY_PARAM_get_depth(sc->param);
1784
0
}
1785
1786
int (*SSL_get_verify_callback(const SSL *s))(int, X509_STORE_CTX *)
1787
0
{
1788
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1789
1790
0
    if (sc == NULL)
1791
0
        return NULL;
1792
1793
0
    return sc->verify_callback;
1794
0
}
1795
1796
int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
1797
0
{
1798
0
    return ctx->verify_mode;
1799
0
}
1800
1801
int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
1802
0
{
1803
0
    return X509_VERIFY_PARAM_get_depth(ctx->param);
1804
0
}
1805
1806
int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int, X509_STORE_CTX *)
1807
0
{
1808
0
    return ctx->default_verify_callback;
1809
0
}
1810
1811
void SSL_set_verify(SSL *s, int mode,
1812
    int (*callback)(int ok, X509_STORE_CTX *ctx))
1813
0
{
1814
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1815
1816
0
    if (sc == NULL)
1817
0
        return;
1818
1819
0
    sc->verify_mode = mode;
1820
0
    if (callback != NULL)
1821
0
        sc->verify_callback = callback;
1822
0
}
1823
1824
void SSL_set_verify_depth(SSL *s, int depth)
1825
0
{
1826
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1827
1828
0
    if (sc == NULL)
1829
0
        return;
1830
1831
0
    X509_VERIFY_PARAM_set_depth(sc->param, depth);
1832
0
}
1833
1834
void SSL_set_read_ahead(SSL *s, int yes)
1835
0
{
1836
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
1837
0
    OSSL_PARAM options[2], *opts = options;
1838
1839
0
    if (sc == NULL)
1840
0
        return;
1841
1842
0
    RECORD_LAYER_set_read_ahead(&sc->rlayer, yes);
1843
1844
0
    *opts++ = OSSL_PARAM_construct_int(OSSL_LIBSSL_RECORD_LAYER_PARAM_READ_AHEAD,
1845
0
        &sc->rlayer.read_ahead);
1846
0
    *opts = OSSL_PARAM_construct_end();
1847
1848
    /* Ignore return value */
1849
0
    sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
1850
0
}
1851
1852
int SSL_get_read_ahead(const SSL *s)
1853
0
{
1854
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
1855
1856
0
    if (sc == NULL)
1857
0
        return 0;
1858
1859
0
    return RECORD_LAYER_get_read_ahead(&sc->rlayer);
1860
0
}
1861
1862
int SSL_pending(const SSL *s)
1863
0
{
1864
0
    size_t pending = s->method->ssl_pending(s);
1865
1866
    /*
1867
     * SSL_pending cannot work properly if read-ahead is enabled
1868
     * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)), and it is
1869
     * impossible to fix since SSL_pending cannot report errors that may be
1870
     * observed while scanning the new data. (Note that SSL_pending() is
1871
     * often used as a boolean value, so we'd better not return -1.)
1872
     *
1873
     * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1874
     * we just return INT_MAX.
1875
     */
1876
0
    return pending < INT_MAX ? (int)pending : INT_MAX;
1877
0
}
1878
1879
int SSL_has_pending(const SSL *s)
1880
0
{
1881
    /*
1882
     * Similar to SSL_pending() but returns a 1 to indicate that we have
1883
     * processed or unprocessed data available or 0 otherwise (as opposed to the
1884
     * number of bytes available). Unlike SSL_pending() this will take into
1885
     * account read_ahead data. A 1 return simply indicates that we have data.
1886
     * That data may not result in any application data, or we may fail to parse
1887
     * the records for some reason.
1888
     */
1889
0
    const SSL_CONNECTION *sc;
1890
1891
0
#ifndef OPENSSL_NO_QUIC
1892
0
    if (IS_QUIC(s))
1893
0
        return ossl_quic_has_pending(s);
1894
0
#endif
1895
1896
0
    sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1897
1898
    /* Check buffered app data if any first */
1899
0
    if (SSL_CONNECTION_IS_DTLS(sc)) {
1900
0
        TLS_RECORD *rdata;
1901
0
        pitem *item, *iter;
1902
1903
0
        iter = pqueue_iterator(sc->rlayer.d->buffered_app_data);
1904
0
        while ((item = pqueue_next(&iter)) != NULL) {
1905
0
            rdata = item->data;
1906
0
            if (rdata->length > 0)
1907
0
                return 1;
1908
0
        }
1909
0
    }
1910
1911
0
    if (RECORD_LAYER_processed_read_pending(&sc->rlayer))
1912
0
        return 1;
1913
1914
0
    return RECORD_LAYER_read_pending(&sc->rlayer);
1915
0
}
1916
1917
X509 *SSL_get1_peer_certificate(const SSL *s)
1918
0
{
1919
0
    X509 *r = SSL_get0_peer_certificate(s);
1920
1921
0
    if (r != NULL)
1922
0
        X509_up_ref(r);
1923
1924
0
    return r;
1925
0
}
1926
1927
X509 *SSL_get0_peer_certificate(const SSL *s)
1928
0
{
1929
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1930
1931
0
    if (sc == NULL)
1932
0
        return NULL;
1933
1934
0
    if (sc->session == NULL)
1935
0
        return NULL;
1936
0
    else
1937
0
        return sc->session->peer;
1938
0
}
1939
1940
STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
1941
0
{
1942
0
    STACK_OF(X509) *r;
1943
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1944
1945
0
    if (sc == NULL)
1946
0
        return NULL;
1947
1948
0
    if (sc->session == NULL)
1949
0
        r = NULL;
1950
0
    else
1951
0
        r = sc->session->peer_chain;
1952
1953
    /*
1954
     * If we are a client, cert_chain includes the peer's own certificate; if
1955
     * we are a server, it does not.
1956
     */
1957
1958
0
    return r;
1959
0
}
1960
1961
/*
1962
 * Now in theory, since the calling process own 't' it should be safe to
1963
 * modify.  We need to be able to read f without being hassled
1964
 */
1965
int SSL_copy_session_id(SSL *t, const SSL *f)
1966
0
{
1967
0
    int i;
1968
    /* TODO(QUIC FUTURE): Not allowed for QUIC currently. */
1969
0
    SSL_CONNECTION *tsc = SSL_CONNECTION_FROM_SSL_ONLY(t);
1970
0
    const SSL_CONNECTION *fsc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(f);
1971
1972
0
    if (tsc == NULL || fsc == NULL)
1973
0
        return 0;
1974
1975
    /* Do we need to do SSL locking? */
1976
0
    if (!SSL_set_session(t, SSL_get_session(f))) {
1977
0
        return 0;
1978
0
    }
1979
1980
    /*
1981
     * what if we are setup for one protocol version but want to talk another
1982
     */
1983
0
    if (t->method != f->method) {
1984
0
        t->method->ssl_deinit(t);
1985
0
        t->method = f->method;
1986
0
        if (t->method->ssl_init(t) == 0)
1987
0
            return 0;
1988
0
    }
1989
1990
0
    CRYPTO_UP_REF(&fsc->cert->references, &i);
1991
0
    ssl_cert_free(tsc->cert);
1992
0
    tsc->cert = fsc->cert;
1993
0
    if (!SSL_set_session_id_context(t, fsc->sid_ctx, (int)fsc->sid_ctx_length)) {
1994
0
        return 0;
1995
0
    }
1996
1997
0
    return 1;
1998
0
}
1999
2000
/* Fix this so it checks all the valid key/cert options */
2001
int SSL_CTX_check_private_key(const SSL_CTX *ctx)
2002
0
{
2003
0
    if ((ctx == NULL) || (ctx->cert->key->x509 == NULL)) {
2004
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CERTIFICATE_ASSIGNED);
2005
0
        return 0;
2006
0
    }
2007
0
    if (ctx->cert->key->privatekey == NULL) {
2008
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
2009
0
        return 0;
2010
0
    }
2011
0
    return X509_check_private_key(ctx->cert->key->x509, ctx->cert->key->privatekey);
2012
0
}
2013
2014
/* Fix this function so that it takes an optional type parameter */
2015
int SSL_check_private_key(const SSL *ssl)
2016
0
{
2017
0
    const SSL_CONNECTION *sc;
2018
2019
0
    if ((sc = SSL_CONNECTION_FROM_CONST_SSL(ssl)) == NULL) {
2020
0
        ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
2021
0
        return 0;
2022
0
    }
2023
0
    if (sc->cert->key->x509 == NULL) {
2024
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CERTIFICATE_ASSIGNED);
2025
0
        return 0;
2026
0
    }
2027
0
    if (sc->cert->key->privatekey == NULL) {
2028
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
2029
0
        return 0;
2030
0
    }
2031
0
    return X509_check_private_key(sc->cert->key->x509,
2032
0
        sc->cert->key->privatekey);
2033
0
}
2034
2035
int SSL_waiting_for_async(SSL *s)
2036
0
{
2037
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2038
2039
0
    if (sc == NULL)
2040
0
        return 0;
2041
2042
0
    if (sc->job)
2043
0
        return 1;
2044
2045
0
    return 0;
2046
0
}
2047
2048
int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds)
2049
0
{
2050
0
    ASYNC_WAIT_CTX *ctx;
2051
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2052
2053
0
    if (sc == NULL)
2054
0
        return 0;
2055
2056
0
    if ((ctx = sc->waitctx) == NULL)
2057
0
        return 0;
2058
0
    return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds);
2059
0
}
2060
2061
int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, size_t *numaddfds,
2062
    OSSL_ASYNC_FD *delfd, size_t *numdelfds)
2063
0
{
2064
0
    ASYNC_WAIT_CTX *ctx;
2065
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2066
2067
0
    if (sc == NULL)
2068
0
        return 0;
2069
2070
0
    if ((ctx = sc->waitctx) == NULL)
2071
0
        return 0;
2072
0
    return ASYNC_WAIT_CTX_get_changed_fds(ctx, addfd, numaddfds, delfd,
2073
0
        numdelfds);
2074
0
}
2075
2076
int SSL_CTX_set_async_callback(SSL_CTX *ctx, SSL_async_callback_fn callback)
2077
0
{
2078
0
    ctx->async_cb = callback;
2079
0
    return 1;
2080
0
}
2081
2082
int SSL_CTX_set_async_callback_arg(SSL_CTX *ctx, void *arg)
2083
0
{
2084
0
    ctx->async_cb_arg = arg;
2085
0
    return 1;
2086
0
}
2087
2088
int SSL_set_async_callback(SSL *s, SSL_async_callback_fn callback)
2089
0
{
2090
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2091
2092
0
    if (sc == NULL)
2093
0
        return 0;
2094
2095
0
    sc->async_cb = callback;
2096
0
    return 1;
2097
0
}
2098
2099
int SSL_set_async_callback_arg(SSL *s, void *arg)
2100
0
{
2101
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2102
2103
0
    if (sc == NULL)
2104
0
        return 0;
2105
2106
0
    sc->async_cb_arg = arg;
2107
0
    return 1;
2108
0
}
2109
2110
int SSL_get_async_status(SSL *s, int *status)
2111
0
{
2112
0
    ASYNC_WAIT_CTX *ctx;
2113
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2114
2115
0
    if (sc == NULL)
2116
0
        return 0;
2117
2118
0
    if ((ctx = sc->waitctx) == NULL)
2119
0
        return 0;
2120
0
    *status = ASYNC_WAIT_CTX_get_status(ctx);
2121
0
    return 1;
2122
0
}
2123
2124
int SSL_accept(SSL *s)
2125
4.15k
{
2126
4.15k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2127
2128
4.15k
#ifndef OPENSSL_NO_QUIC
2129
4.15k
    if (IS_QUIC(s))
2130
0
        return s->method->ssl_accept(s);
2131
4.15k
#endif
2132
2133
4.15k
    if (sc == NULL)
2134
0
        return 0;
2135
2136
4.15k
    if (sc->handshake_func == NULL) {
2137
        /* Not properly initialized yet */
2138
0
        SSL_set_accept_state(s);
2139
0
    }
2140
2141
4.15k
    return SSL_do_handshake(s);
2142
4.15k
}
2143
2144
int SSL_connect(SSL *s)
2145
0
{
2146
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2147
2148
0
#ifndef OPENSSL_NO_QUIC
2149
0
    if (IS_QUIC(s))
2150
0
        return s->method->ssl_connect(s);
2151
0
#endif
2152
2153
0
    if (sc == NULL)
2154
0
        return 0;
2155
2156
0
    if (sc->handshake_func == NULL) {
2157
        /* Not properly initialized yet */
2158
0
        SSL_set_connect_state(s);
2159
0
    }
2160
2161
0
    return SSL_do_handshake(s);
2162
0
}
2163
2164
long SSL_get_default_timeout(const SSL *s)
2165
0
{
2166
0
    return (long int)ossl_time2seconds(s->method->get_timeout());
2167
0
}
2168
2169
static int ssl_async_wait_ctx_cb(void *arg)
2170
0
{
2171
0
    SSL *s = (SSL *)arg;
2172
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2173
2174
0
    if (sc == NULL)
2175
0
        return 0;
2176
2177
0
    return sc->async_cb(s, sc->async_cb_arg);
2178
0
}
2179
2180
static int ssl_start_async_job(SSL *s, struct ssl_async_args *args,
2181
    int (*func)(void *))
2182
0
{
2183
0
    int ret;
2184
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2185
2186
0
    if (sc == NULL)
2187
0
        return 0;
2188
2189
0
    if (sc->waitctx == NULL) {
2190
0
        sc->waitctx = ASYNC_WAIT_CTX_new();
2191
0
        if (sc->waitctx == NULL)
2192
0
            return -1;
2193
0
        if (sc->async_cb != NULL
2194
0
            && !ASYNC_WAIT_CTX_set_callback(sc->waitctx, ssl_async_wait_ctx_cb, s))
2195
0
            return -1;
2196
0
    }
2197
2198
0
    sc->rwstate = SSL_NOTHING;
2199
0
    switch (ASYNC_start_job(&sc->job, sc->waitctx, &ret, func, args,
2200
0
        sizeof(struct ssl_async_args))) {
2201
0
    case ASYNC_ERR:
2202
0
        sc->rwstate = SSL_NOTHING;
2203
0
        ERR_raise(ERR_LIB_SSL, SSL_R_FAILED_TO_INIT_ASYNC);
2204
0
        return -1;
2205
0
    case ASYNC_PAUSE:
2206
0
        sc->rwstate = SSL_ASYNC_PAUSED;
2207
0
        return -1;
2208
0
    case ASYNC_NO_JOBS:
2209
0
        sc->rwstate = SSL_ASYNC_NO_JOBS;
2210
0
        return -1;
2211
0
    case ASYNC_FINISH:
2212
0
        sc->job = NULL;
2213
0
        return ret;
2214
0
    default:
2215
0
        sc->rwstate = SSL_NOTHING;
2216
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
2217
        /* Shouldn't happen */
2218
0
        return -1;
2219
0
    }
2220
0
}
2221
2222
static int ssl_io_intern(void *vargs)
2223
0
{
2224
0
    struct ssl_async_args *args;
2225
0
    SSL *s;
2226
0
    void *buf;
2227
0
    size_t num;
2228
0
    SSL_CONNECTION *sc;
2229
2230
0
    args = (struct ssl_async_args *)vargs;
2231
0
    s = args->s;
2232
0
    buf = args->buf;
2233
0
    num = args->num;
2234
0
    if ((sc = SSL_CONNECTION_FROM_SSL(s)) == NULL)
2235
0
        return -1;
2236
2237
0
    switch (args->type) {
2238
0
    case READFUNC:
2239
0
        return args->f.func_read(s, buf, num, &sc->asyncrw);
2240
0
    case WRITEFUNC:
2241
0
        return args->f.func_write(s, buf, num, &sc->asyncrw);
2242
0
    case OTHERFUNC:
2243
0
        return args->f.func_other(s);
2244
0
    }
2245
0
    return -1;
2246
0
}
2247
2248
int ssl_read_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
2249
20.0M
{
2250
20.0M
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2251
2252
20.0M
#ifndef OPENSSL_NO_QUIC
2253
20.0M
    if (IS_QUIC(s))
2254
9.99M
        return s->method->ssl_read(s, buf, num, readbytes);
2255
10.0M
#endif
2256
2257
10.0M
    if (sc == NULL)
2258
0
        return -1;
2259
2260
10.0M
    if (sc->handshake_func == NULL) {
2261
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2262
0
        return -1;
2263
0
    }
2264
2265
10.0M
    if (sc->shutdown & SSL_RECEIVED_SHUTDOWN) {
2266
0
        sc->rwstate = SSL_NOTHING;
2267
0
        return 0;
2268
0
    }
2269
2270
10.0M
    if (sc->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY
2271
10.0M
        || sc->early_data_state == SSL_EARLY_DATA_ACCEPT_RETRY) {
2272
8
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2273
8
        return 0;
2274
8
    }
2275
    /*
2276
     * If we are a client and haven't received the ServerHello etc then we
2277
     * better do that
2278
     */
2279
10.0M
    ossl_statem_check_finish_init(sc, 0);
2280
2281
10.0M
    if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
2282
0
        struct ssl_async_args args;
2283
0
        int ret;
2284
2285
0
        args.s = s;
2286
0
        args.buf = buf;
2287
0
        args.num = num;
2288
0
        args.type = READFUNC;
2289
0
        args.f.func_read = s->method->ssl_read;
2290
2291
0
        ret = ssl_start_async_job(s, &args, ssl_io_intern);
2292
0
        *readbytes = sc->asyncrw;
2293
0
        return ret;
2294
10.0M
    } else {
2295
10.0M
        return s->method->ssl_read(s, buf, num, readbytes);
2296
10.0M
    }
2297
10.0M
}
2298
2299
int SSL_read(SSL *s, void *buf, int num)
2300
45.0M
{
2301
45.0M
    int ret;
2302
45.0M
    size_t readbytes;
2303
2304
45.0M
    if (num < 0) {
2305
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
2306
0
        return -1;
2307
0
    }
2308
2309
45.0M
    ret = ssl_read_internal(s, buf, (size_t)num, &readbytes);
2310
2311
    /*
2312
     * The cast is safe here because ret should be <= INT_MAX because num is
2313
     * <= INT_MAX
2314
     */
2315
45.0M
    if (ret > 0)
2316
61.9k
        ret = (int)readbytes;
2317
2318
45.0M
    return ret;
2319
45.0M
}
2320
2321
int SSL_read_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
2322
0
{
2323
0
    int ret = ssl_read_internal(s, buf, num, readbytes);
2324
2325
0
    if (ret < 0)
2326
0
        ret = 0;
2327
0
    return ret;
2328
0
}
2329
2330
int SSL_read_early_data(SSL *s, void *buf, size_t num, size_t *readbytes)
2331
10.4k
{
2332
10.4k
    int ret;
2333
10.4k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2334
2335
    /* TODO(QUIC 0RTT): 0-RTT support */
2336
10.4k
    if (sc == NULL || !sc->server) {
2337
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2338
0
        return SSL_READ_EARLY_DATA_ERROR;
2339
0
    }
2340
2341
10.4k
    switch (sc->early_data_state) {
2342
10.4k
    case SSL_EARLY_DATA_NONE:
2343
10.4k
        if (!SSL_in_before(s)) {
2344
0
            ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2345
0
            return SSL_READ_EARLY_DATA_ERROR;
2346
0
        }
2347
        /* fall through */
2348
2349
10.4k
    case SSL_EARLY_DATA_ACCEPT_RETRY:
2350
10.4k
        sc->early_data_state = SSL_EARLY_DATA_ACCEPTING;
2351
10.4k
        ret = SSL_accept(s);
2352
10.4k
        if (ret <= 0) {
2353
            /* NBIO or error */
2354
8.67k
            sc->early_data_state = SSL_EARLY_DATA_ACCEPT_RETRY;
2355
8.67k
            return SSL_READ_EARLY_DATA_ERROR;
2356
8.67k
        }
2357
        /* fall through */
2358
2359
1.72k
    case SSL_EARLY_DATA_READ_RETRY:
2360
1.72k
        if (sc->ext.early_data == SSL_EARLY_DATA_ACCEPTED) {
2361
0
            sc->early_data_state = SSL_EARLY_DATA_READING;
2362
0
            ret = SSL_read_ex(s, buf, num, readbytes);
2363
            /*
2364
             * State machine will update early_data_state to
2365
             * SSL_EARLY_DATA_FINISHED_READING if we get an EndOfEarlyData
2366
             * message
2367
             */
2368
0
            if (ret > 0 || (ret <= 0 && sc->early_data_state != SSL_EARLY_DATA_FINISHED_READING)) {
2369
0
                sc->early_data_state = SSL_EARLY_DATA_READ_RETRY;
2370
0
                return ret > 0 ? SSL_READ_EARLY_DATA_SUCCESS
2371
0
                               : SSL_READ_EARLY_DATA_ERROR;
2372
0
            }
2373
1.72k
        } else {
2374
1.72k
            sc->early_data_state = SSL_EARLY_DATA_FINISHED_READING;
2375
1.72k
        }
2376
1.72k
        *readbytes = 0;
2377
1.72k
        return SSL_READ_EARLY_DATA_FINISH;
2378
2379
0
    default:
2380
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2381
0
        return SSL_READ_EARLY_DATA_ERROR;
2382
10.4k
    }
2383
10.4k
}
2384
2385
int SSL_get_early_data_status(const SSL *s)
2386
0
{
2387
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
2388
2389
    /* TODO(QUIC 0RTT): 0-RTT support */
2390
0
    if (sc == NULL)
2391
0
        return 0;
2392
2393
0
    return sc->ext.early_data;
2394
0
}
2395
2396
static int ssl_peek_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
2397
0
{
2398
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2399
2400
0
#ifndef OPENSSL_NO_QUIC
2401
0
    if (IS_QUIC(s))
2402
0
        return s->method->ssl_peek(s, buf, num, readbytes);
2403
0
#endif
2404
2405
0
    if (sc == NULL)
2406
0
        return 0;
2407
2408
0
    if (sc->handshake_func == NULL) {
2409
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2410
0
        return -1;
2411
0
    }
2412
2413
0
    if (sc->shutdown & SSL_RECEIVED_SHUTDOWN) {
2414
0
        return 0;
2415
0
    }
2416
0
    if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
2417
0
        struct ssl_async_args args;
2418
0
        int ret;
2419
2420
0
        args.s = s;
2421
0
        args.buf = buf;
2422
0
        args.num = num;
2423
0
        args.type = READFUNC;
2424
0
        args.f.func_read = s->method->ssl_peek;
2425
2426
0
        ret = ssl_start_async_job(s, &args, ssl_io_intern);
2427
0
        *readbytes = sc->asyncrw;
2428
0
        return ret;
2429
0
    } else {
2430
0
        return s->method->ssl_peek(s, buf, num, readbytes);
2431
0
    }
2432
0
}
2433
2434
int SSL_peek(SSL *s, void *buf, int num)
2435
0
{
2436
0
    int ret;
2437
0
    size_t readbytes;
2438
2439
0
    if (num < 0) {
2440
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
2441
0
        return -1;
2442
0
    }
2443
2444
0
    ret = ssl_peek_internal(s, buf, (size_t)num, &readbytes);
2445
2446
    /*
2447
     * The cast is safe here because ret should be <= INT_MAX because num is
2448
     * <= INT_MAX
2449
     */
2450
0
    if (ret > 0)
2451
0
        ret = (int)readbytes;
2452
2453
0
    return ret;
2454
0
}
2455
2456
int SSL_peek_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
2457
0
{
2458
0
    int ret = ssl_peek_internal(s, buf, num, readbytes);
2459
2460
0
    if (ret < 0)
2461
0
        ret = 0;
2462
0
    return ret;
2463
0
}
2464
2465
int ssl_write_internal(SSL *s, const void *buf, size_t num,
2466
    uint64_t flags, size_t *written)
2467
75.2k
{
2468
75.2k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2469
2470
75.2k
#ifndef OPENSSL_NO_QUIC
2471
75.2k
    if (IS_QUIC(s))
2472
75.2k
        return ossl_quic_write_flags(s, buf, num, flags, written);
2473
0
#endif
2474
2475
0
    if (sc == NULL)
2476
0
        return 0;
2477
2478
0
    if (sc->handshake_func == NULL) {
2479
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2480
0
        return -1;
2481
0
    }
2482
2483
0
    if (sc->shutdown & SSL_SENT_SHUTDOWN) {
2484
0
        sc->rwstate = SSL_NOTHING;
2485
0
        ERR_raise(ERR_LIB_SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
2486
0
        return -1;
2487
0
    }
2488
2489
0
    if (flags != 0) {
2490
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNSUPPORTED_WRITE_FLAG);
2491
0
        return -1;
2492
0
    }
2493
2494
0
    if (sc->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY
2495
0
        || sc->early_data_state == SSL_EARLY_DATA_ACCEPT_RETRY
2496
0
        || sc->early_data_state == SSL_EARLY_DATA_READ_RETRY) {
2497
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2498
0
        return 0;
2499
0
    }
2500
    /* If we are a client and haven't sent the Finished we better do that */
2501
0
    ossl_statem_check_finish_init(sc, 1);
2502
2503
0
    if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
2504
0
        int ret;
2505
0
        struct ssl_async_args args;
2506
2507
0
        args.s = s;
2508
0
        args.buf = (void *)buf;
2509
0
        args.num = num;
2510
0
        args.type = WRITEFUNC;
2511
0
        args.f.func_write = s->method->ssl_write;
2512
2513
0
        ret = ssl_start_async_job(s, &args, ssl_io_intern);
2514
0
        *written = sc->asyncrw;
2515
0
        return ret;
2516
0
    } else {
2517
0
        return s->method->ssl_write(s, buf, num, written);
2518
0
    }
2519
0
}
2520
2521
ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size, int flags)
2522
0
{
2523
0
    ossl_ssize_t ret;
2524
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2525
2526
0
    if (sc == NULL)
2527
0
        return 0;
2528
2529
0
    if (sc->handshake_func == NULL) {
2530
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2531
0
        return -1;
2532
0
    }
2533
2534
0
    if (sc->shutdown & SSL_SENT_SHUTDOWN) {
2535
0
        sc->rwstate = SSL_NOTHING;
2536
0
        ERR_raise(ERR_LIB_SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
2537
0
        return -1;
2538
0
    }
2539
2540
0
    if (!BIO_get_ktls_send(sc->wbio)) {
2541
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2542
0
        return -1;
2543
0
    }
2544
2545
    /* If we have an alert to send, lets send it */
2546
0
    if (sc->s3.alert_dispatch > 0) {
2547
0
        ret = (ossl_ssize_t)s->method->ssl_dispatch_alert(s);
2548
0
        if (ret <= 0) {
2549
            /* SSLfatal() already called if appropriate */
2550
0
            return ret;
2551
0
        }
2552
        /* if it went, fall through and send more stuff */
2553
0
    }
2554
2555
0
    sc->rwstate = SSL_WRITING;
2556
0
    if (BIO_flush(sc->wbio) <= 0) {
2557
0
        if (!BIO_should_retry(sc->wbio)) {
2558
0
            sc->rwstate = SSL_NOTHING;
2559
0
        } else {
2560
0
#ifdef EAGAIN
2561
0
            set_sys_error(EAGAIN);
2562
0
#endif
2563
0
        }
2564
0
        return -1;
2565
0
    }
2566
2567
0
#ifdef OPENSSL_NO_KTLS
2568
0
    ERR_raise_data(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR,
2569
0
        "can't call ktls_sendfile(), ktls disabled");
2570
0
    return -1;
2571
#else
2572
    ret = ktls_sendfile(SSL_get_wfd(s), fd, offset, size, flags);
2573
    if (ret < 0) {
2574
#if defined(EAGAIN) && defined(EINTR) && defined(EBUSY)
2575
        if ((get_last_sys_error() == EAGAIN) || (get_last_sys_error() == EINTR) || (get_last_sys_error() == EBUSY))
2576
            BIO_set_retry_write(sc->wbio);
2577
        else
2578
#endif
2579
            ERR_raise_data(ERR_LIB_SYS, get_last_sys_error(),
2580
                "ktls_sendfile failure");
2581
        return ret;
2582
    }
2583
    sc->rwstate = SSL_NOTHING;
2584
    return ret;
2585
#endif
2586
0
}
2587
2588
int SSL_write(SSL *s, const void *buf, int num)
2589
125k
{
2590
125k
    int ret;
2591
125k
    size_t written;
2592
2593
125k
    if (num < 0) {
2594
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
2595
0
        return -1;
2596
0
    }
2597
2598
125k
    ret = ssl_write_internal(s, buf, (size_t)num, 0, &written);
2599
2600
    /*
2601
     * The cast is safe here because ret should be <= INT_MAX because num is
2602
     * <= INT_MAX
2603
     */
2604
125k
    if (ret > 0)
2605
4.97k
        ret = (int)written;
2606
2607
125k
    return ret;
2608
125k
}
2609
2610
int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written)
2611
0
{
2612
0
    return SSL_write_ex2(s, buf, num, 0, written);
2613
0
}
2614
2615
int SSL_write_ex2(SSL *s, const void *buf, size_t num, uint64_t flags,
2616
    size_t *written)
2617
0
{
2618
0
    int ret = ssl_write_internal(s, buf, num, flags, written);
2619
2620
0
    if (ret < 0)
2621
0
        ret = 0;
2622
0
    return ret;
2623
0
}
2624
2625
int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written)
2626
0
{
2627
0
    int ret, early_data_state;
2628
0
    size_t writtmp;
2629
0
    uint32_t partialwrite;
2630
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2631
2632
    /* TODO(QUIC 0RTT): This will need special handling for QUIC */
2633
0
    if (sc == NULL)
2634
0
        return 0;
2635
2636
0
    switch (sc->early_data_state) {
2637
0
    case SSL_EARLY_DATA_NONE:
2638
0
        if (sc->server
2639
0
            || !SSL_in_before(s)
2640
0
            || ((sc->session == NULL || sc->session->ext.max_early_data == 0)
2641
0
                && (sc->psk_use_session_cb == NULL))) {
2642
0
            ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2643
0
            return 0;
2644
0
        }
2645
        /* fall through */
2646
2647
0
    case SSL_EARLY_DATA_CONNECT_RETRY:
2648
0
        sc->early_data_state = SSL_EARLY_DATA_CONNECTING;
2649
0
        ret = SSL_connect(s);
2650
0
        if (ret <= 0) {
2651
            /* NBIO or error */
2652
0
            sc->early_data_state = SSL_EARLY_DATA_CONNECT_RETRY;
2653
0
            return 0;
2654
0
        }
2655
        /* fall through */
2656
2657
0
    case SSL_EARLY_DATA_WRITE_RETRY:
2658
0
        sc->early_data_state = SSL_EARLY_DATA_WRITING;
2659
        /*
2660
         * We disable partial write for early data because we don't keep track
2661
         * of how many bytes we've written between the SSL_write_ex() call and
2662
         * the flush if the flush needs to be retried)
2663
         */
2664
0
        partialwrite = sc->mode & SSL_MODE_ENABLE_PARTIAL_WRITE;
2665
0
        sc->mode &= ~SSL_MODE_ENABLE_PARTIAL_WRITE;
2666
0
        ret = SSL_write_ex(s, buf, num, &writtmp);
2667
0
        sc->mode |= partialwrite;
2668
0
        if (!ret) {
2669
0
            sc->early_data_state = SSL_EARLY_DATA_WRITE_RETRY;
2670
0
            return ret;
2671
0
        }
2672
0
        sc->early_data_state = SSL_EARLY_DATA_WRITE_FLUSH;
2673
        /* fall through */
2674
2675
0
    case SSL_EARLY_DATA_WRITE_FLUSH:
2676
        /* The buffering BIO is still in place so we need to flush it */
2677
0
        if (statem_flush(sc) != 1)
2678
0
            return 0;
2679
0
        *written = num;
2680
0
        sc->early_data_state = SSL_EARLY_DATA_WRITE_RETRY;
2681
0
        return 1;
2682
2683
0
    case SSL_EARLY_DATA_FINISHED_READING:
2684
0
    case SSL_EARLY_DATA_READ_RETRY:
2685
0
        early_data_state = sc->early_data_state;
2686
        /* We are a server writing to an unauthenticated client */
2687
0
        sc->early_data_state = SSL_EARLY_DATA_UNAUTH_WRITING;
2688
0
        ret = SSL_write_ex(s, buf, num, written);
2689
        /* The buffering BIO is still in place */
2690
0
        if (ret)
2691
0
            (void)BIO_flush(sc->wbio);
2692
0
        sc->early_data_state = early_data_state;
2693
0
        return ret;
2694
2695
0
    default:
2696
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2697
0
        return 0;
2698
0
    }
2699
0
}
2700
2701
int SSL_shutdown(SSL *s)
2702
0
{
2703
    /*
2704
     * Note that this function behaves differently from what one might
2705
     * expect.  Return values are 0 for no success (yet), 1 for success; but
2706
     * calling it once is usually not enough, even if blocking I/O is used
2707
     * (see ssl3_shutdown).
2708
     */
2709
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2710
2711
0
#ifndef OPENSSL_NO_QUIC
2712
0
    if (IS_QUIC(s))
2713
0
        return ossl_quic_conn_shutdown(s, 0, NULL, 0);
2714
0
#endif
2715
2716
0
    if (sc == NULL)
2717
0
        return -1;
2718
2719
0
    if (sc->handshake_func == NULL) {
2720
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2721
0
        return -1;
2722
0
    }
2723
2724
0
    if (!SSL_in_init(s)) {
2725
0
        if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
2726
0
            struct ssl_async_args args;
2727
2728
0
            memset(&args, 0, sizeof(args));
2729
0
            args.s = s;
2730
0
            args.type = OTHERFUNC;
2731
0
            args.f.func_other = s->method->ssl_shutdown;
2732
2733
0
            return ssl_start_async_job(s, &args, ssl_io_intern);
2734
0
        } else {
2735
0
            return s->method->ssl_shutdown(s);
2736
0
        }
2737
0
    } else {
2738
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SHUTDOWN_WHILE_IN_INIT);
2739
0
        return -1;
2740
0
    }
2741
0
}
2742
2743
int SSL_key_update(SSL *s, int updatetype)
2744
0
{
2745
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2746
2747
0
#ifndef OPENSSL_NO_QUIC
2748
0
    if (IS_QUIC(s))
2749
0
        return ossl_quic_key_update(s, updatetype);
2750
0
#endif
2751
2752
0
    if (sc == NULL)
2753
0
        return 0;
2754
2755
0
    if (!SSL_CONNECTION_IS_TLS13(sc)) {
2756
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
2757
0
        return 0;
2758
0
    }
2759
2760
0
    if (updatetype != SSL_KEY_UPDATE_NOT_REQUESTED
2761
0
        && updatetype != SSL_KEY_UPDATE_REQUESTED) {
2762
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_KEY_UPDATE_TYPE);
2763
0
        return 0;
2764
0
    }
2765
2766
0
    if (!SSL_is_init_finished(s)) {
2767
0
        ERR_raise(ERR_LIB_SSL, SSL_R_STILL_IN_INIT);
2768
0
        return 0;
2769
0
    }
2770
2771
0
    if (RECORD_LAYER_write_pending(&sc->rlayer)) {
2772
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_WRITE_RETRY);
2773
0
        return 0;
2774
0
    }
2775
2776
0
    ossl_statem_set_in_init(sc, 1);
2777
0
    sc->key_update = updatetype;
2778
0
    return 1;
2779
0
}
2780
2781
int SSL_get_key_update_type(const SSL *s)
2782
0
{
2783
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
2784
2785
0
#ifndef OPENSSL_NO_QUIC
2786
0
    if (IS_QUIC(s))
2787
0
        return ossl_quic_get_key_update_type(s);
2788
0
#endif
2789
2790
0
    if (sc == NULL)
2791
0
        return 0;
2792
2793
0
    return sc->key_update;
2794
0
}
2795
2796
/*
2797
 * Can we accept a renegotiation request?  If yes, set the flag and
2798
 * return 1 if yes. If not, raise error and return 0.
2799
 */
2800
static int can_renegotiate(const SSL_CONNECTION *sc)
2801
1.23k
{
2802
1.23k
    if (SSL_CONNECTION_IS_TLS13(sc)) {
2803
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
2804
0
        return 0;
2805
0
    }
2806
2807
1.23k
    if ((sc->options & SSL_OP_NO_RENEGOTIATION) != 0) {
2808
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_RENEGOTIATION);
2809
0
        return 0;
2810
0
    }
2811
2812
1.23k
    return 1;
2813
1.23k
}
2814
2815
int SSL_renegotiate(SSL *s)
2816
0
{
2817
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2818
2819
0
    if (sc == NULL)
2820
0
        return 0;
2821
2822
0
    if (!can_renegotiate(sc))
2823
0
        return 0;
2824
2825
0
    sc->renegotiate = 1;
2826
0
    sc->new_session = 1;
2827
0
    return s->method->ssl_renegotiate(s);
2828
0
}
2829
2830
int SSL_renegotiate_abbreviated(SSL *s)
2831
1.23k
{
2832
1.23k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2833
2834
1.23k
    if (sc == NULL)
2835
0
        return 0;
2836
2837
1.23k
    if (!can_renegotiate(sc))
2838
0
        return 0;
2839
2840
1.23k
    sc->renegotiate = 1;
2841
1.23k
    sc->new_session = 0;
2842
1.23k
    return s->method->ssl_renegotiate(s);
2843
1.23k
}
2844
2845
int SSL_renegotiate_pending(const SSL *s)
2846
0
{
2847
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2848
2849
0
    if (sc == NULL)
2850
0
        return 0;
2851
2852
    /*
2853
     * becomes true when negotiation is requested; false again once a
2854
     * handshake has finished
2855
     */
2856
0
    return (sc->renegotiate != 0);
2857
0
}
2858
2859
int SSL_new_session_ticket(SSL *s)
2860
0
{
2861
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2862
2863
0
    if (sc == NULL)
2864
0
        return 0;
2865
2866
    /* If we are in init because we're sending tickets, okay to send more. */
2867
0
    if ((SSL_in_init(s) && sc->ext.extra_tickets_expected == 0)
2868
0
        || SSL_IS_FIRST_HANDSHAKE(sc) || !sc->server
2869
0
        || !SSL_CONNECTION_IS_TLS13(sc))
2870
0
        return 0;
2871
0
    sc->ext.extra_tickets_expected++;
2872
0
    if (!RECORD_LAYER_write_pending(&sc->rlayer) && !SSL_in_init(s))
2873
0
        ossl_statem_set_in_init(sc, 1);
2874
0
    return 1;
2875
0
}
2876
2877
long SSL_ctrl(SSL *s, int cmd, long larg, void *parg)
2878
267k
{
2879
267k
    return ossl_ctrl_internal(s, cmd, larg, parg, /*no_quic=*/0);
2880
267k
}
2881
2882
long ossl_ctrl_internal(SSL *s, int cmd, long larg, void *parg, int no_quic)
2883
126k
{
2884
126k
    long l;
2885
126k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2886
2887
    /*
2888
     * Routing of ctrl calls for QUIC is a little counterintuitive:
2889
     *
2890
     *   - Firstly (no_quic=0), we pass the ctrl directly to our QUIC
2891
     *     implementation in case it wants to handle the ctrl specially.
2892
     *
2893
     *   - If our QUIC implementation does not care about the ctrl, it
2894
     *     will reenter this function with no_quic=1 and we will try to handle
2895
     *     it directly using the QCSO SSL object stub (not the handshake layer
2896
     *     SSL object). This is important for e.g. the version configuration
2897
     *     ctrls below, which must use s->defltmeth (and not sc->defltmeth).
2898
     *
2899
     *   - If we don't handle a ctrl here specially, then processing is
2900
     *     redirected to the handshake layer SSL object.
2901
     */
2902
126k
    if (!no_quic && IS_QUIC(s))
2903
20.9k
        return s->method->ssl_ctrl(s, cmd, larg, parg);
2904
2905
105k
    if (sc == NULL)
2906
0
        return 0;
2907
2908
105k
    switch (cmd) {
2909
0
    case SSL_CTRL_GET_READ_AHEAD:
2910
0
        return RECORD_LAYER_get_read_ahead(&sc->rlayer);
2911
0
    case SSL_CTRL_SET_READ_AHEAD:
2912
0
        l = RECORD_LAYER_get_read_ahead(&sc->rlayer);
2913
0
        RECORD_LAYER_set_read_ahead(&sc->rlayer, larg);
2914
0
        return l;
2915
2916
0
    case SSL_CTRL_MODE: {
2917
0
        OSSL_PARAM options[2], *opts = options;
2918
2919
0
        sc->mode |= larg;
2920
2921
0
        *opts++ = OSSL_PARAM_construct_uint32(OSSL_LIBSSL_RECORD_LAYER_PARAM_MODE,
2922
0
            &sc->mode);
2923
0
        *opts = OSSL_PARAM_construct_end();
2924
2925
        /* Ignore return value */
2926
0
        sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
2927
2928
0
        return sc->mode;
2929
0
    }
2930
0
    case SSL_CTRL_CLEAR_MODE:
2931
0
        return (sc->mode &= ~larg);
2932
0
    case SSL_CTRL_GET_MAX_CERT_LIST:
2933
0
        return (long)sc->max_cert_list;
2934
0
    case SSL_CTRL_SET_MAX_CERT_LIST:
2935
0
        if (larg < 0)
2936
0
            return 0;
2937
0
        l = (long)sc->max_cert_list;
2938
0
        sc->max_cert_list = (size_t)larg;
2939
0
        return l;
2940
0
    case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
2941
0
        if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
2942
0
            return 0;
2943
#ifndef OPENSSL_NO_KTLS
2944
        if (sc->wbio != NULL && BIO_get_ktls_send(sc->wbio))
2945
            return 0;
2946
#endif /* OPENSSL_NO_KTLS */
2947
0
        sc->max_send_fragment = larg;
2948
0
        if (sc->max_send_fragment < sc->split_send_fragment)
2949
0
            sc->split_send_fragment = sc->max_send_fragment;
2950
0
        sc->rlayer.wrlmethod->set_max_frag_len(sc->rlayer.wrl, larg);
2951
0
        return 1;
2952
0
    case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
2953
0
        if ((size_t)larg > sc->max_send_fragment || larg == 0)
2954
0
            return 0;
2955
0
        sc->split_send_fragment = larg;
2956
0
        return 1;
2957
0
    case SSL_CTRL_SET_MAX_PIPELINES:
2958
0
        if (larg < 1 || larg > SSL_MAX_PIPELINES)
2959
0
            return 0;
2960
0
        sc->max_pipelines = larg;
2961
0
        if (sc->rlayer.rrlmethod->set_max_pipelines != NULL)
2962
0
            sc->rlayer.rrlmethod->set_max_pipelines(sc->rlayer.rrl, (size_t)larg);
2963
0
        return 1;
2964
0
    case SSL_CTRL_GET_RI_SUPPORT:
2965
0
        return sc->s3.send_connection_binding;
2966
0
    case SSL_CTRL_SET_RETRY_VERIFY:
2967
0
        sc->rwstate = SSL_RETRY_VERIFY;
2968
0
        return 1;
2969
0
    case SSL_CTRL_CERT_FLAGS:
2970
0
        return (sc->cert->cert_flags |= larg);
2971
0
    case SSL_CTRL_CLEAR_CERT_FLAGS:
2972
0
        return (sc->cert->cert_flags &= ~larg);
2973
2974
0
    case SSL_CTRL_GET_RAW_CIPHERLIST:
2975
0
        if (parg) {
2976
0
            if (sc->s3.tmp.ciphers_raw == NULL)
2977
0
                return 0;
2978
0
            *(unsigned char **)parg = sc->s3.tmp.ciphers_raw;
2979
0
            return (int)sc->s3.tmp.ciphers_rawlen;
2980
0
        } else {
2981
0
            return TLS_CIPHER_LEN;
2982
0
        }
2983
0
    case SSL_CTRL_GET_EXTMS_SUPPORT:
2984
0
        if (!sc->session || SSL_in_init(s) || ossl_statem_get_in_handshake(sc))
2985
0
            return -1;
2986
0
        if (sc->session->flags & SSL_SESS_FLAG_EXTMS)
2987
0
            return 1;
2988
0
        else
2989
0
            return 0;
2990
42.4k
    case SSL_CTRL_SET_MIN_PROTO_VERSION:
2991
42.4k
        return ssl_check_allowed_versions(larg, sc->max_proto_version)
2992
42.4k
            && ssl_set_version_bound(s->defltmeth->version, (int)larg,
2993
42.4k
                &sc->min_proto_version);
2994
0
    case SSL_CTRL_GET_MIN_PROTO_VERSION:
2995
0
        return sc->min_proto_version;
2996
0
    case SSL_CTRL_SET_MAX_PROTO_VERSION:
2997
0
        return ssl_check_allowed_versions(sc->min_proto_version, larg)
2998
0
            && ssl_set_version_bound(s->defltmeth->version, (int)larg,
2999
0
                &sc->max_proto_version);
3000
0
    case SSL_CTRL_GET_MAX_PROTO_VERSION:
3001
0
        return sc->max_proto_version;
3002
63.3k
    default:
3003
63.3k
        if (IS_QUIC(s))
3004
20.9k
            return SSL_ctrl((SSL *)sc, cmd, larg, parg);
3005
42.4k
        else
3006
42.4k
            return s->method->ssl_ctrl(s, cmd, larg, parg);
3007
105k
    }
3008
105k
}
3009
3010
long SSL_callback_ctrl(SSL *s, int cmd, void (*fp)(void))
3011
0
{
3012
0
    return s->method->ssl_callback_ctrl(s, cmd, fp);
3013
0
}
3014
3015
LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
3016
0
{
3017
0
    return ctx->sessions;
3018
0
}
3019
3020
static int ssl_tsan_load(SSL_CTX *ctx, TSAN_QUALIFIER int *stat)
3021
1.46k
{
3022
1.46k
    int res = 0;
3023
3024
1.46k
    if (ssl_tsan_lock(ctx)) {
3025
1.46k
        res = tsan_load(stat);
3026
1.46k
        ssl_tsan_unlock(ctx);
3027
1.46k
    }
3028
1.46k
    return res;
3029
1.46k
}
3030
3031
long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
3032
25.3k
{
3033
25.3k
    long l;
3034
    /* For some cases with ctx == NULL perform syntax checks */
3035
25.3k
    if (ctx == NULL) {
3036
0
        switch (cmd) {
3037
0
        case SSL_CTRL_SET_GROUPS_LIST:
3038
0
            return tls1_set_groups_list(ctx, NULL, NULL, parg);
3039
0
        case SSL_CTRL_SET_SIGALGS_LIST:
3040
0
        case SSL_CTRL_SET_CLIENT_SIGALGS_LIST:
3041
0
            return tls1_set_sigalgs_list(ctx, NULL, parg, 0);
3042
0
        default:
3043
0
            return 0;
3044
0
        }
3045
0
    }
3046
3047
25.3k
    switch (cmd) {
3048
0
    case SSL_CTRL_GET_READ_AHEAD:
3049
0
        return ctx->read_ahead;
3050
0
    case SSL_CTRL_SET_READ_AHEAD:
3051
0
        l = ctx->read_ahead;
3052
0
        ctx->read_ahead = larg;
3053
0
        return l;
3054
3055
0
    case SSL_CTRL_SET_MSG_CALLBACK_ARG:
3056
0
        ctx->msg_callback_arg = parg;
3057
0
        return 1;
3058
3059
0
    case SSL_CTRL_GET_MAX_CERT_LIST:
3060
0
        return (long)ctx->max_cert_list;
3061
0
    case SSL_CTRL_SET_MAX_CERT_LIST:
3062
0
        if (larg < 0)
3063
0
            return 0;
3064
0
        l = (long)ctx->max_cert_list;
3065
0
        ctx->max_cert_list = (size_t)larg;
3066
0
        return l;
3067
3068
0
    case SSL_CTRL_SET_SESS_CACHE_SIZE:
3069
0
        if (larg < 0)
3070
0
            return 0;
3071
0
        l = (long)ctx->session_cache_size;
3072
0
        ctx->session_cache_size = (size_t)larg;
3073
0
        return l;
3074
1.08k
    case SSL_CTRL_GET_SESS_CACHE_SIZE:
3075
1.08k
        return (long)ctx->session_cache_size;
3076
0
    case SSL_CTRL_SET_SESS_CACHE_MODE:
3077
0
        l = ctx->session_cache_mode;
3078
0
        ctx->session_cache_mode = larg;
3079
0
        return l;
3080
0
    case SSL_CTRL_GET_SESS_CACHE_MODE:
3081
0
        return ctx->session_cache_mode;
3082
3083
540
    case SSL_CTRL_SESS_NUMBER:
3084
540
        return lh_SSL_SESSION_num_items(ctx->sessions);
3085
0
    case SSL_CTRL_SESS_CONNECT:
3086
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_connect);
3087
0
    case SSL_CTRL_SESS_CONNECT_GOOD:
3088
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_connect_good);
3089
0
    case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
3090
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_connect_renegotiate);
3091
0
    case SSL_CTRL_SESS_ACCEPT:
3092
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_accept);
3093
0
    case SSL_CTRL_SESS_ACCEPT_GOOD:
3094
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_accept_good);
3095
0
    case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
3096
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_accept_renegotiate);
3097
0
    case SSL_CTRL_SESS_HIT:
3098
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_hit);
3099
0
    case SSL_CTRL_SESS_CB_HIT:
3100
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_cb_hit);
3101
0
    case SSL_CTRL_SESS_MISSES:
3102
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_miss);
3103
0
    case SSL_CTRL_SESS_TIMEOUTS:
3104
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_timeout);
3105
0
    case SSL_CTRL_SESS_CACHE_FULL:
3106
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_cache_full);
3107
0
    case SSL_CTRL_MODE:
3108
0
        return (ctx->mode |= larg);
3109
0
    case SSL_CTRL_CLEAR_MODE:
3110
0
        return (ctx->mode &= ~larg);
3111
0
    case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
3112
0
        if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
3113
0
            return 0;
3114
0
        ctx->max_send_fragment = larg;
3115
0
        if (ctx->max_send_fragment < ctx->split_send_fragment)
3116
0
            ctx->split_send_fragment = ctx->max_send_fragment;
3117
0
        return 1;
3118
0
    case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
3119
0
        if ((size_t)larg > ctx->max_send_fragment || larg == 0)
3120
0
            return 0;
3121
0
        ctx->split_send_fragment = larg;
3122
0
        return 1;
3123
0
    case SSL_CTRL_SET_MAX_PIPELINES:
3124
0
        if (larg < 1 || larg > SSL_MAX_PIPELINES)
3125
0
            return 0;
3126
0
        ctx->max_pipelines = larg;
3127
0
        return 1;
3128
0
    case SSL_CTRL_CERT_FLAGS:
3129
0
        return (ctx->cert->cert_flags |= larg);
3130
0
    case SSL_CTRL_CLEAR_CERT_FLAGS:
3131
0
        return (ctx->cert->cert_flags &= ~larg);
3132
23.7k
    case SSL_CTRL_SET_MIN_PROTO_VERSION:
3133
23.7k
        return ssl_check_allowed_versions(larg, ctx->max_proto_version)
3134
23.7k
            && ssl_set_version_bound(ctx->method->version, (int)larg,
3135
23.7k
                &ctx->min_proto_version);
3136
0
    case SSL_CTRL_GET_MIN_PROTO_VERSION:
3137
0
        return ctx->min_proto_version;
3138
0
    case SSL_CTRL_SET_MAX_PROTO_VERSION:
3139
0
        return ssl_check_allowed_versions(ctx->min_proto_version, larg)
3140
0
            && ssl_set_version_bound(ctx->method->version, (int)larg,
3141
0
                &ctx->max_proto_version);
3142
0
    case SSL_CTRL_GET_MAX_PROTO_VERSION:
3143
0
        return ctx->max_proto_version;
3144
0
    default:
3145
0
        return ctx->method->ssl_ctx_ctrl(ctx, cmd, larg, parg);
3146
25.3k
    }
3147
25.3k
}
3148
3149
long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp)(void))
3150
0
{
3151
0
    switch (cmd) {
3152
0
    case SSL_CTRL_SET_MSG_CALLBACK:
3153
0
        ctx->msg_callback = (void (*)(int write_p, int version, int content_type,
3154
0
            const void *buf, size_t len, SSL *ssl,
3155
0
            void *arg))(fp);
3156
0
        return 1;
3157
3158
0
    default:
3159
0
        return ctx->method->ssl_ctx_callback_ctrl(ctx, cmd, fp);
3160
0
    }
3161
0
}
3162
3163
int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
3164
7.81M
{
3165
7.81M
    if (a->id > b->id)
3166
3.10M
        return 1;
3167
4.71M
    if (a->id < b->id)
3168
4.36M
        return -1;
3169
351k
    return 0;
3170
4.71M
}
3171
3172
int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
3173
    const SSL_CIPHER *const *bp)
3174
145M
{
3175
145M
    if ((*ap)->id > (*bp)->id)
3176
80.9M
        return 1;
3177
64.4M
    if ((*ap)->id < (*bp)->id)
3178
64.3M
        return -1;
3179
73.5k
    return 0;
3180
64.4M
}
3181
3182
/*
3183
 * return a STACK of the ciphers available for the SSL and in order of
3184
 * preference
3185
 */
3186
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
3187
170k
{
3188
170k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3189
3190
170k
    if (sc != NULL) {
3191
170k
        if (sc->cipher_list != NULL) {
3192
74.8k
            return sc->cipher_list;
3193
95.1k
        } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) {
3194
95.1k
            return s->ctx->cipher_list;
3195
95.1k
        }
3196
170k
    }
3197
0
    return NULL;
3198
170k
}
3199
3200
STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s)
3201
0
{
3202
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3203
3204
0
    if (sc == NULL || !sc->server)
3205
0
        return NULL;
3206
0
    return sc->peer_ciphers;
3207
0
}
3208
3209
STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s)
3210
91.8k
{
3211
91.8k
    STACK_OF(SSL_CIPHER) *sk = NULL, *ciphers;
3212
91.8k
    int i;
3213
91.8k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3214
3215
91.8k
    if (sc == NULL)
3216
0
        return NULL;
3217
3218
91.8k
    ciphers = SSL_get_ciphers(s);
3219
91.8k
    if (!ciphers)
3220
0
        return NULL;
3221
91.8k
    if (!ssl_set_client_disabled(sc))
3222
0
        return NULL;
3223
8.79M
    for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
3224
8.70M
        const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
3225
8.70M
        if (!ssl_cipher_disabled(sc, c, SSL_SECOP_CIPHER_SUPPORTED, 0)) {
3226
4.94M
            if (!sk)
3227
91.8k
                sk = sk_SSL_CIPHER_new_null();
3228
4.94M
            if (!sk)
3229
0
                return NULL;
3230
4.94M
            if (!sk_SSL_CIPHER_push(sk, c)) {
3231
0
                sk_SSL_CIPHER_free(sk);
3232
0
                return NULL;
3233
0
            }
3234
4.94M
        }
3235
8.70M
    }
3236
91.8k
    return sk;
3237
91.8k
}
3238
3239
/** return a STACK of the ciphers available for the SSL and in order of
3240
 * algorithm id */
3241
STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL_CONNECTION *s)
3242
73.6k
{
3243
73.6k
    if (s != NULL) {
3244
73.6k
        if (s->cipher_list_by_id != NULL)
3245
48.5k
            return s->cipher_list_by_id;
3246
25.0k
        else if (s->ssl.ctx != NULL
3247
25.0k
            && s->ssl.ctx->cipher_list_by_id != NULL)
3248
25.0k
            return s->ssl.ctx->cipher_list_by_id;
3249
73.6k
    }
3250
0
    return NULL;
3251
73.6k
}
3252
3253
/** The old interface to get the same thing as SSL_get_ciphers() */
3254
const char *SSL_get_cipher_list(const SSL *s, int n)
3255
0
{
3256
0
    const SSL_CIPHER *c;
3257
0
    STACK_OF(SSL_CIPHER) *sk;
3258
3259
0
    if (s == NULL)
3260
0
        return NULL;
3261
0
    sk = SSL_get_ciphers(s);
3262
0
    if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
3263
0
        return NULL;
3264
0
    c = sk_SSL_CIPHER_value(sk, n);
3265
0
    if (c == NULL)
3266
0
        return NULL;
3267
0
    return c->name;
3268
0
}
3269
3270
/** return a STACK of the ciphers available for the SSL_CTX and in order of
3271
 * preference */
3272
STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx)
3273
0
{
3274
0
    if (ctx != NULL)
3275
0
        return ctx->cipher_list;
3276
0
    return NULL;
3277
0
}
3278
3279
/*
3280
 * Distinguish between ciphers controlled by set_ciphersuite() and
3281
 * set_cipher_list() when counting.
3282
 */
3283
static int cipher_list_tls12_num(STACK_OF(SSL_CIPHER) *sk)
3284
112k
{
3285
112k
    int i, num = 0;
3286
112k
    const SSL_CIPHER *c;
3287
3288
112k
    if (sk == NULL)
3289
0
        return 0;
3290
19.5M
    for (i = 0; i < sk_SSL_CIPHER_num(sk); ++i) {
3291
19.4M
        c = sk_SSL_CIPHER_value(sk, i);
3292
19.4M
        if (c->min_tls >= TLS1_3_VERSION)
3293
338k
            continue;
3294
19.0M
        num++;
3295
19.0M
    }
3296
112k
    return num;
3297
112k
}
3298
3299
/** specify the ciphers to be used by default by the SSL_CTX */
3300
int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
3301
46.6k
{
3302
46.6k
    STACK_OF(SSL_CIPHER) *sk;
3303
3304
46.6k
    sk = ssl_create_cipher_list(ctx, ctx->tls13_ciphersuites,
3305
46.6k
        &ctx->cipher_list, &ctx->cipher_list_by_id, str,
3306
46.6k
        ctx->cert);
3307
    /*
3308
     * ssl_create_cipher_list may return an empty stack if it was unable to
3309
     * find a cipher matching the given rule string (for example if the rule
3310
     * string specifies a cipher which has been disabled). This is not an
3311
     * error as far as ssl_create_cipher_list is concerned, and hence
3312
     * ctx->cipher_list and ctx->cipher_list_by_id has been updated.
3313
     */
3314
46.6k
    if (sk == NULL)
3315
0
        return 0;
3316
46.6k
    if (ctx->method->num_ciphers() > 0 && cipher_list_tls12_num(sk) == 0) {
3317
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH);
3318
0
        return 0;
3319
0
    }
3320
46.6k
    return 1;
3321
46.6k
}
3322
3323
/** specify the ciphers to be used by the SSL */
3324
int SSL_set_cipher_list(SSL *s, const char *str)
3325
21.5k
{
3326
21.5k
    STACK_OF(SSL_CIPHER) *sk;
3327
21.5k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3328
21.5k
    SSL_CTX *ctx;
3329
3330
21.5k
    if (sc == NULL)
3331
0
        return 0;
3332
3333
21.5k
    ctx = s->ctx;
3334
21.5k
    sk = ssl_create_cipher_list(ctx, sc->tls13_ciphersuites,
3335
21.5k
        &sc->cipher_list, &sc->cipher_list_by_id, str,
3336
21.5k
        sc->cert);
3337
    /* see comment in SSL_CTX_set_cipher_list */
3338
21.5k
    if (sk == NULL)
3339
0
        return 0;
3340
21.5k
    if (ctx->method->num_ciphers() > 0 && cipher_list_tls12_num(sk) == 0) {
3341
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH);
3342
0
        return 0;
3343
0
    }
3344
21.5k
    return 1;
3345
21.5k
}
3346
3347
char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size)
3348
0
{
3349
0
    char *p;
3350
0
    STACK_OF(SSL_CIPHER) *clntsk, *srvrsk;
3351
0
    const SSL_CIPHER *c;
3352
0
    int i;
3353
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3354
3355
0
    if (sc == NULL)
3356
0
        return NULL;
3357
3358
0
    if (!sc->server
3359
0
        || sc->peer_ciphers == NULL
3360
0
        || size < 2)
3361
0
        return NULL;
3362
3363
0
    p = buf;
3364
0
    clntsk = sc->peer_ciphers;
3365
0
    srvrsk = SSL_get_ciphers(s);
3366
0
    if (clntsk == NULL || srvrsk == NULL)
3367
0
        return NULL;
3368
3369
0
    if (sk_SSL_CIPHER_num(clntsk) == 0 || sk_SSL_CIPHER_num(srvrsk) == 0)
3370
0
        return NULL;
3371
3372
0
    for (i = 0; i < sk_SSL_CIPHER_num(clntsk); i++) {
3373
0
        int n;
3374
3375
0
        c = sk_SSL_CIPHER_value(clntsk, i);
3376
0
        if (sk_SSL_CIPHER_find(srvrsk, c) < 0)
3377
0
            continue;
3378
3379
0
        n = (int)OPENSSL_strnlen(c->name, size);
3380
0
        if (n >= size)
3381
0
            break;
3382
3383
0
        memcpy(p, c->name, n);
3384
0
        p += n;
3385
0
        *(p++) = ':';
3386
0
        size -= n + 1;
3387
0
    }
3388
3389
    /* No overlap */
3390
0
    if (p == buf)
3391
0
        return NULL;
3392
3393
0
    p[-1] = '\0';
3394
0
    return buf;
3395
0
}
3396
3397
/**
3398
 * Return the requested servername (SNI) value. Note that the behaviour varies
3399
 * depending on:
3400
 * - whether this is called by the client or the server,
3401
 * - if we are before or during/after the handshake,
3402
 * - if a resumption or normal handshake is being attempted/has occurred
3403
 * - whether we have negotiated TLSv1.2 (or below) or TLSv1.3
3404
 *
3405
 * Note that only the host_name type is defined (RFC 3546).
3406
 */
3407
const char *SSL_get_servername(const SSL *s, const int type)
3408
0
{
3409
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3410
0
    int server;
3411
3412
0
    if (sc == NULL)
3413
0
        return NULL;
3414
3415
    /*
3416
     * If we don't know if we are the client or the server yet then we assume
3417
     * client.
3418
     */
3419
0
    server = sc->handshake_func == NULL ? 0 : sc->server;
3420
3421
0
    if (type != TLSEXT_NAMETYPE_host_name)
3422
0
        return NULL;
3423
3424
0
    if (server) {
3425
        /**
3426
         * Server side
3427
         * In TLSv1.3 on the server SNI is not associated with the session
3428
         * but in TLSv1.2 or below it is.
3429
         *
3430
         * Before the handshake:
3431
         *  - return NULL
3432
         *
3433
         * During/after the handshake (TLSv1.2 or below resumption occurred):
3434
         * - If a servername was accepted by the server in the original
3435
         *   handshake then it will return that servername, or NULL otherwise.
3436
         *
3437
         * During/after the handshake (TLSv1.2 or below resumption did not occur):
3438
         * - The function will return the servername requested by the client in
3439
         *   this handshake or NULL if none was requested.
3440
         */
3441
0
        if (sc->hit && !SSL_CONNECTION_IS_TLS13(sc))
3442
0
            return sc->session->ext.hostname;
3443
0
    } else {
3444
        /**
3445
         * Client side
3446
         *
3447
         * Before the handshake:
3448
         *  - If a servername has been set via a call to
3449
         *    SSL_set_tlsext_host_name() then it will return that servername
3450
         *  - If one has not been set, but a TLSv1.2 resumption is being
3451
         *    attempted and the session from the original handshake had a
3452
         *    servername accepted by the server then it will return that
3453
         *    servername
3454
         *  - Otherwise it returns NULL
3455
         *
3456
         * During/after the handshake (TLSv1.2 or below resumption occurred):
3457
         * - If the session from the original handshake had a servername accepted
3458
         *   by the server then it will return that servername.
3459
         * - Otherwise it returns the servername set via
3460
         *   SSL_set_tlsext_host_name() (or NULL if it was not called).
3461
         *
3462
         * During/after the handshake (TLSv1.2 or below resumption did not occur):
3463
         * - It will return the servername set via SSL_set_tlsext_host_name()
3464
         *   (or NULL if it was not called).
3465
         */
3466
0
        if (SSL_in_before(s)) {
3467
0
            if (sc->ext.hostname == NULL
3468
0
                && sc->session != NULL
3469
0
                && sc->session->ssl_version != TLS1_3_VERSION)
3470
0
                return sc->session->ext.hostname;
3471
0
        } else {
3472
0
            if (!SSL_CONNECTION_IS_TLS13(sc) && sc->hit
3473
0
                && sc->session->ext.hostname != NULL)
3474
0
                return sc->session->ext.hostname;
3475
0
        }
3476
0
    }
3477
3478
0
    return sc->ext.hostname;
3479
0
}
3480
3481
int SSL_get_servername_type(const SSL *s)
3482
0
{
3483
0
    if (SSL_get_servername(s, TLSEXT_NAMETYPE_host_name) != NULL)
3484
0
        return TLSEXT_NAMETYPE_host_name;
3485
0
    return -1;
3486
0
}
3487
3488
/*
3489
 * SSL_select_next_proto implements the standard protocol selection. It is
3490
 * expected that this function is called from the callback set by
3491
 * SSL_CTX_set_next_proto_select_cb. The protocol data is assumed to be a
3492
 * vector of 8-bit, length prefixed byte strings. The length byte itself is
3493
 * not included in the length. A byte string of length 0 is invalid. No byte
3494
 * string may be truncated. The current, but experimental algorithm for
3495
 * selecting the protocol is: 1) If the server doesn't support NPN then this
3496
 * is indicated to the callback. In this case, the client application has to
3497
 * abort the connection or have a default application level protocol. 2) If
3498
 * the server supports NPN, but advertises an empty list then the client
3499
 * selects the first protocol in its list, but indicates via the API that this
3500
 * fallback case was enacted. 3) Otherwise, the client finds the first
3501
 * protocol in the server's list that it supports and selects this protocol.
3502
 * This is because it's assumed that the server has better information about
3503
 * which protocol a client should use. 4) If the client doesn't support any
3504
 * of the server's advertised protocols, then this is treated the same as
3505
 * case 2. It returns either OPENSSL_NPN_NEGOTIATED if a common protocol was
3506
 * found, or OPENSSL_NPN_NO_OVERLAP if the fallback case was reached.
3507
 */
3508
int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
3509
    const unsigned char *server,
3510
    unsigned int server_len,
3511
    const unsigned char *client, unsigned int client_len)
3512
0
{
3513
0
    PACKET cpkt, csubpkt, spkt, ssubpkt;
3514
3515
0
    if (!PACKET_buf_init(&cpkt, client, client_len)
3516
0
        || !PACKET_get_length_prefixed_1(&cpkt, &csubpkt)
3517
0
        || PACKET_remaining(&csubpkt) == 0) {
3518
0
        *out = NULL;
3519
0
        *outlen = 0;
3520
0
        return OPENSSL_NPN_NO_OVERLAP;
3521
0
    }
3522
3523
    /*
3524
     * Set the default opportunistic protocol. Will be overwritten if we find
3525
     * a match.
3526
     */
3527
0
    *out = (unsigned char *)PACKET_data(&csubpkt);
3528
0
    *outlen = (unsigned char)PACKET_remaining(&csubpkt);
3529
3530
    /*
3531
     * For each protocol in server preference order, see if we support it.
3532
     */
3533
0
    if (PACKET_buf_init(&spkt, server, server_len)) {
3534
0
        while (PACKET_get_length_prefixed_1(&spkt, &ssubpkt)) {
3535
0
            if (PACKET_remaining(&ssubpkt) == 0)
3536
0
                continue; /* Invalid - ignore it */
3537
0
            if (PACKET_buf_init(&cpkt, client, client_len)) {
3538
0
                while (PACKET_get_length_prefixed_1(&cpkt, &csubpkt)) {
3539
0
                    if (PACKET_equal(&csubpkt, PACKET_data(&ssubpkt),
3540
0
                            PACKET_remaining(&ssubpkt))) {
3541
                        /* We found a match */
3542
0
                        *out = (unsigned char *)PACKET_data(&ssubpkt);
3543
0
                        *outlen = (unsigned char)PACKET_remaining(&ssubpkt);
3544
0
                        return OPENSSL_NPN_NEGOTIATED;
3545
0
                    }
3546
0
                }
3547
                /* Ignore spurious trailing bytes in the client list */
3548
0
            } else {
3549
                /* This should never happen */
3550
0
                return OPENSSL_NPN_NO_OVERLAP;
3551
0
            }
3552
0
        }
3553
        /* Ignore spurious trailing bytes in the server list */
3554
0
    }
3555
3556
    /*
3557
     * There's no overlap between our protocols and the server's list. We use
3558
     * the default opportunistic protocol selected earlier
3559
     */
3560
0
    return OPENSSL_NPN_NO_OVERLAP;
3561
0
}
3562
3563
#ifndef OPENSSL_NO_NEXTPROTONEG
3564
/*
3565
 * SSL_get0_next_proto_negotiated sets *data and *len to point to the
3566
 * client's requested protocol for this connection and returns 0. If the
3567
 * client didn't request any protocol, then *data is set to NULL. Note that
3568
 * the client can request any protocol it chooses. The value returned from
3569
 * this function need not be a member of the list of supported protocols
3570
 * provided by the callback.
3571
 */
3572
void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
3573
    unsigned *len)
3574
0
{
3575
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3576
3577
0
    if (sc == NULL) {
3578
        /* We have no other way to indicate error */
3579
0
        *data = NULL;
3580
0
        *len = 0;
3581
0
        return;
3582
0
    }
3583
3584
0
    *data = sc->ext.npn;
3585
0
    if (*data == NULL) {
3586
0
        *len = 0;
3587
0
    } else {
3588
0
        *len = (unsigned int)sc->ext.npn_len;
3589
0
    }
3590
0
}
3591
3592
/*
3593
 * SSL_CTX_set_npn_advertised_cb sets a callback that is called when
3594
 * a TLS server needs a list of supported protocols for Next Protocol
3595
 * Negotiation. The returned list must be in wire format.  The list is
3596
 * returned by setting |out| to point to it and |outlen| to its length. This
3597
 * memory will not be modified, but one should assume that the SSL* keeps a
3598
 * reference to it. The callback should return SSL_TLSEXT_ERR_OK if it
3599
 * wishes to advertise. Otherwise, no such extension will be included in the
3600
 * ServerHello.
3601
 */
3602
void SSL_CTX_set_npn_advertised_cb(SSL_CTX *ctx,
3603
    SSL_CTX_npn_advertised_cb_func cb,
3604
    void *arg)
3605
0
{
3606
0
    if (IS_QUIC_CTX(ctx))
3607
        /* NPN not allowed for QUIC */
3608
0
        return;
3609
3610
0
    ctx->ext.npn_advertised_cb = cb;
3611
0
    ctx->ext.npn_advertised_cb_arg = arg;
3612
0
}
3613
3614
/*
3615
 * SSL_CTX_set_next_proto_select_cb sets a callback that is called when a
3616
 * client needs to select a protocol from the server's provided list. |out|
3617
 * must be set to point to the selected protocol (which may be within |in|).
3618
 * The length of the protocol name must be written into |outlen|. The
3619
 * server's advertised protocols are provided in |in| and |inlen|. The
3620
 * callback can assume that |in| is syntactically valid. The client must
3621
 * select a protocol. It is fatal to the connection if this callback returns
3622
 * a value other than SSL_TLSEXT_ERR_OK.
3623
 */
3624
void SSL_CTX_set_npn_select_cb(SSL_CTX *ctx,
3625
    SSL_CTX_npn_select_cb_func cb,
3626
    void *arg)
3627
0
{
3628
0
    if (IS_QUIC_CTX(ctx))
3629
        /* NPN not allowed for QUIC */
3630
0
        return;
3631
3632
0
    ctx->ext.npn_select_cb = cb;
3633
0
    ctx->ext.npn_select_cb_arg = arg;
3634
0
}
3635
#endif
3636
3637
static int alpn_value_ok(const unsigned char *protos, unsigned int protos_len)
3638
50.4k
{
3639
50.4k
    unsigned int idx;
3640
3641
50.4k
    if (protos_len < 2 || protos == NULL)
3642
0
        return 0;
3643
3644
100k
    for (idx = 0; idx < protos_len; idx += protos[idx] + 1) {
3645
50.4k
        if (protos[idx] == 0)
3646
0
            return 0;
3647
50.4k
    }
3648
50.4k
    return idx == protos_len;
3649
50.4k
}
3650
/*
3651
 * SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
3652
 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
3653
 * length-prefixed strings). Returns 0 on success.
3654
 */
3655
int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
3656
    unsigned int protos_len)
3657
0
{
3658
0
    unsigned char *alpn;
3659
3660
0
    if (protos_len == 0 || protos == NULL) {
3661
0
        OPENSSL_free(ctx->ext.alpn);
3662
0
        ctx->ext.alpn = NULL;
3663
0
        ctx->ext.alpn_len = 0;
3664
0
        return 0;
3665
0
    }
3666
    /* Not valid per RFC */
3667
0
    if (!alpn_value_ok(protos, protos_len))
3668
0
        return 1;
3669
3670
0
    alpn = OPENSSL_memdup(protos, protos_len);
3671
0
    if (alpn == NULL)
3672
0
        return 1;
3673
0
    OPENSSL_free(ctx->ext.alpn);
3674
0
    ctx->ext.alpn = alpn;
3675
0
    ctx->ext.alpn_len = protos_len;
3676
3677
0
    return 0;
3678
0
}
3679
3680
/*
3681
 * SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
3682
 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
3683
 * length-prefixed strings). Returns 0 on success.
3684
 */
3685
int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
3686
    unsigned int protos_len)
3687
20.9k
{
3688
20.9k
    unsigned char *alpn;
3689
20.9k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
3690
3691
20.9k
    if (sc == NULL)
3692
0
        return 1;
3693
3694
20.9k
    if (protos_len == 0 || protos == NULL) {
3695
0
        OPENSSL_free(sc->ext.alpn);
3696
0
        sc->ext.alpn = NULL;
3697
0
        sc->ext.alpn_len = 0;
3698
0
        return 0;
3699
0
    }
3700
    /* Not valid per RFC */
3701
20.9k
    if (!alpn_value_ok(protos, protos_len))
3702
0
        return 1;
3703
3704
20.9k
    alpn = OPENSSL_memdup(protos, protos_len);
3705
20.9k
    if (alpn == NULL)
3706
0
        return 1;
3707
20.9k
    OPENSSL_free(sc->ext.alpn);
3708
20.9k
    sc->ext.alpn = alpn;
3709
20.9k
    sc->ext.alpn_len = protos_len;
3710
3711
20.9k
    return 0;
3712
20.9k
}
3713
3714
/*
3715
 * SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is
3716
 * called during ClientHello processing in order to select an ALPN protocol
3717
 * from the client's list of offered protocols.
3718
 */
3719
void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
3720
    SSL_CTX_alpn_select_cb_func cb,
3721
    void *arg)
3722
245
{
3723
245
    ctx->ext.alpn_select_cb = cb;
3724
245
    ctx->ext.alpn_select_cb_arg = arg;
3725
245
}
3726
3727
/*
3728
 * SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from |ssl|.
3729
 * On return it sets |*data| to point to |*len| bytes of protocol name
3730
 * (not including the leading length-prefix byte). If the server didn't
3731
 * respond with a negotiated protocol then |*len| will be zero.
3732
 */
3733
void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
3734
    unsigned int *len)
3735
5.19k
{
3736
5.19k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
3737
3738
5.19k
    if (sc == NULL) {
3739
        /* We have no other way to indicate error */
3740
0
        *data = NULL;
3741
0
        *len = 0;
3742
0
        return;
3743
0
    }
3744
3745
5.19k
    *data = sc->s3.alpn_selected;
3746
5.19k
    if (*data == NULL)
3747
9
        *len = 0;
3748
5.18k
    else
3749
5.18k
        *len = (unsigned int)sc->s3.alpn_selected_len;
3750
5.19k
}
3751
3752
int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
3753
    const char *label, size_t llen,
3754
    const unsigned char *context, size_t contextlen,
3755
    int use_context)
3756
0
{
3757
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3758
3759
0
    if (sc == NULL)
3760
0
        return -1;
3761
3762
0
    if (sc->session == NULL
3763
0
        || (sc->version < TLS1_VERSION && sc->version != DTLS1_BAD_VER))
3764
0
        return -1;
3765
3766
0
    return sc->ssl.method->ssl3_enc->export_keying_material(sc, out, olen, label,
3767
0
        llen, context,
3768
0
        contextlen,
3769
0
        use_context);
3770
0
}
3771
3772
int SSL_export_keying_material_early(SSL *s, unsigned char *out, size_t olen,
3773
    const char *label, size_t llen,
3774
    const unsigned char *context,
3775
    size_t contextlen)
3776
0
{
3777
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3778
3779
0
    if (sc == NULL)
3780
0
        return -1;
3781
3782
0
    if (sc->version != TLS1_3_VERSION)
3783
0
        return 0;
3784
3785
0
    return tls13_export_keying_material_early(sc, out, olen, label, llen,
3786
0
        context, contextlen);
3787
0
}
3788
3789
static unsigned long ssl_session_hash(const SSL_SESSION *a)
3790
95.8k
{
3791
95.8k
    const unsigned char *session_id = a->session_id;
3792
95.8k
    unsigned long l;
3793
95.8k
    unsigned char tmp_storage[4];
3794
3795
95.8k
    if (a->session_id_length < sizeof(tmp_storage)) {
3796
693
        memset(tmp_storage, 0, sizeof(tmp_storage));
3797
693
        memcpy(tmp_storage, a->session_id, a->session_id_length);
3798
693
        session_id = tmp_storage;
3799
693
    }
3800
3801
95.8k
    l = (unsigned long)((unsigned long)session_id[0]) | ((unsigned long)session_id[1] << 8L) | ((unsigned long)session_id[2] << 16L) | ((unsigned long)session_id[3] << 24L);
3802
95.8k
    return l;
3803
95.8k
}
3804
3805
/*
3806
 * NB: If this function (or indeed the hash function which uses a sort of
3807
 * coarser function than this one) is changed, ensure
3808
 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on
3809
 * being able to construct an SSL_SESSION that will collide with any existing
3810
 * session with a matching session ID.
3811
 */
3812
static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
3813
4.33k
{
3814
4.33k
    if (a->ssl_version != b->ssl_version)
3815
0
        return 1;
3816
4.33k
    if (a->session_id_length != b->session_id_length)
3817
0
        return 1;
3818
4.33k
    return memcmp(a->session_id, b->session_id, a->session_id_length);
3819
4.33k
}
3820
3821
/*
3822
 * These wrapper functions should remain rather than redeclaring
3823
 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
3824
 * variable. The reason is that the functions aren't static, they're exposed
3825
 * via ssl.h.
3826
 */
3827
3828
SSL_CTX *SSL_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
3829
    const SSL_METHOD *meth)
3830
29.8k
{
3831
29.8k
    SSL_CTX *ret = NULL;
3832
#ifndef OPENSSL_NO_COMP_ALG
3833
    int i;
3834
#endif
3835
3836
29.8k
    if (meth == NULL) {
3837
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_METHOD_PASSED);
3838
0
        return NULL;
3839
0
    }
3840
3841
29.8k
    if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL))
3842
0
        return NULL;
3843
3844
    /* Doing this for the run once effect */
3845
29.8k
    if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) {
3846
0
        ERR_raise(ERR_LIB_SSL, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
3847
0
        goto err;
3848
0
    }
3849
3850
29.8k
    ret = OPENSSL_zalloc(sizeof(*ret));
3851
29.8k
    if (ret == NULL)
3852
0
        return NULL;
3853
3854
    /* Init the reference counting before any call to SSL_CTX_free */
3855
29.8k
    if (!CRYPTO_NEW_REF(&ret->references, 1)) {
3856
0
        OPENSSL_free(ret);
3857
0
        return NULL;
3858
0
    }
3859
3860
29.8k
    ret->lock = CRYPTO_THREAD_lock_new();
3861
29.8k
    if (ret->lock == NULL) {
3862
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3863
0
        goto err;
3864
0
    }
3865
3866
#ifdef TSAN_REQUIRES_LOCKING
3867
    ret->tsan_lock = CRYPTO_THREAD_lock_new();
3868
    if (ret->tsan_lock == NULL) {
3869
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3870
        goto err;
3871
    }
3872
#endif
3873
3874
29.8k
    ret->libctx = libctx;
3875
29.8k
    if (propq != NULL) {
3876
0
        ret->propq = OPENSSL_strdup(propq);
3877
0
        if (ret->propq == NULL)
3878
0
            goto err;
3879
0
    }
3880
3881
29.8k
    ret->method = meth;
3882
29.8k
    ret->min_proto_version = 0;
3883
29.8k
    ret->max_proto_version = 0;
3884
29.8k
    ret->mode = SSL_MODE_AUTO_RETRY;
3885
29.8k
    ret->session_cache_mode = SSL_SESS_CACHE_SERVER;
3886
29.8k
    ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
3887
    /* We take the system default. */
3888
29.8k
    ret->session_timeout = meth->get_timeout();
3889
29.8k
    ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT;
3890
29.8k
    ret->verify_mode = SSL_VERIFY_NONE;
3891
3892
29.8k
    ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp);
3893
29.8k
    if (ret->sessions == NULL) {
3894
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3895
0
        goto err;
3896
0
    }
3897
29.8k
    ret->cert_store = X509_STORE_new();
3898
29.8k
    if (ret->cert_store == NULL) {
3899
0
        ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
3900
0
        goto err;
3901
0
    }
3902
29.8k
#ifndef OPENSSL_NO_CT
3903
29.8k
    ret->ctlog_store = CTLOG_STORE_new_ex(libctx, propq);
3904
29.8k
    if (ret->ctlog_store == NULL) {
3905
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CT_LIB);
3906
0
        goto err;
3907
0
    }
3908
29.8k
#endif
3909
3910
    /* initialize cipher/digest methods table */
3911
29.8k
    if (!ssl_load_ciphers(ret)) {
3912
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3913
0
        goto err;
3914
0
    }
3915
3916
29.8k
    if (!ssl_load_groups(ret)) {
3917
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3918
0
        goto err;
3919
0
    }
3920
3921
    /* load provider sigalgs */
3922
29.8k
    if (!ssl_load_sigalgs(ret)) {
3923
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3924
0
        goto err;
3925
0
    }
3926
3927
    /* initialise sig algs */
3928
29.8k
    if (!ssl_setup_sigalgs(ret)) {
3929
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3930
0
        goto err;
3931
0
    }
3932
3933
29.8k
    if (!SSL_CTX_set_ciphersuites(ret, OSSL_default_ciphersuites())) {
3934
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3935
0
        goto err;
3936
0
    }
3937
3938
29.8k
    if ((ret->cert = ssl_cert_new(SSL_PKEY_NUM + ret->sigalg_list_len)) == NULL) {
3939
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3940
0
        goto err;
3941
0
    }
3942
3943
29.8k
    if (!ssl_create_cipher_list(ret,
3944
29.8k
            ret->tls13_ciphersuites,
3945
29.8k
            &ret->cipher_list, &ret->cipher_list_by_id,
3946
29.8k
            OSSL_default_cipher_list(), ret->cert)
3947
29.8k
        || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) {
3948
0
        ERR_raise(ERR_LIB_SSL, SSL_R_LIBRARY_HAS_NO_CIPHERS);
3949
0
        goto err;
3950
0
    }
3951
3952
29.8k
    ret->param = X509_VERIFY_PARAM_new();
3953
29.8k
    if (ret->param == NULL) {
3954
0
        ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
3955
0
        goto err;
3956
0
    }
3957
3958
    /*
3959
     * If these aren't available from the provider we'll get NULL returns.
3960
     * That's fine but will cause errors later if SSLv3 is negotiated
3961
     */
3962
29.8k
    ret->md5 = ssl_evp_md_fetch(libctx, NID_md5, propq);
3963
29.8k
    ret->sha1 = ssl_evp_md_fetch(libctx, NID_sha1, propq);
3964
3965
29.8k
    if ((ret->ca_names = sk_X509_NAME_new_null()) == NULL) {
3966
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3967
0
        goto err;
3968
0
    }
3969
3970
29.8k
    if ((ret->client_ca_names = sk_X509_NAME_new_null()) == NULL) {
3971
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3972
0
        goto err;
3973
0
    }
3974
3975
29.8k
    if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data)) {
3976
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3977
0
        goto err;
3978
0
    }
3979
3980
29.8k
    if ((ret->ext.secure = OPENSSL_secure_zalloc(sizeof(*ret->ext.secure))) == NULL)
3981
0
        goto err;
3982
3983
    /* No compression for DTLS */
3984
29.8k
    if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
3985
21.7k
        ret->comp_methods = SSL_COMP_get_compression_methods();
3986
3987
29.8k
    ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
3988
29.8k
    ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
3989
3990
    /* Setup RFC5077 ticket keys */
3991
29.8k
    if ((RAND_bytes_ex(libctx, ret->ext.tick_key_name,
3992
29.8k
             sizeof(ret->ext.tick_key_name), 0)
3993
29.8k
            <= 0)
3994
29.8k
        || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_hmac_key,
3995
29.8k
                sizeof(ret->ext.secure->tick_hmac_key), 0)
3996
29.8k
            <= 0)
3997
29.8k
        || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_aes_key,
3998
29.8k
                sizeof(ret->ext.secure->tick_aes_key), 0)
3999
29.8k
            <= 0))
4000
0
        ret->options |= SSL_OP_NO_TICKET;
4001
4002
29.8k
    if (RAND_priv_bytes_ex(libctx, ret->ext.cookie_hmac_key,
4003
29.8k
            sizeof(ret->ext.cookie_hmac_key), 0)
4004
29.8k
        <= 0) {
4005
0
        ERR_raise(ERR_LIB_SSL, ERR_R_RAND_LIB);
4006
0
        goto err;
4007
0
    }
4008
4009
29.8k
#ifndef OPENSSL_NO_SRP
4010
29.8k
    if (!ssl_ctx_srp_ctx_init_intern(ret)) {
4011
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
4012
0
        goto err;
4013
0
    }
4014
29.8k
#endif
4015
29.8k
#ifndef OPENSSL_NO_ENGINE
4016
#ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
4017
#define eng_strx(x) #x
4018
#define eng_str(x) eng_strx(x)
4019
    /* Use specific client engine automatically... ignore errors */
4020
    {
4021
        ENGINE *eng;
4022
        eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
4023
        if (!eng) {
4024
            ERR_clear_error();
4025
            ENGINE_load_builtin_engines();
4026
            eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
4027
        }
4028
        if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
4029
            ERR_clear_error();
4030
    }
4031
#endif
4032
29.8k
#endif
4033
4034
#ifndef OPENSSL_NO_COMP_ALG
4035
    /*
4036
     * Set the default order: brotli, zlib, zstd
4037
     * Including only those enabled algorithms
4038
     */
4039
    memset(ret->cert_comp_prefs, 0, sizeof(ret->cert_comp_prefs));
4040
    i = 0;
4041
    if (ossl_comp_has_alg(TLSEXT_comp_cert_brotli))
4042
        ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_brotli;
4043
    if (ossl_comp_has_alg(TLSEXT_comp_cert_zlib))
4044
        ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_zlib;
4045
    if (ossl_comp_has_alg(TLSEXT_comp_cert_zstd))
4046
        ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_zstd;
4047
#endif
4048
    /*
4049
     * Disable compression by default to prevent CRIME. Applications can
4050
     * re-enable compression by configuring
4051
     * SSL_CTX_clear_options(ctx, SSL_OP_NO_COMPRESSION);
4052
     * or by using the SSL_CONF library. Similarly we also enable TLSv1.3
4053
     * middlebox compatibility by default. This may be disabled by default in
4054
     * a later OpenSSL version.
4055
     */
4056
29.8k
    ret->options |= SSL_OP_NO_COMPRESSION | SSL_OP_ENABLE_MIDDLEBOX_COMPAT;
4057
4058
29.8k
    ret->ext.status_type = TLSEXT_STATUSTYPE_nothing;
4059
4060
    /*
4061
     * We cannot usefully set a default max_early_data here (which gets
4062
     * propagated in SSL_new(), for the following reason: setting the
4063
     * SSL field causes tls_construct_stoc_early_data() to tell the
4064
     * client that early data will be accepted when constructing a TLS 1.3
4065
     * session ticket, and the client will accordingly send us early data
4066
     * when using that ticket (if the client has early data to send).
4067
     * However, in order for the early data to actually be consumed by
4068
     * the application, the application must also have calls to
4069
     * SSL_read_early_data(); otherwise we'll just skip past the early data
4070
     * and ignore it.  So, since the application must add calls to
4071
     * SSL_read_early_data(), we also require them to add
4072
     * calls to SSL_CTX_set_max_early_data() in order to use early data,
4073
     * eliminating the bandwidth-wasting early data in the case described
4074
     * above.
4075
     */
4076
29.8k
    ret->max_early_data = 0;
4077
4078
    /*
4079
     * Default recv_max_early_data is a fully loaded single record. Could be
4080
     * split across multiple records in practice. We set this differently to
4081
     * max_early_data so that, in the default case, we do not advertise any
4082
     * support for early_data, but if a client were to send us some (e.g.
4083
     * because of an old, stale ticket) then we will tolerate it and skip over
4084
     * it.
4085
     */
4086
29.8k
    ret->recv_max_early_data = SSL3_RT_MAX_PLAIN_LENGTH;
4087
4088
    /* By default we send two session tickets automatically in TLSv1.3 */
4089
29.8k
    ret->num_tickets = 2;
4090
4091
29.8k
    if (!ssl_ctx_system_config(ret)) {
4092
0
        ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_IN_SYSTEM_DEFAULT_CONFIG);
4093
0
        goto err;
4094
0
    }
4095
4096
29.8k
    return ret;
4097
0
err:
4098
0
    SSL_CTX_free(ret);
4099
0
    return NULL;
4100
29.8k
}
4101
4102
SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
4103
163k
{
4104
163k
    return SSL_CTX_new_ex(NULL, NULL, meth);
4105
163k
}
4106
4107
int SSL_CTX_up_ref(SSL_CTX *ctx)
4108
389k
{
4109
389k
    int i;
4110
4111
389k
    if (CRYPTO_UP_REF(&ctx->references, &i) <= 0)
4112
0
        return 0;
4113
4114
389k
    REF_PRINT_COUNT("SSL_CTX", i, ctx);
4115
389k
    REF_ASSERT_ISNT(i < 2);
4116
389k
    return ((i > 1) ? 1 : 0);
4117
389k
}
4118
4119
void SSL_CTX_free(SSL_CTX *a)
4120
518k
{
4121
518k
    int i;
4122
518k
    size_t j;
4123
4124
518k
    if (a == NULL)
4125
0
        return;
4126
4127
518k
    CRYPTO_DOWN_REF(&a->references, &i);
4128
518k
    REF_PRINT_COUNT("SSL_CTX", i, a);
4129
518k
    if (i > 0)
4130
366k
        return;
4131
152k
    REF_ASSERT_ISNT(i < 0);
4132
4133
152k
    X509_VERIFY_PARAM_free(a->param);
4134
152k
    dane_ctx_final(&a->dane);
4135
4136
    /*
4137
     * Free internal session cache. However: the remove_cb() may reference
4138
     * the ex_data of SSL_CTX, thus the ex_data store can only be removed
4139
     * after the sessions were flushed.
4140
     * As the ex_data handling routines might also touch the session cache,
4141
     * the most secure solution seems to be: empty (flush) the cache, then
4142
     * free ex_data, then finally free the cache.
4143
     * (See ticket [openssl.org #212].)
4144
     */
4145
152k
    if (a->sessions != NULL)
4146
152k
        SSL_CTX_flush_sessions_ex(a, 0);
4147
4148
152k
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
4149
152k
    lh_SSL_SESSION_free(a->sessions);
4150
152k
    X509_STORE_free(a->cert_store);
4151
152k
#ifndef OPENSSL_NO_CT
4152
152k
    CTLOG_STORE_free(a->ctlog_store);
4153
152k
#endif
4154
152k
    sk_SSL_CIPHER_free(a->cipher_list);
4155
152k
    sk_SSL_CIPHER_free(a->cipher_list_by_id);
4156
152k
    sk_SSL_CIPHER_free(a->tls13_ciphersuites);
4157
152k
    ssl_cert_free(a->cert);
4158
152k
    sk_X509_NAME_pop_free(a->ca_names, X509_NAME_free);
4159
152k
    sk_X509_NAME_pop_free(a->client_ca_names, X509_NAME_free);
4160
152k
    OSSL_STACK_OF_X509_free(a->extra_certs);
4161
152k
    a->comp_methods = NULL;
4162
152k
#ifndef OPENSSL_NO_SRTP
4163
152k
    sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
4164
152k
#endif
4165
152k
#ifndef OPENSSL_NO_SRP
4166
152k
    ssl_ctx_srp_ctx_free_intern(a);
4167
152k
#endif
4168
152k
#ifndef OPENSSL_NO_ENGINE
4169
152k
    tls_engine_finish(a->client_cert_engine);
4170
152k
#endif
4171
4172
152k
    OPENSSL_free(a->ext.ecpointformats);
4173
152k
    OPENSSL_free(a->ext.supportedgroups);
4174
152k
    OPENSSL_free(a->ext.supported_groups_default);
4175
152k
    OPENSSL_free(a->ext.alpn);
4176
152k
    OPENSSL_secure_free(a->ext.secure);
4177
4178
152k
    ssl_evp_md_free(a->md5);
4179
152k
    ssl_evp_md_free(a->sha1);
4180
4181
3.80M
    for (j = 0; j < SSL_ENC_NUM_IDX; j++)
4182
3.65M
        ssl_evp_cipher_free(a->ssl_cipher_methods[j]);
4183
2.28M
    for (j = 0; j < SSL_MD_NUM_IDX; j++)
4184
2.12M
        ssl_evp_md_free(a->ssl_digest_methods[j]);
4185
8.75M
    for (j = 0; j < a->group_list_len; j++) {
4186
8.60M
        OPENSSL_free(a->group_list[j].tlsname);
4187
8.60M
        OPENSSL_free(a->group_list[j].realname);
4188
8.60M
        OPENSSL_free(a->group_list[j].algorithm);
4189
8.60M
    }
4190
152k
    OPENSSL_free(a->group_list);
4191
424k
    for (j = 0; j < a->sigalg_list_len; j++) {
4192
272k
        OPENSSL_free(a->sigalg_list[j].name);
4193
272k
        OPENSSL_free(a->sigalg_list[j].sigalg_name);
4194
272k
        OPENSSL_free(a->sigalg_list[j].sigalg_oid);
4195
272k
        OPENSSL_free(a->sigalg_list[j].sig_name);
4196
272k
        OPENSSL_free(a->sigalg_list[j].sig_oid);
4197
272k
        OPENSSL_free(a->sigalg_list[j].hash_name);
4198
272k
        OPENSSL_free(a->sigalg_list[j].hash_oid);
4199
272k
        OPENSSL_free(a->sigalg_list[j].keytype);
4200
272k
        OPENSSL_free(a->sigalg_list[j].keytype_oid);
4201
272k
    }
4202
152k
    OPENSSL_free(a->sigalg_list);
4203
152k
    OPENSSL_free(a->ssl_cert_info);
4204
4205
152k
    OPENSSL_free(a->sigalg_lookup_cache);
4206
152k
    OPENSSL_free(a->tls12_sigalgs);
4207
4208
152k
    OPENSSL_free(a->client_cert_type);
4209
152k
    OPENSSL_free(a->server_cert_type);
4210
4211
152k
    CRYPTO_THREAD_lock_free(a->lock);
4212
152k
    CRYPTO_FREE_REF(&a->references);
4213
#ifdef TSAN_REQUIRES_LOCKING
4214
    CRYPTO_THREAD_lock_free(a->tsan_lock);
4215
#endif
4216
4217
152k
    OPENSSL_free(a->propq);
4218
152k
#ifndef OPENSSL_NO_QLOG
4219
152k
    OPENSSL_free(a->qlog_title);
4220
152k
#endif
4221
4222
152k
    OPENSSL_free(a);
4223
152k
}
4224
4225
void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
4226
0
{
4227
0
    ctx->default_passwd_callback = cb;
4228
0
}
4229
4230
void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
4231
0
{
4232
0
    ctx->default_passwd_callback_userdata = u;
4233
0
}
4234
4235
pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx)
4236
0
{
4237
0
    return ctx->default_passwd_callback;
4238
0
}
4239
4240
void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx)
4241
0
{
4242
0
    return ctx->default_passwd_callback_userdata;
4243
0
}
4244
4245
void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb)
4246
0
{
4247
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4248
4249
0
    if (sc == NULL)
4250
0
        return;
4251
4252
0
    sc->default_passwd_callback = cb;
4253
0
}
4254
4255
void SSL_set_default_passwd_cb_userdata(SSL *s, void *u)
4256
0
{
4257
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4258
4259
0
    if (sc == NULL)
4260
0
        return;
4261
4262
0
    sc->default_passwd_callback_userdata = u;
4263
0
}
4264
4265
pem_password_cb *SSL_get_default_passwd_cb(SSL *s)
4266
0
{
4267
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4268
4269
0
    if (sc == NULL)
4270
0
        return NULL;
4271
4272
0
    return sc->default_passwd_callback;
4273
0
}
4274
4275
void *SSL_get_default_passwd_cb_userdata(SSL *s)
4276
0
{
4277
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4278
4279
0
    if (sc == NULL)
4280
0
        return NULL;
4281
4282
0
    return sc->default_passwd_callback_userdata;
4283
0
}
4284
4285
void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
4286
    int (*cb)(X509_STORE_CTX *, void *),
4287
    void *arg)
4288
0
{
4289
0
    ctx->app_verify_callback = cb;
4290
0
    ctx->app_verify_arg = arg;
4291
0
}
4292
4293
void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
4294
    int (*cb)(int, X509_STORE_CTX *))
4295
0
{
4296
0
    ctx->verify_mode = mode;
4297
0
    ctx->default_verify_callback = cb;
4298
0
}
4299
4300
void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
4301
0
{
4302
0
    X509_VERIFY_PARAM_set_depth(ctx->param, depth);
4303
0
}
4304
4305
void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb)(SSL *ssl, void *arg), void *arg)
4306
0
{
4307
0
    ssl_cert_set_cert_cb(c->cert, cb, arg);
4308
0
}
4309
4310
void SSL_set_cert_cb(SSL *s, int (*cb)(SSL *ssl, void *arg), void *arg)
4311
0
{
4312
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4313
4314
0
    if (sc == NULL)
4315
0
        return;
4316
4317
0
    ssl_cert_set_cert_cb(sc->cert, cb, arg);
4318
0
}
4319
4320
void ssl_set_masks(SSL_CONNECTION *s)
4321
26.2k
{
4322
26.2k
    CERT *c = s->cert;
4323
26.2k
    uint32_t *pvalid = s->s3.tmp.valid_flags;
4324
26.2k
    int rsa_enc, rsa_sign, dh_tmp, dsa_sign;
4325
26.2k
    unsigned long mask_k, mask_a;
4326
26.2k
    int have_ecc_cert, ecdsa_ok;
4327
4328
26.2k
    if (c == NULL)
4329
0
        return;
4330
4331
26.2k
    dh_tmp = (c->dh_tmp != NULL
4332
26.2k
        || c->dh_tmp_cb != NULL
4333
26.2k
        || c->dh_tmp_auto);
4334
4335
26.2k
    rsa_enc = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
4336
26.2k
    rsa_sign = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
4337
26.2k
    dsa_sign = pvalid[SSL_PKEY_DSA_SIGN] & CERT_PKEY_VALID;
4338
26.2k
    have_ecc_cert = pvalid[SSL_PKEY_ECC] & CERT_PKEY_VALID;
4339
26.2k
    mask_k = 0;
4340
26.2k
    mask_a = 0;
4341
4342
26.2k
    OSSL_TRACE4(TLS_CIPHER, "dh_tmp=%d rsa_enc=%d rsa_sign=%d dsa_sign=%d\n",
4343
26.2k
        dh_tmp, rsa_enc, rsa_sign, dsa_sign);
4344
4345
26.2k
#ifndef OPENSSL_NO_GOST
4346
26.2k
    if (ssl_has_cert(s, SSL_PKEY_GOST12_512)) {
4347
0
        mask_k |= SSL_kGOST | SSL_kGOST18;
4348
0
        mask_a |= SSL_aGOST12;
4349
0
    }
4350
26.2k
    if (ssl_has_cert(s, SSL_PKEY_GOST12_256)) {
4351
0
        mask_k |= SSL_kGOST | SSL_kGOST18;
4352
0
        mask_a |= SSL_aGOST12;
4353
0
    }
4354
26.2k
    if (ssl_has_cert(s, SSL_PKEY_GOST01)) {
4355
0
        mask_k |= SSL_kGOST;
4356
0
        mask_a |= SSL_aGOST01;
4357
0
    }
4358
26.2k
#endif
4359
4360
26.2k
    if (rsa_enc)
4361
26.2k
        mask_k |= SSL_kRSA;
4362
4363
26.2k
    if (dh_tmp)
4364
0
        mask_k |= SSL_kDHE;
4365
4366
    /*
4367
     * If we only have an RSA-PSS certificate allow RSA authentication
4368
     * if TLS 1.2 and peer supports it.
4369
     */
4370
4371
26.2k
    if (rsa_enc || rsa_sign || (ssl_has_cert(s, SSL_PKEY_RSA_PSS_SIGN) && pvalid[SSL_PKEY_RSA_PSS_SIGN] & CERT_PKEY_EXPLICIT_SIGN && TLS1_get_version(&s->ssl) == TLS1_2_VERSION))
4372
26.2k
        mask_a |= SSL_aRSA;
4373
4374
26.2k
    if (dsa_sign) {
4375
26.2k
        mask_a |= SSL_aDSS;
4376
26.2k
    }
4377
4378
26.2k
    mask_a |= SSL_aNULL;
4379
4380
    /*
4381
     * You can do anything with an RPK key, since there's no cert to restrict it
4382
     * But we need to check for private keys
4383
     */
4384
26.2k
    if (pvalid[SSL_PKEY_RSA] & CERT_PKEY_RPK) {
4385
0
        mask_a |= SSL_aRSA;
4386
0
        mask_k |= SSL_kRSA;
4387
0
    }
4388
26.2k
    if (pvalid[SSL_PKEY_ECC] & CERT_PKEY_RPK)
4389
0
        mask_a |= SSL_aECDSA;
4390
26.2k
    if (TLS1_get_version(&s->ssl) == TLS1_2_VERSION) {
4391
10.7k
        if (pvalid[SSL_PKEY_RSA_PSS_SIGN] & CERT_PKEY_RPK)
4392
0
            mask_a |= SSL_aRSA;
4393
10.7k
        if (pvalid[SSL_PKEY_ED25519] & CERT_PKEY_RPK
4394
10.7k
            || pvalid[SSL_PKEY_ED448] & CERT_PKEY_RPK)
4395
0
            mask_a |= SSL_aECDSA;
4396
10.7k
    }
4397
4398
    /*
4399
     * An ECC certificate may be usable for ECDH and/or ECDSA cipher suites
4400
     * depending on the key usage extension.
4401
     */
4402
26.2k
    if (have_ecc_cert) {
4403
18.6k
        uint32_t ex_kusage;
4404
18.6k
        ex_kusage = X509_get_key_usage(c->pkeys[SSL_PKEY_ECC].x509);
4405
18.6k
        ecdsa_ok = ex_kusage & X509v3_KU_DIGITAL_SIGNATURE;
4406
18.6k
        if (!(pvalid[SSL_PKEY_ECC] & CERT_PKEY_SIGN))
4407
437
            ecdsa_ok = 0;
4408
18.6k
        if (ecdsa_ok)
4409
18.2k
            mask_a |= SSL_aECDSA;
4410
18.6k
    }
4411
    /* Allow Ed25519 for TLS 1.2 if peer supports it */
4412
26.2k
    if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED25519)
4413
0
        && pvalid[SSL_PKEY_ED25519] & CERT_PKEY_EXPLICIT_SIGN
4414
0
        && TLS1_get_version(&s->ssl) == TLS1_2_VERSION)
4415
0
        mask_a |= SSL_aECDSA;
4416
4417
    /* Allow Ed448 for TLS 1.2 if peer supports it */
4418
26.2k
    if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED448)
4419
0
        && pvalid[SSL_PKEY_ED448] & CERT_PKEY_EXPLICIT_SIGN
4420
0
        && TLS1_get_version(&s->ssl) == TLS1_2_VERSION)
4421
0
        mask_a |= SSL_aECDSA;
4422
4423
26.2k
    mask_k |= SSL_kECDHE;
4424
4425
26.2k
#ifndef OPENSSL_NO_PSK
4426
26.2k
    mask_k |= SSL_kPSK;
4427
26.2k
    mask_a |= SSL_aPSK;
4428
26.2k
    if (mask_k & SSL_kRSA)
4429
26.2k
        mask_k |= SSL_kRSAPSK;
4430
26.2k
    if (mask_k & SSL_kDHE)
4431
0
        mask_k |= SSL_kDHEPSK;
4432
26.2k
    if (mask_k & SSL_kECDHE)
4433
26.2k
        mask_k |= SSL_kECDHEPSK;
4434
26.2k
#endif
4435
4436
26.2k
    s->s3.tmp.mask_k = mask_k;
4437
26.2k
    s->s3.tmp.mask_a = mask_a;
4438
26.2k
}
4439
4440
int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL_CONNECTION *s)
4441
0
{
4442
0
    if (s->s3.tmp.new_cipher->algorithm_auth & SSL_aECDSA) {
4443
        /* key usage, if present, must allow signing */
4444
0
        if (!(X509_get_key_usage(x) & X509v3_KU_DIGITAL_SIGNATURE)) {
4445
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ECC_CERT_NOT_FOR_SIGNING);
4446
0
            return 0;
4447
0
        }
4448
0
    }
4449
0
    return 1; /* all checks are ok */
4450
0
}
4451
4452
int ssl_get_server_cert_serverinfo(SSL_CONNECTION *s,
4453
    const unsigned char **serverinfo,
4454
    size_t *serverinfo_length)
4455
0
{
4456
0
    CERT_PKEY *cpk = s->s3.tmp.cert;
4457
0
    *serverinfo_length = 0;
4458
4459
0
    if (cpk == NULL || cpk->serverinfo == NULL)
4460
0
        return 0;
4461
4462
0
    *serverinfo = cpk->serverinfo;
4463
0
    *serverinfo_length = cpk->serverinfo_length;
4464
0
    return 1;
4465
0
}
4466
4467
void ssl_update_cache(SSL_CONNECTION *s, int mode)
4468
2.02k
{
4469
2.02k
    int i;
4470
4471
    /*
4472
     * If the session_id_length is 0, we are not supposed to cache it, and it
4473
     * would be rather hard to do anyway :-). Also if the session has already
4474
     * been marked as not_resumable we should not cache it for later reuse.
4475
     */
4476
2.02k
    if (s->session->session_id_length == 0 || s->session->not_resumable)
4477
165
        return;
4478
4479
    /*
4480
     * If sid_ctx_length is 0 there is no specific application context
4481
     * associated with this session, so when we try to resume it and
4482
     * SSL_VERIFY_PEER is requested to verify the client identity, we have no
4483
     * indication that this is actually a session for the proper application
4484
     * context, and the *handshake* will fail, not just the resumption attempt.
4485
     * Do not cache (on the server) these sessions that are not resumable
4486
     * (clients can set SSL_VERIFY_PEER without needing a sid_ctx set).
4487
     */
4488
1.85k
    if (s->server && s->session->sid_ctx_length == 0
4489
540
        && (s->verify_mode & SSL_VERIFY_PEER) != 0)
4490
0
        return;
4491
4492
1.85k
    i = s->session_ctx->session_cache_mode;
4493
1.85k
    if ((i & mode) != 0
4494
540
        && (!s->hit || SSL_CONNECTION_IS_TLS13(s))) {
4495
        /*
4496
         * Add the session to the internal cache. In server side TLSv1.3 we
4497
         * normally don't do this because by default it's a full stateless ticket
4498
         * with only a dummy session id so there is no reason to cache it,
4499
         * unless:
4500
         * - we are doing early_data, in which case we cache so that we can
4501
         *   detect replays
4502
         * - the application has set a remove_session_cb so needs to know about
4503
         *   session timeout events
4504
         * - SSL_OP_NO_TICKET is set in which case it is a stateful ticket
4505
         */
4506
540
        if ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE) == 0
4507
540
            && (!SSL_CONNECTION_IS_TLS13(s)
4508
0
                || !s->server
4509
0
                || (s->max_early_data > 0
4510
0
                    && (s->options & SSL_OP_NO_ANTI_REPLAY) == 0)
4511
0
                || s->session_ctx->remove_session_cb != NULL
4512
0
                || (s->options & SSL_OP_NO_TICKET) != 0))
4513
540
            SSL_CTX_add_session(s->session_ctx, s->session);
4514
4515
        /*
4516
         * Add the session to the external cache. We do this even in server side
4517
         * TLSv1.3 without early data because some applications just want to
4518
         * know about the creation of a session and aren't doing a full cache.
4519
         */
4520
540
        if (s->session_ctx->new_session_cb != NULL) {
4521
0
            SSL_SESSION_up_ref(s->session);
4522
0
            if (!s->session_ctx->new_session_cb(SSL_CONNECTION_GET_USER_SSL(s),
4523
0
                    s->session))
4524
0
                SSL_SESSION_free(s->session);
4525
0
        }
4526
540
    }
4527
4528
    /* auto flush every 255 connections */
4529
1.85k
    if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && ((i & mode) == mode)) {
4530
540
        TSAN_QUALIFIER int *stat;
4531
4532
540
        if (mode & SSL_SESS_CACHE_CLIENT)
4533
0
            stat = &s->session_ctx->stats.sess_connect_good;
4534
540
        else
4535
540
            stat = &s->session_ctx->stats.sess_accept_good;
4536
540
        if ((ssl_tsan_load(s->session_ctx, stat) & 0xff) == 0xff)
4537
0
            SSL_CTX_flush_sessions_ex(s->session_ctx, time(NULL));
4538
540
    }
4539
1.85k
}
4540
4541
const SSL_METHOD *SSL_CTX_get_ssl_method(const SSL_CTX *ctx)
4542
0
{
4543
0
    return ctx->method;
4544
0
}
4545
4546
const SSL_METHOD *SSL_get_ssl_method(const SSL *s)
4547
0
{
4548
0
    return s->method;
4549
0
}
4550
4551
int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
4552
0
{
4553
0
    int ret = 1;
4554
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4555
4556
    /* Not allowed for QUIC */
4557
0
    if (sc == NULL
4558
0
        || (s->type != SSL_TYPE_SSL_CONNECTION && s->method != meth)
4559
0
        || (s->type == SSL_TYPE_SSL_CONNECTION && IS_QUIC_METHOD(meth)))
4560
0
        return 0;
4561
4562
0
    if (s->method != meth) {
4563
0
        const SSL_METHOD *sm = s->method;
4564
0
        int (*hf)(SSL *) = sc->handshake_func;
4565
4566
0
        if (sm->version == meth->version)
4567
0
            s->method = meth;
4568
0
        else {
4569
0
            sm->ssl_deinit(s);
4570
0
            s->method = meth;
4571
0
            ret = s->method->ssl_init(s);
4572
0
        }
4573
4574
0
        if (hf == sm->ssl_connect)
4575
0
            sc->handshake_func = meth->ssl_connect;
4576
0
        else if (hf == sm->ssl_accept)
4577
0
            sc->handshake_func = meth->ssl_accept;
4578
0
    }
4579
0
    return ret;
4580
0
}
4581
4582
int SSL_get_error(const SSL *s, int i)
4583
70.5M
{
4584
70.5M
    return ossl_ssl_get_error(s, i, /*check_err=*/1);
4585
70.5M
}
4586
4587
int ossl_ssl_get_error(const SSL *s, int i, int check_err)
4588
63.7M
{
4589
63.7M
    int reason;
4590
63.7M
    unsigned long l;
4591
63.7M
    BIO *bio;
4592
63.7M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4593
4594
63.7M
    if (i > 0)
4595
0
        return SSL_ERROR_NONE;
4596
4597
63.7M
#ifndef OPENSSL_NO_QUIC
4598
63.7M
    if (IS_QUIC(s)) {
4599
31.8M
        reason = ossl_quic_get_error(s, i);
4600
31.8M
        if (reason != SSL_ERROR_NONE)
4601
31.8M
            return reason;
4602
31.8M
    }
4603
31.8M
#endif
4604
4605
31.8M
    if (sc == NULL)
4606
0
        return SSL_ERROR_SSL;
4607
4608
    /*
4609
     * Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
4610
     * where we do encode the error
4611
     */
4612
31.8M
    if (check_err && (l = ERR_peek_error()) != 0) {
4613
1.01k
        if (ERR_GET_LIB(l) == ERR_LIB_SYS)
4614
0
            return SSL_ERROR_SYSCALL;
4615
1.01k
        else
4616
1.01k
            return SSL_ERROR_SSL;
4617
1.01k
    }
4618
4619
31.8M
#ifndef OPENSSL_NO_QUIC
4620
31.8M
    if (!IS_QUIC(s))
4621
31.8M
#endif
4622
31.8M
    {
4623
31.8M
        if (SSL_want_read(s)) {
4624
31.8M
            bio = SSL_get_rbio(s);
4625
31.8M
            if (BIO_should_read(bio))
4626
31.8M
                return SSL_ERROR_WANT_READ;
4627
0
            else if (BIO_should_write(bio))
4628
                /*
4629
                 * This one doesn't make too much sense ... We never try to
4630
                 * write to the rbio, and an application program where rbio and
4631
                 * wbio are separate couldn't even know what it should wait for.
4632
                 * However if we ever set s->rwstate incorrectly (so that we
4633
                 * have SSL_want_read(s) instead of SSL_want_write(s)) and rbio
4634
                 * and wbio *are* the same, this test works around that bug; so
4635
                 * it might be safer to keep it.
4636
                 */
4637
0
                return SSL_ERROR_WANT_WRITE;
4638
0
            else if (BIO_should_io_special(bio)) {
4639
0
                reason = BIO_get_retry_reason(bio);
4640
0
                if (reason == BIO_RR_CONNECT)
4641
0
                    return SSL_ERROR_WANT_CONNECT;
4642
0
                else if (reason == BIO_RR_ACCEPT)
4643
0
                    return SSL_ERROR_WANT_ACCEPT;
4644
0
                else
4645
0
                    return SSL_ERROR_SYSCALL; /* unknown */
4646
0
            }
4647
31.8M
        }
4648
4649
3.59k
        if (SSL_want_write(s)) {
4650
            /*
4651
             * Access wbio directly - in order to use the buffered bio if
4652
             * present
4653
             */
4654
0
            bio = sc->wbio;
4655
0
            if (BIO_should_write(bio))
4656
0
                return SSL_ERROR_WANT_WRITE;
4657
0
            else if (BIO_should_read(bio))
4658
                /*
4659
                 * See above (SSL_want_read(s) with BIO_should_write(bio))
4660
                 */
4661
0
                return SSL_ERROR_WANT_READ;
4662
0
            else if (BIO_should_io_special(bio)) {
4663
0
                reason = BIO_get_retry_reason(bio);
4664
0
                if (reason == BIO_RR_CONNECT)
4665
0
                    return SSL_ERROR_WANT_CONNECT;
4666
0
                else if (reason == BIO_RR_ACCEPT)
4667
0
                    return SSL_ERROR_WANT_ACCEPT;
4668
0
                else
4669
0
                    return SSL_ERROR_SYSCALL;
4670
0
            }
4671
0
        }
4672
3.59k
    }
4673
4674
3.59k
    if (SSL_want_x509_lookup(s))
4675
0
        return SSL_ERROR_WANT_X509_LOOKUP;
4676
3.59k
    if (SSL_want_retry_verify(s))
4677
0
        return SSL_ERROR_WANT_RETRY_VERIFY;
4678
3.59k
    if (SSL_want_async(s))
4679
0
        return SSL_ERROR_WANT_ASYNC;
4680
3.59k
    if (SSL_want_async_job(s))
4681
0
        return SSL_ERROR_WANT_ASYNC_JOB;
4682
3.59k
    if (SSL_want_client_hello_cb(s))
4683
0
        return SSL_ERROR_WANT_CLIENT_HELLO_CB;
4684
4685
3.59k
    if ((sc->shutdown & SSL_RECEIVED_SHUTDOWN) && (sc->s3.warn_alert == SSL_AD_CLOSE_NOTIFY))
4686
0
        return SSL_ERROR_ZERO_RETURN;
4687
4688
3.59k
    return SSL_ERROR_SYSCALL;
4689
3.59k
}
4690
4691
static int ssl_do_handshake_intern(void *vargs)
4692
0
{
4693
0
    struct ssl_async_args *args = (struct ssl_async_args *)vargs;
4694
0
    SSL *s = args->s;
4695
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4696
4697
0
    if (sc == NULL)
4698
0
        return -1;
4699
4700
0
    return sc->handshake_func(s);
4701
0
}
4702
4703
int SSL_do_handshake(SSL *s)
4704
43.6M
{
4705
43.6M
    int ret = 1;
4706
43.6M
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4707
4708
43.6M
#ifndef OPENSSL_NO_QUIC
4709
43.6M
    if (IS_QUIC(s))
4710
21.7M
        return ossl_quic_do_handshake(s);
4711
21.8M
#endif
4712
4713
21.8M
    if (sc == NULL)
4714
0
        return -1;
4715
4716
21.8M
    if (sc->handshake_func == NULL) {
4717
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONNECTION_TYPE_NOT_SET);
4718
0
        return -1;
4719
0
    }
4720
4721
21.8M
    ossl_statem_check_finish_init(sc, -1);
4722
4723
21.8M
    s->method->ssl_renegotiate_check(s, 0);
4724
4725
21.8M
    if (SSL_in_init(s) || SSL_in_before(s)) {
4726
21.8M
        if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
4727
0
            struct ssl_async_args args;
4728
4729
0
            memset(&args, 0, sizeof(args));
4730
0
            args.s = s;
4731
4732
0
            ret = ssl_start_async_job(s, &args, ssl_do_handshake_intern);
4733
21.8M
        } else {
4734
21.8M
            ret = sc->handshake_func(s);
4735
21.8M
        }
4736
21.8M
    }
4737
21.8M
    return ret;
4738
21.8M
}
4739
4740
void SSL_set_accept_state(SSL *s)
4741
18.9k
{
4742
18.9k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
4743
4744
18.9k
#ifndef OPENSSL_NO_QUIC
4745
18.9k
    if (IS_QUIC(s)) {
4746
0
        ossl_quic_set_accept_state(s);
4747
0
        return;
4748
0
    }
4749
18.9k
#endif
4750
4751
18.9k
    sc->server = 1;
4752
18.9k
    sc->shutdown = 0;
4753
18.9k
    ossl_statem_clear(sc);
4754
18.9k
    sc->handshake_func = s->method->ssl_accept;
4755
    /* Ignore return value. Its a void public API function */
4756
18.9k
    RECORD_LAYER_reset(&sc->rlayer);
4757
18.9k
}
4758
4759
void SSL_set_connect_state(SSL *s)
4760
63.3k
{
4761
63.3k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
4762
4763
63.3k
#ifndef OPENSSL_NO_QUIC
4764
63.3k
    if (IS_QUIC(s)) {
4765
20.9k
        ossl_quic_set_connect_state(s);
4766
20.9k
        return;
4767
20.9k
    }
4768
42.4k
#endif
4769
4770
42.4k
    sc->server = 0;
4771
42.4k
    sc->shutdown = 0;
4772
42.4k
    ossl_statem_clear(sc);
4773
42.4k
    sc->handshake_func = s->method->ssl_connect;
4774
    /* Ignore return value. Its a void public API function */
4775
42.4k
    RECORD_LAYER_reset(&sc->rlayer);
4776
42.4k
}
4777
4778
int ssl_undefined_function(SSL *s)
4779
0
{
4780
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
4781
0
    return 0;
4782
0
}
4783
4784
int ssl_undefined_void_function(void)
4785
0
{
4786
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
4787
0
    return 0;
4788
0
}
4789
4790
int ssl_undefined_const_function(const SSL *s)
4791
0
{
4792
0
    return 0;
4793
0
}
4794
4795
const char *ssl_protocol_to_string(int version)
4796
2.18k
{
4797
2.18k
    switch (version) {
4798
129
    case TLS1_3_VERSION:
4799
129
        return "TLSv1.3";
4800
4801
346
    case TLS1_2_VERSION:
4802
346
        return "TLSv1.2";
4803
4804
53
    case TLS1_1_VERSION:
4805
53
        return "TLSv1.1";
4806
4807
14
    case TLS1_VERSION:
4808
14
        return "TLSv1";
4809
4810
62
    case SSL3_VERSION:
4811
62
        return "SSLv3";
4812
4813
14
    case DTLS1_BAD_VER:
4814
14
        return "DTLSv0.9";
4815
4816
25
    case DTLS1_VERSION:
4817
25
        return "DTLSv1";
4818
4819
31
    case DTLS1_2_VERSION:
4820
31
        return "DTLSv1.2";
4821
4822
1.51k
    default:
4823
1.51k
        return "unknown";
4824
2.18k
    }
4825
2.18k
}
4826
4827
const char *SSL_get_version(const SSL *s)
4828
0
{
4829
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4830
4831
0
#ifndef OPENSSL_NO_QUIC
4832
    /* We only support QUICv1 - so if its QUIC its QUICv1 */
4833
0
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
4834
0
        return "QUICv1";
4835
0
#endif
4836
4837
0
    if (sc == NULL)
4838
0
        return NULL;
4839
4840
0
    return ssl_protocol_to_string(sc->version);
4841
0
}
4842
4843
__owur int SSL_get_handshake_rtt(const SSL *s, uint64_t *rtt)
4844
0
{
4845
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4846
4847
0
    if (sc == NULL)
4848
0
        return -1;
4849
0
    if (sc->ts_msg_write.t <= 0 || sc->ts_msg_read.t <= 0)
4850
0
        return 0; /* data not (yet) available */
4851
0
    if (sc->ts_msg_read.t < sc->ts_msg_write.t)
4852
0
        return -1;
4853
4854
0
    *rtt = ossl_time2us(ossl_time_subtract(sc->ts_msg_read, sc->ts_msg_write));
4855
0
    return 1;
4856
0
}
4857
4858
static int dup_ca_names(STACK_OF(X509_NAME) **dst, STACK_OF(X509_NAME) *src)
4859
0
{
4860
0
    STACK_OF(X509_NAME) *sk;
4861
0
    X509_NAME *xn;
4862
0
    int i;
4863
4864
0
    if (src == NULL) {
4865
0
        *dst = NULL;
4866
0
        return 1;
4867
0
    }
4868
4869
0
    if ((sk = sk_X509_NAME_new_null()) == NULL)
4870
0
        return 0;
4871
0
    for (i = 0; i < sk_X509_NAME_num(src); i++) {
4872
0
        xn = X509_NAME_dup(sk_X509_NAME_value(src, i));
4873
0
        if (xn == NULL) {
4874
0
            sk_X509_NAME_pop_free(sk, X509_NAME_free);
4875
0
            return 0;
4876
0
        }
4877
0
        if (sk_X509_NAME_insert(sk, xn, i) == 0) {
4878
0
            X509_NAME_free(xn);
4879
0
            sk_X509_NAME_pop_free(sk, X509_NAME_free);
4880
0
            return 0;
4881
0
        }
4882
0
    }
4883
0
    *dst = sk;
4884
4885
0
    return 1;
4886
0
}
4887
4888
SSL *SSL_dup(SSL *s)
4889
0
{
4890
0
    SSL *ret;
4891
0
    int i;
4892
    /* TODO(QUIC FUTURE): Add a SSL_METHOD function for duplication */
4893
0
    SSL_CONNECTION *retsc;
4894
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
4895
4896
0
    if (sc == NULL)
4897
0
        return NULL;
4898
4899
    /* If we're not quiescent, just up_ref! */
4900
0
    if (!SSL_in_init(s) || !SSL_in_before(s)) {
4901
0
        CRYPTO_UP_REF(&s->references, &i);
4902
0
        return s;
4903
0
    }
4904
4905
    /*
4906
     * Otherwise, copy configuration state, and session if set.
4907
     */
4908
0
    if ((ret = SSL_new(SSL_get_SSL_CTX(s))) == NULL)
4909
0
        return NULL;
4910
0
    if ((retsc = SSL_CONNECTION_FROM_SSL_ONLY(ret)) == NULL)
4911
0
        goto err;
4912
4913
0
    if (sc->session != NULL) {
4914
        /*
4915
         * Arranges to share the same session via up_ref.  This "copies"
4916
         * session-id, SSL_METHOD, sid_ctx, and 'cert'
4917
         */
4918
0
        if (!SSL_copy_session_id(ret, s))
4919
0
            goto err;
4920
0
    } else {
4921
        /*
4922
         * No session has been established yet, so we have to expect that
4923
         * s->cert or ret->cert will be changed later -- they should not both
4924
         * point to the same object, and thus we can't use
4925
         * SSL_copy_session_id.
4926
         */
4927
0
        if (!SSL_set_ssl_method(ret, s->method))
4928
0
            goto err;
4929
4930
0
        if (sc->cert != NULL) {
4931
0
            ssl_cert_free(retsc->cert);
4932
0
            retsc->cert = ssl_cert_dup(sc->cert);
4933
0
            if (retsc->cert == NULL)
4934
0
                goto err;
4935
0
        }
4936
4937
0
        if (!SSL_set_session_id_context(ret, sc->sid_ctx,
4938
0
                (int)sc->sid_ctx_length))
4939
0
            goto err;
4940
0
    }
4941
4942
0
    if (!ssl_dane_dup(retsc, sc))
4943
0
        goto err;
4944
0
    retsc->version = sc->version;
4945
0
    retsc->options = sc->options;
4946
0
    retsc->min_proto_version = sc->min_proto_version;
4947
0
    retsc->max_proto_version = sc->max_proto_version;
4948
0
    retsc->mode = sc->mode;
4949
0
    SSL_set_max_cert_list(ret, SSL_get_max_cert_list(s));
4950
0
    SSL_set_read_ahead(ret, SSL_get_read_ahead(s));
4951
0
    retsc->msg_callback = sc->msg_callback;
4952
0
    retsc->msg_callback_arg = sc->msg_callback_arg;
4953
0
    SSL_set_verify(ret, SSL_get_verify_mode(s), SSL_get_verify_callback(s));
4954
0
    SSL_set_verify_depth(ret, SSL_get_verify_depth(s));
4955
0
    retsc->generate_session_id = sc->generate_session_id;
4956
4957
0
    SSL_set_info_callback(ret, SSL_get_info_callback(s));
4958
4959
    /* copy app data, a little dangerous perhaps */
4960
0
    if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
4961
0
        goto err;
4962
4963
0
    retsc->server = sc->server;
4964
0
    if (sc->handshake_func) {
4965
0
        if (sc->server)
4966
0
            SSL_set_accept_state(ret);
4967
0
        else
4968
0
            SSL_set_connect_state(ret);
4969
0
    }
4970
0
    retsc->shutdown = sc->shutdown;
4971
0
    retsc->hit = sc->hit;
4972
4973
0
    retsc->default_passwd_callback = sc->default_passwd_callback;
4974
0
    retsc->default_passwd_callback_userdata = sc->default_passwd_callback_userdata;
4975
4976
0
    X509_VERIFY_PARAM_inherit(retsc->param, sc->param);
4977
4978
    /* dup the cipher_list and cipher_list_by_id stacks */
4979
0
    if (sc->cipher_list != NULL) {
4980
0
        if ((retsc->cipher_list = sk_SSL_CIPHER_dup(sc->cipher_list)) == NULL)
4981
0
            goto err;
4982
0
    }
4983
0
    if (sc->cipher_list_by_id != NULL)
4984
0
        if ((retsc->cipher_list_by_id = sk_SSL_CIPHER_dup(sc->cipher_list_by_id))
4985
0
            == NULL)
4986
0
            goto err;
4987
4988
    /* Dup the client_CA list */
4989
0
    if (!dup_ca_names(&retsc->ca_names, sc->ca_names)
4990
0
        || !dup_ca_names(&retsc->client_ca_names, sc->client_ca_names))
4991
0
        goto err;
4992
4993
0
    return ret;
4994
4995
0
err:
4996
0
    SSL_free(ret);
4997
0
    return NULL;
4998
0
}
4999
5000
X509 *SSL_get_certificate(const SSL *s)
5001
0
{
5002
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5003
5004
0
    if (sc == NULL)
5005
0
        return NULL;
5006
5007
0
    if (sc->cert != NULL)
5008
0
        return sc->cert->key->x509;
5009
0
    else
5010
0
        return NULL;
5011
0
}
5012
5013
EVP_PKEY *SSL_get_privatekey(const SSL *s)
5014
0
{
5015
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5016
5017
0
    if (sc == NULL)
5018
0
        return NULL;
5019
5020
0
    if (sc->cert != NULL)
5021
0
        return sc->cert->key->privatekey;
5022
0
    else
5023
0
        return NULL;
5024
0
}
5025
5026
X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx)
5027
0
{
5028
0
    if (ctx->cert != NULL)
5029
0
        return ctx->cert->key->x509;
5030
0
    else
5031
0
        return NULL;
5032
0
}
5033
5034
EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx)
5035
0
{
5036
0
    if (ctx->cert != NULL)
5037
0
        return ctx->cert->key->privatekey;
5038
0
    else
5039
0
        return NULL;
5040
0
}
5041
5042
const SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
5043
0
{
5044
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5045
5046
0
    if (sc == NULL)
5047
0
        return NULL;
5048
5049
0
    if ((sc->session != NULL) && (sc->session->cipher != NULL))
5050
0
        return sc->session->cipher;
5051
0
    return NULL;
5052
0
}
5053
5054
const SSL_CIPHER *SSL_get_pending_cipher(const SSL *s)
5055
0
{
5056
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5057
5058
0
    if (sc == NULL)
5059
0
        return NULL;
5060
5061
0
    return sc->s3.tmp.new_cipher;
5062
0
}
5063
5064
const COMP_METHOD *SSL_get_current_compression(const SSL *s)
5065
0
{
5066
0
#ifndef OPENSSL_NO_COMP
5067
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5068
5069
0
    if (sc == NULL)
5070
0
        return NULL;
5071
5072
0
    return sc->rlayer.wrlmethod->get_compression(sc->rlayer.wrl);
5073
#else
5074
    return NULL;
5075
#endif
5076
0
}
5077
5078
const COMP_METHOD *SSL_get_current_expansion(const SSL *s)
5079
0
{
5080
0
#ifndef OPENSSL_NO_COMP
5081
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5082
5083
0
    if (sc == NULL)
5084
0
        return NULL;
5085
5086
0
    return sc->rlayer.rrlmethod->get_compression(sc->rlayer.rrl);
5087
#else
5088
    return NULL;
5089
#endif
5090
0
}
5091
5092
int ssl_init_wbio_buffer(SSL_CONNECTION *s)
5093
202k
{
5094
202k
    BIO *bbio;
5095
5096
202k
    if (s->bbio != NULL) {
5097
        /* Already buffered. */
5098
0
        return 1;
5099
0
    }
5100
5101
202k
    bbio = BIO_new(BIO_f_buffer());
5102
202k
    if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
5103
0
        BIO_free(bbio);
5104
0
        ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
5105
0
        return 0;
5106
0
    }
5107
202k
    s->bbio = bbio;
5108
202k
    s->wbio = BIO_push(bbio, s->wbio);
5109
5110
202k
    s->rlayer.wrlmethod->set1_bio(s->rlayer.wrl, s->wbio);
5111
5112
202k
    return 1;
5113
202k
}
5114
5115
int ssl_free_wbio_buffer(SSL_CONNECTION *s)
5116
863k
{
5117
    /* callers ensure s is never null */
5118
863k
    if (s->bbio == NULL)
5119
661k
        return 1;
5120
5121
202k
    s->wbio = BIO_pop(s->wbio);
5122
202k
    s->rlayer.wrlmethod->set1_bio(s->rlayer.wrl, s->wbio);
5123
5124
202k
    BIO_free(s->bbio);
5125
202k
    s->bbio = NULL;
5126
5127
202k
    return 1;
5128
863k
}
5129
5130
void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
5131
0
{
5132
0
    ctx->quiet_shutdown = mode;
5133
0
}
5134
5135
int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
5136
0
{
5137
0
    return ctx->quiet_shutdown;
5138
0
}
5139
5140
void SSL_set_quiet_shutdown(SSL *s, int mode)
5141
0
{
5142
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
5143
5144
    /* Not supported with QUIC */
5145
0
    if (sc == NULL)
5146
0
        return;
5147
5148
0
    sc->quiet_shutdown = mode;
5149
0
}
5150
5151
int SSL_get_quiet_shutdown(const SSL *s)
5152
0
{
5153
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5154
5155
    /* Not supported with QUIC */
5156
0
    if (sc == NULL)
5157
0
        return 0;
5158
5159
0
    return sc->quiet_shutdown;
5160
0
}
5161
5162
void SSL_set_shutdown(SSL *s, int mode)
5163
0
{
5164
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
5165
5166
    /* Not supported with QUIC */
5167
0
    if (sc == NULL)
5168
0
        return;
5169
5170
0
    sc->shutdown = mode;
5171
0
}
5172
5173
int SSL_get_shutdown(const SSL *s)
5174
0
{
5175
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5176
5177
0
#ifndef OPENSSL_NO_QUIC
5178
    /* QUIC: Just indicate whether the connection was shutdown cleanly. */
5179
0
    if (IS_QUIC(s))
5180
0
        return ossl_quic_get_shutdown(s);
5181
0
#endif
5182
5183
0
    if (sc == NULL)
5184
0
        return 0;
5185
5186
0
    return sc->shutdown;
5187
0
}
5188
5189
int SSL_version(const SSL *s)
5190
276k
{
5191
276k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5192
5193
276k
#ifndef OPENSSL_NO_QUIC
5194
    /* We only support QUICv1 - so if its QUIC its QUICv1 */
5195
276k
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
5196
0
        return OSSL_QUIC1_VERSION;
5197
276k
#endif
5198
276k
    if (sc == NULL)
5199
0
        return 0;
5200
5201
276k
    return sc->version;
5202
276k
}
5203
5204
int SSL_client_version(const SSL *s)
5205
0
{
5206
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5207
5208
0
#ifndef OPENSSL_NO_QUIC
5209
    /* We only support QUICv1 - so if its QUIC its QUICv1 */
5210
0
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
5211
0
        return OSSL_QUIC1_VERSION;
5212
0
#endif
5213
0
    if (sc == NULL)
5214
0
        return 0;
5215
5216
0
    return sc->client_version;
5217
0
}
5218
5219
SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
5220
0
{
5221
0
    return ssl->ctx;
5222
0
}
5223
5224
SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx)
5225
0
{
5226
0
    CERT *new_cert;
5227
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
5228
5229
    /* TODO(QUIC FUTURE): Add support for QUIC */
5230
0
    if (sc == NULL)
5231
0
        return NULL;
5232
5233
0
    if (ssl->ctx == ctx)
5234
0
        return ssl->ctx;
5235
0
    if (ctx == NULL)
5236
0
        ctx = sc->session_ctx;
5237
0
    new_cert = ssl_cert_dup(ctx->cert);
5238
0
    if (new_cert == NULL) {
5239
0
        return NULL;
5240
0
    }
5241
5242
0
    if (!custom_exts_copy_flags(&new_cert->custext, &sc->cert->custext)) {
5243
0
        ssl_cert_free(new_cert);
5244
0
        return NULL;
5245
0
    }
5246
5247
0
    ssl_cert_free(sc->cert);
5248
0
    sc->cert = new_cert;
5249
5250
    /*
5251
     * Program invariant: |sid_ctx| has fixed size (SSL_MAX_SID_CTX_LENGTH),
5252
     * so setter APIs must prevent invalid lengths from entering the system.
5253
     */
5254
0
    if (!ossl_assert(sc->sid_ctx_length <= sizeof(sc->sid_ctx)))
5255
0
        return NULL;
5256
5257
    /*
5258
     * If the session ID context matches that of the parent SSL_CTX,
5259
     * inherit it from the new SSL_CTX as well. If however the context does
5260
     * not match (i.e., it was set per-ssl with SSL_set_session_id_context),
5261
     * leave it unchanged.
5262
     */
5263
0
    if ((ssl->ctx != NULL) && (sc->sid_ctx_length == ssl->ctx->sid_ctx_length) && (memcmp(sc->sid_ctx, ssl->ctx->sid_ctx, sc->sid_ctx_length) == 0)) {
5264
0
        sc->sid_ctx_length = ctx->sid_ctx_length;
5265
0
        memcpy(&sc->sid_ctx, &ctx->sid_ctx, sizeof(sc->sid_ctx));
5266
0
    }
5267
5268
0
    SSL_CTX_up_ref(ctx);
5269
0
    SSL_CTX_free(ssl->ctx); /* decrement reference count */
5270
0
    ssl->ctx = ctx;
5271
5272
0
    return ssl->ctx;
5273
0
}
5274
5275
int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
5276
0
{
5277
0
    return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx,
5278
0
        ctx->propq);
5279
0
}
5280
5281
int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx)
5282
0
{
5283
0
    X509_LOOKUP *lookup;
5284
5285
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir());
5286
0
    if (lookup == NULL)
5287
0
        return 0;
5288
5289
    /* We ignore errors, in case the directory doesn't exist */
5290
0
    ERR_set_mark();
5291
5292
0
    X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
5293
5294
0
    ERR_pop_to_mark();
5295
5296
0
    return 1;
5297
0
}
5298
5299
int SSL_CTX_set_default_verify_file(SSL_CTX *ctx)
5300
0
{
5301
0
    X509_LOOKUP *lookup;
5302
5303
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file());
5304
0
    if (lookup == NULL)
5305
0
        return 0;
5306
5307
    /* We ignore errors, in case the file doesn't exist */
5308
0
    ERR_set_mark();
5309
5310
0
    X509_LOOKUP_load_file_ex(lookup, NULL, X509_FILETYPE_DEFAULT, ctx->libctx,
5311
0
        ctx->propq);
5312
5313
0
    ERR_pop_to_mark();
5314
5315
0
    return 1;
5316
0
}
5317
5318
int SSL_CTX_set_default_verify_store(SSL_CTX *ctx)
5319
0
{
5320
0
    X509_LOOKUP *lookup;
5321
5322
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store());
5323
0
    if (lookup == NULL)
5324
0
        return 0;
5325
5326
    /* We ignore errors, in case the directory doesn't exist */
5327
0
    ERR_set_mark();
5328
5329
0
    X509_LOOKUP_add_store_ex(lookup, NULL, ctx->libctx, ctx->propq);
5330
5331
0
    ERR_pop_to_mark();
5332
5333
0
    return 1;
5334
0
}
5335
5336
int SSL_CTX_load_verify_file(SSL_CTX *ctx, const char *CAfile)
5337
0
{
5338
0
    return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx,
5339
0
        ctx->propq);
5340
0
}
5341
5342
int SSL_CTX_load_verify_dir(SSL_CTX *ctx, const char *CApath)
5343
0
{
5344
0
    return X509_STORE_load_path(ctx->cert_store, CApath);
5345
0
}
5346
5347
int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore)
5348
0
{
5349
0
    return X509_STORE_load_store_ex(ctx->cert_store, CAstore, ctx->libctx,
5350
0
        ctx->propq);
5351
0
}
5352
5353
int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
5354
    const char *CApath)
5355
0
{
5356
0
    if (CAfile == NULL && CApath == NULL)
5357
0
        return 0;
5358
0
    if (CAfile != NULL && !SSL_CTX_load_verify_file(ctx, CAfile))
5359
0
        return 0;
5360
0
    if (CApath != NULL && !SSL_CTX_load_verify_dir(ctx, CApath))
5361
0
        return 0;
5362
0
    return 1;
5363
0
}
5364
5365
void SSL_set_info_callback(SSL *ssl,
5366
    void (*cb)(const SSL *ssl, int type, int val))
5367
0
{
5368
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5369
5370
0
    if (sc == NULL)
5371
0
        return;
5372
5373
0
    sc->info_callback = cb;
5374
0
}
5375
5376
/*
5377
 * One compiler (Diab DCC) doesn't like argument names in returned function
5378
 * pointer.
5379
 */
5380
void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /* ssl */,
5381
    int /* type */,
5382
    int /* val */)
5383
0
{
5384
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5385
5386
0
    if (sc == NULL)
5387
0
        return NULL;
5388
5389
0
    return sc->info_callback;
5390
0
}
5391
5392
void SSL_set_verify_result(SSL *ssl, long arg)
5393
0
{
5394
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5395
5396
0
    if (sc == NULL)
5397
0
        return;
5398
5399
0
    sc->verify_result = arg;
5400
0
}
5401
5402
long SSL_get_verify_result(const SSL *ssl)
5403
0
{
5404
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5405
5406
0
    if (sc == NULL)
5407
0
        return 0;
5408
5409
0
    return sc->verify_result;
5410
0
}
5411
5412
size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen)
5413
0
{
5414
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5415
5416
0
    if (sc == NULL)
5417
0
        return 0;
5418
5419
0
    if (outlen == 0)
5420
0
        return sizeof(sc->s3.client_random);
5421
0
    if (outlen > sizeof(sc->s3.client_random))
5422
0
        outlen = sizeof(sc->s3.client_random);
5423
0
    memcpy(out, sc->s3.client_random, outlen);
5424
0
    return outlen;
5425
0
}
5426
5427
size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen)
5428
0
{
5429
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5430
5431
0
    if (sc == NULL)
5432
0
        return 0;
5433
5434
0
    if (outlen == 0)
5435
0
        return sizeof(sc->s3.server_random);
5436
0
    if (outlen > sizeof(sc->s3.server_random))
5437
0
        outlen = sizeof(sc->s3.server_random);
5438
0
    memcpy(out, sc->s3.server_random, outlen);
5439
0
    return outlen;
5440
0
}
5441
5442
size_t SSL_SESSION_get_master_key(const SSL_SESSION *session,
5443
    unsigned char *out, size_t outlen)
5444
0
{
5445
0
    if (outlen == 0)
5446
0
        return session->master_key_length;
5447
0
    if (outlen > session->master_key_length)
5448
0
        outlen = session->master_key_length;
5449
0
    memcpy(out, session->master_key, outlen);
5450
0
    return outlen;
5451
0
}
5452
5453
int SSL_SESSION_set1_master_key(SSL_SESSION *sess, const unsigned char *in,
5454
    size_t len)
5455
0
{
5456
0
    if (len > sizeof(sess->master_key))
5457
0
        return 0;
5458
5459
0
    memcpy(sess->master_key, in, len);
5460
0
    sess->master_key_length = len;
5461
0
    return 1;
5462
0
}
5463
5464
int SSL_set_ex_data(SSL *s, int idx, void *arg)
5465
0
{
5466
0
    return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
5467
0
}
5468
5469
void *SSL_get_ex_data(const SSL *s, int idx)
5470
0
{
5471
0
    return CRYPTO_get_ex_data(&s->ex_data, idx);
5472
0
}
5473
5474
int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
5475
0
{
5476
0
    return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
5477
0
}
5478
5479
void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
5480
0
{
5481
0
    return CRYPTO_get_ex_data(&s->ex_data, idx);
5482
0
}
5483
5484
X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
5485
0
{
5486
0
    return ctx->cert_store;
5487
0
}
5488
5489
void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
5490
0
{
5491
0
    X509_STORE_free(ctx->cert_store);
5492
0
    ctx->cert_store = store;
5493
0
}
5494
5495
void SSL_CTX_set1_cert_store(SSL_CTX *ctx, X509_STORE *store)
5496
0
{
5497
0
    if (store != NULL)
5498
0
        X509_STORE_up_ref(store);
5499
0
    SSL_CTX_set_cert_store(ctx, store);
5500
0
}
5501
5502
int SSL_want(const SSL *s)
5503
53.6M
{
5504
53.6M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5505
5506
53.6M
#ifndef OPENSSL_NO_QUIC
5507
53.6M
    if (IS_QUIC(s))
5508
0
        return ossl_quic_want(s);
5509
53.6M
#endif
5510
5511
53.6M
    if (sc == NULL)
5512
0
        return SSL_NOTHING;
5513
5514
53.6M
    return sc->rwstate;
5515
53.6M
}
5516
5517
#ifndef OPENSSL_NO_PSK
5518
int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
5519
0
{
5520
0
    if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
5521
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
5522
0
        return 0;
5523
0
    }
5524
0
    OPENSSL_free(ctx->cert->psk_identity_hint);
5525
0
    if (identity_hint != NULL) {
5526
0
        ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
5527
0
        if (ctx->cert->psk_identity_hint == NULL)
5528
0
            return 0;
5529
0
    } else
5530
0
        ctx->cert->psk_identity_hint = NULL;
5531
0
    return 1;
5532
0
}
5533
5534
int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
5535
0
{
5536
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5537
5538
0
    if (sc == NULL)
5539
0
        return 0;
5540
5541
0
    if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
5542
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
5543
0
        return 0;
5544
0
    }
5545
0
    OPENSSL_free(sc->cert->psk_identity_hint);
5546
0
    if (identity_hint != NULL) {
5547
0
        sc->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
5548
0
        if (sc->cert->psk_identity_hint == NULL)
5549
0
            return 0;
5550
0
    } else
5551
0
        sc->cert->psk_identity_hint = NULL;
5552
0
    return 1;
5553
0
}
5554
5555
const char *SSL_get_psk_identity_hint(const SSL *s)
5556
0
{
5557
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5558
5559
0
    if (sc == NULL || sc->session == NULL)
5560
0
        return NULL;
5561
5562
0
    return sc->session->psk_identity_hint;
5563
0
}
5564
5565
const char *SSL_get_psk_identity(const SSL *s)
5566
0
{
5567
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5568
5569
0
    if (sc == NULL || sc->session == NULL)
5570
0
        return NULL;
5571
5572
0
    return sc->session->psk_identity;
5573
0
}
5574
5575
void SSL_set_psk_client_callback(SSL *s, SSL_psk_client_cb_func cb)
5576
0
{
5577
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5578
5579
0
    if (sc == NULL)
5580
0
        return;
5581
5582
0
    sc->psk_client_callback = cb;
5583
0
}
5584
5585
void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, SSL_psk_client_cb_func cb)
5586
0
{
5587
0
    ctx->psk_client_callback = cb;
5588
0
}
5589
5590
void SSL_set_psk_server_callback(SSL *s, SSL_psk_server_cb_func cb)
5591
0
{
5592
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5593
5594
0
    if (sc == NULL)
5595
0
        return;
5596
5597
0
    sc->psk_server_callback = cb;
5598
0
}
5599
5600
void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, SSL_psk_server_cb_func cb)
5601
0
{
5602
0
    ctx->psk_server_callback = cb;
5603
0
}
5604
#endif
5605
5606
void SSL_set_psk_find_session_callback(SSL *s, SSL_psk_find_session_cb_func cb)
5607
0
{
5608
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5609
5610
0
    if (sc == NULL)
5611
0
        return;
5612
5613
0
    sc->psk_find_session_cb = cb;
5614
0
}
5615
5616
void SSL_CTX_set_psk_find_session_callback(SSL_CTX *ctx,
5617
    SSL_psk_find_session_cb_func cb)
5618
0
{
5619
0
    ctx->psk_find_session_cb = cb;
5620
0
}
5621
5622
void SSL_set_psk_use_session_callback(SSL *s, SSL_psk_use_session_cb_func cb)
5623
0
{
5624
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5625
5626
0
    if (sc == NULL)
5627
0
        return;
5628
5629
0
    sc->psk_use_session_cb = cb;
5630
0
}
5631
5632
void SSL_CTX_set_psk_use_session_callback(SSL_CTX *ctx,
5633
    SSL_psk_use_session_cb_func cb)
5634
0
{
5635
0
    ctx->psk_use_session_cb = cb;
5636
0
}
5637
5638
void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
5639
    void (*cb)(int write_p, int version,
5640
        int content_type, const void *buf,
5641
        size_t len, SSL *ssl, void *arg))
5642
0
{
5643
0
    SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
5644
0
}
5645
5646
void SSL_set_msg_callback(SSL *ssl,
5647
    void (*cb)(int write_p, int version,
5648
        int content_type, const void *buf,
5649
        size_t len, SSL *ssl, void *arg))
5650
0
{
5651
0
    SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
5652
0
}
5653
5654
void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
5655
    int (*cb)(SSL *ssl,
5656
        int
5657
            is_forward_secure))
5658
0
{
5659
0
    SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
5660
0
        (void (*)(void))cb);
5661
0
}
5662
5663
void SSL_set_not_resumable_session_callback(SSL *ssl,
5664
    int (*cb)(SSL *ssl,
5665
        int is_forward_secure))
5666
0
{
5667
0
    SSL_callback_ctrl(ssl, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
5668
0
        (void (*)(void))cb);
5669
0
}
5670
5671
void SSL_CTX_set_record_padding_callback(SSL_CTX *ctx,
5672
    size_t (*cb)(SSL *ssl, int type,
5673
        size_t len, void *arg))
5674
0
{
5675
0
    ctx->record_padding_cb = cb;
5676
0
}
5677
5678
void SSL_CTX_set_record_padding_callback_arg(SSL_CTX *ctx, void *arg)
5679
0
{
5680
0
    ctx->record_padding_arg = arg;
5681
0
}
5682
5683
void *SSL_CTX_get_record_padding_callback_arg(const SSL_CTX *ctx)
5684
0
{
5685
0
    return ctx->record_padding_arg;
5686
0
}
5687
5688
int SSL_CTX_set_block_padding_ex(SSL_CTX *ctx, size_t app_block_size,
5689
    size_t hs_block_size)
5690
0
{
5691
0
    if (IS_QUIC_CTX(ctx) && (app_block_size > 1 || hs_block_size > 1))
5692
0
        return 0;
5693
5694
    /* block size of 0 or 1 is basically no padding */
5695
0
    if (app_block_size == 1) {
5696
0
        ctx->block_padding = 0;
5697
0
    } else if (app_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5698
0
        ctx->block_padding = app_block_size;
5699
0
    } else {
5700
0
        return 0;
5701
0
    }
5702
0
    if (hs_block_size == 1) {
5703
0
        ctx->hs_padding = 0;
5704
0
    } else if (hs_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5705
0
        ctx->hs_padding = hs_block_size;
5706
0
    } else {
5707
0
        return 0;
5708
0
    }
5709
0
    return 1;
5710
0
}
5711
5712
int SSL_CTX_set_block_padding(SSL_CTX *ctx, size_t block_size)
5713
0
{
5714
0
    return SSL_CTX_set_block_padding_ex(ctx, block_size, block_size);
5715
0
}
5716
5717
int SSL_set_record_padding_callback(SSL *ssl,
5718
    size_t (*cb)(SSL *ssl, int type,
5719
        size_t len, void *arg))
5720
0
{
5721
0
    BIO *b;
5722
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
5723
5724
0
    if (sc == NULL)
5725
0
        return 0;
5726
5727
0
    b = SSL_get_wbio(ssl);
5728
0
    if (b == NULL || !BIO_get_ktls_send(b)) {
5729
0
        sc->rlayer.record_padding_cb = cb;
5730
0
        return 1;
5731
0
    }
5732
0
    return 0;
5733
0
}
5734
5735
void SSL_set_record_padding_callback_arg(SSL *ssl, void *arg)
5736
0
{
5737
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5738
5739
0
    if (sc == NULL)
5740
0
        return;
5741
5742
0
    sc->rlayer.record_padding_arg = arg;
5743
0
}
5744
5745
void *SSL_get_record_padding_callback_arg(const SSL *ssl)
5746
0
{
5747
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5748
5749
0
    if (sc == NULL)
5750
0
        return NULL;
5751
5752
0
    return sc->rlayer.record_padding_arg;
5753
0
}
5754
5755
int SSL_set_block_padding_ex(SSL *ssl, size_t app_block_size,
5756
    size_t hs_block_size)
5757
0
{
5758
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5759
5760
0
    if (sc == NULL
5761
0
        || (IS_QUIC(ssl)
5762
0
            && (app_block_size > 1 || hs_block_size > 1)))
5763
0
        return 0;
5764
5765
    /* block size of 0 or 1 is basically no padding */
5766
0
    if (app_block_size == 1) {
5767
0
        sc->rlayer.block_padding = 0;
5768
0
    } else if (app_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5769
0
        sc->rlayer.block_padding = app_block_size;
5770
0
    } else {
5771
0
        return 0;
5772
0
    }
5773
0
    if (hs_block_size == 1) {
5774
0
        sc->rlayer.hs_padding = 0;
5775
0
    } else if (hs_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5776
0
        sc->rlayer.hs_padding = hs_block_size;
5777
0
    } else {
5778
0
        return 0;
5779
0
    }
5780
0
    return 1;
5781
0
}
5782
5783
int SSL_set_block_padding(SSL *ssl, size_t block_size)
5784
0
{
5785
0
    return SSL_set_block_padding_ex(ssl, block_size, block_size);
5786
0
}
5787
5788
int SSL_set_num_tickets(SSL *s, size_t num_tickets)
5789
0
{
5790
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5791
5792
0
    if (sc == NULL)
5793
0
        return 0;
5794
5795
0
    sc->num_tickets = num_tickets;
5796
5797
0
    return 1;
5798
0
}
5799
5800
size_t SSL_get_num_tickets(const SSL *s)
5801
0
{
5802
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5803
5804
0
    if (sc == NULL)
5805
0
        return 0;
5806
5807
0
    return sc->num_tickets;
5808
0
}
5809
5810
int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets)
5811
0
{
5812
0
    ctx->num_tickets = num_tickets;
5813
5814
0
    return 1;
5815
0
}
5816
5817
size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx)
5818
0
{
5819
0
    return ctx->num_tickets;
5820
0
}
5821
5822
/* Retrieve handshake hashes */
5823
int ssl_handshake_hash(SSL_CONNECTION *s,
5824
    unsigned char *out, size_t outlen,
5825
    size_t *hashlen)
5826
177k
{
5827
177k
    EVP_MD_CTX *ctx = NULL;
5828
177k
    EVP_MD_CTX *hdgst = s->s3.handshake_dgst;
5829
177k
    int hashleni = EVP_MD_CTX_get_size(hdgst);
5830
177k
    int ret = 0;
5831
5832
177k
    if (hashleni < 0 || (size_t)hashleni > outlen) {
5833
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5834
0
        goto err;
5835
0
    }
5836
5837
177k
    ctx = EVP_MD_CTX_new();
5838
177k
    if (ctx == NULL) {
5839
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5840
0
        goto err;
5841
0
    }
5842
5843
177k
    if (!EVP_MD_CTX_copy_ex(ctx, hdgst)
5844
177k
        || EVP_DigestFinal_ex(ctx, out, NULL) <= 0) {
5845
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5846
0
        goto err;
5847
0
    }
5848
5849
177k
    *hashlen = hashleni;
5850
5851
177k
    ret = 1;
5852
177k
err:
5853
177k
    EVP_MD_CTX_free(ctx);
5854
177k
    return ret;
5855
177k
}
5856
5857
int SSL_session_reused(const SSL *s)
5858
0
{
5859
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5860
5861
0
    if (sc == NULL)
5862
0
        return 0;
5863
5864
0
    return sc->hit;
5865
0
}
5866
5867
int SSL_is_server(const SSL *s)
5868
0
{
5869
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5870
5871
0
    if (sc == NULL)
5872
0
        return 0;
5873
5874
0
    return sc->server;
5875
0
}
5876
5877
#ifndef OPENSSL_NO_DEPRECATED_1_1_0
5878
void SSL_set_debug(SSL *s, int debug)
5879
0
{
5880
    /* Old function was do-nothing anyway... */
5881
0
    (void)s;
5882
0
    (void)debug;
5883
0
}
5884
#endif
5885
5886
void SSL_set_security_level(SSL *s, int level)
5887
0
{
5888
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5889
5890
0
    if (sc == NULL)
5891
0
        return;
5892
5893
0
    sc->cert->sec_level = level;
5894
0
}
5895
5896
int SSL_get_security_level(const SSL *s)
5897
10.7M
{
5898
10.7M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5899
5900
10.7M
    if (sc == NULL)
5901
0
        return 0;
5902
5903
10.7M
    return sc->cert->sec_level;
5904
10.7M
}
5905
5906
void SSL_set_security_callback(SSL *s,
5907
    int (*cb)(const SSL *s, const SSL_CTX *ctx,
5908
        int op, int bits, int nid,
5909
        void *other, void *ex))
5910
0
{
5911
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5912
5913
0
    if (sc == NULL)
5914
0
        return;
5915
5916
0
    sc->cert->sec_cb = cb;
5917
0
}
5918
5919
int (*SSL_get_security_callback(const SSL *s))(const SSL *s,
5920
    const SSL_CTX *ctx, int op,
5921
    int bits, int nid, void *other,
5922
    void *ex)
5923
0
{
5924
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5925
5926
0
    if (sc == NULL)
5927
0
        return NULL;
5928
5929
0
    return sc->cert->sec_cb;
5930
0
}
5931
5932
void SSL_set0_security_ex_data(SSL *s, void *ex)
5933
0
{
5934
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5935
5936
0
    if (sc == NULL)
5937
0
        return;
5938
5939
0
    sc->cert->sec_ex = ex;
5940
0
}
5941
5942
void *SSL_get0_security_ex_data(const SSL *s)
5943
0
{
5944
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5945
5946
0
    if (sc == NULL)
5947
0
        return NULL;
5948
5949
0
    return sc->cert->sec_ex;
5950
0
}
5951
5952
void SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
5953
0
{
5954
0
    ctx->cert->sec_level = level;
5955
0
}
5956
5957
int SSL_CTX_get_security_level(const SSL_CTX *ctx)
5958
154k
{
5959
154k
    return ctx->cert->sec_level;
5960
154k
}
5961
5962
void SSL_CTX_set_security_callback(SSL_CTX *ctx,
5963
    int (*cb)(const SSL *s, const SSL_CTX *ctx,
5964
        int op, int bits, int nid,
5965
        void *other, void *ex))
5966
0
{
5967
0
    ctx->cert->sec_cb = cb;
5968
0
}
5969
5970
int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx))(const SSL *s,
5971
    const SSL_CTX *ctx,
5972
    int op, int bits,
5973
    int nid,
5974
    void *other,
5975
    void *ex)
5976
0
{
5977
0
    return ctx->cert->sec_cb;
5978
0
}
5979
5980
void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex)
5981
0
{
5982
0
    ctx->cert->sec_ex = ex;
5983
0
}
5984
5985
void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx)
5986
0
{
5987
0
    return ctx->cert->sec_ex;
5988
0
}
5989
5990
uint64_t SSL_CTX_get_options(const SSL_CTX *ctx)
5991
0
{
5992
0
    return ctx->options;
5993
0
}
5994
5995
uint64_t SSL_get_options(const SSL *s)
5996
123k
{
5997
123k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5998
5999
123k
#ifndef OPENSSL_NO_QUIC
6000
123k
    if (IS_QUIC(s))
6001
0
        return ossl_quic_get_options(s);
6002
123k
#endif
6003
6004
123k
    if (sc == NULL)
6005
0
        return 0;
6006
6007
123k
    return sc->options;
6008
123k
}
6009
6010
uint64_t SSL_CTX_set_options(SSL_CTX *ctx, uint64_t op)
6011
0
{
6012
0
    return ctx->options |= op;
6013
0
}
6014
6015
uint64_t SSL_set_options(SSL *s, uint64_t op)
6016
0
{
6017
0
    SSL_CONNECTION *sc;
6018
0
    OSSL_PARAM options[2], *opts = options;
6019
6020
0
#ifndef OPENSSL_NO_QUIC
6021
0
    if (IS_QUIC(s))
6022
0
        return ossl_quic_set_options(s, op);
6023
0
#endif
6024
6025
0
    sc = SSL_CONNECTION_FROM_SSL(s);
6026
0
    if (sc == NULL)
6027
0
        return 0;
6028
6029
0
    sc->options |= op;
6030
6031
0
    *opts++ = OSSL_PARAM_construct_uint64(OSSL_LIBSSL_RECORD_LAYER_PARAM_OPTIONS,
6032
0
        &sc->options);
6033
0
    *opts = OSSL_PARAM_construct_end();
6034
6035
    /* Ignore return value */
6036
0
    sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
6037
0
    sc->rlayer.wrlmethod->set_options(sc->rlayer.wrl, options);
6038
6039
0
    return sc->options;
6040
0
}
6041
6042
uint64_t SSL_CTX_clear_options(SSL_CTX *ctx, uint64_t op)
6043
0
{
6044
0
    return ctx->options &= ~op;
6045
0
}
6046
6047
uint64_t SSL_clear_options(SSL *s, uint64_t op)
6048
20.9k
{
6049
20.9k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6050
20.9k
    OSSL_PARAM options[2], *opts = options;
6051
6052
20.9k
#ifndef OPENSSL_NO_QUIC
6053
20.9k
    if (IS_QUIC(s))
6054
0
        return ossl_quic_clear_options(s, op);
6055
20.9k
#endif
6056
6057
20.9k
    if (sc == NULL)
6058
0
        return 0;
6059
6060
20.9k
    sc->options &= ~op;
6061
6062
20.9k
    *opts++ = OSSL_PARAM_construct_uint64(OSSL_LIBSSL_RECORD_LAYER_PARAM_OPTIONS,
6063
20.9k
        &sc->options);
6064
20.9k
    *opts = OSSL_PARAM_construct_end();
6065
6066
    /* Ignore return value */
6067
20.9k
    sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
6068
20.9k
    sc->rlayer.wrlmethod->set_options(sc->rlayer.wrl, options);
6069
6070
20.9k
    return sc->options;
6071
20.9k
}
6072
6073
STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s)
6074
0
{
6075
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6076
6077
0
    if (sc == NULL)
6078
0
        return NULL;
6079
6080
0
    return sc->verified_chain;
6081
0
}
6082
6083
IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);
6084
6085
#ifndef OPENSSL_NO_CT
6086
6087
/*
6088
 * Moves SCTs from the |src| stack to the |dst| stack.
6089
 * The source of each SCT will be set to |origin|.
6090
 * If |dst| points to a NULL pointer, a new stack will be created and owned by
6091
 * the caller.
6092
 * Returns the number of SCTs moved, or a negative integer if an error occurs.
6093
 * The |dst| stack is created and possibly partially populated even in case
6094
 * of error, likewise the |src| stack may be left in an intermediate state.
6095
 */
6096
static int ct_move_scts(STACK_OF(SCT) **dst, STACK_OF(SCT) *src,
6097
    sct_source_t origin)
6098
0
{
6099
0
    int scts_moved = 0;
6100
0
    SCT *sct = NULL;
6101
6102
0
    if (*dst == NULL) {
6103
0
        *dst = sk_SCT_new_null();
6104
0
        if (*dst == NULL) {
6105
0
            ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
6106
0
            goto err;
6107
0
        }
6108
0
    }
6109
6110
0
    while ((sct = sk_SCT_pop(src)) != NULL) {
6111
0
        if (SCT_set_source(sct, origin) != 1)
6112
0
            goto err;
6113
6114
0
        if (!sk_SCT_push(*dst, sct))
6115
0
            goto err;
6116
0
        scts_moved += 1;
6117
0
    }
6118
6119
0
    return scts_moved;
6120
0
err:
6121
0
    SCT_free(sct);
6122
0
    return -1;
6123
0
}
6124
6125
/*
6126
 * Look for data collected during ServerHello and parse if found.
6127
 * Returns the number of SCTs extracted.
6128
 */
6129
static int ct_extract_tls_extension_scts(SSL_CONNECTION *s)
6130
0
{
6131
0
    int scts_extracted = 0;
6132
6133
0
    if (s->ext.scts != NULL) {
6134
0
        const unsigned char *p = s->ext.scts;
6135
0
        STACK_OF(SCT) *scts = o2i_SCT_LIST(NULL, &p, s->ext.scts_len);
6136
6137
0
        scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_TLS_EXTENSION);
6138
6139
0
        SCT_LIST_free(scts);
6140
0
    }
6141
6142
0
    return scts_extracted;
6143
0
}
6144
6145
/*
6146
 * Checks for an OCSP response and then attempts to extract any SCTs found if it
6147
 * contains an SCT X509 extension. They will be stored in |s->scts|.
6148
 * Returns:
6149
 * - The number of SCTs extracted, assuming an OCSP response exists.
6150
 * - 0 if no OCSP response exists or it contains no SCTs.
6151
 * - A negative integer if an error occurs.
6152
 */
6153
static int ct_extract_ocsp_response_scts(SSL_CONNECTION *s)
6154
0
{
6155
0
#ifndef OPENSSL_NO_OCSP
6156
0
    int scts_extracted = 0;
6157
0
    const unsigned char *p;
6158
0
    OCSP_BASICRESP *br = NULL;
6159
0
    OCSP_RESPONSE *rsp = NULL;
6160
0
    STACK_OF(SCT) *scts = NULL;
6161
0
    int i;
6162
6163
0
    if (s->ext.ocsp.resp == NULL || s->ext.ocsp.resp_len == 0)
6164
0
        goto err;
6165
6166
0
    p = s->ext.ocsp.resp;
6167
0
    rsp = d2i_OCSP_RESPONSE(NULL, &p, (int)s->ext.ocsp.resp_len);
6168
0
    if (rsp == NULL)
6169
0
        goto err;
6170
6171
0
    br = OCSP_response_get1_basic(rsp);
6172
0
    if (br == NULL)
6173
0
        goto err;
6174
6175
0
    for (i = 0; i < OCSP_resp_count(br); ++i) {
6176
0
        OCSP_SINGLERESP *single = OCSP_resp_get0(br, i);
6177
6178
0
        if (single == NULL)
6179
0
            continue;
6180
6181
0
        scts = OCSP_SINGLERESP_get1_ext_d2i(single, NID_ct_cert_scts, NULL, NULL);
6182
0
        scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_OCSP_STAPLED_RESPONSE);
6183
0
        if (scts_extracted < 0)
6184
0
            goto err;
6185
0
    }
6186
0
err:
6187
0
    SCT_LIST_free(scts);
6188
0
    OCSP_BASICRESP_free(br);
6189
0
    OCSP_RESPONSE_free(rsp);
6190
0
    return scts_extracted;
6191
#else
6192
    /* Behave as if no OCSP response exists */
6193
    return 0;
6194
#endif
6195
0
}
6196
6197
/*
6198
 * Attempts to extract SCTs from the peer certificate.
6199
 * Return the number of SCTs extracted, or a negative integer if an error
6200
 * occurs.
6201
 */
6202
static int ct_extract_x509v3_extension_scts(SSL_CONNECTION *s)
6203
0
{
6204
0
    int scts_extracted = 0;
6205
0
    X509 *cert = s->session != NULL ? s->session->peer : NULL;
6206
6207
0
    if (cert != NULL) {
6208
0
        STACK_OF(SCT) *scts = X509_get_ext_d2i(cert, NID_ct_precert_scts, NULL, NULL);
6209
6210
0
        scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_X509V3_EXTENSION);
6211
6212
0
        SCT_LIST_free(scts);
6213
0
    }
6214
6215
0
    return scts_extracted;
6216
0
}
6217
6218
/*
6219
 * Attempts to find all received SCTs by checking TLS extensions, the OCSP
6220
 * response (if it exists) and X509v3 extensions in the certificate.
6221
 * Returns NULL if an error occurs.
6222
 */
6223
const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s)
6224
0
{
6225
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6226
6227
0
    if (sc == NULL)
6228
0
        return NULL;
6229
6230
0
    if (!sc->scts_parsed) {
6231
0
        if (ct_extract_tls_extension_scts(sc) < 0 || ct_extract_ocsp_response_scts(sc) < 0 || ct_extract_x509v3_extension_scts(sc) < 0)
6232
0
            goto err;
6233
6234
0
        sc->scts_parsed = 1;
6235
0
    }
6236
0
    return sc->scts;
6237
0
err:
6238
0
    return NULL;
6239
0
}
6240
6241
static int ct_permissive(const CT_POLICY_EVAL_CTX *ctx,
6242
    const STACK_OF(SCT) *scts, void *unused_arg)
6243
0
{
6244
0
    return 1;
6245
0
}
6246
6247
static int ct_strict(const CT_POLICY_EVAL_CTX *ctx,
6248
    const STACK_OF(SCT) *scts, void *unused_arg)
6249
0
{
6250
0
    int count = scts != NULL ? sk_SCT_num(scts) : 0;
6251
0
    int i;
6252
6253
0
    for (i = 0; i < count; ++i) {
6254
0
        SCT *sct = sk_SCT_value(scts, i);
6255
0
        int status = SCT_get_validation_status(sct);
6256
6257
0
        if (status == SCT_VALIDATION_STATUS_VALID)
6258
0
            return 1;
6259
0
    }
6260
0
    ERR_raise(ERR_LIB_SSL, SSL_R_NO_VALID_SCTS);
6261
0
    return 0;
6262
0
}
6263
6264
int SSL_set_ct_validation_callback(SSL *s, ssl_ct_validation_cb callback,
6265
    void *arg)
6266
61.4k
{
6267
61.4k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6268
6269
61.4k
    if (sc == NULL)
6270
0
        return 0;
6271
6272
    /*
6273
     * Since code exists that uses the custom extension handler for CT, look
6274
     * for this and throw an error if they have already registered to use CT.
6275
     */
6276
61.4k
    if (callback != NULL && SSL_CTX_has_client_custom_ext(s->ctx, TLSEXT_TYPE_signed_certificate_timestamp)) {
6277
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
6278
0
        return 0;
6279
0
    }
6280
6281
61.4k
    if (callback != NULL) {
6282
        /*
6283
         * If we are validating CT, then we MUST accept SCTs served via OCSP
6284
         */
6285
0
        if (!SSL_set_tlsext_status_type(s, TLSEXT_STATUSTYPE_ocsp))
6286
0
            return 0;
6287
0
    }
6288
6289
61.4k
    sc->ct_validation_callback = callback;
6290
61.4k
    sc->ct_validation_callback_arg = arg;
6291
6292
61.4k
    return 1;
6293
61.4k
}
6294
6295
int SSL_CTX_set_ct_validation_callback(SSL_CTX *ctx,
6296
    ssl_ct_validation_cb callback, void *arg)
6297
0
{
6298
    /*
6299
     * Since code exists that uses the custom extension handler for CT, look for
6300
     * this and throw an error if they have already registered to use CT.
6301
     */
6302
0
    if (callback != NULL && SSL_CTX_has_client_custom_ext(ctx, TLSEXT_TYPE_signed_certificate_timestamp)) {
6303
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
6304
0
        return 0;
6305
0
    }
6306
6307
0
    ctx->ct_validation_callback = callback;
6308
0
    ctx->ct_validation_callback_arg = arg;
6309
0
    return 1;
6310
0
}
6311
6312
int SSL_ct_is_enabled(const SSL *s)
6313
0
{
6314
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6315
6316
0
    if (sc == NULL)
6317
0
        return 0;
6318
6319
0
    return sc->ct_validation_callback != NULL;
6320
0
}
6321
6322
int SSL_CTX_ct_is_enabled(const SSL_CTX *ctx)
6323
0
{
6324
0
    return ctx->ct_validation_callback != NULL;
6325
0
}
6326
6327
int ssl_validate_ct(SSL_CONNECTION *s)
6328
0
{
6329
0
    int ret = 0;
6330
0
    X509 *cert = s->session != NULL ? s->session->peer : NULL;
6331
0
    X509 *issuer;
6332
0
    SSL_DANE *dane = &s->dane;
6333
0
    CT_POLICY_EVAL_CTX *ctx = NULL;
6334
0
    const STACK_OF(SCT) *scts;
6335
6336
    /*
6337
     * If no callback is set, the peer is anonymous, or its chain is invalid,
6338
     * skip SCT validation - just return success.  Applications that continue
6339
     * handshakes without certificates, with unverified chains, or pinned leaf
6340
     * certificates are outside the scope of the WebPKI and CT.
6341
     *
6342
     * The above exclusions notwithstanding the vast majority of peers will
6343
     * have rather ordinary certificate chains validated by typical
6344
     * applications that perform certificate verification and therefore will
6345
     * process SCTs when enabled.
6346
     */
6347
0
    if (s->ct_validation_callback == NULL || cert == NULL || s->verify_result != X509_V_OK || s->verified_chain == NULL || sk_X509_num(s->verified_chain) <= 1)
6348
0
        return 1;
6349
6350
    /*
6351
     * CT not applicable for chains validated via DANE-TA(2) or DANE-EE(3)
6352
     * trust-anchors.  See https://tools.ietf.org/html/rfc7671#section-4.2
6353
     */
6354
0
    if (DANETLS_ENABLED(dane) && dane->mtlsa != NULL) {
6355
0
        switch (dane->mtlsa->usage) {
6356
0
        case DANETLS_USAGE_DANE_TA:
6357
0
        case DANETLS_USAGE_DANE_EE:
6358
0
            return 1;
6359
0
        }
6360
0
    }
6361
6362
0
    ctx = CT_POLICY_EVAL_CTX_new_ex(SSL_CONNECTION_GET_CTX(s)->libctx,
6363
0
        SSL_CONNECTION_GET_CTX(s)->propq);
6364
0
    if (ctx == NULL) {
6365
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CT_LIB);
6366
0
        goto end;
6367
0
    }
6368
6369
0
    issuer = sk_X509_value(s->verified_chain, 1);
6370
0
    CT_POLICY_EVAL_CTX_set1_cert(ctx, cert);
6371
0
    CT_POLICY_EVAL_CTX_set1_issuer(ctx, issuer);
6372
0
    CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE(ctx,
6373
0
        SSL_CONNECTION_GET_CTX(s)->ctlog_store);
6374
0
    CT_POLICY_EVAL_CTX_set_time(
6375
0
        ctx, (uint64_t)SSL_SESSION_get_time_ex(s->session) * 1000);
6376
6377
0
    scts = SSL_get0_peer_scts(SSL_CONNECTION_GET_SSL(s));
6378
6379
    /*
6380
     * This function returns success (> 0) only when all the SCTs are valid, 0
6381
     * when some are invalid, and < 0 on various internal errors (out of
6382
     * memory, etc.).  Having some, or even all, invalid SCTs is not sufficient
6383
     * reason to abort the handshake, that decision is up to the callback.
6384
     * Therefore, we error out only in the unexpected case that the return
6385
     * value is negative.
6386
     *
6387
     * XXX: One might well argue that the return value of this function is an
6388
     * unfortunate design choice.  Its job is only to determine the validation
6389
     * status of each of the provided SCTs.  So long as it correctly separates
6390
     * the wheat from the chaff it should return success.  Failure in this case
6391
     * ought to correspond to an inability to carry out its duties.
6392
     */
6393
0
    if (SCT_LIST_validate(scts, ctx) < 0) {
6394
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_SCT_VERIFICATION_FAILED);
6395
0
        goto end;
6396
0
    }
6397
6398
0
    ret = s->ct_validation_callback(ctx, scts, s->ct_validation_callback_arg);
6399
0
    if (ret < 0)
6400
0
        ret = 0; /* This function returns 0 on failure */
6401
0
    if (!ret)
6402
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_CALLBACK_FAILED);
6403
6404
0
end:
6405
0
    CT_POLICY_EVAL_CTX_free(ctx);
6406
    /*
6407
     * With SSL_VERIFY_NONE the session may be cached and reused despite a
6408
     * failure return code here.  Also the application may wish the complete
6409
     * the handshake, and then disconnect cleanly at a higher layer, after
6410
     * checking the verification status of the completed connection.
6411
     *
6412
     * We therefore force a certificate verification failure which will be
6413
     * visible via SSL_get_verify_result() and cached as part of any resumed
6414
     * session.
6415
     *
6416
     * Note: the permissive callback is for information gathering only, always
6417
     * returns success, and does not affect verification status.  Only the
6418
     * strict callback or a custom application-specified callback can trigger
6419
     * connection failure or record a verification error.
6420
     */
6421
0
    if (ret <= 0)
6422
0
        s->verify_result = X509_V_ERR_NO_VALID_SCTS;
6423
0
    return ret;
6424
0
}
6425
6426
int SSL_CTX_enable_ct(SSL_CTX *ctx, int validation_mode)
6427
0
{
6428
0
    switch (validation_mode) {
6429
0
    default:
6430
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
6431
0
        return 0;
6432
0
    case SSL_CT_VALIDATION_PERMISSIVE:
6433
0
        return SSL_CTX_set_ct_validation_callback(ctx, ct_permissive, NULL);
6434
0
    case SSL_CT_VALIDATION_STRICT:
6435
0
        return SSL_CTX_set_ct_validation_callback(ctx, ct_strict, NULL);
6436
0
    }
6437
0
}
6438
6439
int SSL_enable_ct(SSL *s, int validation_mode)
6440
0
{
6441
0
    switch (validation_mode) {
6442
0
    default:
6443
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
6444
0
        return 0;
6445
0
    case SSL_CT_VALIDATION_PERMISSIVE:
6446
0
        return SSL_set_ct_validation_callback(s, ct_permissive, NULL);
6447
0
    case SSL_CT_VALIDATION_STRICT:
6448
0
        return SSL_set_ct_validation_callback(s, ct_strict, NULL);
6449
0
    }
6450
0
}
6451
6452
int SSL_CTX_set_default_ctlog_list_file(SSL_CTX *ctx)
6453
0
{
6454
0
    return CTLOG_STORE_load_default_file(ctx->ctlog_store);
6455
0
}
6456
6457
int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
6458
0
{
6459
0
    return CTLOG_STORE_load_file(ctx->ctlog_store, path);
6460
0
}
6461
6462
void SSL_CTX_set0_ctlog_store(SSL_CTX *ctx, CTLOG_STORE *logs)
6463
0
{
6464
0
    CTLOG_STORE_free(ctx->ctlog_store);
6465
0
    ctx->ctlog_store = logs;
6466
0
}
6467
6468
const CTLOG_STORE *SSL_CTX_get0_ctlog_store(const SSL_CTX *ctx)
6469
0
{
6470
0
    return ctx->ctlog_store;
6471
0
}
6472
6473
#endif /* OPENSSL_NO_CT */
6474
6475
void SSL_CTX_set_client_hello_cb(SSL_CTX *c, SSL_client_hello_cb_fn cb,
6476
    void *arg)
6477
0
{
6478
0
    c->client_hello_cb = cb;
6479
0
    c->client_hello_cb_arg = arg;
6480
0
}
6481
6482
int SSL_client_hello_isv2(SSL *s)
6483
0
{
6484
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6485
6486
0
    if (sc == NULL)
6487
0
        return 0;
6488
6489
0
    if (sc->clienthello == NULL)
6490
0
        return 0;
6491
0
    return sc->clienthello->isv2;
6492
0
}
6493
6494
unsigned int SSL_client_hello_get0_legacy_version(SSL *s)
6495
0
{
6496
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6497
6498
0
    if (sc == NULL)
6499
0
        return 0;
6500
6501
0
    if (sc->clienthello == NULL)
6502
0
        return 0;
6503
0
    return sc->clienthello->legacy_version;
6504
0
}
6505
6506
size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out)
6507
0
{
6508
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6509
6510
0
    if (sc == NULL)
6511
0
        return 0;
6512
6513
0
    if (sc->clienthello == NULL)
6514
0
        return 0;
6515
0
    if (out != NULL)
6516
0
        *out = sc->clienthello->random;
6517
0
    return SSL3_RANDOM_SIZE;
6518
0
}
6519
6520
size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out)
6521
0
{
6522
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6523
6524
0
    if (sc == NULL)
6525
0
        return 0;
6526
6527
0
    if (sc->clienthello == NULL)
6528
0
        return 0;
6529
0
    if (out != NULL)
6530
0
        *out = sc->clienthello->session_id;
6531
0
    return sc->clienthello->session_id_len;
6532
0
}
6533
6534
size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out)
6535
0
{
6536
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6537
6538
0
    if (sc == NULL)
6539
0
        return 0;
6540
6541
0
    if (sc->clienthello == NULL)
6542
0
        return 0;
6543
0
    if (out != NULL)
6544
0
        *out = PACKET_data(&sc->clienthello->ciphersuites);
6545
0
    return PACKET_remaining(&sc->clienthello->ciphersuites);
6546
0
}
6547
6548
size_t SSL_client_hello_get0_compression_methods(SSL *s, const unsigned char **out)
6549
0
{
6550
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6551
6552
0
    if (sc == NULL)
6553
0
        return 0;
6554
6555
0
    if (sc->clienthello == NULL)
6556
0
        return 0;
6557
0
    if (out != NULL)
6558
0
        *out = sc->clienthello->compressions;
6559
0
    return sc->clienthello->compressions_len;
6560
0
}
6561
6562
int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen)
6563
0
{
6564
0
    RAW_EXTENSION *ext;
6565
0
    int *present;
6566
0
    size_t num = 0, i;
6567
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6568
6569
0
    if (sc == NULL)
6570
0
        return 0;
6571
6572
0
    if (sc->clienthello == NULL || out == NULL || outlen == NULL)
6573
0
        return 0;
6574
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6575
0
        ext = sc->clienthello->pre_proc_exts + i;
6576
0
        if (ext->present)
6577
0
            num++;
6578
0
    }
6579
0
    if (num == 0) {
6580
0
        *out = NULL;
6581
0
        *outlen = 0;
6582
0
        return 1;
6583
0
    }
6584
0
    if ((present = OPENSSL_malloc(sizeof(*present) * num)) == NULL)
6585
0
        return 0;
6586
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6587
0
        ext = sc->clienthello->pre_proc_exts + i;
6588
0
        if (ext->present) {
6589
0
            if (ext->received_order >= num)
6590
0
                goto err;
6591
0
            present[ext->received_order] = ext->type;
6592
0
        }
6593
0
    }
6594
0
    *out = present;
6595
0
    *outlen = num;
6596
0
    return 1;
6597
0
err:
6598
0
    OPENSSL_free(present);
6599
0
    return 0;
6600
0
}
6601
6602
int SSL_client_hello_get_extension_order(SSL *s, uint16_t *exts, size_t *num_exts)
6603
0
{
6604
0
    RAW_EXTENSION *ext;
6605
0
    size_t num = 0, i;
6606
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6607
6608
0
    if (sc == NULL)
6609
0
        return 0;
6610
6611
0
    if (sc->clienthello == NULL || num_exts == NULL)
6612
0
        return 0;
6613
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6614
0
        ext = sc->clienthello->pre_proc_exts + i;
6615
0
        if (ext->present)
6616
0
            num++;
6617
0
    }
6618
0
    if (num == 0) {
6619
0
        *num_exts = 0;
6620
0
        return 1;
6621
0
    }
6622
0
    if (exts == NULL) {
6623
0
        *num_exts = num;
6624
0
        return 1;
6625
0
    }
6626
0
    if (*num_exts < num)
6627
0
        return 0;
6628
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6629
0
        ext = sc->clienthello->pre_proc_exts + i;
6630
0
        if (ext->present) {
6631
0
            if (ext->received_order >= num)
6632
0
                return 0;
6633
0
            exts[ext->received_order] = ext->type;
6634
0
        }
6635
0
    }
6636
0
    *num_exts = num;
6637
0
    return 1;
6638
0
}
6639
6640
int SSL_client_hello_get0_ext(SSL *s, unsigned int type, const unsigned char **out,
6641
    size_t *outlen)
6642
0
{
6643
0
    size_t i;
6644
0
    RAW_EXTENSION *r;
6645
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6646
6647
0
    if (sc == NULL)
6648
0
        return 0;
6649
6650
0
    if (sc->clienthello == NULL)
6651
0
        return 0;
6652
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; ++i) {
6653
0
        r = sc->clienthello->pre_proc_exts + i;
6654
0
        if (r->present && r->type == type) {
6655
0
            if (out != NULL)
6656
0
                *out = PACKET_data(&r->data);
6657
0
            if (outlen != NULL)
6658
0
                *outlen = PACKET_remaining(&r->data);
6659
0
            return 1;
6660
0
        }
6661
0
    }
6662
0
    return 0;
6663
0
}
6664
6665
int SSL_free_buffers(SSL *ssl)
6666
0
{
6667
0
    RECORD_LAYER *rl;
6668
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
6669
6670
0
    if (sc == NULL)
6671
0
        return 0;
6672
6673
0
    rl = &sc->rlayer;
6674
6675
0
    return rl->rrlmethod->free_buffers(rl->rrl)
6676
0
        && rl->wrlmethod->free_buffers(rl->wrl);
6677
0
}
6678
6679
int SSL_alloc_buffers(SSL *ssl)
6680
0
{
6681
0
    RECORD_LAYER *rl;
6682
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
6683
6684
0
    if (sc == NULL)
6685
0
        return 0;
6686
6687
    /* QUIC always has buffers allocated. */
6688
0
    if (IS_QUIC(ssl))
6689
0
        return 1;
6690
6691
0
    rl = &sc->rlayer;
6692
6693
0
    return rl->rrlmethod->alloc_buffers(rl->rrl)
6694
0
        && rl->wrlmethod->alloc_buffers(rl->wrl);
6695
0
}
6696
6697
void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb)
6698
0
{
6699
0
    ctx->keylog_callback = cb;
6700
0
}
6701
6702
SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx)
6703
0
{
6704
0
    return ctx->keylog_callback;
6705
0
}
6706
6707
static int nss_keylog_int(const char *prefix,
6708
    SSL_CONNECTION *sc,
6709
    const uint8_t *parameter_1,
6710
    size_t parameter_1_len,
6711
    const uint8_t *parameter_2,
6712
    size_t parameter_2_len)
6713
49.9k
{
6714
49.9k
    char *out = NULL;
6715
49.9k
    char *cursor = NULL;
6716
49.9k
    size_t out_len = 0, i, prefix_len;
6717
49.9k
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(sc);
6718
6719
49.9k
    if (sctx->keylog_callback == NULL)
6720
49.9k
        return 1;
6721
6722
    /*
6723
     * Our output buffer will contain the following strings, rendered with
6724
     * space characters in between, terminated by a NULL character: first the
6725
     * prefix, then the first parameter, then the second parameter. The
6726
     * meaning of each parameter depends on the specific key material being
6727
     * logged. Note that the first and second parameters are encoded in
6728
     * hexadecimal, so we need a buffer that is twice their lengths.
6729
     */
6730
0
    prefix_len = strlen(prefix);
6731
0
    out_len = prefix_len + (2 * parameter_1_len) + (2 * parameter_2_len) + 3;
6732
0
    if ((out = cursor = OPENSSL_malloc(out_len)) == NULL)
6733
0
        return 0;
6734
6735
0
    memcpy(cursor, prefix, prefix_len);
6736
0
    cursor += prefix_len;
6737
0
    *cursor++ = ' ';
6738
6739
0
    for (i = 0; i < parameter_1_len; ++i)
6740
0
        cursor += ossl_to_lowerhex(cursor, parameter_1[i]);
6741
0
    *cursor++ = ' ';
6742
6743
0
    for (i = 0; i < parameter_2_len; ++i)
6744
0
        cursor += ossl_to_lowerhex(cursor, parameter_2[i]);
6745
0
    *cursor = '\0';
6746
6747
0
    sctx->keylog_callback(SSL_CONNECTION_GET_USER_SSL(sc), (const char *)out);
6748
0
    OPENSSL_clear_free(out, out_len);
6749
0
    return 1;
6750
0
}
6751
6752
int ssl_log_rsa_client_key_exchange(SSL_CONNECTION *sc,
6753
    const uint8_t *encrypted_premaster,
6754
    size_t encrypted_premaster_len,
6755
    const uint8_t *premaster,
6756
    size_t premaster_len)
6757
4.80k
{
6758
4.80k
    if (encrypted_premaster_len < 8) {
6759
0
        SSLfatal(sc, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
6760
0
        return 0;
6761
0
    }
6762
6763
    /* We only want the first 8 bytes of the encrypted premaster as a tag. */
6764
4.80k
    return nss_keylog_int("RSA",
6765
4.80k
        sc,
6766
4.80k
        encrypted_premaster,
6767
4.80k
        8,
6768
4.80k
        premaster,
6769
4.80k
        premaster_len);
6770
4.80k
}
6771
6772
int ssl_log_secret(SSL_CONNECTION *sc,
6773
    const char *label,
6774
    const uint8_t *secret,
6775
    size_t secret_len)
6776
112k
{
6777
112k
    return nss_keylog_int(label,
6778
112k
        sc,
6779
112k
        sc->s3.client_random,
6780
112k
        SSL3_RANDOM_SIZE,
6781
112k
        secret,
6782
112k
        secret_len);
6783
112k
}
6784
6785
9.95k
#define SSLV2_CIPHER_LEN 3
6786
6787
int ssl_cache_cipherlist(SSL_CONNECTION *s, PACKET *cipher_suites, int sslv2format)
6788
41.6k
{
6789
41.6k
    int n;
6790
6791
41.6k
    n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
6792
6793
41.6k
    if (PACKET_remaining(cipher_suites) == 0) {
6794
48
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_NO_CIPHERS_SPECIFIED);
6795
48
        return 0;
6796
48
    }
6797
6798
41.5k
    if (PACKET_remaining(cipher_suites) % n != 0) {
6799
33
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
6800
33
        return 0;
6801
33
    }
6802
6803
41.5k
    OPENSSL_free(s->s3.tmp.ciphers_raw);
6804
41.5k
    s->s3.tmp.ciphers_raw = NULL;
6805
41.5k
    s->s3.tmp.ciphers_rawlen = 0;
6806
6807
41.5k
    if (sslv2format) {
6808
5.37k
        size_t numciphers = PACKET_remaining(cipher_suites) / n;
6809
5.37k
        PACKET sslv2ciphers = *cipher_suites;
6810
5.37k
        unsigned int leadbyte;
6811
5.37k
        unsigned char *raw;
6812
6813
        /*
6814
         * We store the raw ciphers list in SSLv3+ format so we need to do some
6815
         * preprocessing to convert the list first. If there are any SSLv2 only
6816
         * ciphersuites with a non-zero leading byte then we are going to
6817
         * slightly over allocate because we won't store those. But that isn't a
6818
         * problem.
6819
         */
6820
5.37k
        raw = OPENSSL_malloc(numciphers * TLS_CIPHER_LEN);
6821
5.37k
        s->s3.tmp.ciphers_raw = raw;
6822
5.37k
        if (raw == NULL) {
6823
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
6824
0
            return 0;
6825
0
        }
6826
5.37k
        for (s->s3.tmp.ciphers_rawlen = 0;
6827
119k
            PACKET_remaining(&sslv2ciphers) > 0;
6828
113k
            raw += TLS_CIPHER_LEN) {
6829
113k
            if (!PACKET_get_1(&sslv2ciphers, &leadbyte)
6830
113k
                || (leadbyte == 0
6831
59.5k
                    && !PACKET_copy_bytes(&sslv2ciphers, raw,
6832
59.5k
                        TLS_CIPHER_LEN))
6833
113k
                || (leadbyte != 0
6834
54.3k
                    && !PACKET_forward(&sslv2ciphers, TLS_CIPHER_LEN))) {
6835
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_PACKET);
6836
0
                OPENSSL_free(s->s3.tmp.ciphers_raw);
6837
0
                s->s3.tmp.ciphers_raw = NULL;
6838
0
                s->s3.tmp.ciphers_rawlen = 0;
6839
0
                return 0;
6840
0
            }
6841
113k
            if (leadbyte == 0)
6842
59.5k
                s->s3.tmp.ciphers_rawlen += TLS_CIPHER_LEN;
6843
113k
        }
6844
36.1k
    } else if (!PACKET_memdup(cipher_suites, &s->s3.tmp.ciphers_raw,
6845
36.1k
                   &s->s3.tmp.ciphers_rawlen)) {
6846
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
6847
0
        return 0;
6848
0
    }
6849
41.5k
    return 1;
6850
41.5k
}
6851
6852
int SSL_bytes_to_cipher_list(SSL *s, const unsigned char *bytes, size_t len,
6853
    int isv2format, STACK_OF(SSL_CIPHER) **sk,
6854
    STACK_OF(SSL_CIPHER) **scsvs)
6855
0
{
6856
0
    PACKET pkt;
6857
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6858
6859
0
    if (sc == NULL)
6860
0
        return 0;
6861
6862
0
    if (!PACKET_buf_init(&pkt, bytes, len))
6863
0
        return 0;
6864
0
    return ossl_bytes_to_cipher_list(sc, &pkt, sk, scsvs, isv2format, 0);
6865
0
}
6866
6867
int ossl_bytes_to_cipher_list(SSL_CONNECTION *s, PACKET *cipher_suites,
6868
    STACK_OF(SSL_CIPHER) **skp,
6869
    STACK_OF(SSL_CIPHER) **scsvs_out,
6870
    int sslv2format, int fatal)
6871
37.4k
{
6872
37.4k
    const SSL_CIPHER *c;
6873
37.4k
    STACK_OF(SSL_CIPHER) *sk = NULL;
6874
37.4k
    STACK_OF(SSL_CIPHER) *scsvs = NULL;
6875
37.4k
    int n;
6876
    /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
6877
37.4k
    unsigned char cipher[SSLV2_CIPHER_LEN];
6878
6879
37.4k
    n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
6880
6881
37.4k
    if (PACKET_remaining(cipher_suites) == 0) {
6882
0
        if (fatal)
6883
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_NO_CIPHERS_SPECIFIED);
6884
0
        else
6885
0
            ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHERS_SPECIFIED);
6886
0
        return 0;
6887
0
    }
6888
6889
37.4k
    if (PACKET_remaining(cipher_suites) % n != 0) {
6890
0
        if (fatal)
6891
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
6892
0
                SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
6893
0
        else
6894
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
6895
0
        return 0;
6896
0
    }
6897
6898
37.4k
    sk = sk_SSL_CIPHER_new_null();
6899
37.4k
    scsvs = sk_SSL_CIPHER_new_null();
6900
37.4k
    if (sk == NULL || scsvs == NULL) {
6901
0
        if (fatal)
6902
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
6903
0
        else
6904
0
            ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
6905
0
        goto err;
6906
0
    }
6907
6908
662k
    while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
6909
        /*
6910
         * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
6911
         * first byte set to zero, while true SSLv2 ciphers have a non-zero
6912
         * first byte. We don't support any true SSLv2 ciphers, so skip them.
6913
         */
6914
624k
        if (sslv2format && cipher[0] != '\0')
6915
42.0k
            continue;
6916
6917
        /* For SSLv2-compat, ignore leading 0-byte. */
6918
582k
        c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher, 1);
6919
582k
        if (c != NULL) {
6920
252k
            if ((c->valid && !sk_SSL_CIPHER_push(sk, c)) || (!c->valid && !sk_SSL_CIPHER_push(scsvs, c))) {
6921
0
                if (fatal)
6922
0
                    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
6923
0
                else
6924
0
                    ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
6925
0
                goto err;
6926
0
            }
6927
252k
        }
6928
582k
    }
6929
37.4k
    if (PACKET_remaining(cipher_suites) > 0) {
6930
0
        if (fatal)
6931
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_LENGTH);
6932
0
        else
6933
0
            ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
6934
0
        goto err;
6935
0
    }
6936
6937
37.4k
    if (skp != NULL)
6938
37.4k
        *skp = sk;
6939
0
    else
6940
0
        sk_SSL_CIPHER_free(sk);
6941
37.4k
    if (scsvs_out != NULL)
6942
37.4k
        *scsvs_out = scsvs;
6943
0
    else
6944
0
        sk_SSL_CIPHER_free(scsvs);
6945
37.4k
    return 1;
6946
0
err:
6947
0
    sk_SSL_CIPHER_free(sk);
6948
0
    sk_SSL_CIPHER_free(scsvs);
6949
0
    return 0;
6950
37.4k
}
6951
6952
int SSL_CTX_set_max_early_data(SSL_CTX *ctx, uint32_t max_early_data)
6953
0
{
6954
0
    ctx->max_early_data = max_early_data;
6955
6956
0
    return 1;
6957
0
}
6958
6959
uint32_t SSL_CTX_get_max_early_data(const SSL_CTX *ctx)
6960
0
{
6961
0
    return ctx->max_early_data;
6962
0
}
6963
6964
int SSL_set_max_early_data(SSL *s, uint32_t max_early_data)
6965
0
{
6966
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
6967
6968
0
    if (sc == NULL)
6969
0
        return 0;
6970
6971
0
    sc->max_early_data = max_early_data;
6972
6973
0
    return 1;
6974
0
}
6975
6976
uint32_t SSL_get_max_early_data(const SSL *s)
6977
0
{
6978
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6979
6980
0
    if (sc == NULL)
6981
0
        return 0;
6982
6983
0
    return sc->max_early_data;
6984
0
}
6985
6986
int SSL_CTX_set_recv_max_early_data(SSL_CTX *ctx, uint32_t recv_max_early_data)
6987
0
{
6988
0
    ctx->recv_max_early_data = recv_max_early_data;
6989
6990
0
    return 1;
6991
0
}
6992
6993
uint32_t SSL_CTX_get_recv_max_early_data(const SSL_CTX *ctx)
6994
0
{
6995
0
    return ctx->recv_max_early_data;
6996
0
}
6997
6998
int SSL_set_recv_max_early_data(SSL *s, uint32_t recv_max_early_data)
6999
0
{
7000
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7001
7002
0
    if (sc == NULL)
7003
0
        return 0;
7004
7005
0
    sc->recv_max_early_data = recv_max_early_data;
7006
7007
0
    return 1;
7008
0
}
7009
7010
uint32_t SSL_get_recv_max_early_data(const SSL *s)
7011
0
{
7012
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7013
7014
0
    if (sc == NULL)
7015
0
        return 0;
7016
7017
0
    return sc->recv_max_early_data;
7018
0
}
7019
7020
__owur unsigned int ssl_get_max_send_fragment(const SSL_CONNECTION *sc)
7021
1.05M
{
7022
    /* Return any active Max Fragment Len extension */
7023
1.05M
    if (sc->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(sc->session))
7024
15.2k
        return GET_MAX_FRAGMENT_LENGTH(sc->session);
7025
7026
    /* return current SSL connection setting */
7027
1.03M
    return sc->max_send_fragment;
7028
1.05M
}
7029
7030
__owur unsigned int ssl_get_split_send_fragment(const SSL_CONNECTION *sc)
7031
198k
{
7032
    /* Return a value regarding an active Max Fragment Len extension */
7033
198k
    if (sc->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(sc->session)
7034
592
        && sc->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(sc->session))
7035
592
        return GET_MAX_FRAGMENT_LENGTH(sc->session);
7036
7037
    /* else limit |split_send_fragment| to current |max_send_fragment| */
7038
198k
    if (sc->split_send_fragment > sc->max_send_fragment)
7039
0
        return sc->max_send_fragment;
7040
7041
    /* return current SSL connection setting */
7042
198k
    return sc->split_send_fragment;
7043
198k
}
7044
7045
int SSL_stateless(SSL *s)
7046
0
{
7047
0
    int ret;
7048
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7049
7050
0
    if (sc == NULL)
7051
0
        return 0;
7052
7053
    /* Ensure there is no state left over from a previous invocation */
7054
0
    if (!SSL_clear(s))
7055
0
        return 0;
7056
7057
0
    ERR_clear_error();
7058
7059
0
    sc->s3.flags |= TLS1_FLAGS_STATELESS;
7060
0
    ret = SSL_accept(s);
7061
0
    sc->s3.flags &= ~TLS1_FLAGS_STATELESS;
7062
7063
0
    if (ret > 0 && sc->ext.cookieok)
7064
0
        return 1;
7065
7066
0
    if (sc->hello_retry_request == SSL_HRR_PENDING && !ossl_statem_in_error(sc))
7067
0
        return 0;
7068
7069
0
    return -1;
7070
0
}
7071
7072
void SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val)
7073
0
{
7074
0
    ctx->pha_enabled = val;
7075
0
}
7076
7077
void SSL_set_post_handshake_auth(SSL *ssl, int val)
7078
0
{
7079
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
7080
7081
0
    if (sc == NULL)
7082
0
        return;
7083
7084
0
    sc->pha_enabled = val;
7085
0
}
7086
7087
int SSL_verify_client_post_handshake(SSL *ssl)
7088
0
{
7089
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
7090
7091
0
#ifndef OPENSSL_NO_QUIC
7092
0
    if (IS_QUIC(ssl)) {
7093
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
7094
0
        return 0;
7095
0
    }
7096
0
#endif
7097
7098
0
    if (sc == NULL)
7099
0
        return 0;
7100
7101
0
    if (!SSL_CONNECTION_IS_TLS13(sc)) {
7102
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
7103
0
        return 0;
7104
0
    }
7105
0
    if (!sc->server) {
7106
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NOT_SERVER);
7107
0
        return 0;
7108
0
    }
7109
7110
0
    if (!SSL_is_init_finished(ssl)) {
7111
0
        ERR_raise(ERR_LIB_SSL, SSL_R_STILL_IN_INIT);
7112
0
        return 0;
7113
0
    }
7114
7115
0
    switch (sc->post_handshake_auth) {
7116
0
    case SSL_PHA_NONE:
7117
0
        ERR_raise(ERR_LIB_SSL, SSL_R_EXTENSION_NOT_RECEIVED);
7118
0
        return 0;
7119
0
    default:
7120
0
    case SSL_PHA_EXT_SENT:
7121
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
7122
0
        return 0;
7123
0
    case SSL_PHA_EXT_RECEIVED:
7124
0
        break;
7125
0
    case SSL_PHA_REQUEST_PENDING:
7126
0
        ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_PENDING);
7127
0
        return 0;
7128
0
    case SSL_PHA_REQUESTED:
7129
0
        ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_SENT);
7130
0
        return 0;
7131
0
    }
7132
7133
0
    sc->post_handshake_auth = SSL_PHA_REQUEST_PENDING;
7134
7135
    /* checks verify_mode and algorithm_auth */
7136
0
    if (!send_certificate_request(sc)) {
7137
0
        sc->post_handshake_auth = SSL_PHA_EXT_RECEIVED; /* restore on error */
7138
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CONFIG);
7139
0
        return 0;
7140
0
    }
7141
7142
0
    ossl_statem_set_in_init(sc, 1);
7143
0
    return 1;
7144
0
}
7145
7146
int SSL_CTX_set_session_ticket_cb(SSL_CTX *ctx,
7147
    SSL_CTX_generate_session_ticket_fn gen_cb,
7148
    SSL_CTX_decrypt_session_ticket_fn dec_cb,
7149
    void *arg)
7150
0
{
7151
0
    ctx->generate_ticket_cb = gen_cb;
7152
0
    ctx->decrypt_ticket_cb = dec_cb;
7153
0
    ctx->ticket_cb_data = arg;
7154
0
    return 1;
7155
0
}
7156
7157
void SSL_CTX_set_allow_early_data_cb(SSL_CTX *ctx,
7158
    SSL_allow_early_data_cb_fn cb,
7159
    void *arg)
7160
0
{
7161
0
    ctx->allow_early_data_cb = cb;
7162
0
    ctx->allow_early_data_cb_data = arg;
7163
0
}
7164
7165
void SSL_set_allow_early_data_cb(SSL *s,
7166
    SSL_allow_early_data_cb_fn cb,
7167
    void *arg)
7168
0
{
7169
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7170
7171
0
    if (sc == NULL)
7172
0
        return;
7173
7174
0
    sc->allow_early_data_cb = cb;
7175
0
    sc->allow_early_data_cb_data = arg;
7176
0
}
7177
7178
const EVP_CIPHER *ssl_evp_cipher_fetch(OSSL_LIB_CTX *libctx,
7179
    int nid,
7180
    const char *properties)
7181
2.09M
{
7182
2.09M
    const EVP_CIPHER *ciph;
7183
7184
2.09M
    ciph = tls_get_cipher_from_engine(nid);
7185
2.09M
    if (ciph != NULL)
7186
0
        return ciph;
7187
7188
    /*
7189
     * If there is no engine cipher then we do an explicit fetch. This may fail
7190
     * and that could be ok
7191
     */
7192
2.09M
    ERR_set_mark();
7193
2.09M
    ciph = EVP_CIPHER_fetch(libctx, OBJ_nid2sn(nid), properties);
7194
2.09M
    if (ciph != NULL) {
7195
1.27M
        OSSL_PARAM params[2];
7196
1.27M
        int decrypt_only = 0;
7197
7198
1.27M
        params[0] = OSSL_PARAM_construct_int(OSSL_CIPHER_PARAM_DECRYPT_ONLY,
7199
1.27M
            &decrypt_only);
7200
1.27M
        params[1] = OSSL_PARAM_construct_end();
7201
1.27M
        if (EVP_CIPHER_get_params((EVP_CIPHER *)ciph, params)
7202
1.27M
            && decrypt_only) {
7203
            /* If a cipher is decrypt-only, it is unusable */
7204
0
            EVP_CIPHER_free((EVP_CIPHER *)ciph);
7205
0
            ciph = NULL;
7206
0
        }
7207
1.27M
    }
7208
2.09M
    ERR_pop_to_mark();
7209
2.09M
    return ciph;
7210
2.09M
}
7211
7212
int ssl_evp_cipher_up_ref(const EVP_CIPHER *cipher)
7213
44.3k
{
7214
    /* Don't up-ref an implicit EVP_CIPHER */
7215
44.3k
    if (EVP_CIPHER_get0_provider(cipher) == NULL)
7216
0
        return 1;
7217
7218
    /*
7219
     * The cipher was explicitly fetched and therefore it is safe to cast
7220
     * away the const
7221
     */
7222
44.3k
    return EVP_CIPHER_up_ref((EVP_CIPHER *)cipher);
7223
44.3k
}
7224
7225
void ssl_evp_cipher_free(const EVP_CIPHER *cipher)
7226
4.14M
{
7227
4.14M
    if (cipher == NULL)
7228
1.79M
        return;
7229
7230
2.34M
    if (EVP_CIPHER_get0_provider(cipher) != NULL) {
7231
        /*
7232
         * The cipher was explicitly fetched and therefore it is safe to cast
7233
         * away the const
7234
         */
7235
2.34M
        EVP_CIPHER_free((EVP_CIPHER *)cipher);
7236
2.34M
    }
7237
2.34M
}
7238
7239
const EVP_MD *ssl_evp_md_fetch(OSSL_LIB_CTX *libctx,
7240
    int nid,
7241
    const char *properties)
7242
2.14M
{
7243
2.14M
    const EVP_MD *md;
7244
7245
2.14M
    md = tls_get_digest_from_engine(nid);
7246
2.14M
    if (md != NULL)
7247
0
        return md;
7248
7249
    /* Otherwise we do an explicit fetch */
7250
2.14M
    ERR_set_mark();
7251
2.14M
    md = EVP_MD_fetch(libctx, OBJ_nid2sn(nid), properties);
7252
2.14M
    ERR_pop_to_mark();
7253
2.14M
    return md;
7254
2.14M
}
7255
7256
int ssl_evp_md_up_ref(const EVP_MD *md)
7257
18.2k
{
7258
    /* Don't up-ref an implicit EVP_MD */
7259
18.2k
    if (EVP_MD_get0_provider(md) == NULL)
7260
0
        return 1;
7261
7262
    /*
7263
     * The digest was explicitly fetched and therefore it is safe to cast
7264
     * away the const
7265
     */
7266
18.2k
    return EVP_MD_up_ref((EVP_MD *)md);
7267
18.2k
}
7268
7269
void ssl_evp_md_free(const EVP_MD *md)
7270
2.83M
{
7271
2.83M
    if (md == NULL)
7272
1.34M
        return;
7273
7274
1.49M
    if (EVP_MD_get0_provider(md) != NULL) {
7275
        /*
7276
         * The digest was explicitly fetched and therefore it is safe to cast
7277
         * away the const
7278
         */
7279
1.49M
        EVP_MD_free((EVP_MD *)md);
7280
1.49M
    }
7281
1.49M
}
7282
7283
int SSL_set0_tmp_dh_pkey(SSL *s, EVP_PKEY *dhpkey)
7284
0
{
7285
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7286
7287
0
    if (sc == NULL)
7288
0
        return 0;
7289
7290
0
    if (!ssl_security(sc, SSL_SECOP_TMP_DH,
7291
0
            EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
7292
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
7293
0
        return 0;
7294
0
    }
7295
0
    EVP_PKEY_free(sc->cert->dh_tmp);
7296
0
    sc->cert->dh_tmp = dhpkey;
7297
0
    return 1;
7298
0
}
7299
7300
int SSL_CTX_set0_tmp_dh_pkey(SSL_CTX *ctx, EVP_PKEY *dhpkey)
7301
0
{
7302
0
    if (!ssl_ctx_security(ctx, SSL_SECOP_TMP_DH,
7303
0
            EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
7304
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
7305
0
        return 0;
7306
0
    }
7307
0
    EVP_PKEY_free(ctx->cert->dh_tmp);
7308
0
    ctx->cert->dh_tmp = dhpkey;
7309
0
    return 1;
7310
0
}
7311
7312
/* QUIC-specific methods which are supported on QUIC connections only. */
7313
int SSL_handle_events(SSL *s)
7314
0
{
7315
0
    SSL_CONNECTION *sc;
7316
7317
0
#ifndef OPENSSL_NO_QUIC
7318
0
    if (IS_QUIC(s))
7319
0
        return ossl_quic_handle_events(s);
7320
0
#endif
7321
7322
0
    sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7323
0
    if (sc != NULL && SSL_CONNECTION_IS_DTLS(sc))
7324
        /*
7325
         * DTLSv1_handle_timeout returns 0 if the timer wasn't expired yet,
7326
         * which we consider a success case. Theoretically DTLSv1_handle_timeout
7327
         * can also return 0 if s is NULL or not a DTLS object, but we've
7328
         * already ruled out those possibilities above, so this is not possible
7329
         * here. Thus the only failure cases are where DTLSv1_handle_timeout
7330
         * returns -1.
7331
         */
7332
0
        return DTLSv1_handle_timeout(s) >= 0;
7333
7334
0
    return 1;
7335
0
}
7336
7337
int SSL_get_event_timeout(SSL *s, struct timeval *tv, int *is_infinite)
7338
34.8M
{
7339
34.8M
    SSL_CONNECTION *sc;
7340
7341
34.8M
#ifndef OPENSSL_NO_QUIC
7342
34.8M
    if (IS_QUIC(s))
7343
34.8M
        return ossl_quic_get_event_timeout(s, tv, is_infinite);
7344
0
#endif
7345
7346
0
    sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7347
0
    if (sc != NULL && SSL_CONNECTION_IS_DTLS(sc)
7348
0
        && DTLSv1_get_timeout(s, tv)) {
7349
0
        *is_infinite = 0;
7350
0
        return 1;
7351
0
    }
7352
7353
0
    tv->tv_sec = 1000000;
7354
0
    tv->tv_usec = 0;
7355
0
    *is_infinite = 1;
7356
0
    return 1;
7357
0
}
7358
7359
int SSL_get_rpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc)
7360
0
{
7361
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7362
7363
0
#ifndef OPENSSL_NO_QUIC
7364
0
    if (IS_QUIC(s))
7365
0
        return ossl_quic_get_rpoll_descriptor(s, desc);
7366
0
#endif
7367
7368
0
    if (sc == NULL || sc->rbio == NULL)
7369
0
        return 0;
7370
7371
0
    return BIO_get_rpoll_descriptor(sc->rbio, desc);
7372
0
}
7373
7374
int SSL_get_wpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc)
7375
0
{
7376
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7377
7378
0
#ifndef OPENSSL_NO_QUIC
7379
0
    if (IS_QUIC(s))
7380
0
        return ossl_quic_get_wpoll_descriptor(s, desc);
7381
0
#endif
7382
7383
0
    if (sc == NULL || sc->wbio == NULL)
7384
0
        return 0;
7385
7386
0
    return BIO_get_wpoll_descriptor(sc->wbio, desc);
7387
0
}
7388
7389
int SSL_net_read_desired(SSL *s)
7390
0
{
7391
0
#ifndef OPENSSL_NO_QUIC
7392
0
    if (!IS_QUIC(s))
7393
0
        return SSL_want_read(s);
7394
7395
0
    return ossl_quic_get_net_read_desired(s);
7396
#else
7397
    return SSL_want_read(s);
7398
#endif
7399
0
}
7400
7401
int SSL_net_write_desired(SSL *s)
7402
0
{
7403
0
#ifndef OPENSSL_NO_QUIC
7404
0
    if (!IS_QUIC(s))
7405
0
        return SSL_want_write(s);
7406
7407
0
    return ossl_quic_get_net_write_desired(s);
7408
#else
7409
    return SSL_want_write(s);
7410
#endif
7411
0
}
7412
7413
int SSL_set_blocking_mode(SSL *s, int blocking)
7414
0
{
7415
0
#ifndef OPENSSL_NO_QUIC
7416
0
    if (!IS_QUIC(s))
7417
0
        return 0;
7418
7419
0
    return ossl_quic_conn_set_blocking_mode(s, blocking);
7420
#else
7421
    return 0;
7422
#endif
7423
0
}
7424
7425
int SSL_get_blocking_mode(SSL *s)
7426
0
{
7427
0
#ifndef OPENSSL_NO_QUIC
7428
0
    if (!IS_QUIC(s))
7429
0
        return -1;
7430
7431
0
    return ossl_quic_conn_get_blocking_mode(s);
7432
#else
7433
    return -1;
7434
#endif
7435
0
}
7436
7437
int SSL_set1_initial_peer_addr(SSL *s, const BIO_ADDR *peer_addr)
7438
20.9k
{
7439
20.9k
#ifndef OPENSSL_NO_QUIC
7440
20.9k
    if (!IS_QUIC(s))
7441
0
        return 0;
7442
7443
20.9k
    return ossl_quic_conn_set_initial_peer_addr(s, peer_addr);
7444
#else
7445
    return 0;
7446
#endif
7447
20.9k
}
7448
7449
int SSL_shutdown_ex(SSL *ssl, uint64_t flags,
7450
    const SSL_SHUTDOWN_EX_ARGS *args,
7451
    size_t args_len)
7452
0
{
7453
0
#ifndef OPENSSL_NO_QUIC
7454
0
    if (!IS_QUIC(ssl))
7455
0
        return SSL_shutdown(ssl);
7456
7457
0
    return ossl_quic_conn_shutdown(ssl, flags, args, args_len);
7458
#else
7459
    return SSL_shutdown(ssl);
7460
#endif
7461
0
}
7462
7463
int SSL_stream_conclude(SSL *ssl, uint64_t flags)
7464
0
{
7465
0
#ifndef OPENSSL_NO_QUIC
7466
0
    if (!IS_QUIC(ssl))
7467
0
        return 0;
7468
7469
0
    return ossl_quic_conn_stream_conclude(ssl);
7470
#else
7471
    return 0;
7472
#endif
7473
0
}
7474
7475
SSL *SSL_new_stream(SSL *s, uint64_t flags)
7476
5.50k
{
7477
5.50k
#ifndef OPENSSL_NO_QUIC
7478
5.50k
    if (!IS_QUIC(s))
7479
0
        return NULL;
7480
7481
5.50k
    return ossl_quic_conn_stream_new(s, flags);
7482
#else
7483
    return NULL;
7484
#endif
7485
5.50k
}
7486
7487
SSL *SSL_get0_connection(SSL *s)
7488
0
{
7489
0
#ifndef OPENSSL_NO_QUIC
7490
0
    if (!IS_QUIC(s))
7491
0
        return s;
7492
7493
0
    return ossl_quic_get0_connection(s);
7494
#else
7495
    return s;
7496
#endif
7497
0
}
7498
7499
int SSL_is_connection(SSL *s)
7500
0
{
7501
0
    return SSL_get0_connection(s) == s;
7502
0
}
7503
7504
int SSL_get_stream_type(SSL *s)
7505
0
{
7506
0
#ifndef OPENSSL_NO_QUIC
7507
0
    if (!IS_QUIC(s))
7508
0
        return SSL_STREAM_TYPE_BIDI;
7509
7510
0
    return ossl_quic_get_stream_type(s);
7511
#else
7512
    return SSL_STREAM_TYPE_BIDI;
7513
#endif
7514
0
}
7515
7516
uint64_t SSL_get_stream_id(SSL *s)
7517
0
{
7518
0
#ifndef OPENSSL_NO_QUIC
7519
0
    if (!IS_QUIC(s))
7520
0
        return UINT64_MAX;
7521
7522
0
    return ossl_quic_get_stream_id(s);
7523
#else
7524
    return UINT64_MAX;
7525
#endif
7526
0
}
7527
7528
int SSL_is_stream_local(SSL *s)
7529
0
{
7530
0
#ifndef OPENSSL_NO_QUIC
7531
0
    if (!IS_QUIC(s))
7532
0
        return -1;
7533
7534
0
    return ossl_quic_is_stream_local(s);
7535
#else
7536
    return -1;
7537
#endif
7538
0
}
7539
7540
int SSL_set_default_stream_mode(SSL *s, uint32_t mode)
7541
0
{
7542
0
#ifndef OPENSSL_NO_QUIC
7543
0
    if (!IS_QUIC(s))
7544
0
        return 0;
7545
7546
0
    return ossl_quic_set_default_stream_mode(s, mode);
7547
#else
7548
    return 0;
7549
#endif
7550
0
}
7551
7552
int SSL_set_incoming_stream_policy(SSL *s, int policy, uint64_t aec)
7553
20.9k
{
7554
20.9k
#ifndef OPENSSL_NO_QUIC
7555
20.9k
    if (!IS_QUIC(s))
7556
0
        return 0;
7557
7558
20.9k
    return ossl_quic_set_incoming_stream_policy(s, policy, aec);
7559
#else
7560
    return 0;
7561
#endif
7562
20.9k
}
7563
7564
SSL *SSL_accept_stream(SSL *s, uint64_t flags)
7565
187
{
7566
187
#ifndef OPENSSL_NO_QUIC
7567
187
    if (!IS_QUIC(s))
7568
0
        return NULL;
7569
7570
187
    return ossl_quic_accept_stream(s, flags);
7571
#else
7572
    return NULL;
7573
#endif
7574
187
}
7575
7576
size_t SSL_get_accept_stream_queue_len(SSL *s)
7577
4.90k
{
7578
4.90k
#ifndef OPENSSL_NO_QUIC
7579
4.90k
    if (!IS_QUIC(s))
7580
0
        return 0;
7581
7582
4.90k
    return ossl_quic_get_accept_stream_queue_len(s);
7583
#else
7584
    return 0;
7585
#endif
7586
4.90k
}
7587
7588
int SSL_stream_reset(SSL *s,
7589
    const SSL_STREAM_RESET_ARGS *args,
7590
    size_t args_len)
7591
0
{
7592
0
#ifndef OPENSSL_NO_QUIC
7593
0
    if (!IS_QUIC(s))
7594
0
        return 0;
7595
7596
0
    return ossl_quic_stream_reset(s, args, args_len);
7597
#else
7598
    return 0;
7599
#endif
7600
0
}
7601
7602
int SSL_get_stream_read_state(SSL *s)
7603
0
{
7604
0
#ifndef OPENSSL_NO_QUIC
7605
0
    if (!IS_QUIC(s))
7606
0
        return SSL_STREAM_STATE_NONE;
7607
7608
0
    return ossl_quic_get_stream_read_state(s);
7609
#else
7610
    return SSL_STREAM_STATE_NONE;
7611
#endif
7612
0
}
7613
7614
int SSL_get_stream_write_state(SSL *s)
7615
0
{
7616
0
#ifndef OPENSSL_NO_QUIC
7617
0
    if (!IS_QUIC(s))
7618
0
        return SSL_STREAM_STATE_NONE;
7619
7620
0
    return ossl_quic_get_stream_write_state(s);
7621
#else
7622
    return SSL_STREAM_STATE_NONE;
7623
#endif
7624
0
}
7625
7626
int SSL_get_stream_read_error_code(SSL *s, uint64_t *app_error_code)
7627
0
{
7628
0
#ifndef OPENSSL_NO_QUIC
7629
0
    if (!IS_QUIC(s))
7630
0
        return -1;
7631
7632
0
    return ossl_quic_get_stream_read_error_code(s, app_error_code);
7633
#else
7634
    return -1;
7635
#endif
7636
0
}
7637
7638
int SSL_get_stream_write_error_code(SSL *s, uint64_t *app_error_code)
7639
0
{
7640
0
#ifndef OPENSSL_NO_QUIC
7641
0
    if (!IS_QUIC(s))
7642
0
        return -1;
7643
7644
0
    return ossl_quic_get_stream_write_error_code(s, app_error_code);
7645
#else
7646
    return -1;
7647
#endif
7648
0
}
7649
7650
int SSL_get_conn_close_info(SSL *s, SSL_CONN_CLOSE_INFO *info,
7651
    size_t info_len)
7652
0
{
7653
0
#ifndef OPENSSL_NO_QUIC
7654
0
    if (!IS_QUIC(s))
7655
0
        return -1;
7656
7657
0
    return ossl_quic_get_conn_close_info(s, info, info_len);
7658
#else
7659
    return -1;
7660
#endif
7661
0
}
7662
7663
int SSL_get_value_uint(SSL *s, uint32_t class_, uint32_t id,
7664
    uint64_t *value)
7665
0
{
7666
0
#ifndef OPENSSL_NO_QUIC
7667
0
    if (IS_QUIC(s))
7668
0
        return ossl_quic_get_value_uint(s, class_, id, value);
7669
0
#endif
7670
7671
0
    ERR_raise(ERR_LIB_SSL, SSL_R_UNSUPPORTED_PROTOCOL);
7672
0
    return 0;
7673
0
}
7674
7675
int SSL_set_value_uint(SSL *s, uint32_t class_, uint32_t id,
7676
    uint64_t value)
7677
0
{
7678
0
#ifndef OPENSSL_NO_QUIC
7679
0
    if (IS_QUIC(s))
7680
0
        return ossl_quic_set_value_uint(s, class_, id, value);
7681
0
#endif
7682
7683
0
    ERR_raise(ERR_LIB_SSL, SSL_R_UNSUPPORTED_PROTOCOL);
7684
0
    return 0;
7685
0
}
7686
7687
int SSL_add_expected_rpk(SSL *s, EVP_PKEY *rpk)
7688
0
{
7689
0
    unsigned char *data = NULL;
7690
0
    SSL_DANE *dane = SSL_get0_dane(s);
7691
0
    int ret;
7692
7693
0
    if (dane == NULL || dane->dctx == NULL)
7694
0
        return 0;
7695
0
    if ((ret = i2d_PUBKEY(rpk, &data)) <= 0)
7696
0
        return 0;
7697
7698
0
    ret = SSL_dane_tlsa_add(s, DANETLS_USAGE_DANE_EE,
7699
0
              DANETLS_SELECTOR_SPKI,
7700
0
              DANETLS_MATCHING_FULL,
7701
0
              data, (size_t)ret)
7702
0
        > 0;
7703
0
    OPENSSL_free(data);
7704
0
    return ret;
7705
0
}
7706
7707
EVP_PKEY *SSL_get0_peer_rpk(const SSL *s)
7708
0
{
7709
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7710
7711
0
    if (sc == NULL || sc->session == NULL)
7712
0
        return NULL;
7713
0
    return sc->session->peer_rpk;
7714
0
}
7715
7716
int SSL_get_negotiated_client_cert_type(const SSL *s)
7717
0
{
7718
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7719
7720
0
    if (sc == NULL)
7721
0
        return 0;
7722
7723
0
    return sc->ext.client_cert_type;
7724
0
}
7725
7726
int SSL_get_negotiated_server_cert_type(const SSL *s)
7727
0
{
7728
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7729
7730
0
    if (sc == NULL)
7731
0
        return 0;
7732
7733
0
    return sc->ext.server_cert_type;
7734
0
}
7735
7736
static int validate_cert_type(const unsigned char *val, size_t len)
7737
0
{
7738
0
    size_t i;
7739
0
    int saw_rpk = 0;
7740
0
    int saw_x509 = 0;
7741
7742
0
    if (val == NULL && len == 0)
7743
0
        return 1;
7744
7745
0
    if (val == NULL || len == 0)
7746
0
        return 0;
7747
7748
0
    for (i = 0; i < len; i++) {
7749
0
        switch (val[i]) {
7750
0
        case TLSEXT_cert_type_rpk:
7751
0
            if (saw_rpk)
7752
0
                return 0;
7753
0
            saw_rpk = 1;
7754
0
            break;
7755
0
        case TLSEXT_cert_type_x509:
7756
0
            if (saw_x509)
7757
0
                return 0;
7758
0
            saw_x509 = 1;
7759
0
            break;
7760
0
        case TLSEXT_cert_type_pgp:
7761
0
        case TLSEXT_cert_type_1609dot2:
7762
0
        default:
7763
0
            return 0;
7764
0
        }
7765
0
    }
7766
0
    return 1;
7767
0
}
7768
7769
static int set_cert_type(unsigned char **cert_type,
7770
    size_t *cert_type_len,
7771
    const unsigned char *val,
7772
    size_t len)
7773
0
{
7774
0
    unsigned char *tmp = NULL;
7775
7776
0
    if (!validate_cert_type(val, len))
7777
0
        return 0;
7778
7779
0
    if (val != NULL && (tmp = OPENSSL_memdup(val, len)) == NULL)
7780
0
        return 0;
7781
7782
0
    OPENSSL_free(*cert_type);
7783
0
    *cert_type = tmp;
7784
0
    *cert_type_len = len;
7785
0
    return 1;
7786
0
}
7787
7788
int SSL_set1_client_cert_type(SSL *s, const unsigned char *val, size_t len)
7789
0
{
7790
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7791
7792
0
    return set_cert_type(&sc->client_cert_type, &sc->client_cert_type_len,
7793
0
        val, len);
7794
0
}
7795
7796
int SSL_set1_server_cert_type(SSL *s, const unsigned char *val, size_t len)
7797
0
{
7798
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7799
7800
0
    return set_cert_type(&sc->server_cert_type, &sc->server_cert_type_len,
7801
0
        val, len);
7802
0
}
7803
7804
int SSL_CTX_set1_client_cert_type(SSL_CTX *ctx, const unsigned char *val, size_t len)
7805
0
{
7806
0
    return set_cert_type(&ctx->client_cert_type, &ctx->client_cert_type_len,
7807
0
        val, len);
7808
0
}
7809
7810
int SSL_CTX_set1_server_cert_type(SSL_CTX *ctx, const unsigned char *val, size_t len)
7811
0
{
7812
0
    return set_cert_type(&ctx->server_cert_type, &ctx->server_cert_type_len,
7813
0
        val, len);
7814
0
}
7815
7816
int SSL_get0_client_cert_type(const SSL *s, unsigned char **t, size_t *len)
7817
0
{
7818
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7819
7820
0
    if (t == NULL || len == NULL)
7821
0
        return 0;
7822
7823
0
    *t = sc->client_cert_type;
7824
0
    *len = sc->client_cert_type_len;
7825
0
    return 1;
7826
0
}
7827
7828
int SSL_get0_server_cert_type(const SSL *s, unsigned char **t, size_t *len)
7829
0
{
7830
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7831
7832
0
    if (t == NULL || len == NULL)
7833
0
        return 0;
7834
7835
0
    *t = sc->server_cert_type;
7836
0
    *len = sc->server_cert_type_len;
7837
0
    return 1;
7838
0
}
7839
7840
int SSL_CTX_get0_client_cert_type(const SSL_CTX *ctx, unsigned char **t, size_t *len)
7841
0
{
7842
0
    if (t == NULL || len == NULL)
7843
0
        return 0;
7844
7845
0
    *t = ctx->client_cert_type;
7846
0
    *len = ctx->client_cert_type_len;
7847
0
    return 1;
7848
0
}
7849
7850
int SSL_CTX_get0_server_cert_type(const SSL_CTX *ctx, unsigned char **t, size_t *len)
7851
0
{
7852
0
    if (t == NULL || len == NULL)
7853
0
        return 0;
7854
7855
0
    *t = ctx->server_cert_type;
7856
0
    *len = ctx->server_cert_type_len;
7857
0
    return 1;
7858
0
}