Coverage Report

Created: 2023-06-08 06:43

/src/openssl30/ssl/ssl_lib.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2022 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 "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 "internal/cryptlib.h"
25
#include "internal/refcount.h"
26
#include "internal/ktls.h"
27
28
static int ssl_undefined_function_1(SSL *ssl, SSL3_RECORD *r, size_t s, int t,
29
                                    SSL_MAC_BUF *mac, size_t macsize)
30
0
{
31
0
    return ssl_undefined_function(ssl);
32
0
}
33
34
static int ssl_undefined_function_2(SSL *ssl, SSL3_RECORD *r, unsigned char *s,
35
                                    int t)
36
0
{
37
0
    return ssl_undefined_function(ssl);
38
0
}
39
40
static int ssl_undefined_function_3(SSL *ssl, unsigned char *r,
41
                                    unsigned char *s, size_t t, size_t *u)
42
0
{
43
0
    return ssl_undefined_function(ssl);
44
0
}
45
46
static int ssl_undefined_function_4(SSL *ssl, int r)
47
0
{
48
0
    return ssl_undefined_function(ssl);
49
0
}
50
51
static size_t ssl_undefined_function_5(SSL *ssl, const char *r, size_t s,
52
                                       unsigned char *t)
53
0
{
54
0
    return ssl_undefined_function(ssl);
55
0
}
56
57
static int ssl_undefined_function_6(int r)
58
0
{
59
0
    return ssl_undefined_function(NULL);
60
0
}
61
62
static int ssl_undefined_function_7(SSL *ssl, unsigned char *r, size_t s,
63
                                    const char *t, size_t u,
64
                                    const unsigned char *v, size_t w, int x)
65
0
{
66
0
    return ssl_undefined_function(ssl);
67
0
}
68
69
SSL3_ENC_METHOD ssl3_undef_enc_method = {
70
    ssl_undefined_function_1,
71
    ssl_undefined_function_2,
72
    ssl_undefined_function,
73
    ssl_undefined_function_3,
74
    ssl_undefined_function_4,
75
    ssl_undefined_function_5,
76
    NULL,                       /* client_finished_label */
77
    0,                          /* client_finished_label_len */
78
    NULL,                       /* server_finished_label */
79
    0,                          /* server_finished_label_len */
80
    ssl_undefined_function_6,
81
    ssl_undefined_function_7,
82
};
83
84
struct ssl_async_args {
85
    SSL *s;
86
    void *buf;
87
    size_t num;
88
    enum { READFUNC, WRITEFUNC, OTHERFUNC } type;
89
    union {
90
        int (*func_read) (SSL *, void *, size_t, size_t *);
91
        int (*func_write) (SSL *, const void *, size_t, size_t *);
92
        int (*func_other) (SSL *);
93
    } f;
94
};
95
96
static const struct {
97
    uint8_t mtype;
98
    uint8_t ord;
99
    int nid;
100
} dane_mds[] = {
101
    {
102
        DANETLS_MATCHING_FULL, 0, NID_undef
103
    },
104
    {
105
        DANETLS_MATCHING_2256, 1, NID_sha256
106
    },
107
    {
108
        DANETLS_MATCHING_2512, 2, NID_sha512
109
    },
110
};
111
112
static int dane_ctx_enable(struct dane_ctx_st *dctx)
113
0
{
114
0
    const EVP_MD **mdevp;
115
0
    uint8_t *mdord;
116
0
    uint8_t mdmax = DANETLS_MATCHING_LAST;
117
0
    int n = ((int)mdmax) + 1;   /* int to handle PrivMatch(255) */
118
0
    size_t i;
119
120
0
    if (dctx->mdevp != NULL)
121
0
        return 1;
122
123
0
    mdevp = OPENSSL_zalloc(n * sizeof(*mdevp));
124
0
    mdord = OPENSSL_zalloc(n * sizeof(*mdord));
125
126
0
    if (mdord == NULL || mdevp == NULL) {
127
0
        OPENSSL_free(mdord);
128
0
        OPENSSL_free(mdevp);
129
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
130
0
        return 0;
131
0
    }
132
133
    /* Install default entries */
134
0
    for (i = 0; i < OSSL_NELEM(dane_mds); ++i) {
135
0
        const EVP_MD *md;
136
137
0
        if (dane_mds[i].nid == NID_undef ||
138
0
            (md = EVP_get_digestbynid(dane_mds[i].nid)) == NULL)
139
0
            continue;
140
0
        mdevp[dane_mds[i].mtype] = md;
141
0
        mdord[dane_mds[i].mtype] = dane_mds[i].ord;
142
0
    }
143
144
0
    dctx->mdevp = mdevp;
145
0
    dctx->mdord = mdord;
146
0
    dctx->mdmax = mdmax;
147
148
0
    return 1;
149
0
}
150
151
static void dane_ctx_final(struct dane_ctx_st *dctx)
152
38.8k
{
153
38.8k
    OPENSSL_free(dctx->mdevp);
154
38.8k
    dctx->mdevp = NULL;
155
156
38.8k
    OPENSSL_free(dctx->mdord);
157
38.8k
    dctx->mdord = NULL;
158
38.8k
    dctx->mdmax = 0;
159
38.8k
}
160
161
static void tlsa_free(danetls_record *t)
162
0
{
163
0
    if (t == NULL)
164
0
        return;
165
0
    OPENSSL_free(t->data);
166
0
    EVP_PKEY_free(t->spki);
167
0
    OPENSSL_free(t);
168
0
}
169
170
static void dane_final(SSL_DANE *dane)
171
38.8k
{
172
38.8k
    sk_danetls_record_pop_free(dane->trecs, tlsa_free);
173
38.8k
    dane->trecs = NULL;
174
175
38.8k
    sk_X509_pop_free(dane->certs, X509_free);
176
38.8k
    dane->certs = NULL;
177
178
38.8k
    X509_free(dane->mcert);
179
38.8k
    dane->mcert = NULL;
180
38.8k
    dane->mtlsa = NULL;
181
38.8k
    dane->mdpth = -1;
182
38.8k
    dane->pdpth = -1;
183
38.8k
}
184
185
/*
186
 * dane_copy - Copy dane configuration, sans verification state.
187
 */
188
static int ssl_dane_dup(SSL *to, SSL *from)
189
0
{
190
0
    int num;
191
0
    int i;
192
193
0
    if (!DANETLS_ENABLED(&from->dane))
194
0
        return 1;
195
196
0
    num = sk_danetls_record_num(from->dane.trecs);
197
0
    dane_final(&to->dane);
198
0
    to->dane.flags = from->dane.flags;
199
0
    to->dane.dctx = &to->ctx->dane;
200
0
    to->dane.trecs = sk_danetls_record_new_reserve(NULL, num);
201
202
0
    if (to->dane.trecs == NULL) {
203
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
204
0
        return 0;
205
0
    }
206
207
0
    for (i = 0; i < num; ++i) {
208
0
        danetls_record *t = sk_danetls_record_value(from->dane.trecs, i);
209
210
0
        if (SSL_dane_tlsa_add(to, t->usage, t->selector, t->mtype,
211
0
                              t->data, t->dlen) <= 0)
212
0
            return 0;
213
0
    }
214
0
    return 1;
215
0
}
216
217
static int dane_mtype_set(struct dane_ctx_st *dctx,
218
                          const EVP_MD *md, uint8_t mtype, uint8_t ord)
219
0
{
220
0
    int i;
221
222
0
    if (mtype == DANETLS_MATCHING_FULL && md != NULL) {
223
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_CANNOT_OVERRIDE_MTYPE_FULL);
224
0
        return 0;
225
0
    }
226
227
0
    if (mtype > dctx->mdmax) {
228
0
        const EVP_MD **mdevp;
229
0
        uint8_t *mdord;
230
0
        int n = ((int)mtype) + 1;
231
232
0
        mdevp = OPENSSL_realloc(dctx->mdevp, n * sizeof(*mdevp));
233
0
        if (mdevp == NULL) {
234
0
            ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
235
0
            return -1;
236
0
        }
237
0
        dctx->mdevp = mdevp;
238
239
0
        mdord = OPENSSL_realloc(dctx->mdord, n * sizeof(*mdord));
240
0
        if (mdord == NULL) {
241
0
            ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
242
0
            return -1;
243
0
        }
244
0
        dctx->mdord = mdord;
245
246
        /* Zero-fill any gaps */
247
0
        for (i = dctx->mdmax + 1; i < mtype; ++i) {
248
0
            mdevp[i] = NULL;
249
0
            mdord[i] = 0;
250
0
        }
251
252
0
        dctx->mdmax = mtype;
253
0
    }
254
255
0
    dctx->mdevp[mtype] = md;
256
    /* Coerce ordinal of disabled matching types to 0 */
257
0
    dctx->mdord[mtype] = (md == NULL) ? 0 : ord;
258
259
0
    return 1;
260
0
}
261
262
static const EVP_MD *tlsa_md_get(SSL_DANE *dane, uint8_t mtype)
263
0
{
264
0
    if (mtype > dane->dctx->mdmax)
265
0
        return NULL;
266
0
    return dane->dctx->mdevp[mtype];
267
0
}
268
269
static int dane_tlsa_add(SSL_DANE *dane,
270
                         uint8_t usage,
271
                         uint8_t selector,
272
                         uint8_t mtype, const unsigned char *data, size_t dlen)
273
0
{
274
0
    danetls_record *t;
275
0
    const EVP_MD *md = NULL;
276
0
    int ilen = (int)dlen;
277
0
    int i;
278
0
    int num;
279
280
0
    if (dane->trecs == NULL) {
281
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_NOT_ENABLED);
282
0
        return -1;
283
0
    }
284
285
0
    if (ilen < 0 || dlen != (size_t)ilen) {
286
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_DATA_LENGTH);
287
0
        return 0;
288
0
    }
289
290
0
    if (usage > DANETLS_USAGE_LAST) {
291
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE_USAGE);
292
0
        return 0;
293
0
    }
294
295
0
    if (selector > DANETLS_SELECTOR_LAST) {
296
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_SELECTOR);
297
0
        return 0;
298
0
    }
299
300
0
    if (mtype != DANETLS_MATCHING_FULL) {
301
0
        md = tlsa_md_get(dane, mtype);
302
0
        if (md == NULL) {
303
0
            ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_MATCHING_TYPE);
304
0
            return 0;
305
0
        }
306
0
    }
307
308
0
    if (md != NULL && dlen != (size_t)EVP_MD_get_size(md)) {
309
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_DIGEST_LENGTH);
310
0
        return 0;
311
0
    }
312
0
    if (!data) {
313
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_NULL_DATA);
314
0
        return 0;
315
0
    }
316
317
0
    if ((t = OPENSSL_zalloc(sizeof(*t))) == NULL) {
318
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
319
0
        return -1;
320
0
    }
321
322
0
    t->usage = usage;
323
0
    t->selector = selector;
324
0
    t->mtype = mtype;
325
0
    t->data = OPENSSL_malloc(dlen);
326
0
    if (t->data == NULL) {
327
0
        tlsa_free(t);
328
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
329
0
        return -1;
330
0
    }
331
0
    memcpy(t->data, data, dlen);
332
0
    t->dlen = dlen;
333
334
    /* Validate and cache full certificate or public key */
335
0
    if (mtype == DANETLS_MATCHING_FULL) {
336
0
        const unsigned char *p = data;
337
0
        X509 *cert = NULL;
338
0
        EVP_PKEY *pkey = NULL;
339
340
0
        switch (selector) {
341
0
        case DANETLS_SELECTOR_CERT:
342
0
            if (!d2i_X509(&cert, &p, ilen) || p < data ||
343
0
                dlen != (size_t)(p - data)) {
344
0
                tlsa_free(t);
345
0
                ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
346
0
                return 0;
347
0
            }
348
0
            if (X509_get0_pubkey(cert) == NULL) {
349
0
                tlsa_free(t);
350
0
                ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
351
0
                return 0;
352
0
            }
353
354
0
            if ((DANETLS_USAGE_BIT(usage) & DANETLS_TA_MASK) == 0) {
355
0
                X509_free(cert);
356
0
                break;
357
0
            }
358
359
            /*
360
             * For usage DANE-TA(2), we support authentication via "2 0 0" TLSA
361
             * records that contain full certificates of trust-anchors that are
362
             * not present in the wire chain.  For usage PKIX-TA(0), we augment
363
             * the chain with untrusted Full(0) certificates from DNS, in case
364
             * they are missing from the chain.
365
             */
366
0
            if ((dane->certs == NULL &&
367
0
                 (dane->certs = sk_X509_new_null()) == NULL) ||
368
0
                !sk_X509_push(dane->certs, cert)) {
369
0
                ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
370
0
                X509_free(cert);
371
0
                tlsa_free(t);
372
0
                return -1;
373
0
            }
374
0
            break;
375
376
0
        case DANETLS_SELECTOR_SPKI:
377
0
            if (!d2i_PUBKEY(&pkey, &p, ilen) || p < data ||
378
0
                dlen != (size_t)(p - data)) {
379
0
                tlsa_free(t);
380
0
                ERR_raise(ERR_LIB_SSL, SSL_R_DANE_TLSA_BAD_PUBLIC_KEY);
381
0
                return 0;
382
0
            }
383
384
            /*
385
             * For usage DANE-TA(2), we support authentication via "2 1 0" TLSA
386
             * records that contain full bare keys of trust-anchors that are
387
             * not present in the wire chain.
388
             */
389
0
            if (usage == DANETLS_USAGE_DANE_TA)
390
0
                t->spki = pkey;
391
0
            else
392
0
                EVP_PKEY_free(pkey);
393
0
            break;
394
0
        }
395
0
    }
396
397
    /*-
398
     * Find the right insertion point for the new record.
399
     *
400
     * See crypto/x509/x509_vfy.c.  We sort DANE-EE(3) records first, so that
401
     * they can be processed first, as they require no chain building, and no
402
     * expiration or hostname checks.  Because DANE-EE(3) is numerically
403
     * largest, this is accomplished via descending sort by "usage".
404
     *
405
     * We also sort in descending order by matching ordinal to simplify
406
     * the implementation of digest agility in the verification code.
407
     *
408
     * The choice of order for the selector is not significant, so we
409
     * use the same descending order for consistency.
410
     */
411
0
    num = sk_danetls_record_num(dane->trecs);
412
0
    for (i = 0; i < num; ++i) {
413
0
        danetls_record *rec = sk_danetls_record_value(dane->trecs, i);
414
415
0
        if (rec->usage > usage)
416
0
            continue;
417
0
        if (rec->usage < usage)
418
0
            break;
419
0
        if (rec->selector > selector)
420
0
            continue;
421
0
        if (rec->selector < selector)
422
0
            break;
423
0
        if (dane->dctx->mdord[rec->mtype] > dane->dctx->mdord[mtype])
424
0
            continue;
425
0
        break;
426
0
    }
427
428
0
    if (!sk_danetls_record_insert(dane->trecs, t, i)) {
429
0
        tlsa_free(t);
430
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
431
0
        return -1;
432
0
    }
433
0
    dane->umask |= DANETLS_USAGE_BIT(usage);
434
435
0
    return 1;
436
0
}
437
438
/*
439
 * Return 0 if there is only one version configured and it was disabled
440
 * at configure time.  Return 1 otherwise.
441
 */
442
static int ssl_check_allowed_versions(int min_version, int max_version)
443
38.8k
{
444
38.8k
    int minisdtls = 0, maxisdtls = 0;
445
446
    /* Figure out if we're doing DTLS versions or TLS versions */
447
38.8k
    if (min_version == DTLS1_BAD_VER
448
38.8k
        || min_version >> 8 == DTLS1_VERSION_MAJOR)
449
0
        minisdtls = 1;
450
38.8k
    if (max_version == DTLS1_BAD_VER
451
38.8k
        || max_version >> 8 == DTLS1_VERSION_MAJOR)
452
0
        maxisdtls = 1;
453
    /* A wildcard version of 0 could be DTLS or TLS. */
454
38.8k
    if ((minisdtls && !maxisdtls && max_version != 0)
455
38.8k
        || (maxisdtls && !minisdtls && min_version != 0)) {
456
        /* Mixing DTLS and TLS versions will lead to sadness; deny it. */
457
0
        return 0;
458
0
    }
459
460
38.8k
    if (minisdtls || maxisdtls) {
461
        /* Do DTLS version checks. */
462
0
        if (min_version == 0)
463
            /* Ignore DTLS1_BAD_VER */
464
0
            min_version = DTLS1_VERSION;
465
0
        if (max_version == 0)
466
0
            max_version = DTLS1_2_VERSION;
467
#ifdef OPENSSL_NO_DTLS1_2
468
        if (max_version == DTLS1_2_VERSION)
469
            max_version = DTLS1_VERSION;
470
#endif
471
#ifdef OPENSSL_NO_DTLS1
472
        if (min_version == DTLS1_VERSION)
473
            min_version = DTLS1_2_VERSION;
474
#endif
475
        /* Done massaging versions; do the check. */
476
0
        if (0
477
#ifdef OPENSSL_NO_DTLS1
478
            || (DTLS_VERSION_GE(min_version, DTLS1_VERSION)
479
                && DTLS_VERSION_GE(DTLS1_VERSION, max_version))
480
#endif
481
#ifdef OPENSSL_NO_DTLS1_2
482
            || (DTLS_VERSION_GE(min_version, DTLS1_2_VERSION)
483
                && DTLS_VERSION_GE(DTLS1_2_VERSION, max_version))
484
#endif
485
0
            )
486
0
            return 0;
487
38.8k
    } else {
488
        /* Regular TLS version checks. */
489
38.8k
        if (min_version == 0)
490
38.8k
            min_version = SSL3_VERSION;
491
38.8k
        if (max_version == 0)
492
38.8k
            max_version = TLS1_3_VERSION;
493
#ifdef OPENSSL_NO_TLS1_3
494
        if (max_version == TLS1_3_VERSION)
495
            max_version = TLS1_2_VERSION;
496
#endif
497
#ifdef OPENSSL_NO_TLS1_2
498
        if (max_version == TLS1_2_VERSION)
499
            max_version = TLS1_1_VERSION;
500
#endif
501
#ifdef OPENSSL_NO_TLS1_1
502
        if (max_version == TLS1_1_VERSION)
503
            max_version = TLS1_VERSION;
504
#endif
505
#ifdef OPENSSL_NO_TLS1
506
        if (max_version == TLS1_VERSION)
507
            max_version = SSL3_VERSION;
508
#endif
509
#ifdef OPENSSL_NO_SSL3
510
        if (min_version == SSL3_VERSION)
511
            min_version = TLS1_VERSION;
512
#endif
513
#ifdef OPENSSL_NO_TLS1
514
        if (min_version == TLS1_VERSION)
515
            min_version = TLS1_1_VERSION;
516
#endif
517
#ifdef OPENSSL_NO_TLS1_1
518
        if (min_version == TLS1_1_VERSION)
519
            min_version = TLS1_2_VERSION;
520
#endif
521
#ifdef OPENSSL_NO_TLS1_2
522
        if (min_version == TLS1_2_VERSION)
523
            min_version = TLS1_3_VERSION;
524
#endif
525
        /* Done massaging versions; do the check. */
526
38.8k
        if (0
527
#ifdef OPENSSL_NO_SSL3
528
            || (min_version <= SSL3_VERSION && SSL3_VERSION <= max_version)
529
#endif
530
#ifdef OPENSSL_NO_TLS1
531
            || (min_version <= TLS1_VERSION && TLS1_VERSION <= max_version)
532
#endif
533
#ifdef OPENSSL_NO_TLS1_1
534
            || (min_version <= TLS1_1_VERSION && TLS1_1_VERSION <= max_version)
535
#endif
536
#ifdef OPENSSL_NO_TLS1_2
537
            || (min_version <= TLS1_2_VERSION && TLS1_2_VERSION <= max_version)
538
#endif
539
#ifdef OPENSSL_NO_TLS1_3
540
            || (min_version <= TLS1_3_VERSION && TLS1_3_VERSION <= max_version)
541
#endif
542
38.8k
            )
543
0
            return 0;
544
38.8k
    }
545
38.8k
    return 1;
546
38.8k
}
547
548
#if defined(__TANDEM) && defined(OPENSSL_VPROC)
549
/*
550
 * Define a VPROC function for HP NonStop build ssl library.
551
 * This is used by platform version identification tools.
552
 * Do not inline this procedure or make it static.
553
 */
554
# define OPENSSL_VPROC_STRING_(x)    x##_SSL
555
# define OPENSSL_VPROC_STRING(x)     OPENSSL_VPROC_STRING_(x)
556
# define OPENSSL_VPROC_FUNC          OPENSSL_VPROC_STRING(OPENSSL_VPROC)
557
void OPENSSL_VPROC_FUNC(void) {}
558
#endif
559
560
561
static void clear_ciphers(SSL *s)
562
104k
{
563
    /* clear the current cipher */
564
104k
    ssl_clear_cipher_ctx(s);
565
104k
    ssl_clear_hash_ctx(&s->read_hash);
566
104k
    ssl_clear_hash_ctx(&s->write_hash);
567
104k
}
568
569
int SSL_clear(SSL *s)
570
52.4k
{
571
52.4k
    if (s->method == NULL) {
572
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_METHOD_SPECIFIED);
573
0
        return 0;
574
0
    }
575
576
52.4k
    if (ssl_clear_bad_session(s)) {
577
0
        SSL_SESSION_free(s->session);
578
0
        s->session = NULL;
579
0
    }
580
52.4k
    SSL_SESSION_free(s->psksession);
581
52.4k
    s->psksession = NULL;
582
52.4k
    OPENSSL_free(s->psksession_id);
583
52.4k
    s->psksession_id = NULL;
584
52.4k
    s->psksession_id_len = 0;
585
52.4k
    s->hello_retry_request = 0;
586
52.4k
    s->sent_tickets = 0;
587
588
52.4k
    s->error = 0;
589
52.4k
    s->hit = 0;
590
52.4k
    s->shutdown = 0;
591
592
52.4k
    if (s->renegotiate) {
593
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
594
0
        return 0;
595
0
    }
596
597
52.4k
    ossl_statem_clear(s);
598
599
52.4k
    s->version = s->method->version;
600
52.4k
    s->client_version = s->version;
601
52.4k
    s->rwstate = SSL_NOTHING;
602
603
52.4k
    BUF_MEM_free(s->init_buf);
604
52.4k
    s->init_buf = NULL;
605
52.4k
    clear_ciphers(s);
606
52.4k
    s->first_packet = 0;
607
608
52.4k
    s->key_update = SSL_KEY_UPDATE_NONE;
609
610
52.4k
    EVP_MD_CTX_free(s->pha_dgst);
611
52.4k
    s->pha_dgst = NULL;
612
613
    /* Reset DANE verification result state */
614
52.4k
    s->dane.mdpth = -1;
615
52.4k
    s->dane.pdpth = -1;
616
52.4k
    X509_free(s->dane.mcert);
617
52.4k
    s->dane.mcert = NULL;
618
52.4k
    s->dane.mtlsa = NULL;
619
620
    /* Clear the verification result peername */
621
52.4k
    X509_VERIFY_PARAM_move_peername(s->param, NULL);
622
623
    /* Clear any shared connection state */
624
52.4k
    OPENSSL_free(s->shared_sigalgs);
625
52.4k
    s->shared_sigalgs = NULL;
626
52.4k
    s->shared_sigalgslen = 0;
627
628
    /*
629
     * Check to see if we were changed into a different method, if so, revert
630
     * back.
631
     */
632
52.4k
    if (s->method != s->ctx->method) {
633
0
        s->method->ssl_free(s);
634
0
        s->method = s->ctx->method;
635
0
        if (!s->method->ssl_new(s))
636
0
            return 0;
637
52.4k
    } else {
638
52.4k
        if (!s->method->ssl_clear(s))
639
0
            return 0;
640
52.4k
    }
641
642
52.4k
    RECORD_LAYER_clear(&s->rlayer);
643
644
52.4k
    return 1;
645
52.4k
}
646
647
#ifndef OPENSSL_NO_DEPRECATED_3_0
648
/** Used to change an SSL_CTXs default SSL method type */
649
int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
650
0
{
651
0
    STACK_OF(SSL_CIPHER) *sk;
652
653
0
    ctx->method = meth;
654
655
0
    if (!SSL_CTX_set_ciphersuites(ctx, OSSL_default_ciphersuites())) {
656
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
657
0
        return 0;
658
0
    }
659
0
    sk = ssl_create_cipher_list(ctx,
660
0
                                ctx->tls13_ciphersuites,
661
0
                                &(ctx->cipher_list),
662
0
                                &(ctx->cipher_list_by_id),
663
0
                                OSSL_default_cipher_list(), ctx->cert);
664
0
    if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0)) {
665
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
666
0
        return 0;
667
0
    }
668
0
    return 1;
669
0
}
670
#endif
671
672
SSL *SSL_new(SSL_CTX *ctx)
673
26.2k
{
674
26.2k
    SSL *s;
675
676
26.2k
    if (ctx == NULL) {
677
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_CTX);
678
0
        return NULL;
679
0
    }
680
26.2k
    if (ctx->method == NULL) {
681
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
682
0
        return NULL;
683
0
    }
684
685
26.2k
    s = OPENSSL_zalloc(sizeof(*s));
686
26.2k
    if (s == NULL)
687
0
        goto err;
688
689
26.2k
    s->references = 1;
690
26.2k
    s->lock = CRYPTO_THREAD_lock_new();
691
26.2k
    if (s->lock == NULL) {
692
0
        OPENSSL_free(s);
693
0
        s = NULL;
694
0
        goto err;
695
0
    }
696
697
26.2k
    RECORD_LAYER_init(&s->rlayer, s);
698
699
26.2k
    s->options = ctx->options;
700
26.2k
    s->dane.flags = ctx->dane.flags;
701
26.2k
    s->min_proto_version = ctx->min_proto_version;
702
26.2k
    s->max_proto_version = ctx->max_proto_version;
703
26.2k
    s->mode = ctx->mode;
704
26.2k
    s->max_cert_list = ctx->max_cert_list;
705
26.2k
    s->max_early_data = ctx->max_early_data;
706
26.2k
    s->recv_max_early_data = ctx->recv_max_early_data;
707
26.2k
    s->num_tickets = ctx->num_tickets;
708
26.2k
    s->pha_enabled = ctx->pha_enabled;
709
710
    /* Shallow copy of the ciphersuites stack */
711
26.2k
    s->tls13_ciphersuites = sk_SSL_CIPHER_dup(ctx->tls13_ciphersuites);
712
26.2k
    if (s->tls13_ciphersuites == NULL)
713
0
        goto err;
714
715
    /*
716
     * Earlier library versions used to copy the pointer to the CERT, not
717
     * its contents; only when setting new parameters for the per-SSL
718
     * copy, ssl_cert_new would be called (and the direct reference to
719
     * the per-SSL_CTX settings would be lost, but those still were
720
     * indirectly accessed for various purposes, and for that reason they
721
     * used to be known as s->ctx->default_cert). Now we don't look at the
722
     * SSL_CTX's CERT after having duplicated it once.
723
     */
724
26.2k
    s->cert = ssl_cert_dup(ctx->cert);
725
26.2k
    if (s->cert == NULL)
726
0
        goto err;
727
728
26.2k
    RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead);
729
26.2k
    s->msg_callback = ctx->msg_callback;
730
26.2k
    s->msg_callback_arg = ctx->msg_callback_arg;
731
26.2k
    s->verify_mode = ctx->verify_mode;
732
26.2k
    s->not_resumable_session_cb = ctx->not_resumable_session_cb;
733
26.2k
    s->record_padding_cb = ctx->record_padding_cb;
734
26.2k
    s->record_padding_arg = ctx->record_padding_arg;
735
26.2k
    s->block_padding = ctx->block_padding;
736
26.2k
    s->sid_ctx_length = ctx->sid_ctx_length;
737
26.2k
    if (!ossl_assert(s->sid_ctx_length <= sizeof(s->sid_ctx)))
738
0
        goto err;
739
26.2k
    memcpy(&s->sid_ctx, &ctx->sid_ctx, sizeof(s->sid_ctx));
740
26.2k
    s->verify_callback = ctx->default_verify_callback;
741
26.2k
    s->generate_session_id = ctx->generate_session_id;
742
743
26.2k
    s->param = X509_VERIFY_PARAM_new();
744
26.2k
    if (s->param == NULL)
745
0
        goto err;
746
26.2k
    X509_VERIFY_PARAM_inherit(s->param, ctx->param);
747
26.2k
    s->quiet_shutdown = ctx->quiet_shutdown;
748
749
26.2k
    s->ext.max_fragment_len_mode = ctx->ext.max_fragment_len_mode;
750
26.2k
    s->max_send_fragment = ctx->max_send_fragment;
751
26.2k
    s->split_send_fragment = ctx->split_send_fragment;
752
26.2k
    s->max_pipelines = ctx->max_pipelines;
753
26.2k
    if (s->max_pipelines > 1)
754
0
        RECORD_LAYER_set_read_ahead(&s->rlayer, 1);
755
26.2k
    if (ctx->default_read_buf_len > 0)
756
0
        SSL_set_default_read_buffer_len(s, ctx->default_read_buf_len);
757
758
26.2k
    SSL_CTX_up_ref(ctx);
759
26.2k
    s->ctx = ctx;
760
26.2k
    s->ext.debug_cb = 0;
761
26.2k
    s->ext.debug_arg = NULL;
762
26.2k
    s->ext.ticket_expected = 0;
763
26.2k
    s->ext.status_type = ctx->ext.status_type;
764
26.2k
    s->ext.status_expected = 0;
765
26.2k
    s->ext.ocsp.ids = NULL;
766
26.2k
    s->ext.ocsp.exts = NULL;
767
26.2k
    s->ext.ocsp.resp = NULL;
768
26.2k
    s->ext.ocsp.resp_len = 0;
769
26.2k
    SSL_CTX_up_ref(ctx);
770
26.2k
    s->session_ctx = ctx;
