Coverage Report

Created: 2026-09-12 06:55

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-2026 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 * Copyright 2005 Nokia. All rights reserved.
5
 *
6
 * Licensed under the Apache License 2.0 (the "License").  You may not use
7
 * this file except in compliance with the License.  You can obtain a copy
8
 * in the file LICENSE in the source distribution or at
9
 * https://www.openssl.org/source/license.html
10
 */
11
12
#include "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
136k
{
142
136k
    OPENSSL_free(dctx->mdevp);
143
136k
    dctx->mdevp = NULL;
144
145
136k
    OPENSSL_free(dctx->mdord);
146
136k
    dctx->mdord = NULL;
147
136k
    dctx->mdmax = 0;
148
136k
}
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
136k
{
161
136k
    sk_danetls_record_pop_free(dane->trecs, tlsa_free);
162
136k
    dane->trecs = NULL;
163
164
136k
    OSSL_STACK_OF_X509_free(dane->certs);
165
136k
    dane->certs = NULL;
166
167
136k
    X509_free(dane->mcert);
168
136k
    dane->mcert = NULL;
169
136k
    dane->mtlsa = NULL;
170
136k
    dane->mdpth = -1;
171
136k
    dane->pdpth = -1;
172
136k
}
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
85.5k
{
442
85.5k
    int minisdtls = 0, maxisdtls = 0;
443
444
    /* Figure out if we're doing DTLS versions or TLS versions */
445
85.5k
    if (min_version == DTLS1_BAD_VER
446
85.5k
        || min_version >> 8 == DTLS1_VERSION_MAJOR)
447
0
        minisdtls = 1;
448
85.5k
    if (max_version == DTLS1_BAD_VER
449
85.5k
        || max_version >> 8 == DTLS1_VERSION_MAJOR)
450
0
        maxisdtls = 1;
451
    /* A wildcard version of 0 could be DTLS or TLS. */
452
85.5k
    if ((minisdtls && !maxisdtls && max_version != 0)
453
85.5k
        || (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
85.5k
    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
85.5k
    } else {
486
        /* Regular TLS version checks. */
487
85.5k
        if (min_version == 0)
488
59.9k
            min_version = SSL3_VERSION;
489
85.5k
        if (max_version == 0)
490
85.5k
            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
85.5k
#ifdef OPENSSL_NO_SSL3
508
85.5k
        if (min_version == SSL3_VERSION)
509
59.9k
            min_version = TLS1_VERSION;
510
85.5k
#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
85.5k
        if (0
525
85.5k
#ifdef OPENSSL_NO_SSL3
526
85.5k
            || (min_version <= SSL3_VERSION && SSL3_VERSION <= max_version)
527
85.5k
#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
85.5k
        )
541
0
            return 0;
542
85.5k
    }
543
85.5k
    return 1;
544
85.5k
}
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
136k
{
560
136k
    if (s->method == NULL) {
561
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_METHOD_SPECIFIED);
562
0
        return 0;
563
0
    }
564
565
136k
    return s->method->ssl_reset(s);
566
136k
}
567
568
int ossl_ssl_connection_reset(SSL *s)
569
58.0k
{
570
58.0k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
571
572
58.0k
    if (sc == NULL)
573
0
        return 0;
574
575
58.0k
    if (ssl_clear_bad_session(sc)) {
576
0
        SSL_SESSION_free(sc->session);
577
0
        sc->session = NULL;
578
0
    }
579
58.0k
    SSL_SESSION_free(sc->psksession);
580
58.0k
    sc->psksession = NULL;
581
58.0k
    OPENSSL_free(sc->psksession_id);
582
58.0k
    sc->psksession_id = NULL;
583
58.0k
    sc->psksession_id_len = 0;
584
58.0k
    sc->hello_retry_request = SSL_HRR_NONE;
585
58.0k
    sc->sent_tickets = 0;
586
587
58.0k
    sc->error = 0;
588
58.0k
    sc->hit = 0;
589
58.0k
    sc->shutdown = 0;
590
591
58.0k
    if (sc->renegotiate) {
592
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
593
0
        return 0;
594
0
    }
595
596
58.0k
    ossl_statem_clear(sc);
597
598
58.0k
    sc->version = s->method->version;
599
58.0k
    sc->client_version = sc->version;
600
58.0k
    sc->rwstate = SSL_NOTHING;
601
602
58.0k
    BUF_MEM_free(sc->init_buf);
603
58.0k
    sc->init_buf = NULL;
604
58.0k
    sc->first_packet = 0;
605
606
58.0k
    sc->key_update = SSL_KEY_UPDATE_NONE;
607
58.0k
    memset(sc->ext.compress_certificate_from_peer, 0,
608
58.0k
        sizeof(sc->ext.compress_certificate_from_peer));
609
58.0k
    sc->ext.compress_certificate_sent = 0;
610
611
58.0k
    EVP_MD_CTX_free(sc->pha_dgst);
612
58.0k
    sc->pha_dgst = NULL;
613
614
    /* Reset DANE verification result state */
615
58.0k
    sc->dane.mdpth = -1;
616
58.0k
    sc->dane.pdpth = -1;
617
58.0k
    X509_free(sc->dane.mcert);
618
58.0k
    sc->dane.mcert = NULL;
619
58.0k
    sc->dane.mtlsa = NULL;
620
621
    /* Clear the verification result peername */
622
58.0k
    X509_VERIFY_PARAM_move_peername(sc->param, NULL);
623
624
    /* Clear any shared connection state */
625
58.0k
    OPENSSL_free(sc->shared_sigalgs);
626
58.0k
    sc->shared_sigalgs = NULL;
627
58.0k
    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
58.0k
    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
58.0k
    } else {
639
58.0k
        if (!s->method->ssl_clear(s))
640
0
            return 0;
641
58.0k
    }
642
643
58.0k
    if (!RECORD_LAYER_reset(&sc->rlayer))
644
0
        return 0;
645
646
58.0k
    return 1;
647
58.0k
}
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
136k
{
681
136k
    if (ctx == NULL) {
682
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_CTX);
683
0
        return NULL;
684
0
    }
685
136k
    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
136k
    return ctx->method->ssl_new(ctx);
690
136k
}
691
692
int ossl_ssl_init(SSL *ssl, SSL_CTX *ctx, const SSL_METHOD *method, int type)
693
39.9k
{
694
39.9k
    ssl->type = type;
695
696
39.9k
    ssl->lock = CRYPTO_THREAD_lock_new();
697
39.9k
    if (ssl->lock == NULL)
698
0
        return 0;
699
700
39.9k
    if (!CRYPTO_NEW_REF(&ssl->references, 1)) {
701
0
        CRYPTO_THREAD_lock_free(ssl->lock);
702
0
        return 0;
703
0
    }
704
705
39.9k
    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
39.9k
    SSL_CTX_up_ref(ctx);
713
39.9k
    ssl->ctx = ctx;
714
715
39.9k
    ssl->defltmeth = ssl->method = method;
716
717
39.9k
    return 1;
718
39.9k
}
719
720
SSL *ossl_ssl_connection_new_int(SSL_CTX *ctx, SSL *user_ssl,
721
    const SSL_METHOD *method)
722
29.0k
{
723
29.0k
    SSL_CONNECTION *s;
724
29.0k
    SSL *ssl;
725
726
29.0k
    s = OPENSSL_zalloc(sizeof(*s));
727
29.0k
    if (s == NULL)
728
0
        return NULL;
729
730
29.0k
    ssl = &s->ssl;
731
29.0k
    s->user_ssl = (user_ssl == NULL) ? ssl : user_ssl;
732
733
29.0k
    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
29.0k
    RECORD_LAYER_init(&s->rlayer, s);
741
742
29.0k
    s->options = ctx->options;
743
744
29.0k
    s->dane.flags = ctx->dane.flags;
745
29.0k
    if (method->version == ctx->method->version) {
746
20.1k
        s->min_proto_version = ctx->min_proto_version;
747
20.1k
        s->max_proto_version = ctx->max_proto_version;
748
20.1k
    }
749
750
29.0k
    s->mode = ctx->mode;
751
29.0k
    s->max_cert_list = ctx->max_cert_list;
752
29.0k
    s->max_early_data = ctx->max_early_data;
753
29.0k
    s->recv_max_early_data = ctx->recv_max_early_data;
754
755
29.0k
    s->num_tickets = ctx->num_tickets;
756
29.0k
    s->pha_enabled = ctx->pha_enabled;
757
758
    /* Shallow copy of the ciphersuites stack */
759
29.0k
    s->tls13_ciphersuites = sk_SSL_CIPHER_dup(ctx->tls13_ciphersuites);
760
29.0k
    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
29.0k
    s->cert = ssl_cert_dup(ctx->cert);
773
29.0k
    if (s->cert == NULL)
774
0
        goto sslerr;
775
776
29.0k
    RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead);
777
29.0k
    s->msg_callback = ctx->msg_callback;
778
29.0k
    s->msg_callback_arg = ctx->msg_callback_arg;
779
29.0k
    s->verify_mode = ctx->verify_mode;
780
29.0k
    s->not_resumable_session_cb = ctx->not_resumable_session_cb;
781
29.0k
    s->rlayer.record_padding_cb = ctx->record_padding_cb;
782
29.0k
    s->rlayer.record_padding_arg = ctx->record_padding_arg;
783
29.0k
    s->rlayer.block_padding = ctx->block_padding;
784
29.0k
    s->rlayer.hs_padding = ctx->hs_padding;
785
29.0k
    s->sid_ctx_length = ctx->sid_ctx_length;
786
29.0k
    if (!ossl_assert(s->sid_ctx_length <= sizeof(s->sid_ctx)))
787
0
        goto err;
788
29.0k
    memcpy(&s->sid_ctx, &ctx->sid_ctx, sizeof(s->sid_ctx));
789
29.0k
    s->verify_callback = ctx->default_verify_callback;
790
29.0k
    s->generate_session_id = ctx->generate_session_id;
791
792
29.0k
    s->param = X509_VERIFY_PARAM_new();
793
29.0k
    if (s->param == NULL)
794
0
        goto asn1err;
795
29.0k
    X509_VERIFY_PARAM_inherit(s->param, ctx->param);
796
29.0k
    s->quiet_shutdown = IS_QUIC_CTX(ctx) ? 0 : ctx->quiet_shutdown;
797
798
29.0k
    if (!IS_QUIC_CTX(ctx))
799
20.1k
        s->ext.max_fragment_len_mode = ctx->ext.max_fragment_len_mode;
800
801
29.0k
    s->max_send_fragment = ctx->max_send_fragment;
802
29.0k
    s->split_send_fragment = ctx->split_send_fragment;
803
29.0k
    s->max_pipelines = ctx->max_pipelines;
804
29.0k
    s->rlayer.default_read_buf_len = ctx->default_read_buf_len;
805
806
29.0k
    s->ext.debug_cb = 0;
807
29.0k
    s->ext.debug_arg = NULL;
808
29.0k
    s->ext.ticket_expected = 0;
809
29.0k
    s->ext.status_type = ctx->ext.status_type;
810
29.0k
    s->ext.status_expected = 0;
811
29.0k
    s->ext.ocsp.ids = NULL;
812
29.0k
    s->ext.ocsp.exts = NULL;
813
29.0k
    s->ext.ocsp.resp = NULL;
814
29.0k
    s->ext.ocsp.resp_len = 0;
815
29.0k
    SSL_CTX_up_ref(ctx);
816
29.0k
    s->session_ctx = ctx;
817
29.0k
    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
29.0k
    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
29.0k
#ifndef OPENSSL_NO_NEXTPROTONEG
838
29.0k
    s->ext.npn = NULL;
839
29.0k
#endif
840
841
29.0k
    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
29.0k
    s->verified_chain = NULL;
852
29.0k
    s->verify_result = X509_V_OK;
853
854
29.0k
    s->default_passwd_callback = ctx->default_passwd_callback;
855
29.0k
    s->default_passwd_callback_userdata = ctx->default_passwd_callback_userdata;
856
857
29.0k
    s->key_update = SSL_KEY_UPDATE_NONE;
858
859
29.0k
    if (!IS_QUIC_CTX(ctx)) {
860
20.1k
        s->allow_early_data_cb = ctx->allow_early_data_cb;
861
20.1k
        s->allow_early_data_cb_data = ctx->allow_early_data_cb_data;
862
20.1k
    }
863
864
29.0k
    if (!method->ssl_init(ssl))
865
0
        goto sslerr;
866
867
29.0k
    s->server = (method->ssl_accept == ssl_undefined_function) ? 0 : 1;
868
869
29.0k
    if (!method->ssl_reset(ssl))
870
0
        goto sslerr;
871
872
29.0k
#ifndef OPENSSL_NO_PSK
873
29.0k
    s->psk_client_callback = ctx->psk_client_callback;
874
29.0k
    s->psk_server_callback = ctx->psk_server_callback;
875
29.0k
#endif
876
29.0k
    s->psk_find_session_cb = ctx->psk_find_session_cb;
877
29.0k
    s->psk_use_session_cb = ctx->psk_use_session_cb;
878
879
29.0k
    s->async_cb = ctx->async_cb;
880
29.0k
    s->async_cb_arg = ctx->async_cb_arg;
881
882
29.0k
    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
29.0k
    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
29.0k
    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
29.0k
#ifndef OPENSSL_NO_CT
903
29.0k
    if (!SSL_set_ct_validation_callback(ssl, ctx->ct_validation_callback,
904
29.0k
            ctx->ct_validation_callback_arg))
905
0
        goto sslerr;
906
29.0k
#endif
907
908
29.0k
    s->ssl_pkey_num = SSL_PKEY_NUM + ctx->sigalg_list_len;
909
29.0k
    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
94.4k
{
925
94.4k
    return ossl_ssl_connection_new_int(ctx, NULL, ctx->method);
926
94.4k
}
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
6.60k
{
969
6.60k
    int i;
970
971
6.60k
    if (CRYPTO_UP_REF(&s->references, &i) <= 0)
972
0
        return 0;
973
974
6.60k
    REF_PRINT_COUNT("SSL", i, s);
975
6.60k
    REF_ASSERT_ISNT(i < 2);
976
6.60k
    return ((i > 1) ? 1 : 0);
977
6.60k
}
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
8.67k
{
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
8.67k
    SSL_SESSION r, *p;
1041
8.67k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
1042
1043
8.67k
    if (sc == NULL || id_len > sizeof(r.session_id))
1044
0
        return 0;
1045
1046
8.67k
    r.ssl_version = sc->version;
1047
8.67k
    r.session_id_length = id_len;
1048
8.67k
    memcpy(r.session_id, id, id_len);
1049
1050
8.67k
    if (!CRYPTO_THREAD_read_lock(sc->session_ctx->lock))
1051
0
        return 0;
1052
8.67k
    p = lh_SSL_SESSION_retrieve(sc->session_ctx->sessions, &r);
1053
8.67k
    CRYPTO_THREAD_unlock(sc->session_ctx->lock);
1054
8.67k
    return (p != NULL);
1055
8.67k
}
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
191k
{
1373
191k
    int i;
1374
1375
191k
    if (s == NULL)
1376
320
        return;
1377
190k
    CRYPTO_DOWN_REF(&s->references, &i);
1378
190k
    REF_PRINT_COUNT("SSL", i, s);
1379
190k
    if (i > 0)
1380
3.57k
        return;
1381
187k
    REF_ASSERT_ISNT(i < 0);
1382
1383
187k
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
1384
1385
187k
    if (s->method != NULL)
1386
187k
        s->method->ssl_free(s);
1387
1388
187k
    SSL_CTX_free(s->ctx);
1389
187k
    CRYPTO_THREAD_lock_free(s->lock);
1390
187k
    CRYPTO_FREE_REF(&s->references);
1391
1392
187k
    OPENSSL_free(s);
1393
187k
}
1394
1395
void ossl_ssl_connection_free(SSL *ssl)
1396
107k
{
1397
107k
    SSL_CONNECTION *s;
1398
1399
107k
    s = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
1400
107k
    if (s == NULL)
1401
0
        return;
1402
1403
107k
    X509_VERIFY_PARAM_free(s->param);
1404
107k
    dane_final(&s->dane);
1405
1406
    /* Ignore return value */
1407
107k
    ssl_free_wbio_buffer(s);
1408
1409
    /* Ignore return value */
1410
107k
    RECORD_LAYER_clear(&s->rlayer);
1411
1412
107k
    BUF_MEM_free(s->init_buf);
1413
1414
    /* add extra stuff */
1415
107k
    sk_SSL_CIPHER_free(s->cipher_list);
1416
107k
    sk_SSL_CIPHER_free(s->cipher_list_by_id);
1417
107k
    sk_SSL_CIPHER_free(s->tls13_ciphersuites);
1418
107k
    sk_SSL_CIPHER_free(s->peer_ciphers);
1419
1420
    /* Make the next call work :-) */
1421
107k
    if (s->session != NULL) {
1422
98.7k
        ssl_clear_bad_session(s);
1423
98.7k
        SSL_SESSION_free(s->session);
1424
98.7k
    }
1425
107k
    SSL_SESSION_free(s->psksession);
1426
107k
    OPENSSL_free(s->psksession_id);
1427
1428
107k
    ssl_cert_free(s->cert);
1429
107k
    OPENSSL_free(s->shared_sigalgs);
1430
    /* Free up if allocated */
1431
1432
107k
    OPENSSL_free(s->ext.hostname);
1433
107k
    SSL_CTX_free(s->session_ctx);
1434
107k
    OPENSSL_free(s->ext.ecpointformats);
1435
107k
    OPENSSL_free(s->ext.peer_ecpointformats);
1436
107k
    OPENSSL_free(s->ext.supportedgroups);
1437
107k
    OPENSSL_free(s->ext.peer_supportedgroups);
1438
107k
    sk_X509_EXTENSION_pop_free(s->ext.ocsp.exts, X509_EXTENSION_free);
1439
107k
#ifndef OPENSSL_NO_OCSP
1440
107k
    sk_OCSP_RESPID_pop_free(s->ext.ocsp.ids, OCSP_RESPID_free);
1441
107k
#endif
1442
107k
#ifndef OPENSSL_NO_CT
1443
107k
    SCT_LIST_free(s->scts);
1444
107k
    OPENSSL_free(s->ext.scts);
1445
107k
#endif
1446
107k
    OPENSSL_free(s->ext.ocsp.resp);
1447
107k
    OPENSSL_free(s->ext.alpn);
1448
107k
    OPENSSL_free(s->ext.tls13_cookie);
1449
107k
    if (s->clienthello != NULL)
1450
0
        OPENSSL_free(s->clienthello->pre_proc_exts);
1451
107k
    OPENSSL_free(s->clienthello);
1452
107k
    OPENSSL_free(s->pha_context);
1453
107k
    EVP_MD_CTX_free(s->pha_dgst);
1454
1455
107k
    sk_X509_NAME_pop_free(s->ca_names, X509_NAME_free);
1456
107k
    sk_X509_NAME_pop_free(s->client_ca_names, X509_NAME_free);
1457
1458
107k
    OPENSSL_free(s->client_cert_type);
1459
107k
    OPENSSL_free(s->server_cert_type);
1460
1461
107k
    OSSL_STACK_OF_X509_free(s->verified_chain);
1462
1463
107k
    if (ssl->method != NULL)
1464
107k
        ssl->method->ssl_deinit(ssl);
1465
1466
107k
    ASYNC_WAIT_CTX_free(s->waitctx);
1467
1468
107k
#if !defined(OPENSSL_NO_NEXTPROTONEG)
1469
107k
    OPENSSL_free(s->ext.npn);
1470
107k
#endif
1471
1472
107k
#ifndef OPENSSL_NO_SRTP
1473
107k
    sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles);
1474
107k
#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
107k
    BIO_free_all(s->wbio);
1483
107k
    s->wbio = NULL;
1484
107k
    BIO_free_all(s->rbio);
1485
107k
    s->rbio = NULL;
1486
107k
    OPENSSL_free(s->s3.tmp.valid_flags);
1487
107k
}
1488
1489
void SSL_set0_rbio(SSL *s, BIO *rbio)
1490
37.8k
{
1491
37.8k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1492
1493
37.8k
#ifndef OPENSSL_NO_QUIC
1494
37.8k
    if (IS_QUIC(s)) {
1495
8.82k
        ossl_quic_conn_set0_net_rbio(s, rbio);
1496
8.82k
        return;
1497
8.82k
    }
1498
29.0k
#endif
1499
1500
29.0k
    if (sc == NULL)
1501
0
        return;
1502
1503
29.0k
    BIO_free_all(sc->rbio);
1504
29.0k
    sc->rbio = rbio;
1505
29.0k
    sc->rlayer.rrlmethod->set1_bio(sc->rlayer.rrl, sc->rbio);
1506
29.0k
}
1507
1508
void SSL_set0_wbio(SSL *s, BIO *wbio)
1509
37.8k
{
1510
37.8k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
1511
1512
37.8k
#ifndef OPENSSL_NO_QUIC
1513
37.8k
    if (IS_QUIC(s)) {
1514
8.82k
        ossl_quic_conn_set0_net_wbio(s, wbio);
1515
8.82k
        return;
1516
8.82k
    }
1517
29.0k
#endif
1518
1519
29.0k
    if (sc == NULL)
1520
0
        return;
1521
1522
    /*
1523
     * If the output buffering BIO is still in place, remove it
1524
     */
1525
29.0k
    if (sc->bbio != NULL)
1526
0
        sc->wbio = BIO_pop(sc->wbio);
1527
1528
29.0k
    BIO_free_all(sc->wbio);
1529
29.0k
    sc->wbio = wbio;
1530
1531
    /* Re-attach |bbio| to the new |wbio|. */
1532
29.0k
    if (sc->bbio != NULL)
1533
0
        sc->wbio = BIO_push(sc->bbio, sc->wbio);
1534
1535
29.0k
    sc->rlayer.wrlmethod->set1_bio(sc->rlayer.wrl, sc->wbio);
1536
29.0k
}
1537
1538
void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
1539
37.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
37.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
37.8k
    if (rbio != NULL && rbio == wbio)
1554
8.82k
        BIO_up_ref(rbio);
1555
1556
    /*
1557
     * If only the wbio is changed only adopt one reference.
1558
     */
1559
37.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
37.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
37.8k
    SSL_set0_rbio(s, rbio);
1575
37.8k
    SSL_set0_wbio(s, wbio);
1576
37.8k
}
1577
1578
BIO *SSL_get_rbio(const SSL *s)
1579
7.15M
{
1580
7.15M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1581
1582
7.15M
#ifndef OPENSSL_NO_QUIC
1583
7.15M
    if (IS_QUIC(s))
1584
17.6k
        return ossl_quic_conn_get_net_rbio(s);
1585
7.14M
#endif
1586
1587
7.14M
    if (sc == NULL)
1588
0
        return NULL;
1589
1590
7.14M
    return sc->rbio;
1591
7.14M
}
1592
1593
BIO *SSL_get_wbio(const SSL *s)
1594
109k
{
1595
109k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
1596
1597
109k
#ifndef OPENSSL_NO_QUIC
1598
109k
    if (IS_QUIC(s))
1599
8.82k
        return ossl_quic_conn_get_net_wbio(s);
1600
100k
#endif
1601
1602
100k
    if (sc == NULL)
1603
0
        return NULL;
1604
1605
100k
    if (sc->bbio != NULL) {
1606
        /*
1607
         * If |bbio| is active, the true caller-configured BIO is its
1608
         * |next_bio|.
1609
         */
1610
71.8k
        return BIO_next(sc->bbio);
1611
71.8k
    }
1612
29.0k
    return sc->wbio;
1613
100k
}
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
2.06k
{
2126
2.06k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2127
2128
2.06k
#ifndef OPENSSL_NO_QUIC
2129
2.06k
    if (IS_QUIC(s))
2130
0
        return s->method->ssl_accept(s);
2131
2.06k
#endif
2132
2133
2.06k
    if (sc == NULL)
2134
0
        return 0;
2135
2136
2.06k
    if (sc->handshake_func == NULL) {
2137
        /* Not properly initialized yet */
2138
0
        SSL_set_accept_state(s);
2139
0
    }
2140
2141
2.06k
    return SSL_do_handshake(s);
2142
2.06k
}
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
8.82M
{
2250
8.82M
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2251
2252
8.82M
#ifndef OPENSSL_NO_QUIC
2253
8.82M
    if (IS_QUIC(s))
2254
4.40M
        return s->method->ssl_read(s, buf, num, readbytes);
2255
4.42M
#endif
2256
2257
4.42M
    if (sc == NULL)
2258
0
        return -1;
2259
2260
4.42M
    if (sc->handshake_func == NULL) {
2261
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2262
0
        return -1;
2263
0
    }
2264
2265
4.42M
    if (sc->shutdown & SSL_RECEIVED_SHUTDOWN) {
2266
0
        sc->rwstate = SSL_NOTHING;
2267
0
        return 0;
2268
0
    }
2269
2270
4.42M
    if (sc->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY
2271
4.42M
        || sc->early_data_state == SSL_EARLY_DATA_ACCEPT_RETRY) {
2272
5
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2273
5
        return 0;
2274
5
    }
2275
    /*
2276
     * If we are a client and haven't received the ServerHello etc then we
2277
     * better do that
2278
     */
2279
4.42M
    ossl_statem_check_finish_init(sc, 0);
2280
2281
4.42M
    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
4.42M
    } else {
2295
4.42M
        return s->method->ssl_read(s, buf, num, readbytes);
2296
4.42M
    }
