Coverage Report

Created: 2024-07-27 06:39

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