771
26.2k
    if (ctx->ext.ecpointformats) {
772
0
        s->ext.ecpointformats =
773
0
            OPENSSL_memdup(ctx->ext.ecpointformats,
774
0
                           ctx->ext.ecpointformats_len);
775
0
        if (!s->ext.ecpointformats) {
776
0
            s->ext.ecpointformats_len = 0;
777
0
            goto err;
778
0
        }
779
0
        s->ext.ecpointformats_len =
780
0
            ctx->ext.ecpointformats_len;
781
0
    }
782
26.2k
    if (ctx->ext.supportedgroups) {
783
0
        s->ext.supportedgroups =
784
0
            OPENSSL_memdup(ctx->ext.supportedgroups,
785
0
                           ctx->ext.supportedgroups_len
786
0
                                * sizeof(*ctx->ext.supportedgroups));
787
0
        if (!s->ext.supportedgroups) {
788
0
            s->ext.supportedgroups_len = 0;
789
0
            goto err;
790
0
        }
791
0
        s->ext.supportedgroups_len = ctx->ext.supportedgroups_len;
792
0
    }
793
794
26.2k
#ifndef OPENSSL_NO_NEXTPROTONEG
795
26.2k
    s->ext.npn = NULL;
796
26.2k
#endif
797
798
26.2k
    if (s->ctx->ext.alpn) {
799
0
        s->ext.alpn = OPENSSL_malloc(s->ctx->ext.alpn_len);
800
0
        if (s->ext.alpn == NULL) {
801
0
            s->ext.alpn_len = 0;
802
0
            goto err;
803
0
        }
804
0
        memcpy(s->ext.alpn, s->ctx->ext.alpn, s->ctx->ext.alpn_len);
805
0
        s->ext.alpn_len = s->ctx->ext.alpn_len;
806
0
    }
807
808
26.2k
    s->verified_chain = NULL;
809
26.2k
    s->verify_result = X509_V_OK;
810
811
26.2k
    s->default_passwd_callback = ctx->default_passwd_callback;
812
26.2k
    s->default_passwd_callback_userdata = ctx->default_passwd_callback_userdata;
813
814
26.2k
    s->method = ctx->method;
815
816
26.2k
    s->key_update = SSL_KEY_UPDATE_NONE;
817
818
26.2k
    s->allow_early_data_cb = ctx->allow_early_data_cb;
819
26.2k
    s->allow_early_data_cb_data = ctx->allow_early_data_cb_data;
820
821
26.2k
    if (!s->method->ssl_new(s))
822
0
        goto err;
823
824
26.2k
    s->server = (ctx->method->ssl_accept == ssl_undefined_function) ? 0 : 1;
825
826
26.2k
    if (!SSL_clear(s))
827
0
        goto err;
828
829
26.2k
    if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data))
830
0
        goto err;
831
832
26.2k
#ifndef OPENSSL_NO_PSK
833
26.2k
    s->psk_client_callback = ctx->psk_client_callback;
834
26.2k
    s->psk_server_callback = ctx->psk_server_callback;
835
26.2k
#endif
836
26.2k
    s->psk_find_session_cb = ctx->psk_find_session_cb;
837
26.2k
    s->psk_use_session_cb = ctx->psk_use_session_cb;
838
839
26.2k
    s->async_cb = ctx->async_cb;
840
26.2k
    s->async_cb_arg = ctx->async_cb_arg;
841
842
26.2k
    s->job = NULL;
843
844
26.2k
#ifndef OPENSSL_NO_CT
845
26.2k
    if (!SSL_set_ct_validation_callback(s, ctx->ct_validation_callback,
846
26.2k
                                        ctx->ct_validation_callback_arg))
847
0
        goto err;
848
26.2k
#endif
849
850
26.2k
    return s;
851
0
 err:
852
0
    SSL_free(s);
853
0
    ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
854
0
    return NULL;
855
26.2k
}
856
857
int SSL_is_dtls(const SSL *s)
858
0
{
859
0
    return SSL_IS_DTLS(s) ? 1 : 0;
860
0
}
861
862
int SSL_up_ref(SSL *s)
863
0
{
864
0
    int i;
865
866
0
    if (CRYPTO_UP_REF(&s->references, &i, s->lock) <= 0)
867
0
        return 0;
868
869
0
    REF_PRINT_COUNT("SSL", s);
870
0
    REF_ASSERT_ISNT(i < 2);
871
0
    return ((i > 1) ? 1 : 0);
872
0
}
873
874
int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx,
875
                                   unsigned int sid_ctx_len)
876
0
{
877
0
    if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
878
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
879
0
        return 0;
880
0
    }
881
0
    ctx->sid_ctx_length = sid_ctx_len;
882
0
    memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len);
883
884
0
    return 1;
885
0
}
886
887
int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
888
                               unsigned int sid_ctx_len)
889
0
{
890
0
    if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
891
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
892
0
        return 0;
893
0
    }
894
0
    ssl->sid_ctx_length = sid_ctx_len;
895
0
    memcpy(ssl->sid_ctx, sid_ctx, sid_ctx_len);
896
897
0
    return 1;
898
0
}
899
900
int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
901
0
{
902
0
    if (!CRYPTO_THREAD_write_lock(ctx->lock))
903
0
        return 0;
904
0
    ctx->generate_session_id = cb;
905
0
    CRYPTO_THREAD_unlock(ctx->lock);
906
0
    return 1;
907
0
}
908
909
int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
910
0
{
911
0
    if (!CRYPTO_THREAD_write_lock(ssl->lock))
912
0
        return 0;
913
0
    ssl->generate_session_id = cb;
914
0
    CRYPTO_THREAD_unlock(ssl->lock);
915
0
    return 1;
916
0
}
917
918
int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
919
                                unsigned int id_len)
920
5.69k
{
921
    /*
922
     * A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
923
     * we can "construct" a session to give us the desired check - i.e. to
924
     * find if there's a session in the hash table that would conflict with
925
     * any new session built out of this id/id_len and the ssl_version in use
926
     * by this SSL.
927
     */
928
5.69k
    SSL_SESSION r, *p;
929
930
5.69k
    if (id_len > sizeof(r.session_id))
931
0
        return 0;
932
933
5.69k
    r.ssl_version = ssl->version;
934
5.69k
    r.session_id_length = id_len;
935
5.69k
    memcpy(r.session_id, id, id_len);
936
937
5.69k
    if (!CRYPTO_THREAD_read_lock(ssl->session_ctx->lock))
938
0
        return 0;
939
5.69k
    p = lh_SSL_SESSION_retrieve(ssl->session_ctx->sessions, &r);
940
5.69k
    CRYPTO_THREAD_unlock(ssl->session_ctx->lock);
941
5.69k
    return (p != NULL);
942
5.69k
}
943
944
int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
945
0
{
946
0
    return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
947
0
}
948
949
int SSL_set_purpose(SSL *s, int purpose)
950
0
{
951
0
    return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
952
0
}
953
954
int SSL_CTX_set_trust(SSL_CTX *s, int trust)
955
0
{
956
0
    return X509_VERIFY_PARAM_set_trust(s->param, trust);
957
0
}
958
959
int SSL_set_trust(SSL *s, int trust)
960
0
{
961
0
    return X509_VERIFY_PARAM_set_trust(s->param, trust);
962
0
}
963
964
int SSL_set1_host(SSL *s, const char *hostname)
965
0
{
966
    /* If a hostname is provided and parses as an IP address,
967
     * treat it as such. */
968
0
    if (hostname && X509_VERIFY_PARAM_set1_ip_asc(s->param, hostname) == 1)
969
0
        return 1;
970
971
0
    return X509_VERIFY_PARAM_set1_host(s->param, hostname, 0);
972
0
}
973
974
int SSL_add1_host(SSL *s, const char *hostname)
975
0
{
976
    /* If a hostname is provided and parses as an IP address,
977
     * treat it as such. */
978
0
    if (hostname)
979
0
    {
980
0
        ASN1_OCTET_STRING *ip;
981
0
        char *old_ip;
982
983
0
        ip = a2i_IPADDRESS(hostname);
984
0
        if (ip) {
985
            /* We didn't want it; only to check if it *is* an IP address */
986
0
            ASN1_OCTET_STRING_free(ip);
987
988
0
            old_ip = X509_VERIFY_PARAM_get1_ip_asc(s->param);
989
0
            if (old_ip)
990
0
            {
991
0
                OPENSSL_free(old_ip);
992
                /* There can be only one IP address */
993
0
                return 0;
994
0
            }
995
996
0
            return X509_VERIFY_PARAM_set1_ip_asc(s->param, hostname);
997
0
        }
998
0
    }
999
1000
0
    return X509_VERIFY_PARAM_add1_host(s->param, hostname, 0);
1001
0
}
1002
1003
void SSL_set_hostflags(SSL *s, unsigned int flags)
1004
0
{
1005
0
    X509_VERIFY_PARAM_set_hostflags(s->param, flags);
1006
0
}
1007
1008
const char *SSL_get0_peername(SSL *s)
1009
0
{
1010
0
    return X509_VERIFY_PARAM_get0_peername(s->param);
1011
0
}
1012
1013
int SSL_CTX_dane_enable(SSL_CTX *ctx)
1014
0
{
1015
0
    return dane_ctx_enable(&ctx->dane);
1016
0
}
1017
1018
unsigned long SSL_CTX_dane_set_flags(SSL_CTX *ctx, unsigned long flags)
1019
0
{
1020
0
    unsigned long orig = ctx->dane.flags;
1021
1022
0
    ctx->dane.flags |= flags;
1023
0
    return orig;
1024
0
}
1025
1026
unsigned long SSL_CTX_dane_clear_flags(SSL_CTX *ctx, unsigned long flags)
1027
0
{
1028
0
    unsigned long orig = ctx->dane.flags;
1029
1030
0
    ctx->dane.flags &= ~flags;
1031
0
    return orig;
1032
0
}
1033
1034
int SSL_dane_enable(SSL *s, const char *basedomain)
1035
0
{
1036
0
    SSL_DANE *dane = &s->dane;
1037
1038
0
    if (s->ctx->dane.mdmax == 0) {
1039
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONTEXT_NOT_DANE_ENABLED);
1040
0
        return 0;
1041
0
    }
1042
0
    if (dane->trecs != NULL) {
1043
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DANE_ALREADY_ENABLED);
1044
0
        return 0;
1045
0
    }
1046
1047
    /*
1048
     * Default SNI name.  This rejects empty names, while set1_host below
1049
     * accepts them and disables host name checks.  To avoid side-effects with
1050
     * invalid input, set the SNI name first.
1051
     */
1052
0
    if (s->ext.hostname == NULL) {
1053
0
        if (!SSL_set_tlsext_host_name(s, basedomain)) {
1054
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
1055
0
            return -1;
1056
0
        }
1057
0
    }
1058
1059
    /* Primary RFC6125 reference identifier */
1060
0
    if (!X509_VERIFY_PARAM_set1_host(s->param, basedomain, 0)) {
1061
0
        ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
1062
0
        return -1;
1063
0
    }
1064
1065
0
    dane->mdpth = -1;
1066
0
    dane->pdpth = -1;
1067
0
    dane->dctx = &s->ctx->dane;
1068
0
    dane->trecs = sk_danetls_record_new_null();
1069
1070
0
    if (dane->trecs == NULL) {
1071
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
1072
0
        return -1;
1073
0
    }
1074
0
    return 1;
1075
0
}
1076
1077
unsigned long SSL_dane_set_flags(SSL *ssl, unsigned long flags)
1078
0
{
1079
0
    unsigned long orig = ssl->dane.flags;
1080
1081
0
    ssl->dane.flags |= flags;
1082
0
    return orig;
1083
0
}
1084
1085
unsigned long SSL_dane_clear_flags(SSL *ssl, unsigned long flags)
1086
0
{
1087
0
    unsigned long orig = ssl->dane.flags;
1088
1089
0
    ssl->dane.flags &= ~flags;
1090
0
    return orig;
1091
0
}
1092
1093
int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki)
1094
0
{
1095
0
    SSL_DANE *dane = &s->dane;
1096
1097
0
    if (!DANETLS_ENABLED(dane) || s->verify_result != X509_V_OK)
1098
0
        return -1;
1099
0
    if (dane->mtlsa) {
1100
0
        if (mcert)
1101
0
            *mcert = dane->mcert;
1102
0
        if (mspki)
1103
0
            *mspki = (dane->mcert == NULL) ? dane->mtlsa->spki : NULL;
1104
0
    }
1105
0
    return dane->mdpth;
1106
0
}
1107
1108
int SSL_get0_dane_tlsa(SSL *s, uint8_t *usage, uint8_t *selector,
1109
                       uint8_t *mtype, const unsigned char **data, size_t *dlen)
1110
0
{
1111
0
    SSL_DANE *dane = &s->dane;
1112
1113
0
    if (!DANETLS_ENABLED(dane) || s->verify_result != X509_V_OK)
1114
0
        return -1;
1115
0
    if (dane->mtlsa) {
1116
0
        if (usage)
1117
0
            *usage = dane->mtlsa->usage;
1118
0
        if (selector)
1119
0
            *selector = dane->mtlsa->selector;
1120
0
        if (mtype)
1121
0
            *mtype = dane->mtlsa->mtype;
1122
0
        if (data)
1123
0
            *data = dane->mtlsa->data;
1124
0
        if (dlen)
1125
0
            *dlen = dane->mtlsa->dlen;
1126
0
    }
1127
0
    return dane->mdpth;
1128
0
}
1129
1130
SSL_DANE *SSL_get0_dane(SSL *s)
1131
0
{
1132
0
    return &s->dane;
1133
0
}
1134
1135
int SSL_dane_tlsa_add(SSL *s, uint8_t usage, uint8_t selector,
1136
                      uint8_t mtype, const unsigned char *data, size_t dlen)
1137
0
{
1138
0
    return dane_tlsa_add(&s->dane, usage, selector, mtype, data, dlen);
1139
0
}
1140
1141
int SSL_CTX_dane_mtype_set(SSL_CTX *ctx, const EVP_MD *md, uint8_t mtype,
1142
                           uint8_t ord)
1143
0
{
1144
0
    return dane_mtype_set(&ctx->dane, md, mtype, ord);
1145
0
}
1146
1147
int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm)
1148
0
{
1149
0
    return X509_VERIFY_PARAM_set1(ctx->param, vpm);
1150
0
}
1151
1152
int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm)
1153
0
{
1154
0
    return X509_VERIFY_PARAM_set1(ssl->param, vpm);
1155
0
}
1156
1157
X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx)
1158
0
{
1159
0
    return ctx->param;
1160
0
}
1161
1162
X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl)
1163
0
{
1164
0
    return ssl->param;
1165
0
}
1166
1167
void SSL_certs_clear(SSL *s)
1168
0
{
1169
0
    ssl_cert_clear_certs(s->cert);
1170
0
}
1171
1172
void SSL_free(SSL *s)
1173
26.2k
{
1174
26.2k
    int i;
1175
1176
26.2k
    if (s == NULL)
1177
0
        return;
1178
26.2k
    CRYPTO_DOWN_REF(&s->references, &i, s->lock);
1179
26.2k
    REF_PRINT_COUNT("SSL", s);
1180
26.2k
    if (i > 0)
1181
0
        return;
1182
26.2k
    REF_ASSERT_ISNT(i < 0);
1183
1184
26.2k
    X509_VERIFY_PARAM_free(s->param);
1185
26.2k
    dane_final(&s->dane);
1186
26.2k
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
1187
1188
26.2k
    RECORD_LAYER_release(&s->rlayer);
1189
1190
    /* Ignore return value */
1191
26.2k
    ssl_free_wbio_buffer(s);
1192
1193
26.2k
    BIO_free_all(s->wbio);
1194
26.2k
    s->wbio = NULL;
1195
26.2k
    BIO_free_all(s->rbio);
1196
26.2k
    s->rbio = NULL;
1197
1198
26.2k
    BUF_MEM_free(s->init_buf);
1199
1200
    /* add extra stuff */
1201
26.2k
    sk_SSL_CIPHER_free(s->cipher_list);
1202
26.2k
    sk_SSL_CIPHER_free(s->cipher_list_by_id);
1203
26.2k
    sk_SSL_CIPHER_free(s->tls13_ciphersuites);
1204
26.2k
    sk_SSL_CIPHER_free(s->peer_ciphers);
1205
1206
    /* Make the next call work :-) */
1207
26.2k
    if (s->session != NULL) {
1208
24.1k
        ssl_clear_bad_session(s);
1209
24.1k
        SSL_SESSION_free(s->session);
1210
24.1k
    }
1211
26.2k
    SSL_SESSION_free(s->psksession);
1212
26.2k
    OPENSSL_free(s->psksession_id);
1213
1214
26.2k
    clear_ciphers(s);
1215
1216
26.2k
    ssl_cert_free(s->cert);
1217
26.2k
    OPENSSL_free(s->shared_sigalgs);
1218
    /* Free up if allocated */
1219
1220
26.2k
    OPENSSL_free(s->ext.hostname);
1221
26.2k
    SSL_CTX_free(s->session_ctx);
1222
26.2k
    OPENSSL_free(s->ext.ecpointformats);
1223
26.2k
    OPENSSL_free(s->ext.peer_ecpointformats);
1224
26.2k
    OPENSSL_free(s->ext.supportedgroups);
1225
26.2k
    OPENSSL_free(s->ext.peer_supportedgroups);
1226
26.2k
    sk_X509_EXTENSION_pop_free(s->ext.ocsp.exts, X509_EXTENSION_free);
1227
26.2k
#ifndef OPENSSL_NO_OCSP
1228
26.2k
    sk_OCSP_RESPID_pop_free(s->ext.ocsp.ids, OCSP_RESPID_free);
1229
26.2k
#endif
1230
26.2k
#ifndef OPENSSL_NO_CT
1231
26.2k
    SCT_LIST_free(s->scts);
1232
26.2k
    OPENSSL_free(s->ext.scts);
1233
26.2k
#endif
1234
26.2k
    OPENSSL_free(s->ext.ocsp.resp);
1235
26.2k
    OPENSSL_free(s->ext.alpn);
1236
26.2k
    OPENSSL_free(s->ext.tls13_cookie);
1237
26.2k
    if (s->clienthello != NULL)
1238
0
        OPENSSL_free(s->clienthello->pre_proc_exts);
1239
26.2k
    OPENSSL_free(s->clienthello);
1240
26.2k
    OPENSSL_free(s->pha_context);
1241
26.2k
    EVP_MD_CTX_free(s->pha_dgst);
1242
1243
26.2k
    sk_X509_NAME_pop_free(s->ca_names, X509_NAME_free);
1244
26.2k
    sk_X509_NAME_pop_free(s->client_ca_names, X509_NAME_free);
1245
1246
26.2k
    sk_X509_pop_free(s->verified_chain, X509_free);
1247
1248
26.2k
    if (s->method != NULL)
1249
26.2k
        s->method->ssl_free(s);
1250
1251
26.2k
    SSL_CTX_free(s->ctx);
1252
1253
26.2k
    ASYNC_WAIT_CTX_free(s->waitctx);
1254
1255
26.2k
#if !defined(OPENSSL_NO_NEXTPROTONEG)
1256
26.2k
    OPENSSL_free(s->ext.npn);
1257
26.2k
#endif
1258
1259
26.2k
#ifndef OPENSSL_NO_SRTP
1260
26.2k
    sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles);
1261
26.2k
#endif
1262
1263
26.2k
    CRYPTO_THREAD_lock_free(s->lock);
1264
1265
26.2k
    OPENSSL_free(s);
1266
26.2k
}
1267
1268
void SSL_set0_rbio(SSL *s, BIO *rbio)
1269
26.2k
{
1270
26.2k
    BIO_free_all(s->rbio);
1271
26.2k
    s->rbio = rbio;
1272
26.2k
}
1273
1274
void SSL_set0_wbio(SSL *s, BIO *wbio)
1275
26.2k
{
1276
    /*
1277
     * If the output buffering BIO is still in place, remove it
1278
     */
1279
26.2k
    if (s->bbio != NULL)
1280
0
        s->wbio = BIO_pop(s->wbio);
1281
1282
26.2k
    BIO_free_all(s->wbio);
1283
26.2k
    s->wbio = wbio;
1284
1285
    /* Re-attach |bbio| to the new |wbio|. */
1286
26.2k
    if (s->bbio != NULL)
1287
0
        s->wbio = BIO_push(s->bbio, s->wbio);
1288
26.2k
}
1289
1290
void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
1291
38.8k
{
1292
    /*
1293
     * For historical reasons, this function has many different cases in
1294
     * ownership handling.
1295
     */
1296
1297
    /* If nothing has changed, do nothing */
1298
38.8k
    if (rbio == SSL_get_rbio(s) && wbio == SSL_get_wbio(s))
1299
0
        return;
1300
1301
    /*
1302
     * If the two arguments are equal then one fewer reference is granted by the
1303
     * caller than we want to take
1304
     */
1305
38.8k
    if (rbio != NULL && rbio == wbio)
1306
0
        BIO_up_ref(rbio);
1307
1308
    /*
1309
     * If only the wbio is changed only adopt one reference.
1310
     */
1311
38.8k
    if (rbio == SSL_get_rbio(s)) {
1312
0
        SSL_set0_wbio(s, wbio);
1313
0
        return;
1314
0
    }
1315
    /*
1316
     * There is an asymmetry here for historical reasons. If only the rbio is
1317
     * changed AND the rbio and wbio were originally different, then we only
1318
     * adopt one reference.
1319
     */
1320
38.8k
    if (wbio == SSL_get_wbio(s) && SSL_get_rbio(s) != SSL_get_wbio(s)) {
1321
0
        SSL_set0_rbio(s, rbio);
1322
0
        return;
1323
0
    }
1324
1325
    /* Otherwise, adopt both references. */
1326
38.8k
    SSL_set0_rbio(s, rbio);
1327
38.8k
    SSL_set0_wbio(s, wbio);
1328
38.8k
}
1329
1330
BIO *SSL_get_rbio(const SSL *s)
1331
52.4k
{
1332
52.4k
    return s->rbio;
1333
52.4k
}
1334
1335
BIO *SSL_get_wbio(const SSL *s)
1336
26.2k
{
1337
26.2k
    if (s->bbio != NULL) {
1338
        /*
1339
         * If |bbio| is active, the true caller-configured BIO is its
1340
         * |next_bio|.
1341
         */
1342
0
        return BIO_next(s->bbio);
1343
0
    }
1344
26.2k
    return s->wbio;
1345
26.2k
}
1346
1347
int SSL_get_fd(const SSL *s)
1348
0
{
1349
0
    return SSL_get_rfd(s);
1350
0
}
1351
1352
int SSL_get_rfd(const SSL *s)
1353
0
{
1354
0
    int ret = -1;
1355
0
    BIO *b, *r;
1356
1357
0
    b = SSL_get_rbio(s);
1358
0
    r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1359
0
    if (r != NULL)
1360
0
        BIO_get_fd(r, &ret);
1361
0
    return ret;
1362
0
}
1363
1364
int SSL_get_wfd(const SSL *s)
1365
0
{
1366
0
    int ret = -1;
1367
0
    BIO *b, *r;
1368
1369
0
    b = SSL_get_wbio(s);
1370
0
    r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1371
0
    if (r != NULL)
1372
0
        BIO_get_fd(r, &ret);
1373
0
    return ret;
1374
0
}
1375
1376
#ifndef OPENSSL_NO_SOCK
1377
int SSL_set_fd(SSL *s, int fd)
1378
0
{
1379
0
    int ret = 0;
1380
0
    BIO *bio = NULL;
1381
1382
0
    bio = BIO_new(BIO_s_socket());
1383
1384
0
    if (bio == NULL) {
1385
0
        ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
1386
0
        goto err;
1387
0
    }
1388
0
    BIO_set_fd(bio, fd, BIO_NOCLOSE);
1389
0
    SSL_set_bio(s, bio, bio);
1390
#ifndef OPENSSL_NO_KTLS
1391
    /*
1392
     * The new socket is created successfully regardless of ktls_enable.
1393
     * ktls_enable doesn't change any functionality of the socket, except
1394
     * changing the setsockopt to enable the processing of ktls_start.
1395
     * Thus, it is not a problem to call it for non-TLS sockets.
1396
     */
1397
    ktls_enable(fd);
1398
#endif /* OPENSSL_NO_KTLS */
1399
0
    ret = 1;
1400
0
 err:
1401
0
    return ret;
1402
0
}
1403
1404
int SSL_set_wfd(SSL *s, int fd)
1405
0
{
1406
0
    BIO *rbio = SSL_get_rbio(s);
1407
1408
0
    if (rbio == NULL || BIO_method_type(rbio) != BIO_TYPE_SOCKET
1409
0
        || (int)BIO_get_fd(rbio, NULL) != fd) {
1410
0
        BIO *bio = BIO_new(BIO_s_socket());
1411
1412
0
        if (bio == NULL) {
1413
0
            ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
1414
0
            return 0;
1415
0
        }
1416
0
        BIO_set_fd(bio, fd, BIO_NOCLOSE);
1417
0
        SSL_set0_wbio(s, bio);
1418
#ifndef OPENSSL_NO_KTLS
1419
        /*
1420
         * The new socket is created successfully regardless of ktls_enable.
1421
         * ktls_enable doesn't change any functionality of the socket, except
1422
         * changing the setsockopt to enable the processing of ktls_start.
1423
         * Thus, it is not a problem to call it for non-TLS sockets.
1424
         */
1425
        ktls_enable(fd);
1426
#endif /* OPENSSL_NO_KTLS */
1427
0
    } else {
1428
0
        BIO_up_ref(rbio);
1429
0
        SSL_set0_wbio(s, rbio);
1430
0
    }
1431
0
    return 1;
1432
0
}
1433
1434
int SSL_set_rfd(SSL *s, int fd)
1435
0
{
1436
0
    BIO *wbio = SSL_get_wbio(s);
1437
1438
0
    if (wbio == NULL || BIO_method_type(wbio) != BIO_TYPE_SOCKET
1439
0
        || ((int)BIO_get_fd(wbio, NULL) != fd)) {
1440
0
        BIO *bio = BIO_new(BIO_s_socket());
1441
1442
0
        if (bio == NULL) {
1443
0
            ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
1444
0
            return 0;
1445
0
        }
1446
0
        BIO_set_fd(bio, fd, BIO_NOCLOSE);
1447
0
        SSL_set0_rbio(s, bio);
1448
0
    } else {
1449
0
        BIO_up_ref(wbio);
1450
0
        SSL_set0_rbio(s, wbio);
1451
0
    }
1452
1453
0
    return 1;
1454
0
}
1455
#endif
1456
1457
/* return length of latest Finished message we sent, copy to 'buf' */
1458
size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
1459
0
{
1460
0
    size_t ret = 0;
1461
1462
0
    ret = s->s3.tmp.finish_md_len;
1463
0
    if (count > ret)
1464
0
        count = ret;
1465
0
    memcpy(buf, s->s3.tmp.finish_md, count);
1466
0
    return ret;
1467
0
}
1468
1469
/* return length of latest Finished message we expected, copy to 'buf' */
1470
size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
1471
0
{
1472
0
    size_t ret = 0;
1473
1474
0
    ret = s->s3.tmp.peer_finish_md_len;
1475
0
    if (count > ret)
1476
0
        count = ret;
1477
0
    memcpy(buf, s->s3.tmp.peer_finish_md, count);
1478
0
    return ret;
1479
0
}
1480
1481
int SSL_get_verify_mode(const SSL *s)
1482
0
{
1483
0
    return s->verify_mode;
1484
0
}
1485
1486
int SSL_get_verify_depth(const SSL *s)
1487
0
{
1488
0
    return X509_VERIFY_PARAM_get_depth(s->param);
1489
0
}
1490
1491
0
int (*SSL_get_verify_callback(const SSL *s)) (int, X509_STORE_CTX *) {
1492
0
    return s->verify_callback;
1493
0
}
1494
1495
int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
1496
0
{
1497
0
    return ctx->verify_mode;
1498
0
}
1499
1500
int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
1501
0
{
1502
0
    return X509_VERIFY_PARAM_get_depth(ctx->param);
1503
0
}
1504
1505
0
int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx)) (int, X509_STORE_CTX *) {
1506
0
    return ctx->default_verify_callback;
1507
0
}
1508
1509
void SSL_set_verify(SSL *s, int mode,
1510
                    int (*callback) (int ok, X509_STORE_CTX *ctx))