2297
4.42M
}
2298
2299
int SSL_read(SSL *s, void *buf, int num)
2300
24.6M
{
2301
24.6M
    int ret;
2302
24.6M
    size_t readbytes;
2303
2304
24.6M
    if (num < 0) {
2305
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
2306
0
        return -1;
2307
0
    }
2308
2309
24.6M
    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
24.6M
    if (ret > 0)
2316
29.1k
        ret = (int)readbytes;
2317
2318
24.6M
    return ret;
2319
24.6M
}
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
5.98k
{
2332
5.98k
    int ret;
2333
5.98k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2334
2335
    /* TODO(QUIC 0RTT): 0-RTT support */
2336
5.98k
    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
5.98k
    switch (sc->early_data_state) {
2342
5.98k
    case SSL_EARLY_DATA_NONE:
2343
5.98k
        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
5.98k
    case SSL_EARLY_DATA_ACCEPT_RETRY:
2350
5.98k
        sc->early_data_state = SSL_EARLY_DATA_ACCEPTING;
2351
5.98k
        ret = SSL_accept(s);
2352
5.98k
        if (ret <= 0) {
2353
            /* NBIO or error */
2354
4.86k
            sc->early_data_state = SSL_EARLY_DATA_ACCEPT_RETRY;
2355
4.86k
            return SSL_READ_EARLY_DATA_ERROR;
2356
4.86k
        }
2357
        /* fall through */
2358
2359
1.12k
    case SSL_EARLY_DATA_READ_RETRY:
2360
1.12k
        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.12k
        } else {
2374
1.12k
            sc->early_data_state = SSL_EARLY_DATA_FINISHED_READING;
2375
1.12k
        }
2376
1.12k
        *readbytes = 0;
2377
1.12k
        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
5.98k
    }
2383
5.98k
}
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
2.57k
{
2468
2.57k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
2469
2470
2.57k
#ifndef OPENSSL_NO_QUIC
2471
2.57k
    if (IS_QUIC(s))
2472
2.57k
        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
7.94k
{
2590
7.94k
    int ret;
2591
7.94k
    size_t written;
2592
2593
7.94k
    if (num < 0) {
2594
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
2595
0
        return -1;
2596
0
    }
2597
2598
7.94k
    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
7.94k
    if (ret > 0)
2605
1.87k
        ret = (int)written;
2606
2607
7.94k
    return ret;
2608
7.94k
}
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
911
{
2802
911
    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
911
    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
911
    return 1;
2813
911
}
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.13k
{
2832
1.13k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
2833
2834
1.13k
    if (sc == NULL)
2835
0
        return 0;
2836
2837
1.13k
    if (!can_renegotiate(sc))
2838
0
        return 0;
2839
2840
1.13k
    sc->renegotiate = 1;
2841
1.13k
    sc->new_session = 0;
2842
1.13k
    return s->method->ssl_renegotiate(s);
2843
1.13k
}
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
245k
{
2879
245k
    return ossl_ctrl_internal(s, cmd, larg, parg, /*no_quic=*/0);
2880
245k
}
2881
2882
long ossl_ctrl_internal(SSL *s, int cmd, long larg, void *parg, int no_quic)
2883
58.0k
{
2884
58.0k
    long l;
2885
58.0k
    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
58.0k
    if (!no_quic && IS_QUIC(s))
2903
8.82k
        return s->method->ssl_ctrl(s, cmd, larg, parg);
2904
2905
49.2k
    if (sc == NULL)
2906
0
        return 0;
2907
2908
49.2k
    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
20.2k
    case SSL_CTRL_SET_MIN_PROTO_VERSION:
2991
20.2k
        return ssl_check_allowed_versions(larg, sc->max_proto_version)
2992
20.2k
            && ssl_set_version_bound(s->defltmeth->version, (int)larg,
2993
20.2k
                &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
29.0k
    default:
3003
29.0k
        if (IS_QUIC(s))
3004
8.82k
            return SSL_ctrl((SSL *)sc, cmd, larg, parg);
3005
20.2k
        else
3006
20.2k
            return s->method->ssl_ctrl(s, cmd, larg, parg);
3007
49.2k
    }
3008
49.2k
}
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.23k
{
3022
1.23k
    int res = 0;
3023
3024
1.23k
    if (ssl_tsan_lock(ctx)) {
3025
1.23k
        res = tsan_load(stat);
3026
1.23k
        ssl_tsan_unlock(ctx);
3027
1.23k
    }
3028
1.23k
    return res;
3029
1.23k
}
3030
3031
long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
3032
9.71k
{
3033
9.71k
    long l;
3034
    /* For some cases with ctx == NULL perform syntax checks */
3035
9.71k
    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
9.71k
    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
600
    case SSL_CTRL_GET_SESS_CACHE_SIZE:
3075
600
        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
300
    case SSL_CTRL_SESS_NUMBER:
3084
300
        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
8.81k
    case SSL_CTRL_SET_MIN_PROTO_VERSION:
3133
8.81k
        return ssl_check_allowed_versions(larg, ctx->max_proto_version)
3134
8.81k
            && ssl_set_version_bound(ctx->method->version, (int)larg,
3135
8.81k
                &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
9.71k
    }
3147
9.71k
}
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
6.27M
{
3165
6.27M
    if (a->id > b->id)
3166
2.49M
        return 1;
3167
3.77M
    if (a->id < b->id)
3168
3.50M
        return -1;
3169
276k
    return 0;
3170
3.77M
}
3171
3172
int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
3173
    const SSL_CIPHER *const *bp)
3174
121M
{
3175
121M
    if ((*ap)->id > (*bp)->id)
3176
67.6M
        return 1;
3177
54.0M
    if ((*ap)->id < (*bp)->id)
3178
54.0M
        return -1;
3179
62.1k
    return 0;
3180
54.0M
}
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
81.8k
{
3188
81.8k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3189
3190
81.8k
    if (sc != NULL) {
3191
81.8k
        if (sc->cipher_list != NULL) {
3192
40.1k
            return sc->cipher_list;
3193
41.6k
        } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) {
3194
41.6k
            return s->ctx->cipher_list;
3195
41.6k
        }
3196
81.8k
    }
3197
0
    return NULL;
3198
81.8k
}
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
44.4k
{
3211
44.4k
    STACK_OF(SSL_CIPHER) *sk = NULL, *ciphers;
3212
44.4k
    int i;
3213
44.4k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3214
3215
44.4k
    if (sc == NULL)
3216
0
        return NULL;
3217
3218
44.4k
    ciphers = SSL_get_ciphers(s);
3219
44.4k
    if (!ciphers)
3220
0
        return NULL;
3221
44.4k
    if (!ssl_set_client_disabled(sc))
3222
0
        return NULL;
3223
4.70M
    for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
3224
4.65M
        const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
3225
4.65M
        if (!ssl_cipher_disabled(sc, c, SSL_SECOP_CIPHER_SUPPORTED, 0)) {
3226
2.62M
            if (!sk)
3227
44.4k
                sk = sk_SSL_CIPHER_new_null();
3228
2.62M
            if (!sk)
3229
0
                return NULL;
3230
2.62M
            if (!sk_SSL_CIPHER_push(sk, c)) {
3231
0
                sk_SSL_CIPHER_free(sk);
3232
0
                return NULL;
3233
0
            }
3234
2.62M
        }
3235
4.65M
    }
3236
44.4k
    return sk;
3237
44.4k
}
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
62.1k
{
3243
62.1k
    if (s != NULL) {
3244
62.1k
        if (s->cipher_list_by_id != NULL)
3245
41.2k
            return s->cipher_list_by_id;
3246
20.8k
        else if (s->ssl.ctx != NULL
3247
20.8k
            && s->ssl.ctx->cipher_list_by_id != NULL)
3248
20.8k
            return s->ssl.ctx->cipher_list_by_id;
3249
62.1k
    }
3250
0
    return NULL;
3251
62.1k
}
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
73.9k
{
3285
73.9k
    int i, num = 0;
3286
73.9k
    const SSL_CIPHER *c;
3287
3288
73.9k
    if (sk == NULL)
3289
0
        return 0;
3290
12.8M
    for (i = 0; i < sk_SSL_CIPHER_num(sk); ++i) {
3291
12.7M
        c = sk_SSL_CIPHER_value(sk, i);
3292
12.7M
        if (c->min_tls >= TLS1_3_VERSION)
3293
221k
            continue;
3294
12.5M
        num++;
3295
12.5M
    }
3296
73.9k
    return num;
3297
73.9k
}
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
32.6k
{
3302
32.6k
    STACK_OF(SSL_CIPHER) *sk;
3303
3304
32.6k
    sk = ssl_create_cipher_list(ctx, ctx->tls13_ciphersuites,
3305
32.6k
        &ctx->cipher_list, &ctx->cipher_list_by_id, str,
3306
32.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
32.6k
    if (sk == NULL)
3315
0
        return 0;
3316
32.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
32.6k
    return 1;
3321
32.6k
}
3322
3323
/** specify the ciphers to be used by the SSL */
3324
int SSL_set_cipher_list(SSL *s, const char *str)
3325
11.3k
{
3326
11.3k
    STACK_OF(SSL_CIPHER) *sk;
3327
11.3k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3328
11.3k
    SSL_CTX *ctx;
3329
3330
11.3k
    if (sc == NULL)
3331
0
        return 0;
3332
3333
11.3k
    ctx = s->ctx;
3334
11.3k
    sk = ssl_create_cipher_list(ctx, sc->tls13_ciphersuites,
3335
11.3k
        &sc->cipher_list, &sc->cipher_list_by_id, str,
3336
11.3k
        sc->cert);
3337
    /* see comment in SSL_CTX_set_cipher_list */
3338
11.3k
    if (sk == NULL)
3339
0
        return 0;
3340
11.3k
    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
11.3k
    return 1;
3345
11.3k
}
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 (size < 2 || buf == NULL)
3356
0
        return NULL;
3357
3358
0
    buf[0] = '\0';
3359
3360
0
    if (sc == NULL || !sc->server)
3361
0
        return NULL;
3362
3363
0
    p = buf;
3364
0
    clntsk = sc->peer_ciphers;
3365
0
    srvrsk = SSL_get_ciphers(s);
3366
3367
0
    if (clntsk == NULL || sk_SSL_CIPHER_num(clntsk) == 0
3368
0
        || srvrsk == NULL || sk_SSL_CIPHER_num(srvrsk) == 0)
3369
0
        return buf;
3370
3371
0
    for (i = 0; i < sk_SSL_CIPHER_num(clntsk); i++) {
3372
0
        int n;
3373
3374
0
        c = sk_SSL_CIPHER_value(clntsk, i);
3375
0
        if (sk_SSL_CIPHER_find(srvrsk, c) < 0)
3376
0
            continue;
3377
3378
0
        n = (int)OPENSSL_strnlen(c->name, size);
3379
0
        if (n >= size)
3380
0
            break;
3381
3382
0
        memcpy(p, c->name, n);
3383
0
        p += n;
3384
0
        *(p++) = ':';
3385
0
        size -= n + 1;
3386
0
    }
3387
3388
    /* No overlap */
3389
0
    if (p != buf)
3390
0
        p[-1] = '\0';
3391
3392
0
    return buf;
3393
0
}
3394
3395
/**
3396
 * Return the requested servername (SNI) value. Note that the behaviour varies
3397
 * depending on:
3398
 * - whether this is called by the client or the server,
3399
 * - if we are before or during/after the handshake,
3400
 * - if a resumption or normal handshake is being attempted/has occurred
3401
 * - whether we have negotiated TLSv1.2 (or below) or TLSv1.3
3402
 *
3403
 * Note that only the host_name type is defined (RFC 3546).
3404
 */
3405
const char *SSL_get_servername(const SSL *s, const int type)
3406
0
{
3407
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3408
0
    int server;
3409
3410
0
    if (sc == NULL)
3411
0
        return NULL;
3412
3413
    /*
3414
     * If we don't know if we are the client or the server yet then we assume
3415
     * client.
3416
     */
3417
0
    server = sc->handshake_func == NULL ? 0 : sc->server;
3418
3419
0
    if (type != TLSEXT_NAMETYPE_host_name)
3420
0
        return NULL;
3421
3422
0
    if (server) {
3423
        /**
3424
         * Server side
3425
         * In TLSv1.3 on the server SNI is not associated with the session
3426
         * but in TLSv1.2 or below it is.
3427
         *
3428
         * Before the handshake:
3429
         *  - return NULL
3430
         *
3431
         * During/after the handshake (TLSv1.2 or below resumption occurred):
3432
         * - If a servername was accepted by the server in the original
3433
         *   handshake then it will return that servername, or NULL otherwise.
3434
         *
3435
         * During/after the handshake (TLSv1.2 or below resumption did not occur):
3436
         * - The function will return the servername requested by the client in
3437
         *   this handshake or NULL if none was requested.
3438
         */
3439
0
        if (sc->hit && !SSL_CONNECTION_IS_TLS13(sc))
3440
0
            return sc->session->ext.hostname;
3441
0
    } else {
3442
        /**
3443
         * Client side
3444
         *
3445
         * Before the handshake:
3446
         *  - If a servername has been set via a call to
3447
         *    SSL_set_tlsext_host_name() then it will return that servername
3448
         *  - If one has not been set, but a TLSv1.2 resumption is being
3449
         *    attempted and the session from the original handshake had a
3450
         *    servername accepted by the server then it will return that
3451
         *    servername
3452
         *  - Otherwise it returns NULL
3453
         *
3454
         * During/after the handshake (TLSv1.2 or below resumption occurred):
3455
         * - If the session from the original handshake had a servername accepted
3456
         *   by the server then it will return that servername.
3457
         * - Otherwise it returns the servername set via
3458
         *   SSL_set_tlsext_host_name() (or NULL if it was not called).
3459
         *
3460
         * During/after the handshake (TLSv1.2 or below resumption did not occur):
3461
         * - It will return the servername set via SSL_set_tlsext_host_name()
3462
         *   (or NULL if it was not called).
3463
         */
3464
0
        if (SSL_in_before(s)) {
3465
0
            if (sc->ext.hostname == NULL
3466
0
                && sc->session != NULL
3467
0
                && sc->session->ssl_version != TLS1_3_VERSION)
3468
0
                return sc->session->ext.hostname;
3469
0
        } else {
3470
0
            if (!SSL_CONNECTION_IS_TLS13(sc) && sc->hit
3471
0
                && sc->session->ext.hostname != NULL)
3472
0
                return sc->session->ext.hostname;
3473
0
        }
3474
0
    }
3475
3476
0
    return sc->ext.hostname;
3477
0
}
3478
3479
int SSL_get_servername_type(const SSL *s)
3480
0
{
3481
0
    if (SSL_get_servername(s, TLSEXT_NAMETYPE_host_name) != NULL)
3482
0
        return TLSEXT_NAMETYPE_host_name;
3483
0
    return -1;
3484
0
}
3485
3486
/*
3487
 * SSL_select_next_proto implements the standard protocol selection. It is
3488
 * expected that this function is called from the callback set by
3489
 * SSL_CTX_set_next_proto_select_cb. The protocol data is assumed to be a
3490
 * vector of 8-bit, length prefixed byte strings. The length byte itself is
3491
 * not included in the length. A byte string of length 0 is invalid. No byte
3492
 * string may be truncated. The current, but experimental algorithm for
3493
 * selecting the protocol is: 1) If the server doesn't support NPN then this
3494
 * is indicated to the callback. In this case, the client application has to
3495
 * abort the connection or have a default application level protocol. 2) If
3496
 * the server supports NPN, but advertises an empty list then the client
3497
 * selects the first protocol in its list, but indicates via the API that this
3498
 * fallback case was enacted. 3) Otherwise, the client finds the first
3499
 * protocol in the server's list that it supports and selects this protocol.
3500
 * This is because it's assumed that the server has better information about
3501
 * which protocol a client should use. 4) If the client doesn't support any
3502
 * of the server's advertised protocols, then this is treated the same as
3503
 * case 2. It returns either OPENSSL_NPN_NEGOTIATED if a common protocol was
3504
 * found, or OPENSSL_NPN_NO_OVERLAP if the fallback case was reached.
3505
 */
3506
int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
3507
    const unsigned char *server,
3508
    unsigned int server_len,
3509
    const unsigned char *client, unsigned int client_len)
3510
0
{
3511
0
    PACKET cpkt, csubpkt, spkt, ssubpkt;
3512
3513
0
    if (!PACKET_buf_init(&cpkt, client, client_len)
3514
0
        || !PACKET_get_length_prefixed_1(&cpkt, &csubpkt)
3515
0
        || PACKET_remaining(&csubpkt) == 0) {
3516
0
        *out = NULL;
3517
0
        *outlen = 0;
3518
0
        return OPENSSL_NPN_NO_OVERLAP;
3519
0
    }
3520
3521
    /*
3522
     * Set the default opportunistic protocol. Will be overwritten if we find
3523
     * a match.
3524
     */
3525
0
    *out = (unsigned char *)PACKET_data(&csubpkt);
3526
0
    *outlen = (unsigned char)PACKET_remaining(&csubpkt);
3527
3528
    /*
3529
     * For each protocol in server preference order, see if we support it.
3530
     */
3531
0
    if (PACKET_buf_init(&spkt, server, server_len)) {
3532
0
        while (PACKET_get_length_prefixed_1(&spkt, &ssubpkt)) {
3533
0
            if (PACKET_remaining(&ssubpkt) == 0)
3534
0
                continue; /* Invalid - ignore it */
3535
0
            if (PACKET_buf_init(&cpkt, client, client_len)) {
3536
0
                while (PACKET_get_length_prefixed_1(&cpkt, &csubpkt)) {
3537
0
                    if (PACKET_equal(&csubpkt, PACKET_data(&ssubpkt),
3538
0
                            PACKET_remaining(&ssubpkt))) {
3539
                        /* We found a match */
3540
0
                        *out = (unsigned char *)PACKET_data(&ssubpkt);
3541
0
                        *outlen = (unsigned char)PACKET_remaining(&ssubpkt);
3542
0
                        return OPENSSL_NPN_NEGOTIATED;
3543
0
                    }
3544
0
                }
3545
                /* Ignore spurious trailing bytes in the client list */
3546
0
            } else {
3547
                /* This should never happen */
3548
0
                return OPENSSL_NPN_NO_OVERLAP;
3549
0
            }
3550
0
        }
3551
        /* Ignore spurious trailing bytes in the server list */
3552
0
    }
3553
3554
    /*
3555
     * There's no overlap between our protocols and the server's list. We use
3556
     * the default opportunistic protocol selected earlier
3557
     */
3558
0
    return OPENSSL_NPN_NO_OVERLAP;
3559
0
}
3560
3561
#ifndef OPENSSL_NO_NEXTPROTONEG
3562
/*
3563
 * SSL_get0_next_proto_negotiated sets *data and *len to point to the
3564
 * client's requested protocol for this connection and returns 0. If the
3565
 * client didn't request any protocol, then *data is set to NULL. Note that
3566
 * the client can request any protocol it chooses. The value returned from
3567
 * this function need not be a member of the list of supported protocols
3568
 * provided by the callback.
3569
 */
3570
void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
3571
    unsigned *len)
3572
0
{
3573
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
3574
3575
0
    if (sc == NULL) {
3576
        /* We have no other way to indicate error */
3577
0
        *data = NULL;
3578
0
        *len = 0;
3579
0
        return;
3580
0
    }
3581
3582
0
    *data = sc->ext.npn;
3583
0
    if (*data == NULL) {
3584
0
        *len = 0;
3585
0
    } else {
3586
0
        *len = (unsigned int)sc->ext.npn_len;
3587
0
    }
3588
0
}
3589
3590
/*
3591
 * SSL_CTX_set_npn_advertised_cb sets a callback that is called when
3592
 * a TLS server needs a list of supported protocols for Next Protocol
3593
 * Negotiation. The returned list must be in wire format.  The list is
3594
 * returned by setting |out| to point to it and |outlen| to its length. This
3595
 * memory will not be modified, but one should assume that the SSL* keeps a
3596
 * reference to it. The callback should return SSL_TLSEXT_ERR_OK if it
3597
 * wishes to advertise. Otherwise, no such extension will be included in the
3598
 * ServerHello.
3599
 */
3600
void SSL_CTX_set_npn_advertised_cb(SSL_CTX *ctx,
3601
    SSL_CTX_npn_advertised_cb_func cb,
3602
    void *arg)
3603
0
{
3604
0
    if (IS_QUIC_CTX(ctx))
3605
        /* NPN not allowed for QUIC */
3606
0
        return;
3607
3608
0
    ctx->ext.npn_advertised_cb = cb;
3609
0
    ctx->ext.npn_advertised_cb_arg = arg;
3610
0
}
3611
3612
/*
3613
 * SSL_CTX_set_next_proto_select_cb sets a callback that is called when a
3614
 * client needs to select a protocol from the server's provided list. |out|
3615
 * must be set to point to the selected protocol (which may be within |in|).
3616
 * The length of the protocol name must be written into |outlen|. The
3617
 * server's advertised protocols are provided in |in| and |inlen|. The
3618
 * callback can assume that |in| is syntactically valid. The client must
3619
 * select a protocol. It is fatal to the connection if this callback returns
3620
 * a value other than SSL_TLSEXT_ERR_OK.
3621
 */
3622
void SSL_CTX_set_npn_select_cb(SSL_CTX *ctx,
3623
    SSL_CTX_npn_select_cb_func cb,
3624
    void *arg)
3625
0
{
3626
0
    if (IS_QUIC_CTX(ctx))
3627
        /* NPN not allowed for QUIC */
3628
0
        return;
3629
3630
0
    ctx->ext.npn_select_cb = cb;
3631
0
    ctx->ext.npn_select_cb_arg = arg;
3632
0
}
3633
#endif
3634
3635
static int alpn_value_ok(const unsigned char *protos, unsigned int protos_len)
3636
41.7k
{
3637
41.7k
    unsigned int idx;
3638
3639
41.7k
    if (protos_len < 2 || protos == NULL)
3640
0
        return 0;
3641
3642
83.4k
    for (idx = 0; idx < protos_len; idx += protos[idx] + 1) {
3643
41.7k
        if (protos[idx] == 0)
3644
0
            return 0;
3645
41.7k
    }
3646
41.7k
    return idx == protos_len;
3647
41.7k
}
3648
/*
3649
 * SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
3650
 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
3651
 * length-prefixed strings). Returns 0 on success.
3652
 */
3653
int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
3654
    unsigned int protos_len)
3655
0
{
3656
0
    unsigned char *alpn;
3657
3658
0
    if (protos_len == 0 || protos == NULL) {
3659
0
        OPENSSL_free(ctx->ext.alpn);
3660
0
        ctx->ext.alpn = NULL;
3661
0
        ctx->ext.alpn_len = 0;
3662
0
        return 0;
3663
0
    }
3664
    /* Not valid per RFC */
3665
0
    if (!alpn_value_ok(protos, protos_len))
3666
0
        return 1;
3667
3668
0
    alpn = OPENSSL_memdup(protos, protos_len);
3669
0
    if (alpn == NULL)
3670
0
        return 1;
3671
0
    OPENSSL_free(ctx->ext.alpn);
3672
0
    ctx->ext.alpn = alpn;
3673
0
    ctx->ext.alpn_len = protos_len;
3674
3675
0
    return 0;
3676
0
}
3677
3678
/*
3679
 * SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
3680
 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
3681
 * length-prefixed strings). Returns 0 on success.
3682
 */
3683
int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
3684
    unsigned int protos_len)
3685
8.82k
{
3686
8.82k
    unsigned char *alpn;
3687
8.82k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
3688
3689
8.82k
    if (sc == NULL)
3690
0
        return 1;
3691
3692
8.82k
    if (protos_len == 0 || protos == NULL) {
3693
0
        OPENSSL_free(sc->ext.alpn);
3694
0
        sc->ext.alpn = NULL;
3695
0
        sc->ext.alpn_len = 0;
3696
0
        return 0;
3697
0
    }
3698
    /* Not valid per RFC */
3699
8.82k
    if (!alpn_value_ok(protos, protos_len))
3700
0
        return 1;
3701
3702
8.82k
    alpn = OPENSSL_memdup(protos, protos_len);
3703
8.82k
    if (alpn == NULL)
3704
0
        return 1;
3705
8.82k
    OPENSSL_free(sc->ext.alpn);
3706
8.82k
    sc->ext.alpn = alpn;
3707
8.82k
    sc->ext.alpn_len = protos_len;
3708
3709
8.82k
    return 0;
3710
8.82k
}
3711
3712
/*
3713
 * SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is
3714
 * called during ClientHello processing in order to select an ALPN protocol
3715
 * from the client's list of offered protocols.
3716
 */
3717
void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
3718
    SSL_CTX_alpn_select_cb_func cb,
3719
    void *arg)
3720
320
{
3721
320
    ctx->ext.alpn_select_cb = cb;
3722
320
    ctx->ext.alpn_select_cb_arg = arg;
3723
320
}
3724
3725
/*
3726
 * SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from |ssl|.
3727
 * On return it sets |*data| to point to |*len| bytes of protocol name
3728
 * (not including the leading length-prefix byte). If the server didn't
3729
 * respond with a negotiated protocol then |*len| will be zero.
3730
 */
3731
void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
3732
    unsigned int *len)
3733
2.05k
{
3734
2.05k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
3735
3736
2.05k
    if (sc == NULL) {
3737
        /* We have no other way to indicate error */
3738
0
        *data = NULL;
3739
0
        *len = 0;
3740
0
        return;
3741
0
    }
3742
3743
2.05k
    *data = sc->s3.alpn_selected;
3744
2.05k
    if (*data == NULL)
3745
10
        *len = 0;
3746
2.04k
    else
3747
2.04k
        *len = (unsigned int)sc->s3.alpn_selected_len;
3748
2.05k
}
3749
3750
int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
3751
    const char *label, size_t llen,
3752
    const unsigned char *context, size_t contextlen,
3753
    int use_context)
