1 /*! \file ssl/ssl_lib.c
2 * \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 "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>
159 #ifndef OPENSSL_NO_ENGINE
160 #include <openssl/engine.h>
163 const char *SSL_version_str
=OPENSSL_VERSION_TEXT
;
165 SSL3_ENC_METHOD ssl3_undef_enc_method
={
166 /* evil casts, but these functions are only called if there's a library bug */
167 (int (*)(SSL
*,int))ssl_undefined_function
,
168 (int (*)(SSL
*, unsigned char *, int))ssl_undefined_function
,
169 ssl_undefined_function
,
170 (int (*)(SSL
*, unsigned char *, unsigned char *, int))ssl_undefined_function
,
171 (int (*)(SSL
*, int))ssl_undefined_function
,
172 (int (*)(SSL
*, const char*, int, unsigned char *))ssl_undefined_function
,
173 0, /* finish_mac_length */
174 (int (*)(SSL
*, int, unsigned char *))ssl_undefined_function
,
175 NULL
, /* client_finished_label */
176 0, /* client_finished_label_len */
177 NULL
, /* server_finished_label */
178 0, /* server_finished_label_len */
179 (int (*)(int))ssl_undefined_function
182 int SSL_clear(SSL
*s
)
185 if (s
->method
== NULL
)
187 SSLerr(SSL_F_SSL_CLEAR
,SSL_R_NO_METHOD_SPECIFIED
);
191 if (ssl_clear_bad_session(s
))
193 SSL_SESSION_free(s
->session
);
201 #if 0 /* Disabled since version 1.10 of this file (early return not
202 * needed because SSL_clear is not called when doing renegotiation) */
203 /* This is set if we are doing dynamic renegotiation so keep
204 * the old cipher. It is sort of a SSL_clear_lite :-) */
205 if (s
->new_session
) return(1);
209 SSLerr(SSL_F_SSL_CLEAR
,ERR_R_INTERNAL_ERROR
);
216 s
->state
=SSL_ST_BEFORE
|((s
->server
)?SSL_ST_ACCEPT
:SSL_ST_CONNECT
);
218 s
->version
=s
->method
->version
;
219 s
->client_version
=s
->version
;
220 s
->rwstate
=SSL_NOTHING
;
221 s
->rstate
=SSL_ST_READ_HEADER
;
223 s
->read_ahead
=s
->ctx
->read_ahead
;
226 if (s
->init_buf
!= NULL
)
228 BUF_MEM_free(s
->init_buf
);
232 ssl_clear_cipher_ctx(s
);
233 ssl_clear_hash_ctx(&s
->read_hash
);
234 ssl_clear_hash_ctx(&s
->write_hash
);
239 /* Check to see if we were changed into a different method, if
240 * so, revert back if we are not doing session-id reuse. */
241 if (!s
->in_handshake
&& (s
->session
== NULL
) && (s
->method
!= s
->ctx
->method
))
243 s
->method
->ssl_free(s
);
244 s
->method
=s
->ctx
->method
;
245 if (!s
->method
->ssl_new(s
))
250 s
->method
->ssl_clear(s
);
254 /** Used to change an SSL_CTXs default SSL method type */
255 int SSL_CTX_set_ssl_version(SSL_CTX
*ctx
,const SSL_METHOD
*meth
)
257 STACK_OF(SSL_CIPHER
) *sk
;
261 sk
=ssl_create_cipher_list(ctx
->method
,&(ctx
->cipher_list
),
262 &(ctx
->cipher_list_by_id
),
263 meth
->version
== SSL2_VERSION
? "SSLv2" : SSL_DEFAULT_CIPHER_LIST
);
264 if ((sk
== NULL
) || (sk_SSL_CIPHER_num(sk
) <= 0))
266 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION
,SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS
);
272 SSL
*SSL_new(SSL_CTX
*ctx
)
278 SSLerr(SSL_F_SSL_NEW
,SSL_R_NULL_SSL_CTX
);
281 if (ctx
->method
== NULL
)
283 SSLerr(SSL_F_SSL_NEW
,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION
);
287 s
=(SSL
*)OPENSSL_malloc(sizeof(SSL
));
288 if (s
== NULL
) goto err
;
289 memset(s
,0,sizeof(SSL
));
291 #ifndef OPENSSL_NO_KRB5
292 s
->kssl_ctx
= kssl_ctx_new();
293 #endif /* OPENSSL_NO_KRB5 */
295 s
->options
=ctx
->options
;
297 s
->max_cert_list
=ctx
->max_cert_list
;
299 if (ctx
->cert
!= NULL
)
301 /* Earlier library versions used to copy the pointer to
302 * the CERT, not its contents; only when setting new
303 * parameters for the per-SSL copy, ssl_cert_new would be
304 * called (and the direct reference to the per-SSL_CTX
305 * settings would be lost, but those still were indirectly
306 * accessed for various purposes, and for that reason they
307 * used to be known as s->ctx->default_cert).
308 * Now we don't look at the SSL_CTX's CERT after having
309 * duplicated it once. */
311 s
->cert
= ssl_cert_dup(ctx
->cert
);
316 s
->cert
=NULL
; /* Cannot really happen (see SSL_CTX_new) */
318 s
->read_ahead
=ctx
->read_ahead
;
319 s
->msg_callback
=ctx
->msg_callback
;
320 s
->msg_callback_arg
=ctx
->msg_callback_arg
;
321 s
->verify_mode
=ctx
->verify_mode
;
323 s
->verify_depth
=ctx
->verify_depth
;
325 s
->sid_ctx_length
=ctx
->sid_ctx_length
;
326 OPENSSL_assert(s
->sid_ctx_length
<= sizeof s
->sid_ctx
);
327 memcpy(&s
->sid_ctx
,&ctx
->sid_ctx
,sizeof(s
->sid_ctx
));
328 s
->verify_callback
=ctx
->default_verify_callback
;
329 s
->generate_session_id
=ctx
->generate_session_id
;
331 s
->param
= X509_VERIFY_PARAM_new();
334 X509_VERIFY_PARAM_inherit(s
->param
, ctx
->param
);
336 s
->purpose
= ctx
->purpose
;
337 s
->trust
= ctx
->trust
;
339 s
->quiet_shutdown
=ctx
->quiet_shutdown
;
340 s
->max_send_fragment
= ctx
->max_send_fragment
;
342 CRYPTO_add(&ctx
->references
,1,CRYPTO_LOCK_SSL_CTX
);
344 #ifndef OPENSSL_NO_TLSEXT
345 s
->tlsext_debug_cb
= 0;
346 s
->tlsext_debug_arg
= NULL
;
347 s
->tlsext_ticket_expected
= 0;
348 s
->tlsext_status_type
= -1;
349 s
->tlsext_status_expected
= 0;
350 s
->tlsext_ocsp_ids
= NULL
;
351 s
->tlsext_ocsp_exts
= NULL
;
352 s
->tlsext_ocsp_resp
= NULL
;
353 s
->tlsext_ocsp_resplen
= -1;
354 CRYPTO_add(&ctx
->references
,1,CRYPTO_LOCK_SSL_CTX
);
358 s
->verify_result
=X509_V_OK
;
360 s
->method
=ctx
->method
;
362 if (!s
->method
->ssl_new(s
))
366 s
->server
=(ctx
->method
->ssl_accept
== ssl_undefined_function
)?0:1;
370 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL
, s
, &s
->ex_data
);
372 #ifndef OPENSSL_NO_PSK
373 s
->psk_client_callback
=ctx
->psk_client_callback
;
374 s
->psk_server_callback
=ctx
->psk_server_callback
;
382 ssl_cert_free(s
->cert
);
384 SSL_CTX_free(s
->ctx
); /* decrement reference count */
387 SSLerr(SSL_F_SSL_NEW
,ERR_R_MALLOC_FAILURE
);
391 int SSL_CTX_set_session_id_context(SSL_CTX
*ctx
,const unsigned char *sid_ctx
,
392 unsigned int sid_ctx_len
)
394 if(sid_ctx_len
> sizeof ctx
->sid_ctx
)
396 SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT
,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG
);
399 ctx
->sid_ctx_length
=sid_ctx_len
;
400 memcpy(ctx
->sid_ctx
,sid_ctx
,sid_ctx_len
);
405 int SSL_set_session_id_context(SSL
*ssl
,const unsigned char *sid_ctx
,
406 unsigned int sid_ctx_len
)
408 if(sid_ctx_len
> SSL_MAX_SID_CTX_LENGTH
)
410 SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT
,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG
);
413 ssl
->sid_ctx_length
=sid_ctx_len
;
414 memcpy(ssl
->sid_ctx
,sid_ctx
,sid_ctx_len
);
419 int SSL_CTX_set_generate_session_id(SSL_CTX
*ctx
, GEN_SESSION_CB cb
)
421 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX
);
422 ctx
->generate_session_id
= cb
;
423 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX
);
427 int SSL_set_generate_session_id(SSL
*ssl
, GEN_SESSION_CB cb
)
429 CRYPTO_w_lock(CRYPTO_LOCK_SSL
);
430 ssl
->generate_session_id
= cb
;
431 CRYPTO_w_unlock(CRYPTO_LOCK_SSL
);
435 int SSL_has_matching_session_id(const SSL
*ssl
, const unsigned char *id
,
438 /* A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
439 * we can "construct" a session to give us the desired check - ie. to
440 * find if there's a session in the hash table that would conflict with
441 * any new session built out of this id/id_len and the ssl_version in
442 * use by this SSL. */
445 if(id_len
> sizeof r
.session_id
)
448 r
.ssl_version
= ssl
->version
;
449 r
.session_id_length
= id_len
;
450 memcpy(r
.session_id
, id
, id_len
);
451 /* NB: SSLv2 always uses a fixed 16-byte session ID, so even if a
452 * callback is calling us to check the uniqueness of a shorter ID, it
453 * must be compared as a padded-out ID because that is what it will be
454 * converted to when the callback has finished choosing it. */
455 if((r
.ssl_version
== SSL2_VERSION
) &&
456 (id_len
< SSL2_SSL_SESSION_ID_LENGTH
))
458 memset(r
.session_id
+ id_len
, 0,
459 SSL2_SSL_SESSION_ID_LENGTH
- id_len
);
460 r
.session_id_length
= SSL2_SSL_SESSION_ID_LENGTH
;
463 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX
);
464 p
= lh_SSL_SESSION_retrieve(ssl
->ctx
->sessions
, &r
);
465 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX
);
469 int SSL_CTX_set_purpose(SSL_CTX
*s
, int purpose
)
471 return X509_VERIFY_PARAM_set_purpose(s
->param
, purpose
);
474 int SSL_set_purpose(SSL
*s
, int purpose
)
476 return X509_VERIFY_PARAM_set_purpose(s
->param
, purpose
);
479 int SSL_CTX_set_trust(SSL_CTX
*s
, int trust
)
481 return X509_VERIFY_PARAM_set_trust(s
->param
, trust
);
484 int SSL_set_trust(SSL
*s
, int trust
)
486 return X509_VERIFY_PARAM_set_trust(s
->param
, trust
);
489 int SSL_CTX_set1_param(SSL_CTX
*ctx
, X509_VERIFY_PARAM
*vpm
)
491 return X509_VERIFY_PARAM_set1(ctx
->param
, vpm
);
494 int SSL_set1_param(SSL
*ssl
, X509_VERIFY_PARAM
*vpm
)
496 return X509_VERIFY_PARAM_set1(ssl
->param
, vpm
);
499 void SSL_free(SSL
*s
)
506 i
=CRYPTO_add(&s
->references
,-1,CRYPTO_LOCK_SSL
);
514 fprintf(stderr
,"SSL_free, bad reference count\n");
520 X509_VERIFY_PARAM_free(s
->param
);
522 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL
, s
, &s
->ex_data
);
526 /* If the buffering BIO is in place, pop it off */
527 if (s
->bbio
== s
->wbio
)
529 s
->wbio
=BIO_pop(s
->wbio
);
535 BIO_free_all(s
->rbio
);
536 if ((s
->wbio
!= NULL
) && (s
->wbio
!= s
->rbio
))
537 BIO_free_all(s
->wbio
);
539 if (s
->init_buf
!= NULL
) BUF_MEM_free(s
->init_buf
);
541 /* add extra stuff */
542 if (s
->cipher_list
!= NULL
) sk_SSL_CIPHER_free(s
->cipher_list
);
543 if (s
->cipher_list_by_id
!= NULL
) sk_SSL_CIPHER_free(s
->cipher_list_by_id
);
545 /* Make the next call work :-) */
546 if (s
->session
!= NULL
)
548 ssl_clear_bad_session(s
);
549 SSL_SESSION_free(s
->session
);
552 ssl_clear_cipher_ctx(s
);
553 ssl_clear_hash_ctx(&s
->read_hash
);
554 ssl_clear_hash_ctx(&s
->write_hash
);
556 if (s
->cert
!= NULL
) ssl_cert_free(s
->cert
);
557 /* Free up if allocated */
559 #ifndef OPENSSL_NO_TLSEXT
560 if (s
->tlsext_hostname
)
561 OPENSSL_free(s
->tlsext_hostname
);
562 if (s
->initial_ctx
) SSL_CTX_free(s
->initial_ctx
);
563 #ifndef OPENSSL_NO_EC
564 if (s
->tlsext_ecpointformatlist
) OPENSSL_free(s
->tlsext_ecpointformatlist
);
565 if (s
->tlsext_ellipticcurvelist
) OPENSSL_free(s
->tlsext_ellipticcurvelist
);
566 #endif /* OPENSSL_NO_EC */
567 if (s
->tlsext_opaque_prf_input
) OPENSSL_free(s
->tlsext_opaque_prf_input
);
568 if (s
->tlsext_ocsp_exts
)
569 sk_X509_EXTENSION_pop_free(s
->tlsext_ocsp_exts
,
570 X509_EXTENSION_free
);
571 if (s
->tlsext_ocsp_ids
)
572 sk_OCSP_RESPID_pop_free(s
->tlsext_ocsp_ids
, OCSP_RESPID_free
);
573 if (s
->tlsext_ocsp_resp
)
574 OPENSSL_free(s
->tlsext_ocsp_resp
);
577 if (s
->client_CA
!= NULL
)
578 sk_X509_NAME_pop_free(s
->client_CA
,X509_NAME_free
);
580 if (s
->method
!= NULL
) s
->method
->ssl_free(s
);
582 if (s
->ctx
) SSL_CTX_free(s
->ctx
);
584 #ifndef OPENSSL_NO_KRB5
585 if (s
->kssl_ctx
!= NULL
)
586 kssl_ctx_free(s
->kssl_ctx
);
587 #endif /* OPENSSL_NO_KRB5 */
592 void SSL_set_bio(SSL
*s
,BIO
*rbio
,BIO
*wbio
)
594 /* If the output buffering BIO is still in place, remove it
598 if (s
->wbio
== s
->bbio
)
600 s
->wbio
=s
->wbio
->next_bio
;
601 s
->bbio
->next_bio
=NULL
;
604 if ((s
->rbio
!= NULL
) && (s
->rbio
!= rbio
))
605 BIO_free_all(s
->rbio
);
606 if ((s
->wbio
!= NULL
) && (s
->wbio
!= wbio
) && (s
->rbio
!= s
->wbio
))
607 BIO_free_all(s
->wbio
);
612 BIO
*SSL_get_rbio(const SSL
*s
)
615 BIO
*SSL_get_wbio(const SSL
*s
)
618 int SSL_get_fd(const SSL
*s
)
620 return(SSL_get_rfd(s
));
623 int SSL_get_rfd(const SSL
*s
)
629 r
=BIO_find_type(b
,BIO_TYPE_DESCRIPTOR
);
635 int SSL_get_wfd(const SSL
*s
)
641 r
=BIO_find_type(b
,BIO_TYPE_DESCRIPTOR
);
647 #ifndef OPENSSL_NO_SOCK
648 int SSL_set_fd(SSL
*s
,int fd
)
653 bio
=BIO_new(BIO_s_socket());
657 SSLerr(SSL_F_SSL_SET_FD
,ERR_R_BUF_LIB
);
660 BIO_set_fd(bio
,fd
,BIO_NOCLOSE
);
661 SSL_set_bio(s
,bio
,bio
);
667 int SSL_set_wfd(SSL
*s
,int fd
)
672 if ((s
->rbio
== NULL
) || (BIO_method_type(s
->rbio
) != BIO_TYPE_SOCKET
)
673 || ((int)BIO_get_fd(s
->rbio
,NULL
) != fd
))
675 bio
=BIO_new(BIO_s_socket());
678 { SSLerr(SSL_F_SSL_SET_WFD
,ERR_R_BUF_LIB
); goto err
; }
679 BIO_set_fd(bio
,fd
,BIO_NOCLOSE
);
680 SSL_set_bio(s
,SSL_get_rbio(s
),bio
);
683 SSL_set_bio(s
,SSL_get_rbio(s
),SSL_get_rbio(s
));
689 int SSL_set_rfd(SSL
*s
,int fd
)
694 if ((s
->wbio
== NULL
) || (BIO_method_type(s
->wbio
) != BIO_TYPE_SOCKET
)
695 || ((int)BIO_get_fd(s
->wbio
,NULL
) != fd
))
697 bio
=BIO_new(BIO_s_socket());
701 SSLerr(SSL_F_SSL_SET_RFD
,ERR_R_BUF_LIB
);
704 BIO_set_fd(bio
,fd
,BIO_NOCLOSE
);
705 SSL_set_bio(s
,bio
,SSL_get_wbio(s
));
708 SSL_set_bio(s
,SSL_get_wbio(s
),SSL_get_wbio(s
));
716 /* return length of latest Finished message we sent, copy to 'buf' */
717 size_t SSL_get_finished(const SSL
*s
, void *buf
, size_t count
)
723 ret
= s
->s3
->tmp
.finish_md_len
;
726 memcpy(buf
, s
->s3
->tmp
.finish_md
, count
);
731 /* return length of latest Finished message we expected, copy to 'buf' */
732 size_t SSL_get_peer_finished(const SSL
*s
, void *buf
, size_t count
)
738 ret
= s
->s3
->tmp
.peer_finish_md_len
;
741 memcpy(buf
, s
->s3
->tmp
.peer_finish_md
, count
);
747 int SSL_get_verify_mode(const SSL
*s
)
749 return(s
->verify_mode
);
752 int SSL_get_verify_depth(const SSL
*s
)
754 return X509_VERIFY_PARAM_get_depth(s
->param
);
757 int (*SSL_get_verify_callback(const SSL
*s
))(int,X509_STORE_CTX
*)
759 return(s
->verify_callback
);
762 int SSL_CTX_get_verify_mode(const SSL_CTX
*ctx
)
764 return(ctx
->verify_mode
);
767 int SSL_CTX_get_verify_depth(const SSL_CTX
*ctx
)
769 return X509_VERIFY_PARAM_get_depth(ctx
->param
);
772 int (*SSL_CTX_get_verify_callback(const SSL_CTX
*ctx
))(int,X509_STORE_CTX
*)
774 return(ctx
->default_verify_callback
);
777 void SSL_set_verify(SSL
*s
,int mode
,
778 int (*callback
)(int ok
,X509_STORE_CTX
*ctx
))
781 if (callback
!= NULL
)
782 s
->verify_callback
=callback
;
785 void SSL_set_verify_depth(SSL
*s
,int depth
)
787 X509_VERIFY_PARAM_set_depth(s
->param
, depth
);
790 void SSL_set_read_ahead(SSL
*s
,int yes
)
795 int SSL_get_read_ahead(const SSL
*s
)
797 return(s
->read_ahead
);
800 int SSL_pending(const SSL
*s
)
802 /* SSL_pending cannot work properly if read-ahead is enabled
803 * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)),
804 * and it is impossible to fix since SSL_pending cannot report
805 * errors that may be observed while scanning the new data.
806 * (Note that SSL_pending() is often used as a boolean value,
807 * so we'd better not return -1.)
809 return(s
->method
->ssl_pending(s
));
812 X509
*SSL_get_peer_certificate(const SSL
*s
)
816 if ((s
== NULL
) || (s
->session
== NULL
))
821 if (r
== NULL
) return(r
);
823 CRYPTO_add(&r
->references
,1,CRYPTO_LOCK_X509
);
828 STACK_OF(X509
) *SSL_get_peer_cert_chain(const SSL
*s
)
832 if ((s
== NULL
) || (s
->session
== NULL
) || (s
->session
->sess_cert
== NULL
))
835 r
=s
->session
->sess_cert
->cert_chain
;
837 /* If we are a client, cert_chain includes the peer's own
838 * certificate; if we are a server, it does not. */
843 /* Now in theory, since the calling process own 't' it should be safe to
844 * modify. We need to be able to read f without being hassled */
845 void SSL_copy_session_id(SSL
*t
,const SSL
*f
)
849 /* Do we need to to SSL locking? */
850 SSL_set_session(t
,SSL_get_session(f
));
852 /* what if we are setup as SSLv2 but want to talk SSLv3 or
854 if (t
->method
!= f
->method
)
856 t
->method
->ssl_free(t
); /* cleanup current */
857 t
->method
=f
->method
; /* change method */
858 t
->method
->ssl_new(t
); /* setup new */
864 CRYPTO_add(&f
->cert
->references
,1,CRYPTO_LOCK_SSL_CERT
);
869 if (tmp
!= NULL
) ssl_cert_free(tmp
);
870 SSL_set_session_id_context(t
,f
->sid_ctx
,f
->sid_ctx_length
);
873 /* Fix this so it checks all the valid key/cert options */
874 int SSL_CTX_check_private_key(const SSL_CTX
*ctx
)
876 if ( (ctx
== NULL
) ||
877 (ctx
->cert
== NULL
) ||
878 (ctx
->cert
->key
->x509
== NULL
))
880 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY
,SSL_R_NO_CERTIFICATE_ASSIGNED
);
883 if (ctx
->cert
->key
->privatekey
== NULL
)
885 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY
,SSL_R_NO_PRIVATE_KEY_ASSIGNED
);
888 return(X509_check_private_key(ctx
->cert
->key
->x509
, ctx
->cert
->key
->privatekey
));
891 /* Fix this function so that it takes an optional type parameter */
892 int SSL_check_private_key(const SSL
*ssl
)
896 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY
,ERR_R_PASSED_NULL_PARAMETER
);
899 if (ssl
->cert
== NULL
)
901 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY
,SSL_R_NO_CERTIFICATE_ASSIGNED
);
904 if (ssl
->cert
->key
->x509
== NULL
)
906 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY
,SSL_R_NO_CERTIFICATE_ASSIGNED
);
909 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)
945 SSLerr(SSL_F_SSL_READ
, SSL_R_UNINITIALIZED
);
949 if (s
->shutdown
& SSL_RECEIVED_SHUTDOWN
)
951 s
->rwstate
=SSL_NOTHING
;
954 return(s
->method
->ssl_read(s
,buf
,num
));
957 int SSL_peek(SSL
*s
,void *buf
,int num
)
959 if (s
->handshake_func
== 0)
961 SSLerr(SSL_F_SSL_PEEK
, SSL_R_UNINITIALIZED
);
965 if (s
->shutdown
& SSL_RECEIVED_SHUTDOWN
)
969 return(s
->method
->ssl_peek(s
,buf
,num
));
972 int SSL_write(SSL
*s
,const void *buf
,int num
)
974 if (s
->handshake_func
== 0)
976 SSLerr(SSL_F_SSL_WRITE
, SSL_R_UNINITIALIZED
);
980 if (s
->shutdown
& SSL_SENT_SHUTDOWN
)
982 s
->rwstate
=SSL_NOTHING
;
983 SSLerr(SSL_F_SSL_WRITE
,SSL_R_PROTOCOL_IS_SHUTDOWN
);
986 return(s
->method
->ssl_write(s
,buf
,num
));
989 int SSL_shutdown(SSL
*s
)
991 /* Note that this function behaves differently from what one might
992 * expect. Return values are 0 for no success (yet),
993 * 1 for success; but calling it once is usually not enough,
994 * even if blocking I/O is used (see ssl3_shutdown).
997 if (s
->handshake_func
== 0)
999 SSLerr(SSL_F_SSL_SHUTDOWN
, SSL_R_UNINITIALIZED
);
1003 if ((s
!= NULL
) && !SSL_in_init(s
))
1004 return(s
->method
->ssl_shutdown(s
));
1009 int SSL_renegotiate(SSL
*s
)
1011 if (s
->new_session
== 0)
1015 return(s
->method
->ssl_renegotiate(s
));
1018 int SSL_renegotiate_pending(SSL
*s
)
1020 /* becomes true when negotiation is requested;
1021 * false again once a handshake has finished */
1022 return (s
->new_session
!= 0);
1025 long SSL_ctrl(SSL
*s
,int cmd
,long larg
,void *parg
)
1031 case SSL_CTRL_GET_READ_AHEAD
:
1032 return(s
->read_ahead
);
1033 case SSL_CTRL_SET_READ_AHEAD
:
1038 case SSL_CTRL_SET_MSG_CALLBACK_ARG
:
1039 s
->msg_callback_arg
= parg
;
1042 case SSL_CTRL_OPTIONS
:
1043 return(s
->options
|=larg
);
1044 case SSL_CTRL_CLEAR_OPTIONS
:
1045 return(s
->options
&=~larg
);
1047 return(s
->mode
|=larg
);
1048 case SSL_CTRL_CLEAR_MODE
:
1049 return(s
->mode
&=~larg
);
1050 case SSL_CTRL_GET_MAX_CERT_LIST
:
1051 return(s
->max_cert_list
);
1052 case SSL_CTRL_SET_MAX_CERT_LIST
:
1054 s
->max_cert_list
=larg
;
1056 case SSL_CTRL_SET_MTU
:
1057 if (SSL_version(s
) == DTLS1_VERSION
||
1058 SSL_version(s
) == DTLS1_BAD_VER
)
1064 case SSL_CTRL_SET_MAX_SEND_FRAGMENT
:
1065 if (larg
< 512 || larg
> SSL3_RT_MAX_PLAIN_LENGTH
)
1067 s
->max_send_fragment
= larg
;
1069 case SSL_CTRL_GET_RI_SUPPORT
:
1071 return s
->s3
->send_connection_binding
;
1074 return(s
->method
->ssl_ctrl(s
,cmd
,larg
,parg
));
1078 long SSL_callback_ctrl(SSL
*s
, int cmd
, void (*fp
)(void))
1082 case SSL_CTRL_SET_MSG_CALLBACK
:
1083 s
->msg_callback
= (void (*)(int write_p
, int version
, int content_type
, const void *buf
, size_t len
, SSL
*ssl
, void *arg
))(fp
);
1087 return(s
->method
->ssl_callback_ctrl(s
,cmd
,fp
));
1091 LHASH_OF(SSL_SESSION
) *SSL_CTX_sessions(SSL_CTX
*ctx
)
1093 return ctx
->sessions
;
1096 long SSL_CTX_ctrl(SSL_CTX
*ctx
,int cmd
,long larg
,void *parg
)
1102 case SSL_CTRL_GET_READ_AHEAD
:
1103 return(ctx
->read_ahead
);
1104 case SSL_CTRL_SET_READ_AHEAD
:
1106 ctx
->read_ahead
=larg
;
1109 case SSL_CTRL_SET_MSG_CALLBACK_ARG
:
1110 ctx
->msg_callback_arg
= parg
;
1113 case SSL_CTRL_GET_MAX_CERT_LIST
:
1114 return(ctx
->max_cert_list
);
1115 case SSL_CTRL_SET_MAX_CERT_LIST
:
1116 l
=ctx
->max_cert_list
;
1117 ctx
->max_cert_list
=larg
;
1120 case SSL_CTRL_SET_SESS_CACHE_SIZE
:
1121 l
=ctx
->session_cache_size
;
1122 ctx
->session_cache_size
=larg
;
1124 case SSL_CTRL_GET_SESS_CACHE_SIZE
:
1125 return(ctx
->session_cache_size
);
1126 case SSL_CTRL_SET_SESS_CACHE_MODE
:
1127 l
=ctx
->session_cache_mode
;
1128 ctx
->session_cache_mode
=larg
;
1130 case SSL_CTRL_GET_SESS_CACHE_MODE
:
1131 return(ctx
->session_cache_mode
);
1133 case SSL_CTRL_SESS_NUMBER
:
1134 return(lh_SSL_SESSION_num_items(ctx
->sessions
));
1135 case SSL_CTRL_SESS_CONNECT
:
1136 return(ctx
->stats
.sess_connect
);
1137 case SSL_CTRL_SESS_CONNECT_GOOD
:
1138 return(ctx
->stats
.sess_connect_good
);
1139 case SSL_CTRL_SESS_CONNECT_RENEGOTIATE
:
1140 return(ctx
->stats
.sess_connect_renegotiate
);
1141 case SSL_CTRL_SESS_ACCEPT
:
1142 return(ctx
->stats
.sess_accept
);
1143 case SSL_CTRL_SESS_ACCEPT_GOOD
:
1144 return(ctx
->stats
.sess_accept_good
);
1145 case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE
:
1146 return(ctx
->stats
.sess_accept_renegotiate
);
1147 case SSL_CTRL_SESS_HIT
:
1148 return(ctx
->stats
.sess_hit
);
1149 case SSL_CTRL_SESS_CB_HIT
:
1150 return(ctx
->stats
.sess_cb_hit
);
1151 case SSL_CTRL_SESS_MISSES
:
1152 return(ctx
->stats
.sess_miss
);
1153 case SSL_CTRL_SESS_TIMEOUTS
:
1154 return(ctx
->stats
.sess_timeout
);
1155 case SSL_CTRL_SESS_CACHE_FULL
:
1156 return(ctx
->stats
.sess_cache_full
);
1157 case SSL_CTRL_OPTIONS
:
1158 return(ctx
->options
|=larg
);
1159 case SSL_CTRL_CLEAR_OPTIONS
:
1160 return(ctx
->options
&=~larg
);
1162 return(ctx
->mode
|=larg
);
1163 case SSL_CTRL_CLEAR_MODE
:
1164 return(ctx
->mode
&=~larg
);
1165 case SSL_CTRL_SET_MAX_SEND_FRAGMENT
:
1166 if (larg
< 512 || larg
> SSL3_RT_MAX_PLAIN_LENGTH
)
1168 ctx
->max_send_fragment
= larg
;
1171 return(ctx
->method
->ssl_ctx_ctrl(ctx
,cmd
,larg
,parg
));
1175 long SSL_CTX_callback_ctrl(SSL_CTX
*ctx
, int cmd
, void (*fp
)(void))
1179 case SSL_CTRL_SET_MSG_CALLBACK
:
1180 ctx
->msg_callback
= (void (*)(int write_p
, int version
, int content_type
, const void *buf
, size_t len
, SSL
*ssl
, void *arg
))(fp
);
1184 return(ctx
->method
->ssl_ctx_callback_ctrl(ctx
,cmd
,fp
));
1188 int ssl_cipher_id_cmp(const SSL_CIPHER
*a
, const SSL_CIPHER
*b
)
1196 return((l
> 0)?1:-1);
1199 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER
* const *ap
,
1200 const SSL_CIPHER
* const *bp
)
1204 l
=(*ap
)->id
-(*bp
)->id
;
1208 return((l
> 0)?1:-1);
1211 /** return a STACK of the ciphers available for the SSL and in order of
1213 STACK_OF(SSL_CIPHER
) *SSL_get_ciphers(const SSL
*s
)
1217 if (s
->cipher_list
!= NULL
)
1219 return(s
->cipher_list
);
1221 else if ((s
->ctx
!= NULL
) &&
1222 (s
->ctx
->cipher_list
!= NULL
))
1224 return(s
->ctx
->cipher_list
);
1230 /** return a STACK of the ciphers available for the SSL and in order of
1232 STACK_OF(SSL_CIPHER
) *ssl_get_ciphers_by_id(SSL
*s
)
1236 if (s
->cipher_list_by_id
!= NULL
)
1238 return(s
->cipher_list_by_id
);
1240 else if ((s
->ctx
!= NULL
) &&
1241 (s
->ctx
->cipher_list_by_id
!= NULL
))
1243 return(s
->ctx
->cipher_list_by_id
);
1249 /** The old interface to get the same thing as SSL_get_ciphers() */
1250 const char *SSL_get_cipher_list(const SSL
*s
,int n
)
1253 STACK_OF(SSL_CIPHER
) *sk
;
1255 if (s
== NULL
) return(NULL
);
1256 sk
=SSL_get_ciphers(s
);
1257 if ((sk
== NULL
) || (sk_SSL_CIPHER_num(sk
) <= n
))
1259 c
=sk_SSL_CIPHER_value(sk
,n
);
1260 if (c
== NULL
) return(NULL
);
1264 /** specify the ciphers to be used by default by the SSL_CTX */
1265 int SSL_CTX_set_cipher_list(SSL_CTX
*ctx
, const char *str
)
1267 STACK_OF(SSL_CIPHER
) *sk
;
1269 sk
=ssl_create_cipher_list(ctx
->method
,&ctx
->cipher_list
,
1270 &ctx
->cipher_list_by_id
,str
);
1271 /* ssl_create_cipher_list may return an empty stack if it
1272 * was unable to find a cipher matching the given rule string
1273 * (for example if the rule string specifies a cipher which
1274 * has been disabled). This is not an error as far as
1275 * ssl_create_cipher_list is concerned, and hence
1276 * ctx->cipher_list and ctx->cipher_list_by_id has been
1280 else if (sk_SSL_CIPHER_num(sk
) == 0)
1282 SSLerr(SSL_F_SSL_CTX_SET_CIPHER_LIST
, SSL_R_NO_CIPHER_MATCH
);
1288 /** specify the ciphers to be used by the SSL */
1289 int SSL_set_cipher_list(SSL
*s
,const char *str
)
1291 STACK_OF(SSL_CIPHER
) *sk
;
1293 sk
=ssl_create_cipher_list(s
->ctx
->method
,&s
->cipher_list
,
1294 &s
->cipher_list_by_id
,str
);
1295 /* see comment in SSL_CTX_set_cipher_list */
1298 else if (sk_SSL_CIPHER_num(sk
) == 0)
1300 SSLerr(SSL_F_SSL_SET_CIPHER_LIST
, SSL_R_NO_CIPHER_MATCH
);
1306 /* works well for SSLv2, not so good for SSLv3 */
1307 char *SSL_get_shared_ciphers(const SSL
*s
,char *buf
,int len
)
1310 STACK_OF(SSL_CIPHER
) *sk
;
1314 if ((s
->session
== NULL
) || (s
->session
->ciphers
== NULL
) ||
1319 sk
=s
->session
->ciphers
;
1320 for (i
=0; i
<sk_SSL_CIPHER_num(sk
); i
++)
1324 c
=sk_SSL_CIPHER_value(sk
,i
);
1342 int ssl_cipher_list_to_bytes(SSL
*s
,STACK_OF(SSL_CIPHER
) *sk
,unsigned char *p
,
1343 int (*put_cb
)(const SSL_CIPHER
*, unsigned char *))
1348 #ifndef OPENSSL_NO_KRB5
1349 int nokrb5
= !kssl_tgt_is_available(s
->kssl_ctx
);
1350 #endif /* OPENSSL_NO_KRB5 */
1352 if (sk
== NULL
) return(0);
1355 for (i
=0; i
<sk_SSL_CIPHER_num(sk
); i
++)
1357 c
=sk_SSL_CIPHER_value(sk
,i
);
1358 #ifndef OPENSSL_NO_KRB5
1359 if (((c
->algorithm_mkey
& SSL_kKRB5
) || (c
->algorithm_auth
& SSL_aKRB5
)) &&
1362 #endif /* OPENSSL_NO_KRB5 */
1363 #ifndef OPENSSL_NO_PSK
1364 /* with PSK there must be client callback set */
1365 if (((c
->algorithm_mkey
& SSL_kPSK
) || (c
->algorithm_auth
& SSL_aPSK
)) &&
1366 s
->psk_client_callback
== NULL
)
1368 #endif /* OPENSSL_NO_PSK */
1369 j
= put_cb
? put_cb(c
,p
) : ssl_put_cipher_by_char(s
,c
,p
);
1372 /* If p == q, no ciphers and caller indicates an error, otherwise
1377 static SSL_CIPHER msvc
=
1379 0, NULL
, SSL3_CK_MCSV
, 0, 0, 0, 0, 0, 0, 0, 0, 0
1381 j
= put_cb
? put_cb(&msvc
,p
) : ssl_put_cipher_by_char(s
,&msvc
,p
);
1383 #ifdef OPENSSL_RI_DEBUG
1384 fprintf(stderr
, "MCSV sent by client\n");
1391 STACK_OF(SSL_CIPHER
) *ssl_bytes_to_cipher_list(SSL
*s
,unsigned char *p
,int num
,
1392 STACK_OF(SSL_CIPHER
) **skp
)
1394 const SSL_CIPHER
*c
;
1395 STACK_OF(SSL_CIPHER
) *sk
;
1398 s
->s3
->send_connection_binding
= 0;
1400 n
=ssl_put_cipher_by_char(s
,NULL
,NULL
);
1403 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST
,SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST
);
1406 if ((skp
== NULL
) || (*skp
== NULL
))
1407 sk
=sk_SSL_CIPHER_new_null(); /* change perhaps later */
1411 sk_SSL_CIPHER_zero(sk
);
1414 for (i
=0; i
<num
; i
+=n
)
1416 /* Check for MCSV */
1417 if (s
->s3
&& (n
!= 3 || !p
[0]) &&
1418 (p
[n
-2] == ((SSL3_CK_MCSV
>> 8) & 0xff)) &&
1419 (p
[n
-1] == (SSL3_CK_MCSV
& 0xff)))
1421 s
->s3
->send_connection_binding
= 1;
1423 #ifdef OPENSSL_RI_DEBUG
1424 fprintf(stderr
, "MCSV received by server\n");
1429 c
=ssl_get_cipher_by_char(s
,p
);
1433 if (!sk_SSL_CIPHER_push(sk
,c
))
1435 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST
,ERR_R_MALLOC_FAILURE
);
1445 if ((skp
== NULL
) || (*skp
== NULL
))
1446 sk_SSL_CIPHER_free(sk
);
1451 #ifndef OPENSSL_NO_TLSEXT
1452 /** return a servername extension value if provided in Client Hello, or NULL.
1453 * So far, only host_name types are defined (RFC 3546).
1456 const char *SSL_get_servername(const SSL
*s
, const int type
)
1458 if (type
!= TLSEXT_NAMETYPE_host_name
)
1461 return s
->session
&& !s
->tlsext_hostname
?
1462 s
->session
->tlsext_hostname
:
1466 int SSL_get_servername_type(const SSL
*s
)
1468 if (s
->session
&& (!s
->tlsext_hostname
? s
->session
->tlsext_hostname
: s
->tlsext_hostname
))
1469 return TLSEXT_NAMETYPE_host_name
;
1474 static unsigned long ssl_session_hash(const SSL_SESSION
*a
)
1479 ((unsigned int) a
->session_id
[0] )|
1480 ((unsigned int) a
->session_id
[1]<< 8L)|
1481 ((unsigned long)a
->session_id
[2]<<16L)|
1482 ((unsigned long)a
->session_id
[3]<<24L);
1486 /* NB: If this function (or indeed the hash function which uses a sort of
1487 * coarser function than this one) is changed, ensure
1488 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being
1489 * able to construct an SSL_SESSION that will collide with any existing session
1490 * with a matching session ID. */
1491 static int ssl_session_cmp(const SSL_SESSION
*a
,const SSL_SESSION
*b
)
1493 if (a
->ssl_version
!= b
->ssl_version
)
1495 if (a
->session_id_length
!= b
->session_id_length
)
1497 return(memcmp(a
->session_id
,b
->session_id
,a
->session_id_length
));
1500 /* These wrapper functions should remain rather than redeclaring
1501 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
1502 * variable. The reason is that the functions aren't static, they're exposed via
1504 static IMPLEMENT_LHASH_HASH_FN(ssl_session
, SSL_SESSION
)
1505 static IMPLEMENT_LHASH_COMP_FN(ssl_session
, SSL_SESSION
)
1507 SSL_CTX
*SSL_CTX_new(const SSL_METHOD
*meth
)
1513 SSLerr(SSL_F_SSL_CTX_NEW
,SSL_R_NULL_SSL_METHOD_PASSED
);
1517 if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
1519 SSLerr(SSL_F_SSL_CTX_NEW
,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS
);
1522 ret
=(SSL_CTX
*)OPENSSL_malloc(sizeof(SSL_CTX
));
1526 memset(ret
,0,sizeof(SSL_CTX
));
1530 ret
->cert_store
=NULL
;
1531 ret
->session_cache_mode
=SSL_SESS_CACHE_SERVER
;
1532 ret
->session_cache_size
=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT
;
1533 ret
->session_cache_head
=NULL
;
1534 ret
->session_cache_tail
=NULL
;
1536 /* We take the system default */
1537 ret
->session_timeout
=meth
->get_timeout();
1539 ret
->new_session_cb
=0;
1540 ret
->remove_session_cb
=0;
1541 ret
->get_session_cb
=0;
1542 ret
->generate_session_id
=0;
1544 memset((char *)&ret
->stats
,0,sizeof(ret
->stats
));
1547 ret
->quiet_shutdown
=0;
1549 /* ret->cipher=NULL;*/
1550 /* ret->s2->challenge=NULL;
1551 ret->master_key=NULL;
1553 ret->s2->conn_id=NULL; */
1555 ret
->info_callback
=NULL
;
1557 ret
->app_verify_callback
=0;
1558 ret
->app_verify_arg
=NULL
;
1560 ret
->max_cert_list
=SSL_MAX_CERT_LIST_DEFAULT
;
1562 ret
->msg_callback
=0;
1563 ret
->msg_callback_arg
=NULL
;
1564 ret
->verify_mode
=SSL_VERIFY_NONE
;
1566 ret
->verify_depth
=-1; /* Don't impose a limit (but x509_lu.c does) */
1568 ret
->sid_ctx_length
=0;
1569 ret
->default_verify_callback
=NULL
;
1570 if ((ret
->cert
=ssl_cert_new()) == NULL
)
1573 ret
->default_passwd_callback
=0;
1574 ret
->default_passwd_callback_userdata
=NULL
;
1575 ret
->client_cert_cb
=0;
1576 ret
->app_gen_cookie_cb
=0;
1577 ret
->app_verify_cookie_cb
=0;
1579 ret
->sessions
=lh_SSL_SESSION_new();
1580 if (ret
->sessions
== NULL
) goto err
;
1581 ret
->cert_store
=X509_STORE_new();
1582 if (ret
->cert_store
== NULL
) goto err
;
1584 ssl_create_cipher_list(ret
->method
,
1585 &ret
->cipher_list
,&ret
->cipher_list_by_id
,
1586 meth
->version
== SSL2_VERSION
? "SSLv2" : SSL_DEFAULT_CIPHER_LIST
);
1587 if (ret
->cipher_list
== NULL
1588 || sk_SSL_CIPHER_num(ret
->cipher_list
) <= 0)
1590 SSLerr(SSL_F_SSL_CTX_NEW
,SSL_R_LIBRARY_HAS_NO_CIPHERS
);
1594 ret
->param
= X509_VERIFY_PARAM_new();
1598 if ((ret
->rsa_md5
=EVP_get_digestbyname("ssl2-md5")) == NULL
)
1600 SSLerr(SSL_F_SSL_CTX_NEW
,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES
);
1603 if ((ret
->md5
=EVP_get_digestbyname("ssl3-md5")) == NULL
)
1605 SSLerr(SSL_F_SSL_CTX_NEW
,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES
);
1608 if ((ret
->sha1
=EVP_get_digestbyname("ssl3-sha1")) == NULL
)
1610 SSLerr(SSL_F_SSL_CTX_NEW
,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES
);
1614 if ((ret
->client_CA
=sk_X509_NAME_new_null()) == NULL
)
1617 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX
, ret
, &ret
->ex_data
);
1619 ret
->extra_certs
=NULL
;
1620 ret
->comp_methods
=SSL_COMP_get_compression_methods();
1622 ret
->max_send_fragment
= SSL3_RT_MAX_PLAIN_LENGTH
;
1624 #ifndef OPENSSL_NO_TLSEXT
1625 ret
->tlsext_servername_callback
= 0;
1626 ret
->tlsext_servername_arg
= NULL
;
1627 /* Setup RFC4507 ticket keys */
1628 if ((RAND_pseudo_bytes(ret
->tlsext_tick_key_name
, 16) <= 0)
1629 || (RAND_bytes(ret
->tlsext_tick_hmac_key
, 16) <= 0)
1630 || (RAND_bytes(ret
->tlsext_tick_aes_key
, 16) <= 0))
1631 ret
->options
|= SSL_OP_NO_TICKET
;
1633 ret
->tlsext_status_cb
= 0;
1634 ret
->tlsext_status_arg
= NULL
;
1637 #ifndef OPENSSL_NO_PSK
1638 ret
->psk_identity_hint
=NULL
;
1639 ret
->psk_client_callback
=NULL
;
1640 ret
->psk_server_callback
=NULL
;
1642 #ifndef OPENSSL_NO_BUF_FREELISTS
1643 ret
->freelist_max_len
= SSL_MAX_BUF_FREELIST_LEN_DEFAULT
;
1644 ret
->rbuf_freelist
= OPENSSL_malloc(sizeof(SSL3_BUF_FREELIST
));
1645 if (!ret
->rbuf_freelist
)
1647 ret
->rbuf_freelist
->chunklen
= 0;
1648 ret
->rbuf_freelist
->len
= 0;
1649 ret
->rbuf_freelist
->head
= NULL
;
1650 ret
->wbuf_freelist
= OPENSSL_malloc(sizeof(SSL3_BUF_FREELIST
));
1651 if (!ret
->wbuf_freelist
)
1653 OPENSSL_free(ret
->rbuf_freelist
);
1656 ret
->wbuf_freelist
->chunklen
= 0;
1657 ret
->wbuf_freelist
->len
= 0;
1658 ret
->wbuf_freelist
->head
= NULL
;
1660 #ifndef OPENSSL_NO_ENGINE
1661 ret
->client_cert_engine
= NULL
;
1662 #ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
1663 #define eng_strx(x) #x
1664 #define eng_str(x) eng_strx(x)
1665 /* Use specific client engine automatically... ignore errors */
1668 eng
= ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO
));
1672 ENGINE_load_builtin_engines();
1673 eng
= ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO
));
1675 if (!eng
|| !SSL_CTX_set_client_cert_engine(ret
, eng
))
1680 /* Default is to connect to non-RI servers. When RI is more widely
1681 * deployed might change this.
1683 ret
->options
= SSL_OP_LEGACY_SERVER_CONNECT
;
1687 SSLerr(SSL_F_SSL_CTX_NEW
,ERR_R_MALLOC_FAILURE
);
1689 if (ret
!= NULL
) SSL_CTX_free(ret
);
1694 static void SSL_COMP_free(SSL_COMP
*comp
)
1695 { OPENSSL_free(comp
); }
1698 #ifndef OPENSSL_NO_BUF_FREELISTS
1700 ssl_buf_freelist_free(SSL3_BUF_FREELIST
*list
)
1702 SSL3_BUF_FREELIST_ENTRY
*ent
, *next
;
1703 for (ent
= list
->head
; ent
; ent
= next
)
1712 void SSL_CTX_free(SSL_CTX
*a
)
1716 if (a
== NULL
) return;
1718 i
=CRYPTO_add(&a
->references
,-1,CRYPTO_LOCK_SSL_CTX
);
1720 REF_PRINT("SSL_CTX",a
);
1726 fprintf(stderr
,"SSL_CTX_free, bad reference count\n");
1732 X509_VERIFY_PARAM_free(a
->param
);
1735 * Free internal session cache. However: the remove_cb() may reference
1736 * the ex_data of SSL_CTX, thus the ex_data store can only be removed
1737 * after the sessions were flushed.
1738 * As the ex_data handling routines might also touch the session cache,
1739 * the most secure solution seems to be: empty (flush) the cache, then
1740 * free ex_data, then finally free the cache.
1741 * (See ticket [openssl.org #212].)
1743 if (a
->sessions
!= NULL
)
1744 SSL_CTX_flush_sessions(a
,0);
1746 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX
, a
, &a
->ex_data
);
1748 if (a
->sessions
!= NULL
)
1749 lh_SSL_SESSION_free(a
->sessions
);
1751 if (a
->cert_store
!= NULL
)
1752 X509_STORE_free(a
->cert_store
);
1753 if (a
->cipher_list
!= NULL
)
1754 sk_SSL_CIPHER_free(a
->cipher_list
);
1755 if (a
->cipher_list_by_id
!= NULL
)
1756 sk_SSL_CIPHER_free(a
->cipher_list_by_id
);
1757 if (a
->cert
!= NULL
)
1758 ssl_cert_free(a
->cert
);
1759 if (a
->client_CA
!= NULL
)
1760 sk_X509_NAME_pop_free(a
->client_CA
,X509_NAME_free
);
1761 if (a
->extra_certs
!= NULL
)
1762 sk_X509_pop_free(a
->extra_certs
,X509_free
);
1763 #if 0 /* This should never be done, since it removes a global database */
1764 if (a
->comp_methods
!= NULL
)
1765 sk_SSL_COMP_pop_free(a
->comp_methods
,SSL_COMP_free
);
1767 a
->comp_methods
= NULL
;
1770 #ifndef OPENSSL_NO_PSK
1771 if (a
->psk_identity_hint
)
1772 OPENSSL_free(a
->psk_identity_hint
);
1774 #ifndef OPENSSL_NO_ENGINE
1775 if (a
->client_cert_engine
)
1776 ENGINE_finish(a
->client_cert_engine
);
1779 #ifndef OPENSSL_NO_BUF_FREELISTS
1780 if (a
->wbuf_freelist
)
1781 ssl_buf_freelist_free(a
->wbuf_freelist
);
1782 if (a
->rbuf_freelist
)
1783 ssl_buf_freelist_free(a
->rbuf_freelist
);
1789 void SSL_CTX_set_default_passwd_cb(SSL_CTX
*ctx
, pem_password_cb
*cb
)
1791 ctx
->default_passwd_callback
=cb
;
1794 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX
*ctx
,void *u
)
1796 ctx
->default_passwd_callback_userdata
=u
;
1799 void SSL_CTX_set_cert_verify_callback(SSL_CTX
*ctx
, int (*cb
)(X509_STORE_CTX
*,void *), void *arg
)
1801 ctx
->app_verify_callback
=cb
;
1802 ctx
->app_verify_arg
=arg
;
1805 void SSL_CTX_set_verify(SSL_CTX
*ctx
,int mode
,int (*cb
)(int, X509_STORE_CTX
*))
1807 ctx
->verify_mode
=mode
;
1808 ctx
->default_verify_callback
=cb
;
1811 void SSL_CTX_set_verify_depth(SSL_CTX
*ctx
,int depth
)
1813 X509_VERIFY_PARAM_set_depth(ctx
->param
, depth
);
1816 void ssl_set_cert_masks(CERT
*c
, const SSL_CIPHER
*cipher
)
1819 int rsa_enc
,rsa_tmp
,rsa_sign
,dh_tmp
,dh_rsa
,dh_dsa
,dsa_sign
;
1820 int rsa_enc_export
,dh_rsa_export
,dh_dsa_export
;
1821 int rsa_tmp_export
,dh_tmp_export
,kl
;
1822 unsigned long mask_k
,mask_a
,emask_k
,emask_a
;
1823 int have_ecc_cert
, ecdh_ok
, ecdsa_ok
, ecc_pkey_size
;
1824 #ifndef OPENSSL_NO_ECDH
1828 EVP_PKEY
*ecc_pkey
= NULL
;
1829 int signature_nid
= 0;
1831 if (c
== NULL
) return;
1833 kl
=SSL_C_EXPORT_PKEYLENGTH(cipher
);
1835 #ifndef OPENSSL_NO_RSA
1836 rsa_tmp
=(c
->rsa_tmp
!= NULL
|| c
->rsa_tmp_cb
!= NULL
);
1837 rsa_tmp_export
=(c
->rsa_tmp_cb
!= NULL
||
1838 (rsa_tmp
&& RSA_size(c
->rsa_tmp
)*8 <= kl
));
1840 rsa_tmp
=rsa_tmp_export
=0;
1842 #ifndef OPENSSL_NO_DH
1843 dh_tmp
=(c
->dh_tmp
!= NULL
|| c
->dh_tmp_cb
!= NULL
);
1844 dh_tmp_export
=(c
->dh_tmp_cb
!= NULL
||
1845 (dh_tmp
&& DH_size(c
->dh_tmp
)*8 <= kl
));
1847 dh_tmp
=dh_tmp_export
=0;
1850 #ifndef OPENSSL_NO_ECDH
1851 have_ecdh_tmp
=(c
->ecdh_tmp
!= NULL
|| c
->ecdh_tmp_cb
!= NULL
);
1853 cpk
= &(c
->pkeys
[SSL_PKEY_RSA_ENC
]);
1854 rsa_enc
= (cpk
->x509
!= NULL
&& cpk
->privatekey
!= NULL
);
1855 rsa_enc_export
=(rsa_enc
&& EVP_PKEY_size(cpk
->privatekey
)*8 <= kl
);
1856 cpk
= &(c
->pkeys
[SSL_PKEY_RSA_SIGN
]);
1857 rsa_sign
=(cpk
->x509
!= NULL
&& cpk
->privatekey
!= NULL
);
1858 cpk
= &(c
->pkeys
[SSL_PKEY_DSA_SIGN
]);
1859 dsa_sign
=(cpk
->x509
!= NULL
&& cpk
->privatekey
!= NULL
);
1860 cpk
= &(c
->pkeys
[SSL_PKEY_DH_RSA
]);
1861 dh_rsa
= (cpk
->x509
!= NULL
&& cpk
->privatekey
!= NULL
);
1862 dh_rsa_export
=(dh_rsa
&& EVP_PKEY_size(cpk
->privatekey
)*8 <= kl
);
1863 cpk
= &(c
->pkeys
[SSL_PKEY_DH_DSA
]);
1864 /* FIX THIS EAY EAY EAY */
1865 dh_dsa
= (cpk
->x509
!= NULL
&& cpk
->privatekey
!= NULL
);
1866 dh_dsa_export
=(dh_dsa
&& EVP_PKEY_size(cpk
->privatekey
)*8 <= kl
);
1867 cpk
= &(c
->pkeys
[SSL_PKEY_ECC
]);
1868 have_ecc_cert
= (cpk
->x509
!= NULL
&& cpk
->privatekey
!= NULL
);
1877 printf("rt=%d rte=%d dht=%d ecdht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1878 rsa_tmp
,rsa_tmp_export
,dh_tmp
,have_ecdh_tmp
,
1879 rsa_enc
,rsa_enc_export
,rsa_sign
,dsa_sign
,dh_rsa
,dh_dsa
);
1882 cpk
= &(c
->pkeys
[SSL_PKEY_GOST01
]);
1883 if (cpk
->x509
!= NULL
&& cpk
->privatekey
!=NULL
) {
1884 mask_k
|= SSL_kGOST
;
1885 mask_a
|= SSL_aGOST01
;
1887 cpk
= &(c
->pkeys
[SSL_PKEY_GOST94
]);
1888 if (cpk
->x509
!= NULL
&& cpk
->privatekey
!=NULL
) {
1889 mask_k
|= SSL_kGOST
;
1890 mask_a
|= SSL_aGOST94
;
1893 if (rsa_enc
|| (rsa_tmp
&& rsa_sign
))
1895 if (rsa_enc_export
|| (rsa_tmp_export
&& (rsa_sign
|| rsa_enc
)))
1899 /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1900 if ( (dh_tmp
|| dh_rsa
|| dh_dsa
) &&
1901 (rsa_enc
|| rsa_sign
|| dsa_sign
))
1903 if ((dh_tmp_export
|| dh_rsa_export
|| dh_dsa_export
) &&
1904 (rsa_enc
|| rsa_sign
|| dsa_sign
))
1914 if (dh_rsa
) mask_k
|=SSL_kDHr
;
1915 if (dh_rsa_export
) emask_k
|=SSL_kDHr
;
1917 if (dh_dsa
) mask_k
|=SSL_kDHd
;
1918 if (dh_dsa_export
) emask_k
|=SSL_kDHd
;
1920 if (rsa_enc
|| rsa_sign
)
1935 #ifndef OPENSSL_NO_KRB5
1942 /* An ECC certificate may be usable for ECDH and/or
1943 * ECDSA cipher suites depending on the key usage extension.
1947 /* This call populates extension flags (ex_flags) */
1948 x
= (c
->pkeys
[SSL_PKEY_ECC
]).x509
;
1949 X509_check_purpose(x
, -1, 0);
1950 ecdh_ok
= (x
->ex_flags
& EXFLAG_KUSAGE
) ?
1951 (x
->ex_kusage
& X509v3_KU_KEY_AGREEMENT
) : 1;
1952 ecdsa_ok
= (x
->ex_flags
& EXFLAG_KUSAGE
) ?
1953 (x
->ex_kusage
& X509v3_KU_DIGITAL_SIGNATURE
) : 1;
1954 ecc_pkey
= X509_get_pubkey(x
);
1955 ecc_pkey_size
= (ecc_pkey
!= NULL
) ?
1956 EVP_PKEY_bits(ecc_pkey
) : 0;
1957 EVP_PKEY_free(ecc_pkey
);
1958 if ((x
->sig_alg
) && (x
->sig_alg
->algorithm
))
1959 signature_nid
= OBJ_obj2nid(x
->sig_alg
->algorithm
);
1960 #ifndef OPENSSL_NO_ECDH
1963 const char *sig
= OBJ_nid2ln(signature_nid
);
1970 if (strstr(sig
, "WithRSA"))
1974 if (ecc_pkey_size
<= 163)
1976 emask_k
|=SSL_kECDHr
;
1981 if (signature_nid
== NID_ecdsa_with_SHA1
)
1985 if (ecc_pkey_size
<= 163)
1987 emask_k
|=SSL_kECDHe
;
1993 #ifndef OPENSSL_NO_ECDSA
1997 emask_a
|=SSL_aECDSA
;
2002 #ifndef OPENSSL_NO_ECDH
2006 emask_k
|=SSL_kEECDH
;
2010 #ifndef OPENSSL_NO_PSK
2013 emask_k
|= SSL_kPSK
;
2014 emask_a
|= SSL_aPSK
;
2019 c
->export_mask_k
=emask_k
;
2020 c
->export_mask_a
=emask_a
;
2024 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */
2025 #define ku_reject(x, usage) \
2026 (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
2028 #ifndef OPENSSL_NO_EC
2030 int ssl_check_srvr_ecc_cert_and_alg(X509
*x
, const SSL_CIPHER
*cs
)
2032 unsigned long alg_k
, alg_a
;
2033 EVP_PKEY
*pkey
= NULL
;
2035 int signature_nid
= 0;
2037 alg_k
= cs
->algorithm_mkey
;
2038 alg_a
= cs
->algorithm_auth
;
2040 if (SSL_C_IS_EXPORT(cs
))
2042 /* ECDH key length in export ciphers must be <= 163 bits */
2043 pkey
= X509_get_pubkey(x
);
2044 if (pkey
== NULL
) return 0;
2045 keysize
= EVP_PKEY_bits(pkey
);
2046 EVP_PKEY_free(pkey
);
2047 if (keysize
> 163) return 0;
2050 /* This call populates the ex_flags field correctly */
2051 X509_check_purpose(x
, -1, 0);
2052 if ((x
->sig_alg
) && (x
->sig_alg
->algorithm
))
2053 signature_nid
= OBJ_obj2nid(x
->sig_alg
->algorithm
);
2054 if (alg_k
& SSL_kECDHe
|| alg_k
& SSL_kECDHr
)
2056 /* key usage, if present, must allow key agreement */
2057 if (ku_reject(x
, X509v3_KU_KEY_AGREEMENT
))
2059 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG
, SSL_R_ECC_CERT_NOT_FOR_KEY_AGREEMENT
);
2062 if (alg_k
& SSL_kECDHe
)
2064 /* signature alg must be ECDSA */
2065 if (signature_nid
!= NID_ecdsa_with_SHA1
)
2067 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG
, SSL_R_ECC_CERT_SHOULD_HAVE_SHA1_SIGNATURE
);
2071 if (alg_k
& SSL_kECDHr
)
2073 /* signature alg must be RSA */
2075 const char *sig
= OBJ_nid2ln(signature_nid
);
2081 if (strstr(sig
, "WithRSA") == NULL
)
2083 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG
, SSL_R_ECC_CERT_SHOULD_HAVE_RSA_SIGNATURE
);
2088 if (alg_a
& SSL_aECDSA
)
2090 /* key usage, if present, must allow signing */
2091 if (ku_reject(x
, X509v3_KU_DIGITAL_SIGNATURE
))
2093 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG
, SSL_R_ECC_CERT_NOT_FOR_SIGNING
);
2098 return 1; /* all checks are ok */
2103 /* THIS NEEDS CLEANING UP */
2104 X509
*ssl_get_server_send_cert(SSL
*s
)
2106 unsigned long alg_k
,alg_a
,mask_k
,mask_a
;
2111 ssl_set_cert_masks(c
, s
->s3
->tmp
.new_cipher
);
2112 is_export
=SSL_C_IS_EXPORT(s
->s3
->tmp
.new_cipher
);
2115 mask_k
= c
->export_mask_k
;
2116 mask_a
= c
->export_mask_a
;
2124 alg_k
= s
->s3
->tmp
.new_cipher
->algorithm_mkey
;
2125 alg_a
= s
->s3
->tmp
.new_cipher
->algorithm_auth
;
2127 if (alg_k
& (SSL_kECDHr
|SSL_kECDHe
))
2129 /* we don't need to look at SSL_kEECDH
2130 * since no certificate is needed for
2131 * anon ECDH and for authenticated
2132 * EECDH, the check for the auth
2133 * algorithm will set i correctly
2134 * NOTE: For ECDH-RSA, we need an ECC
2135 * not an RSA cert but for EECDH-RSA
2136 * we need an RSA cert. Placing the
2137 * checks for SSL_kECDH before RSA
2138 * checks ensures the correct cert is chosen.
2142 else if (alg_a
& SSL_aECDSA
)
2146 else if (alg_k
& SSL_kDHr
)
2148 else if (alg_k
& SSL_kDHd
)
2150 else if (alg_a
& SSL_aDSS
)
2151 i
=SSL_PKEY_DSA_SIGN
;
2152 else if (alg_a
& SSL_aRSA
)
2154 if (c
->pkeys
[SSL_PKEY_RSA_ENC
].x509
== NULL
)
2155 i
=SSL_PKEY_RSA_SIGN
;
2159 else if (alg_a
& SSL_aKRB5
)
2161 /* VRS something else here? */
2164 else if (alg_a
& SSL_aGOST94
)
2166 else if (alg_a
& SSL_aGOST01
)
2168 else /* if (alg_a & SSL_aNULL) */
2170 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT
,ERR_R_INTERNAL_ERROR
);
2173 if (c
->pkeys
[i
].x509
== NULL
) return(NULL
);
2175 return(c
->pkeys
[i
].x509
);
2178 EVP_PKEY
*ssl_get_sign_pkey(SSL
*s
,const SSL_CIPHER
*cipher
)
2180 unsigned long alg_a
;
2183 alg_a
= cipher
->algorithm_auth
;
2186 if ((alg_a
& SSL_aDSS
) &&
2187 (c
->pkeys
[SSL_PKEY_DSA_SIGN
].privatekey
!= NULL
))
2188 return(c
->pkeys
[SSL_PKEY_DSA_SIGN
].privatekey
);
2189 else if (alg_a
& SSL_aRSA
)
2191 if (c
->pkeys
[SSL_PKEY_RSA_SIGN
].privatekey
!= NULL
)
2192 return(c
->pkeys
[SSL_PKEY_RSA_SIGN
].privatekey
);
2193 else if (c
->pkeys
[SSL_PKEY_RSA_ENC
].privatekey
!= NULL
)
2194 return(c
->pkeys
[SSL_PKEY_RSA_ENC
].privatekey
);
2198 else if ((alg_a
& SSL_aECDSA
) &&
2199 (c
->pkeys
[SSL_PKEY_ECC
].privatekey
!= NULL
))
2200 return(c
->pkeys
[SSL_PKEY_ECC
].privatekey
);
2201 else /* if (alg_a & SSL_aNULL) */
2203 SSLerr(SSL_F_SSL_GET_SIGN_PKEY
,ERR_R_INTERNAL_ERROR
);
2208 void ssl_update_cache(SSL
*s
,int mode
)
2212 /* If the session_id_length is 0, we are not supposed to cache it,
2213 * and it would be rather hard to do anyway :-) */
2214 if (s
->session
->session_id_length
== 0) return;
2216 i
=s
->session_ctx
->session_cache_mode
;
2217 if ((i
& mode
) && (!s
->hit
)
2218 && ((i
& SSL_SESS_CACHE_NO_INTERNAL_STORE
)
2219 || SSL_CTX_add_session(s
->session_ctx
,s
->session
))
2220 && (s
->session_ctx
->new_session_cb
!= NULL
))
2222 CRYPTO_add(&s
->session
->references
,1,CRYPTO_LOCK_SSL_SESSION
);
2223 if (!s
->session_ctx
->new_session_cb(s
,s
->session
))
2224 SSL_SESSION_free(s
->session
);
2227 /* auto flush every 255 connections */
2228 if ((!(i
& SSL_SESS_CACHE_NO_AUTO_CLEAR
)) &&
2229 ((i
& mode
) == mode
))
2231 if ( (((mode
& SSL_SESS_CACHE_CLIENT
)
2232 ?s
->session_ctx
->stats
.sess_connect_good
2233 :s
->session_ctx
->stats
.sess_accept_good
) & 0xff) == 0xff)
2235 SSL_CTX_flush_sessions(s
->session_ctx
,(unsigned long)time(NULL
));
2240 const SSL_METHOD
*SSL_get_ssl_method(SSL
*s
)
2245 int SSL_set_ssl_method(SSL
*s
, const SSL_METHOD
*meth
)
2250 if (s
->method
!= meth
)
2252 if (s
->handshake_func
!= NULL
)
2253 conn
=(s
->handshake_func
== s
->method
->ssl_connect
);
2255 if (s
->method
->version
== meth
->version
)
2259 s
->method
->ssl_free(s
);
2261 ret
=s
->method
->ssl_new(s
);
2265 s
->handshake_func
=meth
->ssl_connect
;
2267 s
->handshake_func
=meth
->ssl_accept
;
2272 int SSL_get_error(const SSL
*s
,int i
)
2278 if (i
> 0) return(SSL_ERROR_NONE
);
2280 /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
2281 * etc, where we do encode the error */
2282 if ((l
=ERR_peek_error()) != 0)
2284 if (ERR_GET_LIB(l
) == ERR_LIB_SYS
)
2285 return(SSL_ERROR_SYSCALL
);
2287 return(SSL_ERROR_SSL
);
2290 if ((i
< 0) && SSL_want_read(s
))
2292 bio
=SSL_get_rbio(s
);
2293 if (BIO_should_read(bio
))
2294 return(SSL_ERROR_WANT_READ
);
2295 else if (BIO_should_write(bio
))
2296 /* This one doesn't make too much sense ... We never try
2297 * to write to the rbio, and an application program where
2298 * rbio and wbio are separate couldn't even know what it
2300 * However if we ever set s->rwstate incorrectly
2301 * (so that we have SSL_want_read(s) instead of
2302 * SSL_want_write(s)) and rbio and wbio *are* the same,
2303 * this test works around that bug; so it might be safer
2305 return(SSL_ERROR_WANT_WRITE
);
2306 else if (BIO_should_io_special(bio
))
2308 reason
=BIO_get_retry_reason(bio
);
2309 if (reason
== BIO_RR_CONNECT
)
2310 return(SSL_ERROR_WANT_CONNECT
);
2311 else if (reason
== BIO_RR_ACCEPT
)
2312 return(SSL_ERROR_WANT_ACCEPT
);
2314 return(SSL_ERROR_SYSCALL
); /* unknown */
2318 if ((i
< 0) && SSL_want_write(s
))
2320 bio
=SSL_get_wbio(s
);
2321 if (BIO_should_write(bio
))
2322 return(SSL_ERROR_WANT_WRITE
);
2323 else if (BIO_should_read(bio
))
2324 /* See above (SSL_want_read(s) with BIO_should_write(bio)) */
2325 return(SSL_ERROR_WANT_READ
);
2326 else if (BIO_should_io_special(bio
))
2328 reason
=BIO_get_retry_reason(bio
);
2329 if (reason
== BIO_RR_CONNECT
)
2330 return(SSL_ERROR_WANT_CONNECT
);
2331 else if (reason
== BIO_RR_ACCEPT
)
2332 return(SSL_ERROR_WANT_ACCEPT
);
2334 return(SSL_ERROR_SYSCALL
);
2337 if ((i
< 0) && SSL_want_x509_lookup(s
))
2339 return(SSL_ERROR_WANT_X509_LOOKUP
);
2344 if (s
->version
== SSL2_VERSION
)
2346 /* assume it is the socket being closed */
2347 return(SSL_ERROR_ZERO_RETURN
);
2351 if ((s
->shutdown
& SSL_RECEIVED_SHUTDOWN
) &&
2352 (s
->s3
->warn_alert
== SSL_AD_CLOSE_NOTIFY
))
2353 return(SSL_ERROR_ZERO_RETURN
);
2356 return(SSL_ERROR_SYSCALL
);
2359 int SSL_do_handshake(SSL
*s
)
2363 if (s
->handshake_func
== NULL
)
2365 SSLerr(SSL_F_SSL_DO_HANDSHAKE
,SSL_R_CONNECTION_TYPE_NOT_SET
);
2369 s
->method
->ssl_renegotiate_check(s
);
2371 if (SSL_in_init(s
) || SSL_in_before(s
))
2373 ret
=s
->handshake_func(s
);
2378 /* For the next 2 functions, SSL_clear() sets shutdown and so
2379 * one of these calls will reset it */
2380 void SSL_set_accept_state(SSL
*s
)
2384 s
->state
=SSL_ST_ACCEPT
|SSL_ST_BEFORE
;
2385 s
->handshake_func
=s
->method
->ssl_accept
;
2386 /* clear the current cipher */
2387 ssl_clear_cipher_ctx(s
);
2388 ssl_clear_hash_ctx(&s
->read_hash
);
2389 ssl_clear_hash_ctx(&s
->write_hash
);
2392 void SSL_set_connect_state(SSL
*s
)
2396 s
->state
=SSL_ST_CONNECT
|SSL_ST_BEFORE
;
2397 s
->handshake_func
=s
->method
->ssl_connect
;
2398 /* clear the current cipher */
2399 ssl_clear_cipher_ctx(s
);
2400 ssl_clear_hash_ctx(&s
->read_hash
);
2401 ssl_clear_hash_ctx(&s
->write_hash
);
2404 int ssl_undefined_function(SSL
*s
)
2406 SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION
,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
2410 int ssl_undefined_void_function(void)
2412 SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION
,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
2416 int ssl_undefined_const_function(const SSL
*s
)
2418 SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION
,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
2422 SSL_METHOD
*ssl_bad_method(int ver
)
2424 SSLerr(SSL_F_SSL_BAD_METHOD
,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
2428 const char *SSL_get_version(const SSL
*s
)
2430 if (s
->version
== TLS1_1_VERSION
)
2432 else if (s
->version
== SSL3_VERSION
)
2434 else if (s
->version
== SSL3_VERSION
)
2436 else if (s
->version
== SSL2_VERSION
)
2442 SSL
*SSL_dup(SSL
*s
)
2444 STACK_OF(X509_NAME
) *sk
;
2449 if ((ret
=SSL_new(SSL_get_SSL_CTX(s
))) == NULL
)
2452 ret
->version
= s
->version
;
2453 ret
->type
= s
->type
;
2454 ret
->method
= s
->method
;
2456 if (s
->session
!= NULL
)
2458 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2459 SSL_copy_session_id(ret
,s
);
2463 /* No session has been established yet, so we have to expect
2464 * that s->cert or ret->cert will be changed later --
2465 * they should not both point to the same object,
2466 * and thus we can't use SSL_copy_session_id. */
2468 ret
->method
->ssl_free(ret
);
2469 ret
->method
= s
->method
;
2470 ret
->method
->ssl_new(ret
);
2472 if (s
->cert
!= NULL
)
2474 if (ret
->cert
!= NULL
)
2476 ssl_cert_free(ret
->cert
);
2478 ret
->cert
= ssl_cert_dup(s
->cert
);
2479 if (ret
->cert
== NULL
)
2483 SSL_set_session_id_context(ret
,
2484 s
->sid_ctx
, s
->sid_ctx_length
);
2487 ret
->options
=s
->options
;
2489 SSL_set_max_cert_list(ret
,SSL_get_max_cert_list(s
));
2490 SSL_set_read_ahead(ret
,SSL_get_read_ahead(s
));
2491 ret
->msg_callback
= s
->msg_callback
;
2492 ret
->msg_callback_arg
= s
->msg_callback_arg
;
2493 SSL_set_verify(ret
,SSL_get_verify_mode(s
),
2494 SSL_get_verify_callback(s
));
2495 SSL_set_verify_depth(ret
,SSL_get_verify_depth(s
));
2496 ret
->generate_session_id
= s
->generate_session_id
;
2498 SSL_set_info_callback(ret
,SSL_get_info_callback(s
));
2500 ret
->debug
=s
->debug
;
2502 /* copy app data, a little dangerous perhaps */
2503 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL
, &ret
->ex_data
, &s
->ex_data
))
2506 /* setup rbio, and wbio */
2507 if (s
->rbio
!= NULL
)
2509 if (!BIO_dup_state(s
->rbio
,(char *)&ret
->rbio
))
2512 if (s
->wbio
!= NULL
)
2514 if (s
->wbio
!= s
->rbio
)
2516 if (!BIO_dup_state(s
->wbio
,(char *)&ret
->wbio
))
2520 ret
->wbio
=ret
->rbio
;
2522 ret
->rwstate
= s
->rwstate
;
2523 ret
->in_handshake
= s
->in_handshake
;
2524 ret
->handshake_func
= s
->handshake_func
;
2525 ret
->server
= s
->server
;
2526 ret
->new_session
= s
->new_session
;
2527 ret
->quiet_shutdown
= s
->quiet_shutdown
;
2528 ret
->shutdown
=s
->shutdown
;
2529 ret
->state
=s
->state
; /* SSL_dup does not really work at any state, though */
2530 ret
->rstate
=s
->rstate
;
2531 ret
->init_num
= 0; /* would have to copy ret->init_buf, ret->init_msg, ret->init_num, ret->init_off */
2534 X509_VERIFY_PARAM_inherit(ret
->param
, s
->param
);
2536 /* dup the cipher_list and cipher_list_by_id stacks */
2537 if (s
->cipher_list
!= NULL
)
2539 if ((ret
->cipher_list
=sk_SSL_CIPHER_dup(s
->cipher_list
)) == NULL
)
2542 if (s
->cipher_list_by_id
!= NULL
)
2543 if ((ret
->cipher_list_by_id
=sk_SSL_CIPHER_dup(s
->cipher_list_by_id
))
2547 /* Dup the client_CA list */
2548 if (s
->client_CA
!= NULL
)
2550 if ((sk
=sk_X509_NAME_dup(s
->client_CA
)) == NULL
) goto err
;
2552 for (i
=0; i
<sk_X509_NAME_num(sk
); i
++)
2554 xn
=sk_X509_NAME_value(sk
,i
);
2555 if (sk_X509_NAME_set(sk
,i
,X509_NAME_dup(xn
)) == NULL
)
2566 if (ret
!= NULL
) SSL_free(ret
);
2572 void ssl_clear_cipher_ctx(SSL
*s
)
2574 if (s
->enc_read_ctx
!= NULL
)
2576 EVP_CIPHER_CTX_cleanup(s
->enc_read_ctx
);
2577 OPENSSL_free(s
->enc_read_ctx
);
2578 s
->enc_read_ctx
=NULL
;
2580 if (s
->enc_write_ctx
!= NULL
)
2582 EVP_CIPHER_CTX_cleanup(s
->enc_write_ctx
);
2583 OPENSSL_free(s
->enc_write_ctx
);
2584 s
->enc_write_ctx
=NULL
;
2586 #ifndef OPENSSL_NO_COMP
2587 if (s
->expand
!= NULL
)
2589 COMP_CTX_free(s
->expand
);
2592 if (s
->compress
!= NULL
)
2594 COMP_CTX_free(s
->compress
);
2600 /* Fix this function so that it takes an optional type parameter */
2601 X509
*SSL_get_certificate(const SSL
*s
)
2603 if (s
->cert
!= NULL
)
2604 return(s
->cert
->key
->x509
);
2609 /* Fix this function so that it takes an optional type parameter */
2610 EVP_PKEY
*SSL_get_privatekey(SSL
*s
)
2612 if (s
->cert
!= NULL
)
2613 return(s
->cert
->key
->privatekey
);
2618 const SSL_CIPHER
*SSL_get_current_cipher(const SSL
*s
)
2620 if ((s
->session
!= NULL
) && (s
->session
->cipher
!= NULL
))
2621 return(s
->session
->cipher
);
2624 #ifdef OPENSSL_NO_COMP
2625 const void *SSL_get_current_compression(SSL
*s
)
2629 const void *SSL_get_current_expansion(SSL
*s
)
2635 const COMP_METHOD
*SSL_get_current_compression(SSL
*s
)
2637 if (s
->compress
!= NULL
)
2638 return(s
->compress
->meth
);
2642 const COMP_METHOD
*SSL_get_current_expansion(SSL
*s
)
2644 if (s
->expand
!= NULL
)
2645 return(s
->expand
->meth
);
2650 int ssl_init_wbio_buffer(SSL
*s
,int push
)
2654 if (s
->bbio
== NULL
)
2656 bbio
=BIO_new(BIO_f_buffer());
2657 if (bbio
== NULL
) return(0);
2663 if (s
->bbio
== s
->wbio
)
2664 s
->wbio
=BIO_pop(s
->wbio
);
2666 (void)BIO_reset(bbio
);
2667 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2668 if (!BIO_set_read_buffer_size(bbio
,1))
2670 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER
,ERR_R_BUF_LIB
);
2675 if (s
->wbio
!= bbio
)
2676 s
->wbio
=BIO_push(bbio
,s
->wbio
);
2680 if (s
->wbio
== bbio
)
2681 s
->wbio
=BIO_pop(bbio
);
2686 void ssl_free_wbio_buffer(SSL
*s
)
2688 if (s
->bbio
== NULL
) return;
2690 if (s
->bbio
== s
->wbio
)
2692 /* remove buffering */
2693 s
->wbio
=BIO_pop(s
->wbio
);
2694 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids adding one more preprocessor symbol */
2695 assert(s
->wbio
!= NULL
);
2702 void SSL_CTX_set_quiet_shutdown(SSL_CTX
*ctx
,int mode
)
2704 ctx
->quiet_shutdown
=mode
;
2707 int SSL_CTX_get_quiet_shutdown(const SSL_CTX
*ctx
)
2709 return(ctx
->quiet_shutdown
);
2712 void SSL_set_quiet_shutdown(SSL
*s
,int mode
)
2714 s
->quiet_shutdown
=mode
;
2717 int SSL_get_quiet_shutdown(const SSL
*s
)
2719 return(s
->quiet_shutdown
);
2722 void SSL_set_shutdown(SSL
*s
,int mode
)
2727 int SSL_get_shutdown(const SSL
*s
)
2729 return(s
->shutdown
);
2732 int SSL_version(const SSL
*s
)
2737 SSL_CTX
*SSL_get_SSL_CTX(const SSL
*ssl
)
2742 SSL_CTX
*SSL_set_SSL_CTX(SSL
*ssl
, SSL_CTX
* ctx
)
2744 if (ssl
->ctx
== ctx
)
2746 #ifndef OPENSSL_NO_TLSEXT
2748 ctx
= ssl
->initial_ctx
;
2750 if (ssl
->cert
!= NULL
)
2751 ssl_cert_free(ssl
->cert
);
2752 ssl
->cert
= ssl_cert_dup(ctx
->cert
);
2753 CRYPTO_add(&ctx
->references
,1,CRYPTO_LOCK_SSL_CTX
);
2754 if (ssl
->ctx
!= NULL
)
2755 SSL_CTX_free(ssl
->ctx
); /* decrement reference count */
2760 #ifndef OPENSSL_NO_STDIO
2761 int SSL_CTX_set_default_verify_paths(SSL_CTX
*ctx
)
2763 return(X509_STORE_set_default_paths(ctx
->cert_store
));
2766 int SSL_CTX_load_verify_locations(SSL_CTX
*ctx
, const char *CAfile
,
2769 return(X509_STORE_load_locations(ctx
->cert_store
,CAfile
,CApath
));
2773 void SSL_set_info_callback(SSL
*ssl
,
2774 void (*cb
)(const SSL
*ssl
,int type
,int val
))
2776 ssl
->info_callback
=cb
;
2779 /* One compiler (Diab DCC) doesn't like argument names in returned
2780 function pointer. */
2781 void (*SSL_get_info_callback(const SSL
*ssl
))(const SSL
* /*ssl*/,int /*type*/,int /*val*/)
2783 return ssl
->info_callback
;
2786 int SSL_state(const SSL
*ssl
)
2791 void SSL_set_verify_result(SSL
*ssl
,long arg
)
2793 ssl
->verify_result
=arg
;
2796 long SSL_get_verify_result(const SSL
*ssl
)
2798 return(ssl
->verify_result
);
2801 int SSL_get_ex_new_index(long argl
,void *argp
,CRYPTO_EX_new
*new_func
,
2802 CRYPTO_EX_dup
*dup_func
,CRYPTO_EX_free
*free_func
)
2804 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL
, argl
, argp
,
2805 new_func
, dup_func
, free_func
);
2808 int SSL_set_ex_data(SSL
*s
,int idx
,void *arg
)
2810 return(CRYPTO_set_ex_data(&s
->ex_data
,idx
,arg
));
2813 void *SSL_get_ex_data(const SSL
*s
,int idx
)
2815 return(CRYPTO_get_ex_data(&s
->ex_data
,idx
));
2818 int SSL_CTX_get_ex_new_index(long argl
,void *argp
,CRYPTO_EX_new
*new_func
,
2819 CRYPTO_EX_dup
*dup_func
,CRYPTO_EX_free
*free_func
)
2821 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX
, argl
, argp
,
2822 new_func
, dup_func
, free_func
);
2825 int SSL_CTX_set_ex_data(SSL_CTX
*s
,int idx
,void *arg
)
2827 return(CRYPTO_set_ex_data(&s
->ex_data
,idx
,arg
));
2830 void *SSL_CTX_get_ex_data(const SSL_CTX
*s
,int idx
)
2832 return(CRYPTO_get_ex_data(&s
->ex_data
,idx
));
2840 X509_STORE
*SSL_CTX_get_cert_store(const SSL_CTX
*ctx
)
2842 return(ctx
->cert_store
);
2845 void SSL_CTX_set_cert_store(SSL_CTX
*ctx
,X509_STORE
*store
)
2847 if (ctx
->cert_store
!= NULL
)
2848 X509_STORE_free(ctx
->cert_store
);
2849 ctx
->cert_store
=store
;
2852 int SSL_want(const SSL
*s
)
2858 * \brief Set the callback for generating temporary RSA keys.
2859 * \param ctx the SSL context.
2860 * \param cb the callback
2863 #ifndef OPENSSL_NO_RSA
2864 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX
*ctx
,RSA
*(*cb
)(SSL
*ssl
,
2868 SSL_CTX_callback_ctrl(ctx
,SSL_CTRL_SET_TMP_RSA_CB
,(void (*)(void))cb
);
2871 void SSL_set_tmp_rsa_callback(SSL
*ssl
,RSA
*(*cb
)(SSL
*ssl
,
2875 SSL_callback_ctrl(ssl
,SSL_CTRL_SET_TMP_RSA_CB
,(void (*)(void))cb
);
2881 * \brief The RSA temporary key callback function.
2882 * \param ssl the SSL session.
2883 * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
2884 * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
2885 * of the required key in bits.
2886 * \return the temporary RSA key.
2887 * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
2890 RSA
*cb(SSL
*ssl
,int is_export
,int keylength
)
2895 * \brief Set the callback for generating temporary DH keys.
2896 * \param ctx the SSL context.
2897 * \param dh the callback
2900 #ifndef OPENSSL_NO_DH
2901 void SSL_CTX_set_tmp_dh_callback(SSL_CTX
*ctx
,DH
*(*dh
)(SSL
*ssl
,int is_export
,
2904 SSL_CTX_callback_ctrl(ctx
,SSL_CTRL_SET_TMP_DH_CB
,(void (*)(void))dh
);
2907 void SSL_set_tmp_dh_callback(SSL
*ssl
,DH
*(*dh
)(SSL
*ssl
,int is_export
,
2910 SSL_callback_ctrl(ssl
,SSL_CTRL_SET_TMP_DH_CB
,(void (*)(void))dh
);
2914 #ifndef OPENSSL_NO_ECDH
2915 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX
*ctx
,EC_KEY
*(*ecdh
)(SSL
*ssl
,int is_export
,
2918 SSL_CTX_callback_ctrl(ctx
,SSL_CTRL_SET_TMP_ECDH_CB
,(void (*)(void))ecdh
);
2921 void SSL_set_tmp_ecdh_callback(SSL
*ssl
,EC_KEY
*(*ecdh
)(SSL
*ssl
,int is_export
,
2924 SSL_callback_ctrl(ssl
,SSL_CTRL_SET_TMP_ECDH_CB
,(void (*)(void))ecdh
);
2928 #ifndef OPENSSL_NO_PSK
2929 int SSL_CTX_use_psk_identity_hint(SSL_CTX
*ctx
, const char *identity_hint
)
2931 if (identity_hint
!= NULL
&& strlen(identity_hint
) > PSK_MAX_IDENTITY_LEN
)
2933 SSLerr(SSL_F_SSL_CTX_USE_PSK_IDENTITY_HINT
, SSL_R_DATA_LENGTH_TOO_LONG
);
2936 if (ctx
->psk_identity_hint
!= NULL
)
2937 OPENSSL_free(ctx
->psk_identity_hint
);
2938 if (identity_hint
!= NULL
)
2940 ctx
->psk_identity_hint
= BUF_strdup(identity_hint
);
2941 if (ctx
->psk_identity_hint
== NULL
)
2945 ctx
->psk_identity_hint
= NULL
;
2949 int SSL_use_psk_identity_hint(SSL
*s
, const char *identity_hint
)
2954 if (s
->session
== NULL
)
2955 return 1; /* session not created yet, ignored */
2957 if (identity_hint
!= NULL
&& strlen(identity_hint
) > PSK_MAX_IDENTITY_LEN
)
2959 SSLerr(SSL_F_SSL_USE_PSK_IDENTITY_HINT
, SSL_R_DATA_LENGTH_TOO_LONG
);
2962 if (s
->session
->psk_identity_hint
!= NULL
)
2963 OPENSSL_free(s
->session
->psk_identity_hint
);
2964 if (identity_hint
!= NULL
)
2966 s
->session
->psk_identity_hint
= BUF_strdup(identity_hint
);
2967 if (s
->session
->psk_identity_hint
== NULL
)
2971 s
->session
->psk_identity_hint
= NULL
;
2975 const char *SSL_get_psk_identity_hint(const SSL
*s
)
2977 if (s
== NULL
|| s
->session
== NULL
)
2979 return(s
->session
->psk_identity_hint
);
2982 const char *SSL_get_psk_identity(const SSL
*s
)
2984 if (s
== NULL
|| s
->session
== NULL
)
2986 return(s
->session
->psk_identity
);
2989 void SSL_set_psk_client_callback(SSL
*s
,
2990 unsigned int (*cb
)(SSL
*ssl
, const char *hint
,
2991 char *identity
, unsigned int max_identity_len
, unsigned char *psk
,
2992 unsigned int max_psk_len
))
2994 s
->psk_client_callback
= cb
;
2997 void SSL_CTX_set_psk_client_callback(SSL_CTX
*ctx
,
2998 unsigned int (*cb
)(SSL
*ssl
, const char *hint
,
2999 char *identity
, unsigned int max_identity_len
, unsigned char *psk
,
3000 unsigned int max_psk_len
))
3002 ctx
->psk_client_callback
= cb
;
3005 void SSL_set_psk_server_callback(SSL
*s
,
3006 unsigned int (*cb
)(SSL
*ssl
, const char *identity
,
3007 unsigned char *psk
, unsigned int max_psk_len
))
3009 s
->psk_server_callback
= cb
;
3012 void SSL_CTX_set_psk_server_callback(SSL_CTX
*ctx
,
3013 unsigned int (*cb
)(SSL
*ssl
, const char *identity
,
3014 unsigned char *psk
, unsigned int max_psk_len
))
3016 ctx
->psk_server_callback
= cb
;
3020 void SSL_CTX_set_msg_callback(SSL_CTX
*ctx
, void (*cb
)(int write_p
, int version
, int content_type
, const void *buf
, size_t len
, SSL
*ssl
, void *arg
))
3022 SSL_CTX_callback_ctrl(ctx
, SSL_CTRL_SET_MSG_CALLBACK
, (void (*)(void))cb
);
3024 void SSL_set_msg_callback(SSL
*ssl
, void (*cb
)(int write_p
, int version
, int content_type
, const void *buf
, size_t len
, SSL
*ssl
, void *arg
))
3026 SSL_callback_ctrl(ssl
, SSL_CTRL_SET_MSG_CALLBACK
, (void (*)(void))cb
);
3029 /* Allocates new EVP_MD_CTX and sets pointer to it into given pointer
3030 * vairable, freeing EVP_MD_CTX previously stored in that variable, if
3031 * any. If EVP_MD pointer is passed, initializes ctx with this md
3032 * Returns newly allocated ctx;
3035 EVP_MD_CTX
*ssl_replace_hash(EVP_MD_CTX
**hash
,const EVP_MD
*md
)
3037 ssl_clear_hash_ctx(hash
);
3038 *hash
= EVP_MD_CTX_create();
3039 if (md
) EVP_DigestInit_ex(*hash
,md
,NULL
);
3042 void ssl_clear_hash_ctx(EVP_MD_CTX
**hash
)
3045 if (*hash
) EVP_MD_CTX_destroy(*hash
);
3049 #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
3050 #include "../crypto/bio/bss_file.c"
3053 IMPLEMENT_STACK_OF(SSL_CIPHER
)
3054 IMPLEMENT_STACK_OF(SSL_COMP
)
3055 IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER
, SSL_CIPHER
,