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