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