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