Coverage Report

Created: 2026-04-01 06:39

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