Support TLS extensions (specifically, HostName)
[openssl.git] / ssl / ssl_lib.c
1 /*! \file ssl/ssl_lib.c
2  *  \brief Version independent SSL functions.
3  */
4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5  * All rights reserved.
6  *
7  * This package is an SSL implementation written
8  * by Eric Young (eay@cryptsoft.com).
9  * The implementation was written so as to conform with Netscapes SSL.
10  * 
11  * This library is free for commercial and non-commercial use as long as
12  * the following conditions are aheared to.  The following conditions
13  * apply to all code found in this distribution, be it the RC4, RSA,
14  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
15  * included with this distribution is covered by the same copyright terms
16  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
17  * 
18  * Copyright remains Eric Young's, and as such any Copyright notices in
19  * the code are not to be removed.
20  * If this package is used in a product, Eric Young should be given attribution
21  * as the author of the parts of the library used.
22  * This can be in the form of a textual message at program startup or
23  * in documentation (online or textual) provided with the package.
24  * 
25  * Redistribution and use in source and binary forms, with or without
26  * modification, are permitted provided that the following conditions
27  * are met:
28  * 1. Redistributions of source code must retain the copyright
29  *    notice, this list of conditions and the following disclaimer.
30  * 2. Redistributions in binary form must reproduce the above copyright
31  *    notice, this list of conditions and the following disclaimer in the
32  *    documentation and/or other materials provided with the distribution.
33  * 3. All advertising materials mentioning features or use of this software
34  *    must display the following acknowledgement:
35  *    "This product includes cryptographic software written by
36  *     Eric Young (eay@cryptsoft.com)"
37  *    The word 'cryptographic' can be left out if the rouines from the library
38  *    being used are not cryptographic related :-).
39  * 4. If you include any Windows specific code (or a derivative thereof) from 
40  *    the apps directory (application code) you must include an acknowledgement:
41  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
42  * 
43  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
44  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53  * SUCH DAMAGE.
54  * 
55  * The licence and distribution terms for any publically available version or
56  * derivative of this code cannot be changed.  i.e. this code cannot simply be
57  * copied and put under another distribution licence
58  * [including the GNU Public Licence.]
59  */
60 /* ====================================================================
61  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
62  *
63  * Redistribution and use in source and binary forms, with or without
64  * modification, are permitted provided that the following conditions
65  * are met:
66  *
67  * 1. Redistributions of source code must retain the above copyright
68  *    notice, this list of conditions and the following disclaimer. 
69  *
70  * 2. Redistributions in binary form must reproduce the above copyright
71  *    notice, this list of conditions and the following disclaimer in
72  *    the documentation and/or other materials provided with the
73  *    distribution.
74  *
75  * 3. All advertising materials mentioning features or use of this
76  *    software must display the following acknowledgment:
77  *    "This product includes software developed by the OpenSSL Project
78  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
79  *
80  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
81  *    endorse or promote products derived from this software without
82  *    prior written permission. For written permission, please contact
83  *    openssl-core@openssl.org.
84  *
85  * 5. Products derived from this software may not be called "OpenSSL"
86  *    nor may "OpenSSL" appear in their names without prior written
87  *    permission of the OpenSSL Project.
88  *
89  * 6. Redistributions of any form whatsoever must retain the following
90  *    acknowledgment:
91  *    "This product includes software developed by the OpenSSL Project
92  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
93  *
94  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
95  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
96  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
97  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
98  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
99  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
100  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
101  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
102  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
103  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
104  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
105  * OF THE POSSIBILITY OF SUCH DAMAGE.
106  * ====================================================================
107  *
108  * This product includes cryptographic software written by Eric Young
109  * (eay@cryptsoft.com).  This product includes software written by Tim
110  * Hudson (tjh@cryptsoft.com).
111  *
112  */
113 /* ====================================================================
114  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
115  * ECC cipher suite support in OpenSSL originally developed by 
116  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
117  */
118
119 #ifdef REF_CHECK
120 #  include <assert.h>
121 #endif
122 #include <stdio.h>
123 #include "ssl_locl.h"
124 #include "kssl_lcl.h"
125 #include <openssl/objects.h>
126 #include <openssl/lhash.h>
127 #include <openssl/x509v3.h>
128 #ifndef OPENSSL_NO_DH
129 #include <openssl/dh.h>
130 #endif
131
132 const char *SSL_version_str=OPENSSL_VERSION_TEXT;
133
134 SSL3_ENC_METHOD ssl3_undef_enc_method={
135         /* evil casts, but these functions are only called if there's a library bug */
136         (int (*)(SSL *,int))ssl_undefined_function,
137         (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
138         ssl_undefined_function,
139         (int (*)(SSL *, unsigned char *, unsigned char *, int))ssl_undefined_function,
140         (int (*)(SSL*, int))ssl_undefined_function,
141         (int (*)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char*, int, unsigned char *))ssl_undefined_function,
142         0,      /* finish_mac_length */
143         (int (*)(SSL *, EVP_MD_CTX *, unsigned char *))ssl_undefined_function,
144         NULL,   /* client_finished_label */
145         0,      /* client_finished_label_len */
146         NULL,   /* server_finished_label */
147         0,      /* server_finished_label_len */
148         (int (*)(int))ssl_undefined_function
149         };
150
151 int SSL_clear(SSL *s)
152         {
153
154         if (s->method == NULL)
155                 {
156                 SSLerr(SSL_F_SSL_CLEAR,SSL_R_NO_METHOD_SPECIFIED);
157                 return(0);
158                 }
159
160         if (ssl_clear_bad_session(s))
161                 {
162                 SSL_SESSION_free(s->session);
163                 s->session=NULL;
164                 }
165
166         s->error=0;
167         s->hit=0;
168         s->shutdown=0;
169
170 #if 0 /* Disabled since version 1.10 of this file (early return not
171        * needed because SSL_clear is not called when doing renegotiation) */
172         /* This is set if we are doing dynamic renegotiation so keep
173          * the old cipher.  It is sort of a SSL_clear_lite :-) */
174         if (s->new_session) return(1);
175 #else
176         if (s->new_session)
177                 {
178                 SSLerr(SSL_F_SSL_CLEAR,ERR_R_INTERNAL_ERROR);
179                 return 0;
180                 }
181 #endif
182
183         s->type=0;
184
185         s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT);
186
187         s->version=s->method->version;
188         s->client_version=s->version;
189         s->rwstate=SSL_NOTHING;
190         s->rstate=SSL_ST_READ_HEADER;
191 #if 0
192         s->read_ahead=s->ctx->read_ahead;
193 #endif
194
195         if (s->init_buf != NULL)
196                 {
197                 BUF_MEM_free(s->init_buf);
198                 s->init_buf=NULL;
199                 }
200
201         ssl_clear_cipher_ctx(s);
202
203         s->first_packet=0;
204
205 #if 1
206         /* Check to see if we were changed into a different method, if
207          * so, revert back if we are not doing session-id reuse. */
208         if (!s->in_handshake && (s->session == NULL) && (s->method != s->ctx->method))
209                 {
210                 s->method->ssl_free(s);
211                 s->method=s->ctx->method;
212                 if (!s->method->ssl_new(s))
213                         return(0);
214                 }
215         else
216 #endif
217                 s->method->ssl_clear(s);
218         return(1);
219         }
220
221 /** Used to change an SSL_CTXs default SSL method type */
222 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,const SSL_METHOD *meth)
223         {
224         STACK_OF(SSL_CIPHER) *sk;
225
226         ctx->method=meth;
227
228         sk=ssl_create_cipher_list(ctx->method,&(ctx->cipher_list),
229                 &(ctx->cipher_list_by_id),SSL_DEFAULT_CIPHER_LIST);
230         if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0))
231                 {
232                 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
233                 return(0);
234                 }
235         return(1);
236         }
237
238 SSL *SSL_new(SSL_CTX *ctx)
239         {
240         SSL *s;
241
242         if (ctx == NULL)
243                 {
244                 SSLerr(SSL_F_SSL_NEW,SSL_R_NULL_SSL_CTX);
245                 return(NULL);
246                 }
247         if (ctx->method == NULL)
248                 {
249                 SSLerr(SSL_F_SSL_NEW,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
250                 return(NULL);
251                 }
252
253         s=(SSL *)OPENSSL_malloc(sizeof(SSL));
254         if (s == NULL) goto err;
255         memset(s,0,sizeof(SSL));
256
257 #ifndef OPENSSL_NO_KRB5
258         s->kssl_ctx = kssl_ctx_new();
259 #endif  /* OPENSSL_NO_KRB5 */
260
261         s->options=ctx->options;
262         s->mode=ctx->mode;
263         s->max_cert_list=ctx->max_cert_list;
264
265         if (ctx->cert != NULL)
266                 {
267                 /* Earlier library versions used to copy the pointer to
268                  * the CERT, not its contents; only when setting new
269                  * parameters for the per-SSL copy, ssl_cert_new would be
270                  * called (and the direct reference to the per-SSL_CTX
271                  * settings would be lost, but those still were indirectly
272                  * accessed for various purposes, and for that reason they
273                  * used to be known as s->ctx->default_cert).
274                  * Now we don't look at the SSL_CTX's CERT after having
275                  * duplicated it once. */
276
277                 s->cert = ssl_cert_dup(ctx->cert);
278                 if (s->cert == NULL)
279                         goto err;
280                 }
281         else
282                 s->cert=NULL; /* Cannot really happen (see SSL_CTX_new) */
283
284         s->read_ahead=ctx->read_ahead;
285         s->msg_callback=ctx->msg_callback;
286         s->msg_callback_arg=ctx->msg_callback_arg;
287         s->verify_mode=ctx->verify_mode;
288 #if 0
289         s->verify_depth=ctx->verify_depth;
290 #endif
291         s->sid_ctx_length=ctx->sid_ctx_length;
292         OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx);
293         memcpy(&s->sid_ctx,&ctx->sid_ctx,sizeof(s->sid_ctx));
294         s->verify_callback=ctx->default_verify_callback;
295         s->generate_session_id=ctx->generate_session_id;
296
297         s->param = X509_VERIFY_PARAM_new();
298         if (!s->param)
299                 goto err;
300         X509_VERIFY_PARAM_inherit(s->param, ctx->param);
301 #if 0
302         s->purpose = ctx->purpose;
303         s->trust = ctx->trust;
304 #endif
305         s->quiet_shutdown=ctx->quiet_shutdown;
306         s->max_send_fragment = ctx->max_send_fragment;
307
308         CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
309         s->ctx=ctx;
310
311         s->verify_result=X509_V_OK;
312
313         s->method=ctx->method;
314
315         if (!s->method->ssl_new(s))
316                 goto err;
317
318         s->references=1;
319         s->server=(ctx->method->ssl_accept == ssl_undefined_function)?0:1;
320
321         SSL_clear(s);
322
323         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
324
325         return(s);
326 err:
327         if (s != NULL)
328                 {
329                 if (s->cert != NULL)
330                         ssl_cert_free(s->cert);
331                 if (s->ctx != NULL)
332                         SSL_CTX_free(s->ctx); /* decrement reference count */
333                 OPENSSL_free(s);
334                 }
335         SSLerr(SSL_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
336         return(NULL);
337         }
338
339 int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx,
340                                    unsigned int sid_ctx_len)
341     {
342     if(sid_ctx_len > sizeof ctx->sid_ctx)
343         {
344         SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
345         return 0;
346         }
347     ctx->sid_ctx_length=sid_ctx_len;
348     memcpy(ctx->sid_ctx,sid_ctx,sid_ctx_len);
349
350     return 1;
351     }
352
353 int SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
354                                unsigned int sid_ctx_len)
355     {
356     if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH)
357         {
358         SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
359         return 0;
360         }
361     ssl->sid_ctx_length=sid_ctx_len;
362     memcpy(ssl->sid_ctx,sid_ctx,sid_ctx_len);
363
364     return 1;
365     }
366
367 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
368         {
369         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
370         ctx->generate_session_id = cb;
371         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
372         return 1;
373         }
374
375 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
376         {
377         CRYPTO_w_lock(CRYPTO_LOCK_SSL);
378         ssl->generate_session_id = cb;
379         CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
380         return 1;
381         }
382
383 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
384                                 unsigned int id_len)
385         {
386         /* A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
387          * we can "construct" a session to give us the desired check - ie. to
388          * find if there's a session in the hash table that would conflict with
389          * any new session built out of this id/id_len and the ssl_version in
390          * use by this SSL. */
391         SSL_SESSION r, *p;
392
393         if(id_len > sizeof r.session_id)
394                 return 0;
395
396         r.ssl_version = ssl->version;
397         r.session_id_length = id_len;
398         memcpy(r.session_id, id, id_len);
399         /* NB: SSLv2 always uses a fixed 16-byte session ID, so even if a
400          * callback is calling us to check the uniqueness of a shorter ID, it
401          * must be compared as a padded-out ID because that is what it will be
402          * converted to when the callback has finished choosing it. */
403         if((r.ssl_version == SSL2_VERSION) &&
404                         (id_len < SSL2_SSL_SESSION_ID_LENGTH))
405                 {
406                 memset(r.session_id + id_len, 0,
407                         SSL2_SSL_SESSION_ID_LENGTH - id_len);
408                 r.session_id_length = SSL2_SSL_SESSION_ID_LENGTH;
409                 }
410
411         CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
412         p = (SSL_SESSION *)lh_retrieve(ssl->ctx->sessions, &r);
413         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
414         return (p != NULL);
415         }
416
417 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
418         {
419         return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
420         }
421
422 int SSL_set_purpose(SSL *s, int purpose)
423         {
424         return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
425         }
426
427 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
428         {
429         return X509_VERIFY_PARAM_set_trust(s->param, trust);
430         }
431
432 int SSL_set_trust(SSL *s, int trust)
433         {
434         return X509_VERIFY_PARAM_set_trust(s->param, trust);
435         }
436
437 void SSL_free(SSL *s)
438         {
439         int i;
440
441         if(s == NULL)
442             return;
443
444         i=CRYPTO_add(&s->references,-1,CRYPTO_LOCK_SSL);
445 #ifdef REF_PRINT
446         REF_PRINT("SSL",s);
447 #endif
448         if (i > 0) return;
449 #ifdef REF_CHECK
450         if (i < 0)
451                 {
452                 fprintf(stderr,"SSL_free, bad reference count\n");
453                 abort(); /* ok */
454                 }
455 #endif
456
457         if (s->param)
458                 X509_VERIFY_PARAM_free(s->param);
459
460         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
461
462         if (s->bbio != NULL)
463                 {
464                 /* If the buffering BIO is in place, pop it off */
465                 if (s->bbio == s->wbio)
466                         {
467                         s->wbio=BIO_pop(s->wbio);
468                         }
469                 BIO_free(s->bbio);
470                 s->bbio=NULL;
471                 }
472         if (s->rbio != NULL)
473                 BIO_free_all(s->rbio);
474         if ((s->wbio != NULL) && (s->wbio != s->rbio))
475                 BIO_free_all(s->wbio);
476
477         if (s->init_buf != NULL) BUF_MEM_free(s->init_buf);
478
479         /* add extra stuff */
480         if (s->cipher_list != NULL) sk_SSL_CIPHER_free(s->cipher_list);
481         if (s->cipher_list_by_id != NULL) sk_SSL_CIPHER_free(s->cipher_list_by_id);
482
483         /* Make the next call work :-) */
484         if (s->session != NULL)
485                 {
486                 ssl_clear_bad_session(s);
487                 SSL_SESSION_free(s->session);
488                 }
489
490         ssl_clear_cipher_ctx(s);
491
492         if (s->cert != NULL) ssl_cert_free(s->cert);
493         /* Free up if allocated */
494
495         if (s->ctx) SSL_CTX_free(s->ctx);
496
497         if (s->client_CA != NULL)
498                 sk_X509_NAME_pop_free(s->client_CA,X509_NAME_free);
499
500         if (s->method != NULL) s->method->ssl_free(s);
501
502 #ifndef OPENSSL_NO_KRB5
503         if (s->kssl_ctx != NULL)
504                 kssl_ctx_free(s->kssl_ctx);
505 #endif  /* OPENSSL_NO_KRB5 */
506
507         OPENSSL_free(s);
508         }
509
510 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
511         {
512         /* If the output buffering BIO is still in place, remove it
513          */
514         if (s->bbio != NULL)
515                 {
516                 if (s->wbio == s->bbio)
517                         {
518                         s->wbio=s->wbio->next_bio;
519                         s->bbio->next_bio=NULL;
520                         }
521                 }
522         if ((s->rbio != NULL) && (s->rbio != rbio))
523                 BIO_free_all(s->rbio);
524         if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
525                 BIO_free_all(s->wbio);
526         s->rbio=rbio;
527         s->wbio=wbio;
528         }
529
530 BIO *SSL_get_rbio(const SSL *s)
531         { return(s->rbio); }
532
533 BIO *SSL_get_wbio(const SSL *s)
534         { return(s->wbio); }
535
536 int SSL_get_fd(const SSL *s)
537         {
538         return(SSL_get_rfd(s));
539         }
540
541 int SSL_get_rfd(const SSL *s)
542         {
543         int ret= -1;
544         BIO *b,*r;
545
546         b=SSL_get_rbio(s);
547         r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
548         if (r != NULL)
549                 BIO_get_fd(r,&ret);
550         return(ret);
551         }
552
553 int SSL_get_wfd(const SSL *s)
554         {
555         int ret= -1;
556         BIO *b,*r;
557
558         b=SSL_get_wbio(s);
559         r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
560         if (r != NULL)
561                 BIO_get_fd(r,&ret);
562         return(ret);
563         }
564
565 #ifndef OPENSSL_NO_SOCK
566 int SSL_set_fd(SSL *s,int fd)
567         {
568         int ret=0;
569         BIO *bio=NULL;
570
571         bio=BIO_new(BIO_s_socket());
572
573         if (bio == NULL)
574                 {
575                 SSLerr(SSL_F_SSL_SET_FD,ERR_R_BUF_LIB);
576                 goto err;
577                 }
578         BIO_set_fd(bio,fd,BIO_NOCLOSE);
579         SSL_set_bio(s,bio,bio);
580         ret=1;
581 err:
582         return(ret);
583         }
584
585 int SSL_set_wfd(SSL *s,int fd)
586         {
587         int ret=0;
588         BIO *bio=NULL;
589
590         if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
591                 || ((int)BIO_get_fd(s->rbio,NULL) != fd))
592                 {
593                 bio=BIO_new(BIO_s_socket());
594
595                 if (bio == NULL)
596                         { SSLerr(SSL_F_SSL_SET_WFD,ERR_R_BUF_LIB); goto err; }
597                 BIO_set_fd(bio,fd,BIO_NOCLOSE);
598                 SSL_set_bio(s,SSL_get_rbio(s),bio);
599                 }
600         else
601                 SSL_set_bio(s,SSL_get_rbio(s),SSL_get_rbio(s));
602         ret=1;
603 err:
604         return(ret);
605         }
606
607 int SSL_set_rfd(SSL *s,int fd)
608         {
609         int ret=0;
610         BIO *bio=NULL;
611
612         if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
613                 || ((int)BIO_get_fd(s->wbio,NULL) != fd))
614                 {
615                 bio=BIO_new(BIO_s_socket());
616
617                 if (bio == NULL)
618                         {
619                         SSLerr(SSL_F_SSL_SET_RFD,ERR_R_BUF_LIB);
620                         goto err;
621                         }
622                 BIO_set_fd(bio,fd,BIO_NOCLOSE);
623                 SSL_set_bio(s,bio,SSL_get_wbio(s));
624                 }
625         else
626                 SSL_set_bio(s,SSL_get_wbio(s),SSL_get_wbio(s));
627         ret=1;
628 err:
629         return(ret);
630         }
631 #endif
632
633
634 /* return length of latest Finished message we sent, copy to 'buf' */
635 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
636         {
637         size_t ret = 0;
638         
639         if (s->s3 != NULL)
640                 {
641                 ret = s->s3->tmp.finish_md_len;
642                 if (count > ret)
643                         count = ret;
644                 memcpy(buf, s->s3->tmp.finish_md, count);
645                 }
646         return ret;
647         }
648
649 /* return length of latest Finished message we expected, copy to 'buf' */
650 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
651         {
652         size_t ret = 0;
653         
654         if (s->s3 != NULL)
655                 {
656                 ret = s->s3->tmp.peer_finish_md_len;
657                 if (count > ret)
658                         count = ret;
659                 memcpy(buf, s->s3->tmp.peer_finish_md, count);
660                 }
661         return ret;
662         }
663
664
665 int SSL_get_verify_mode(const SSL *s)
666         {
667         return(s->verify_mode);
668         }
669
670 int SSL_get_verify_depth(const SSL *s)
671         {
672         return X509_VERIFY_PARAM_get_depth(s->param);
673         }
674
675 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *)
676         {
677         return(s->verify_callback);
678         }
679
680 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx)
681         {
682         return(ctx->verify_mode);
683         }
684
685 int SSL_CTX_get_verify_depth(const SSL_CTX *ctx)
686         {
687         return X509_VERIFY_PARAM_get_depth(ctx->param);
688         }
689
690 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *)
691         {
692         return(ctx->default_verify_callback);
693         }
694
695 void SSL_set_verify(SSL *s,int mode,
696                     int (*callback)(int ok,X509_STORE_CTX *ctx))
697         {
698         s->verify_mode=mode;
699         if (callback != NULL)
700                 s->verify_callback=callback;
701         }
702
703 void SSL_set_verify_depth(SSL *s,int depth)
704         {
705         X509_VERIFY_PARAM_set_depth(s->param, depth);
706         }
707
708 void SSL_set_read_ahead(SSL *s,int yes)
709         {
710         s->read_ahead=yes;
711         }
712
713 int SSL_get_read_ahead(const SSL *s)
714         {
715         return(s->read_ahead);
716         }
717
718 int SSL_pending(const SSL *s)
719         {
720         /* SSL_pending cannot work properly if read-ahead is enabled
721          * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)),
722          * and it is impossible to fix since SSL_pending cannot report
723          * errors that may be observed while scanning the new data.
724          * (Note that SSL_pending() is often used as a boolean value,
725          * so we'd better not return -1.)
726          */
727         return(s->method->ssl_pending(s));
728         }
729
730 X509 *SSL_get_peer_certificate(const SSL *s)
731         {
732         X509 *r;
733         
734         if ((s == NULL) || (s->session == NULL))
735                 r=NULL;
736         else
737                 r=s->session->peer;
738
739         if (r == NULL) return(r);
740
741         CRYPTO_add(&r->references,1,CRYPTO_LOCK_X509);
742
743         return(r);
744         }
745
746 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s)
747         {
748         STACK_OF(X509) *r;
749         
750         if ((s == NULL) || (s->session == NULL) || (s->session->sess_cert == NULL))
751                 r=NULL;
752         else
753                 r=s->session->sess_cert->cert_chain;
754
755         /* If we are a client, cert_chain includes the peer's own
756          * certificate; if we are a server, it does not. */
757         
758         return(r);
759         }
760
761 /* Now in theory, since the calling process own 't' it should be safe to
762  * modify.  We need to be able to read f without being hassled */
763 void SSL_copy_session_id(SSL *t,const SSL *f)
764         {
765         CERT *tmp;
766
767         /* Do we need to to SSL locking? */
768         SSL_set_session(t,SSL_get_session(f));
769
770         /* what if we are setup as SSLv2 but want to talk SSLv3 or
771          * vice-versa */
772         if (t->method != f->method)
773                 {
774                 t->method->ssl_free(t); /* cleanup current */
775                 t->method=f->method;    /* change method */
776                 t->method->ssl_new(t);  /* setup new */
777                 }
778
779         tmp=t->cert;
780         if (f->cert != NULL)
781                 {
782                 CRYPTO_add(&f->cert->references,1,CRYPTO_LOCK_SSL_CERT);
783                 t->cert=f->cert;
784                 }
785         else
786                 t->cert=NULL;
787         if (tmp != NULL) ssl_cert_free(tmp);
788         SSL_set_session_id_context(t,f->sid_ctx,f->sid_ctx_length);
789         }
790
791 /* Fix this so it checks all the valid key/cert options */
792 int SSL_CTX_check_private_key(const SSL_CTX *ctx)
793         {
794         if (    (ctx == NULL) ||
795                 (ctx->cert == NULL) ||
796                 (ctx->cert->key->x509 == NULL))
797                 {
798                 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
799                 return(0);
800                 }
801         if      (ctx->cert->key->privatekey == NULL)
802                 {
803                 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
804                 return(0);
805                 }
806         return(X509_check_private_key(ctx->cert->key->x509, ctx->cert->key->privatekey));
807         }
808
809 /* Fix this function so that it takes an optional type parameter */
810 int SSL_check_private_key(const SSL *ssl)
811         {
812         if (ssl == NULL)
813                 {
814                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,ERR_R_PASSED_NULL_PARAMETER);
815                 return(0);
816                 }
817         if (ssl->cert == NULL)
818                 {
819                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
820                 return 0;
821                 }
822         if (ssl->cert->key->x509 == NULL)
823                 {
824                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
825                 return(0);
826                 }
827         if (ssl->cert->key->privatekey == NULL)
828                 {
829                 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
830                 return(0);
831                 }
832         return(X509_check_private_key(ssl->cert->key->x509,
833                 ssl->cert->key->privatekey));
834         }
835
836 int SSL_accept(SSL *s)
837         {
838         if (s->handshake_func == 0)
839                 /* Not properly initialized yet */
840                 SSL_set_accept_state(s);
841
842         return(s->method->ssl_accept(s));
843         }
844
845 int SSL_connect(SSL *s)
846         {
847         if (s->handshake_func == 0)
848                 /* Not properly initialized yet */
849                 SSL_set_connect_state(s);
850
851         return(s->method->ssl_connect(s));
852         }
853
854 long SSL_get_default_timeout(const SSL *s)
855         {
856         return(s->method->get_timeout());
857         }
858
859 int SSL_read(SSL *s,void *buf,int num)
860         {
861         if (s->handshake_func == 0)
862                 {
863                 SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED);
864                 return -1;
865                 }
866
867         if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
868                 {
869                 s->rwstate=SSL_NOTHING;
870                 return(0);
871                 }
872         return(s->method->ssl_read(s,buf,num));
873         }
874
875 int SSL_peek(SSL *s,void *buf,int num)
876         {
877         if (s->handshake_func == 0)
878                 {
879                 SSLerr(SSL_F_SSL_PEEK, SSL_R_UNINITIALIZED);
880                 return -1;
881                 }
882
883         if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
884                 {
885                 return(0);
886                 }
887         return(s->method->ssl_peek(s,buf,num));
888         }
889
890 int SSL_write(SSL *s,const void *buf,int num)
891         {
892         if (s->handshake_func == 0)
893                 {
894                 SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED);
895                 return -1;
896                 }
897
898         if (s->shutdown & SSL_SENT_SHUTDOWN)
899                 {
900                 s->rwstate=SSL_NOTHING;
901                 SSLerr(SSL_F_SSL_WRITE,SSL_R_PROTOCOL_IS_SHUTDOWN);
902                 return(-1);
903                 }
904         return(s->method->ssl_write(s,buf,num));
905         }
906
907 int SSL_shutdown(SSL *s)
908         {
909         /* Note that this function behaves differently from what one might
910          * expect.  Return values are 0 for no success (yet),
911          * 1 for success; but calling it once is usually not enough,
912          * even if blocking I/O is used (see ssl3_shutdown).
913          */
914
915         if (s->handshake_func == 0)
916                 {
917                 SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);
918                 return -1;
919                 }
920
921         if ((s != NULL) && !SSL_in_init(s))
922                 return(s->method->ssl_shutdown(s));
923         else
924                 return(1);
925         }
926
927 int SSL_renegotiate(SSL *s)
928         {
929         if (s->new_session == 0)
930                 {
931                 s->new_session=1;
932                 }
933         return(s->method->ssl_renegotiate(s));
934         }
935
936 int SSL_renegotiate_pending(SSL *s)
937         {
938         /* becomes true when negotiation is requested;
939          * false again once a handshake has finished */
940         return (s->new_session != 0);
941         }
942
943 long SSL_ctrl(SSL *s,int cmd,long larg,void *parg)
944         {
945         long l;
946
947         switch (cmd)
948                 {
949         case SSL_CTRL_GET_READ_AHEAD:
950                 return(s->read_ahead);
951         case SSL_CTRL_SET_READ_AHEAD:
952                 l=s->read_ahead;
953                 s->read_ahead=larg;
954                 return(l);
955
956         case SSL_CTRL_SET_MSG_CALLBACK_ARG:
957                 s->msg_callback_arg = parg;
958                 return 1;
959
960         case SSL_CTRL_OPTIONS:
961                 return(s->options|=larg);
962         case SSL_CTRL_MODE:
963                 return(s->mode|=larg);
964         case SSL_CTRL_GET_MAX_CERT_LIST:
965                 return(s->max_cert_list);
966         case SSL_CTRL_SET_MAX_CERT_LIST:
967                 l=s->max_cert_list;
968                 s->max_cert_list=larg;
969                 return(l);
970         case SSL_CTRL_SET_MTU:
971                 if (SSL_version(s) == DTLS1_VERSION)
972                         {
973                         s->d1->mtu = larg;
974                         return larg;
975                         }
976                 return 0;
977         case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
978                 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
979                         return 0;
980                 s->max_send_fragment = larg;
981                 return 1;
982         default:
983                 return(s->method->ssl_ctrl(s,cmd,larg,parg));
984                 }
985         }
986
987 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp)(void))
988         {
989         switch(cmd)
990                 {
991         case SSL_CTRL_SET_MSG_CALLBACK:
992                 s->msg_callback = (void (*)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp);
993                 return 1;
994                 
995         default:
996                 return(s->method->ssl_callback_ctrl(s,cmd,fp));
997                 }
998         }
999
1000 struct lhash_st *SSL_CTX_sessions(SSL_CTX *ctx)
1001         {
1002         return ctx->sessions;
1003         }
1004
1005 long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd,long larg,void *parg)
1006         {
1007         long l;
1008
1009         switch (cmd)
1010                 {
1011         case SSL_CTRL_GET_READ_AHEAD:
1012                 return(ctx->read_ahead);
1013         case SSL_CTRL_SET_READ_AHEAD:
1014                 l=ctx->read_ahead;
1015                 ctx->read_ahead=larg;
1016                 return(l);
1017                 
1018         case SSL_CTRL_SET_MSG_CALLBACK_ARG:
1019                 ctx->msg_callback_arg = parg;
1020                 return 1;
1021
1022         case SSL_CTRL_GET_MAX_CERT_LIST:
1023                 return(ctx->max_cert_list);
1024         case SSL_CTRL_SET_MAX_CERT_LIST:
1025                 l=ctx->max_cert_list;
1026                 ctx->max_cert_list=larg;
1027                 return(l);
1028
1029         case SSL_CTRL_SET_SESS_CACHE_SIZE:
1030                 l=ctx->session_cache_size;
1031                 ctx->session_cache_size=larg;
1032                 return(l);
1033         case SSL_CTRL_GET_SESS_CACHE_SIZE:
1034                 return(ctx->session_cache_size);
1035         case SSL_CTRL_SET_SESS_CACHE_MODE:
1036                 l=ctx->session_cache_mode;
1037                 ctx->session_cache_mode=larg;
1038                 return(l);
1039         case SSL_CTRL_GET_SESS_CACHE_MODE:
1040                 return(ctx->session_cache_mode);
1041
1042         case SSL_CTRL_SESS_NUMBER:
1043                 return(ctx->sessions->num_items);
1044         case SSL_CTRL_SESS_CONNECT:
1045                 return(ctx->stats.sess_connect);
1046         case SSL_CTRL_SESS_CONNECT_GOOD:
1047                 return(ctx->stats.sess_connect_good);
1048         case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
1049                 return(ctx->stats.sess_connect_renegotiate);
1050         case SSL_CTRL_SESS_ACCEPT:
1051                 return(ctx->stats.sess_accept);
1052         case SSL_CTRL_SESS_ACCEPT_GOOD:
1053                 return(ctx->stats.sess_accept_good);
1054         case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
1055                 return(ctx->stats.sess_accept_renegotiate);
1056         case SSL_CTRL_SESS_HIT:
1057                 return(ctx->stats.sess_hit);
1058         case SSL_CTRL_SESS_CB_HIT:
1059                 return(ctx->stats.sess_cb_hit);
1060         case SSL_CTRL_SESS_MISSES:
1061                 return(ctx->stats.sess_miss);
1062         case SSL_CTRL_SESS_TIMEOUTS:
1063                 return(ctx->stats.sess_timeout);
1064         case SSL_CTRL_SESS_CACHE_FULL:
1065                 return(ctx->stats.sess_cache_full);
1066         case SSL_CTRL_OPTIONS:
1067                 return(ctx->options|=larg);
1068         case SSL_CTRL_MODE:
1069                 return(ctx->mode|=larg);
1070         case SSL_CTRL_SET_MAX_SEND_FRAGMENT:
1071                 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH)
1072                         return 0;
1073                 ctx->max_send_fragment = larg;
1074                 return 1;
1075         default:
1076                 return(ctx->method->ssl_ctx_ctrl(ctx,cmd,larg,parg));
1077                 }
1078         }
1079
1080 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp)(void))
1081         {
1082         switch(cmd)
1083                 {
1084         case SSL_CTRL_SET_MSG_CALLBACK:
1085                 ctx->msg_callback = (void (*)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp);
1086                 return 1;
1087
1088         default:
1089                 return(ctx->method->ssl_ctx_callback_ctrl(ctx,cmd,fp));
1090                 }
1091         }
1092
1093 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b)
1094         {
1095         long l;
1096
1097         l=a->id-b->id;
1098         if (l == 0L)
1099                 return(0);
1100         else
1101                 return((l > 0)?1:-1);
1102         }
1103
1104 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
1105                         const SSL_CIPHER * const *bp)
1106         {
1107         long l;
1108
1109         l=(*ap)->id-(*bp)->id;
1110         if (l == 0L)
1111                 return(0);
1112         else
1113                 return((l > 0)?1:-1);
1114         }
1115
1116 /** return a STACK of the ciphers available for the SSL and in order of
1117  * preference */
1118 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s)
1119         {
1120         if (s != NULL)
1121                 {
1122                 if (s->cipher_list != NULL)
1123                         {
1124                         return(s->cipher_list);
1125                         }
1126                 else if ((s->ctx != NULL) &&
1127                         (s->ctx->cipher_list != NULL))
1128                         {
1129                         return(s->ctx->cipher_list);
1130                         }
1131                 }
1132         return(NULL);
1133         }
1134
1135 /** return a STACK of the ciphers available for the SSL and in order of
1136  * algorithm id */
1137 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
1138         {
1139         if (s != NULL)
1140                 {
1141                 if (s->cipher_list_by_id != NULL)
1142                         {
1143                         return(s->cipher_list_by_id);
1144                         }
1145                 else if ((s->ctx != NULL) &&
1146                         (s->ctx->cipher_list_by_id != NULL))
1147                         {
1148                         return(s->ctx->cipher_list_by_id);
1149                         }
1150                 }
1151         return(NULL);
1152         }
1153
1154 /** The old interface to get the same thing as SSL_get_ciphers() */
1155 const char *SSL_get_cipher_list(const SSL *s,int n)
1156         {
1157         SSL_CIPHER *c;
1158         STACK_OF(SSL_CIPHER) *sk;
1159
1160         if (s == NULL) return(NULL);
1161         sk=SSL_get_ciphers(s);
1162         if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
1163                 return(NULL);
1164         c=sk_SSL_CIPHER_value(sk,n);
1165         if (c == NULL) return(NULL);
1166         return(c->name);
1167         }
1168
1169 /** specify the ciphers to be used by default by the SSL_CTX */
1170 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str)
1171         {
1172         STACK_OF(SSL_CIPHER) *sk;
1173         
1174         sk=ssl_create_cipher_list(ctx->method,&ctx->cipher_list,
1175                 &ctx->cipher_list_by_id,str);
1176         /* ssl_create_cipher_list may return an empty stack if it
1177          * was unable to find a cipher matching the given rule string
1178          * (for example if the rule string specifies a cipher which
1179          * has been disabled). This is not an error as far as 
1180          * ssl_create_cipher_list is concerned, and hence 
1181          * ctx->cipher_list and ctx->cipher_list_by_id has been
1182          * updated. */
1183         if (sk == NULL)
1184                 return 0;
1185         else if (sk_SSL_CIPHER_num(sk) == 0)
1186                 {
1187                 SSLerr(SSL_F_SSL_CTX_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1188                 return 0;
1189                 }
1190         return 1;
1191         }
1192
1193 /** specify the ciphers to be used by the SSL */
1194 int SSL_set_cipher_list(SSL *s,const char *str)
1195         {
1196         STACK_OF(SSL_CIPHER) *sk;
1197         
1198         sk=ssl_create_cipher_list(s->ctx->method,&s->cipher_list,
1199                 &s->cipher_list_by_id,str);
1200         /* see comment in SSL_CTX_set_cipher_list */
1201         if (sk == NULL)
1202                 return 0;
1203         else if (sk_SSL_CIPHER_num(sk) == 0)
1204                 {
1205                 SSLerr(SSL_F_SSL_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH);
1206                 return 0;
1207                 }
1208         return 1;
1209         }
1210
1211 /* works well for SSLv2, not so good for SSLv3 */
1212 char *SSL_get_shared_ciphers(const SSL *s,char *buf,int len)
1213         {
1214         char *p;
1215         const char *cp;
1216         STACK_OF(SSL_CIPHER) *sk;
1217         SSL_CIPHER *c;
1218         int i;
1219
1220         if ((s->session == NULL) || (s->session->ciphers == NULL) ||
1221                 (len < 2))
1222                 return(NULL);
1223
1224         p=buf;
1225         sk=s->session->ciphers;
1226         for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1227                 {
1228                 /* Decrement for either the ':' or a '\0' */
1229                 len--;
1230                 c=sk_SSL_CIPHER_value(sk,i);
1231                 for (cp=c->name; *cp; )
1232                         {
1233                         if (len-- == 0)
1234                                 {
1235                                 *p='\0';
1236                                 return(buf);
1237                                 }
1238                         else
1239                                 *(p++)= *(cp++);
1240                         }
1241                 *(p++)=':';
1242                 }
1243         p[-1]='\0';
1244         return(buf);
1245         }
1246
1247 int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p,
1248                              int (*put_cb)(const SSL_CIPHER *, unsigned char *))
1249         {
1250         int i,j=0;
1251         SSL_CIPHER *c;
1252         unsigned char *q;
1253 #ifndef OPENSSL_NO_KRB5
1254         int nokrb5 = !kssl_tgt_is_available(s->kssl_ctx);
1255 #endif /* OPENSSL_NO_KRB5 */
1256
1257         if (sk == NULL) return(0);
1258         q=p;
1259
1260         for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1261                 {
1262                 c=sk_SSL_CIPHER_value(sk,i);
1263 #ifndef OPENSSL_NO_KRB5
1264                 if ((c->algorithms & SSL_KRB5) && nokrb5)
1265                     continue;
1266 #endif /* OPENSSL_NO_KRB5 */                    
1267
1268                 j = put_cb ? put_cb(c,p) : ssl_put_cipher_by_char(s,c,p);
1269                 p+=j;
1270                 }
1271         return(p-q);
1272         }
1273
1274 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
1275                                                STACK_OF(SSL_CIPHER) **skp)
1276         {
1277         SSL_CIPHER *c;
1278         STACK_OF(SSL_CIPHER) *sk;
1279         int i,n;
1280
1281         n=ssl_put_cipher_by_char(s,NULL,NULL);
1282         if ((num%n) != 0)
1283                 {
1284                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
1285                 return(NULL);
1286                 }
1287         if ((skp == NULL) || (*skp == NULL))
1288                 sk=sk_SSL_CIPHER_new_null(); /* change perhaps later */
1289         else
1290                 {
1291                 sk= *skp;
1292                 sk_SSL_CIPHER_zero(sk);
1293                 }
1294
1295         for (i=0; i<num; i+=n)
1296                 {
1297                 c=ssl_get_cipher_by_char(s,p);
1298                 p+=n;
1299                 if (c != NULL)
1300                         {
1301                         if (!sk_SSL_CIPHER_push(sk,c))
1302                                 {
1303                                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,ERR_R_MALLOC_FAILURE);
1304                                 goto err;
1305                                 }
1306                         }
1307                 }
1308
1309         if (skp != NULL)
1310                 *skp=sk;
1311         return(sk);
1312 err:
1313         if ((skp == NULL) || (*skp == NULL))
1314                 sk_SSL_CIPHER_free(sk);
1315         return(NULL);
1316         }
1317
1318 #ifndef OPENSSL_TLSEXT
1319 /** return a servername extension value if provided in CLIENT HELLO
1320  * or NULL. 
1321  * For the moment, only hostname types are supported. 
1322  */
1323
1324 const char *SSL_get_servername(const SSL *s, const int type) {
1325
1326         if (type != TLSEXT_TYPE_SERVER_host) 
1327                 return NULL;
1328         return s->session /*&&s->session->tlsext_hostname*/?s->session->tlsext_hostname:s->tlsext_hostname;
1329 }
1330
1331 int SSL_get_servername_type(const SSL *s) {
1332
1333         if (s->session &&s->session->tlsext_hostname ?s->session->tlsext_hostname:s->tlsext_hostname) 
1334                 return TLSEXT_TYPE_SERVER_host;
1335         return -1;
1336 }
1337
1338 #endif
1339 unsigned long SSL_SESSION_hash(const SSL_SESSION *a)
1340         {
1341         unsigned long l;
1342
1343         l=(unsigned long)
1344                 ((unsigned int) a->session_id[0]     )|
1345                 ((unsigned int) a->session_id[1]<< 8L)|
1346                 ((unsigned long)a->session_id[2]<<16L)|
1347                 ((unsigned long)a->session_id[3]<<24L);
1348         return(l);
1349         }
1350
1351 /* NB: If this function (or indeed the hash function which uses a sort of
1352  * coarser function than this one) is changed, ensure
1353  * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being
1354  * able to construct an SSL_SESSION that will collide with any existing session
1355  * with a matching session ID. */
1356 int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b)
1357         {
1358         if (a->ssl_version != b->ssl_version)
1359                 return(1);
1360         if (a->session_id_length != b->session_id_length)
1361                 return(1);
1362         return(memcmp(a->session_id,b->session_id,a->session_id_length));
1363         }
1364
1365 /* These wrapper functions should remain rather than redeclaring
1366  * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
1367  * variable. The reason is that the functions aren't static, they're exposed via
1368  * ssl.h. */
1369 static IMPLEMENT_LHASH_HASH_FN(SSL_SESSION_hash, SSL_SESSION *)
1370 static IMPLEMENT_LHASH_COMP_FN(SSL_SESSION_cmp, SSL_SESSION *)
1371
1372 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
1373         {
1374         SSL_CTX *ret=NULL;
1375         
1376         if (meth == NULL)
1377                 {
1378                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_NULL_SSL_METHOD_PASSED);
1379                 return(NULL);
1380                 }
1381
1382         if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
1383                 {
1384                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
1385                 goto err;
1386                 }
1387         ret=(SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX));
1388         if (ret == NULL)
1389                 goto err;
1390
1391         memset(ret,0,sizeof(SSL_CTX));
1392
1393         ret->method=meth;
1394
1395         ret->cert_store=NULL;
1396         ret->session_cache_mode=SSL_SESS_CACHE_SERVER;
1397         ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
1398         ret->session_cache_head=NULL;
1399         ret->session_cache_tail=NULL;
1400
1401         /* We take the system default */
1402         ret->session_timeout=meth->get_timeout();
1403
1404         ret->new_session_cb=0;
1405         ret->remove_session_cb=0;
1406         ret->get_session_cb=0;
1407         ret->generate_session_id=0;
1408
1409         memset((char *)&ret->stats,0,sizeof(ret->stats));
1410
1411         ret->references=1;
1412         ret->quiet_shutdown=0;
1413
1414 /*      ret->cipher=NULL;*/
1415 /*      ret->s2->challenge=NULL;
1416         ret->master_key=NULL;
1417         ret->key_arg=NULL;
1418         ret->s2->conn_id=NULL; */
1419
1420         ret->info_callback=NULL;
1421
1422         ret->app_verify_callback=0;
1423         ret->app_verify_arg=NULL;
1424
1425         ret->max_cert_list=SSL_MAX_CERT_LIST_DEFAULT;
1426         ret->read_ahead=0;
1427         ret->msg_callback=0;
1428         ret->msg_callback_arg=NULL;
1429         ret->verify_mode=SSL_VERIFY_NONE;
1430 #if 0
1431         ret->verify_depth=-1; /* Don't impose a limit (but x509_lu.c does) */
1432 #endif
1433         ret->sid_ctx_length=0;
1434         ret->default_verify_callback=NULL;
1435         if ((ret->cert=ssl_cert_new()) == NULL)
1436                 goto err;
1437
1438         ret->default_passwd_callback=0;
1439         ret->default_passwd_callback_userdata=NULL;
1440         ret->client_cert_cb=0;
1441         ret->app_gen_cookie_cb=0;
1442         ret->app_verify_cookie_cb=0;
1443
1444         ret->sessions=lh_new(LHASH_HASH_FN(SSL_SESSION_hash),
1445                         LHASH_COMP_FN(SSL_SESSION_cmp));
1446         if (ret->sessions == NULL) goto err;
1447         ret->cert_store=X509_STORE_new();
1448         if (ret->cert_store == NULL) goto err;
1449
1450         ssl_create_cipher_list(ret->method,
1451                 &ret->cipher_list,&ret->cipher_list_by_id,
1452                 SSL_DEFAULT_CIPHER_LIST);
1453         if (ret->cipher_list == NULL
1454             || sk_SSL_CIPHER_num(ret->cipher_list) <= 0)
1455                 {
1456                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS);
1457                 goto err2;
1458                 }
1459
1460         ret->param = X509_VERIFY_PARAM_new();
1461         if (!ret->param)
1462                 goto err;
1463
1464         if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL)
1465                 {
1466                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES);
1467                 goto err2;
1468                 }
1469         if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL)
1470                 {
1471                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1472                 goto err2;
1473                 }
1474         if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL)
1475                 {
1476                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1477                 goto err2;
1478                 }
1479
1480         if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
1481                 goto err;
1482
1483         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
1484
1485         ret->extra_certs=NULL;
1486         ret->comp_methods=SSL_COMP_get_compression_methods();
1487
1488         ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
1489
1490 #ifndef OPENSSL_NO_TLSEXT
1491         ret->tlsext_servername_callback = NULL;
1492         ret->tlsext_servername_arg = NULL;
1493 #endif
1494         return(ret);
1495 err:
1496         SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);
1497 err2:
1498         if (ret != NULL) SSL_CTX_free(ret);
1499         return(NULL);
1500         }
1501
1502 #if 0
1503 static void SSL_COMP_free(SSL_COMP *comp)
1504     { OPENSSL_free(comp); }
1505 #endif
1506
1507 void SSL_CTX_free(SSL_CTX *a)
1508         {
1509         int i;
1510
1511         if (a == NULL) return;
1512
1513         i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX);
1514 #ifdef REF_PRINT
1515         REF_PRINT("SSL_CTX",a);
1516 #endif
1517         if (i > 0) return;
1518 #ifdef REF_CHECK
1519         if (i < 0)
1520                 {
1521                 fprintf(stderr,"SSL_CTX_free, bad reference count\n");
1522                 abort(); /* ok */
1523                 }
1524 #endif
1525
1526         if (a->param)
1527                 X509_VERIFY_PARAM_free(a->param);
1528
1529         /*
1530          * Free internal session cache. However: the remove_cb() may reference
1531          * the ex_data of SSL_CTX, thus the ex_data store can only be removed
1532          * after the sessions were flushed.
1533          * As the ex_data handling routines might also touch the session cache,
1534          * the most secure solution seems to be: empty (flush) the cache, then
1535          * free ex_data, then finally free the cache.
1536          * (See ticket [openssl.org #212].)
1537          */
1538         if (a->sessions != NULL)
1539                 SSL_CTX_flush_sessions(a,0);
1540
1541         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
1542
1543         if (a->sessions != NULL)
1544                 lh_free(a->sessions);
1545
1546         if (a->cert_store != NULL)
1547                 X509_STORE_free(a->cert_store);
1548         if (a->cipher_list != NULL)
1549                 sk_SSL_CIPHER_free(a->cipher_list);
1550         if (a->cipher_list_by_id != NULL)
1551                 sk_SSL_CIPHER_free(a->cipher_list_by_id);
1552         if (a->cert != NULL)
1553                 ssl_cert_free(a->cert);
1554         if (a->client_CA != NULL)
1555                 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
1556         if (a->extra_certs != NULL)
1557                 sk_X509_pop_free(a->extra_certs,X509_free);
1558 #if 0 /* This should never be done, since it removes a global database */
1559         if (a->comp_methods != NULL)
1560                 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free);
1561 #else
1562         a->comp_methods = NULL;
1563 #endif
1564         OPENSSL_free(a);
1565         }
1566
1567 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
1568         {
1569         ctx->default_passwd_callback=cb;
1570         }
1571
1572 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,void *u)
1573         {
1574         ctx->default_passwd_callback_userdata=u;
1575         }
1576
1577 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg)
1578         {
1579         ctx->app_verify_callback=cb;
1580         ctx->app_verify_arg=arg;
1581         }
1582
1583 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
1584         {
1585         ctx->verify_mode=mode;
1586         ctx->default_verify_callback=cb;
1587         }
1588
1589 void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth)
1590         {
1591         X509_VERIFY_PARAM_set_depth(ctx->param, depth);
1592         }
1593
1594 void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
1595         {
1596         CERT_PKEY *cpk;
1597         int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign;
1598         int rsa_enc_export,dh_rsa_export,dh_dsa_export;
1599         int rsa_tmp_export,dh_tmp_export,kl;
1600         unsigned long mask,emask;
1601         int have_ecc_cert, ecdh_ok, ecdsa_ok, ecc_pkey_size;
1602 #ifndef OPENSSL_NO_ECDH
1603         int have_ecdh_tmp;
1604 #endif
1605         X509 *x = NULL;
1606         EVP_PKEY *ecc_pkey = NULL;
1607         int signature_nid = 0;
1608
1609         if (c == NULL) return;
1610
1611         kl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1612
1613 #ifndef OPENSSL_NO_RSA
1614         rsa_tmp=(c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
1615         rsa_tmp_export=(c->rsa_tmp_cb != NULL ||
1616                 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl));
1617 #else
1618         rsa_tmp=rsa_tmp_export=0;
1619 #endif
1620 #ifndef OPENSSL_NO_DH
1621         dh_tmp=(c->dh_tmp != NULL || c->dh_tmp_cb != NULL);
1622         dh_tmp_export=(c->dh_tmp_cb != NULL ||
1623                 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl));
1624 #else
1625         dh_tmp=dh_tmp_export=0;
1626 #endif
1627
1628 #ifndef OPENSSL_NO_ECDH
1629         have_ecdh_tmp=(c->ecdh_tmp != NULL || c->ecdh_tmp_cb != NULL);
1630 #endif
1631         cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]);
1632         rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
1633         rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1634         cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]);
1635         rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1636         cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]);
1637         dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1638         cpk= &(c->pkeys[SSL_PKEY_DH_RSA]);
1639         dh_rsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1640         dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1641         cpk= &(c->pkeys[SSL_PKEY_DH_DSA]);
1642 /* FIX THIS EAY EAY EAY */
1643         dh_dsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1644         dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1645         cpk= &(c->pkeys[SSL_PKEY_ECC]);
1646         have_ecc_cert= (cpk->x509 != NULL && cpk->privatekey != NULL);
1647         mask=0;
1648         emask=0;
1649
1650 #ifdef CIPHER_DEBUG
1651         printf("rt=%d rte=%d dht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1652                 rsa_tmp,rsa_tmp_export,dh_tmp,
1653                 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
1654 #endif
1655
1656         if (rsa_enc || (rsa_tmp && rsa_sign))
1657                 mask|=SSL_kRSA;
1658         if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
1659                 emask|=SSL_kRSA;
1660
1661 #if 0
1662         /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1663         if (    (dh_tmp || dh_rsa || dh_dsa) && 
1664                 (rsa_enc || rsa_sign || dsa_sign))
1665                 mask|=SSL_kEDH;
1666         if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) &&
1667                 (rsa_enc || rsa_sign || dsa_sign))
1668                 emask|=SSL_kEDH;
1669 #endif
1670
1671         if (dh_tmp_export) 
1672                 emask|=SSL_kEDH;
1673
1674         if (dh_tmp)
1675                 mask|=SSL_kEDH;
1676
1677         if (dh_rsa) mask|=SSL_kDHr;
1678         if (dh_rsa_export) emask|=SSL_kDHr;
1679
1680         if (dh_dsa) mask|=SSL_kDHd;
1681         if (dh_dsa_export) emask|=SSL_kDHd;
1682
1683         if (rsa_enc || rsa_sign)
1684                 {
1685                 mask|=SSL_aRSA;
1686                 emask|=SSL_aRSA;
1687                 }
1688
1689         if (dsa_sign)
1690                 {
1691                 mask|=SSL_aDSS;
1692                 emask|=SSL_aDSS;
1693                 }
1694
1695         mask|=SSL_aNULL;
1696         emask|=SSL_aNULL;
1697
1698 #ifndef OPENSSL_NO_KRB5
1699         mask|=SSL_kKRB5|SSL_aKRB5;
1700         emask|=SSL_kKRB5|SSL_aKRB5;
1701 #endif
1702
1703         /* An ECC certificate may be usable for ECDH and/or
1704          * ECDSA cipher suites depending on the key usage extension.
1705          */
1706         if (have_ecc_cert)
1707                 {
1708                 /* This call populates extension flags (ex_flags) */
1709                 x = (c->pkeys[SSL_PKEY_ECC]).x509;
1710                 X509_check_purpose(x, -1, 0);
1711                 ecdh_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1712                     (x->ex_kusage & X509v3_KU_KEY_AGREEMENT) : 1;
1713                 ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1714                     (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) : 1;
1715                 ecc_pkey = X509_get_pubkey(x);
1716                 ecc_pkey_size = (ecc_pkey != NULL) ? 
1717                     EVP_PKEY_bits(ecc_pkey) : 0;
1718                 EVP_PKEY_free(ecc_pkey);
1719                 if ((x->sig_alg) && (x->sig_alg->algorithm))
1720                         signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1721 #ifndef OPENSSL_NO_ECDH
1722                 if (ecdh_ok)
1723                         {
1724                         if ((signature_nid == NID_md5WithRSAEncryption) ||
1725                             (signature_nid == NID_md4WithRSAEncryption) ||
1726                             (signature_nid == NID_md2WithRSAEncryption))
1727                                 {
1728                                 mask|=SSL_kECDH|SSL_aRSA;
1729                                 if (ecc_pkey_size <= 163)
1730                                         emask|=SSL_kECDH|SSL_aRSA;
1731                                 }
1732                         if (signature_nid == NID_ecdsa_with_SHA1)
1733                                 {
1734                                 mask|=SSL_kECDH|SSL_aECDSA;
1735                                 if (ecc_pkey_size <= 163)
1736                                         emask|=SSL_kECDH|SSL_aECDSA;
1737                                 }
1738                         }
1739 #endif
1740 #ifndef OPENSSL_NO_ECDSA
1741                 if (ecdsa_ok)
1742                         {
1743                         mask|=SSL_aECDSA;
1744                         emask|=SSL_aECDSA;
1745                         }
1746 #endif
1747                 }
1748
1749 #ifndef OPENSSL_NO_ECDH
1750         if (have_ecdh_tmp)
1751                 {
1752                 mask|=SSL_kECDHE;
1753                 emask|=SSL_kECDHE;
1754                 }
1755 #endif
1756         c->mask=mask;
1757         c->export_mask=emask;
1758         c->valid=1;
1759         }
1760
1761 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */
1762 #define ku_reject(x, usage) \
1763         (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
1764
1765 int check_srvr_ecc_cert_and_alg(X509 *x, SSL_CIPHER *cs)
1766         {
1767         unsigned long alg = cs->algorithms;
1768         EVP_PKEY *pkey = NULL;
1769         int keysize = 0;
1770         int signature_nid = 0;
1771
1772         if (SSL_C_IS_EXPORT(cs))
1773                 {
1774                 /* ECDH key length in export ciphers must be <= 163 bits */
1775                 pkey = X509_get_pubkey(x);
1776                 if (pkey == NULL) return 0;
1777                 keysize = EVP_PKEY_bits(pkey);
1778                 EVP_PKEY_free(pkey);
1779                 if (keysize > 163) return 0;
1780                 }
1781
1782         /* This call populates the ex_flags field correctly */
1783         X509_check_purpose(x, -1, 0);
1784         if ((x->sig_alg) && (x->sig_alg->algorithm))
1785                 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1786         if (alg & SSL_kECDH) 
1787                 {
1788                 /* key usage, if present, must allow key agreement */
1789                 if (ku_reject(x, X509v3_KU_KEY_AGREEMENT))
1790                         {
1791                         return 0;
1792                         }
1793                 if (alg & SSL_aECDSA) 
1794                         {
1795                         /* signature alg must be ECDSA */
1796                         if (signature_nid != NID_ecdsa_with_SHA1)
1797                                 {
1798                                 return 0;
1799                                 }
1800                         }
1801                 if (alg & SSL_aRSA)
1802                         {
1803                         /* signature alg must be RSA */
1804                         if ((signature_nid != NID_md5WithRSAEncryption) &&
1805                             (signature_nid != NID_md4WithRSAEncryption) &&
1806                             (signature_nid != NID_md2WithRSAEncryption))
1807                                 {
1808                                 return 0;
1809                                 }
1810                         }
1811                 } 
1812         else if (alg & SSL_aECDSA)
1813                 {
1814                 /* key usage, if present, must allow signing */
1815                 if (ku_reject(x, X509v3_KU_DIGITAL_SIGNATURE))
1816                         {
1817                         return 0;
1818                         }
1819                 }
1820
1821         return 1;  /* all checks are ok */
1822         }
1823
1824 /* THIS NEEDS CLEANING UP */
1825 X509 *ssl_get_server_send_cert(SSL *s)
1826         {
1827         unsigned long alg,mask,kalg;
1828         CERT *c;
1829         int i,is_export;
1830
1831         c=s->cert;
1832         ssl_set_cert_masks(c, s->s3->tmp.new_cipher);
1833         alg=s->s3->tmp.new_cipher->algorithms;
1834         is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
1835         mask=is_export?c->export_mask:c->mask;
1836         kalg=alg&(SSL_MKEY_MASK|SSL_AUTH_MASK);
1837
1838         if (kalg & SSL_kECDH)
1839                 {
1840                 /* we don't need to look at SSL_kECDHE 
1841                  * since no certificate is needed for
1842                  * anon ECDH and for authenticated
1843                  * ECDHE, the check for the auth 
1844                  * algorithm will set i correctly
1845                  * NOTE: For ECDH-RSA, we need an ECC
1846                  * not an RSA cert but for ECDHE-RSA
1847                  * we need an RSA cert. Placing the
1848                  * checks for SSL_kECDH before RSA
1849                  * checks ensures the correct cert is chosen.
1850                  */
1851                 i=SSL_PKEY_ECC;
1852                 }
1853         else if (kalg & SSL_aECDSA)
1854                 {
1855                 i=SSL_PKEY_ECC;
1856                 }
1857         else if (kalg & SSL_kDHr)
1858                 i=SSL_PKEY_DH_RSA;
1859         else if (kalg & SSL_kDHd)
1860                 i=SSL_PKEY_DH_DSA;
1861         else if (kalg & SSL_aDSS)
1862                 i=SSL_PKEY_DSA_SIGN;
1863         else if (kalg & SSL_aRSA)
1864                 {
1865                 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
1866                         i=SSL_PKEY_RSA_SIGN;
1867                 else
1868                         i=SSL_PKEY_RSA_ENC;
1869                 }
1870         else if (kalg & SSL_aKRB5)
1871                 {
1872                 /* VRS something else here? */
1873                 return(NULL);
1874                 }
1875         else /* if (kalg & SSL_aNULL) */
1876                 {
1877                 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,ERR_R_INTERNAL_ERROR);
1878                 return(NULL);
1879                 }
1880         if (c->pkeys[i].x509 == NULL) return(NULL);
1881
1882         return(c->pkeys[i].x509);
1883         }
1884
1885 EVP_PKEY *ssl_get_sign_pkey(SSL *s,SSL_CIPHER *cipher)
1886         {
1887         unsigned long alg;
1888         CERT *c;
1889
1890         alg=cipher->algorithms;
1891         c=s->cert;
1892
1893         if ((alg & SSL_aDSS) &&
1894                 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
1895                 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey);
1896         else if (alg & SSL_aRSA)
1897                 {
1898                 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
1899                         return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey);
1900                 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
1901                         return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey);
1902                 else
1903                         return(NULL);
1904                 }
1905         else if ((alg & SSL_aECDSA) &&
1906                  (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
1907                 return(c->pkeys[SSL_PKEY_ECC].privatekey);
1908         else /* if (alg & SSL_aNULL) */
1909                 {
1910                 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,ERR_R_INTERNAL_ERROR);
1911                 return(NULL);
1912                 }
1913         }
1914
1915 void ssl_update_cache(SSL *s,int mode)
1916         {
1917         int i;
1918
1919         /* If the session_id_length is 0, we are not supposed to cache it,
1920          * and it would be rather hard to do anyway :-) */
1921         if (s->session->session_id_length == 0) return;
1922
1923         i=s->ctx->session_cache_mode;
1924         if ((i & mode) && (!s->hit)
1925                 && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
1926                     || SSL_CTX_add_session(s->ctx,s->session))
1927                 && (s->ctx->new_session_cb != NULL))
1928                 {
1929                 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION);
1930                 if (!s->ctx->new_session_cb(s,s->session))
1931                         SSL_SESSION_free(s->session);
1932                 }
1933
1934         /* auto flush every 255 connections */
1935         if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) &&
1936                 ((i & mode) == mode))
1937                 {
1938                 if (  (((mode & SSL_SESS_CACHE_CLIENT)
1939                         ?s->ctx->stats.sess_connect_good
1940                         :s->ctx->stats.sess_accept_good) & 0xff) == 0xff)
1941                         {
1942                         SSL_CTX_flush_sessions(s->ctx,(unsigned long)time(NULL));
1943                         }
1944                 }
1945         }
1946
1947 const SSL_METHOD *SSL_get_ssl_method(SSL *s)
1948         {
1949         return(s->method);
1950         }
1951
1952 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
1953         {
1954         int conn= -1;
1955         int ret=1;
1956
1957         if (s->method != meth)
1958                 {
1959                 if (s->handshake_func != NULL)
1960                         conn=(s->handshake_func == s->method->ssl_connect);
1961
1962                 if (s->method->version == meth->version)
1963                         s->method=meth;
1964                 else
1965                         {
1966                         s->method->ssl_free(s);
1967                         s->method=meth;
1968                         ret=s->method->ssl_new(s);
1969                         }
1970
1971                 if (conn == 1)
1972                         s->handshake_func=meth->ssl_connect;
1973                 else if (conn == 0)
1974                         s->handshake_func=meth->ssl_accept;
1975                 }
1976         return(ret);
1977         }
1978
1979 int SSL_get_error(const SSL *s,int i)
1980         {
1981         int reason;
1982         unsigned long l;
1983         BIO *bio;
1984
1985         if (i > 0) return(SSL_ERROR_NONE);
1986
1987         /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
1988          * etc, where we do encode the error */
1989         if ((l=ERR_peek_error()) != 0)
1990                 {
1991                 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
1992                         return(SSL_ERROR_SYSCALL);
1993                 else
1994                         return(SSL_ERROR_SSL);
1995                 }
1996
1997         if ((i < 0) && SSL_want_read(s))
1998                 {
1999                 bio=SSL_get_rbio(s);
2000                 if (BIO_should_read(bio))
2001                         return(SSL_ERROR_WANT_READ);
2002                 else if (BIO_should_write(bio))
2003                         /* This one doesn't make too much sense ... We never try
2004                          * to write to the rbio, and an application program where
2005                          * rbio and wbio are separate couldn't even know what it
2006                          * should wait for.
2007                          * However if we ever set s->rwstate incorrectly
2008                          * (so that we have SSL_want_read(s) instead of
2009                          * SSL_want_write(s)) and rbio and wbio *are* the same,
2010                          * this test works around that bug; so it might be safer
2011                          * to keep it. */
2012                         return(SSL_ERROR_WANT_WRITE);
2013                 else if (BIO_should_io_special(bio))
2014                         {
2015                         reason=BIO_get_retry_reason(bio);
2016                         if (reason == BIO_RR_CONNECT)
2017                                 return(SSL_ERROR_WANT_CONNECT);
2018                         else if (reason == BIO_RR_ACCEPT)
2019                                 return(SSL_ERROR_WANT_ACCEPT);
2020                         else
2021                                 return(SSL_ERROR_SYSCALL); /* unknown */
2022                         }
2023                 }
2024
2025         if ((i < 0) && SSL_want_write(s))
2026                 {
2027                 bio=SSL_get_wbio(s);
2028                 if (BIO_should_write(bio))
2029                         return(SSL_ERROR_WANT_WRITE);
2030                 else if (BIO_should_read(bio))
2031                         /* See above (SSL_want_read(s) with BIO_should_write(bio)) */
2032                         return(SSL_ERROR_WANT_READ);
2033                 else if (BIO_should_io_special(bio))
2034                         {
2035                         reason=BIO_get_retry_reason(bio);
2036                         if (reason == BIO_RR_CONNECT)
2037                                 return(SSL_ERROR_WANT_CONNECT);
2038                         else if (reason == BIO_RR_ACCEPT)
2039                                 return(SSL_ERROR_WANT_ACCEPT);
2040                         else
2041                                 return(SSL_ERROR_SYSCALL);
2042                         }
2043                 }
2044         if ((i < 0) && SSL_want_x509_lookup(s))
2045                 {
2046                 return(SSL_ERROR_WANT_X509_LOOKUP);
2047                 }
2048
2049         if (i == 0)
2050                 {
2051                 if (s->version == SSL2_VERSION)
2052                         {
2053                         /* assume it is the socket being closed */
2054                         return(SSL_ERROR_ZERO_RETURN);
2055                         }
2056                 else
2057                         {
2058                         if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
2059                                 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
2060                                 return(SSL_ERROR_ZERO_RETURN);
2061                         }
2062                 }
2063         return(SSL_ERROR_SYSCALL);
2064         }
2065
2066 int SSL_do_handshake(SSL *s)
2067         {
2068         int ret=1;
2069
2070         if (s->handshake_func == NULL)
2071                 {
2072                 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET);
2073                 return(-1);
2074                 }
2075
2076         s->method->ssl_renegotiate_check(s);
2077
2078         if (SSL_in_init(s) || SSL_in_before(s))
2079                 {
2080                 ret=s->handshake_func(s);
2081                 }
2082         return(ret);
2083         }
2084
2085 /* For the next 2 functions, SSL_clear() sets shutdown and so
2086  * one of these calls will reset it */
2087 void SSL_set_accept_state(SSL *s)
2088         {
2089         s->server=1;
2090         s->shutdown=0;
2091         s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE;
2092         s->handshake_func=s->method->ssl_accept;
2093         /* clear the current cipher */
2094         ssl_clear_cipher_ctx(s);
2095         }
2096
2097 void SSL_set_connect_state(SSL *s)
2098         {
2099         s->server=0;
2100         s->shutdown=0;
2101         s->state=SSL_ST_CONNECT|SSL_ST_BEFORE;
2102         s->handshake_func=s->method->ssl_connect;
2103         /* clear the current cipher */
2104         ssl_clear_cipher_ctx(s);
2105         }
2106
2107 int ssl_undefined_function(SSL *s)
2108         {
2109         SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2110         return(0);
2111         }
2112
2113 int ssl_undefined_void_function(void)
2114         {
2115         SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2116         return(0);
2117         }
2118
2119 int ssl_undefined_const_function(const SSL *s)
2120         {
2121         SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2122         return(0);
2123         }
2124
2125 SSL_METHOD *ssl_bad_method(int ver)
2126         {
2127         SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2128         return(NULL);
2129         }
2130
2131 const char *SSL_get_version(const SSL *s)
2132         {
2133         if (s->version == TLS1_VERSION)
2134                 return("TLSv1");
2135         else if (s->version == SSL3_VERSION)
2136                 return("SSLv3");
2137         else if (s->version == SSL2_VERSION)
2138                 return("SSLv2");
2139         else
2140                 return("unknown");
2141         }
2142
2143 SSL *SSL_dup(SSL *s)
2144         {
2145         STACK_OF(X509_NAME) *sk;
2146         X509_NAME *xn;
2147         SSL *ret;
2148         int i;
2149                  
2150         if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL)
2151             return(NULL);
2152
2153         ret->version = s->version;
2154         ret->type = s->type;
2155         ret->method = s->method;
2156
2157         if (s->session != NULL)
2158                 {
2159                 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2160                 SSL_copy_session_id(ret,s);
2161                 }
2162         else
2163                 {
2164                 /* No session has been established yet, so we have to expect
2165                  * that s->cert or ret->cert will be changed later --
2166                  * they should not both point to the same object,
2167                  * and thus we can't use SSL_copy_session_id. */
2168
2169                 ret->method->ssl_free(ret);
2170                 ret->method = s->method;
2171                 ret->method->ssl_new(ret);
2172
2173                 if (s->cert != NULL)
2174                         {
2175                         if (ret->cert != NULL)
2176                                 {
2177                                 ssl_cert_free(ret->cert);
2178                                 }
2179                         ret->cert = ssl_cert_dup(s->cert);
2180                         if (ret->cert == NULL)
2181                                 goto err;
2182                         }
2183                                 
2184                 SSL_set_session_id_context(ret,
2185                         s->sid_ctx, s->sid_ctx_length);
2186                 }
2187
2188         ret->options=s->options;
2189         ret->mode=s->mode;
2190         SSL_set_max_cert_list(ret,SSL_get_max_cert_list(s));
2191         SSL_set_read_ahead(ret,SSL_get_read_ahead(s));
2192         ret->msg_callback = s->msg_callback;
2193         ret->msg_callback_arg = s->msg_callback_arg;
2194         SSL_set_verify(ret,SSL_get_verify_mode(s),
2195                 SSL_get_verify_callback(s));
2196         SSL_set_verify_depth(ret,SSL_get_verify_depth(s));
2197         ret->generate_session_id = s->generate_session_id;
2198
2199         SSL_set_info_callback(ret,SSL_get_info_callback(s));
2200         
2201         ret->debug=s->debug;
2202
2203         /* copy app data, a little dangerous perhaps */
2204         if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
2205                 goto err;
2206
2207         /* setup rbio, and wbio */
2208         if (s->rbio != NULL)
2209                 {
2210                 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio))
2211                         goto err;
2212                 }
2213         if (s->wbio != NULL)
2214                 {
2215                 if (s->wbio != s->rbio)
2216                         {
2217                         if (!BIO_dup_state(s->wbio,(char *)&ret->wbio))
2218                                 goto err;
2219                         }
2220                 else
2221                         ret->wbio=ret->rbio;
2222                 }
2223         ret->rwstate = s->rwstate;
2224         ret->in_handshake = s->in_handshake;
2225         ret->handshake_func = s->handshake_func;
2226         ret->server = s->server;
2227         ret->new_session = s->new_session;
2228         ret->quiet_shutdown = s->quiet_shutdown;
2229         ret->shutdown=s->shutdown;
2230         ret->state=s->state; /* SSL_dup does not really work at any state, though */
2231         ret->rstate=s->rstate;
2232         ret->init_num = 0; /* would have to copy ret->init_buf, ret->init_msg, ret->init_num, ret->init_off */
2233         ret->hit=s->hit;
2234
2235         X509_VERIFY_PARAM_inherit(ret->param, s->param);
2236
2237         /* dup the cipher_list and cipher_list_by_id stacks */
2238         if (s->cipher_list != NULL)
2239                 {
2240                 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
2241                         goto err;
2242                 }
2243         if (s->cipher_list_by_id != NULL)
2244                 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_id))
2245                         == NULL)
2246                         goto err;
2247
2248         /* Dup the client_CA list */
2249         if (s->client_CA != NULL)
2250                 {
2251                 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
2252                 ret->client_CA=sk;
2253                 for (i=0; i<sk_X509_NAME_num(sk); i++)
2254                         {
2255                         xn=sk_X509_NAME_value(sk,i);
2256                         if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL)
2257                                 {
2258                                 X509_NAME_free(xn);
2259                                 goto err;
2260                                 }
2261                         }
2262                 }
2263
2264         if (0)
2265                 {
2266 err:
2267                 if (ret != NULL) SSL_free(ret);
2268                 ret=NULL;
2269                 }
2270         return(ret);
2271         }
2272
2273 void ssl_clear_cipher_ctx(SSL *s)
2274         {
2275         if (s->enc_read_ctx != NULL)
2276                 {
2277                 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
2278                 OPENSSL_free(s->enc_read_ctx);
2279                 s->enc_read_ctx=NULL;
2280                 }
2281         if (s->enc_write_ctx != NULL)
2282                 {
2283                 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2284                 OPENSSL_free(s->enc_write_ctx);
2285                 s->enc_write_ctx=NULL;
2286                 }
2287 #ifndef OPENSSL_NO_COMP
2288         if (s->expand != NULL)
2289                 {
2290                 COMP_CTX_free(s->expand);
2291                 s->expand=NULL;
2292                 }
2293         if (s->compress != NULL)
2294                 {
2295                 COMP_CTX_free(s->compress);
2296                 s->compress=NULL;
2297                 }
2298 #endif
2299         }
2300
2301 /* Fix this function so that it takes an optional type parameter */
2302 X509 *SSL_get_certificate(const SSL *s)
2303         {
2304         if (s->cert != NULL)
2305                 return(s->cert->key->x509);
2306         else
2307                 return(NULL);
2308         }
2309
2310 /* Fix this function so that it takes an optional type parameter */
2311 EVP_PKEY *SSL_get_privatekey(SSL *s)
2312         {
2313         if (s->cert != NULL)
2314                 return(s->cert->key->privatekey);
2315         else
2316                 return(NULL);
2317         }
2318
2319 SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
2320         {
2321         if ((s->session != NULL) && (s->session->cipher != NULL))
2322                 return(s->session->cipher);
2323         return(NULL);
2324         }
2325 #ifdef OPENSSL_NO_COMP
2326 const void *SSL_get_current_compression(SSL *s)
2327         {
2328         return NULL;
2329         }
2330 const void *SSL_get_current_expansion(SSL *s)
2331         {
2332         return NULL;
2333         }
2334 #else
2335
2336 const COMP_METHOD *SSL_get_current_compression(SSL *s)
2337         {
2338         if (s->compress != NULL)
2339                 return(s->compress->meth);
2340         return(NULL);
2341         }
2342
2343 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
2344         {
2345         if (s->expand != NULL)
2346                 return(s->expand->meth);
2347         return(NULL);
2348         }
2349 #endif
2350
2351 int ssl_init_wbio_buffer(SSL *s,int push)
2352         {
2353         BIO *bbio;
2354
2355         if (s->bbio == NULL)
2356                 {
2357                 bbio=BIO_new(BIO_f_buffer());
2358                 if (bbio == NULL) return(0);
2359                 s->bbio=bbio;
2360                 }
2361         else
2362                 {
2363                 bbio=s->bbio;
2364                 if (s->bbio == s->wbio)
2365                         s->wbio=BIO_pop(s->wbio);
2366                 }
2367         (void)BIO_reset(bbio);
2368 /*      if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2369         if (!BIO_set_read_buffer_size(bbio,1))
2370                 {
2371                 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB);
2372                 return(0);
2373                 }
2374         if (push)
2375                 {
2376                 if (s->wbio != bbio)
2377                         s->wbio=BIO_push(bbio,s->wbio);
2378                 }
2379         else
2380                 {
2381                 if (s->wbio == bbio)
2382                         s->wbio=BIO_pop(bbio);
2383                 }
2384         return(1);
2385         }
2386
2387 void ssl_free_wbio_buffer(SSL *s)
2388         {
2389         if (s->bbio == NULL) return;
2390
2391         if (s->bbio == s->wbio)
2392                 {
2393                 /* remove buffering */
2394                 s->wbio=BIO_pop(s->wbio);
2395 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids adding one more preprocessor symbol */
2396                 assert(s->wbio != NULL);
2397 #endif  
2398         }
2399         BIO_free(s->bbio);
2400         s->bbio=NULL;
2401         }
2402         
2403 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode)
2404         {
2405         ctx->quiet_shutdown=mode;
2406         }
2407
2408 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
2409         {
2410         return(ctx->quiet_shutdown);
2411         }
2412
2413 void SSL_set_quiet_shutdown(SSL *s,int mode)
2414         {
2415         s->quiet_shutdown=mode;
2416         }
2417
2418 int SSL_get_quiet_shutdown(const SSL *s)
2419         {
2420         return(s->quiet_shutdown);
2421         }
2422
2423 void SSL_set_shutdown(SSL *s,int mode)
2424         {
2425         s->shutdown=mode;
2426         }
2427
2428 int SSL_get_shutdown(const SSL *s)
2429         {
2430         return(s->shutdown);
2431         }
2432
2433 int SSL_version(const SSL *s)
2434         {
2435         return(s->version);
2436         }
2437
2438 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
2439         {
2440         return(ssl->ctx);
2441         }
2442
2443 SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX* ctx)
2444         {
2445
2446         if (ssl->cert != NULL)
2447                 ssl_cert_free(ssl->cert);
2448         ssl->cert = ssl_cert_dup(ctx->cert);
2449         CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
2450         if (ssl->ctx != NULL)
2451                 SSL_CTX_free(ssl->ctx); /* decrement reference count */
2452         ssl->ctx = ctx;
2453         return(ssl->ctx);
2454         }
2455
2456 #ifndef OPENSSL_NO_STDIO
2457 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
2458         {
2459         return(X509_STORE_set_default_paths(ctx->cert_store));
2460         }
2461
2462 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
2463                 const char *CApath)
2464         {
2465         return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
2466         }
2467 #endif
2468
2469 void SSL_set_info_callback(SSL *ssl,
2470                            void (*cb)(const SSL *ssl,int type,int val))
2471         {
2472         ssl->info_callback=cb;
2473         }
2474
2475 /* One compiler (Diab DCC) doesn't like argument names in returned
2476    function pointer.  */
2477 void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /*ssl*/,int /*type*/,int /*val*/)
2478         {
2479         return ssl->info_callback;
2480         }
2481
2482 int SSL_state(const SSL *ssl)
2483         {
2484         return(ssl->state);
2485         }
2486
2487 void SSL_set_verify_result(SSL *ssl,long arg)
2488         {
2489         ssl->verify_result=arg;
2490         }
2491
2492 long SSL_get_verify_result(const SSL *ssl)
2493         {
2494         return(ssl->verify_result);
2495         }
2496
2497 int SSL_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2498                          CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2499         {
2500         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp,
2501                                 new_func, dup_func, free_func);
2502         }
2503
2504 int SSL_set_ex_data(SSL *s,int idx,void *arg)
2505         {
2506         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2507         }
2508
2509 void *SSL_get_ex_data(const SSL *s,int idx)
2510         {
2511         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2512         }
2513
2514 int SSL_CTX_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2515                              CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2516         {
2517         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp,
2518                                 new_func, dup_func, free_func);
2519         }
2520
2521 int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg)
2522         {
2523         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2524         }
2525
2526 void *SSL_CTX_get_ex_data(const SSL_CTX *s,int idx)
2527         {
2528         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2529         }
2530
2531 int ssl_ok(SSL *s)
2532         {
2533         return(1);
2534         }
2535
2536 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
2537         {
2538         return(ctx->cert_store);
2539         }
2540
2541 void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store)
2542         {
2543         if (ctx->cert_store != NULL)
2544                 X509_STORE_free(ctx->cert_store);
2545         ctx->cert_store=store;
2546         }
2547
2548 int SSL_want(const SSL *s)
2549         {
2550         return(s->rwstate);
2551         }
2552
2553 /*!
2554  * \brief Set the callback for generating temporary RSA keys.
2555  * \param ctx the SSL context.
2556  * \param cb the callback
2557  */
2558
2559 #ifndef OPENSSL_NO_RSA
2560 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl,
2561                                                           int is_export,
2562                                                           int keylength))
2563     {
2564     SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2565     }
2566
2567 void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl,
2568                                                   int is_export,
2569                                                   int keylength))
2570     {
2571     SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2572     }
2573 #endif
2574
2575 #ifdef DOXYGEN
2576 /*!
2577  * \brief The RSA temporary key callback function.
2578  * \param ssl the SSL session.
2579  * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
2580  * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
2581  * of the required key in bits.
2582  * \return the temporary RSA key.
2583  * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
2584  */
2585
2586 RSA *cb(SSL *ssl,int is_export,int keylength)
2587     {}
2588 #endif
2589
2590 /*!
2591  * \brief Set the callback for generating temporary DH keys.
2592  * \param ctx the SSL context.
2593  * \param dh the callback
2594  */
2595
2596 #ifndef OPENSSL_NO_DH
2597 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int is_export,
2598                                                         int keylength))
2599         {
2600         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2601         }
2602
2603 void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int is_export,
2604                                                 int keylength))
2605         {
2606         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2607         }
2608 #endif
2609
2610 #ifndef OPENSSL_NO_ECDH
2611 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2612                                                         int keylength))
2613         {
2614         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2615         }
2616
2617 void SSL_set_tmp_ecdh_callback(SSL *ssl,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2618                                                 int keylength))
2619         {
2620         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2621         }
2622 #endif
2623
2624
2625 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))
2626         {
2627         SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2628         }
2629 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg))
2630         {
2631         SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2632         }
2633
2634
2635
2636 #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
2637 #include "../crypto/bio/bss_file.c"
2638 #endif
2639
2640 IMPLEMENT_STACK_OF(SSL_CIPHER)
2641 IMPLEMENT_STACK_OF(SSL_COMP)