1511
0
{
1512
0
    s->verify_mode = mode;
1513
0
    if (callback != NULL)
1514
0
        s->verify_callback = callback;
1515
0
}
1516
1517
void SSL_set_verify_depth(SSL *s, int depth)
1518
0
{
1519
0
    X509_VERIFY_PARAM_set_depth(s->param, depth);
1520
0
}
1521
1522
void SSL_set_read_ahead(SSL *s, int yes)
1523
0
{
1524
0
    RECORD_LAYER_set_read_ahead(&s->rlayer, yes);
1525
0
}
1526
1527
int SSL_get_read_ahead(const SSL *s)
1528
0
{
1529
0
    return RECORD_LAYER_get_read_ahead(&s->rlayer);
1530
0
}
1531
1532
int SSL_pending(const SSL *s)
1533
0
{
1534
0
    size_t pending = s->method->ssl_pending(s);
1535
1536
    /*
1537
     * SSL_pending cannot work properly if read-ahead is enabled
1538
     * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)), and it is
1539
     * impossible to fix since SSL_pending cannot report errors that may be
1540
     * observed while scanning the new data. (Note that SSL_pending() is
1541
     * often used as a boolean value, so we'd better not return -1.)
1542
     *
1543
     * SSL_pending also cannot work properly if the value >INT_MAX. In that case
1544
     * we just return INT_MAX.
1545
     */
1546
0
    return pending < INT_MAX ? (int)pending : INT_MAX;
1547
0
}
1548
1549
int SSL_has_pending(const SSL *s)
1550
0
{
1551
    /*
1552
     * Similar to SSL_pending() but returns a 1 to indicate that we have
1553
     * processed or unprocessed data available or 0 otherwise (as opposed to the
1554
     * number of bytes available). Unlike SSL_pending() this will take into
1555
     * account read_ahead data. A 1 return simply indicates that we have data.
1556
     * That data may not result in any application data, or we may fail to parse
1557
     * the records for some reason.
1558
     */
1559
1560
    /* Check buffered app data if any first */
1561
0
    if (SSL_IS_DTLS(s)) {
1562
0
        DTLS1_RECORD_DATA *rdata;
1563
0
        pitem *item, *iter;
1564
1565
0
        iter = pqueue_iterator(s->rlayer.d->buffered_app_data.q);
1566
0
        while ((item = pqueue_next(&iter)) != NULL) {
1567
0
            rdata = item->data;
1568
0
            if (rdata->rrec.length > 0)
1569
0
                return 1;
1570
0
        }
1571
0
    }
1572
1573
0
    if (RECORD_LAYER_processed_read_pending(&s->rlayer))
1574
0
        return 1;
1575
1576
0
    return RECORD_LAYER_read_pending(&s->rlayer);
1577
0
}
1578
1579
X509 *SSL_get1_peer_certificate(const SSL *s)
1580
0
{
1581
0
    X509 *r = SSL_get0_peer_certificate(s);
1582
1583
0
    if (r != NULL)
1584
0
        X509_up_ref(r);
1585
1586
0
    return r;
1587
0
}
1588
1589
X509 *SSL_get0_peer_certificate(const SSL *s)
1590
0
{
1591
0
    if ((s == NULL) || (s->session == NULL))
1592
0
        return NULL;
1593
0
    else
1594
0
        return s->session->peer;
1595
0
}
1596
1597
STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
1598
0
{
1599
0
    STACK_OF(X509) *r;
1600
1601
0
    if ((s == NULL) || (s->session == NULL))
1602
0
        r = NULL;
1603
0
    else
1604
0
        r = s->session->peer_chain;
1605
1606
    /*
1607
     * If we are a client, cert_chain includes the peer's own certificate; if
1608
     * we are a server, it does not.
1609
     */
1610
1611
0
    return r;
1612
0
}
1613
1614
/*
1615
 * Now in theory, since the calling process own 't' it should be safe to
1616
 * modify.  We need to be able to read f without being hassled
1617
 */
1618
int SSL_copy_session_id(SSL *t, const SSL *f)
1619
0
{
1620
0
    int i;
1621
    /* Do we need to do SSL locking? */
1622
0
    if (!SSL_set_session(t, SSL_get_session(f))) {
1623
0
        return 0;
1624
0
    }
1625
1626
    /*
1627
     * what if we are setup for one protocol version but want to talk another
1628
     */
1629
0
    if (t->method != f->method) {
1630
0
        t->method->ssl_free(t);
1631
0
        t->method = f->method;
1632
0
        if (t->method->ssl_new(t) == 0)
1633
0
            return 0;
1634
0
    }
1635
1636
0
    CRYPTO_UP_REF(&f->cert->references, &i, f->cert->lock);
1637
0
    ssl_cert_free(t->cert);
1638
0
    t->cert = f->cert;
1639
0
    if (!SSL_set_session_id_context(t, f->sid_ctx, (int)f->sid_ctx_length)) {
1640
0
        return 0;
1641
0
    }
1642
1643
0
    return 1;
1644
0
}
1645
1646
/* Fix this so it checks all the valid key/cert options */
1647
int SSL_CTX_check_private_key(const SSL_CTX *ctx)
1648
0
{
1649
0
    if ((ctx == NULL) || (ctx->cert->key->x509 == NULL)) {
1650
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CERTIFICATE_ASSIGNED);
1651
0
        return 0;
1652
0
    }
1653
0
    if (ctx->cert->key->privatekey == NULL) {
1654
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
1655
0
        return 0;
1656
0
    }
1657
0
    return X509_check_private_key
1658
0
            (ctx->cert->key->x509, ctx->cert->key->privatekey);
1659
0
}
1660
1661
/* Fix this function so that it takes an optional type parameter */
1662
int SSL_check_private_key(const SSL *ssl)
1663
0
{
1664
0
    if (ssl == NULL) {
1665
0
        ERR_raise(ERR_LIB_SSL, ERR_R_PASSED_NULL_PARAMETER);
1666
0
        return 0;
1667
0
    }
1668
0
    if (ssl->cert->key->x509 == NULL) {
1669
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CERTIFICATE_ASSIGNED);
1670
0
        return 0;
1671
0
    }
1672
0
    if (ssl->cert->key->privatekey == NULL) {
1673
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
1674
0
        return 0;
1675
0
    }
1676
0
    return X509_check_private_key(ssl->cert->key->x509,
1677
0
                                   ssl->cert->key->privatekey);
1678
0
}
1679
1680
int SSL_waiting_for_async(SSL *s)
1681
0
{
1682
0
    if (s->job)
1683
0
        return 1;
1684
1685
0
    return 0;
1686
0
}
1687
1688
int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds)
1689
0
{
1690
0
    ASYNC_WAIT_CTX *ctx = s->waitctx;
1691
1692
0
    if (ctx == NULL)
1693
0
        return 0;
1694
0
    return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds);
1695
0
}
1696
1697
int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, size_t *numaddfds,
1698
                              OSSL_ASYNC_FD *delfd, size_t *numdelfds)
1699
0
{
1700
0
    ASYNC_WAIT_CTX *ctx = s->waitctx;
1701
1702
0
    if (ctx == NULL)
1703
0
        return 0;
1704
0
    return ASYNC_WAIT_CTX_get_changed_fds(ctx, addfd, numaddfds, delfd,
1705
0
                                          numdelfds);
1706
0
}
1707
1708
int SSL_CTX_set_async_callback(SSL_CTX *ctx, SSL_async_callback_fn callback)
1709
0
{
1710
0
    ctx->async_cb = callback;
1711
0
    return 1;
1712
0
}
1713
1714
int SSL_CTX_set_async_callback_arg(SSL_CTX *ctx, void *arg)
1715
0
{
1716
0
    ctx->async_cb_arg = arg;
1717
0
    return 1;
1718
0
}
1719
1720
int SSL_set_async_callback(SSL *s, SSL_async_callback_fn callback)
1721
0
{
1722
0
    s->async_cb = callback;
1723
0
    return 1;
1724
0
}
1725
1726
int SSL_set_async_callback_arg(SSL *s, void *arg)
1727
0
{
1728
0
    s->async_cb_arg = arg;
1729
0
    return 1;
1730
0
}
1731
1732
int SSL_get_async_status(SSL *s, int *status)
1733
0
{
1734
0
    ASYNC_WAIT_CTX *ctx = s->waitctx;
1735
1736
0
    if (ctx == NULL)
1737
0
        return 0;
1738
0
    *status = ASYNC_WAIT_CTX_get_status(ctx);
1739
0
    return 1;
1740
0
}
1741
1742
int SSL_accept(SSL *s)
1743
4.56k
{
1744
4.56k
    if (s->handshake_func == NULL) {
1745
        /* Not properly initialized yet */
1746
0
        SSL_set_accept_state(s);
1747
0
    }
1748
1749
4.56k
    return SSL_do_handshake(s);
1750
4.56k
}
1751
1752
int SSL_connect(SSL *s)
1753
0
{
1754
0
    if (s->handshake_func == NULL) {
1755
        /* Not properly initialized yet */
1756
0
        SSL_set_connect_state(s);
1757
0
    }
1758
1759
0
    return SSL_do_handshake(s);
1760
0
}
1761
1762
long SSL_get_default_timeout(const SSL *s)
1763
0
{
1764
0
    return s->method->get_timeout();
1765
0
}
1766
1767
static int ssl_async_wait_ctx_cb(void *arg)
1768
0
{
1769
0
    SSL *s = (SSL *)arg;
1770
1771
0
    return s->async_cb(s, s->async_cb_arg);
1772
0
}
1773
1774
static int ssl_start_async_job(SSL *s, struct ssl_async_args *args,
1775
                               int (*func) (void *))
1776
0
{
1777
0
    int ret;
1778
0
    if (s->waitctx == NULL) {
1779
0
        s->waitctx = ASYNC_WAIT_CTX_new();
1780
0
        if (s->waitctx == NULL)
1781
0
            return -1;
1782
0
        if (s->async_cb != NULL
1783
0
            && !ASYNC_WAIT_CTX_set_callback
1784
0
                 (s->waitctx, ssl_async_wait_ctx_cb, s))
1785
0
            return -1;
1786
0
    }
1787
1788
0
    s->rwstate = SSL_NOTHING;
1789
0
    switch (ASYNC_start_job(&s->job, s->waitctx, &ret, func, args,
1790
0
                            sizeof(struct ssl_async_args))) {
1791
0
    case ASYNC_ERR:
1792
0
        s->rwstate = SSL_NOTHING;
1793
0
        ERR_raise(ERR_LIB_SSL, SSL_R_FAILED_TO_INIT_ASYNC);
1794
0
        return -1;
1795
0
    case ASYNC_PAUSE:
1796
0
        s->rwstate = SSL_ASYNC_PAUSED;
1797
0
        return -1;
1798
0
    case ASYNC_NO_JOBS:
1799
0
        s->rwstate = SSL_ASYNC_NO_JOBS;
1800
0
        return -1;
1801
0
    case ASYNC_FINISH:
1802
0
        s->job = NULL;
1803
0
        return ret;
1804
0
    default:
1805
0
        s->rwstate = SSL_NOTHING;
1806
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
1807
        /* Shouldn't happen */
1808
0
        return -1;
1809
0
    }
1810
0
}
1811
1812
static int ssl_io_intern(void *vargs)
1813
0
{
1814
0
    struct ssl_async_args *args;
1815
0
    SSL *s;
1816
0
    void *buf;
1817
0
    size_t num;
1818
1819
0
    args = (struct ssl_async_args *)vargs;
1820
0
    s = args->s;
1821
0
    buf = args->buf;
1822
0
    num = args->num;
1823
0
    switch (args->type) {
1824
0
    case READFUNC:
1825
0
        return args->f.func_read(s, buf, num, &s->asyncrw);
1826
0
    case WRITEFUNC:
1827
0
        return args->f.func_write(s, buf, num, &s->asyncrw);
1828
0
    case OTHERFUNC:
1829
0
        return args->f.func_other(s);
1830
0
    }
1831
0
    return -1;
1832
0
}
1833
1834
int ssl_read_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
1835
{
1836
    if (s->handshake_func == NULL) {
1837
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
1838
        return -1;
1839
    }
1840
1841
    if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
1842
        s->rwstate = SSL_NOTHING;
1843
        return 0;
1844
    }
1845
1846
    if (s->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY
1847
                || s->early_data_state == SSL_EARLY_DATA_ACCEPT_RETRY) {
1848
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1849
        return 0;
1850
    }
1851
    /*
1852
     * If we are a client and haven't received the ServerHello etc then we
1853
     * better do that
1854
     */
1855
    ossl_statem_check_finish_init(s, 0);
1856
1857
    if ((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1858
        struct ssl_async_args args;
1859
        int ret;
1860
1861
        args.s = s;
1862
        args.buf = buf;
1863
        args.num = num;
1864
        args.type = READFUNC;
1865
        args.f.func_read = s->method->ssl_read;
1866
1867
        ret = ssl_start_async_job(s, &args, ssl_io_intern);
1868
        *readbytes = s->asyncrw;
1869
        return ret;
1870
    } else {
1871
        return s->method->ssl_read(s, buf, num, readbytes);
1872
    }
1873
}
1874
1875
int SSL_read(SSL *s, void *buf, int num)
1876
11.6k
{
1877
11.6k
    int ret;
1878
11.6k
    size_t readbytes;
1879
1880
11.6k
    if (num < 0) {
1881
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
1882
0
        return -1;
1883
0
    }
1884
1885
11.6k
    ret = ssl_read_internal(s, buf, (size_t)num, &readbytes);
1886
1887
    /*
1888
     * The cast is safe here because ret should be <= INT_MAX because num is
1889
     * <= INT_MAX
1890
     */
1891
11.6k
    if (ret > 0)
1892
11.1k
        ret = (int)readbytes;
1893
1894
11.6k
    return ret;
1895
11.6k
}
1896
1897
int SSL_read_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
1898
0
{
1899
0
    int ret = ssl_read_internal(s, buf, num, readbytes);
1900
1901
0
    if (ret < 0)
1902
0
        ret = 0;
1903
0
    return ret;
1904
0
}
1905
1906
int SSL_read_early_data(SSL *s, void *buf, size_t num, size_t *readbytes)
1907
4.56k
{
1908
4.56k
    int ret;
1909
1910
4.56k
    if (!s->server) {
1911
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1912
0
        return SSL_READ_EARLY_DATA_ERROR;
1913
0
    }
1914
1915
4.56k
    switch (s->early_data_state) {
1916
4.56k
    case SSL_EARLY_DATA_NONE:
1917
4.56k
        if (!SSL_in_before(s)) {
1918
0
            ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1919
0
            return SSL_READ_EARLY_DATA_ERROR;
1920
0
        }
1921
        /* fall through */
1922
1923
4.56k
    case SSL_EARLY_DATA_ACCEPT_RETRY:
1924
4.56k
        s->early_data_state = SSL_EARLY_DATA_ACCEPTING;
1925
4.56k
        ret = SSL_accept(s);
1926
4.56k
        if (ret <= 0) {
1927
            /* NBIO or error */
1928
3.95k
            s->early_data_state = SSL_EARLY_DATA_ACCEPT_RETRY;
1929
3.95k
            return SSL_READ_EARLY_DATA_ERROR;
1930
3.95k
        }
1931
        /* fall through */
1932
1933
606
    case SSL_EARLY_DATA_READ_RETRY:
1934
606
        if (s->ext.early_data == SSL_EARLY_DATA_ACCEPTED) {
1935
0
            s->early_data_state = SSL_EARLY_DATA_READING;
1936
0
            ret = SSL_read_ex(s, buf, num, readbytes);
1937
            /*
1938
             * State machine will update early_data_state to
1939
             * SSL_EARLY_DATA_FINISHED_READING if we get an EndOfEarlyData
1940
             * message
1941
             */
1942
0
            if (ret > 0 || (ret <= 0 && s->early_data_state
1943
0
                                        != SSL_EARLY_DATA_FINISHED_READING)) {
1944
0
                s->early_data_state = SSL_EARLY_DATA_READ_RETRY;
1945
0
                return ret > 0 ? SSL_READ_EARLY_DATA_SUCCESS
1946
0
                               : SSL_READ_EARLY_DATA_ERROR;
1947
0
            }
1948
606
        } else {
1949
606
            s->early_data_state = SSL_EARLY_DATA_FINISHED_READING;
1950
606
        }
1951
606
        *readbytes = 0;
1952
606
        return SSL_READ_EARLY_DATA_FINISH;
1953
1954
0
    default:
1955
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1956
0
        return SSL_READ_EARLY_DATA_ERROR;
1957
4.56k
    }
1958
4.56k
}
1959
1960
int SSL_get_early_data_status(const SSL *s)
1961
0
{
1962
0
    return s->ext.early_data;
1963
0
}
1964
1965
static int ssl_peek_internal(SSL *s, void *buf, size_t num, size_t *readbytes)
1966
0
{
1967
0
    if (s->handshake_func == NULL) {
1968
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
1969
0
        return -1;
1970
0
    }
1971
1972
0
    if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
1973
0
        return 0;
1974
0
    }
1975
0
    if ((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1976
0
        struct ssl_async_args args;
1977
0
        int ret;
1978
1979
0
        args.s = s;
1980
0
        args.buf = buf;
1981
0
        args.num = num;
1982
0
        args.type = READFUNC;
1983
0
        args.f.func_read = s->method->ssl_peek;
1984
1985
0
        ret = ssl_start_async_job(s, &args, ssl_io_intern);
1986
0
        *readbytes = s->asyncrw;
1987
0
        return ret;
1988
0
    } else {
1989
0
        return s->method->ssl_peek(s, buf, num, readbytes);
1990
0
    }
1991
0
}
1992
1993
int SSL_peek(SSL *s, void *buf, int num)
1994
0
{
1995
0
    int ret;
1996
0
    size_t readbytes;
1997
1998
0
    if (num < 0) {
1999
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
2000
0
        return -1;
2001
0
    }
2002
2003
0
    ret = ssl_peek_internal(s, buf, (size_t)num, &readbytes);
2004
2005
    /*
2006
     * The cast is safe here because ret should be <= INT_MAX because num is
2007
     * <= INT_MAX
2008
     */
2009
0
    if (ret > 0)
2010
0
        ret = (int)readbytes;
2011
2012
0
    return ret;
2013
0
}
2014
2015
2016
int SSL_peek_ex(SSL *s, void *buf, size_t num, size_t *readbytes)
2017
0
{
2018
0
    int ret = ssl_peek_internal(s, buf, num, readbytes);
2019
2020
0
    if (ret < 0)
2021
0
        ret = 0;
2022
0
    return ret;
2023
0
}
2024
2025
int ssl_write_internal(SSL *s, const void *buf, size_t num, size_t *written)
2026
0
{
2027
0
    if (s->handshake_func == NULL) {
2028
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2029
0
        return -1;
2030
0
    }
2031
2032
0
    if (s->shutdown & SSL_SENT_SHUTDOWN) {
2033
0
        s->rwstate = SSL_NOTHING;
2034
0
        ERR_raise(ERR_LIB_SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
2035
0
        return -1;
2036
0
    }
2037
2038
0
    if (s->early_data_state == SSL_EARLY_DATA_CONNECT_RETRY
2039
0
                || s->early_data_state == SSL_EARLY_DATA_ACCEPT_RETRY
2040
0
                || s->early_data_state == SSL_EARLY_DATA_READ_RETRY) {
2041
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2042
0
        return 0;
2043
0
    }
2044
    /* If we are a client and haven't sent the Finished we better do that */
2045
0
    ossl_statem_check_finish_init(s, 1);
2046
2047
0
    if ((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
2048
0
        int ret;
2049
0
        struct ssl_async_args args;
2050
2051
0
        args.s = s;
2052
0
        args.buf = (void *)buf;
2053
0
        args.num = num;
2054
0
        args.type = WRITEFUNC;
2055
0
        args.f.func_write = s->method->ssl_write;
2056
2057
0
        ret = ssl_start_async_job(s, &args, ssl_io_intern);
2058
0
        *written = s->asyncrw;
2059
0
        return ret;
2060
0
    } else {
2061
0
        return s->method->ssl_write(s, buf, num, written);
2062
0
    }
2063
0
}
2064
2065
ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size, int flags)
2066
0
{
2067
0
    ossl_ssize_t ret;
2068
2069
0
    if (s->handshake_func == NULL) {
2070
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2071
0
        return -1;
2072
0
    }
2073
2074
0
    if (s->shutdown & SSL_SENT_SHUTDOWN) {
2075
0
        s->rwstate = SSL_NOTHING;
2076
0
        ERR_raise(ERR_LIB_SSL, SSL_R_PROTOCOL_IS_SHUTDOWN);
2077
0
        return -1;
2078
0
    }
2079
2080
0
    if (!BIO_get_ktls_send(s->wbio)) {
2081
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2082
0
        return -1;
2083
0
    }
2084
2085
    /* If we have an alert to send, lets send it */
2086
0
    if (s->s3.alert_dispatch) {
2087
0
        ret = (ossl_ssize_t)s->method->ssl_dispatch_alert(s);
2088
0
        if (ret <= 0) {
2089
            /* SSLfatal() already called if appropriate */
2090
0
            return ret;
2091
0
        }
2092
        /* if it went, fall through and send more stuff */
2093
0
    }
2094
2095
0
    s->rwstate = SSL_WRITING;
2096
0
    if (BIO_flush(s->wbio) <= 0) {
2097
0
        if (!BIO_should_retry(s->wbio)) {
2098
0
            s->rwstate = SSL_NOTHING;
2099
0
        } else {
2100
0
#ifdef EAGAIN
2101
0
            set_sys_error(EAGAIN);
2102
0
#endif
2103
0
        }
2104
0
        return -1;
2105
0
    }
2106
2107
0
#ifdef OPENSSL_NO_KTLS
2108
0
    ERR_raise_data(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR,
2109
0
                   "can't call ktls_sendfile(), ktls disabled");
2110
0
    return -1;
2111
#else
2112
    ret = ktls_sendfile(SSL_get_wfd(s), fd, offset, size, flags);
2113
    if (ret < 0) {
2114
#if defined(EAGAIN) && defined(EINTR) && defined(EBUSY)
2115
        if ((get_last_sys_error() == EAGAIN) ||
2116
            (get_last_sys_error() == EINTR) ||
2117
            (get_last_sys_error() == EBUSY))
2118
            BIO_set_retry_write(s->wbio);
2119
        else
2120
#endif
2121
            ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2122
        return ret;
2123
    }
2124
    s->rwstate = SSL_NOTHING;
2125
    return ret;
2126
#endif
2127
0
}
2128
2129
int SSL_write(SSL *s, const void *buf, int num)
2130
0
{
2131
0
    int ret;
2132
0
    size_t written;
2133
2134
0
    if (num < 0) {
2135
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
2136
0
        return -1;
2137
0
    }
2138
2139
0
    ret = ssl_write_internal(s, buf, (size_t)num, &written);
2140
2141
    /*
2142
     * The cast is safe here because ret should be <= INT_MAX because num is
2143
     * <= INT_MAX
2144
     */
2145
0
    if (ret > 0)
2146
0
        ret = (int)written;
2147
2148
0
    return ret;
2149
0
}
2150
2151
int SSL_write_ex(SSL *s, const void *buf, size_t num, size_t *written)
2152
0
{
2153
0
    int ret = ssl_write_internal(s, buf, num, written);
2154
2155
0
    if (ret < 0)
2156
0
        ret = 0;
2157
0
    return ret;
2158
0
}
2159
2160
int SSL_write_early_data(SSL *s, const void *buf, size_t num, size_t *written)
2161
0
{
2162
0
    int ret, early_data_state;
2163
0
    size_t writtmp;
2164
0
    uint32_t partialwrite;
2165
2166
0
    switch (s->early_data_state) {
2167
0
    case SSL_EARLY_DATA_NONE:
2168
0
        if (s->server
2169
0
                || !SSL_in_before(s)
2170
0
                || ((s->session == NULL || s->session->ext.max_early_data == 0)
2171
0
                     && (s->psk_use_session_cb == NULL))) {
2172
0
            ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2173
0
            return 0;
2174
0
        }
2175
        /* fall through */
2176
2177
0
    case SSL_EARLY_DATA_CONNECT_RETRY:
2178
0
        s->early_data_state = SSL_EARLY_DATA_CONNECTING;
2179
0
        ret = SSL_connect(s);
2180
0
        if (ret <= 0) {
2181
            /* NBIO or error */
2182
0
            s->early_data_state = SSL_EARLY_DATA_CONNECT_RETRY;
2183
0
            return 0;
2184
0
        }
2185
        /* fall through */
2186
2187
0
    case SSL_EARLY_DATA_WRITE_RETRY:
2188
0
        s->early_data_state = SSL_EARLY_DATA_WRITING;
2189
        /*
2190
         * We disable partial write for early data because we don't keep track
2191
         * of how many bytes we've written between the SSL_write_ex() call and
2192
         * the flush if the flush needs to be retried)
2193
         */
2194
0
        partialwrite = s->mode & SSL_MODE_ENABLE_PARTIAL_WRITE;
2195
0
        s->mode &= ~SSL_MODE_ENABLE_PARTIAL_WRITE;
2196
0
        ret = SSL_write_ex(s, buf, num, &writtmp);
2197
0
        s->mode |= partialwrite;
2198
0
        if (!ret) {
2199
0
            s->early_data_state = SSL_EARLY_DATA_WRITE_RETRY;
2200
0
            return ret;
2201
0
        }
2202
0
        s->early_data_state = SSL_EARLY_DATA_WRITE_FLUSH;
2203
        /* fall through */
2204
2205
0
    case SSL_EARLY_DATA_WRITE_FLUSH:
2206
        /* The buffering BIO is still in place so we need to flush it */
2207
0
        if (statem_flush(s) != 1)
2208
0
            return 0;
2209
0
        *written = num;
2210
0
        s->early_data_state = SSL_EARLY_DATA_WRITE_RETRY;
2211
0
        return 1;
2212
2213
0
    case SSL_EARLY_DATA_FINISHED_READING:
2214
0
    case SSL_EARLY_DATA_READ_RETRY:
2215
0
        early_data_state = s->early_data_state;
2216
        /* We are a server writing to an unauthenticated client */
2217
0
        s->early_data_state = SSL_EARLY_DATA_UNAUTH_WRITING;
2218
0
        ret = SSL_write_ex(s, buf, num, written);
2219
        /* The buffering BIO is still in place */
2220
0
        if (ret)
2221
0
            (void)BIO_flush(s->wbio);
2222
0
        s->early_data_state = early_data_state;
2223
0
        return ret;
2224
2225
0
    default:
2226
0
        ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2227
0
        return 0;
2228
0
    }
2229
0
}
2230
2231
int SSL_shutdown(SSL *s)
2232
0
{
2233
    /*
2234
     * Note that this function behaves differently from what one might
2235
     * expect.  Return values are 0 for no success (yet), 1 for success; but
2236
     * calling it once is usually not enough, even if blocking I/O is used
2237
     * (see ssl3_shutdown).
2238
     */
2239
2240
0
    if (s->handshake_func == NULL) {
2241
0
        ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED);
2242
0
        return -1;
2243
0
    }
2244
2245
0
    if (!SSL_in_init(s)) {
2246
0
        if ((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
2247
0
            struct ssl_async_args args;
2248
2249
0
            memset(&args, 0, sizeof(args));
2250
0
            args.s = s;
2251
0
            args.type = OTHERFUNC;
2252
0
            args.f.func_other = s->method->ssl_shutdown;
2253
2254
0
            return ssl_start_async_job(s, &args, ssl_io_intern);
2255
0
        } else {
2256
0
            return s->method->ssl_shutdown(s);
2257
0
        }
2258
0
    } else {
2259
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SHUTDOWN_WHILE_IN_INIT);
2260
0
        return -1;
2261
0
    }
2262
0
}
2263
2264
int SSL_key_update(SSL *s, int updatetype)
2265
0
{
2266
0
    if (!SSL_IS_TLS13(s)) {
2267
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
2268
0
        return 0;
2269
0
    }
2270
2271
0
    if (updatetype != SSL_KEY_UPDATE_NOT_REQUESTED
2272
0
            && updatetype != SSL_KEY_UPDATE_REQUESTED) {
2273
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_KEY_UPDATE_TYPE);
2274
0
        return 0;
2275
0
    }
2276
2277
0
    if (!SSL_is_init_finished(s)) {
2278
0
        ERR_raise(ERR_LIB_SSL, SSL_R_STILL_IN_INIT);
2279
0
        return 0;
2280
0
    }
2281
2282
0
    if (RECORD_LAYER_write_pending(&s->rlayer)) {
2283
0
        ERR_raise(ERR_LIB_SSL, SSL_R_BAD_WRITE_RETRY);
2284
0
        return 0;
2285
0
    }
2286
2287
0
    ossl_statem_set_in_init(s, 1);
2288
0
    s->key_update = updatetype;
2289
0
    return 1;
2290
0
}
2291
2292
int SSL_get_key_update_type(const SSL *s)
2293
0
{
2294
0
    return s->key_update;
2295
0
}
2296
2297
/*
2298
 * Can we accept a renegotiation request?  If yes, set the flag and
2299
 * return 1 if yes. If not, raise error and return 0.
2300
 */
2301
static int can_renegotiate(const SSL *s)
2302
208
{
2303
208
    if (SSL_IS_TLS13(s)) {
2304
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
2305
0
        return 0;
2306
0
    }
2307
2308
208
    if ((s->options & SSL_OP_NO_RENEGOTIATION) != 0) {
2309
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_RENEGOTIATION);
2310
0
        return 0;
2311
0
    }
2312
2313
208
    return 1;