3754
0
{
3755
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3756
3757
0
    if (sc == NULL)
3758
0
        return -1;
3759
3760
0
    if (sc->session == NULL
3761
0
        || (sc->version < TLS1_VERSION && sc->version != DTLS1_BAD_VER))
3762
0
        return -1;
3763
3764
0
    return sc->ssl.method->ssl3_enc->export_keying_material(sc, out, olen, label,
3765
0
        llen, context,
3766
0
        contextlen,
3767
0
        use_context);
3768
0
}
3769
3770
int SSL_export_keying_material_early(SSL *s, unsigned char *out, size_t olen,
3771
    const char *label, size_t llen,
3772
    const unsigned char *context,
3773
    size_t contextlen)
3774
0
{
3775
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
3776
3777
0
    if (sc == NULL)
3778
0
        return -1;
3779
3780
0
    if (sc->version != TLS1_3_VERSION)
3781
0
        return 0;
3782
3783
0
    return tls13_export_keying_material_early(sc, out, olen, label, llen,
3784
0
        context, contextlen);
3785
0
}
3786
3787
static unsigned long ssl_session_hash(const SSL_SESSION *a)
3788
74.4k
{
3789
74.4k
    const unsigned char *session_id = a->session_id;
3790
74.4k
    unsigned long l;
3791
74.4k
    unsigned char tmp_storage[4];
3792
3793
74.4k
    if (a->session_id_length < sizeof(tmp_storage)) {
3794
706
        memset(tmp_storage, 0, sizeof(tmp_storage));
3795
706
        memcpy(tmp_storage, a->session_id, a->session_id_length);
3796
706
        session_id = tmp_storage;
3797
706
    }
3798
3799
74.4k
    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);
3800
74.4k
    return l;
3801
74.4k
}
3802
3803
/*
3804
 * NB: If this function (or indeed the hash function which uses a sort of
3805
 * coarser function than this one) is changed, ensure
3806
 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on
3807
 * being able to construct an SSL_SESSION that will collide with any existing
3808
 * session with a matching session ID.
3809
 */
3810
static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
3811
3.61k
{
3812
3.61k
    if (a->ssl_version != b->ssl_version)
3813
0
        return 1;
3814
3.61k
    if (a->session_id_length != b->session_id_length)
3815
0
        return 1;
3816
3.61k
    return memcmp(a->session_id, b->session_id, a->session_id_length);
3817
3.61k
}
3818
3819
/*
3820
 * These wrapper functions should remain rather than redeclaring
3821
 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
3822
 * variable. The reason is that the functions aren't static, they're exposed
3823
 * via ssl.h.
3824
 */
3825
3826
SSL_CTX *SSL_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
3827
    const SSL_METHOD *meth)
3828
29.0k
{
3829
29.0k
    SSL_CTX *ret = NULL;
3830
#ifndef OPENSSL_NO_COMP_ALG
3831
    int i;
3832
#endif
3833
3834
29.0k
    if (meth == NULL) {
3835
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_METHOD_PASSED);
3836
0
        return NULL;
3837
0
    }
3838
3839
29.0k
    if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL))
3840
0
        return NULL;
3841
3842
    /* Doing this for the run once effect */
3843
29.0k
    if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) {
3844
0
        ERR_raise(ERR_LIB_SSL, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
3845
0
        goto err;
3846
0
    }
3847
3848
29.0k
    ret = OPENSSL_zalloc(sizeof(*ret));
3849
29.0k
    if (ret == NULL)
3850
0
        return NULL;
3851
3852
    /* Init the reference counting before any call to SSL_CTX_free */
3853
29.0k
    if (!CRYPTO_NEW_REF(&ret->references, 1)) {
3854
0
        OPENSSL_free(ret);
3855
0
        return NULL;
3856
0
    }
3857
3858
29.0k
    ret->lock = CRYPTO_THREAD_lock_new();
3859
29.0k
    if (ret->lock == NULL) {
3860
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3861
0
        goto err;
3862
0
    }
3863
3864
#ifdef TSAN_REQUIRES_LOCKING
3865
    ret->tsan_lock = CRYPTO_THREAD_lock_new();
3866
    if (ret->tsan_lock == NULL) {
3867
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3868
        goto err;
3869
    }
3870
#endif
3871
3872
29.0k
    ret->libctx = libctx;
3873
29.0k
    if (propq != NULL) {
3874
0
        ret->propq = OPENSSL_strdup(propq);
3875
0
        if (ret->propq == NULL)
3876
0
            goto err;
3877
0
    }
3878
3879
29.0k
    ret->method = meth;
3880
29.0k
    ret->min_proto_version = 0;
3881
29.0k
    ret->max_proto_version = 0;
3882
29.0k
    ret->mode = SSL_MODE_AUTO_RETRY;
3883
29.0k
    ret->session_cache_mode = SSL_SESS_CACHE_SERVER;
3884
29.0k
    ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
3885
    /* We take the system default. */
3886
29.0k
    ret->session_timeout = meth->get_timeout();
3887
29.0k
    ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT;
3888
29.0k
    ret->verify_mode = SSL_VERIFY_NONE;
3889
3890
29.0k
    ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp);
3891
29.0k
    if (ret->sessions == NULL) {
3892
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3893
0
        goto err;
3894
0
    }
3895
29.0k
    ret->cert_store = X509_STORE_new();
3896
29.0k
    if (ret->cert_store == NULL) {
3897
0
        ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
3898
0
        goto err;
3899
0
    }
3900
29.0k
#ifndef OPENSSL_NO_CT
3901
29.0k
    ret->ctlog_store = CTLOG_STORE_new_ex(libctx, propq);
3902
29.0k
    if (ret->ctlog_store == NULL) {
3903
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CT_LIB);
3904
0
        goto err;
3905
0
    }
3906
29.0k
#endif
3907
3908
    /* initialize cipher/digest methods table */
3909
29.0k
    if (!ssl_load_ciphers(ret)) {
3910
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3911
0
        goto err;
3912
0
    }
3913
3914
29.0k
    if (!ssl_load_groups(ret)) {
3915
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3916
0
        goto err;
3917
0
    }
3918
3919
    /* load provider sigalgs */
3920
29.0k
    if (!ssl_load_sigalgs(ret)) {
3921
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3922
0
        goto err;
3923
0
    }
3924
3925
    /* initialise sig algs */
3926
29.0k
    if (!ssl_setup_sigalgs(ret)) {
3927
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3928
0
        goto err;
3929
0
    }
3930
3931
29.0k
    if (!SSL_CTX_set_ciphersuites(ret, OSSL_default_ciphersuites())) {
3932
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3933
0
        goto err;
3934
0
    }
3935
3936
29.0k
    if ((ret->cert = ssl_cert_new(SSL_PKEY_NUM + ret->sigalg_list_len)) == NULL) {
3937
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
3938
0
        goto err;
3939
0
    }
3940
3941
29.0k
    if (!ssl_create_cipher_list(ret,
3942
29.0k
            ret->tls13_ciphersuites,
3943
29.0k
            &ret->cipher_list, &ret->cipher_list_by_id,
3944
29.0k
            OSSL_default_cipher_list(), ret->cert)
3945
29.0k
        || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) {
3946
0
        ERR_raise(ERR_LIB_SSL, SSL_R_LIBRARY_HAS_NO_CIPHERS);
3947
0
        goto err;
3948
0
    }
3949
3950
29.0k
    ret->param = X509_VERIFY_PARAM_new();
3951
29.0k
    if (ret->param == NULL) {
3952
0
        ERR_raise(ERR_LIB_SSL, ERR_R_X509_LIB);
3953
0
        goto err;
3954
0
    }
3955
3956
    /*
3957
     * If these aren't available from the provider we'll get NULL returns.
3958
     * That's fine but will cause errors later if SSLv3 is negotiated
3959
     */
3960
29.0k
    ret->md5 = ssl_evp_md_fetch(libctx, NID_md5, propq);
3961
29.0k
    ret->sha1 = ssl_evp_md_fetch(libctx, NID_sha1, propq);
3962
3963
29.0k
    if ((ret->ca_names = sk_X509_NAME_new_null()) == NULL) {
3964
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3965
0
        goto err;
3966
0
    }
3967
3968
29.0k
    if ((ret->client_ca_names = sk_X509_NAME_new_null()) == NULL) {
3969
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3970
0
        goto err;
3971
0
    }
3972
3973
29.0k
    if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data)) {
3974
0
        ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
3975
0
        goto err;
3976
0
    }
3977
3978
29.0k
    if ((ret->ext.secure = OPENSSL_secure_zalloc(sizeof(*ret->ext.secure))) == NULL)
3979
0
        goto err;
3980
3981
    /* No compression for DTLS */
3982
29.0k
    if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
3983
19.6k
        ret->comp_methods = SSL_COMP_get_compression_methods();
3984
3985
29.0k
    ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
3986
29.0k
    ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
3987
3988
    /* Setup RFC5077 ticket keys */
3989
29.0k
    if ((RAND_bytes_ex(libctx, ret->ext.tick_key_name,
3990
29.0k
             sizeof(ret->ext.tick_key_name), 0)
3991
29.0k
            <= 0)
3992
29.0k
        || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_hmac_key,
3993
29.0k
                sizeof(ret->ext.secure->tick_hmac_key), 0)
3994
29.0k
            <= 0)
3995
29.0k
        || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_aes_key,
3996
29.0k
                sizeof(ret->ext.secure->tick_aes_key), 0)
3997
29.0k
            <= 0))
3998
0
        ret->options |= SSL_OP_NO_TICKET;
3999
4000
29.0k
    if (RAND_priv_bytes_ex(libctx, ret->ext.cookie_hmac_key,
4001
29.0k
            sizeof(ret->ext.cookie_hmac_key), 0)
4002
29.0k
        <= 0) {
4003
0
        ERR_raise(ERR_LIB_SSL, ERR_R_RAND_LIB);
4004
0
        goto err;
4005
0
    }
4006
4007
29.0k
#ifndef OPENSSL_NO_SRP
4008
29.0k
    if (!ssl_ctx_srp_ctx_init_intern(ret)) {
4009
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SSL_LIB);
4010
0
        goto err;
4011
0
    }
4012
29.0k
#endif
4013
29.0k
#ifndef OPENSSL_NO_ENGINE
4014
#ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
4015
#define eng_strx(x) #x
4016
#define eng_str(x) eng_strx(x)
4017
    /* Use specific client engine automatically... ignore errors */
4018
    {
4019
        ENGINE *eng;
4020
        eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
4021
        if (!eng) {
4022
            ERR_clear_error();
4023
            ENGINE_load_builtin_engines();
4024
            eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
4025
        }
4026
        if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
4027
            ERR_clear_error();
4028
    }
4029
#endif
4030
29.0k
#endif
4031
4032
#ifndef OPENSSL_NO_COMP_ALG
4033
    /*
4034
     * Set the default order: brotli, zlib, zstd
4035
     * Including only those enabled algorithms
4036
     */
4037
    memset(ret->cert_comp_prefs, 0, sizeof(ret->cert_comp_prefs));
4038
    i = 0;
4039
    if (ossl_comp_has_alg(TLSEXT_comp_cert_brotli))
4040
        ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_brotli;
4041
    if (ossl_comp_has_alg(TLSEXT_comp_cert_zlib))
4042
        ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_zlib;
4043
    if (ossl_comp_has_alg(TLSEXT_comp_cert_zstd))
4044
        ret->cert_comp_prefs[i++] = TLSEXT_comp_cert_zstd;
4045
#endif
4046
    /*
4047
     * Disable compression by default to prevent CRIME. Applications can
4048
     * re-enable compression by configuring
4049
     * SSL_CTX_clear_options(ctx, SSL_OP_NO_COMPRESSION);
4050
     * or by using the SSL_CONF library. Similarly we also enable TLSv1.3
4051
     * middlebox compatibility by default. This may be disabled by default in
4052
     * a later OpenSSL version.
4053
     */
4054
29.0k
    ret->options |= SSL_OP_NO_COMPRESSION | SSL_OP_ENABLE_MIDDLEBOX_COMPAT;
4055
4056
29.0k
    ret->ext.status_type = TLSEXT_STATUSTYPE_nothing;
4057
4058
    /*
4059
     * We cannot usefully set a default max_early_data here (which gets
4060
     * propagated in SSL_new(), for the following reason: setting the
4061
     * SSL field causes tls_construct_stoc_early_data() to tell the
4062
     * client that early data will be accepted when constructing a TLS 1.3
4063
     * session ticket, and the client will accordingly send us early data
4064
     * when using that ticket (if the client has early data to send).
4065
     * However, in order for the early data to actually be consumed by
4066
     * the application, the application must also have calls to
4067
     * SSL_read_early_data(); otherwise we'll just skip past the early data
4068
     * and ignore it.  So, since the application must add calls to
4069
     * SSL_read_early_data(), we also require them to add
4070
     * calls to SSL_CTX_set_max_early_data() in order to use early data,
4071
     * eliminating the bandwidth-wasting early data in the case described
4072
     * above.
4073
     */
4074
29.0k
    ret->max_early_data = 0;
4075
4076
    /*
4077
     * Default recv_max_early_data is a fully loaded single record. Could be
4078
     * split across multiple records in practice. We set this differently to
4079
     * max_early_data so that, in the default case, we do not advertise any
4080
     * support for early_data, but if a client were to send us some (e.g.
4081
     * because of an old, stale ticket) then we will tolerate it and skip over
4082
     * it.
4083
     */
4084
29.0k
    ret->recv_max_early_data = SSL3_RT_MAX_PLAIN_LENGTH;
4085
4086
    /* By default we send two session tickets automatically in TLSv1.3 */
4087
29.0k
    ret->num_tickets = 2;
4088
4089
29.0k
    if (!ssl_ctx_system_config(ret)) {
4090
0
        ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_IN_SYSTEM_DEFAULT_CONFIG);
4091
0
        goto err;
4092
0
    }
4093
4094
29.0k
    return ret;
4095
0
err:
4096
0
    SSL_CTX_free(ret);
4097
0
    return NULL;
4098
29.0k
}
4099
4100
SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
4101
136k
{
4102
136k
    return SSL_CTX_new_ex(NULL, NULL, meth);
4103
136k
}
4104
4105
int SSL_CTX_up_ref(SSL_CTX *ctx)
4106
254k
{
4107
254k
    int i;
4108
4109
254k
    if (CRYPTO_UP_REF(&ctx->references, &i) <= 0)
4110
0
        return 0;
4111
4112
254k
    REF_PRINT_COUNT("SSL_CTX", i, ctx);
4113
254k
    REF_ASSERT_ISNT(i < 2);
4114
254k
    return ((i > 1) ? 1 : 0);
4115
254k
}
4116
4117
void SSL_CTX_free(SSL_CTX *a)
4118
459k
{
4119
459k
    int i;
4120
459k
    size_t j;
4121
4122
459k
    if (a == NULL)
4123
0
        return;
4124
4125
459k
    CRYPTO_DOWN_REF(&a->references, &i);
4126
459k
    REF_PRINT_COUNT("SSL_CTX", i, a);
4127
459k
    if (i > 0)
4128
323k
        return;
4129
136k
    REF_ASSERT_ISNT(i < 0);
4130
4131
136k
    X509_VERIFY_PARAM_free(a->param);
4132
136k
    dane_ctx_final(&a->dane);
4133
4134
    /*
4135
     * Free internal session cache. However: the remove_cb() may reference
4136
     * the ex_data of SSL_CTX, thus the ex_data store can only be removed
4137
     * after the sessions were flushed.
4138
     * As the ex_data handling routines might also touch the session cache,
4139
     * the most secure solution seems to be: empty (flush) the cache, then
4140
     * free ex_data, then finally free the cache.
4141
     * (See ticket [openssl.org #212].)
4142
     */
4143
136k
    if (a->sessions != NULL)
4144
136k
        SSL_CTX_flush_sessions_ex(a, 0);
4145
4146
136k
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
4147
136k
    lh_SSL_SESSION_free(a->sessions);
4148
136k
    X509_STORE_free(a->cert_store);
4149
136k
#ifndef OPENSSL_NO_CT
4150
136k
    CTLOG_STORE_free(a->ctlog_store);
4151
136k
#endif
4152
136k
    sk_SSL_CIPHER_free(a->cipher_list);
4153
136k
    sk_SSL_CIPHER_free(a->cipher_list_by_id);
4154
136k
    sk_SSL_CIPHER_free(a->tls13_ciphersuites);
4155
136k
    ssl_cert_free(a->cert);
4156
136k
    sk_X509_NAME_pop_free(a->ca_names, X509_NAME_free);
4157
136k
    sk_X509_NAME_pop_free(a->client_ca_names, X509_NAME_free);
4158
136k
    OSSL_STACK_OF_X509_free(a->extra_certs);
4159
136k
    a->comp_methods = NULL;
4160
136k
#ifndef OPENSSL_NO_SRTP
4161
136k
    sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
4162
136k
#endif
4163
136k
#ifndef OPENSSL_NO_SRP
4164
136k
    ssl_ctx_srp_ctx_free_intern(a);
4165
136k
#endif
4166
136k
#ifndef OPENSSL_NO_ENGINE
4167
136k
    tls_engine_finish(a->client_cert_engine);
4168
136k
#endif
4169
4170
136k
    OPENSSL_free(a->ext.ecpointformats);
4171
136k
    OPENSSL_free(a->ext.supportedgroups);
4172
136k
    OPENSSL_free(a->ext.supported_groups_default);
4173
136k
    OPENSSL_free(a->ext.alpn);
4174
136k
    OPENSSL_secure_free(a->ext.secure);
4175
4176
136k
    ssl_evp_md_free(a->md5);
4177
136k
    ssl_evp_md_free(a->sha1);
4178
4179
3.51M
    for (j = 0; j < SSL_ENC_NUM_IDX; j++)
4180
3.37M
        ssl_evp_cipher_free(a->ssl_cipher_methods[j]);
4181
2.09M
    for (j = 0; j < SSL_MD_NUM_IDX; j++)
4182
1.96M
        ssl_evp_md_free(a->ssl_digest_methods[j]);
4183
6.38M
    for (j = 0; j < a->group_list_len; j++) {
4184
6.25M
        OPENSSL_free(a->group_list[j].tlsname);
4185
6.25M
        OPENSSL_free(a->group_list[j].realname);
4186
6.25M
        OPENSSL_free(a->group_list[j].algorithm);
4187
6.25M
    }
4188
136k
    OPENSSL_free(a->group_list);
4189
857k
    for (j = 0; j < a->sigalg_list_len; j++) {
4190
721k
        OPENSSL_free(a->sigalg_list[j].name);
4191
721k
        OPENSSL_free(a->sigalg_list[j].sigalg_name);
4192
721k
        OPENSSL_free(a->sigalg_list[j].sigalg_oid);
4193
721k
        OPENSSL_free(a->sigalg_list[j].sig_name);
4194
721k
        OPENSSL_free(a->sigalg_list[j].sig_oid);
4195
721k
        OPENSSL_free(a->sigalg_list[j].hash_name);
4196
721k
        OPENSSL_free(a->sigalg_list[j].hash_oid);
4197
721k
        OPENSSL_free(a->sigalg_list[j].keytype);
4198
721k
        OPENSSL_free(a->sigalg_list[j].keytype_oid);
4199
721k
    }
4200
136k
    OPENSSL_free(a->sigalg_list);
4201
136k
    OPENSSL_free(a->ssl_cert_info);
4202
4203
136k
    OPENSSL_free(a->sigalg_lookup_cache);
4204
136k
    OPENSSL_free(a->tls12_sigalgs);
4205
4206
136k
    OPENSSL_free(a->client_cert_type);
4207
136k
    OPENSSL_free(a->server_cert_type);
4208
4209
136k
    CRYPTO_THREAD_lock_free(a->lock);
4210
136k
    CRYPTO_FREE_REF(&a->references);
4211
#ifdef TSAN_REQUIRES_LOCKING
4212
    CRYPTO_THREAD_lock_free(a->tsan_lock);
4213
#endif
4214
4215
136k
    OPENSSL_free(a->propq);
4216
136k
#ifndef OPENSSL_NO_QLOG
4217
136k
    OPENSSL_free(a->qlog_title);
4218
136k
#endif
4219
4220
136k
    OPENSSL_free(a);
4221
136k
}
4222
4223
void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
4224
0
{
4225
0
    ctx->default_passwd_callback = cb;
4226
0
}
4227
4228
void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
4229
0
{
4230
0
    ctx->default_passwd_callback_userdata = u;
4231
0
}
4232
4233
pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx)
4234
0
{
4235
0
    return ctx->default_passwd_callback;
4236
0
}
4237
4238
void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx)
4239
0
{
4240
0
    return ctx->default_passwd_callback_userdata;
4241
0
}
4242
4243
void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb)
4244
0
{
4245
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4246
4247
0
    if (sc == NULL)
4248
0
        return;
4249
4250
0
    sc->default_passwd_callback = cb;
4251
0
}
4252
4253
void SSL_set_default_passwd_cb_userdata(SSL *s, void *u)
4254
0
{
4255
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4256
4257
0
    if (sc == NULL)
4258
0
        return;
4259
4260
0
    sc->default_passwd_callback_userdata = u;
4261
0
}
4262
4263
pem_password_cb *SSL_get_default_passwd_cb(SSL *s)
4264
0
{
4265
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4266
4267
0
    if (sc == NULL)
4268
0
        return NULL;
4269
4270
0
    return sc->default_passwd_callback;
4271
0
}
4272
4273
void *SSL_get_default_passwd_cb_userdata(SSL *s)
4274
0
{
4275
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4276
4277
0
    if (sc == NULL)
4278
0
        return NULL;
4279
4280
0
    return sc->default_passwd_callback_userdata;
4281
0
}
4282
4283
void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
4284
    int (*cb)(X509_STORE_CTX *, void *),
4285
    void *arg)
4286
0
{
4287
0
    ctx->app_verify_callback = cb;
4288
0
    ctx->app_verify_arg = arg;
4289
0
}
4290
4291
void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
4292
    int (*cb)(int, X509_STORE_CTX *))
4293
0
{
4294
0
    ctx->verify_mode = mode;
4295
0
    ctx->default_verify_callback = cb;
4296
0
}
4297
4298
void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
4299
0
{
4300
0
    X509_VERIFY_PARAM_set_depth(ctx->param, depth);
4301
0
}
4302
4303
void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb)(SSL *ssl, void *arg), void *arg)
4304
0
{
4305
0
    ssl_cert_set_cert_cb(c->cert, cb, arg);
4306
0
}
4307
4308
void SSL_set_cert_cb(SSL *s, int (*cb)(SSL *ssl, void *arg), void *arg)
4309
0
{
4310
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4311
4312
0
    if (sc == NULL)
4313
0
        return;
4314
4315
0
    ssl_cert_set_cert_cb(sc->cert, cb, arg);
4316
0
}
4317
4318
void ssl_set_masks(SSL_CONNECTION *s)
4319
14.2k
{
4320
14.2k
    CERT *c = s->cert;
4321
14.2k
    uint32_t *pvalid = s->s3.tmp.valid_flags;
4322
14.2k
    int rsa_enc, rsa_sign, dh_tmp, dsa_sign;
4323
14.2k
    unsigned long mask_k, mask_a;
4324
14.2k
    int have_ecc_cert, ecdsa_ok;
4325
4326
14.2k
    if (c == NULL)
4327
0
        return;
4328
4329
14.2k
    dh_tmp = (c->dh_tmp != NULL
4330
14.2k
        || c->dh_tmp_cb != NULL
4331
14.2k
        || c->dh_tmp_auto);
4332
4333
14.2k
    rsa_enc = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
4334
14.2k
    rsa_sign = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
4335
14.2k
    dsa_sign = pvalid[SSL_PKEY_DSA_SIGN] & CERT_PKEY_VALID;
4336
14.2k
    have_ecc_cert = pvalid[SSL_PKEY_ECC] & CERT_PKEY_VALID;
4337
14.2k
    mask_k = 0;
4338
14.2k
    mask_a = 0;
4339
4340
14.2k
    OSSL_TRACE4(TLS_CIPHER, "dh_tmp=%d rsa_enc=%d rsa_sign=%d dsa_sign=%d\n",
4341
14.2k
        dh_tmp, rsa_enc, rsa_sign, dsa_sign);
4342
4343
14.2k
#ifndef OPENSSL_NO_GOST
4344
14.2k
    if (ssl_has_cert(s, SSL_PKEY_GOST12_512)) {
4345
0
        mask_k |= SSL_kGOST | SSL_kGOST18;
4346
0
        mask_a |= SSL_aGOST12;
4347
0
    }
4348
14.2k
    if (ssl_has_cert(s, SSL_PKEY_GOST12_256)) {
4349
0
        mask_k |= SSL_kGOST | SSL_kGOST18;
4350
0
        mask_a |= SSL_aGOST12;
4351
0
    }
4352
14.2k
    if (ssl_has_cert(s, SSL_PKEY_GOST01)) {
4353
0
        mask_k |= SSL_kGOST;
4354
0
        mask_a |= SSL_aGOST01;
4355
0
    }
4356
14.2k
#endif
4357
4358
14.2k
    if (rsa_enc)
4359
14.2k
        mask_k |= SSL_kRSA;
4360
4361
14.2k
    if (dh_tmp)
4362
0
        mask_k |= SSL_kDHE;
4363
4364
    /*
4365
     * If we only have an RSA-PSS certificate allow RSA authentication
4366
     * if TLS 1.2 and peer supports it.
4367
     */
4368
4369
14.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))
4370
14.2k
        mask_a |= SSL_aRSA;
4371
4372
14.2k
    if (dsa_sign) {
4373
14.2k
        mask_a |= SSL_aDSS;
4374
14.2k
    }
4375
4376
14.2k
    mask_a |= SSL_aNULL;
