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