Coverage Report

Created: 2024-05-21 06:52

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