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