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