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