4377
4378
    /*
4379
     * You can do anything with an RPK key, since there's no cert to restrict it
4380
     * But we need to check for private keys
4381
     */
4382
14.2k
    if (pvalid[SSL_PKEY_RSA] & CERT_PKEY_RPK) {
4383
0
        mask_a |= SSL_aRSA;
4384
0
        mask_k |= SSL_kRSA;
4385
0
    }
4386
14.2k
    if (pvalid[SSL_PKEY_ECC] & CERT_PKEY_RPK)
4387
0
        mask_a |= SSL_aECDSA;
4388
14.2k
    if (TLS1_get_version(&s->ssl) == TLS1_2_VERSION) {
4389
5.23k
        if (pvalid[SSL_PKEY_RSA_PSS_SIGN] & CERT_PKEY_RPK)
4390
0
            mask_a |= SSL_aRSA;
4391
5.23k
        if (pvalid[SSL_PKEY_ED25519] & CERT_PKEY_RPK
4392
5.23k
            || pvalid[SSL_PKEY_ED448] & CERT_PKEY_RPK)
4393
0
            mask_a |= SSL_aECDSA;
4394
5.23k
    }
4395
4396
    /*
4397
     * An ECC certificate may be usable for ECDH and/or ECDSA cipher suites
4398
     * depending on the key usage extension.
4399
     */
4400
14.2k
    if (have_ecc_cert) {
4401
10.3k
        uint32_t ex_kusage;
4402
10.3k
        ex_kusage = X509_get_key_usage(c->pkeys[SSL_PKEY_ECC].x509);
4403
10.3k
        ecdsa_ok = ex_kusage & X509v3_KU_DIGITAL_SIGNATURE;
4404
10.3k
        if (!(pvalid[SSL_PKEY_ECC] & CERT_PKEY_SIGN))
4405
292
            ecdsa_ok = 0;
4406
10.3k
        if (ecdsa_ok)
4407
10.0k
            mask_a |= SSL_aECDSA;
4408
10.3k
    }
4409
    /* Allow Ed25519 for TLS 1.2 if peer supports it */
4410
14.2k
    if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED25519)
4411
0
        && pvalid[SSL_PKEY_ED25519] & CERT_PKEY_EXPLICIT_SIGN
4412
0
        && TLS1_get_version(&s->ssl) == TLS1_2_VERSION)
4413
0
        mask_a |= SSL_aECDSA;
4414
4415
    /* Allow Ed448 for TLS 1.2 if peer supports it */
4416
14.2k
    if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED448)
4417
0
        && pvalid[SSL_PKEY_ED448] & CERT_PKEY_EXPLICIT_SIGN
4418
0
        && TLS1_get_version(&s->ssl) == TLS1_2_VERSION)
4419
0
        mask_a |= SSL_aECDSA;
4420
4421
14.2k
    mask_k |= SSL_kECDHE;
4422
4423
14.2k
#ifndef OPENSSL_NO_PSK
4424
14.2k
    mask_k |= SSL_kPSK;
4425
14.2k
    mask_a |= SSL_aPSK;
4426
14.2k
    if (mask_k & SSL_kRSA)
4427
14.2k
        mask_k |= SSL_kRSAPSK;
4428
14.2k
    if (mask_k & SSL_kDHE)
4429
0
        mask_k |= SSL_kDHEPSK;
4430
14.2k
    if (mask_k & SSL_kECDHE)
4431
14.2k
        mask_k |= SSL_kECDHEPSK;
4432
14.2k
#endif
4433
4434
14.2k
    s->s3.tmp.mask_k = mask_k;
4435
14.2k
    s->s3.tmp.mask_a = mask_a;
4436
14.2k
}
4437
4438
int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL_CONNECTION *s)
4439
0
{
4440
0
    if (s->s3.tmp.new_cipher->algorithm_auth & SSL_aECDSA) {
4441
        /* key usage, if present, must allow signing */
4442
0
        if (!(X509_get_key_usage(x) & X509v3_KU_DIGITAL_SIGNATURE)) {
4443
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ECC_CERT_NOT_FOR_SIGNING);
4444
0
            return 0;
4445
0
        }
4446
0
    }
4447
0
    return 1; /* all checks are ok */
4448
0
}
4449
4450
int ssl_get_server_cert_serverinfo(SSL_CONNECTION *s,
4451
    const unsigned char **serverinfo,
4452
    size_t *serverinfo_length)
4453
0
{
4454
0
    CERT_PKEY *cpk = s->s3.tmp.cert;
4455
0
    *serverinfo_length = 0;
4456
4457
0
    if (cpk == NULL || cpk->serverinfo == NULL)
4458
0
        return 0;
4459
4460
0
    *serverinfo = cpk->serverinfo;
4461
0
    *serverinfo_length = cpk->serverinfo_length;
4462
0
    return 1;
4463
0
}
4464
4465
void ssl_update_cache(SSL_CONNECTION *s, int mode)
4466
1.04k
{
4467
1.04k
    int i;
4468
4469
    /*
4470
     * If the session_id_length is 0, we are not supposed to cache it, and it
4471
     * would be rather hard to do anyway :-). Also if the session has already
4472
     * been marked as not_resumable we should not cache it for later reuse.
4473
     */
4474
1.04k
    if (s->session->session_id_length == 0 || s->session->not_resumable)
4475
204
        return;
4476
4477
    /*
4478
     * If sid_ctx_length is 0 there is no specific application context
4479
     * associated with this session, so when we try to resume it and
4480
     * SSL_VERIFY_PEER is requested to verify the client identity, we have no
4481
     * indication that this is actually a session for the proper application
4482
     * context, and the *handshake* will fail, not just the resumption attempt.
4483
     * Do not cache (on the server) these sessions that are not resumable
4484
     * (clients can set SSL_VERIFY_PEER without needing a sid_ctx set).
4485
     */
4486
837
    if (s->server && s->session->sid_ctx_length == 0
4487
300
        && (s->verify_mode & SSL_VERIFY_PEER) != 0)
4488
0
        return;
4489
4490
837
    i = s->session_ctx->session_cache_mode;
4491
837
    if ((i & mode) != 0
4492
300
        && (!s->hit || SSL_CONNECTION_IS_TLS13(s))) {
4493
        /*
4494
         * Add the session to the internal cache. In server side TLSv1.3 we
4495
         * normally don't do this because by default it's a full stateless ticket
4496
         * with only a dummy session id so there is no reason to cache it,
4497
         * unless:
4498
         * - we are doing early_data, in which case we cache so that we can
4499
         *   detect replays
4500
         * - the application has set a remove_session_cb so needs to know about
4501
         *   session timeout events
4502
         * - SSL_OP_NO_TICKET is set in which case it is a stateful ticket
4503
         */
4504
300
        if ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE) == 0
4505
300
            && (!SSL_CONNECTION_IS_TLS13(s)
4506
0
                || !s->server
4507
0
                || (s->max_early_data > 0
4508
0
                    && (s->options & SSL_OP_NO_ANTI_REPLAY) == 0)
4509
0
                || s->session_ctx->remove_session_cb != NULL
4510
0
                || (s->options & SSL_OP_NO_TICKET) != 0))
4511
300
            SSL_CTX_add_session(s->session_ctx, s->session);
4512
4513
        /*
4514
         * Add the session to the external cache. We do this even in server side
4515
         * TLSv1.3 without early data because some applications just want to
4516
         * know about the creation of a session and aren't doing a full cache.
4517
         */
4518
300
        if (s->session_ctx->new_session_cb != NULL) {
4519
0
            SSL_SESSION_up_ref(s->session);
4520
0
            if (!s->session_ctx->new_session_cb(SSL_CONNECTION_GET_USER_SSL(s),
4521
0
                    s->session))
4522
0
                SSL_SESSION_free(s->session);
4523
0
        }
4524
300
    }
4525
4526
    /* auto flush every 255 connections */
4527
837
    if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && ((i & mode) == mode)) {
4528
300
        TSAN_QUALIFIER int *stat;
4529
4530
300
        if (mode & SSL_SESS_CACHE_CLIENT)
4531
0
            stat = &s->session_ctx->stats.sess_connect_good;
4532
300
        else
4533
300
            stat = &s->session_ctx->stats.sess_accept_good;
4534
300
        if ((ssl_tsan_load(s->session_ctx, stat) & 0xff) == 0xff)
4535
0
            SSL_CTX_flush_sessions_ex(s->session_ctx, time(NULL));
4536
300
    }
4537
837
}
4538
4539
const SSL_METHOD *SSL_CTX_get_ssl_method(const SSL_CTX *ctx)
4540
0
{
4541
0
    return ctx->method;
4542
0
}
4543
4544
const SSL_METHOD *SSL_get_ssl_method(const SSL *s)
4545
0
{
4546
0
    return s->method;
4547
0
}
4548
4549
int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
4550
0
{
4551
0
    int ret = 1;
4552
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4553
4554
    /* Not allowed for QUIC */
4555
0
    if (sc == NULL
4556
0
        || (s->type != SSL_TYPE_SSL_CONNECTION && s->method != meth)
4557
0
        || (s->type == SSL_TYPE_SSL_CONNECTION && IS_QUIC_METHOD(meth)))
4558
0
        return 0;
4559
4560
0
    if (s->method != meth) {
4561
0
        const SSL_METHOD *sm = s->method;
4562
0
        int (*hf)(SSL *) = sc->handshake_func;
4563
4564
0
        if (sm->version == meth->version)
4565
0
            s->method = meth;
4566
0
        else {
4567
0
            sm->ssl_deinit(s);
4568
0
            s->method = meth;
4569
0
            ret = s->method->ssl_init(s);
4570
0
        }
4571
4572
0
        if (hf == sm->ssl_connect)
4573
0
            sc->handshake_func = meth->ssl_connect;
4574
0
        else if (hf == sm->ssl_accept)
4575
0
            sc->handshake_func = meth->ssl_accept;
4576
0
    }
4577
0
    return ret;
4578
0
}
4579
4580
int SSL_get_error(const SSL *s, int i)
4581
49.1M
{
4582
49.1M
    return ossl_ssl_get_error(s, i, /*check_err=*/1);
4583
49.1M
}
4584
4585
int ossl_ssl_get_error(const SSL *s, int i, int check_err)
4586
14.1M
{
4587
14.1M
    int reason;
4588
14.1M
    unsigned long l;
4589
14.1M
    BIO *bio;
4590
14.1M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4591
4592
14.1M
    if (i > 0)
4593
0
        return SSL_ERROR_NONE;
4594
4595
14.1M
#ifndef OPENSSL_NO_QUIC
4596
14.1M
    if (IS_QUIC(s)) {
4597
7.03M
        reason = ossl_quic_get_error(s, i);
4598
7.03M
        if (reason != SSL_ERROR_NONE)
4599
7.03M
            return reason;
4600
7.03M
    }
4601
7.06M
#endif
4602
4603
7.06M
    if (sc == NULL)
4604
0
        return SSL_ERROR_SSL;
4605
4606
    /*
4607
     * Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
4608
     * where we do encode the error
4609
     */
4610
7.06M
    if (check_err && (l = ERR_peek_error()) != 0) {
4611
435
        if (ERR_GET_LIB(l) == ERR_LIB_SYS)
4612
0
            return SSL_ERROR_SYSCALL;
4613
435
        else
4614
435
            return SSL_ERROR_SSL;
4615
435
    }
4616
4617
7.06M
#ifndef OPENSSL_NO_QUIC
4618
7.06M
    if (!IS_QUIC(s))
4619
7.06M
#endif
4620
7.06M
    {
4621
7.06M
        if (SSL_want_read(s)) {
4622
7.06M
            bio = SSL_get_rbio(s);
4623
7.06M
            if (BIO_should_read(bio))
4624
7.06M
                return SSL_ERROR_WANT_READ;
4625
0
            else if (BIO_should_write(bio))
4626
                /*
4627
                 * This one doesn't make too much sense ... We never try to
4628
                 * write to the rbio, and an application program where rbio and
4629
                 * wbio are separate couldn't even know what it should wait for.
4630
                 * However if we ever set s->rwstate incorrectly (so that we
4631
                 * have SSL_want_read(s) instead of SSL_want_write(s)) and rbio
4632
                 * and wbio *are* the same, this test works around that bug; so
4633
                 * it might be safer to keep it.
4634
                 */
4635
0
                return SSL_ERROR_WANT_WRITE;
4636
0
            else if (BIO_should_io_special(bio)) {
4637
0
                reason = BIO_get_retry_reason(bio);
4638
0
                if (reason == BIO_RR_CONNECT)
4639
0
                    return SSL_ERROR_WANT_CONNECT;
4640
0
                else if (reason == BIO_RR_ACCEPT)
4641
0
                    return SSL_ERROR_WANT_ACCEPT;
4642
0
                else
4643
0
                    return SSL_ERROR_SYSCALL; /* unknown */
4644
0
            }
4645
7.06M
        }
4646
4647
1.54k
        if (SSL_want_write(s)) {
4648
            /*
4649
             * Access wbio directly - in order to use the buffered bio if
4650
             * present
4651
             */
4652
0
            bio = sc->wbio;
4653
0
            if (BIO_should_write(bio))
4654
0
                return SSL_ERROR_WANT_WRITE;
4655
0
            else if (BIO_should_read(bio))
4656
                /*
4657
                 * See above (SSL_want_read(s) with BIO_should_write(bio))
4658
                 */
4659
0
                return SSL_ERROR_WANT_READ;
4660
0
            else if (BIO_should_io_special(bio)) {
4661
0
                reason = BIO_get_retry_reason(bio);
4662
0
                if (reason == BIO_RR_CONNECT)
4663
0
                    return SSL_ERROR_WANT_CONNECT;
4664
0
                else if (reason == BIO_RR_ACCEPT)
4665
0
                    return SSL_ERROR_WANT_ACCEPT;
4666
0
                else
4667
0
                    return SSL_ERROR_SYSCALL;
4668
0
            }
4669
0
        }
4670
1.54k
    }
4671
4672
1.54k
    if (SSL_want_x509_lookup(s))
4673
0
        return SSL_ERROR_WANT_X509_LOOKUP;
4674
1.54k
    if (SSL_want_retry_verify(s))
4675
0
        return SSL_ERROR_WANT_RETRY_VERIFY;
4676
1.54k
    if (SSL_want_async(s))
4677
0
        return SSL_ERROR_WANT_ASYNC;
4678
1.54k
    if (SSL_want_async_job(s))
4679
0
        return SSL_ERROR_WANT_ASYNC_JOB;
4680
1.54k
    if (SSL_want_client_hello_cb(s))
4681
0
        return SSL_ERROR_WANT_CLIENT_HELLO_CB;
4682
4683
1.54k
    if ((sc->shutdown & SSL_RECEIVED_SHUTDOWN) && (sc->s3.warn_alert == SSL_AD_CLOSE_NOTIFY))
4684
0
        return SSL_ERROR_ZERO_RETURN;
4685
4686
1.54k
    return SSL_ERROR_SYSCALL;
4687
1.54k
}
4688
4689
static int ssl_do_handshake_intern(void *vargs)
4690
0
{
4691
0
    struct ssl_async_args *args = (struct ssl_async_args *)vargs;
4692
0
    SSL *s = args->s;
4693
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4694
4695
0
    if (sc == NULL)
4696
0
        return -1;
4697
4698
0
    return sc->handshake_func(s);
4699
0
}
4700
4701
int SSL_do_handshake(SSL *s)
4702
5.31M
{
4703
5.31M
    int ret = 1;
4704
5.31M
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
4705
4706
5.31M
#ifndef OPENSSL_NO_QUIC
4707
5.31M
    if (IS_QUIC(s))
4708
2.63M
        return ossl_quic_do_handshake(s);
4709
2.68M
#endif
4710
4711
2.68M
    if (sc == NULL)
4712
0
        return -1;
4713
4714
2.68M
    if (sc->handshake_func == NULL) {
4715
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONNECTION_TYPE_NOT_SET);
4716
0
        return -1;
4717
0
    }
4718
4719
2.68M
    ossl_statem_check_finish_init(sc, -1);
4720
4721
2.68M
    s->method->ssl_renegotiate_check(s, 0);
4722
4723
2.68M
    if (SSL_in_init(s) || SSL_in_before(s)) {
4724
2.68M
        if ((sc->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
4725
0
            struct ssl_async_args args;
4726
4727
0
            memset(&args, 0, sizeof(args));
4728
0
            args.s = s;
4729
4730
0
            ret = ssl_start_async_job(s, &args, ssl_do_handshake_intern);
4731
2.68M
        } else {
4732
2.68M
            ret = sc->handshake_func(s);
4733
2.68M
        }
4734
2.68M
    }
4735
2.68M
    return ret;
4736
2.68M
}
4737
4738
void SSL_set_accept_state(SSL *s)
4739
8.81k
{
4740
8.81k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
4741
4742
8.81k
#ifndef OPENSSL_NO_QUIC
4743
8.81k
    if (IS_QUIC(s)) {
4744
0
        ossl_quic_set_accept_state(s);
4745
0
        return;
4746
0
    }
4747
8.81k
#endif
4748
4749
8.81k
    sc->server = 1;
4750
8.81k
    sc->shutdown = 0;
4751
8.81k
    ossl_statem_clear(sc);
4752
8.81k
    sc->handshake_func = s->method->ssl_accept;
4753
    /* Ignore return value. Its a void public API function */
4754
8.81k
    RECORD_LAYER_reset(&sc->rlayer);
4755
8.81k
}
4756
4757
void SSL_set_connect_state(SSL *s)
4758
29.0k
{
4759
29.0k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
4760
4761
29.0k
#ifndef OPENSSL_NO_QUIC
4762
29.0k
    if (IS_QUIC(s)) {
4763
8.82k
        ossl_quic_set_connect_state(s);
4764
8.82k
        return;
4765
8.82k
    }
4766
20.2k
#endif
4767
4768
20.2k
    sc->server = 0;
4769
20.2k
    sc->shutdown = 0;
4770
20.2k
    ossl_statem_clear(sc);
4771
20.2k
    sc->handshake_func = s->method->ssl_connect;
4772
    /* Ignore return value. Its a void public API function */
4773
20.2k
    RECORD_LAYER_reset(&sc->rlayer);
4774
20.2k
}
4775
4776
int ssl_undefined_function(SSL *s)
4777
0
{
4778
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
4779
0
    return 0;
4780
0
}
4781
4782
int ssl_undefined_void_function(void)
4783
0
{
4784
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
4785
0
    return 0;
4786
0
}
4787
4788
int ssl_undefined_const_function(const SSL *s)
4789
0
{
4790
0
    return 0;
4791
0
}
4792
4793
const char *ssl_protocol_to_string(int version)
4794
1.12k
{
4795
1.12k
    switch (version) {
4796
96
    case TLS1_3_VERSION:
4797
96
        return "TLSv1.3";
4798
4799
139
    case TLS1_2_VERSION:
4800
139
        return "TLSv1.2";
4801
4802
27
    case TLS1_1_VERSION:
4803
27
        return "TLSv1.1";
4804
4805
16
    case TLS1_VERSION:
4806
16
        return "TLSv1";
4807
4808
49
    case SSL3_VERSION:
4809
49
        return "SSLv3";
4810
4811
11
    case DTLS1_BAD_VER:
4812
11
        return "DTLSv0.9";
4813
4814
12
    case DTLS1_VERSION:
4815
12
        return "DTLSv1";
4816
4817
21
    case DTLS1_2_VERSION:
4818
21
        return "DTLSv1.2";
4819
4820
756
    default:
4821
756
        return "unknown";
4822
1.12k
    }
4823
1.12k
}
4824
4825
const char *SSL_get_version(const SSL *s)
4826
0
{
4827
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4828
4829
0
#ifndef OPENSSL_NO_QUIC
4830
    /* We only support QUICv1 - so if its QUIC its QUICv1 */
4831
0
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
4832
0
        return "QUICv1";
4833
0
#endif
4834
4835
0
    if (sc == NULL)
4836
0
        return NULL;
4837
4838
0
    return ssl_protocol_to_string(sc->version);
4839
0
}
4840
4841
__owur int SSL_get_handshake_rtt(const SSL *s, uint64_t *rtt)
4842
0
{
4843
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
4844
4845
0
    if (sc == NULL)
4846
0
        return -1;
4847
0
    if (sc->ts_msg_write.t <= 0 || sc->ts_msg_read.t <= 0)
4848
0
        return 0; /* data not (yet) available */
4849
0
    if (sc->ts_msg_read.t < sc->ts_msg_write.t)
4850
0
        return -1;
4851
4852
0
    *rtt = ossl_time2us(ossl_time_subtract(sc->ts_msg_read, sc->ts_msg_write));
4853
0
    return 1;
4854
0
}
4855
4856
static int dup_ca_names(STACK_OF(X509_NAME) **dst, STACK_OF(X509_NAME) *src)
4857
0
{
4858
0
    STACK_OF(X509_NAME) *sk;
4859
0
    X509_NAME *xn;
4860
0
    int i;
4861
4862
0
    if (src == NULL) {
4863
0
        *dst = NULL;
4864
0
        return 1;
4865
0
    }
4866
4867
0
    if ((sk = sk_X509_NAME_new_null()) == NULL)
4868
0
        return 0;
4869
0
    for (i = 0; i < sk_X509_NAME_num(src); i++) {
4870
0
        xn = X509_NAME_dup(sk_X509_NAME_value(src, i));
4871
0
        if (xn == NULL) {
4872
0
            sk_X509_NAME_pop_free(sk, X509_NAME_free);
4873
0
            return 0;
4874
0
        }
4875
0
        if (sk_X509_NAME_insert(sk, xn, i) == 0) {
4876
0
            X509_NAME_free(xn);
4877
0
            sk_X509_NAME_pop_free(sk, X509_NAME_free);
4878
0
            return 0;
4879
0
        }
4880
0
    }
4881
0
    *dst = sk;
4882
4883
0
    return 1;
4884
0
}
4885
4886
SSL *SSL_dup(SSL *s)
4887
0
{
4888
0
    SSL *ret;
4889
0
    int i;
4890
    /* TODO(QUIC FUTURE): Add a SSL_METHOD function for duplication */
4891
0
    SSL_CONNECTION *retsc;
4892
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
4893
4894
0
    if (sc == NULL)
4895
0
        return NULL;
4896
4897
    /* If we're not quiescent, just up_ref! */
4898
0
    if (!SSL_in_init(s) || !SSL_in_before(s)) {
4899
0
        CRYPTO_UP_REF(&s->references, &i);
4900
0
        return s;
4901
0
    }
4902
4903
    /*
4904
     * Otherwise, copy configuration state, and session if set.
4905
     */
4906
0
    if ((ret = SSL_new(SSL_get_SSL_CTX(s))) == NULL)
4907
0
        return NULL;
4908
0
    if ((retsc = SSL_CONNECTION_FROM_SSL_ONLY(ret)) == NULL)
4909
0
        goto err;
4910
4911
0
    if (sc->session != NULL) {
4912
        /*
4913
         * Arranges to share the same session via up_ref.  This "copies"
4914
         * session-id, SSL_METHOD, sid_ctx, and 'cert'
4915
         */
4916
0
        if (!SSL_copy_session_id(ret, s))
4917
0
            goto err;
4918
0
    } else {
4919
        /*
4920
         * No session has been established yet, so we have to expect that
4921
         * s->cert or ret->cert will be changed later -- they should not both
4922
         * point to the same object, and thus we can't use
4923
         * SSL_copy_session_id.
4924
         */
4925
0
        if (!SSL_set_ssl_method(ret, s->method))
4926
0
            goto err;
4927
4928
0
        if (sc->cert != NULL) {
4929
0
            ssl_cert_free(retsc->cert);
4930
0
            retsc->cert = ssl_cert_dup(sc->cert);
4931
0
            if (retsc->cert == NULL)
4932
0
                goto err;
4933
0
        }
4934
4935
0
        if (!SSL_set_session_id_context(ret, sc->sid_ctx,
4936
0
                (int)sc->sid_ctx_length))
4937
0
            goto err;
4938
0
    }
4939
4940
0
    if (!ssl_dane_dup(retsc, sc))
4941
0
        goto err;
4942
0
    retsc->version = sc->version;
4943
0
    retsc->options = sc->options;
4944
0
    retsc->min_proto_version = sc->min_proto_version;
4945
0
    retsc->max_proto_version = sc->max_proto_version;
4946
0
    retsc->mode = sc->mode;
4947
0
    SSL_set_max_cert_list(ret, SSL_get_max_cert_list(s));
4948
0
    SSL_set_read_ahead(ret, SSL_get_read_ahead(s));
4949
0
    retsc->msg_callback = sc->msg_callback;
4950
0
    retsc->msg_callback_arg = sc->msg_callback_arg;
4951
0
    SSL_set_verify(ret, SSL_get_verify_mode(s), SSL_get_verify_callback(s));
4952
0
    SSL_set_verify_depth(ret, SSL_get_verify_depth(s));
4953
0
    retsc->generate_session_id = sc->generate_session_id;
4954
4955
0
    SSL_set_info_callback(ret, SSL_get_info_callback(s));
4956
4957
    /* copy app data, a little dangerous perhaps */
4958
0
    if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
4959
0
        goto err;
4960
4961
0
    retsc->server = sc->server;
4962
0
    if (sc->handshake_func) {
4963
0
        if (sc->server)
4964
0
            SSL_set_accept_state(ret);
4965
0
        else
4966
0
            SSL_set_connect_state(ret);
4967
0
    }
4968
0
    retsc->shutdown = sc->shutdown;
4969
0
    retsc->hit = sc->hit;
4970
4971
0
    retsc->default_passwd_callback = sc->default_passwd_callback;
4972
0
    retsc->default_passwd_callback_userdata = sc->default_passwd_callback_userdata;
4973
4974
0
    X509_VERIFY_PARAM_inherit(retsc->param, sc->param);
4975
4976
    /* dup the cipher_list and cipher_list_by_id stacks */
4977
0
    if (sc->cipher_list != NULL) {
4978
0
        if ((retsc->cipher_list = sk_SSL_CIPHER_dup(sc->cipher_list)) == NULL)
4979
0
            goto err;
4980
0
    }
4981
0
    if (sc->cipher_list_by_id != NULL)
4982
0
        if ((retsc->cipher_list_by_id = sk_SSL_CIPHER_dup(sc->cipher_list_by_id))
4983
0
            == NULL)
4984
0
            goto err;
4985
4986
    /* Dup the client_CA list */
4987
0
    if (!dup_ca_names(&retsc->ca_names, sc->ca_names)
4988
0
        || !dup_ca_names(&retsc->client_ca_names, sc->client_ca_names))
4989
0
        goto err;
4990
4991
0
    if (sc->server_cert_type != NULL) {
4992
0
        OPENSSL_free(retsc->server_cert_type);
4993
0
        retsc->server_cert_type = OPENSSL_memdup(sc->server_cert_type,
4994
0
            sc->server_cert_type_len);
4995
0
        if (retsc->server_cert_type == NULL)
4996
0
            goto err;
4997
0
        retsc->server_cert_type_len = sc->server_cert_type_len;
4998
0
    }
4999
5000
0
    if (sc->client_cert_type != NULL) {
5001
0
        OPENSSL_free(retsc->client_cert_type);
5002
0
        retsc->client_cert_type = OPENSSL_memdup(sc->client_cert_type,
5003
0
            sc->client_cert_type_len);
5004
0
        if (retsc->client_cert_type == NULL)
5005
0
            goto err;
5006
0
        retsc->client_cert_type_len = sc->client_cert_type_len;
5007
0
    }
5008
5009
0
#ifndef OPENSSL_NO_CT
5010
0
    retsc->ct_validation_callback = sc->ct_validation_callback;
5011
0
    retsc->ct_validation_callback_arg = sc->ct_validation_callback_arg;
5012
0
#endif
5013
5014
0
    retsc->ext.status_type = sc->ext.status_type;
5015
5016
0
    return ret;
5017
5018
0
err:
5019
0
    SSL_free(ret);
5020
0
    return NULL;
5021
0
}
5022
5023
X509 *SSL_get_certificate(const SSL *s)
5024
0
{
5025
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5026
5027
0
    if (sc == NULL)
5028
0
        return NULL;
5029
5030
0
    if (sc->cert != NULL)
5031
0
        return sc->cert->key->x509;
5032
0
    else
5033
0
        return NULL;
5034
0
}
5035
5036
EVP_PKEY *SSL_get_privatekey(const SSL *s)
5037
0
{
5038
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5039
5040
0
    if (sc == NULL)
5041
0
        return NULL;
5042
5043
0
    if (sc->cert != NULL)
5044
0
        return sc->cert->key->privatekey;
5045
0
    else
5046
0
        return NULL;
5047
0
}
5048
5049
X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx)
5050
0
{
5051
0
    if (ctx->cert != NULL)
5052
0
        return ctx->cert->key->x509;
5053
0
    else
5054
0
        return NULL;
5055
0
}
5056
5057
EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx)
5058
0
{
5059
0
    if (ctx->cert != NULL)
5060
0
        return ctx->cert->key->privatekey;
5061
0
    else
5062
0
        return NULL;
5063
0
}
5064
5065
const SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
5066
0
{
5067
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5068
5069
0
    if (sc == NULL)
5070
0
        return NULL;
5071
5072
0
    if ((sc->session != NULL) && (sc->session->cipher != NULL))
5073
0
        return sc->session->cipher;
5074
0
    return NULL;
5075
0
}
5076
5077
const SSL_CIPHER *SSL_get_pending_cipher(const SSL *s)
5078
0
{
5079
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5080
5081
0
    if (sc == NULL)
5082
0
        return NULL;
5083
5084
0
    return sc->s3.tmp.new_cipher;
5085
0
}
5086
5087
const COMP_METHOD *SSL_get_current_compression(const SSL *s)
5088
0
{
5089
0
#ifndef OPENSSL_NO_COMP
5090
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5091
5092
0
    if (sc == NULL)
5093
0
        return NULL;
5094
5095
0
    return sc->rlayer.wrlmethod->get_compression(sc->rlayer.wrl);
5096
#else
5097
    return NULL;
5098
#endif
5099
0
}
5100
5101
const COMP_METHOD *SSL_get_current_expansion(const SSL *s)
5102
0
{
5103
0
#ifndef OPENSSL_NO_COMP
5104
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5105
5106
0
    if (sc == NULL)
5107
0
        return NULL;
5108
5109
0
    return sc->rlayer.rrlmethod->get_compression(sc->rlayer.rrl);
5110
#else
5111
    return NULL;
5112
#endif
5113
0
}
5114
5115
int ssl_init_wbio_buffer(SSL_CONNECTION *s)
5116
205k
{
5117
205k
    BIO *bbio;
5118
5119
205k
    if (s->bbio != NULL) {
5120
        /* Already buffered. */
5121
0
        return 1;
5122
0
    }
5123
5124
205k
    bbio = BIO_new(BIO_f_buffer());
5125
205k
    if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
5126
0
        BIO_free(bbio);
5127
0
        ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
5128
0
        return 0;
5129
0
    }
