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