2314
208
}
2315
2316
int SSL_renegotiate(SSL *s)
2317
0
{
2318
0
    if (!can_renegotiate(s))
2319
0
        return 0;
2320
2321
0
    s->renegotiate = 1;
2322
0
    s->new_session = 1;
2323
0
    return s->method->ssl_renegotiate(s);
2324
0
}
2325
2326
int SSL_renegotiate_abbreviated(SSL *s)
2327
{
2328
    if (!can_renegotiate(s))
2329
        return 0;
2330
2331
    s->renegotiate = 1;
2332
    s->new_session = 0;
2333
    return s->method->ssl_renegotiate(s);
2334
}
2335
2336
int SSL_renegotiate_pending(const SSL *s)
2337
0
{
2338
    /*
2339
     * becomes true when negotiation is requested; false again once a
2340
     * handshake has finished
2341
     */
2342
0
    return (s->renegotiate != 0);
2343
0
}
2344
2345
int SSL_new_session_ticket(SSL *s)
2346
0
{
2347
    /* If we are in init because we're sending tickets, okay to send more. */
2348
0
    if ((SSL_in_init(s) && s->ext.extra_tickets_expected == 0)
2349
0
            || SSL_IS_FIRST_HANDSHAKE(s) || !s->server
2350
0
            || !SSL_IS_TLS13(s))
2351
0
        return 0;
2352
0
    s->ext.extra_tickets_expected++;
2353
0
    if (!RECORD_LAYER_write_pending(&s->rlayer) && !SSL_in_init(s))
2354
0
        ossl_statem_set_in_init(s, 1);
2355
0
    return 1;
2356
0
}
2357
2358
long SSL_ctrl(SSL *s, int cmd, long larg, void *parg)
2359
14.3k
{
2360
14.3k
    long l;
2361
2362
14.3k
    switch (cmd) {
2363
0
    case SSL_CTRL_GET_READ_AHEAD:
2364
0
        return RECORD_LAYER_get_read_ahead(&s->rlayer);
2365
0
    case SSL_CTRL_SET_READ_AHEAD:
2366
0
        l = RECORD_LAYER_get_read_ahead(&s->rlayer);
2367
0
        RECORD_LAYER_set_read_ahead(&s->rlayer, larg);
2368
0
        return l;
2369
2370
0
    case SSL_CTRL_SET_MSG_CALLBACK_ARG:
2371
0
        s->msg_callback_arg = parg;
2372
0
        return 1;
2373
2374
0
    case SSL_CTRL_MODE:
2375
0
        return (s->mode |= larg);
2376
0
    case SSL_CTRL_CLEAR_MODE:
2377
0
        return (s->mode &= ~larg);
2378
0
    case SSL_CTRL_GET_MAX_CERT_LIST:
2379
0
        return (long)s->max_cert_list;
2380
0
    case SSL_CTRL_SET_MAX_CERT_LIST:
2381
0
        if (larg < 0)
2382
0
            return 0;
2383
0
        l = (long)s->max_cert_list;
2384
0
        s->max_cert_list = (size_t)larg;
2385
0
        return l;
2386
0
    case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
2387
0
        if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
2388
0
            return 0;
2389
#ifndef OPENSSL_NO_KTLS
2390
        if (s->wbio != NULL && BIO_get_ktls_send(s->wbio))
2391
            return 0;
2392
#endif /* OPENSSL_NO_KTLS */
2393
0
        s->max_send_fragment = larg;
2394
0
        if (s->max_send_fragment < s->split_send_fragment)
2395
0
            s->split_send_fragment = s->max_send_fragment;
2396
0
        return 1;
2397
0
    case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
2398
0
        if ((size_t)larg > s->max_send_fragment || larg == 0)
2399
0
            return 0;
2400
0
        s->split_send_fragment = larg;
2401
0
        return 1;
2402
0
    case SSL_CTRL_SET_MAX_PIPELINES:
2403
0
        if (larg < 1 || larg > SSL_MAX_PIPELINES)
2404
0
            return 0;
2405
0
        s->max_pipelines = larg;
2406
0
        if (larg > 1)
2407
0
            RECORD_LAYER_set_read_ahead(&s->rlayer, 1);
2408
0
        return 1;
2409
0
    case SSL_CTRL_GET_RI_SUPPORT:
2410
0
        return s->s3.send_connection_binding;
2411
0
    case SSL_CTRL_SET_RETRY_VERIFY:
2412
0
        s->rwstate = SSL_RETRY_VERIFY;
2413
0
        return 1;
2414
0
    case SSL_CTRL_CERT_FLAGS:
2415
0
        return (s->cert->cert_flags |= larg);
2416
0
    case SSL_CTRL_CLEAR_CERT_FLAGS:
2417
0
        return (s->cert->cert_flags &= ~larg);
2418
2419
0
    case SSL_CTRL_GET_RAW_CIPHERLIST:
2420
0
        if (parg) {
2421
0
            if (s->s3.tmp.ciphers_raw == NULL)
2422
0
                return 0;
2423
0
            *(unsigned char **)parg = s->s3.tmp.ciphers_raw;
2424
0
            return (int)s->s3.tmp.ciphers_rawlen;
2425
0
        } else {
2426
0
            return TLS_CIPHER_LEN;
2427
0
        }
2428
0
    case SSL_CTRL_GET_EXTMS_SUPPORT:
2429
0
        if (!s->session || SSL_in_init(s) || ossl_statem_get_in_handshake(s))
2430
0
            return -1;
2431
0
        if (s->session->flags & SSL_SESS_FLAG_EXTMS)
2432
0
            return 1;
2433
0
        else
2434
0
            return 0;
2435
7.18k
    case SSL_CTRL_SET_MIN_PROTO_VERSION:
2436
7.18k
        return ssl_check_allowed_versions(larg, s->max_proto_version)
2437
7.18k
               && ssl_set_version_bound(s->ctx->method->version, (int)larg,
2438
7.18k
                                        &s->min_proto_version);
2439
0
    case SSL_CTRL_GET_MIN_PROTO_VERSION:
2440
0
        return s->min_proto_version;
2441
0
    case SSL_CTRL_SET_MAX_PROTO_VERSION:
2442
0
        return ssl_check_allowed_versions(s->min_proto_version, larg)
2443
0
               && ssl_set_version_bound(s->ctx->method->version, (int)larg,
2444
0
                                        &s->max_proto_version);
2445
0
    case SSL_CTRL_GET_MAX_PROTO_VERSION:
2446
0
        return s->max_proto_version;
2447
7.18k
    default:
2448
7.18k
        return s->method->ssl_ctrl(s, cmd, larg, parg);
2449
14.3k
    }
2450
14.3k
}
2451
2452
long SSL_callback_ctrl(SSL *s, int cmd, void (*fp) (void))
2453
0
{
2454
0
    switch (cmd) {
2455
0
    case SSL_CTRL_SET_MSG_CALLBACK:
2456
0
        s->msg_callback = (void (*)
2457
0
                           (int write_p, int version, int content_type,
2458
0
                            const void *buf, size_t len, SSL *ssl,
2459
0
                            void *arg))(fp);
2460
0
        return 1;
2461
2462
0
    default:
2463
0
        return s->method->ssl_callback_ctrl(s, cmd, fp);
2464
0
    }
2465
0
}
2466
2467
LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
2468
0
{
2469
0
    return ctx->sessions;
2470
0
}
2471
2472
static int ssl_tsan_load(SSL_CTX *ctx, TSAN_QUALIFIER int *stat)
2473
254
{
2474
254
    int res = 0;
2475
2476
254
    if (ssl_tsan_lock(ctx)) {
2477
254
        res = tsan_load(stat);
2478
254
        ssl_tsan_unlock(ctx);
2479
254
    }
2480
254
    return res;
2481
254
}
2482
2483
long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
2484
17.2k
{
2485
17.2k
    long l;
2486
    /* For some cases with ctx == NULL perform syntax checks */
2487
17.2k
    if (ctx == NULL) {
2488
0
        switch (cmd) {
2489
0
        case SSL_CTRL_SET_GROUPS_LIST:
2490
0
            return tls1_set_groups_list(ctx, NULL, NULL, parg);
2491
0
        case SSL_CTRL_SET_SIGALGS_LIST:
2492
0
        case SSL_CTRL_SET_CLIENT_SIGALGS_LIST:
2493
0
            return tls1_set_sigalgs_list(NULL, parg, 0);
2494
0
        default:
2495
0
            return 0;
2496
0
        }
2497
0
    }
2498
2499
17.2k
    switch (cmd) {
2500
0
    case SSL_CTRL_GET_READ_AHEAD:
2501
0
        return ctx->read_ahead;
2502
0
    case SSL_CTRL_SET_READ_AHEAD:
2503
0
        l = ctx->read_ahead;
2504
0
        ctx->read_ahead = larg;
2505
0
        return l;
2506
2507
0
    case SSL_CTRL_SET_MSG_CALLBACK_ARG:
2508
0
        ctx->msg_callback_arg = parg;
2509
0
        return 1;
2510
2511
0
    case SSL_CTRL_GET_MAX_CERT_LIST:
2512
0
        return (long)ctx->max_cert_list;
2513
0
    case SSL_CTRL_SET_MAX_CERT_LIST:
2514
0
        if (larg < 0)
2515
0
            return 0;
2516
0
        l = (long)ctx->max_cert_list;
2517
0
        ctx->max_cert_list = (size_t)larg;
2518
0
        return l;
2519
2520
0
    case SSL_CTRL_SET_SESS_CACHE_SIZE:
2521
0
        if (larg < 0)
2522
0
            return 0;
2523
0
        l = (long)ctx->session_cache_size;
2524
0
        ctx->session_cache_size = (size_t)larg;
2525
0
        return l;
2526
508
    case SSL_CTRL_GET_SESS_CACHE_SIZE:
2527
508
        return (long)ctx->session_cache_size;
2528
0
    case SSL_CTRL_SET_SESS_CACHE_MODE:
2529
0
        l = ctx->session_cache_mode;
2530
0
        ctx->session_cache_mode = larg;
2531
0
        return l;
2532
0
    case SSL_CTRL_GET_SESS_CACHE_MODE:
2533
0
        return ctx->session_cache_mode;
2534
2535
254
    case SSL_CTRL_SESS_NUMBER:
2536
254
        return lh_SSL_SESSION_num_items(ctx->sessions);
2537
0
    case SSL_CTRL_SESS_CONNECT:
2538
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_connect);
2539
0
    case SSL_CTRL_SESS_CONNECT_GOOD:
2540
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_connect_good);
2541
0
    case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
2542
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_connect_renegotiate);
2543
0
    case SSL_CTRL_SESS_ACCEPT:
2544
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_accept);
2545
0
    case SSL_CTRL_SESS_ACCEPT_GOOD:
2546
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_accept_good);
2547
0
    case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
2548
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_accept_renegotiate);
2549
0
    case SSL_CTRL_SESS_HIT:
2550
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_hit);
2551
0
    case SSL_CTRL_SESS_CB_HIT:
2552
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_cb_hit);
2553
0
    case SSL_CTRL_SESS_MISSES:
2554
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_miss);
2555
0
    case SSL_CTRL_SESS_TIMEOUTS:
2556
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_timeout);
2557
0
    case SSL_CTRL_SESS_CACHE_FULL:
2558
0
        return ssl_tsan_load(ctx, &ctx->stats.sess_cache_full);
2559
0
    case SSL_CTRL_MODE:
2560
0
        return (ctx->mode |= larg);
2561
0
    case SSL_CTRL_CLEAR_MODE:
2562
0
        return (ctx->mode &= ~larg);
2563
0
    case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
2564
0
        if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
2565
0
            return 0;
2566
0
        ctx->max_send_fragment = larg;
2567
0
        if (ctx->max_send_fragment < ctx->split_send_fragment)
2568
0
            ctx->split_send_fragment = ctx->max_send_fragment;
2569
0
        return 1;
2570
0
    case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
2571
0
        if ((size_t)larg > ctx->max_send_fragment || larg == 0)
2572
0
            return 0;
2573
0
        ctx->split_send_fragment = larg;
2574
0
        return 1;
2575
0
    case SSL_CTRL_SET_MAX_PIPELINES:
2576
0
        if (larg < 1 || larg > SSL_MAX_PIPELINES)
2577
0
            return 0;
2578
0
        ctx->max_pipelines = larg;
2579
0
        return 1;
2580
0
    case SSL_CTRL_CERT_FLAGS:
2581
0
        return (ctx->cert->cert_flags |= larg);
2582
0
    case SSL_CTRL_CLEAR_CERT_FLAGS:
2583
0
        return (ctx->cert->cert_flags &= ~larg);
2584
16.4k
    case SSL_CTRL_SET_MIN_PROTO_VERSION:
2585
16.4k
        return ssl_check_allowed_versions(larg, ctx->max_proto_version)
2586
16.4k
               && ssl_set_version_bound(ctx->method->version, (int)larg,
2587
16.4k
                                        &ctx->min_proto_version);
2588
0
    case SSL_CTRL_GET_MIN_PROTO_VERSION:
2589
0
        return ctx->min_proto_version;
2590
0
    case SSL_CTRL_SET_MAX_PROTO_VERSION:
2591
0
        return ssl_check_allowed_versions(ctx->min_proto_version, larg)
2592
0
               && ssl_set_version_bound(ctx->method->version, (int)larg,
2593
0
                                        &ctx->max_proto_version);
2594
0
    case SSL_CTRL_GET_MAX_PROTO_VERSION:
2595
0
        return ctx->max_proto_version;
2596
0
    default:
2597
0
        return ctx->method->ssl_ctx_ctrl(ctx, cmd, larg, parg);
2598
17.2k
    }
2599
17.2k
}
2600
2601
long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
2602
0
{
2603
0
    switch (cmd) {
2604
0
    case SSL_CTRL_SET_MSG_CALLBACK:
2605
0
        ctx->msg_callback = (void (*)
2606
0
                             (int write_p, int version, int content_type,
2607
0
                              const void *buf, size_t len, SSL *ssl,
2608
0
                              void *arg))(fp);
2609
0
        return 1;
2610
2611
0
    default:
2612
0
        return ctx->method->ssl_ctx_callback_ctrl(ctx, cmd, fp);
2613
0
    }
2614
0
}
2615
2616
int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
2617
2.38M
{
2618
2.38M
    if (a->id > b->id)
2619
928k
        return 1;
2620
1.45M
    if (a->id < b->id)
2621
1.35M
        return -1;
2622
98.9k
    return 0;
2623
1.45M
}
2624
2625
int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
2626
                          const SSL_CIPHER *const *bp)
2627
51.1M
{
2628
51.1M
    if ((*ap)->id > (*bp)->id)
2629
28.9M
        return 1;
2630
22.2M
    if ((*ap)->id < (*bp)->id)
2631
22.2M
        return -1;
2632
19.4k
    return 0;
2633
22.2M
}
2634
2635
/** return a STACK of the ciphers available for the SSL and in order of
2636
 * preference */
2637
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
2638
64.1k
{
2639
64.1k
    if (s != NULL) {
2640
64.1k
        if (s->cipher_list != NULL) {
2641
45.2k
            return s->cipher_list;
2642
45.2k
        } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) {
2643
18.8k
            return s->ctx->cipher_list;
2644
18.8k
        }
2645
64.1k
    }
2646
0
    return NULL;
2647
64.1k
}
2648
2649
STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s)
2650
0
{
2651
0
    if ((s == NULL) || !s->server)
2652
0
        return NULL;
2653
0
    return s->peer_ciphers;
2654
0
}
2655
2656
STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s)
2657
30.1k
{
2658
30.1k
    STACK_OF(SSL_CIPHER) *sk = NULL, *ciphers;
2659
30.1k
    int i;
2660
2661
30.1k
    ciphers = SSL_get_ciphers(s);
2662
30.1k
    if (!ciphers)
2663
0
        return NULL;
2664
30.1k
    if (!ssl_set_client_disabled(s))
2665
0
        return NULL;
2666
5.45M
    for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
2667
5.42M
        const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
2668
5.42M
        if (!ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED, 0)) {
2669
3.15M
            if (!sk)
2670
30.1k
                sk = sk_SSL_CIPHER_new_null();
2671
3.15M
            if (!sk)
2672
0
                return NULL;
2673
3.15M
            if (!sk_SSL_CIPHER_push(sk, c)) {
2674
0
                sk_SSL_CIPHER_free(sk);
2675
0
                return NULL;
2676
0
            }
2677
3.15M
        }
2678
5.42M
    }
2679
30.1k
    return sk;
2680
30.1k
}
2681
2682
/** return a STACK of the ciphers available for the SSL and in order of
2683
 * algorithm id */
2684
STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
2685
19.4k
{
2686
19.4k
    if (s != NULL) {
2687
19.4k
        if (s->cipher_list_by_id != NULL) {
2688
19.4k
            return s->cipher_list_by_id;
2689
19.4k
        } else if ((s->ctx != NULL) && (s->ctx->cipher_list_by_id != NULL)) {
2690
0
            return s->ctx->cipher_list_by_id;
2691
0
        }
2692
19.4k
    }
2693
0
    return NULL;
2694
19.4k
}
2695
2696
/** The old interface to get the same thing as SSL_get_ciphers() */
2697
const char *SSL_get_cipher_list(const SSL *s, int n)
2698
0
{
2699
0
    const SSL_CIPHER *c;
2700
0
    STACK_OF(SSL_CIPHER) *sk;
2701
2702
0
    if (s == NULL)
2703
0
        return NULL;
2704
0
    sk = SSL_get_ciphers(s);
2705
0
    if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
2706
0
        return NULL;
2707
0
    c = sk_SSL_CIPHER_value(sk, n);
2708
0
    if (c == NULL)
2709
0
        return NULL;
2710
0
    return c->name;
2711
0
}
2712
2713
/** return a STACK of the ciphers available for the SSL_CTX and in order of
2714
 * preference */
2715
STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx)
2716
0
{
2717
0
    if (ctx != NULL)
2718
0
        return ctx->cipher_list;
2719
0
    return NULL;
2720
0
}
2721
2722
/*
2723
 * Distinguish between ciphers controlled by set_ciphersuite() and
2724
 * set_cipher_list() when counting.
2725
 */
2726
static int cipher_list_tls12_num(STACK_OF(SSL_CIPHER) *sk)
2727
38.8k
{
2728
38.8k
    int i, num = 0;
2729
38.8k
    const SSL_CIPHER *c;
2730
2731
38.8k
    if (sk == NULL)
2732
0
        return 0;
2733
6.92M
    for (i = 0; i < sk_SSL_CIPHER_num(sk); ++i) {
2734
6.88M
        c = sk_SSL_CIPHER_value(sk, i);
2735
6.88M
        if (c->min_tls >= TLS1_3_VERSION)
2736
116k
            continue;
2737
6.76M
        num++;
2738
6.76M
    }
2739
38.8k
    return num;
2740
38.8k
}
2741
2742
/** specify the ciphers to be used by default by the SSL_CTX */
2743
int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
2744
16.4k
{
2745
16.4k
    STACK_OF(SSL_CIPHER) *sk;
2746
2747
16.4k
    sk = ssl_create_cipher_list(ctx, ctx->tls13_ciphersuites,
2748
16.4k
                                &ctx->cipher_list, &ctx->cipher_list_by_id, str,
2749
16.4k
                                ctx->cert);
2750
    /*
2751
     * ssl_create_cipher_list may return an empty stack if it was unable to
2752
     * find a cipher matching the given rule string (for example if the rule
2753
     * string specifies a cipher which has been disabled). This is not an
2754
     * error as far as ssl_create_cipher_list is concerned, and hence
2755
     * ctx->cipher_list and ctx->cipher_list_by_id has been updated.
2756
     */
2757
16.4k
    if (sk == NULL)
2758
0
        return 0;
2759
16.4k
    else if (cipher_list_tls12_num(sk) == 0) {
2760
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH);
2761
0
        return 0;
2762
0
    }
2763
16.4k
    return 1;
2764
16.4k
}
2765
2766
/** specify the ciphers to be used by the SSL */
2767
int SSL_set_cipher_list(SSL *s, const char *str)
2768
14.9k
{
2769
14.9k
    STACK_OF(SSL_CIPHER) *sk;
2770
2771
14.9k
    sk = ssl_create_cipher_list(s->ctx, s->tls13_ciphersuites,
2772
14.9k
                                &s->cipher_list, &s->cipher_list_by_id, str,
2773
14.9k
                                s->cert);
2774
    /* see comment in SSL_CTX_set_cipher_list */
2775
14.9k
    if (sk == NULL)
2776
0
        return 0;
2777
14.9k
    else if (cipher_list_tls12_num(sk) == 0) {
2778
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHER_MATCH);
2779
0
        return 0;
2780
0
    }
2781
14.9k
    return 1;
2782
14.9k
}
2783
2784
char *SSL_get_shared_ciphers(const SSL *s, char *buf, int size)
2785
0
{
2786
0
    char *p;
2787
0
    STACK_OF(SSL_CIPHER) *clntsk, *srvrsk;
2788
0
    const SSL_CIPHER *c;
2789
0
    int i;
2790
2791
0
    if (!s->server
2792
0
            || s->peer_ciphers == NULL
2793
0
            || size < 2)
2794
0
        return NULL;
2795
2796
0
    p = buf;
2797
0
    clntsk = s->peer_ciphers;
2798
0
    srvrsk = SSL_get_ciphers(s);
2799
0
    if (clntsk == NULL || srvrsk == NULL)
2800
0
        return NULL;
2801
2802
0
    if (sk_SSL_CIPHER_num(clntsk) == 0 || sk_SSL_CIPHER_num(srvrsk) == 0)
2803
0
        return NULL;
2804
2805
0
    for (i = 0; i < sk_SSL_CIPHER_num(clntsk); i++) {
2806
0
        int n;
2807
2808
0
        c = sk_SSL_CIPHER_value(clntsk, i);
2809
0
        if (sk_SSL_CIPHER_find(srvrsk, c) < 0)
2810
0
            continue;
2811
2812
0
        n = strlen(c->name);
2813
0
        if (n + 1 > size) {
2814
0
            if (p != buf)
2815
0
                --p;
2816
0
            *p = '\0';
2817
0
            return buf;
2818
0
        }
2819
0
        strcpy(p, c->name);
2820
0
        p += n;
2821
0
        *(p++) = ':';
2822
0
        size -= n + 1;
2823
0
    }
2824
0
    p[-1] = '\0';
2825
0
    return buf;
2826
0
}
2827
2828
/**
2829
 * Return the requested servername (SNI) value. Note that the behaviour varies
2830
 * depending on:
2831
 * - whether this is called by the client or the server,
2832
 * - if we are before or during/after the handshake,
2833
 * - if a resumption or normal handshake is being attempted/has occurred
2834
 * - whether we have negotiated TLSv1.2 (or below) or TLSv1.3
2835
 * 
2836
 * Note that only the host_name type is defined (RFC 3546).
2837
 */
2838
const char *SSL_get_servername(const SSL *s, const int type)
2839
0
{
2840
    /*
2841
     * If we don't know if we are the client or the server yet then we assume
2842
     * client.
2843
     */
2844
0
    int server = s->handshake_func == NULL ? 0 : s->server;
2845
0
    if (type != TLSEXT_NAMETYPE_host_name)
2846
0
        return NULL;
2847
2848
0
    if (server) {
2849
        /**
2850
         * Server side
2851
         * In TLSv1.3 on the server SNI is not associated with the session
2852
         * but in TLSv1.2 or below it is.
2853
         *
2854
         * Before the handshake:
2855
         *  - return NULL
2856
         *
2857
         * During/after the handshake (TLSv1.2 or below resumption occurred):
2858
         * - If a servername was accepted by the server in the original
2859
         *   handshake then it will return that servername, or NULL otherwise.
2860
         *
2861
         * During/after the handshake (TLSv1.2 or below resumption did not occur):
2862
         * - The function will return the servername requested by the client in
2863
         *   this handshake or NULL if none was requested.
2864
         */
2865
0
         if (s->hit && !SSL_IS_TLS13(s))
2866
0
            return s->session->ext.hostname;
2867
0
    } else {
2868
        /**
2869
         * Client side
2870
         *
2871
         * Before the handshake:
2872
         *  - If a servername has been set via a call to
2873
         *    SSL_set_tlsext_host_name() then it will return that servername
2874
         *  - If one has not been set, but a TLSv1.2 resumption is being
2875
         *    attempted and the session from the original handshake had a
2876
         *    servername accepted by the server then it will return that
2877
         *    servername
2878
         *  - Otherwise it returns NULL
2879
         *
2880
         * During/after the handshake (TLSv1.2 or below resumption occurred):
2881
         * - If the session from the original handshake had a servername accepted
2882
         *   by the server then it will return that servername.
2883
         * - Otherwise it returns the servername set via
2884
         *   SSL_set_tlsext_host_name() (or NULL if it was not called).
2885
         *
2886
         * During/after the handshake (TLSv1.2 or below resumption did not occur):
2887
         * - It will return the servername set via SSL_set_tlsext_host_name()
2888
         *   (or NULL if it was not called).
2889
         */
2890
0
        if (SSL_in_before(s)) {
2891
0
            if (s->ext.hostname == NULL
2892
0
                    && s->session != NULL
2893
0
                    && s->session->ssl_version != TLS1_3_VERSION)
2894
0
                return s->session->ext.hostname;
2895
0
        } else {
2896
0
            if (!SSL_IS_TLS13(s) && s->hit && s->session->ext.hostname != NULL)
2897
0
                return s->session->ext.hostname;
2898
0
        }
2899
0
    }
2900
2901
0
    return s->ext.hostname;
2902
0
}
2903
2904
int SSL_get_servername_type(const SSL *s)
2905
0
{
2906
0
    if (SSL_get_servername(s, TLSEXT_NAMETYPE_host_name) != NULL)
2907
0
        return TLSEXT_NAMETYPE_host_name;
2908
0
    return -1;
2909
0
}
2910
2911
/*
2912
 * SSL_select_next_proto implements the standard protocol selection. It is
2913
 * expected that this function is called from the callback set by
2914
 * SSL_CTX_set_next_proto_select_cb. The protocol data is assumed to be a
2915
 * vector of 8-bit, length prefixed byte strings. The length byte itself is
2916
 * not included in the length. A byte string of length 0 is invalid. No byte
2917
 * string may be truncated. The current, but experimental algorithm for
2918
 * selecting the protocol is: 1) If the server doesn't support NPN then this
2919
 * is indicated to the callback. In this case, the client application has to
2920
 * abort the connection or have a default application level protocol. 2) If
2921
 * the server supports NPN, but advertises an empty list then the client
2922
 * selects the first protocol in its list, but indicates via the API that this
2923
 * fallback case was enacted. 3) Otherwise, the client finds the first
2924
 * protocol in the server's list that it supports and selects this protocol.
2925
 * This is because it's assumed that the server has better information about
2926
 * which protocol a client should use. 4) If the client doesn't support any
2927
 * of the server's advertised protocols, then this is treated the same as
2928
 * case 2. It returns either OPENSSL_NPN_NEGOTIATED if a common protocol was
2929
 * found, or OPENSSL_NPN_NO_OVERLAP if the fallback case was reached.
2930
 */
2931
int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
2932
                          const unsigned char *server,
2933
                          unsigned int server_len,
2934
                          const unsigned char *client, unsigned int client_len)
2935
0
{
2936
0
    unsigned int i, j;
2937
0
    const unsigned char *result;
2938
0
    int status = OPENSSL_NPN_UNSUPPORTED;
2939
2940
    /*
2941
     * For each protocol in server preference order, see if we support it.
2942
     */
2943
0
    for (i = 0; i < server_len;) {
2944
0
        for (j = 0; j < client_len;) {
2945
0
            if (server[i] == client[j] &&
2946
0
                memcmp(&server[i + 1], &client[j + 1], server[i]) == 0) {
2947
                /* We found a match */
2948
0
                result = &server[i];
2949
0
                status = OPENSSL_NPN_NEGOTIATED;
2950
0
                goto found;
2951
0
            }
2952
0
            j += client[j];
2953
0
            j++;
2954
0
        }
2955
0
        i += server[i];
2956
0
        i++;
2957
0
    }
2958
2959
    /* There's no overlap between our protocols and the server's list. */
2960
0
    result = client;
2961
0
    status = OPENSSL_NPN_NO_OVERLAP;
2962
2963
0
 found:
2964
0
    *out = (unsigned char *)result + 1;
2965
0
    *outlen = result[0];
2966
0
    return status;
2967
0
}
2968
2969
#ifndef OPENSSL_NO_NEXTPROTONEG
2970
/*
2971
 * SSL_get0_next_proto_negotiated sets *data and *len to point to the
2972
 * client's requested protocol for this connection and returns 0. If the
2973
 * client didn't request any protocol, then *data is set to NULL. Note that
2974
 * the client can request any protocol it chooses. The value returned from
2975
 * this function need not be a member of the list of supported protocols
2976
 * provided by the callback.
2977
 */
2978
void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
2979
                                    unsigned *len)
2980
0
{
2981
0
    *data = s->ext.npn;
2982
0
    if (*data == NULL) {
2983
0
        *len = 0;
2984
0
    } else {
2985
0
        *len = (unsigned int)s->ext.npn_len;
2986
0
    }
2987
0
}
2988
2989
/*
2990
 * SSL_CTX_set_npn_advertised_cb sets a callback that is called when
2991
 * a TLS server needs a list of supported protocols for Next Protocol
2992
 * Negotiation. The returned list must be in wire format.  The list is
2993
 * returned by setting |out| to point to it and |outlen| to its length. This
2994
 * memory will not be modified, but one should assume that the SSL* keeps a
2995
 * reference to it. The callback should return SSL_TLSEXT_ERR_OK if it
2996
 * wishes to advertise. Otherwise, no such extension will be included in the
2997
 * ServerHello.
2998
 */
2999
void SSL_CTX_set_npn_advertised_cb(SSL_CTX *ctx,
3000
                                   SSL_CTX_npn_advertised_cb_func cb,
3001
                                   void *arg)
3002
0
{
3003
0
    ctx->ext.npn_advertised_cb = cb;
3004
0
    ctx->ext.npn_advertised_cb_arg = arg;
3005
0
}
3006
3007
/*
3008
 * SSL_CTX_set_next_proto_select_cb sets a callback that is called when a
3009
 * client needs to select a protocol from the server's provided list. |out|
3010
 * must be set to point to the selected protocol (which may be within |in|).
3011
 * The length of the protocol name must be written into |outlen|. The
3012
 * server's advertised protocols are provided in |in| and |inlen|. The
3013
 * callback can assume that |in| is syntactically valid. The client must
3014
 * select a protocol. It is fatal to the connection if this callback returns
3015
 * a value other than SSL_TLSEXT_ERR_OK.
3016
 */
3017
void SSL_CTX_set_npn_select_cb(SSL_CTX *ctx,
3018
                               SSL_CTX_npn_select_cb_func cb,
3019
                               void *arg)
3020
0
{
3021
0
    ctx->ext.npn_select_cb = cb;
3022
0
    ctx->ext.npn_select_cb_arg = arg;
3023
0
}
3024
#endif
3025
3026
static int alpn_value_ok(const unsigned char *protos, unsigned int protos_len)
3027
0
{
3028
0
    unsigned int idx;
3029
3030
0
    if (protos_len < 2 || protos == NULL)
3031
0
        return 0;
3032
3033
0
    for (idx = 0; idx < protos_len; idx += protos[idx] + 1) {
3034
0
        if (protos[idx] == 0)
3035
0
            return 0;
3036
0
    }
3037
0
    return idx == protos_len;
3038
0
}
3039
/*
3040
 * SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
3041
 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
3042
 * length-prefixed strings). Returns 0 on success.
3043
 */
3044
int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
3045
                            unsigned int protos_len)
