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