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