Implement write pipeline support in libssl
[openssl.git] / ssl / ssl_lib.c
1 /*
2  * ! \file ssl/ssl_lib.c \brief Version independent SSL functions.
3  */
4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5  * All rights reserved.
6  *
7  * This package is an SSL implementation written
8  * by Eric Young (eay@cryptsoft.com).
9  * The implementation was written so as to conform with Netscapes SSL.
10  *
11  * This library is free for commercial and non-commercial use as long as
12  * the following conditions are aheared to.  The following conditions
13  * apply to all code found in this distribution, be it the RC4, RSA,
14  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
15  * included with this distribution is covered by the same copyright terms
16  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
17  *
18  * Copyright remains Eric Young's, and as such any Copyright notices in
19  * the code are not to be removed.
20  * If this package is used in a product, Eric Young should be given attribution
21  * as the author of the parts of the library used.
22  * This can be in the form of a textual message at program startup or
23  * in documentation (online or textual) provided with the package.
24  *
25  * Redistribution and use in source and binary forms, with or without
26  * modification, are permitted provided that the following conditions
27  * are met:
28  * 1. Redistributions of source code must retain the copyright
29  *    notice, this list of conditions and the following disclaimer.
30  * 2. Redistributions in binary form must reproduce the above copyright
31  *    notice, this list of conditions and the following disclaimer in the
32  *    documentation and/or other materials provided with the distribution.
33  * 3. All advertising materials mentioning features or use of this software
34  *    must display the following acknowledgement:
35  *    "This product includes cryptographic software written by
36  *     Eric Young (eay@cryptsoft.com)"
37  *    The word 'cryptographic' can be left out if the rouines from the library
38  *    being used are not cryptographic related :-).
39  * 4. If you include any Windows specific code (or a derivative thereof) from
40  *    the apps directory (application code) you must include an acknowledgement:
41  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
42  *
43  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
44  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53  * SUCH DAMAGE.
54  *
55  * The licence and distribution terms for any publically available version or
56  * derivative of this code cannot be changed.  i.e. this code cannot simply be
57  * copied and put under another distribution licence
58  * [including the GNU Public Licence.]
59  */
60 /* ====================================================================
61  * Copyright (c) 1998-2007 The OpenSSL Project.  All rights reserved.
62  *
63  * Redistribution and use in source and binary forms, with or without
64  * modification, are permitted provided that the following conditions
65  * are met:
66  *
67  * 1. Redistributions of source code must retain the above copyright
68  *    notice, this list of conditions and the following disclaimer.
69  *
70  * 2. Redistributions in binary form must reproduce the above copyright
71  *    notice, this list of conditions and the following disclaimer in
72  *    the documentation and/or other materials provided with the
73  *    distribution.
74  *
75  * 3. All advertising materials mentioning features or use of this
76  *    software must display the following acknowledgment:
77  *    "This product includes software developed by the OpenSSL Project
78  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
79  *
80  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
81  *    endorse or promote products derived from this software without
82  *    prior written permission. For written permission, please contact
83  *    openssl-core@openssl.org.
84  *
85  * 5. Products derived from this software may not be called "OpenSSL"
86  *    nor may "OpenSSL" appear in their names without prior written
87  *    permission of the OpenSSL Project.
88  *
89  * 6. Redistributions of any form whatsoever must retain the following
90  *    acknowledgment:
91  *    "This product includes software developed by the OpenSSL Project
92  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
93  *
94  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
95  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
96  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
97  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
98  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
99  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
100  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
101  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
102  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
103  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
104  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
105  * OF THE POSSIBILITY OF SUCH DAMAGE.
106  * ====================================================================
107  *
108  * This product includes cryptographic software written by Eric Young
109  * (eay@cryptsoft.com).  This product includes software written by Tim
110  * Hudson (tjh@cryptsoft.com).
111  *
112  */
113 /* ====================================================================
114  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
115  * ECC cipher suite support in OpenSSL originally developed by
116  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
117  */
118 /* ====================================================================
119  * Copyright 2005 Nokia. All rights reserved.
120  *
121  * The portions of the attached software ("Contribution") is developed by
122  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
123  * license.
124  *
125  * The Contribution, originally written by Mika Kousa and Pasi Eronen of
126  * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
127  * support (see RFC 4279) to OpenSSL.
128  *
129  * No patent licenses or other rights except those expressly stated in
130  * the OpenSSL open source license shall be deemed granted or received
131  * expressly, by implication, estoppel, or otherwise.
132  *
133  * No assurances are provided by Nokia that the Contribution does not
134  * infringe the patent or other intellectual property rights of any third
135  * party or that the license provides you with all the necessary rights
136  * to make use of the Contribution.
137  *
138  * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
139  * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
140  * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
141  * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
142  * OTHERWISE.
143  */
144
145 #ifdef REF_DEBUG
146 # include <assert.h>
147 #endif
148 #include <stdio.h>
149 #include "ssl_locl.h"
150 #include <openssl/objects.h>
151 #include <openssl/lhash.h>
152 #include <openssl/x509v3.h>
153 #include <openssl/rand.h>
154 #include <openssl/ocsp.h>
155 #ifndef OPENSSL_NO_DH
156 # include <openssl/dh.h>
157 #endif
158 #ifndef OPENSSL_NO_ENGINE
159 # include <openssl/engine.h>
160 #endif
161 #include <openssl/async.h>
162 #ifndef OPENSSL_NO_CT
163 # include <openssl/ct.h>
164 #endif
165
166 const char SSL_version_str[] = OPENSSL_VERSION_TEXT;
167
168 SSL3_ENC_METHOD ssl3_undef_enc_method = {
169     /*
170      * evil casts, but these functions are only called if there's a library
171      * bug
172      */
173     (int (*)(SSL *, SSL3_RECORD *, unsigned int, int))ssl_undefined_function,
174     (int (*)(SSL *, SSL3_RECORD *, unsigned char *, int))ssl_undefined_function,
175     ssl_undefined_function,
176     (int (*)(SSL *, unsigned char *, unsigned char *, int))
177         ssl_undefined_function,
178     (int (*)(SSL *, int))ssl_undefined_function,
179     (int (*)(SSL *, const char *, int, unsigned char *))
180         ssl_undefined_function,
181     0,                          /* finish_mac_length */
182     NULL,                       /* client_finished_label */
183     0,                          /* client_finished_label_len */
184     NULL,                       /* server_finished_label */
185     0,                          /* server_finished_label_len */
186     (int (*)(int))ssl_undefined_function,
187     (int (*)(SSL *, unsigned char *, size_t, const char *,
188              size_t, const unsigned char *, size_t,
189              int use_context))ssl_undefined_function,
190 };
191
192 struct ssl_async_args {
193     SSL *s;
194     void *buf;
195     int num;
196     enum { READFUNC, WRITEFUNC,  OTHERFUNC} type;
197     union {
198         int (*func_read)(SSL *, void *, int);
199         int (*func_write)(SSL *, const void *, int);
200         int (*func_other)(SSL *);
201     } f;
202 };
203
204 static const struct {
205     uint8_t mtype;
206     uint8_t ord;
207     int     nid;
208 } dane_mds[] = {
209     { DANETLS_MATCHING_FULL, 0, NID_undef },
210     { DANETLS_MATCHING_2256, 1, NID_sha256 },
211     { DANETLS_MATCHING_2512, 2, NID_sha512 },
212 };
213
214 static int dane_ctx_enable(struct dane_ctx_st *dctx)
215 {
216     const EVP_MD **mdevp;
217     uint8_t *mdord;
218     uint8_t mdmax = DANETLS_MATCHING_LAST;
219     int n = ((int) mdmax) + 1;          /* int to handle PrivMatch(255) */
220     size_t i;
221
222     mdevp = OPENSSL_zalloc(n * sizeof(*mdevp));
223     mdord = OPENSSL_zalloc(n * sizeof(*mdord));
224
225     if (mdord == NULL || mdevp == NULL) {
226         OPENSSL_free(mdevp);
227         SSLerr(SSL_F_DANE_CTX_ENABLE, ERR_R_MALLOC_FAILURE);
228         return 0;
229     }
230
231     /* Install default entries */
232     for (i = 0; i < OSSL_NELEM(dane_mds); ++i) {
233         const EVP_MD *md;
234
235         if (dane_mds[i].nid == NID_undef ||
236             (md = EVP_get_digestbynid(dane_mds[i].nid)) == NULL)
237             continue;
238         mdevp[dane_mds[i].mtype] = md;
239         mdord[dane_mds[i].mtype] = dane_mds[i].ord;
240     }
241
242     dctx->mdevp = mdevp;
243     dctx->mdord = mdord;
244     dctx->mdmax = mdmax;
245
246     return 1;
247 }
248
249 static void dane_ctx_final(struct dane_ctx_st *dctx)
250 {
251     OPENSSL_free(dctx->mdevp);
252     dctx->mdevp = NULL;
253
254     OPENSSL_free(dctx->mdord);
255     dctx->mdord = NULL;
256     dctx->mdmax = 0;
257 }
258
259 static void tlsa_free(danetls_record *t)
260 {
261     if (t == NULL)
262         return;
263     OPENSSL_free(t->data);
264     EVP_PKEY_free(t->spki);
265     OPENSSL_free(t);
266 }
267
268 static void dane_final(struct dane_st *dane)
269 {
270     sk_danetls_record_pop_free(dane->trecs, tlsa_free);
271     dane->trecs = NULL;
272
273     sk_X509_pop_free(dane->certs, X509_free);
274     dane->certs = NULL;
275
276     X509_free(dane->mcert);
277     dane->mcert = NULL;
278     dane->mtlsa = NULL;
279     dane->mdpth = -1;
280     dane->pdpth = -1;
281 }
282
283 /*
284  * dane_copy - Copy dane configuration, sans verification state.
285  */
286 static int ssl_dane_dup(SSL *to, SSL *from)
287 {
288     int num;
289     int i;
290
291     if (!DANETLS_ENABLED(&from->dane))
292         return 1;
293
294     dane_final(&to->dane);
295
296     num  = sk_danetls_record_num(from->dane.trecs);
297     for (i = 0; i < num; ++i) {
298         danetls_record *t = sk_danetls_record_value(from->dane.trecs, i);
299         if (SSL_dane_tlsa_add(to, t->usage, t->selector, t->mtype,
300                               t->data, t->dlen) <= 0)
301             return 0;
302     }
303     return 1;
304 }
305
306 static int dane_mtype_set(
307     struct dane_ctx_st *dctx,
308     const EVP_MD *md,
309     uint8_t mtype,
310     uint8_t ord)
311 {
312     int i;
313
314     if (mtype == DANETLS_MATCHING_FULL && md != NULL) {
315         SSLerr(SSL_F_DANE_MTYPE_SET,
316                 SSL_R_DANE_CANNOT_OVERRIDE_MTYPE_FULL);
317         return 0;
318     }
319
320     if (mtype > dctx->mdmax) {
321         const EVP_MD **mdevp;
322         uint8_t *mdord;
323         int n = ((int) mtype) + 1;
324
325         mdevp = OPENSSL_realloc(dctx->mdevp, n * sizeof(*mdevp));
326         if (mdevp == NULL) {
327             SSLerr(SSL_F_DANE_MTYPE_SET, ERR_R_MALLOC_FAILURE);
328             return -1;
329         }
330         dctx->mdevp = mdevp;
331
332         mdord = OPENSSL_realloc(dctx->mdord, n * sizeof(*mdord));
333         if (mdord == NULL) {
334             SSLerr(SSL_F_DANE_MTYPE_SET, ERR_R_MALLOC_FAILURE);
335             return -1;
336         }
337         dctx->mdord = mdord;
338
339         /* Zero-fill any gaps */
340         for (i = dctx->mdmax+1; i < mtype; ++i) {
341             mdevp[i] = NULL;
342             mdord[i] = 0;
343         }
344
345         dctx->mdmax = mtype;
346     }
347
348     dctx->mdevp[mtype] = md;
349     /* Coerce ordinal of disabled matching types to 0 */
350     dctx->mdord[mtype] = (md == NULL) ? 0 : ord;
351
352     return 1;
353 }
354
355 static const EVP_MD *tlsa_md_get(struct dane_st *dane, uint8_t mtype)
356 {
357     if (mtype > dane->dctx->mdmax)
358         return NULL;
359     return dane->dctx->mdevp[mtype];
360 }
361
362 static int dane_tlsa_add(
363     struct dane_st *dane,
364     uint8_t usage,
365     uint8_t selector,
366     uint8_t mtype,
367     unsigned char *data,
368     size_t dlen)
369 {
370     danetls_record *t;
371     const EVP_MD *md = NULL;
372     int ilen = (int)dlen;
373     int i;
374
375     if (dane->trecs == NULL) {
376         SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_NOT_ENABLED);
377         return -1;
378     }
379
380     if (ilen < 0 || dlen != (size_t)ilen) {
381         SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_DATA_LENGTH);
382         return 0;
383     }
384
385     if (usage > DANETLS_USAGE_LAST) {
386         SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_CERTIFICATE_USAGE);
387         return 0;
388     }
389
390     if (selector > DANETLS_SELECTOR_LAST) {
391         SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_SELECTOR);
392         return 0;
393     }
394
395     if (mtype != DANETLS_MATCHING_FULL) {
396         md = tlsa_md_get(dane, mtype);
397         if (md == NULL) {
398             SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_MATCHING_TYPE);
399             return 0;
400         }
401     }
402
403     if (md != NULL && dlen != (size_t)EVP_MD_size(md)) {
404         SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_DIGEST_LENGTH);
405         return 0;
406     }
407     if (!data) {
408         SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_NULL_DATA);
409         return 0;
410     }
411
412     if ((t = OPENSSL_zalloc(sizeof(*t))) == NULL) {
413         SSLerr(SSL_F_DANE_TLSA_ADD, ERR_R_MALLOC_FAILURE);
414         return -1;
415     }
416
417     t->usage = usage;
418     t->selector = selector;
419     t->mtype = mtype;
420     t->data = OPENSSL_malloc(ilen);
421     if (t->data == NULL) {
422         tlsa_free(t);
423         SSLerr(SSL_F_DANE_TLSA_ADD, ERR_R_MALLOC_FAILURE);
424         return -1;
425     }
426     memcpy(t->data, data, ilen);
427     t->dlen = ilen;
428
429     /* Validate and cache full certificate or public key */
430     if (mtype == DANETLS_MATCHING_FULL) {
431         const unsigned char *p = data;
432         X509 *cert = NULL;
433         EVP_PKEY *pkey = NULL;
434
435         switch (selector) {
436         case DANETLS_SELECTOR_CERT:
437             if (!d2i_X509(&cert, &p, dlen) || p < data ||
438                 dlen != (size_t)(p - data)) {
439                 tlsa_free(t);
440                 SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
441                 return 0;
442             }
443             if (X509_get0_pubkey(cert) == NULL) {
444                 tlsa_free(t);
445                 SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_CERTIFICATE);
446                 return 0;
447             }
448
449             if ((DANETLS_USAGE_BIT(usage) & DANETLS_TA_MASK) == 0) {
450                 X509_free(cert);
451                 break;
452             }
453
454             /*
455              * For usage DANE-TA(2), we support authentication via "2 0 0" TLSA
456              * records that contain full certificates of trust-anchors that are
457              * not present in the wire chain.  For usage PKIX-TA(0), we augment
458              * the chain with untrusted Full(0) certificates from DNS, in case
459              * they are missing from the chain.
460              */
461             if ((dane->certs == NULL &&
462                  (dane->certs = sk_X509_new_null()) == NULL) ||
463                 !sk_X509_push(dane->certs, cert)) {
464                 SSLerr(SSL_F_DANE_TLSA_ADD, ERR_R_MALLOC_FAILURE);
465                 X509_free(cert);
466                 tlsa_free(t);
467                 return -1;
468             }
469             break;
470
471         case DANETLS_SELECTOR_SPKI:
472             if (!d2i_PUBKEY(&pkey, &p, dlen) || p < data ||
473                 dlen != (size_t)(p - data)) {
474                 tlsa_free(t);
475                 SSLerr(SSL_F_DANE_TLSA_ADD, SSL_R_DANE_TLSA_BAD_PUBLIC_KEY);
476                 return 0;
477             }
478
479             /*
480              * For usage DANE-TA(2), we support authentication via "2 1 0" TLSA
481              * records that contain full bare keys of trust-anchors that are
482              * not present in the wire chain.
483              */
484             if (usage == DANETLS_USAGE_DANE_TA)
485                 t->spki = pkey;
486             else
487                 EVP_PKEY_free(pkey);
488             break;
489         }
490     }
491
492     /*-
493      * Find the right insertion point for the new record.
494      *
495      * See crypto/x509/x509_vfy.c.  We sort DANE-EE(3) records first, so that
496      * they can be processed first, as they require no chain building, and no
497      * expiration or hostname checks.  Because DANE-EE(3) is numerically
498      * largest, this is accomplished via descending sort by "usage".
499      *
500      * We also sort in descending order by matching ordinal to simplify
501      * the implementation of digest agility in the verification code.
502      *
503      * The choice of order for the selector is not significant, so we
504      * use the same descending order for consistency.
505      */
506     for (i = 0; i < sk_danetls_record_num(dane->trecs); ++i) {
507         danetls_record *rec = sk_danetls_record_value(dane->trecs, i);
508         if (rec->usage > usage)
509             continue;
510         if (rec->usage < usage)
511             break;
512         if (rec->selector > selector)
513             continue;
514         if (rec->selector < selector)
515             break;
516         if (dane->dctx->mdord[rec->mtype] > dane->dctx->mdord[mtype])
517             continue;
518         break;
519     }
520
521     if (!sk_danetls_record_insert(dane->trecs, t, i)) {
522         tlsa_free(t);
523         SSLerr(SSL_F_DANE_TLSA_ADD, ERR_R_MALLOC_FAILURE);
524         return -1;
525     }
526     dane->umask |= DANETLS_USAGE_BIT(usage);
527
528     return 1;
529 }
530
531 static void clear_ciphers(SSL *s)
532 {
533     /* clear the current cipher */
534     ssl_clear_cipher_ctx(s);
535     ssl_clear_hash_ctx(&s->read_hash);
536     ssl_clear_hash_ctx(&s->write_hash);
537 }
538
539 int SSL_clear(SSL *s)
540 {
541     if (s->method == NULL) {
542         SSLerr(SSL_F_SSL_CLEAR, SSL_R_NO_METHOD_SPECIFIED);
543         return (0);
544     }
545
546     if (ssl_clear_bad_session(s)) {
547         SSL_SESSION_free(s->session);
548         s->session = NULL;
549     }
550
551     s->error = 0;
552     s->hit = 0;
553     s->shutdown = 0;
554
555     if (s->renegotiate) {
556         SSLerr(SSL_F_SSL_CLEAR, ERR_R_INTERNAL_ERROR);
557         return 0;
558     }
559
560     ossl_statem_clear(s);
561
562     s->version = s->method->version;
563     s->client_version = s->version;
564     s->rwstate = SSL_NOTHING;
565
566     BUF_MEM_free(s->init_buf);
567     s->init_buf = NULL;
568     clear_ciphers(s);
569     s->first_packet = 0;
570
571     /* Reset DANE verification result state */
572     s->dane.mdpth = -1;
573     s->dane.pdpth = -1;
574     X509_free(s->dane.mcert);
575     s->dane.mcert = NULL;
576     s->dane.mtlsa = NULL;
577
578     /* Clear the verification result peername */
579     X509_VERIFY_PARAM_move_peername(s->param, NULL);
580
581     /*
582      * Check to see if we were changed into a different method, if so, revert
583      * back if we are not doing session-id reuse.
584      */
585     if (!ossl_statem_get_in_handshake(s) && (s->session == NULL)
586         && (s->method != s->ctx->method)) {
587         s->method->ssl_free(s);
588         s->method = s->ctx->method;
589         if (!s->method->ssl_new(s))
590             return (0);
591     } else
592         s->method->ssl_clear(s);
593
594     RECORD_LAYER_clear(&s->rlayer);
595
596     return (1);
597 }
598
599 /** Used to change an SSL_CTXs default SSL method type */
600 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
601 {
602     STACK_OF(SSL_CIPHER) *sk;
603
604     ctx->method = meth;
605
606     sk = ssl_create_cipher_list(ctx->method, &(ctx->cipher_list),
607                                 &(ctx->cipher_list_by_id),
608                                 SSL_DEFAULT_CIPHER_LIST, ctx->cert);
609     if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0)) {
610         SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,
611                SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
612         return (0);
613     }
614     return (1);
615 }
616
617 SSL *SSL_new(SSL_CTX *ctx)
618 {
619     SSL *s;
620
621     if (ctx == NULL) {
622         SSLerr(SSL_F_SSL_NEW, SSL_R_NULL_SSL_CTX);
623         return (NULL);
624     }
625     if (ctx->method == NULL) {
626         SSLerr(SSL_F_SSL_NEW, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
627         return (NULL);
628     }
629
630     s = OPENSSL_zalloc(sizeof(*s));
631     if (s == NULL)
632         goto err;
633
634     RECORD_LAYER_init(&s->rlayer, s);
635
636     s->options = ctx->options;
637     s->min_proto_version = ctx->min_proto_version;
638     s->max_proto_version = ctx->max_proto_version;
639     s->mode = ctx->mode;
640     s->max_cert_list = ctx->max_cert_list;
641     s->references = 1;
642
643     /*
644      * Earlier library versions used to copy the pointer to the CERT, not
645      * its contents; only when setting new parameters for the per-SSL
646      * copy, ssl_cert_new would be called (and the direct reference to
647      * the per-SSL_CTX settings would be lost, but those still were
648      * indirectly accessed for various purposes, and for that reason they
649      * used to be known as s->ctx->default_cert). Now we don't look at the
650      * SSL_CTX's CERT after having duplicated it once.
651      */
652     s->cert = ssl_cert_dup(ctx->cert);
653     if (s->cert == NULL)
654         goto err;
655
656     RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead);
657     s->msg_callback = ctx->msg_callback;
658     s->msg_callback_arg = ctx->msg_callback_arg;
659     s->verify_mode = ctx->verify_mode;
660     s->not_resumable_session_cb = ctx->not_resumable_session_cb;
661     s->sid_ctx_length = ctx->sid_ctx_length;
662     OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx);
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
676     CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
677     s->ctx = ctx;
678     s->tlsext_debug_cb = 0;
679     s->tlsext_debug_arg = NULL;
680     s->tlsext_ticket_expected = 0;
681     s->tlsext_status_type = -1;
682     s->tlsext_status_expected = 0;
683     s->tlsext_ocsp_ids = NULL;
684     s->tlsext_ocsp_exts = NULL;
685     s->tlsext_ocsp_resp = NULL;
686     s->tlsext_ocsp_resplen = -1;
687     CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
688     s->initial_ctx = ctx;
689 # ifndef OPENSSL_NO_EC
690     if (ctx->tlsext_ecpointformatlist) {
691         s->tlsext_ecpointformatlist =
692             OPENSSL_memdup(ctx->tlsext_ecpointformatlist,
693                            ctx->tlsext_ecpointformatlist_length);
694         if (!s->tlsext_ecpointformatlist)
695             goto err;
696         s->tlsext_ecpointformatlist_length =
697             ctx->tlsext_ecpointformatlist_length;
698     }
699     if (ctx->tlsext_ellipticcurvelist) {
700         s->tlsext_ellipticcurvelist =
701             OPENSSL_memdup(ctx->tlsext_ellipticcurvelist,
702                            ctx->tlsext_ellipticcurvelist_length);
703         if (!s->tlsext_ellipticcurvelist)
704             goto err;
705         s->tlsext_ellipticcurvelist_length =
706             ctx->tlsext_ellipticcurvelist_length;
707     }
708 # endif
709 # ifndef OPENSSL_NO_NEXTPROTONEG
710     s->next_proto_negotiated = NULL;
711 # endif
712
713     if (s->ctx->alpn_client_proto_list) {
714         s->alpn_client_proto_list =
715             OPENSSL_malloc(s->ctx->alpn_client_proto_list_len);
716         if (s->alpn_client_proto_list == NULL)
717             goto err;
718         memcpy(s->alpn_client_proto_list, s->ctx->alpn_client_proto_list,
719                s->ctx->alpn_client_proto_list_len);
720         s->alpn_client_proto_list_len = s->ctx->alpn_client_proto_list_len;
721     }
722
723     s->verified_chain = NULL;
724     s->verify_result = X509_V_OK;
725
726     s->default_passwd_callback = ctx->default_passwd_callback;
727     s->default_passwd_callback_userdata = ctx->default_passwd_callback_userdata;
728
729     s->method = ctx->method;
730
731     if (!s->method->ssl_new(s))
732         goto err;
733
734     s->server = (ctx->method->ssl_accept == ssl_undefined_function) ? 0 : 1;
735
736     if (!SSL_clear(s))
737         goto err;
738
739     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
740
741 #ifndef OPENSSL_NO_PSK
742     s->psk_client_callback = ctx->psk_client_callback;
743     s->psk_server_callback = ctx->psk_server_callback;
744 #endif
745
746     s->job = NULL;
747
748 #ifndef OPENSSL_NO_CT
749     if (!SSL_set_ct_validation_callback(s, ctx->ct_validation_callback,
750             ctx->ct_validation_callback_arg))
751         goto err;
752 #endif
753
754     return (s);
755  err:
756     SSL_free(s);
757     SSLerr(SSL_F_SSL_NEW, ERR_R_MALLOC_FAILURE);
758     return (NULL);
759 }
760
761 void SSL_up_ref(SSL *s)
762 {
763     CRYPTO_add(&s->references, 1, CRYPTO_LOCK_SSL);
764 }
765
766 int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx,
767                                    unsigned int sid_ctx_len)
768 {
769     if (sid_ctx_len > sizeof ctx->sid_ctx) {
770         SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,
771                SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
772         return 0;
773     }
774     ctx->sid_ctx_length = sid_ctx_len;
775     memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len);
776
777     return 1;
778 }
779
780 int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
781                                unsigned int sid_ctx_len)
782 {
783     if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
784         SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,
785                SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
786         return 0;
787     }
788     ssl->sid_ctx_length = sid_ctx_len;
789     memcpy(ssl->sid_ctx, sid_ctx, sid_ctx_len);
790
791     return 1;
792 }
793
794 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
795 {
796     CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
797     ctx->generate_session_id = cb;
798     CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
799     return 1;
800 }
801
802 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
803 {
804     CRYPTO_w_lock(CRYPTO_LOCK_SSL);
805     ssl->generate_session_id = cb;
806     CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
807     return 1;
808 }
809
810 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
811                                 unsigned int id_len)
812 {
813     /*
814      * A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
815      * we can "construct" a session to give us the desired check - ie. to
816      * find if there's a session in the hash table that would conflict with
817      * any new session built out of this id/id_len and the ssl_version in use
818      * by this SSL.
819      */
820     SSL_SESSION r, *p;
821
822     if (id_len > sizeof r.session_id)
823         return 0;
824
825     r.ssl_version = ssl->version;
826     r.session_id_length = id_len;
827     memcpy(r.session_id, id, id_len);
828
829     CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
830     p = lh_SSL_SESSION_retrieve(ssl->ctx->sessions, &r);
831     CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
832     return (p != NULL);
833 }
834
835 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
836 {
837     return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
838 }
839
840 int SSL_set_purpose(SSL *s, int purpose)
841 {
842     return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
843 }
844
845 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
846 {
847     return X509_VERIFY_PARAM_set_trust(s->param, trust);
848 }
849
850 int SSL_set_trust(SSL *s, int trust)
851 {
852     return X509_VERIFY_PARAM_set_trust(s->param, trust);
853 }
854
855 int SSL_set1_host(SSL *s, const char *hostname)
856 {
857     return X509_VERIFY_PARAM_set1_host(s->param, hostname, 0);
858 }
859
860 int SSL_add1_host(SSL *s, const char *hostname)
861 {
862     return X509_VERIFY_PARAM_add1_host(s->param, hostname, 0);
863 }
864
865 void SSL_set_hostflags(SSL *s, unsigned int flags)
866 {
867     X509_VERIFY_PARAM_set_hostflags(s->param, flags);
868 }
869
870 const char *SSL_get0_peername(SSL *s)
871 {
872     return X509_VERIFY_PARAM_get0_peername(s->param);
873 }
874
875 int SSL_CTX_dane_enable(SSL_CTX *ctx)
876 {
877     return dane_ctx_enable(&ctx->dane);
878 }
879
880 int SSL_dane_enable(SSL *s, const char *basedomain)
881 {
882     struct dane_st *dane = &s->dane;
883
884     if (s->ctx->dane.mdmax == 0) {
885         SSLerr(SSL_F_SSL_DANE_ENABLE, SSL_R_CONTEXT_NOT_DANE_ENABLED);
886         return 0;
887     }
888     if (dane->trecs != NULL) {
889         SSLerr(SSL_F_SSL_DANE_ENABLE, SSL_R_DANE_ALREADY_ENABLED);
890         return 0;
891     }
892
893     /*
894      * Default SNI name.  This rejects empty names, while set1_host below
895      * accepts them and disables host name checks.  To avoid side-effects with
896      * invalid input, set the SNI name first.
897      */
898     if (s->tlsext_hostname == NULL) {
899         if (!SSL_set_tlsext_host_name(s, basedomain)) {
900             SSLerr(SSL_F_SSL_DANE_ENABLE, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
901             return -1;
902         }
903     }
904
905     /* Primary RFC6125 reference identifier */
906     if (!X509_VERIFY_PARAM_set1_host(s->param, basedomain, 0)) {
907         SSLerr(SSL_F_SSL_DANE_ENABLE, SSL_R_ERROR_SETTING_TLSA_BASE_DOMAIN);
908         return -1;
909     }
910
911     dane->mdpth = -1;
912     dane->pdpth = -1;
913     dane->dctx = &s->ctx->dane;
914     dane->trecs = sk_danetls_record_new_null();
915
916     if (dane->trecs == NULL) {
917         SSLerr(SSL_F_SSL_DANE_ENABLE, ERR_R_MALLOC_FAILURE);
918         return -1;
919     }
920     return 1;
921 }
922
923 int SSL_get0_dane_authority(SSL *s, X509 **mcert, EVP_PKEY **mspki)
924 {
925     struct dane_st *dane = &s->dane;
926
927     if (!DANETLS_ENABLED(dane) || s->verify_result != X509_V_OK)
928         return -1;
929     if (dane->mtlsa) {
930         if (mcert)
931             *mcert = dane->mcert;
932         if (mspki)
933             *mspki = (dane->mcert == NULL) ? dane->mtlsa->spki : NULL;
934     }
935     return dane->mdpth;
936 }
937
938 int SSL_get0_dane_tlsa(SSL *s, uint8_t *usage, uint8_t *selector,
939                        uint8_t *mtype, unsigned const char **data, size_t *dlen)
940 {
941     struct dane_st *dane = &s->dane;
942
943     if (!DANETLS_ENABLED(dane) || s->verify_result != X509_V_OK)
944         return -1;
945     if (dane->mtlsa) {
946         if (usage)
947             *usage = dane->mtlsa->usage;
948         if (selector)
949             *selector = dane->mtlsa->selector;
950         if (mtype)
951             *mtype = dane->mtlsa->mtype;
952         if (data)
953             *data = dane->mtlsa->data;
954         if (dlen)
955             *dlen = dane->mtlsa->dlen;
956     }
957     return dane->mdpth;
958 }
959
960 struct dane_st *SSL_get0_dane(SSL *s)
961 {
962     return &s->dane;
963 }
964
965 int SSL_dane_tlsa_add(SSL *s, uint8_t usage, uint8_t selector,
966                       uint8_t mtype, unsigned char *data, size_t dlen)
967 {
968     return dane_tlsa_add(&s->dane, usage, selector, mtype, data, dlen);
969 }
970
971 int SSL_CTX_dane_mtype_set(SSL_CTX *ctx, const EVP_MD *md, uint8_t mtype, uint8_t ord)
972 {
973     return dane_mtype_set(&ctx->dane, md, mtype, ord);
974 }
975
976 int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm)
977 {
978     return X509_VERIFY_PARAM_set1(ctx->param, vpm);
979 }
980
981 int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm)
982 {
983     return X509_VERIFY_PARAM_set1(ssl->param, vpm);
984 }
985
986 X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx)
987 {
988     return ctx->param;
989 }
990
991 X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl)
992 {
993     return ssl->param;
994 }
995
996 void SSL_certs_clear(SSL *s)
997 {
998     ssl_cert_clear_certs(s->cert);
999 }
1000
1001 void SSL_free(SSL *s)
1002 {
1003     int i;
1004
1005     if (s == NULL)
1006         return;
1007
1008     i = CRYPTO_add(&s->references, -1, CRYPTO_LOCK_SSL);
1009     REF_PRINT_COUNT("SSL", s);
1010     if (i > 0)
1011         return;
1012     REF_ASSERT_ISNT(i < 0);
1013
1014     X509_VERIFY_PARAM_free(s->param);
1015     dane_final(&s->dane);
1016     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
1017
1018     if (s->bbio != NULL) {
1019         /* If the buffering BIO is in place, pop it off */
1020         if (s->bbio == s->wbio) {
1021             s->wbio = BIO_pop(s->wbio);
1022         }
1023         BIO_free(s->bbio);
1024         s->bbio = NULL;
1025     }
1026     BIO_free_all(s->rbio);
1027     if (s->wbio != s->rbio)
1028         BIO_free_all(s->wbio);
1029
1030     BUF_MEM_free(s->init_buf);
1031
1032     /* add extra stuff */
1033     sk_SSL_CIPHER_free(s->cipher_list);
1034     sk_SSL_CIPHER_free(s->cipher_list_by_id);
1035
1036     /* Make the next call work :-) */
1037     if (s->session != NULL) {
1038         ssl_clear_bad_session(s);
1039         SSL_SESSION_free(s->session);
1040     }
1041
1042     clear_ciphers(s);
1043
1044     ssl_cert_free(s->cert);
1045     /* Free up if allocated */
1046
1047     OPENSSL_free(s->tlsext_hostname);
1048     SSL_CTX_free(s->initial_ctx);
1049 #ifndef OPENSSL_NO_EC
1050     OPENSSL_free(s->tlsext_ecpointformatlist);
1051     OPENSSL_free(s->tlsext_ellipticcurvelist);
1052 #endif                         /* OPENSSL_NO_EC */
1053     sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts, X509_EXTENSION_free);
1054     sk_OCSP_RESPID_pop_free(s->tlsext_ocsp_ids, OCSP_RESPID_free);
1055 #ifndef OPENSSL_NO_CT
1056     SCT_LIST_free(s->scts);
1057     OPENSSL_free(s->tlsext_scts);
1058 #endif
1059     OPENSSL_free(s->tlsext_ocsp_resp);
1060     OPENSSL_free(s->alpn_client_proto_list);
1061
1062     sk_X509_NAME_pop_free(s->client_CA, X509_NAME_free);
1063
1064     sk_X509_pop_free(s->verified_chain, X509_free);
1065
1066     if (s->method != NULL)
1067         s->method->ssl_free(s);
1068
1069     RECORD_LAYER_release(&s->rlayer);
1070
1071     SSL_CTX_free(s->ctx);
1072
1073     ASYNC_WAIT_CTX_free(s->waitctx);
1074
1075 #if !defined(OPENSSL_NO_NEXTPROTONEG)
1076     OPENSSL_free(s->next_proto_negotiated);
1077 #endif
1078
1079 #ifndef OPENSSL_NO_SRTP
1080     sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles);
1081 #endif
1082
1083     OPENSSL_free(s);
1084 }
1085
1086 void SSL_set_rbio(SSL *s, BIO *rbio)
1087 {
1088     if (s->rbio != rbio)
1089         BIO_free_all(s->rbio);
1090     s->rbio = rbio;
1091 }
1092
1093 void SSL_set_wbio(SSL *s, BIO *wbio)
1094 {
1095     /*
1096      * If the output buffering BIO is still in place, remove it
1097      */
1098     if (s->bbio != NULL) {
1099         if (s->wbio == s->bbio) {
1100             s->wbio = s->wbio->next_bio;
1101             s->bbio->next_bio = NULL;
1102         }
1103     }
1104     if (s->wbio != wbio && s->rbio != s->wbio)
1105         BIO_free_all(s->wbio);
1106     s->wbio = wbio;
1107 }
1108
1109 void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
1110 {
1111     SSL_set_wbio(s, wbio);
1112     SSL_set_rbio(s, rbio);
1113 }
1114
1115 BIO *SSL_get_rbio(const SSL *s)
1116 {
1117     return (s->rbio);
1118 }
1119
1120 BIO *SSL_get_wbio(const SSL *s)
1121 {
1122     return (s->wbio);
1123 }
1124
1125 int SSL_get_fd(const SSL *s)
1126 {
1127     return (SSL_get_rfd(s));
1128 }
1129
1130 int SSL_get_rfd(const SSL *s)
1131 {
1132     int ret = -1;
1133     BIO *b, *r;
1134
1135     b = SSL_get_rbio(s);
1136     r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1137     if (r != NULL)
1138         BIO_get_fd(r, &ret);
1139     return (ret);
1140 }
1141
1142 int SSL_get_wfd(const SSL *s)
1143 {
1144     int ret = -1;
1145     BIO *b, *r;
1146
1147     b = SSL_get_wbio(s);
1148     r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
1149     if (r != NULL)
1150         BIO_get_fd(r, &ret);
1151     return (ret);
1152 }
1153
1154 #ifndef OPENSSL_NO_SOCK
1155 int SSL_set_fd(SSL *s, int fd)
1156 {
1157     int ret = 0;
1158     BIO *bio = NULL;
1159
1160     bio = BIO_new(BIO_s_socket());
1161
1162     if (bio == NULL) {
1163         SSLerr(SSL_F_SSL_SET_FD, ERR_R_BUF_LIB);
1164         goto err;
1165     }
1166     BIO_set_fd(bio, fd, BIO_NOCLOSE);
1167     SSL_set_bio(s, bio, bio);
1168     ret = 1;
1169  err:
1170     return (ret);
1171 }
1172
1173 int SSL_set_wfd(SSL *s, int fd)
1174 {
1175     int ret = 0;
1176     BIO *bio = NULL;
1177
1178     if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
1179         || ((int)BIO_get_fd(s->rbio, NULL) != fd)) {
1180         bio = BIO_new(BIO_s_socket());
1181
1182         if (bio == NULL) {
1183             SSLerr(SSL_F_SSL_SET_WFD, ERR_R_BUF_LIB);
1184             goto err;
1185         }
1186         BIO_set_fd(bio, fd, BIO_NOCLOSE);
1187         SSL_set_bio(s, SSL_get_rbio(s), bio);
1188     } else
1189         SSL_set_bio(s, SSL_get_rbio(s), SSL_get_rbio(s));
1190     ret = 1;
1191  err:
1192     return (ret);
1193 }
1194
1195 int SSL_set_rfd(SSL *s, int fd)
1196 {
1197     int ret = 0;
1198     BIO *bio = NULL;
1199
1200     if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
1201         || ((int)BIO_get_fd(s->wbio, NULL) != fd)) {
1202         bio = BIO_new(BIO_s_socket());
1203
1204         if (bio == NULL) {
1205             SSLerr(SSL_F_SSL_SET_RFD, ERR_R_BUF_LIB);
1206             goto err;
1207         }
1208         BIO_set_fd(bio, fd, BIO_NOCLOSE);
1209         SSL_set_bio(s, bio, SSL_get_wbio(s));
1210     } else
1211         SSL_set_bio(s, SSL_get_wbio(s), SSL_get_wbio(s));
1212     ret = 1;
1213  err:
1214     return (ret);
1215 }
1216 #endif
1217
1218 /* return length of latest Finished message we sent, copy to 'buf' */
1219 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
1220 {
1221     size_t ret = 0;
1222
1223     if (s->s3 != NULL) {
1224         ret = s->s3->tmp.finish_md_len;
1225         if (count > ret)
1226             count = ret;
1227         memcpy(buf, s->s3->tmp.finish_md, count);
1228     }
1229     return ret;
1230 }
1231
1232 /* return length of latest Finished message we expected, copy to 'buf' */
1233 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
1234 {
1235     size_t ret = 0;
1236
1237     if (s->s3 != NULL) {
1238         ret = s->s3->tmp.peer_finish_md_len;
1239         if (count > ret)
1240             count = ret;
1241         memcpy(buf, s->s3->tmp.peer_finish_md, count);
1242     }
1243     return ret;
1244 }
1245
1246 int SSL_get_verify_mode(const SSL *s)
1247 {
1248     return (s->verify_mode);
1249 }
1250
1251 int SSL_get_verify_depth(const SSL *s)
1252 {
1253     return X509_VERIFY_PARAM_get_depth(s->param);
1254 }
1255
1256 int (*SSL_get_verify_callback(const SSL *s)) (int, X509_STORE_CTX *) {
1257     return (s->verify_callback);
1258 }
1259
1260 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
1261 {
1262     return (ctx->verify_mode);
1263 }
1264
1265 int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
1266 {
1267     return X509_VERIFY_PARAM_get_depth(ctx->param);
1268 }
1269
1270 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx)) (int, X509_STORE_CTX *) {
1271     return (ctx->default_verify_callback);
1272 }
1273
1274 void SSL_set_verify(SSL *s, int mode,
1275                     int (*callback) (int ok, X509_STORE_CTX *ctx))
1276 {
1277     s->verify_mode = mode;
1278     if (callback != NULL)
1279         s->verify_callback = callback;
1280 }
1281
1282 void SSL_set_verify_depth(SSL *s, int depth)
1283 {
1284     X509_VERIFY_PARAM_set_depth(s->param, depth);
1285 }
1286
1287 void SSL_set_read_ahead(SSL *s, int yes)
1288 {
1289     RECORD_LAYER_set_read_ahead(&s->rlayer, yes);
1290 }
1291
1292 int SSL_get_read_ahead(const SSL *s)
1293 {
1294     return RECORD_LAYER_get_read_ahead(&s->rlayer);
1295 }
1296
1297 int SSL_pending(const SSL *s)
1298 {
1299     /*
1300      * SSL_pending cannot work properly if read-ahead is enabled
1301      * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)), and it is
1302      * impossible to fix since SSL_pending cannot report errors that may be
1303      * observed while scanning the new data. (Note that SSL_pending() is
1304      * often used as a boolean value, so we'd better not return -1.)
1305      */
1306     return (s->method->ssl_pending(s));
1307 }
1308
1309 X509 *SSL_get_peer_certificate(const SSL *s)
1310 {
1311     X509 *r;
1312
1313     if ((s == NULL) || (s->session == NULL))
1314         r = NULL;
1315     else
1316         r = s->session->peer;
1317
1318     if (r == NULL)
1319         return (r);
1320
1321     X509_up_ref(r);
1322
1323     return (r);
1324 }
1325
1326 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
1327 {
1328     STACK_OF(X509) *r;
1329
1330     if ((s == NULL) || (s->session == NULL))
1331         r = NULL;
1332     else
1333         r = s->session->peer_chain;
1334
1335     /*
1336      * If we are a client, cert_chain includes the peer's own certificate; if
1337      * we are a server, it does not.
1338      */
1339
1340     return (r);
1341 }
1342
1343 /*
1344  * Now in theory, since the calling process own 't' it should be safe to
1345  * modify.  We need to be able to read f without being hassled
1346  */
1347 int SSL_copy_session_id(SSL *t, const SSL *f)
1348 {
1349     /* Do we need to to SSL locking? */
1350     if (!SSL_set_session(t, SSL_get_session(f))) {
1351         return 0;
1352     }
1353
1354     /*
1355      * what if we are setup for one protocol version but want to talk another
1356      */
1357     if (t->method != f->method) {
1358         t->method->ssl_free(t);
1359         t->method = f->method;
1360         if (t->method->ssl_new(t) == 0)
1361             return 0;
1362     }
1363
1364     CRYPTO_add(&f->cert->references, 1, CRYPTO_LOCK_SSL_CERT);
1365     ssl_cert_free(t->cert);
1366     t->cert = f->cert;
1367     if (!SSL_set_session_id_context(t, f->sid_ctx, f->sid_ctx_length)) {
1368         return 0;
1369     }
1370
1371     return 1;
1372 }
1373
1374 /* Fix this so it checks all the valid key/cert options */
1375 int SSL_CTX_check_private_key(const SSL_CTX *ctx)
1376 {
1377     if ((ctx == NULL) ||
1378         (ctx->cert->key->x509 == NULL)) {
1379         SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,
1380                SSL_R_NO_CERTIFICATE_ASSIGNED);
1381         return (0);
1382     }
1383     if (ctx->cert->key->privatekey == NULL) {
1384         SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,
1385                SSL_R_NO_PRIVATE_KEY_ASSIGNED);
1386         return (0);
1387     }
1388     return (X509_check_private_key
1389             (ctx->cert->key->x509, ctx->cert->key->privatekey));
1390 }
1391
1392 /* Fix this function so that it takes an optional type parameter */
1393 int SSL_check_private_key(const SSL *ssl)
1394 {
1395     if (ssl == NULL) {
1396         SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, ERR_R_PASSED_NULL_PARAMETER);
1397         return (0);
1398     }
1399     if (ssl->cert->key->x509 == NULL) {
1400         SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, SSL_R_NO_CERTIFICATE_ASSIGNED);
1401         return (0);
1402     }
1403     if (ssl->cert->key->privatekey == NULL) {
1404         SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
1405         return (0);
1406     }
1407     return (X509_check_private_key(ssl->cert->key->x509,
1408                                    ssl->cert->key->privatekey));
1409 }
1410
1411 int SSL_waiting_for_async(SSL *s)
1412 {
1413     if(s->job)
1414         return 1;
1415
1416     return 0;
1417 }
1418
1419 int SSL_get_all_async_fds(SSL *s, OSSL_ASYNC_FD *fds, size_t *numfds)
1420 {
1421     ASYNC_WAIT_CTX *ctx = s->waitctx;
1422
1423     if (ctx == NULL)
1424         return 0;
1425     return ASYNC_WAIT_CTX_get_all_fds(ctx, fds, numfds);
1426 }
1427
1428 int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, size_t *numaddfds,
1429                               OSSL_ASYNC_FD *delfd, size_t *numdelfds)
1430 {
1431     ASYNC_WAIT_CTX *ctx = s->waitctx;
1432
1433     if (ctx == NULL)
1434         return 0;
1435     return ASYNC_WAIT_CTX_get_changed_fds(ctx, addfd, numaddfds, delfd,
1436                                           numdelfds);
1437 }
1438
1439 int SSL_accept(SSL *s)
1440 {
1441     if (s->handshake_func == NULL) {
1442         /* Not properly initialized yet */
1443         SSL_set_accept_state(s);
1444     }
1445
1446     return SSL_do_handshake(s);
1447 }
1448
1449 int SSL_connect(SSL *s)
1450 {
1451     if (s->handshake_func == NULL) {
1452         /* Not properly initialized yet */
1453         SSL_set_connect_state(s);
1454     }
1455
1456     return SSL_do_handshake(s);
1457 }
1458
1459 long SSL_get_default_timeout(const SSL *s)
1460 {
1461     return (s->method->get_timeout());
1462 }
1463
1464 static int ssl_start_async_job(SSL *s, struct ssl_async_args *args,
1465                           int (*func)(void *)) {
1466     int ret;
1467     if (s->waitctx == NULL) {
1468         s->waitctx = ASYNC_WAIT_CTX_new();
1469         if (s->waitctx == NULL)
1470             return -1;
1471     }
1472     switch(ASYNC_start_job(&s->job, s->waitctx, &ret, func, args,
1473         sizeof(struct ssl_async_args))) {
1474     case ASYNC_ERR:
1475         s->rwstate = SSL_NOTHING;
1476         SSLerr(SSL_F_SSL_START_ASYNC_JOB, SSL_R_FAILED_TO_INIT_ASYNC);
1477         return -1;
1478     case ASYNC_PAUSE:
1479         s->rwstate = SSL_ASYNC_PAUSED;
1480         return -1;
1481     case ASYNC_FINISH:
1482         s->job = NULL;
1483         return ret;
1484     default:
1485         s->rwstate = SSL_NOTHING;
1486         SSLerr(SSL_F_SSL_START_ASYNC_JOB, ERR_R_INTERNAL_ERROR);
1487         /* Shouldn't happen */
1488         return -1;
1489     }
1490 }
1491
1492 static int ssl_io_intern(void *vargs)
1493 {
1494     struct ssl_async_args *args;
1495     SSL *s;
1496     void *buf;
1497     int num;
1498
1499     args = (struct ssl_async_args *)vargs;
1500     s = args->s;
1501     buf = args->buf;
1502     num = args->num;
1503     switch (args->type) {
1504     case READFUNC:
1505         return args->f.func_read(s, buf, num);
1506     case WRITEFUNC:
1507         return args->f.func_write(s, buf, num);
1508     case OTHERFUNC:
1509         return args->f.func_other(s);
1510     }
1511     return -1;
1512 }
1513
1514 int SSL_read(SSL *s, void *buf, int num)
1515 {
1516     if (s->handshake_func == NULL) {
1517         SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED);
1518         return -1;
1519     }
1520
1521     if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
1522         s->rwstate = SSL_NOTHING;
1523         return (0);
1524     }
1525
1526     if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1527         struct ssl_async_args args;
1528
1529         args.s = s;
1530         args.buf = buf;
1531         args.num = num;
1532         args.type = READFUNC;
1533         args.f.func_read = s->method->ssl_read;
1534
1535         return ssl_start_async_job(s, &args, ssl_io_intern);
1536     } else {
1537         return s->method->ssl_read(s, buf, num);
1538     }
1539 }
1540
1541 int SSL_peek(SSL *s, void *buf, int num)
1542 {
1543     if (s->handshake_func == NULL) {
1544         SSLerr(SSL_F_SSL_PEEK, SSL_R_UNINITIALIZED);
1545         return -1;
1546     }
1547
1548     if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
1549         return (0);
1550     }
1551     if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1552         struct ssl_async_args args;
1553
1554         args.s = s;
1555         args.buf = buf;
1556         args.num = num;
1557         args.type = READFUNC;
1558         args.f.func_read = s->method->ssl_peek;
1559
1560         return ssl_start_async_job(s, &args, ssl_io_intern);
1561     } else {
1562         return s->method->ssl_peek(s, buf, num);
1563     }
1564 }
1565
1566 int SSL_write(SSL *s, const void *buf, int num)
1567 {
1568     if (s->handshake_func == NULL) {
1569         SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED);
1570         return -1;
1571     }
1572
1573     if (s->shutdown & SSL_SENT_SHUTDOWN) {
1574         s->rwstate = SSL_NOTHING;
1575         SSLerr(SSL_F_SSL_WRITE, SSL_R_PROTOCOL_IS_SHUTDOWN);
1576         return (-1);
1577     }
1578
1579     if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1580         struct ssl_async_args args;
1581
1582         args.s = s;
1583         args.buf = (void *)buf;
1584         args.num = num;
1585         args.type = WRITEFUNC;
1586         args.f.func_write = s->method->ssl_write;
1587
1588         return ssl_start_async_job(s, &args, ssl_io_intern);
1589     } else {
1590         return s->method->ssl_write(s, buf, num);
1591     }
1592 }
1593
1594 int SSL_shutdown(SSL *s)
1595 {
1596     /*
1597      * Note that this function behaves differently from what one might
1598      * expect.  Return values are 0 for no success (yet), 1 for success; but
1599      * calling it once is usually not enough, even if blocking I/O is used
1600      * (see ssl3_shutdown).
1601      */
1602
1603     if (s->handshake_func == NULL) {
1604         SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);
1605         return -1;
1606     }
1607
1608     if (!SSL_in_init(s)) {
1609         if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1610             struct ssl_async_args args;
1611
1612             args.s = s;
1613             args.type = OTHERFUNC;
1614             args.f.func_other = s->method->ssl_shutdown;
1615
1616             return ssl_start_async_job(s, &args, ssl_io_intern);
1617         } else {
1618             return s->method->ssl_shutdown(s);
1619         }
1620     } else {
1621         SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_SHUTDOWN_WHILE_IN_INIT);
1622         return -1;
1623     }
1624 }
1625
1626 int SSL_renegotiate(SSL *s)
1627 {
1628     if (s->renegotiate == 0)
1629         s->renegotiate = 1;
1630
1631     s->new_session = 1;
1632
1633     return (s->method->ssl_renegotiate(s));
1634 }
1635
1636 int SSL_renegotiate_abbreviated(SSL *s)
1637 {
1638     if (s->renegotiate == 0)
1639         s->renegotiate = 1;
1640
1641     s->new_session = 0;
1642
1643     return (s->method->ssl_renegotiate(s));
1644 }
1645
1646 int SSL_renegotiate_pending(SSL *s)
1647 {
1648     /*
1649      * becomes true when negotiation is requested; false again once a
1650      * handshake has finished
1651      */
1652     return (s->renegotiate != 0);
1653 }
1654
1655 long SSL_ctrl(SSL *s, int cmd, long larg, void *parg)
1656 {
1657     long l;
1658
1659     switch (cmd) {
1660     case SSL_CTRL_GET_READ_AHEAD:
1661         return (RECORD_LAYER_get_read_ahead(&s->rlayer));
1662     case SSL_CTRL_SET_READ_AHEAD:
1663         l = RECORD_LAYER_get_read_ahead(&s->rlayer);
1664         RECORD_LAYER_set_read_ahead(&s->rlayer, larg);
1665         return (l);
1666
1667     case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1668         s->msg_callback_arg = parg;
1669         return 1;
1670
1671     case SSL_CTRL_MODE:
1672         return (s->mode |= larg);
1673     case SSL_CTRL_CLEAR_MODE:
1674         return (s->mode &= ~larg);
1675     case SSL_CTRL_GET_MAX_CERT_LIST:
1676         return (s->max_cert_list);
1677     case SSL_CTRL_SET_MAX_CERT_LIST:
1678         l = s->max_cert_list;
1679         s->max_cert_list = larg;
1680         return (l);
1681     case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
1682         if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
1683             return 0;
1684         s->max_send_fragment = larg;
1685         if (s->max_send_fragment < s->split_send_fragment)
1686             s->split_send_fragment = s->max_send_fragment;
1687         return 1;
1688     case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
1689         if (larg > s->max_send_fragment || larg == 0)
1690             return 0;
1691         s->split_send_fragment = larg;
1692         return 1;
1693     case SSL_CTRL_SET_MAX_PIPELINES:
1694         if (larg < 1 || larg > SSL_MAX_PIPELINES)
1695             return 0;
1696         s->max_pipelines = larg;
1697     case SSL_CTRL_GET_RI_SUPPORT:
1698         if (s->s3)
1699             return s->s3->send_connection_binding;
1700         else
1701             return 0;
1702     case SSL_CTRL_CERT_FLAGS:
1703         return (s->cert->cert_flags |= larg);
1704     case SSL_CTRL_CLEAR_CERT_FLAGS:
1705         return (s->cert->cert_flags &= ~larg);
1706
1707     case SSL_CTRL_GET_RAW_CIPHERLIST:
1708         if (parg) {
1709             if (s->s3->tmp.ciphers_raw == NULL)
1710                 return 0;
1711             *(unsigned char **)parg = s->s3->tmp.ciphers_raw;
1712             return (int)s->s3->tmp.ciphers_rawlen;
1713         } else {
1714             return TLS_CIPHER_LEN;
1715         }
1716     case SSL_CTRL_GET_EXTMS_SUPPORT:
1717         if (!s->session || SSL_in_init(s) || ossl_statem_get_in_handshake(s))
1718                 return -1;
1719         if (s->session->flags & SSL_SESS_FLAG_EXTMS)
1720             return 1;
1721         else
1722             return 0;
1723     case SSL_CTRL_SET_MIN_PROTO_VERSION:
1724         return ssl_set_version_bound(s->ctx->method->version, (int)larg,
1725                                      &s->min_proto_version);
1726     case SSL_CTRL_SET_MAX_PROTO_VERSION:
1727         return ssl_set_version_bound(s->ctx->method->version, (int)larg,
1728                                      &s->max_proto_version);
1729     default:
1730         return (s->method->ssl_ctrl(s, cmd, larg, parg));
1731     }
1732 }
1733
1734 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp) (void))
1735 {
1736     switch (cmd) {
1737     case SSL_CTRL_SET_MSG_CALLBACK:
1738         s->msg_callback = (void (*)
1739                            (int write_p, int version, int content_type,
1740                             const void *buf, size_t len, SSL *ssl,
1741                             void *arg))(fp);
1742         return 1;
1743
1744     default:
1745         return (s->method->ssl_callback_ctrl(s, cmd, fp));
1746     }
1747 }
1748
1749 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
1750 {
1751     return ctx->sessions;
1752 }
1753
1754 long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
1755 {
1756     long l;
1757     /* For some cases with ctx == NULL perform syntax checks */
1758     if (ctx == NULL) {
1759         switch (cmd) {
1760 #ifndef OPENSSL_NO_EC
1761         case SSL_CTRL_SET_CURVES_LIST:
1762             return tls1_set_curves_list(NULL, NULL, parg);
1763 #endif
1764         case SSL_CTRL_SET_SIGALGS_LIST:
1765         case SSL_CTRL_SET_CLIENT_SIGALGS_LIST:
1766             return tls1_set_sigalgs_list(NULL, parg, 0);
1767         default:
1768             return 0;
1769         }
1770     }
1771
1772     switch (cmd) {
1773     case SSL_CTRL_GET_READ_AHEAD:
1774         return (ctx->read_ahead);
1775     case SSL_CTRL_SET_READ_AHEAD:
1776         l = ctx->read_ahead;
1777         ctx->read_ahead = larg;
1778         return (l);
1779
1780     case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1781         ctx->msg_callback_arg = parg;
1782         return 1;
1783
1784     case SSL_CTRL_GET_MAX_CERT_LIST:
1785         return (ctx->max_cert_list);
1786     case SSL_CTRL_SET_MAX_CERT_LIST:
1787         l = ctx->max_cert_list;
1788         ctx->max_cert_list = larg;
1789         return (l);
1790
1791     case SSL_CTRL_SET_SESS_CACHE_SIZE:
1792         l = ctx->session_cache_size;
1793         ctx->session_cache_size = larg;
1794         return (l);
1795     case SSL_CTRL_GET_SESS_CACHE_SIZE:
1796         return (ctx->session_cache_size);
1797     case SSL_CTRL_SET_SESS_CACHE_MODE:
1798         l = ctx->session_cache_mode;
1799         ctx->session_cache_mode = larg;
1800         return (l);
1801     case SSL_CTRL_GET_SESS_CACHE_MODE:
1802         return (ctx->session_cache_mode);
1803
1804     case SSL_CTRL_SESS_NUMBER:
1805         return (lh_SSL_SESSION_num_items(ctx->sessions));
1806     case SSL_CTRL_SESS_CONNECT:
1807         return (ctx->stats.sess_connect);
1808     case SSL_CTRL_SESS_CONNECT_GOOD:
1809         return (ctx->stats.sess_connect_good);
1810     case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
1811         return (ctx->stats.sess_connect_renegotiate);
1812     case SSL_CTRL_SESS_ACCEPT:
1813         return (ctx->stats.sess_accept);
1814     case SSL_CTRL_SESS_ACCEPT_GOOD:
1815         return (ctx->stats.sess_accept_good);
1816     case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
1817         return (ctx->stats.sess_accept_renegotiate);
1818     case SSL_CTRL_SESS_HIT:
1819         return (ctx->stats.sess_hit);
1820     case SSL_CTRL_SESS_CB_HIT:
1821         return (ctx->stats.sess_cb_hit);
1822     case SSL_CTRL_SESS_MISSES:
1823         return (ctx->stats.sess_miss);
1824     case SSL_CTRL_SESS_TIMEOUTS:
1825         return (ctx->stats.sess_timeout);
1826     case SSL_CTRL_SESS_CACHE_FULL:
1827         return (ctx->stats.sess_cache_full);
1828     case SSL_CTRL_MODE:
1829         return (ctx->mode |= larg);
1830     case SSL_CTRL_CLEAR_MODE:
1831         return (ctx->mode &= ~larg);
1832     case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
1833         if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
1834             return 0;
1835         ctx->max_send_fragment = larg;
1836         if (ctx->max_send_fragment < ctx->split_send_fragment)
1837             ctx->split_send_fragment = ctx->split_send_fragment;
1838         return 1;
1839     case SSL_CTRL_SET_SPLIT_SEND_FRAGMENT:
1840         if (larg > ctx->max_send_fragment || larg == 0)
1841             return 0;
1842         ctx->split_send_fragment = larg;
1843         return 1;
1844     case SSL_CTRL_SET_MAX_PIPELINES:
1845         if (larg < 1 || larg > SSL_MAX_PIPELINES)
1846             return 0;
1847         ctx->max_pipelines = larg;
1848     case SSL_CTRL_CERT_FLAGS:
1849         return (ctx->cert->cert_flags |= larg);
1850     case SSL_CTRL_CLEAR_CERT_FLAGS:
1851         return (ctx->cert->cert_flags &= ~larg);
1852     case SSL_CTRL_SET_MIN_PROTO_VERSION:
1853         return ssl_set_version_bound(ctx->method->version, (int)larg,
1854                                      &ctx->min_proto_version);
1855     case SSL_CTRL_SET_MAX_PROTO_VERSION:
1856         return ssl_set_version_bound(ctx->method->version, (int)larg,
1857                                      &ctx->max_proto_version);
1858     default:
1859         return (ctx->method->ssl_ctx_ctrl(ctx, cmd, larg, parg));
1860     }
1861 }
1862
1863 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
1864 {
1865     switch (cmd) {
1866     case SSL_CTRL_SET_MSG_CALLBACK:
1867         ctx->msg_callback = (void (*)
1868                              (int write_p, int version, int content_type,
1869                               const void *buf, size_t len, SSL *ssl,
1870                               void *arg))(fp);
1871         return 1;
1872
1873     default:
1874         return (ctx->method->ssl_ctx_callback_ctrl(ctx, cmd, fp));
1875     }
1876 }
1877
1878 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
1879 {
1880     if (a->id > b->id)
1881         return 1;
1882     if (a->id < b->id)
1883         return -1;
1884     return 0;
1885 }
1886
1887 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
1888                           const SSL_CIPHER *const *bp)
1889 {
1890     if ((*ap)->id > (*bp)->id)
1891         return 1;
1892     if ((*ap)->id < (*bp)->id)
1893         return -1;
1894     return 0;
1895 }
1896
1897 /** return a STACK of the ciphers available for the SSL and in order of
1898  * preference */
1899 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
1900 {
1901     if (s != NULL) {
1902         if (s->cipher_list != NULL) {
1903             return (s->cipher_list);
1904         } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) {
1905             return (s->ctx->cipher_list);
1906         }
1907     }
1908     return (NULL);
1909 }
1910
1911 STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s)
1912 {
1913     if ((s == NULL) || (s->session == NULL) || !s->server)
1914         return NULL;
1915     return s->session->ciphers;
1916 }
1917
1918 STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s)
1919 {
1920     STACK_OF(SSL_CIPHER) *sk = NULL, *ciphers;
1921     int i;
1922     ciphers = SSL_get_ciphers(s);
1923     if (!ciphers)
1924         return NULL;
1925     ssl_set_client_disabled(s);
1926     for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1927         const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
1928         if (!ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED)) {
1929             if (!sk)
1930                 sk = sk_SSL_CIPHER_new_null();
1931             if (!sk)
1932                 return NULL;
1933             if (!sk_SSL_CIPHER_push(sk, c)) {
1934                 sk_SSL_CIPHER_free(sk);
1935                 return NULL;
1936             }
1937         }
1938     }
1939     return sk;
1940 }
1941
1942 /** return a STACK of the ciphers available for the SSL and in order of
1943  * algorithm id */
1944 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
1945 {
1946     if (s != NULL) {
1947         if (s->cipher_list_by_id != NULL) {
1948             return (s->cipher_list_by_id);
1949         } else if ((s->ctx != NULL) && (s->ctx->cipher_list_by_id != NULL)) {
1950             return (s->ctx->cipher_list_by_id);
1951         }
1952     }
1953     return (NULL);
1954 }
1955
1956 /** The old interface to get the same thing as SSL_get_ciphers() */
1957 const char *SSL_get_cipher_list(const SSL *s, int n)
1958 {
1959     const SSL_CIPHER *c;
1960     STACK_OF(SSL_CIPHER) *sk;
1961
1962     if (s == NULL)
1963         return (NULL);
1964     sk = SSL_get_ciphers(s);
1965     if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
1966         return (NULL);
1967     c = sk_SSL_CIPHER_value(sk, n);
1968     if (c == NULL)
1969         return (NULL);
1970     return (c->name);
1971 }
1972
1973 /** specify the ciphers to be used by default by the SSL_CTX */
1974 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
1975 {
1976     STACK_OF(SSL_CIPHER) *sk;
1977
1978     sk = ssl_create_cipher_list(ctx->method, &ctx->cipher_list,
1979                                 &ctx->cipher_list_by_id, str, ctx->cert);
1980     /*
1981      * ssl_create_cipher_list may return an empty stack if it was unable to
1982      * find a cipher matching the given rule string (for example if the rule
1983      * string specifies a cipher which has been disabled). This is not an
1984      * error as far as ssl_create_cipher_list is concerned, and hence
1985      * ctx->cipher_list and ctx->cipher_list_by_id has been updated.
1986      */
1987     if (sk == NULL)
1988         return 0;
1989     else if (sk_SSL_CIPHER_num(sk) == 0) {
1990         SSLerr(SSL_F_SSL_CTX_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1991         return 0;
1992     }
1993     return 1;
1994 }
1995
1996 /** specify the ciphers to be used by the SSL */
1997 int SSL_set_cipher_list(SSL *s, const char *str)
1998 {
1999     STACK_OF(SSL_CIPHER) *sk;
2000
2001     sk = ssl_create_cipher_list(s->ctx->method, &s->cipher_list,
2002                                 &s->cipher_list_by_id, str, s->cert);
2003     /* see comment in SSL_CTX_set_cipher_list */
2004     if (sk == NULL)
2005         return 0;
2006     else if (sk_SSL_CIPHER_num(sk) == 0) {
2007         SSLerr(SSL_F_SSL_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
2008         return 0;
2009     }
2010     return 1;
2011 }
2012
2013 char *SSL_get_shared_ciphers(const SSL *s, char *buf, int len)
2014 {
2015     char *p;
2016     STACK_OF(SSL_CIPHER) *sk;
2017     const SSL_CIPHER *c;
2018     int i;
2019
2020     if ((s->session == NULL) || (s->session->ciphers == NULL) || (len < 2))
2021         return (NULL);
2022
2023     p = buf;
2024     sk = s->session->ciphers;
2025
2026     if (sk_SSL_CIPHER_num(sk) == 0)
2027         return NULL;
2028
2029     for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
2030         int n;
2031
2032         c = sk_SSL_CIPHER_value(sk, i);
2033         n = strlen(c->name);
2034         if (n + 1 > len) {
2035             if (p != buf)
2036                 --p;
2037             *p = '\0';
2038             return buf;
2039         }
2040         memcpy(p, c->name, n + 1);
2041         p += n;
2042         *(p++) = ':';
2043         len -= n + 1;
2044     }
2045     p[-1] = '\0';
2046     return (buf);
2047 }
2048
2049 /** return a servername extension value if provided in Client Hello, or NULL.
2050  * So far, only host_name types are defined (RFC 3546).
2051  */
2052
2053 const char *SSL_get_servername(const SSL *s, const int type)
2054 {
2055     if (type != TLSEXT_NAMETYPE_host_name)
2056         return NULL;
2057
2058     return s->session && !s->tlsext_hostname ?
2059         s->session->tlsext_hostname : s->tlsext_hostname;
2060 }
2061
2062 int SSL_get_servername_type(const SSL *s)
2063 {
2064     if (s->session
2065         && (!s->tlsext_hostname ? s->session->
2066             tlsext_hostname : s->tlsext_hostname))
2067         return TLSEXT_NAMETYPE_host_name;
2068     return -1;
2069 }
2070
2071 /*
2072  * SSL_select_next_proto implements the standard protocol selection. It is
2073  * expected that this function is called from the callback set by
2074  * SSL_CTX_set_next_proto_select_cb. The protocol data is assumed to be a
2075  * vector of 8-bit, length prefixed byte strings. The length byte itself is
2076  * not included in the length. A byte string of length 0 is invalid. No byte
2077  * string may be truncated. The current, but experimental algorithm for
2078  * selecting the protocol is: 1) If the server doesn't support NPN then this
2079  * is indicated to the callback. In this case, the client application has to
2080  * abort the connection or have a default application level protocol. 2) If
2081  * the server supports NPN, but advertises an empty list then the client
2082  * selects the first protcol in its list, but indicates via the API that this
2083  * fallback case was enacted. 3) Otherwise, the client finds the first
2084  * protocol in the server's list that it supports and selects this protocol.
2085  * This is because it's assumed that the server has better information about
2086  * which protocol a client should use. 4) If the client doesn't support any
2087  * of the server's advertised protocols, then this is treated the same as
2088  * case 2. It returns either OPENSSL_NPN_NEGOTIATED if a common protocol was
2089  * found, or OPENSSL_NPN_NO_OVERLAP if the fallback case was reached.
2090  */
2091 int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
2092                           const unsigned char *server,
2093                           unsigned int server_len,
2094                           const unsigned char *client,
2095                           unsigned int client_len)
2096 {
2097     unsigned int i, j;
2098     const unsigned char *result;
2099     int status = OPENSSL_NPN_UNSUPPORTED;
2100
2101     /*
2102      * For each protocol in server preference order, see if we support it.
2103      */
2104     for (i = 0; i < server_len;) {
2105         for (j = 0; j < client_len;) {
2106             if (server[i] == client[j] &&
2107                 memcmp(&server[i + 1], &client[j + 1], server[i]) == 0) {
2108                 /* We found a match */
2109                 result = &server[i];
2110                 status = OPENSSL_NPN_NEGOTIATED;
2111                 goto found;
2112             }
2113             j += client[j];
2114             j++;
2115         }
2116         i += server[i];
2117         i++;
2118     }
2119
2120     /* There's no overlap between our protocols and the server's list. */
2121     result = client;
2122     status = OPENSSL_NPN_NO_OVERLAP;
2123
2124  found:
2125     *out = (unsigned char *)result + 1;
2126     *outlen = result[0];
2127     return status;
2128 }
2129
2130 #ifndef OPENSSL_NO_NEXTPROTONEG
2131 /*
2132  * SSL_get0_next_proto_negotiated sets *data and *len to point to the
2133  * client's requested protocol for this connection and returns 0. If the
2134  * client didn't request any protocol, then *data is set to NULL. Note that
2135  * the client can request any protocol it chooses. The value returned from
2136  * this function need not be a member of the list of supported protocols
2137  * provided by the callback.
2138  */
2139 void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
2140                                     unsigned *len)
2141 {
2142     *data = s->next_proto_negotiated;
2143     if (!*data) {
2144         *len = 0;
2145     } else {
2146         *len = s->next_proto_negotiated_len;
2147     }
2148 }
2149
2150 /*
2151  * SSL_CTX_set_next_protos_advertised_cb sets a callback that is called when
2152  * a TLS server needs a list of supported protocols for Next Protocol
2153  * Negotiation. The returned list must be in wire format.  The list is
2154  * returned by setting |out| to point to it and |outlen| to its length. This
2155  * memory will not be modified, but one should assume that the SSL* keeps a
2156  * reference to it. The callback should return SSL_TLSEXT_ERR_OK if it
2157  * wishes to advertise. Otherwise, no such extension will be included in the
2158  * ServerHello.
2159  */
2160 void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *ctx,
2161                                            int (*cb) (SSL *ssl,
2162                                                       const unsigned char
2163                                                       **out,
2164                                                       unsigned int *outlen,
2165                                                       void *arg), void *arg)
2166 {
2167     ctx->next_protos_advertised_cb = cb;
2168     ctx->next_protos_advertised_cb_arg = arg;
2169 }
2170
2171 /*
2172  * SSL_CTX_set_next_proto_select_cb sets a callback that is called when a
2173  * client needs to select a protocol from the server's provided list. |out|
2174  * must be set to point to the selected protocol (which may be within |in|).
2175  * The length of the protocol name must be written into |outlen|. The
2176  * server's advertised protocols are provided in |in| and |inlen|. The
2177  * callback can assume that |in| is syntactically valid. The client must
2178  * select a protocol. It is fatal to the connection if this callback returns
2179  * a value other than SSL_TLSEXT_ERR_OK.
2180  */
2181 void SSL_CTX_set_next_proto_select_cb(SSL_CTX *ctx,
2182                                       int (*cb) (SSL *s, unsigned char **out,
2183                                                  unsigned char *outlen,
2184                                                  const unsigned char *in,
2185                                                  unsigned int inlen,
2186                                                  void *arg), void *arg)
2187 {
2188     ctx->next_proto_select_cb = cb;
2189     ctx->next_proto_select_cb_arg = arg;
2190 }
2191 #endif
2192
2193 /*
2194  * SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
2195  * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
2196  * length-prefixed strings). Returns 0 on success.
2197  */
2198 int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
2199                             unsigned protos_len)
2200 {
2201     OPENSSL_free(ctx->alpn_client_proto_list);
2202     ctx->alpn_client_proto_list = OPENSSL_malloc(protos_len);
2203     if (ctx->alpn_client_proto_list == NULL) {
2204         SSLerr(SSL_F_SSL_CTX_SET_ALPN_PROTOS, ERR_R_MALLOC_FAILURE);
2205         return 1;
2206     }
2207     memcpy(ctx->alpn_client_proto_list, protos, protos_len);
2208     ctx->alpn_client_proto_list_len = protos_len;
2209
2210     return 0;
2211 }
2212
2213 /*
2214  * SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
2215  * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
2216  * length-prefixed strings). Returns 0 on success.
2217  */
2218 int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
2219                         unsigned protos_len)
2220 {
2221     OPENSSL_free(ssl->alpn_client_proto_list);
2222     ssl->alpn_client_proto_list = OPENSSL_malloc(protos_len);
2223     if (ssl->alpn_client_proto_list == NULL) {
2224         SSLerr(SSL_F_SSL_SET_ALPN_PROTOS, ERR_R_MALLOC_FAILURE);
2225         return 1;
2226     }
2227     memcpy(ssl->alpn_client_proto_list, protos, protos_len);
2228     ssl->alpn_client_proto_list_len = protos_len;
2229
2230     return 0;
2231 }
2232
2233 /*
2234  * SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is
2235  * called during ClientHello processing in order to select an ALPN protocol
2236  * from the client's list of offered protocols.
2237  */
2238 void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
2239                                 int (*cb) (SSL *ssl,
2240                                            const unsigned char **out,
2241                                            unsigned char *outlen,
2242                                            const unsigned char *in,
2243                                            unsigned int inlen,
2244                                            void *arg), void *arg)
2245 {
2246     ctx->alpn_select_cb = cb;
2247     ctx->alpn_select_cb_arg = arg;
2248 }
2249
2250 /*
2251  * SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from
2252  * |ssl|. On return it sets |*data| to point to |*len| bytes of protocol name
2253  * (not including the leading length-prefix byte). If the server didn't
2254  * respond with a negotiated protocol then |*len| will be zero.
2255  */
2256 void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
2257                             unsigned *len)
2258 {
2259     *data = NULL;
2260     if (ssl->s3)
2261         *data = ssl->s3->alpn_selected;
2262     if (*data == NULL)
2263         *len = 0;
2264     else
2265         *len = ssl->s3->alpn_selected_len;
2266 }
2267
2268
2269 int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
2270                                const char *label, size_t llen,
2271                                const unsigned char *p, size_t plen,
2272                                int use_context)
2273 {
2274     if (s->version < TLS1_VERSION)
2275         return -1;
2276
2277     return s->method->ssl3_enc->export_keying_material(s, out, olen, label,
2278                                                        llen, p, plen,
2279                                                        use_context);
2280 }
2281
2282 static unsigned long ssl_session_hash(const SSL_SESSION *a)
2283 {
2284     unsigned long l;
2285
2286     l = (unsigned long)
2287         ((unsigned int)a->session_id[0]) |
2288         ((unsigned int)a->session_id[1] << 8L) |
2289         ((unsigned long)a->session_id[2] << 16L) |
2290         ((unsigned long)a->session_id[3] << 24L);
2291     return (l);
2292 }
2293
2294 /*
2295  * NB: If this function (or indeed the hash function which uses a sort of
2296  * coarser function than this one) is changed, ensure
2297  * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on
2298  * being able to construct an SSL_SESSION that will collide with any existing
2299  * session with a matching session ID.
2300  */
2301 static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
2302 {
2303     if (a->ssl_version != b->ssl_version)
2304         return (1);
2305     if (a->session_id_length != b->session_id_length)
2306         return (1);
2307     return (memcmp(a->session_id, b->session_id, a->session_id_length));
2308 }
2309
2310 /*
2311  * These wrapper functions should remain rather than redeclaring
2312  * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
2313  * variable. The reason is that the functions aren't static, they're exposed
2314  * via ssl.h.
2315  */
2316
2317 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
2318 {
2319     SSL_CTX *ret = NULL;
2320
2321     if (meth == NULL) {
2322         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_NULL_SSL_METHOD_PASSED);
2323         return (NULL);
2324     }
2325
2326     if (!OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS, NULL))
2327         return NULL;
2328
2329     if (FIPS_mode() && (meth->version < TLS1_VERSION)) {
2330         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_AT_LEAST_TLS_1_0_NEEDED_IN_FIPS_MODE);
2331         return NULL;
2332     }
2333
2334     if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) {
2335         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
2336         goto err;
2337     }
2338     ret = OPENSSL_zalloc(sizeof(*ret));
2339     if (ret == NULL)
2340         goto err;
2341
2342     ret->method = meth;
2343     ret->min_proto_version = 0;
2344     ret->max_proto_version = 0;
2345     ret->session_cache_mode = SSL_SESS_CACHE_SERVER;
2346     ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
2347     /* We take the system default. */
2348     ret->session_timeout = meth->get_timeout();
2349     ret->references = 1;
2350     ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT;
2351     ret->verify_mode = SSL_VERIFY_NONE;
2352     if ((ret->cert = ssl_cert_new()) == NULL)
2353         goto err;
2354
2355     ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp);
2356     if (ret->sessions == NULL)
2357         goto err;
2358     ret->cert_store = X509_STORE_new();
2359     if (ret->cert_store == NULL)
2360         goto err;
2361 #ifndef OPENSSL_NO_CT
2362     ret->ctlog_store = CTLOG_STORE_new();
2363     if (ret->ctlog_store == NULL)
2364         goto err;
2365 #endif
2366     if (!ssl_create_cipher_list(ret->method,
2367                            &ret->cipher_list, &ret->cipher_list_by_id,
2368                            SSL_DEFAULT_CIPHER_LIST, ret->cert)
2369        || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) {
2370         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_LIBRARY_HAS_NO_CIPHERS);
2371         goto err2;
2372     }
2373
2374     ret->param = X509_VERIFY_PARAM_new();
2375     if (ret->param == NULL)
2376         goto err;
2377
2378     if ((ret->md5 = EVP_get_digestbyname("ssl3-md5")) == NULL) {
2379         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
2380         goto err2;
2381     }
2382     if ((ret->sha1 = EVP_get_digestbyname("ssl3-sha1")) == NULL) {
2383         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
2384         goto err2;
2385     }
2386
2387     if ((ret->client_CA = sk_X509_NAME_new_null()) == NULL)
2388         goto err;
2389
2390     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
2391
2392     /* No compression for DTLS */
2393     if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
2394         ret->comp_methods = SSL_COMP_get_compression_methods();
2395
2396     ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
2397     ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
2398
2399     /* Setup RFC4507 ticket keys */
2400     if ((RAND_bytes(ret->tlsext_tick_key_name, 16) <= 0)
2401         || (RAND_bytes(ret->tlsext_tick_hmac_key, 16) <= 0)
2402         || (RAND_bytes(ret->tlsext_tick_aes_key, 16) <= 0))
2403         ret->options |= SSL_OP_NO_TICKET;
2404
2405 #ifndef OPENSSL_NO_SRP
2406     if (!SSL_CTX_SRP_CTX_init(ret))
2407         goto err;
2408 #endif
2409 #ifndef OPENSSL_NO_ENGINE
2410 # ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
2411 #  define eng_strx(x)     #x
2412 #  define eng_str(x)      eng_strx(x)
2413     /* Use specific client engine automatically... ignore errors */
2414     {
2415         ENGINE *eng;
2416         eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
2417         if (!eng) {
2418             ERR_clear_error();
2419             ENGINE_load_builtin_engines();
2420             eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
2421         }
2422         if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
2423             ERR_clear_error();
2424     }
2425 # endif
2426 #endif
2427     /*
2428      * Default is to connect to non-RI servers. When RI is more widely
2429      * deployed might change this.
2430      */
2431     ret->options |= SSL_OP_LEGACY_SERVER_CONNECT;
2432     /*
2433      * Disable compression by default to prevent CRIME. Applications can
2434      * re-enable compression by configuring
2435      * SSL_CTX_clear_options(ctx, SSL_OP_NO_COMPRESSION);
2436      * or by using the SSL_CONF library.
2437      */
2438     ret->options |= SSL_OP_NO_COMPRESSION;
2439
2440     return (ret);
2441  err:
2442     SSLerr(SSL_F_SSL_CTX_NEW, ERR_R_MALLOC_FAILURE);
2443  err2:
2444     SSL_CTX_free(ret);
2445     return (NULL);
2446 }
2447
2448 void SSL_CTX_up_ref(SSL_CTX *ctx)
2449 {
2450     CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
2451 }
2452
2453 void SSL_CTX_free(SSL_CTX *a)
2454 {
2455     int i;
2456
2457     if (a == NULL)
2458         return;
2459
2460     i = CRYPTO_add(&a->references, -1, CRYPTO_LOCK_SSL_CTX);
2461     REF_PRINT_COUNT("SSL_CTX", a);
2462     if (i > 0)
2463         return;
2464     REF_ASSERT_ISNT(i < 0);
2465
2466     X509_VERIFY_PARAM_free(a->param);
2467     dane_ctx_final(&a->dane);
2468
2469     /*
2470      * Free internal session cache. However: the remove_cb() may reference
2471      * the ex_data of SSL_CTX, thus the ex_data store can only be removed
2472      * after the sessions were flushed.
2473      * As the ex_data handling routines might also touch the session cache,
2474      * the most secure solution seems to be: empty (flush) the cache, then
2475      * free ex_data, then finally free the cache.
2476      * (See ticket [openssl.org #212].)
2477      */
2478     if (a->sessions != NULL)
2479         SSL_CTX_flush_sessions(a, 0);
2480
2481     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
2482     lh_SSL_SESSION_free(a->sessions);
2483     X509_STORE_free(a->cert_store);
2484 #ifndef OPENSSL_NO_CT
2485     CTLOG_STORE_free(a->ctlog_store);
2486 #endif
2487     sk_SSL_CIPHER_free(a->cipher_list);
2488     sk_SSL_CIPHER_free(a->cipher_list_by_id);
2489     ssl_cert_free(a->cert);
2490     sk_X509_NAME_pop_free(a->client_CA, X509_NAME_free);
2491     sk_X509_pop_free(a->extra_certs, X509_free);
2492     a->comp_methods = NULL;
2493 #ifndef OPENSSL_NO_SRTP
2494     sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
2495 #endif
2496 #ifndef OPENSSL_NO_SRP
2497     SSL_CTX_SRP_CTX_free(a);
2498 #endif
2499 #ifndef OPENSSL_NO_ENGINE
2500     ENGINE_finish(a->client_cert_engine);
2501 #endif
2502
2503 #ifndef OPENSSL_NO_EC
2504     OPENSSL_free(a->tlsext_ecpointformatlist);
2505     OPENSSL_free(a->tlsext_ellipticcurvelist);
2506 #endif
2507     OPENSSL_free(a->alpn_client_proto_list);
2508
2509     OPENSSL_free(a);
2510 }
2511
2512 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
2513 {
2514     ctx->default_passwd_callback = cb;
2515 }
2516
2517 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
2518 {
2519     ctx->default_passwd_callback_userdata = u;
2520 }
2521
2522 pem_password_cb *SSL_CTX_get_default_passwd_cb(SSL_CTX *ctx)
2523 {
2524     return ctx->default_passwd_callback;
2525 }
2526
2527 void *SSL_CTX_get_default_passwd_cb_userdata(SSL_CTX *ctx)
2528 {
2529     return ctx->default_passwd_callback_userdata;
2530 }
2531
2532 void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb)
2533 {
2534     s->default_passwd_callback = cb;
2535 }
2536
2537 void SSL_set_default_passwd_cb_userdata(SSL *s, void *u)
2538 {
2539     s->default_passwd_callback_userdata = u;
2540 }
2541
2542 pem_password_cb *SSL_get_default_passwd_cb(SSL *s)
2543 {
2544     return s->default_passwd_callback;
2545 }
2546
2547 void *SSL_get_default_passwd_cb_userdata(SSL *s)
2548 {
2549     return s->default_passwd_callback_userdata;
2550 }
2551
2552 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
2553                                       int (*cb) (X509_STORE_CTX *, void *),
2554                                       void *arg)
2555 {
2556     ctx->app_verify_callback = cb;
2557     ctx->app_verify_arg = arg;
2558 }
2559
2560 void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
2561                         int (*cb) (int, X509_STORE_CTX *))
2562 {
2563     ctx->verify_mode = mode;
2564     ctx->default_verify_callback = cb;
2565 }
2566
2567 void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
2568 {
2569     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2570 }
2571
2572 void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg),
2573                          void *arg)
2574 {
2575     ssl_cert_set_cert_cb(c->cert, cb, arg);
2576 }
2577
2578 void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg)
2579 {
2580     ssl_cert_set_cert_cb(s->cert, cb, arg);
2581 }
2582
2583 void ssl_set_masks(SSL *s)
2584 {
2585 #if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_GOST)
2586     CERT_PKEY *cpk;
2587 #endif
2588     CERT *c = s->cert;
2589     uint32_t *pvalid = s->s3->tmp.valid_flags;
2590     int rsa_enc, rsa_sign, dh_tmp, dsa_sign;
2591     unsigned long mask_k, mask_a;
2592 #ifndef OPENSSL_NO_EC
2593     int have_ecc_cert, ecdsa_ok;
2594     X509 *x = NULL;
2595 #endif
2596     if (c == NULL)
2597         return;
2598
2599 #ifndef OPENSSL_NO_DH
2600     dh_tmp = (c->dh_tmp != NULL || c->dh_tmp_cb != NULL || c->dh_tmp_auto);
2601 #else
2602     dh_tmp = 0;
2603 #endif
2604
2605     rsa_enc = pvalid[SSL_PKEY_RSA_ENC] & CERT_PKEY_VALID;
2606     rsa_sign = pvalid[SSL_PKEY_RSA_SIGN] & CERT_PKEY_SIGN;
2607     dsa_sign = pvalid[SSL_PKEY_DSA_SIGN] & CERT_PKEY_SIGN;
2608 #ifndef OPENSSL_NO_EC
2609     have_ecc_cert = pvalid[SSL_PKEY_ECC] & CERT_PKEY_VALID;
2610 #endif
2611     mask_k = 0;
2612     mask_a = 0;
2613
2614 #ifdef CIPHER_DEBUG
2615     fprintf(stderr, "dht=%d re=%d rs=%d ds=%d\n",
2616             dh_tmp, rsa_enc, rsa_sign, dsa_sign);
2617 #endif
2618
2619 #ifndef OPENSSL_NO_GOST
2620     cpk = &(c->pkeys[SSL_PKEY_GOST12_512]);
2621     if (cpk->x509 != NULL && cpk->privatekey != NULL) {
2622         mask_k |= SSL_kGOST;
2623         mask_a |= SSL_aGOST12;
2624     }
2625     cpk = &(c->pkeys[SSL_PKEY_GOST12_256]);
2626     if (cpk->x509 != NULL && cpk->privatekey != NULL) {
2627         mask_k |= SSL_kGOST;
2628         mask_a |= SSL_aGOST12;
2629     }
2630     cpk = &(c->pkeys[SSL_PKEY_GOST01]);
2631     if (cpk->x509 != NULL && cpk->privatekey != NULL) {
2632         mask_k |= SSL_kGOST;
2633         mask_a |= SSL_aGOST01;
2634     }
2635 #endif
2636
2637     if (rsa_enc)
2638         mask_k |= SSL_kRSA;
2639
2640     if (dh_tmp)
2641         mask_k |= SSL_kDHE;
2642
2643     if (rsa_enc || rsa_sign) {
2644         mask_a |= SSL_aRSA;
2645     }
2646
2647     if (dsa_sign) {
2648         mask_a |= SSL_aDSS;
2649     }
2650
2651     mask_a |= SSL_aNULL;
2652
2653     /*
2654      * An ECC certificate may be usable for ECDH and/or ECDSA cipher suites
2655      * depending on the key usage extension.
2656      */
2657 #ifndef OPENSSL_NO_EC
2658     if (have_ecc_cert) {
2659         uint32_t ex_kusage;
2660         cpk = &c->pkeys[SSL_PKEY_ECC];
2661         x = cpk->x509;
2662         ex_kusage = X509_get_key_usage(x);
2663         ecdsa_ok = ex_kusage & X509v3_KU_DIGITAL_SIGNATURE;
2664         if (!(pvalid[SSL_PKEY_ECC] & CERT_PKEY_SIGN))
2665             ecdsa_ok = 0;
2666         if (ecdsa_ok)
2667             mask_a |= SSL_aECDSA;
2668     }
2669 #endif
2670
2671 #ifndef OPENSSL_NO_EC
2672     mask_k |= SSL_kECDHE;
2673 #endif
2674
2675 #ifndef OPENSSL_NO_PSK
2676     mask_k |= SSL_kPSK;
2677     mask_a |= SSL_aPSK;
2678     if (mask_k & SSL_kRSA)
2679         mask_k |= SSL_kRSAPSK;
2680     if (mask_k & SSL_kDHE)
2681         mask_k |= SSL_kDHEPSK;
2682     if (mask_k & SSL_kECDHE)
2683         mask_k |= SSL_kECDHEPSK;
2684 #endif
2685
2686     s->s3->tmp.mask_k = mask_k;
2687     s->s3->tmp.mask_a = mask_a;
2688 }
2689
2690 #ifndef OPENSSL_NO_EC
2691
2692 int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL *s)
2693 {
2694     if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aECDSA) {
2695         /* key usage, if present, must allow signing */
2696         if (!(X509_get_key_usage(x) & X509v3_KU_DIGITAL_SIGNATURE)) {
2697             SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2698                    SSL_R_ECC_CERT_NOT_FOR_SIGNING);
2699             return 0;
2700         }
2701     }
2702     return 1;                   /* all checks are ok */
2703 }
2704
2705 #endif
2706
2707 static int ssl_get_server_cert_index(const SSL *s)
2708 {
2709     int idx;
2710     idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher);
2711     if (idx == SSL_PKEY_RSA_ENC && !s->cert->pkeys[SSL_PKEY_RSA_ENC].x509)
2712         idx = SSL_PKEY_RSA_SIGN;
2713     if (idx == SSL_PKEY_GOST_EC) {
2714         if (s->cert->pkeys[SSL_PKEY_GOST12_512].x509)
2715             idx = SSL_PKEY_GOST12_512;
2716         else if (s->cert->pkeys[SSL_PKEY_GOST12_256].x509)
2717             idx = SSL_PKEY_GOST12_256;
2718         else if (s->cert->pkeys[SSL_PKEY_GOST01].x509)
2719             idx = SSL_PKEY_GOST01;
2720         else
2721             idx = -1;
2722     }
2723     if (idx == -1)
2724         SSLerr(SSL_F_SSL_GET_SERVER_CERT_INDEX, ERR_R_INTERNAL_ERROR);
2725     return idx;
2726 }
2727
2728 CERT_PKEY *ssl_get_server_send_pkey(SSL *s)
2729 {
2730     CERT *c;
2731     int i;
2732
2733     c = s->cert;
2734     if (!s->s3 || !s->s3->tmp.new_cipher)
2735         return NULL;
2736     ssl_set_masks(s);
2737
2738     i = ssl_get_server_cert_index(s);
2739
2740     /* This may or may not be an error. */
2741     if (i < 0)
2742         return NULL;
2743
2744     /* May be NULL. */
2745     return &c->pkeys[i];
2746 }
2747
2748 EVP_PKEY *ssl_get_sign_pkey(SSL *s, const SSL_CIPHER *cipher,
2749                             const EVP_MD **pmd)
2750 {
2751     unsigned long alg_a;
2752     CERT *c;
2753     int idx = -1;
2754
2755     alg_a = cipher->algorithm_auth;
2756     c = s->cert;
2757
2758     if ((alg_a & SSL_aDSS) &&
2759             (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
2760         idx = SSL_PKEY_DSA_SIGN;
2761     else if (alg_a & SSL_aRSA) {
2762         if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
2763             idx = SSL_PKEY_RSA_SIGN;
2764         else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
2765             idx = SSL_PKEY_RSA_ENC;
2766     } else if ((alg_a & SSL_aECDSA) &&
2767                (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
2768         idx = SSL_PKEY_ECC;
2769     if (idx == -1) {
2770         SSLerr(SSL_F_SSL_GET_SIGN_PKEY, ERR_R_INTERNAL_ERROR);
2771         return (NULL);
2772     }
2773     if (pmd)
2774         *pmd = s->s3->tmp.md[idx];
2775     return c->pkeys[idx].privatekey;
2776 }
2777
2778 int ssl_get_server_cert_serverinfo(SSL *s, const unsigned char **serverinfo,
2779                                    size_t *serverinfo_length)
2780 {
2781     CERT *c = NULL;
2782     int i = 0;
2783     *serverinfo_length = 0;
2784
2785     c = s->cert;
2786     i = ssl_get_server_cert_index(s);
2787
2788     if (i == -1)
2789         return 0;
2790     if (c->pkeys[i].serverinfo == NULL)
2791         return 0;
2792
2793     *serverinfo = c->pkeys[i].serverinfo;
2794     *serverinfo_length = c->pkeys[i].serverinfo_length;
2795     return 1;
2796 }
2797
2798 void ssl_update_cache(SSL *s, int mode)
2799 {
2800     int i;
2801
2802     /*
2803      * If the session_id_length is 0, we are not supposed to cache it, and it
2804      * would be rather hard to do anyway :-)
2805      */
2806     if (s->session->session_id_length == 0)
2807         return;
2808
2809     i = s->session_ctx->session_cache_mode;
2810     if ((i & mode) && (!s->hit)
2811         && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
2812             || SSL_CTX_add_session(s->session_ctx, s->session))
2813         && (s->session_ctx->new_session_cb != NULL)) {
2814         CRYPTO_add(&s->session->references, 1, CRYPTO_LOCK_SSL_SESSION);
2815         if (!s->session_ctx->new_session_cb(s, s->session))
2816             SSL_SESSION_free(s->session);
2817     }
2818
2819     /* auto flush every 255 connections */
2820     if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && ((i & mode) == mode)) {
2821         if ((((mode & SSL_SESS_CACHE_CLIENT)
2822               ? s->session_ctx->stats.sess_connect_good
2823               : s->session_ctx->stats.sess_accept_good) & 0xff) == 0xff) {
2824             SSL_CTX_flush_sessions(s->session_ctx, (unsigned long)time(NULL));
2825         }
2826     }
2827 }
2828
2829 const SSL_METHOD *SSL_CTX_get_ssl_method(SSL_CTX *ctx)
2830 {
2831     return ctx->method;
2832 }
2833
2834 const SSL_METHOD *SSL_get_ssl_method(SSL *s)
2835 {
2836     return (s->method);
2837 }
2838
2839 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
2840 {
2841     int ret = 1;
2842
2843     if (s->method != meth) {
2844         const SSL_METHOD *sm = s->method;
2845         int (*hf)(SSL *) = s->handshake_func;
2846
2847         if (sm->version == meth->version)
2848             s->method = meth;
2849         else {
2850             sm->ssl_free(s);
2851             s->method = meth;
2852             ret = s->method->ssl_new(s);
2853         }
2854
2855         if (hf == sm->ssl_connect)
2856             s->handshake_func = meth->ssl_connect;
2857         else if (hf == sm->ssl_accept)
2858             s->handshake_func = meth->ssl_accept;
2859     }
2860     return (ret);
2861 }
2862
2863 int SSL_get_error(const SSL *s, int i)
2864 {
2865     int reason;
2866     unsigned long l;
2867     BIO *bio;
2868
2869     if (i > 0)
2870         return (SSL_ERROR_NONE);
2871
2872     /*
2873      * Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
2874      * where we do encode the error
2875      */
2876     if ((l = ERR_peek_error()) != 0) {
2877         if (ERR_GET_LIB(l) == ERR_LIB_SYS)
2878             return (SSL_ERROR_SYSCALL);
2879         else
2880             return (SSL_ERROR_SSL);
2881     }
2882
2883     if ((i < 0) && SSL_want_read(s)) {
2884         bio = SSL_get_rbio(s);
2885         if (BIO_should_read(bio))
2886             return (SSL_ERROR_WANT_READ);
2887         else if (BIO_should_write(bio))
2888             /*
2889              * This one doesn't make too much sense ... We never try to write
2890              * to the rbio, and an application program where rbio and wbio
2891              * are separate couldn't even know what it should wait for.
2892              * However if we ever set s->rwstate incorrectly (so that we have
2893              * SSL_want_read(s) instead of SSL_want_write(s)) and rbio and
2894              * wbio *are* the same, this test works around that bug; so it
2895              * might be safer to keep it.
2896              */
2897             return (SSL_ERROR_WANT_WRITE);
2898         else if (BIO_should_io_special(bio)) {
2899             reason = BIO_get_retry_reason(bio);
2900             if (reason == BIO_RR_CONNECT)
2901                 return (SSL_ERROR_WANT_CONNECT);
2902             else if (reason == BIO_RR_ACCEPT)
2903                 return (SSL_ERROR_WANT_ACCEPT);
2904             else
2905                 return (SSL_ERROR_SYSCALL); /* unknown */
2906         }
2907     }
2908
2909     if ((i < 0) && SSL_want_write(s)) {
2910         bio = SSL_get_wbio(s);
2911         if (BIO_should_write(bio))
2912             return (SSL_ERROR_WANT_WRITE);
2913         else if (BIO_should_read(bio))
2914             /*
2915              * See above (SSL_want_read(s) with BIO_should_write(bio))
2916              */
2917             return (SSL_ERROR_WANT_READ);
2918         else if (BIO_should_io_special(bio)) {
2919             reason = BIO_get_retry_reason(bio);
2920             if (reason == BIO_RR_CONNECT)
2921                 return (SSL_ERROR_WANT_CONNECT);
2922             else if (reason == BIO_RR_ACCEPT)
2923                 return (SSL_ERROR_WANT_ACCEPT);
2924             else
2925                 return (SSL_ERROR_SYSCALL);
2926         }
2927     }
2928     if ((i < 0) && SSL_want_x509_lookup(s)) {
2929         return (SSL_ERROR_WANT_X509_LOOKUP);
2930     }
2931     if ((i < 0) && SSL_want_async(s)) {
2932         return SSL_ERROR_WANT_ASYNC;
2933     }
2934
2935     if (i == 0) {
2936         if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
2937             (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
2938             return (SSL_ERROR_ZERO_RETURN);
2939     }
2940     return (SSL_ERROR_SYSCALL);
2941 }
2942
2943 static int ssl_do_handshake_intern(void *vargs)
2944 {
2945     struct ssl_async_args *args;
2946     SSL *s;
2947
2948     args = (struct ssl_async_args *)vargs;
2949     s = args->s;
2950
2951     return s->handshake_func(s);
2952 }
2953
2954 int SSL_do_handshake(SSL *s)
2955 {
2956     int ret = 1;
2957
2958     if (s->handshake_func == NULL) {
2959         SSLerr(SSL_F_SSL_DO_HANDSHAKE, SSL_R_CONNECTION_TYPE_NOT_SET);
2960         return -1;
2961     }
2962
2963     s->method->ssl_renegotiate_check(s);
2964
2965     if (SSL_in_init(s) || SSL_in_before(s)) {
2966         if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
2967             struct ssl_async_args args;
2968
2969             args.s = s;
2970
2971             ret = ssl_start_async_job(s, &args, ssl_do_handshake_intern);
2972         } else {
2973             ret = s->handshake_func(s);
2974         }
2975     }
2976     return ret;
2977 }
2978
2979 void SSL_set_accept_state(SSL *s)
2980 {
2981     s->server = 1;
2982     s->shutdown = 0;
2983     ossl_statem_clear(s);
2984     s->handshake_func = s->method->ssl_accept;
2985     clear_ciphers(s);
2986 }
2987
2988 void SSL_set_connect_state(SSL *s)
2989 {
2990     s->server = 0;
2991     s->shutdown = 0;
2992     ossl_statem_clear(s);
2993     s->handshake_func = s->method->ssl_connect;
2994     clear_ciphers(s);
2995 }
2996
2997 int ssl_undefined_function(SSL *s)
2998 {
2999     SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3000     return (0);
3001 }
3002
3003 int ssl_undefined_void_function(void)
3004 {
3005     SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,
3006            ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3007     return (0);
3008 }
3009
3010 int ssl_undefined_const_function(const SSL *s)
3011 {
3012     return (0);
3013 }
3014
3015 SSL_METHOD *ssl_bad_method(int ver)
3016 {
3017     SSLerr(SSL_F_SSL_BAD_METHOD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3018     return (NULL);
3019 }
3020
3021 const char *SSL_get_version(const SSL *s)
3022 {
3023     if (s->version == TLS1_2_VERSION)
3024         return ("TLSv1.2");
3025     else if (s->version == TLS1_1_VERSION)
3026         return ("TLSv1.1");
3027     else if (s->version == TLS1_VERSION)
3028         return ("TLSv1");
3029     else if (s->version == SSL3_VERSION)
3030         return ("SSLv3");
3031     else if (s->version == DTLS1_BAD_VER)
3032         return ("DTLSv0.9");
3033     else if (s->version == DTLS1_VERSION)
3034         return ("DTLSv1");
3035     else if (s->version == DTLS1_2_VERSION)
3036         return ("DTLSv1.2");
3037     else
3038         return ("unknown");
3039 }
3040
3041 SSL *SSL_dup(SSL *s)
3042 {
3043     STACK_OF(X509_NAME) *sk;
3044     X509_NAME *xn;
3045     SSL *ret;
3046     int i;
3047
3048     /* If we're not quiescent, just up_ref! */
3049     if (!SSL_in_init(s) || !SSL_in_before(s)) {
3050         CRYPTO_add(&s->references, 1, CRYPTO_LOCK_SSL);
3051         return s;
3052     }
3053
3054     /*
3055      * Otherwise, copy configuration state, and session if set.
3056      */
3057     if ((ret = SSL_new(SSL_get_SSL_CTX(s))) == NULL)
3058         return (NULL);
3059
3060     if (s->session != NULL) {
3061         /*
3062          * Arranges to share the same session via up_ref.  This "copies"
3063          * session-id, SSL_METHOD, sid_ctx, and 'cert'
3064          */
3065         if (!SSL_copy_session_id(ret, s))
3066             goto err;
3067     } else {
3068         /*
3069          * No session has been established yet, so we have to expect that
3070          * s->cert or ret->cert will be changed later -- they should not both
3071          * point to the same object, and thus we can't use
3072          * SSL_copy_session_id.
3073          */
3074         if (!SSL_set_ssl_method(ret, s->method))
3075             goto err;
3076
3077         if (s->cert != NULL) {
3078             ssl_cert_free(ret->cert);
3079             ret->cert = ssl_cert_dup(s->cert);
3080             if (ret->cert == NULL)
3081                 goto err;
3082         }
3083
3084         if (!SSL_set_session_id_context(ret, s->sid_ctx, s->sid_ctx_length))
3085             goto err;
3086     }
3087
3088     ssl_dane_dup(ret, s);
3089     ret->version = s->version;
3090     ret->options = s->options;
3091     ret->mode = s->mode;
3092     SSL_set_max_cert_list(ret, SSL_get_max_cert_list(s));
3093     SSL_set_read_ahead(ret, SSL_get_read_ahead(s));
3094     ret->msg_callback = s->msg_callback;
3095     ret->msg_callback_arg = s->msg_callback_arg;
3096     SSL_set_verify(ret, SSL_get_verify_mode(s), SSL_get_verify_callback(s));
3097     SSL_set_verify_depth(ret, SSL_get_verify_depth(s));
3098     ret->generate_session_id = s->generate_session_id;
3099
3100     SSL_set_info_callback(ret, SSL_get_info_callback(s));
3101
3102     /* copy app data, a little dangerous perhaps */
3103     if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
3104         goto err;
3105
3106     /* setup rbio, and wbio */
3107     if (s->rbio != NULL) {
3108         if (!BIO_dup_state(s->rbio, (char *)&ret->rbio))
3109             goto err;
3110     }
3111     if (s->wbio != NULL) {
3112         if (s->wbio != s->rbio) {
3113             if (!BIO_dup_state(s->wbio, (char *)&ret->wbio))
3114                 goto err;
3115         } else
3116             ret->wbio = ret->rbio;
3117     }
3118
3119     ret->server = s->server;
3120     if (s->handshake_func) {
3121         if (s->server)
3122             SSL_set_accept_state(ret);
3123         else
3124             SSL_set_connect_state(ret);
3125     }
3126     ret->shutdown = s->shutdown;
3127     ret->hit = s->hit;
3128
3129     ret->default_passwd_callback = s->default_passwd_callback;
3130     ret->default_passwd_callback_userdata = s->default_passwd_callback_userdata;
3131
3132     X509_VERIFY_PARAM_inherit(ret->param, s->param);
3133
3134     /* dup the cipher_list and cipher_list_by_id stacks */
3135     if (s->cipher_list != NULL) {
3136         if ((ret->cipher_list = sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
3137             goto err;
3138     }
3139     if (s->cipher_list_by_id != NULL)
3140         if ((ret->cipher_list_by_id = sk_SSL_CIPHER_dup(s->cipher_list_by_id))
3141             == NULL)
3142             goto err;
3143
3144     /* Dup the client_CA list */
3145     if (s->client_CA != NULL) {
3146         if ((sk = sk_X509_NAME_dup(s->client_CA)) == NULL)
3147             goto err;
3148         ret->client_CA = sk;
3149         for (i = 0; i < sk_X509_NAME_num(sk); i++) {
3150             xn = sk_X509_NAME_value(sk, i);
3151             if (sk_X509_NAME_set(sk, i, X509_NAME_dup(xn)) == NULL) {
3152                 X509_NAME_free(xn);
3153                 goto err;
3154             }
3155         }
3156     }
3157     return ret;
3158
3159  err:
3160     SSL_free(ret);
3161     return NULL;
3162 }
3163
3164 void ssl_clear_cipher_ctx(SSL *s)
3165 {
3166     if (s->enc_read_ctx != NULL) {
3167         EVP_CIPHER_CTX_free(s->enc_read_ctx);
3168         s->enc_read_ctx = NULL;
3169     }
3170     if (s->enc_write_ctx != NULL) {
3171         EVP_CIPHER_CTX_free(s->enc_write_ctx);
3172         s->enc_write_ctx = NULL;
3173     }
3174 #ifndef OPENSSL_NO_COMP
3175     COMP_CTX_free(s->expand);
3176     s->expand = NULL;
3177     COMP_CTX_free(s->compress);
3178     s->compress = NULL;
3179 #endif
3180 }
3181
3182 X509 *SSL_get_certificate(const SSL *s)
3183 {
3184     if (s->cert != NULL)
3185         return (s->cert->key->x509);
3186     else
3187         return (NULL);
3188 }
3189
3190 EVP_PKEY *SSL_get_privatekey(const SSL *s)
3191 {
3192     if (s->cert != NULL)
3193         return (s->cert->key->privatekey);
3194     else
3195         return (NULL);
3196 }
3197
3198 X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx)
3199 {
3200     if (ctx->cert != NULL)
3201         return ctx->cert->key->x509;
3202     else
3203         return NULL;
3204 }
3205
3206 EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx)
3207 {
3208     if (ctx->cert != NULL)
3209         return ctx->cert->key->privatekey;
3210     else
3211         return NULL;
3212 }
3213
3214 const SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
3215 {
3216     if ((s->session != NULL) && (s->session->cipher != NULL))
3217         return (s->session->cipher);
3218     return (NULL);
3219 }
3220
3221 const COMP_METHOD *SSL_get_current_compression(SSL *s)
3222 {
3223 #ifndef OPENSSL_NO_COMP
3224     return s->compress ? COMP_CTX_get_method(s->compress) : NULL;
3225 #else
3226     return NULL;
3227 #endif
3228 }
3229
3230 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
3231 {
3232 #ifndef OPENSSL_NO_COMP
3233     return s->expand ? COMP_CTX_get_method(s->expand) : NULL;
3234 #else
3235     return NULL;
3236 #endif
3237 }
3238
3239 int ssl_init_wbio_buffer(SSL *s, int push)
3240 {
3241     BIO *bbio;
3242
3243     if (s->bbio == NULL) {
3244         bbio = BIO_new(BIO_f_buffer());
3245         if (bbio == NULL)
3246             return (0);
3247         s->bbio = bbio;
3248     } else {
3249         bbio = s->bbio;
3250         if (s->bbio == s->wbio)
3251             s->wbio = BIO_pop(s->wbio);
3252     }
3253     (void)BIO_reset(bbio);
3254 /*      if (!BIO_set_write_buffer_size(bbio,16*1024)) */
3255     if (!BIO_set_read_buffer_size(bbio, 1)) {
3256         SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER, ERR_R_BUF_LIB);
3257         return (0);
3258     }
3259     if (push) {
3260         if (s->wbio != bbio)
3261             s->wbio = BIO_push(bbio, s->wbio);
3262     } else {
3263         if (s->wbio == bbio)
3264             s->wbio = BIO_pop(bbio);
3265     }
3266     return (1);
3267 }
3268
3269 void ssl_free_wbio_buffer(SSL *s)
3270 {
3271     /* callers ensure s is never null */
3272     if (s->bbio == NULL)
3273         return;
3274
3275     if (s->bbio == s->wbio) {
3276         /* remove buffering */
3277         s->wbio = BIO_pop(s->wbio);
3278 #ifdef REF_DEBUG
3279         /*
3280          * not the usual REF_DEBUG, but this avoids
3281          * adding one more preprocessor symbol
3282          */
3283         assert(s->wbio != NULL);
3284 #endif
3285     }
3286     BIO_free(s->bbio);
3287     s->bbio = NULL;
3288 }
3289
3290 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
3291 {
3292     ctx->quiet_shutdown = mode;
3293 }
3294
3295 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
3296 {
3297     return (ctx->quiet_shutdown);
3298 }
3299
3300 void SSL_set_quiet_shutdown(SSL *s, int mode)
3301 {
3302     s->quiet_shutdown = mode;
3303 }
3304
3305 int SSL_get_quiet_shutdown(const SSL *s)
3306 {
3307     return (s->quiet_shutdown);
3308 }
3309
3310 void SSL_set_shutdown(SSL *s, int mode)
3311 {
3312     s->shutdown = mode;
3313 }
3314
3315 int SSL_get_shutdown(const SSL *s)
3316 {
3317     return (s->shutdown);
3318 }
3319
3320 int SSL_version(const SSL *s)
3321 {
3322     return (s->version);
3323 }
3324
3325 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
3326 {
3327     return (ssl->ctx);
3328 }
3329
3330 SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx)
3331 {
3332     CERT *new_cert;
3333     if (ssl->ctx == ctx)
3334         return ssl->ctx;
3335     if (ctx == NULL)
3336         ctx = ssl->initial_ctx;
3337     new_cert = ssl_cert_dup(ctx->cert);
3338     if (new_cert == NULL) {
3339         return NULL;
3340     }
3341     ssl_cert_free(ssl->cert);
3342     ssl->cert = new_cert;
3343
3344     /*
3345      * Program invariant: |sid_ctx| has fixed size (SSL_MAX_SID_CTX_LENGTH),
3346      * so setter APIs must prevent invalid lengths from entering the system.
3347      */
3348     OPENSSL_assert(ssl->sid_ctx_length <= sizeof(ssl->sid_ctx));
3349
3350     /*
3351      * If the session ID context matches that of the parent SSL_CTX,
3352      * inherit it from the new SSL_CTX as well. If however the context does
3353      * not match (i.e., it was set per-ssl with SSL_set_session_id_context),
3354      * leave it unchanged.
3355      */
3356     if ((ssl->ctx != NULL) &&
3357         (ssl->sid_ctx_length == ssl->ctx->sid_ctx_length) &&
3358         (memcmp(ssl->sid_ctx, ssl->ctx->sid_ctx, ssl->sid_ctx_length) == 0)) {
3359         ssl->sid_ctx_length = ctx->sid_ctx_length;
3360         memcpy(&ssl->sid_ctx, &ctx->sid_ctx, sizeof(ssl->sid_ctx));
3361     }
3362
3363     CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
3364     SSL_CTX_free(ssl->ctx); /* decrement reference count */
3365     ssl->ctx = ctx;
3366
3367     return (ssl->ctx);
3368 }
3369
3370 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
3371 {
3372     return (X509_STORE_set_default_paths(ctx->cert_store));
3373 }
3374
3375 int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx)
3376 {
3377     X509_LOOKUP *lookup;
3378
3379     lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir());
3380     if (lookup == NULL)
3381         return 0;
3382     X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
3383
3384     /* Clear any errors if the default directory does not exist */
3385     ERR_clear_error();
3386
3387     return 1;
3388 }
3389
3390 int SSL_CTX_set_default_verify_file(SSL_CTX *ctx)
3391 {
3392     X509_LOOKUP *lookup;
3393
3394     lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file());
3395     if (lookup == NULL)
3396         return 0;
3397
3398     X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
3399
3400     /* Clear any errors if the default file does not exist */
3401     ERR_clear_error();
3402
3403     return 1;
3404 }
3405
3406 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
3407                                   const char *CApath)
3408 {
3409     return (X509_STORE_load_locations(ctx->cert_store, CAfile, CApath));
3410 }
3411
3412 void SSL_set_info_callback(SSL *ssl,
3413                            void (*cb) (const SSL *ssl, int type, int val))
3414 {
3415     ssl->info_callback = cb;
3416 }
3417
3418 /*
3419  * One compiler (Diab DCC) doesn't like argument names in returned function
3420  * pointer.
3421  */
3422 void (*SSL_get_info_callback(const SSL *ssl)) (const SSL * /* ssl */ ,
3423                                                int /* type */ ,
3424                                                int /* val */ ) {
3425     return ssl->info_callback;
3426 }
3427
3428 void SSL_set_verify_result(SSL *ssl, long arg)
3429 {
3430     ssl->verify_result = arg;
3431 }
3432
3433 long SSL_get_verify_result(const SSL *ssl)
3434 {
3435     return (ssl->verify_result);
3436 }
3437
3438 size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen)
3439 {
3440     if (outlen == 0)
3441         return sizeof(ssl->s3->client_random);
3442     if (outlen > sizeof(ssl->s3->client_random))
3443         outlen = sizeof(ssl->s3->client_random);
3444     memcpy(out, ssl->s3->client_random, outlen);
3445     return outlen;
3446 }
3447
3448 size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen)
3449 {
3450     if (outlen == 0)
3451         return sizeof(ssl->s3->server_random);
3452     if (outlen > sizeof(ssl->s3->server_random))
3453         outlen = sizeof(ssl->s3->server_random);
3454     memcpy(out, ssl->s3->server_random, outlen);
3455     return outlen;
3456 }
3457
3458 size_t SSL_SESSION_get_master_key(const SSL_SESSION *session,
3459                                unsigned char *out, size_t outlen)
3460 {
3461     if (session->master_key_length < 0) {
3462         /* Should never happen */
3463         return 0;
3464     }
3465     if (outlen == 0)
3466         return session->master_key_length;
3467     if (outlen > (size_t)session->master_key_length)
3468         outlen = session->master_key_length;
3469     memcpy(out, session->master_key, outlen);
3470     return outlen;
3471 }
3472
3473 int SSL_set_ex_data(SSL *s, int idx, void *arg)
3474 {
3475     return (CRYPTO_set_ex_data(&s->ex_data, idx, arg));
3476 }
3477
3478 void *SSL_get_ex_data(const SSL *s, int idx)
3479 {
3480     return (CRYPTO_get_ex_data(&s->ex_data, idx));
3481 }
3482
3483 int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
3484 {
3485     return (CRYPTO_set_ex_data(&s->ex_data, idx, arg));
3486 }
3487
3488 void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
3489 {
3490     return (CRYPTO_get_ex_data(&s->ex_data, idx));
3491 }
3492
3493 int ssl_ok(SSL *s)
3494 {
3495     return (1);
3496 }
3497
3498 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
3499 {
3500     return (ctx->cert_store);
3501 }
3502
3503 void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
3504 {
3505     X509_STORE_free(ctx->cert_store);
3506     ctx->cert_store = store;
3507 }
3508
3509 int SSL_want(const SSL *s)
3510 {
3511     return (s->rwstate);
3512 }
3513
3514 /**
3515  * \brief Set the callback for generating temporary DH keys.
3516  * \param ctx the SSL context.
3517  * \param dh the callback
3518  */
3519
3520 #ifndef OPENSSL_NO_DH
3521 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
3522                                  DH *(*dh) (SSL *ssl, int is_export,
3523                                             int keylength))
3524 {
3525     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3526 }
3527
3528 void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*dh) (SSL *ssl, int is_export,
3529                                                   int keylength))
3530 {
3531     SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3532 }
3533 #endif
3534
3535 #ifndef OPENSSL_NO_PSK
3536 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
3537 {
3538     if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3539         SSLerr(SSL_F_SSL_CTX_USE_PSK_IDENTITY_HINT,
3540                SSL_R_DATA_LENGTH_TOO_LONG);
3541         return 0;
3542     }
3543     OPENSSL_free(ctx->cert->psk_identity_hint);
3544     if (identity_hint != NULL) {
3545         ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
3546         if (ctx->cert->psk_identity_hint == NULL)
3547             return 0;
3548     } else
3549         ctx->cert->psk_identity_hint = NULL;
3550     return 1;
3551 }
3552
3553 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
3554 {
3555     if (s == NULL)
3556         return 0;
3557
3558     if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3559         SSLerr(SSL_F_SSL_USE_PSK_IDENTITY_HINT, SSL_R_DATA_LENGTH_TOO_LONG);
3560         return 0;
3561     }
3562     OPENSSL_free(s->cert->psk_identity_hint);
3563     if (identity_hint != NULL) {
3564         s->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
3565         if (s->cert->psk_identity_hint == NULL)
3566             return 0;
3567     } else
3568         s->cert->psk_identity_hint = NULL;
3569     return 1;
3570 }
3571
3572 const char *SSL_get_psk_identity_hint(const SSL *s)
3573 {
3574     if (s == NULL || s->session == NULL)
3575         return NULL;
3576     return (s->session->psk_identity_hint);
3577 }
3578
3579 const char *SSL_get_psk_identity(const SSL *s)
3580 {
3581     if (s == NULL || s->session == NULL)
3582         return NULL;
3583     return (s->session->psk_identity);
3584 }
3585
3586 void SSL_set_psk_client_callback(SSL *s,
3587                                  unsigned int (*cb) (SSL *ssl,
3588                                                      const char *hint,
3589                                                      char *identity,
3590                                                      unsigned int
3591                                                      max_identity_len,
3592                                                      unsigned char *psk,
3593                                                      unsigned int
3594                                                      max_psk_len))
3595 {
3596     s->psk_client_callback = cb;
3597 }
3598
3599 void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx,
3600                                      unsigned int (*cb) (SSL *ssl,
3601                                                          const char *hint,
3602                                                          char *identity,
3603                                                          unsigned int
3604                                                          max_identity_len,
3605                                                          unsigned char *psk,
3606                                                          unsigned int
3607                                                          max_psk_len))
3608 {
3609     ctx->psk_client_callback = cb;
3610 }
3611
3612 void SSL_set_psk_server_callback(SSL *s,
3613                                  unsigned int (*cb) (SSL *ssl,
3614                                                      const char *identity,
3615                                                      unsigned char *psk,
3616                                                      unsigned int
3617                                                      max_psk_len))
3618 {
3619     s->psk_server_callback = cb;
3620 }
3621
3622 void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx,
3623                                      unsigned int (*cb) (SSL *ssl,
3624                                                          const char *identity,
3625                                                          unsigned char *psk,
3626                                                          unsigned int
3627                                                          max_psk_len))
3628 {
3629     ctx->psk_server_callback = cb;
3630 }
3631 #endif
3632
3633 void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
3634                               void (*cb) (int write_p, int version,
3635                                           int content_type, const void *buf,
3636                                           size_t len, SSL *ssl, void *arg))
3637 {
3638     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3639 }
3640
3641 void SSL_set_msg_callback(SSL *ssl,
3642                           void (*cb) (int write_p, int version,
3643                                       int content_type, const void *buf,
3644                                       size_t len, SSL *ssl, void *arg))
3645 {
3646     SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3647 }
3648
3649 void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
3650                                                 int (*cb) (SSL *ssl,
3651                                                            int
3652                                                            is_forward_secure))
3653 {
3654     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
3655                           (void (*)(void))cb);
3656 }
3657
3658 void SSL_set_not_resumable_session_callback(SSL *ssl,
3659                                             int (*cb) (SSL *ssl,
3660                                                        int is_forward_secure))
3661 {
3662     SSL_callback_ctrl(ssl, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
3663                       (void (*)(void))cb);
3664 }
3665
3666 /*
3667  * Allocates new EVP_MD_CTX and sets pointer to it into given pointer
3668  * vairable, freeing EVP_MD_CTX previously stored in that variable, if any.
3669  * If EVP_MD pointer is passed, initializes ctx with this md Returns newly
3670  * allocated ctx;
3671  */
3672
3673 EVP_MD_CTX *ssl_replace_hash(EVP_MD_CTX **hash, const EVP_MD *md)
3674 {
3675     ssl_clear_hash_ctx(hash);
3676     *hash = EVP_MD_CTX_new();
3677     if (*hash == NULL || (md && EVP_DigestInit_ex(*hash, md, NULL) <= 0)) {
3678         EVP_MD_CTX_free(*hash);
3679         *hash = NULL;
3680         return NULL;
3681     }
3682     return *hash;
3683 }
3684
3685 void ssl_clear_hash_ctx(EVP_MD_CTX **hash)
3686 {
3687
3688     if (*hash)
3689         EVP_MD_CTX_free(*hash);
3690     *hash = NULL;
3691 }
3692
3693 /* Retrieve handshake hashes */
3694 int ssl_handshake_hash(SSL *s, unsigned char *out, int outlen)
3695 {
3696     EVP_MD_CTX *ctx = NULL;
3697     EVP_MD_CTX *hdgst = s->s3->handshake_dgst;
3698     int ret = EVP_MD_CTX_size(hdgst);
3699     if (ret < 0 || ret > outlen) {
3700         ret = 0;
3701         goto err;
3702     }
3703     ctx = EVP_MD_CTX_new();
3704     if (ctx == NULL) {
3705         ret = 0;
3706         goto err;
3707     }
3708     if (!EVP_MD_CTX_copy_ex(ctx, hdgst)
3709         || EVP_DigestFinal_ex(ctx, out, NULL) <= 0)
3710         ret = 0;
3711  err:
3712     EVP_MD_CTX_free(ctx);
3713     return ret;
3714 }
3715
3716 int SSL_session_reused(SSL *s)
3717 {
3718     return s->hit;
3719 }
3720
3721 int SSL_is_server(SSL *s)
3722 {
3723     return s->server;
3724 }
3725
3726 #if OPENSSL_API_COMPAT < 0x10100000L
3727 void SSL_set_debug(SSL *s, int debug)
3728 {
3729     /* Old function was do-nothing anyway... */
3730     (void)s;
3731     (void)debug;
3732 }
3733 #endif
3734
3735
3736 void SSL_set_security_level(SSL *s, int level)
3737 {
3738     s->cert->sec_level = level;
3739 }
3740
3741 int SSL_get_security_level(const SSL *s)
3742 {
3743     return s->cert->sec_level;
3744 }
3745
3746 void SSL_set_security_callback(SSL *s,
3747                                int (*cb) (SSL *s, SSL_CTX *ctx, int op,
3748                                           int bits, int nid, void *other,
3749                                           void *ex))
3750 {
3751     s->cert->sec_cb = cb;
3752 }
3753
3754 int (*SSL_get_security_callback(const SSL *s)) (SSL *s, SSL_CTX *ctx, int op,
3755                                                 int bits, int nid,
3756                                                 void *other, void *ex) {
3757     return s->cert->sec_cb;
3758 }
3759
3760 void SSL_set0_security_ex_data(SSL *s, void *ex)
3761 {
3762     s->cert->sec_ex = ex;
3763 }
3764
3765 void *SSL_get0_security_ex_data(const SSL *s)
3766 {
3767     return s->cert->sec_ex;
3768 }
3769
3770 void SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
3771 {
3772     ctx->cert->sec_level = level;
3773 }
3774
3775 int SSL_CTX_get_security_level(const SSL_CTX *ctx)
3776 {
3777     return ctx->cert->sec_level;
3778 }
3779
3780 void SSL_CTX_set_security_callback(SSL_CTX *ctx,
3781                                    int (*cb) (SSL *s, SSL_CTX *ctx, int op,
3782                                               int bits, int nid, void *other,
3783                                               void *ex))
3784 {
3785     ctx->cert->sec_cb = cb;
3786 }
3787
3788 int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx)) (SSL *s,
3789                                                           SSL_CTX *ctx,
3790                                                           int op, int bits,
3791                                                           int nid,
3792                                                           void *other,
3793                                                           void *ex) {
3794     return ctx->cert->sec_cb;
3795 }
3796
3797 void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex)
3798 {
3799     ctx->cert->sec_ex = ex;
3800 }
3801
3802 void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx)
3803 {
3804     return ctx->cert->sec_ex;
3805 }
3806
3807
3808 /*
3809  * Get/Set/Clear options in SSL_CTX or SSL, formerly macros, now functions that
3810  * can return unsigned long, instead of the generic long return value from the
3811  * control interface.
3812  */
3813 unsigned long SSL_CTX_get_options(const SSL_CTX *ctx)
3814 {
3815     return ctx->options;
3816 }
3817 unsigned long SSL_get_options(const SSL* s)
3818 {
3819     return s->options;
3820 }
3821 unsigned long SSL_CTX_set_options(SSL_CTX *ctx, unsigned long op)
3822 {
3823     return ctx->options |= op;
3824 }
3825 unsigned long SSL_set_options(SSL *s, unsigned long op)
3826 {
3827     return s->options |= op;
3828 }
3829 unsigned long SSL_CTX_clear_options(SSL_CTX *ctx, unsigned long op)
3830 {
3831     return ctx->options &= ~op;
3832 }
3833 unsigned long SSL_clear_options(SSL *s, unsigned long op)
3834 {
3835     return s->options &= ~op;
3836 }
3837
3838 STACK_OF(X509) *SSL_get0_verified_chain(const SSL *s)
3839 {
3840     return s->verified_chain;
3841 }
3842
3843 IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);
3844
3845 #ifndef OPENSSL_NO_CT
3846
3847 /*
3848  * Moves SCTs from the |src| stack to the |dst| stack.
3849  * The source of each SCT will be set to |origin|.
3850  * If |dst| points to a NULL pointer, a new stack will be created and owned by
3851  * the caller.
3852  * Returns the number of SCTs moved, or a negative integer if an error occurs.
3853  */
3854 static int ct_move_scts(STACK_OF(SCT) **dst, STACK_OF(SCT) *src, sct_source_t origin)
3855 {
3856     int scts_moved = 0;
3857     SCT *sct = NULL;
3858
3859     if (*dst == NULL) {
3860         *dst = sk_SCT_new_null();
3861         if (*dst == NULL) {
3862             SSLerr(SSL_F_CT_MOVE_SCTS, ERR_R_MALLOC_FAILURE);
3863             goto err;
3864         }
3865     }
3866
3867     while ((sct = sk_SCT_pop(src)) != NULL) {
3868         if (SCT_set_source(sct, origin) != 1)
3869             goto err;
3870
3871         if (sk_SCT_push(*dst, sct) <= 0)
3872             goto err;
3873         scts_moved += 1;
3874     }
3875
3876     return scts_moved;
3877 err:
3878     if (sct != NULL)
3879         sk_SCT_push(src, sct); /* Put the SCT back */
3880     return scts_moved;
3881 }
3882
3883 /*
3884 * Look for data collected during ServerHello and parse if found.
3885 * Return 1 on success, 0 on failure.
3886 */
3887 static int ct_extract_tls_extension_scts(SSL *s)
3888 {
3889     int scts_extracted = 0;
3890
3891     if (s->tlsext_scts != NULL) {
3892         const unsigned char *p = s->tlsext_scts;
3893         STACK_OF(SCT) *scts = o2i_SCT_LIST(NULL, &p, s->tlsext_scts_len);
3894
3895         scts_extracted = ct_move_scts(&s->scts, scts, SCT_SOURCE_TLS_EXTENSION);
3896
3897         SCT_LIST_free(scts);
3898     }
3899
3900     return scts_extracted;
3901 }
3902
3903 /*
3904  * Checks for an OCSP response and then attempts to extract any SCTs found if it
3905  * contains an SCT X509 extension. They will be stored in |s->scts|.
3906  * Returns:
3907  * - The number of SCTs extracted, assuming an OCSP response exists.
3908  * - 0 if no OCSP response exists or it contains no SCTs.
3909  * - A negative integer if an error occurs.
3910  */
3911 static int ct_extract_ocsp_response_scts(SSL *s)
3912 {
3913     int scts_extracted = 0;
3914     const unsigned char *p;
3915     OCSP_BASICRESP *br = NULL;
3916     OCSP_RESPONSE *rsp = NULL;
3917     STACK_OF(SCT) *scts = NULL;
3918     int i;
3919
3920     if (s->tlsext_ocsp_resp == NULL || s->tlsext_ocsp_resplen == 0)
3921         goto err;
3922
3923     p = s->tlsext_ocsp_resp;
3924     rsp = d2i_OCSP_RESPONSE(NULL, &p, s->tlsext_ocsp_resplen);
3925     if (rsp == NULL)
3926         goto err;
3927
3928     br = OCSP_response_get1_basic(rsp);
3929     if (br == NULL)
3930         goto err;
3931
3932     for (i = 0; i < OCSP_resp_count(br); ++i) {
3933         OCSP_SINGLERESP *single = OCSP_resp_get0(br, i);
3934
3935         if (single == NULL)
3936             continue;
3937
3938         scts = OCSP_SINGLERESP_get1_ext_d2i(single, NID_ct_cert_scts, NULL, NULL);
3939         scts_extracted = ct_move_scts(&s->scts, scts,
3940                                       SCT_SOURCE_OCSP_STAPLED_RESPONSE);
3941         if (scts_extracted < 0)
3942             goto err;
3943     }
3944 err:
3945     SCT_LIST_free(scts);
3946     OCSP_BASICRESP_free(br);
3947     OCSP_RESPONSE_free(rsp);
3948     return scts_extracted;
3949 }
3950
3951 /*
3952  * Attempts to extract SCTs from the peer certificate.
3953  * Return the number of SCTs extracted, or a negative integer if an error
3954  * occurs.
3955  */
3956 static int ct_extract_x509v3_extension_scts(SSL *s)
3957 {
3958     int scts_extracted = 0;
3959     X509 *cert = s->session != NULL ? s->session->peer : NULL;
3960
3961     if (cert != NULL) {
3962         STACK_OF(SCT) *scts =
3963             X509_get_ext_d2i(cert, NID_ct_precert_scts, NULL, NULL);
3964
3965         scts_extracted =
3966             ct_move_scts(&s->scts, scts, SCT_SOURCE_X509V3_EXTENSION);
3967
3968         SCT_LIST_free(scts);
3969     }
3970
3971     return scts_extracted;
3972 }
3973
3974 /*
3975  * Attempts to find all received SCTs by checking TLS extensions, the OCSP
3976  * response (if it exists) and X509v3 extensions in the certificate.
3977  * Returns NULL if an error occurs.
3978  */
3979 const STACK_OF(SCT) *SSL_get0_peer_scts(SSL *s)
3980 {
3981     if (!s->scts_parsed) {
3982         if (ct_extract_tls_extension_scts(s) < 0 ||
3983             ct_extract_ocsp_response_scts(s) < 0 ||
3984             ct_extract_x509v3_extension_scts(s) < 0)
3985             goto err;
3986
3987         s->scts_parsed = 1;
3988     }
3989     return s->scts;
3990 err:
3991     return NULL;
3992 }
3993
3994 int SSL_set_ct_validation_callback(SSL *s, ct_validation_cb callback, void *arg)
3995 {
3996     int ret = 0;
3997
3998     /*
3999      * Since code exists that uses the custom extension handler for CT, look
4000      * for this and throw an error if they have already registered to use CT.
4001      */
4002     if (callback != NULL && SSL_CTX_has_client_custom_ext(s->ctx,
4003             TLSEXT_TYPE_signed_certificate_timestamp)) {
4004         SSLerr(SSL_F_SSL_SET_CT_VALIDATION_CALLBACK,
4005                SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
4006         goto err;
4007     }
4008
4009     s->ct_validation_callback = callback;
4010     s->ct_validation_callback_arg = arg;
4011
4012     if (callback != NULL) {
4013         /* If we are validating CT, then we MUST accept SCTs served via OCSP */
4014         if (!SSL_set_tlsext_status_type(s, TLSEXT_STATUSTYPE_ocsp))
4015             goto err;
4016     }
4017
4018     ret = 1;
4019 err:
4020     return ret;
4021 }
4022
4023 int SSL_CTX_set_ct_validation_callback(SSL_CTX *ctx, ct_validation_cb callback,
4024                                        void *arg)
4025 {
4026     int ret = 0;
4027
4028     /*
4029      * Since code exists that uses the custom extension handler for CT, look for
4030      * this and throw an error if they have already registered to use CT.
4031      */
4032     if (callback != NULL && SSL_CTX_has_client_custom_ext(ctx,
4033             TLSEXT_TYPE_signed_certificate_timestamp)) {
4034         SSLerr(SSL_F_SSL_CTX_SET_CT_VALIDATION_CALLBACK,
4035                SSL_R_CUSTOM_EXT_HANDLER_ALREADY_INSTALLED);
4036         goto err;
4037     }
4038
4039     ctx->ct_validation_callback = callback;
4040     ctx->ct_validation_callback_arg = arg;
4041     ret = 1;
4042 err:
4043     return ret;
4044 }
4045
4046 ct_validation_cb SSL_get_ct_validation_callback(const SSL *s)
4047 {
4048     return s->ct_validation_callback;
4049 }
4050
4051 ct_validation_cb SSL_CTX_get_ct_validation_callback(const SSL_CTX *ctx)
4052 {
4053     return ctx->ct_validation_callback;
4054 }
4055
4056 int ssl_validate_ct(SSL *s)
4057 {
4058     int ret = 0;
4059     X509 *cert = s->session != NULL ? s->session->peer : NULL;
4060     X509 *issuer = NULL;
4061     CT_POLICY_EVAL_CTX *ctx = NULL;
4062     const STACK_OF(SCT) *scts;
4063
4064     /* If no callback is set, attempt no validation - just return success */
4065     if (s->ct_validation_callback == NULL)
4066         return 1;
4067
4068     if (cert == NULL) {
4069         SSLerr(SSL_F_SSL_VALIDATE_CT, SSL_R_NO_CERTIFICATE_ASSIGNED);
4070         goto end;
4071     }
4072
4073     if (s->verified_chain != NULL && sk_X509_num(s->verified_chain) > 1)
4074         issuer = sk_X509_value(s->verified_chain, 1);
4075
4076     ctx = CT_POLICY_EVAL_CTX_new();
4077     if (ctx == NULL) {
4078         SSLerr(SSL_F_SSL_VALIDATE_CT, ERR_R_MALLOC_FAILURE);
4079         goto end;
4080     }
4081
4082     CT_POLICY_EVAL_CTX_set0_cert(ctx, cert);
4083     CT_POLICY_EVAL_CTX_set0_issuer(ctx, issuer);
4084     CT_POLICY_EVAL_CTX_set0_log_store(ctx, s->ctx->ctlog_store);
4085
4086     scts = SSL_get0_peer_scts(s);
4087
4088     if (SCT_LIST_validate(scts, ctx) != 1) {
4089         SSLerr(SSL_F_SSL_VALIDATE_CT, SSL_R_SCT_VERIFICATION_FAILED);
4090         goto end;
4091     }
4092
4093     ret = s->ct_validation_callback(ctx, scts, s->ct_validation_callback_arg);
4094     if (ret < 0)
4095         ret = 0; /* This function returns 0 on failure */
4096
4097 end:
4098     CT_POLICY_EVAL_CTX_free(ctx);
4099     return ret;
4100 }
4101
4102 int SSL_CTX_set_default_ctlog_list_file(SSL_CTX *ctx)
4103 {
4104     int ret = CTLOG_STORE_load_default_file(ctx->ctlog_store);
4105
4106     /* Clear any errors if the default file does not exist */
4107     ERR_clear_error();
4108     return ret;
4109 }
4110
4111 int SSL_CTX_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
4112 {
4113     return CTLOG_STORE_load_file(ctx->ctlog_store, path);
4114 }
4115
4116 #endif