5130
205k
    s->bbio = bbio;
5131
205k
    s->wbio = BIO_push(bbio, s->wbio);
5132
5133
205k
    s->rlayer.wrlmethod->set1_bio(s->rlayer.wrl, s->wbio);
5134
5135
205k
    return 1;
5136
205k
}
5137
5138
int ssl_free_wbio_buffer(SSL_CONNECTION *s)
5139
757k
{
5140
    /* callers ensure s is never null */
5141
757k
    if (s->bbio == NULL)
5142
551k
        return 1;
5143
5144
205k
    s->wbio = BIO_pop(s->wbio);
5145
205k
    s->rlayer.wrlmethod->set1_bio(s->rlayer.wrl, s->wbio);
5146
5147
205k
    BIO_free(s->bbio);
5148
205k
    s->bbio = NULL;
5149
5150
205k
    return 1;
5151
757k
}
5152
5153
void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
5154
0
{
5155
0
    ctx->quiet_shutdown = mode;
5156
0
}
5157
5158
int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
5159
0
{
5160
0
    return ctx->quiet_shutdown;
5161
0
}
5162
5163
void SSL_set_quiet_shutdown(SSL *s, int mode)
5164
0
{
5165
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
5166
5167
    /* Not supported with QUIC */
5168
0
    if (sc == NULL)
5169
0
        return;
5170
5171
0
    sc->quiet_shutdown = mode;
5172
0
}
5173
5174
int SSL_get_quiet_shutdown(const SSL *s)
5175
0
{
5176
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5177
5178
    /* Not supported with QUIC */
5179
0
    if (sc == NULL)
5180
0
        return 0;
5181
5182
0
    return sc->quiet_shutdown;
5183
0
}
5184
5185
void SSL_set_shutdown(SSL *s, int mode)
5186
0
{
5187
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
5188
5189
    /* Not supported with QUIC */
5190
0
    if (sc == NULL)
5191
0
        return;
5192
5193
0
    sc->shutdown = mode;
5194
0
}
5195
5196
int SSL_get_shutdown(const SSL *s)
5197
0
{
5198
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL_ONLY(s);
5199
5200
0
#ifndef OPENSSL_NO_QUIC
5201
    /* QUIC: Just indicate whether the connection was shutdown cleanly. */
5202
0
    if (IS_QUIC(s))
5203
0
        return ossl_quic_get_shutdown(s);
5204
0
#endif
5205
5206
0
    if (sc == NULL)
5207
0
        return 0;
5208
5209
0
    return sc->shutdown;
5210
0
}
5211
5212
int SSL_version(const SSL *s)
5213
126k
{
5214
126k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5215
5216
126k
#ifndef OPENSSL_NO_QUIC
5217
    /* We only support QUICv1 - so if its QUIC its QUICv1 */
5218
126k
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
5219
0
        return OSSL_QUIC1_VERSION;
5220
126k
#endif
5221
126k
    if (sc == NULL)
5222
0
        return 0;
5223
5224
126k
    return sc->version;
5225
126k
}
5226
5227
int SSL_client_version(const SSL *s)
5228
0
{
5229
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5230
5231
0
#ifndef OPENSSL_NO_QUIC
5232
    /* We only support QUICv1 - so if its QUIC its QUICv1 */
5233
0
    if (s->type == SSL_TYPE_QUIC_CONNECTION || s->type == SSL_TYPE_QUIC_XSO)
5234
0
        return OSSL_QUIC1_VERSION;
5235
0
#endif
5236
0
    if (sc == NULL)
5237
0
        return 0;
5238
5239
0
    return sc->client_version;
5240
0
}
5241
5242
SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
5243
0
{
5244
0
    return ssl->ctx;
5245
0
}
5246
5247
SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx)
5248
0
{
5249
0
    CERT *new_cert;
5250
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
5251
5252
    /* TODO(QUIC FUTURE): Add support for QUIC */
5253
0
    if (sc == NULL)
5254
0
        return NULL;
5255
5256
0
    if (ssl->ctx == ctx)
5257
0
        return ssl->ctx;
5258
0
    if (ctx == NULL)
5259
0
        ctx = sc->session_ctx;
5260
0
    new_cert = ssl_cert_dup(ctx->cert);
5261
0
    if (new_cert == NULL) {
5262
0
        return NULL;
5263
0
    }
5264
5265
0
    if (!custom_exts_copy_flags(&new_cert->custext, &sc->cert->custext)) {
5266
0
        ssl_cert_free(new_cert);
5267
0
        return NULL;
5268
0
    }
5269
5270
0
    ssl_cert_free(sc->cert);
5271
0
    sc->cert = new_cert;
5272
5273
    /*
5274
     * Program invariant: |sid_ctx| has fixed size (SSL_MAX_SID_CTX_LENGTH),
5275
     * so setter APIs must prevent invalid lengths from entering the system.
5276
     */
5277
0
    if (!ossl_assert(sc->sid_ctx_length <= sizeof(sc->sid_ctx)))
5278
0
        return NULL;
5279
5280
    /*
5281
     * If the session ID context matches that of the parent SSL_CTX,
5282
     * inherit it from the new SSL_CTX as well. If however the context does
5283
     * not match (i.e., it was set per-ssl with SSL_set_session_id_context),
5284
     * leave it unchanged.
5285
     */
5286
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)) {
5287
0
        sc->sid_ctx_length = ctx->sid_ctx_length;
5288
0
        memcpy(&sc->sid_ctx, &ctx->sid_ctx, sizeof(sc->sid_ctx));
5289
0
    }
5290
5291
0
    SSL_CTX_up_ref(ctx);
5292
0
    SSL_CTX_free(ssl->ctx); /* decrement reference count */
5293
0
    ssl->ctx = ctx;
5294
5295
0
    return ssl->ctx;
5296
0
}
5297
5298
int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
5299
0
{
5300
0
    return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx,
5301
0
        ctx->propq);
5302
0
}
5303
5304
int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx)
5305
0
{
5306
0
    X509_LOOKUP *lookup;
5307
5308
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir());
5309
0
    if (lookup == NULL)
5310
0
        return 0;
5311
5312
    /* We ignore errors, in case the directory doesn't exist */
5313
0
    ERR_set_mark();
5314
5315
0
    X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
5316
5317
0
    ERR_pop_to_mark();
5318
5319
0
    return 1;
5320
0
}
5321
5322
int SSL_CTX_set_default_verify_file(SSL_CTX *ctx)
5323
0
{
5324
0
    X509_LOOKUP *lookup;
5325
5326
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file());
5327
0
    if (lookup == NULL)
5328
0
        return 0;
5329
5330
    /* We ignore errors, in case the file doesn't exist */
5331
0
    ERR_set_mark();
5332
5333
0
    X509_LOOKUP_load_file_ex(lookup, NULL, X509_FILETYPE_DEFAULT, ctx->libctx,
5334
0
        ctx->propq);
5335
5336
0
    ERR_pop_to_mark();
5337
5338
0
    return 1;
5339
0
}
5340
5341
int SSL_CTX_set_default_verify_store(SSL_CTX *ctx)
5342
0
{
5343
0
    X509_LOOKUP *lookup;
5344
5345
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store());
5346
0
    if (lookup == NULL)
5347
0
        return 0;
5348
5349
    /* We ignore errors, in case the directory doesn't exist */
5350
0
    ERR_set_mark();
5351
5352
0
    X509_LOOKUP_add_store_ex(lookup, NULL, ctx->libctx, ctx->propq);
5353
5354
0
    ERR_pop_to_mark();
5355
5356
0
    return 1;
5357
0
}
5358
5359
int SSL_CTX_load_verify_file(SSL_CTX *ctx, const char *CAfile)
5360
0
{
5361
0
    return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx,
5362
0
        ctx->propq);
5363
0
}
5364
5365
int SSL_CTX_load_verify_dir(SSL_CTX *ctx, const char *CApath)
5366
0
{
5367
0
    return X509_STORE_load_path(ctx->cert_store, CApath);
5368
0
}
5369
5370
int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore)
5371
0
{
5372
0
    return X509_STORE_load_store_ex(ctx->cert_store, CAstore, ctx->libctx,
5373
0
        ctx->propq);
5374
0
}
5375
5376
int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
5377
    const char *CApath)
5378
0
{
5379
0
    if (CAfile == NULL && CApath == NULL)
5380
0
        return 0;
5381
0
    if (CAfile != NULL && !SSL_CTX_load_verify_file(ctx, CAfile))
5382
0
        return 0;
5383
0
    if (CApath != NULL && !SSL_CTX_load_verify_dir(ctx, CApath))
5384
0
        return 0;
5385
0
    return 1;
5386
0
}
5387
5388
void SSL_set_info_callback(SSL *ssl,
5389
    void (*cb)(const SSL *ssl, int type, int val))
5390
0
{
5391
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5392
5393
0
    if (sc == NULL)
5394
0
        return;
5395
5396
0
    sc->info_callback = cb;
5397
0
}
5398
5399
/*
5400
 * One compiler (Diab DCC) doesn't like argument names in returned function
5401
 * pointer.
5402
 */
5403
void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /* ssl */,
5404
    int /* type */,
5405
    int /* val */)
5406
0
{
5407
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5408
5409
0
    if (sc == NULL)
5410
0
        return NULL;
5411
5412
0
    return sc->info_callback;
5413
0
}
5414
5415
void SSL_set_verify_result(SSL *ssl, long arg)
5416
0
{
5417
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5418
5419
0
    if (sc == NULL)
5420
0
        return;
5421
5422
0
    sc->verify_result = arg;
5423
0
}
5424
5425
long SSL_get_verify_result(const SSL *ssl)
5426
0
{
5427
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5428
5429
0
    if (sc == NULL)
5430
0
        return 0;
5431
5432
0
    return sc->verify_result;
5433
0
}
5434
5435
size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen)
5436
0
{
5437
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5438
5439
0
    if (sc == NULL)
5440
0
        return 0;
5441
5442
0
    if (outlen == 0)
5443
0
        return sizeof(sc->s3.client_random);
5444
0
    if (outlen > sizeof(sc->s3.client_random))
5445
0
        outlen = sizeof(sc->s3.client_random);
5446
0
    memcpy(out, sc->s3.client_random, outlen);
5447
0
    return outlen;
5448
0
}
5449
5450
size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen)
5451
0
{
5452
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5453
5454
0
    if (sc == NULL)
5455
0
        return 0;
5456
5457
0
    if (outlen == 0)
5458
0
        return sizeof(sc->s3.server_random);
5459
0
    if (outlen > sizeof(sc->s3.server_random))
5460
0
        outlen = sizeof(sc->s3.server_random);
5461
0
    memcpy(out, sc->s3.server_random, outlen);
5462
0
    return outlen;
5463
0
}
5464
5465
size_t SSL_SESSION_get_master_key(const SSL_SESSION *session,
5466
    unsigned char *out, size_t outlen)
5467
0
{
5468
0
    if (outlen == 0)
5469
0
        return session->master_key_length;
5470
0
    if (outlen > session->master_key_length)
5471
0
        outlen = session->master_key_length;
5472
0
    memcpy(out, session->master_key, outlen);
5473
0
    return outlen;
5474
0
}
5475
5476
int SSL_SESSION_set1_master_key(SSL_SESSION *sess, const unsigned char *in,
5477
    size_t len)
5478
0
{
5479
0
    if (len > sizeof(sess->master_key))
5480
0
        return 0;
5481
5482
0
    memcpy(sess->master_key, in, len);
5483
0
    sess->master_key_length = len;
5484
0
    return 1;
5485
0
}
5486
5487
int SSL_set_ex_data(SSL *s, int idx, void *arg)
5488
0
{
5489
0
    return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
5490
0
}
5491
5492
void *SSL_get_ex_data(const SSL *s, int idx)
5493
0
{
5494
0
    return CRYPTO_get_ex_data(&s->ex_data, idx);
5495
0
}
5496
5497
int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
5498
0
{
5499
0
    return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
5500
0
}
5501
5502
void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
5503
0
{
5504
0
    return CRYPTO_get_ex_data(&s->ex_data, idx);
5505
0
}
5506
5507
X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
5508
0
{
5509
0
    return ctx->cert_store;
5510
0
}
5511
5512
void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
5513
0
{
5514
0
    X509_STORE_free(ctx->cert_store);
5515
0
    ctx->cert_store = store;
5516
0
}
5517
5518
void SSL_CTX_set1_cert_store(SSL_CTX *ctx, X509_STORE *store)
5519
0
{
5520
0
    if (store != NULL)
5521
0
        X509_STORE_up_ref(store);
5522
0
    SSL_CTX_set_cert_store(ctx, store);
5523
0
}
5524
5525
int SSL_want(const SSL *s)
5526
9.70M
{
5527
9.70M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5528
5529
9.70M
#ifndef OPENSSL_NO_QUIC
5530
9.70M
    if (IS_QUIC(s))
5531
0
        return ossl_quic_want(s);
5532
9.70M
#endif
5533
5534
9.70M
    if (sc == NULL)
5535
0
        return SSL_NOTHING;
5536
5537
9.70M
    return sc->rwstate;
5538
9.70M
}
5539
5540
#ifndef OPENSSL_NO_PSK
5541
int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
5542
0
{
5543
0
    if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
5544
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
5545
0
        return 0;
5546
0
    }
5547
0
    OPENSSL_free(ctx->cert->psk_identity_hint);
5548
0
    if (identity_hint != NULL) {
5549
0
        ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
5550
0
        if (ctx->cert->psk_identity_hint == NULL)
5551
0
            return 0;
5552
0
    } else
5553
0
        ctx->cert->psk_identity_hint = NULL;
5554
0
    return 1;
5555
0
}
5556
5557
int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
5558
0
{
5559
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5560
5561
0
    if (sc == NULL)
5562
0
        return 0;
5563
5564
0
    if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
5565
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
5566
0
        return 0;
5567
0
    }
5568
0
    OPENSSL_free(sc->cert->psk_identity_hint);
5569
0
    if (identity_hint != NULL) {
5570
0
        sc->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
5571
0
        if (sc->cert->psk_identity_hint == NULL)
5572
0
            return 0;
5573
0
    } else
5574
0
        sc->cert->psk_identity_hint = NULL;
5575
0
    return 1;
5576
0
}
5577
5578
const char *SSL_get_psk_identity_hint(const SSL *s)
5579
0
{
5580
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5581
5582
0
    if (sc == NULL || sc->session == NULL)
5583
0
        return NULL;
5584
5585
0
    return sc->session->psk_identity_hint;
5586
0
}
5587
5588
const char *SSL_get_psk_identity(const SSL *s)
5589
0
{
5590
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5591
5592
0
    if (sc == NULL || sc->session == NULL)
5593
0
        return NULL;
5594
5595
0
    return sc->session->psk_identity;
5596
0
}
5597
5598
void SSL_set_psk_client_callback(SSL *s, SSL_psk_client_cb_func cb)
5599
0
{
5600
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5601
5602
0
    if (sc == NULL)
5603
0
        return;
5604
5605
0
    sc->psk_client_callback = cb;
5606
0
}
5607
5608
void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, SSL_psk_client_cb_func cb)
5609
0
{
5610
0
    ctx->psk_client_callback = cb;
5611
0
}
5612
5613
void SSL_set_psk_server_callback(SSL *s, SSL_psk_server_cb_func cb)
5614
0
{
5615
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5616
5617
0
    if (sc == NULL)
5618
0
        return;
5619
5620
0
    sc->psk_server_callback = cb;
5621
0
}
5622
5623
void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, SSL_psk_server_cb_func cb)
5624
0
{
5625
0
    ctx->psk_server_callback = cb;
5626
0
}
5627
#endif
5628
5629
void SSL_set_psk_find_session_callback(SSL *s, SSL_psk_find_session_cb_func cb)
5630
0
{
5631
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5632
5633
0
    if (sc == NULL)
5634
0
        return;
5635
5636
0
    sc->psk_find_session_cb = cb;
5637
0
}
5638
5639
void SSL_CTX_set_psk_find_session_callback(SSL_CTX *ctx,
5640
    SSL_psk_find_session_cb_func cb)
5641
0
{
5642
0
    ctx->psk_find_session_cb = cb;
5643
0
}
5644
5645
void SSL_set_psk_use_session_callback(SSL *s, SSL_psk_use_session_cb_func cb)
5646
0
{
5647
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5648
5649
0
    if (sc == NULL)
5650
0
        return;
5651
5652
0
    sc->psk_use_session_cb = cb;
5653
0
}
5654
5655
void SSL_CTX_set_psk_use_session_callback(SSL_CTX *ctx,
5656
    SSL_psk_use_session_cb_func cb)
5657
0
{
5658
0
    ctx->psk_use_session_cb = cb;
5659
0
}
5660
5661
void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
5662
    void (*cb)(int write_p, int version,
5663
        int content_type, const void *buf,
5664
        size_t len, SSL *ssl, void *arg))
5665
0
{
5666
0
    SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
5667
0
}
5668
5669
void SSL_set_msg_callback(SSL *ssl,
5670
    void (*cb)(int write_p, int version,
5671
        int content_type, const void *buf,
5672
        size_t len, SSL *ssl, void *arg))
5673
0
{
5674
0
    SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
5675
0
}
5676
5677
void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
5678
    int (*cb)(SSL *ssl,
5679
        int
5680
            is_forward_secure))
5681
0
{
5682
0
    SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
5683
0
        (void (*)(void))cb);
5684
0
}
5685
5686
void SSL_set_not_resumable_session_callback(SSL *ssl,
5687
    int (*cb)(SSL *ssl,
5688
        int is_forward_secure))
5689
0
{
5690
0
    SSL_callback_ctrl(ssl, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
5691
0
        (void (*)(void))cb);
5692
0
}
5693
5694
void SSL_CTX_set_record_padding_callback(SSL_CTX *ctx,
5695
    size_t (*cb)(SSL *ssl, int type,
5696
        size_t len, void *arg))
5697
0
{
5698
0
    ctx->record_padding_cb = cb;
5699
0
}
5700
5701
void SSL_CTX_set_record_padding_callback_arg(SSL_CTX *ctx, void *arg)
5702
0
{
5703
0
    ctx->record_padding_arg = arg;
5704
0
}
5705
5706
void *SSL_CTX_get_record_padding_callback_arg(const SSL_CTX *ctx)
5707
0
{
5708
0
    return ctx->record_padding_arg;
5709
0
}
5710
5711
int SSL_CTX_set_block_padding_ex(SSL_CTX *ctx, size_t app_block_size,
5712
    size_t hs_block_size)
5713
0
{
5714
0
    if (IS_QUIC_CTX(ctx) && (app_block_size > 1 || hs_block_size > 1))
5715
0
        return 0;
5716
5717
    /* block size of 0 or 1 is basically no padding */
5718
0
    if (app_block_size == 1) {
5719
0
        ctx->block_padding = 0;
5720
0
    } else if (app_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5721
0
        ctx->block_padding = app_block_size;
5722
0
    } else {
5723
0
        return 0;
5724
0
    }
5725
0
    if (hs_block_size == 1) {
5726
0
        ctx->hs_padding = 0;
5727
0
    } else if (hs_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5728
0
        ctx->hs_padding = hs_block_size;
5729
0
    } else {
5730
0
        return 0;
5731
0
    }
5732
0
    return 1;
5733
0
}
5734
5735
int SSL_CTX_set_block_padding(SSL_CTX *ctx, size_t block_size)
5736
0
{
5737
0
    return SSL_CTX_set_block_padding_ex(ctx, block_size, block_size);
5738
0
}
5739
5740
int SSL_set_record_padding_callback(SSL *ssl,
5741
    size_t (*cb)(SSL *ssl, int type,
5742
        size_t len, void *arg))
5743
0
{
5744
0
    BIO *b;
5745
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
5746
5747
0
    if (sc == NULL)
5748
0
        return 0;
5749
5750
0
    b = SSL_get_wbio(ssl);
5751
0
    if (b == NULL || !BIO_get_ktls_send(b)) {
5752
0
        sc->rlayer.record_padding_cb = cb;
5753
0
        return 1;
5754
0
    }
5755
0
    return 0;
5756
0
}
5757
5758
void SSL_set_record_padding_callback_arg(SSL *ssl, void *arg)
5759
0
{
5760
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5761
5762
0
    if (sc == NULL)
5763
0
        return;
5764
5765
0
    sc->rlayer.record_padding_arg = arg;
5766
0
}
5767
5768
void *SSL_get_record_padding_callback_arg(const SSL *ssl)
5769
0
{
5770
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(ssl);
5771
5772
0
    if (sc == NULL)
5773
0
        return NULL;
5774
5775
0
    return sc->rlayer.record_padding_arg;
5776
0
}
5777
5778
int SSL_set_block_padding_ex(SSL *ssl, size_t app_block_size,
5779
    size_t hs_block_size)
