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