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