5780
0
{
5781
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
5782
5783
0
    if (sc == NULL
5784
0
        || (IS_QUIC(ssl)
5785
0
            && (app_block_size > 1 || hs_block_size > 1)))
5786
0
        return 0;
5787
5788
    /* block size of 0 or 1 is basically no padding */
5789
0
    if (app_block_size == 1) {
5790
0
        sc->rlayer.block_padding = 0;
5791
0
    } else if (app_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5792
0
        sc->rlayer.block_padding = app_block_size;
5793
0
    } else {
5794
0
        return 0;
5795
0
    }
5796
0
    if (hs_block_size == 1) {
5797
0
        sc->rlayer.hs_padding = 0;
5798
0
    } else if (hs_block_size <= SSL3_RT_MAX_PLAIN_LENGTH) {
5799
0
        sc->rlayer.hs_padding = hs_block_size;
5800
0
    } else {
5801
0
        return 0;
5802
0
    }
5803
0
    return 1;
5804
0
}
5805
5806
int SSL_set_block_padding(SSL *ssl, size_t block_size)
5807
0
{
5808
0
    return SSL_set_block_padding_ex(ssl, block_size, block_size);
5809
0
}
5810
5811
int SSL_set_num_tickets(SSL *s, size_t num_tickets)
5812
0
{
5813
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5814
5815
0
    if (sc == NULL)
5816
0
        return 0;
5817
5818
0
    sc->num_tickets = num_tickets;
5819
5820
0
    return 1;
5821
0
}
5822
5823
size_t SSL_get_num_tickets(const SSL *s)
5824
0
{
5825
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5826
5827
0
    if (sc == NULL)
5828
0
        return 0;
5829
5830
0
    return sc->num_tickets;
5831
0
}
5832
5833
int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets)
5834
0
{
5835
0
    ctx->num_tickets = num_tickets;
5836
5837
0
    return 1;
5838
0
}
5839
5840
size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx)
5841
0
{
5842
0
    return ctx->num_tickets;
5843
0
}
5844
5845
/* Retrieve handshake hashes */
5846
int ssl_handshake_hash(SSL_CONNECTION *s,
5847
    unsigned char *out, size_t outlen,
5848
    size_t *hashlen)
5849
157k
{
5850
157k
    EVP_MD_CTX *ctx = NULL;
5851
157k
    EVP_MD_CTX *hdgst = s->s3.handshake_dgst;
5852
157k
    int hashleni = EVP_MD_CTX_get_size(hdgst);
5853
157k
    int ret = 0;
5854
5855
157k
    if (hashleni < 0 || (size_t)hashleni > outlen) {
5856
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5857
0
        goto err;
5858
0
    }
5859
5860
157k
    ctx = EVP_MD_CTX_new();
5861
157k
    if (ctx == NULL) {
5862
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5863
0
        goto err;
5864
0
    }
5865
5866
157k
    if (!EVP_MD_CTX_copy_ex(ctx, hdgst)
5867
157k
        || EVP_DigestFinal_ex(ctx, out, NULL) <= 0) {
5868
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5869
0
        goto err;
5870
0
    }
5871
5872
157k
    *hashlen = hashleni;
5873
5874
157k
    ret = 1;
5875
157k
err:
5876
157k
    EVP_MD_CTX_free(ctx);
5877
157k
    return ret;
5878
157k
}
5879
5880
int SSL_session_reused(const SSL *s)
5881
0
{
5882
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5883
5884
0
    if (sc == NULL)
5885
0
        return 0;
5886
5887
0
    return sc->hit;
5888
0
}
5889
5890
int SSL_is_server(const SSL *s)
5891
0
{
5892
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5893
5894
0
    if (sc == NULL)
5895
0
        return 0;
5896
5897
0
    return sc->server;
5898
0
}
5899
5900
#ifndef OPENSSL_NO_DEPRECATED_1_1_0
5901
void SSL_set_debug(SSL *s, int debug)
5902
0
{
5903
    /* Old function was do-nothing anyway... */
5904
0
    (void)s;
5905
0
    (void)debug;
5906
0
}
5907
#endif
5908
5909
void SSL_set_security_level(SSL *s, int level)
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_level = level;
5917
0
}
5918
5919
int SSL_get_security_level(const SSL *s)
5920
5.56M
{
5921
5.56M
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5922
5923
5.56M
    if (sc == NULL)
5924
0
        return 0;
5925
5926
5.56M
    return sc->cert->sec_level;
5927
5.56M
}
5928
5929
void SSL_set_security_callback(SSL *s,
5930
    int (*cb)(const SSL *s, const SSL_CTX *ctx,
5931
        int op, int bits, int nid,
5932
        void *other, 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_cb = cb;
5940
0
}
5941
5942
int (*SSL_get_security_callback(const SSL *s))(const SSL *s,
5943
    const SSL_CTX *ctx, int op,
5944
    int bits, int nid, void *other,
5945
    void *ex)
5946
0
{
5947
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5948
5949
0
    if (sc == NULL)
5950
0
        return NULL;
5951
5952
0
    return sc->cert->sec_cb;
5953
0
}
5954
5955
void SSL_set0_security_ex_data(SSL *s, void *ex)
5956
0
{
5957
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
5958
5959
0
    if (sc == NULL)
5960
0
        return;
5961
5962
0
    sc->cert->sec_ex = ex;
5963
0
}
5964
5965
void *SSL_get0_security_ex_data(const SSL *s)
5966
0
{
5967
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
5968
5969
0
    if (sc == NULL)
5970
0
        return NULL;
5971
5972
0
    return sc->cert->sec_ex;
5973
0
}
5974
5975
void SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
5976
0
{
5977
0
    ctx->cert->sec_level = level;
5978
0
}
5979
5980
int SSL_CTX_get_security_level(const SSL_CTX *ctx)
5981
124k
{
5982
124k
    return ctx->cert->sec_level;
5983
124k
}
5984
5985
void SSL_CTX_set_security_callback(SSL_CTX *ctx,
5986
    int (*cb)(const SSL *s, const SSL_CTX *ctx,
5987
        int op, int bits, int nid,
5988
        void *other, void *ex))
5989
0
{
5990
0
    ctx->cert->sec_cb = cb;
5991
0
}
5992
5993
int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx))(const SSL *s,
5994
    const SSL_CTX *ctx,
5995
    int op, int bits,
5996
    int nid,
5997
    void *other,
5998
    void *ex)
5999
0
{
6000
0
    return ctx->cert->sec_cb;
6001
0
}
6002
6003
void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex)
6004
0
{
6005
0
    ctx->cert->sec_ex = ex;
6006
0
}
6007
6008
void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx)
6009
0
{
6010
0
    return ctx->cert->sec_ex;
6011
0
}
6012
6013
uint64_t SSL_CTX_get_options(const SSL_CTX *ctx)
6014
0
{
6015
0
    return ctx->options;
6016
0
}
6017
6018
uint64_t SSL_get_options(const SSL *s)
6019
62.0k
{
6020
62.0k
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6021
6022
62.0k
#ifndef OPENSSL_NO_QUIC
6023
62.0k
    if (IS_QUIC(s))
6024
0
        return ossl_quic_get_options(s);
6025
62.0k
#endif
6026
6027
62.0k
    if (sc == NULL)
6028
0
        return 0;
6029
6030
62.0k
    return sc->options;
6031
62.0k
}
6032
6033
uint64_t SSL_CTX_set_options(SSL_CTX *ctx, uint64_t op)
6034
0
{
6035
0
    return ctx->options |= op;
6036
0
}
6037
6038
uint64_t SSL_set_options(SSL *s, uint64_t op)
6039
0
{
6040
0
    SSL_CONNECTION *sc;
6041
0
    OSSL_PARAM options[2], *opts = options;
6042
6043
0
#ifndef OPENSSL_NO_QUIC
6044
0
    if (IS_QUIC(s))
6045
0
        return ossl_quic_set_options(s, op);
6046
0
#endif
6047
6048
0
    sc = SSL_CONNECTION_FROM_SSL(s);
6049
0
    if (sc == NULL)
6050
0
        return 0;
6051
6052
0
    sc->options |= op;
6053
6054
0
    *opts++ = OSSL_PARAM_construct_uint64(OSSL_LIBSSL_RECORD_LAYER_PARAM_OPTIONS,
6055
0
        &sc->options);
6056
0
    *opts = OSSL_PARAM_construct_end();
6057
6058
    /* Ignore return value */
6059
0
    sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
6060
0
    sc->rlayer.wrlmethod->set_options(sc->rlayer.wrl, options);
6061
6062
0
    return sc->options;
6063
0
}
6064
6065
uint64_t SSL_CTX_clear_options(SSL_CTX *ctx, uint64_t op)
6066
0
{
6067
0
    return ctx->options &= ~op;
6068
0
}
6069
6070
uint64_t SSL_clear_options(SSL *s, uint64_t op)
6071
8.82k
{
6072
8.82k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6073
8.82k
    OSSL_PARAM options[2], *opts = options;
6074
6075
8.82k
#ifndef OPENSSL_NO_QUIC
6076
8.82k
    if (IS_QUIC(s))
6077
0
        return ossl_quic_clear_options(s, op);
6078
8.82k
#endif
6079
6080
8.82k
    if (sc == NULL)
6081
0
        return 0;
6082
6083
8.82k
    sc->options &= ~op;
6084
6085
8.82k
    *opts++ = OSSL_PARAM_construct_uint64(OSSL_LIBSSL_RECORD_LAYER_PARAM_OPTIONS,
6086
8.82k
        &sc->options);
6087
8.82k
    *opts = OSSL_PARAM_construct_end();
6088
6089
    /* Ignore return value */
6090
8.82k
    sc->rlayer.rrlmethod->set_options(sc->rlayer.rrl, options);
6091
8.82k
    sc->rlayer.wrlmethod->set_options(sc->rlayer.wrl, options);
6092
6093
8.82k
    return sc->options;
6094
8.82k
}
6095
6096
STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s)
6097
0
{
6098
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6099
6100
0
    if (sc == NULL)
6101
0
        return NULL;
6102
6103
0
    return sc->verified_chain;
6104
0
}
6105
6106
IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);
6107
6108
#ifndef OPENSSL_NO_CT
6109
6110
/*
6111
 * Moves SCTs from the |src| stack to the |dst| stack.
6112
 * The source of each SCT will be set to |origin|.
6113
 * If |dst| points to a NULL pointer, a new stack will be created and owned by
6114
 * the caller.
6115
 * Returns the number of SCTs moved, or a negative integer if an error occurs.
6116
 * The |dst| stack is created and possibly partially populated even in case
6117
 * of error, likewise the |src| stack may be left in an intermediate state.
6118
 */
6119
static int ct_move_scts(STACK_OF(SCT) **dst, STACK_OF(SCT) *src,
6120
    sct_source_t origin)
6121
0
{
6122
0
    int scts_moved = 0;
6123
0
    SCT *sct = NULL;
6124
6125
0
    if (*dst == NULL) {
6126
0
        *dst = sk_SCT_new_null();
6127
0
        if (*dst == NULL) {
6128
0
            ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
6129
0
            goto err;
6130
0
        }
6131
0
    }
6132
6133
0
    while ((sct = sk_SCT_pop(src)) != NULL) {
6134
0
        if (SCT_set_source(sct, origin) != 1)
6135
0
            goto err;
6136
6137
0
        if (!sk_SCT_push(*dst, sct))
6138
0
            goto err;
6139
0
        scts_moved += 1;
6140
0
    }
6141
6142
0
    return scts_moved;
6143
0
err:
6144
0
    SCT_free(sct);
6145
0
    return -1;
6146
0
}
6147
6148
/*
6149
 * Look for data collected during ServerHello and parse if found.
6150
 * Returns the number of SCTs extracted.
6151
 */
6152
static int ct_extract_tls_extension_scts(SSL_CONNECTION *s)
6153
0
{
6154
0
    int scts_extracted = 0;
6155
6156
0
    if (s->ext.scts != NULL) {
6157
0
        const unsigned char *p = s->ext.scts;
6158
0
        STACK_OF(SCT) *scts = o2i_SCT_LIST(NULL, &p, s->ext.scts_len);
6159
6160
0
        scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_TLS_EXTENSION);
6161
6162
0
        SCT_LIST_free(scts);
6163
0
    }
6164
6165
0
    return scts_extracted;
6166
0
}
6167
6168
/*
6169
 * Checks for an OCSP response and then attempts to extract any SCTs found if it
6170
 * contains an SCT X509 extension. They will be stored in |s->scts|.
6171
 * Returns:
6172
 * - The number of SCTs extracted, assuming an OCSP response exists.
6173
 * - 0 if no OCSP response exists or it contains no SCTs.
6174
 * - A negative integer if an error occurs.
6175
 */
6176
static int ct_extract_ocsp_response_scts(SSL_CONNECTION *s)
6177
0
{
6178
0
#ifndef OPENSSL_NO_OCSP
6179
0
    int scts_extracted = 0;
6180
0
    const unsigned char *p;
6181
0
    OCSP_BASICRESP *br = NULL;
6182
0
    OCSP_RESPONSE *rsp = NULL;
6183
0
    STACK_OF(SCT) *scts = NULL;
6184
0
    int i;
6185
6186
0
    if (s->ext.ocsp.resp == NULL || s->ext.ocsp.resp_len == 0)
6187
0
        goto err;
6188
6189
0
    p = s->ext.ocsp.resp;
6190
0
    rsp = d2i_OCSP_RESPONSE(NULL, &p, (int)s->ext.ocsp.resp_len);
6191
0
    if (rsp == NULL)
6192
0
        goto err;
6193
6194
0
    br = OCSP_response_get1_basic(rsp);
6195
0
    if (br == NULL)
6196
0
        goto err;
6197
6198
0
    for (i = 0; i < OCSP_resp_count(br); ++i) {
6199
0
        OCSP_SINGLERESP *single = OCSP_resp_get0(br, i);
6200
6201
0
        if (single == NULL)
6202
0
            continue;
6203
6204
0
        scts = OCSP_SINGLERESP_get1_ext_d2i(single, NID_ct_cert_scts, NULL, NULL);
6205
0
        scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_OCSP_STAPLED_RESPONSE);
6206
0
        if (scts_extracted < 0)
6207
0
            goto err;
6208
0
    }
6209
0
err:
6210
0
    SCT_LIST_free(scts);
6211
0
    OCSP_BASICRESP_free(br);
6212
0
    OCSP_RESPONSE_free(rsp);
6213
0
    return scts_extracted;
6214
#else
6215
    /* Behave as if no OCSP response exists */
6216
    return 0;
6217
#endif
6218
0
}
6219
6220
/*
6221
 * Attempts to extract SCTs from the peer certificate.
6222
 * Return the number of SCTs extracted, or a negative integer if an error
6223
 * occurs.
6224
 */
6225
static int ct_extract_x509v3_extension_scts(SSL_CONNECTION *s)
6226
0
{
6227
0
    int scts_extracted = 0;
6228
0
    X509 *cert = s->session != NULL ? s->session->peer : NULL;
6229
6230
0
    if (cert != NULL) {
6231
0
        STACK_OF(SCT) *scts = X509_get_ext_d2i(cert, NID_ct_precert_scts, NULL, NULL);
6232
6233
0
        scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_X509V3_EXTENSION);
6234
6235
0
        SCT_LIST_free(scts);
6236
0
    }
6237
6238
0
    return scts_extracted;
6239
0
}
6240
6241
/*
6242
 * Attempts to find all received SCTs by checking TLS extensions, the OCSP
6243
 * response (if it exists) and X509v3 extensions in the certificate.
6244
 * Returns NULL if an error occurs.
6245
 */
6246
const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s)
6247
0
{
6248
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6249
6250
0
    if (sc == NULL)
6251
0
        return NULL;
6252
6253
0
    if (!sc->scts_parsed) {
6254
0
        if (ct_extract_tls_extension_scts(sc) < 0 || ct_extract_ocsp_response_scts(sc) < 0 || ct_extract_x509v3_extension_scts(sc) < 0)
6255
0
            goto err;
6256
6257
0
        sc->scts_parsed = 1;
6258
0
    }
6259
0
    return sc->scts;
6260
0
err:
6261
0
    return NULL;
6262
0
}
6263
6264
static int ct_permissive(const CT_POLICY_EVAL_CTX *ctx,
6265
    const STACK_OF(SCT) *scts, void *unused_arg)
6266
0
{
6267
0
    return 1;
6268
0
}
6269
6270
static int ct_strict(const CT_POLICY_EVAL_CTX *ctx,
6271
    const STACK_OF(SCT) *scts, void *unused_arg)
6272
0
{
6273
0
    int count = scts != NULL ? sk_SCT_num(scts) : 0;
6274
0
    int i;
6275
6276
0
    for (i = 0; i < count; ++i) {
6277
0
        SCT *sct = sk_SCT_value(scts, i);
6278
0
        int status = SCT_get_validation_status(sct);
6279
6280
0
        if (status == SCT_VALIDATION_STATUS_VALID)
6281
0
            return 1;
6282
0
    }
6283
0
    ERR_raise(ERR_LIB_SSL, SSL_R_NO_VALID_SCTS);
6284
0
    return 0;
6285
0
}
6286
6287
int SSL_set_ct_validation_callback(SSL *s, ssl_ct_validation_cb callback,
6288
    void *arg)
6289
29.0k
{
6290
29.0k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6291
6292
29.0k
    if (sc == NULL)
6293
0
        return 0;
6294
6295
    /*
6296
     * Since code exists that uses the custom extension handler for CT, look
6297
     * for this and throw an error if they have already registered to use CT.
6298
     */
6299
29.0k
    if (callback != NULL && SSL_CTX_has_client_custom_ext(s->ctx, TLSEXT_TYPE_signed_certificate_timestamp)) {
6300
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
6301
0
        return 0;
6302
0
    }
6303
6304
29.0k
    if (callback != NULL) {
6305
        /*
6306
         * If we are validating CT, then we MUST accept SCTs served via OCSP
6307
         */
6308
0
        if (!SSL_set_tlsext_status_type(s, TLSEXT_STATUSTYPE_ocsp))
6309
0
            return 0;
6310
0
    }
6311
6312
29.0k
    sc->ct_validation_callback = callback;
6313
29.0k
    sc->ct_validation_callback_arg = arg;
6314
6315
29.0k
    return 1;
6316
29.0k
}
6317
6318
int SSL_CTX_set_ct_validation_callback(SSL_CTX *ctx,
6319
    ssl_ct_validation_cb callback, void *arg)
6320
0
{
6321
    /*
6322
     * Since code exists that uses the custom extension handler for CT, look for
6323
     * this and throw an error if they have already registered to use CT.
6324
     */
6325
0
    if (callback != NULL && SSL_CTX_has_client_custom_ext(ctx, TLSEXT_TYPE_signed_certificate_timestamp)) {
6326
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
6327
0
        return 0;
6328
0
    }
6329
6330
0
    ctx->ct_validation_callback = callback;
6331
0
    ctx->ct_validation_callback_arg = arg;
6332
0
    return 1;
6333
0
}
6334
6335
int SSL_ct_is_enabled(const SSL *s)
6336
0
{
6337
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
6338
6339
0
    if (sc == NULL)
6340
0
        return 0;
6341
6342
0
    return sc->ct_validation_callback != NULL;
6343
0
}
6344
6345
int SSL_CTX_ct_is_enabled(const SSL_CTX *ctx)
6346
0
{
6347
0
    return ctx->ct_validation_callback != NULL;
6348
0
}
6349
6350
int ssl_validate_ct(SSL_CONNECTION *s)
6351
0
{
6352
0
    int ret = 0;
6353
0
    X509 *cert = s->session != NULL ? s->session->peer : NULL;
6354
0
    X509 *issuer;
6355
0
    SSL_DANE *dane = &s->dane;
6356
0
    CT_POLICY_EVAL_CTX *ctx = NULL;
6357
0
    const STACK_OF(SCT) *scts;
6358
6359
    /*
6360
     * If no callback is set, the peer is anonymous, or its chain is invalid,
6361
     * skip SCT validation - just return success.  Applications that continue
6362
     * handshakes without certificates, with unverified chains, or pinned leaf
6363
     * certificates are outside the scope of the WebPKI and CT.
6364
     *
6365
     * The above exclusions notwithstanding the vast majority of peers will
6366
     * have rather ordinary certificate chains validated by typical
6367
     * applications that perform certificate verification and therefore will
6368
     * process SCTs when enabled.
6369
     */
6370
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)
6371
0
        return 1;
6372
6373
    /*
6374
     * CT not applicable for chains validated via DANE-TA(2) or DANE-EE(3)
6375
     * trust-anchors.  See https://tools.ietf.org/html/rfc7671#section-4.2
6376
     */
6377
0
    if (DANETLS_ENABLED(dane) && dane->mtlsa != NULL) {
6378
0
        switch (dane->mtlsa->usage) {
6379
0
        case DANETLS_USAGE_DANE_TA:
6380
0
        case DANETLS_USAGE_DANE_EE:
6381
0
            return 1;
6382
0
        }
6383
0
    }
6384
6385
0
    ctx = CT_POLICY_EVAL_CTX_new_ex(SSL_CONNECTION_GET_CTX(s)->libctx,
6386
0
        SSL_CONNECTION_GET_CTX(s)->propq);
6387
0
    if (ctx == NULL) {
6388
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CT_LIB);
6389
0
        goto end;
6390
0
    }
6391
6392
0
    issuer = sk_X509_value(s->verified_chain, 1);
6393
0
    CT_POLICY_EVAL_CTX_set1_cert(ctx, cert);
6394
0
    CT_POLICY_EVAL_CTX_set1_issuer(ctx, issuer);
6395
0
    CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE(ctx,
6396
0
        SSL_CONNECTION_GET_CTX(s)->ctlog_store);
6397
0
    CT_POLICY_EVAL_CTX_set_time(
6398
0
        ctx, (uint64_t)SSL_SESSION_get_time_ex(s->session) * 1000);
6399
6400
0
    scts = SSL_get0_peer_scts(SSL_CONNECTION_GET_SSL(s));
6401
6402
    /*
6403
     * This function returns success (> 0) only when all the SCTs are valid, 0
6404
     * when some are invalid, and < 0 on various internal errors (out of
6405
     * memory, etc.).  Having some, or even all, invalid SCTs is not sufficient
6406
     * reason to abort the handshake, that decision is up to the callback.
6407
     * Therefore, we error out only in the unexpected case that the return
6408
     * value is negative.
6409
     *
6410
     * XXX: One might well argue that the return value of this function is an
6411
     * unfortunate design choice.  Its job is only to determine the validation
6412
     * status of each of the provided SCTs.  So long as it correctly separates
6413
     * the wheat from the chaff it should return success.  Failure in this case
6414
     * ought to correspond to an inability to carry out its duties.
6415
     */
6416
0
    if (SCT_LIST_validate(scts, ctx) < 0) {
6417
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_SCT_VERIFICATION_FAILED);
6418
0
        goto end;
6419
0
    }
6420
6421
0
    ret = s->ct_validation_callback(ctx, scts, s->ct_validation_callback_arg);
6422
0
    if (ret < 0)
6423
0
        ret = 0; /* This function returns 0 on failure */
6424
0
    if (!ret)
6425
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_CALLBACK_FAILED);
6426
6427
0
end:
6428
0
    CT_POLICY_EVAL_CTX_free(ctx);
6429
    /*
6430
     * With SSL_VERIFY_NONE the session may be cached and reused despite a
6431
     * failure return code here.  Also the application may wish the complete
6432
     * the handshake, and then disconnect cleanly at a higher layer, after
6433
     * checking the verification status of the completed connection.
6434
     *
6435
     * We therefore force a certificate verification failure which will be
6436
     * visible via SSL_get_verify_result() and cached as part of any resumed
6437
     * session.
6438
     *
6439
     * Note: the permissive callback is for information gathering only, always
6440
     * returns success, and does not affect verification status.  Only the
6441
     * strict callback or a custom application-specified callback can trigger
6442
     * connection failure or record a verification error.
6443
     */
6444
0
    if (ret <= 0)
6445
0
        s->verify_result = X509_V_ERR_NO_VALID_SCTS;
6446
0
    return ret;
6447
0
}
6448
6449
int SSL_CTX_enable_ct(SSL_CTX *ctx, int validation_mode)
6450
0
{
6451
0
    switch (validation_mode) {
6452
0
    default:
6453
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
6454
0
        return 0;
6455
0
    case SSL_CT_VALIDATION_PERMISSIVE:
6456
0
        return SSL_CTX_set_ct_validation_callback(ctx, ct_permissive, NULL);
6457
0
    case SSL_CT_VALIDATION_STRICT:
6458
0
        return SSL_CTX_set_ct_validation_callback(ctx, ct_strict, NULL);
6459
0
    }
6460
0
}
6461
6462
int SSL_enable_ct(SSL *s, int validation_mode)
6463
0
{
6464
0
    switch (validation_mode) {
6465
0
    default:
6466
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
6467
0
        return 0;
6468
0
    case SSL_CT_VALIDATION_PERMISSIVE:
6469
0
        return SSL_set_ct_validation_callback(s, ct_permissive, NULL);
6470
0
    case SSL_CT_VALIDATION_STRICT:
6471
0
        return SSL_set_ct_validation_callback(s, ct_strict, NULL);
6472
0
    }
6473
0
}
6474
6475
int SSL_CTX_set_default_ctlog_list_file(SSL_CTX *ctx)
6476
0
{
6477
0
    return CTLOG_STORE_load_default_file(ctx->ctlog_store);
6478
0
}
6479
6480
int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
6481
0
{
6482
0
    return CTLOG_STORE_load_file(ctx->ctlog_store, path);
6483
0
}
6484
6485
void SSL_CTX_set0_ctlog_store(SSL_CTX *ctx, CTLOG_STORE *logs)
6486
0
{
6487
0
    CTLOG_STORE_free(ctx->ctlog_store);
6488
0
    ctx->ctlog_store = logs;
6489
0
}
6490
6491
const CTLOG_STORE *SSL_CTX_get0_ctlog_store(const SSL_CTX *ctx)
6492
0
{
6493
0
    return ctx->ctlog_store;
6494
0
}
6495
6496
#endif /* OPENSSL_NO_CT */
6497
6498
void SSL_CTX_set_client_hello_cb(SSL_CTX *c, SSL_client_hello_cb_fn cb,
6499
    void *arg)
