936e84b120019201721fbfdfeaaf02f08baf41da
[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_CHECK
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
163 const char SSL_version_str[] = OPENSSL_VERSION_TEXT;
164
165 SSL3_ENC_METHOD ssl3_undef_enc_method = {
166     /*
167      * evil casts, but these functions are only called if there's a library
168      * bug
169      */
170     (int (*)(SSL *, int))ssl_undefined_function,
171     (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
172     ssl_undefined_function,
173     (int (*)(SSL *, unsigned char *, unsigned char *, int))
174         ssl_undefined_function,
175     (int (*)(SSL *, int))ssl_undefined_function,
176     (int (*)(SSL *, const char *, int, unsigned char *))
177         ssl_undefined_function,
178     0,                          /* finish_mac_length */
179     (int (*)(SSL *, int, unsigned char *))ssl_undefined_function,
180     NULL,                       /* client_finished_label */
181     0,                          /* client_finished_label_len */
182     NULL,                       /* server_finished_label */
183     0,                          /* server_finished_label_len */
184     (int (*)(int))ssl_undefined_function,
185     (int (*)(SSL *, unsigned char *, size_t, const char *,
186              size_t, const unsigned char *, size_t,
187              int use_context))ssl_undefined_function,
188 };
189
190 struct ssl_async_args {
191     SSL *s;
192     void *buf;
193     int num;
194 };
195
196 static void clear_ciphers(SSL *s)
197 {
198     /* clear the current cipher */
199     ssl_clear_cipher_ctx(s);
200     ssl_clear_hash_ctx(&s->read_hash);
201     ssl_clear_hash_ctx(&s->write_hash);
202 }
203
204 int SSL_clear(SSL *s)
205 {
206     if (s->method == NULL) {
207         SSLerr(SSL_F_SSL_CLEAR, SSL_R_NO_METHOD_SPECIFIED);
208         return (0);
209     }
210
211     if (ssl_clear_bad_session(s)) {
212         SSL_SESSION_free(s->session);
213         s->session = NULL;
214     }
215
216     s->error = 0;
217     s->hit = 0;
218     s->shutdown = 0;
219
220     if (s->renegotiate) {
221         SSLerr(SSL_F_SSL_CLEAR, ERR_R_INTERNAL_ERROR);
222         return 0;
223     }
224
225     ossl_statem_clear(s);
226
227     s->version = s->method->version;
228     s->client_version = s->version;
229     s->rwstate = SSL_NOTHING;
230
231     BUF_MEM_free(s->init_buf);
232     s->init_buf = NULL;
233     clear_ciphers(s);
234     s->first_packet = 0;
235
236     /*
237      * Check to see if we were changed into a different method, if so, revert
238      * back if we are not doing session-id reuse.
239      */
240     if (!ossl_statem_get_in_handshake(s) && (s->session == NULL)
241         && (s->method != s->ctx->method)) {
242         s->method->ssl_free(s);
243         s->method = s->ctx->method;
244         if (!s->method->ssl_new(s))
245             return (0);
246     } else
247         s->method->ssl_clear(s);
248
249     RECORD_LAYER_clear(&s->rlayer);
250
251     return (1);
252 }
253
254 /** Used to change an SSL_CTXs default SSL method type */
255 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
256 {
257     STACK_OF(SSL_CIPHER) *sk;
258
259     ctx->method = meth;
260
261     sk = ssl_create_cipher_list(ctx->method, &(ctx->cipher_list),
262                                 &(ctx->cipher_list_by_id),
263                                 SSL_DEFAULT_CIPHER_LIST, ctx->cert);
264     if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0)) {
265         SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,
266                SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
267         return (0);
268     }
269     return (1);
270 }
271
272 SSL *SSL_new(SSL_CTX *ctx)
273 {
274     SSL *s;
275
276     if (ctx == NULL) {
277         SSLerr(SSL_F_SSL_NEW, SSL_R_NULL_SSL_CTX);
278         return (NULL);
279     }
280     if (ctx->method == NULL) {
281         SSLerr(SSL_F_SSL_NEW, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
282         return (NULL);
283     }
284
285     s = OPENSSL_zalloc(sizeof(*s));
286     if (s == NULL)
287         goto err;
288
289     RECORD_LAYER_init(&s->rlayer, s);
290
291     s->options = ctx->options;
292     s->mode = ctx->mode;
293     s->max_cert_list = ctx->max_cert_list;
294     s->references = 1;
295
296     /*
297      * Earlier library versions used to copy the pointer to the CERT, not
298      * its contents; only when setting new parameters for the per-SSL
299      * copy, ssl_cert_new would be called (and the direct reference to
300      * the per-SSL_CTX settings would be lost, but those still were
301      * indirectly accessed for various purposes, and for that reason they
302      * used to be known as s->ctx->default_cert). Now we don't look at the
303      * SSL_CTX's CERT after having duplicated it once.
304      */
305     s->cert = ssl_cert_dup(ctx->cert);
306     if (s->cert == NULL)
307         goto err;
308
309     RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead);
310     s->msg_callback = ctx->msg_callback;
311     s->msg_callback_arg = ctx->msg_callback_arg;
312     s->verify_mode = ctx->verify_mode;
313     s->not_resumable_session_cb = ctx->not_resumable_session_cb;
314     s->sid_ctx_length = ctx->sid_ctx_length;
315     OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx);
316     memcpy(&s->sid_ctx, &ctx->sid_ctx, sizeof(s->sid_ctx));
317     s->verify_callback = ctx->default_verify_callback;
318     s->generate_session_id = ctx->generate_session_id;
319
320     s->param = X509_VERIFY_PARAM_new();
321     if (s->param == NULL)
322         goto err;
323     X509_VERIFY_PARAM_inherit(s->param, ctx->param);
324     s->quiet_shutdown = ctx->quiet_shutdown;
325     s->max_send_fragment = ctx->max_send_fragment;
326
327     CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
328     s->ctx = ctx;
329     s->tlsext_debug_cb = 0;
330     s->tlsext_debug_arg = NULL;
331     s->tlsext_ticket_expected = 0;
332     s->tlsext_status_type = -1;
333     s->tlsext_status_expected = 0;
334     s->tlsext_ocsp_ids = NULL;
335     s->tlsext_ocsp_exts = NULL;
336     s->tlsext_ocsp_resp = NULL;
337     s->tlsext_ocsp_resplen = -1;
338     CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
339     s->initial_ctx = ctx;
340 # ifndef OPENSSL_NO_EC
341     if (ctx->tlsext_ecpointformatlist) {
342         s->tlsext_ecpointformatlist =
343             BUF_memdup(ctx->tlsext_ecpointformatlist,
344                        ctx->tlsext_ecpointformatlist_length);
345         if (!s->tlsext_ecpointformatlist)
346             goto err;
347         s->tlsext_ecpointformatlist_length =
348             ctx->tlsext_ecpointformatlist_length;
349     }
350     if (ctx->tlsext_ellipticcurvelist) {
351         s->tlsext_ellipticcurvelist =
352             BUF_memdup(ctx->tlsext_ellipticcurvelist,
353                        ctx->tlsext_ellipticcurvelist_length);
354         if (!s->tlsext_ellipticcurvelist)
355             goto err;
356         s->tlsext_ellipticcurvelist_length =
357             ctx->tlsext_ellipticcurvelist_length;
358     }
359 # endif
360 # ifndef OPENSSL_NO_NEXTPROTONEG
361     s->next_proto_negotiated = NULL;
362 # endif
363
364     if (s->ctx->alpn_client_proto_list) {
365         s->alpn_client_proto_list =
366             OPENSSL_malloc(s->ctx->alpn_client_proto_list_len);
367         if (s->alpn_client_proto_list == NULL)
368             goto err;
369         memcpy(s->alpn_client_proto_list, s->ctx->alpn_client_proto_list,
370                s->ctx->alpn_client_proto_list_len);
371         s->alpn_client_proto_list_len = s->ctx->alpn_client_proto_list_len;
372     }
373
374     s->verify_result = X509_V_OK;
375
376     s->default_passwd_callback = ctx->default_passwd_callback;
377     s->default_passwd_callback_userdata = ctx->default_passwd_callback_userdata;
378
379     s->method = ctx->method;
380
381     if (!s->method->ssl_new(s))
382         goto err;
383
384     s->server = (ctx->method->ssl_accept == ssl_undefined_function) ? 0 : 1;
385
386     if (!SSL_clear(s))
387         goto err;
388
389     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
390
391 #ifndef OPENSSL_NO_PSK
392     s->psk_client_callback = ctx->psk_client_callback;
393     s->psk_server_callback = ctx->psk_server_callback;
394 #endif
395
396     s->job = NULL;
397
398     return (s);
399  err:
400     SSL_free(s);
401     SSLerr(SSL_F_SSL_NEW, ERR_R_MALLOC_FAILURE);
402     return (NULL);
403 }
404
405 int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx,
406                                    unsigned int sid_ctx_len)
407 {
408     if (sid_ctx_len > sizeof ctx->sid_ctx) {
409         SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,
410                SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
411         return 0;
412     }
413     ctx->sid_ctx_length = sid_ctx_len;
414     memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len);
415
416     return 1;
417 }
418
419 int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
420                                unsigned int sid_ctx_len)
421 {
422     if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
423         SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,
424                SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
425         return 0;
426     }
427     ssl->sid_ctx_length = sid_ctx_len;
428     memcpy(ssl->sid_ctx, sid_ctx, sid_ctx_len);
429
430     return 1;
431 }
432
433 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
434 {
435     CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
436     ctx->generate_session_id = cb;
437     CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
438     return 1;
439 }
440
441 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
442 {
443     CRYPTO_w_lock(CRYPTO_LOCK_SSL);
444     ssl->generate_session_id = cb;
445     CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
446     return 1;
447 }
448
449 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
450                                 unsigned int id_len)
451 {
452     /*
453      * A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
454      * we can "construct" a session to give us the desired check - ie. to
455      * find if there's a session in the hash table that would conflict with
456      * any new session built out of this id/id_len and the ssl_version in use
457      * by this SSL.
458      */
459     SSL_SESSION r, *p;
460
461     if (id_len > sizeof r.session_id)
462         return 0;
463
464     r.ssl_version = ssl->version;
465     r.session_id_length = id_len;
466     memcpy(r.session_id, id, id_len);
467
468     CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
469     p = lh_SSL_SESSION_retrieve(ssl->ctx->sessions, &r);
470     CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
471     return (p != NULL);
472 }
473
474 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
475 {
476     return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
477 }
478
479 int SSL_set_purpose(SSL *s, int purpose)
480 {
481     return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
482 }
483
484 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
485 {
486     return X509_VERIFY_PARAM_set_trust(s->param, trust);
487 }
488
489 int SSL_set_trust(SSL *s, int trust)
490 {
491     return X509_VERIFY_PARAM_set_trust(s->param, trust);
492 }
493
494 int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm)
495 {
496     return X509_VERIFY_PARAM_set1(ctx->param, vpm);
497 }
498
499 int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm)
500 {
501     return X509_VERIFY_PARAM_set1(ssl->param, vpm);
502 }
503
504 X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx)
505 {
506     return ctx->param;
507 }
508
509 X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl)
510 {
511     return ssl->param;
512 }
513
514 void SSL_certs_clear(SSL *s)
515 {
516     ssl_cert_clear_certs(s->cert);
517 }
518
519 void SSL_free(SSL *s)
520 {
521     int i;
522
523     if (s == NULL)
524         return;
525
526     i = CRYPTO_add(&s->references, -1, CRYPTO_LOCK_SSL);
527 #ifdef REF_PRINT
528     REF_PRINT("SSL", s);
529 #endif
530     if (i > 0)
531         return;
532 #ifdef REF_CHECK
533     if (i < 0) {
534         fprintf(stderr, "SSL_free, bad reference count\n");
535         abort();                /* ok */
536     }
537 #endif
538
539     X509_VERIFY_PARAM_free(s->param);
540     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
541
542     if (s->bbio != NULL) {
543         /* If the buffering BIO is in place, pop it off */
544         if (s->bbio == s->wbio) {
545             s->wbio = BIO_pop(s->wbio);
546         }
547         BIO_free(s->bbio);
548         s->bbio = NULL;
549     }
550     BIO_free_all(s->rbio);
551     if (s->wbio != s->rbio)
552         BIO_free_all(s->wbio);
553
554     BUF_MEM_free(s->init_buf);
555
556     /* add extra stuff */
557     sk_SSL_CIPHER_free(s->cipher_list);
558     sk_SSL_CIPHER_free(s->cipher_list_by_id);
559
560     /* Make the next call work :-) */
561     if (s->session != NULL) {
562         ssl_clear_bad_session(s);
563         SSL_SESSION_free(s->session);
564     }
565
566     clear_ciphers(s);
567
568     ssl_cert_free(s->cert);
569     /* Free up if allocated */
570
571     OPENSSL_free(s->tlsext_hostname);
572     SSL_CTX_free(s->initial_ctx);
573 #ifndef OPENSSL_NO_EC
574     OPENSSL_free(s->tlsext_ecpointformatlist);
575     OPENSSL_free(s->tlsext_ellipticcurvelist);
576 #endif                         /* OPENSSL_NO_EC */
577     sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts, X509_EXTENSION_free);
578     sk_OCSP_RESPID_pop_free(s->tlsext_ocsp_ids, OCSP_RESPID_free);
579     OPENSSL_free(s->tlsext_ocsp_resp);
580     OPENSSL_free(s->alpn_client_proto_list);
581
582     sk_X509_NAME_pop_free(s->client_CA, X509_NAME_free);
583
584     if (s->method != NULL)
585         s->method->ssl_free(s);
586
587     RECORD_LAYER_release(&s->rlayer);
588
589     SSL_CTX_free(s->ctx);
590
591 #if !defined(OPENSSL_NO_NEXTPROTONEG)
592     OPENSSL_free(s->next_proto_negotiated);
593 #endif
594
595 #ifndef OPENSSL_NO_SRTP
596     sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles);
597 #endif
598
599     OPENSSL_free(s);
600 }
601
602 void SSL_set_rbio(SSL *s, BIO *rbio)
603 {
604     if (s->rbio != rbio)
605         BIO_free_all(s->rbio);
606     s->rbio = rbio;
607 }
608
609 void SSL_set_wbio(SSL *s, BIO *wbio)
610 {
611     /*
612      * If the output buffering BIO is still in place, remove it
613      */
614     if (s->bbio != NULL) {
615         if (s->wbio == s->bbio) {
616             s->wbio = s->wbio->next_bio;
617             s->bbio->next_bio = NULL;
618         }
619     }
620     if (s->wbio != wbio && s->rbio != s->wbio)
621         BIO_free_all(s->wbio);
622     s->wbio = wbio;
623 }
624
625 void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
626 {
627     SSL_set_wbio(s, wbio);
628     SSL_set_rbio(s, rbio);
629 }
630
631 BIO *SSL_get_rbio(const SSL *s)
632 {
633     return (s->rbio);
634 }
635
636 BIO *SSL_get_wbio(const SSL *s)
637 {
638     return (s->wbio);
639 }
640
641 int SSL_get_fd(const SSL *s)
642 {
643     return (SSL_get_rfd(s));
644 }
645
646 int SSL_get_rfd(const SSL *s)
647 {
648     int ret = -1;
649     BIO *b, *r;
650
651     b = SSL_get_rbio(s);
652     r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
653     if (r != NULL)
654         BIO_get_fd(r, &ret);
655     return (ret);
656 }
657
658 int SSL_get_wfd(const SSL *s)
659 {
660     int ret = -1;
661     BIO *b, *r;
662
663     b = SSL_get_wbio(s);
664     r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
665     if (r != NULL)
666         BIO_get_fd(r, &ret);
667     return (ret);
668 }
669
670 #ifndef OPENSSL_NO_SOCK
671 int SSL_set_fd(SSL *s, int fd)
672 {
673     int ret = 0;
674     BIO *bio = NULL;
675
676     bio = BIO_new(BIO_s_socket());
677
678     if (bio == NULL) {
679         SSLerr(SSL_F_SSL_SET_FD, ERR_R_BUF_LIB);
680         goto err;
681     }
682     BIO_set_fd(bio, fd, BIO_NOCLOSE);
683     SSL_set_bio(s, bio, bio);
684     ret = 1;
685  err:
686     return (ret);
687 }
688
689 int SSL_set_wfd(SSL *s, int fd)
690 {
691     int ret = 0;
692     BIO *bio = NULL;
693
694     if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
695         || ((int)BIO_get_fd(s->rbio, NULL) != fd)) {
696         bio = BIO_new(BIO_s_socket());
697
698         if (bio == NULL) {
699             SSLerr(SSL_F_SSL_SET_WFD, ERR_R_BUF_LIB);
700             goto err;
701         }
702         BIO_set_fd(bio, fd, BIO_NOCLOSE);
703         SSL_set_bio(s, SSL_get_rbio(s), bio);
704     } else
705         SSL_set_bio(s, SSL_get_rbio(s), SSL_get_rbio(s));
706     ret = 1;
707  err:
708     return (ret);
709 }
710
711 int SSL_set_rfd(SSL *s, int fd)
712 {
713     int ret = 0;
714     BIO *bio = NULL;
715
716     if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
717         || ((int)BIO_get_fd(s->wbio, NULL) != fd)) {
718         bio = BIO_new(BIO_s_socket());
719
720         if (bio == NULL) {
721             SSLerr(SSL_F_SSL_SET_RFD, ERR_R_BUF_LIB);
722             goto err;
723         }
724         BIO_set_fd(bio, fd, BIO_NOCLOSE);
725         SSL_set_bio(s, bio, SSL_get_wbio(s));
726     } else
727         SSL_set_bio(s, SSL_get_wbio(s), SSL_get_wbio(s));
728     ret = 1;
729  err:
730     return (ret);
731 }
732 #endif
733
734 /* return length of latest Finished message we sent, copy to 'buf' */
735 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
736 {
737     size_t ret = 0;
738
739     if (s->s3 != NULL) {
740         ret = s->s3->tmp.finish_md_len;
741         if (count > ret)
742             count = ret;
743         memcpy(buf, s->s3->tmp.finish_md, count);
744     }
745     return ret;
746 }
747
748 /* return length of latest Finished message we expected, copy to 'buf' */
749 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
750 {
751     size_t ret = 0;
752
753     if (s->s3 != NULL) {
754         ret = s->s3->tmp.peer_finish_md_len;
755         if (count > ret)
756             count = ret;
757         memcpy(buf, s->s3->tmp.peer_finish_md, count);
758     }
759     return ret;
760 }
761
762 int SSL_get_verify_mode(const SSL *s)
763 {
764     return (s->verify_mode);
765 }
766
767 int SSL_get_verify_depth(const SSL *s)
768 {
769     return X509_VERIFY_PARAM_get_depth(s->param);
770 }
771
772 int (*SSL_get_verify_callback(const SSL *s)) (int, X509_STORE_CTX *) {
773     return (s->verify_callback);
774 }
775
776 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
777 {
778     return (ctx->verify_mode);
779 }
780
781 int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
782 {
783     return X509_VERIFY_PARAM_get_depth(ctx->param);
784 }
785
786 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx)) (int, X509_STORE_CTX *) {
787     return (ctx->default_verify_callback);
788 }
789
790 void SSL_set_verify(SSL *s, int mode,
791                     int (*callback) (int ok, X509_STORE_CTX *ctx))
792 {
793     s->verify_mode = mode;
794     if (callback != NULL)
795         s->verify_callback = callback;
796 }
797
798 void SSL_set_verify_depth(SSL *s, int depth)
799 {
800     X509_VERIFY_PARAM_set_depth(s->param, depth);
801 }
802
803 void SSL_set_read_ahead(SSL *s, int yes)
804 {
805     RECORD_LAYER_set_read_ahead(&s->rlayer, yes);
806 }
807
808 int SSL_get_read_ahead(const SSL *s)
809 {
810     return RECORD_LAYER_get_read_ahead(&s->rlayer);
811 }
812
813 int SSL_pending(const SSL *s)
814 {
815     /*
816      * SSL_pending cannot work properly if read-ahead is enabled
817      * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)), and it is
818      * impossible to fix since SSL_pending cannot report errors that may be
819      * observed while scanning the new data. (Note that SSL_pending() is
820      * often used as a boolean value, so we'd better not return -1.)
821      */
822     return (s->method->ssl_pending(s));
823 }
824
825 X509 *SSL_get_peer_certificate(const SSL *s)
826 {
827     X509 *r;
828
829     if ((s == NULL) || (s->session == NULL))
830         r = NULL;
831     else
832         r = s->session->peer;
833
834     if (r == NULL)
835         return (r);
836
837     X509_up_ref(r);
838
839     return (r);
840 }
841
842 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
843 {
844     STACK_OF(X509) *r;
845
846     if ((s == NULL) || (s->session == NULL))
847         r = NULL;
848     else
849         r = s->session->peer_chain;
850
851     /*
852      * If we are a client, cert_chain includes the peer's own certificate; if
853      * we are a server, it does not.
854      */
855
856     return (r);
857 }
858
859 /*
860  * Now in theory, since the calling process own 't' it should be safe to
861  * modify.  We need to be able to read f without being hassled
862  */
863 int SSL_copy_session_id(SSL *t, const SSL *f)
864 {
865     /* Do we need to to SSL locking? */
866     if (!SSL_set_session(t, SSL_get_session(f))) {
867         return 0;
868     }
869
870     /*
871      * what if we are setup for one protocol version but want to talk another
872      */
873     if (t->method != f->method) {
874         t->method->ssl_free(t); /* cleanup current */
875         t->method = f->method;  /* change method */
876         t->method->ssl_new(t);  /* setup new */
877     }
878
879     CRYPTO_add(&f->cert->references, 1, CRYPTO_LOCK_SSL_CERT);
880     ssl_cert_free(t->cert);
881     t->cert = f->cert;
882     if (!SSL_set_session_id_context(t, f->sid_ctx, f->sid_ctx_length)) {
883         return 0;
884     }
885
886     return 1;
887 }
888
889 /* Fix this so it checks all the valid key/cert options */
890 int SSL_CTX_check_private_key(const SSL_CTX *ctx)
891 {
892     if ((ctx == NULL) ||
893         (ctx->cert->key->x509 == NULL)) {
894         SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,
895                SSL_R_NO_CERTIFICATE_ASSIGNED);
896         return (0);
897     }
898     if (ctx->cert->key->privatekey == NULL) {
899         SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,
900                SSL_R_NO_PRIVATE_KEY_ASSIGNED);
901         return (0);
902     }
903     return (X509_check_private_key
904             (ctx->cert->key->x509, ctx->cert->key->privatekey));
905 }
906
907 /* Fix this function so that it takes an optional type parameter */
908 int SSL_check_private_key(const SSL *ssl)
909 {
910     if (ssl == NULL) {
911         SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, ERR_R_PASSED_NULL_PARAMETER);
912         return (0);
913     }
914     if (ssl->cert->key->x509 == NULL) {
915         SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, SSL_R_NO_CERTIFICATE_ASSIGNED);
916         return (0);
917     }
918     if (ssl->cert->key->privatekey == NULL) {
919         SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
920         return (0);
921     }
922     return (X509_check_private_key(ssl->cert->key->x509,
923                                    ssl->cert->key->privatekey));
924 }
925
926 int SSL_waiting_for_async(SSL *s)
927 {
928     if(s->job)
929         return 1;
930
931     return 0;
932 }
933
934 int SSL_get_async_wait_fd(SSL *s)
935 {
936     if (!s->job)
937         return -1;
938
939     return ASYNC_get_wait_fd(s->job);
940 }
941
942 static int ssl_accept_intern(void *vargs)
943 {
944     struct ssl_async_args *args;
945     SSL *s;
946
947     args = (struct ssl_async_args *)vargs;
948     s = args->s;
949
950     return s->method->ssl_accept(s);
951 }
952
953 int SSL_accept(SSL *s)
954 {
955     int ret;
956     struct ssl_async_args args;
957
958     if (s->handshake_func == 0)
959         /* Not properly initialized yet */
960         SSL_set_accept_state(s);
961
962     args.s = s;
963
964     if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
965         switch(ASYNC_start_job(&s->job, &ret, ssl_accept_intern, &args,
966             sizeof(struct ssl_async_args))) {
967         case ASYNC_ERR:
968             SSLerr(SSL_F_SSL_ACCEPT, SSL_R_FAILED_TO_INIT_ASYNC);
969             return -1;
970         case ASYNC_PAUSE:
971             return -1;
972         case ASYNC_FINISH:
973             s->job = NULL;
974             return ret;
975         default:
976             SSLerr(SSL_F_SSL_ACCEPT, ERR_R_INTERNAL_ERROR);
977             /* Shouldn't happen */
978             return -1;
979         }
980     } else {
981         return s->method->ssl_accept(s);
982     }
983 }
984
985 int SSL_connect(SSL *s)
986 {
987     if (s->handshake_func == 0)
988         /* Not properly initialized yet */
989         SSL_set_connect_state(s);
990
991     return (s->method->ssl_connect(s));
992 }
993
994 long SSL_get_default_timeout(const SSL *s)
995 {
996     return (s->method->get_timeout());
997 }
998
999
1000 static int ssl_read_intern(void *vargs)
1001 {
1002     struct ssl_async_args *args;
1003     SSL *s;
1004     void *buf;
1005     int num;
1006
1007     args = (struct ssl_async_args *)vargs;
1008     s = args->s;
1009     buf = args->buf;
1010     num = args->num;
1011
1012     return s->method->ssl_read(s, buf, num);
1013 }
1014
1015 int SSL_read(SSL *s, void *buf, int num)
1016 {
1017     int ret;
1018     struct ssl_async_args args;
1019
1020     if (s->handshake_func == 0) {
1021         SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED);
1022         return -1;
1023     }
1024
1025     if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
1026         s->rwstate = SSL_NOTHING;
1027         return (0);
1028     }
1029
1030     args.s = s;
1031     args.buf = buf;
1032     args.num = num;
1033
1034     if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1035         switch(ASYNC_start_job(&s->job, &ret, ssl_read_intern, &args,
1036             sizeof(struct ssl_async_args))) {
1037         case ASYNC_ERR:
1038             s->rwstate = SSL_NOTHING;
1039             SSLerr(SSL_F_SSL_READ, SSL_R_FAILED_TO_INIT_ASYNC);
1040             return -1;
1041         case ASYNC_PAUSE:
1042             s->rwstate = SSL_ASYNC_PAUSED;
1043             return -1;
1044         case ASYNC_FINISH:
1045             s->job = NULL;
1046             return ret;
1047         default:
1048             s->rwstate = SSL_NOTHING;
1049             SSLerr(SSL_F_SSL_READ, ERR_R_INTERNAL_ERROR);
1050             /* Shouldn't happen */
1051             return -1;
1052         }
1053     } else {
1054         return s->method->ssl_read(s, buf, num);
1055     }
1056 }
1057
1058 int SSL_peek(SSL *s, void *buf, int num)
1059 {
1060     if (s->handshake_func == 0) {
1061         SSLerr(SSL_F_SSL_PEEK, SSL_R_UNINITIALIZED);
1062         return -1;
1063     }
1064
1065     if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
1066         return (0);
1067     }
1068     return (s->method->ssl_peek(s, buf, num));
1069 }
1070
1071 static int ssl_write_intern(void *vargs)
1072 {
1073     struct ssl_async_args *args;
1074     SSL *s;
1075     const void *buf;
1076     int num;
1077
1078     args = (struct ssl_async_args *)vargs;
1079     s = args->s;
1080     buf = args->buf;
1081     num = args->num;
1082
1083     return s->method->ssl_write(s, buf, num);
1084 }
1085
1086
1087 int SSL_write(SSL *s, const void *buf, int num)
1088 {
1089     int ret;
1090     struct ssl_async_args args;
1091
1092     if (s->handshake_func == 0) {
1093         SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED);
1094         return -1;
1095     }
1096
1097     if (s->shutdown & SSL_SENT_SHUTDOWN) {
1098         s->rwstate = SSL_NOTHING;
1099         SSLerr(SSL_F_SSL_WRITE, SSL_R_PROTOCOL_IS_SHUTDOWN);
1100         return (-1);
1101     }
1102
1103     args.s = s;
1104     args.buf = (void *) buf;
1105     args.num = num;
1106
1107     if((s->mode & SSL_MODE_ASYNC) && ASYNC_get_current_job() == NULL) {
1108         switch(ASYNC_start_job(&s->job, &ret, ssl_write_intern, &args,
1109             sizeof(struct ssl_async_args))) {
1110         case ASYNC_ERR:
1111             s->rwstate = SSL_NOTHING;
1112             SSLerr(SSL_F_SSL_WRITE, SSL_R_FAILED_TO_INIT_ASYNC);
1113             return -1;
1114         case ASYNC_PAUSE:
1115             s->rwstate = SSL_ASYNC_PAUSED;
1116             return -1;
1117         case ASYNC_FINISH:
1118             s->job = NULL;
1119             return ret;
1120         default:
1121             s->rwstate = SSL_NOTHING;
1122             SSLerr(SSL_F_SSL_WRITE, ERR_R_INTERNAL_ERROR);
1123             /* Shouldn't happen */
1124             return -1;
1125         }
1126     } else {
1127         return s->method->ssl_write(s, buf, num);
1128     }
1129 }
1130
1131 int SSL_shutdown(SSL *s)
1132 {
1133     /*
1134      * Note that this function behaves differently from what one might
1135      * expect.  Return values are 0 for no success (yet), 1 for success; but
1136      * calling it once is usually not enough, even if blocking I/O is used
1137      * (see ssl3_shutdown).
1138      */
1139
1140     if (s->handshake_func == 0) {
1141         SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);
1142         return -1;
1143     }
1144
1145     if (!SSL_in_init(s))
1146         return (s->method->ssl_shutdown(s));
1147     else
1148         return (1);
1149 }
1150
1151 int SSL_renegotiate(SSL *s)
1152 {
1153     if (s->renegotiate == 0)
1154         s->renegotiate = 1;
1155
1156     s->new_session = 1;
1157
1158     return (s->method->ssl_renegotiate(s));
1159 }
1160
1161 int SSL_renegotiate_abbreviated(SSL *s)
1162 {
1163     if (s->renegotiate == 0)
1164         s->renegotiate = 1;
1165
1166     s->new_session = 0;
1167
1168     return (s->method->ssl_renegotiate(s));
1169 }
1170
1171 int SSL_renegotiate_pending(SSL *s)
1172 {
1173     /*
1174      * becomes true when negotiation is requested; false again once a
1175      * handshake has finished
1176      */
1177     return (s->renegotiate != 0);
1178 }
1179
1180 long SSL_ctrl(SSL *s, int cmd, long larg, void *parg)
1181 {
1182     long l;
1183
1184     switch (cmd) {
1185     case SSL_CTRL_GET_READ_AHEAD:
1186         return (RECORD_LAYER_get_read_ahead(&s->rlayer));
1187     case SSL_CTRL_SET_READ_AHEAD:
1188         l = RECORD_LAYER_get_read_ahead(&s->rlayer);
1189         RECORD_LAYER_set_read_ahead(&s->rlayer, larg);
1190         return (l);
1191
1192     case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1193         s->msg_callback_arg = parg;
1194         return 1;
1195
1196     case SSL_CTRL_OPTIONS:
1197         return (s->options |= larg);
1198     case SSL_CTRL_CLEAR_OPTIONS:
1199         return (s->options &= ~larg);
1200     case SSL_CTRL_MODE:
1201         return (s->mode |= larg);
1202     case SSL_CTRL_CLEAR_MODE:
1203         return (s->mode &= ~larg);
1204     case SSL_CTRL_GET_MAX_CERT_LIST:
1205         return (s->max_cert_list);
1206     case SSL_CTRL_SET_MAX_CERT_LIST:
1207         l = s->max_cert_list;
1208         s->max_cert_list = larg;
1209         return (l);
1210     case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
1211         if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
1212             return 0;
1213         s->max_send_fragment = larg;
1214         return 1;
1215     case SSL_CTRL_GET_RI_SUPPORT:
1216         if (s->s3)
1217             return s->s3->send_connection_binding;
1218         else
1219             return 0;
1220     case SSL_CTRL_CERT_FLAGS:
1221         return (s->cert->cert_flags |= larg);
1222     case SSL_CTRL_CLEAR_CERT_FLAGS:
1223         return (s->cert->cert_flags &= ~larg);
1224
1225     case SSL_CTRL_GET_RAW_CIPHERLIST:
1226         if (parg) {
1227             if (s->s3->tmp.ciphers_raw == NULL)
1228                 return 0;
1229             *(unsigned char **)parg = s->s3->tmp.ciphers_raw;
1230             return (int)s->s3->tmp.ciphers_rawlen;
1231         } else {
1232             return TLS_CIPHER_LEN;
1233         }
1234     case SSL_CTRL_GET_EXTMS_SUPPORT:
1235         if (!s->session || SSL_in_init(s) || ossl_statem_get_in_handshake(s))
1236                 return -1;
1237         if (s->session->flags & SSL_SESS_FLAG_EXTMS)
1238             return 1;
1239         else
1240             return 0;
1241     default:
1242         return (s->method->ssl_ctrl(s, cmd, larg, parg));
1243     }
1244 }
1245
1246 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp) (void))
1247 {
1248     switch (cmd) {
1249     case SSL_CTRL_SET_MSG_CALLBACK:
1250         s->msg_callback = (void (*)
1251                            (int write_p, int version, int content_type,
1252                             const void *buf, size_t len, SSL *ssl,
1253                             void *arg))(fp);
1254         return 1;
1255
1256     default:
1257         return (s->method->ssl_callback_ctrl(s, cmd, fp));
1258     }
1259 }
1260
1261 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
1262 {
1263     return ctx->sessions;
1264 }
1265
1266 long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
1267 {
1268     long l;
1269     /* For some cases with ctx == NULL perform syntax checks */
1270     if (ctx == NULL) {
1271         switch (cmd) {
1272 #ifndef OPENSSL_NO_EC
1273         case SSL_CTRL_SET_CURVES_LIST:
1274             return tls1_set_curves_list(NULL, NULL, parg);
1275 #endif
1276         case SSL_CTRL_SET_SIGALGS_LIST:
1277         case SSL_CTRL_SET_CLIENT_SIGALGS_LIST:
1278             return tls1_set_sigalgs_list(NULL, parg, 0);
1279         default:
1280             return 0;
1281         }
1282     }
1283
1284     switch (cmd) {
1285     case SSL_CTRL_GET_READ_AHEAD:
1286         return (ctx->read_ahead);
1287     case SSL_CTRL_SET_READ_AHEAD:
1288         l = ctx->read_ahead;
1289         ctx->read_ahead = larg;
1290         return (l);
1291
1292     case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1293         ctx->msg_callback_arg = parg;
1294         return 1;
1295
1296     case SSL_CTRL_GET_MAX_CERT_LIST:
1297         return (ctx->max_cert_list);
1298     case SSL_CTRL_SET_MAX_CERT_LIST:
1299         l = ctx->max_cert_list;
1300         ctx->max_cert_list = larg;
1301         return (l);
1302
1303     case SSL_CTRL_SET_SESS_CACHE_SIZE:
1304         l = ctx->session_cache_size;
1305         ctx->session_cache_size = larg;
1306         return (l);
1307     case SSL_CTRL_GET_SESS_CACHE_SIZE:
1308         return (ctx->session_cache_size);
1309     case SSL_CTRL_SET_SESS_CACHE_MODE:
1310         l = ctx->session_cache_mode;
1311         ctx->session_cache_mode = larg;
1312         return (l);
1313     case SSL_CTRL_GET_SESS_CACHE_MODE:
1314         return (ctx->session_cache_mode);
1315
1316     case SSL_CTRL_SESS_NUMBER:
1317         return (lh_SSL_SESSION_num_items(ctx->sessions));
1318     case SSL_CTRL_SESS_CONNECT:
1319         return (ctx->stats.sess_connect);
1320     case SSL_CTRL_SESS_CONNECT_GOOD:
1321         return (ctx->stats.sess_connect_good);
1322     case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
1323         return (ctx->stats.sess_connect_renegotiate);
1324     case SSL_CTRL_SESS_ACCEPT:
1325         return (ctx->stats.sess_accept);
1326     case SSL_CTRL_SESS_ACCEPT_GOOD:
1327         return (ctx->stats.sess_accept_good);
1328     case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
1329         return (ctx->stats.sess_accept_renegotiate);
1330     case SSL_CTRL_SESS_HIT:
1331         return (ctx->stats.sess_hit);
1332     case SSL_CTRL_SESS_CB_HIT:
1333         return (ctx->stats.sess_cb_hit);
1334     case SSL_CTRL_SESS_MISSES:
1335         return (ctx->stats.sess_miss);
1336     case SSL_CTRL_SESS_TIMEOUTS:
1337         return (ctx->stats.sess_timeout);
1338     case SSL_CTRL_SESS_CACHE_FULL:
1339         return (ctx->stats.sess_cache_full);
1340     case SSL_CTRL_OPTIONS:
1341         return (ctx->options |= larg);
1342     case SSL_CTRL_CLEAR_OPTIONS:
1343         return (ctx->options &= ~larg);
1344     case SSL_CTRL_MODE:
1345         return (ctx->mode |= larg);
1346     case SSL_CTRL_CLEAR_MODE:
1347         return (ctx->mode &= ~larg);
1348     case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
1349         if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
1350             return 0;
1351         ctx->max_send_fragment = larg;
1352         return 1;
1353     case SSL_CTRL_CERT_FLAGS:
1354         return (ctx->cert->cert_flags |= larg);
1355     case SSL_CTRL_CLEAR_CERT_FLAGS:
1356         return (ctx->cert->cert_flags &= ~larg);
1357     default:
1358         return (ctx->method->ssl_ctx_ctrl(ctx, cmd, larg, parg));
1359     }
1360 }
1361
1362 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
1363 {
1364     switch (cmd) {
1365     case SSL_CTRL_SET_MSG_CALLBACK:
1366         ctx->msg_callback = (void (*)
1367                              (int write_p, int version, int content_type,
1368                               const void *buf, size_t len, SSL *ssl,
1369                               void *arg))(fp);
1370         return 1;
1371
1372     default:
1373         return (ctx->method->ssl_ctx_callback_ctrl(ctx, cmd, fp));
1374     }
1375 }
1376
1377 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
1378 {
1379     if (a->id > b->id)
1380         return 1;
1381     if (a->id < b->id)
1382         return -1;
1383     return 0;
1384 }
1385
1386 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
1387                           const SSL_CIPHER *const *bp)
1388 {
1389     if ((*ap)->id > (*bp)->id)
1390         return 1;
1391     if ((*ap)->id < (*bp)->id)
1392         return -1;
1393     return 0;
1394 }
1395
1396 /** return a STACK of the ciphers available for the SSL and in order of
1397  * preference */
1398 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
1399 {
1400     if (s != NULL) {
1401         if (s->cipher_list != NULL) {
1402             return (s->cipher_list);
1403         } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) {
1404             return (s->ctx->cipher_list);
1405         }
1406     }
1407     return (NULL);
1408 }
1409
1410 STACK_OF(SSL_CIPHER) *SSL_get_client_ciphers(const SSL *s)
1411 {
1412     if ((s == NULL) || (s->session == NULL) || !s->server)
1413         return NULL;
1414     return s->session->ciphers;
1415 }
1416
1417 STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s)
1418 {
1419     STACK_OF(SSL_CIPHER) *sk = NULL, *ciphers;
1420     int i;
1421     ciphers = SSL_get_ciphers(s);
1422     if (!ciphers)
1423         return NULL;
1424     ssl_set_client_disabled(s);
1425     for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1426         const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
1427         if (!ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED)) {
1428             if (!sk)
1429                 sk = sk_SSL_CIPHER_new_null();
1430             if (!sk)
1431                 return NULL;
1432             if (!sk_SSL_CIPHER_push(sk, c)) {
1433                 sk_SSL_CIPHER_free(sk);
1434                 return NULL;
1435             }
1436         }
1437     }
1438     return sk;
1439 }
1440
1441 /** return a STACK of the ciphers available for the SSL and in order of
1442  * algorithm id */
1443 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
1444 {
1445     if (s != NULL) {
1446         if (s->cipher_list_by_id != NULL) {
1447             return (s->cipher_list_by_id);
1448         } else if ((s->ctx != NULL) && (s->ctx->cipher_list_by_id != NULL)) {
1449             return (s->ctx->cipher_list_by_id);
1450         }
1451     }
1452     return (NULL);
1453 }
1454
1455 /** The old interface to get the same thing as SSL_get_ciphers() */
1456 const char *SSL_get_cipher_list(const SSL *s, int n)
1457 {
1458     SSL_CIPHER *c;
1459     STACK_OF(SSL_CIPHER) *sk;
1460
1461     if (s == NULL)
1462         return (NULL);
1463     sk = SSL_get_ciphers(s);
1464     if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
1465         return (NULL);
1466     c = sk_SSL_CIPHER_value(sk, n);
1467     if (c == NULL)
1468         return (NULL);
1469     return (c->name);
1470 }
1471
1472 /** specify the ciphers to be used by default by the SSL_CTX */
1473 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
1474 {
1475     STACK_OF(SSL_CIPHER) *sk;
1476
1477     sk = ssl_create_cipher_list(ctx->method, &ctx->cipher_list,
1478                                 &ctx->cipher_list_by_id, str, ctx->cert);
1479     /*
1480      * ssl_create_cipher_list may return an empty stack if it was unable to
1481      * find a cipher matching the given rule string (for example if the rule
1482      * string specifies a cipher which has been disabled). This is not an
1483      * error as far as ssl_create_cipher_list is concerned, and hence
1484      * ctx->cipher_list and ctx->cipher_list_by_id has been updated.
1485      */
1486     if (sk == NULL)
1487         return 0;
1488     else if (sk_SSL_CIPHER_num(sk) == 0) {
1489         SSLerr(SSL_F_SSL_CTX_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1490         return 0;
1491     }
1492     return 1;
1493 }
1494
1495 /** specify the ciphers to be used by the SSL */
1496 int SSL_set_cipher_list(SSL *s, const char *str)
1497 {
1498     STACK_OF(SSL_CIPHER) *sk;
1499
1500     sk = ssl_create_cipher_list(s->ctx->method, &s->cipher_list,
1501                                 &s->cipher_list_by_id, str, s->cert);
1502     /* see comment in SSL_CTX_set_cipher_list */
1503     if (sk == NULL)
1504         return 0;
1505     else if (sk_SSL_CIPHER_num(sk) == 0) {
1506         SSLerr(SSL_F_SSL_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1507         return 0;
1508     }
1509     return 1;
1510 }
1511
1512 char *SSL_get_shared_ciphers(const SSL *s, char *buf, int len)
1513 {
1514     char *p;
1515     STACK_OF(SSL_CIPHER) *sk;
1516     SSL_CIPHER *c;
1517     int i;
1518
1519     if ((s->session == NULL) || (s->session->ciphers == NULL) || (len < 2))
1520         return (NULL);
1521
1522     p = buf;
1523     sk = s->session->ciphers;
1524
1525     if (sk_SSL_CIPHER_num(sk) == 0)
1526         return NULL;
1527
1528     for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
1529         int n;
1530
1531         c = sk_SSL_CIPHER_value(sk, i);
1532         n = strlen(c->name);
1533         if (n + 1 > len) {
1534             if (p != buf)
1535                 --p;
1536             *p = '\0';
1537             return buf;
1538         }
1539         strcpy(p, c->name);
1540         p += n;
1541         *(p++) = ':';
1542         len -= n + 1;
1543     }
1544     p[-1] = '\0';
1545     return (buf);
1546 }
1547
1548 /** return a servername extension value if provided in Client Hello, or NULL.
1549  * So far, only host_name types are defined (RFC 3546).
1550  */
1551
1552 const char *SSL_get_servername(const SSL *s, const int type)
1553 {
1554     if (type != TLSEXT_NAMETYPE_host_name)
1555         return NULL;
1556
1557     return s->session && !s->tlsext_hostname ?
1558         s->session->tlsext_hostname : s->tlsext_hostname;
1559 }
1560
1561 int SSL_get_servername_type(const SSL *s)
1562 {
1563     if (s->session
1564         && (!s->tlsext_hostname ? s->session->
1565             tlsext_hostname : s->tlsext_hostname))
1566         return TLSEXT_NAMETYPE_host_name;
1567     return -1;
1568 }
1569
1570 /*
1571  * SSL_select_next_proto implements the standard protocol selection. It is
1572  * expected that this function is called from the callback set by
1573  * SSL_CTX_set_next_proto_select_cb. The protocol data is assumed to be a
1574  * vector of 8-bit, length prefixed byte strings. The length byte itself is
1575  * not included in the length. A byte string of length 0 is invalid. No byte
1576  * string may be truncated. The current, but experimental algorithm for
1577  * selecting the protocol is: 1) If the server doesn't support NPN then this
1578  * is indicated to the callback. In this case, the client application has to
1579  * abort the connection or have a default application level protocol. 2) If
1580  * the server supports NPN, but advertises an empty list then the client
1581  * selects the first protcol in its list, but indicates via the API that this
1582  * fallback case was enacted. 3) Otherwise, the client finds the first
1583  * protocol in the server's list that it supports and selects this protocol.
1584  * This is because it's assumed that the server has better information about
1585  * which protocol a client should use. 4) If the client doesn't support any
1586  * of the server's advertised protocols, then this is treated the same as
1587  * case 2. It returns either OPENSSL_NPN_NEGOTIATED if a common protocol was
1588  * found, or OPENSSL_NPN_NO_OVERLAP if the fallback case was reached.
1589  */
1590 int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
1591                           const unsigned char *server,
1592                           unsigned int server_len,
1593                           const unsigned char *client,
1594                           unsigned int client_len)
1595 {
1596     unsigned int i, j;
1597     const unsigned char *result;
1598     int status = OPENSSL_NPN_UNSUPPORTED;
1599
1600     /*
1601      * For each protocol in server preference order, see if we support it.
1602      */
1603     for (i = 0; i < server_len;) {
1604         for (j = 0; j < client_len;) {
1605             if (server[i] == client[j] &&
1606                 memcmp(&server[i + 1], &client[j + 1], server[i]) == 0) {
1607                 /* We found a match */
1608                 result = &server[i];
1609                 status = OPENSSL_NPN_NEGOTIATED;
1610                 goto found;
1611             }
1612             j += client[j];
1613             j++;
1614         }
1615         i += server[i];
1616         i++;
1617     }
1618
1619     /* There's no overlap between our protocols and the server's list. */
1620     result = client;
1621     status = OPENSSL_NPN_NO_OVERLAP;
1622
1623  found:
1624     *out = (unsigned char *)result + 1;
1625     *outlen = result[0];
1626     return status;
1627 }
1628
1629 #ifndef OPENSSL_NO_NEXTPROTONEG
1630 /*
1631  * SSL_get0_next_proto_negotiated sets *data and *len to point to the
1632  * client's requested protocol for this connection and returns 0. If the
1633  * client didn't request any protocol, then *data is set to NULL. Note that
1634  * the client can request any protocol it chooses. The value returned from
1635  * this function need not be a member of the list of supported protocols
1636  * provided by the callback.
1637  */
1638 void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
1639                                     unsigned *len)
1640 {
1641     *data = s->next_proto_negotiated;
1642     if (!*data) {
1643         *len = 0;
1644     } else {
1645         *len = s->next_proto_negotiated_len;
1646     }
1647 }
1648
1649 /*
1650  * SSL_CTX_set_next_protos_advertised_cb sets a callback that is called when
1651  * a TLS server needs a list of supported protocols for Next Protocol
1652  * Negotiation. The returned list must be in wire format.  The list is
1653  * returned by setting |out| to point to it and |outlen| to its length. This
1654  * memory will not be modified, but one should assume that the SSL* keeps a
1655  * reference to it. The callback should return SSL_TLSEXT_ERR_OK if it
1656  * wishes to advertise. Otherwise, no such extension will be included in the
1657  * ServerHello.
1658  */
1659 void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *ctx,
1660                                            int (*cb) (SSL *ssl,
1661                                                       const unsigned char
1662                                                       **out,
1663                                                       unsigned int *outlen,
1664                                                       void *arg), void *arg)
1665 {
1666     ctx->next_protos_advertised_cb = cb;
1667     ctx->next_protos_advertised_cb_arg = arg;
1668 }
1669
1670 /*
1671  * SSL_CTX_set_next_proto_select_cb sets a callback that is called when a
1672  * client needs to select a protocol from the server's provided list. |out|
1673  * must be set to point to the selected protocol (which may be within |in|).
1674  * The length of the protocol name must be written into |outlen|. The
1675  * server's advertised protocols are provided in |in| and |inlen|. The
1676  * callback can assume that |in| is syntactically valid. The client must
1677  * select a protocol. It is fatal to the connection if this callback returns
1678  * a value other than SSL_TLSEXT_ERR_OK.
1679  */
1680 void SSL_CTX_set_next_proto_select_cb(SSL_CTX *ctx,
1681                                       int (*cb) (SSL *s, unsigned char **out,
1682                                                  unsigned char *outlen,
1683                                                  const unsigned char *in,
1684                                                  unsigned int inlen,
1685                                                  void *arg), void *arg)
1686 {
1687     ctx->next_proto_select_cb = cb;
1688     ctx->next_proto_select_cb_arg = arg;
1689 }
1690 #endif
1691
1692 /*
1693  * SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
1694  * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
1695  * length-prefixed strings). Returns 0 on success.
1696  */
1697 int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
1698                             unsigned protos_len)
1699 {
1700     OPENSSL_free(ctx->alpn_client_proto_list);
1701     ctx->alpn_client_proto_list = OPENSSL_malloc(protos_len);
1702     if (ctx->alpn_client_proto_list == NULL)
1703         return 1;
1704     memcpy(ctx->alpn_client_proto_list, protos, protos_len);
1705     ctx->alpn_client_proto_list_len = protos_len;
1706
1707     return 0;
1708 }
1709
1710 /*
1711  * SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
1712  * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
1713  * length-prefixed strings). Returns 0 on success.
1714  */
1715 int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
1716                         unsigned protos_len)
1717 {
1718     OPENSSL_free(ssl->alpn_client_proto_list);
1719     ssl->alpn_client_proto_list = OPENSSL_malloc(protos_len);
1720     if (ssl->alpn_client_proto_list == NULL)
1721         return 1;
1722     memcpy(ssl->alpn_client_proto_list, protos, protos_len);
1723     ssl->alpn_client_proto_list_len = protos_len;
1724
1725     return 0;
1726 }
1727
1728 /*
1729  * SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is
1730  * called during ClientHello processing in order to select an ALPN protocol
1731  * from the client's list of offered protocols.
1732  */
1733 void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
1734                                 int (*cb) (SSL *ssl,
1735                                            const unsigned char **out,
1736                                            unsigned char *outlen,
1737                                            const unsigned char *in,
1738                                            unsigned int inlen,
1739                                            void *arg), void *arg)
1740 {
1741     ctx->alpn_select_cb = cb;
1742     ctx->alpn_select_cb_arg = arg;
1743 }
1744
1745 /*
1746  * SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from
1747  * |ssl|. On return it sets |*data| to point to |*len| bytes of protocol name
1748  * (not including the leading length-prefix byte). If the server didn't
1749  * respond with a negotiated protocol then |*len| will be zero.
1750  */
1751 void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
1752                             unsigned *len)
1753 {
1754     *data = NULL;
1755     if (ssl->s3)
1756         *data = ssl->s3->alpn_selected;
1757     if (*data == NULL)
1758         *len = 0;
1759     else
1760         *len = ssl->s3->alpn_selected_len;
1761 }
1762
1763
1764 int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
1765                                const char *label, size_t llen,
1766                                const unsigned char *p, size_t plen,
1767                                int use_context)
1768 {
1769     if (s->version < TLS1_VERSION)
1770         return -1;
1771
1772     return s->method->ssl3_enc->export_keying_material(s, out, olen, label,
1773                                                        llen, p, plen,
1774                                                        use_context);
1775 }
1776
1777 static unsigned long ssl_session_hash(const SSL_SESSION *a)
1778 {
1779     unsigned long l;
1780
1781     l = (unsigned long)
1782         ((unsigned int)a->session_id[0]) |
1783         ((unsigned int)a->session_id[1] << 8L) |
1784         ((unsigned long)a->session_id[2] << 16L) |
1785         ((unsigned long)a->session_id[3] << 24L);
1786     return (l);
1787 }
1788
1789 /*
1790  * NB: If this function (or indeed the hash function which uses a sort of
1791  * coarser function than this one) is changed, ensure
1792  * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on
1793  * being able to construct an SSL_SESSION that will collide with any existing
1794  * session with a matching session ID.
1795  */
1796 static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
1797 {
1798     if (a->ssl_version != b->ssl_version)
1799         return (1);
1800     if (a->session_id_length != b->session_id_length)
1801         return (1);
1802     return (memcmp(a->session_id, b->session_id, a->session_id_length));
1803 }
1804
1805 /*
1806  * These wrapper functions should remain rather than redeclaring
1807  * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
1808  * variable. The reason is that the functions aren't static, they're exposed
1809  * via ssl.h.
1810  */
1811 static IMPLEMENT_LHASH_HASH_FN(ssl_session, SSL_SESSION)
1812 static IMPLEMENT_LHASH_COMP_FN(ssl_session, SSL_SESSION)
1813
1814 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
1815 {
1816     SSL_CTX *ret = NULL;
1817
1818     if (meth == NULL) {
1819         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_NULL_SSL_METHOD_PASSED);
1820         return (NULL);
1821     }
1822
1823     if (FIPS_mode() && (meth->version < TLS1_VERSION)) {
1824         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_ONLY_TLS_ALLOWED_IN_FIPS_MODE);
1825         return NULL;
1826     }
1827
1828     if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) {
1829         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
1830         goto err;
1831     }
1832     ret = OPENSSL_zalloc(sizeof(*ret));
1833     if (ret == NULL)
1834         goto err;
1835
1836     ret->method = meth;
1837     ret->session_cache_mode = SSL_SESS_CACHE_SERVER;
1838     ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
1839     /* We take the system default. */
1840     ret->session_timeout = meth->get_timeout();
1841     ret->references = 1;
1842     ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT;
1843     ret->verify_mode = SSL_VERIFY_NONE;
1844     if ((ret->cert = ssl_cert_new()) == NULL)
1845         goto err;
1846
1847     ret->sessions = lh_SSL_SESSION_new();
1848     if (ret->sessions == NULL)
1849         goto err;
1850     ret->cert_store = X509_STORE_new();
1851     if (ret->cert_store == NULL)
1852         goto err;
1853
1854     if (!ssl_create_cipher_list(ret->method,
1855                            &ret->cipher_list, &ret->cipher_list_by_id,
1856                            SSL_DEFAULT_CIPHER_LIST, ret->cert)
1857        || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) {
1858         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_LIBRARY_HAS_NO_CIPHERS);
1859         goto err2;
1860     }
1861
1862     ret->param = X509_VERIFY_PARAM_new();
1863     if (ret->param == NULL)
1864         goto err;
1865
1866     if ((ret->md5 = EVP_get_digestbyname("ssl3-md5")) == NULL) {
1867         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1868         goto err2;
1869     }
1870     if ((ret->sha1 = EVP_get_digestbyname("ssl3-sha1")) == NULL) {
1871         SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1872         goto err2;
1873     }
1874
1875     if ((ret->client_CA = sk_X509_NAME_new_null()) == NULL)
1876         goto err;
1877
1878     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
1879
1880     /* No compression for DTLS */
1881     if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
1882         ret->comp_methods = SSL_COMP_get_compression_methods();
1883
1884     ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
1885
1886     /* Setup RFC4507 ticket keys */
1887     if ((RAND_bytes(ret->tlsext_tick_key_name, 16) <= 0)
1888         || (RAND_bytes(ret->tlsext_tick_hmac_key, 16) <= 0)
1889         || (RAND_bytes(ret->tlsext_tick_aes_key, 16) <= 0))
1890         ret->options |= SSL_OP_NO_TICKET;
1891
1892 #ifndef OPENSSL_NO_SRP
1893     if (!SSL_CTX_SRP_CTX_init(ret))
1894         goto err;
1895 #endif
1896 #ifndef OPENSSL_NO_ENGINE
1897 # ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
1898 #  define eng_strx(x)     #x
1899 #  define eng_str(x)      eng_strx(x)
1900     /* Use specific client engine automatically... ignore errors */
1901     {
1902         ENGINE *eng;
1903         eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
1904         if (!eng) {
1905             ERR_clear_error();
1906             ENGINE_load_builtin_engines();
1907             eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
1908         }
1909         if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
1910             ERR_clear_error();
1911     }
1912 # endif
1913 #endif
1914     /*
1915      * Default is to connect to non-RI servers. When RI is more widely
1916      * deployed might change this.
1917      */
1918     ret->options |= SSL_OP_LEGACY_SERVER_CONNECT;
1919
1920     return (ret);
1921  err:
1922     SSLerr(SSL_F_SSL_CTX_NEW, ERR_R_MALLOC_FAILURE);
1923  err2:
1924     SSL_CTX_free(ret);
1925     return (NULL);
1926 }
1927
1928 void SSL_CTX_free(SSL_CTX *a)
1929 {
1930     int i;
1931
1932     if (a == NULL)
1933         return;
1934
1935     i = CRYPTO_add(&a->references, -1, CRYPTO_LOCK_SSL_CTX);
1936 #ifdef REF_PRINT
1937     REF_PRINT("SSL_CTX", a);
1938 #endif
1939     if (i > 0)
1940         return;
1941 #ifdef REF_CHECK
1942     if (i < 0) {
1943         fprintf(stderr, "SSL_CTX_free, bad reference count\n");
1944         abort();                /* ok */
1945     }
1946 #endif
1947
1948     X509_VERIFY_PARAM_free(a->param);
1949
1950     /*
1951      * Free internal session cache. However: the remove_cb() may reference
1952      * the ex_data of SSL_CTX, thus the ex_data store can only be removed
1953      * after the sessions were flushed.
1954      * As the ex_data handling routines might also touch the session cache,
1955      * the most secure solution seems to be: empty (flush) the cache, then
1956      * free ex_data, then finally free the cache.
1957      * (See ticket [openssl.org #212].)
1958      */
1959     if (a->sessions != NULL)
1960         SSL_CTX_flush_sessions(a, 0);
1961
1962     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
1963     lh_SSL_SESSION_free(a->sessions);
1964     X509_STORE_free(a->cert_store);
1965     sk_SSL_CIPHER_free(a->cipher_list);
1966     sk_SSL_CIPHER_free(a->cipher_list_by_id);
1967     ssl_cert_free(a->cert);
1968     sk_X509_NAME_pop_free(a->client_CA, X509_NAME_free);
1969     sk_X509_pop_free(a->extra_certs, X509_free);
1970     a->comp_methods = NULL;
1971 #ifndef OPENSSL_NO_SRTP
1972     sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
1973 #endif
1974 #ifndef OPENSSL_NO_SRP
1975     SSL_CTX_SRP_CTX_free(a);
1976 #endif
1977 #ifndef OPENSSL_NO_ENGINE
1978     if (a->client_cert_engine)
1979         ENGINE_finish(a->client_cert_engine);
1980 #endif
1981
1982 #ifndef OPENSSL_NO_EC
1983     OPENSSL_free(a->tlsext_ecpointformatlist);
1984     OPENSSL_free(a->tlsext_ellipticcurvelist);
1985 #endif
1986     OPENSSL_free(a->alpn_client_proto_list);
1987
1988     OPENSSL_free(a);
1989 }
1990
1991 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
1992 {
1993     ctx->default_passwd_callback = cb;
1994 }
1995
1996 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
1997 {
1998     ctx->default_passwd_callback_userdata = u;
1999 }
2000
2001 void SSL_set_default_passwd_cb(SSL *s, pem_password_cb *cb)
2002 {
2003     s->default_passwd_callback = cb;
2004 }
2005
2006 void SSL_set_default_passwd_cb_userdata(SSL *s, void *u)
2007 {
2008     s->default_passwd_callback_userdata = u;
2009 }
2010
2011 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
2012                                       int (*cb) (X509_STORE_CTX *, void *),
2013                                       void *arg)
2014 {
2015     ctx->app_verify_callback = cb;
2016     ctx->app_verify_arg = arg;
2017 }
2018
2019 void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
2020                         int (*cb) (int, X509_STORE_CTX *))
2021 {
2022     ctx->verify_mode = mode;
2023     ctx->default_verify_callback = cb;
2024 }
2025
2026 void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
2027 {
2028     X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2029 }
2030
2031 void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg),
2032                          void *arg)
2033 {
2034     ssl_cert_set_cert_cb(c->cert, cb, arg);
2035 }
2036
2037 void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg)
2038 {
2039     ssl_cert_set_cert_cb(s->cert, cb, arg);
2040 }
2041
2042 void ssl_set_masks(SSL *s, const SSL_CIPHER *cipher)
2043 {
2044     CERT_PKEY *cpk;
2045     CERT *c = s->cert;
2046     uint32_t *pvalid = s->s3->tmp.valid_flags;
2047     int rsa_enc, rsa_tmp, rsa_sign, dh_tmp, dh_rsa, dh_dsa, dsa_sign;
2048     int rsa_enc_export, dh_rsa_export, dh_dsa_export;
2049     int rsa_tmp_export, dh_tmp_export, kl;
2050     unsigned long mask_k, mask_a, emask_k, emask_a;
2051 #ifndef OPENSSL_NO_EC
2052     int have_ecc_cert, ecdsa_ok, ecc_pkey_size;
2053     int have_ecdh_tmp, ecdh_ok;
2054     X509 *x = NULL;
2055     EVP_PKEY *ecc_pkey = NULL;
2056     int pk_nid = 0, md_nid = 0;
2057 #endif
2058     if (c == NULL)
2059         return;
2060
2061     kl = SSL_C_EXPORT_PKEYLENGTH(cipher);
2062
2063 #ifndef OPENSSL_NO_RSA
2064     rsa_tmp = (c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
2065     rsa_tmp_export = (c->rsa_tmp_cb != NULL ||
2066                       (rsa_tmp && RSA_size(c->rsa_tmp) * 8 <= kl));
2067 #else
2068     rsa_tmp = rsa_tmp_export = 0;
2069 #endif
2070 #ifndef OPENSSL_NO_DH
2071     dh_tmp = (c->dh_tmp != NULL || c->dh_tmp_cb != NULL || c->dh_tmp_auto);
2072     dh_tmp_export = !c->dh_tmp_auto && (c->dh_tmp_cb != NULL ||
2073                                         (dh_tmp
2074                                          && DH_size(c->dh_tmp) * 8 <= kl));
2075 #else
2076     dh_tmp = dh_tmp_export = 0;
2077 #endif
2078
2079 #ifndef OPENSSL_NO_EC
2080     have_ecdh_tmp = (c->ecdh_tmp || c->ecdh_tmp_cb || c->ecdh_tmp_auto);
2081 #endif
2082     cpk = &(c->pkeys[SSL_PKEY_RSA_ENC]);
2083     rsa_enc = pvalid[SSL_PKEY_RSA_ENC] & CERT_PKEY_VALID;
2084     rsa_enc_export = (rsa_enc && EVP_PKEY_size(cpk->privatekey) * 8 <= kl);
2085     cpk = &(c->pkeys[SSL_PKEY_RSA_SIGN]);
2086     rsa_sign = pvalid[SSL_PKEY_RSA_SIGN] & CERT_PKEY_SIGN;
2087     cpk = &(c->pkeys[SSL_PKEY_DSA_SIGN]);
2088     dsa_sign = pvalid[SSL_PKEY_DSA_SIGN] & CERT_PKEY_SIGN;
2089     cpk = &(c->pkeys[SSL_PKEY_DH_RSA]);
2090     dh_rsa = pvalid[SSL_PKEY_DH_RSA] & CERT_PKEY_VALID;
2091     dh_rsa_export = (dh_rsa && EVP_PKEY_size(cpk->privatekey) * 8 <= kl);
2092     cpk = &(c->pkeys[SSL_PKEY_DH_DSA]);
2093     dh_dsa = pvalid[SSL_PKEY_DH_DSA] & CERT_PKEY_VALID;
2094     dh_dsa_export = (dh_dsa && EVP_PKEY_size(cpk->privatekey) * 8 <= kl);
2095     cpk = &(c->pkeys[SSL_PKEY_ECC]);
2096 #ifndef OPENSSL_NO_EC
2097     have_ecc_cert = pvalid[SSL_PKEY_ECC] & CERT_PKEY_VALID;
2098 #endif
2099     mask_k = 0;
2100     mask_a = 0;
2101     emask_k = 0;
2102     emask_a = 0;
2103
2104 #ifdef CIPHER_DEBUG
2105     fprintf(stderr,
2106             "rt=%d rte=%d dht=%d ecdht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
2107             rsa_tmp, rsa_tmp_export, dh_tmp, have_ecdh_tmp, rsa_enc,
2108             rsa_enc_export, rsa_sign, dsa_sign, dh_rsa, dh_dsa);
2109 #endif
2110
2111     cpk = &(c->pkeys[SSL_PKEY_GOST01]);
2112     if (cpk->x509 != NULL && cpk->privatekey != NULL) {
2113         mask_k |= SSL_kGOST;
2114         mask_a |= SSL_aGOST01;
2115     }
2116
2117     if (rsa_enc || (rsa_tmp && rsa_sign))
2118         mask_k |= SSL_kRSA;
2119     if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
2120         emask_k |= SSL_kRSA;
2121
2122     if (dh_tmp_export)
2123         emask_k |= SSL_kDHE;
2124
2125     if (dh_tmp)
2126         mask_k |= SSL_kDHE;
2127
2128     if (dh_rsa)
2129         mask_k |= SSL_kDHr;
2130     if (dh_rsa_export)
2131         emask_k |= SSL_kDHr;
2132
2133     if (dh_dsa)
2134         mask_k |= SSL_kDHd;
2135     if (dh_dsa_export)
2136         emask_k |= SSL_kDHd;
2137
2138     if (mask_k & (SSL_kDHr | SSL_kDHd))
2139         mask_a |= SSL_aDH;
2140
2141     if (rsa_enc || rsa_sign) {
2142         mask_a |= SSL_aRSA;
2143         emask_a |= SSL_aRSA;
2144     }
2145
2146     if (dsa_sign) {
2147         mask_a |= SSL_aDSS;
2148         emask_a |= SSL_aDSS;
2149     }
2150
2151     mask_a |= SSL_aNULL;
2152     emask_a |= SSL_aNULL;
2153
2154     /*
2155      * An ECC certificate may be usable for ECDH and/or ECDSA cipher suites
2156      * depending on the key usage extension.
2157      */
2158 #ifndef OPENSSL_NO_EC
2159     if (have_ecc_cert) {
2160         uint32_t ex_kusage;
2161         cpk = &c->pkeys[SSL_PKEY_ECC];
2162         x = cpk->x509;
2163         ex_kusage = X509_get_key_usage(x);
2164         ecdh_ok = ex_kusage & X509v3_KU_KEY_AGREEMENT;
2165         ecdsa_ok = ex_kusage & X509v3_KU_DIGITAL_SIGNATURE;
2166         if (!(pvalid[SSL_PKEY_ECC] & CERT_PKEY_SIGN))
2167             ecdsa_ok = 0;
2168         ecc_pkey = X509_get_pubkey(x);
2169         ecc_pkey_size = (ecc_pkey != NULL) ? EVP_PKEY_bits(ecc_pkey) : 0;
2170         EVP_PKEY_free(ecc_pkey);
2171         OBJ_find_sigid_algs(X509_get_signature_nid(x), &md_nid, &pk_nid);
2172         if (ecdh_ok) {
2173
2174             if (pk_nid == NID_rsaEncryption || pk_nid == NID_rsa) {
2175                 mask_k |= SSL_kECDHr;
2176                 mask_a |= SSL_aECDH;
2177                 if (ecc_pkey_size <= 163) {
2178                     emask_k |= SSL_kECDHr;
2179                     emask_a |= SSL_aECDH;
2180                 }
2181             }
2182
2183             if (pk_nid == NID_X9_62_id_ecPublicKey) {
2184                 mask_k |= SSL_kECDHe;
2185                 mask_a |= SSL_aECDH;
2186                 if (ecc_pkey_size <= 163) {
2187                     emask_k |= SSL_kECDHe;
2188                     emask_a |= SSL_aECDH;
2189                 }
2190             }
2191         }
2192         if (ecdsa_ok) {
2193             mask_a |= SSL_aECDSA;
2194             emask_a |= SSL_aECDSA;
2195         }
2196     }
2197 #endif
2198
2199 #ifndef OPENSSL_NO_EC
2200     if (have_ecdh_tmp) {
2201         mask_k |= SSL_kECDHE;
2202         emask_k |= SSL_kECDHE;
2203     }
2204 #endif
2205
2206 #ifndef OPENSSL_NO_PSK
2207     mask_k |= SSL_kPSK;
2208     mask_a |= SSL_aPSK;
2209     emask_k |= SSL_kPSK;
2210     emask_a |= SSL_aPSK;
2211     if (mask_k & SSL_kRSA)
2212         mask_k |= SSL_kRSAPSK;
2213     if (mask_k & SSL_kDHE)
2214         mask_k |= SSL_kDHEPSK;
2215     if (mask_k & SSL_kECDHE)
2216         mask_k |= SSL_kECDHEPSK;
2217 #endif
2218
2219     s->s3->tmp.mask_k = mask_k;
2220     s->s3->tmp.mask_a = mask_a;
2221     s->s3->tmp.export_mask_k = emask_k;
2222     s->s3->tmp.export_mask_a = emask_a;
2223 }
2224
2225 #ifndef OPENSSL_NO_EC
2226
2227 int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL *s)
2228 {
2229     unsigned long alg_k, alg_a;
2230     EVP_PKEY *pkey = NULL;
2231     int keysize = 0;
2232     int md_nid = 0, pk_nid = 0;
2233     const SSL_CIPHER *cs = s->s3->tmp.new_cipher;
2234     uint32_t ex_kusage = X509_get_key_usage(x);
2235
2236     alg_k = cs->algorithm_mkey;
2237     alg_a = cs->algorithm_auth;
2238
2239     if (SSL_C_IS_EXPORT(cs)) {
2240         /* ECDH key length in export ciphers must be <= 163 bits */
2241         pkey = X509_get_pubkey(x);
2242         if (pkey == NULL)
2243             return 0;
2244         keysize = EVP_PKEY_bits(pkey);
2245         EVP_PKEY_free(pkey);
2246         if (keysize > 163)
2247             return 0;
2248     }
2249
2250     OBJ_find_sigid_algs(X509_get_signature_nid(x), &md_nid, &pk_nid);
2251
2252     if (alg_k & SSL_kECDHe || alg_k & SSL_kECDHr) {
2253         /* key usage, if present, must allow key agreement */
2254         if (!(ex_kusage & X509v3_KU_KEY_AGREEMENT)) {
2255             SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2256                    SSL_R_ECC_CERT_NOT_FOR_KEY_AGREEMENT);
2257             return 0;
2258         }
2259         if ((alg_k & SSL_kECDHe) && TLS1_get_version(s) < TLS1_2_VERSION) {
2260             /* signature alg must be ECDSA */
2261             if (pk_nid != NID_X9_62_id_ecPublicKey) {
2262                 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2263                        SSL_R_ECC_CERT_SHOULD_HAVE_SHA1_SIGNATURE);
2264                 return 0;
2265             }
2266         }
2267         if ((alg_k & SSL_kECDHr) && TLS1_get_version(s) < TLS1_2_VERSION) {
2268             /* signature alg must be RSA */
2269
2270             if (pk_nid != NID_rsaEncryption && pk_nid != NID_rsa) {
2271                 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2272                        SSL_R_ECC_CERT_SHOULD_HAVE_RSA_SIGNATURE);
2273                 return 0;
2274             }
2275         }
2276     }
2277     if (alg_a & SSL_aECDSA) {
2278         /* key usage, if present, must allow signing */
2279         if (!(ex_kusage & X509v3_KU_DIGITAL_SIGNATURE)) {
2280             SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2281                    SSL_R_ECC_CERT_NOT_FOR_SIGNING);
2282             return 0;
2283         }
2284     }
2285
2286     return 1;                   /* all checks are ok */
2287 }
2288
2289 #endif
2290
2291 static int ssl_get_server_cert_index(const SSL *s)
2292 {
2293     int idx;
2294     idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher);
2295     if (idx == SSL_PKEY_RSA_ENC && !s->cert->pkeys[SSL_PKEY_RSA_ENC].x509)
2296         idx = SSL_PKEY_RSA_SIGN;
2297     if (idx == -1)
2298         SSLerr(SSL_F_SSL_GET_SERVER_CERT_INDEX, ERR_R_INTERNAL_ERROR);
2299     return idx;
2300 }
2301
2302 CERT_PKEY *ssl_get_server_send_pkey(SSL *s)
2303 {
2304     CERT *c;
2305     int i;
2306
2307     c = s->cert;
2308     if (!s->s3 || !s->s3->tmp.new_cipher)
2309         return NULL;
2310     ssl_set_masks(s, s->s3->tmp.new_cipher);
2311
2312 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
2313     /*
2314      * Broken protocol test: return last used certificate: which may mismatch
2315      * the one expected.
2316      */
2317     if (c->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL)
2318         return c->key;
2319 #endif
2320
2321     i = ssl_get_server_cert_index(s);
2322
2323     /* This may or may not be an error. */
2324     if (i < 0)
2325         return NULL;
2326
2327     /* May be NULL. */
2328     return &c->pkeys[i];
2329 }
2330
2331 EVP_PKEY *ssl_get_sign_pkey(SSL *s, const SSL_CIPHER *cipher,
2332                             const EVP_MD **pmd)
2333 {
2334     unsigned long alg_a;
2335     CERT *c;
2336     int idx = -1;
2337
2338     alg_a = cipher->algorithm_auth;
2339     c = s->cert;
2340
2341 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
2342     /*
2343      * Broken protocol test: use last key: which may mismatch the one
2344      * expected.
2345      */
2346     if (c->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL)
2347         idx = c->key - c->pkeys;
2348     else
2349 #endif
2350
2351     if ((alg_a & SSL_aDSS) &&
2352             (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
2353         idx = SSL_PKEY_DSA_SIGN;
2354     else if (alg_a & SSL_aRSA) {
2355         if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
2356             idx = SSL_PKEY_RSA_SIGN;
2357         else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
2358             idx = SSL_PKEY_RSA_ENC;
2359     } else if ((alg_a & SSL_aECDSA) &&
2360                (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
2361         idx = SSL_PKEY_ECC;
2362     if (idx == -1) {
2363         SSLerr(SSL_F_SSL_GET_SIGN_PKEY, ERR_R_INTERNAL_ERROR);
2364         return (NULL);
2365     }
2366     if (pmd)
2367         *pmd = s->s3->tmp.md[idx];
2368     return c->pkeys[idx].privatekey;
2369 }
2370
2371 int ssl_get_server_cert_serverinfo(SSL *s, const unsigned char **serverinfo,
2372                                    size_t *serverinfo_length)
2373 {
2374     CERT *c = NULL;
2375     int i = 0;
2376     *serverinfo_length = 0;
2377
2378     c = s->cert;
2379     i = ssl_get_server_cert_index(s);
2380
2381     if (i == -1)
2382         return 0;
2383     if (c->pkeys[i].serverinfo == NULL)
2384         return 0;
2385
2386     *serverinfo = c->pkeys[i].serverinfo;
2387     *serverinfo_length = c->pkeys[i].serverinfo_length;
2388     return 1;
2389 }
2390
2391 void ssl_update_cache(SSL *s, int mode)
2392 {
2393     int i;
2394
2395     /*
2396      * If the session_id_length is 0, we are not supposed to cache it, and it
2397      * would be rather hard to do anyway :-)
2398      */
2399     if (s->session->session_id_length == 0)
2400         return;
2401
2402     i = s->session_ctx->session_cache_mode;
2403     if ((i & mode) && (!s->hit)
2404         && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
2405             || SSL_CTX_add_session(s->session_ctx, s->session))
2406         && (s->session_ctx->new_session_cb != NULL)) {
2407         CRYPTO_add(&s->session->references, 1, CRYPTO_LOCK_SSL_SESSION);
2408         if (!s->session_ctx->new_session_cb(s, s->session))
2409             SSL_SESSION_free(s->session);
2410     }
2411
2412     /* auto flush every 255 connections */
2413     if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && ((i & mode) == mode)) {
2414         if ((((mode & SSL_SESS_CACHE_CLIENT)
2415               ? s->session_ctx->stats.sess_connect_good
2416               : s->session_ctx->stats.sess_accept_good) & 0xff) == 0xff) {
2417             SSL_CTX_flush_sessions(s->session_ctx, (unsigned long)time(NULL));
2418         }
2419     }
2420 }
2421
2422 const SSL_METHOD *SSL_CTX_get_ssl_method(SSL_CTX *ctx)
2423 {
2424     return ctx->method;
2425 }
2426
2427 const SSL_METHOD *SSL_get_ssl_method(SSL *s)
2428 {
2429     return (s->method);
2430 }
2431
2432 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
2433 {
2434     int conn = -1;
2435     int ret = 1;
2436
2437     if (s->method != meth) {
2438         if (s->handshake_func != NULL)
2439             conn = (s->handshake_func == s->method->ssl_connect);
2440
2441         if (s->method->version == meth->version)
2442             s->method = meth;
2443         else {
2444             s->method->ssl_free(s);
2445             s->method = meth;
2446             ret = s->method->ssl_new(s);
2447         }
2448
2449         if (conn == 1)
2450             s->handshake_func = meth->ssl_connect;
2451         else if (conn == 0)
2452             s->handshake_func = meth->ssl_accept;
2453     }
2454     return (ret);
2455 }
2456
2457 int SSL_get_error(const SSL *s, int i)
2458 {
2459     int reason;
2460     unsigned long l;
2461     BIO *bio;
2462
2463     if (i > 0)
2464         return (SSL_ERROR_NONE);
2465
2466     /*
2467      * Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
2468      * where we do encode the error
2469      */
2470     if ((l = ERR_peek_error()) != 0) {
2471         if (ERR_GET_LIB(l) == ERR_LIB_SYS)
2472             return (SSL_ERROR_SYSCALL);
2473         else
2474             return (SSL_ERROR_SSL);
2475     }
2476
2477     if ((i < 0) && SSL_want_read(s)) {
2478         bio = SSL_get_rbio(s);
2479         if (BIO_should_read(bio))
2480             return (SSL_ERROR_WANT_READ);
2481         else if (BIO_should_write(bio))
2482             /*
2483              * This one doesn't make too much sense ... We never try to write
2484              * to the rbio, and an application program where rbio and wbio
2485              * are separate couldn't even know what it should wait for.
2486              * However if we ever set s->rwstate incorrectly (so that we have
2487              * SSL_want_read(s) instead of SSL_want_write(s)) and rbio and
2488              * wbio *are* the same, this test works around that bug; so it
2489              * might be safer to keep it.
2490              */
2491             return (SSL_ERROR_WANT_WRITE);
2492         else if (BIO_should_io_special(bio)) {
2493             reason = BIO_get_retry_reason(bio);
2494             if (reason == BIO_RR_CONNECT)
2495                 return (SSL_ERROR_WANT_CONNECT);
2496             else if (reason == BIO_RR_ACCEPT)
2497                 return (SSL_ERROR_WANT_ACCEPT);
2498             else
2499                 return (SSL_ERROR_SYSCALL); /* unknown */
2500         }
2501     }
2502
2503     if ((i < 0) && SSL_want_write(s)) {
2504         bio = SSL_get_wbio(s);
2505         if (BIO_should_write(bio))
2506             return (SSL_ERROR_WANT_WRITE);
2507         else if (BIO_should_read(bio))
2508             /*
2509              * See above (SSL_want_read(s) with BIO_should_write(bio))
2510              */
2511             return (SSL_ERROR_WANT_READ);
2512         else if (BIO_should_io_special(bio)) {
2513             reason = BIO_get_retry_reason(bio);
2514             if (reason == BIO_RR_CONNECT)
2515                 return (SSL_ERROR_WANT_CONNECT);
2516             else if (reason == BIO_RR_ACCEPT)
2517                 return (SSL_ERROR_WANT_ACCEPT);
2518             else
2519                 return (SSL_ERROR_SYSCALL);
2520         }
2521     }
2522     if ((i < 0) && SSL_want_x509_lookup(s)) {
2523         return (SSL_ERROR_WANT_X509_LOOKUP);
2524     }
2525     if ((i < 0) && SSL_want_async(s)) {
2526         return SSL_ERROR_WANT_ASYNC;
2527     }
2528
2529     if (i == 0) {
2530         if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
2531             (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
2532             return (SSL_ERROR_ZERO_RETURN);
2533     }
2534     return (SSL_ERROR_SYSCALL);
2535 }
2536
2537 int SSL_do_handshake(SSL *s)
2538 {
2539     int ret = 1;
2540
2541     if (s->handshake_func == NULL) {
2542         SSLerr(SSL_F_SSL_DO_HANDSHAKE, SSL_R_CONNECTION_TYPE_NOT_SET);
2543         return (-1);
2544     }
2545
2546     s->method->ssl_renegotiate_check(s);
2547
2548     if (SSL_in_init(s) || SSL_in_before(s)) {
2549         ret = s->handshake_func(s);
2550     }
2551     return (ret);
2552 }
2553
2554 void SSL_set_accept_state(SSL *s)
2555 {
2556     s->server = 1;
2557     s->shutdown = 0;
2558     ossl_statem_clear(s);
2559     s->handshake_func = s->method->ssl_accept;
2560     clear_ciphers(s);
2561 }
2562
2563 void SSL_set_connect_state(SSL *s)
2564 {
2565     s->server = 0;
2566     s->shutdown = 0;
2567     ossl_statem_clear(s);
2568     s->handshake_func = s->method->ssl_connect;
2569     clear_ciphers(s);
2570 }
2571
2572 int ssl_undefined_function(SSL *s)
2573 {
2574     SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2575     return (0);
2576 }
2577
2578 int ssl_undefined_void_function(void)
2579 {
2580     SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,
2581            ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2582     return (0);
2583 }
2584
2585 int ssl_undefined_const_function(const SSL *s)
2586 {
2587     return (0);
2588 }
2589
2590 SSL_METHOD *ssl_bad_method(int ver)
2591 {
2592     SSLerr(SSL_F_SSL_BAD_METHOD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2593     return (NULL);
2594 }
2595
2596 const char *SSL_get_version(const SSL *s)
2597 {
2598     if (s->version == TLS1_2_VERSION)
2599         return ("TLSv1.2");
2600     else if (s->version == TLS1_1_VERSION)
2601         return ("TLSv1.1");
2602     else if (s->version == TLS1_VERSION)
2603         return ("TLSv1");
2604     else if (s->version == SSL3_VERSION)
2605         return ("SSLv3");
2606     else if (s->version == DTLS1_BAD_VER)
2607         return ("DTLSv0.9");
2608     else if (s->version == DTLS1_VERSION)
2609         return ("DTLSv1");
2610     else if (s->version == DTLS1_2_VERSION)
2611         return ("DTLSv1.2");
2612     else
2613         return ("unknown");
2614 }
2615
2616 SSL *SSL_dup(SSL *s)
2617 {
2618     STACK_OF(X509_NAME) *sk;
2619     X509_NAME *xn;
2620     SSL *ret;
2621     int i;
2622
2623     if ((ret = SSL_new(SSL_get_SSL_CTX(s))) == NULL)
2624         return (NULL);
2625
2626     ret->version = s->version;
2627     ret->method = s->method;
2628
2629     if (s->session != NULL) {
2630         /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2631         if (!SSL_copy_session_id(ret, s))
2632             goto err;
2633     } else {
2634         /*
2635          * No session has been established yet, so we have to expect that
2636          * s->cert or ret->cert will be changed later -- they should not both
2637          * point to the same object, and thus we can't use
2638          * SSL_copy_session_id.
2639          */
2640
2641         ret->method->ssl_free(ret);
2642         ret->method = s->method;
2643         ret->method->ssl_new(ret);
2644
2645         if (s->cert != NULL) {
2646             ssl_cert_free(ret->cert);
2647             ret->cert = ssl_cert_dup(s->cert);
2648             if (ret->cert == NULL)
2649                 goto err;
2650         }
2651
2652         if (!SSL_set_session_id_context(ret, s->sid_ctx, s->sid_ctx_length))
2653             goto err;
2654     }
2655
2656     ret->options = s->options;
2657     ret->mode = s->mode;
2658     SSL_set_max_cert_list(ret, SSL_get_max_cert_list(s));
2659     SSL_set_read_ahead(ret, SSL_get_read_ahead(s));
2660     ret->msg_callback = s->msg_callback;
2661     ret->msg_callback_arg = s->msg_callback_arg;
2662     SSL_set_verify(ret, SSL_get_verify_mode(s), SSL_get_verify_callback(s));
2663     SSL_set_verify_depth(ret, SSL_get_verify_depth(s));
2664     ret->generate_session_id = s->generate_session_id;
2665
2666     SSL_set_info_callback(ret, SSL_get_info_callback(s));
2667
2668     ret->debug = s->debug;
2669
2670     /* copy app data, a little dangerous perhaps */
2671     if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
2672         goto err;
2673
2674     /* setup rbio, and wbio */
2675     if (s->rbio != NULL) {
2676         if (!BIO_dup_state(s->rbio, (char *)&ret->rbio))
2677             goto err;
2678     }
2679     if (s->wbio != NULL) {
2680         if (s->wbio != s->rbio) {
2681             if (!BIO_dup_state(s->wbio, (char *)&ret->wbio))
2682                 goto err;
2683         } else
2684             ret->wbio = ret->rbio;
2685     }
2686     ret->rwstate = s->rwstate;
2687     ret->handshake_func = s->handshake_func;
2688     ret->server = s->server;
2689     ret->renegotiate = s->renegotiate;
2690     ret->new_session = s->new_session;
2691     ret->quiet_shutdown = s->quiet_shutdown;
2692     ret->shutdown = s->shutdown;
2693     ret->statem = s->statem;      /* SSL_dup does not really work at any state,
2694                                    * though */
2695     RECORD_LAYER_dup(&ret->rlayer, &s->rlayer);
2696     ret->init_num = 0;          /* would have to copy ret->init_buf,
2697                                  * ret->init_msg, ret->init_num,
2698                                  * ret->init_off */
2699     ret->hit = s->hit;
2700
2701     ret->default_passwd_callback = s->default_passwd_callback;
2702     ret->default_passwd_callback_userdata = s->default_passwd_callback_userdata;
2703
2704     X509_VERIFY_PARAM_inherit(ret->param, s->param);
2705
2706     /* dup the cipher_list and cipher_list_by_id stacks */
2707     if (s->cipher_list != NULL) {
2708         if ((ret->cipher_list = sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
2709             goto err;
2710     }
2711     if (s->cipher_list_by_id != NULL)
2712         if ((ret->cipher_list_by_id = sk_SSL_CIPHER_dup(s->cipher_list_by_id))
2713             == NULL)
2714             goto err;
2715
2716     /* Dup the client_CA list */
2717     if (s->client_CA != NULL) {
2718         if ((sk = sk_X509_NAME_dup(s->client_CA)) == NULL)
2719             goto err;
2720         ret->client_CA = sk;
2721         for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2722             xn = sk_X509_NAME_value(sk, i);
2723             if (sk_X509_NAME_set(sk, i, X509_NAME_dup(xn)) == NULL) {
2724                 X509_NAME_free(xn);
2725                 goto err;
2726             }
2727         }
2728     }
2729     return ret;
2730
2731  err:
2732     SSL_free(ret);
2733     return NULL;
2734 }
2735
2736 void ssl_clear_cipher_ctx(SSL *s)
2737 {
2738     if (s->enc_read_ctx != NULL) {
2739         EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
2740         OPENSSL_free(s->enc_read_ctx);
2741         s->enc_read_ctx = NULL;
2742     }
2743     if (s->enc_write_ctx != NULL) {
2744         EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2745         OPENSSL_free(s->enc_write_ctx);
2746         s->enc_write_ctx = NULL;
2747     }
2748 #ifndef OPENSSL_NO_COMP
2749     COMP_CTX_free(s->expand);
2750     s->expand = NULL;
2751     COMP_CTX_free(s->compress);
2752     s->compress = NULL;
2753 #endif
2754 }
2755
2756 X509 *SSL_get_certificate(const SSL *s)
2757 {
2758     if (s->cert != NULL)
2759         return (s->cert->key->x509);
2760     else
2761         return (NULL);
2762 }
2763
2764 EVP_PKEY *SSL_get_privatekey(const SSL *s)
2765 {
2766     if (s->cert != NULL)
2767         return (s->cert->key->privatekey);
2768     else
2769         return (NULL);
2770 }
2771
2772 X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx)
2773 {
2774     if (ctx->cert != NULL)
2775         return ctx->cert->key->x509;
2776     else
2777         return NULL;
2778 }
2779
2780 EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx)
2781 {
2782     if (ctx->cert != NULL)
2783         return ctx->cert->key->privatekey;
2784     else
2785         return NULL;
2786 }
2787
2788 const SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
2789 {
2790     if ((s->session != NULL) && (s->session->cipher != NULL))
2791         return (s->session->cipher);
2792     return (NULL);
2793 }
2794
2795 const COMP_METHOD *SSL_get_current_compression(SSL *s)
2796 {
2797 #ifndef OPENSSL_NO_COMP
2798     return s->compress ? COMP_CTX_get_method(s->compress) : NULL;
2799 #else
2800     return NULL;
2801 #endif
2802 }
2803
2804 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
2805 {
2806 #ifndef OPENSSL_NO_COMP
2807     return s->expand ? COMP_CTX_get_method(s->expand) : NULL;
2808 #else
2809     return NULL;
2810 #endif
2811 }
2812
2813 int ssl_init_wbio_buffer(SSL *s, int push)
2814 {
2815     BIO *bbio;
2816
2817     if (s->bbio == NULL) {
2818         bbio = BIO_new(BIO_f_buffer());
2819         if (bbio == NULL)
2820             return (0);
2821         s->bbio = bbio;
2822     } else {
2823         bbio = s->bbio;
2824         if (s->bbio == s->wbio)
2825             s->wbio = BIO_pop(s->wbio);
2826     }
2827     (void)BIO_reset(bbio);
2828 /*      if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2829     if (!BIO_set_read_buffer_size(bbio, 1)) {
2830         SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER, ERR_R_BUF_LIB);
2831         return (0);
2832     }
2833     if (push) {
2834         if (s->wbio != bbio)
2835             s->wbio = BIO_push(bbio, s->wbio);
2836     } else {
2837         if (s->wbio == bbio)
2838             s->wbio = BIO_pop(bbio);
2839     }
2840     return (1);
2841 }
2842
2843 void ssl_free_wbio_buffer(SSL *s)
2844 {
2845     /* callers ensure s is never null */
2846     if (s->bbio == NULL)
2847         return;
2848
2849     if (s->bbio == s->wbio) {
2850         /* remove buffering */
2851         s->wbio = BIO_pop(s->wbio);
2852 #ifdef REF_CHECK                /* not the usual REF_CHECK, but this avoids
2853                                  * adding one more preprocessor symbol */
2854         assert(s->wbio != NULL);
2855 #endif
2856     }
2857     BIO_free(s->bbio);
2858     s->bbio = NULL;
2859 }
2860
2861 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
2862 {
2863     ctx->quiet_shutdown = mode;
2864 }
2865
2866 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
2867 {
2868     return (ctx->quiet_shutdown);
2869 }
2870
2871 void SSL_set_quiet_shutdown(SSL *s, int mode)
2872 {
2873     s->quiet_shutdown = mode;
2874 }
2875
2876 int SSL_get_quiet_shutdown(const SSL *s)
2877 {
2878     return (s->quiet_shutdown);
2879 }
2880
2881 void SSL_set_shutdown(SSL *s, int mode)
2882 {
2883     s->shutdown = mode;
2884 }
2885
2886 int SSL_get_shutdown(const SSL *s)
2887 {
2888     return (s->shutdown);
2889 }
2890
2891 int SSL_version(const SSL *s)
2892 {
2893     return (s->version);
2894 }
2895
2896 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
2897 {
2898     return (ssl->ctx);
2899 }
2900
2901 SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx)
2902 {
2903     CERT *new_cert;
2904     if (ssl->ctx == ctx)
2905         return ssl->ctx;
2906     if (ctx == NULL)
2907         ctx = ssl->initial_ctx;
2908     new_cert = ssl_cert_dup(ctx->cert);
2909     if (new_cert == NULL) {
2910         return NULL;
2911     }
2912     ssl_cert_free(ssl->cert);
2913     ssl->cert = new_cert;
2914
2915     /*
2916      * Program invariant: |sid_ctx| has fixed size (SSL_MAX_SID_CTX_LENGTH),
2917      * so setter APIs must prevent invalid lengths from entering the system.
2918      */
2919     OPENSSL_assert(ssl->sid_ctx_length <= sizeof(ssl->sid_ctx));
2920
2921     /*
2922      * If the session ID context matches that of the parent SSL_CTX,
2923      * inherit it from the new SSL_CTX as well. If however the context does
2924      * not match (i.e., it was set per-ssl with SSL_set_session_id_context),
2925      * leave it unchanged.
2926      */
2927     if ((ssl->ctx != NULL) &&
2928         (ssl->sid_ctx_length == ssl->ctx->sid_ctx_length) &&
2929         (memcmp(ssl->sid_ctx, ssl->ctx->sid_ctx, ssl->sid_ctx_length) == 0)) {
2930         ssl->sid_ctx_length = ctx->sid_ctx_length;
2931         memcpy(&ssl->sid_ctx, &ctx->sid_ctx, sizeof(ssl->sid_ctx));
2932     }
2933
2934     CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
2935     SSL_CTX_free(ssl->ctx); /* decrement reference count */
2936     ssl->ctx = ctx;
2937
2938     return (ssl->ctx);
2939 }
2940
2941 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
2942 {
2943     return (X509_STORE_set_default_paths(ctx->cert_store));
2944 }
2945
2946 int SSL_CTX_set_default_verify_dir(SSL_CTX *ctx)
2947 {
2948     X509_LOOKUP *lookup;
2949
2950     lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_hash_dir());
2951     if (lookup == NULL)
2952         return 0;
2953     X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
2954
2955     /* Clear any errors if the default directory does not exist */
2956     ERR_clear_error();
2957
2958     return 1;
2959 }
2960
2961 int SSL_CTX_set_default_verify_file(SSL_CTX *ctx)
2962 {
2963     X509_LOOKUP *lookup;
2964
2965     lookup = X509_STORE_add_lookup(ctx->cert_store, X509_LOOKUP_file());
2966     if (lookup == NULL)
2967         return 0;
2968
2969     X509_LOOKUP_load_file(lookup, NULL, X509_FILETYPE_DEFAULT);
2970
2971     /* Clear any errors if the default file does not exist */
2972     ERR_clear_error();
2973
2974     return 1;
2975 }
2976
2977 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
2978                                   const char *CApath)
2979 {
2980     return (X509_STORE_load_locations(ctx->cert_store, CAfile, CApath));
2981 }
2982
2983 void SSL_set_info_callback(SSL *ssl,
2984                            void (*cb) (const SSL *ssl, int type, int val))
2985 {
2986     ssl->info_callback = cb;
2987 }
2988
2989 /*
2990  * One compiler (Diab DCC) doesn't like argument names in returned function
2991  * pointer.
2992  */
2993 void (*SSL_get_info_callback(const SSL *ssl)) (const SSL * /* ssl */ ,
2994                                                int /* type */ ,
2995                                                int /* val */ ) {
2996     return ssl->info_callback;
2997 }
2998
2999 void SSL_set_verify_result(SSL *ssl, long arg)
3000 {
3001     ssl->verify_result = arg;
3002 }
3003
3004 long SSL_get_verify_result(const SSL *ssl)
3005 {
3006     return (ssl->verify_result);
3007 }
3008
3009 size_t SSL_get_client_random(const SSL *ssl, unsigned char *out, size_t outlen)
3010 {
3011     if (outlen == 0)
3012         return sizeof(ssl->s3->client_random);
3013     if (outlen > sizeof(ssl->s3->client_random))
3014         outlen = sizeof(ssl->s3->client_random);
3015     memcpy(out, ssl->s3->client_random, outlen);
3016     return outlen;
3017 }
3018
3019 size_t SSL_get_server_random(const SSL *ssl, unsigned char *out, size_t outlen)
3020 {
3021     if (outlen == 0)
3022         return sizeof(ssl->s3->server_random);
3023     if (outlen > sizeof(ssl->s3->server_random))
3024         outlen = sizeof(ssl->s3->server_random);
3025     memcpy(out, ssl->s3->server_random, outlen);
3026     return outlen;
3027 }
3028
3029 size_t SSL_SESSION_get_master_key(const SSL_SESSION *session,
3030                                unsigned char *out, size_t outlen)
3031 {
3032     if (session->master_key_length < 0) {
3033         /* Should never happen */
3034         return 0;
3035     }
3036     if (outlen == 0)
3037         return session->master_key_length;
3038     if (outlen > (size_t)session->master_key_length)
3039         outlen = session->master_key_length;
3040     memcpy(out, session->master_key, outlen);
3041     return outlen;
3042 }
3043
3044 int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
3045                          CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
3046 {
3047     return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp,
3048                                    new_func, dup_func, free_func);
3049 }
3050
3051 int SSL_set_ex_data(SSL *s, int idx, void *arg)
3052 {
3053     return (CRYPTO_set_ex_data(&s->ex_data, idx, arg));
3054 }
3055
3056 void *SSL_get_ex_data(const SSL *s, int idx)
3057 {
3058     return (CRYPTO_get_ex_data(&s->ex_data, idx));
3059 }
3060
3061 int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
3062                              CRYPTO_EX_dup *dup_func,
3063                              CRYPTO_EX_free *free_func)
3064 {
3065     return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp,
3066                                    new_func, dup_func, free_func);
3067 }
3068
3069 int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
3070 {
3071     return (CRYPTO_set_ex_data(&s->ex_data, idx, arg));
3072 }
3073
3074 void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
3075 {
3076     return (CRYPTO_get_ex_data(&s->ex_data, idx));
3077 }
3078
3079 int ssl_ok(SSL *s)
3080 {
3081     return (1);
3082 }
3083
3084 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
3085 {
3086     return (ctx->cert_store);
3087 }
3088
3089 void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
3090 {
3091     X509_STORE_free(ctx->cert_store);
3092     ctx->cert_store = store;
3093 }
3094
3095 int SSL_want(const SSL *s)
3096 {
3097     return (s->rwstate);
3098 }
3099
3100 /**
3101  * \brief Set the callback for generating temporary RSA keys.
3102  * \param ctx the SSL context.
3103  * \param cb the callback
3104  */
3105
3106 #ifndef OPENSSL_NO_RSA
3107 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, RSA *(*cb) (SSL *ssl,
3108                                                             int is_export,
3109                                                             int keylength))
3110 {
3111     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_RSA_CB, (void (*)(void))cb);
3112 }
3113
3114 void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb) (SSL *ssl,
3115                                                     int is_export,
3116                                                     int keylength))
3117 {
3118     SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_RSA_CB, (void (*)(void))cb);
3119 }
3120 #endif
3121
3122 #ifdef DOXYGEN
3123 /**
3124  * \brief The RSA temporary key callback function.
3125  * \param ssl the SSL session.
3126  * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
3127  * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
3128  * of the required key in bits.
3129  * \return the temporary RSA key.
3130  * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
3131  */
3132
3133 RSA *cb(SSL *ssl, int is_export, int keylength)
3134 {
3135 }
3136 #endif
3137
3138 /**
3139  * \brief Set the callback for generating temporary DH keys.
3140  * \param ctx the SSL context.
3141  * \param dh the callback
3142  */
3143
3144 #ifndef OPENSSL_NO_DH
3145 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
3146                                  DH *(*dh) (SSL *ssl, int is_export,
3147                                             int keylength))
3148 {
3149     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3150 }
3151
3152 void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*dh) (SSL *ssl, int is_export,
3153                                                   int keylength))
3154 {
3155     SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3156 }
3157 #endif
3158
3159 #ifndef OPENSSL_NO_EC
3160 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,
3161                                    EC_KEY *(*ecdh) (SSL *ssl, int is_export,
3162                                                     int keylength))
3163 {
3164     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_ECDH_CB,
3165                           (void (*)(void))ecdh);
3166 }
3167
3168 void SSL_set_tmp_ecdh_callback(SSL *ssl,
3169                                EC_KEY *(*ecdh) (SSL *ssl, int is_export,
3170                                                 int keylength))
3171 {
3172     SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_ECDH_CB, (void (*)(void))ecdh);
3173 }
3174 #endif
3175
3176 #ifndef OPENSSL_NO_PSK
3177 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
3178 {
3179     if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3180         SSLerr(SSL_F_SSL_CTX_USE_PSK_IDENTITY_HINT,
3181                SSL_R_DATA_LENGTH_TOO_LONG);
3182         return 0;
3183     }
3184     OPENSSL_free(ctx->cert->psk_identity_hint);
3185     if (identity_hint != NULL) {
3186         ctx->cert->psk_identity_hint = BUF_strdup(identity_hint);
3187         if (ctx->cert->psk_identity_hint == NULL)
3188             return 0;
3189     } else
3190         ctx->cert->psk_identity_hint = NULL;
3191     return 1;
3192 }
3193
3194 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
3195 {
3196     if (s == NULL)
3197         return 0;
3198
3199     if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3200         SSLerr(SSL_F_SSL_USE_PSK_IDENTITY_HINT, SSL_R_DATA_LENGTH_TOO_LONG);
3201         return 0;
3202     }
3203     OPENSSL_free(s->cert->psk_identity_hint);
3204     if (identity_hint != NULL) {
3205         s->cert->psk_identity_hint = BUF_strdup(identity_hint);
3206         if (s->cert->psk_identity_hint == NULL)
3207             return 0;
3208     } else
3209         s->cert->psk_identity_hint = NULL;
3210     return 1;
3211 }
3212
3213 const char *SSL_get_psk_identity_hint(const SSL *s)
3214 {
3215     if (s == NULL || s->session == NULL)
3216         return NULL;
3217     return (s->session->psk_identity_hint);
3218 }
3219
3220 const char *SSL_get_psk_identity(const SSL *s)
3221 {
3222     if (s == NULL || s->session == NULL)
3223         return NULL;
3224     return (s->session->psk_identity);
3225 }
3226
3227 void SSL_set_psk_client_callback(SSL *s,
3228                                  unsigned int (*cb) (SSL *ssl,
3229                                                      const char *hint,
3230                                                      char *identity,
3231                                                      unsigned int
3232                                                      max_identity_len,
3233                                                      unsigned char *psk,
3234                                                      unsigned int
3235                                                      max_psk_len))
3236 {
3237     s->psk_client_callback = cb;
3238 }
3239
3240 void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx,
3241                                      unsigned int (*cb) (SSL *ssl,
3242                                                          const char *hint,
3243                                                          char *identity,
3244                                                          unsigned int
3245                                                          max_identity_len,
3246                                                          unsigned char *psk,
3247                                                          unsigned int
3248                                                          max_psk_len))
3249 {
3250     ctx->psk_client_callback = cb;
3251 }
3252
3253 void SSL_set_psk_server_callback(SSL *s,
3254                                  unsigned int (*cb) (SSL *ssl,
3255                                                      const char *identity,
3256                                                      unsigned char *psk,
3257                                                      unsigned int
3258                                                      max_psk_len))
3259 {
3260     s->psk_server_callback = cb;
3261 }
3262
3263 void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx,
3264                                      unsigned int (*cb) (SSL *ssl,
3265                                                          const char *identity,
3266                                                          unsigned char *psk,
3267                                                          unsigned int
3268                                                          max_psk_len))
3269 {
3270     ctx->psk_server_callback = cb;
3271 }
3272 #endif
3273
3274 void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
3275                               void (*cb) (int write_p, int version,
3276                                           int content_type, const void *buf,
3277                                           size_t len, SSL *ssl, void *arg))
3278 {
3279     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3280 }
3281
3282 void SSL_set_msg_callback(SSL *ssl,
3283                           void (*cb) (int write_p, int version,
3284                                       int content_type, const void *buf,
3285                                       size_t len, SSL *ssl, void *arg))
3286 {
3287     SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3288 }
3289
3290 void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
3291                                                 int (*cb) (SSL *ssl,
3292                                                            int
3293                                                            is_forward_secure))
3294 {
3295     SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
3296                           (void (*)(void))cb);
3297 }
3298
3299 void SSL_set_not_resumable_session_callback(SSL *ssl,
3300                                             int (*cb) (SSL *ssl,
3301                                                        int is_forward_secure))
3302 {
3303     SSL_callback_ctrl(ssl, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
3304                       (void (*)(void))cb);
3305 }
3306
3307 /*
3308  * Allocates new EVP_MD_CTX and sets pointer to it into given pointer
3309  * vairable, freeing EVP_MD_CTX previously stored in that variable, if any.
3310  * If EVP_MD pointer is passed, initializes ctx with this md Returns newly
3311  * allocated ctx;
3312  */
3313
3314 EVP_MD_CTX *ssl_replace_hash(EVP_MD_CTX **hash, const EVP_MD *md)
3315 {
3316     ssl_clear_hash_ctx(hash);
3317     *hash = EVP_MD_CTX_create();
3318     if (*hash == NULL || (md && EVP_DigestInit_ex(*hash, md, NULL) <= 0)) {
3319         EVP_MD_CTX_destroy(*hash);
3320         *hash = NULL;
3321         return NULL;
3322     }
3323     return *hash;
3324 }
3325
3326 void ssl_clear_hash_ctx(EVP_MD_CTX **hash)
3327 {
3328
3329     if (*hash)
3330         EVP_MD_CTX_destroy(*hash);
3331     *hash = NULL;
3332 }
3333
3334 /* Retrieve handshake hashes */
3335 int ssl_handshake_hash(SSL *s, unsigned char *out, int outlen)
3336 {
3337     unsigned char *p = out;
3338     int idx, ret = 0;
3339     long mask;
3340     EVP_MD_CTX ctx;
3341     const EVP_MD *md;
3342     EVP_MD_CTX_init(&ctx);
3343     for (idx = 0; ssl_get_handshake_digest(idx, &mask, &md); idx++) {
3344         if (mask & ssl_get_algorithm2(s)) {
3345             int hashsize = EVP_MD_size(md);
3346             EVP_MD_CTX *hdgst = s->s3->handshake_dgst[idx];
3347             if (!hdgst || hashsize < 0 || hashsize > outlen)
3348                 goto err;
3349             if (!EVP_MD_CTX_copy_ex(&ctx, hdgst))
3350                 goto err;
3351             if (!EVP_DigestFinal_ex(&ctx, p, NULL))
3352                 goto err;
3353             p += hashsize;
3354             outlen -= hashsize;
3355         }
3356     }
3357     ret = p - out;
3358  err:
3359     EVP_MD_CTX_cleanup(&ctx);
3360     return ret;
3361 }
3362
3363 void SSL_set_debug(SSL *s, int debug)
3364 {
3365     s->debug = debug;
3366 }
3367
3368 int SSL_cache_hit(SSL *s)
3369 {
3370     return s->hit;
3371 }
3372
3373 int SSL_is_server(SSL *s)
3374 {
3375     return s->server;
3376 }
3377
3378 void SSL_set_security_level(SSL *s, int level)
3379 {
3380     s->cert->sec_level = level;
3381 }
3382
3383 int SSL_get_security_level(const SSL *s)
3384 {
3385     return s->cert->sec_level;
3386 }
3387
3388 void SSL_set_security_callback(SSL *s,
3389                                int (*cb) (SSL *s, SSL_CTX *ctx, int op,
3390                                           int bits, int nid, void *other,
3391                                           void *ex))
3392 {
3393     s->cert->sec_cb = cb;
3394 }
3395
3396 int (*SSL_get_security_callback(const SSL *s)) (SSL *s, SSL_CTX *ctx, int op,
3397                                                 int bits, int nid,
3398                                                 void *other, void *ex) {
3399     return s->cert->sec_cb;
3400 }
3401
3402 void SSL_set0_security_ex_data(SSL *s, void *ex)
3403 {
3404     s->cert->sec_ex = ex;
3405 }
3406
3407 void *SSL_get0_security_ex_data(const SSL *s)
3408 {
3409     return s->cert->sec_ex;
3410 }
3411
3412 void SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
3413 {
3414     ctx->cert->sec_level = level;
3415 }
3416
3417 int SSL_CTX_get_security_level(const SSL_CTX *ctx)
3418 {
3419     return ctx->cert->sec_level;
3420 }
3421
3422 void SSL_CTX_set_security_callback(SSL_CTX *ctx,
3423                                    int (*cb) (SSL *s, SSL_CTX *ctx, int op,
3424                                               int bits, int nid, void *other,
3425                                               void *ex))
3426 {
3427     ctx->cert->sec_cb = cb;
3428 }
3429
3430 int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx)) (SSL *s,
3431                                                           SSL_CTX *ctx,
3432                                                           int op, int bits,
3433                                                           int nid,
3434                                                           void *other,
3435                                                           void *ex) {
3436     return ctx->cert->sec_cb;
3437 }
3438
3439 void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex)
3440 {
3441     ctx->cert->sec_ex = ex;
3442 }
3443
3444 void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx)
3445 {
3446     return ctx->cert->sec_ex;
3447 }
3448
3449 IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);