3046
0
{
3047
0
    unsigned char *alpn;
3048
3049
0
    if (protos_len == 0 || protos == NULL) {
3050
0
        OPENSSL_free(ctx->ext.alpn);
3051
0
        ctx->ext.alpn = NULL;
3052
0
        ctx->ext.alpn_len = 0;
3053
0
        return 0;
3054
0
    }
3055
    /* Not valid per RFC */
3056
0
    if (!alpn_value_ok(protos, protos_len))
3057
0
        return 1;
3058
3059
0
    alpn = OPENSSL_memdup(protos, protos_len);
3060
0
    if (alpn == NULL) {
3061
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
3062
0
        return 1;
3063
0
    }
3064
0
    OPENSSL_free(ctx->ext.alpn);
3065
0
    ctx->ext.alpn = alpn;
3066
0
    ctx->ext.alpn_len = protos_len;
3067
3068
0
    return 0;
3069
0
}
3070
3071
/*
3072
 * SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
3073
 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
3074
 * length-prefixed strings). Returns 0 on success.
3075
 */
3076
int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
3077
                        unsigned int protos_len)
3078
0
{
3079
0
    unsigned char *alpn;
3080
3081
0
    if (protos_len == 0 || protos == NULL) {
3082
0
        OPENSSL_free(ssl->ext.alpn);
3083
0
        ssl->ext.alpn = NULL;
3084
0
        ssl->ext.alpn_len = 0;
3085
0
        return 0;
3086
0
    }
3087
    /* Not valid per RFC */
3088
0
    if (!alpn_value_ok(protos, protos_len))
3089
0
        return 1;
3090
3091
0
    alpn = OPENSSL_memdup(protos, protos_len);
3092
0
    if (alpn == NULL) {
3093
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
3094
0
        return 1;
3095
0
    }
3096
0
    OPENSSL_free(ssl->ext.alpn);
3097
0
    ssl->ext.alpn = alpn;
3098
0
    ssl->ext.alpn_len = protos_len;
3099
3100
0
    return 0;
3101
0
}
3102
3103
/*
3104
 * SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is
3105
 * called during ClientHello processing in order to select an ALPN protocol
3106
 * from the client's list of offered protocols.
3107
 */
3108
void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
3109
                                SSL_CTX_alpn_select_cb_func cb,
3110
                                void *arg)
3111
0
{
3112
0
    ctx->ext.alpn_select_cb = cb;
3113
0
    ctx->ext.alpn_select_cb_arg = arg;
3114
0
}
3115
3116
/*
3117
 * SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from |ssl|.
3118
 * On return it sets |*data| to point to |*len| bytes of protocol name
3119
 * (not including the leading length-prefix byte). If the server didn't
3120
 * respond with a negotiated protocol then |*len| will be zero.
3121
 */
3122
void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
3123
                            unsigned int *len)
3124
0
{
3125
0
    *data = ssl->s3.alpn_selected;
3126
0
    if (*data == NULL)
3127
0
        *len = 0;
3128
0
    else
3129
0
        *len = (unsigned int)ssl->s3.alpn_selected_len;
3130
0
}
3131
3132
int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
3133
                               const char *label, size_t llen,
3134
                               const unsigned char *context, size_t contextlen,
3135
                               int use_context)
3136
0
{
3137
0
    if (s->session == NULL
3138
0
        || (s->version < TLS1_VERSION && s->version != DTLS1_BAD_VER))
3139
0
        return -1;
3140
3141
0
    return s->method->ssl3_enc->export_keying_material(s, out, olen, label,
3142
0
                                                       llen, context,
3143
0
                                                       contextlen, use_context);
3144
0
}
3145
3146
int SSL_export_keying_material_early(SSL *s, unsigned char *out, size_t olen,
3147
                                     const char *label, size_t llen,
3148
                                     const unsigned char *context,
3149
                                     size_t contextlen)
3150
0
{
3151
0
    if (s->version != TLS1_3_VERSION)
3152
0
        return 0;
3153
3154
0
    return tls13_export_keying_material_early(s, out, olen, label, llen,
3155
0
                                              context, contextlen);
3156
0
}
3157
3158
static unsigned long ssl_session_hash(const SSL_SESSION *a)
3159
32.9k
{
3160
32.9k
    const unsigned char *session_id = a->session_id;
3161
32.9k
    unsigned long l;
3162
32.9k
    unsigned char tmp_storage[4];
3163
3164
32.9k
    if (a->session_id_length < sizeof(tmp_storage)) {
3165
481
        memset(tmp_storage, 0, sizeof(tmp_storage));
3166
481
        memcpy(tmp_storage, a->session_id, a->session_id_length);
3167
481
        session_id = tmp_storage;
3168
481
    }
3169
3170
32.9k
    l = (unsigned long)
3171
32.9k
        ((unsigned long)session_id[0]) |
3172
32.9k
        ((unsigned long)session_id[1] << 8L) |
3173
32.9k
        ((unsigned long)session_id[2] << 16L) |
3174
32.9k
        ((unsigned long)session_id[3] << 24L);
3175
32.9k
    return l;
3176
32.9k
}
3177
3178
/*
3179
 * NB: If this function (or indeed the hash function which uses a sort of
3180
 * coarser function than this one) is changed, ensure
3181
 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on
3182
 * being able to construct an SSL_SESSION that will collide with any existing
3183
 * session with a matching session ID.
3184
 */
3185
static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
3186
749
{
3187
749
    if (a->ssl_version != b->ssl_version)
3188
0
        return 1;
3189
749
    if (a->session_id_length != b->session_id_length)
3190
0
        return 1;
3191
749
    return memcmp(a->session_id, b->session_id, a->session_id_length);
3192
749
}
3193
3194
/*
3195
 * These wrapper functions should remain rather than redeclaring
3196
 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
3197
 * variable. The reason is that the functions aren't static, they're exposed
3198
 * via ssl.h.
3199
 */
3200
3201
SSL_CTX *SSL_CTX_new_ex(OSSL_LIB_CTX *libctx, const char *propq,
3202
                        const SSL_METHOD *meth)
3203
12.2k
{
3204
12.2k
    SSL_CTX *ret = NULL;
3205
3206
12.2k
    if (meth == NULL) {
3207
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NULL_SSL_METHOD_PASSED);
3208
0
        return NULL;
3209
0
    }
3210
3211
12.2k
    if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL))
3212
0
        return NULL;
3213
3214
12.2k
    if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) {
3215
0
        ERR_raise(ERR_LIB_SSL, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
3216
0
        goto err;
3217
0
    }
3218
12.2k
    ret = OPENSSL_zalloc(sizeof(*ret));
3219
12.2k
    if (ret == NULL)
3220
0
        goto err;
3221
3222
    /* Init the reference counting before any call to SSL_CTX_free */
3223
12.2k
    ret->references = 1;
3224
12.2k
    ret->lock = CRYPTO_THREAD_lock_new();
3225
12.2k
    if (ret->lock == NULL) {
3226
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
3227
0
        OPENSSL_free(ret);
3228
0
        return NULL;
3229
0
    }
3230
3231
#ifdef TSAN_REQUIRES_LOCKING
3232
    ret->tsan_lock = CRYPTO_THREAD_lock_new();
3233
    if (ret->tsan_lock == NULL) {
3234
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
3235
        goto err;
3236
    }
3237
#endif
3238
3239
12.2k
    ret->libctx = libctx;
3240
12.2k
    if (propq != NULL) {
3241
0
        ret->propq = OPENSSL_strdup(propq);
3242
0
        if (ret->propq == NULL)
3243
0
            goto err;
3244
0
    }
3245
3246
12.2k
    ret->method = meth;
3247
12.2k
    ret->min_proto_version = 0;
3248
12.2k
    ret->max_proto_version = 0;
3249
12.2k
    ret->mode = SSL_MODE_AUTO_RETRY;
3250
12.2k
    ret->session_cache_mode = SSL_SESS_CACHE_SERVER;
3251
12.2k
    ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
3252
    /* We take the system default. */
3253
12.2k
    ret->session_timeout = meth->get_timeout();
3254
12.2k
    ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT;
3255
12.2k
    ret->verify_mode = SSL_VERIFY_NONE;
3256
12.2k
    if ((ret->cert = ssl_cert_new()) == NULL)
3257
0
        goto err;
3258
3259
12.2k
    ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp);
3260
12.2k
    if (ret->sessions == NULL)
3261
0
        goto err;
3262
12.2k
    ret->cert_store = X509_STORE_new();
3263
12.2k
    if (ret->cert_store == NULL)
3264
0
        goto err;
3265
12.2k
#ifndef OPENSSL_NO_CT
3266
12.2k
    ret->ctlog_store = CTLOG_STORE_new_ex(libctx, propq);
3267
12.2k
    if (ret->ctlog_store == NULL)
3268
0
        goto err;
3269
12.2k
#endif
3270
3271
    /* initialize cipher/digest methods table */
3272
12.2k
    if (!ssl_load_ciphers(ret))
3273
0
        goto err2;
3274
    /* initialise sig algs */
3275
12.2k
    if (!ssl_setup_sig_algs(ret))
3276
0
        goto err2;
3277
3278
3279
12.2k
    if (!ssl_load_groups(ret))
3280
0
        goto err2;
3281
3282
12.2k
    if (!SSL_CTX_set_ciphersuites(ret, OSSL_default_ciphersuites()))
3283
0
        goto err;
3284
3285
12.2k
    if (!ssl_create_cipher_list(ret,
3286
12.2k
                                ret->tls13_ciphersuites,
3287
12.2k
                                &ret->cipher_list, &ret->cipher_list_by_id,
3288
12.2k
                                OSSL_default_cipher_list(), ret->cert)
3289
12.2k
        || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) {
3290
0
        ERR_raise(ERR_LIB_SSL, SSL_R_LIBRARY_HAS_NO_CIPHERS);
3291
0
        goto err2;
3292
0
    }
3293
3294
12.2k
    ret->param = X509_VERIFY_PARAM_new();
3295
12.2k
    if (ret->param == NULL)
3296
0
        goto err;
3297
3298
    /*
3299
     * If these aren't available from the provider we'll get NULL returns.
3300
     * That's fine but will cause errors later if SSLv3 is negotiated
3301
     */
3302
12.2k
    ret->md5 = ssl_evp_md_fetch(libctx, NID_md5, propq);
3303
12.2k
    ret->sha1 = ssl_evp_md_fetch(libctx, NID_sha1, propq);
3304
3305
12.2k
    if ((ret->ca_names = sk_X509_NAME_new_null()) == NULL)
3306
0
        goto err;
3307
3308
12.2k
    if ((ret->client_ca_names = sk_X509_NAME_new_null()) == NULL)
3309
0
        goto err;
3310
3311
12.2k
    if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data))
3312
0
        goto err;
3313
3314
12.2k
    if ((ret->ext.secure = OPENSSL_secure_zalloc(sizeof(*ret->ext.secure))) == NULL)
3315
0
        goto err;
3316
3317
    /* No compression for DTLS */
3318
12.2k
    if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
3319
12.2k
        ret->comp_methods = SSL_COMP_get_compression_methods();
3320
3321
12.2k
    ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
3322
12.2k
    ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
3323
3324
    /* Setup RFC5077 ticket keys */
3325
12.2k
    if ((RAND_bytes_ex(libctx, ret->ext.tick_key_name,
3326
12.2k
                       sizeof(ret->ext.tick_key_name), 0) <= 0)
3327
12.2k
        || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_hmac_key,
3328
12.2k
                               sizeof(ret->ext.secure->tick_hmac_key), 0) <= 0)
3329
12.2k
        || (RAND_priv_bytes_ex(libctx, ret->ext.secure->tick_aes_key,
3330
12.2k
                               sizeof(ret->ext.secure->tick_aes_key), 0) <= 0))
3331
0
        ret->options |= SSL_OP_NO_TICKET;
3332
3333
12.2k
    if (RAND_priv_bytes_ex(libctx, ret->ext.cookie_hmac_key,
3334
12.2k
                           sizeof(ret->ext.cookie_hmac_key), 0) <= 0)
3335
0
        goto err;
3336
3337
12.2k
#ifndef OPENSSL_NO_SRP
3338
12.2k
    if (!ssl_ctx_srp_ctx_init_intern(ret))
3339
0
        goto err;
3340
12.2k
#endif
3341
12.2k
#ifndef OPENSSL_NO_ENGINE
3342
# ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
3343
#  define eng_strx(x)     #x
3344
#  define eng_str(x)      eng_strx(x)
3345
    /* Use specific client engine automatically... ignore errors */
3346
    {
3347
        ENGINE *eng;
3348
        eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
3349
        if (!eng) {
3350
            ERR_clear_error();
3351
            ENGINE_load_builtin_engines();
3352
            eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
3353
        }
3354
        if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
3355
            ERR_clear_error();
3356
    }
3357
# endif
3358
12.2k
#endif
3359
    /*
3360
     * Disable compression by default to prevent CRIME. Applications can
3361
     * re-enable compression by configuring
3362
     * SSL_CTX_clear_options(ctx, SSL_OP_NO_COMPRESSION);
3363
     * or by using the SSL_CONF library. Similarly we also enable TLSv1.3
3364
     * middlebox compatibility by default. This may be disabled by default in
3365
     * a later OpenSSL version.
3366
     */
3367
12.2k
    ret->options |= SSL_OP_NO_COMPRESSION | SSL_OP_ENABLE_MIDDLEBOX_COMPAT;
3368
3369
12.2k
    ret->ext.status_type = TLSEXT_STATUSTYPE_nothing;
3370
3371
    /*
3372
     * We cannot usefully set a default max_early_data here (which gets
3373
     * propagated in SSL_new(), for the following reason: setting the
3374
     * SSL field causes tls_construct_stoc_early_data() to tell the
3375
     * client that early data will be accepted when constructing a TLS 1.3
3376
     * session ticket, and the client will accordingly send us early data
3377
     * when using that ticket (if the client has early data to send).
3378
     * However, in order for the early data to actually be consumed by
3379
     * the application, the application must also have calls to
3380
     * SSL_read_early_data(); otherwise we'll just skip past the early data
3381
     * and ignore it.  So, since the application must add calls to
3382
     * SSL_read_early_data(), we also require them to add
3383
     * calls to SSL_CTX_set_max_early_data() in order to use early data,
3384
     * eliminating the bandwidth-wasting early data in the case described
3385
     * above.
3386
     */
3387
12.2k
    ret->max_early_data = 0;
3388
3389
    /*
3390
     * Default recv_max_early_data is a fully loaded single record. Could be
3391
     * split across multiple records in practice. We set this differently to
3392
     * max_early_data so that, in the default case, we do not advertise any
3393
     * support for early_data, but if a client were to send us some (e.g.
3394
     * because of an old, stale ticket) then we will tolerate it and skip over
3395
     * it.
3396
     */
3397
12.2k
    ret->recv_max_early_data = SSL3_RT_MAX_PLAIN_LENGTH;
3398
3399
    /* By default we send two session tickets automatically in TLSv1.3 */
3400
12.2k
    ret->num_tickets = 2;
3401
3402
12.2k
    ssl_ctx_system_config(ret);
3403
3404
12.2k
    return ret;
3405
0
 err:
3406
0
    ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
3407
0
 err2:
3408
0
    SSL_CTX_free(ret);
3409
0
    return NULL;
3410
0
}
3411
3412
SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
3413
24.8k
{
3414
24.8k
    return SSL_CTX_new_ex(NULL, NULL, meth);
3415
24.8k
}
3416
3417
int SSL_CTX_up_ref(SSL_CTX *ctx)
3418
77.6k
{
3419
77.6k
    int i;
3420
3421
77.6k
    if (CRYPTO_UP_REF(&ctx->references, &i, ctx->lock) <= 0)
3422
0
        return 0;
3423
3424
77.6k
    REF_PRINT_COUNT("SSL_CTX", ctx);
3425
77.6k
    REF_ASSERT_ISNT(i < 2);
3426
77.6k
    return ((i > 1) ? 1 : 0);
3427
77.6k
}
3428
3429
void SSL_CTX_free(SSL_CTX *a)
3430
36.6k
{
3431
36.6k
    int i;
3432
36.6k
    size_t j;
3433
3434
36.6k
    if (a == NULL)
3435
0
        return;
3436
3437
36.6k
    CRYPTO_DOWN_REF(&a->references, &i, a->lock);
3438
36.6k
    REF_PRINT_COUNT("SSL_CTX", a);
3439
36.6k
    if (i > 0)
3440
24.4k
        return;
3441
12.2k
    REF_ASSERT_ISNT(i < 0);
3442
3443
12.2k
    X509_VERIFY_PARAM_free(a->param);
3444
12.2k
    dane_ctx_final(&a->dane);
3445
3446
    /*
3447
     * Free internal session cache. However: the remove_cb() may reference
3448
     * the ex_data of SSL_CTX, thus the ex_data store can only be removed
3449
     * after the sessions were flushed.
3450
     * As the ex_data handling routines might also touch the session cache,
3451
     * the most secure solution seems to be: empty (flush) the cache, then
3452
     * free ex_data, then finally free the cache.
3453
     * (See ticket [openssl.org #212].)
3454
     */
3455
12.2k
    if (a->sessions != NULL)
3456
12.2k
        SSL_CTX_flush_sessions(a, 0);
3457
3458
12.2k
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
3459
12.2k
    lh_SSL_SESSION_free(a->sessions);
3460
12.2k
    X509_STORE_free(a->cert_store);
3461
12.2k
#ifndef OPENSSL_NO_CT
3462
12.2k
    CTLOG_STORE_free(a->ctlog_store);
3463
12.2k
#endif
3464
12.2k
    sk_SSL_CIPHER_free(a->cipher_list);
3465
12.2k
    sk_SSL_CIPHER_free(a->cipher_list_by_id);
3466
12.2k
    sk_SSL_CIPHER_free(a->tls13_ciphersuites);
3467
12.2k
    ssl_cert_free(a->cert);
3468
12.2k
    sk_X509_NAME_pop_free(a->ca_names, X509_NAME_free);
3469
12.2k
    sk_X509_NAME_pop_free(a->client_ca_names, X509_NAME_free);
3470
12.2k
    sk_X509_pop_free(a->extra_certs, X509_free);
3471
12.2k
    a->comp_methods = NULL;
3472
12.2k
#ifndef OPENSSL_NO_SRTP
3473
12.2k
    sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
3474
12.2k
#endif
3475
12.2k
#ifndef OPENSSL_NO_SRP
3476
12.2k
    ssl_ctx_srp_ctx_free_intern(a);
3477
12.2k
#endif
3478
12.2k
#ifndef OPENSSL_NO_ENGINE
3479
12.2k
    tls_engine_finish(a->client_cert_engine);
3480
12.2k
#endif
3481
3482
12.2k
    OPENSSL_free(a->ext.ecpointformats);
3483
12.2k
    OPENSSL_free(a->ext.supportedgroups);
3484
12.2k
    OPENSSL_free(a->ext.supported_groups_default);
3485
12.2k
    OPENSSL_free(a->ext.alpn);
3486
12.2k
    OPENSSL_secure_free(a->ext.secure);
3487
3488
12.2k
    ssl_evp_md_free(a->md5);
3489
12.2k
    ssl_evp_md_free(a->sha1);
3490
3491
305k
    for (j = 0; j < SSL_ENC_NUM_IDX; j++)
3492
292k
        ssl_evp_cipher_free(a->ssl_cipher_methods[j]);
3493
183k
    for (j = 0; j < SSL_MD_NUM_IDX; j++)
3494
170k
        ssl_evp_md_free(a->ssl_digest_methods[j]);
3495
622k
    for (j = 0; j < a->group_list_len; j++) {
3496
610k
        OPENSSL_free(a->group_list[j].tlsname);
3497
610k
        OPENSSL_free(a->group_list[j].realname);
3498
610k
        OPENSSL_free(a->group_list[j].algorithm);
3499
610k
    }
3500
12.2k
    OPENSSL_free(a->group_list);
3501
3502
12.2k
    OPENSSL_free(a->sigalg_lookup_cache);
3503
3504
12.2k
    CRYPTO_THREAD_lock_free(a->lock);
3505
#ifdef TSAN_REQUIRES_LOCKING
3506
    CRYPTO_THREAD_lock_free(a->tsan_lock);
3507
#endif
3508
3509
12.2k
    OPENSSL_free(a->propq);
3510
3511
12.2k
    OPENSSL_free(a);
3512
12.2k
}
3513
3514
void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
3515
0
{
3516
0
    ctx->default_passwd_callback = cb;
3517
0
}
3518
3519
void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
3520
0
{
3521
0
    ctx->default_passwd_callback_userdata = u;
3522
0
}
3523
3524
pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx)
3525
0
{
3526
0
    return ctx->default_passwd_callback;
3527
0
}
3528
3529
void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx)
3530
0
{
3531
0
    return ctx->default_passwd_callback_userdata;
3532
0
}
3533
3534
void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb)
3535
0
{
3536
0
    s->default_passwd_callback = cb;
3537
0
}
3538
3539
void SSL_set_default_passwd_cb_userdata(SSL *s, void *u)
3540
0
{
3541
0
    s->default_passwd_callback_userdata = u;
3542
0
}
3543
3544
pem_password_cb *SSL_get_default_passwd_cb(SSL *s)
3545
0
{
3546
0
    return s->default_passwd_callback;
3547
0
}
3548
3549
void *SSL_get_default_passwd_cb_userdata(SSL *s)
3550
0
{
3551
0
    return s->default_passwd_callback_userdata;
3552
0
}
3553
3554
void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
3555
                                      int (*cb) (X509_STORE_CTX *, void *),
3556
                                      void *arg)
3557
0
{
3558
0
    ctx->app_verify_callback = cb;
3559
0
    ctx->app_verify_arg = arg;
3560
0
}
3561
3562
void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
3563
                        int (*cb) (int, X509_STORE_CTX *))
3564
0
{
3565
0
    ctx->verify_mode = mode;
3566
0
    ctx->default_verify_callback = cb;
3567
0
}
3568
3569
void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
3570
0
{
3571
0
    X509_VERIFY_PARAM_set_depth(ctx->param, depth);
3572
0
}
3573
3574
void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg), void *arg)
3575
0
{
3576
0
    ssl_cert_set_cert_cb(c->cert, cb, arg);
3577
0
}
3578
3579
void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg)
3580
0
{
3581
0
    ssl_cert_set_cert_cb(s->cert, cb, arg);
3582
0
}
3583
3584
void ssl_set_masks(SSL *s)
3585
5.60k
{
3586
5.60k
    CERT *c = s->cert;
3587
5.60k
    uint32_t *pvalid = s->s3.tmp.valid_flags;
3588
5.60k
    int rsa_enc, rsa_sign, dh_tmp, dsa_sign;
3589
5.60k
    unsigned long mask_k, mask_a;
3590
5.60k
    int have_ecc_cert, ecdsa_ok;
3591
3592
5.60k
    if (c == NULL)
3593
0
        return;
3594
3595
5.60k
    dh_tmp = (c->dh_tmp != NULL
3596
5.60k
              || c->dh_tmp_cb != NULL
3597
5.60k
              || c->dh_tmp_auto);
3598
3599
5.60k
    rsa_enc = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
3600
5.60k
    rsa_sign = pvalid[SSL_PKEY_RSA] & CERT_PKEY_VALID;
3601
5.60k
    dsa_sign = pvalid[SSL_PKEY_DSA_SIGN] & CERT_PKEY_VALID;
3602
5.60k
    have_ecc_cert = pvalid[SSL_PKEY_ECC] & CERT_PKEY_VALID;
3603
5.60k
    mask_k = 0;
3604
5.60k
    mask_a = 0;
3605
3606
5.60k
    OSSL_TRACE4(TLS_CIPHER, "dh_tmp=%d rsa_enc=%d rsa_sign=%d dsa_sign=%d\n",
3607
5.60k
               dh_tmp, rsa_enc, rsa_sign, dsa_sign);
3608
3609
5.60k
#ifndef OPENSSL_NO_GOST
3610
5.60k
    if (ssl_has_cert(s, SSL_PKEY_GOST12_512)) {
3611
0
        mask_k |= SSL_kGOST | SSL_kGOST18;
3612
0
        mask_a |= SSL_aGOST12;
3613
0
    }
3614
5.60k
    if (ssl_has_cert(s, SSL_PKEY_GOST12_256)) {
3615
0
        mask_k |= SSL_kGOST | SSL_kGOST18;
3616
0
        mask_a |= SSL_aGOST12;
3617
0
    }
3618
5.60k
    if (ssl_has_cert(s, SSL_PKEY_GOST01)) {
3619
0
        mask_k |= SSL_kGOST;
3620
0
        mask_a |= SSL_aGOST01;
3621
0
    }
3622
5.60k
#endif
3623
3624
5.60k
    if (rsa_enc)
3625
5.60k
        mask_k |= SSL_kRSA;
3626
3627
5.60k
    if (dh_tmp)
3628
0
        mask_k |= SSL_kDHE;
3629
3630
    /*
3631
     * If we only have an RSA-PSS certificate allow RSA authentication
3632
     * if TLS 1.2 and peer supports it.
3633
     */
3634
3635
5.60k
    if (rsa_enc || rsa_sign || (ssl_has_cert(s, SSL_PKEY_RSA_PSS_SIGN)
3636
0
                && pvalid[SSL_PKEY_RSA_PSS_SIGN] & CERT_PKEY_EXPLICIT_SIGN
3637
0
                && TLS1_get_version(s) == TLS1_2_VERSION))
3638
5.60k
        mask_a |= SSL_aRSA;
3639
3640
5.60k
    if (dsa_sign) {
3641
5.60k
        mask_a |= SSL_aDSS;
3642
5.60k
    }
3643
3644
5.60k
    mask_a |= SSL_aNULL;
3645
3646
    /*
3647
     * An ECC certificate may be usable for ECDH and/or ECDSA cipher suites
3648
     * depending on the key usage extension.
3649
     */
3650
5.60k
    if (have_ecc_cert) {
3651
4.89k
        uint32_t ex_kusage;
3652
4.89k
        ex_kusage = X509_get_key_usage(c->pkeys[SSL_PKEY_ECC].x509);
3653
4.89k
        ecdsa_ok = ex_kusage & X509v3_KU_DIGITAL_SIGNATURE;
3654
4.89k
        if (!(pvalid[SSL_PKEY_ECC] & CERT_PKEY_SIGN))
3655
245
            ecdsa_ok = 0;
3656
4.89k
        if (ecdsa_ok)
3657
4.64k
            mask_a |= SSL_aECDSA;
3658
4.89k
    }
3659
    /* Allow Ed25519 for TLS 1.2 if peer supports it */
3660
5.60k
    if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED25519)
3661
5.60k
            && pvalid[SSL_PKEY_ED25519] & CERT_PKEY_EXPLICIT_SIGN
3662
5.60k
            && TLS1_get_version(s) == TLS1_2_VERSION)
3663
0
            mask_a |= SSL_aECDSA;
3664
3665
    /* Allow Ed448 for TLS 1.2 if peer supports it */
3666
5.60k
    if (!(mask_a & SSL_aECDSA) && ssl_has_cert(s, SSL_PKEY_ED448)
3667
5.60k
            && pvalid[SSL_PKEY_ED448] & CERT_PKEY_EXPLICIT_SIGN
3668
5.60k
            && TLS1_get_version(s) == TLS1_2_VERSION)
3669
0
            mask_a |= SSL_aECDSA;
3670
3671
5.60k
    mask_k |= SSL_kECDHE;
3672
3673
5.60k
#ifndef OPENSSL_NO_PSK
3674
5.60k
    mask_k |= SSL_kPSK;
3675
5.60k
    mask_a |= SSL_aPSK;
3676
5.60k
    if (mask_k & SSL_kRSA)
3677
5.60k
        mask_k |= SSL_kRSAPSK;
3678
5.60k
    if (mask_k & SSL_kDHE)
3679
0
        mask_k |= SSL_kDHEPSK;
3680
5.60k
    if (mask_k & SSL_kECDHE)
3681
5.60k
        mask_k |= SSL_kECDHEPSK;
3682
5.60k
#endif
3683
3684
5.60k
    s->s3.tmp.mask_k = mask_k;
3685
5.60k
    s->s3.tmp.mask_a = mask_a;
3686
5.60k
}
3687
3688
int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL *s)
3689
0
{
3690
0
    if (s->s3.tmp.new_cipher->algorithm_auth & SSL_aECDSA) {
3691
        /* key usage, if present, must allow signing */
3692
0
        if (!(X509_get_key_usage(x) & X509v3_KU_DIGITAL_SIGNATURE)) {
3693
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ECC_CERT_NOT_FOR_SIGNING);
3694
0
            return 0;
3695
0
        }
3696
0
    }
3697
0
    return 1;                   /* all checks are ok */
3698
0
}
3699
3700
int ssl_get_server_cert_serverinfo(SSL *s, const unsigned char **serverinfo,
3701
                                   size_t *serverinfo_length)