6500
0
{
6501
0
    c->client_hello_cb = cb;
6502
0
    c->client_hello_cb_arg = arg;
6503
0
}
6504
6505
int SSL_client_hello_isv2(SSL *s)
6506
0
{
6507
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6508
6509
0
    if (sc == NULL)
6510
0
        return 0;
6511
6512
0
    if (sc->clienthello == NULL)
6513
0
        return 0;
6514
0
    return sc->clienthello->isv2;
6515
0
}
6516
6517
unsigned int SSL_client_hello_get0_legacy_version(SSL *s)
6518
0
{
6519
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6520
6521
0
    if (sc == NULL)
6522
0
        return 0;
6523
6524
0
    if (sc->clienthello == NULL)
6525
0
        return 0;
6526
0
    return sc->clienthello->legacy_version;
6527
0
}
6528
6529
size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out)
6530
0
{
6531
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6532
6533
0
    if (sc == NULL)
6534
0
        return 0;
6535
6536
0
    if (sc->clienthello == NULL)
6537
0
        return 0;
6538
0
    if (out != NULL)
6539
0
        *out = sc->clienthello->random;
6540
0
    return SSL3_RANDOM_SIZE;
6541
0
}
6542
6543
size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out)
6544
0
{
6545
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6546
6547
0
    if (sc == NULL)
6548
0
        return 0;
6549
6550
0
    if (sc->clienthello == NULL)
6551
0
        return 0;
6552
0
    if (out != NULL)
6553
0
        *out = sc->clienthello->session_id;
6554
0
    return sc->clienthello->session_id_len;
6555
0
}
6556
6557
size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out)
6558
0
{
6559
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6560
6561
0
    if (sc == NULL)
6562
0
        return 0;
6563
6564
0
    if (sc->clienthello == NULL)
6565
0
        return 0;
6566
0
    if (out != NULL)
6567
0
        *out = PACKET_data(&sc->clienthello->ciphersuites);
6568
0
    return PACKET_remaining(&sc->clienthello->ciphersuites);
6569
0
}
6570
6571
size_t SSL_client_hello_get0_compression_methods(SSL *s, const unsigned char **out)
6572
0
{
6573
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6574
6575
0
    if (sc == NULL)
6576
0
        return 0;
6577
6578
0
    if (sc->clienthello == NULL)
6579
0
        return 0;
6580
0
    if (out != NULL)
6581
0
        *out = sc->clienthello->compressions;
6582
0
    return sc->clienthello->compressions_len;
6583
0
}
6584
6585
int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen)
6586
0
{
6587
0
    RAW_EXTENSION *ext;
6588
0
    int *present;
6589
0
    size_t num = 0, i;
6590
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6591
6592
0
    if (sc == NULL)
6593
0
        return 0;
6594
6595
0
    if (sc->clienthello == NULL || out == NULL || outlen == NULL)
6596
0
        return 0;
6597
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6598
0
        ext = sc->clienthello->pre_proc_exts + i;
6599
0
        if (ext->present)
6600
0
            num++;
6601
0
    }
6602
0
    if (num == 0) {
6603
0
        *out = NULL;
6604
0
        *outlen = 0;
6605
0
        return 1;
6606
0
    }
6607
0
    if ((present = OPENSSL_malloc(sizeof(*present) * num)) == NULL)
6608
0
        return 0;
6609
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6610
0
        ext = sc->clienthello->pre_proc_exts + i;
6611
0
        if (ext->present) {
6612
0
            if (ext->received_order >= num)
6613
0
                goto err;
6614
0
            present[ext->received_order] = ext->type;
6615
0
        }
6616
0
    }
6617
0
    *out = present;
6618
0
    *outlen = num;
6619
0
    return 1;
6620
0
err:
6621
0
    OPENSSL_free(present);
6622
0
    return 0;
6623
0
}
6624
6625
int SSL_client_hello_get_extension_order(SSL *s, uint16_t *exts, size_t *num_exts)
6626
0
{
6627
0
    RAW_EXTENSION *ext;
6628
0
    size_t num = 0, i;
6629
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6630
6631
0
    if (sc == NULL)
6632
0
        return 0;
6633
6634
0
    if (sc->clienthello == NULL || num_exts == NULL)
6635
0
        return 0;
6636
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6637
0
        ext = sc->clienthello->pre_proc_exts + i;
6638
0
        if (ext->present)
6639
0
            num++;
6640
0
    }
6641
0
    if (num == 0) {
6642
0
        *num_exts = 0;
6643
0
        return 1;
6644
0
    }
6645
0
    if (exts == NULL) {
6646
0
        *num_exts = num;
6647
0
        return 1;
6648
0
    }
6649
0
    if (*num_exts < num)
6650
0
        return 0;
6651
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) {
6652
0
        ext = sc->clienthello->pre_proc_exts + i;
6653
0
        if (ext->present) {
6654
0
            if (ext->received_order >= num)
6655
0
                return 0;
6656
0
            exts[ext->received_order] = ext->type;
6657
0
        }
6658
0
    }
6659
0
    *num_exts = num;
6660
0
    return 1;
6661
0
}
6662
6663
int SSL_client_hello_get0_ext(SSL *s, unsigned int type, const unsigned char **out,
6664
    size_t *outlen)
6665
0
{
6666
0
    size_t i;
6667
0
    RAW_EXTENSION *r;
6668
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6669
6670
0
    if (sc == NULL)
6671
0
        return 0;
6672
6673
0
    if (sc->clienthello == NULL)
6674
0
        return 0;
6675
0
    for (i = 0; i < sc->clienthello->pre_proc_exts_len; ++i) {
6676
0
        r = sc->clienthello->pre_proc_exts + i;
6677
0
        if (r->present && r->type == type) {
6678
0
            if (out != NULL)
6679
0
                *out = PACKET_data(&r->data);
6680
0
            if (outlen != NULL)
6681
0
                *outlen = PACKET_remaining(&r->data);
6682
0
            return 1;
6683
0
        }
6684
0
    }
6685
0
    return 0;
6686
0
}
6687
6688
int SSL_free_buffers(SSL *ssl)
6689
0
{
6690
0
    RECORD_LAYER *rl;
6691
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
6692
6693
0
    if (sc == NULL)
6694
0
        return 0;
6695
6696
0
    rl = &sc->rlayer;
6697
6698
0
    return rl->rrlmethod->free_buffers(rl->rrl)
6699
0
        && rl->wrlmethod->free_buffers(rl->wrl);
6700
0
}
6701
6702
int SSL_alloc_buffers(SSL *ssl)
6703
0
{
6704
0
    RECORD_LAYER *rl;
6705
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
6706
6707
0
    if (sc == NULL)
6708
0
        return 0;
6709
6710
    /* QUIC always has buffers allocated. */
6711
0
    if (IS_QUIC(ssl))
6712
0
        return 1;
6713
6714
0
    rl = &sc->rlayer;
6715
6716
0
    return rl->rrlmethod->alloc_buffers(rl->rrl)
6717
0
        && rl->wrlmethod->alloc_buffers(rl->wrl);
6718
0
}
6719
6720
void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb)
6721
0
{
6722
0
    ctx->keylog_callback = cb;
6723
0
}
6724
6725
SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx)
6726
0
{
6727
0
    return ctx->keylog_callback;
6728
0
}
6729
6730
static int nss_keylog_int(const char *prefix,
6731
    SSL_CONNECTION *sc,
6732
    const uint8_t *parameter_1,
6733
    size_t parameter_1_len,
6734
    const uint8_t *parameter_2,
6735
    size_t parameter_2_len)
6736
22.7k
{
6737
22.7k
    char *out = NULL;
6738
22.7k
    char *cursor = NULL;
6739
22.7k
    size_t out_len = 0, i, prefix_len;
6740
22.7k
    SSL_CTX *sctx = SSL_CONNECTION_GET_CTX(sc);
6741
6742
22.7k
    if (sctx->keylog_callback == NULL)
6743
22.7k
        return 1;
6744
6745
    /*
6746
     * Our output buffer will contain the following strings, rendered with
6747
     * space characters in between, terminated by a NULL character: first the
6748
     * prefix, then the first parameter, then the second parameter. The
6749
     * meaning of each parameter depends on the specific key material being
6750
     * logged. Note that the first and second parameters are encoded in
6751
     * hexadecimal, so we need a buffer that is twice their lengths.
6752
     */
6753
0
    prefix_len = strlen(prefix);
6754
0
    out_len = prefix_len + (2 * parameter_1_len) + (2 * parameter_2_len) + 3;
6755
0
    if ((out = cursor = OPENSSL_malloc(out_len)) == NULL) {
6756
0
        SSLfatal(sc, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
6757
0
        return 0;
6758
0
    }
6759
6760
0
    memcpy(cursor, prefix, prefix_len);
6761
0
    cursor += prefix_len;
6762
0
    *cursor++ = ' ';
6763
6764
0
    for (i = 0; i < parameter_1_len; ++i)
6765
0
        cursor += ossl_to_lowerhex(cursor, parameter_1[i]);
6766
0
    *cursor++ = ' ';
6767
6768
0
    for (i = 0; i < parameter_2_len; ++i)
6769
0
        cursor += ossl_to_lowerhex(cursor, parameter_2[i]);
6770
0
    *cursor = '\0';
6771
6772
0
    sctx->keylog_callback(SSL_CONNECTION_GET_USER_SSL(sc), (const char *)out);
6773
0
    OPENSSL_clear_free(out, out_len);
6774
0
    return 1;
6775
0
}
6776
6777
int ssl_log_rsa_client_key_exchange(SSL_CONNECTION *sc,
6778
    const uint8_t *encrypted_premaster,
6779
    size_t encrypted_premaster_len,
6780
    const uint8_t *premaster,
6781
    size_t premaster_len)
6782
6.92k
{
6783
6.92k
    if (encrypted_premaster_len < 8) {
6784
0
        SSLfatal(sc, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
6785
0
        return 0;
6786
0
    }
6787
6788
    /* We only want the first 8 bytes of the encrypted premaster as a tag. */
6789
6.92k
    return nss_keylog_int("RSA",
6790
6.92k
        sc,
6791
6.92k
        encrypted_premaster,
6792
6.92k
        8,
6793
6.92k
        premaster,
6794
6.92k
        premaster_len);
6795
6.92k
}
6796
6797
int ssl_log_secret(SSL_CONNECTION *sc,
6798
    const char *label,
6799
    const uint8_t *secret,
6800
    size_t secret_len)
6801
95.3k
{
6802
95.3k
    return nss_keylog_int(label,
6803
95.3k
        sc,
6804
95.3k
        sc->s3.client_random,
6805
95.3k
        SSL3_RANDOM_SIZE,
6806
95.3k
        secret,
6807
95.3k
        secret_len);
6808
95.3k
}
6809
6810
5.13k
#define SSLV2_CIPHER_LEN 3
6811
6812
int ssl_cache_cipherlist(SSL_CONNECTION *s, PACKET *cipher_suites, int sslv2format)
6813
20.3k
{
6814
20.3k
    int n;
6815
6816
20.3k
    n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
6817
6818
20.3k
    if (PACKET_remaining(cipher_suites) == 0) {
6819
28
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_NO_CIPHERS_SPECIFIED);
6820
28
        return 0;
6821
28
    }
6822
6823
20.3k
    if (PACKET_remaining(cipher_suites) % n != 0) {
6824
13
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
6825
13
        return 0;
6826
13
    }
6827
6828
20.3k
    OPENSSL_free(s->s3.tmp.ciphers_raw);
6829
20.3k
    s->s3.tmp.ciphers_raw = NULL;
6830
20.3k
    s->s3.tmp.ciphers_rawlen = 0;
6831
6832
20.3k
    if (sslv2format) {
6833
2.56k
        size_t numciphers = PACKET_remaining(cipher_suites) / n;
6834
2.56k
        PACKET sslv2ciphers = *cipher_suites;
6835
2.56k
        unsigned int leadbyte;
6836
2.56k
        unsigned char *raw;
6837
6838
        /*
6839
         * We store the raw ciphers list in SSLv3+ format so we need to do some
6840
         * preprocessing to convert the list first. If there are any SSLv2 only
6841
         * ciphersuites with a non-zero leading byte then we are going to
6842
         * slightly over allocate because we won't store those. But that isn't a
6843
         * problem.
6844
         */
6845
2.56k
        raw = OPENSSL_malloc(numciphers * TLS_CIPHER_LEN);
6846
2.56k
        s->s3.tmp.ciphers_raw = raw;
6847
2.56k
        if (raw == NULL) {
6848
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
6849
0
            return 0;
6850
0
        }
6851
2.56k
        for (s->s3.tmp.ciphers_rawlen = 0;
6852
82.4k
            PACKET_remaining(&sslv2ciphers) > 0;
6853
79.8k
            raw += TLS_CIPHER_LEN) {
6854
79.8k
            if (!PACKET_get_1(&sslv2ciphers, &leadbyte)
6855
79.8k
                || (leadbyte == 0
6856
46.6k
                    && !PACKET_copy_bytes(&sslv2ciphers, raw,
6857
46.6k
                        TLS_CIPHER_LEN))
6858
79.8k
                || (leadbyte != 0
6859
33.1k
                    && !PACKET_forward(&sslv2ciphers, TLS_CIPHER_LEN))) {
6860
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_PACKET);
6861
0
                OPENSSL_free(s->s3.tmp.ciphers_raw);
6862
0
                s->s3.tmp.ciphers_raw = NULL;
6863
0
                s->s3.tmp.ciphers_rawlen = 0;
6864
0
                return 0;
6865
0
            }
6866
79.8k
            if (leadbyte == 0)
6867
46.6k
                s->s3.tmp.ciphers_rawlen += TLS_CIPHER_LEN;
6868
79.8k
        }
6869
17.7k
    } else if (!PACKET_memdup(cipher_suites, &s->s3.tmp.ciphers_raw,
6870
17.7k
                   &s->s3.tmp.ciphers_rawlen)) {
6871
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
6872
0
        return 0;
6873
0
    }
6874
20.3k
    return 1;
6875
20.3k
}
6876
6877
int SSL_bytes_to_cipher_list(SSL *s, const unsigned char *bytes, size_t len,
6878
    int isv2format, STACK_OF(SSL_CIPHER) **sk,
6879
    STACK_OF(SSL_CIPHER) **scsvs)
6880
0
{
6881
0
    PACKET pkt;
6882
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
6883
6884
0
    if (sc == NULL)
6885
0
        return 0;
6886
6887
0
    if (!PACKET_buf_init(&pkt, bytes, len))
6888
0
        return 0;
6889
0
    return ossl_bytes_to_cipher_list(sc, &pkt, sk, scsvs, isv2format, 0);
6890
0
}
6891
6892
int ossl_bytes_to_cipher_list(SSL_CONNECTION *s, PACKET *cipher_suites,
6893
    STACK_OF(SSL_CIPHER) **skp,
6894
    STACK_OF(SSL_CIPHER) **scsvs_out,
6895
    int sslv2format, int fatal)
6896
20.3k
{
6897
20.3k
    const SSL_CIPHER *c;
6898
20.3k
    STACK_OF(SSL_CIPHER) *sk = NULL;
6899
20.3k
    STACK_OF(SSL_CIPHER) *scsvs = NULL;
6900
20.3k
    int n;
6901
    /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
6902
20.3k
    unsigned char cipher[SSLV2_CIPHER_LEN];
6903
6904
20.3k
    n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
6905
6906
20.3k
    if (PACKET_remaining(cipher_suites) == 0) {
6907
0
        if (fatal)
6908
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_NO_CIPHERS_SPECIFIED);
6909
0
        else
6910
0
            ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHERS_SPECIFIED);
6911
0
        return 0;
6912
0
    }
6913
6914
20.3k
    if (PACKET_remaining(cipher_suites) % n != 0) {
6915
0
        if (fatal)
6916
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
6917
0
                SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
6918
0
        else
6919
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
6920
0
        return 0;
6921
0
    }
6922
6923
20.3k
    sk = sk_SSL_CIPHER_new_null();
6924
20.3k
    scsvs = sk_SSL_CIPHER_new_null();
6925
20.3k
    if (sk == NULL || scsvs == NULL) {
6926
0
        if (fatal)
6927
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
6928
0
        else
6929
0
            ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
6930
0
        goto err;
6931
0
    }
6932
6933
372k
    while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
6934
        /*
6935
         * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
6936
         * first byte set to zero, while true SSLv2 ciphers have a non-zero
6937
         * first byte. We don't support any true SSLv2 ciphers, so skip them.
6938
         */
6939
352k
        if (sslv2format && cipher[0] != '\0')
6940
33.1k
            continue;
6941
6942
        /* For SSLv2-compat, ignore leading 0-byte. */
6943
318k
        c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher, 1);
6944
318k
        if (c != NULL) {
6945
134k
            if ((c->valid && !sk_SSL_CIPHER_push(sk, c)) || (!c->valid && !sk_SSL_CIPHER_push(scsvs, c))) {
6946
0
                if (fatal)
6947
0
                    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_CRYPTO_LIB);
6948
0
                else
6949
0
                    ERR_raise(ERR_LIB_SSL, ERR_R_CRYPTO_LIB);
6950
0
                goto err;
6951
0
            }
6952
134k
        }
6953
318k
    }
6954
20.3k
    if (PACKET_remaining(cipher_suites) > 0) {
6955
0
        if (fatal)
6956
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_LENGTH);
6957
0
        else
6958
0
            ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
6959
0
        goto err;
6960
0
    }
6961
6962
20.3k
    if (skp != NULL)
6963
20.3k
        *skp = sk;
6964
0
    else
6965
0
        sk_SSL_CIPHER_free(sk);
6966
20.3k
    if (scsvs_out != NULL)
6967
20.3k
        *scsvs_out = scsvs;
6968
0
    else
6969
0
        sk_SSL_CIPHER_free(scsvs);
6970
20.3k
    return 1;
6971
0
err:
6972
0
    sk_SSL_CIPHER_free(sk);
6973
0
    sk_SSL_CIPHER_free(scsvs);
6974
0
    return 0;
6975
20.3k
}
6976
6977
int SSL_CTX_set_max_early_data(SSL_CTX *ctx, uint32_t max_early_data)
6978
0
{
6979
0
    ctx->max_early_data = max_early_data;
6980
6981
0
    return 1;
6982
0
}
6983
6984
uint32_t SSL_CTX_get_max_early_data(const SSL_CTX *ctx)
6985
0
{
6986
0
    return ctx->max_early_data;
6987
0
}
6988
6989
int SSL_set_max_early_data(SSL *s, uint32_t max_early_data)
6990
0
{
6991
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
6992
6993
0
    if (sc == NULL)
6994
0
        return 0;
6995
6996
0
    sc->max_early_data = max_early_data;
6997
6998
0
    return 1;
6999
0
}
7000
7001
uint32_t SSL_get_max_early_data(const SSL *s)
7002
0
{
7003
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7004
7005
0
    if (sc == NULL)
7006
0
        return 0;
7007
7008
0
    return sc->max_early_data;
7009
0
}
7010
7011
int SSL_CTX_set_recv_max_early_data(SSL_CTX *ctx, uint32_t recv_max_early_data)
7012
0
{
7013
0
    ctx->recv_max_early_data = recv_max_early_data;
7014
7015
0
    return 1;
7016
0
}
7017
7018
uint32_t SSL_CTX_get_recv_max_early_data(const SSL_CTX *ctx)
7019
0
{
7020
0
    return ctx->recv_max_early_data;
7021
0
}
7022
7023
int SSL_set_recv_max_early_data(SSL *s, uint32_t recv_max_early_data)
7024
0
{
7025
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7026
7027
0
    if (sc == NULL)
7028
0
        return 0;
7029
7030
0
    sc->recv_max_early_data = recv_max_early_data;
7031
7032
0
    return 1;
7033
0
}
7034
7035
uint32_t SSL_get_recv_max_early_data(const SSL *s)
7036
0
{
7037
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7038
7039
0
    if (sc == NULL)
7040
0
        return 0;
7041
7042
0
    return sc->recv_max_early_data;
7043
0
}
7044
7045
__owur unsigned int ssl_get_max_send_fragment(const SSL_CONNECTION *sc)
7046
997k
{
7047
    /* Return any active Max Fragment Len extension */
7048
997k
    if (sc->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(sc->session))
7049
12.0k
        return GET_MAX_FRAGMENT_LENGTH(sc->session);
7050
7051
    /* return current SSL connection setting */
7052
985k
    return sc->max_send_fragment;
7053
997k
}
7054
7055
__owur unsigned int ssl_get_split_send_fragment(const SSL_CONNECTION *sc)
7056
158k
{
7057
    /* Return a value regarding an active Max Fragment Len extension */
7058
158k
    if (sc->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(sc->session)
7059
624
        && sc->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(sc->session))
7060
624
        return GET_MAX_FRAGMENT_LENGTH(sc->session);
7061
7062
    /* else limit |split_send_fragment| to current |max_send_fragment| */
7063
157k
    if (sc->split_send_fragment > sc->max_send_fragment)
7064
0
        return sc->max_send_fragment;
7065
7066
    /* return current SSL connection setting */
7067
157k
    return sc->split_send_fragment;
7068
157k
}
7069
7070
int SSL_stateless(SSL *s)
7071
0
{
7072
0
    int ret;
7073
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7074
7075
0
    if (sc == NULL)
7076
0
        return 0;
7077
7078
    /* Ensure there is no state left over from a previous invocation */
7079
0
    if (!SSL_clear(s))
7080
0
        return 0;
7081
7082
0
    ERR_clear_error();
7083
7084
0
    sc->s3.flags |= TLS1_FLAGS_STATELESS;
7085
0
    ret = SSL_accept(s);
7086
0
    sc->s3.flags &= ~TLS1_FLAGS_STATELESS;
7087
7088
0
    if (ret > 0 && sc->ext.cookieok)
7089
0
        return 1;
7090
7091
0
    if (sc->hello_retry_request == SSL_HRR_PENDING && !ossl_statem_in_error(sc))
7092
0
        return 0;
7093
7094
0
    return -1;
7095
0
}
7096
7097
void SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val)
7098
0
{
7099
0
    ctx->pha_enabled = val;
7100
0
}
7101
7102
void SSL_set_post_handshake_auth(SSL *ssl, int val)
7103
0
{
7104
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(ssl);
7105
7106
0
    if (sc == NULL)
7107
0
        return;
7108
7109
0
    sc->pha_enabled = val;
7110
0
}
7111
7112
int SSL_verify_client_post_handshake(SSL *ssl)
7113
0
{
7114
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(ssl);
7115
7116
0
#ifndef OPENSSL_NO_QUIC
7117
0
    if (IS_QUIC(ssl)) {
7118
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
7119
0
        return 0;
7120
0
    }
7121
0
#endif
7122
7123
0
    if (sc == NULL)
7124
0
        return 0;
7125
7126
0
    if (!SSL_CONNECTION_IS_TLS13(sc)) {
7127
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
7128
0
        return 0;
7129
0
    }
7130
0
    if (!sc->server) {
7131
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NOT_SERVER);
7132
0
        return 0;
7133
0
    }
7134
7135
0
    if (!SSL_is_init_finished(ssl)) {
7136
0
        ERR_raise(ERR_LIB_SSL, SSL_R_STILL_IN_INIT);
7137
0
        return 0;
7138
0
    }
7139
7140
0
    switch (sc->post_handshake_auth) {
7141
0
    case SSL_PHA_NONE:
7142
0
        ERR_raise(ERR_LIB_SSL, SSL_R_EXTENSION_NOT_RECEIVED);
7143
0
        return 0;
7144
0
    default:
7145
0
    case SSL_PHA_EXT_SENT:
7146
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
7147
0
        return 0;
7148
0
    case SSL_PHA_EXT_RECEIVED:
7149
0
        break;
7150
0
    case SSL_PHA_REQUEST_PENDING:
7151
0
        ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_PENDING);
7152
0
        return 0;
7153
0
    case SSL_PHA_REQUESTED:
7154
0
        ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_SENT);
7155
0
        return 0;
7156
0
    }
7157
7158
0
    sc->post_handshake_auth = SSL_PHA_REQUEST_PENDING;
7159
7160
    /* checks verify_mode and algorithm_auth */
7161
0
    if (!send_certificate_request(sc)) {
7162
0
        sc->post_handshake_auth = SSL_PHA_EXT_RECEIVED; /* restore on error */
7163
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CONFIG);
7164
0
        return 0;
7165
0
    }
7166
7167
0
    ossl_statem_set_in_init(sc, 1);
7168
0
    return 1;
7169
0
}
7170
7171
int SSL_CTX_set_session_ticket_cb(SSL_CTX *ctx,
7172
    SSL_CTX_generate_session_ticket_fn gen_cb,
7173
    SSL_CTX_decrypt_session_ticket_fn dec_cb,
7174
    void *arg)
