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