3702
0
{
3703
0
    CERT_PKEY *cpk = s->s3.tmp.cert;
3704
0
    *serverinfo_length = 0;
3705
3706
0
    if (cpk == NULL || cpk->serverinfo == NULL)
3707
0
        return 0;
3708
3709
0
    *serverinfo = cpk->serverinfo;
3710
0
    *serverinfo_length = cpk->serverinfo_length;
3711
0
    return 1;
3712
0
}
3713
3714
void ssl_update_cache(SSL *s, int mode)
3715
518
{
3716
518
    int i;
3717
3718
    /*
3719
     * If the session_id_length is 0, we are not supposed to cache it, and it
3720
     * would be rather hard to do anyway :-)
3721
     */
3722
518
    if (s->session->session_id_length == 0)
3723
59
        return;
3724
3725
    /*
3726
     * If sid_ctx_length is 0 there is no specific application context
3727
     * associated with this session, so when we try to resume it and
3728
     * SSL_VERIFY_PEER is requested to verify the client identity, we have no
3729
     * indication that this is actually a session for the proper application
3730
     * context, and the *handshake* will fail, not just the resumption attempt.
3731
     * Do not cache (on the server) these sessions that are not resumable
3732
     * (clients can set SSL_VERIFY_PEER without needing a sid_ctx set).
3733
     */
3734
459
    if (s->server && s->session->sid_ctx_length == 0
3735
459
            && (s->verify_mode & SSL_VERIFY_PEER) != 0)
3736
0
        return;
3737
3738
459
    i = s->session_ctx->session_cache_mode;
3739
459
    if ((i & mode) != 0
3740
459
        && (!s->hit || SSL_IS_TLS13(s))) {
3741
        /*
3742
         * Add the session to the internal cache. In server side TLSv1.3 we
3743
         * normally don't do this because by default it's a full stateless ticket
3744
         * with only a dummy session id so there is no reason to cache it,
3745
         * unless:
3746
         * - we are doing early_data, in which case we cache so that we can
3747
         *   detect replays
3748
         * - the application has set a remove_session_cb so needs to know about
3749
         *   session timeout events
3750
         * - SSL_OP_NO_TICKET is set in which case it is a stateful ticket
3751
         */
3752
254
        if ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE) == 0
3753
254
                && (!SSL_IS_TLS13(s)
3754
254
                    || !s->server
3755
254
                    || (s->max_early_data > 0
3756
0
                        && (s->options & SSL_OP_NO_ANTI_REPLAY) == 0)
3757
254
                    || s->session_ctx->remove_session_cb != NULL
3758
254
                    || (s->options & SSL_OP_NO_TICKET) != 0))
3759
254
            SSL_CTX_add_session(s->session_ctx, s->session);
3760
3761
        /*
3762
         * Add the session to the external cache. We do this even in server side
3763
         * TLSv1.3 without early data because some applications just want to
3764
         * know about the creation of a session and aren't doing a full cache.
3765
         */
3766
254
        if (s->session_ctx->new_session_cb != NULL) {
3767
0
            SSL_SESSION_up_ref(s->session);
3768
0
            if (!s->session_ctx->new_session_cb(s, s->session))
3769
0
                SSL_SESSION_free(s->session);
3770
0
        }
3771
254
    }
3772
3773
    /* auto flush every 255 connections */
3774
459
    if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && ((i & mode) == mode)) {
3775
254
        TSAN_QUALIFIER int *stat;
3776
3777
254
        if (mode & SSL_SESS_CACHE_CLIENT)
3778
0
            stat = &s->session_ctx->stats.sess_connect_good;
3779
254
        else
3780
254
            stat = &s->session_ctx->stats.sess_accept_good;
3781
254
        if ((ssl_tsan_load(s->session_ctx, stat) & 0xff) == 0xff)
3782
0
            SSL_CTX_flush_sessions(s->session_ctx, (unsigned long)time(NULL));
3783
254
    }
3784
459
}
3785
3786
const SSL_METHOD *SSL_CTX_get_ssl_method(const SSL_CTX *ctx)
3787
0
{
3788
0
    return ctx->method;
3789
0
}
3790
3791
const SSL_METHOD *SSL_get_ssl_method(const SSL *s)
3792
0
{
3793
0
    return s->method;
3794
0
}
3795
3796
int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
3797
0
{
3798
0
    int ret = 1;
3799
3800
0
    if (s->method != meth) {
3801
0
        const SSL_METHOD *sm = s->method;
3802
0
        int (*hf) (SSL *) = s->handshake_func;
3803
3804
0
        if (sm->version == meth->version)
3805
0
            s->method = meth;
3806
0
        else {
3807
0
            sm->ssl_free(s);
3808
0
            s->method = meth;
3809
0
            ret = s->method->ssl_new(s);
3810
0
        }
3811
3812
0
        if (hf == sm->ssl_connect)
3813
0
            s->handshake_func = meth->ssl_connect;
3814
0
        else if (hf == sm->ssl_accept)
3815
0
            s->handshake_func = meth->ssl_accept;
3816
0
    }
3817
0
    return ret;
3818
0
}
3819
3820
int SSL_get_error(const SSL *s, int i)
3821
0
{
3822
0
    int reason;
3823
0
    unsigned long l;
3824
0
    BIO *bio;
3825
3826
0
    if (i > 0)
3827
0
        return SSL_ERROR_NONE;
3828
3829
    /*
3830
     * Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
3831
     * where we do encode the error
3832
     */
3833
0
    if ((l = ERR_peek_error()) != 0) {
3834
0
        if (ERR_GET_LIB(l) == ERR_LIB_SYS)
3835
0
            return SSL_ERROR_SYSCALL;
3836
0
        else
3837
0
            return SSL_ERROR_SSL;
3838
0
    }
3839
3840
0
    if (SSL_want_read(s)) {
3841
0
        bio = SSL_get_rbio(s);
3842
0
        if (BIO_should_read(bio))
3843
0
            return SSL_ERROR_WANT_READ;
3844
0
        else if (BIO_should_write(bio))
3845
            /*
3846
             * This one doesn't make too much sense ... We never try to write
3847
             * to the rbio, and an application program where rbio and wbio
3848
             * are separate couldn't even know what it should wait for.
3849
             * However if we ever set s->rwstate incorrectly (so that we have
3850
             * SSL_want_read(s) instead of SSL_want_write(s)) and rbio and
3851
             * wbio *are* the same, this test works around that bug; so it
3852
             * might be safer to keep it.
3853
             */
3854
0
            return SSL_ERROR_WANT_WRITE;
3855
0
        else if (BIO_should_io_special(bio)) {
3856
0
            reason = BIO_get_retry_reason(bio);
3857
0
            if (reason == BIO_RR_CONNECT)
3858
0
                return SSL_ERROR_WANT_CONNECT;
3859
0
            else if (reason == BIO_RR_ACCEPT)
3860
0
                return SSL_ERROR_WANT_ACCEPT;
3861
0
            else
3862
0
                return SSL_ERROR_SYSCALL; /* unknown */
3863
0
        }
3864
0
    }
3865
3866
0
    if (SSL_want_write(s)) {
3867
        /* Access wbio directly - in order to use the buffered bio if present */
3868
0
        bio = s->wbio;
3869
0
        if (BIO_should_write(bio))
3870
0
            return SSL_ERROR_WANT_WRITE;
3871
0
        else if (BIO_should_read(bio))
3872
            /*
3873
             * See above (SSL_want_read(s) with BIO_should_write(bio))
3874
             */
3875
0
            return SSL_ERROR_WANT_READ;
3876
0
        else if (BIO_should_io_special(bio)) {
3877
0
            reason = BIO_get_retry_reason(bio);
3878
0
            if (reason == BIO_RR_CONNECT)
3879
0
                return SSL_ERROR_WANT_CONNECT;
3880
0
            else if (reason == BIO_RR_ACCEPT)
3881
0
                return SSL_ERROR_WANT_ACCEPT;
3882
0
            else
3883
0
                return SSL_ERROR_SYSCALL;
3884
0
        }
3885
0
    }
3886
0
    if (SSL_want_x509_lookup(s))
3887
0
        return SSL_ERROR_WANT_X509_LOOKUP;
3888
0
    if (SSL_want_retry_verify(s))
3889
0
        return SSL_ERROR_WANT_RETRY_VERIFY;
3890
0
    if (SSL_want_async(s))
3891
0
        return SSL_ERROR_WANT_ASYNC;
3892
0
    if (SSL_want_async_job(s))
3893
0
        return SSL_ERROR_WANT_ASYNC_JOB;
3894
0
    if (SSL_want_client_hello_cb(s))
3895
0
        return SSL_ERROR_WANT_CLIENT_HELLO_CB;
3896
3897
0
    if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
3898
0
        (s->s3.warn_alert == SSL_AD_CLOSE_NOTIFY))
3899
0
        return SSL_ERROR_ZERO_RETURN;
3900
3901
0
    return SSL_ERROR_SYSCALL;
3902
0
}
3903
3904
static int ssl_do_handshake_intern(void *vargs)
3905
0
{
3906
0
    struct ssl_async_args *args;
3907
0
    SSL *s;
3908
3909
0
    args = (struct ssl_async_args *)vargs;
3910
0
    s = args->s;
3911
3912
0
    return s->handshake_func(s);
3913
0
}
3914
3915
int SSL_do_handshake(SSL *s)
3916
30.7k
{
3917
30.7k
    int ret = 1;
3918
3919
30.7k
    if (s->handshake_func == NULL) {
3920
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CONNECTION_TYPE_NOT_SET);
3921
0
        return -1;
3922
0
    }
3923
3924
30.7k
    ossl_statem_check_finish_init(s, -1);
3925
3926
30.7k
    s->method->ssl_renegotiate_check(s, 0);
3927
3928
30.7k
    if (SSL_in_init(s) || SSL_in_before(s)) {
3929
30.7k
        if ((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
3930
0
            struct ssl_async_args args;
3931
3932
0
            memset(&args, 0, sizeof(args));
3933
0
            args.s = s;
3934
3935
0
            ret = ssl_start_async_job(s, &args, ssl_do_handshake_intern);
3936
30.7k
        } else {
3937
30.7k
            ret = s->handshake_func(s);
3938
30.7k
        }
3939
30.7k
    }
3940
30.7k
    return ret;
3941
30.7k
}
3942
3943
void SSL_set_accept_state(SSL *s)
3944
11.2k
{
3945
11.2k
    s->server = 1;
3946
11.2k
    s->shutdown = 0;
3947
11.2k
    ossl_statem_clear(s);
3948
11.2k
    s->handshake_func = s->method->ssl_accept;
3949
11.2k
    clear_ciphers(s);
3950
11.2k
}
3951
3952
void SSL_set_connect_state(SSL *s)
3953
14.9k
{
3954
14.9k
    s->server = 0;
3955
14.9k
    s->shutdown = 0;
3956
14.9k
    ossl_statem_clear(s);
3957
14.9k
    s->handshake_func = s->method->ssl_connect;
3958
14.9k
    clear_ciphers(s);
3959
14.9k
}
3960
3961
int ssl_undefined_function(SSL *s)
3962
0
{
3963
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3964
0
    return 0;
3965
0
}
3966
3967
int ssl_undefined_void_function(void)
3968
0
{
3969
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3970
0
    return 0;
3971
0
}
3972
3973
int ssl_undefined_const_function(const SSL *s)
3974
0
{
3975
0
    return 0;
3976
0
}
3977
3978
const SSL_METHOD *ssl_bad_method(int ver)
3979
0
{
3980
0
    ERR_raise(ERR_LIB_SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3981
0
    return NULL;
3982
0
}
3983
3984
const char *ssl_protocol_to_string(int version)
3985
974
{
3986
974
    switch(version)
3987
974
    {
3988
22
    case TLS1_3_VERSION:
3989
22
        return "TLSv1.3";
3990
3991
19
    case TLS1_2_VERSION:
3992
19
        return "TLSv1.2";
3993
3994
55
    case TLS1_1_VERSION:
3995
55
        return "TLSv1.1";
3996
3997
13
    case TLS1_VERSION:
3998
13
        return "TLSv1";
3999
4000
14
    case SSL3_VERSION:
4001
14
        return "SSLv3";
4002
4003
5
    case DTLS1_BAD_VER:
4004
5
        return "DTLSv0.9";
4005
4006
2
    case DTLS1_VERSION:
4007
2
        return "DTLSv1";
4008
4009
1
    case DTLS1_2_VERSION:
4010
1
        return "DTLSv1.2";
4011
4012
843
    default:
4013
843
        return "unknown";
4014
974
    }
4015
974
}
4016
4017
const char *SSL_get_version(const SSL *s)
4018
0
{
4019
0
    return ssl_protocol_to_string(s->version);
4020
0
}
4021
4022
static int dup_ca_names(STACK_OF(X509_NAME) **dst, STACK_OF(X509_NAME) *src)
4023
0
{
4024
0
    STACK_OF(X509_NAME) *sk;
4025
0
    X509_NAME *xn;
4026
0
    int i;
4027
4028
0
    if (src == NULL) {
4029
0
        *dst = NULL;
4030
0
        return 1;
4031
0
    }
4032
4033
0
    if ((sk = sk_X509_NAME_new_null()) == NULL)
4034
0
        return 0;
4035
0
    for (i = 0; i < sk_X509_NAME_num(src); i++) {
4036
0
        xn = X509_NAME_dup(sk_X509_NAME_value(src, i));
4037
0
        if (xn == NULL) {
4038
0
            sk_X509_NAME_pop_free(sk, X509_NAME_free);
4039
0
            return 0;
4040
0
        }
4041
0
        if (sk_X509_NAME_insert(sk, xn, i) == 0) {
4042
0
            X509_NAME_free(xn);
4043
0
            sk_X509_NAME_pop_free(sk, X509_NAME_free);
4044
0
            return 0;
4045
0
        }
4046
0
    }
4047
0
    *dst = sk;
4048
4049
0
    return 1;
4050
0
}
4051
4052
SSL *SSL_dup(SSL *s)
4053
0
{
4054
0
    SSL *ret;
4055
0
    int i;
4056
4057
    /* If we're not quiescent, just up_ref! */
4058
0
    if (!SSL_in_init(s) || !SSL_in_before(s)) {
4059
0
        CRYPTO_UP_REF(&s->references, &i, s->lock);
4060
0
        return s;
4061
0
    }
4062
4063
    /*
4064
     * Otherwise, copy configuration state, and session if set.
4065
     */
4066
0
    if ((ret = SSL_new(SSL_get_SSL_CTX(s))) == NULL)
4067
0
        return NULL;
4068
4069
0
    if (s->session != NULL) {
4070
        /*
4071
         * Arranges to share the same session via up_ref.  This "copies"
4072
         * session-id, SSL_METHOD, sid_ctx, and 'cert'
4073
         */
4074
0
        if (!SSL_copy_session_id(ret, s))
4075
0
            goto err;
4076
0
    } else {
4077
        /*
4078
         * No session has been established yet, so we have to expect that
4079
         * s->cert or ret->cert will be changed later -- they should not both
4080
         * point to the same object, and thus we can't use
4081
         * SSL_copy_session_id.
4082
         */
4083
0
        if (!SSL_set_ssl_method(ret, s->method))
4084
0
            goto err;
4085
4086
0
        if (s->cert != NULL) {
4087
0
            ssl_cert_free(ret->cert);
4088
0
            ret->cert = ssl_cert_dup(s->cert);
4089
0
            if (ret->cert == NULL)
4090
0
                goto err;
4091
0
        }
4092
4093
0
        if (!SSL_set_session_id_context(ret, s->sid_ctx,
4094
0
                                        (int)s->sid_ctx_length))
4095
0
            goto err;
4096
0
    }
4097
4098
0
    if (!ssl_dane_dup(ret, s))
4099
0
        goto err;
4100
0
    ret->version = s->version;
4101
0
    ret->options = s->options;
4102
0
    ret->min_proto_version = s->min_proto_version;
4103
0
    ret->max_proto_version = s->max_proto_version;
4104
0
    ret->mode = s->mode;
4105
0
    SSL_set_max_cert_list(ret, SSL_get_max_cert_list(s));
4106
0
    SSL_set_read_ahead(ret, SSL_get_read_ahead(s));
4107
0
    ret->msg_callback = s->msg_callback;
4108
0
    ret->msg_callback_arg = s->msg_callback_arg;
4109
0
    SSL_set_verify(ret, SSL_get_verify_mode(s), SSL_get_verify_callback(s));
4110
0
    SSL_set_verify_depth(ret, SSL_get_verify_depth(s));
4111
0
    ret->generate_session_id = s->generate_session_id;
4112
4113
0
    SSL_set_info_callback(ret, SSL_get_info_callback(s));
4114
4115
    /* copy app data, a little dangerous perhaps */
4116
0
    if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
4117
0
        goto err;
4118
4119
0
    ret->server = s->server;
4120
0
    if (s->handshake_func) {
4121
0
        if (s->server)
4122
0
            SSL_set_accept_state(ret);
4123
0
        else
4124
0
            SSL_set_connect_state(ret);
4125
0
    }
4126
0
    ret->shutdown = s->shutdown;
4127
0
    ret->hit = s->hit;
4128
4129
0
    ret->default_passwd_callback = s->default_passwd_callback;
4130
0
    ret->default_passwd_callback_userdata = s->default_passwd_callback_userdata;
4131
4132
0
    X509_VERIFY_PARAM_inherit(ret->param, s->param);
4133
4134
    /* dup the cipher_list and cipher_list_by_id stacks */
4135
0
    if (s->cipher_list != NULL) {
4136
0
        if ((ret->cipher_list = sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
4137
0
            goto err;
4138
0
    }
4139
0
    if (s->cipher_list_by_id != NULL)
4140
0
        if ((ret->cipher_list_by_id = sk_SSL_CIPHER_dup(s->cipher_list_by_id))
4141
0
            == NULL)
4142
0
            goto err;
4143
4144
    /* Dup the client_CA list */
4145
0
    if (!dup_ca_names(&ret->ca_names, s->ca_names)
4146
0
            || !dup_ca_names(&ret->client_ca_names, s->client_ca_names))
4147
0
        goto err;
4148
4149
0
    return ret;
4150
4151
0
 err:
4152
0
    SSL_free(ret);
4153
0
    return NULL;
4154
0
}
4155
4156
void ssl_clear_cipher_ctx(SSL *s)
4157
104k
{
4158
104k
    if (s->enc_read_ctx != NULL) {
4159
4.10k
        EVP_CIPHER_CTX_free(s->enc_read_ctx);
4160
4.10k
        s->enc_read_ctx = NULL;
4161
4.10k
    }
4162
104k
    if (s->enc_write_ctx != NULL) {
4163
4.53k
        EVP_CIPHER_CTX_free(s->enc_write_ctx);
4164
4.53k
        s->enc_write_ctx = NULL;
4165
4.53k
    }
4166
104k
#ifndef OPENSSL_NO_COMP
4167
104k
    COMP_CTX_free(s->expand);
4168
104k
    s->expand = NULL;
4169
104k
    COMP_CTX_free(s->compress);
4170
104k
    s->compress = NULL;
4171
104k
#endif
4172
104k
}
4173
4174
X509 *SSL_get_certificate(const SSL *s)
4175
0
{
4176
0
    if (s->cert != NULL)
4177
0
        return s->cert->key->x509;
4178
0
    else
4179
0
        return NULL;
4180
0
}
4181
4182
EVP_PKEY *SSL_get_privatekey(const SSL *s)
4183
0
{
4184
0
    if (s->cert != NULL)
4185
0
        return s->cert->key->privatekey;
4186
0
    else
4187
0
        return NULL;
4188
0
}
4189
4190
X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx)
4191
0
{
4192
0
    if (ctx->cert != NULL)
4193
0
        return ctx->cert->key->x509;
4194
0
    else
4195
0
        return NULL;
4196
0
}
4197
4198
EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx)
4199
0
{
4200
0
    if (ctx->cert != NULL)
4201
0
        return ctx->cert->key->privatekey;
4202
0
    else
4203
0
        return NULL;
4204
0
}
4205
4206
const SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
4207
0
{
4208
0
    if ((s->session != NULL) && (s->session->cipher != NULL))
4209
0
        return s->session->cipher;
4210
0
    return NULL;
4211
0
}
4212
4213
const SSL_CIPHER *SSL_get_pending_cipher(const SSL *s)
4214
0
{
4215
0
    return s->s3.tmp.new_cipher;
4216
0
}
4217
4218
const COMP_METHOD *SSL_get_current_compression(const SSL *s)
4219
0
{
4220
0
#ifndef OPENSSL_NO_COMP
4221
0
    return s->compress ? COMP_CTX_get_method(s->compress) : NULL;
4222
#else
4223
    return NULL;
4224
#endif
4225
0
}
4226
4227
const COMP_METHOD *SSL_get_current_expansion(const SSL *s)
4228
0
{
4229
0
#ifndef OPENSSL_NO_COMP
4230
0
    return s->expand ? COMP_CTX_get_method(s->expand) : NULL;
4231
#else
4232
    return NULL;
4233
#endif
4234
0
}
4235
4236
int ssl_init_wbio_buffer(SSL *s)
4237
25.7k
{
4238
25.7k
    BIO *bbio;
4239
4240
25.7k
    if (s->bbio != NULL) {
4241
        /* Already buffered. */
4242
0
        return 1;
4243
0
    }
4244
4245
25.7k
    bbio = BIO_new(BIO_f_buffer());
4246
25.7k
    if (bbio == NULL || BIO_set_read_buffer_size(bbio, 1) <= 0) {
4247
0
        BIO_free(bbio);
4248
0
        ERR_raise(ERR_LIB_SSL, ERR_R_BUF_LIB);
4249
0
        return 0;
4250
0
    }
4251
25.7k
    s->bbio = bbio;
4252
25.7k
    s->wbio = BIO_push(bbio, s->wbio);
4253
4254
25.7k
    return 1;
4255
25.7k
}
4256
4257
int ssl_free_wbio_buffer(SSL *s)
4258
195k
{
4259
    /* callers ensure s is never null */
4260
195k
    if (s->bbio == NULL)
4261
155k
        return 1;
4262
4263
40.1k
    s->wbio = BIO_pop(s->wbio);
4264
40.1k
    BIO_free(s->bbio);
4265
40.1k
    s->bbio = NULL;
4266
4267
40.1k
    return 1;
4268
195k
}
4269
4270
void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
4271
0
{
4272
0
    ctx->quiet_shutdown = mode;
4273
0
}
4274
4275
int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
4276
0
{
4277
0
    return ctx->quiet_shutdown;
4278
0
}
4279
4280
void SSL_set_quiet_shutdown(SSL *s, int mode)
4281
0
{
4282
0
    s->quiet_shutdown = mode;
4283
0
}
4284
4285
int SSL_get_quiet_shutdown(const SSL *s)
4286
0
{
4287
0
    return s->quiet_shutdown;
4288
0
}
4289
4290
void SSL_set_shutdown(SSL *s, int mode)
4291
0
{
4292
0
    s->shutdown = mode;
4293
0
}
4294
4295
int SSL_get_shutdown(const SSL *s)
4296
0
{
4297
0
    return s->shutdown;
4298
0
}
4299
4300
int SSL_version(const SSL *s)
4301
165k
{
4302
165k
    return s->version;
4303
165k
}
4304
4305
int SSL_client_version(const SSL *s)
4306
0
{
4307
0
    return s->client_version;
4308
0
}
4309
4310
SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
4311
0
{
4312
0
    return ssl->ctx;
4313
0
}
4314
4315
SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx)
4316
0
{
4317
0
    CERT *new_cert;
4318
0
    if (ssl->ctx == ctx)
4319
0
        return ssl->ctx;
4320
0
    if (ctx == NULL)
4321
0
        ctx = ssl->session_ctx;
4322
0
    new_cert = ssl_cert_dup(ctx->cert);
4323
0
    if (new_cert == NULL) {
4324
0
        return NULL;
4325
0
    }
4326
4327
0
    if (!custom_exts_copy_flags(&new_cert->custext, &ssl->cert->custext)) {
4328
0
        ssl_cert_free(new_cert);
4329
0
        return NULL;
4330
0
    }
4331
4332
0
    ssl_cert_free(ssl->cert);
4333
0
    ssl->cert = new_cert;
4334
4335
    /*
4336
     * Program invariant: |sid_ctx| has fixed size (SSL_MAX_SID_CTX_LENGTH),
4337
     * so setter APIs must prevent invalid lengths from entering the system.
4338
     */
4339
0
    if (!ossl_assert(ssl->sid_ctx_length <= sizeof(ssl->sid_ctx)))
4340
0
        return NULL;
4341
4342
    /*
4343
     * If the session ID context matches that of the parent SSL_CTX,
4344
     * inherit it from the new SSL_CTX as well. If however the context does
4345
     * not match (i.e., it was set per-ssl with SSL_set_session_id_context),
4346
     * leave it unchanged.
4347
     */
4348
0
    if ((ssl->ctx != NULL) &&
4349
0
        (ssl->sid_ctx_length == ssl->ctx->sid_ctx_length) &&
4350
0
        (memcmp(ssl->sid_ctx, ssl->ctx->sid_ctx, ssl->sid_ctx_length) == 0)) {
4351
0
        ssl->sid_ctx_length = ctx->sid_ctx_length;
4352
0
        memcpy(&ssl->sid_ctx, &ctx->sid_ctx, sizeof(ssl->sid_ctx));
4353
0
    }
4354
4355
0
    SSL_CTX_up_ref(ctx);
4356
0
    SSL_CTX_free(ssl->ctx);     /* decrement reference count */
4357
0
    ssl->ctx = ctx;
4358
4359
0
    return ssl->ctx;
4360
0
}
4361
4362
int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
4363
0
{
4364
0
    return X509_STORE_set_default_paths_ex(ctx->cert_store, ctx->libctx,
4365
0
                                           ctx->propq);
4366
0
}
4367
4368
int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx)
4369
0
{
4370
0
    X509_LOOKUP *lookup;
4371
4372
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir());
4373
0
    if (lookup == NULL)
4374
0
        return 0;
4375
4376
    /* We ignore errors, in case the directory doesn't exist */
4377
0
    ERR_set_mark();
4378
4379
0
    X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
4380
4381
0
    ERR_pop_to_mark();
4382
4383
0
    return 1;
4384
0
}
4385
4386
int SSL_CTX_set_default_verify_file(SSL_CTX *ctx)
4387
0
{
4388
0
    X509_LOOKUP *lookup;
4389
4390
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file());
4391
0
    if (lookup == NULL)
4392
0
        return 0;
4393
4394
    /* We ignore errors, in case the file doesn't exist */
4395
0
    ERR_set_mark();
4396
4397
0
    X509_LOOKUP_load_file_ex(lookup, NULL, X509_FILETYPE_DEFAULT, ctx->libctx,
4398
0
                             ctx->propq);
4399
4400
0
    ERR_pop_to_mark();
4401
4402
0
    return 1;
4403
0
}
4404
4405
int SSL_CTX_set_default_verify_store(SSL_CTX *ctx)
4406
0
{
4407
0
    X509_LOOKUP *lookup;
4408
4409
0
    lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_store());
4410
0
    if (lookup == NULL)
4411
0
        return 0;
4412
4413
    /* We ignore errors, in case the directory doesn't exist */
4414
0
    ERR_set_mark();
4415
4416
0
    X509_LOOKUP_add_store_ex(lookup, NULL, ctx->libctx, ctx->propq);
4417
4418
0
    ERR_pop_to_mark();
4419
4420
0
    return 1;
4421
0
}
4422
4423
int SSL_CTX_load_verify_file(SSL_CTX *ctx, const char *CAfile)
4424
0
{
4425
0
    return X509_STORE_load_file_ex(ctx->cert_store, CAfile, ctx->libctx,
4426
0
                                   ctx->propq);
4427
0
}
4428
4429
int SSL_CTX_load_verify_dir(SSL_CTX *ctx, const char *CApath)
4430
0
{
4431
0
    return X509_STORE_load_path(ctx->cert_store, CApath);
4432
0
}
4433
4434
int SSL_CTX_load_verify_store(SSL_CTX *ctx, const char *CAstore)
4435
0
{
4436
0
    return X509_STORE_load_store_ex(ctx->cert_store, CAstore, ctx->libctx,
4437
0
                                    ctx->propq);
4438
0
}
4439
4440
int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
4441
                                  const char *CApath)
4442
0
{
4443
0
    if (CAfile == NULL && CApath == NULL)
4444
0
        return 0;
4445
0
    if (CAfile != NULL && !SSL_CTX_load_verify_file(ctx, CAfile))
4446
0
        return 0;
4447
0
    if (CApath != NULL && !SSL_CTX_load_verify_dir(ctx, CApath))
4448
0
        return 0;
4449
0
    return 1;
4450
0
}
4451
4452
void SSL_set_info_callback(SSL *ssl,
4453
                           void (*cb) (const SSL *ssl, int type, int val))
4454
0
{
4455
0
    ssl->info_callback = cb;
4456
0
}
4457
4458
/*
4459
 * One compiler (Diab DCC) doesn't like argument names in returned function
4460
 * pointer.
4461
 */
4462
void (*SSL_get_info_callback(const SSL *ssl)) (const SSL * /* ssl */ ,
4463
                                               int /* type */ ,
4464
0
                                               int /* val */ ) {
4465
0
    return ssl->info_callback;
4466
0
}
4467
4468
void SSL_set_verify_result(SSL *ssl, long arg)
4469
0
{
4470
0
    ssl->verify_result = arg;
4471
0
}
4472
4473
long SSL_get_verify_result(const SSL *ssl)
4474
0
{
4475
0
    return ssl->verify_result;
4476
0
}
4477
4478
size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen)
4479
0
{
4480
0
    if (outlen == 0)
4481
0
        return sizeof(ssl->s3.client_random);
4482
0
    if (outlen > sizeof(ssl->s3.client_random))
4483
0
        outlen = sizeof(ssl->s3.client_random);
4484
0
    memcpy(out, ssl->s3.client_random, outlen);
4485
0
    return outlen;
4486
0
}
4487
4488
size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen)
4489
0
{
4490
0
    if (outlen == 0)
4491
0
        return sizeof(ssl->s3.server_random);
4492
0
    if (outlen > sizeof(ssl->s3.server_random))
4493
0
        outlen = sizeof(ssl->s3.server_random);
4494
0
    memcpy(out, ssl->s3.server_random, outlen);
4495
0
    return outlen;
4496
0
}
4497
4498
size_t SSL_SESSION_get_master_key(const SSL_SESSION *session,
4499
                                  unsigned char *out, size_t outlen)
4500
0
{
4501
0
    if (outlen == 0)
4502
0
        return session->master_key_length;
4503
0
    if (outlen > session->master_key_length)
4504
0
        outlen = session->master_key_length;
4505
0
    memcpy(out, session->master_key, outlen);
4506
0
    return outlen;
4507
0
}
4508
4509
int SSL_SESSION_set1_master_key(SSL_SESSION *sess, const unsigned char *in,
4510
                                size_t len)
