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