Don't use the SSL 2.0 Client Hello format if SSL 2.0 is disabled
[openssl.git] / ssl / ssl_lib.c
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.
6  *
7  * This package is an SSL implementation written
8  * by Eric Young (eay@cryptsoft.com).
9  * The implementation was written so as to conform with Netscapes SSL.
10  * 
11  * This library is free for commercial and non-commercial use as long as
12  * the following conditions are aheared to.  The following conditions
13  * apply to all code found in this distribution, be it the RC4, RSA,
14  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
15  * included with this distribution is covered by the same copyright terms
16  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
17  * 
18  * Copyright remains Eric Young's, and as such any Copyright notices in
19  * the code are not to be removed.
20  * If this package is used in a product, Eric Young should be given attribution
21  * as the author of the parts of the library used.
22  * This can be in the form of a textual message at program startup or
23  * in documentation (online or textual) provided with the package.
24  * 
25  * Redistribution and use in source and binary forms, with or without
26  * modification, are permitted provided that the following conditions
27  * are met:
28  * 1. Redistributions of source code must retain the copyright
29  *    notice, this list of conditions and the following disclaimer.
30  * 2. Redistributions in binary form must reproduce the above copyright
31  *    notice, this list of conditions and the following disclaimer in the
32  *    documentation and/or other materials provided with the distribution.
33  * 3. All advertising materials mentioning features or use of this software
34  *    must display the following acknowledgement:
35  *    "This product includes cryptographic software written by
36  *     Eric Young (eay@cryptsoft.com)"
37  *    The word 'cryptographic' can be left out if the rouines from the library
38  *    being used are not cryptographic related :-).
39  * 4. If you include any Windows specific code (or a derivative thereof) from 
40  *    the apps directory (application code) you must include an acknowledgement:
41  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
42  * 
43  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
44  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53  * SUCH DAMAGE.
54  * 
55  * The licence and distribution terms for any publically available version or
56  * derivative of this code cannot be changed.  i.e. this code cannot simply be
57  * copied and put under another distribution licence
58  * [including the GNU Public Licence.]
59  */
60 /* ====================================================================
61  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
62  *
63  * Redistribution and use in source and binary forms, with or without
64  * modification, are permitted provided that the following conditions
65  * are met:
66  *
67  * 1. Redistributions of source code must retain the above copyright
68  *    notice, this list of conditions and the following disclaimer. 
69  *
70  * 2. Redistributions in binary form must reproduce the above copyright
71  *    notice, this list of conditions and the following disclaimer in
72  *    the documentation and/or other materials provided with the
73  *    distribution.
74  *
75  * 3. All advertising materials mentioning features or use of this
76  *    software must display the following acknowledgment:
77  *    "This product includes software developed by the OpenSSL Project
78  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
79  *
80  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
81  *    endorse or promote products derived from this software without
82  *    prior written permission. For written permission, please contact
83  *    openssl-core@openssl.org.
84  *
85  * 5. Products derived from this software may not be called "OpenSSL"
86  *    nor may "OpenSSL" appear in their names without prior written
87  *    permission of the OpenSSL Project.
88  *
89  * 6. Redistributions of any form whatsoever must retain the following
90  *    acknowledgment:
91  *    "This product includes software developed by the OpenSSL Project
92  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
93  *
94  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
95  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
96  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
97  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
98  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
99  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
100  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
101  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
102  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
103  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
104  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
105  * OF THE POSSIBILITY OF SUCH DAMAGE.
106  * ====================================================================
107  *
108  * This product includes cryptographic software written by Eric Young
109  * (eay@cryptsoft.com).  This product includes software written by Tim
110  * Hudson (tjh@cryptsoft.com).
111  *
112  */
113 /* ====================================================================
114  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
115  * ECC cipher suite support in OpenSSL originally developed by 
116  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
117  */
118
119 #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 #include <openssl/dh.h>
129
130 const char *SSL_version_str=OPENSSL_VERSION_TEXT;
131
132 SSL3_ENC_METHOD ssl3_undef_enc_method={
133         /* evil casts, but these functions are only called if there's a library bug */
134         (int (*)(SSL *,int))ssl_undefined_function,
135         (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
136         ssl_undefined_function,
137         (int (*)(SSL *, unsigned char *, unsigned char *, int))ssl_undefined_function,
138         (int (*)(SSL*, int))ssl_undefined_function,
139         (int (*)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char*, int, unsigned char *))ssl_undefined_function
140         };
141
142 int SSL_clear(SSL *s)
143         {
144
145         if (s->method == NULL)
146                 {
147                 SSLerr(SSL_F_SSL_CLEAR,SSL_R_NO_METHOD_SPECIFIED);
148                 return(0);
149                 }
150
151         if (ssl_clear_bad_session(s))
152                 {
153                 SSL_SESSION_free(s->session);
154                 s->session=NULL;
155                 }
156
157         s->error=0;
158         s->hit=0;
159         s->shutdown=0;
160
161 #if 0 /* Disabled since version 1.10 of this file (early return not
162        * needed because SSL_clear is not called when doing renegotiation) */
163         /* This is set if we are doing dynamic renegotiation so keep
164          * the old cipher.  It is sort of a SSL_clear_lite :-) */
165         if (s->new_session) return(1);
166 #else
167         if (s->new_session)
168                 {
169                 SSLerr(SSL_F_SSL_CLEAR,ERR_R_INTERNAL_ERROR);
170                 return 0;
171                 }
172 #endif
173
174         s->type=0;
175
176         s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT);
177
178         s->version=s->method->version;
179         s->client_version=s->version;
180         s->rwstate=SSL_NOTHING;
181         s->rstate=SSL_ST_READ_HEADER;
182 #if 0
183         s->read_ahead=s->ctx->read_ahead;
184 #endif
185
186         if (s->init_buf != NULL)
187                 {
188                 BUF_MEM_free(s->init_buf);
189                 s->init_buf=NULL;
190                 }
191
192         ssl_clear_cipher_ctx(s);
193
194         s->first_packet=0;
195
196 #if 1
197         /* Check to see if we were changed into a different method, if
198          * so, revert back if we are not doing session-id reuse. */
199         if (!s->in_handshake && (s->session == NULL) && (s->method != s->ctx->method))
200                 {
201                 s->method->ssl_free(s);
202                 s->method=s->ctx->method;
203                 if (!s->method->ssl_new(s))
204                         return(0);
205                 }
206         else
207 #endif
208                 s->method->ssl_clear(s);
209         return(1);
210         }
211
212 /** Used to change an SSL_CTXs default SSL method type */
213 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth)
214         {
215         STACK_OF(SSL_CIPHER) *sk;
216
217         ctx->method=meth;
218
219         sk=ssl_create_cipher_list(ctx->method,&(ctx->cipher_list),
220                 &(ctx->cipher_list_by_id),SSL_DEFAULT_CIPHER_LIST);
221         if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0))
222                 {
223                 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
224                 return(0);
225                 }
226         return(1);
227         }
228
229 SSL *SSL_new(SSL_CTX *ctx)
230         {
231         SSL *s;
232
233         if (ctx == NULL)
234                 {
235                 SSLerr(SSL_F_SSL_NEW,SSL_R_NULL_SSL_CTX);
236                 return(NULL);
237                 }
238         if (ctx->method == NULL)
239                 {
240                 SSLerr(SSL_F_SSL_NEW,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
241                 return(NULL);
242                 }
243
244         s=(SSL *)OPENSSL_malloc(sizeof(SSL));
245         if (s == NULL) goto err;
246         memset(s,0,sizeof(SSL));
247
248 #ifndef OPENSSL_NO_KRB5
249         s->kssl_ctx = kssl_ctx_new();
250 #endif  /* OPENSSL_NO_KRB5 */
251
252         s->options=ctx->options;
253         s->mode=ctx->mode;
254         s->max_cert_list=ctx->max_cert_list;
255
256         if (ctx->cert != NULL)
257                 {
258                 /* Earlier library versions used to copy the pointer to
259                  * the CERT, not its contents; only when setting new
260                  * parameters for the per-SSL copy, ssl_cert_new would be
261                  * called (and the direct reference to the per-SSL_CTX
262                  * settings would be lost, but those still were indirectly
263                  * accessed for various purposes, and for that reason they
264                  * used to be known as s->ctx->default_cert).
265                  * Now we don't look at the SSL_CTX's CERT after having
266                  * duplicated it once. */
267
268                 s->cert = ssl_cert_dup(ctx->cert);
269                 if (s->cert == NULL)
270                         goto err;
271                 }
272         else
273                 s->cert=NULL; /* Cannot really happen (see SSL_CTX_new) */
274
275         s->read_ahead=ctx->read_ahead;
276         s->msg_callback=ctx->msg_callback;
277         s->msg_callback_arg=ctx->msg_callback_arg;
278         s->verify_mode=ctx->verify_mode;
279 #if 0
280         s->verify_depth=ctx->verify_depth;
281 #endif
282         s->sid_ctx_length=ctx->sid_ctx_length;
283         OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx);
284         memcpy(&s->sid_ctx,&ctx->sid_ctx,sizeof(s->sid_ctx));
285         s->verify_callback=ctx->default_verify_callback;
286         s->generate_session_id=ctx->generate_session_id;
287
288         s->param = X509_VERIFY_PARAM_new();
289         if (!s->param)
290                 goto err;
291         X509_VERIFY_PARAM_inherit(s->param, ctx->param);
292 #if 0
293         s->purpose = ctx->purpose;
294         s->trust = ctx->trust;
295 #endif
296         s->quiet_shutdown=ctx->quiet_shutdown;
297
298         CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
299         s->ctx=ctx;
300
301         s->verify_result=X509_V_OK;
302
303         s->method=ctx->method;
304
305         if (!s->method->ssl_new(s))
306                 goto err;
307
308         s->references=1;
309         s->server=(ctx->method->ssl_accept == ssl_undefined_function)?0:1;
310
311         SSL_clear(s);
312
313         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
314
315         return(s);
316 err:
317         if (s != NULL)
318                 {
319                 if (s->cert != NULL)
320                         ssl_cert_free(s->cert);
321                 if (s->ctx != NULL)
322                         SSL_CTX_free(s->ctx); /* decrement reference count */
323                 OPENSSL_free(s);
324                 }
325         SSLerr(SSL_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
326         return(NULL);
327         }
328
329 int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx,
330                                    unsigned int sid_ctx_len)
331     {
332     if(sid_ctx_len > sizeof ctx->sid_ctx)
333         {
334         SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
335         return 0;
336         }
337     ctx->sid_ctx_length=sid_ctx_len;
338     memcpy(ctx->sid_ctx,sid_ctx,sid_ctx_len);
339
340     return 1;
341     }
342
343 int SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
344                                unsigned int sid_ctx_len)
345     {
346     if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH)
347         {
348         SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
349         return 0;
350         }
351     ssl->sid_ctx_length=sid_ctx_len;
352     memcpy(ssl->sid_ctx,sid_ctx,sid_ctx_len);
353
354     return 1;
355     }
356
357 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
358         {
359         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
360         ctx->generate_session_id = cb;
361         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
362         return 1;
363         }
364
365 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
366         {
367         CRYPTO_w_lock(CRYPTO_LOCK_SSL);
368         ssl->generate_session_id = cb;
369         CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
370         return 1;
371         }
372
373 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
374                                 unsigned int id_len)
375         {
376         /* A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
377          * we can "construct" a session to give us the desired check - ie. to
378          * find if there's a session in the hash table that would conflict with
379          * any new session built out of this id/id_len and the ssl_version in
380          * use by this SSL. */
381         SSL_SESSION r, *p;
382
383         if(id_len > sizeof r.session_id)
384                 return 0;
385
386         r.ssl_version = ssl->version;
387         r.session_id_length = id_len;
388         memcpy(r.session_id, id, id_len);
389         /* NB: SSLv2 always uses a fixed 16-byte session ID, so even if a
390          * callback is calling us to check the uniqueness of a shorter ID, it
391          * must be compared as a padded-out ID because that is what it will be
392          * converted to when the callback has finished choosing it. */
393         if((r.ssl_version == SSL2_VERSION) &&
394                         (id_len < SSL2_SSL_SESSION_ID_LENGTH))
395                 {
396                 memset(r.session_id + id_len, 0,
397                         SSL2_SSL_SESSION_ID_LENGTH - id_len);
398                 r.session_id_length = SSL2_SSL_SESSION_ID_LENGTH;
399                 }
400
401         CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
402         p = (SSL_SESSION *)lh_retrieve(ssl->ctx->sessions, &r);
403         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
404         return (p != NULL);
405         }
406
407 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
408         {
409         return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
410         }
411
412 int SSL_set_purpose(SSL *s, int purpose)
413         {
414         return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
415         }
416
417 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
418         {
419         return X509_VERIFY_PARAM_set_trust(s->param, trust);
420         }
421
422 int SSL_set_trust(SSL *s, int trust)
423         {
424         return X509_VERIFY_PARAM_set_trust(s->param, trust);
425         }
426
427 void SSL_free(SSL *s)
428         {
429         int i;
430
431         if(s == NULL)
432             return;
433
434         i=CRYPTO_add(&s->references,-1,CRYPTO_LOCK_SSL);
435 #ifdef REF_PRINT
436         REF_PRINT("SSL",s);
437 #endif
438         if (i > 0) return;
439 #ifdef REF_CHECK
440         if (i < 0)
441                 {
442                 fprintf(stderr,"SSL_free, bad reference count\n");
443                 abort(); /* ok */
444                 }
445 #endif
446
447         if (s->param)
448                 X509_VERIFY_PARAM_free(s->param);
449
450         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
451
452         if (s->bbio != NULL)
453                 {
454                 /* If the buffering BIO is in place, pop it off */
455                 if (s->bbio == s->wbio)
456                         {
457                         s->wbio=BIO_pop(s->wbio);
458                         }
459                 BIO_free(s->bbio);
460                 s->bbio=NULL;
461                 }
462         if (s->rbio != NULL)
463                 BIO_free_all(s->rbio);
464         if ((s->wbio != NULL) && (s->wbio != s->rbio))
465                 BIO_free_all(s->wbio);
466
467         if (s->init_buf != NULL) BUF_MEM_free(s->init_buf);
468
469         /* add extra stuff */
470         if (s->cipher_list != NULL) sk_SSL_CIPHER_free(s->cipher_list);
471         if (s->cipher_list_by_id != NULL) sk_SSL_CIPHER_free(s->cipher_list_by_id);
472
473         /* Make the next call work :-) */
474         if (s->session != NULL)
475                 {
476                 ssl_clear_bad_session(s);
477                 SSL_SESSION_free(s->session);
478                 }
479
480         ssl_clear_cipher_ctx(s);
481
482         if (s->cert != NULL) ssl_cert_free(s->cert);
483         /* Free up if allocated */
484
485         if (s->ctx) SSL_CTX_free(s->ctx);
486
487         if (s->client_CA != NULL)
488                 sk_X509_NAME_pop_free(s->client_CA,X509_NAME_free);
489
490         if (s->method != NULL) s->method->ssl_free(s);
491
492 #ifndef OPENSSL_NO_KRB5
493         if (s->kssl_ctx != NULL)
494                 kssl_ctx_free(s->kssl_ctx);
495 #endif  /* OPENSSL_NO_KRB5 */
496
497         OPENSSL_free(s);
498         }
499
500 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
501         {
502         /* If the output buffering BIO is still in place, remove it
503          */
504         if (s->bbio != NULL)
505                 {
506                 if (s->wbio == s->bbio)
507                         {
508                         s->wbio=s->wbio->next_bio;
509                         s->bbio->next_bio=NULL;
510                         }
511                 }
512         if ((s->rbio != NULL) && (s->rbio != rbio))
513                 BIO_free_all(s->rbio);
514         if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
515                 BIO_free_all(s->wbio);
516         s->rbio=rbio;
517         s->wbio=wbio;
518         }
519
520 BIO *SSL_get_rbio(const SSL *s)
521         { return(s->rbio); }
522
523 BIO *SSL_get_wbio(const SSL *s)
524         { return(s->wbio); }
525
526 int SSL_get_fd(const SSL *s)
527         {
528         return(SSL_get_rfd(s));
529         }
530
531 int SSL_get_rfd(const SSL *s)
532         {
533         int ret= -1;
534         BIO *b,*r;
535
536         b=SSL_get_rbio(s);
537         r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
538         if (r != NULL)
539                 BIO_get_fd(r,&ret);
540         return(ret);
541         }
542
543 int SSL_get_wfd(const SSL *s)
544         {
545         int ret= -1;
546         BIO *b,*r;
547
548         b=SSL_get_wbio(s);
549         r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
550         if (r != NULL)
551                 BIO_get_fd(r,&ret);
552         return(ret);
553         }
554
555 #ifndef OPENSSL_NO_SOCK
556 int SSL_set_fd(SSL *s,int fd)
557         {
558         int ret=0;
559         BIO *bio=NULL;
560
561         bio=BIO_new(BIO_s_socket());
562
563         if (bio == NULL)
564                 {
565                 SSLerr(SSL_F_SSL_SET_FD,ERR_R_BUF_LIB);
566                 goto err;
567                 }
568         BIO_set_fd(bio,fd,BIO_NOCLOSE);
569         SSL_set_bio(s,bio,bio);
570         ret=1;
571 err:
572         return(ret);
573         }
574
575 int SSL_set_wfd(SSL *s,int fd)
576         {
577         int ret=0;
578         BIO *bio=NULL;
579
580         if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
581                 || ((int)BIO_get_fd(s->rbio,NULL) != fd))
582                 {
583                 bio=BIO_new(BIO_s_socket());
584
585                 if (bio == NULL)
586                         { SSLerr(SSL_F_SSL_SET_WFD,ERR_R_BUF_LIB); goto err; }
587                 BIO_set_fd(bio,fd,BIO_NOCLOSE);
588                 SSL_set_bio(s,SSL_get_rbio(s),bio);
589                 }
590         else
591                 SSL_set_bio(s,SSL_get_rbio(s),SSL_get_rbio(s));
592         ret=1;
593 err:
594         return(ret);
595         }
596
597 int SSL_set_rfd(SSL *s,int fd)
598         {
599         int ret=0;
600         BIO *bio=NULL;
601
602         if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
603                 || ((int)BIO_get_fd(s->wbio,NULL) != fd))
604                 {
605                 bio=BIO_new(BIO_s_socket());
606
607                 if (bio == NULL)
608                         {
609                         SSLerr(SSL_F_SSL_SET_RFD,ERR_R_BUF_LIB);
610                         goto err;
611                         }
612                 BIO_set_fd(bio,fd,BIO_NOCLOSE);
613                 SSL_set_bio(s,bio,SSL_get_wbio(s));
614                 }
615         else
616                 SSL_set_bio(s,SSL_get_wbio(s),SSL_get_wbio(s));
617         ret=1;
618 err:
619         return(ret);
620         }
621 #endif
622
623
624 /* return length of latest Finished message we sent, copy to 'buf' */
625 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
626         {
627         size_t ret = 0;
628         
629         if (s->s3 != NULL)
630                 {
631                 ret = s->s3->tmp.finish_md_len;
632                 if (count > ret)
633                         count = ret;
634                 memcpy(buf, s->s3->tmp.finish_md, count);
635                 }
636         return ret;
637         }
638
639 /* return length of latest Finished message we expected, copy to 'buf' */
640 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
641         {
642         size_t ret = 0;
643         
644         if (s->s3 != NULL)
645                 {
646                 ret = s->s3->tmp.peer_finish_md_len;
647                 if (count > ret)
648                         count = ret;
649                 memcpy(buf, s->s3->tmp.peer_finish_md, count);
650                 }
651         return ret;
652         }
653
654
655 int SSL_get_verify_mode(const SSL *s)
656         {
657         return(s->verify_mode);
658         }
659
660 int SSL_get_verify_depth(const SSL *s)
661         {
662         return X509_VERIFY_PARAM_get_depth(s->param);
663         }
664
665 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *)
666         {
667         return(s->verify_callback);
668         }
669
670 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
671         {
672         return(ctx->verify_mode);
673         }
674
675 int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
676         {
677         return X509_VERIFY_PARAM_get_depth(ctx->param);
678         }
679
680 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *)
681         {
682         return(ctx->default_verify_callback);
683         }
684
685 void SSL_set_verify(SSL *s,int mode,
686                     int (*callback)(int ok,X509_STORE_CTX *ctx))
687         {
688         s->verify_mode=mode;
689         if (callback != NULL)
690                 s->verify_callback=callback;
691         }
692
693 void SSL_set_verify_depth(SSL *s,int depth)
694         {
695         X509_VERIFY_PARAM_set_depth(s->param, depth);
696         }
697
698 void SSL_set_read_ahead(SSL *s,int yes)
699         {
700         s->read_ahead=yes;
701         }
702
703 int SSL_get_read_ahead(const SSL *s)
704         {
705         return(s->read_ahead);
706         }
707
708 int SSL_pending(const SSL *s)
709         {
710         /* SSL_pending cannot work properly if read-ahead is enabled
711          * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)),
712          * and it is impossible to fix since SSL_pending cannot report
713          * errors that may be observed while scanning the new data.
714          * (Note that SSL_pending() is often used as a boolean value,
715          * so we'd better not return -1.)
716          */
717         return(s->method->ssl_pending(s));
718         }
719
720 X509 *SSL_get_peer_certificate(const SSL *s)
721         {
722         X509 *r;
723         
724         if ((s == NULL) || (s->session == NULL))
725                 r=NULL;
726         else
727                 r=s->session->peer;
728
729         if (r == NULL) return(r);
730
731         CRYPTO_add(&r->references,1,CRYPTO_LOCK_X509);
732
733         return(r);
734         }
735
736 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
737         {
738         STACK_OF(X509) *r;
739         
740         if ((s == NULL) || (s->session == NULL) || (s->session->sess_cert == NULL))
741                 r=NULL;
742         else
743                 r=s->session->sess_cert->cert_chain;
744
745         /* If we are a client, cert_chain includes the peer's own
746          * certificate; if we are a server, it does not. */
747         
748         return(r);
749         }
750
751 /* Now in theory, since the calling process own 't' it should be safe to
752  * modify.  We need to be able to read f without being hassled */
753 void SSL_copy_session_id(SSL *t,const SSL *f)
754         {
755         CERT *tmp;
756
757         /* Do we need to to SSL locking? */
758         SSL_set_session(t,SSL_get_session(f));
759
760         /* what if we are setup as SSLv2 but want to talk SSLv3 or
761          * vice-versa */
762         if (t->method != f->method)
763                 {
764                 t->method->ssl_free(t); /* cleanup current */
765                 t->method=f->method;    /* change method */
766                 t->method->ssl_new(t);  /* setup new */
767                 }
768
769         tmp=t->cert;
770         if (f->cert != NULL)
771                 {
772                 CRYPTO_add(&f->cert->references,1,CRYPTO_LOCK_SSL_CERT);
773                 t->cert=f->cert;
774                 }
775         else
776                 t->cert=NULL;
777         if (tmp != NULL) ssl_cert_free(tmp);
778         SSL_set_session_id_context(t,f->sid_ctx,f->sid_ctx_length);
779         }
780
781 /* Fix this so it checks all the valid key/cert options */
782 int SSL_CTX_check_private_key(const SSL_CTX *ctx)
783         {
784         if (    (ctx == NULL) ||
785                 (ctx->cert == NULL) ||
786                 (ctx->cert->key->x509 == NULL))
787                 {
788                 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
789                 return(0);
790                 }
791         if      (ctx->cert->key->privatekey == NULL)
792                 {
793                 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
794                 return(0);
795                 }
796         return(X509_check_private_key(ctx->cert->key->x509, ctx->cert->key->privatekey));
797         }
798
799 /* Fix this function so that it takes an optional type parameter */
800 int SSL_check_private_key(const SSL *ssl)
801         {
802         if (ssl == NULL)
803                 {
804                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,ERR_R_PASSED_NULL_PARAMETER);
805                 return(0);
806                 }
807         if (ssl->cert == NULL)
808                 {
809                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
810                 return 0;
811                 }
812         if (ssl->cert->key->x509 == NULL)
813                 {
814                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
815                 return(0);
816                 }
817         if (ssl->cert->key->privatekey == NULL)
818                 {
819                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
820                 return(0);
821                 }
822         return(X509_check_private_key(ssl->cert->key->x509,
823                 ssl->cert->key->privatekey));
824         }
825
826 int SSL_accept(SSL *s)
827         {
828         if (s->handshake_func == 0)
829                 /* Not properly initialized yet */
830                 SSL_set_accept_state(s);
831
832         return(s->method->ssl_accept(s));
833         }
834
835 int SSL_connect(SSL *s)
836         {
837         if (s->handshake_func == 0)
838                 /* Not properly initialized yet */
839                 SSL_set_connect_state(s);
840
841         return(s->method->ssl_connect(s));
842         }
843
844 long SSL_get_default_timeout(const SSL *s)
845         {
846         return(s->method->get_timeout());
847         }
848
849 int SSL_read(SSL *s,void *buf,int num)
850         {
851         if (s->handshake_func == 0)
852                 {
853                 SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED);
854                 return -1;
855                 }
856
857         if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
858                 {
859                 s->rwstate=SSL_NOTHING;
860                 return(0);
861                 }
862         return(s->method->ssl_read(s,buf,num));
863         }
864
865 int SSL_peek(SSL *s,void *buf,int num)
866         {
867         if (s->handshake_func == 0)
868                 {
869                 SSLerr(SSL_F_SSL_PEEK, SSL_R_UNINITIALIZED);
870                 return -1;
871                 }
872
873         if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
874                 {
875                 return(0);
876                 }
877         return(s->method->ssl_peek(s,buf,num));
878         }
879
880 int SSL_write(SSL *s,const void *buf,int num)
881         {
882         if (s->handshake_func == 0)
883                 {
884                 SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED);
885                 return -1;
886                 }
887
888         if (s->shutdown & SSL_SENT_SHUTDOWN)
889                 {
890                 s->rwstate=SSL_NOTHING;
891                 SSLerr(SSL_F_SSL_WRITE,SSL_R_PROTOCOL_IS_SHUTDOWN);
892                 return(-1);
893                 }
894         return(s->method->ssl_write(s,buf,num));
895         }
896
897 int SSL_shutdown(SSL *s)
898         {
899         /* Note that this function behaves differently from what one might
900          * expect.  Return values are 0 for no success (yet),
901          * 1 for success; but calling it once is usually not enough,
902          * even if blocking I/O is used (see ssl3_shutdown).
903          */
904
905         if (s->handshake_func == 0)
906                 {
907                 SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);
908                 return -1;
909                 }
910
911         if ((s != NULL) && !SSL_in_init(s))
912                 return(s->method->ssl_shutdown(s));
913         else
914                 return(1);
915         }
916
917 int SSL_renegotiate(SSL *s)
918         {
919         if (s->new_session == 0)
920                 {
921                 s->new_session=1;
922                 }
923         return(s->method->ssl_renegotiate(s));
924         }
925
926 int SSL_renegotiate_pending(SSL *s)
927         {
928         /* becomes true when negotiation is requested;
929          * false again once a handshake has finished */
930         return (s->new_session != 0);
931         }
932
933 long SSL_ctrl(SSL *s,int cmd,long larg,void *parg)
934         {
935         long l;
936
937         switch (cmd)
938                 {
939         case SSL_CTRL_GET_READ_AHEAD:
940                 return(s->read_ahead);
941         case SSL_CTRL_SET_READ_AHEAD:
942                 l=s->read_ahead;
943                 s->read_ahead=larg;
944                 return(l);
945
946         case SSL_CTRL_SET_MSG_CALLBACK_ARG:
947                 s->msg_callback_arg = parg;
948                 return 1;
949
950         case SSL_CTRL_OPTIONS:
951                 return(s->options|=larg);
952         case SSL_CTRL_MODE:
953                 return(s->mode|=larg);
954         case SSL_CTRL_GET_MAX_CERT_LIST:
955                 return(s->max_cert_list);
956         case SSL_CTRL_SET_MAX_CERT_LIST:
957                 l=s->max_cert_list;
958                 s->max_cert_list=larg;
959                 return(l);
960         case SSL_CTRL_SET_MTU:
961                 if (SSL_version(s) == DTLS1_VERSION)
962                         {
963                         s->d1->mtu = larg;
964                         return larg;
965                         }
966                 return 0;
967         default:
968                 return(s->method->ssl_ctrl(s,cmd,larg,parg));
969                 }
970         }
971
972 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp)(void))
973         {
974         switch(cmd)
975                 {
976         case SSL_CTRL_SET_MSG_CALLBACK:
977                 s->msg_callback = (void (*)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp);
978                 return 1;
979                 
980         default:
981                 return(s->method->ssl_callback_ctrl(s,cmd,fp));
982                 }
983         }
984
985 struct lhash_st *SSL_CTX_sessions(SSL_CTX *ctx)
986         {
987         return ctx->sessions;
988         }
989
990 long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd,long larg,void *parg)
991         {
992         long l;
993
994         switch (cmd)
995                 {
996         case SSL_CTRL_GET_READ_AHEAD:
997                 return(ctx->read_ahead);
998         case SSL_CTRL_SET_READ_AHEAD:
999                 l=ctx->read_ahead;
1000                 ctx->read_ahead=larg;
1001                 return(l);
1002                 
1003         case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1004                 ctx->msg_callback_arg = parg;
1005                 return 1;
1006
1007         case SSL_CTRL_GET_MAX_CERT_LIST:
1008                 return(ctx->max_cert_list);
1009         case SSL_CTRL_SET_MAX_CERT_LIST:
1010                 l=ctx->max_cert_list;
1011                 ctx->max_cert_list=larg;
1012                 return(l);
1013
1014         case SSL_CTRL_SET_SESS_CACHE_SIZE:
1015                 l=ctx->session_cache_size;
1016                 ctx->session_cache_size=larg;
1017                 return(l);
1018         case SSL_CTRL_GET_SESS_CACHE_SIZE:
1019                 return(ctx->session_cache_size);
1020         case SSL_CTRL_SET_SESS_CACHE_MODE:
1021                 l=ctx->session_cache_mode;
1022                 ctx->session_cache_mode=larg;
1023                 return(l);
1024         case SSL_CTRL_GET_SESS_CACHE_MODE:
1025                 return(ctx->session_cache_mode);
1026
1027         case SSL_CTRL_SESS_NUMBER:
1028                 return(ctx->sessions->num_items);
1029         case SSL_CTRL_SESS_CONNECT:
1030                 return(ctx->stats.sess_connect);
1031         case SSL_CTRL_SESS_CONNECT_GOOD:
1032                 return(ctx->stats.sess_connect_good);
1033         case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
1034                 return(ctx->stats.sess_connect_renegotiate);
1035         case SSL_CTRL_SESS_ACCEPT:
1036                 return(ctx->stats.sess_accept);
1037         case SSL_CTRL_SESS_ACCEPT_GOOD:
1038                 return(ctx->stats.sess_accept_good);
1039         case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
1040                 return(ctx->stats.sess_accept_renegotiate);
1041         case SSL_CTRL_SESS_HIT:
1042                 return(ctx->stats.sess_hit);
1043         case SSL_CTRL_SESS_CB_HIT:
1044                 return(ctx->stats.sess_cb_hit);
1045         case SSL_CTRL_SESS_MISSES:
1046                 return(ctx->stats.sess_miss);
1047         case SSL_CTRL_SESS_TIMEOUTS:
1048                 return(ctx->stats.sess_timeout);
1049         case SSL_CTRL_SESS_CACHE_FULL:
1050                 return(ctx->stats.sess_cache_full);
1051         case SSL_CTRL_OPTIONS:
1052                 return(ctx->options|=larg);
1053         case SSL_CTRL_MODE:
1054                 return(ctx->mode|=larg);
1055         default:
1056                 return(ctx->method->ssl_ctx_ctrl(ctx,cmd,larg,parg));
1057                 }
1058         }
1059
1060 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp)(void))
1061         {
1062         switch(cmd)
1063                 {
1064         case SSL_CTRL_SET_MSG_CALLBACK:
1065                 ctx->msg_callback = (void (*)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp);
1066                 return 1;
1067
1068         default:
1069                 return(ctx->method->ssl_ctx_callback_ctrl(ctx,cmd,fp));
1070                 }
1071         }
1072
1073 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
1074         {
1075         long l;
1076
1077         l=a->id-b->id;
1078         if (l == 0L)
1079                 return(0);
1080         else
1081                 return((l > 0)?1:-1);
1082         }
1083
1084 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
1085                         const SSL_CIPHER * const *bp)
1086         {
1087         long l;
1088
1089         l=(*ap)->id-(*bp)->id;
1090         if (l == 0L)
1091                 return(0);
1092         else
1093                 return((l > 0)?1:-1);
1094         }
1095
1096 /** return a STACK of the ciphers available for the SSL and in order of
1097  * preference */
1098 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
1099         {
1100         if (s != NULL)
1101                 {
1102                 if (s->cipher_list != NULL)
1103                         {
1104                         return(s->cipher_list);
1105                         }
1106                 else if ((s->ctx != NULL) &&
1107                         (s->ctx->cipher_list != NULL))
1108                         {
1109                         return(s->ctx->cipher_list);
1110                         }
1111                 }
1112         return(NULL);
1113         }
1114
1115 /** return a STACK of the ciphers available for the SSL and in order of
1116  * algorithm id */
1117 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
1118         {
1119         if (s != NULL)
1120                 {
1121                 if (s->cipher_list_by_id != NULL)
1122                         {
1123                         return(s->cipher_list_by_id);
1124                         }
1125                 else if ((s->ctx != NULL) &&
1126                         (s->ctx->cipher_list_by_id != NULL))
1127                         {
1128                         return(s->ctx->cipher_list_by_id);
1129                         }
1130                 }
1131         return(NULL);
1132         }
1133
1134 /** The old interface to get the same thing as SSL_get_ciphers() */
1135 const char *SSL_get_cipher_list(const SSL *s,int n)
1136         {
1137         SSL_CIPHER *c;
1138         STACK_OF(SSL_CIPHER) *sk;
1139
1140         if (s == NULL) return(NULL);
1141         sk=SSL_get_ciphers(s);
1142         if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
1143                 return(NULL);
1144         c=sk_SSL_CIPHER_value(sk,n);
1145         if (c == NULL) return(NULL);
1146         return(c->name);
1147         }
1148
1149 /** specify the ciphers to be used by default by the SSL_CTX */
1150 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
1151         {
1152         STACK_OF(SSL_CIPHER) *sk;
1153         
1154         sk=ssl_create_cipher_list(ctx->method,&ctx->cipher_list,
1155                 &ctx->cipher_list_by_id,str);
1156 /* XXXX */
1157         return((sk == NULL)?0:1);
1158         }
1159
1160 /** specify the ciphers to be used by the SSL */
1161 int SSL_set_cipher_list(SSL *s,const char *str)
1162         {
1163         STACK_OF(SSL_CIPHER) *sk;
1164         
1165         sk=ssl_create_cipher_list(s->ctx->method,&s->cipher_list,
1166                 &s->cipher_list_by_id,str);
1167 /* XXXX */
1168         return((sk == NULL)?0:1);
1169         }
1170
1171 /* works well for SSLv2, not so good for SSLv3 */
1172 char *SSL_get_shared_ciphers(const SSL *s,char *buf,int len)
1173         {
1174         char *p;
1175         const char *cp;
1176         STACK_OF(SSL_CIPHER) *sk;
1177         SSL_CIPHER *c;
1178         int i;
1179
1180         if ((s->session == NULL) || (s->session->ciphers == NULL) ||
1181                 (len < 2))
1182                 return(NULL);
1183
1184         p=buf;
1185         sk=s->session->ciphers;
1186         for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1187                 {
1188                 /* Decrement for either the ':' or a '\0' */
1189                 len--;
1190                 c=sk_SSL_CIPHER_value(sk,i);
1191                 for (cp=c->name; *cp; )
1192                         {
1193                         if (len-- == 0)
1194                                 {
1195                                 *p='\0';
1196                                 return(buf);
1197                                 }
1198                         else
1199                                 *(p++)= *(cp++);
1200                         }
1201                 *(p++)=':';
1202                 }
1203         p[-1]='\0';
1204         return(buf);
1205         }
1206
1207 int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p,
1208                              int (*put_cb)(const SSL_CIPHER *, unsigned char *))
1209         {
1210         int i,j=0;
1211         SSL_CIPHER *c;
1212         unsigned char *q;
1213 #ifndef OPENSSL_NO_KRB5
1214         int nokrb5 = !kssl_tgt_is_available(s->kssl_ctx);
1215 #endif /* OPENSSL_NO_KRB5 */
1216
1217         if (sk == NULL) return(0);
1218         q=p;
1219
1220         for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1221                 {
1222                 c=sk_SSL_CIPHER_value(sk,i);
1223 #ifndef OPENSSL_NO_KRB5
1224                 if ((c->algorithms & SSL_KRB5) && nokrb5)
1225                     continue;
1226 #endif /* OPENSSL_NO_KRB5 */                    
1227
1228                 j = put_cb ? put_cb(c,p) : ssl_put_cipher_by_char(s,c,p);
1229                 p+=j;
1230                 }
1231         return(p-q);
1232         }
1233
1234 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
1235                                                STACK_OF(SSL_CIPHER) **skp)
1236         {
1237         SSL_CIPHER *c;
1238         STACK_OF(SSL_CIPHER) *sk;
1239         int i,n;
1240
1241         n=ssl_put_cipher_by_char(s,NULL,NULL);
1242         if ((num%n) != 0)
1243                 {
1244                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
1245                 return(NULL);
1246                 }
1247         if ((skp == NULL) || (*skp == NULL))
1248                 sk=sk_SSL_CIPHER_new_null(); /* change perhaps later */
1249         else
1250                 {
1251                 sk= *skp;
1252                 sk_SSL_CIPHER_zero(sk);
1253                 }
1254
1255         for (i=0; i<num; i+=n)
1256                 {
1257                 c=ssl_get_cipher_by_char(s,p);
1258                 p+=n;
1259                 if (c != NULL)
1260                         {
1261                         if (!sk_SSL_CIPHER_push(sk,c))
1262                                 {
1263                                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,ERR_R_MALLOC_FAILURE);
1264                                 goto err;
1265                                 }
1266                         }
1267                 }
1268
1269         if (skp != NULL)
1270                 *skp=sk;
1271         return(sk);
1272 err:
1273         if ((skp == NULL) || (*skp == NULL))
1274                 sk_SSL_CIPHER_free(sk);
1275         return(NULL);
1276         }
1277
1278 unsigned long SSL_SESSION_hash(const SSL_SESSION *a)
1279         {
1280         unsigned long l;
1281
1282         l=(unsigned long)
1283                 ((unsigned int) a->session_id[0]     )|
1284                 ((unsigned int) a->session_id[1]<< 8L)|
1285                 ((unsigned long)a->session_id[2]<<16L)|
1286                 ((unsigned long)a->session_id[3]<<24L);
1287         return(l);
1288         }
1289
1290 /* NB: If this function (or indeed the hash function which uses a sort of
1291  * coarser function than this one) is changed, ensure
1292  * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being
1293  * able to construct an SSL_SESSION that will collide with any existing session
1294  * with a matching session ID. */
1295 int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b)
1296         {
1297         if (a->ssl_version != b->ssl_version)
1298                 return(1);
1299         if (a->session_id_length != b->session_id_length)
1300                 return(1);
1301         return(memcmp(a->session_id,b->session_id,a->session_id_length));
1302         }
1303
1304 /* These wrapper functions should remain rather than redeclaring
1305  * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
1306  * variable. The reason is that the functions aren't static, they're exposed via
1307  * ssl.h. */
1308 static IMPLEMENT_LHASH_HASH_FN(SSL_SESSION_hash, SSL_SESSION *)
1309 static IMPLEMENT_LHASH_COMP_FN(SSL_SESSION_cmp, SSL_SESSION *)
1310
1311 SSL_CTX *SSL_CTX_new(SSL_METHOD *meth)
1312         {
1313         SSL_CTX *ret=NULL;
1314         
1315         if (meth == NULL)
1316                 {
1317                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_NULL_SSL_METHOD_PASSED);
1318                 return(NULL);
1319                 }
1320
1321         if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
1322                 {
1323                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
1324                 goto err;
1325                 }
1326         ret=(SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX));
1327         if (ret == NULL)
1328                 goto err;
1329
1330         memset(ret,0,sizeof(SSL_CTX));
1331
1332         ret->method=meth;
1333
1334         ret->cert_store=NULL;
1335         ret->session_cache_mode=SSL_SESS_CACHE_SERVER;
1336         ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
1337         ret->session_cache_head=NULL;
1338         ret->session_cache_tail=NULL;
1339
1340         /* We take the system default */
1341         ret->session_timeout=meth->get_timeout();
1342
1343         ret->new_session_cb=0;
1344         ret->remove_session_cb=0;
1345         ret->get_session_cb=0;
1346         ret->generate_session_id=0;
1347
1348         memset((char *)&ret->stats,0,sizeof(ret->stats));
1349
1350         ret->references=1;
1351         ret->quiet_shutdown=0;
1352
1353 /*      ret->cipher=NULL;*/
1354 /*      ret->s2->challenge=NULL;
1355         ret->master_key=NULL;
1356         ret->key_arg=NULL;
1357         ret->s2->conn_id=NULL; */
1358
1359         ret->info_callback=NULL;
1360
1361         ret->app_verify_callback=0;
1362         ret->app_verify_arg=NULL;
1363
1364         ret->max_cert_list=SSL_MAX_CERT_LIST_DEFAULT;
1365         ret->read_ahead=0;
1366         ret->msg_callback=0;
1367         ret->msg_callback_arg=NULL;
1368         ret->verify_mode=SSL_VERIFY_NONE;
1369 #if 0
1370         ret->verify_depth=-1; /* Don't impose a limit (but x509_lu.c does) */
1371 #endif
1372         ret->sid_ctx_length=0;
1373         ret->default_verify_callback=NULL;
1374         if ((ret->cert=ssl_cert_new()) == NULL)
1375                 goto err;
1376
1377         ret->default_passwd_callback=0;
1378         ret->default_passwd_callback_userdata=NULL;
1379         ret->client_cert_cb=0;
1380     ret->app_gen_cookie_cb=0;
1381     ret->app_verify_cookie_cb=0;
1382
1383         ret->sessions=lh_new(LHASH_HASH_FN(SSL_SESSION_hash),
1384                         LHASH_COMP_FN(SSL_SESSION_cmp));
1385         if (ret->sessions == NULL) goto err;
1386         ret->cert_store=X509_STORE_new();
1387         if (ret->cert_store == NULL) goto err;
1388
1389         ssl_create_cipher_list(ret->method,
1390                 &ret->cipher_list,&ret->cipher_list_by_id,
1391                 SSL_DEFAULT_CIPHER_LIST);
1392         if (ret->cipher_list == NULL
1393             || sk_SSL_CIPHER_num(ret->cipher_list) <= 0)
1394                 {
1395                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS);
1396                 goto err2;
1397                 }
1398
1399         ret->param = X509_VERIFY_PARAM_new();
1400         if (!ret->param)
1401                 goto err;
1402
1403         if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL)
1404                 {
1405                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES);
1406                 goto err2;
1407                 }
1408         if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL)
1409                 {
1410                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1411                 goto err2;
1412                 }
1413         if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL)
1414                 {
1415                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1416                 goto err2;
1417                 }
1418
1419         if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
1420                 goto err;
1421
1422         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
1423
1424         ret->extra_certs=NULL;
1425         ret->comp_methods=SSL_COMP_get_compression_methods();
1426
1427         return(ret);
1428 err:
1429         SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);
1430 err2:
1431         if (ret != NULL) SSL_CTX_free(ret);
1432         return(NULL);
1433         }
1434
1435 #if 0
1436 static void SSL_COMP_free(SSL_COMP *comp)
1437     { OPENSSL_free(comp); }
1438 #endif
1439
1440 void SSL_CTX_free(SSL_CTX *a)
1441         {
1442         int i;
1443
1444         if (a == NULL) return;
1445
1446         i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX);
1447 #ifdef REF_PRINT
1448         REF_PRINT("SSL_CTX",a);
1449 #endif
1450         if (i > 0) return;
1451 #ifdef REF_CHECK
1452         if (i < 0)
1453                 {
1454                 fprintf(stderr,"SSL_CTX_free, bad reference count\n");
1455                 abort(); /* ok */
1456                 }
1457 #endif
1458
1459         if (a->param)
1460                 X509_VERIFY_PARAM_free(a->param);
1461
1462         /*
1463          * Free internal session cache. However: the remove_cb() may reference
1464          * the ex_data of SSL_CTX, thus the ex_data store can only be removed
1465          * after the sessions were flushed.
1466          * As the ex_data handling routines might also touch the session cache,
1467          * the most secure solution seems to be: empty (flush) the cache, then
1468          * free ex_data, then finally free the cache.
1469          * (See ticket [openssl.org #212].)
1470          */
1471         if (a->sessions != NULL)
1472                 SSL_CTX_flush_sessions(a,0);
1473
1474         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
1475
1476         if (a->sessions != NULL)
1477                 lh_free(a->sessions);
1478
1479         if (a->cert_store != NULL)
1480                 X509_STORE_free(a->cert_store);
1481         if (a->cipher_list != NULL)
1482                 sk_SSL_CIPHER_free(a->cipher_list);
1483         if (a->cipher_list_by_id != NULL)
1484                 sk_SSL_CIPHER_free(a->cipher_list_by_id);
1485         if (a->cert != NULL)
1486                 ssl_cert_free(a->cert);
1487         if (a->client_CA != NULL)
1488                 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
1489         if (a->extra_certs != NULL)
1490                 sk_X509_pop_free(a->extra_certs,X509_free);
1491 #if 0 /* This should never be done, since it removes a global database */
1492         if (a->comp_methods != NULL)
1493                 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free);
1494 #else
1495         a->comp_methods = NULL;
1496 #endif
1497         OPENSSL_free(a);
1498         }
1499
1500 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
1501         {
1502         ctx->default_passwd_callback=cb;
1503         }
1504
1505 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,void *u)
1506         {
1507         ctx->default_passwd_callback_userdata=u;
1508         }
1509
1510 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg)
1511         {
1512         ctx->app_verify_callback=cb;
1513         ctx->app_verify_arg=arg;
1514         }
1515
1516 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
1517         {
1518         ctx->verify_mode=mode;
1519         ctx->default_verify_callback=cb;
1520         }
1521
1522 void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth)
1523         {
1524         X509_VERIFY_PARAM_set_depth(ctx->param, depth);
1525         }
1526
1527 void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
1528         {
1529         CERT_PKEY *cpk;
1530         int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign;
1531         int rsa_enc_export,dh_rsa_export,dh_dsa_export;
1532         int rsa_tmp_export,dh_tmp_export,kl;
1533         unsigned long mask,emask;
1534         int have_ecc_cert, have_ecdh_tmp, ecdh_ok, ecdsa_ok, ecc_pkey_size;
1535         X509 *x = NULL;
1536         EVP_PKEY *ecc_pkey = NULL;
1537         int signature_nid = 0;
1538
1539         if (c == NULL) return;
1540
1541         kl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1542
1543 #ifndef OPENSSL_NO_RSA
1544         rsa_tmp=(c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
1545         rsa_tmp_export=(c->rsa_tmp_cb != NULL ||
1546                 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl));
1547 #else
1548         rsa_tmp=rsa_tmp_export=0;
1549 #endif
1550 #ifndef OPENSSL_NO_DH
1551         dh_tmp=(c->dh_tmp != NULL || c->dh_tmp_cb != NULL);
1552         dh_tmp_export=(c->dh_tmp_cb != NULL ||
1553                 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl));
1554 #else
1555         dh_tmp=dh_tmp_export=0;
1556 #endif
1557
1558 #ifndef OPENSSL_NO_ECDH
1559         have_ecdh_tmp=(c->ecdh_tmp != NULL || c->ecdh_tmp_cb != NULL);
1560 #endif
1561         cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]);
1562         rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
1563         rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1564         cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]);
1565         rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1566         cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]);
1567         dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1568         cpk= &(c->pkeys[SSL_PKEY_DH_RSA]);
1569         dh_rsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1570         dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1571         cpk= &(c->pkeys[SSL_PKEY_DH_DSA]);
1572 /* FIX THIS EAY EAY EAY */
1573         dh_dsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1574         dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1575         cpk= &(c->pkeys[SSL_PKEY_ECC]);
1576         have_ecc_cert= (cpk->x509 != NULL && cpk->privatekey != NULL);
1577         mask=0;
1578         emask=0;
1579
1580 #ifdef CIPHER_DEBUG
1581         printf("rt=%d rte=%d dht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1582                 rsa_tmp,rsa_tmp_export,dh_tmp,
1583                 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
1584 #endif
1585
1586         if (rsa_enc || (rsa_tmp && rsa_sign))
1587                 mask|=SSL_kRSA;
1588         if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
1589                 emask|=SSL_kRSA;
1590
1591 #if 0
1592         /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1593         if (    (dh_tmp || dh_rsa || dh_dsa) && 
1594                 (rsa_enc || rsa_sign || dsa_sign))
1595                 mask|=SSL_kEDH;
1596         if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) &&
1597                 (rsa_enc || rsa_sign || dsa_sign))
1598                 emask|=SSL_kEDH;
1599 #endif
1600
1601         if (dh_tmp_export) 
1602                 emask|=SSL_kEDH;
1603
1604         if (dh_tmp)
1605                 mask|=SSL_kEDH;
1606
1607         if (dh_rsa) mask|=SSL_kDHr;
1608         if (dh_rsa_export) emask|=SSL_kDHr;
1609
1610         if (dh_dsa) mask|=SSL_kDHd;
1611         if (dh_dsa_export) emask|=SSL_kDHd;
1612
1613         if (rsa_enc || rsa_sign)
1614                 {
1615                 mask|=SSL_aRSA;
1616                 emask|=SSL_aRSA;
1617                 }
1618
1619         if (dsa_sign)
1620                 {
1621                 mask|=SSL_aDSS;
1622                 emask|=SSL_aDSS;
1623                 }
1624
1625         mask|=SSL_aNULL;
1626         emask|=SSL_aNULL;
1627
1628 #ifndef OPENSSL_NO_KRB5
1629         mask|=SSL_kKRB5|SSL_aKRB5;
1630         emask|=SSL_kKRB5|SSL_aKRB5;
1631 #endif
1632
1633         /* An ECC certificate may be usable for ECDH and/or
1634          * ECDSA cipher suites depending on the key usage extension.
1635          */
1636         if (have_ecc_cert)
1637                 {
1638                 /* This call populates extension flags (ex_flags) */
1639                 x = (c->pkeys[SSL_PKEY_ECC]).x509;
1640                 X509_check_purpose(x, -1, 0);
1641                 ecdh_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1642                     (x->ex_kusage & X509v3_KU_KEY_AGREEMENT) : 1;
1643                 ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1644                     (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) : 1;
1645                 ecc_pkey = X509_get_pubkey(x);
1646                 ecc_pkey_size = (ecc_pkey != NULL) ? 
1647                     EVP_PKEY_bits(ecc_pkey) : 0;
1648                 EVP_PKEY_free(ecc_pkey);
1649                 if ((x->sig_alg) && (x->sig_alg->algorithm))
1650                         signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1651 #ifndef OPENSSL_NO_ECDH
1652                 if (ecdh_ok)
1653                         {
1654                         if ((signature_nid == NID_md5WithRSAEncryption) ||
1655                             (signature_nid == NID_md4WithRSAEncryption) ||
1656                             (signature_nid == NID_md2WithRSAEncryption))
1657                                 {
1658                                 mask|=SSL_kECDH|SSL_aRSA;
1659                                 if (ecc_pkey_size <= 163)
1660                                         emask|=SSL_kECDH|SSL_aRSA;
1661                                 }
1662                         if (signature_nid == NID_ecdsa_with_SHA1)
1663                                 {
1664                                 mask|=SSL_kECDH|SSL_aECDSA;
1665                                 if (ecc_pkey_size <= 163)
1666                                         emask|=SSL_kECDH|SSL_aECDSA;
1667                                 }
1668                         }
1669 #endif
1670 #ifndef OPENSSL_NO_ECDSA
1671                 if (ecdsa_ok)
1672                         {
1673                         mask|=SSL_aECDSA;
1674                         emask|=SSL_aECDSA;
1675                         }
1676 #endif
1677                 }
1678
1679 #ifndef OPENSSL_NO_ECDH
1680         if (have_ecdh_tmp)
1681                 {
1682                 mask|=SSL_kECDHE;
1683                 emask|=SSL_kECDHE;
1684                 }
1685 #endif
1686         c->mask=mask;
1687         c->export_mask=emask;
1688         c->valid=1;
1689         }
1690
1691 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */
1692 #define ku_reject(x, usage) \
1693         (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
1694
1695 int check_srvr_ecc_cert_and_alg(X509 *x, SSL_CIPHER *cs)
1696         {
1697         unsigned long alg = cs->algorithms;
1698         EVP_PKEY *pkey = NULL;
1699         int keysize = 0;
1700         int signature_nid = 0;
1701
1702         if (SSL_C_IS_EXPORT(cs))
1703                 {
1704                 /* ECDH key length in export ciphers must be <= 163 bits */
1705                 pkey = X509_get_pubkey(x);
1706                 if (pkey == NULL) return 0;
1707                 keysize = EVP_PKEY_bits(pkey);
1708                 EVP_PKEY_free(pkey);
1709                 if (keysize > 163) return 0;
1710                 }
1711
1712         /* This call populates the ex_flags field correctly */
1713         X509_check_purpose(x, -1, 0);
1714         if ((x->sig_alg) && (x->sig_alg->algorithm))
1715                 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1716         if (alg & SSL_kECDH) 
1717                 {
1718                 /* key usage, if present, must allow key agreement */
1719                 if (ku_reject(x, X509v3_KU_KEY_AGREEMENT))
1720                         {
1721                         return 0;
1722                         }
1723                 if (alg & SSL_aECDSA) 
1724                         {
1725                         /* signature alg must be ECDSA */
1726                         if (signature_nid != NID_ecdsa_with_SHA1)
1727                                 {
1728                                 return 0;
1729                                 }
1730                         }
1731                 if (alg & SSL_aRSA)
1732                         {
1733                         /* signature alg must be RSA */
1734                         if ((signature_nid != NID_md5WithRSAEncryption) &&
1735                             (signature_nid != NID_md4WithRSAEncryption) &&
1736                             (signature_nid != NID_md2WithRSAEncryption))
1737                                 {
1738                                 return 0;
1739                                 }
1740                         }
1741                 } 
1742         else if (alg & SSL_aECDSA)
1743                 {
1744                 /* key usage, if present, must allow signing */
1745                 if (ku_reject(x, X509v3_KU_DIGITAL_SIGNATURE))
1746                         {
1747                         return 0;
1748                         }
1749                 }
1750
1751         return 1;  /* all checks are ok */
1752         }
1753
1754 /* THIS NEEDS CLEANING UP */
1755 X509 *ssl_get_server_send_cert(SSL *s)
1756         {
1757         unsigned long alg,mask,kalg;
1758         CERT *c;
1759         int i,is_export;
1760
1761         c=s->cert;
1762         ssl_set_cert_masks(c, s->s3->tmp.new_cipher);
1763         alg=s->s3->tmp.new_cipher->algorithms;
1764         is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
1765         mask=is_export?c->export_mask:c->mask;
1766         kalg=alg&(SSL_MKEY_MASK|SSL_AUTH_MASK);
1767
1768         if (kalg & SSL_kECDH)
1769                 {
1770                 /* we don't need to look at SSL_kECDHE 
1771                  * since no certificate is needed for
1772                  * anon ECDH and for authenticated
1773                  * ECDHE, the check for the auth 
1774                  * algorithm will set i correctly
1775                  * NOTE: For ECDH-RSA, we need an ECC
1776                  * not an RSA cert but for ECDHE-RSA
1777                  * we need an RSA cert. Placing the
1778                  * checks for SSL_kECDH before RSA
1779                  * checks ensures the correct cert is chosen.
1780                  */
1781                 i=SSL_PKEY_ECC;
1782                 }
1783         else if (kalg & SSL_aECDSA)
1784                 {
1785                 i=SSL_PKEY_ECC;
1786                 }
1787         else if (kalg & SSL_kDHr)
1788                 i=SSL_PKEY_DH_RSA;
1789         else if (kalg & SSL_kDHd)
1790                 i=SSL_PKEY_DH_DSA;
1791         else if (kalg & SSL_aDSS)
1792                 i=SSL_PKEY_DSA_SIGN;
1793         else if (kalg & SSL_aRSA)
1794                 {
1795                 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
1796                         i=SSL_PKEY_RSA_SIGN;
1797                 else
1798                         i=SSL_PKEY_RSA_ENC;
1799                 }
1800         else if (kalg & SSL_aKRB5)
1801                 {
1802                 /* VRS something else here? */
1803                 return(NULL);
1804                 }
1805         else /* if (kalg & SSL_aNULL) */
1806                 {
1807                 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,ERR_R_INTERNAL_ERROR);
1808                 return(NULL);
1809                 }
1810         if (c->pkeys[i].x509 == NULL) return(NULL);
1811
1812         return(c->pkeys[i].x509);
1813         }
1814
1815 EVP_PKEY *ssl_get_sign_pkey(SSL *s,SSL_CIPHER *cipher)
1816         {
1817         unsigned long alg;
1818         CERT *c;
1819
1820         alg=cipher->algorithms;
1821         c=s->cert;
1822
1823         if ((alg & SSL_aDSS) &&
1824                 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
1825                 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey);
1826         else if (alg & SSL_aRSA)
1827                 {
1828                 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
1829                         return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey);
1830                 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
1831                         return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey);
1832                 else
1833                         return(NULL);
1834                 }
1835         else if ((alg & SSL_aECDSA) &&
1836                  (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
1837                 return(c->pkeys[SSL_PKEY_ECC].privatekey);
1838         else /* if (alg & SSL_aNULL) */
1839                 {
1840                 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,ERR_R_INTERNAL_ERROR);
1841                 return(NULL);
1842                 }
1843         }
1844
1845 void ssl_update_cache(SSL *s,int mode)
1846         {
1847         int i;
1848
1849         /* If the session_id_length is 0, we are not supposed to cache it,
1850          * and it would be rather hard to do anyway :-) */
1851         if (s->session->session_id_length == 0) return;
1852
1853         i=s->ctx->session_cache_mode;
1854         if ((i & mode) && (!s->hit)
1855                 && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
1856                     || SSL_CTX_add_session(s->ctx,s->session))
1857                 && (s->ctx->new_session_cb != NULL))
1858                 {
1859                 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION);
1860                 if (!s->ctx->new_session_cb(s,s->session))
1861                         SSL_SESSION_free(s->session);
1862                 }
1863
1864         /* auto flush every 255 connections */
1865         if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) &&
1866                 ((i & mode) == mode))
1867                 {
1868                 if (  (((mode & SSL_SESS_CACHE_CLIENT)
1869                         ?s->ctx->stats.sess_connect_good
1870                         :s->ctx->stats.sess_accept_good) & 0xff) == 0xff)
1871                         {
1872                         SSL_CTX_flush_sessions(s->ctx,time(NULL));
1873                         }
1874                 }
1875         }
1876
1877 SSL_METHOD *SSL_get_ssl_method(SSL *s)
1878         {
1879         return(s->method);
1880         }
1881
1882 int SSL_set_ssl_method(SSL *s,SSL_METHOD *meth)
1883         {
1884         int conn= -1;
1885         int ret=1;
1886
1887         if (s->method != meth)
1888                 {
1889                 if (s->handshake_func != NULL)
1890                         conn=(s->handshake_func == s->method->ssl_connect);
1891
1892                 if (s->method->version == meth->version)
1893                         s->method=meth;
1894                 else
1895                         {
1896                         s->method->ssl_free(s);
1897                         s->method=meth;
1898                         ret=s->method->ssl_new(s);
1899                         }
1900
1901                 if (conn == 1)
1902                         s->handshake_func=meth->ssl_connect;
1903                 else if (conn == 0)
1904                         s->handshake_func=meth->ssl_accept;
1905                 }
1906         return(ret);
1907         }
1908
1909 int SSL_get_error(const SSL *s,int i)
1910         {
1911         int reason;
1912         unsigned long l;
1913         BIO *bio;
1914
1915         if (i > 0) return(SSL_ERROR_NONE);
1916
1917         /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
1918          * etc, where we do encode the error */
1919         if ((l=ERR_peek_error()) != 0)
1920                 {
1921                 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
1922                         return(SSL_ERROR_SYSCALL);
1923                 else
1924                         return(SSL_ERROR_SSL);
1925                 }
1926
1927         if ((i < 0) && SSL_want_read(s))
1928                 {
1929                 bio=SSL_get_rbio(s);
1930                 if (BIO_should_read(bio))
1931                         return(SSL_ERROR_WANT_READ);
1932                 else if (BIO_should_write(bio))
1933                         /* This one doesn't make too much sense ... We never try
1934                          * to write to the rbio, and an application program where
1935                          * rbio and wbio are separate couldn't even know what it
1936                          * should wait for.
1937                          * However if we ever set s->rwstate incorrectly
1938                          * (so that we have SSL_want_read(s) instead of
1939                          * SSL_want_write(s)) and rbio and wbio *are* the same,
1940                          * this test works around that bug; so it might be safer
1941                          * to keep it. */
1942                         return(SSL_ERROR_WANT_WRITE);
1943                 else if (BIO_should_io_special(bio))
1944                         {
1945                         reason=BIO_get_retry_reason(bio);
1946                         if (reason == BIO_RR_CONNECT)
1947                                 return(SSL_ERROR_WANT_CONNECT);
1948                         else if (reason == BIO_RR_ACCEPT)
1949                                 return(SSL_ERROR_WANT_ACCEPT);
1950                         else
1951                                 return(SSL_ERROR_SYSCALL); /* unknown */
1952                         }
1953                 }
1954
1955         if ((i < 0) && SSL_want_write(s))
1956                 {
1957                 bio=SSL_get_wbio(s);
1958                 if (BIO_should_write(bio))
1959                         return(SSL_ERROR_WANT_WRITE);
1960                 else if (BIO_should_read(bio))
1961                         /* See above (SSL_want_read(s) with BIO_should_write(bio)) */
1962                         return(SSL_ERROR_WANT_READ);
1963                 else if (BIO_should_io_special(bio))
1964                         {
1965                         reason=BIO_get_retry_reason(bio);
1966                         if (reason == BIO_RR_CONNECT)
1967                                 return(SSL_ERROR_WANT_CONNECT);
1968                         else if (reason == BIO_RR_ACCEPT)
1969                                 return(SSL_ERROR_WANT_ACCEPT);
1970                         else
1971                                 return(SSL_ERROR_SYSCALL);
1972                         }
1973                 }
1974         if ((i < 0) && SSL_want_x509_lookup(s))
1975                 {
1976                 return(SSL_ERROR_WANT_X509_LOOKUP);
1977                 }
1978
1979         if (i == 0)
1980                 {
1981                 if (s->version == SSL2_VERSION)
1982                         {
1983                         /* assume it is the socket being closed */
1984                         return(SSL_ERROR_ZERO_RETURN);
1985                         }
1986                 else
1987                         {
1988                         if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
1989                                 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
1990                                 return(SSL_ERROR_ZERO_RETURN);
1991                         }
1992                 }
1993         return(SSL_ERROR_SYSCALL);
1994         }
1995
1996 int SSL_do_handshake(SSL *s)
1997         {
1998         int ret=1;
1999
2000         if (s->handshake_func == NULL)
2001                 {
2002                 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET);
2003                 return(-1);
2004                 }
2005
2006         s->method->ssl_renegotiate_check(s);
2007
2008         if (SSL_in_init(s) || SSL_in_before(s))
2009                 {
2010                 ret=s->handshake_func(s);
2011                 }
2012         return(ret);
2013         }
2014
2015 /* For the next 2 functions, SSL_clear() sets shutdown and so
2016  * one of these calls will reset it */
2017 void SSL_set_accept_state(SSL *s)
2018         {
2019         s->server=1;
2020         s->shutdown=0;
2021         s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE;
2022         s->handshake_func=s->method->ssl_accept;
2023         /* clear the current cipher */
2024         ssl_clear_cipher_ctx(s);
2025         }
2026
2027 void SSL_set_connect_state(SSL *s)
2028         {
2029         s->server=0;
2030         s->shutdown=0;
2031         s->state=SSL_ST_CONNECT|SSL_ST_BEFORE;
2032         s->handshake_func=s->method->ssl_connect;
2033         /* clear the current cipher */
2034         ssl_clear_cipher_ctx(s);
2035         }
2036
2037 int ssl_undefined_function(SSL *s)
2038         {
2039         SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2040         return(0);
2041         }
2042
2043 int ssl_undefined_void_function(void)
2044         {
2045         SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2046         return(0);
2047         }
2048
2049 int ssl_undefined_const_function(const SSL *s)
2050         {
2051         SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2052         return(0);
2053         }
2054
2055 SSL_METHOD *ssl_bad_method(int ver)
2056         {
2057         SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2058         return(NULL);
2059         }
2060
2061 const char *SSL_get_version(const SSL *s)
2062         {
2063         if (s->version == TLS1_VERSION)
2064                 return("TLSv1");
2065         else if (s->version == SSL3_VERSION)
2066                 return("SSLv3");
2067         else if (s->version == SSL2_VERSION)
2068                 return("SSLv2");
2069         else
2070                 return("unknown");
2071         }
2072
2073 SSL *SSL_dup(SSL *s)
2074         {
2075         STACK_OF(X509_NAME) *sk;
2076         X509_NAME *xn;
2077         SSL *ret;
2078         int i;
2079                  
2080         if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL)
2081             return(NULL);
2082
2083         ret->version = s->version;
2084         ret->type = s->type;
2085         ret->method = s->method;
2086
2087         if (s->session != NULL)
2088                 {
2089                 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2090                 SSL_copy_session_id(ret,s);
2091                 }
2092         else
2093                 {
2094                 /* No session has been established yet, so we have to expect
2095                  * that s->cert or ret->cert will be changed later --
2096                  * they should not both point to the same object,
2097                  * and thus we can't use SSL_copy_session_id. */
2098
2099                 ret->method->ssl_free(ret);
2100                 ret->method = s->method;
2101                 ret->method->ssl_new(ret);
2102
2103                 if (s->cert != NULL)
2104                         {
2105                         if (ret->cert != NULL)
2106                                 {
2107                                 ssl_cert_free(ret->cert);
2108                                 }
2109                         ret->cert = ssl_cert_dup(s->cert);
2110                         if (ret->cert == NULL)
2111                                 goto err;
2112                         }
2113                                 
2114                 SSL_set_session_id_context(ret,
2115                         s->sid_ctx, s->sid_ctx_length);
2116                 }
2117
2118         ret->options=s->options;
2119         ret->mode=s->mode;
2120         SSL_set_max_cert_list(ret,SSL_get_max_cert_list(s));
2121         SSL_set_read_ahead(ret,SSL_get_read_ahead(s));
2122         ret->msg_callback = s->msg_callback;
2123         ret->msg_callback_arg = s->msg_callback_arg;
2124         SSL_set_verify(ret,SSL_get_verify_mode(s),
2125                 SSL_get_verify_callback(s));
2126         SSL_set_verify_depth(ret,SSL_get_verify_depth(s));
2127         ret->generate_session_id = s->generate_session_id;
2128
2129         SSL_set_info_callback(ret,SSL_get_info_callback(s));
2130         
2131         ret->debug=s->debug;
2132
2133         /* copy app data, a little dangerous perhaps */
2134         if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
2135                 goto err;
2136
2137         /* setup rbio, and wbio */
2138         if (s->rbio != NULL)
2139                 {
2140                 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio))
2141                         goto err;
2142                 }
2143         if (s->wbio != NULL)
2144                 {
2145                 if (s->wbio != s->rbio)
2146                         {
2147                         if (!BIO_dup_state(s->wbio,(char *)&ret->wbio))
2148                                 goto err;
2149                         }
2150                 else
2151                         ret->wbio=ret->rbio;
2152                 }
2153         ret->rwstate = s->rwstate;
2154         ret->in_handshake = s->in_handshake;
2155         ret->handshake_func = s->handshake_func;
2156         ret->server = s->server;
2157         ret->new_session = s->new_session;
2158         ret->quiet_shutdown = s->quiet_shutdown;
2159         ret->shutdown=s->shutdown;
2160         ret->state=s->state; /* SSL_dup does not really work at any state, though */
2161         ret->rstate=s->rstate;
2162         ret->init_num = 0; /* would have to copy ret->init_buf, ret->init_msg, ret->init_num, ret->init_off */
2163         ret->hit=s->hit;
2164
2165         X509_VERIFY_PARAM_inherit(ret->param, s->param);
2166
2167         /* dup the cipher_list and cipher_list_by_id stacks */
2168         if (s->cipher_list != NULL)
2169                 {
2170                 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
2171                         goto err;
2172                 }
2173         if (s->cipher_list_by_id != NULL)
2174                 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_id))
2175                         == NULL)
2176                         goto err;
2177
2178         /* Dup the client_CA list */
2179         if (s->client_CA != NULL)
2180                 {
2181                 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
2182                 ret->client_CA=sk;
2183                 for (i=0; i<sk_X509_NAME_num(sk); i++)
2184                         {
2185                         xn=sk_X509_NAME_value(sk,i);
2186                         if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL)
2187                                 {
2188                                 X509_NAME_free(xn);
2189                                 goto err;
2190                                 }
2191                         }
2192                 }
2193
2194         if (0)
2195                 {
2196 err:
2197                 if (ret != NULL) SSL_free(ret);
2198                 ret=NULL;
2199                 }
2200         return(ret);
2201         }
2202
2203 void ssl_clear_cipher_ctx(SSL *s)
2204         {
2205         if (s->enc_read_ctx != NULL)
2206                 {
2207                 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
2208                 OPENSSL_free(s->enc_read_ctx);
2209                 s->enc_read_ctx=NULL;
2210                 }
2211         if (s->enc_write_ctx != NULL)
2212                 {
2213                 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2214                 OPENSSL_free(s->enc_write_ctx);
2215                 s->enc_write_ctx=NULL;
2216                 }
2217         if (s->expand != NULL)
2218                 {
2219                 COMP_CTX_free(s->expand);
2220                 s->expand=NULL;
2221                 }
2222         if (s->compress != NULL)
2223                 {
2224                 COMP_CTX_free(s->compress);
2225                 s->compress=NULL;
2226                 }
2227         }
2228
2229 /* Fix this function so that it takes an optional type parameter */
2230 X509 *SSL_get_certificate(const SSL *s)
2231         {
2232         if (s->cert != NULL)
2233                 return(s->cert->key->x509);
2234         else
2235                 return(NULL);
2236         }
2237
2238 /* Fix this function so that it takes an optional type parameter */
2239 EVP_PKEY *SSL_get_privatekey(SSL *s)
2240         {
2241         if (s->cert != NULL)
2242                 return(s->cert->key->privatekey);
2243         else
2244                 return(NULL);
2245         }
2246
2247 SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
2248         {
2249         if ((s->session != NULL) && (s->session->cipher != NULL))
2250                 return(s->session->cipher);
2251         return(NULL);
2252         }
2253
2254 const COMP_METHOD *SSL_get_current_compression(SSL *s)
2255         {
2256         if (s->compress != NULL)
2257                 return(s->compress->meth);
2258         return(NULL);
2259         }
2260
2261 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
2262         {
2263         if (s->expand != NULL)
2264                 return(s->expand->meth);
2265         return(NULL);
2266         }
2267
2268 int ssl_init_wbio_buffer(SSL *s,int push)
2269         {
2270         BIO *bbio;
2271
2272         if (s->bbio == NULL)
2273                 {
2274                 bbio=BIO_new(BIO_f_buffer());
2275                 if (bbio == NULL) return(0);
2276                 s->bbio=bbio;
2277                 }
2278         else
2279                 {
2280                 bbio=s->bbio;
2281                 if (s->bbio == s->wbio)
2282                         s->wbio=BIO_pop(s->wbio);
2283                 }
2284         (void)BIO_reset(bbio);
2285 /*      if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2286         if (!BIO_set_read_buffer_size(bbio,1))
2287                 {
2288                 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB);
2289                 return(0);
2290                 }
2291         if (push)
2292                 {
2293                 if (s->wbio != bbio)
2294                         s->wbio=BIO_push(bbio,s->wbio);
2295                 }
2296         else
2297                 {
2298                 if (s->wbio == bbio)
2299                         s->wbio=BIO_pop(bbio);
2300                 }
2301         return(1);
2302         }
2303
2304 void ssl_free_wbio_buffer(SSL *s)
2305         {
2306         if (s->bbio == NULL) return;
2307
2308         if (s->bbio == s->wbio)
2309                 {
2310                 /* remove buffering */
2311                 s->wbio=BIO_pop(s->wbio);
2312 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids adding one more preprocessor symbol */
2313                 assert(s->wbio != NULL);
2314 #endif  
2315         }
2316         BIO_free(s->bbio);
2317         s->bbio=NULL;
2318         }
2319         
2320 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode)
2321         {
2322         ctx->quiet_shutdown=mode;
2323         }
2324
2325 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
2326         {
2327         return(ctx->quiet_shutdown);
2328         }
2329
2330 void SSL_set_quiet_shutdown(SSL *s,int mode)
2331         {
2332         s->quiet_shutdown=mode;
2333         }
2334
2335 int SSL_get_quiet_shutdown(const SSL *s)
2336         {
2337         return(s->quiet_shutdown);
2338         }
2339
2340 void SSL_set_shutdown(SSL *s,int mode)
2341         {
2342         s->shutdown=mode;
2343         }
2344
2345 int SSL_get_shutdown(const SSL *s)
2346         {
2347         return(s->shutdown);
2348         }
2349
2350 int SSL_version(const SSL *s)
2351         {
2352         return(s->version);
2353         }
2354
2355 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
2356         {
2357         return(ssl->ctx);
2358         }
2359
2360 #ifndef OPENSSL_NO_STDIO
2361 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
2362         {
2363         return(X509_STORE_set_default_paths(ctx->cert_store));
2364         }
2365
2366 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
2367                 const char *CApath)
2368         {
2369         return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
2370         }
2371 #endif
2372
2373 void SSL_set_info_callback(SSL *ssl,
2374                            void (*cb)(const SSL *ssl,int type,int val))
2375         {
2376         ssl->info_callback=cb;
2377         }
2378
2379 void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl,int type,int val)
2380         {
2381         return ssl->info_callback;
2382         }
2383
2384 int SSL_state(const SSL *ssl)
2385         {
2386         return(ssl->state);
2387         }
2388
2389 void SSL_set_verify_result(SSL *ssl,long arg)
2390         {
2391         ssl->verify_result=arg;
2392         }
2393
2394 long SSL_get_verify_result(const SSL *ssl)
2395         {
2396         return(ssl->verify_result);
2397         }
2398
2399 int SSL_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2400                          CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2401         {
2402         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp,
2403                                 new_func, dup_func, free_func);
2404         }
2405
2406 int SSL_set_ex_data(SSL *s,int idx,void *arg)
2407         {
2408         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2409         }
2410
2411 void *SSL_get_ex_data(const SSL *s,int idx)
2412         {
2413         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2414         }
2415
2416 int SSL_CTX_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2417                              CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2418         {
2419         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp,
2420                                 new_func, dup_func, free_func);
2421         }
2422
2423 int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg)
2424         {
2425         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2426         }
2427
2428 void *SSL_CTX_get_ex_data(const SSL_CTX *s,int idx)
2429         {
2430         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2431         }
2432
2433 int ssl_ok(SSL *s)
2434         {
2435         return(1);
2436         }
2437
2438 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
2439         {
2440         return(ctx->cert_store);
2441         }
2442
2443 void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store)
2444         {
2445         if (ctx->cert_store != NULL)
2446                 X509_STORE_free(ctx->cert_store);
2447         ctx->cert_store=store;
2448         }
2449
2450 int SSL_want(const SSL *s)
2451         {
2452         return(s->rwstate);
2453         }
2454
2455 /*!
2456  * \brief Set the callback for generating temporary RSA keys.
2457  * \param ctx the SSL context.
2458  * \param cb the callback
2459  */
2460
2461 #ifndef OPENSSL_NO_RSA
2462 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl,
2463                                                           int is_export,
2464                                                           int keylength))
2465     {
2466     SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2467     }
2468
2469 void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl,
2470                                                   int is_export,
2471                                                   int keylength))
2472     {
2473     SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2474     }
2475 #endif
2476
2477 #ifdef DOXYGEN
2478 /*!
2479  * \brief The RSA temporary key callback function.
2480  * \param ssl the SSL session.
2481  * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
2482  * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
2483  * of the required key in bits.
2484  * \return the temporary RSA key.
2485  * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
2486  */
2487
2488 RSA *cb(SSL *ssl,int is_export,int keylength)
2489     {}
2490 #endif
2491
2492 /*!
2493  * \brief Set the callback for generating temporary DH keys.
2494  * \param ctx the SSL context.
2495  * \param dh the callback
2496  */
2497
2498 #ifndef OPENSSL_NO_DH
2499 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int is_export,
2500                                                         int keylength))
2501         {
2502         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2503         }
2504
2505 void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int is_export,
2506                                                 int keylength))
2507         {
2508         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2509         }
2510 #endif
2511
2512 #ifndef OPENSSL_NO_ECDH
2513 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2514                                                         int keylength))
2515         {
2516         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2517         }
2518
2519 void SSL_set_tmp_ecdh_callback(SSL *ssl,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2520                                                 int keylength))
2521         {
2522         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2523         }
2524 #endif
2525
2526
2527 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))
2528         {
2529         SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2530         }
2531 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))
2532         {
2533         SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2534         }
2535
2536
2537
2538 #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
2539 #include "../crypto/bio/bss_file.c"
2540 #endif
2541
2542 IMPLEMENT_STACK_OF(SSL_CIPHER)
2543 IMPLEMENT_STACK_OF(SSL_COMP)