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