4511
0
{
4512
0
    if (len > sizeof(sess->master_key))
4513
0
        return 0;
4514
4515
0
    memcpy(sess->master_key, in, len);
4516
0
    sess->master_key_length = len;
4517
0
    return 1;
4518
0
}
4519
4520
4521
int SSL_set_ex_data(SSL *s, int idx, void *arg)
4522
0
{
4523
0
    return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
4524
0
}
4525
4526
void *SSL_get_ex_data(const SSL *s, int idx)
4527
0
{
4528
0
    return CRYPTO_get_ex_data(&s->ex_data, idx);
4529
0
}
4530
4531
int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
4532
0
{
4533
0
    return CRYPTO_set_ex_data(&s->ex_data, idx, arg);
4534
0
}
4535
4536
void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
4537
0
{
4538
0
    return CRYPTO_get_ex_data(&s->ex_data, idx);
4539
0
}
4540
4541
X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
4542
0
{
4543
0
    return ctx->cert_store;
4544
0
}
4545
4546
void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
4547
0
{
4548
0
    X509_STORE_free(ctx->cert_store);
4549
0
    ctx->cert_store = store;
4550
0
}
4551
4552
void SSL_CTX_set1_cert_store(SSL_CTX *ctx, X509_STORE *store)
4553
0
{
4554
0
    if (store != NULL)
4555
0
        X509_STORE_up_ref(store);
4556
0
    SSL_CTX_set_cert_store(ctx, store);
4557
0
}
4558
4559
int SSL_want(const SSL *s)
4560
0
{
4561
0
    return s->rwstate;
4562
0
}
4563
4564
#ifndef OPENSSL_NO_PSK
4565
int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
4566
0
{
4567
0
    if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
4568
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
4569
0
        return 0;
4570
0
    }
4571
0
    OPENSSL_free(ctx->cert->psk_identity_hint);
4572
0
    if (identity_hint != NULL) {
4573
0
        ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
4574
0
        if (ctx->cert->psk_identity_hint == NULL)
4575
0
            return 0;
4576
0
    } else
4577
0
        ctx->cert->psk_identity_hint = NULL;
4578
0
    return 1;
4579
0
}
4580
4581
int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
4582
0
{
4583
0
    if (s == NULL)
4584
0
        return 0;
4585
4586
0
    if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
4587
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DATA_LENGTH_TOO_LONG);
4588
0
        return 0;
4589
0
    }
4590
0
    OPENSSL_free(s->cert->psk_identity_hint);
4591
0
    if (identity_hint != NULL) {
4592
0
        s->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
4593
0
        if (s->cert->psk_identity_hint == NULL)
4594
0
            return 0;
4595
0
    } else
4596
0
        s->cert->psk_identity_hint = NULL;
4597
0
    return 1;
4598
0
}
4599
4600
const char *SSL_get_psk_identity_hint(const SSL *s)
4601
0
{
4602
0
    if (s == NULL || s->session == NULL)
4603
0
        return NULL;
4604
0
    return s->session->psk_identity_hint;
4605
0
}
4606
4607
const char *SSL_get_psk_identity(const SSL *s)
4608
0
{
4609
0
    if (s == NULL || s->session == NULL)
4610
0
        return NULL;
4611
0
    return s->session->psk_identity;
4612
0
}
4613
4614
void SSL_set_psk_client_callback(SSL *s, SSL_psk_client_cb_func cb)
4615
0
{
4616
0
    s->psk_client_callback = cb;
4617
0
}
4618
4619
void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, SSL_psk_client_cb_func cb)
4620
0
{
4621
0
    ctx->psk_client_callback = cb;
4622
0
}
4623
4624
void SSL_set_psk_server_callback(SSL *s, SSL_psk_server_cb_func cb)
4625
0
{
4626
0
    s->psk_server_callback = cb;
4627
0
}
4628
4629
void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, SSL_psk_server_cb_func cb)
4630
0
{
4631
0
    ctx->psk_server_callback = cb;
4632
0
}
4633
#endif
4634
4635
void SSL_set_psk_find_session_callback(SSL *s, SSL_psk_find_session_cb_func cb)
4636
0
{
4637
0
    s->psk_find_session_cb = cb;
4638
0
}
4639
4640
void SSL_CTX_set_psk_find_session_callback(SSL_CTX *ctx,
4641
                                           SSL_psk_find_session_cb_func cb)
4642
0
{
4643
0
    ctx->psk_find_session_cb = cb;
4644
0
}
4645
4646
void SSL_set_psk_use_session_callback(SSL *s, SSL_psk_use_session_cb_func cb)
4647
0
{
4648
0
    s->psk_use_session_cb = cb;
4649
0
}
4650
4651
void SSL_CTX_set_psk_use_session_callback(SSL_CTX *ctx,
4652
                                           SSL_psk_use_session_cb_func cb)
4653
0
{
4654
0
    ctx->psk_use_session_cb = cb;
4655
0
}
4656
4657
void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
4658
                              void (*cb) (int write_p, int version,
4659
                                          int content_type, const void *buf,
4660
                                          size_t len, SSL *ssl, void *arg))
4661
0
{
4662
0
    SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
4663
0
}
4664
4665
void SSL_set_msg_callback(SSL *ssl,
4666
                          void (*cb) (int write_p, int version,
4667
                                      int content_type, const void *buf,
4668
                                      size_t len, SSL *ssl, void *arg))
4669
0
{
4670
0
    SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
4671
0
}
4672
4673
void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
4674
                                                int (*cb) (SSL *ssl,
4675
                                                           int
4676
                                                           is_forward_secure))
4677
0
{
4678
0
    SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
4679
0
                          (void (*)(void))cb);
4680
0
}
4681
4682
void SSL_set_not_resumable_session_callback(SSL *ssl,
4683
                                            int (*cb) (SSL *ssl,
4684
                                                       int is_forward_secure))
4685
0
{
4686
0
    SSL_callback_ctrl(ssl, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
4687
0
                      (void (*)(void))cb);
4688
0
}
4689
4690
void SSL_CTX_set_record_padding_callback(SSL_CTX *ctx,
4691
                                         size_t (*cb) (SSL *ssl, int type,
4692
                                                       size_t len, void *arg))
4693
0
{
4694
0
    ctx->record_padding_cb = cb;
4695
0
}
4696
4697
void SSL_CTX_set_record_padding_callback_arg(SSL_CTX *ctx, void *arg)
4698
0
{
4699
0
    ctx->record_padding_arg = arg;
4700
0
}
4701
4702
void *SSL_CTX_get_record_padding_callback_arg(const SSL_CTX *ctx)
4703
0
{
4704
0
    return ctx->record_padding_arg;
4705
0
}
4706
4707
int SSL_CTX_set_block_padding(SSL_CTX *ctx, size_t block_size)
4708
0
{
4709
    /* block size of 0 or 1 is basically no padding */
4710
0
    if (block_size == 1)
4711
0
        ctx->block_padding = 0;
4712
0
    else if (block_size <= SSL3_RT_MAX_PLAIN_LENGTH)
4713
0
        ctx->block_padding = block_size;
4714
0
    else
4715
0
        return 0;
4716
0
    return 1;
4717
0
}
4718
4719
int SSL_set_record_padding_callback(SSL *ssl,
4720
                                     size_t (*cb) (SSL *ssl, int type,
4721
                                                   size_t len, void *arg))
4722
0
{
4723
0
    BIO *b;
4724
4725
0
    b = SSL_get_wbio(ssl);
4726
0
    if (b == NULL || !BIO_get_ktls_send(b)) {
4727
0
        ssl->record_padding_cb = cb;
4728
0
        return 1;
4729
0
    }
4730
0
    return 0;
4731
0
}
4732
4733
void SSL_set_record_padding_callback_arg(SSL *ssl, void *arg)
4734
0
{
4735
0
    ssl->record_padding_arg = arg;
4736
0
}
4737
4738
void *SSL_get_record_padding_callback_arg(const SSL *ssl)
4739
0
{
4740
0
    return ssl->record_padding_arg;
4741
0
}
4742
4743
int SSL_set_block_padding(SSL *ssl, size_t block_size)
4744
0
{
4745
    /* block size of 0 or 1 is basically no padding */
4746
0
    if (block_size == 1)
4747
0
        ssl->block_padding = 0;
4748
0
    else if (block_size <= SSL3_RT_MAX_PLAIN_LENGTH)
4749
0
        ssl->block_padding = block_size;
4750
0
    else
4751
0
        return 0;
4752
0
    return 1;
4753
0
}
4754
4755
int SSL_set_num_tickets(SSL *s, size_t num_tickets)
4756
0
{
4757
0
    s->num_tickets = num_tickets;
4758
4759
0
    return 1;
4760
0
}
4761
4762
size_t SSL_get_num_tickets(const SSL *s)
4763
0
{
4764
0
    return s->num_tickets;
4765
0
}
4766
4767
int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets)
4768
0
{
4769
0
    ctx->num_tickets = num_tickets;
4770
4771
0
    return 1;
4772
0
}
4773
4774
size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx)
4775
0
{
4776
0
    return ctx->num_tickets;
4777
0
}
4778
4779
/*
4780
 * Allocates new EVP_MD_CTX and sets pointer to it into given pointer
4781
 * variable, freeing EVP_MD_CTX previously stored in that variable, if any.
4782
 * If EVP_MD pointer is passed, initializes ctx with this |md|.
4783
 * Returns the newly allocated ctx;
4784
 */
4785
4786
EVP_MD_CTX *ssl_replace_hash(EVP_MD_CTX **hash, const EVP_MD *md)
4787
6.45k
{
4788
6.45k
    ssl_clear_hash_ctx(hash);
4789
6.45k
    *hash = EVP_MD_CTX_new();
4790
6.45k
    if (*hash == NULL || (md && EVP_DigestInit_ex(*hash, md, NULL) <= 0)) {
4791
0
        EVP_MD_CTX_free(*hash);
4792
0
        *hash = NULL;
4793
0
        return NULL;
4794
0
    }
4795
6.45k
    return *hash;
4796
6.45k
}
4797
4798
void ssl_clear_hash_ctx(EVP_MD_CTX **hash)
4799
216k
{
4800
4801
216k
    EVP_MD_CTX_free(*hash);
4802
216k
    *hash = NULL;
4803
216k
}
4804
4805
/* Retrieve handshake hashes */
4806
int ssl_handshake_hash(SSL *s, unsigned char *out, size_t outlen,
4807
                       size_t *hashlen)
4808
14.9k
{
4809
14.9k
    EVP_MD_CTX *ctx = NULL;
4810
14.9k
    EVP_MD_CTX *hdgst = s->s3.handshake_dgst;
4811
14.9k
    int hashleni = EVP_MD_CTX_get_size(hdgst);
4812
14.9k
    int ret = 0;
4813
4814
14.9k
    if (hashleni < 0 || (size_t)hashleni > outlen) {
4815
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4816
0
        goto err;
4817
0
    }
4818
4819
14.9k
    ctx = EVP_MD_CTX_new();
4820
14.9k
    if (ctx == NULL) {
4821
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4822
0
        goto err;
4823
0
    }
4824
4825
14.9k
    if (!EVP_MD_CTX_copy_ex(ctx, hdgst)
4826
14.9k
        || EVP_DigestFinal_ex(ctx, out, NULL) <= 0) {
4827
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
4828
0
        goto err;
4829
0
    }
4830
4831
14.9k
    *hashlen = hashleni;
4832
4833
14.9k
    ret = 1;
4834
14.9k
 err:
4835
14.9k
    EVP_MD_CTX_free(ctx);
4836
14.9k
    return ret;
4837
14.9k
}
4838
4839
int SSL_session_reused(const SSL *s)
4840
0
{
4841
0
    return s->hit;
4842
0
}
4843
4844
int SSL_is_server(const SSL *s)
4845
0
{
4846
0
    return s->server;
4847
0
}
4848
4849
#ifndef OPENSSL_NO_DEPRECATED_1_1_0
4850
void SSL_set_debug(SSL *s, int debug)
4851
0
{
4852
    /* Old function was do-nothing anyway... */
4853
0
    (void)s;
4854
0
    (void)debug;
4855
0
}
4856
#endif
4857
4858
void SSL_set_security_level(SSL *s, int level)
4859
0
{
4860
0
    s->cert->sec_level = level;
4861
0
}
4862
4863
int SSL_get_security_level(const SSL *s)
4864
6.25M
{
4865
6.25M
    return s->cert->sec_level;
4866
6.25M
}
4867
4868
void SSL_set_security_callback(SSL *s,
4869
                               int (*cb) (const SSL *s, const SSL_CTX *ctx,
4870
                                          int op, int bits, int nid,
4871
                                          void *other, void *ex))
4872
0
{
4873
0
    s->cert->sec_cb = cb;
4874
0
}
4875
4876
int (*SSL_get_security_callback(const SSL *s)) (const SSL *s,
4877
                                                const SSL_CTX *ctx, int op,
4878
                                                int bits, int nid, void *other,
4879
0
                                                void *ex) {
4880
0
    return s->cert->sec_cb;
4881
0
}
4882
4883
void SSL_set0_security_ex_data(SSL *s, void *ex)
4884
0
{
4885
0
    s->cert->sec_ex = ex;
4886
0
}
4887
4888
void *SSL_get0_security_ex_data(const SSL *s)
4889
0
{
4890
0
    return s->cert->sec_ex;
4891
0
}
4892
4893
void SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
4894
0
{
4895
0
    ctx->cert->sec_level = level;
4896
0
}
4897
4898
int SSL_CTX_get_security_level(const SSL_CTX *ctx)
4899
49.4k
{
4900
49.4k
    return ctx->cert->sec_level;
4901
49.4k
}
4902
4903
void SSL_CTX_set_security_callback(SSL_CTX *ctx,
4904
                                   int (*cb) (const SSL *s, const SSL_CTX *ctx,
4905
                                              int op, int bits, int nid,
4906
                                              void *other, void *ex))
4907
0
{
4908
0
    ctx->cert->sec_cb = cb;
4909
0
}
4910
4911
int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx)) (const SSL *s,
4912
                                                          const SSL_CTX *ctx,
4913
                                                          int op, int bits,
4914
                                                          int nid,
4915
                                                          void *other,
4916
0
                                                          void *ex) {
4917
0
    return ctx->cert->sec_cb;
4918
0
}
4919
4920
void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex)
4921
0
{
4922
0
    ctx->cert->sec_ex = ex;
4923
0
}
4924
4925
void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx)
4926
0
{
4927
0
    return ctx->cert->sec_ex;
4928
0
}
4929
4930
uint64_t SSL_CTX_get_options(const SSL_CTX *ctx)
4931
0
{
4932
0
    return ctx->options;
4933
0
}
4934
4935
uint64_t SSL_get_options(const SSL *s)
4936
19.5k
{
4937
19.5k
    return s->options;
4938
19.5k
}
4939
4940
uint64_t SSL_CTX_set_options(SSL_CTX *ctx, uint64_t op)
4941
0
{
4942
0
    return ctx->options |= op;
4943
0
}
4944
4945
uint64_t SSL_set_options(SSL *s, uint64_t op)
4946
0
{
4947
0
    return s->options |= op;
4948
0
}
4949
4950
uint64_t SSL_CTX_clear_options(SSL_CTX *ctx, uint64_t op)
4951
0
{
4952
0
    return ctx->options &= ~op;
4953
0
}
4954
4955
uint64_t SSL_clear_options(SSL *s, uint64_t op)
4956
0
{
4957
0
    return s->options &= ~op;
4958
0
}
4959
4960
STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s)
4961
0
{
4962
0
    return s->verified_chain;
4963
0
}
4964
4965
IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);
4966
4967
#ifndef OPENSSL_NO_CT
4968
4969
/*
4970
 * Moves SCTs from the |src| stack to the |dst| stack.
4971
 * The source of each SCT will be set to |origin|.
4972
 * If |dst| points to a NULL pointer, a new stack will be created and owned by
4973
 * the caller.
4974
 * Returns the number of SCTs moved, or a negative integer if an error occurs.
4975
 */
4976
static int ct_move_scts(STACK_OF(SCT) **dst, STACK_OF(SCT) *src,
4977
                        sct_source_t origin)
4978
0
{
4979
0
    int scts_moved = 0;
4980
0
    SCT *sct = NULL;
4981
4982
0
    if (*dst == NULL) {
4983
0
        *dst = sk_SCT_new_null();
4984
0
        if (*dst == NULL) {
4985
0
            ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
4986
0
            goto err;
4987
0
        }
4988
0
    }
4989
4990
0
    while ((sct = sk_SCT_pop(src)) != NULL) {
4991
0
        if (SCT_set_source(sct, origin) != 1)
4992
0
            goto err;
4993
4994
0
        if (sk_SCT_push(*dst, sct) <= 0)
4995
0
            goto err;
4996
0
        scts_moved += 1;
4997
0
    }
4998
4999
0
    return scts_moved;
5000
0
 err:
5001
0
    if (sct != NULL)
5002
0
        sk_SCT_push(src, sct);  /* Put the SCT back */
5003
0
    return -1;
5004
0
}
5005
5006
/*
5007
 * Look for data collected during ServerHello and parse if found.
5008
 * Returns the number of SCTs extracted.
5009
 */
5010
static int ct_extract_tls_extension_scts(SSL *s)
5011
0
{
5012
0
    int scts_extracted = 0;
5013
5014
0
    if (s->ext.scts != NULL) {
5015
0
        const unsigned char *p = s->ext.scts;
5016
0
        STACK_OF(SCT) *scts = o2i_SCT_LIST(NULL, &p, s->ext.scts_len);
5017
5018
0
        scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_TLS_EXTENSION);
5019
5020
0
        SCT_LIST_free(scts);
5021
0
    }
5022
5023
0
    return scts_extracted;
5024
0
}
5025
5026
/*
5027
 * Checks for an OCSP response and then attempts to extract any SCTs found if it
5028
 * contains an SCT X509 extension. They will be stored in |s->scts|.
5029
 * Returns:
5030
 * - The number of SCTs extracted, assuming an OCSP response exists.
5031
 * - 0 if no OCSP response exists or it contains no SCTs.
5032
 * - A negative integer if an error occurs.
5033
 */
5034
static int ct_extract_ocsp_response_scts(SSL *s)
5035
0
{
5036
0
# ifndef OPENSSL_NO_OCSP
5037
0
    int scts_extracted = 0;
5038
0
    const unsigned char *p;
5039
0
    OCSP_BASICRESP *br = NULL;
5040
0
    OCSP_RESPONSE *rsp = NULL;
5041
0
    STACK_OF(SCT) *scts = NULL;
5042
0
    int i;
5043
5044
0
    if (s->ext.ocsp.resp == NULL || s->ext.ocsp.resp_len == 0)
5045
0
        goto err;
5046
5047
0
    p = s->ext.ocsp.resp;
5048
0
    rsp = d2i_OCSP_RESPONSE(NULL, &p, (int)s->ext.ocsp.resp_len);
5049
0
    if (rsp == NULL)
5050
0
        goto err;
5051
5052
0
    br = OCSP_response_get1_basic(rsp);
5053
0
    if (br == NULL)
5054
0
        goto err;
5055
5056
0
    for (i = 0; i < OCSP_resp_count(br); ++i) {
5057
0
        OCSP_SINGLERESP *single = OCSP_resp_get0(br, i);
5058
5059
0
        if (single == NULL)
5060
0
            continue;
5061
5062
0
        scts =
5063
0
            OCSP_SINGLERESP_get1_ext_d2i(single, NID_ct_cert_scts, NULL, NULL);
5064
0
        scts_extracted =
5065
0
            ct_move_scts(&s->scts, scts, SCT_SOURCE_OCSP_STAPLED_RESPONSE);
5066
0
        if (scts_extracted < 0)
5067
0
            goto err;
5068
0
    }
5069
0
 err:
5070
0
    SCT_LIST_free(scts);
5071
0
    OCSP_BASICRESP_free(br);
5072
0
    OCSP_RESPONSE_free(rsp);
5073
0
    return scts_extracted;
5074
# else
5075
    /* Behave as if no OCSP response exists */
5076
    return 0;
5077
# endif
5078
0
}
5079
5080
/*
5081
 * Attempts to extract SCTs from the peer certificate.
5082
 * Return the number of SCTs extracted, or a negative integer if an error
5083
 * occurs.
5084
 */
5085
static int ct_extract_x509v3_extension_scts(SSL *s)
5086
0
{
5087
0
    int scts_extracted = 0;
5088
0
    X509 *cert = s->session != NULL ? s->session->peer : NULL;
5089
5090
0
    if (cert != NULL) {
5091
0
        STACK_OF(SCT) *scts =
5092
0
            X509_get_ext_d2i(cert, NID_ct_precert_scts, NULL, NULL);
5093
5094
0
        scts_extracted =
5095
0
            ct_move_scts(&s->scts, scts, SCT_SOURCE_X509V3_EXTENSION);
5096
5097
0
        SCT_LIST_free(scts);
5098
0
    }
5099
5100
0
    return scts_extracted;
5101
0
}
5102
5103
/*
5104
 * Attempts to find all received SCTs by checking TLS extensions, the OCSP
5105
 * response (if it exists) and X509v3 extensions in the certificate.
5106
 * Returns NULL if an error occurs.
5107
 */
5108
const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s)
5109
0
{
5110
0
    if (!s->scts_parsed) {
5111
0
        if (ct_extract_tls_extension_scts(s) < 0 ||
5112
0
            ct_extract_ocsp_response_scts(s) < 0 ||
5113
0
            ct_extract_x509v3_extension_scts(s) < 0)
5114
0
            goto err;
5115
5116
0
        s->scts_parsed = 1;
5117
0
    }
5118
0
    return s->scts;
5119
0
 err:
5120
0
    return NULL;
5121
0
}
5122
5123
static int ct_permissive(const CT_POLICY_EVAL_CTX * ctx,
5124
                         const STACK_OF(SCT) *scts, void *unused_arg)
5125
0
{
5126
0
    return 1;
5127
0
}
5128
5129
static int ct_strict(const CT_POLICY_EVAL_CTX * ctx,
5130
                     const STACK_OF(SCT) *scts, void *unused_arg)
5131
0
{
5132
0
    int count = scts != NULL ? sk_SCT_num(scts) : 0;
5133
0
    int i;
5134
5135
0
    for (i = 0; i < count; ++i) {
5136
0
        SCT *sct = sk_SCT_value(scts, i);
5137
0
        int status = SCT_get_validation_status(sct);
5138
5139
0
        if (status == SCT_VALIDATION_STATUS_VALID)
5140
0
            return 1;
5141
0
    }
5142
0
    ERR_raise(ERR_LIB_SSL, SSL_R_NO_VALID_SCTS);
5143
0
    return 0;
5144
0
}
5145
5146
int SSL_set_ct_validation_callback(SSL *s, ssl_ct_validation_cb callback,
5147
                                   void *arg)
5148
26.2k
{
5149
    /*
5150
     * Since code exists that uses the custom extension handler for CT, look
5151
     * for this and throw an error if they have already registered to use CT.
5152
     */
5153
26.2k
    if (callback != NULL && SSL_CTX_has_client_custom_ext(s->ctx,
5154
0
                                                          TLSEXT_TYPE_signed_certificate_timestamp))
5155
0
    {
5156
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
5157
0
        return 0;
5158
0
    }
5159
5160
26.2k
    if (callback != NULL) {
5161
        /*
5162
         * If we are validating CT, then we MUST accept SCTs served via OCSP
5163
         */
5164
0
        if (!SSL_set_tlsext_status_type(s, TLSEXT_STATUSTYPE_ocsp))
5165
0
            return 0;
5166
0
    }
5167
5168
26.2k
    s->ct_validation_callback = callback;
5169
26.2k
    s->ct_validation_callback_arg = arg;
5170
5171
26.2k
    return 1;
5172
26.2k
}
5173
5174
int SSL_CTX_set_ct_validation_callback(SSL_CTX *ctx,
5175
                                       ssl_ct_validation_cb callback, void *arg)
5176
0
{
5177
    /*
5178
     * Since code exists that uses the custom extension handler for CT, look for
5179
     * this and throw an error if they have already registered to use CT.
5180
     */
5181
0
    if (callback != NULL && SSL_CTX_has_client_custom_ext(ctx,
5182
0
                                                          TLSEXT_TYPE_signed_certificate_timestamp))
5183
0
    {
5184
0
        ERR_raise(ERR_LIB_SSL, SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
5185
0
        return 0;
5186
0
    }
5187
5188
0
    ctx->ct_validation_callback = callback;
5189
0
    ctx->ct_validation_callback_arg = arg;
5190
0
    return 1;
5191
0
}
5192
5193
int SSL_ct_is_enabled(const SSL *s)
5194
0
{
5195
0
    return s->ct_validation_callback != NULL;
5196
0
}
5197
5198
int SSL_CTX_ct_is_enabled(const SSL_CTX *ctx)
5199
0
{
5200
0
    return ctx->ct_validation_callback != NULL;
5201
0
}
5202
5203
int ssl_validate_ct(SSL *s)
5204
0
{
5205
0
    int ret = 0;
5206
0
    X509 *cert = s->session != NULL ? s->session->peer : NULL;
5207
0
    X509 *issuer;
5208
0
    SSL_DANE *dane = &s->dane;
5209
0
    CT_POLICY_EVAL_CTX *ctx = NULL;
5210
0
    const STACK_OF(SCT) *scts;
5211
5212
    /*
5213
     * If no callback is set, the peer is anonymous, or its chain is invalid,
5214
     * skip SCT validation - just return success.  Applications that continue
5215
     * handshakes without certificates, with unverified chains, or pinned leaf
5216
     * certificates are outside the scope of the WebPKI and CT.
5217
     *
5218
     * The above exclusions notwithstanding the vast majority of peers will
5219
     * have rather ordinary certificate chains validated by typical
5220
     * applications that perform certificate verification and therefore will
5221
     * process SCTs when enabled.
5222
     */
5223
0
    if (s->ct_validation_callback == NULL || cert == NULL ||
5224
0
        s->verify_result != X509_V_OK ||
5225
0
        s->verified_chain == NULL || sk_X509_num(s->verified_chain) <= 1)
5226
0
        return 1;
5227
5228
    /*
5229
     * CT not applicable for chains validated via DANE-TA(2) or DANE-EE(3)
5230
     * trust-anchors.  See https://tools.ietf.org/html/rfc7671#section-4.2
5231
     */
5232
0
    if (DANETLS_ENABLED(dane) && dane->mtlsa != NULL) {
5233
0
        switch (dane->mtlsa->usage) {
5234
0
        case DANETLS_USAGE_DANE_TA:
5235
0
        case DANETLS_USAGE_DANE_EE:
5236
0
            return 1;
5237
0
        }
5238
0
    }
5239
5240
0
    ctx = CT_POLICY_EVAL_CTX_new_ex(s->ctx->libctx, s->ctx->propq);
5241
0
    if (ctx == NULL) {
5242
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE);
5243
0
        goto end;
5244
0
    }
5245
5246
0
    issuer = sk_X509_value(s->verified_chain, 1);
5247
0
    CT_POLICY_EVAL_CTX_set1_cert(ctx, cert);
5248
0
    CT_POLICY_EVAL_CTX_set1_issuer(ctx, issuer);
5249
0
    CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE(ctx, s->ctx->ctlog_store);
5250
0
    CT_POLICY_EVAL_CTX_set_time(
5251
0
            ctx, (uint64_t)SSL_SESSION_get_time(SSL_get0_session(s)) * 1000);
5252
5253
0
    scts = SSL_get0_peer_scts(s);
5254
5255
    /*
5256
     * This function returns success (> 0) only when all the SCTs are valid, 0
5257
     * when some are invalid, and < 0 on various internal errors (out of
5258
     * memory, etc.).  Having some, or even all, invalid SCTs is not sufficient
5259
     * reason to abort the handshake, that decision is up to the callback.
5260
     * Therefore, we error out only in the unexpected case that the return
5261
     * value is negative.
5262
     *
5263
     * XXX: One might well argue that the return value of this function is an
5264
     * unfortunate design choice.  Its job is only to determine the validation
5265
     * status of each of the provided SCTs.  So long as it correctly separates
5266
     * the wheat from the chaff it should return success.  Failure in this case
5267
     * ought to correspond to an inability to carry out its duties.
5268
     */
5269
0
    if (SCT_LIST_validate(scts, ctx) < 0) {
5270
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_SCT_VERIFICATION_FAILED);
5271
0
        goto end;
5272
0
    }
5273
5274
0
    ret = s->ct_validation_callback(ctx, scts, s->ct_validation_callback_arg);
5275
0
    if (ret < 0)
5276
0
        ret = 0;                /* This function returns 0 on failure */
5277
0
    if (!ret)
5278
0
        SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_CALLBACK_FAILED);
5279
5280
0
 end:
5281
0
    CT_POLICY_EVAL_CTX_free(ctx);
5282
    /*
5283
     * With SSL_VERIFY_NONE the session may be cached and re-used despite a
5284
     * failure return code here.  Also the application may wish the complete
5285
     * the handshake, and then disconnect cleanly at a higher layer, after
5286
     * checking the verification status of the completed connection.
5287
     *
5288
     * We therefore force a certificate verification failure which will be
5289
     * visible via SSL_get_verify_result() and cached as part of any resumed
5290
     * session.
5291
     *
5292
     * Note: the permissive callback is for information gathering only, always
5293
     * returns success, and does not affect verification status.  Only the
5294
     * strict callback or a custom application-specified callback can trigger
5295
     * connection failure or record a verification error.
5296
     */
5297
0
    if (ret <= 0)
5298
0
        s->verify_result = X509_V_ERR_NO_VALID_SCTS;
5299
0
    return ret;