7175
0
{
7176
0
    ctx->generate_ticket_cb = gen_cb;
7177
0
    ctx->decrypt_ticket_cb = dec_cb;
7178
0
    ctx->ticket_cb_data = arg;
7179
0
    return 1;
7180
0
}
7181
7182
void SSL_CTX_set_allow_early_data_cb(SSL_CTX *ctx,
7183
    SSL_allow_early_data_cb_fn cb,
7184
    void *arg)
7185
0
{
7186
0
    ctx->allow_early_data_cb = cb;
7187
0
    ctx->allow_early_data_cb_data = arg;
7188
0
}
7189
7190
void SSL_set_allow_early_data_cb(SSL *s,
7191
    SSL_allow_early_data_cb_fn cb,
7192
    void *arg)
7193
0
{
7194
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7195
7196
0
    if (sc == NULL)
7197
0
        return;
7198
7199
0
    sc->allow_early_data_cb = cb;
7200
0
    sc->allow_early_data_cb_data = arg;
7201
0
}
7202
7203
const EVP_CIPHER *ssl_evp_cipher_fetch(OSSL_LIB_CTX *libctx,
7204
    int nid,
7205
    const char *properties)
7206
1.97M
{
7207
1.97M
    const EVP_CIPHER *ciph;
7208
7209
1.97M
    ciph = tls_get_cipher_from_engine(nid);
7210
1.97M
    if (ciph != NULL)
7211
0
        return ciph;
7212
7213
    /*
7214
     * If there is no engine cipher then we do an explicit fetch. This may fail
7215
     * and that could be ok
7216
     */
7217
1.97M
    ERR_set_mark();
7218
1.97M
    ciph = EVP_CIPHER_fetch(libctx, OBJ_nid2sn(nid), properties);
7219
1.97M
    if (ciph != NULL) {
7220
1.20M
        OSSL_PARAM params[2];
7221
1.20M
        int decrypt_only = 0;
7222
7223
1.20M
        params[0] = OSSL_PARAM_construct_int(OSSL_CIPHER_PARAM_DECRYPT_ONLY,
7224
1.20M
            &decrypt_only);
7225
1.20M
        params[1] = OSSL_PARAM_construct_end();
7226
1.20M
        if (EVP_CIPHER_get_params((EVP_CIPHER *)ciph, params)
7227
1.20M
            && decrypt_only) {
7228
            /* If a cipher is decrypt-only, it is unusable */
7229
0
            EVP_CIPHER_free((EVP_CIPHER *)ciph);
7230
0
            ciph = NULL;
7231
0
        }
7232
1.20M
    }
7233
1.97M
    ERR_pop_to_mark();
7234
1.97M
    return ciph;
7235
1.97M
}
7236
7237
int ssl_evp_cipher_up_ref(const EVP_CIPHER *cipher)
7238
38.3k
{
7239
    /* Don't up-ref an implicit EVP_CIPHER */
7240
38.3k
    if (EVP_CIPHER_get0_provider(cipher) == NULL)
7241
0
        return 1;
7242
7243
    /*
7244
     * The cipher was explicitly fetched and therefore it is safe to cast
7245
     * away the const
7246
     */
7247
38.3k
    return EVP_CIPHER_up_ref((EVP_CIPHER *)cipher);
7248
38.3k
}
7249
7250
void ssl_evp_cipher_free(const EVP_CIPHER *cipher)
7251
3.59M
{
7252
3.59M
    if (cipher == NULL)
7253
1.53M
        return;
7254
7255
2.06M
    if (EVP_CIPHER_get0_provider(cipher) != NULL) {
7256
        /*
7257
         * The cipher was explicitly fetched and therefore it is safe to cast
7258
         * away the const
7259
         */
7260
2.06M
        EVP_CIPHER_free((EVP_CIPHER *)cipher);
7261
2.06M
    }
7262
2.06M
}
7263
7264
const EVP_MD *ssl_evp_md_fetch(OSSL_LIB_CTX *libctx,
7265
    int nid,
7266
    const char *properties)
7267
1.37M
{
7268
1.37M
    const EVP_MD *md;
7269
7270
1.37M
    md = tls_get_digest_from_engine(nid);
7271
1.37M
    if (md != NULL)
7272
0
        return md;
7273
7274
    /* Otherwise we do an explicit fetch */
7275
1.37M
    ERR_set_mark();
7276
1.37M
    md = EVP_MD_fetch(libctx, OBJ_nid2sn(nid), properties);
7277
1.37M
    ERR_pop_to_mark();
7278
1.37M
    return md;
7279
1.37M
}
7280
7281
int ssl_evp_md_up_ref(const EVP_MD *md)
7282
17.2k
{
7283
    /* Don't up-ref an implicit EVP_MD */
7284
17.2k
    if (EVP_MD_get0_provider(md) == NULL)
7285
0
        return 1;
7286
7287
    /*
7288
     * The digest was explicitly fetched and therefore it is safe to cast
7289
     * away the const
7290
     */
7291
17.2k
    return EVP_MD_up_ref((EVP_MD *)md);
7292
17.2k
}
7293
7294
void ssl_evp_md_free(const EVP_MD *md)
7295
2.36M
{
7296
2.36M
    if (md == NULL)
7297
1.12M
        return;
7298
7299
1.23M
    if (EVP_MD_get0_provider(md) != NULL) {
7300
        /*
7301
         * The digest was explicitly fetched and therefore it is safe to cast
7302
         * away the const
7303
         */
7304
1.23M
        EVP_MD_free((EVP_MD *)md);
7305
1.23M
    }
7306
1.23M
}
7307
7308
int SSL_set0_tmp_dh_pkey(SSL *s, EVP_PKEY *dhpkey)
7309
0
{
7310
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7311
7312
0
    if (sc == NULL)
7313
0
        return 0;
7314
7315
0
    if (!ssl_security(sc, SSL_SECOP_TMP_DH,
7316
0
            EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
7317
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
7318
0
        return 0;
7319
0
    }
7320
0
    EVP_PKEY_free(sc->cert->dh_tmp);
7321
0
    sc->cert->dh_tmp = dhpkey;
7322
0
    return 1;
7323
0
}
7324
7325
int SSL_CTX_set0_tmp_dh_pkey(SSL_CTX *ctx, EVP_PKEY *dhpkey)
7326
0
{
7327
0
    if (!ssl_ctx_security(ctx, SSL_SECOP_TMP_DH,
7328
0
            EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
7329
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
7330
0
        return 0;
7331
0
    }
7332
0
    EVP_PKEY_free(ctx->cert->dh_tmp);
7333
0
    ctx->cert->dh_tmp = dhpkey;
7334
0
    return 1;
7335
0
}
7336
7337
/* QUIC-specific methods which are supported on QUIC connections only. */
7338
int SSL_handle_events(SSL *s)
7339
0
{
7340
0
    SSL_CONNECTION *sc;
7341
7342
0
#ifndef OPENSSL_NO_QUIC
7343
0
    if (IS_QUIC(s))
7344
0
        return ossl_quic_handle_events(s);
7345
0
#endif
7346
7347
0
    sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7348
0
    if (sc != NULL && SSL_CONNECTION_IS_DTLS(sc))
7349
        /*
7350
         * DTLSv1_handle_timeout returns 0 if the timer wasn't expired yet,
7351
         * which we consider a success case. Theoretically DTLSv1_handle_timeout
7352
         * can also return 0 if s is NULL or not a DTLS object, but we've
7353
         * already ruled out those possibilities above, so this is not possible
7354
         * here. Thus the only failure cases are where DTLSv1_handle_timeout
7355
         * returns -1.
7356
         */
7357
0
        return DTLSv1_handle_timeout(s) >= 0;
7358
7359
0
    return 1;
7360
0
}
7361
7362
int SSL_get_event_timeout(SSL *s, struct timeval *tv, int *is_infinite)
7363
8.38M
{
7364
8.38M
    SSL_CONNECTION *sc;
7365
7366
8.38M
#ifndef OPENSSL_NO_QUIC
7367
8.38M
    if (IS_QUIC(s))
7368
8.38M
        return ossl_quic_get_event_timeout(s, tv, is_infinite);
7369
0
#endif
7370
7371
0
    sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
7372
0
    if (sc != NULL && SSL_CONNECTION_IS_DTLS(sc)
7373
0
        && DTLSv1_get_timeout(s, tv)) {
7374
0
        *is_infinite = 0;
7375
0
        return 1;
7376
0
    }
7377
7378
0
    tv->tv_sec = 1000000;
7379
0
    tv->tv_usec = 0;
7380
0
    *is_infinite = 1;
7381
0
    return 1;
7382
0
}
7383
7384
int SSL_get_rpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc)
7385
0
{
7386
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7387
7388
0
#ifndef OPENSSL_NO_QUIC
7389
0
    if (IS_QUIC(s))
7390
0
        return ossl_quic_get_rpoll_descriptor(s, desc);
7391
0
#endif
7392
7393
0
    if (sc == NULL || sc->rbio == NULL)
7394
0
        return 0;
7395
7396
0
    return BIO_get_rpoll_descriptor(sc->rbio, desc);
7397
0
}
7398
7399
int SSL_get_wpoll_descriptor(SSL *s, BIO_POLL_DESCRIPTOR *desc)
7400
0
{
7401
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7402
7403
0
#ifndef OPENSSL_NO_QUIC
7404
0
    if (IS_QUIC(s))
7405
0
        return ossl_quic_get_wpoll_descriptor(s, desc);
7406
0
#endif
7407
7408
0
    if (sc == NULL || sc->wbio == NULL)
7409
0
        return 0;
7410
7411
0
    return BIO_get_wpoll_descriptor(sc->wbio, desc);
7412
0
}
7413
7414
int SSL_net_read_desired(SSL *s)
7415
0
{
7416
0
#ifndef OPENSSL_NO_QUIC
7417
0
    if (!IS_QUIC(s))
7418
0
        return SSL_want_read(s);
7419
7420
0
    return ossl_quic_get_net_read_desired(s);
7421
#else
7422
    return SSL_want_read(s);
7423
#endif
7424
0
}
7425
7426
int SSL_net_write_desired(SSL *s)
7427
0
{
7428
0
#ifndef OPENSSL_NO_QUIC
7429
0
    if (!IS_QUIC(s))
7430
0
        return SSL_want_write(s);
7431
7432
0
    return ossl_quic_get_net_write_desired(s);
7433
#else
7434
    return SSL_want_write(s);
7435
#endif
7436
0
}
7437
7438
int SSL_set_blocking_mode(SSL *s, int blocking)
7439
0
{
7440
0
#ifndef OPENSSL_NO_QUIC
7441
0
    if (!IS_QUIC(s))
7442
0
        return 0;
7443
7444
0
    return ossl_quic_conn_set_blocking_mode(s, blocking);
7445
#else
7446
    return 0;
7447
#endif
7448
0
}
7449
7450
int SSL_get_blocking_mode(SSL *s)
7451
0
{
7452
0
#ifndef OPENSSL_NO_QUIC
7453
0
    if (!IS_QUIC(s))
7454
0
        return -1;
7455
7456
0
    return ossl_quic_conn_get_blocking_mode(s);
7457
#else
7458
    return -1;
7459
#endif
7460
0
}
7461
7462
int SSL_set1_initial_peer_addr(SSL *s, const BIO_ADDR *peer_addr)
7463
8.82k
{
7464
8.82k
#ifndef OPENSSL_NO_QUIC
7465
8.82k
    if (!IS_QUIC(s))
7466
0
        return 0;
7467
7468
8.82k
    return ossl_quic_conn_set_initial_peer_addr(s, peer_addr);
7469
#else
7470
    return 0;
7471
#endif
7472
8.82k
}
7473
7474
int SSL_shutdown_ex(SSL *ssl, uint64_t flags,
7475
    const SSL_SHUTDOWN_EX_ARGS *args,
7476
    size_t args_len)
7477
0
{
7478
0
#ifndef OPENSSL_NO_QUIC
7479
0
    if (!IS_QUIC(ssl))
7480
0
        return SSL_shutdown(ssl);
7481
7482
0
    return ossl_quic_conn_shutdown(ssl, flags, args, args_len);
7483
#else
7484
    return SSL_shutdown(ssl);
7485
#endif
7486
0
}
7487
7488
int SSL_stream_conclude(SSL *ssl, uint64_t flags)
7489
0
{
7490
0
#ifndef OPENSSL_NO_QUIC
7491
0
    if (!IS_QUIC(ssl))
7492
0
        return 0;
7493
7494
0
    return ossl_quic_conn_stream_conclude(ssl);
7495
#else
7496
    return 0;
7497
#endif
7498
0
}
7499
7500
SSL *SSL_new_stream(SSL *s, uint64_t flags)
7501
2.59k
{
7502
2.59k
#ifndef OPENSSL_NO_QUIC
7503
2.59k
    if (!IS_QUIC(s))
7504
0
        return NULL;
7505
7506
2.59k
    return ossl_quic_conn_stream_new(s, flags);
7507
#else
7508
    return NULL;
7509
#endif
7510
2.59k
}
7511
7512
SSL *SSL_get0_connection(SSL *s)
7513
0
{
7514
0
#ifndef OPENSSL_NO_QUIC
7515
0
    if (!IS_QUIC(s))
7516
0
        return s;
7517
7518
0
    return ossl_quic_get0_connection(s);
7519
#else
7520
    return s;
7521
#endif
7522
0
}
7523
7524
int SSL_is_connection(SSL *s)
7525
0
{
7526
0
    return SSL_get0_connection(s) == s;
7527
0
}
7528
7529
int SSL_get_stream_type(SSL *s)
7530
0
{
7531
0
#ifndef OPENSSL_NO_QUIC
7532
0
    if (!IS_QUIC(s))
7533
0
        return SSL_STREAM_TYPE_BIDI;
7534
7535
0
    return ossl_quic_get_stream_type(s);
7536
#else
7537
    return SSL_STREAM_TYPE_BIDI;
7538
#endif
7539
0
}
7540
7541
uint64_t SSL_get_stream_id(SSL *s)
7542
0
{
7543
0
#ifndef OPENSSL_NO_QUIC
7544
0
    if (!IS_QUIC(s))
7545
0
        return UINT64_MAX;
7546
7547
0
    return ossl_quic_get_stream_id(s);
7548
#else
7549
    return UINT64_MAX;
7550
#endif
7551
0
}
7552
7553
int SSL_is_stream_local(SSL *s)
7554
0
{
7555
0
#ifndef OPENSSL_NO_QUIC
7556
0
    if (!IS_QUIC(s))
7557
0
        return -1;
7558
7559
0
    return ossl_quic_is_stream_local(s);
7560
#else
7561
    return -1;
7562
#endif
7563
0
}
7564
7565
int SSL_set_default_stream_mode(SSL *s, uint32_t mode)
7566
0
{
7567
0
#ifndef OPENSSL_NO_QUIC
7568
0
    if (!IS_QUIC(s))
7569
0
        return 0;
7570
7571
0
    return ossl_quic_set_default_stream_mode(s, mode);
7572
#else
7573
    return 0;
7574
#endif
7575
0
}
7576
7577
int SSL_set_incoming_stream_policy(SSL *s, int policy, uint64_t aec)
7578
8.82k
{
7579
8.82k
#ifndef OPENSSL_NO_QUIC
7580
8.82k
    if (!IS_QUIC(s))
7581
0
        return 0;
7582
7583
8.82k
    return ossl_quic_set_incoming_stream_policy(s, policy, aec);
7584
#else
7585
    return 0;
7586
#endif
7587
8.82k
}
7588
7589
SSL *SSL_accept_stream(SSL *s, uint64_t flags)
7590
153
{
7591
153
#ifndef OPENSSL_NO_QUIC
7592
153
    if (!IS_QUIC(s))
7593
0
        return NULL;
7594
7595
153
    return ossl_quic_accept_stream(s, flags);
7596
#else
7597
    return NULL;
7598
#endif
7599
153
}
7600
7601
size_t SSL_get_accept_stream_queue_len(SSL *s)
7602
2.73k
{
7603
2.73k
#ifndef OPENSSL_NO_QUIC
7604
2.73k
    if (!IS_QUIC(s))
7605
0
        return 0;
7606
7607
2.73k
    return ossl_quic_get_accept_stream_queue_len(s);
7608
#else
7609
    return 0;
7610
#endif
7611
2.73k
}
7612
7613
int SSL_stream_reset(SSL *s,
7614
    const SSL_STREAM_RESET_ARGS *args,
7615
    size_t args_len)
7616
0
{
7617
0
#ifndef OPENSSL_NO_QUIC
7618
0
    if (!IS_QUIC(s))
7619
0
        return 0;
7620
7621
0
    return ossl_quic_stream_reset(s, args, args_len);
7622
#else
7623
    return 0;
7624
#endif
7625
0
}
7626
7627
int SSL_get_stream_read_state(SSL *s)
7628
0
{
7629
0
#ifndef OPENSSL_NO_QUIC
7630
0
    if (!IS_QUIC(s))
7631
0
        return SSL_STREAM_STATE_NONE;
7632
7633
0
    return ossl_quic_get_stream_read_state(s);
7634
#else
7635
    return SSL_STREAM_STATE_NONE;
7636
#endif
7637
0
}
7638
7639
int SSL_get_stream_write_state(SSL *s)
7640
0
{
7641
0
#ifndef OPENSSL_NO_QUIC
7642
0
    if (!IS_QUIC(s))
7643
0
        return SSL_STREAM_STATE_NONE;
7644
7645
0
    return ossl_quic_get_stream_write_state(s);
7646
#else
7647
    return SSL_STREAM_STATE_NONE;
7648
#endif
7649
0
}
7650
7651
int SSL_get_stream_read_error_code(SSL *s, uint64_t *app_error_code)
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_stream_read_error_code(s, app_error_code);
7658
#else
7659
    return -1;
7660
#endif
7661
0
}
7662
7663
int SSL_get_stream_write_error_code(SSL *s, uint64_t *app_error_code)
7664
0
{
7665
0
#ifndef OPENSSL_NO_QUIC
7666
0
    if (!IS_QUIC(s))
7667
0
        return -1;
7668
7669
0
    return ossl_quic_get_stream_write_error_code(s, app_error_code);
7670
#else
7671
    return -1;
7672
#endif
7673
0
}
7674
7675
int SSL_get_conn_close_info(SSL *s, SSL_CONN_CLOSE_INFO *info,
7676
    size_t info_len)
7677
0
{
7678
0
#ifndef OPENSSL_NO_QUIC
7679
0
    if (!IS_QUIC(s))
7680
0
        return -1;
7681
7682
0
    return ossl_quic_get_conn_close_info(s, info, info_len);
7683
#else
7684
    return -1;
7685
#endif
7686
0
}
7687
7688
int SSL_get_value_uint(SSL *s, uint32_t class_, uint32_t id,
7689
    uint64_t *value)
7690
0
{
7691
0
#ifndef OPENSSL_NO_QUIC
7692
0
    if (IS_QUIC(s))
7693
0
        return ossl_quic_get_value_uint(s, class_, id, value);
7694
0
#endif
7695
7696
0
    ERR_raise(ERR_LIB_SSL, SSL_R_UNSUPPORTED_PROTOCOL);
7697
0
    return 0;
7698
0
}
7699
7700
int SSL_set_value_uint(SSL *s, uint32_t class_, uint32_t id,
7701
    uint64_t value)
7702
0
{
7703
0
#ifndef OPENSSL_NO_QUIC
7704
0
    if (IS_QUIC(s))
7705
0
        return ossl_quic_set_value_uint(s, class_, id, value);
7706
0
#endif
7707
7708
0
    ERR_raise(ERR_LIB_SSL, SSL_R_UNSUPPORTED_PROTOCOL);
7709
0
    return 0;
7710
0
}
7711
7712
int SSL_add_expected_rpk(SSL *s, EVP_PKEY *rpk)
7713
0
{
7714
0
    unsigned char *data = NULL;
7715
0
    SSL_DANE *dane = SSL_get0_dane(s);
7716
0
    int ret;
7717
7718
0
    if (dane == NULL || dane->dctx == NULL)
7719
0
        return 0;
7720
0
    if ((ret = i2d_PUBKEY(rpk, &data)) <= 0)
7721
0
        return 0;
7722
7723
0
    ret = SSL_dane_tlsa_add(s, DANETLS_USAGE_DANE_EE,
7724
0
              DANETLS_SELECTOR_SPKI,
7725
0
              DANETLS_MATCHING_FULL,
7726
0
              data, (size_t)ret)
7727
0
        > 0;
7728
0
    OPENSSL_free(data);
7729
0
    return ret;
7730
0
}
7731
7732
EVP_PKEY *SSL_get0_peer_rpk(const SSL *s)
7733
0
{
7734
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7735
7736
0
    if (sc == NULL || sc->session == NULL)
7737
0
        return NULL;
7738
0
    return sc->session->peer_rpk;
7739
0
}
7740
7741
int SSL_get_negotiated_client_cert_type(const SSL *s)
7742
0
{
7743
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7744
7745
0
    if (sc == NULL)
7746
0
        return 0;
7747
7748
0
    return sc->ext.client_cert_type;
7749
0
}
7750
7751
int SSL_get_negotiated_server_cert_type(const SSL *s)
7752
0
{
7753
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7754
7755
0
    if (sc == NULL)
7756
0
        return 0;
7757
7758
0
    return sc->ext.server_cert_type;
7759
0
}
7760
7761
static int validate_cert_type(const unsigned char *val, size_t len)
7762
0
{
7763
0
    size_t i;
7764
0
    int saw_rpk = 0;
7765
0
    int saw_x509 = 0;
7766
7767
0
    if (val == NULL && len == 0)
7768
0
        return 1;
7769
7770
0
    if (val == NULL || len == 0)
7771
0
        return 0;
7772
7773
0
    for (i = 0; i < len; i++) {
7774
0
        switch (val[i]) {
7775
0
        case TLSEXT_cert_type_rpk:
7776
0
            if (saw_rpk)
7777
0
                return 0;
7778
0
            saw_rpk = 1;
7779
0
            break;
7780
0
        case TLSEXT_cert_type_x509:
7781
0
            if (saw_x509)
7782
0
                return 0;
7783
0
            saw_x509 = 1;
7784
0
            break;
7785
0
        case TLSEXT_cert_type_pgp:
7786
0
        case TLSEXT_cert_type_1609dot2:
7787
0
        default:
7788
0
            return 0;
7789
0
        }
7790
0
    }
7791
0
    return 1;
7792
0
}
7793
7794
static int set_cert_type(unsigned char **cert_type,
7795
    size_t *cert_type_len,
7796
    const unsigned char *val,
7797
    size_t len)
7798
0
{
7799
0
    unsigned char *tmp = NULL;
7800
7801
0
    if (!validate_cert_type(val, len))
7802
0
        return 0;
7803
7804
0
    if (val != NULL && (tmp = OPENSSL_memdup(val, len)) == NULL)
7805
0
        return 0;
7806
7807
0
    OPENSSL_free(*cert_type);
7808
0
    *cert_type = tmp;
7809
0
    *cert_type_len = len;
7810
0
    return 1;
7811
0
}
7812
7813
int SSL_set1_client_cert_type(SSL *s, const unsigned char *val, size_t len)
7814
0
{
7815
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7816
7817
0
    return set_cert_type(&sc->client_cert_type, &sc->client_cert_type_len,
7818
0
        val, len);
7819
0
}
7820
7821
int SSL_set1_server_cert_type(SSL *s, const unsigned char *val, size_t len)
7822
0
{
7823
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
7824
7825
0
    return set_cert_type(&sc->server_cert_type, &sc->server_cert_type_len,
7826
0
        val, len);
7827
0
}
7828
7829
int SSL_CTX_set1_client_cert_type(SSL_CTX *ctx, const unsigned char *val, size_t len)
7830
0
{
7831
0
    return set_cert_type(&ctx->client_cert_type, &ctx->client_cert_type_len,
7832
0
        val, len);
7833
0
}
7834
7835
int SSL_CTX_set1_server_cert_type(SSL_CTX *ctx, const unsigned char *val, size_t len)
7836
0
{
7837
0
    return set_cert_type(&ctx->server_cert_type, &ctx->server_cert_type_len,
7838
0
        val, len);
7839
0
}
7840
7841
int SSL_get0_client_cert_type(const SSL *s, unsigned char **t, size_t *len)
7842
0
{
7843
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7844
7845
0
    if (t == NULL || len == NULL)
7846
0
        return 0;
7847
7848
0
    *t = sc->client_cert_type;
7849
0
    *len = sc->client_cert_type_len;
7850
0
    return 1;
7851
0
}
7852
7853
int SSL_get0_server_cert_type(const SSL *s, unsigned char **t, size_t *len)
7854
0
{
7855
0
    const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
7856
7857
0
    if (t == NULL || len == NULL)
7858
0
        return 0;
7859
7860
0
    *t = sc->server_cert_type;
7861
0
    *len = sc->server_cert_type_len;
7862
0
    return 1;
7863
0
}
7864
7865
int SSL_CTX_get0_client_cert_type(const SSL_CTX *ctx, unsigned char **t, size_t *len)
7866
0
{
7867
0
    if (t == NULL || len == NULL)
7868
0
        return 0;
7869
7870
0
    *t = ctx->client_cert_type;
7871
0
    *len = ctx->client_cert_type_len;
7872
0
    return 1;
7873
0
}
7874
7875
int SSL_CTX_get0_server_cert_type(const SSL_CTX *ctx, unsigned char **t, size_t *len)
7876
0
{
7877
0
    if (t == NULL || len == NULL)
7878
0
        return 0;
7879
7880
0
    *t = ctx->server_cert_type;
7881
0
    *len = ctx->server_cert_type_len;
7882
0
    return 1;
7883
0
}