Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git] / crypto / openssl / ssl / ssl_lib.c
blob3ab78a67dcb451889a9a7baca460b955c57fd2fc
1 /*! \file ssl/ssl_lib.c
2 * \brief Version independent SSL functions.
3 */
4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * All rights reserved.
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
27 * are met:
28 * 1. Redistributions of source code must retain the copyright
29 * notice, this list of conditions and the following disclaimer.
30 * 2. Redistributions in binary form must reproduce the above copyright
31 * notice, this list of conditions and the following disclaimer in the
32 * documentation and/or other materials provided with the distribution.
33 * 3. All advertising materials mentioning features or use of this software
34 * must display the following acknowledgement:
35 * "This product includes cryptographic software written by
36 * Eric Young (eay@cryptsoft.com)"
37 * The word 'cryptographic' can be left out if the rouines from the library
38 * being used are not cryptographic related :-).
39 * 4. If you include any Windows specific code (or a derivative thereof) from
40 * the apps directory (application code) you must include an acknowledgement:
41 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
43 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
44 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * SUCH DAMAGE.
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-2001 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
65 * are met:
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
73 * distribution.
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
90 * acknowledgment:
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.
119 #ifdef REF_CHECK
120 # include <assert.h>
121 #endif
122 #include <stdio.h>
123 #include "ssl_locl.h"
124 #include "kssl_lcl.h"
125 #include <openssl/objects.h>
126 #include <openssl/lhash.h>
127 #include <openssl/x509v3.h>
128 #ifndef OPENSSL_NO_DH
129 #include <openssl/dh.h>
130 #endif
132 const char *SSL_version_str=OPENSSL_VERSION_TEXT;
134 SSL3_ENC_METHOD ssl3_undef_enc_method={
135 /* evil casts, but these functions are only called if there's a library bug */
136 (int (*)(SSL *,int))ssl_undefined_function,
137 (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
138 ssl_undefined_function,
139 (int (*)(SSL *, unsigned char *, unsigned char *, int))ssl_undefined_function,
140 (int (*)(SSL*, int))ssl_undefined_function,
141 (int (*)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char*, int, unsigned char *))ssl_undefined_function,
142 0, /* finish_mac_length */
143 (int (*)(SSL *, EVP_MD_CTX *, unsigned char *))ssl_undefined_function,
144 NULL, /* client_finished_label */
145 0, /* client_finished_label_len */
146 NULL, /* server_finished_label */
147 0, /* server_finished_label_len */
148 (int (*)(int))ssl_undefined_function
151 int SSL_clear(SSL *s)
154 if (s->method == NULL)
156 SSLerr(SSL_F_SSL_CLEAR,SSL_R_NO_METHOD_SPECIFIED);
157 return(0);
160 if (ssl_clear_bad_session(s))
162 SSL_SESSION_free(s->session);
163 s->session=NULL;
166 s->error=0;
167 s->hit=0;
168 s->shutdown=0;
170 #if 0 /* Disabled since version 1.10 of this file (early return not
171 * needed because SSL_clear is not called when doing renegotiation) */
172 /* This is set if we are doing dynamic renegotiation so keep
173 * the old cipher. It is sort of a SSL_clear_lite :-) */
174 if (s->new_session) return(1);
175 #else
176 if (s->new_session)
178 SSLerr(SSL_F_SSL_CLEAR,ERR_R_INTERNAL_ERROR);
179 return 0;
181 #endif
183 s->type=0;
185 s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT);
187 s->version=s->method->version;
188 s->client_version=s->version;
189 s->rwstate=SSL_NOTHING;
190 s->rstate=SSL_ST_READ_HEADER;
191 #if 0
192 s->read_ahead=s->ctx->read_ahead;
193 #endif
195 if (s->init_buf != NULL)
197 BUF_MEM_free(s->init_buf);
198 s->init_buf=NULL;
201 ssl_clear_cipher_ctx(s);
203 s->first_packet=0;
205 #if 1
206 /* Check to see if we were changed into a different method, if
207 * so, revert back if we are not doing session-id reuse. */
208 if (!s->in_handshake && (s->session == NULL) && (s->method != s->ctx->method))
210 s->method->ssl_free(s);
211 s->method=s->ctx->method;
212 if (!s->method->ssl_new(s))
213 return(0);
215 else
216 #endif
217 s->method->ssl_clear(s);
218 return(1);
221 /** Used to change an SSL_CTXs default SSL method type */
222 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth)
224 STACK_OF(SSL_CIPHER) *sk;
226 ctx->method=meth;
228 sk=ssl_create_cipher_list(ctx->method,&(ctx->cipher_list),
229 &(ctx->cipher_list_by_id),SSL_DEFAULT_CIPHER_LIST);
230 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0))
232 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
233 return(0);
235 return(1);
238 SSL *SSL_new(SSL_CTX *ctx)
240 SSL *s;
242 if (ctx == NULL)
244 SSLerr(SSL_F_SSL_NEW,SSL_R_NULL_SSL_CTX);
245 return(NULL);
247 if (ctx->method == NULL)
249 SSLerr(SSL_F_SSL_NEW,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
250 return(NULL);
253 s=(SSL *)OPENSSL_malloc(sizeof(SSL));
254 if (s == NULL) goto err;
255 memset(s,0,sizeof(SSL));
257 #ifndef OPENSSL_NO_KRB5
258 s->kssl_ctx = kssl_ctx_new();
259 #endif /* OPENSSL_NO_KRB5 */
261 s->options=ctx->options;
262 s->mode=ctx->mode;
263 s->max_cert_list=ctx->max_cert_list;
265 if (ctx->cert != NULL)
267 /* Earlier library versions used to copy the pointer to
268 * the CERT, not its contents; only when setting new
269 * parameters for the per-SSL copy, ssl_cert_new would be
270 * called (and the direct reference to the per-SSL_CTX
271 * settings would be lost, but those still were indirectly
272 * accessed for various purposes, and for that reason they
273 * used to be known as s->ctx->default_cert).
274 * Now we don't look at the SSL_CTX's CERT after having
275 * duplicated it once. */
277 s->cert = ssl_cert_dup(ctx->cert);
278 if (s->cert == NULL)
279 goto err;
281 else
282 s->cert=NULL; /* Cannot really happen (see SSL_CTX_new) */
284 s->read_ahead=ctx->read_ahead;
285 s->msg_callback=ctx->msg_callback;
286 s->msg_callback_arg=ctx->msg_callback_arg;
287 s->verify_mode=ctx->verify_mode;
288 #if 0
289 s->verify_depth=ctx->verify_depth;
290 #endif
291 s->sid_ctx_length=ctx->sid_ctx_length;
292 OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx);
293 memcpy(&s->sid_ctx,&ctx->sid_ctx,sizeof(s->sid_ctx));
294 s->verify_callback=ctx->default_verify_callback;
295 s->generate_session_id=ctx->generate_session_id;
297 s->param = X509_VERIFY_PARAM_new();
298 if (!s->param)
299 goto err;
300 X509_VERIFY_PARAM_inherit(s->param, ctx->param);
301 #if 0
302 s->purpose = ctx->purpose;
303 s->trust = ctx->trust;
304 #endif
305 s->quiet_shutdown=ctx->quiet_shutdown;
307 CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
308 s->ctx=ctx;
310 s->verify_result=X509_V_OK;
312 s->method=ctx->method;
314 if (!s->method->ssl_new(s))
315 goto err;
317 s->references=1;
318 s->server=(ctx->method->ssl_accept == ssl_undefined_function)?0:1;
320 SSL_clear(s);
322 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
324 return(s);
325 err:
326 if (s != NULL)
328 if (s->cert != NULL)
329 ssl_cert_free(s->cert);
330 if (s->ctx != NULL)
331 SSL_CTX_free(s->ctx); /* decrement reference count */
332 OPENSSL_free(s);
334 SSLerr(SSL_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
335 return(NULL);
338 int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx,
339 unsigned int sid_ctx_len)
341 if(sid_ctx_len > sizeof ctx->sid_ctx)
343 SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
344 return 0;
346 ctx->sid_ctx_length=sid_ctx_len;
347 memcpy(ctx->sid_ctx,sid_ctx,sid_ctx_len);
349 return 1;
352 int SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
353 unsigned int sid_ctx_len)
355 if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH)
357 SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
358 return 0;
360 ssl->sid_ctx_length=sid_ctx_len;
361 memcpy(ssl->sid_ctx,sid_ctx,sid_ctx_len);
363 return 1;
366 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
368 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
369 ctx->generate_session_id = cb;
370 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
371 return 1;
374 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
376 CRYPTO_w_lock(CRYPTO_LOCK_SSL);
377 ssl->generate_session_id = cb;
378 CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
379 return 1;
382 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
383 unsigned int id_len)
385 /* A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
386 * we can "construct" a session to give us the desired check - ie. to
387 * find if there's a session in the hash table that would conflict with
388 * any new session built out of this id/id_len and the ssl_version in
389 * use by this SSL. */
390 SSL_SESSION r, *p;
392 if(id_len > sizeof r.session_id)
393 return 0;
395 r.ssl_version = ssl->version;
396 r.session_id_length = id_len;
397 memcpy(r.session_id, id, id_len);
398 /* NB: SSLv2 always uses a fixed 16-byte session ID, so even if a
399 * callback is calling us to check the uniqueness of a shorter ID, it
400 * must be compared as a padded-out ID because that is what it will be
401 * converted to when the callback has finished choosing it. */
402 if((r.ssl_version == SSL2_VERSION) &&
403 (id_len < SSL2_SSL_SESSION_ID_LENGTH))
405 memset(r.session_id + id_len, 0,
406 SSL2_SSL_SESSION_ID_LENGTH - id_len);
407 r.session_id_length = SSL2_SSL_SESSION_ID_LENGTH;
410 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
411 p = (SSL_SESSION *)lh_retrieve(ssl->ctx->sessions, &r);
412 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
413 return (p != NULL);
416 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
418 return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
421 int SSL_set_purpose(SSL *s, int purpose)
423 return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
426 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
428 return X509_VERIFY_PARAM_set_trust(s->param, trust);
431 int SSL_set_trust(SSL *s, int trust)
433 return X509_VERIFY_PARAM_set_trust(s->param, trust);
436 void SSL_free(SSL *s)
438 int i;
440 if(s == NULL)
441 return;
443 i=CRYPTO_add(&s->references,-1,CRYPTO_LOCK_SSL);
444 #ifdef REF_PRINT
445 REF_PRINT("SSL",s);
446 #endif
447 if (i > 0) return;
448 #ifdef REF_CHECK
449 if (i < 0)
451 fprintf(stderr,"SSL_free, bad reference count\n");
452 abort(); /* ok */
454 #endif
456 if (s->param)
457 X509_VERIFY_PARAM_free(s->param);
459 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
461 if (s->bbio != NULL)
463 /* If the buffering BIO is in place, pop it off */
464 if (s->bbio == s->wbio)
466 s->wbio=BIO_pop(s->wbio);
468 BIO_free(s->bbio);
469 s->bbio=NULL;
471 if (s->rbio != NULL)
472 BIO_free_all(s->rbio);
473 if ((s->wbio != NULL) && (s->wbio != s->rbio))
474 BIO_free_all(s->wbio);
476 if (s->init_buf != NULL) BUF_MEM_free(s->init_buf);
478 /* add extra stuff */
479 if (s->cipher_list != NULL) sk_SSL_CIPHER_free(s->cipher_list);
480 if (s->cipher_list_by_id != NULL) sk_SSL_CIPHER_free(s->cipher_list_by_id);
482 /* Make the next call work :-) */
483 if (s->session != NULL)
485 ssl_clear_bad_session(s);
486 SSL_SESSION_free(s->session);
489 ssl_clear_cipher_ctx(s);
491 if (s->cert != NULL) ssl_cert_free(s->cert);
492 /* Free up if allocated */
494 if (s->ctx) SSL_CTX_free(s->ctx);
496 if (s->client_CA != NULL)
497 sk_X509_NAME_pop_free(s->client_CA,X509_NAME_free);
499 if (s->method != NULL) s->method->ssl_free(s);
501 #ifndef OPENSSL_NO_KRB5
502 if (s->kssl_ctx != NULL)
503 kssl_ctx_free(s->kssl_ctx);
504 #endif /* OPENSSL_NO_KRB5 */
506 OPENSSL_free(s);
509 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
511 /* If the output buffering BIO is still in place, remove it
513 if (s->bbio != NULL)
515 if (s->wbio == s->bbio)
517 s->wbio=s->wbio->next_bio;
518 s->bbio->next_bio=NULL;
521 if ((s->rbio != NULL) && (s->rbio != rbio))
522 BIO_free_all(s->rbio);
523 if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
524 BIO_free_all(s->wbio);
525 s->rbio=rbio;
526 s->wbio=wbio;
529 BIO *SSL_get_rbio(const SSL *s)
530 { return(s->rbio); }
532 BIO *SSL_get_wbio(const SSL *s)
533 { return(s->wbio); }
535 int SSL_get_fd(const SSL *s)
537 return(SSL_get_rfd(s));
540 int SSL_get_rfd(const SSL *s)
542 int ret= -1;
543 BIO *b,*r;
545 b=SSL_get_rbio(s);
546 r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
547 if (r != NULL)
548 BIO_get_fd(r,&ret);
549 return(ret);
552 int SSL_get_wfd(const SSL *s)
554 int ret= -1;
555 BIO *b,*r;
557 b=SSL_get_wbio(s);
558 r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
559 if (r != NULL)
560 BIO_get_fd(r,&ret);
561 return(ret);
564 #ifndef OPENSSL_NO_SOCK
565 int SSL_set_fd(SSL *s,int fd)
567 int ret=0;
568 BIO *bio=NULL;
570 bio=BIO_new(BIO_s_socket());
572 if (bio == NULL)
574 SSLerr(SSL_F_SSL_SET_FD,ERR_R_BUF_LIB);
575 goto err;
577 BIO_set_fd(bio,fd,BIO_NOCLOSE);
578 SSL_set_bio(s,bio,bio);
579 ret=1;
580 err:
581 return(ret);
584 int SSL_set_wfd(SSL *s,int fd)
586 int ret=0;
587 BIO *bio=NULL;
589 if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
590 || ((int)BIO_get_fd(s->rbio,NULL) != fd))
592 bio=BIO_new(BIO_s_socket());
594 if (bio == NULL)
595 { SSLerr(SSL_F_SSL_SET_WFD,ERR_R_BUF_LIB); goto err; }
596 BIO_set_fd(bio,fd,BIO_NOCLOSE);
597 SSL_set_bio(s,SSL_get_rbio(s),bio);
599 else
600 SSL_set_bio(s,SSL_get_rbio(s),SSL_get_rbio(s));
601 ret=1;
602 err:
603 return(ret);
606 int SSL_set_rfd(SSL *s,int fd)
608 int ret=0;
609 BIO *bio=NULL;
611 if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
612 || ((int)BIO_get_fd(s->wbio,NULL) != fd))
614 bio=BIO_new(BIO_s_socket());
616 if (bio == NULL)
618 SSLerr(SSL_F_SSL_SET_RFD,ERR_R_BUF_LIB);
619 goto err;
621 BIO_set_fd(bio,fd,BIO_NOCLOSE);
622 SSL_set_bio(s,bio,SSL_get_wbio(s));
624 else
625 SSL_set_bio(s,SSL_get_wbio(s),SSL_get_wbio(s));
626 ret=1;
627 err:
628 return(ret);
630 #endif
633 /* return length of latest Finished message we sent, copy to 'buf' */
634 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
636 size_t ret = 0;
638 if (s->s3 != NULL)
640 ret = s->s3->tmp.finish_md_len;
641 if (count > ret)
642 count = ret;
643 memcpy(buf, s->s3->tmp.finish_md, count);
645 return ret;
648 /* return length of latest Finished message we expected, copy to 'buf' */
649 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
651 size_t ret = 0;
653 if (s->s3 != NULL)
655 ret = s->s3->tmp.peer_finish_md_len;
656 if (count > ret)
657 count = ret;
658 memcpy(buf, s->s3->tmp.peer_finish_md, count);
660 return ret;
664 int SSL_get_verify_mode(const SSL *s)
666 return(s->verify_mode);
669 int SSL_get_verify_depth(const SSL *s)
671 return X509_VERIFY_PARAM_get_depth(s->param);
674 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *)
676 return(s->verify_callback);
679 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
681 return(ctx->verify_mode);
684 int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
686 return X509_VERIFY_PARAM_get_depth(ctx->param);
689 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *)
691 return(ctx->default_verify_callback);
694 void SSL_set_verify(SSL *s,int mode,
695 int (*callback)(int ok,X509_STORE_CTX *ctx))
697 s->verify_mode=mode;
698 if (callback != NULL)
699 s->verify_callback=callback;
702 void SSL_set_verify_depth(SSL *s,int depth)
704 X509_VERIFY_PARAM_set_depth(s->param, depth);
707 void SSL_set_read_ahead(SSL *s,int yes)
709 s->read_ahead=yes;
712 int SSL_get_read_ahead(const SSL *s)
714 return(s->read_ahead);
717 int SSL_pending(const SSL *s)
719 /* SSL_pending cannot work properly if read-ahead is enabled
720 * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)),
721 * and it is impossible to fix since SSL_pending cannot report
722 * errors that may be observed while scanning the new data.
723 * (Note that SSL_pending() is often used as a boolean value,
724 * so we'd better not return -1.)
726 return(s->method->ssl_pending(s));
729 X509 *SSL_get_peer_certificate(const SSL *s)
731 X509 *r;
733 if ((s == NULL) || (s->session == NULL))
734 r=NULL;
735 else
736 r=s->session->peer;
738 if (r == NULL) return(r);
740 CRYPTO_add(&r->references,1,CRYPTO_LOCK_X509);
742 return(r);
745 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
747 STACK_OF(X509) *r;
749 if ((s == NULL) || (s->session == NULL) || (s->session->sess_cert == NULL))
750 r=NULL;
751 else
752 r=s->session->sess_cert->cert_chain;
754 /* If we are a client, cert_chain includes the peer's own
755 * certificate; if we are a server, it does not. */
757 return(r);
760 /* Now in theory, since the calling process own 't' it should be safe to
761 * modify. We need to be able to read f without being hassled */
762 void SSL_copy_session_id(SSL *t,const SSL *f)
764 CERT *tmp;
766 /* Do we need to to SSL locking? */
767 SSL_set_session(t,SSL_get_session(f));
769 /* what if we are setup as SSLv2 but want to talk SSLv3 or
770 * vice-versa */
771 if (t->method != f->method)
773 t->method->ssl_free(t); /* cleanup current */
774 t->method=f->method; /* change method */
775 t->method->ssl_new(t); /* setup new */
778 tmp=t->cert;
779 if (f->cert != NULL)
781 CRYPTO_add(&f->cert->references,1,CRYPTO_LOCK_SSL_CERT);
782 t->cert=f->cert;
784 else
785 t->cert=NULL;
786 if (tmp != NULL) ssl_cert_free(tmp);
787 SSL_set_session_id_context(t,f->sid_ctx,f->sid_ctx_length);
790 /* Fix this so it checks all the valid key/cert options */
791 int SSL_CTX_check_private_key(const SSL_CTX *ctx)
793 if ( (ctx == NULL) ||
794 (ctx->cert == NULL) ||
795 (ctx->cert->key->x509 == NULL))
797 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
798 return(0);
800 if (ctx->cert->key->privatekey == NULL)
802 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
803 return(0);
805 return(X509_check_private_key(ctx->cert->key->x509, ctx->cert->key->privatekey));
808 /* Fix this function so that it takes an optional type parameter */
809 int SSL_check_private_key(const SSL *ssl)
811 if (ssl == NULL)
813 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,ERR_R_PASSED_NULL_PARAMETER);
814 return(0);
816 if (ssl->cert == NULL)
818 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
819 return 0;
821 if (ssl->cert->key->x509 == NULL)
823 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
824 return(0);
826 if (ssl->cert->key->privatekey == NULL)
828 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
829 return(0);
831 return(X509_check_private_key(ssl->cert->key->x509,
832 ssl->cert->key->privatekey));
835 int SSL_accept(SSL *s)
837 if (s->handshake_func == 0)
838 /* Not properly initialized yet */
839 SSL_set_accept_state(s);
841 return(s->method->ssl_accept(s));
844 int SSL_connect(SSL *s)
846 if (s->handshake_func == 0)
847 /* Not properly initialized yet */
848 SSL_set_connect_state(s);
850 return(s->method->ssl_connect(s));
853 long SSL_get_default_timeout(const SSL *s)
855 return(s->method->get_timeout());
858 int SSL_read(SSL *s,void *buf,int num)
860 if (s->handshake_func == 0)
862 SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED);
863 return -1;
866 if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
868 s->rwstate=SSL_NOTHING;
869 return(0);
871 return(s->method->ssl_read(s,buf,num));
874 int SSL_peek(SSL *s,void *buf,int num)
876 if (s->handshake_func == 0)
878 SSLerr(SSL_F_SSL_PEEK, SSL_R_UNINITIALIZED);
879 return -1;
882 if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
884 return(0);
886 return(s->method->ssl_peek(s,buf,num));
889 int SSL_write(SSL *s,const void *buf,int num)
891 if (s->handshake_func == 0)
893 SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED);
894 return -1;
897 if (s->shutdown & SSL_SENT_SHUTDOWN)
899 s->rwstate=SSL_NOTHING;
900 SSLerr(SSL_F_SSL_WRITE,SSL_R_PROTOCOL_IS_SHUTDOWN);
901 return(-1);
903 return(s->method->ssl_write(s,buf,num));
906 int SSL_shutdown(SSL *s)
908 /* Note that this function behaves differently from what one might
909 * expect. Return values are 0 for no success (yet),
910 * 1 for success; but calling it once is usually not enough,
911 * even if blocking I/O is used (see ssl3_shutdown).
914 if (s->handshake_func == 0)
916 SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);
917 return -1;
920 if ((s != NULL) && !SSL_in_init(s))
921 return(s->method->ssl_shutdown(s));
922 else
923 return(1);
926 int SSL_renegotiate(SSL *s)
928 if (s->new_session == 0)
930 s->new_session=1;
932 return(s->method->ssl_renegotiate(s));
935 int SSL_renegotiate_pending(SSL *s)
937 /* becomes true when negotiation is requested;
938 * false again once a handshake has finished */
939 return (s->new_session != 0);
942 long SSL_ctrl(SSL *s,int cmd,long larg,void *parg)
944 long l;
946 switch (cmd)
948 case SSL_CTRL_GET_READ_AHEAD:
949 return(s->read_ahead);
950 case SSL_CTRL_SET_READ_AHEAD:
951 l=s->read_ahead;
952 s->read_ahead=larg;
953 return(l);
955 case SSL_CTRL_SET_MSG_CALLBACK_ARG:
956 s->msg_callback_arg = parg;
957 return 1;
959 case SSL_CTRL_OPTIONS:
960 return(s->options|=larg);
961 case SSL_CTRL_MODE:
962 return(s->mode|=larg);
963 case SSL_CTRL_GET_MAX_CERT_LIST:
964 return(s->max_cert_list);
965 case SSL_CTRL_SET_MAX_CERT_LIST:
966 l=s->max_cert_list;
967 s->max_cert_list=larg;
968 return(l);
969 case SSL_CTRL_SET_MTU:
970 if (SSL_version(s) == DTLS1_VERSION)
972 s->d1->mtu = larg;
973 return larg;
975 return 0;
976 default:
977 return(s->method->ssl_ctrl(s,cmd,larg,parg));
981 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp)(void))
983 switch(cmd)
985 case SSL_CTRL_SET_MSG_CALLBACK:
986 s->msg_callback = (void (*)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp);
987 return 1;
989 default:
990 return(s->method->ssl_callback_ctrl(s,cmd,fp));
994 struct lhash_st *SSL_CTX_sessions(SSL_CTX *ctx)
996 return ctx->sessions;
999 long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd,long larg,void *parg)
1001 long l;
1003 switch (cmd)
1005 case SSL_CTRL_GET_READ_AHEAD:
1006 return(ctx->read_ahead);
1007 case SSL_CTRL_SET_READ_AHEAD:
1008 l=ctx->read_ahead;
1009 ctx->read_ahead=larg;
1010 return(l);
1012 case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1013 ctx->msg_callback_arg = parg;
1014 return 1;
1016 case SSL_CTRL_GET_MAX_CERT_LIST:
1017 return(ctx->max_cert_list);
1018 case SSL_CTRL_SET_MAX_CERT_LIST:
1019 l=ctx->max_cert_list;
1020 ctx->max_cert_list=larg;
1021 return(l);
1023 case SSL_CTRL_SET_SESS_CACHE_SIZE:
1024 l=ctx->session_cache_size;
1025 ctx->session_cache_size=larg;
1026 return(l);
1027 case SSL_CTRL_GET_SESS_CACHE_SIZE:
1028 return(ctx->session_cache_size);
1029 case SSL_CTRL_SET_SESS_CACHE_MODE:
1030 l=ctx->session_cache_mode;
1031 ctx->session_cache_mode=larg;
1032 return(l);
1033 case SSL_CTRL_GET_SESS_CACHE_MODE:
1034 return(ctx->session_cache_mode);
1036 case SSL_CTRL_SESS_NUMBER:
1037 return(ctx->sessions->num_items);
1038 case SSL_CTRL_SESS_CONNECT:
1039 return(ctx->stats.sess_connect);
1040 case SSL_CTRL_SESS_CONNECT_GOOD:
1041 return(ctx->stats.sess_connect_good);
1042 case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
1043 return(ctx->stats.sess_connect_renegotiate);
1044 case SSL_CTRL_SESS_ACCEPT:
1045 return(ctx->stats.sess_accept);
1046 case SSL_CTRL_SESS_ACCEPT_GOOD:
1047 return(ctx->stats.sess_accept_good);
1048 case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
1049 return(ctx->stats.sess_accept_renegotiate);
1050 case SSL_CTRL_SESS_HIT:
1051 return(ctx->stats.sess_hit);
1052 case SSL_CTRL_SESS_CB_HIT:
1053 return(ctx->stats.sess_cb_hit);
1054 case SSL_CTRL_SESS_MISSES:
1055 return(ctx->stats.sess_miss);
1056 case SSL_CTRL_SESS_TIMEOUTS:
1057 return(ctx->stats.sess_timeout);
1058 case SSL_CTRL_SESS_CACHE_FULL:
1059 return(ctx->stats.sess_cache_full);
1060 case SSL_CTRL_OPTIONS:
1061 return(ctx->options|=larg);
1062 case SSL_CTRL_MODE:
1063 return(ctx->mode|=larg);
1064 default:
1065 return(ctx->method->ssl_ctx_ctrl(ctx,cmd,larg,parg));
1069 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp)(void))
1071 switch(cmd)
1073 case SSL_CTRL_SET_MSG_CALLBACK:
1074 ctx->msg_callback = (void (*)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp);
1075 return 1;
1077 default:
1078 return(ctx->method->ssl_ctx_callback_ctrl(ctx,cmd,fp));
1082 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
1084 long l;
1086 l=a->id-b->id;
1087 if (l == 0L)
1088 return(0);
1089 else
1090 return((l > 0)?1:-1);
1093 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
1094 const SSL_CIPHER * const *bp)
1096 long l;
1098 l=(*ap)->id-(*bp)->id;
1099 if (l == 0L)
1100 return(0);
1101 else
1102 return((l > 0)?1:-1);
1105 /** return a STACK of the ciphers available for the SSL and in order of
1106 * preference */
1107 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
1109 if (s != NULL)
1111 if (s->cipher_list != NULL)
1113 return(s->cipher_list);
1115 else if ((s->ctx != NULL) &&
1116 (s->ctx->cipher_list != NULL))
1118 return(s->ctx->cipher_list);
1121 return(NULL);
1124 /** return a STACK of the ciphers available for the SSL and in order of
1125 * algorithm id */
1126 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
1128 if (s != NULL)
1130 if (s->cipher_list_by_id != NULL)
1132 return(s->cipher_list_by_id);
1134 else if ((s->ctx != NULL) &&
1135 (s->ctx->cipher_list_by_id != NULL))
1137 return(s->ctx->cipher_list_by_id);
1140 return(NULL);
1143 /** The old interface to get the same thing as SSL_get_ciphers() */
1144 const char *SSL_get_cipher_list(const SSL *s,int n)
1146 SSL_CIPHER *c;
1147 STACK_OF(SSL_CIPHER) *sk;
1149 if (s == NULL) return(NULL);
1150 sk=SSL_get_ciphers(s);
1151 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
1152 return(NULL);
1153 c=sk_SSL_CIPHER_value(sk,n);
1154 if (c == NULL) return(NULL);
1155 return(c->name);
1158 /** specify the ciphers to be used by default by the SSL_CTX */
1159 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
1161 STACK_OF(SSL_CIPHER) *sk;
1163 sk=ssl_create_cipher_list(ctx->method,&ctx->cipher_list,
1164 &ctx->cipher_list_by_id,str);
1165 /* ssl_create_cipher_list may return an empty stack if it
1166 * was unable to find a cipher matching the given rule string
1167 * (for example if the rule string specifies a cipher which
1168 * has been disabled). This is not an error as far as
1169 * ssl_create_cipher_list is concerned, and hence
1170 * ctx->cipher_list and ctx->cipher_list_by_id has been
1171 * updated. */
1172 if (sk == NULL)
1173 return 0;
1174 else if (sk_SSL_CIPHER_num(sk) == 0)
1176 SSLerr(SSL_F_SSL_CTX_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1177 return 0;
1179 return 1;
1182 /** specify the ciphers to be used by the SSL */
1183 int SSL_set_cipher_list(SSL *s,const char *str)
1185 STACK_OF(SSL_CIPHER) *sk;
1187 sk=ssl_create_cipher_list(s->ctx->method,&s->cipher_list,
1188 &s->cipher_list_by_id,str);
1189 /* see comment in SSL_CTX_set_cipher_list */
1190 if (sk == NULL)
1191 return 0;
1192 else if (sk_SSL_CIPHER_num(sk) == 0)
1194 SSLerr(SSL_F_SSL_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1195 return 0;
1197 return 1;
1200 /* works well for SSLv2, not so good for SSLv3 */
1201 char *SSL_get_shared_ciphers(const SSL *s,char *buf,int len)
1203 char *p;
1204 STACK_OF(SSL_CIPHER) *sk;
1205 SSL_CIPHER *c;
1206 int i;
1208 if ((s->session == NULL) || (s->session->ciphers == NULL) ||
1209 (len < 2))
1210 return(NULL);
1212 p=buf;
1213 sk=s->session->ciphers;
1214 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1216 int n;
1218 c=sk_SSL_CIPHER_value(sk,i);
1219 n=strlen(c->name);
1220 if (n+1 > len)
1222 if (p != buf)
1223 --p;
1224 *p='\0';
1225 return buf;
1227 strcpy(p,c->name);
1228 p+=n;
1229 *(p++)=':';
1230 len-=n+1;
1232 p[-1]='\0';
1233 return(buf);
1236 int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p,
1237 int (*put_cb)(const SSL_CIPHER *, unsigned char *))
1239 int i,j=0;
1240 SSL_CIPHER *c;
1241 unsigned char *q;
1242 #ifndef OPENSSL_NO_KRB5
1243 int nokrb5 = !kssl_tgt_is_available(s->kssl_ctx);
1244 #endif /* OPENSSL_NO_KRB5 */
1246 if (sk == NULL) return(0);
1247 q=p;
1249 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1251 c=sk_SSL_CIPHER_value(sk,i);
1252 #ifndef OPENSSL_NO_KRB5
1253 if ((c->algorithms & SSL_KRB5) && nokrb5)
1254 continue;
1255 #endif /* OPENSSL_NO_KRB5 */
1257 j = put_cb ? put_cb(c,p) : ssl_put_cipher_by_char(s,c,p);
1258 p+=j;
1260 return(p-q);
1263 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
1264 STACK_OF(SSL_CIPHER) **skp)
1266 SSL_CIPHER *c;
1267 STACK_OF(SSL_CIPHER) *sk;
1268 int i,n;
1270 n=ssl_put_cipher_by_char(s,NULL,NULL);
1271 if ((num%n) != 0)
1273 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
1274 return(NULL);
1276 if ((skp == NULL) || (*skp == NULL))
1277 sk=sk_SSL_CIPHER_new_null(); /* change perhaps later */
1278 else
1280 sk= *skp;
1281 sk_SSL_CIPHER_zero(sk);
1284 for (i=0; i<num; i+=n)
1286 c=ssl_get_cipher_by_char(s,p);
1287 p+=n;
1288 if (c != NULL)
1290 if (!sk_SSL_CIPHER_push(sk,c))
1292 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,ERR_R_MALLOC_FAILURE);
1293 goto err;
1298 if (skp != NULL)
1299 *skp=sk;
1300 return(sk);
1301 err:
1302 if ((skp == NULL) || (*skp == NULL))
1303 sk_SSL_CIPHER_free(sk);
1304 return(NULL);
1307 unsigned long SSL_SESSION_hash(const SSL_SESSION *a)
1309 unsigned long l;
1311 l=(unsigned long)
1312 ((unsigned int) a->session_id[0] )|
1313 ((unsigned int) a->session_id[1]<< 8L)|
1314 ((unsigned long)a->session_id[2]<<16L)|
1315 ((unsigned long)a->session_id[3]<<24L);
1316 return(l);
1319 /* NB: If this function (or indeed the hash function which uses a sort of
1320 * coarser function than this one) is changed, ensure
1321 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being
1322 * able to construct an SSL_SESSION that will collide with any existing session
1323 * with a matching session ID. */
1324 int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b)
1326 if (a->ssl_version != b->ssl_version)
1327 return(1);
1328 if (a->session_id_length != b->session_id_length)
1329 return(1);
1330 return(memcmp(a->session_id,b->session_id,a->session_id_length));
1333 /* These wrapper functions should remain rather than redeclaring
1334 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
1335 * variable. The reason is that the functions aren't static, they're exposed via
1336 * ssl.h. */
1337 static IMPLEMENT_LHASH_HASH_FN(SSL_SESSION_hash, SSL_SESSION *)
1338 static IMPLEMENT_LHASH_COMP_FN(SSL_SESSION_cmp, SSL_SESSION *)
1340 SSL_CTX *SSL_CTX_new(SSL_METHOD *meth)
1342 SSL_CTX *ret=NULL;
1344 if (meth == NULL)
1346 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_NULL_SSL_METHOD_PASSED);
1347 return(NULL);
1350 if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
1352 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
1353 goto err;
1355 ret=(SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX));
1356 if (ret == NULL)
1357 goto err;
1359 memset(ret,0,sizeof(SSL_CTX));
1361 ret->method=meth;
1363 ret->cert_store=NULL;
1364 ret->session_cache_mode=SSL_SESS_CACHE_SERVER;
1365 ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
1366 ret->session_cache_head=NULL;
1367 ret->session_cache_tail=NULL;
1369 /* We take the system default */
1370 ret->session_timeout=meth->get_timeout();
1372 ret->new_session_cb=0;
1373 ret->remove_session_cb=0;
1374 ret->get_session_cb=0;
1375 ret->generate_session_id=0;
1377 memset((char *)&ret->stats,0,sizeof(ret->stats));
1379 ret->references=1;
1380 ret->quiet_shutdown=0;
1382 /* ret->cipher=NULL;*/
1383 /* ret->s2->challenge=NULL;
1384 ret->master_key=NULL;
1385 ret->key_arg=NULL;
1386 ret->s2->conn_id=NULL; */
1388 ret->info_callback=NULL;
1390 ret->app_verify_callback=0;
1391 ret->app_verify_arg=NULL;
1393 ret->max_cert_list=SSL_MAX_CERT_LIST_DEFAULT;
1394 ret->read_ahead=0;
1395 ret->msg_callback=0;
1396 ret->msg_callback_arg=NULL;
1397 ret->verify_mode=SSL_VERIFY_NONE;
1398 #if 0
1399 ret->verify_depth=-1; /* Don't impose a limit (but x509_lu.c does) */
1400 #endif
1401 ret->sid_ctx_length=0;
1402 ret->default_verify_callback=NULL;
1403 if ((ret->cert=ssl_cert_new()) == NULL)
1404 goto err;
1406 ret->default_passwd_callback=0;
1407 ret->default_passwd_callback_userdata=NULL;
1408 ret->client_cert_cb=0;
1409 ret->app_gen_cookie_cb=0;
1410 ret->app_verify_cookie_cb=0;
1412 ret->sessions=lh_new(LHASH_HASH_FN(SSL_SESSION_hash),
1413 LHASH_COMP_FN(SSL_SESSION_cmp));
1414 if (ret->sessions == NULL) goto err;
1415 ret->cert_store=X509_STORE_new();
1416 if (ret->cert_store == NULL) goto err;
1418 ssl_create_cipher_list(ret->method,
1419 &ret->cipher_list,&ret->cipher_list_by_id,
1420 SSL_DEFAULT_CIPHER_LIST);
1421 if (ret->cipher_list == NULL
1422 || sk_SSL_CIPHER_num(ret->cipher_list) <= 0)
1424 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS);
1425 goto err2;
1428 ret->param = X509_VERIFY_PARAM_new();
1429 if (!ret->param)
1430 goto err;
1432 if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL)
1434 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES);
1435 goto err2;
1437 if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL)
1439 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1440 goto err2;
1442 if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL)
1444 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1445 goto err2;
1448 if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
1449 goto err;
1451 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
1453 ret->extra_certs=NULL;
1454 ret->comp_methods=SSL_COMP_get_compression_methods();
1456 return(ret);
1457 err:
1458 SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);
1459 err2:
1460 if (ret != NULL) SSL_CTX_free(ret);
1461 return(NULL);
1464 #if 0
1465 static void SSL_COMP_free(SSL_COMP *comp)
1466 { OPENSSL_free(comp); }
1467 #endif
1469 void SSL_CTX_free(SSL_CTX *a)
1471 int i;
1473 if (a == NULL) return;
1475 i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX);
1476 #ifdef REF_PRINT
1477 REF_PRINT("SSL_CTX",a);
1478 #endif
1479 if (i > 0) return;
1480 #ifdef REF_CHECK
1481 if (i < 0)
1483 fprintf(stderr,"SSL_CTX_free, bad reference count\n");
1484 abort(); /* ok */
1486 #endif
1488 if (a->param)
1489 X509_VERIFY_PARAM_free(a->param);
1492 * Free internal session cache. However: the remove_cb() may reference
1493 * the ex_data of SSL_CTX, thus the ex_data store can only be removed
1494 * after the sessions were flushed.
1495 * As the ex_data handling routines might also touch the session cache,
1496 * the most secure solution seems to be: empty (flush) the cache, then
1497 * free ex_data, then finally free the cache.
1498 * (See ticket [openssl.org #212].)
1500 if (a->sessions != NULL)
1501 SSL_CTX_flush_sessions(a,0);
1503 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
1505 if (a->sessions != NULL)
1506 lh_free(a->sessions);
1508 if (a->cert_store != NULL)
1509 X509_STORE_free(a->cert_store);
1510 if (a->cipher_list != NULL)
1511 sk_SSL_CIPHER_free(a->cipher_list);
1512 if (a->cipher_list_by_id != NULL)
1513 sk_SSL_CIPHER_free(a->cipher_list_by_id);
1514 if (a->cert != NULL)
1515 ssl_cert_free(a->cert);
1516 if (a->client_CA != NULL)
1517 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
1518 if (a->extra_certs != NULL)
1519 sk_X509_pop_free(a->extra_certs,X509_free);
1520 #if 0 /* This should never be done, since it removes a global database */
1521 if (a->comp_methods != NULL)
1522 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free);
1523 #else
1524 a->comp_methods = NULL;
1525 #endif
1526 OPENSSL_free(a);
1529 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
1531 ctx->default_passwd_callback=cb;
1534 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,void *u)
1536 ctx->default_passwd_callback_userdata=u;
1539 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg)
1541 ctx->app_verify_callback=cb;
1542 ctx->app_verify_arg=arg;
1545 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
1547 ctx->verify_mode=mode;
1548 ctx->default_verify_callback=cb;
1551 void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth)
1553 X509_VERIFY_PARAM_set_depth(ctx->param, depth);
1556 void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
1558 CERT_PKEY *cpk;
1559 int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign;
1560 int rsa_enc_export,dh_rsa_export,dh_dsa_export;
1561 int rsa_tmp_export,dh_tmp_export,kl;
1562 unsigned long mask,emask;
1563 int have_ecc_cert, ecdh_ok, ecdsa_ok, ecc_pkey_size;
1564 #ifndef OPENSSL_NO_ECDH
1565 int have_ecdh_tmp;
1566 #endif
1567 X509 *x = NULL;
1568 EVP_PKEY *ecc_pkey = NULL;
1569 int signature_nid = 0;
1571 if (c == NULL) return;
1573 kl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1575 #ifndef OPENSSL_NO_RSA
1576 rsa_tmp=(c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
1577 rsa_tmp_export=(c->rsa_tmp_cb != NULL ||
1578 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl));
1579 #else
1580 rsa_tmp=rsa_tmp_export=0;
1581 #endif
1582 #ifndef OPENSSL_NO_DH
1583 dh_tmp=(c->dh_tmp != NULL || c->dh_tmp_cb != NULL);
1584 dh_tmp_export=(c->dh_tmp_cb != NULL ||
1585 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl));
1586 #else
1587 dh_tmp=dh_tmp_export=0;
1588 #endif
1590 #ifndef OPENSSL_NO_ECDH
1591 have_ecdh_tmp=(c->ecdh_tmp != NULL || c->ecdh_tmp_cb != NULL);
1592 #endif
1593 cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]);
1594 rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
1595 rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1596 cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]);
1597 rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1598 cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]);
1599 dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1600 cpk= &(c->pkeys[SSL_PKEY_DH_RSA]);
1601 dh_rsa= (cpk->x509 != NULL && cpk->privatekey != NULL);
1602 dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1603 cpk= &(c->pkeys[SSL_PKEY_DH_DSA]);
1604 /* FIX THIS EAY EAY EAY */
1605 dh_dsa= (cpk->x509 != NULL && cpk->privatekey != NULL);
1606 dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1607 cpk= &(c->pkeys[SSL_PKEY_ECC]);
1608 have_ecc_cert= (cpk->x509 != NULL && cpk->privatekey != NULL);
1609 mask=0;
1610 emask=0;
1612 #ifdef CIPHER_DEBUG
1613 printf("rt=%d rte=%d dht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1614 rsa_tmp,rsa_tmp_export,dh_tmp,
1615 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
1616 #endif
1618 if (rsa_enc || (rsa_tmp && rsa_sign))
1619 mask|=SSL_kRSA;
1620 if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
1621 emask|=SSL_kRSA;
1623 #if 0
1624 /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1625 if ( (dh_tmp || dh_rsa || dh_dsa) &&
1626 (rsa_enc || rsa_sign || dsa_sign))
1627 mask|=SSL_kEDH;
1628 if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) &&
1629 (rsa_enc || rsa_sign || dsa_sign))
1630 emask|=SSL_kEDH;
1631 #endif
1633 if (dh_tmp_export)
1634 emask|=SSL_kEDH;
1636 if (dh_tmp)
1637 mask|=SSL_kEDH;
1639 if (dh_rsa) mask|=SSL_kDHr;
1640 if (dh_rsa_export) emask|=SSL_kDHr;
1642 if (dh_dsa) mask|=SSL_kDHd;
1643 if (dh_dsa_export) emask|=SSL_kDHd;
1645 if (rsa_enc || rsa_sign)
1647 mask|=SSL_aRSA;
1648 emask|=SSL_aRSA;
1651 if (dsa_sign)
1653 mask|=SSL_aDSS;
1654 emask|=SSL_aDSS;
1657 mask|=SSL_aNULL;
1658 emask|=SSL_aNULL;
1660 #ifndef OPENSSL_NO_KRB5
1661 mask|=SSL_kKRB5|SSL_aKRB5;
1662 emask|=SSL_kKRB5|SSL_aKRB5;
1663 #endif
1665 /* An ECC certificate may be usable for ECDH and/or
1666 * ECDSA cipher suites depending on the key usage extension.
1668 if (have_ecc_cert)
1670 /* This call populates extension flags (ex_flags) */
1671 x = (c->pkeys[SSL_PKEY_ECC]).x509;
1672 X509_check_purpose(x, -1, 0);
1673 ecdh_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1674 (x->ex_kusage & X509v3_KU_KEY_AGREEMENT) : 1;
1675 ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1676 (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) : 1;
1677 ecc_pkey = X509_get_pubkey(x);
1678 ecc_pkey_size = (ecc_pkey != NULL) ?
1679 EVP_PKEY_bits(ecc_pkey) : 0;
1680 EVP_PKEY_free(ecc_pkey);
1681 if ((x->sig_alg) && (x->sig_alg->algorithm))
1682 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1683 #ifndef OPENSSL_NO_ECDH
1684 if (ecdh_ok)
1686 if ((signature_nid == NID_md5WithRSAEncryption) ||
1687 (signature_nid == NID_md4WithRSAEncryption) ||
1688 (signature_nid == NID_md2WithRSAEncryption))
1690 mask|=SSL_kECDH|SSL_aRSA;
1691 if (ecc_pkey_size <= 163)
1692 emask|=SSL_kECDH|SSL_aRSA;
1694 if (signature_nid == NID_ecdsa_with_SHA1)
1696 mask|=SSL_kECDH|SSL_aECDSA;
1697 if (ecc_pkey_size <= 163)
1698 emask|=SSL_kECDH|SSL_aECDSA;
1701 #endif
1702 #ifndef OPENSSL_NO_ECDSA
1703 if (ecdsa_ok)
1705 mask|=SSL_aECDSA;
1706 emask|=SSL_aECDSA;
1708 #endif
1711 #ifndef OPENSSL_NO_ECDH
1712 if (have_ecdh_tmp)
1714 mask|=SSL_kECDHE;
1715 emask|=SSL_kECDHE;
1717 #endif
1718 c->mask=mask;
1719 c->export_mask=emask;
1720 c->valid=1;
1723 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */
1724 #define ku_reject(x, usage) \
1725 (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
1727 int check_srvr_ecc_cert_and_alg(X509 *x, SSL_CIPHER *cs)
1729 unsigned long alg = cs->algorithms;
1730 EVP_PKEY *pkey = NULL;
1731 int keysize = 0;
1732 int signature_nid = 0;
1734 if (SSL_C_IS_EXPORT(cs))
1736 /* ECDH key length in export ciphers must be <= 163 bits */
1737 pkey = X509_get_pubkey(x);
1738 if (pkey == NULL) return 0;
1739 keysize = EVP_PKEY_bits(pkey);
1740 EVP_PKEY_free(pkey);
1741 if (keysize > 163) return 0;
1744 /* This call populates the ex_flags field correctly */
1745 X509_check_purpose(x, -1, 0);
1746 if ((x->sig_alg) && (x->sig_alg->algorithm))
1747 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1748 if (alg & SSL_kECDH)
1750 /* key usage, if present, must allow key agreement */
1751 if (ku_reject(x, X509v3_KU_KEY_AGREEMENT))
1753 return 0;
1755 if (alg & SSL_aECDSA)
1757 /* signature alg must be ECDSA */
1758 if (signature_nid != NID_ecdsa_with_SHA1)
1760 return 0;
1763 if (alg & SSL_aRSA)
1765 /* signature alg must be RSA */
1766 if ((signature_nid != NID_md5WithRSAEncryption) &&
1767 (signature_nid != NID_md4WithRSAEncryption) &&
1768 (signature_nid != NID_md2WithRSAEncryption))
1770 return 0;
1774 else if (alg & SSL_aECDSA)
1776 /* key usage, if present, must allow signing */
1777 if (ku_reject(x, X509v3_KU_DIGITAL_SIGNATURE))
1779 return 0;
1783 return 1; /* all checks are ok */
1786 /* THIS NEEDS CLEANING UP */
1787 X509 *ssl_get_server_send_cert(SSL *s)
1789 unsigned long alg,mask,kalg;
1790 CERT *c;
1791 int i,is_export;
1793 c=s->cert;
1794 ssl_set_cert_masks(c, s->s3->tmp.new_cipher);
1795 alg=s->s3->tmp.new_cipher->algorithms;
1796 is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
1797 mask=is_export?c->export_mask:c->mask;
1798 kalg=alg&(SSL_MKEY_MASK|SSL_AUTH_MASK);
1800 if (kalg & SSL_kECDH)
1802 /* we don't need to look at SSL_kECDHE
1803 * since no certificate is needed for
1804 * anon ECDH and for authenticated
1805 * ECDHE, the check for the auth
1806 * algorithm will set i correctly
1807 * NOTE: For ECDH-RSA, we need an ECC
1808 * not an RSA cert but for ECDHE-RSA
1809 * we need an RSA cert. Placing the
1810 * checks for SSL_kECDH before RSA
1811 * checks ensures the correct cert is chosen.
1813 i=SSL_PKEY_ECC;
1815 else if (kalg & SSL_aECDSA)
1817 i=SSL_PKEY_ECC;
1819 else if (kalg & SSL_kDHr)
1820 i=SSL_PKEY_DH_RSA;
1821 else if (kalg & SSL_kDHd)
1822 i=SSL_PKEY_DH_DSA;
1823 else if (kalg & SSL_aDSS)
1824 i=SSL_PKEY_DSA_SIGN;
1825 else if (kalg & SSL_aRSA)
1827 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
1828 i=SSL_PKEY_RSA_SIGN;
1829 else
1830 i=SSL_PKEY_RSA_ENC;
1832 else if (kalg & SSL_aKRB5)
1834 /* VRS something else here? */
1835 return(NULL);
1837 else /* if (kalg & SSL_aNULL) */
1839 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,ERR_R_INTERNAL_ERROR);
1840 return(NULL);
1842 if (c->pkeys[i].x509 == NULL) return(NULL);
1844 return(c->pkeys[i].x509);
1847 EVP_PKEY *ssl_get_sign_pkey(SSL *s,SSL_CIPHER *cipher)
1849 unsigned long alg;
1850 CERT *c;
1852 alg=cipher->algorithms;
1853 c=s->cert;
1855 if ((alg & SSL_aDSS) &&
1856 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
1857 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey);
1858 else if (alg & SSL_aRSA)
1860 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
1861 return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey);
1862 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
1863 return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey);
1864 else
1865 return(NULL);
1867 else if ((alg & SSL_aECDSA) &&
1868 (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
1869 return(c->pkeys[SSL_PKEY_ECC].privatekey);
1870 else /* if (alg & SSL_aNULL) */
1872 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,ERR_R_INTERNAL_ERROR);
1873 return(NULL);
1877 void ssl_update_cache(SSL *s,int mode)
1879 int i;
1881 /* If the session_id_length is 0, we are not supposed to cache it,
1882 * and it would be rather hard to do anyway :-) */
1883 if (s->session->session_id_length == 0) return;
1885 i=s->ctx->session_cache_mode;
1886 if ((i & mode) && (!s->hit)
1887 && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
1888 || SSL_CTX_add_session(s->ctx,s->session))
1889 && (s->ctx->new_session_cb != NULL))
1891 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION);
1892 if (!s->ctx->new_session_cb(s,s->session))
1893 SSL_SESSION_free(s->session);
1896 /* auto flush every 255 connections */
1897 if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) &&
1898 ((i & mode) == mode))
1900 if ( (((mode & SSL_SESS_CACHE_CLIENT)
1901 ?s->ctx->stats.sess_connect_good
1902 :s->ctx->stats.sess_accept_good) & 0xff) == 0xff)
1904 SSL_CTX_flush_sessions(s->ctx,(unsigned long)time(NULL));
1909 SSL_METHOD *SSL_get_ssl_method(SSL *s)
1911 return(s->method);
1914 int SSL_set_ssl_method(SSL *s,SSL_METHOD *meth)
1916 int conn= -1;
1917 int ret=1;
1919 if (s->method != meth)
1921 if (s->handshake_func != NULL)
1922 conn=(s->handshake_func == s->method->ssl_connect);
1924 if (s->method->version == meth->version)
1925 s->method=meth;
1926 else
1928 s->method->ssl_free(s);
1929 s->method=meth;
1930 ret=s->method->ssl_new(s);
1933 if (conn == 1)
1934 s->handshake_func=meth->ssl_connect;
1935 else if (conn == 0)
1936 s->handshake_func=meth->ssl_accept;
1938 return(ret);
1941 int SSL_get_error(const SSL *s,int i)
1943 int reason;
1944 unsigned long l;
1945 BIO *bio;
1947 if (i > 0) return(SSL_ERROR_NONE);
1949 /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
1950 * etc, where we do encode the error */
1951 if ((l=ERR_peek_error()) != 0)
1953 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
1954 return(SSL_ERROR_SYSCALL);
1955 else
1956 return(SSL_ERROR_SSL);
1959 if ((i < 0) && SSL_want_read(s))
1961 bio=SSL_get_rbio(s);
1962 if (BIO_should_read(bio))
1963 return(SSL_ERROR_WANT_READ);
1964 else if (BIO_should_write(bio))
1965 /* This one doesn't make too much sense ... We never try
1966 * to write to the rbio, and an application program where
1967 * rbio and wbio are separate couldn't even know what it
1968 * should wait for.
1969 * However if we ever set s->rwstate incorrectly
1970 * (so that we have SSL_want_read(s) instead of
1971 * SSL_want_write(s)) and rbio and wbio *are* the same,
1972 * this test works around that bug; so it might be safer
1973 * to keep it. */
1974 return(SSL_ERROR_WANT_WRITE);
1975 else if (BIO_should_io_special(bio))
1977 reason=BIO_get_retry_reason(bio);
1978 if (reason == BIO_RR_CONNECT)
1979 return(SSL_ERROR_WANT_CONNECT);
1980 else if (reason == BIO_RR_ACCEPT)
1981 return(SSL_ERROR_WANT_ACCEPT);
1982 else
1983 return(SSL_ERROR_SYSCALL); /* unknown */
1987 if ((i < 0) && SSL_want_write(s))
1989 bio=SSL_get_wbio(s);
1990 if (BIO_should_write(bio))
1991 return(SSL_ERROR_WANT_WRITE);
1992 else if (BIO_should_read(bio))
1993 /* See above (SSL_want_read(s) with BIO_should_write(bio)) */
1994 return(SSL_ERROR_WANT_READ);
1995 else if (BIO_should_io_special(bio))
1997 reason=BIO_get_retry_reason(bio);
1998 if (reason == BIO_RR_CONNECT)
1999 return(SSL_ERROR_WANT_CONNECT);
2000 else if (reason == BIO_RR_ACCEPT)
2001 return(SSL_ERROR_WANT_ACCEPT);
2002 else
2003 return(SSL_ERROR_SYSCALL);
2006 if ((i < 0) && SSL_want_x509_lookup(s))
2008 return(SSL_ERROR_WANT_X509_LOOKUP);
2011 if (i == 0)
2013 if (s->version == SSL2_VERSION)
2015 /* assume it is the socket being closed */
2016 return(SSL_ERROR_ZERO_RETURN);
2018 else
2020 if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
2021 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
2022 return(SSL_ERROR_ZERO_RETURN);
2025 return(SSL_ERROR_SYSCALL);
2028 int SSL_do_handshake(SSL *s)
2030 int ret=1;
2032 if (s->handshake_func == NULL)
2034 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET);
2035 return(-1);
2038 s->method->ssl_renegotiate_check(s);
2040 if (SSL_in_init(s) || SSL_in_before(s))
2042 ret=s->handshake_func(s);
2044 return(ret);
2047 /* For the next 2 functions, SSL_clear() sets shutdown and so
2048 * one of these calls will reset it */
2049 void SSL_set_accept_state(SSL *s)
2051 s->server=1;
2052 s->shutdown=0;
2053 s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE;
2054 s->handshake_func=s->method->ssl_accept;
2055 /* clear the current cipher */
2056 ssl_clear_cipher_ctx(s);
2059 void SSL_set_connect_state(SSL *s)
2061 s->server=0;
2062 s->shutdown=0;
2063 s->state=SSL_ST_CONNECT|SSL_ST_BEFORE;
2064 s->handshake_func=s->method->ssl_connect;
2065 /* clear the current cipher */
2066 ssl_clear_cipher_ctx(s);
2069 int ssl_undefined_function(SSL *s)
2071 SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2072 return(0);
2075 int ssl_undefined_void_function(void)
2077 SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2078 return(0);
2081 int ssl_undefined_const_function(const SSL *s)
2083 SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2084 return(0);
2087 SSL_METHOD *ssl_bad_method(int ver)
2089 SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2090 return(NULL);
2093 const char *SSL_get_version(const SSL *s)
2095 if (s->version == TLS1_VERSION)
2096 return("TLSv1");
2097 else if (s->version == SSL3_VERSION)
2098 return("SSLv3");
2099 else if (s->version == SSL2_VERSION)
2100 return("SSLv2");
2101 else
2102 return("unknown");
2105 SSL *SSL_dup(SSL *s)
2107 STACK_OF(X509_NAME) *sk;
2108 X509_NAME *xn;
2109 SSL *ret;
2110 int i;
2112 if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL)
2113 return(NULL);
2115 ret->version = s->version;
2116 ret->type = s->type;
2117 ret->method = s->method;
2119 if (s->session != NULL)
2121 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2122 SSL_copy_session_id(ret,s);
2124 else
2126 /* No session has been established yet, so we have to expect
2127 * that s->cert or ret->cert will be changed later --
2128 * they should not both point to the same object,
2129 * and thus we can't use SSL_copy_session_id. */
2131 ret->method->ssl_free(ret);
2132 ret->method = s->method;
2133 ret->method->ssl_new(ret);
2135 if (s->cert != NULL)
2137 if (ret->cert != NULL)
2139 ssl_cert_free(ret->cert);
2141 ret->cert = ssl_cert_dup(s->cert);
2142 if (ret->cert == NULL)
2143 goto err;
2146 SSL_set_session_id_context(ret,
2147 s->sid_ctx, s->sid_ctx_length);
2150 ret->options=s->options;
2151 ret->mode=s->mode;
2152 SSL_set_max_cert_list(ret,SSL_get_max_cert_list(s));
2153 SSL_set_read_ahead(ret,SSL_get_read_ahead(s));
2154 ret->msg_callback = s->msg_callback;
2155 ret->msg_callback_arg = s->msg_callback_arg;
2156 SSL_set_verify(ret,SSL_get_verify_mode(s),
2157 SSL_get_verify_callback(s));
2158 SSL_set_verify_depth(ret,SSL_get_verify_depth(s));
2159 ret->generate_session_id = s->generate_session_id;
2161 SSL_set_info_callback(ret,SSL_get_info_callback(s));
2163 ret->debug=s->debug;
2165 /* copy app data, a little dangerous perhaps */
2166 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
2167 goto err;
2169 /* setup rbio, and wbio */
2170 if (s->rbio != NULL)
2172 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio))
2173 goto err;
2175 if (s->wbio != NULL)
2177 if (s->wbio != s->rbio)
2179 if (!BIO_dup_state(s->wbio,(char *)&ret->wbio))
2180 goto err;
2182 else
2183 ret->wbio=ret->rbio;
2185 ret->rwstate = s->rwstate;
2186 ret->in_handshake = s->in_handshake;
2187 ret->handshake_func = s->handshake_func;
2188 ret->server = s->server;
2189 ret->new_session = s->new_session;
2190 ret->quiet_shutdown = s->quiet_shutdown;
2191 ret->shutdown=s->shutdown;
2192 ret->state=s->state; /* SSL_dup does not really work at any state, though */
2193 ret->rstate=s->rstate;
2194 ret->init_num = 0; /* would have to copy ret->init_buf, ret->init_msg, ret->init_num, ret->init_off */
2195 ret->hit=s->hit;
2197 X509_VERIFY_PARAM_inherit(ret->param, s->param);
2199 /* dup the cipher_list and cipher_list_by_id stacks */
2200 if (s->cipher_list != NULL)
2202 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
2203 goto err;
2205 if (s->cipher_list_by_id != NULL)
2206 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_id))
2207 == NULL)
2208 goto err;
2210 /* Dup the client_CA list */
2211 if (s->client_CA != NULL)
2213 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
2214 ret->client_CA=sk;
2215 for (i=0; i<sk_X509_NAME_num(sk); i++)
2217 xn=sk_X509_NAME_value(sk,i);
2218 if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL)
2220 X509_NAME_free(xn);
2221 goto err;
2226 if (0)
2228 err:
2229 if (ret != NULL) SSL_free(ret);
2230 ret=NULL;
2232 return(ret);
2235 void ssl_clear_cipher_ctx(SSL *s)
2237 if (s->enc_read_ctx != NULL)
2239 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
2240 OPENSSL_free(s->enc_read_ctx);
2241 s->enc_read_ctx=NULL;
2243 if (s->enc_write_ctx != NULL)
2245 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2246 OPENSSL_free(s->enc_write_ctx);
2247 s->enc_write_ctx=NULL;
2249 #ifndef OPENSSL_NO_COMP
2250 if (s->expand != NULL)
2252 COMP_CTX_free(s->expand);
2253 s->expand=NULL;
2255 if (s->compress != NULL)
2257 COMP_CTX_free(s->compress);
2258 s->compress=NULL;
2260 #endif
2263 /* Fix this function so that it takes an optional type parameter */
2264 X509 *SSL_get_certificate(const SSL *s)
2266 if (s->cert != NULL)
2267 return(s->cert->key->x509);
2268 else
2269 return(NULL);
2272 /* Fix this function so that it takes an optional type parameter */
2273 EVP_PKEY *SSL_get_privatekey(SSL *s)
2275 if (s->cert != NULL)
2276 return(s->cert->key->privatekey);
2277 else
2278 return(NULL);
2281 SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
2283 if ((s->session != NULL) && (s->session->cipher != NULL))
2284 return(s->session->cipher);
2285 return(NULL);
2287 #ifdef OPENSSL_NO_COMP
2288 const void *SSL_get_current_compression(SSL *s)
2290 return NULL;
2292 const void *SSL_get_current_expansion(SSL *s)
2294 return NULL;
2296 #else
2298 const COMP_METHOD *SSL_get_current_compression(SSL *s)
2300 if (s->compress != NULL)
2301 return(s->compress->meth);
2302 return(NULL);
2305 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
2307 if (s->expand != NULL)
2308 return(s->expand->meth);
2309 return(NULL);
2311 #endif
2313 int ssl_init_wbio_buffer(SSL *s,int push)
2315 BIO *bbio;
2317 if (s->bbio == NULL)
2319 bbio=BIO_new(BIO_f_buffer());
2320 if (bbio == NULL) return(0);
2321 s->bbio=bbio;
2323 else
2325 bbio=s->bbio;
2326 if (s->bbio == s->wbio)
2327 s->wbio=BIO_pop(s->wbio);
2329 (void)BIO_reset(bbio);
2330 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2331 if (!BIO_set_read_buffer_size(bbio,1))
2333 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB);
2334 return(0);
2336 if (push)
2338 if (s->wbio != bbio)
2339 s->wbio=BIO_push(bbio,s->wbio);
2341 else
2343 if (s->wbio == bbio)
2344 s->wbio=BIO_pop(bbio);
2346 return(1);
2349 void ssl_free_wbio_buffer(SSL *s)
2351 if (s->bbio == NULL) return;
2353 if (s->bbio == s->wbio)
2355 /* remove buffering */
2356 s->wbio=BIO_pop(s->wbio);
2357 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids adding one more preprocessor symbol */
2358 assert(s->wbio != NULL);
2359 #endif
2361 BIO_free(s->bbio);
2362 s->bbio=NULL;
2365 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode)
2367 ctx->quiet_shutdown=mode;
2370 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
2372 return(ctx->quiet_shutdown);
2375 void SSL_set_quiet_shutdown(SSL *s,int mode)
2377 s->quiet_shutdown=mode;
2380 int SSL_get_quiet_shutdown(const SSL *s)
2382 return(s->quiet_shutdown);
2385 void SSL_set_shutdown(SSL *s,int mode)
2387 s->shutdown=mode;
2390 int SSL_get_shutdown(const SSL *s)
2392 return(s->shutdown);
2395 int SSL_version(const SSL *s)
2397 return(s->version);
2400 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
2402 return(ssl->ctx);
2405 #ifndef OPENSSL_NO_STDIO
2406 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
2408 return(X509_STORE_set_default_paths(ctx->cert_store));
2411 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
2412 const char *CApath)
2414 return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
2416 #endif
2418 void SSL_set_info_callback(SSL *ssl,
2419 void (*cb)(const SSL *ssl,int type,int val))
2421 ssl->info_callback=cb;
2424 /* One compiler (Diab DCC) doesn't like argument names in returned
2425 function pointer. */
2426 void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /*ssl*/,int /*type*/,int /*val*/)
2428 return ssl->info_callback;
2431 int SSL_state(const SSL *ssl)
2433 return(ssl->state);
2436 void SSL_set_verify_result(SSL *ssl,long arg)
2438 ssl->verify_result=arg;
2441 long SSL_get_verify_result(const SSL *ssl)
2443 return(ssl->verify_result);
2446 int SSL_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2447 CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2449 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp,
2450 new_func, dup_func, free_func);
2453 int SSL_set_ex_data(SSL *s,int idx,void *arg)
2455 return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2458 void *SSL_get_ex_data(const SSL *s,int idx)
2460 return(CRYPTO_get_ex_data(&s->ex_data,idx));
2463 int SSL_CTX_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2464 CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2466 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp,
2467 new_func, dup_func, free_func);
2470 int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg)
2472 return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2475 void *SSL_CTX_get_ex_data(const SSL_CTX *s,int idx)
2477 return(CRYPTO_get_ex_data(&s->ex_data,idx));
2480 int ssl_ok(SSL *s)
2482 return(1);
2485 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
2487 return(ctx->cert_store);
2490 void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store)
2492 if (ctx->cert_store != NULL)
2493 X509_STORE_free(ctx->cert_store);
2494 ctx->cert_store=store;
2497 int SSL_want(const SSL *s)
2499 return(s->rwstate);
2503 * \brief Set the callback for generating temporary RSA keys.
2504 * \param ctx the SSL context.
2505 * \param cb the callback
2508 #ifndef OPENSSL_NO_RSA
2509 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl,
2510 int is_export,
2511 int keylength))
2513 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2516 void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl,
2517 int is_export,
2518 int keylength))
2520 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2522 #endif
2524 #ifdef DOXYGEN
2526 * \brief The RSA temporary key callback function.
2527 * \param ssl the SSL session.
2528 * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
2529 * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
2530 * of the required key in bits.
2531 * \return the temporary RSA key.
2532 * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
2535 RSA *cb(SSL *ssl,int is_export,int keylength)
2537 #endif
2540 * \brief Set the callback for generating temporary DH keys.
2541 * \param ctx the SSL context.
2542 * \param dh the callback
2545 #ifndef OPENSSL_NO_DH
2546 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int is_export,
2547 int keylength))
2549 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2552 void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int is_export,
2553 int keylength))
2555 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2557 #endif
2559 #ifndef OPENSSL_NO_ECDH
2560 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2561 int keylength))
2563 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2566 void SSL_set_tmp_ecdh_callback(SSL *ssl,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2567 int keylength))
2569 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2571 #endif
2574 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))
2576 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2578 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))
2580 SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2585 #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
2586 #include "../crypto/bio/bss_file.c"
2587 #endif
2589 IMPLEMENT_STACK_OF(SSL_CIPHER)
2590 IMPLEMENT_STACK_OF(SSL_COMP)