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