2 * ! \file ssl/ssl_lib.c \brief Version independent SSL functions.
4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
25 * Redistribution and use in source and binary forms, with or without
26 * modification, are permitted provided that the following conditions
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)"
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
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.]
60 /* ====================================================================
61 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
63 * Redistribution and use in source and binary forms, with or without
64 * modification, are permitted provided that the following conditions
67 * 1. Redistributions of source code must retain the above copyright
68 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
89 * 6. Redistributions of any form whatsoever must retain the following
91 * "This product includes software developed by the OpenSSL Project
92 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
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 * ====================================================================
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).
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.
118 /* ====================================================================
119 * Copyright 2005 Nokia. All rights reserved.
121 * The portions of the attached software ("Contribution") is developed by
122 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
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.
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.
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.
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
149 #include "ssl_locl.h"
150 #include <openssl/objects.h>
151 #include <openssl/lhash.h>
152 #include <openssl/x509v3.h>
153 #include <openssl/rand.h>
154 #include <openssl/ocsp.h>
155 #ifndef OPENSSL_NO_DH
156 # include <openssl/dh.h>
158 #ifndef OPENSSL_NO_ENGINE
159 # include <openssl/engine.h>
162 const char *SSL_version_str = OPENSSL_VERSION_TEXT;
164 SSL3_ENC_METHOD ssl3_undef_enc_method = {
166 * evil casts, but these functions are only called if there's a library
169 (int (*)(SSL *, int))ssl_undefined_function,
170 (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
171 ssl_undefined_function,
172 (int (*)(SSL *, unsigned char *, unsigned char *, int))
173 ssl_undefined_function,
174 (int (*)(SSL *, int))ssl_undefined_function,
175 (int (*)(SSL *, const char *, int, unsigned char *))
176 ssl_undefined_function,
177 0, /* finish_mac_length */
178 (int (*)(SSL *, int, unsigned char *))ssl_undefined_function,
179 NULL, /* client_finished_label */
180 0, /* client_finished_label_len */
181 NULL, /* server_finished_label */
182 0, /* server_finished_label_len */
183 (int (*)(int))ssl_undefined_function,
184 (int (*)(SSL *, unsigned char *, size_t, const char *,
185 size_t, const unsigned char *, size_t,
186 int use_context))ssl_undefined_function,
189 int SSL_clear(SSL *s)
191 if (s->method == NULL) {
192 SSLerr(SSL_F_SSL_CLEAR, SSL_R_NO_METHOD_SPECIFIED);
196 if (ssl_clear_bad_session(s)) {
197 SSL_SESSION_free(s->session);
205 if (s->renegotiate) {
206 SSLerr(SSL_F_SSL_CLEAR, ERR_R_INTERNAL_ERROR);
212 s->state = SSL_ST_BEFORE | ((s->server) ? SSL_ST_ACCEPT : SSL_ST_CONNECT);
214 s->version = s->method->version;
215 s->client_version = s->version;
216 s->rwstate = SSL_NOTHING;
218 BUF_MEM_free(s->init_buf);
220 ssl_clear_cipher_ctx(s);
221 ssl_clear_hash_ctx(&s->read_hash);
222 ssl_clear_hash_ctx(&s->write_hash);
226 * Check to see if we were changed into a different method, if so, revert
227 * back if we are not doing session-id reuse.
229 if (!s->in_handshake && (s->session == NULL)
230 && (s->method != s->ctx->method)) {
231 s->method->ssl_free(s);
232 s->method = s->ctx->method;
233 if (!s->method->ssl_new(s))
236 s->method->ssl_clear(s);
238 RECORD_LAYER_clear(&s->rlayer);
243 /** Used to change an SSL_CTXs default SSL method type */
244 int SSL_CTX_set_ssl_version(SSL_CTX *ctx, const SSL_METHOD *meth)
246 STACK_OF(SSL_CIPHER) *sk;
250 sk = ssl_create_cipher_list(ctx->method, &(ctx->cipher_list),
251 &(ctx->cipher_list_by_id),
252 SSL_DEFAULT_CIPHER_LIST, ctx->cert);
253 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0)) {
254 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,
255 SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
261 SSL *SSL_new(SSL_CTX *ctx)
266 SSLerr(SSL_F_SSL_NEW, SSL_R_NULL_SSL_CTX);
269 if (ctx->method == NULL) {
270 SSLerr(SSL_F_SSL_NEW, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
274 s = OPENSSL_malloc(sizeof(*s));
277 memset(s, 0, sizeof(*s));
279 RECORD_LAYER_init(&s->rlayer, s);
281 s->options = ctx->options;
283 s->max_cert_list = ctx->max_cert_list;
286 * Earlier library versions used to copy the pointer to the CERT, not
287 * its contents; only when setting new parameters for the per-SSL
288 * copy, ssl_cert_new would be called (and the direct reference to
289 * the per-SSL_CTX settings would be lost, but those still were
290 * indirectly accessed for various purposes, and for that reason they
291 * used to be known as s->ctx->default_cert). Now we don't look at the
292 * SSL_CTX's CERT after having duplicated it once.
294 s->cert = ssl_cert_dup(ctx->cert);
298 RECORD_LAYER_set_read_ahead(&s->rlayer, ctx->read_ahead);
299 s->msg_callback = ctx->msg_callback;
300 s->msg_callback_arg = ctx->msg_callback_arg;
301 s->verify_mode = ctx->verify_mode;
302 s->not_resumable_session_cb = ctx->not_resumable_session_cb;
303 s->sid_ctx_length = ctx->sid_ctx_length;
304 OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx);
305 memcpy(&s->sid_ctx, &ctx->sid_ctx, sizeof(s->sid_ctx));
306 s->verify_callback = ctx->default_verify_callback;
307 s->generate_session_id = ctx->generate_session_id;
309 s->param = X509_VERIFY_PARAM_new();
312 X509_VERIFY_PARAM_inherit(s->param, ctx->param);
313 s->quiet_shutdown = ctx->quiet_shutdown;
314 s->max_send_fragment = ctx->max_send_fragment;
316 CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
318 #ifndef OPENSSL_NO_TLSEXT
319 s->tlsext_debug_cb = 0;
320 s->tlsext_debug_arg = NULL;
321 s->tlsext_ticket_expected = 0;
322 s->tlsext_status_type = -1;
323 s->tlsext_status_expected = 0;
324 s->tlsext_ocsp_ids = NULL;
325 s->tlsext_ocsp_exts = NULL;
326 s->tlsext_ocsp_resp = NULL;
327 s->tlsext_ocsp_resplen = -1;
328 CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
329 s->initial_ctx = ctx;
330 # ifndef OPENSSL_NO_EC
331 if (ctx->tlsext_ecpointformatlist) {
332 s->tlsext_ecpointformatlist =
333 BUF_memdup(ctx->tlsext_ecpointformatlist,
334 ctx->tlsext_ecpointformatlist_length);
335 if (!s->tlsext_ecpointformatlist)
337 s->tlsext_ecpointformatlist_length =
338 ctx->tlsext_ecpointformatlist_length;
340 if (ctx->tlsext_ellipticcurvelist) {
341 s->tlsext_ellipticcurvelist =
342 BUF_memdup(ctx->tlsext_ellipticcurvelist,
343 ctx->tlsext_ellipticcurvelist_length);
344 if (!s->tlsext_ellipticcurvelist)
346 s->tlsext_ellipticcurvelist_length =
347 ctx->tlsext_ellipticcurvelist_length;
350 # ifndef OPENSSL_NO_NEXTPROTONEG
351 s->next_proto_negotiated = NULL;
354 if (s->ctx->alpn_client_proto_list) {
355 s->alpn_client_proto_list =
356 OPENSSL_malloc(s->ctx->alpn_client_proto_list_len);
357 if (s->alpn_client_proto_list == NULL)
359 memcpy(s->alpn_client_proto_list, s->ctx->alpn_client_proto_list,
360 s->ctx->alpn_client_proto_list_len);
361 s->alpn_client_proto_list_len = s->ctx->alpn_client_proto_list_len;
365 s->verify_result = X509_V_OK;
367 s->method = ctx->method;
369 if (!s->method->ssl_new(s))
373 s->server = (ctx->method->ssl_accept == ssl_undefined_function) ? 0 : 1;
378 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
380 #ifndef OPENSSL_NO_PSK
381 s->psk_client_callback = ctx->psk_client_callback;
382 s->psk_server_callback = ctx->psk_server_callback;
388 SSLerr(SSL_F_SSL_NEW, ERR_R_MALLOC_FAILURE);
392 int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx,
393 unsigned int sid_ctx_len)
395 if (sid_ctx_len > sizeof ctx->sid_ctx) {
396 SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,
397 SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
400 ctx->sid_ctx_length = sid_ctx_len;
401 memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len);
406 int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,
407 unsigned int sid_ctx_len)
409 if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) {
410 SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,
411 SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
414 ssl->sid_ctx_length = sid_ctx_len;
415 memcpy(ssl->sid_ctx, sid_ctx, sid_ctx_len);
420 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
422 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
423 ctx->generate_session_id = cb;
424 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
428 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
430 CRYPTO_w_lock(CRYPTO_LOCK_SSL);
431 ssl->generate_session_id = cb;
432 CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
436 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
440 * A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
441 * we can "construct" a session to give us the desired check - ie. to
442 * find if there's a session in the hash table that would conflict with
443 * any new session built out of this id/id_len and the ssl_version in use
448 if (id_len > sizeof r.session_id)
451 r.ssl_version = ssl->version;
452 r.session_id_length = id_len;
453 memcpy(r.session_id, id, id_len);
455 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
456 p = lh_SSL_SESSION_retrieve(ssl->ctx->sessions, &r);
457 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
461 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
463 return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
466 int SSL_set_purpose(SSL *s, int purpose)
468 return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
471 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
473 return X509_VERIFY_PARAM_set_trust(s->param, trust);
476 int SSL_set_trust(SSL *s, int trust)
478 return X509_VERIFY_PARAM_set_trust(s->param, trust);
481 int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm)
483 return X509_VERIFY_PARAM_set1(ctx->param, vpm);
486 int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm)
488 return X509_VERIFY_PARAM_set1(ssl->param, vpm);
491 X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx)
496 X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl)
501 void SSL_certs_clear(SSL *s)
503 ssl_cert_clear_certs(s->cert);
506 void SSL_free(SSL *s)
513 i = CRYPTO_add(&s->references, -1, CRYPTO_LOCK_SSL);
521 fprintf(stderr, "SSL_free, bad reference count\n");
526 X509_VERIFY_PARAM_free(s->param);
527 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
529 if (s->bbio != NULL) {
530 /* If the buffering BIO is in place, pop it off */
531 if (s->bbio == s->wbio) {
532 s->wbio = BIO_pop(s->wbio);
537 BIO_free_all(s->rbio);
538 if (s->wbio != s->rbio)
539 BIO_free_all(s->wbio);
541 BUF_MEM_free(s->init_buf);
543 /* add extra stuff */
544 sk_SSL_CIPHER_free(s->cipher_list);
545 sk_SSL_CIPHER_free(s->cipher_list_by_id);
547 /* Make the next call work :-) */
548 if (s->session != NULL) {
549 ssl_clear_bad_session(s);
550 SSL_SESSION_free(s->session);
553 ssl_clear_cipher_ctx(s);
554 ssl_clear_hash_ctx(&s->read_hash);
555 ssl_clear_hash_ctx(&s->write_hash);
557 ssl_cert_free(s->cert);
558 /* Free up if allocated */
560 #ifndef OPENSSL_NO_TLSEXT
561 OPENSSL_free(s->tlsext_hostname);
562 SSL_CTX_free(s->initial_ctx);
563 # ifndef OPENSSL_NO_EC
564 OPENSSL_free(s->tlsext_ecpointformatlist);
565 OPENSSL_free(s->tlsext_ellipticcurvelist);
566 # endif /* OPENSSL_NO_EC */
567 sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts, X509_EXTENSION_free);
568 sk_OCSP_RESPID_pop_free(s->tlsext_ocsp_ids, OCSP_RESPID_free);
569 OPENSSL_free(s->tlsext_ocsp_resp);
570 OPENSSL_free(s->alpn_client_proto_list);
573 sk_X509_NAME_pop_free(s->client_CA, X509_NAME_free);
575 if (s->method != NULL)
576 s->method->ssl_free(s);
578 RECORD_LAYER_release(&s->rlayer);
580 SSL_CTX_free(s->ctx);
582 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
583 OPENSSL_free(s->next_proto_negotiated);
586 #ifndef OPENSSL_NO_SRTP
587 sk_SRTP_PROTECTION_PROFILE_free(s->srtp_profiles);
593 void SSL_set_rbio(SSL *s, BIO *rbio)
596 BIO_free_all(s->rbio);
600 void SSL_set_wbio(SSL *s, BIO *wbio)
603 * If the output buffering BIO is still in place, remove it
605 if (s->bbio != NULL) {
606 if (s->wbio == s->bbio) {
607 s->wbio = s->wbio->next_bio;
608 s->bbio->next_bio = NULL;
611 if (s->wbio != wbio && s->rbio != s->wbio)
612 BIO_free_all(s->wbio);
616 void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
618 SSL_set_wbio(s, wbio);
619 SSL_set_rbio(s, rbio);
622 BIO *SSL_get_rbio(const SSL *s)
627 BIO *SSL_get_wbio(const SSL *s)
632 int SSL_get_fd(const SSL *s)
634 return (SSL_get_rfd(s));
637 int SSL_get_rfd(const SSL *s)
643 r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
649 int SSL_get_wfd(const SSL *s)
655 r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
661 #ifndef OPENSSL_NO_SOCK
662 int SSL_set_fd(SSL *s, int fd)
667 bio = BIO_new(BIO_s_socket());
670 SSLerr(SSL_F_SSL_SET_FD, ERR_R_BUF_LIB);
673 BIO_set_fd(bio, fd, BIO_NOCLOSE);
674 SSL_set_bio(s, bio, bio);
680 int SSL_set_wfd(SSL *s, int fd)
685 if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
686 || ((int)BIO_get_fd(s->rbio, NULL) != fd)) {
687 bio = BIO_new(BIO_s_socket());
690 SSLerr(SSL_F_SSL_SET_WFD, ERR_R_BUF_LIB);
693 BIO_set_fd(bio, fd, BIO_NOCLOSE);
694 SSL_set_bio(s, SSL_get_rbio(s), bio);
696 SSL_set_bio(s, SSL_get_rbio(s), SSL_get_rbio(s));
702 int SSL_set_rfd(SSL *s, int fd)
707 if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
708 || ((int)BIO_get_fd(s->wbio, NULL) != fd)) {
709 bio = BIO_new(BIO_s_socket());
712 SSLerr(SSL_F_SSL_SET_RFD, ERR_R_BUF_LIB);
715 BIO_set_fd(bio, fd, BIO_NOCLOSE);
716 SSL_set_bio(s, bio, SSL_get_wbio(s));
718 SSL_set_bio(s, SSL_get_wbio(s), SSL_get_wbio(s));
725 /* return length of latest Finished message we sent, copy to 'buf' */
726 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
731 ret = s->s3->tmp.finish_md_len;
734 memcpy(buf, s->s3->tmp.finish_md, count);
739 /* return length of latest Finished message we expected, copy to 'buf' */
740 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
745 ret = s->s3->tmp.peer_finish_md_len;
748 memcpy(buf, s->s3->tmp.peer_finish_md, count);
753 int SSL_get_verify_mode(const SSL *s)
755 return (s->verify_mode);
758 int SSL_get_verify_depth(const SSL *s)
760 return X509_VERIFY_PARAM_get_depth(s->param);
763 int (*SSL_get_verify_callback(const SSL *s)) (int, X509_STORE_CTX *) {
764 return (s->verify_callback);
767 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
769 return (ctx->verify_mode);
772 int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
774 return X509_VERIFY_PARAM_get_depth(ctx->param);
777 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx)) (int, X509_STORE_CTX *) {
778 return (ctx->default_verify_callback);
781 void SSL_set_verify(SSL *s, int mode,
782 int (*callback) (int ok, X509_STORE_CTX *ctx))
784 s->verify_mode = mode;
785 if (callback != NULL)
786 s->verify_callback = callback;
789 void SSL_set_verify_depth(SSL *s, int depth)
791 X509_VERIFY_PARAM_set_depth(s->param, depth);
794 void SSL_set_read_ahead(SSL *s, int yes)
796 RECORD_LAYER_set_read_ahead(&s->rlayer, yes);
799 int SSL_get_read_ahead(const SSL *s)
801 return RECORD_LAYER_get_read_ahead(&s->rlayer);
804 int SSL_pending(const SSL *s)
807 * SSL_pending cannot work properly if read-ahead is enabled
808 * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)), and it is
809 * impossible to fix since SSL_pending cannot report errors that may be
810 * observed while scanning the new data. (Note that SSL_pending() is
811 * often used as a boolean value, so we'd better not return -1.)
813 return (s->method->ssl_pending(s));
816 X509 *SSL_get_peer_certificate(const SSL *s)
820 if ((s == NULL) || (s->session == NULL))
823 r = s->session->peer;
828 CRYPTO_add(&r->references, 1, CRYPTO_LOCK_X509);
833 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
837 if ((s == NULL) || (s->session == NULL)
838 || (s->session->sess_cert == NULL))
841 r = s->session->sess_cert->cert_chain;
844 * If we are a client, cert_chain includes the peer's own certificate; if
845 * we are a server, it does not.
852 * Now in theory, since the calling process own 't' it should be safe to
853 * modify. We need to be able to read f without being hassled
855 int SSL_copy_session_id(SSL *t, const SSL *f)
857 /* Do we need to to SSL locking? */
858 if (!SSL_set_session(t, SSL_get_session(f))) {
863 * what if we are setup as SSLv2 but want to talk SSLv3 or vice-versa
865 if (t->method != f->method) {
866 t->method->ssl_free(t); /* cleanup current */
867 t->method = f->method; /* change method */
868 t->method->ssl_new(t); /* setup new */
871 CRYPTO_add(&f->cert->references, 1, CRYPTO_LOCK_SSL_CERT);
872 ssl_cert_free(t->cert);
874 if (!SSL_set_session_id_context(t, f->sid_ctx, f->sid_ctx_length)) {
881 /* Fix this so it checks all the valid key/cert options */
882 int SSL_CTX_check_private_key(const SSL_CTX *ctx)
885 (ctx->cert->key->x509 == NULL)) {
886 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,
887 SSL_R_NO_CERTIFICATE_ASSIGNED);
890 if (ctx->cert->key->privatekey == NULL) {
891 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,
892 SSL_R_NO_PRIVATE_KEY_ASSIGNED);
895 return (X509_check_private_key
896 (ctx->cert->key->x509, ctx->cert->key->privatekey));
899 /* Fix this function so that it takes an optional type parameter */
900 int SSL_check_private_key(const SSL *ssl)
903 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, ERR_R_PASSED_NULL_PARAMETER);
906 if (ssl->cert->key->x509 == NULL) {
907 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, SSL_R_NO_CERTIFICATE_ASSIGNED);
910 if (ssl->cert->key->privatekey == NULL) {
911 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY, SSL_R_NO_PRIVATE_KEY_ASSIGNED);
914 return (X509_check_private_key(ssl->cert->key->x509,
915 ssl->cert->key->privatekey));
918 int SSL_accept(SSL *s)
920 if (s->handshake_func == 0)
921 /* Not properly initialized yet */
922 SSL_set_accept_state(s);
924 return (s->method->ssl_accept(s));
927 int SSL_connect(SSL *s)
929 if (s->handshake_func == 0)
930 /* Not properly initialized yet */
931 SSL_set_connect_state(s);
933 return (s->method->ssl_connect(s));
936 long SSL_get_default_timeout(const SSL *s)
938 return (s->method->get_timeout());
941 int SSL_read(SSL *s, void *buf, int num)
943 if (s->handshake_func == 0) {
944 SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED);
948 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
949 s->rwstate = SSL_NOTHING;
952 return (s->method->ssl_read(s, buf, num));
955 int SSL_peek(SSL *s, void *buf, int num)
957 if (s->handshake_func == 0) {
958 SSLerr(SSL_F_SSL_PEEK, SSL_R_UNINITIALIZED);
962 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) {
965 return (s->method->ssl_peek(s, buf, num));
968 int SSL_write(SSL *s, const void *buf, int num)
970 if (s->handshake_func == 0) {
971 SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED);
975 if (s->shutdown & SSL_SENT_SHUTDOWN) {
976 s->rwstate = SSL_NOTHING;
977 SSLerr(SSL_F_SSL_WRITE, SSL_R_PROTOCOL_IS_SHUTDOWN);
980 return (s->method->ssl_write(s, buf, num));
983 int SSL_shutdown(SSL *s)
986 * Note that this function behaves differently from what one might
987 * expect. Return values are 0 for no success (yet), 1 for success; but
988 * calling it once is usually not enough, even if blocking I/O is used
989 * (see ssl3_shutdown).
992 if (s->handshake_func == 0) {
993 SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);
997 if ((s != NULL) && !SSL_in_init(s))
998 return (s->method->ssl_shutdown(s));
1003 int SSL_renegotiate(SSL *s)
1005 if (s->renegotiate == 0)
1010 return (s->method->ssl_renegotiate(s));
1013 int SSL_renegotiate_abbreviated(SSL *s)
1015 if (s->renegotiate == 0)
1020 return (s->method->ssl_renegotiate(s));
1023 int SSL_renegotiate_pending(SSL *s)
1026 * becomes true when negotiation is requested; false again once a
1027 * handshake has finished
1029 return (s->renegotiate != 0);
1032 long SSL_ctrl(SSL *s, int cmd, long larg, void *parg)
1037 case SSL_CTRL_GET_READ_AHEAD:
1038 return (RECORD_LAYER_get_read_ahead(&s->rlayer));
1039 case SSL_CTRL_SET_READ_AHEAD:
1040 l = RECORD_LAYER_get_read_ahead(&s->rlayer);
1041 RECORD_LAYER_set_read_ahead(&s->rlayer, larg);
1044 case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1045 s->msg_callback_arg = parg;
1048 case SSL_CTRL_OPTIONS:
1049 return (s->options |= larg);
1050 case SSL_CTRL_CLEAR_OPTIONS:
1051 return (s->options &= ~larg);
1053 return (s->mode |= larg);
1054 case SSL_CTRL_CLEAR_MODE:
1055 return (s->mode &= ~larg);
1056 case SSL_CTRL_GET_MAX_CERT_LIST:
1057 return (s->max_cert_list);
1058 case SSL_CTRL_SET_MAX_CERT_LIST:
1059 l = s->max_cert_list;
1060 s->max_cert_list = larg;
1062 case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
1063 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
1065 s->max_send_fragment = larg;
1067 case SSL_CTRL_GET_RI_SUPPORT:
1069 return s->s3->send_connection_binding;
1072 case SSL_CTRL_CERT_FLAGS:
1073 return (s->cert->cert_flags |= larg);
1074 case SSL_CTRL_CLEAR_CERT_FLAGS:
1075 return (s->cert->cert_flags &= ~larg);
1077 case SSL_CTRL_GET_RAW_CIPHERLIST:
1079 if (s->cert->ciphers_raw == NULL)
1081 *(unsigned char **)parg = s->cert->ciphers_raw;
1082 return (int)s->cert->ciphers_rawlen;
1084 return ssl_put_cipher_by_char(s, NULL, NULL);
1085 case SSL_CTRL_GET_EXTMS_SUPPORT:
1086 if (!s->session || SSL_in_init(s) || s->in_handshake)
1088 if (s->session->flags & SSL_SESS_FLAG_EXTMS)
1093 return (s->method->ssl_ctrl(s, cmd, larg, parg));
1097 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp) (void))
1100 case SSL_CTRL_SET_MSG_CALLBACK:
1101 s->msg_callback = (void (*)
1102 (int write_p, int version, int content_type,
1103 const void *buf, size_t len, SSL *ssl,
1108 return (s->method->ssl_callback_ctrl(s, cmd, fp));
1112 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx)
1114 return ctx->sessions;
1117 long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
1120 /* For some cases with ctx == NULL perform syntax checks */
1123 #ifndef OPENSSL_NO_EC
1124 case SSL_CTRL_SET_CURVES_LIST:
1125 return tls1_set_curves_list(NULL, NULL, parg);
1127 case SSL_CTRL_SET_SIGALGS_LIST:
1128 case SSL_CTRL_SET_CLIENT_SIGALGS_LIST:
1129 return tls1_set_sigalgs_list(NULL, parg, 0);
1136 case SSL_CTRL_GET_READ_AHEAD:
1137 return (ctx->read_ahead);
1138 case SSL_CTRL_SET_READ_AHEAD:
1139 l = ctx->read_ahead;
1140 ctx->read_ahead = larg;
1143 case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1144 ctx->msg_callback_arg = parg;
1147 case SSL_CTRL_GET_MAX_CERT_LIST:
1148 return (ctx->max_cert_list);
1149 case SSL_CTRL_SET_MAX_CERT_LIST:
1150 l = ctx->max_cert_list;
1151 ctx->max_cert_list = larg;
1154 case SSL_CTRL_SET_SESS_CACHE_SIZE:
1155 l = ctx->session_cache_size;
1156 ctx->session_cache_size = larg;
1158 case SSL_CTRL_GET_SESS_CACHE_SIZE:
1159 return (ctx->session_cache_size);
1160 case SSL_CTRL_SET_SESS_CACHE_MODE:
1161 l = ctx->session_cache_mode;
1162 ctx->session_cache_mode = larg;
1164 case SSL_CTRL_GET_SESS_CACHE_MODE:
1165 return (ctx->session_cache_mode);
1167 case SSL_CTRL_SESS_NUMBER:
1168 return (lh_SSL_SESSION_num_items(ctx->sessions));
1169 case SSL_CTRL_SESS_CONNECT:
1170 return (ctx->stats.sess_connect);
1171 case SSL_CTRL_SESS_CONNECT_GOOD:
1172 return (ctx->stats.sess_connect_good);
1173 case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
1174 return (ctx->stats.sess_connect_renegotiate);
1175 case SSL_CTRL_SESS_ACCEPT:
1176 return (ctx->stats.sess_accept);
1177 case SSL_CTRL_SESS_ACCEPT_GOOD:
1178 return (ctx->stats.sess_accept_good);
1179 case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
1180 return (ctx->stats.sess_accept_renegotiate);
1181 case SSL_CTRL_SESS_HIT:
1182 return (ctx->stats.sess_hit);
1183 case SSL_CTRL_SESS_CB_HIT:
1184 return (ctx->stats.sess_cb_hit);
1185 case SSL_CTRL_SESS_MISSES:
1186 return (ctx->stats.sess_miss);
1187 case SSL_CTRL_SESS_TIMEOUTS:
1188 return (ctx->stats.sess_timeout);
1189 case SSL_CTRL_SESS_CACHE_FULL:
1190 return (ctx->stats.sess_cache_full);
1191 case SSL_CTRL_OPTIONS:
1192 return (ctx->options |= larg);
1193 case SSL_CTRL_CLEAR_OPTIONS:
1194 return (ctx->options &= ~larg);
1196 return (ctx->mode |= larg);
1197 case SSL_CTRL_CLEAR_MODE:
1198 return (ctx->mode &= ~larg);
1199 case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
1200 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
1202 ctx->max_send_fragment = larg;
1204 case SSL_CTRL_CERT_FLAGS:
1205 return (ctx->cert->cert_flags |= larg);
1206 case SSL_CTRL_CLEAR_CERT_FLAGS:
1207 return (ctx->cert->cert_flags &= ~larg);
1209 return (ctx->method->ssl_ctx_ctrl(ctx, cmd, larg, parg));
1213 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
1216 case SSL_CTRL_SET_MSG_CALLBACK:
1217 ctx->msg_callback = (void (*)
1218 (int write_p, int version, int content_type,
1219 const void *buf, size_t len, SSL *ssl,
1224 return (ctx->method->ssl_ctx_callback_ctrl(ctx, cmd, fp));
1228 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
1236 return ((l > 0) ? 1 : -1);
1239 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER *const *ap,
1240 const SSL_CIPHER *const *bp)
1244 l = (*ap)->id - (*bp)->id;
1248 return ((l > 0) ? 1 : -1);
1251 /** return a STACK of the ciphers available for the SSL and in order of
1253 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
1256 if (s->cipher_list != NULL) {
1257 return (s->cipher_list);
1258 } else if ((s->ctx != NULL) && (s->ctx->cipher_list != NULL)) {
1259 return (s->ctx->cipher_list);
1265 STACK_OF(SSL_CIPHER) *SSL_get1_supported_ciphers(SSL *s)
1267 STACK_OF(SSL_CIPHER) *sk = NULL, *ciphers;
1269 ciphers = SSL_get_ciphers(s);
1272 ssl_set_client_disabled(s);
1273 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1274 const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
1275 if (!ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED)) {
1277 sk = sk_SSL_CIPHER_new_null();
1280 if (!sk_SSL_CIPHER_push(sk, c)) {
1281 sk_SSL_CIPHER_free(sk);
1289 /** return a STACK of the ciphers available for the SSL and in order of
1291 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
1294 if (s->cipher_list_by_id != NULL) {
1295 return (s->cipher_list_by_id);
1296 } else if ((s->ctx != NULL) && (s->ctx->cipher_list_by_id != NULL)) {
1297 return (s->ctx->cipher_list_by_id);
1303 /** The old interface to get the same thing as SSL_get_ciphers() */
1304 const char *SSL_get_cipher_list(const SSL *s, int n)
1307 STACK_OF(SSL_CIPHER) *sk;
1311 sk = SSL_get_ciphers(s);
1312 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
1314 c = sk_SSL_CIPHER_value(sk, n);
1320 /** specify the ciphers to be used by default by the SSL_CTX */
1321 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
1323 STACK_OF(SSL_CIPHER) *sk;
1325 sk = ssl_create_cipher_list(ctx->method, &ctx->cipher_list,
1326 &ctx->cipher_list_by_id, str, ctx->cert);
1328 * ssl_create_cipher_list may return an empty stack if it was unable to
1329 * find a cipher matching the given rule string (for example if the rule
1330 * string specifies a cipher which has been disabled). This is not an
1331 * error as far as ssl_create_cipher_list is concerned, and hence
1332 * ctx->cipher_list and ctx->cipher_list_by_id has been updated.
1336 else if (sk_SSL_CIPHER_num(sk) == 0) {
1337 SSLerr(SSL_F_SSL_CTX_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1343 /** specify the ciphers to be used by the SSL */
1344 int SSL_set_cipher_list(SSL *s, const char *str)
1346 STACK_OF(SSL_CIPHER) *sk;
1348 sk = ssl_create_cipher_list(s->ctx->method, &s->cipher_list,
1349 &s->cipher_list_by_id, str, s->cert);
1350 /* see comment in SSL_CTX_set_cipher_list */
1353 else if (sk_SSL_CIPHER_num(sk) == 0) {
1354 SSLerr(SSL_F_SSL_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1360 /* works well for SSLv2, not so good for SSLv3 */
1361 char *SSL_get_shared_ciphers(const SSL *s, char *buf, int len)
1364 STACK_OF(SSL_CIPHER) *sk;
1368 if ((s->session == NULL) || (s->session->ciphers == NULL) || (len < 2))
1372 sk = s->session->ciphers;
1374 if (sk_SSL_CIPHER_num(sk) == 0)
1377 for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
1380 c = sk_SSL_CIPHER_value(sk, i);
1381 n = strlen(c->name);
1397 int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk,
1399 int (*put_cb) (const SSL_CIPHER *,
1405 int empty_reneg_info_scsv = !s->renegotiate;
1406 /* Set disabled masks for this session */
1407 ssl_set_client_disabled(s);
1413 put_cb = s->method->put_cipher_by_char;
1415 for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
1416 c = sk_SSL_CIPHER_value(sk, i);
1417 /* Skip disabled ciphers */
1418 if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED))
1420 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
1421 if (c->id == SSL3_CK_SCSV) {
1422 if (!empty_reneg_info_scsv)
1425 empty_reneg_info_scsv = 0;
1432 * If p == q, no ciphers; caller indicates an error. Otherwise, add
1436 if (empty_reneg_info_scsv) {
1437 static SSL_CIPHER scsv = {
1438 0, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
1440 j = put_cb(&scsv, p);
1442 #ifdef OPENSSL_RI_DEBUG
1444 "TLS_EMPTY_RENEGOTIATION_INFO_SCSV sent by client\n");
1447 if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) {
1448 static SSL_CIPHER scsv = {
1449 0, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
1451 j = put_cb(&scsv, p);
1459 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, unsigned char *p,
1461 STACK_OF(SSL_CIPHER) **skp)
1463 const SSL_CIPHER *c;
1464 STACK_OF(SSL_CIPHER) *sk;
1468 s->s3->send_connection_binding = 0;
1470 n = ssl_put_cipher_by_char(s, NULL, NULL);
1471 if (n == 0 || (num % n) != 0) {
1472 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
1473 SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
1476 if ((skp == NULL) || (*skp == NULL)) {
1477 sk = sk_SSL_CIPHER_new_null(); /* change perhaps later */
1479 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
1484 sk_SSL_CIPHER_zero(sk);
1487 OPENSSL_free(s->cert->ciphers_raw);
1488 s->cert->ciphers_raw = BUF_memdup(p, num);
1489 if (s->cert->ciphers_raw == NULL) {
1490 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
1493 s->cert->ciphers_rawlen = (size_t)num;
1495 for (i = 0; i < num; i += n) {
1496 /* Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV */
1497 if (s->s3 && (n != 3 || !p[0]) &&
1498 (p[n - 2] == ((SSL3_CK_SCSV >> 8) & 0xff)) &&
1499 (p[n - 1] == (SSL3_CK_SCSV & 0xff))) {
1500 /* SCSV fatal if renegotiating */
1501 if (s->renegotiate) {
1502 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
1503 SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
1504 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
1507 s->s3->send_connection_binding = 1;
1509 #ifdef OPENSSL_RI_DEBUG
1510 fprintf(stderr, "SCSV received by server\n");
1515 /* Check for TLS_FALLBACK_SCSV */
1516 if ((n != 3 || !p[0]) &&
1517 (p[n - 2] == ((SSL3_CK_FALLBACK_SCSV >> 8) & 0xff)) &&
1518 (p[n - 1] == (SSL3_CK_FALLBACK_SCSV & 0xff))) {
1520 * The SCSV indicates that the client previously tried a higher
1521 * version. Fail if the current version is an unexpected
1524 if (!SSL_ctrl(s, SSL_CTRL_CHECK_PROTO_VERSION, 0, NULL)) {
1525 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
1526 SSL_R_INAPPROPRIATE_FALLBACK);
1528 ssl3_send_alert(s, SSL3_AL_FATAL,
1529 SSL_AD_INAPPROPRIATE_FALLBACK);
1536 c = ssl_get_cipher_by_char(s, p);
1539 if (!sk_SSL_CIPHER_push(sk, c)) {
1540 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
1550 if ((skp == NULL) || (*skp == NULL))
1551 sk_SSL_CIPHER_free(sk);
1555 #ifndef OPENSSL_NO_TLSEXT
1556 /** return a servername extension value if provided in Client Hello, or NULL.
1557 * So far, only host_name types are defined (RFC 3546).
1560 const char *SSL_get_servername(const SSL *s, const int type)
1562 if (type != TLSEXT_NAMETYPE_host_name)
1565 return s->session && !s->tlsext_hostname ?
1566 s->session->tlsext_hostname : s->tlsext_hostname;
1569 int SSL_get_servername_type(const SSL *s)
1572 && (!s->tlsext_hostname ? s->session->
1573 tlsext_hostname : s->tlsext_hostname))
1574 return TLSEXT_NAMETYPE_host_name;
1579 * SSL_select_next_proto implements the standard protocol selection. It is
1580 * expected that this function is called from the callback set by
1581 * SSL_CTX_set_next_proto_select_cb. The protocol data is assumed to be a
1582 * vector of 8-bit, length prefixed byte strings. The length byte itself is
1583 * not included in the length. A byte string of length 0 is invalid. No byte
1584 * string may be truncated. The current, but experimental algorithm for
1585 * selecting the protocol is: 1) If the server doesn't support NPN then this
1586 * is indicated to the callback. In this case, the client application has to
1587 * abort the connection or have a default application level protocol. 2) If
1588 * the server supports NPN, but advertises an empty list then the client
1589 * selects the first protcol in its list, but indicates via the API that this
1590 * fallback case was enacted. 3) Otherwise, the client finds the first
1591 * protocol in the server's list that it supports and selects this protocol.
1592 * This is because it's assumed that the server has better information about
1593 * which protocol a client should use. 4) If the client doesn't support any
1594 * of the server's advertised protocols, then this is treated the same as
1595 * case 2. It returns either OPENSSL_NPN_NEGOTIATED if a common protocol was
1596 * found, or OPENSSL_NPN_NO_OVERLAP if the fallback case was reached.
1598 int SSL_select_next_proto(unsigned char **out, unsigned char *outlen,
1599 const unsigned char *server,
1600 unsigned int server_len,
1601 const unsigned char *client,
1602 unsigned int client_len)
1605 const unsigned char *result;
1606 int status = OPENSSL_NPN_UNSUPPORTED;
1609 * For each protocol in server preference order, see if we support it.
1611 for (i = 0; i < server_len;) {
1612 for (j = 0; j < client_len;) {
1613 if (server[i] == client[j] &&
1614 memcmp(&server[i + 1], &client[j + 1], server[i]) == 0) {
1615 /* We found a match */
1616 result = &server[i];
1617 status = OPENSSL_NPN_NEGOTIATED;
1627 /* There's no overlap between our protocols and the server's list. */
1629 status = OPENSSL_NPN_NO_OVERLAP;
1632 *out = (unsigned char *)result + 1;
1633 *outlen = result[0];
1637 # ifndef OPENSSL_NO_NEXTPROTONEG
1639 * SSL_get0_next_proto_negotiated sets *data and *len to point to the
1640 * client's requested protocol for this connection and returns 0. If the
1641 * client didn't request any protocol, then *data is set to NULL. Note that
1642 * the client can request any protocol it chooses. The value returned from
1643 * this function need not be a member of the list of supported protocols
1644 * provided by the callback.
1646 void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
1649 *data = s->next_proto_negotiated;
1653 *len = s->next_proto_negotiated_len;
1658 * SSL_CTX_set_next_protos_advertised_cb sets a callback that is called when
1659 * a TLS server needs a list of supported protocols for Next Protocol
1660 * Negotiation. The returned list must be in wire format. The list is
1661 * returned by setting |out| to point to it and |outlen| to its length. This
1662 * memory will not be modified, but one should assume that the SSL* keeps a
1663 * reference to it. The callback should return SSL_TLSEXT_ERR_OK if it
1664 * wishes to advertise. Otherwise, no such extension will be included in the
1667 void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *ctx,
1668 int (*cb) (SSL *ssl,
1671 unsigned int *outlen,
1672 void *arg), void *arg)
1674 ctx->next_protos_advertised_cb = cb;
1675 ctx->next_protos_advertised_cb_arg = arg;
1679 * SSL_CTX_set_next_proto_select_cb sets a callback that is called when a
1680 * client needs to select a protocol from the server's provided list. |out|
1681 * must be set to point to the selected protocol (which may be within |in|).
1682 * The length of the protocol name must be written into |outlen|. The
1683 * server's advertised protocols are provided in |in| and |inlen|. The
1684 * callback can assume that |in| is syntactically valid. The client must
1685 * select a protocol. It is fatal to the connection if this callback returns
1686 * a value other than SSL_TLSEXT_ERR_OK.
1688 void SSL_CTX_set_next_proto_select_cb(SSL_CTX *ctx,
1689 int (*cb) (SSL *s, unsigned char **out,
1690 unsigned char *outlen,
1691 const unsigned char *in,
1693 void *arg), void *arg)
1695 ctx->next_proto_select_cb = cb;
1696 ctx->next_proto_select_cb_arg = arg;
1701 * SSL_CTX_set_alpn_protos sets the ALPN protocol list on |ctx| to |protos|.
1702 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
1703 * length-prefixed strings). Returns 0 on success.
1705 int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const unsigned char *protos,
1706 unsigned protos_len)
1708 OPENSSL_free(ctx->alpn_client_proto_list);
1709 ctx->alpn_client_proto_list = OPENSSL_malloc(protos_len);
1710 if (!ctx->alpn_client_proto_list)
1712 memcpy(ctx->alpn_client_proto_list, protos, protos_len);
1713 ctx->alpn_client_proto_list_len = protos_len;
1719 * SSL_set_alpn_protos sets the ALPN protocol list on |ssl| to |protos|.
1720 * |protos| must be in wire-format (i.e. a series of non-empty, 8-bit
1721 * length-prefixed strings). Returns 0 on success.
1723 int SSL_set_alpn_protos(SSL *ssl, const unsigned char *protos,
1724 unsigned protos_len)
1726 OPENSSL_free(ssl->alpn_client_proto_list);
1727 ssl->alpn_client_proto_list = OPENSSL_malloc(protos_len);
1728 if (!ssl->alpn_client_proto_list)
1730 memcpy(ssl->alpn_client_proto_list, protos, protos_len);
1731 ssl->alpn_client_proto_list_len = protos_len;
1737 * SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is
1738 * called during ClientHello processing in order to select an ALPN protocol
1739 * from the client's list of offered protocols.
1741 void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
1742 int (*cb) (SSL *ssl,
1743 const unsigned char **out,
1744 unsigned char *outlen,
1745 const unsigned char *in,
1747 void *arg), void *arg)
1749 ctx->alpn_select_cb = cb;
1750 ctx->alpn_select_cb_arg = arg;
1754 * SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from
1755 * |ssl|. On return it sets |*data| to point to |*len| bytes of protocol name
1756 * (not including the leading length-prefix byte). If the server didn't
1757 * respond with a negotiated protocol then |*len| will be zero.
1759 void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
1764 *data = ssl->s3->alpn_selected;
1768 *len = ssl->s3->alpn_selected_len;
1771 #endif /* !OPENSSL_NO_TLSEXT */
1773 int SSL_export_keying_material(SSL *s, unsigned char *out, size_t olen,
1774 const char *label, size_t llen,
1775 const unsigned char *p, size_t plen,
1778 if (s->version < TLS1_VERSION)
1781 return s->method->ssl3_enc->export_keying_material(s, out, olen, label,
1786 static unsigned long ssl_session_hash(const SSL_SESSION *a)
1791 ((unsigned int)a->session_id[0]) |
1792 ((unsigned int)a->session_id[1] << 8L) |
1793 ((unsigned long)a->session_id[2] << 16L) |
1794 ((unsigned long)a->session_id[3] << 24L);
1799 * NB: If this function (or indeed the hash function which uses a sort of
1800 * coarser function than this one) is changed, ensure
1801 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on
1802 * being able to construct an SSL_SESSION that will collide with any existing
1803 * session with a matching session ID.
1805 static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b)
1807 if (a->ssl_version != b->ssl_version)
1809 if (a->session_id_length != b->session_id_length)
1811 return (memcmp(a->session_id, b->session_id, a->session_id_length));
1815 * These wrapper functions should remain rather than redeclaring
1816 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
1817 * variable. The reason is that the functions aren't static, they're exposed
1820 static IMPLEMENT_LHASH_HASH_FN(ssl_session, SSL_SESSION)
1821 static IMPLEMENT_LHASH_COMP_FN(ssl_session, SSL_SESSION)
1823 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
1825 SSL_CTX *ret = NULL;
1828 SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_NULL_SSL_METHOD_PASSED);
1832 if (FIPS_mode() && (meth->version < TLS1_VERSION)) {
1833 SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_ONLY_TLS_ALLOWED_IN_FIPS_MODE);
1837 if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) {
1838 SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
1841 ret = OPENSSL_malloc(sizeof(*ret));
1845 memset(ret, 0, sizeof(*ret));
1849 ret->cert_store = NULL;
1850 ret->session_cache_mode = SSL_SESS_CACHE_SERVER;
1851 ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
1852 ret->session_cache_head = NULL;
1853 ret->session_cache_tail = NULL;
1855 /* We take the system default */
1856 ret->session_timeout = meth->get_timeout();
1858 ret->new_session_cb = 0;
1859 ret->remove_session_cb = 0;
1860 ret->get_session_cb = 0;
1861 ret->generate_session_id = 0;
1863 memset(&ret->stats, 0, sizeof(ret->stats));
1865 ret->references = 1;
1866 ret->quiet_shutdown = 0;
1867 ret->info_callback = NULL;
1868 ret->app_verify_callback = 0;
1869 ret->app_verify_arg = NULL;
1870 ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT;
1871 ret->read_ahead = 0;
1872 ret->msg_callback = 0;
1873 ret->msg_callback_arg = NULL;
1874 ret->verify_mode = SSL_VERIFY_NONE;
1875 ret->sid_ctx_length = 0;
1876 ret->default_verify_callback = NULL;
1877 if ((ret->cert = ssl_cert_new()) == NULL)
1880 ret->default_passwd_callback = 0;
1881 ret->default_passwd_callback_userdata = NULL;
1882 ret->client_cert_cb = 0;
1883 ret->app_gen_cookie_cb = 0;
1884 ret->app_verify_cookie_cb = 0;
1886 ret->sessions = lh_SSL_SESSION_new();
1887 if (ret->sessions == NULL)
1889 ret->cert_store = X509_STORE_new();
1890 if (ret->cert_store == NULL)
1893 if (!ssl_create_cipher_list(ret->method,
1894 &ret->cipher_list, &ret->cipher_list_by_id,
1895 SSL_DEFAULT_CIPHER_LIST, ret->cert)
1896 || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) {
1897 SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_LIBRARY_HAS_NO_CIPHERS);
1901 ret->param = X509_VERIFY_PARAM_new();
1905 if ((ret->md5 = EVP_get_digestbyname("ssl3-md5")) == NULL) {
1906 SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1909 if ((ret->sha1 = EVP_get_digestbyname("ssl3-sha1")) == NULL) {
1910 SSLerr(SSL_F_SSL_CTX_NEW, SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1914 if ((ret->client_CA = sk_X509_NAME_new_null()) == NULL)
1917 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
1919 ret->extra_certs = NULL;
1920 /* No compression for DTLS */
1921 if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
1922 ret->comp_methods = SSL_COMP_get_compression_methods();
1924 ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
1926 #ifndef OPENSSL_NO_TLSEXT
1927 ret->tlsext_servername_callback = 0;
1928 ret->tlsext_servername_arg = NULL;
1929 /* Setup RFC4507 ticket keys */
1930 if ((RAND_bytes(ret->tlsext_tick_key_name, 16) <= 0)
1931 || (RAND_bytes(ret->tlsext_tick_hmac_key, 16) <= 0)
1932 || (RAND_bytes(ret->tlsext_tick_aes_key, 16) <= 0))
1933 ret->options |= SSL_OP_NO_TICKET;
1935 ret->tlsext_status_cb = 0;
1936 ret->tlsext_status_arg = NULL;
1938 # ifndef OPENSSL_NO_NEXTPROTONEG
1939 ret->next_protos_advertised_cb = 0;
1940 ret->next_proto_select_cb = 0;
1943 #ifndef OPENSSL_NO_PSK
1944 ret->psk_identity_hint = NULL;
1945 ret->psk_client_callback = NULL;
1946 ret->psk_server_callback = NULL;
1948 #ifndef OPENSSL_NO_SRP
1949 if (!SSL_CTX_SRP_CTX_init(ret))
1952 #ifndef OPENSSL_NO_ENGINE
1953 ret->client_cert_engine = NULL;
1954 # ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
1955 # define eng_strx(x) #x
1956 # define eng_str(x) eng_strx(x)
1957 /* Use specific client engine automatically... ignore errors */
1960 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
1963 ENGINE_load_builtin_engines();
1964 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
1966 if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
1972 * Default is to connect to non-RI servers. When RI is more widely
1973 * deployed might change this.
1975 ret->options |= SSL_OP_LEGACY_SERVER_CONNECT;
1979 SSLerr(SSL_F_SSL_CTX_NEW, ERR_R_MALLOC_FAILURE);
1985 void SSL_CTX_free(SSL_CTX *a)
1992 i = CRYPTO_add(&a->references, -1, CRYPTO_LOCK_SSL_CTX);
1994 REF_PRINT("SSL_CTX", a);
2000 fprintf(stderr, "SSL_CTX_free, bad reference count\n");
2005 X509_VERIFY_PARAM_free(a->param);
2008 * Free internal session cache. However: the remove_cb() may reference
2009 * the ex_data of SSL_CTX, thus the ex_data store can only be removed
2010 * after the sessions were flushed.
2011 * As the ex_data handling routines might also touch the session cache,
2012 * the most secure solution seems to be: empty (flush) the cache, then
2013 * free ex_data, then finally free the cache.
2014 * (See ticket [openssl.org #212].)
2016 if (a->sessions != NULL)
2017 SSL_CTX_flush_sessions(a, 0);
2019 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
2020 lh_SSL_SESSION_free(a->sessions);
2021 X509_STORE_free(a->cert_store);
2022 sk_SSL_CIPHER_free(a->cipher_list);
2023 sk_SSL_CIPHER_free(a->cipher_list_by_id);
2024 ssl_cert_free(a->cert);
2025 sk_X509_NAME_pop_free(a->client_CA, X509_NAME_free);
2026 sk_X509_pop_free(a->extra_certs, X509_free);
2027 a->comp_methods = NULL;
2028 #ifndef OPENSSL_NO_SRTP
2029 sk_SRTP_PROTECTION_PROFILE_free(a->srtp_profiles);
2031 #ifndef OPENSSL_NO_PSK
2032 OPENSSL_free(a->psk_identity_hint);
2034 #ifndef OPENSSL_NO_SRP
2035 SSL_CTX_SRP_CTX_free(a);
2037 #ifndef OPENSSL_NO_ENGINE
2038 if (a->client_cert_engine)
2039 ENGINE_finish(a->client_cert_engine);
2042 #ifndef OPENSSL_NO_TLSEXT
2043 # ifndef OPENSSL_NO_EC
2044 OPENSSL_free(a->tlsext_ecpointformatlist);
2045 OPENSSL_free(a->tlsext_ellipticcurvelist);
2047 OPENSSL_free(a->alpn_client_proto_list);
2053 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
2055 ctx->default_passwd_callback = cb;
2058 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
2060 ctx->default_passwd_callback_userdata = u;
2063 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
2064 int (*cb) (X509_STORE_CTX *, void *),
2067 ctx->app_verify_callback = cb;
2068 ctx->app_verify_arg = arg;
2071 void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
2072 int (*cb) (int, X509_STORE_CTX *))
2074 ctx->verify_mode = mode;
2075 ctx->default_verify_callback = cb;
2078 void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
2080 X509_VERIFY_PARAM_set_depth(ctx->param, depth);
2083 void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg),
2086 ssl_cert_set_cert_cb(c->cert, cb, arg);
2089 void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg)
2091 ssl_cert_set_cert_cb(s->cert, cb, arg);
2094 void ssl_set_cert_masks(CERT *c, const SSL_CIPHER *cipher)
2097 int rsa_enc, rsa_tmp, rsa_sign, dh_tmp, dh_rsa, dh_dsa, dsa_sign;
2098 int rsa_enc_export, dh_rsa_export, dh_dsa_export;
2099 int rsa_tmp_export, dh_tmp_export, kl;
2100 unsigned long mask_k, mask_a, emask_k, emask_a;
2101 #ifndef OPENSSL_NO_EC
2102 int have_ecc_cert, ecdsa_ok, ecc_pkey_size;
2103 int have_ecdh_tmp, ecdh_ok;
2105 EVP_PKEY *ecc_pkey = NULL;
2106 int signature_nid = 0, pk_nid = 0, md_nid = 0;
2111 kl = SSL_C_EXPORT_PKEYLENGTH(cipher);
2113 #ifndef OPENSSL_NO_RSA
2114 rsa_tmp = (c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
2115 rsa_tmp_export = (c->rsa_tmp_cb != NULL ||
2116 (rsa_tmp && RSA_size(c->rsa_tmp) * 8 <= kl));
2118 rsa_tmp = rsa_tmp_export = 0;
2120 #ifndef OPENSSL_NO_DH
2121 dh_tmp = (c->dh_tmp != NULL || c->dh_tmp_cb != NULL || c->dh_tmp_auto);
2122 dh_tmp_export = !c->dh_tmp_auto && (c->dh_tmp_cb != NULL ||
2124 && DH_size(c->dh_tmp) * 8 <= kl));
2126 dh_tmp = dh_tmp_export = 0;
2129 #ifndef OPENSSL_NO_EC
2130 have_ecdh_tmp = (c->ecdh_tmp || c->ecdh_tmp_cb || c->ecdh_tmp_auto);
2132 cpk = &(c->pkeys[SSL_PKEY_RSA_ENC]);
2133 rsa_enc = cpk->valid_flags & CERT_PKEY_VALID;
2134 rsa_enc_export = (rsa_enc && EVP_PKEY_size(cpk->privatekey) * 8 <= kl);
2135 cpk = &(c->pkeys[SSL_PKEY_RSA_SIGN]);
2136 rsa_sign = cpk->valid_flags & CERT_PKEY_SIGN;
2137 cpk = &(c->pkeys[SSL_PKEY_DSA_SIGN]);
2138 dsa_sign = cpk->valid_flags & CERT_PKEY_SIGN;
2139 cpk = &(c->pkeys[SSL_PKEY_DH_RSA]);
2140 dh_rsa = cpk->valid_flags & CERT_PKEY_VALID;
2141 dh_rsa_export = (dh_rsa && EVP_PKEY_size(cpk->privatekey) * 8 <= kl);
2142 cpk = &(c->pkeys[SSL_PKEY_DH_DSA]);
2143 /* FIX THIS EAY EAY EAY */
2144 dh_dsa = cpk->valid_flags & CERT_PKEY_VALID;
2145 dh_dsa_export = (dh_dsa && EVP_PKEY_size(cpk->privatekey) * 8 <= kl);
2146 cpk = &(c->pkeys[SSL_PKEY_ECC]);
2147 #ifndef OPENSSL_NO_EC
2148 have_ecc_cert = cpk->valid_flags & CERT_PKEY_VALID;
2157 "rt=%d rte=%d dht=%d ecdht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
2158 rsa_tmp, rsa_tmp_export, dh_tmp, have_ecdh_tmp, rsa_enc,
2159 rsa_enc_export, rsa_sign, dsa_sign, dh_rsa, dh_dsa);
2162 cpk = &(c->pkeys[SSL_PKEY_GOST01]);
2163 if (cpk->x509 != NULL && cpk->privatekey != NULL) {
2164 mask_k |= SSL_kGOST;
2165 mask_a |= SSL_aGOST01;
2167 cpk = &(c->pkeys[SSL_PKEY_GOST94]);
2168 if (cpk->x509 != NULL && cpk->privatekey != NULL) {
2169 mask_k |= SSL_kGOST;
2170 mask_a |= SSL_aGOST94;
2173 if (rsa_enc || (rsa_tmp && rsa_sign))
2175 if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
2176 emask_k |= SSL_kRSA;
2179 emask_k |= SSL_kDHE;
2187 emask_k |= SSL_kDHr;
2192 emask_k |= SSL_kDHd;
2194 if (emask_k & (SSL_kDHr | SSL_kDHd))
2197 if (rsa_enc || rsa_sign) {
2199 emask_a |= SSL_aRSA;
2204 emask_a |= SSL_aDSS;
2207 mask_a |= SSL_aNULL;
2208 emask_a |= SSL_aNULL;
2211 * An ECC certificate may be usable for ECDH and/or ECDSA cipher suites
2212 * depending on the key usage extension.
2214 #ifndef OPENSSL_NO_EC
2215 if (have_ecc_cert) {
2216 cpk = &c->pkeys[SSL_PKEY_ECC];
2218 /* This call populates extension flags (ex_flags) */
2219 X509_check_purpose(x, -1, 0);
2220 ecdh_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
2221 (x->ex_kusage & X509v3_KU_KEY_AGREEMENT) : 1;
2222 ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
2223 (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) : 1;
2224 if (!(cpk->valid_flags & CERT_PKEY_SIGN))
2226 ecc_pkey = X509_get_pubkey(x);
2227 ecc_pkey_size = (ecc_pkey != NULL) ? EVP_PKEY_bits(ecc_pkey) : 0;
2228 EVP_PKEY_free(ecc_pkey);
2229 if ((x->sig_alg) && (x->sig_alg->algorithm)) {
2230 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
2231 OBJ_find_sigid_algs(signature_nid, &md_nid, &pk_nid);
2235 if (pk_nid == NID_rsaEncryption || pk_nid == NID_rsa) {
2236 mask_k |= SSL_kECDHr;
2237 mask_a |= SSL_aECDH;
2238 if (ecc_pkey_size <= 163) {
2239 emask_k |= SSL_kECDHr;
2240 emask_a |= SSL_aECDH;
2244 if (pk_nid == NID_X9_62_id_ecPublicKey) {
2245 mask_k |= SSL_kECDHe;
2246 mask_a |= SSL_aECDH;
2247 if (ecc_pkey_size <= 163) {
2248 emask_k |= SSL_kECDHe;
2249 emask_a |= SSL_aECDH;
2254 mask_a |= SSL_aECDSA;
2255 emask_a |= SSL_aECDSA;
2260 #ifndef OPENSSL_NO_EC
2261 if (have_ecdh_tmp) {
2262 mask_k |= SSL_kECDHE;
2263 emask_k |= SSL_kECDHE;
2267 #ifndef OPENSSL_NO_PSK
2270 emask_k |= SSL_kPSK;
2271 emask_a |= SSL_aPSK;
2276 c->export_mask_k = emask_k;
2277 c->export_mask_a = emask_a;
2281 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */
2282 #define ku_reject(x, usage) \
2283 (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
2285 #ifndef OPENSSL_NO_EC
2287 int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL *s)
2289 unsigned long alg_k, alg_a;
2290 EVP_PKEY *pkey = NULL;
2292 int signature_nid = 0, md_nid = 0, pk_nid = 0;
2293 const SSL_CIPHER *cs = s->s3->tmp.new_cipher;
2295 alg_k = cs->algorithm_mkey;
2296 alg_a = cs->algorithm_auth;
2298 if (SSL_C_IS_EXPORT(cs)) {
2299 /* ECDH key length in export ciphers must be <= 163 bits */
2300 pkey = X509_get_pubkey(x);
2303 keysize = EVP_PKEY_bits(pkey);
2304 EVP_PKEY_free(pkey);
2309 /* This call populates the ex_flags field correctly */
2310 X509_check_purpose(x, -1, 0);
2311 if ((x->sig_alg) && (x->sig_alg->algorithm)) {
2312 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
2313 OBJ_find_sigid_algs(signature_nid, &md_nid, &pk_nid);
2315 if (alg_k & SSL_kECDHe || alg_k & SSL_kECDHr) {
2316 /* key usage, if present, must allow key agreement */
2317 if (ku_reject(x, X509v3_KU_KEY_AGREEMENT)) {
2318 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2319 SSL_R_ECC_CERT_NOT_FOR_KEY_AGREEMENT);
2322 if ((alg_k & SSL_kECDHe) && TLS1_get_version(s) < TLS1_2_VERSION) {
2323 /* signature alg must be ECDSA */
2324 if (pk_nid != NID_X9_62_id_ecPublicKey) {
2325 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2326 SSL_R_ECC_CERT_SHOULD_HAVE_SHA1_SIGNATURE);
2330 if ((alg_k & SSL_kECDHr) && TLS1_get_version(s) < TLS1_2_VERSION) {
2331 /* signature alg must be RSA */
2333 if (pk_nid != NID_rsaEncryption && pk_nid != NID_rsa) {
2334 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2335 SSL_R_ECC_CERT_SHOULD_HAVE_RSA_SIGNATURE);
2340 if (alg_a & SSL_aECDSA) {
2341 /* key usage, if present, must allow signing */
2342 if (ku_reject(x, X509v3_KU_DIGITAL_SIGNATURE)) {
2343 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG,
2344 SSL_R_ECC_CERT_NOT_FOR_SIGNING);
2349 return 1; /* all checks are ok */
2354 static int ssl_get_server_cert_index(const SSL *s)
2357 idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher);
2358 if (idx == SSL_PKEY_RSA_ENC && !s->cert->pkeys[SSL_PKEY_RSA_ENC].x509)
2359 idx = SSL_PKEY_RSA_SIGN;
2361 SSLerr(SSL_F_SSL_GET_SERVER_CERT_INDEX, ERR_R_INTERNAL_ERROR);
2365 CERT_PKEY *ssl_get_server_send_pkey(const SSL *s)
2371 if (!s->s3 || !s->s3->tmp.new_cipher)
2373 ssl_set_cert_masks(c, s->s3->tmp.new_cipher);
2375 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
2377 * Broken protocol test: return last used certificate: which may mismatch
2380 if (c->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL)
2384 i = ssl_get_server_cert_index(s);
2386 /* This may or may not be an error. */
2391 return &c->pkeys[i];
2394 EVP_PKEY *ssl_get_sign_pkey(SSL *s, const SSL_CIPHER *cipher,
2397 unsigned long alg_a;
2401 alg_a = cipher->algorithm_auth;
2404 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
2406 * Broken protocol test: use last key: which may mismatch the one
2409 if (c->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL)
2410 idx = c->key - c->pkeys;
2414 if ((alg_a & SSL_aDSS) &&
2415 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
2416 idx = SSL_PKEY_DSA_SIGN;
2417 else if (alg_a & SSL_aRSA) {
2418 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
2419 idx = SSL_PKEY_RSA_SIGN;
2420 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
2421 idx = SSL_PKEY_RSA_ENC;
2422 } else if ((alg_a & SSL_aECDSA) &&
2423 (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
2426 SSLerr(SSL_F_SSL_GET_SIGN_PKEY, ERR_R_INTERNAL_ERROR);
2430 *pmd = c->pkeys[idx].digest;
2431 return c->pkeys[idx].privatekey;
2434 #ifndef OPENSSL_NO_TLSEXT
2435 int ssl_get_server_cert_serverinfo(SSL *s, const unsigned char **serverinfo,
2436 size_t *serverinfo_length)
2440 *serverinfo_length = 0;
2443 i = ssl_get_server_cert_index(s);
2447 if (c->pkeys[i].serverinfo == NULL)
2450 *serverinfo = c->pkeys[i].serverinfo;
2451 *serverinfo_length = c->pkeys[i].serverinfo_length;
2456 void ssl_update_cache(SSL *s, int mode)
2461 * If the session_id_length is 0, we are not supposed to cache it, and it
2462 * would be rather hard to do anyway :-)
2464 if (s->session->session_id_length == 0)
2467 i = s->session_ctx->session_cache_mode;
2468 if ((i & mode) && (!s->hit)
2469 && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
2470 || SSL_CTX_add_session(s->session_ctx, s->session))
2471 && (s->session_ctx->new_session_cb != NULL)) {
2472 CRYPTO_add(&s->session->references, 1, CRYPTO_LOCK_SSL_SESSION);
2473 if (!s->session_ctx->new_session_cb(s, s->session))
2474 SSL_SESSION_free(s->session);
2477 /* auto flush every 255 connections */
2478 if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && ((i & mode) == mode)) {
2479 if ((((mode & SSL_SESS_CACHE_CLIENT)
2480 ? s->session_ctx->stats.sess_connect_good
2481 : s->session_ctx->stats.sess_accept_good) & 0xff) == 0xff) {
2482 SSL_CTX_flush_sessions(s->session_ctx, (unsigned long)time(NULL));
2487 const SSL_METHOD *SSL_CTX_get_ssl_method(SSL_CTX *ctx)
2492 const SSL_METHOD *SSL_get_ssl_method(SSL *s)
2497 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
2502 if (s->method != meth) {
2503 if (s->handshake_func != NULL)
2504 conn = (s->handshake_func == s->method->ssl_connect);
2506 if (s->method->version == meth->version)
2509 s->method->ssl_free(s);
2511 ret = s->method->ssl_new(s);
2515 s->handshake_func = meth->ssl_connect;
2517 s->handshake_func = meth->ssl_accept;
2522 int SSL_get_error(const SSL *s, int i)
2529 return (SSL_ERROR_NONE);
2532 * Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc,
2533 * where we do encode the error
2535 if ((l = ERR_peek_error()) != 0) {
2536 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
2537 return (SSL_ERROR_SYSCALL);
2539 return (SSL_ERROR_SSL);
2542 if ((i < 0) && SSL_want_read(s)) {
2543 bio = SSL_get_rbio(s);
2544 if (BIO_should_read(bio))
2545 return (SSL_ERROR_WANT_READ);
2546 else if (BIO_should_write(bio))
2548 * This one doesn't make too much sense ... We never try to write
2549 * to the rbio, and an application program where rbio and wbio
2550 * are separate couldn't even know what it should wait for.
2551 * However if we ever set s->rwstate incorrectly (so that we have
2552 * SSL_want_read(s) instead of SSL_want_write(s)) and rbio and
2553 * wbio *are* the same, this test works around that bug; so it
2554 * might be safer to keep it.
2556 return (SSL_ERROR_WANT_WRITE);
2557 else if (BIO_should_io_special(bio)) {
2558 reason = BIO_get_retry_reason(bio);
2559 if (reason == BIO_RR_CONNECT)
2560 return (SSL_ERROR_WANT_CONNECT);
2561 else if (reason == BIO_RR_ACCEPT)
2562 return (SSL_ERROR_WANT_ACCEPT);
2564 return (SSL_ERROR_SYSCALL); /* unknown */
2568 if ((i < 0) && SSL_want_write(s)) {
2569 bio = SSL_get_wbio(s);
2570 if (BIO_should_write(bio))
2571 return (SSL_ERROR_WANT_WRITE);
2572 else if (BIO_should_read(bio))
2574 * See above (SSL_want_read(s) with BIO_should_write(bio))
2576 return (SSL_ERROR_WANT_READ);
2577 else if (BIO_should_io_special(bio)) {
2578 reason = BIO_get_retry_reason(bio);
2579 if (reason == BIO_RR_CONNECT)
2580 return (SSL_ERROR_WANT_CONNECT);
2581 else if (reason == BIO_RR_ACCEPT)
2582 return (SSL_ERROR_WANT_ACCEPT);
2584 return (SSL_ERROR_SYSCALL);
2587 if ((i < 0) && SSL_want_x509_lookup(s)) {
2588 return (SSL_ERROR_WANT_X509_LOOKUP);
2592 if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
2593 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
2594 return (SSL_ERROR_ZERO_RETURN);
2596 return (SSL_ERROR_SYSCALL);
2599 int SSL_do_handshake(SSL *s)
2603 if (s->handshake_func == NULL) {
2604 SSLerr(SSL_F_SSL_DO_HANDSHAKE, SSL_R_CONNECTION_TYPE_NOT_SET);
2608 s->method->ssl_renegotiate_check(s);
2610 if (SSL_in_init(s) || SSL_in_before(s)) {
2611 ret = s->handshake_func(s);
2617 * For the next 2 functions, SSL_clear() sets shutdown and so one of these
2618 * calls will reset it
2620 void SSL_set_accept_state(SSL *s)
2624 s->state = SSL_ST_ACCEPT | SSL_ST_BEFORE;
2625 s->handshake_func = s->method->ssl_accept;
2626 /* clear the current cipher */
2627 ssl_clear_cipher_ctx(s);
2628 ssl_clear_hash_ctx(&s->read_hash);
2629 ssl_clear_hash_ctx(&s->write_hash);
2632 void SSL_set_connect_state(SSL *s)
2636 s->state = SSL_ST_CONNECT | SSL_ST_BEFORE;
2637 s->handshake_func = s->method->ssl_connect;
2638 /* clear the current cipher */
2639 ssl_clear_cipher_ctx(s);
2640 ssl_clear_hash_ctx(&s->read_hash);
2641 ssl_clear_hash_ctx(&s->write_hash);
2644 int ssl_undefined_function(SSL *s)
2646 SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2650 int ssl_undefined_void_function(void)
2652 SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,
2653 ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2657 int ssl_undefined_const_function(const SSL *s)
2659 SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION,
2660 ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2664 SSL_METHOD *ssl_bad_method(int ver)
2666 SSLerr(SSL_F_SSL_BAD_METHOD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2670 const char *SSL_get_version(const SSL *s)
2672 if (s->version == TLS1_2_VERSION)
2674 else if (s->version == TLS1_1_VERSION)
2676 else if (s->version == TLS1_VERSION)
2678 else if (s->version == SSL3_VERSION)
2680 else if (s->version == DTLS1_BAD_VER)
2681 return ("DTLSv0.9");
2682 else if (s->version == DTLS1_VERSION)
2684 else if (s->version == DTLS1_2_VERSION)
2685 return ("DTLSv1.2");
2690 SSL *SSL_dup(SSL *s)
2692 STACK_OF(X509_NAME) *sk;
2697 if ((ret = SSL_new(SSL_get_SSL_CTX(s))) == NULL)
2700 ret->version = s->version;
2701 ret->type = s->type;
2702 ret->method = s->method;
2704 if (s->session != NULL) {
2705 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2706 if (!SSL_copy_session_id(ret, s))
2710 * No session has been established yet, so we have to expect that
2711 * s->cert or ret->cert will be changed later -- they should not both
2712 * point to the same object, and thus we can't use
2713 * SSL_copy_session_id.
2716 ret->method->ssl_free(ret);
2717 ret->method = s->method;
2718 ret->method->ssl_new(ret);
2720 if (s->cert != NULL) {
2721 ssl_cert_free(ret->cert);
2722 ret->cert = ssl_cert_dup(s->cert);
2723 if (ret->cert == NULL)
2727 if (!SSL_set_session_id_context(ret, s->sid_ctx, s->sid_ctx_length))
2731 ret->options = s->options;
2732 ret->mode = s->mode;
2733 SSL_set_max_cert_list(ret, SSL_get_max_cert_list(s));
2734 SSL_set_read_ahead(ret, SSL_get_read_ahead(s));
2735 ret->msg_callback = s->msg_callback;
2736 ret->msg_callback_arg = s->msg_callback_arg;
2737 SSL_set_verify(ret, SSL_get_verify_mode(s), SSL_get_verify_callback(s));
2738 SSL_set_verify_depth(ret, SSL_get_verify_depth(s));
2739 ret->generate_session_id = s->generate_session_id;
2741 SSL_set_info_callback(ret, SSL_get_info_callback(s));
2743 ret->debug = s->debug;
2745 /* copy app data, a little dangerous perhaps */
2746 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
2749 /* setup rbio, and wbio */
2750 if (s->rbio != NULL) {
2751 if (!BIO_dup_state(s->rbio, (char *)&ret->rbio))
2754 if (s->wbio != NULL) {
2755 if (s->wbio != s->rbio) {
2756 if (!BIO_dup_state(s->wbio, (char *)&ret->wbio))
2759 ret->wbio = ret->rbio;
2761 ret->rwstate = s->rwstate;
2762 ret->in_handshake = s->in_handshake;
2763 ret->handshake_func = s->handshake_func;
2764 ret->server = s->server;
2765 ret->renegotiate = s->renegotiate;
2766 ret->new_session = s->new_session;
2767 ret->quiet_shutdown = s->quiet_shutdown;
2768 ret->shutdown = s->shutdown;
2769 ret->state = s->state; /* SSL_dup does not really work at any state,
2771 RECORD_LAYER_dup(&ret->rlayer, &s->rlayer);
2772 ret->init_num = 0; /* would have to copy ret->init_buf,
2773 * ret->init_msg, ret->init_num,
2777 X509_VERIFY_PARAM_inherit(ret->param, s->param);
2779 /* dup the cipher_list and cipher_list_by_id stacks */
2780 if (s->cipher_list != NULL) {
2781 if ((ret->cipher_list = sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
2784 if (s->cipher_list_by_id != NULL)
2785 if ((ret->cipher_list_by_id = sk_SSL_CIPHER_dup(s->cipher_list_by_id))
2789 /* Dup the client_CA list */
2790 if (s->client_CA != NULL) {
2791 if ((sk = sk_X509_NAME_dup(s->client_CA)) == NULL)
2793 ret->client_CA = sk;
2794 for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2795 xn = sk_X509_NAME_value(sk, i);
2796 if (sk_X509_NAME_set(sk, i, X509_NAME_dup(xn)) == NULL) {
2809 void ssl_clear_cipher_ctx(SSL *s)
2811 if (s->enc_read_ctx != NULL) {
2812 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
2813 OPENSSL_free(s->enc_read_ctx);
2814 s->enc_read_ctx = NULL;
2816 if (s->enc_write_ctx != NULL) {
2817 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2818 OPENSSL_free(s->enc_write_ctx);
2819 s->enc_write_ctx = NULL;
2821 #ifndef OPENSSL_NO_COMP
2822 COMP_CTX_free(s->expand);
2824 COMP_CTX_free(s->compress);
2829 X509 *SSL_get_certificate(const SSL *s)
2831 if (s->cert != NULL)
2832 return (s->cert->key->x509);
2837 EVP_PKEY *SSL_get_privatekey(const SSL *s)
2839 if (s->cert != NULL)
2840 return (s->cert->key->privatekey);
2845 X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx)
2847 if (ctx->cert != NULL)
2848 return ctx->cert->key->x509;
2853 EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx)
2855 if (ctx->cert != NULL)
2856 return ctx->cert->key->privatekey;
2861 const SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
2863 if ((s->session != NULL) && (s->session->cipher != NULL))
2864 return (s->session->cipher);
2868 const COMP_METHOD *SSL_get_current_compression(SSL *s)
2870 #ifndef OPENSSL_NO_COMP
2871 return s->compress ? COMP_CTX_get_method(s->compress) : NULL;
2877 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
2879 #ifndef OPENSSL_NO_COMP
2880 return s->expand ? COMP_CTX_get_method(s->expand) : NULL;
2886 int ssl_init_wbio_buffer(SSL *s, int push)
2890 if (s->bbio == NULL) {
2891 bbio = BIO_new(BIO_f_buffer());
2897 if (s->bbio == s->wbio)
2898 s->wbio = BIO_pop(s->wbio);
2900 (void)BIO_reset(bbio);
2901 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2902 if (!BIO_set_read_buffer_size(bbio, 1)) {
2903 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER, ERR_R_BUF_LIB);
2907 if (s->wbio != bbio)
2908 s->wbio = BIO_push(bbio, s->wbio);
2910 if (s->wbio == bbio)
2911 s->wbio = BIO_pop(bbio);
2916 void ssl_free_wbio_buffer(SSL *s)
2918 /* callers ensure s is never null */
2919 if (s->bbio == NULL)
2922 if (s->bbio == s->wbio) {
2923 /* remove buffering */
2924 s->wbio = BIO_pop(s->wbio);
2925 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids
2926 * adding one more preprocessor symbol */
2927 assert(s->wbio != NULL);
2934 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
2936 ctx->quiet_shutdown = mode;
2939 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
2941 return (ctx->quiet_shutdown);
2944 void SSL_set_quiet_shutdown(SSL *s, int mode)
2946 s->quiet_shutdown = mode;
2949 int SSL_get_quiet_shutdown(const SSL *s)
2951 return (s->quiet_shutdown);
2954 void SSL_set_shutdown(SSL *s, int mode)
2959 int SSL_get_shutdown(const SSL *s)
2961 return (s->shutdown);
2964 int SSL_version(const SSL *s)
2966 return (s->version);
2969 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
2974 SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx)
2977 if (ssl->ctx == ctx)
2979 #ifndef OPENSSL_NO_TLSEXT
2981 ctx = ssl->initial_ctx;
2983 new_cert = ssl_cert_dup(ctx->cert);
2984 if (new_cert == NULL) {
2987 /* Preserve any already negotiated parameters */
2989 new_cert->peer_sigalgs = ssl->cert->peer_sigalgs;
2990 new_cert->peer_sigalgslen = ssl->cert->peer_sigalgslen;
2991 ssl->cert->peer_sigalgs = NULL;
2992 new_cert->ciphers_raw = ssl->cert->ciphers_raw;
2993 new_cert->ciphers_rawlen = ssl->cert->ciphers_rawlen;
2994 ssl->cert->ciphers_raw = NULL;
2996 ssl_cert_free(ssl->cert);
2997 ssl->cert = new_cert;
3000 * Program invariant: |sid_ctx| has fixed size (SSL_MAX_SID_CTX_LENGTH),
3001 * so setter APIs must prevent invalid lengths from entering the system.
3003 OPENSSL_assert(ssl->sid_ctx_length <= sizeof(ssl->sid_ctx));
3006 * If the session ID context matches that of the parent SSL_CTX,
3007 * inherit it from the new SSL_CTX as well. If however the context does
3008 * not match (i.e., it was set per-ssl with SSL_set_session_id_context),
3009 * leave it unchanged.
3011 if ((ssl->ctx != NULL) &&
3012 (ssl->sid_ctx_length == ssl->ctx->sid_ctx_length) &&
3013 (memcmp(ssl->sid_ctx, ssl->ctx->sid_ctx, ssl->sid_ctx_length) == 0)) {
3014 ssl->sid_ctx_length = ctx->sid_ctx_length;
3015 memcpy(&ssl->sid_ctx, &ctx->sid_ctx, sizeof(ssl->sid_ctx));
3018 CRYPTO_add(&ctx->references, 1, CRYPTO_LOCK_SSL_CTX);
3019 SSL_CTX_free(ssl->ctx); /* decrement reference count */
3025 #ifndef OPENSSL_NO_STDIO
3026 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
3028 return (X509_STORE_set_default_paths(ctx->cert_store));
3031 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
3034 return (X509_STORE_load_locations(ctx->cert_store, CAfile, CApath));
3038 void SSL_set_info_callback(SSL *ssl,
3039 void (*cb) (const SSL *ssl, int type, int val))
3041 ssl->info_callback = cb;
3045 * One compiler (Diab DCC) doesn't like argument names in returned function
3048 void (*SSL_get_info_callback(const SSL *ssl)) (const SSL * /* ssl */ ,
3051 return ssl->info_callback;
3054 int SSL_state(const SSL *ssl)
3056 return (ssl->state);
3059 void SSL_set_state(SSL *ssl, int state)
3064 void SSL_set_verify_result(SSL *ssl, long arg)
3066 ssl->verify_result = arg;
3069 long SSL_get_verify_result(const SSL *ssl)
3071 return (ssl->verify_result);
3074 int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
3075 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
3077 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp,
3078 new_func, dup_func, free_func);
3081 int SSL_set_ex_data(SSL *s, int idx, void *arg)
3083 return (CRYPTO_set_ex_data(&s->ex_data, idx, arg));
3086 void *SSL_get_ex_data(const SSL *s, int idx)
3088 return (CRYPTO_get_ex_data(&s->ex_data, idx));
3091 int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
3092 CRYPTO_EX_dup *dup_func,
3093 CRYPTO_EX_free *free_func)
3095 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp,
3096 new_func, dup_func, free_func);
3099 int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
3101 return (CRYPTO_set_ex_data(&s->ex_data, idx, arg));
3104 void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
3106 return (CRYPTO_get_ex_data(&s->ex_data, idx));
3114 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
3116 return (ctx->cert_store);
3119 void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
3121 X509_STORE_free(ctx->cert_store);
3122 ctx->cert_store = store;
3125 int SSL_want(const SSL *s)
3127 return (s->rwstate);
3131 * \brief Set the callback for generating temporary RSA keys.
3132 * \param ctx the SSL context.
3133 * \param cb the callback
3136 #ifndef OPENSSL_NO_RSA
3137 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, RSA *(*cb) (SSL *ssl,
3141 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_RSA_CB, (void (*)(void))cb);
3144 void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb) (SSL *ssl,
3148 SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_RSA_CB, (void (*)(void))cb);
3154 * \brief The RSA temporary key callback function.
3155 * \param ssl the SSL session.
3156 * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
3157 * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
3158 * of the required key in bits.
3159 * \return the temporary RSA key.
3160 * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
3163 RSA *cb(SSL *ssl, int is_export, int keylength)
3169 * \brief Set the callback for generating temporary DH keys.
3170 * \param ctx the SSL context.
3171 * \param dh the callback
3174 #ifndef OPENSSL_NO_DH
3175 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
3176 DH *(*dh) (SSL *ssl, int is_export,
3179 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3182 void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*dh) (SSL *ssl, int is_export,
3185 SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3189 #ifndef OPENSSL_NO_EC
3190 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,
3191 EC_KEY *(*ecdh) (SSL *ssl, int is_export,
3194 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_ECDH_CB,
3195 (void (*)(void))ecdh);
3198 void SSL_set_tmp_ecdh_callback(SSL *ssl,
3199 EC_KEY *(*ecdh) (SSL *ssl, int is_export,
3202 SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_ECDH_CB, (void (*)(void))ecdh);
3206 #ifndef OPENSSL_NO_PSK
3207 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
3209 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3210 SSLerr(SSL_F_SSL_CTX_USE_PSK_IDENTITY_HINT,
3211 SSL_R_DATA_LENGTH_TOO_LONG);
3214 OPENSSL_free(ctx->psk_identity_hint);
3215 if (identity_hint != NULL) {
3216 ctx->psk_identity_hint = BUF_strdup(identity_hint);
3217 if (ctx->psk_identity_hint == NULL)
3220 ctx->psk_identity_hint = NULL;
3224 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
3229 if (s->session == NULL)
3230 return 1; /* session not created yet, ignored */
3232 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3233 SSLerr(SSL_F_SSL_USE_PSK_IDENTITY_HINT, SSL_R_DATA_LENGTH_TOO_LONG);
3236 OPENSSL_free(s->session->psk_identity_hint);
3237 if (identity_hint != NULL) {
3238 s->session->psk_identity_hint = BUF_strdup(identity_hint);
3239 if (s->session->psk_identity_hint == NULL)
3242 s->session->psk_identity_hint = NULL;
3246 const char *SSL_get_psk_identity_hint(const SSL *s)
3248 if (s == NULL || s->session == NULL)
3250 return (s->session->psk_identity_hint);
3253 const char *SSL_get_psk_identity(const SSL *s)
3255 if (s == NULL || s->session == NULL)
3257 return (s->session->psk_identity);
3260 void SSL_set_psk_client_callback(SSL *s,
3261 unsigned int (*cb) (SSL *ssl,
3270 s->psk_client_callback = cb;
3273 void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx,
3274 unsigned int (*cb) (SSL *ssl,
3283 ctx->psk_client_callback = cb;
3286 void SSL_set_psk_server_callback(SSL *s,
3287 unsigned int (*cb) (SSL *ssl,
3288 const char *identity,
3293 s->psk_server_callback = cb;
3296 void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx,
3297 unsigned int (*cb) (SSL *ssl,
3298 const char *identity,
3303 ctx->psk_server_callback = cb;
3307 void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
3308 void (*cb) (int write_p, int version,
3309 int content_type, const void *buf,
3310 size_t len, SSL *ssl, void *arg))
3312 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3315 void SSL_set_msg_callback(SSL *ssl,
3316 void (*cb) (int write_p, int version,
3317 int content_type, const void *buf,
3318 size_t len, SSL *ssl, void *arg))
3320 SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3323 void SSL_CTX_set_not_resumable_session_callback(SSL_CTX *ctx,
3324 int (*cb) (SSL *ssl,
3328 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
3329 (void (*)(void))cb);
3332 void SSL_set_not_resumable_session_callback(SSL *ssl,
3333 int (*cb) (SSL *ssl,
3334 int is_forward_secure))
3336 SSL_callback_ctrl(ssl, SSL_CTRL_SET_NOT_RESUMABLE_SESS_CB,
3337 (void (*)(void))cb);
3341 * Allocates new EVP_MD_CTX and sets pointer to it into given pointer
3342 * vairable, freeing EVP_MD_CTX previously stored in that variable, if any.
3343 * If EVP_MD pointer is passed, initializes ctx with this md Returns newly
3347 EVP_MD_CTX *ssl_replace_hash(EVP_MD_CTX **hash, const EVP_MD *md)
3349 ssl_clear_hash_ctx(hash);
3350 *hash = EVP_MD_CTX_create();
3352 EVP_DigestInit_ex(*hash, md, NULL);
3356 void ssl_clear_hash_ctx(EVP_MD_CTX **hash)
3360 EVP_MD_CTX_destroy(*hash);
3364 /* Retrieve handshake hashes */
3365 int ssl_handshake_hash(SSL *s, unsigned char *out, int outlen)
3367 unsigned char *p = out;
3372 EVP_MD_CTX_init(&ctx);
3373 for (idx = 0; ssl_get_handshake_digest(idx, &mask, &md); idx++) {
3374 if (mask & ssl_get_algorithm2(s)) {
3375 int hashsize = EVP_MD_size(md);
3376 EVP_MD_CTX *hdgst = s->s3->handshake_dgst[idx];
3377 if (!hdgst || hashsize < 0 || hashsize > outlen)
3379 if (!EVP_MD_CTX_copy_ex(&ctx, hdgst))
3381 if (!EVP_DigestFinal_ex(&ctx, p, NULL))
3389 EVP_MD_CTX_cleanup(&ctx);
3393 void SSL_set_debug(SSL *s, int debug)
3398 int SSL_cache_hit(SSL *s)
3403 int SSL_is_server(SSL *s)
3408 void SSL_set_security_level(SSL *s, int level)
3410 s->cert->sec_level = level;
3413 int SSL_get_security_level(const SSL *s)
3415 return s->cert->sec_level;
3418 void SSL_set_security_callback(SSL *s,
3419 int (*cb) (SSL *s, SSL_CTX *ctx, int op,
3420 int bits, int nid, void *other,
3423 s->cert->sec_cb = cb;
3426 int (*SSL_get_security_callback(const SSL *s)) (SSL *s, SSL_CTX *ctx, int op,
3428 void *other, void *ex) {
3429 return s->cert->sec_cb;
3432 void SSL_set0_security_ex_data(SSL *s, void *ex)
3434 s->cert->sec_ex = ex;
3437 void *SSL_get0_security_ex_data(const SSL *s)
3439 return s->cert->sec_ex;
3442 void SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
3444 ctx->cert->sec_level = level;
3447 int SSL_CTX_get_security_level(const SSL_CTX *ctx)
3449 return ctx->cert->sec_level;
3452 void SSL_CTX_set_security_callback(SSL_CTX *ctx,
3453 int (*cb) (SSL *s, SSL_CTX *ctx, int op,
3454 int bits, int nid, void *other,
3457 ctx->cert->sec_cb = cb;
3460 int (*SSL_CTX_get_security_callback(const SSL_CTX *ctx)) (SSL *s,
3466 return ctx->cert->sec_cb;
3469 void SSL_CTX_set0_security_ex_data(SSL_CTX *ctx, void *ex)
3471 ctx->cert->sec_ex = ex;
3474 void *SSL_CTX_get0_security_ex_data(const SSL_CTX *ctx)
3476 return ctx->cert->sec_ex;
3479 IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, ssl_cipher_id);