Add type-safe STACKs and SETs.
[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 #include <stdio.h>
62 #include "objects.h"
63 #include "lhash.h"
64 #include "ssl_locl.h"
65
66 char *SSL_version_str=OPENSSL_VERSION_TEXT;
67
68 static STACK *ssl_meth=NULL;
69 static STACK *ssl_ctx_meth=NULL;
70 static int ssl_meth_num=0;
71 static int ssl_ctx_meth_num=0;
72
73 SSL3_ENC_METHOD ssl3_undef_enc_method={
74         ssl_undefined_function,
75         ssl_undefined_function,
76         ssl_undefined_function,
77         ssl_undefined_function,
78         ssl_undefined_function,
79         ssl_undefined_function,
80         };
81
82 int SSL_clear(SSL *s)
83         {
84         int state;
85
86         if (s->method == NULL)
87                 {
88                 SSLerr(SSL_F_SSL_CLEAR,SSL_R_NO_METHOD_SPECIFIED);
89                 return(0);
90                 }
91
92         s->error=0;
93         s->hit=0;
94         s->shutdown=0;
95
96 #if 0
97         /* This is set if we are doing dynamic renegotiation so keep
98          * the old cipher.  It is sort of a SSL_clear_lite :-) */
99         if (s->new_session) return(1);
100 #endif
101
102         state=s->state; /* Keep to check if we throw away the session-id */
103         s->type=0;
104
105         s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT);
106
107         s->version=s->method->version;
108         s->client_version=s->version;
109         s->rwstate=SSL_NOTHING;
110         s->rstate=SSL_ST_READ_HEADER;
111         s->read_ahead=s->ctx->read_ahead;
112
113         if (s->init_buf != NULL)
114                 {
115                 BUF_MEM_free(s->init_buf);
116                 s->init_buf=NULL;
117                 }
118
119         ssl_clear_cipher_ctx(s);
120
121         if (ssl_clear_bad_session(s))
122                 {
123                 SSL_SESSION_free(s->session);
124                 s->session=NULL;
125                 }
126
127         s->first_packet=0;
128
129 #if 1
130         /* Check to see if we were changed into a different method, if
131          * so, revert back if we are not doing session-id reuse. */
132         if ((s->session == NULL) && (s->method != s->ctx->method))
133                 {
134                 s->method->ssl_free(s);
135                 s->method=s->ctx->method;
136                 if (!s->method->ssl_new(s))
137                         return(0);
138                 }
139         else
140 #endif
141                 s->method->ssl_clear(s);
142         return(1);
143         }
144
145 /** Used to change an SSL_CTXs default SSL method type */
146 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth)
147         {
148         STACK_OF(SSL_CIPHER) *sk;
149
150         ctx->method=meth;
151
152         sk=ssl_create_cipher_list(ctx->method,&(ctx->cipher_list),
153                 &(ctx->cipher_list_by_id),SSL_DEFAULT_CIPHER_LIST);
154         if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0))
155                 {
156                 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
157                 return(0);
158                 }
159         return(1);
160         }
161
162 SSL *SSL_new(SSL_CTX *ctx)
163         {
164         SSL *s;
165
166         if (ctx == NULL)
167                 {
168                 SSLerr(SSL_F_SSL_NEW,SSL_R_NULL_SSL_CTX);
169                 return(NULL);
170                 }
171         if (ctx->method == NULL)
172                 {
173                 SSLerr(SSL_F_SSL_NEW,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
174                 return(NULL);
175                 }
176
177         s=(SSL *)Malloc(sizeof(SSL));
178         if (s == NULL) goto err;
179         memset(s,0,sizeof(SSL));
180
181         if (ctx->default_cert != NULL)
182                 {
183                 CRYPTO_add(&ctx->default_cert->references,1,
184                            CRYPTO_LOCK_SSL_CERT);
185                 s->cert=ctx->default_cert;
186                 }
187         else
188                 s->cert=NULL;
189         s->verify_mode=ctx->verify_mode;
190         s->verify_callback=ctx->default_verify_callback;
191         CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
192         s->ctx=ctx;
193
194         s->verify_result=X509_V_OK;
195
196         s->method=ctx->method;
197
198         if (!s->method->ssl_new(s))
199                 {
200                 SSL_CTX_free(ctx);
201                 Free(s);
202                 goto err;
203                 }
204
205         s->quiet_shutdown=ctx->quiet_shutdown;
206         s->references=1;
207         s->server=(ctx->method->ssl_accept == ssl_undefined_function)?0:1;
208         s->options=ctx->options;
209         SSL_clear(s);
210
211         CRYPTO_new_ex_data(ssl_meth,(char *)s,&s->ex_data);
212
213         return(s);
214 err:
215         SSLerr(SSL_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
216         return(NULL);
217         }
218
219 int SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
220                                unsigned int sid_ctx_len)
221     {
222     if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH)
223         {
224         SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
225         return 0;
226         }
227     ssl->sid_ctx_length=sid_ctx_len;
228     memcpy(ssl->sid_ctx,sid_ctx,sid_ctx_len);
229
230     return 1;
231     }
232
233 void SSL_free(SSL *s)
234         {
235         int i;
236
237         if(s == NULL)
238             return;
239
240         i=CRYPTO_add(&s->references,-1,CRYPTO_LOCK_SSL);
241 #ifdef REF_PRINT
242         REF_PRINT("SSL",s);
243 #endif
244         if (i > 0) return;
245 #ifdef REF_CHECK
246         if (i < 0)
247                 {
248                 fprintf(stderr,"SSL_free, bad reference count\n");
249                 abort(); /* ok */
250                 }
251 #endif
252
253         CRYPTO_free_ex_data(ssl_meth,(char *)s,&s->ex_data);
254
255         if (s->bbio != NULL)
256                 {
257                 /* If the buffering BIO is in place, pop it off */
258                 if (s->bbio == s->wbio)
259                         {
260                         s->wbio=BIO_pop(s->wbio);
261                         }
262                 BIO_free(s->bbio);
263                 s->bbio=NULL;
264                 }
265         if (s->rbio != NULL)
266                 BIO_free_all(s->rbio);
267         if ((s->wbio != NULL) && (s->wbio != s->rbio))
268                 BIO_free_all(s->wbio);
269
270         if (s->init_buf != NULL) BUF_MEM_free(s->init_buf);
271
272         /* add extra stuff */
273         if (s->cipher_list != NULL) sk_SSL_CIPHER_free(s->cipher_list);
274         if (s->cipher_list_by_id != NULL) sk_SSL_CIPHER_free(s->cipher_list_by_id);
275
276         /* Make the next call work :-) */
277         if (s->session != NULL)
278                 {
279                 ssl_clear_bad_session(s);
280                 SSL_SESSION_free(s->session);
281                 }
282
283         ssl_clear_cipher_ctx(s);
284
285         if (s->cert != NULL) ssl_cert_free(s->cert);
286         /* Free up if allocated */
287
288         if (s->ctx) SSL_CTX_free(s->ctx);
289
290         if (s->client_CA != NULL)
291                 sk_X509_NAME_pop_free(s->client_CA,X509_NAME_free);
292
293         if (s->method != NULL) s->method->ssl_free(s);
294
295         Free((char *)s);
296         }
297
298 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
299         {
300         /* If the output buffering BIO is still in place, remove it
301          */
302         if (s->bbio != NULL)
303                 {
304                 if (s->wbio == s->bbio)
305                         {
306                         s->wbio=s->wbio->next_bio;
307                         s->bbio->next_bio=NULL;
308                         }
309                 }
310         if ((s->rbio != NULL) && (s->rbio != rbio))
311                 BIO_free_all(s->rbio);
312         if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
313                 BIO_free_all(s->wbio);
314         s->rbio=rbio;
315         s->wbio=wbio;
316         }
317
318 BIO *SSL_get_rbio(SSL *s)
319         { return(s->rbio); }
320
321 BIO *SSL_get_wbio(SSL *s)
322         { return(s->wbio); }
323
324 int SSL_get_fd(SSL *s)
325         {
326         int ret= -1;
327         BIO *b,*r;
328
329         b=SSL_get_rbio(s);
330         r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
331         if (r != NULL)
332                 BIO_get_fd(r,&ret);
333         return(ret);
334         }
335
336 #ifndef NO_SOCK
337 int SSL_set_fd(SSL *s,int fd)
338         {
339         int ret=0;
340         BIO *bio=NULL;
341
342         bio=BIO_new(BIO_s_socket());
343
344         if (bio == NULL)
345                 {
346                 SSLerr(SSL_F_SSL_SET_FD,ERR_R_BUF_LIB);
347                 goto err;
348                 }
349         BIO_set_fd(bio,fd,BIO_NOCLOSE);
350         SSL_set_bio(s,bio,bio);
351         ret=1;
352 err:
353         return(ret);
354         }
355
356 int SSL_set_wfd(SSL *s,int fd)
357         {
358         int ret=0;
359         BIO *bio=NULL;
360
361         if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
362                 || ((int)BIO_get_fd(s->rbio,NULL) != fd))
363                 {
364                 bio=BIO_new(BIO_s_socket());
365
366                 if (bio == NULL)
367                         { SSLerr(SSL_F_SSL_SET_WFD,ERR_R_BUF_LIB); goto err; }
368                 BIO_set_fd(bio,fd,BIO_NOCLOSE);
369                 SSL_set_bio(s,SSL_get_rbio(s),bio);
370                 }
371         else
372                 SSL_set_bio(s,SSL_get_rbio(s),SSL_get_rbio(s));
373         ret=1;
374 err:
375         return(ret);
376         }
377
378 int SSL_set_rfd(SSL *s,int fd)
379         {
380         int ret=0;
381         BIO *bio=NULL;
382
383         if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
384                 || ((int)BIO_get_fd(s->wbio,NULL) != fd))
385                 {
386                 bio=BIO_new(BIO_s_socket());
387
388                 if (bio == NULL)
389                         {
390                         SSLerr(SSL_F_SSL_SET_RFD,ERR_R_BUF_LIB);
391                         goto err;
392                         }
393                 BIO_set_fd(bio,fd,BIO_NOCLOSE);
394                 SSL_set_bio(s,bio,SSL_get_wbio(s));
395                 }
396         else
397                 SSL_set_bio(s,SSL_get_wbio(s),SSL_get_wbio(s));
398         ret=1;
399 err:
400         return(ret);
401         }
402 #endif
403
404 int SSL_get_verify_mode(SSL *s)
405         {
406         return(s->verify_mode);
407         }
408
409 int (*SSL_get_verify_callback(SSL *s))(int,X509_STORE_CTX *)
410         {
411         return(s->verify_callback);
412         }
413
414 int SSL_CTX_get_verify_mode(SSL_CTX *ctx)
415         {
416         return(ctx->verify_mode);
417         }
418
419 int (*SSL_CTX_get_verify_callback(SSL_CTX *ctx))(int,X509_STORE_CTX *)
420         {
421         return(ctx->default_verify_callback);
422         }
423
424 void SSL_set_verify(SSL *s,int mode,
425                     int (*callback)(int ok,X509_STORE_CTX *ctx))
426         {
427         s->verify_mode=mode;
428         if (callback != NULL)
429                 s->verify_callback=callback;
430         }
431
432 void SSL_set_read_ahead(SSL *s,int yes)
433         {
434         s->read_ahead=yes;
435         }
436
437 int SSL_get_read_ahead(SSL *s)
438         {
439         return(s->read_ahead);
440         }
441
442 int SSL_pending(SSL *s)
443         {
444         return(s->method->ssl_pending(s));
445         }
446
447 X509 *SSL_get_peer_certificate(SSL *s)
448         {
449         X509 *r;
450         
451         if ((s == NULL) || (s->session == NULL))
452                 r=NULL;
453         else
454                 r=s->session->peer;
455
456         if (r == NULL) return(r);
457
458         CRYPTO_add(&r->references,1,CRYPTO_LOCK_X509);
459
460         return(r);
461         }
462
463 STACK_OF(X509) *SSL_get_peer_cert_chain(SSL *s)
464         {
465         STACK_OF(X509) *r;
466         
467         if ((s == NULL) || (s->session == NULL) || (s->session->cert == NULL))
468                 r=NULL;
469         else
470                 r=s->session->cert->cert_chain;
471
472         return(r);
473         }
474
475 /* Now in theory, since the calling process own 't' it should be safe to
476  * modify.  We need to be able to read f without being hassled */
477 void SSL_copy_session_id(SSL *t,SSL *f)
478         {
479         CERT *tmp;
480
481         /* Do we need to to SSL locking? */
482         SSL_set_session(t,SSL_get_session(f));
483
484         /* what if we are setup as SSLv2 but want to talk SSLv3 or
485          * vice-versa */
486         if (t->method != f->method)
487                 {
488                 t->method->ssl_free(t); /* cleanup current */
489                 t->method=f->method;    /* change method */
490                 t->method->ssl_new(t);  /* setup new */
491                 }
492
493         tmp=t->cert;
494         if (f->cert != NULL)
495                 {
496                 CRYPTO_add(&f->cert->references,1,CRYPTO_LOCK_SSL_CERT);
497                 t->cert=f->cert;
498                 }
499         else
500                 t->cert=NULL;
501         if (tmp != NULL) ssl_cert_free(tmp);
502         SSL_set_session_id_context(t,f->sid_ctx,f->sid_ctx_length);
503         }
504
505 /* Fix this so it checks all the valid key/cert options */
506 int SSL_CTX_check_private_key(SSL_CTX *ctx)
507         {
508         if (    (ctx == NULL) ||
509                 (ctx->default_cert == NULL) ||
510                 (ctx->default_cert->key->x509 == NULL))
511                 {
512                 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
513                 return(0);
514                 }
515         if      (ctx->default_cert->key->privatekey == NULL)
516                 {
517                 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
518                 return(0);
519                 }
520         return(X509_check_private_key(ctx->default_cert->key->x509, ctx->default_cert->key->privatekey));
521         }
522
523 /* Fix this function so that it takes an optional type parameter */
524 int SSL_check_private_key(SSL *ssl)
525         {
526         if (ssl == NULL)
527                 {
528                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,ERR_R_PASSED_NULL_PARAMETER);
529                 return(0);
530                 }
531         if (ssl->cert == NULL)
532                 return(SSL_CTX_check_private_key(ssl->ctx));
533         if (ssl->cert->key->x509 == NULL)
534                 {
535                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
536                 return(0);
537                 }
538         if (ssl->cert->key->privatekey == NULL)
539                 {
540                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
541                 return(0);
542                 }
543         return(X509_check_private_key(ssl->cert->key->x509,
544                 ssl->cert->key->privatekey));
545         }
546
547 int SSL_accept(SSL *s)
548         {
549         return(s->method->ssl_accept(s));
550         }
551
552 int SSL_connect(SSL *s)
553         {
554         return(s->method->ssl_connect(s));
555         }
556
557 long SSL_get_default_timeout(SSL *s)
558         {
559         return(s->method->get_timeout());
560         }
561
562 int SSL_read(SSL *s,char *buf,int num)
563         {
564         if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
565                 {
566                 s->rwstate=SSL_NOTHING;
567                 return(0);
568                 }
569         return(s->method->ssl_read(s,buf,num));
570         }
571
572 int SSL_peek(SSL *s,char *buf,int num)
573         {
574         if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
575                 {
576                 return(0);
577                 }
578         return(s->method->ssl_peek(s,buf,num));
579         }
580
581 int SSL_write(SSL *s,const char *buf,int num)
582         {
583         if (s->shutdown & SSL_SENT_SHUTDOWN)
584                 {
585                 s->rwstate=SSL_NOTHING;
586                 SSLerr(SSL_F_SSL_WRITE,SSL_R_PROTOCOL_IS_SHUTDOWN);
587                 return(-1);
588                 }
589         return(s->method->ssl_write(s,buf,num));
590         }
591
592 int SSL_shutdown(SSL *s)
593         {
594         if ((s != NULL) && !SSL_in_init(s))
595                 return(s->method->ssl_shutdown(s));
596         else
597                 return(1);
598         }
599
600 int SSL_renegotiate(SSL *s)
601         {
602         s->new_session=1;
603         return(s->method->ssl_renegotiate(s));
604         }
605
606 long SSL_ctrl(SSL *s,int cmd,long larg,char *parg)
607         {
608         long l;
609
610         switch (cmd)
611                 {
612         case SSL_CTRL_GET_READ_AHEAD:
613                 return(s->read_ahead);
614         case SSL_CTRL_SET_READ_AHEAD:
615                 l=s->read_ahead;
616                 s->read_ahead=larg;
617                 return(l);
618         case SSL_CTRL_OPTIONS:
619                 return(s->options|=larg);
620         default:
621                 return(s->method->ssl_ctrl(s,cmd,larg,parg));
622                 }
623         return(0);
624         }
625
626 long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd,long larg,char *parg)
627         {
628         long l;
629
630         switch (cmd)
631                 {
632         case SSL_CTRL_GET_READ_AHEAD:
633                 return(ctx->read_ahead);
634         case SSL_CTRL_SET_READ_AHEAD:
635                 l=ctx->read_ahead;
636                 ctx->read_ahead=larg;
637                 return(l);
638
639         case SSL_CTRL_SET_SESS_CACHE_SIZE:
640                 l=ctx->session_cache_size;
641                 ctx->session_cache_size=larg;
642                 return(l);
643         case SSL_CTRL_GET_SESS_CACHE_SIZE:
644                 return(ctx->session_cache_size);
645         case SSL_CTRL_SET_SESS_CACHE_MODE:
646                 l=ctx->session_cache_mode;
647                 ctx->session_cache_mode=larg;
648                 return(l);
649         case SSL_CTRL_GET_SESS_CACHE_MODE:
650                 return(ctx->session_cache_mode);
651
652         case SSL_CTRL_SESS_NUMBER:
653                 return(ctx->sessions->num_items);
654         case SSL_CTRL_SESS_CONNECT:
655                 return(ctx->stats.sess_connect);
656         case SSL_CTRL_SESS_CONNECT_GOOD:
657                 return(ctx->stats.sess_connect_good);
658         case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
659                 return(ctx->stats.sess_connect_renegotiate);
660         case SSL_CTRL_SESS_ACCEPT:
661                 return(ctx->stats.sess_accept);
662         case SSL_CTRL_SESS_ACCEPT_GOOD:
663                 return(ctx->stats.sess_accept_good);
664         case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
665                 return(ctx->stats.sess_accept_renegotiate);
666         case SSL_CTRL_SESS_HIT:
667                 return(ctx->stats.sess_hit);
668         case SSL_CTRL_SESS_CB_HIT:
669                 return(ctx->stats.sess_cb_hit);
670         case SSL_CTRL_SESS_MISSES:
671                 return(ctx->stats.sess_miss);
672         case SSL_CTRL_SESS_TIMEOUTS:
673                 return(ctx->stats.sess_timeout);
674         case SSL_CTRL_SESS_CACHE_FULL:
675                 return(ctx->stats.sess_cache_full);
676         case SSL_CTRL_OPTIONS:
677                 return(ctx->options|=larg);
678         default:
679                 return(ctx->method->ssl_ctx_ctrl(ctx,cmd,larg,parg));
680                 }
681         return(0);
682         }
683
684 int ssl_cipher_id_cmp(SSL_CIPHER *a,SSL_CIPHER *b)
685         {
686         long l;
687
688         l=a->id-b->id;
689         if (l == 0L)
690                 return(0);
691         else
692                 return((l > 0)?1:-1);
693         }
694
695 int ssl_cipher_ptr_id_cmp(SSL_CIPHER **ap,SSL_CIPHER **bp)
696         {
697         long l;
698
699         l=(*ap)->id-(*bp)->id;
700         if (l == 0L)
701                 return(0);
702         else
703                 return((l > 0)?1:-1);
704         }
705
706 /** return a STACK of the ciphers available for the SSL and in order of
707  * preference */
708 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(SSL *s)
709         {
710         if ((s != NULL) && (s->cipher_list != NULL))
711                 {
712                 return(s->cipher_list);
713                 }
714         else if ((s->ctx != NULL) &&
715                 (s->ctx->cipher_list != NULL))
716                 {
717                 return(s->ctx->cipher_list);
718                 }
719         return(NULL);
720         }
721
722 /** return a STACK of the ciphers available for the SSL and in order of
723  * algorithm id */
724 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
725         {
726         if ((s != NULL) && (s->cipher_list_by_id != NULL))
727                 {
728                 return(s->cipher_list_by_id);
729                 }
730         else if ((s != NULL) && (s->ctx != NULL) &&
731                 (s->ctx->cipher_list_by_id != NULL))
732                 {
733                 return(s->ctx->cipher_list_by_id);
734                 }
735         return(NULL);
736         }
737
738 /** The old interface to get the same thing as SSL_get_ciphers() */
739 char *SSL_get_cipher_list(SSL *s,int n)
740         {
741         SSL_CIPHER *c;
742         STACK_OF(SSL_CIPHER) *sk;
743
744         if (s == NULL) return(NULL);
745         sk=SSL_get_ciphers(s);
746         if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
747                 return(NULL);
748         c=sk_SSL_CIPHER_value(sk,n);
749         if (c == NULL) return(NULL);
750         return(c->name);
751         }
752
753 /** specify the ciphers to be used by defaut by the SSL_CTX */
754 int SSL_CTX_set_cipher_list(SSL_CTX *ctx,char *str)
755         {
756         STACK_OF(SSL_CIPHER) *sk;
757         
758         sk=ssl_create_cipher_list(ctx->method,&ctx->cipher_list,
759                 &ctx->cipher_list_by_id,str);
760 /* XXXX */
761         return((sk == NULL)?0:1);
762         }
763
764 /** specify the ciphers to be used by the SSL */
765 int SSL_set_cipher_list(SSL *s,char *str)
766         {
767         STACK_OF(SSL_CIPHER) *sk;
768         
769         sk=ssl_create_cipher_list(s->ctx->method,&s->cipher_list,
770                 &s->cipher_list_by_id,str);
771 /* XXXX */
772         return((sk == NULL)?0:1);
773         }
774
775 /* works well for SSLv2, not so good for SSLv3 */
776 char *SSL_get_shared_ciphers(SSL *s,char *buf,int len)
777         {
778         char *p,*cp;
779         STACK_OF(SSL_CIPHER) *sk;
780         SSL_CIPHER *c;
781         int i;
782
783         if ((s->session == NULL) || (s->session->ciphers == NULL) ||
784                 (len < 2))
785                 return(NULL);
786
787         p=buf;
788         sk=s->session->ciphers;
789         for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
790                 {
791                 /* Decrement for either the ':' or a '\0' */
792                 len--;
793                 c=sk_SSL_CIPHER_value(sk,i);
794                 for (cp=c->name; *cp; )
795                         {
796                         if (len-- == 0)
797                                 {
798                                 *p='\0';
799                                 return(buf);
800                                 }
801                         else
802                                 *(p++)= *(cp++);
803                         }
804                 *(p++)=':';
805                 }
806         p[-1]='\0';
807         return(buf);
808         }
809
810 int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p)
811         {
812         int i,j=0;
813         SSL_CIPHER *c;
814         unsigned char *q;
815
816         if (sk == NULL) return(0);
817         q=p;
818
819         for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
820                 {
821                 c=sk_SSL_CIPHER_value(sk,i);
822                 j=ssl_put_cipher_by_char(s,c,p);
823                 p+=j;
824                 }
825         return(p-q);
826         }
827
828 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
829                                                STACK_OF(SSL_CIPHER) **skp)
830         {
831         SSL_CIPHER *c;
832         STACK_OF(SSL_CIPHER) *sk;
833         int i,n;
834
835         n=ssl_put_cipher_by_char(s,NULL,NULL);
836         if ((num%n) != 0)
837                 {
838                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
839                 return(NULL);
840                 }
841         if ((skp == NULL) || (*skp == NULL))
842                 sk=sk_SSL_CIPHER_new(NULL); /* change perhaps later */
843         else
844                 {
845                 sk= *skp;
846                 sk_SSL_CIPHER_zero(sk);
847                 }
848
849         for (i=0; i<num; i+=n)
850                 {
851                 c=ssl_get_cipher_by_char(s,p);
852                 p+=n;
853                 if (c != NULL)
854                         {
855                         if (!sk_SSL_CIPHER_push(sk,c))
856                                 {
857                                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,ERR_R_MALLOC_FAILURE);
858                                 goto err;
859                                 }
860                         }
861                 }
862
863         if (skp != NULL)
864                 *skp=sk;
865         return(sk);
866 err:
867         if ((skp == NULL) || (*skp == NULL))
868                 sk_SSL_CIPHER_free(sk);
869         return(NULL);
870         }
871
872 unsigned long SSL_SESSION_hash(SSL_SESSION *a)
873         {
874         unsigned long l;
875
876         l=(unsigned long)
877                 ((unsigned int) a->session_id[0]     )|
878                 ((unsigned int) a->session_id[1]<< 8L)|
879                 ((unsigned long)a->session_id[2]<<16L)|
880                 ((unsigned long)a->session_id[3]<<24L);
881         return(l);
882         }
883
884 int SSL_SESSION_cmp(SSL_SESSION *a,SSL_SESSION *b)
885         {
886         if (a->ssl_version != b->ssl_version)
887                 return(1);
888         if (a->session_id_length != b->session_id_length)
889                 return(1);
890         return(memcmp(a->session_id,b->session_id,a->session_id_length));
891         }
892
893 SSL_CTX *SSL_CTX_new(SSL_METHOD *meth)
894         {
895         SSL_CTX *ret=NULL;
896         
897         if (meth == NULL)
898                 {
899                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_NULL_SSL_METHOD_PASSED);
900                 return(NULL);
901                 }
902
903         if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
904                 {
905                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
906                 goto err;
907                 }
908         ret=(SSL_CTX *)Malloc(sizeof(SSL_CTX));
909         if (ret == NULL)
910                 goto err;
911
912         memset(ret,0,sizeof(SSL_CTX));
913
914         ret->method=meth;
915
916         ret->cert_store=NULL;
917         ret->session_cache_mode=SSL_SESS_CACHE_SERVER;
918         ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
919         ret->session_cache_head=NULL;
920         ret->session_cache_tail=NULL;
921
922         /* We take the system default */
923         ret->session_timeout=meth->get_timeout();
924
925         ret->new_session_cb=NULL;
926         ret->remove_session_cb=NULL;
927         ret->get_session_cb=NULL;
928
929         memset((char *)&ret->stats,0,sizeof(ret->stats));
930
931         ret->references=1;
932         ret->quiet_shutdown=0;
933
934 /*      ret->cipher=NULL;*/
935 /*      ret->s2->challenge=NULL;
936         ret->master_key=NULL;
937         ret->key_arg=NULL;
938         ret->s2->conn_id=NULL; */
939
940         ret->info_callback=NULL;
941
942         ret->app_verify_callback=NULL;
943         ret->app_verify_arg=NULL;
944
945         ret->read_ahead=0;
946         ret->verify_mode=SSL_VERIFY_NONE;
947         ret->default_verify_callback=NULL;
948         if ((ret->default_cert=ssl_cert_new()) == NULL)
949                 goto err;
950
951         ret->default_passwd_callback=NULL;
952         ret->client_cert_cb=NULL;
953
954         ret->sessions=lh_new(SSL_SESSION_hash,SSL_SESSION_cmp);
955         if (ret->sessions == NULL) goto err;
956         ret->cert_store=X509_STORE_new();
957         if (ret->cert_store == NULL) goto err;
958
959         ssl_create_cipher_list(ret->method,
960                 &ret->cipher_list,&ret->cipher_list_by_id,
961                 SSL_DEFAULT_CIPHER_LIST);
962         if (ret->cipher_list == NULL
963             || sk_SSL_CIPHER_num(ret->cipher_list) <= 0)
964                 {
965                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS);
966                 goto err2;
967                 }
968
969         if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL)
970                 {
971                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES);
972                 goto err2;
973                 }
974         if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL)
975                 {
976                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
977                 goto err2;
978                 }
979         if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL)
980                 {
981                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
982                 goto err2;
983                 }
984
985         if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
986                 goto err;
987
988         CRYPTO_new_ex_data(ssl_ctx_meth,(char *)ret,&ret->ex_data);
989
990         ret->extra_certs=NULL;
991         ret->comp_methods=SSL_COMP_get_compression_methods();
992
993         return(ret);
994 err:
995         SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);
996 err2:
997         if (ret != NULL) SSL_CTX_free(ret);
998         return(NULL);
999         }
1000
1001 static void SSL_COMP_free(SSL_COMP *comp)
1002     { Free(comp); }
1003
1004 void SSL_CTX_free(SSL_CTX *a)
1005         {
1006         int i;
1007
1008         if (a == NULL) return;
1009
1010         i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX);
1011 #ifdef REF_PRINT
1012         REF_PRINT("SSL_CTX",a);
1013 #endif
1014         if (i > 0) return;
1015 #ifdef REF_CHECK
1016         if (i < 0)
1017                 {
1018                 fprintf(stderr,"SSL_CTX_free, bad reference count\n");
1019                 abort(); /* ok */
1020                 }
1021 #endif
1022         CRYPTO_free_ex_data(ssl_ctx_meth,(char *)a,&a->ex_data);
1023
1024         if (a->sessions != NULL)
1025                 {
1026                 SSL_CTX_flush_sessions(a,0);
1027                 lh_free(a->sessions);
1028                 }
1029         if (a->cert_store != NULL)
1030                 X509_STORE_free(a->cert_store);
1031         if (a->cipher_list != NULL)
1032                 sk_SSL_CIPHER_free(a->cipher_list);
1033         if (a->cipher_list_by_id != NULL)
1034                 sk_SSL_CIPHER_free(a->cipher_list_by_id);
1035         if (a->default_cert != NULL)
1036                 ssl_cert_free(a->default_cert);
1037         if (a->client_CA != NULL)
1038                 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
1039         if (a->extra_certs != NULL)
1040                 sk_X509_pop_free(a->extra_certs,X509_free);
1041         if (a->comp_methods != NULL)
1042                 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free);
1043         Free((char *)a);
1044         }
1045
1046 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx,int (*cb)())
1047         {
1048         ctx->default_passwd_callback=cb;
1049         }
1050
1051 void SSL_CTX_set_cert_verify_cb(SSL_CTX *ctx,int (*cb)(),char *arg)
1052         {
1053         ctx->app_verify_callback=cb;
1054         ctx->app_verify_arg=arg;
1055         }
1056
1057 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
1058         {
1059         ctx->verify_mode=mode;
1060         ctx->default_verify_callback=cb;
1061         /* This needs cleaning up EAY EAY EAY */
1062         X509_STORE_set_verify_cb_func(ctx->cert_store,cb);
1063         }
1064
1065 /* Need default_cert to check for callbacks, for now (see comment in CERT
1066    strucure)
1067 */
1068 void ssl_set_cert_masks(CERT *c,CERT *default_cert,SSL_CIPHER *cipher)
1069         {
1070         CERT_PKEY *cpk;
1071         int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign;
1072         int rsa_enc_export,dh_rsa_export,dh_dsa_export;
1073         int rsa_tmp_export,dh_tmp_export,kl;
1074         unsigned long mask,emask;
1075
1076         if (c == NULL) return;
1077
1078         kl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1079
1080 #ifndef NO_RSA
1081         rsa_tmp=(c->rsa_tmp != NULL || default_cert->rsa_tmp_cb != NULL);
1082         rsa_tmp_export=(default_cert->rsa_tmp_cb != NULL ||
1083                 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl));
1084 #else
1085         rsa_tmp=rsa_tmp_export=0;
1086 #endif
1087 #ifndef NO_DH
1088         dh_tmp=(c->dh_tmp != NULL || default_cert->dh_tmp_cb != NULL);
1089         dh_tmp_export=(default_cert->dh_tmp_cb != NULL ||
1090                 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl));
1091 #else
1092         dh_tmp=dh_tmp_export=0;
1093 #endif
1094
1095         cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]);
1096         rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
1097         rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1098         cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]);
1099         rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1100         cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]);
1101         dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1102         cpk= &(c->pkeys[SSL_PKEY_DH_RSA]);
1103         dh_rsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1104         dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1105         cpk= &(c->pkeys[SSL_PKEY_DH_DSA]);
1106 /* FIX THIS EAY EAY EAY */
1107         dh_dsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1108         dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1109
1110         mask=0;
1111         emask=0;
1112
1113 #ifdef CIPHER_DEBUG
1114         printf("rt=%d rte=%d dht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1115                 rsa_tmp,rsa_tmp_export,dh_tmp,
1116                 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
1117 #endif
1118
1119         if (rsa_enc || (rsa_tmp && rsa_sign))
1120                 mask|=SSL_kRSA;
1121         if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
1122                 emask|=SSL_kRSA;
1123
1124 #if 0
1125         /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1126         if (    (dh_tmp || dh_rsa || dh_dsa) && 
1127                 (rsa_enc || rsa_sign || dsa_sign))
1128                 mask|=SSL_kEDH;
1129         if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) &&
1130                 (rsa_enc || rsa_sign || dsa_sign))
1131                 emask|=SSL_kEDH;
1132 #endif
1133
1134         if (dh_tmp_export) 
1135                 emask|=SSL_kEDH;
1136
1137         if (dh_tmp)
1138                 mask|=SSL_kEDH;
1139
1140         if (dh_rsa) mask|=SSL_kDHr;
1141         if (dh_rsa_export) emask|=SSL_kDHr;
1142
1143         if (dh_dsa) mask|=SSL_kDHd;
1144         if (dh_dsa_export) emask|=SSL_kDHd;
1145
1146         if (rsa_enc || rsa_sign)
1147                 {
1148                 mask|=SSL_aRSA;
1149                 emask|=SSL_aRSA;
1150                 }
1151
1152         if (dsa_sign)
1153                 {
1154                 mask|=SSL_aDSS;
1155                 emask|=SSL_aDSS;
1156                 }
1157
1158 #ifdef SSL_ALLOW_ADH
1159         mask|=SSL_aNULL;
1160         emask|=SSL_aNULL;
1161 #endif
1162
1163         c->mask=mask;
1164         c->export_mask=emask;
1165         c->valid=1;
1166         }
1167
1168 /* THIS NEEDS CLEANING UP */
1169 X509 *ssl_get_server_send_cert(SSL *s)
1170         {
1171         unsigned long alg,mask,kalg;
1172         CERT *c;
1173         int i,export;
1174
1175         c=s->cert;
1176         ssl_set_cert_masks(c,s->ctx->default_cert,s->s3->tmp.new_cipher);
1177         alg=s->s3->tmp.new_cipher->algorithms;
1178         export=SSL_IS_EXPORT(alg);
1179         mask=export?c->export_mask:c->mask;
1180         kalg=alg&(SSL_MKEY_MASK|SSL_AUTH_MASK);
1181
1182         if      (kalg & SSL_kDHr)
1183                 i=SSL_PKEY_DH_RSA;
1184         else if (kalg & SSL_kDHd)
1185                 i=SSL_PKEY_DH_DSA;
1186         else if (kalg & SSL_aDSS)
1187                 i=SSL_PKEY_DSA_SIGN;
1188         else if (kalg & SSL_aRSA)
1189                 {
1190                 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
1191                         i=SSL_PKEY_RSA_SIGN;
1192                 else
1193                         i=SSL_PKEY_RSA_ENC;
1194                 }
1195         else /* if (kalg & SSL_aNULL) */
1196                 {
1197                 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,SSL_R_INTERNAL_ERROR);
1198                 return(NULL);
1199                 }
1200         if (c->pkeys[i].x509 == NULL) return(NULL);
1201         return(c->pkeys[i].x509);
1202         }
1203
1204 EVP_PKEY *ssl_get_sign_pkey(SSL *s,SSL_CIPHER *cipher)
1205         {
1206         unsigned long alg;
1207         CERT *c;
1208
1209         alg=cipher->algorithms;
1210         c=s->cert;
1211
1212         if ((alg & SSL_aDSS) &&
1213                 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
1214                 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey);
1215         else if (alg & SSL_aRSA)
1216                 {
1217                 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
1218                         return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey);
1219                 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
1220                         return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey);
1221                 else
1222                         return(NULL);
1223                 }
1224         else /* if (alg & SSL_aNULL) */
1225                 {
1226                 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,SSL_R_INTERNAL_ERROR);
1227                 return(NULL);
1228                 }
1229         }
1230
1231 void ssl_update_cache(SSL *s,int mode)
1232         {
1233         int i;
1234
1235         /* If the session_id_length is 0, we are not supposed to cache it,
1236          * and it would be rather hard to do anyway :-) */
1237         if (s->session->session_id_length == 0) return;
1238
1239         if ((s->ctx->session_cache_mode & mode)
1240                 && (!s->hit)
1241                 && SSL_CTX_add_session(s->ctx,s->session)
1242                 && (s->ctx->new_session_cb != NULL))
1243                 {
1244                 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION);
1245                 if (!s->ctx->new_session_cb(s,s->session))
1246                         SSL_SESSION_free(s->session);
1247                 }
1248
1249         /* auto flush every 255 connections */
1250         i=s->ctx->session_cache_mode;
1251         if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) &&
1252                 ((i & mode) == mode))
1253                 {
1254                 if (  (((mode & SSL_SESS_CACHE_CLIENT)
1255                         ?s->ctx->stats.sess_connect_good
1256                         :s->ctx->stats.sess_accept_good) & 0xff) == 0xff)
1257                         {
1258                         SSL_CTX_flush_sessions(s->ctx,time(NULL));
1259                         }
1260                 }
1261         }
1262
1263 SSL_METHOD *SSL_get_ssl_method(SSL *s)
1264         {
1265         return(s->method);
1266         }
1267
1268 int SSL_set_ssl_method(SSL *s,SSL_METHOD *meth)
1269         {
1270         int conn= -1;
1271         int ret=1;
1272
1273         if (s->method != meth)
1274                 {
1275                 if (s->handshake_func != NULL)
1276                         conn=(s->handshake_func == s->method->ssl_connect);
1277
1278                 if (s->method->version == meth->version)
1279                         s->method=meth;
1280                 else
1281                         {
1282                         s->method->ssl_free(s);
1283                         s->method=meth;
1284                         ret=s->method->ssl_new(s);
1285                         }
1286
1287                 if (conn == 1)
1288                         s->handshake_func=meth->ssl_connect;
1289                 else if (conn == 0)
1290                         s->handshake_func=meth->ssl_accept;
1291                 }
1292         return(ret);
1293         }
1294
1295 int SSL_get_error(SSL *s,int i)
1296         {
1297         int reason;
1298         unsigned long l;
1299         BIO *bio;
1300
1301         if (i > 0) return(SSL_ERROR_NONE);
1302
1303         /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
1304          * etc, where we do encode the error */
1305         if ((l=ERR_peek_error()) != 0)
1306                 {
1307                 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
1308                         return(SSL_ERROR_SYSCALL);
1309                 else
1310                         return(SSL_ERROR_SSL);
1311                 }
1312
1313         if ((i < 0) && SSL_want_read(s))
1314                 {
1315                 bio=SSL_get_rbio(s);
1316                 if (BIO_should_read(bio))
1317                         return(SSL_ERROR_WANT_READ);
1318                 else if (BIO_should_write(bio))
1319                         return(SSL_ERROR_WANT_WRITE);
1320                 else if (BIO_should_io_special(bio))
1321                         {
1322                         reason=BIO_get_retry_reason(bio);
1323                         if (reason == BIO_RR_CONNECT)
1324                                 return(SSL_ERROR_WANT_CONNECT);
1325                         else
1326                                 return(SSL_ERROR_SYSCALL); /* unknown */
1327                         }
1328                 }
1329
1330         if ((i < 0) && SSL_want_write(s))
1331                 {
1332                 bio=SSL_get_wbio(s);
1333                 if (BIO_should_write(bio))
1334                         return(SSL_ERROR_WANT_WRITE);
1335                 else if (BIO_should_read(bio))
1336                         return(SSL_ERROR_WANT_READ);
1337                 else if (BIO_should_io_special(bio))
1338                         {
1339                         reason=BIO_get_retry_reason(bio);
1340                         if (reason == BIO_RR_CONNECT)
1341                                 return(SSL_ERROR_WANT_CONNECT);
1342                         else
1343                                 return(SSL_ERROR_SYSCALL);
1344                         }
1345                 }
1346         if ((i < 0) && SSL_want_x509_lookup(s))
1347                 {
1348                 return(SSL_ERROR_WANT_X509_LOOKUP);
1349                 }
1350
1351         if (i == 0)
1352                 {
1353                 if (s->version == SSL2_VERSION)
1354                         {
1355                         /* assume it is the socket being closed */
1356                         return(SSL_ERROR_ZERO_RETURN);
1357                         }
1358                 else
1359                         {
1360                         if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
1361                                 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
1362                                 return(SSL_ERROR_ZERO_RETURN);
1363                         }
1364                 }
1365         return(SSL_ERROR_SYSCALL);
1366         }
1367
1368 int SSL_do_handshake(SSL *s)
1369         {
1370         int ret=1;
1371
1372         if (s->handshake_func == NULL)
1373                 {
1374                 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET);
1375                 return(-1);
1376                 }
1377
1378         s->method->ssl_renegotiate_check(s);
1379
1380         if (SSL_in_init(s) || SSL_in_before(s))
1381                 {
1382                 ret=s->handshake_func(s);
1383                 }
1384         return(ret);
1385         }
1386
1387 /* For the next 2 functions, SSL_clear() sets shutdown and so
1388  * one of these calls will reset it */
1389 void SSL_set_accept_state(SSL *s)
1390         {
1391         s->server=1;
1392         s->shutdown=0;
1393         s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE;
1394         s->handshake_func=s->method->ssl_accept;
1395         /* clear the current cipher */
1396         ssl_clear_cipher_ctx(s);
1397         }
1398
1399 void SSL_set_connect_state(SSL *s)
1400         {
1401         s->server=0;
1402         s->shutdown=0;
1403         s->state=SSL_ST_CONNECT|SSL_ST_BEFORE;
1404         s->handshake_func=s->method->ssl_connect;
1405         /* clear the current cipher */
1406         ssl_clear_cipher_ctx(s);
1407         }
1408
1409 int ssl_undefined_function(SSL *s)
1410         {
1411         SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1412         return(0);
1413         }
1414
1415 SSL_METHOD *ssl_bad_method(int ver)
1416         {
1417         SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1418         return(NULL);
1419         }
1420
1421 char *SSL_get_version(SSL *s)
1422         {
1423         if (s->version == TLS1_VERSION)
1424                 return("TLSv1");
1425         else if (s->version == SSL3_VERSION)
1426                 return("SSLv3");
1427         else if (s->version == SSL2_VERSION)
1428                 return("SSLv2");
1429         else
1430                 return("unknown");
1431         }
1432
1433 SSL *SSL_dup(SSL *s)
1434         {
1435         STACK_OF(X509_NAME) *sk;
1436         X509_NAME *xn;
1437         SSL *ret;
1438         int i;
1439                  
1440         if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL)
1441             return(NULL);
1442                           
1443         /* This copies version, session-id, SSL_METHOD and 'cert' */
1444         SSL_copy_session_id(ret,s);
1445
1446         SSL_set_read_ahead(ret,SSL_get_read_ahead(s));
1447         SSL_set_verify(ret,SSL_get_verify_mode(s),
1448                 SSL_get_verify_callback(s));
1449
1450         SSL_set_info_callback(ret,SSL_get_info_callback(s));
1451         
1452         ret->debug=s->debug;
1453         ret->options=s->options;
1454
1455         /* copy app data, a little dangerous perhaps */
1456         if (!CRYPTO_dup_ex_data(ssl_meth,&ret->ex_data,&s->ex_data))
1457                 goto err;
1458
1459         /* setup rbio, and wbio */
1460         if (s->rbio != NULL)
1461                 {
1462                 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio))
1463                         goto err;
1464                 }
1465         if (s->wbio != NULL)
1466                 {
1467                 if (s->wbio != s->rbio)
1468                         {
1469                         if (!BIO_dup_state(s->wbio,(char *)&ret->wbio))
1470                                 goto err;
1471                         }
1472                 else
1473                         ret->wbio=ret->rbio;
1474                 }
1475
1476         /* dup the cipher_list and cipher_list_by_id stacks */
1477         if (s->cipher_list != NULL)
1478                 {
1479                 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
1480                         goto err;
1481                 }
1482         if (s->cipher_list_by_id != NULL)
1483                 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_id))
1484                         == NULL)
1485                         goto err;
1486
1487         /* Dup the client_CA list */
1488         if (s->client_CA != NULL)
1489                 {
1490                 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
1491                 ret->client_CA=sk;
1492                 for (i=0; i<sk_X509_NAME_num(sk); i++)
1493                         {
1494                         xn=sk_X509_NAME_value(sk,i);
1495                         if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL)
1496                                 {
1497                                 X509_NAME_free(xn);
1498                                 goto err;
1499                                 }
1500                         }
1501                 }
1502
1503         ret->shutdown=s->shutdown;
1504         ret->state=s->state;
1505         ret->handshake_func=s->handshake_func;
1506         ret->server=s->server;
1507
1508         if (0)
1509                 {
1510 err:
1511                 if (ret != NULL) SSL_free(ret);
1512                 ret=NULL;
1513                 }
1514         return(ret);
1515         }
1516
1517 void ssl_clear_cipher_ctx(SSL *s)
1518         {
1519         if (s->enc_read_ctx != NULL)
1520                 {
1521                 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
1522                 Free(s->enc_read_ctx);
1523                 s->enc_read_ctx=NULL;
1524                 }
1525         if (s->enc_write_ctx != NULL)
1526                 {
1527                 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
1528                 Free(s->enc_write_ctx);
1529                 s->enc_write_ctx=NULL;
1530                 }
1531         if (s->expand != NULL)
1532                 {
1533                 COMP_CTX_free(s->expand);
1534                 s->expand=NULL;
1535                 }
1536         if (s->compress != NULL)
1537                 {
1538                 COMP_CTX_free(s->compress);
1539                 s->compress=NULL;
1540                 }
1541         }
1542
1543 /* Fix this function so that it takes an optional type parameter */
1544 X509 *SSL_get_certificate(SSL *s)
1545         {
1546         if (s->cert != NULL)
1547                 return(s->cert->key->x509);
1548         else
1549                 return(NULL);
1550         }
1551
1552 /* Fix this function so that it takes an optional type parameter */
1553 EVP_PKEY *SSL_get_privatekey(SSL *s)
1554         {
1555         if (s->cert != NULL)
1556                 return(s->cert->key->privatekey);
1557         else
1558                 return(NULL);
1559         }
1560
1561 SSL_CIPHER *SSL_get_current_cipher(SSL *s)
1562         {
1563         if ((s->session != NULL) && (s->session->cipher != NULL))
1564                 return(s->session->cipher);
1565         return(NULL);
1566         }
1567
1568 int ssl_init_wbio_buffer(SSL *s,int push)
1569         {
1570         BIO *bbio;
1571
1572         if (s->bbio == NULL)
1573                 {
1574                 bbio=BIO_new(BIO_f_buffer());
1575                 if (bbio == NULL) return(0);
1576                 s->bbio=bbio;
1577                 }
1578         else
1579                 {
1580                 bbio=s->bbio;
1581                 if (s->bbio == s->wbio)
1582                         s->wbio=BIO_pop(s->wbio);
1583                 }
1584         BIO_reset(bbio);
1585 /*      if (!BIO_set_write_buffer_size(bbio,16*1024)) */
1586         if (!BIO_set_read_buffer_size(bbio,1))
1587                 {
1588                 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB);
1589                 return(0);
1590                 }
1591         if (push)
1592                 {
1593                 if (s->wbio != bbio)
1594                         s->wbio=BIO_push(bbio,s->wbio);
1595                 }
1596         else
1597                 {
1598                 if (s->wbio == bbio)
1599                         s->wbio=BIO_pop(bbio);
1600                 }
1601         return(1);
1602         }
1603
1604 void ssl_free_wbio_buffer(SSL *s)
1605         {
1606         BIO *under;
1607
1608         if (s->bbio == NULL) return;
1609
1610         if (s->bbio == s->wbio)
1611                 {
1612                 /* remove buffering */
1613                 under=BIO_pop(s->wbio);
1614                 if (under != NULL)
1615                         s->wbio=under;
1616                 else
1617                         abort(); /* ok */
1618                 }
1619         BIO_free(s->bbio);
1620         s->bbio=NULL;
1621         }
1622         
1623 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode)
1624         {
1625         ctx->quiet_shutdown=mode;
1626         }
1627
1628 int SSL_CTX_get_quiet_shutdown(SSL_CTX *ctx)
1629         {
1630         return(ctx->quiet_shutdown);
1631         }
1632
1633 void SSL_set_quiet_shutdown(SSL *s,int mode)
1634         {
1635         s->quiet_shutdown=mode;
1636         }
1637
1638 int SSL_get_quiet_shutdown(SSL *s)
1639         {
1640         return(s->quiet_shutdown);
1641         }
1642
1643 void SSL_set_shutdown(SSL *s,int mode)
1644         {
1645         s->shutdown=mode;
1646         }
1647
1648 int SSL_get_shutdown(SSL *s)
1649         {
1650         return(s->shutdown);
1651         }
1652
1653 int SSL_version(SSL *s)
1654         {
1655         return(s->version);
1656         }
1657
1658 SSL_CTX *SSL_get_SSL_CTX(SSL *ssl)
1659         {
1660         return(ssl->ctx);
1661         }
1662
1663 #ifndef NO_STDIO
1664 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
1665         {
1666         return(X509_STORE_set_default_paths(ctx->cert_store));
1667         }
1668
1669 int SSL_CTX_load_verify_locations(SSL_CTX *ctx,char *CAfile,char *CApath)
1670         {
1671         return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
1672         }
1673 #endif
1674
1675 void SSL_set_info_callback(SSL *ssl,void (*cb)())
1676         {
1677         ssl->info_callback=cb;
1678         }
1679
1680 void (*SSL_get_info_callback(SSL *ssl))()
1681         {
1682         return((void (*)())ssl->info_callback);
1683         }
1684
1685 int SSL_state(SSL *ssl)
1686         {
1687         return(ssl->state);
1688         }
1689
1690 void SSL_set_verify_result(SSL *ssl,long arg)
1691         {
1692         ssl->verify_result=arg;
1693         }
1694
1695 long SSL_get_verify_result(SSL *ssl)
1696         {
1697         return(ssl->verify_result);
1698         }
1699
1700 int SSL_get_ex_new_index(long argl,char *argp,int (*new_func)(),
1701                          int (*dup_func)(),void (*free_func)())
1702         {
1703         ssl_meth_num++;
1704         return(CRYPTO_get_ex_new_index(ssl_meth_num-1,
1705                 &ssl_meth,argl,argp,new_func,dup_func,free_func));
1706         }
1707
1708 int SSL_set_ex_data(SSL *s,int idx,void *arg)
1709         {
1710         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
1711         }
1712
1713 void *SSL_get_ex_data(SSL *s,int idx)
1714         {
1715         return(CRYPTO_get_ex_data(&s->ex_data,idx));
1716         }
1717
1718 int SSL_CTX_get_ex_new_index(long argl,char *argp,int (*new_func)(),
1719                              int (*dup_func)(),void (*free_func)())
1720         {
1721         ssl_ctx_meth_num++;
1722         return(CRYPTO_get_ex_new_index(ssl_ctx_meth_num-1,
1723                 &ssl_ctx_meth,argl,argp,new_func,dup_func,free_func));
1724         }
1725
1726 int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg)
1727         {
1728         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
1729         }
1730
1731 void *SSL_CTX_get_ex_data(SSL_CTX *s,int idx)
1732         {
1733         return(CRYPTO_get_ex_data(&s->ex_data,idx));
1734         }
1735
1736 int ssl_ok(SSL *s)
1737         {
1738         return(1);
1739         }
1740
1741 X509_STORE *SSL_CTX_get_cert_store(SSL_CTX *ctx)
1742         {
1743         return(ctx->cert_store);
1744         }
1745
1746 void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store)
1747         {
1748         if (ctx->cert_store != NULL)
1749                 X509_STORE_free(ctx->cert_store);
1750         ctx->cert_store=store;
1751         }
1752
1753 int SSL_want(SSL *s)
1754         {
1755         return(s->rwstate);
1756         }
1757
1758 /*!
1759  * \brief Set the callback for generating temporary RSA keys.
1760  * \param ctx the SSL context.
1761  * \param cb the callback
1762  */
1763
1764 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl,int export,
1765                                                           int keylength))
1766     { SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,0,(char *)cb); }
1767
1768 #ifdef DOXYGEN
1769 /*!
1770  * \brief The RSA temporary key callback function.
1771  * \param ssl the SSL session.
1772  * \param export \c TRUE if the temp RSA key is for an export ciphersuite.
1773  * \param keylength if \c export is \c TRUE, then \c keylength is the size of
1774  * the required key in bits.
1775  * \return the temporary RSA key.
1776  * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
1777  */
1778
1779 RSA *cb(SSL *ssl,int export,int keylength)
1780     {}
1781 #endif
1782
1783 /*!
1784  * \brief Set the callback for generating temporary DH keys.
1785  * \param ctx the SSL context.
1786  * \param dh the callback
1787  */
1788
1789 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int export,
1790                                                         int keylength))
1791     { SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,0,(char *)dh); }
1792
1793 void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl,int export,
1794                                                           int keylength))
1795     { SSL_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,0,(char *)cb); }
1796
1797 void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int export,
1798                                                         int keylength))
1799     { SSL_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,0,(char *)dh); }
1800
1801 #if defined(_WINDLL) && defined(WIN16)
1802 #include "../crypto/bio/bss_file.c"
1803 #endif
1804
1805 IMPLEMENT_STACK_OF(SSL_CIPHER)
1806 IMPLEMENT_STACK_OF(SSL_COMP)