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