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