wq instead of wp? That's gotta be among the more amazing typos I've
[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 unsigned long SSL_SESSION_hash(const SSL_SESSION *a)
1319         {
1320         unsigned long l;
1321
1322         l=(unsigned long)
1323                 ((unsigned int) a->session_id[0]     )|
1324                 ((unsigned int) a->session_id[1]<< 8L)|
1325                 ((unsigned long)a->session_id[2]<<16L)|
1326                 ((unsigned long)a->session_id[3]<<24L);
1327         return(l);
1328         }
1329
1330 /* NB: If this function (or indeed the hash function which uses a sort of
1331  * coarser function than this one) is changed, ensure
1332  * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being
1333  * able to construct an SSL_SESSION that will collide with any existing session
1334  * with a matching session ID. */
1335 int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b)
1336         {
1337         if (a->ssl_version != b->ssl_version)
1338                 return(1);
1339         if (a->session_id_length != b->session_id_length)
1340                 return(1);
1341         return(memcmp(a->session_id,b->session_id,a->session_id_length));
1342         }
1343
1344 /* These wrapper functions should remain rather than redeclaring
1345  * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
1346  * variable. The reason is that the functions aren't static, they're exposed via
1347  * ssl.h. */
1348 static IMPLEMENT_LHASH_HASH_FN(SSL_SESSION_hash, SSL_SESSION *)
1349 static IMPLEMENT_LHASH_COMP_FN(SSL_SESSION_cmp, SSL_SESSION *)
1350
1351 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
1352         {
1353         SSL_CTX *ret=NULL;
1354         
1355         if (meth == NULL)
1356                 {
1357                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_NULL_SSL_METHOD_PASSED);
1358                 return(NULL);
1359                 }
1360
1361         if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
1362                 {
1363                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
1364                 goto err;
1365                 }
1366         ret=(SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX));
1367         if (ret == NULL)
1368                 goto err;
1369
1370         memset(ret,0,sizeof(SSL_CTX));
1371
1372         ret->method=meth;
1373
1374         ret->cert_store=NULL;
1375         ret->session_cache_mode=SSL_SESS_CACHE_SERVER;
1376         ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
1377         ret->session_cache_head=NULL;
1378         ret->session_cache_tail=NULL;
1379
1380         /* We take the system default */
1381         ret->session_timeout=meth->get_timeout();
1382
1383         ret->new_session_cb=0;
1384         ret->remove_session_cb=0;
1385         ret->get_session_cb=0;
1386         ret->generate_session_id=0;
1387
1388         memset((char *)&ret->stats,0,sizeof(ret->stats));
1389
1390         ret->references=1;
1391         ret->quiet_shutdown=0;
1392
1393 /*      ret->cipher=NULL;*/
1394 /*      ret->s2->challenge=NULL;
1395         ret->master_key=NULL;
1396         ret->key_arg=NULL;
1397         ret->s2->conn_id=NULL; */
1398
1399         ret->info_callback=NULL;
1400
1401         ret->app_verify_callback=0;
1402         ret->app_verify_arg=NULL;
1403
1404         ret->max_cert_list=SSL_MAX_CERT_LIST_DEFAULT;
1405         ret->read_ahead=0;
1406         ret->msg_callback=0;
1407         ret->msg_callback_arg=NULL;
1408         ret->verify_mode=SSL_VERIFY_NONE;
1409 #if 0
1410         ret->verify_depth=-1; /* Don't impose a limit (but x509_lu.c does) */
1411 #endif
1412         ret->sid_ctx_length=0;
1413         ret->default_verify_callback=NULL;
1414         if ((ret->cert=ssl_cert_new()) == NULL)
1415                 goto err;
1416
1417         ret->default_passwd_callback=0;
1418         ret->default_passwd_callback_userdata=NULL;
1419         ret->client_cert_cb=0;
1420         ret->app_gen_cookie_cb=0;
1421         ret->app_verify_cookie_cb=0;
1422
1423         ret->sessions=lh_new(LHASH_HASH_FN(SSL_SESSION_hash),
1424                         LHASH_COMP_FN(SSL_SESSION_cmp));
1425         if (ret->sessions == NULL) goto err;
1426         ret->cert_store=X509_STORE_new();
1427         if (ret->cert_store == NULL) goto err;
1428
1429         ssl_create_cipher_list(ret->method,
1430                 &ret->cipher_list,&ret->cipher_list_by_id,
1431                 SSL_DEFAULT_CIPHER_LIST);
1432         if (ret->cipher_list == NULL
1433             || sk_SSL_CIPHER_num(ret->cipher_list) <= 0)
1434                 {
1435                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS);
1436                 goto err2;
1437                 }
1438
1439         ret->param = X509_VERIFY_PARAM_new();
1440         if (!ret->param)
1441                 goto err;
1442
1443         if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL)
1444                 {
1445                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES);
1446                 goto err2;
1447                 }
1448         if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL)
1449                 {
1450                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1451                 goto err2;
1452                 }
1453         if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL)
1454                 {
1455                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1456                 goto err2;
1457                 }
1458
1459         if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
1460                 goto err;
1461
1462         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
1463
1464         ret->extra_certs=NULL;
1465         ret->comp_methods=SSL_COMP_get_compression_methods();
1466
1467         ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
1468
1469         return(ret);
1470 err:
1471         SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);
1472 err2:
1473         if (ret != NULL) SSL_CTX_free(ret);
1474         return(NULL);
1475         }
1476
1477 #if 0
1478 static void SSL_COMP_free(SSL_COMP *comp)
1479     { OPENSSL_free(comp); }
1480 #endif
1481
1482 void SSL_CTX_free(SSL_CTX *a)
1483         {
1484         int i;
1485
1486         if (a == NULL) return;
1487
1488         i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX);
1489 #ifdef REF_PRINT
1490         REF_PRINT("SSL_CTX",a);
1491 #endif
1492         if (i > 0) return;
1493 #ifdef REF_CHECK
1494         if (i < 0)
1495                 {
1496                 fprintf(stderr,"SSL_CTX_free, bad reference count\n");
1497                 abort(); /* ok */
1498                 }
1499 #endif
1500
1501         if (a->param)
1502                 X509_VERIFY_PARAM_free(a->param);
1503
1504         /*
1505          * Free internal session cache. However: the remove_cb() may reference
1506          * the ex_data of SSL_CTX, thus the ex_data store can only be removed
1507          * after the sessions were flushed.
1508          * As the ex_data handling routines might also touch the session cache,
1509          * the most secure solution seems to be: empty (flush) the cache, then
1510          * free ex_data, then finally free the cache.
1511          * (See ticket [openssl.org #212].)
1512          */
1513         if (a->sessions != NULL)
1514                 SSL_CTX_flush_sessions(a,0);
1515
1516         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
1517
1518         if (a->sessions != NULL)
1519                 lh_free(a->sessions);
1520
1521         if (a->cert_store != NULL)
1522                 X509_STORE_free(a->cert_store);
1523         if (a->cipher_list != NULL)
1524                 sk_SSL_CIPHER_free(a->cipher_list);
1525         if (a->cipher_list_by_id != NULL)
1526                 sk_SSL_CIPHER_free(a->cipher_list_by_id);
1527         if (a->cert != NULL)
1528                 ssl_cert_free(a->cert);
1529         if (a->client_CA != NULL)
1530                 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
1531         if (a->extra_certs != NULL)
1532                 sk_X509_pop_free(a->extra_certs,X509_free);
1533 #if 0 /* This should never be done, since it removes a global database */
1534         if (a->comp_methods != NULL)
1535                 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free);
1536 #else
1537         a->comp_methods = NULL;
1538 #endif
1539         OPENSSL_free(a);
1540         }
1541
1542 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
1543         {
1544         ctx->default_passwd_callback=cb;
1545         }
1546
1547 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,void *u)
1548         {
1549         ctx->default_passwd_callback_userdata=u;
1550         }
1551
1552 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg)
1553         {
1554         ctx->app_verify_callback=cb;
1555         ctx->app_verify_arg=arg;
1556         }
1557
1558 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
1559         {
1560         ctx->verify_mode=mode;
1561         ctx->default_verify_callback=cb;
1562         }
1563
1564 void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth)
1565         {
1566         X509_VERIFY_PARAM_set_depth(ctx->param, depth);
1567         }
1568
1569 void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
1570         {
1571         CERT_PKEY *cpk;
1572         int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign;
1573         int rsa_enc_export,dh_rsa_export,dh_dsa_export;
1574         int rsa_tmp_export,dh_tmp_export,kl;
1575         unsigned long mask,emask;
1576         int have_ecc_cert, ecdh_ok, ecdsa_ok, ecc_pkey_size;
1577 #ifndef OPENSSL_NO_ECDH
1578         int have_ecdh_tmp;
1579 #endif
1580         X509 *x = NULL;
1581         EVP_PKEY *ecc_pkey = NULL;
1582         int signature_nid = 0;
1583
1584         if (c == NULL) return;
1585
1586         kl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1587
1588 #ifndef OPENSSL_NO_RSA
1589         rsa_tmp=(c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
1590         rsa_tmp_export=(c->rsa_tmp_cb != NULL ||
1591                 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl));
1592 #else
1593         rsa_tmp=rsa_tmp_export=0;
1594 #endif
1595 #ifndef OPENSSL_NO_DH
1596         dh_tmp=(c->dh_tmp != NULL || c->dh_tmp_cb != NULL);
1597         dh_tmp_export=(c->dh_tmp_cb != NULL ||
1598                 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl));
1599 #else
1600         dh_tmp=dh_tmp_export=0;
1601 #endif
1602
1603 #ifndef OPENSSL_NO_ECDH
1604         have_ecdh_tmp=(c->ecdh_tmp != NULL || c->ecdh_tmp_cb != NULL);
1605 #endif
1606         cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]);
1607         rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
1608         rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1609         cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]);
1610         rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1611         cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]);
1612         dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1613         cpk= &(c->pkeys[SSL_PKEY_DH_RSA]);
1614         dh_rsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1615         dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1616         cpk= &(c->pkeys[SSL_PKEY_DH_DSA]);
1617 /* FIX THIS EAY EAY EAY */
1618         dh_dsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1619         dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1620         cpk= &(c->pkeys[SSL_PKEY_ECC]);
1621         have_ecc_cert= (cpk->x509 != NULL && cpk->privatekey != NULL);
1622         mask=0;
1623         emask=0;
1624
1625 #ifdef CIPHER_DEBUG
1626         printf("rt=%d rte=%d dht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1627                 rsa_tmp,rsa_tmp_export,dh_tmp,
1628                 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
1629 #endif
1630
1631         if (rsa_enc || (rsa_tmp && rsa_sign))
1632                 mask|=SSL_kRSA;
1633         if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
1634                 emask|=SSL_kRSA;
1635
1636 #if 0
1637         /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1638         if (    (dh_tmp || dh_rsa || dh_dsa) && 
1639                 (rsa_enc || rsa_sign || dsa_sign))
1640                 mask|=SSL_kEDH;
1641         if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) &&
1642                 (rsa_enc || rsa_sign || dsa_sign))
1643                 emask|=SSL_kEDH;
1644 #endif
1645
1646         if (dh_tmp_export) 
1647                 emask|=SSL_kEDH;
1648
1649         if (dh_tmp)
1650                 mask|=SSL_kEDH;
1651
1652         if (dh_rsa) mask|=SSL_kDHr;
1653         if (dh_rsa_export) emask|=SSL_kDHr;
1654
1655         if (dh_dsa) mask|=SSL_kDHd;
1656         if (dh_dsa_export) emask|=SSL_kDHd;
1657
1658         if (rsa_enc || rsa_sign)
1659                 {
1660                 mask|=SSL_aRSA;
1661                 emask|=SSL_aRSA;
1662                 }
1663
1664         if (dsa_sign)
1665                 {
1666                 mask|=SSL_aDSS;
1667                 emask|=SSL_aDSS;
1668                 }
1669
1670         mask|=SSL_aNULL;
1671         emask|=SSL_aNULL;
1672
1673 #ifndef OPENSSL_NO_KRB5
1674         mask|=SSL_kKRB5|SSL_aKRB5;
1675         emask|=SSL_kKRB5|SSL_aKRB5;
1676 #endif
1677
1678         /* An ECC certificate may be usable for ECDH and/or
1679          * ECDSA cipher suites depending on the key usage extension.
1680          */
1681         if (have_ecc_cert)
1682                 {
1683                 /* This call populates extension flags (ex_flags) */
1684                 x = (c->pkeys[SSL_PKEY_ECC]).x509;
1685                 X509_check_purpose(x, -1, 0);
1686                 ecdh_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1687                     (x->ex_kusage & X509v3_KU_KEY_AGREEMENT) : 1;
1688                 ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1689                     (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) : 1;
1690                 ecc_pkey = X509_get_pubkey(x);
1691                 ecc_pkey_size = (ecc_pkey != NULL) ? 
1692                     EVP_PKEY_bits(ecc_pkey) : 0;
1693                 EVP_PKEY_free(ecc_pkey);
1694                 if ((x->sig_alg) && (x->sig_alg->algorithm))
1695                         signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1696 #ifndef OPENSSL_NO_ECDH
1697                 if (ecdh_ok)
1698                         {
1699                         if ((signature_nid == NID_md5WithRSAEncryption) ||
1700                             (signature_nid == NID_md4WithRSAEncryption) ||
1701                             (signature_nid == NID_md2WithRSAEncryption))
1702                                 {
1703                                 mask|=SSL_kECDH|SSL_aRSA;
1704                                 if (ecc_pkey_size <= 163)
1705                                         emask|=SSL_kECDH|SSL_aRSA;
1706                                 }
1707                         if (signature_nid == NID_ecdsa_with_SHA1)
1708                                 {
1709                                 mask|=SSL_kECDH|SSL_aECDSA;
1710                                 if (ecc_pkey_size <= 163)
1711                                         emask|=SSL_kECDH|SSL_aECDSA;
1712                                 }
1713                         }
1714 #endif
1715 #ifndef OPENSSL_NO_ECDSA
1716                 if (ecdsa_ok)
1717                         {
1718                         mask|=SSL_aECDSA;
1719                         emask|=SSL_aECDSA;
1720                         }
1721 #endif
1722                 }
1723
1724 #ifndef OPENSSL_NO_ECDH
1725         if (have_ecdh_tmp)
1726                 {
1727                 mask|=SSL_kECDHE;
1728                 emask|=SSL_kECDHE;
1729                 }
1730 #endif
1731         c->mask=mask;
1732         c->export_mask=emask;
1733         c->valid=1;
1734         }
1735
1736 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */
1737 #define ku_reject(x, usage) \
1738         (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
1739
1740 int check_srvr_ecc_cert_and_alg(X509 *x, SSL_CIPHER *cs)
1741         {
1742         unsigned long alg = cs->algorithms;
1743         EVP_PKEY *pkey = NULL;
1744         int keysize = 0;
1745         int signature_nid = 0;
1746
1747         if (SSL_C_IS_EXPORT(cs))
1748                 {
1749                 /* ECDH key length in export ciphers must be <= 163 bits */
1750                 pkey = X509_get_pubkey(x);
1751                 if (pkey == NULL) return 0;
1752                 keysize = EVP_PKEY_bits(pkey);
1753                 EVP_PKEY_free(pkey);
1754                 if (keysize > 163) return 0;
1755                 }
1756
1757         /* This call populates the ex_flags field correctly */
1758         X509_check_purpose(x, -1, 0);
1759         if ((x->sig_alg) && (x->sig_alg->algorithm))
1760                 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1761         if (alg & SSL_kECDH) 
1762                 {
1763                 /* key usage, if present, must allow key agreement */
1764                 if (ku_reject(x, X509v3_KU_KEY_AGREEMENT))
1765                         {
1766                         return 0;
1767                         }
1768                 if (alg & SSL_aECDSA) 
1769                         {
1770                         /* signature alg must be ECDSA */
1771                         if (signature_nid != NID_ecdsa_with_SHA1)
1772                                 {
1773                                 return 0;
1774                                 }
1775                         }
1776                 if (alg & SSL_aRSA)
1777                         {
1778                         /* signature alg must be RSA */
1779                         if ((signature_nid != NID_md5WithRSAEncryption) &&
1780                             (signature_nid != NID_md4WithRSAEncryption) &&
1781                             (signature_nid != NID_md2WithRSAEncryption))
1782                                 {
1783                                 return 0;
1784                                 }
1785                         }
1786                 } 
1787         else if (alg & SSL_aECDSA)
1788                 {
1789                 /* key usage, if present, must allow signing */
1790                 if (ku_reject(x, X509v3_KU_DIGITAL_SIGNATURE))
1791                         {
1792                         return 0;
1793                         }
1794                 }
1795
1796         return 1;  /* all checks are ok */
1797         }
1798
1799 /* THIS NEEDS CLEANING UP */
1800 X509 *ssl_get_server_send_cert(SSL *s)
1801         {
1802         unsigned long alg,mask,kalg;
1803         CERT *c;
1804         int i,is_export;
1805
1806         c=s->cert;
1807         ssl_set_cert_masks(c, s->s3->tmp.new_cipher);
1808         alg=s->s3->tmp.new_cipher->algorithms;
1809         is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
1810         mask=is_export?c->export_mask:c->mask;
1811         kalg=alg&(SSL_MKEY_MASK|SSL_AUTH_MASK);
1812
1813         if (kalg & SSL_kECDH)
1814                 {
1815                 /* we don't need to look at SSL_kECDHE 
1816                  * since no certificate is needed for
1817                  * anon ECDH and for authenticated
1818                  * ECDHE, the check for the auth 
1819                  * algorithm will set i correctly
1820                  * NOTE: For ECDH-RSA, we need an ECC
1821                  * not an RSA cert but for ECDHE-RSA
1822                  * we need an RSA cert. Placing the
1823                  * checks for SSL_kECDH before RSA
1824                  * checks ensures the correct cert is chosen.
1825                  */
1826                 i=SSL_PKEY_ECC;
1827                 }
1828         else if (kalg & SSL_aECDSA)
1829                 {
1830                 i=SSL_PKEY_ECC;
1831                 }
1832         else if (kalg & SSL_kDHr)
1833                 i=SSL_PKEY_DH_RSA;
1834         else if (kalg & SSL_kDHd)
1835                 i=SSL_PKEY_DH_DSA;
1836         else if (kalg & SSL_aDSS)
1837                 i=SSL_PKEY_DSA_SIGN;
1838         else if (kalg & SSL_aRSA)
1839                 {
1840                 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
1841                         i=SSL_PKEY_RSA_SIGN;
1842                 else
1843                         i=SSL_PKEY_RSA_ENC;
1844                 }
1845         else if (kalg & SSL_aKRB5)
1846                 {
1847                 /* VRS something else here? */
1848                 return(NULL);
1849                 }
1850         else /* if (kalg & SSL_aNULL) */
1851                 {
1852                 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,ERR_R_INTERNAL_ERROR);
1853                 return(NULL);
1854                 }
1855         if (c->pkeys[i].x509 == NULL) return(NULL);
1856
1857         return(c->pkeys[i].x509);
1858         }
1859
1860 EVP_PKEY *ssl_get_sign_pkey(SSL *s,SSL_CIPHER *cipher)
1861         {
1862         unsigned long alg;
1863         CERT *c;
1864
1865         alg=cipher->algorithms;
1866         c=s->cert;
1867
1868         if ((alg & SSL_aDSS) &&
1869                 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
1870                 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey);
1871         else if (alg & SSL_aRSA)
1872                 {
1873                 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
1874                         return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey);
1875                 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
1876                         return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey);
1877                 else
1878                         return(NULL);
1879                 }
1880         else if ((alg & SSL_aECDSA) &&
1881                  (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
1882                 return(c->pkeys[SSL_PKEY_ECC].privatekey);
1883         else /* if (alg & SSL_aNULL) */
1884                 {
1885                 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,ERR_R_INTERNAL_ERROR);
1886                 return(NULL);
1887                 }
1888         }
1889
1890 void ssl_update_cache(SSL *s,int mode)
1891         {
1892         int i;
1893
1894         /* If the session_id_length is 0, we are not supposed to cache it,
1895          * and it would be rather hard to do anyway :-) */
1896         if (s->session->session_id_length == 0) return;
1897
1898         i=s->ctx->session_cache_mode;
1899         if ((i & mode) && (!s->hit)
1900                 && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
1901                     || SSL_CTX_add_session(s->ctx,s->session))
1902                 && (s->ctx->new_session_cb != NULL))
1903                 {
1904                 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION);
1905                 if (!s->ctx->new_session_cb(s,s->session))
1906                         SSL_SESSION_free(s->session);
1907                 }
1908
1909         /* auto flush every 255 connections */
1910         if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) &&
1911                 ((i & mode) == mode))
1912                 {
1913                 if (  (((mode & SSL_SESS_CACHE_CLIENT)
1914                         ?s->ctx->stats.sess_connect_good
1915                         :s->ctx->stats.sess_accept_good) & 0xff) == 0xff)
1916                         {
1917                         SSL_CTX_flush_sessions(s->ctx,time(NULL));
1918                         }
1919                 }
1920         }
1921
1922 const SSL_METHOD *SSL_get_ssl_method(SSL *s)
1923         {
1924         return(s->method);
1925         }
1926
1927 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth)
1928         {
1929         int conn= -1;
1930         int ret=1;
1931
1932         if (s->method != meth)
1933                 {
1934                 if (s->handshake_func != NULL)
1935                         conn=(s->handshake_func == s->method->ssl_connect);
1936
1937                 if (s->method->version == meth->version)
1938                         s->method=meth;
1939                 else
1940                         {
1941                         s->method->ssl_free(s);
1942                         s->method=meth;
1943                         ret=s->method->ssl_new(s);
1944                         }
1945
1946                 if (conn == 1)
1947                         s->handshake_func=meth->ssl_connect;
1948                 else if (conn == 0)
1949                         s->handshake_func=meth->ssl_accept;
1950                 }
1951         return(ret);
1952         }
1953
1954 int SSL_get_error(const SSL *s,int i)
1955         {
1956         int reason;
1957         unsigned long l;
1958         BIO *bio;
1959
1960         if (i > 0) return(SSL_ERROR_NONE);
1961
1962         /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
1963          * etc, where we do encode the error */
1964         if ((l=ERR_peek_error()) != 0)
1965                 {
1966                 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
1967                         return(SSL_ERROR_SYSCALL);
1968                 else
1969                         return(SSL_ERROR_SSL);
1970                 }
1971
1972         if ((i < 0) && SSL_want_read(s))
1973                 {
1974                 bio=SSL_get_rbio(s);
1975                 if (BIO_should_read(bio))
1976                         return(SSL_ERROR_WANT_READ);
1977                 else if (BIO_should_write(bio))
1978                         /* This one doesn't make too much sense ... We never try
1979                          * to write to the rbio, and an application program where
1980                          * rbio and wbio are separate couldn't even know what it
1981                          * should wait for.
1982                          * However if we ever set s->rwstate incorrectly
1983                          * (so that we have SSL_want_read(s) instead of
1984                          * SSL_want_write(s)) and rbio and wbio *are* the same,
1985                          * this test works around that bug; so it might be safer
1986                          * to keep it. */
1987                         return(SSL_ERROR_WANT_WRITE);
1988                 else if (BIO_should_io_special(bio))
1989                         {
1990                         reason=BIO_get_retry_reason(bio);
1991                         if (reason == BIO_RR_CONNECT)
1992                                 return(SSL_ERROR_WANT_CONNECT);
1993                         else if (reason == BIO_RR_ACCEPT)
1994                                 return(SSL_ERROR_WANT_ACCEPT);
1995                         else
1996                                 return(SSL_ERROR_SYSCALL); /* unknown */
1997                         }
1998                 }
1999
2000         if ((i < 0) && SSL_want_write(s))
2001                 {
2002                 bio=SSL_get_wbio(s);
2003                 if (BIO_should_write(bio))
2004                         return(SSL_ERROR_WANT_WRITE);
2005                 else if (BIO_should_read(bio))
2006                         /* See above (SSL_want_read(s) with BIO_should_write(bio)) */
2007                         return(SSL_ERROR_WANT_READ);
2008                 else if (BIO_should_io_special(bio))
2009                         {
2010                         reason=BIO_get_retry_reason(bio);
2011                         if (reason == BIO_RR_CONNECT)
2012                                 return(SSL_ERROR_WANT_CONNECT);
2013                         else if (reason == BIO_RR_ACCEPT)
2014                                 return(SSL_ERROR_WANT_ACCEPT);
2015                         else
2016                                 return(SSL_ERROR_SYSCALL);
2017                         }
2018                 }
2019         if ((i < 0) && SSL_want_x509_lookup(s))
2020                 {
2021                 return(SSL_ERROR_WANT_X509_LOOKUP);
2022                 }
2023
2024         if (i == 0)
2025                 {
2026                 if (s->version == SSL2_VERSION)
2027                         {
2028                         /* assume it is the socket being closed */
2029                         return(SSL_ERROR_ZERO_RETURN);
2030                         }
2031                 else
2032                         {
2033                         if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
2034                                 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
2035                                 return(SSL_ERROR_ZERO_RETURN);
2036                         }
2037                 }
2038         return(SSL_ERROR_SYSCALL);
2039         }
2040
2041 int SSL_do_handshake(SSL *s)
2042         {
2043         int ret=1;
2044
2045         if (s->handshake_func == NULL)
2046                 {
2047                 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET);
2048                 return(-1);
2049                 }
2050
2051         s->method->ssl_renegotiate_check(s);
2052
2053         if (SSL_in_init(s) || SSL_in_before(s))
2054                 {
2055                 ret=s->handshake_func(s);
2056                 }
2057         return(ret);
2058         }
2059
2060 /* For the next 2 functions, SSL_clear() sets shutdown and so
2061  * one of these calls will reset it */
2062 void SSL_set_accept_state(SSL *s)
2063         {
2064         s->server=1;
2065         s->shutdown=0;
2066         s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE;
2067         s->handshake_func=s->method->ssl_accept;
2068         /* clear the current cipher */
2069         ssl_clear_cipher_ctx(s);
2070         }
2071
2072 void SSL_set_connect_state(SSL *s)
2073         {
2074         s->server=0;
2075         s->shutdown=0;
2076         s->state=SSL_ST_CONNECT|SSL_ST_BEFORE;
2077         s->handshake_func=s->method->ssl_connect;
2078         /* clear the current cipher */
2079         ssl_clear_cipher_ctx(s);
2080         }
2081
2082 int ssl_undefined_function(SSL *s)
2083         {
2084         SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2085         return(0);
2086         }
2087
2088 int ssl_undefined_void_function(void)
2089         {
2090         SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2091         return(0);
2092         }
2093
2094 int ssl_undefined_const_function(const SSL *s)
2095         {
2096         SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2097         return(0);
2098         }
2099
2100 SSL_METHOD *ssl_bad_method(int ver)
2101         {
2102         SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2103         return(NULL);
2104         }
2105
2106 const char *SSL_get_version(const SSL *s)
2107         {
2108         if (s->version == TLS1_VERSION)
2109                 return("TLSv1");
2110         else if (s->version == SSL3_VERSION)
2111                 return("SSLv3");
2112         else if (s->version == SSL2_VERSION)
2113                 return("SSLv2");
2114         else
2115                 return("unknown");
2116         }
2117
2118 SSL *SSL_dup(SSL *s)
2119         {
2120         STACK_OF(X509_NAME) *sk;
2121         X509_NAME *xn;
2122         SSL *ret;
2123         int i;
2124                  
2125         if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL)
2126             return(NULL);
2127
2128         ret->version = s->version;
2129         ret->type = s->type;
2130         ret->method = s->method;
2131
2132         if (s->session != NULL)
2133                 {
2134                 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2135                 SSL_copy_session_id(ret,s);
2136                 }
2137         else
2138                 {
2139                 /* No session has been established yet, so we have to expect
2140                  * that s->cert or ret->cert will be changed later --
2141                  * they should not both point to the same object,
2142                  * and thus we can't use SSL_copy_session_id. */
2143
2144                 ret->method->ssl_free(ret);
2145                 ret->method = s->method;
2146                 ret->method->ssl_new(ret);
2147
2148                 if (s->cert != NULL)
2149                         {
2150                         if (ret->cert != NULL)
2151                                 {
2152                                 ssl_cert_free(ret->cert);
2153                                 }
2154                         ret->cert = ssl_cert_dup(s->cert);
2155                         if (ret->cert == NULL)
2156                                 goto err;
2157                         }
2158                                 
2159                 SSL_set_session_id_context(ret,
2160                         s->sid_ctx, s->sid_ctx_length);
2161                 }
2162
2163         ret->options=s->options;
2164         ret->mode=s->mode;
2165         SSL_set_max_cert_list(ret,SSL_get_max_cert_list(s));
2166         SSL_set_read_ahead(ret,SSL_get_read_ahead(s));
2167         ret->msg_callback = s->msg_callback;
2168         ret->msg_callback_arg = s->msg_callback_arg;
2169         SSL_set_verify(ret,SSL_get_verify_mode(s),
2170                 SSL_get_verify_callback(s));
2171         SSL_set_verify_depth(ret,SSL_get_verify_depth(s));
2172         ret->generate_session_id = s->generate_session_id;
2173
2174         SSL_set_info_callback(ret,SSL_get_info_callback(s));
2175         
2176         ret->debug=s->debug;
2177
2178         /* copy app data, a little dangerous perhaps */
2179         if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
2180                 goto err;
2181
2182         /* setup rbio, and wbio */
2183         if (s->rbio != NULL)
2184                 {
2185                 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio))
2186                         goto err;
2187                 }
2188         if (s->wbio != NULL)
2189                 {
2190                 if (s->wbio != s->rbio)
2191                         {
2192                         if (!BIO_dup_state(s->wbio,(char *)&ret->wbio))
2193                                 goto err;
2194                         }
2195                 else
2196                         ret->wbio=ret->rbio;
2197                 }
2198         ret->rwstate = s->rwstate;
2199         ret->in_handshake = s->in_handshake;
2200         ret->handshake_func = s->handshake_func;
2201         ret->server = s->server;
2202         ret->new_session = s->new_session;
2203         ret->quiet_shutdown = s->quiet_shutdown;
2204         ret->shutdown=s->shutdown;
2205         ret->state=s->state; /* SSL_dup does not really work at any state, though */
2206         ret->rstate=s->rstate;
2207         ret->init_num = 0; /* would have to copy ret->init_buf, ret->init_msg, ret->init_num, ret->init_off */
2208         ret->hit=s->hit;
2209
2210         X509_VERIFY_PARAM_inherit(ret->param, s->param);
2211
2212         /* dup the cipher_list and cipher_list_by_id stacks */
2213         if (s->cipher_list != NULL)
2214                 {
2215                 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
2216                         goto err;
2217                 }
2218         if (s->cipher_list_by_id != NULL)
2219                 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_id))
2220                         == NULL)
2221                         goto err;
2222
2223         /* Dup the client_CA list */
2224         if (s->client_CA != NULL)
2225                 {
2226                 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
2227                 ret->client_CA=sk;
2228                 for (i=0; i<sk_X509_NAME_num(sk); i++)
2229                         {
2230                         xn=sk_X509_NAME_value(sk,i);
2231                         if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL)
2232                                 {
2233                                 X509_NAME_free(xn);
2234                                 goto err;
2235                                 }
2236                         }
2237                 }
2238
2239         if (0)
2240                 {
2241 err:
2242                 if (ret != NULL) SSL_free(ret);
2243                 ret=NULL;
2244                 }
2245         return(ret);
2246         }
2247
2248 void ssl_clear_cipher_ctx(SSL *s)
2249         {
2250         if (s->enc_read_ctx != NULL)
2251                 {
2252                 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
2253                 OPENSSL_free(s->enc_read_ctx);
2254                 s->enc_read_ctx=NULL;
2255                 }
2256         if (s->enc_write_ctx != NULL)
2257                 {
2258                 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2259                 OPENSSL_free(s->enc_write_ctx);
2260                 s->enc_write_ctx=NULL;
2261                 }
2262 #ifndef OPENSSL_NO_COMP
2263         if (s->expand != NULL)
2264                 {
2265                 COMP_CTX_free(s->expand);
2266                 s->expand=NULL;
2267                 }
2268         if (s->compress != NULL)
2269                 {
2270                 COMP_CTX_free(s->compress);
2271                 s->compress=NULL;
2272                 }
2273 #endif
2274         }
2275
2276 /* Fix this function so that it takes an optional type parameter */
2277 X509 *SSL_get_certificate(const SSL *s)
2278         {
2279         if (s->cert != NULL)
2280                 return(s->cert->key->x509);
2281         else
2282                 return(NULL);
2283         }
2284
2285 /* Fix this function so that it takes an optional type parameter */
2286 EVP_PKEY *SSL_get_privatekey(SSL *s)
2287         {
2288         if (s->cert != NULL)
2289                 return(s->cert->key->privatekey);
2290         else
2291                 return(NULL);
2292         }
2293
2294 SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
2295         {
2296         if ((s->session != NULL) && (s->session->cipher != NULL))
2297                 return(s->session->cipher);
2298         return(NULL);
2299         }
2300 #ifdef OPENSSL_NO_COMP
2301 const void *SSL_get_current_compression(SSL *s)
2302         {
2303         return NULL;
2304         }
2305 const void *SSL_get_current_expansion(SSL *s)
2306         {
2307         return NULL;
2308         }
2309 #else
2310
2311 const COMP_METHOD *SSL_get_current_compression(SSL *s)
2312         {
2313         if (s->compress != NULL)
2314                 return(s->compress->meth);
2315         return(NULL);
2316         }
2317
2318 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
2319         {
2320         if (s->expand != NULL)
2321                 return(s->expand->meth);
2322         return(NULL);
2323         }
2324 #endif
2325
2326 int ssl_init_wbio_buffer(SSL *s,int push)
2327         {
2328         BIO *bbio;
2329
2330         if (s->bbio == NULL)
2331                 {
2332                 bbio=BIO_new(BIO_f_buffer());
2333                 if (bbio == NULL) return(0);
2334                 s->bbio=bbio;
2335                 }
2336         else
2337                 {
2338                 bbio=s->bbio;
2339                 if (s->bbio == s->wbio)
2340                         s->wbio=BIO_pop(s->wbio);
2341                 }
2342         (void)BIO_reset(bbio);
2343 /*      if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2344         if (!BIO_set_read_buffer_size(bbio,1))
2345                 {
2346                 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB);
2347                 return(0);
2348                 }
2349         if (push)
2350                 {
2351                 if (s->wbio != bbio)
2352                         s->wbio=BIO_push(bbio,s->wbio);
2353                 }
2354         else
2355                 {
2356                 if (s->wbio == bbio)
2357                         s->wbio=BIO_pop(bbio);
2358                 }
2359         return(1);
2360         }
2361
2362 void ssl_free_wbio_buffer(SSL *s)
2363         {
2364         if (s->bbio == NULL) return;
2365
2366         if (s->bbio == s->wbio)
2367                 {
2368                 /* remove buffering */
2369                 s->wbio=BIO_pop(s->wbio);
2370 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids adding one more preprocessor symbol */
2371                 assert(s->wbio != NULL);
2372 #endif  
2373         }
2374         BIO_free(s->bbio);
2375         s->bbio=NULL;
2376         }
2377         
2378 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode)
2379         {
2380         ctx->quiet_shutdown=mode;
2381         }
2382
2383 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
2384         {
2385         return(ctx->quiet_shutdown);
2386         }
2387
2388 void SSL_set_quiet_shutdown(SSL *s,int mode)
2389         {
2390         s->quiet_shutdown=mode;
2391         }
2392
2393 int SSL_get_quiet_shutdown(const SSL *s)
2394         {
2395         return(s->quiet_shutdown);
2396         }
2397
2398 void SSL_set_shutdown(SSL *s,int mode)
2399         {
2400         s->shutdown=mode;
2401         }
2402
2403 int SSL_get_shutdown(const SSL *s)
2404         {
2405         return(s->shutdown);
2406         }
2407
2408 int SSL_version(const SSL *s)
2409         {
2410         return(s->version);
2411         }
2412
2413 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
2414         {
2415         return(ssl->ctx);
2416         }
2417
2418 #ifndef OPENSSL_NO_STDIO
2419 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
2420         {
2421         return(X509_STORE_set_default_paths(ctx->cert_store));
2422         }
2423
2424 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
2425                 const char *CApath)
2426         {
2427         return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
2428         }
2429 #endif
2430
2431 void SSL_set_info_callback(SSL *ssl,
2432                            void (*cb)(const SSL *ssl,int type,int val))
2433         {
2434         ssl->info_callback=cb;
2435         }
2436
2437 /* One compiler (Diab DCC) doesn't like argument names in returned
2438    function pointer.  */
2439 void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /*ssl*/,int /*type*/,int /*val*/)
2440         {
2441         return ssl->info_callback;
2442         }
2443
2444 int SSL_state(const SSL *ssl)
2445         {
2446         return(ssl->state);
2447         }
2448
2449 void SSL_set_verify_result(SSL *ssl,long arg)
2450         {
2451         ssl->verify_result=arg;
2452         }
2453
2454 long SSL_get_verify_result(const SSL *ssl)
2455         {
2456         return(ssl->verify_result);
2457         }
2458
2459 int SSL_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2460                          CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2461         {
2462         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp,
2463                                 new_func, dup_func, free_func);
2464         }
2465
2466 int SSL_set_ex_data(SSL *s,int idx,void *arg)
2467         {
2468         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2469         }
2470
2471 void *SSL_get_ex_data(const SSL *s,int idx)
2472         {
2473         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2474         }
2475
2476 int SSL_CTX_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2477                              CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2478         {
2479         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp,
2480                                 new_func, dup_func, free_func);
2481         }
2482
2483 int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg)
2484         {
2485         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2486         }
2487
2488 void *SSL_CTX_get_ex_data(const SSL_CTX *s,int idx)
2489         {
2490         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2491         }
2492
2493 int ssl_ok(SSL *s)
2494         {
2495         return(1);
2496         }
2497
2498 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
2499         {
2500         return(ctx->cert_store);
2501         }
2502
2503 void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store)
2504         {
2505         if (ctx->cert_store != NULL)
2506                 X509_STORE_free(ctx->cert_store);
2507         ctx->cert_store=store;
2508         }
2509
2510 int SSL_want(const SSL *s)
2511         {
2512         return(s->rwstate);
2513         }
2514
2515 /*!
2516  * \brief Set the callback for generating temporary RSA keys.
2517  * \param ctx the SSL context.
2518  * \param cb the callback
2519  */
2520
2521 #ifndef OPENSSL_NO_RSA
2522 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl,
2523                                                           int is_export,
2524                                                           int keylength))
2525     {
2526     SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2527     }
2528
2529 void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl,
2530                                                   int is_export,
2531                                                   int keylength))
2532     {
2533     SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2534     }
2535 #endif
2536
2537 #ifdef DOXYGEN
2538 /*!
2539  * \brief The RSA temporary key callback function.
2540  * \param ssl the SSL session.
2541  * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
2542  * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
2543  * of the required key in bits.
2544  * \return the temporary RSA key.
2545  * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
2546  */
2547
2548 RSA *cb(SSL *ssl,int is_export,int keylength)
2549     {}
2550 #endif
2551
2552 /*!
2553  * \brief Set the callback for generating temporary DH keys.
2554  * \param ctx the SSL context.
2555  * \param dh the callback
2556  */
2557
2558 #ifndef OPENSSL_NO_DH
2559 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int is_export,
2560                                                         int keylength))
2561         {
2562         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2563         }
2564
2565 void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int is_export,
2566                                                 int keylength))
2567         {
2568         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2569         }
2570 #endif
2571
2572 #ifndef OPENSSL_NO_ECDH
2573 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2574                                                         int keylength))
2575         {
2576         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2577         }
2578
2579 void SSL_set_tmp_ecdh_callback(SSL *ssl,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2580                                                 int keylength))
2581         {
2582         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2583         }
2584 #endif
2585
2586
2587 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))
2588         {
2589         SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2590         }
2591 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))
2592         {
2593         SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2594         }
2595
2596
2597
2598 #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
2599 #include "../crypto/bio/bss_file.c"
2600 #endif
2601
2602 IMPLEMENT_STACK_OF(SSL_CIPHER)
2603 IMPLEMENT_STACK_OF(SSL_COMP)