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