5300
0
}
5301
5302
int SSL_CTX_enable_ct(SSL_CTX *ctx, int validation_mode)
5303
0
{
5304
0
    switch (validation_mode) {
5305
0
    default:
5306
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
5307
0
        return 0;
5308
0
    case SSL_CT_VALIDATION_PERMISSIVE:
5309
0
        return SSL_CTX_set_ct_validation_callback(ctx, ct_permissive, NULL);
5310
0
    case SSL_CT_VALIDATION_STRICT:
5311
0
        return SSL_CTX_set_ct_validation_callback(ctx, ct_strict, NULL);
5312
0
    }
5313
0
}
5314
5315
int SSL_enable_ct(SSL *s, int validation_mode)
5316
0
{
5317
0
    switch (validation_mode) {
5318
0
    default:
5319
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CT_VALIDATION_TYPE);
5320
0
        return 0;
5321
0
    case SSL_CT_VALIDATION_PERMISSIVE:
5322
0
        return SSL_set_ct_validation_callback(s, ct_permissive, NULL);
5323
0
    case SSL_CT_VALIDATION_STRICT:
5324
0
        return SSL_set_ct_validation_callback(s, ct_strict, NULL);
5325
0
    }
5326
0
}
5327
5328
int SSL_CTX_set_default_ctlog_list_file(SSL_CTX *ctx)
5329
0
{
5330
0
    return CTLOG_STORE_load_default_file(ctx->ctlog_store);
5331
0
}
5332
5333
int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
5334
0
{
5335
0
    return CTLOG_STORE_load_file(ctx->ctlog_store, path);
5336
0
}
5337
5338
void SSL_CTX_set0_ctlog_store(SSL_CTX *ctx, CTLOG_STORE * logs)
5339
0
{
5340
0
    CTLOG_STORE_free(ctx->ctlog_store);
5341
0
    ctx->ctlog_store = logs;
5342
0
}
5343
5344
const CTLOG_STORE *SSL_CTX_get0_ctlog_store(const SSL_CTX *ctx)
5345
0
{
5346
0
    return ctx->ctlog_store;
5347
0
}
5348
5349
#endif  /* OPENSSL_NO_CT */
5350
5351
void SSL_CTX_set_client_hello_cb(SSL_CTX *c, SSL_client_hello_cb_fn cb,
5352
                                 void *arg)
5353
0
{
5354
0
    c->client_hello_cb = cb;
5355
0
    c->client_hello_cb_arg = arg;
5356
0
}
5357
5358
int SSL_client_hello_isv2(SSL *s)
5359
0
{
5360
0
    if (s->clienthello == NULL)
5361
0
        return 0;
5362
0
    return s->clienthello->isv2;
5363
0
}
5364
5365
unsigned int SSL_client_hello_get0_legacy_version(SSL *s)
5366
0
{
5367
0
    if (s->clienthello == NULL)
5368
0
        return 0;
5369
0
    return s->clienthello->legacy_version;
5370
0
}
5371
5372
size_t SSL_client_hello_get0_random(SSL *s, const unsigned char **out)
5373
0
{
5374
0
    if (s->clienthello == NULL)
5375
0
        return 0;
5376
0
    if (out != NULL)
5377
0
        *out = s->clienthello->random;
5378
0
    return SSL3_RANDOM_SIZE;
5379
0
}
5380
5381
size_t SSL_client_hello_get0_session_id(SSL *s, const unsigned char **out)
5382
0
{
5383
0
    if (s->clienthello == NULL)
5384
0
        return 0;
5385
0
    if (out != NULL)
5386
0
        *out = s->clienthello->session_id;
5387
0
    return s->clienthello->session_id_len;
5388
0
}
5389
5390
size_t SSL_client_hello_get0_ciphers(SSL *s, const unsigned char **out)
5391
0
{
5392
0
    if (s->clienthello == NULL)
5393
0
        return 0;
5394
0
    if (out != NULL)
5395
0
        *out = PACKET_data(&s->clienthello->ciphersuites);
5396
0
    return PACKET_remaining(&s->clienthello->ciphersuites);
5397
0
}
5398
5399
size_t SSL_client_hello_get0_compression_methods(SSL *s, const unsigned char **out)
5400
0
{
5401
0
    if (s->clienthello == NULL)
5402
0
        return 0;
5403
0
    if (out != NULL)
5404
0
        *out = s->clienthello->compressions;
5405
0
    return s->clienthello->compressions_len;
5406
0
}
5407
5408
int SSL_client_hello_get1_extensions_present(SSL *s, int **out, size_t *outlen)
5409
0
{
5410
0
    RAW_EXTENSION *ext;
5411
0
    int *present;
5412
0
    size_t num = 0, i;
5413
5414
0
    if (s->clienthello == NULL || out == NULL || outlen == NULL)
5415
0
        return 0;
5416
0
    for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) {
5417
0
        ext = s->clienthello->pre_proc_exts + i;
5418
0
        if (ext->present)
5419
0
            num++;
5420
0
    }
5421
0
    if (num == 0) {
5422
0
        *out = NULL;
5423
0
        *outlen = 0;
5424
0
        return 1;
5425
0
    }
5426
0
    if ((present = OPENSSL_malloc(sizeof(*present) * num)) == NULL) {
5427
0
        ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
5428
0
        return 0;
5429
0
    }
5430
0
    for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) {
5431
0
        ext = s->clienthello->pre_proc_exts + i;
5432
0
        if (ext->present) {
5433
0
            if (ext->received_order >= num)
5434
0
                goto err;
5435
0
            present[ext->received_order] = ext->type;
5436
0
        }
5437
0
    }
5438
0
    *out = present;
5439
0
    *outlen = num;
5440
0
    return 1;
5441
0
 err:
5442
0
    OPENSSL_free(present);
5443
0
    return 0;
5444
0
}
5445
5446
int SSL_client_hello_get0_ext(SSL *s, unsigned int type, const unsigned char **out,
5447
                       size_t *outlen)
5448
0
{
5449
0
    size_t i;
5450
0
    RAW_EXTENSION *r;
5451
5452
0
    if (s->clienthello == NULL)
5453
0
        return 0;
5454
0
    for (i = 0; i < s->clienthello->pre_proc_exts_len; ++i) {
5455
0
        r = s->clienthello->pre_proc_exts + i;
5456
0
        if (r->present && r->type == type) {
5457
0
            if (out != NULL)
5458
0
                *out = PACKET_data(&r->data);
5459
0
            if (outlen != NULL)
5460
0
                *outlen = PACKET_remaining(&r->data);
5461
0
            return 1;
5462
0
        }
5463
0
    }
5464
0
    return 0;
5465
0
}
5466
5467
int SSL_free_buffers(SSL *ssl)
5468
0
{
5469
0
    RECORD_LAYER *rl = &ssl->rlayer;
5470
5471
0
    if (RECORD_LAYER_read_pending(rl) || RECORD_LAYER_write_pending(rl))
5472
0
        return 0;
5473
5474
0
    RECORD_LAYER_release(rl);
5475
0
    return 1;
5476
0
}
5477
5478
int SSL_alloc_buffers(SSL *ssl)
5479
0
{
5480
0
    return ssl3_setup_buffers(ssl);
5481
0
}
5482
5483
void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, SSL_CTX_keylog_cb_func cb)
5484
0
{
5485
0
    ctx->keylog_callback = cb;
5486
0
}
5487
5488
SSL_CTX_keylog_cb_func SSL_CTX_get_keylog_callback(const SSL_CTX *ctx)
5489
0
{
5490
0
    return ctx->keylog_callback;
5491
0
}
5492
5493
static int nss_keylog_int(const char *prefix,
5494
                          SSL *ssl,
5495
                          const uint8_t *parameter_1,
5496
                          size_t parameter_1_len,
5497
                          const uint8_t *parameter_2,
5498
                          size_t parameter_2_len)
5499
13.4k
{
5500
13.4k
    char *out = NULL;
5501
13.4k
    char *cursor = NULL;
5502
13.4k
    size_t out_len = 0;
5503
13.4k
    size_t i;
5504
13.4k
    size_t prefix_len;
5505
5506
13.4k
    if (ssl->ctx->keylog_callback == NULL)
5507
13.4k
        return 1;
5508
5509
    /*
5510
     * Our output buffer will contain the following strings, rendered with
5511
     * space characters in between, terminated by a NULL character: first the
5512
     * prefix, then the first parameter, then the second parameter. The
5513
     * meaning of each parameter depends on the specific key material being
5514
     * logged. Note that the first and second parameters are encoded in
5515
     * hexadecimal, so we need a buffer that is twice their lengths.
5516
     */
5517
0
    prefix_len = strlen(prefix);
5518
0
    out_len = prefix_len + (2 * parameter_1_len) + (2 * parameter_2_len) + 3;
5519
0
    if ((out = cursor = OPENSSL_malloc(out_len)) == NULL) {
5520
0
        SSLfatal(ssl, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE);
5521
0
        return 0;
5522
0
    }
5523
5524
0
    strcpy(cursor, prefix);
5525
0
    cursor += prefix_len;
5526
0
    *cursor++ = ' ';
5527
5528
0
    for (i = 0; i < parameter_1_len; i++) {
5529
0
        sprintf(cursor, "%02x", parameter_1[i]);
5530
0
        cursor += 2;
5531
0
    }
5532
0
    *cursor++ = ' ';
5533
5534
0
    for (i = 0; i < parameter_2_len; i++) {
5535
0
        sprintf(cursor, "%02x", parameter_2[i]);
5536
0
        cursor += 2;
5537
0
    }
5538
0
    *cursor = '\0';
5539
5540
0
    ssl->ctx->keylog_callback(ssl, (const char *)out);
5541
0
    OPENSSL_clear_free(out, out_len);
5542
0
    return 1;
5543
5544
0
}
5545
5546
int ssl_log_rsa_client_key_exchange(SSL *ssl,
5547
                                    const uint8_t *encrypted_premaster,
5548
                                    size_t encrypted_premaster_len,
5549
                                    const uint8_t *premaster,
5550
                                    size_t premaster_len)
5551
1.89k
{
5552
1.89k
    if (encrypted_premaster_len < 8) {
5553
0
        SSLfatal(ssl, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5554
0
        return 0;
5555
0
    }
5556
5557
    /* We only want the first 8 bytes of the encrypted premaster as a tag. */
5558
1.89k
    return nss_keylog_int("RSA",
5559
1.89k
                          ssl,
5560
1.89k
                          encrypted_premaster,
5561
1.89k
                          8,
5562
1.89k
                          premaster,
5563
1.89k
                          premaster_len);
5564
1.89k
}
5565
5566
int ssl_log_secret(SSL *ssl,
5567
                   const char *label,
5568
                   const uint8_t *secret,
5569
                   size_t secret_len)
5570
11.5k
{
5571
11.5k
    return nss_keylog_int(label,
5572
11.5k
                          ssl,
5573
11.5k
                          ssl->s3.client_random,
5574
11.5k
                          SSL3_RANDOM_SIZE,
5575
11.5k
                          secret,
5576
11.5k
                          secret_len);
5577
11.5k
}
5578
5579
6.59k
#define SSLV2_CIPHER_LEN    3
5580
5581
int ssl_cache_cipherlist(SSL *s, PACKET *cipher_suites, int sslv2format)
5582
14.2k
{
5583
14.2k
    int n;
5584
5585
14.2k
    n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
5586
5587
14.2k
    if (PACKET_remaining(cipher_suites) == 0) {
5588
51
        SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_NO_CIPHERS_SPECIFIED);
5589
51
        return 0;
5590
51
    }
5591
5592
14.2k
    if (PACKET_remaining(cipher_suites) % n != 0) {
5593
11
        SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
5594
11
        return 0;
5595
11
    }
5596
5597
14.2k
    OPENSSL_free(s->s3.tmp.ciphers_raw);
5598
14.2k
    s->s3.tmp.ciphers_raw = NULL;
5599
14.2k
    s->s3.tmp.ciphers_rawlen = 0;
5600
5601
14.2k
    if (sslv2format) {
5602
3.97k
        size_t numciphers = PACKET_remaining(cipher_suites) / n;
5603
3.97k
        PACKET sslv2ciphers = *cipher_suites;
5604
3.97k
        unsigned int leadbyte;
5605
3.97k
        unsigned char *raw;
5606
5607
        /*
5608
         * We store the raw ciphers list in SSLv3+ format so we need to do some
5609
         * preprocessing to convert the list first. If there are any SSLv2 only
5610
         * ciphersuites with a non-zero leading byte then we are going to
5611
         * slightly over allocate because we won't store those. But that isn't a
5612
         * problem.
5613
         */
5614
3.97k
        raw = OPENSSL_malloc(numciphers * TLS_CIPHER_LEN);
5615
3.97k
        s->s3.tmp.ciphers_raw = raw;
5616
3.97k
        if (raw == NULL) {
5617
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE);
5618
0
            return 0;
5619
0
        }
5620
3.97k
        for (s->s3.tmp.ciphers_rawlen = 0;
5621
93.7k
             PACKET_remaining(&sslv2ciphers) > 0;
5622
89.7k
             raw += TLS_CIPHER_LEN) {
5623
89.7k
            if (!PACKET_get_1(&sslv2ciphers, &leadbyte)
5624
89.7k
                    || (leadbyte == 0
5625
89.7k
                        && !PACKET_copy_bytes(&sslv2ciphers, raw,
5626
52.0k
                                              TLS_CIPHER_LEN))
5627
89.7k
                    || (leadbyte != 0
5628
89.7k
                        && !PACKET_forward(&sslv2ciphers, TLS_CIPHER_LEN))) {
5629
0
                SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_PACKET);
5630
0
                OPENSSL_free(s->s3.tmp.ciphers_raw);
5631
0
                s->s3.tmp.ciphers_raw = NULL;
5632
0
                s->s3.tmp.ciphers_rawlen = 0;
5633
0
                return 0;
5634
0
            }
5635
89.7k
            if (leadbyte == 0)
5636
52.0k
                s->s3.tmp.ciphers_rawlen += TLS_CIPHER_LEN;
5637
89.7k
        }
5638
10.2k
    } else if (!PACKET_memdup(cipher_suites, &s->s3.tmp.ciphers_raw,
5639
10.2k
                           &s->s3.tmp.ciphers_rawlen)) {
5640
0
        SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR);
5641
0
        return 0;
5642
0
    }
5643
14.2k
    return 1;
5644
14.2k
}
5645
5646
int SSL_bytes_to_cipher_list(SSL *s, const unsigned char *bytes, size_t len,
5647
                             int isv2format, STACK_OF(SSL_CIPHER) **sk,
5648
                             STACK_OF(SSL_CIPHER) **scsvs)
5649
0
{
5650
0
    PACKET pkt;
5651
5652
0
    if (!PACKET_buf_init(&pkt, bytes, len))
5653
0
        return 0;
5654
0
    return bytes_to_cipher_list(s, &pkt, sk, scsvs, isv2format, 0);
5655
0
}
5656
5657
int bytes_to_cipher_list(SSL *s, PACKET *cipher_suites,
5658
                         STACK_OF(SSL_CIPHER) **skp,
5659
                         STACK_OF(SSL_CIPHER) **scsvs_out,
5660
                         int sslv2format, int fatal)
5661
9.64k
{
5662
9.64k
    const SSL_CIPHER *c;
5663
9.64k
    STACK_OF(SSL_CIPHER) *sk = NULL;
5664
9.64k
    STACK_OF(SSL_CIPHER) *scsvs = NULL;
5665
9.64k
    int n;
5666
    /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
5667
9.64k
    unsigned char cipher[SSLV2_CIPHER_LEN];
5668
5669
9.64k
    n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
5670
5671
9.64k
    if (PACKET_remaining(cipher_suites) == 0) {
5672
0
        if (fatal)
5673
0
            SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_NO_CIPHERS_SPECIFIED);
5674
0
        else
5675
0
            ERR_raise(ERR_LIB_SSL, SSL_R_NO_CIPHERS_SPECIFIED);
5676
0
        return 0;
5677
0
    }
5678
5679
9.64k
    if (PACKET_remaining(cipher_suites) % n != 0) {
5680
0
        if (fatal)
5681
0
            SSLfatal(s, SSL_AD_DECODE_ERROR,
5682
0
                     SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
5683
0
        else
5684
0
            ERR_raise(ERR_LIB_SSL, SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
5685
0
        return 0;
5686
0
    }
5687
5688
9.64k
    sk = sk_SSL_CIPHER_new_null();
5689
9.64k
    scsvs = sk_SSL_CIPHER_new_null();
5690
9.64k
    if (sk == NULL || scsvs == NULL) {
5691
0
        if (fatal)
5692
0
            SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE);
5693
0
        else
5694
0
            ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
5695
0
        goto err;
5696
0
    }
5697
5698
173k
    while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
5699
        /*
5700
         * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
5701
         * first byte set to zero, while true SSLv2 ciphers have a non-zero
5702
         * first byte. We don't support any true SSLv2 ciphers, so skip them.
5703
         */
5704
163k
        if (sslv2format && cipher[0] != '\0')
5705
27.3k
            continue;
5706
5707
        /* For SSLv2-compat, ignore leading 0-byte. */
5708
136k
        c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher, 1);
5709
136k
        if (c != NULL) {
5710
52.3k
            if ((c->valid && !sk_SSL_CIPHER_push(sk, c)) ||
5711
52.3k
                (!c->valid && !sk_SSL_CIPHER_push(scsvs, c))) {
5712
0
                if (fatal)
5713
0
                    SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE);
5714
0
                else
5715
0
                    ERR_raise(ERR_LIB_SSL, ERR_R_MALLOC_FAILURE);
5716
0
                goto err;
5717
0
            }
5718
52.3k
        }
5719
136k
    }
5720
9.64k
    if (PACKET_remaining(cipher_suites) > 0) {
5721
0
        if (fatal)
5722
0
            SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_LENGTH);
5723
0
        else
5724
0
            ERR_raise(ERR_LIB_SSL, SSL_R_BAD_LENGTH);
5725
0
        goto err;
5726
0
    }
5727
5728
9.64k
    if (skp != NULL)
5729
9.64k
        *skp = sk;
5730
0
    else
5731
0
        sk_SSL_CIPHER_free(sk);
5732
9.64k
    if (scsvs_out != NULL)
5733
9.64k
        *scsvs_out = scsvs;
5734
0
    else
5735
0
        sk_SSL_CIPHER_free(scsvs);
5736
9.64k
    return 1;
5737
0
 err:
5738
0
    sk_SSL_CIPHER_free(sk);
5739
0
    sk_SSL_CIPHER_free(scsvs);
5740
0
    return 0;
5741
9.64k
}
5742
5743
int SSL_CTX_set_max_early_data(SSL_CTX *ctx, uint32_t max_early_data)
5744
0
{
5745
0
    ctx->max_early_data = max_early_data;
5746
5747
0
    return 1;
5748
0
}
5749
5750
uint32_t SSL_CTX_get_max_early_data(const SSL_CTX *ctx)
5751
0
{
5752
0
    return ctx->max_early_data;
5753
0
}
5754
5755
int SSL_set_max_early_data(SSL *s, uint32_t max_early_data)
5756
0
{
5757
0
    s->max_early_data = max_early_data;
5758
5759
0
    return 1;
5760
0
}
5761
5762
uint32_t SSL_get_max_early_data(const SSL *s)
5763
0
{
5764
0
    return s->max_early_data;
5765
0
}
5766
5767
int SSL_CTX_set_recv_max_early_data(SSL_CTX *ctx, uint32_t recv_max_early_data)
5768
0
{
5769
0
    ctx->recv_max_early_data = recv_max_early_data;
5770
5771
0
    return 1;
5772
0
}
5773
5774
uint32_t SSL_CTX_get_recv_max_early_data(const SSL_CTX *ctx)
5775
0
{
5776
0
    return ctx->recv_max_early_data;
5777
0
}
5778
5779
int SSL_set_recv_max_early_data(SSL *s, uint32_t recv_max_early_data)
5780
0
{
5781
0
    s->recv_max_early_data = recv_max_early_data;
5782
5783
0
    return 1;
5784
0
}
5785
5786
uint32_t SSL_get_recv_max_early_data(const SSL *s)
5787
0
{
5788
0
    return s->recv_max_early_data;
5789
0
}
5790
5791
__owur unsigned int ssl_get_max_send_fragment(const SSL *ssl)
5792
144k
{
5793
    /* Return any active Max Fragment Len extension */
5794
144k
    if (ssl->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(ssl->session))
5795
485
        return GET_MAX_FRAGMENT_LENGTH(ssl->session);
5796
5797
    /* return current SSL connection setting */
5798
144k
    return ssl->max_send_fragment;
5799
144k
}
5800
5801
__owur unsigned int ssl_get_split_send_fragment(const SSL *ssl)
5802
72.7k
{
5803
    /* Return a value regarding an active Max Fragment Len extension */
5804
72.7k
    if (ssl->session != NULL && USE_MAX_FRAGMENT_LENGTH_EXT(ssl->session)
5805
72.7k
        && ssl->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(ssl->session))
5806
378
        return GET_MAX_FRAGMENT_LENGTH(ssl->session);
5807
5808
    /* else limit |split_send_fragment| to current |max_send_fragment| */
5809
72.3k
    if (ssl->split_send_fragment > ssl->max_send_fragment)
5810
0
        return ssl->max_send_fragment;
5811
5812
    /* return current SSL connection setting */
5813
72.3k
    return ssl->split_send_fragment;
5814
72.3k
}
5815
5816
int SSL_stateless(SSL *s)
5817
0
{
5818
0
    int ret;
5819
5820
    /* Ensure there is no state left over from a previous invocation */
5821
0
    if (!SSL_clear(s))
5822
0
        return 0;
5823
5824
0
    ERR_clear_error();
5825
5826
0
    s->s3.flags |= TLS1_FLAGS_STATELESS;
5827
0
    ret = SSL_accept(s);
5828
0
    s->s3.flags &= ~TLS1_FLAGS_STATELESS;
5829
5830
0
    if (ret > 0 && s->ext.cookieok)
5831
0
        return 1;
5832
5833
0
    if (s->hello_retry_request == SSL_HRR_PENDING && !ossl_statem_in_error(s))
5834
0
        return 0;
5835
5836
0
    return -1;
5837
0
}
5838
5839
void SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val)
5840
0
{
5841
0
    ctx->pha_enabled = val;
5842
0
}
5843
5844
void SSL_set_post_handshake_auth(SSL *ssl, int val)
5845
0
{
5846
0
    ssl->pha_enabled = val;
5847
0
}
5848
5849
int SSL_verify_client_post_handshake(SSL *ssl)
5850
0
{
5851
0
    if (!SSL_IS_TLS13(ssl)) {
5852
0
        ERR_raise(ERR_LIB_SSL, SSL_R_WRONG_SSL_VERSION);
5853
0
        return 0;
5854
0
    }
5855
0
    if (!ssl->server) {
5856
0
        ERR_raise(ERR_LIB_SSL, SSL_R_NOT_SERVER);
5857
0
        return 0;
5858
0
    }
5859
5860
0
    if (!SSL_is_init_finished(ssl)) {
5861
0
        ERR_raise(ERR_LIB_SSL, SSL_R_STILL_IN_INIT);
5862
0
        return 0;
5863
0
    }
5864
5865
0
    switch (ssl->post_handshake_auth) {
5866
0
    case SSL_PHA_NONE:
5867
0
        ERR_raise(ERR_LIB_SSL, SSL_R_EXTENSION_NOT_RECEIVED);
5868
0
        return 0;
5869
0
    default:
5870
0
    case SSL_PHA_EXT_SENT:
5871
0
        ERR_raise(ERR_LIB_SSL, ERR_R_INTERNAL_ERROR);
5872
0
        return 0;
5873
0
    case SSL_PHA_EXT_RECEIVED:
5874
0
        break;
5875
0
    case SSL_PHA_REQUEST_PENDING:
5876
0
        ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_PENDING);
5877
0
        return 0;
5878
0
    case SSL_PHA_REQUESTED:
5879
0
        ERR_raise(ERR_LIB_SSL, SSL_R_REQUEST_SENT);
5880
0
        return 0;
5881
0
    }
5882
5883
0
    ssl->post_handshake_auth = SSL_PHA_REQUEST_PENDING;
5884
5885
    /* checks verify_mode and algorithm_auth */
5886
0
    if (!send_certificate_request(ssl)) {
5887
0
        ssl->post_handshake_auth = SSL_PHA_EXT_RECEIVED; /* restore on error */
5888
0
        ERR_raise(ERR_LIB_SSL, SSL_R_INVALID_CONFIG);
5889
0
        return 0;
5890
0
    }
5891
5892
0
    ossl_statem_set_in_init(ssl, 1);
5893
0
    return 1;
5894
0
}
5895
5896
int SSL_CTX_set_session_ticket_cb(SSL_CTX *ctx,
5897
                                  SSL_CTX_generate_session_ticket_fn gen_cb,
5898
                                  SSL_CTX_decrypt_session_ticket_fn dec_cb,
5899
                                  void *arg)
5900
0
{
5901
0
    ctx->generate_ticket_cb = gen_cb;
5902
0
    ctx->decrypt_ticket_cb = dec_cb;
5903
0
    ctx->ticket_cb_data = arg;
5904
0
    return 1;
5905
0
}
5906
5907
void SSL_CTX_set_allow_early_data_cb(SSL_CTX *ctx,
5908
                                     SSL_allow_early_data_cb_fn cb,
5909
                                     void *arg)
5910
0
{
5911
0
    ctx->allow_early_data_cb = cb;
5912
0
    ctx->allow_early_data_cb_data = arg;
5913
0
}
5914
5915
void SSL_set_allow_early_data_cb(SSL *s,
5916
                                 SSL_allow_early_data_cb_fn cb,
5917
                                 void *arg)
5918
0
{
5919
0
    s->allow_early_data_cb = cb;
5920
0
    s->allow_early_data_cb_data = arg;
5921
0
}
5922
5923
const EVP_CIPHER *ssl_evp_cipher_fetch(OSSL_LIB_CTX *libctx,
5924
                                       int nid,
5925
                                       const char *properties)
5926
571k
{
5927
571k
    const EVP_CIPHER *ciph;
5928
5929
571k
    ciph = tls_get_cipher_from_engine(nid);
5930
571k
    if (ciph != NULL)
5931
0
        return ciph;
5932
5933
    /*
5934
     * If there is no engine cipher then we do an explicit fetch. This may fail
5935
     * and that could be ok
5936
     */
5937
571k
    ERR_set_mark();
5938
571k
    ciph = EVP_CIPHER_fetch(libctx, OBJ_nid2sn(nid), properties);
5939
571k
    ERR_pop_to_mark();
5940
571k
    return ciph;
5941
571k
}
5942
5943
5944
int ssl_evp_cipher_up_ref(const EVP_CIPHER *cipher)
5945
3.96k
{
5946
    /* Don't up-ref an implicit EVP_CIPHER */
5947
3.96k
    if (EVP_CIPHER_get0_provider(cipher) == NULL)
5948
0
        return 1;
5949
5950
    /*
5951
     * The cipher was explicitly fetched and therefore it is safe to cast
5952
     * away the const
5953
     */
5954
3.96k
    return EVP_CIPHER_up_ref((EVP_CIPHER *)cipher);
5955
3.96k
}
5956
5957
void ssl_evp_cipher_free(const EVP_CIPHER *cipher)
5958
626k
{
5959
626k
    if (cipher == NULL)
5960
272k
        return;
5961
5962
353k
    if (EVP_CIPHER_get0_provider(cipher) != NULL) {
5963
        /*
5964
         * The cipher was explicitly fetched and therefore it is safe to cast
5965
         * away the const
5966
         */
5967
353k
        EVP_CIPHER_free((EVP_CIPHER *)cipher);
5968
353k
    }
5969
353k
}
5970
5971
const EVP_MD *ssl_evp_md_fetch(OSSL_LIB_CTX *libctx,
5972
                               int nid,
5973
                               const char *properties)
5974
397k
{
5975
397k
    const EVP_MD *md;
5976
5977
397k
    md = tls_get_digest_from_engine(nid);
5978
397k
    if (md != NULL)
5979
0
        return md;
5980
5981
    /* Otherwise we do an explicit fetch */
5982
397k
    ERR_set_mark();
5983
397k
    md = EVP_MD_fetch(libctx, OBJ_nid2sn(nid), properties);
5984
397k
    ERR_pop_to_mark();
5985
397k
    return md;
5986
397k
}
5987
5988
int ssl_evp_md_up_ref(const EVP_MD *md)
5989
3.70k
{
5990
    /* Don't up-ref an implicit EVP_MD */
5991
3.70k
    if (EVP_MD_get0_provider(md) == NULL)
5992
0
        return 1;
5993
5994
    /*
5995
     * The digest was explicitly fetched and therefore it is safe to cast
5996
     * away the const
5997
     */
5998
3.70k
    return EVP_MD_up_ref((EVP_MD *)md);
5999
3.70k
}
6000
6001
void ssl_evp_md_free(const EVP_MD *md)
6002
429k
{
6003
429k
    if (md == NULL)
6004
201k
        return;
6005
6006
228k
    if (EVP_MD_get0_provider(md) != NULL) {
6007
        /*
6008
         * The digest was explicitly fetched and therefore it is safe to cast
6009
         * away the const
6010
         */
6011
228k
        EVP_MD_free((EVP_MD *)md);
6012
228k
    }
6013
228k
}
6014
6015
int SSL_set0_tmp_dh_pkey(SSL *s, EVP_PKEY *dhpkey)
6016
0
{
6017
0
    if (!ssl_security(s, SSL_SECOP_TMP_DH,
6018
0
                      EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
6019
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
6020
0
        return 0;
6021
0
    }
6022
0
    EVP_PKEY_free(s->cert->dh_tmp);
6023
0
    s->cert->dh_tmp = dhpkey;
6024
0
    return 1;
6025
0
}
6026
6027
int SSL_CTX_set0_tmp_dh_pkey(SSL_CTX *ctx, EVP_PKEY *dhpkey)
6028
0
{
6029
0
    if (!ssl_ctx_security(ctx, SSL_SECOP_TMP_DH,
6030
0
                          EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
6031
0
        ERR_raise(ERR_LIB_SSL, SSL_R_DH_KEY_TOO_SMALL);
6032
0
        return 0;
6033
0
    }
6034
0
    EVP_PKEY_free(ctx->cert->dh_tmp);
6035
0
    ctx->cert->dh_tmp = dhpkey;
6036
0
    return 1;
6037
0
}