If auto load ENGINE lookup fails retry adding builtin ENGINEs.
[openssl.git] / ssl / ssl_lib.c
1 /*! \file ssl/ssl_lib.c
2  *  \brief Version independent SSL functions.
3  */
4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5  * All rights reserved.
6  *
7  * This package is an SSL implementation written
8  * by Eric Young (eay@cryptsoft.com).
9  * The implementation was written so as to conform with Netscapes SSL.
10  * 
11  * This library is free for commercial and non-commercial use as long as
12  * the following conditions are aheared to.  The following conditions
13  * apply to all code found in this distribution, be it the RC4, RSA,
14  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
15  * included with this distribution is covered by the same copyright terms
16  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
17  * 
18  * Copyright remains Eric Young's, and as such any Copyright notices in
19  * the code are not to be removed.
20  * If this package is used in a product, Eric Young should be given attribution
21  * as the author of the parts of the library used.
22  * This can be in the form of a textual message at program startup or
23  * in documentation (online or textual) provided with the package.
24  * 
25  * Redistribution and use in source and binary forms, with or without
26  * modification, are permitted provided that the following conditions
27  * are met:
28  * 1. Redistributions of source code must retain the copyright
29  *    notice, this list of conditions and the following disclaimer.
30  * 2. Redistributions in binary form must reproduce the above copyright
31  *    notice, this list of conditions and the following disclaimer in the
32  *    documentation and/or other materials provided with the distribution.
33  * 3. All advertising materials mentioning features or use of this software
34  *    must display the following acknowledgement:
35  *    "This product includes cryptographic software written by
36  *     Eric Young (eay@cryptsoft.com)"
37  *    The word 'cryptographic' can be left out if the rouines from the library
38  *    being used are not cryptographic related :-).
39  * 4. If you include any Windows specific code (or a derivative thereof) from 
40  *    the apps directory (application code) you must include an acknowledgement:
41  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
42  * 
43  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
44  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
46  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
48  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
49  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
50  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
51  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
52  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53  * SUCH DAMAGE.
54  * 
55  * The licence and distribution terms for any publically available version or
56  * derivative of this code cannot be changed.  i.e. this code cannot simply be
57  * copied and put under another distribution licence
58  * [including the GNU Public Licence.]
59  */
60 /* ====================================================================
61  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
62  *
63  * Redistribution and use in source and binary forms, with or without
64  * modification, are permitted provided that the following conditions
65  * are met:
66  *
67  * 1. Redistributions of source code must retain the above copyright
68  *    notice, this list of conditions and the following disclaimer. 
69  *
70  * 2. Redistributions in binary form must reproduce the above copyright
71  *    notice, this list of conditions and the following disclaimer in
72  *    the documentation and/or other materials provided with the
73  *    distribution.
74  *
75  * 3. All advertising materials mentioning features or use of this
76  *    software must display the following acknowledgment:
77  *    "This product includes software developed by the OpenSSL Project
78  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
79  *
80  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
81  *    endorse or promote products derived from this software without
82  *    prior written permission. For written permission, please contact
83  *    openssl-core@openssl.org.
84  *
85  * 5. Products derived from this software may not be called "OpenSSL"
86  *    nor may "OpenSSL" appear in their names without prior written
87  *    permission of the OpenSSL Project.
88  *
89  * 6. Redistributions of any form whatsoever must retain the following
90  *    acknowledgment:
91  *    "This product includes software developed by the OpenSSL Project
92  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
93  *
94  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
95  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
96  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
97  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
98  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
99  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
100  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
101  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
102  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
103  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
104  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
105  * OF THE POSSIBILITY OF SUCH DAMAGE.
106  * ====================================================================
107  *
108  * This product includes cryptographic software written by Eric Young
109  * (eay@cryptsoft.com).  This product includes software written by Tim
110  * Hudson (tjh@cryptsoft.com).
111  *
112  */
113 /* ====================================================================
114  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
115  * ECC cipher suite support in OpenSSL originally developed by 
116  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
117  */
118
119 #ifdef REF_CHECK
120 #  include <assert.h>
121 #endif
122 #include <stdio.h>
123 #include "ssl_locl.h"
124 #include "kssl_lcl.h"
125 #include <openssl/objects.h>
126 #include <openssl/lhash.h>
127 #include <openssl/x509v3.h>
128 #include <openssl/rand.h>
129 #include <openssl/ocsp.h>
130 #ifndef OPENSSL_NO_DH
131 #include <openssl/dh.h>
132 #endif
133 #ifndef OPENSSL_NO_ENGINE
134 #include <openssl/engine.h>
135 #endif
136
137 const char *SSL_version_str=OPENSSL_VERSION_TEXT;
138
139 SSL3_ENC_METHOD ssl3_undef_enc_method={
140         /* evil casts, but these functions are only called if there's a library bug */
141         (int (*)(SSL *,int))ssl_undefined_function,
142         (int (*)(SSL *, unsigned char *, int))ssl_undefined_function,
143         ssl_undefined_function,
144         (int (*)(SSL *, unsigned char *, unsigned char *, int))ssl_undefined_function,
145         (int (*)(SSL*, int))ssl_undefined_function,
146         (int (*)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char*, int, unsigned char *))ssl_undefined_function,
147         0,      /* finish_mac_length */
148         (int (*)(SSL *, EVP_MD_CTX *, unsigned char *))ssl_undefined_function,
149         NULL,   /* client_finished_label */
150         0,      /* client_finished_label_len */
151         NULL,   /* server_finished_label */
152         0,      /* server_finished_label_len */
153         (int (*)(int))ssl_undefined_function
154         };
155
156 int SSL_clear(SSL *s)
157         {
158
159         if (s->method == NULL)
160                 {
161                 SSLerr(SSL_F_SSL_CLEAR,SSL_R_NO_METHOD_SPECIFIED);
162                 return(0);
163                 }
164
165         if (ssl_clear_bad_session(s))
166                 {
167                 SSL_SESSION_free(s->session);
168                 s->session=NULL;
169                 }
170
171         s->error=0;
172         s->hit=0;
173         s->shutdown=0;
174
175 #if 0 /* Disabled since version 1.10 of this file (early return not
176        * needed because SSL_clear is not called when doing renegotiation) */
177         /* This is set if we are doing dynamic renegotiation so keep
178          * the old cipher.  It is sort of a SSL_clear_lite :-) */
179         if (s->new_session) return(1);
180 #else
181         if (s->new_session)
182                 {
183                 SSLerr(SSL_F_SSL_CLEAR,ERR_R_INTERNAL_ERROR);
184                 return 0;
185                 }
186 #endif
187
188         s->type=0;
189
190         s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT);
191
192         s->version=s->method->version;
193         s->client_version=s->version;
194         s->rwstate=SSL_NOTHING;
195         s->rstate=SSL_ST_READ_HEADER;
196 #if 0
197         s->read_ahead=s->ctx->read_ahead;
198 #endif
199
200         if (s->init_buf != NULL)
201                 {
202                 BUF_MEM_free(s->init_buf);
203                 s->init_buf=NULL;
204                 }
205
206         ssl_clear_cipher_ctx(s);
207
208         s->first_packet=0;
209
210 #if 1
211         /* Check to see if we were changed into a different method, if
212          * so, revert back if we are not doing session-id reuse. */
213         if (!s->in_handshake && (s->session == NULL) && (s->method != s->ctx->method))
214                 {
215                 s->method->ssl_free(s);
216                 s->method=s->ctx->method;
217                 if (!s->method->ssl_new(s))
218                         return(0);
219                 }
220         else
221 #endif
222                 s->method->ssl_clear(s);
223         return(1);
224         }
225
226 /** Used to change an SSL_CTXs default SSL method type */
227 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth)
228         {
229         STACK_OF(SSL_CIPHER) *sk;
230
231         ctx->method=meth;
232
233         sk=ssl_create_cipher_list(ctx->method,&(ctx->cipher_list),
234                 &(ctx->cipher_list_by_id),SSL_DEFAULT_CIPHER_LIST);
235         if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0))
236                 {
237                 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
238                 return(0);
239                 }
240         return(1);
241         }
242
243 SSL *SSL_new(SSL_CTX *ctx)
244         {
245         SSL *s;
246
247         if (ctx == NULL)
248                 {
249                 SSLerr(SSL_F_SSL_NEW,SSL_R_NULL_SSL_CTX);
250                 return(NULL);
251                 }
252         if (ctx->method == NULL)
253                 {
254                 SSLerr(SSL_F_SSL_NEW,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
255                 return(NULL);
256                 }
257
258         s=(SSL *)OPENSSL_malloc(sizeof(SSL));
259         if (s == NULL) goto err;
260         memset(s,0,sizeof(SSL));
261
262 #ifndef OPENSSL_NO_KRB5
263         s->kssl_ctx = kssl_ctx_new();
264 #endif  /* OPENSSL_NO_KRB5 */
265
266         s->options=ctx->options;
267         s->mode=ctx->mode;
268         s->max_cert_list=ctx->max_cert_list;
269
270         if (ctx->cert != NULL)
271                 {
272                 /* Earlier library versions used to copy the pointer to
273                  * the CERT, not its contents; only when setting new
274                  * parameters for the per-SSL copy, ssl_cert_new would be
275                  * called (and the direct reference to the per-SSL_CTX
276                  * settings would be lost, but those still were indirectly
277                  * accessed for various purposes, and for that reason they
278                  * used to be known as s->ctx->default_cert).
279                  * Now we don't look at the SSL_CTX's CERT after having
280                  * duplicated it once. */
281
282                 s->cert = ssl_cert_dup(ctx->cert);
283                 if (s->cert == NULL)
284                         goto err;
285                 }
286         else
287                 s->cert=NULL; /* Cannot really happen (see SSL_CTX_new) */
288
289         s->read_ahead=ctx->read_ahead;
290         s->msg_callback=ctx->msg_callback;
291         s->msg_callback_arg=ctx->msg_callback_arg;
292         s->verify_mode=ctx->verify_mode;
293 #if 0
294         s->verify_depth=ctx->verify_depth;
295 #endif
296         s->sid_ctx_length=ctx->sid_ctx_length;
297         OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx);
298         memcpy(&s->sid_ctx,&ctx->sid_ctx,sizeof(s->sid_ctx));
299         s->verify_callback=ctx->default_verify_callback;
300         s->generate_session_id=ctx->generate_session_id;
301
302         s->param = X509_VERIFY_PARAM_new();
303         if (!s->param)
304                 goto err;
305         X509_VERIFY_PARAM_inherit(s->param, ctx->param);
306 #if 0
307         s->purpose = ctx->purpose;
308         s->trust = ctx->trust;
309 #endif
310         s->quiet_shutdown=ctx->quiet_shutdown;
311
312         CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
313         s->ctx=ctx;
314 #ifndef OPENSSL_NO_TLSEXT
315         s->tlsext_debug_cb = 0;
316         s->tlsext_debug_arg = NULL;
317         s->tlsext_ticket_expected = 0;
318         s->tlsext_status_type = -1;
319         s->tlsext_status_expected = 0;
320         s->tlsext_ocsp_ids = NULL;
321         s->tlsext_ocsp_exts = NULL;
322         s->tlsext_ocsp_resp = NULL;
323         s->tlsext_ocsp_resplen = -1;
324         CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
325         s->initial_ctx=ctx;
326 #endif
327         s->verify_result=X509_V_OK;
328
329         s->method=ctx->method;
330
331         if (!s->method->ssl_new(s))
332                 goto err;
333
334         s->references=1;
335         s->server=(ctx->method->ssl_accept == ssl_undefined_function)?0:1;
336
337         SSL_clear(s);
338
339         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
340
341         return(s);
342 err:
343         if (s != NULL)
344                 {
345                 if (s->cert != NULL)
346                         ssl_cert_free(s->cert);
347                 if (s->ctx != NULL)
348                         SSL_CTX_free(s->ctx); /* decrement reference count */
349                 OPENSSL_free(s);
350                 }
351         SSLerr(SSL_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
352         return(NULL);
353         }
354
355 int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx,
356                                    unsigned int sid_ctx_len)
357     {
358     if(sid_ctx_len > sizeof ctx->sid_ctx)
359         {
360         SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
361         return 0;
362         }
363     ctx->sid_ctx_length=sid_ctx_len;
364     memcpy(ctx->sid_ctx,sid_ctx,sid_ctx_len);
365
366     return 1;
367     }
368
369 int SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
370                                unsigned int sid_ctx_len)
371     {
372     if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH)
373         {
374         SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
375         return 0;
376         }
377     ssl->sid_ctx_length=sid_ctx_len;
378     memcpy(ssl->sid_ctx,sid_ctx,sid_ctx_len);
379
380     return 1;
381     }
382
383 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb)
384         {
385         CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX);
386         ctx->generate_session_id = cb;
387         CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX);
388         return 1;
389         }
390
391 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb)
392         {
393         CRYPTO_w_lock(CRYPTO_LOCK_SSL);
394         ssl->generate_session_id = cb;
395         CRYPTO_w_unlock(CRYPTO_LOCK_SSL);
396         return 1;
397         }
398
399 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id,
400                                 unsigned int id_len)
401         {
402         /* A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how
403          * we can "construct" a session to give us the desired check - ie. to
404          * find if there's a session in the hash table that would conflict with
405          * any new session built out of this id/id_len and the ssl_version in
406          * use by this SSL. */
407         SSL_SESSION r, *p;
408
409         if(id_len > sizeof r.session_id)
410                 return 0;
411
412         r.ssl_version = ssl->version;
413         r.session_id_length = id_len;
414         memcpy(r.session_id, id, id_len);
415         /* NB: SSLv2 always uses a fixed 16-byte session ID, so even if a
416          * callback is calling us to check the uniqueness of a shorter ID, it
417          * must be compared as a padded-out ID because that is what it will be
418          * converted to when the callback has finished choosing it. */
419         if((r.ssl_version == SSL2_VERSION) &&
420                         (id_len < SSL2_SSL_SESSION_ID_LENGTH))
421                 {
422                 memset(r.session_id + id_len, 0,
423                         SSL2_SSL_SESSION_ID_LENGTH - id_len);
424                 r.session_id_length = SSL2_SSL_SESSION_ID_LENGTH;
425                 }
426
427         CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);
428         p = (SSL_SESSION *)lh_retrieve(ssl->ctx->sessions, &r);
429         CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX);
430         return (p != NULL);
431         }
432
433 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose)
434         {
435         return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
436         }
437
438 int SSL_set_purpose(SSL *s, int purpose)
439         {
440         return X509_VERIFY_PARAM_set_purpose(s->param, purpose);
441         }
442
443 int SSL_CTX_set_trust(SSL_CTX *s, int trust)
444         {
445         return X509_VERIFY_PARAM_set_trust(s->param, trust);
446         }
447
448 int SSL_set_trust(SSL *s, int trust)
449         {
450         return X509_VERIFY_PARAM_set_trust(s->param, trust);
451         }
452
453 void SSL_free(SSL *s)
454         {
455         int i;
456
457         if(s == NULL)
458             return;
459
460         i=CRYPTO_add(&s->references,-1,CRYPTO_LOCK_SSL);
461 #ifdef REF_PRINT
462         REF_PRINT("SSL",s);
463 #endif
464         if (i > 0) return;
465 #ifdef REF_CHECK
466         if (i < 0)
467                 {
468                 fprintf(stderr,"SSL_free, bad reference count\n");
469                 abort(); /* ok */
470                 }
471 #endif
472
473         if (s->param)
474                 X509_VERIFY_PARAM_free(s->param);
475
476         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data);
477
478         if (s->bbio != NULL)
479                 {
480                 /* If the buffering BIO is in place, pop it off */
481                 if (s->bbio == s->wbio)
482                         {
483                         s->wbio=BIO_pop(s->wbio);
484                         }
485                 BIO_free(s->bbio);
486                 s->bbio=NULL;
487                 }
488         if (s->rbio != NULL)
489                 BIO_free_all(s->rbio);
490         if ((s->wbio != NULL) && (s->wbio != s->rbio))
491                 BIO_free_all(s->wbio);
492
493         if (s->init_buf != NULL) BUF_MEM_free(s->init_buf);
494
495         /* add extra stuff */
496         if (s->cipher_list != NULL) sk_SSL_CIPHER_free(s->cipher_list);
497         if (s->cipher_list_by_id != NULL) sk_SSL_CIPHER_free(s->cipher_list_by_id);
498
499         /* Make the next call work :-) */
500         if (s->session != NULL)
501                 {
502                 ssl_clear_bad_session(s);
503                 SSL_SESSION_free(s->session);
504                 }
505
506         ssl_clear_cipher_ctx(s);
507
508         if (s->cert != NULL) ssl_cert_free(s->cert);
509         /* Free up if allocated */
510
511         if (s->ctx) SSL_CTX_free(s->ctx);
512 #ifndef OPENSSL_NO_TLSEXT
513         if (s->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         if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
1400                 {
1401                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
1402                 goto err;
1403                 }
1404         ret=(SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX));
1405         if (ret == NULL)
1406                 goto err;
1407
1408         memset(ret,0,sizeof(SSL_CTX));
1409
1410         ret->method=meth;
1411
1412         ret->cert_store=NULL;
1413         ret->session_cache_mode=SSL_SESS_CACHE_SERVER;
1414         ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
1415         ret->session_cache_head=NULL;
1416         ret->session_cache_tail=NULL;
1417
1418         /* We take the system default */
1419         ret->session_timeout=meth->get_timeout();
1420
1421         ret->new_session_cb=0;
1422         ret->remove_session_cb=0;
1423         ret->get_session_cb=0;
1424         ret->generate_session_id=0;
1425
1426         memset((char *)&ret->stats,0,sizeof(ret->stats));
1427
1428         ret->references=1;
1429         ret->quiet_shutdown=0;
1430
1431 /*      ret->cipher=NULL;*/
1432 /*      ret->s2->challenge=NULL;
1433         ret->master_key=NULL;
1434         ret->key_arg=NULL;
1435         ret->s2->conn_id=NULL; */
1436
1437         ret->info_callback=NULL;
1438
1439         ret->app_verify_callback=0;
1440         ret->app_verify_arg=NULL;
1441
1442         ret->max_cert_list=SSL_MAX_CERT_LIST_DEFAULT;
1443         ret->read_ahead=0;
1444         ret->msg_callback=0;
1445         ret->msg_callback_arg=NULL;
1446         ret->verify_mode=SSL_VERIFY_NONE;
1447 #if 0
1448         ret->verify_depth=-1; /* Don't impose a limit (but x509_lu.c does) */
1449 #endif
1450         ret->sid_ctx_length=0;
1451         ret->default_verify_callback=NULL;
1452         if ((ret->cert=ssl_cert_new()) == NULL)
1453                 goto err;
1454
1455         ret->default_passwd_callback=0;
1456         ret->default_passwd_callback_userdata=NULL;
1457         ret->client_cert_cb=0;
1458         ret->app_gen_cookie_cb=0;
1459         ret->app_verify_cookie_cb=0;
1460
1461         ret->sessions=lh_new(LHASH_HASH_FN(SSL_SESSION_hash),
1462                         LHASH_COMP_FN(SSL_SESSION_cmp));
1463         if (ret->sessions == NULL) goto err;
1464         ret->cert_store=X509_STORE_new();
1465         if (ret->cert_store == NULL) goto err;
1466
1467         ssl_create_cipher_list(ret->method,
1468                 &ret->cipher_list,&ret->cipher_list_by_id,
1469                 SSL_DEFAULT_CIPHER_LIST);
1470         if (ret->cipher_list == NULL
1471             || sk_SSL_CIPHER_num(ret->cipher_list) <= 0)
1472                 {
1473                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS);
1474                 goto err2;
1475                 }
1476
1477         ret->param = X509_VERIFY_PARAM_new();
1478         if (!ret->param)
1479                 goto err;
1480
1481         if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL)
1482                 {
1483                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES);
1484                 goto err2;
1485                 }
1486         if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL)
1487                 {
1488                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1489                 goto err2;
1490                 }
1491         if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL)
1492                 {
1493                 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1494                 goto err2;
1495                 }
1496
1497         if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
1498                 goto err;
1499
1500         CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
1501
1502         ret->extra_certs=NULL;
1503         ret->comp_methods=SSL_COMP_get_compression_methods();
1504
1505 #ifndef OPENSSL_NO_TLSEXT
1506         ret->tlsext_servername_callback = 0;
1507         ret->tlsext_servername_arg = NULL;
1508         /* Setup RFC4507 ticket keys */
1509         if ((RAND_pseudo_bytes(ret->tlsext_tick_key_name, 16) <= 0)
1510                 || (RAND_bytes(ret->tlsext_tick_hmac_key, 16) <= 0)
1511                 || (RAND_bytes(ret->tlsext_tick_aes_key, 16) <= 0))
1512                 ret->options |= SSL_OP_NO_TICKET;
1513
1514         ret->tlsext_status_cb = 0;
1515         ret->tlsext_status_arg = NULL;
1516
1517 #endif
1518
1519 #ifndef OPENSSL_NO_ENGINE
1520         ret->client_cert_engine = NULL;
1521 #ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO
1522 #define eng_strx(x)     #x
1523 #define eng_str(x)      eng_strx(x)
1524         /* Use specific client engine automatically... ignore errors */
1525         {
1526         ENGINE *eng;
1527         eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
1528         if (!eng)
1529                 {
1530                 ERR_clear_error();
1531                 ENGINE_load_builtin_engines();
1532                 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO));
1533                 }
1534         if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng))
1535                 ERR_clear_error();
1536         }
1537 #endif
1538 #endif
1539
1540         return(ret);
1541 err:
1542         SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);
1543 err2:
1544         if (ret != NULL) SSL_CTX_free(ret);
1545         return(NULL);
1546         }
1547
1548 #if 0
1549 static void SSL_COMP_free(SSL_COMP *comp)
1550     { OPENSSL_free(comp); }
1551 #endif
1552
1553 void SSL_CTX_free(SSL_CTX *a)
1554         {
1555         int i;
1556
1557         if (a == NULL) return;
1558
1559         i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX);
1560 #ifdef REF_PRINT
1561         REF_PRINT("SSL_CTX",a);
1562 #endif
1563         if (i > 0) return;
1564 #ifdef REF_CHECK
1565         if (i < 0)
1566                 {
1567                 fprintf(stderr,"SSL_CTX_free, bad reference count\n");
1568                 abort(); /* ok */
1569                 }
1570 #endif
1571
1572         if (a->param)
1573                 X509_VERIFY_PARAM_free(a->param);
1574
1575         /*
1576          * Free internal session cache. However: the remove_cb() may reference
1577          * the ex_data of SSL_CTX, thus the ex_data store can only be removed
1578          * after the sessions were flushed.
1579          * As the ex_data handling routines might also touch the session cache,
1580          * the most secure solution seems to be: empty (flush) the cache, then
1581          * free ex_data, then finally free the cache.
1582          * (See ticket [openssl.org #212].)
1583          */
1584         if (a->sessions != NULL)
1585                 SSL_CTX_flush_sessions(a,0);
1586
1587         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data);
1588
1589         if (a->sessions != NULL)
1590                 lh_free(a->sessions);
1591
1592         if (a->cert_store != NULL)
1593                 X509_STORE_free(a->cert_store);
1594         if (a->cipher_list != NULL)
1595                 sk_SSL_CIPHER_free(a->cipher_list);
1596         if (a->cipher_list_by_id != NULL)
1597                 sk_SSL_CIPHER_free(a->cipher_list_by_id);
1598         if (a->cert != NULL)
1599                 ssl_cert_free(a->cert);
1600         if (a->client_CA != NULL)
1601                 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
1602         if (a->extra_certs != NULL)
1603                 sk_X509_pop_free(a->extra_certs,X509_free);
1604 #if 0 /* This should never be done, since it removes a global database */
1605         if (a->comp_methods != NULL)
1606                 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free);
1607 #else
1608         a->comp_methods = NULL;
1609 #endif
1610 #ifndef OPENSSL_NO_ENGINE
1611         if (a->client_cert_engine)
1612                 ENGINE_finish(a->client_cert_engine);
1613 #endif
1614         OPENSSL_free(a);
1615         }
1616
1617 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
1618         {
1619         ctx->default_passwd_callback=cb;
1620         }
1621
1622 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,void *u)
1623         {
1624         ctx->default_passwd_callback_userdata=u;
1625         }
1626
1627 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,void *), void *arg)
1628         {
1629         ctx->app_verify_callback=cb;
1630         ctx->app_verify_arg=arg;
1631         }
1632
1633 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
1634         {
1635         ctx->verify_mode=mode;
1636         ctx->default_verify_callback=cb;
1637         }
1638
1639 void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth)
1640         {
1641         X509_VERIFY_PARAM_set_depth(ctx->param, depth);
1642         }
1643
1644 void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
1645         {
1646         CERT_PKEY *cpk;
1647         int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign;
1648         int rsa_enc_export,dh_rsa_export,dh_dsa_export;
1649         int rsa_tmp_export,dh_tmp_export,kl;
1650         unsigned long mask,emask;
1651         int have_ecc_cert, ecdh_ok, ecdsa_ok, ecc_pkey_size;
1652 #ifndef OPENSSL_NO_ECDH
1653         int have_ecdh_tmp;
1654 #endif
1655         X509 *x = NULL;
1656         EVP_PKEY *ecc_pkey = NULL;
1657         int signature_nid = 0;
1658
1659         if (c == NULL) return;
1660
1661         kl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1662
1663 #ifndef OPENSSL_NO_RSA
1664         rsa_tmp=(c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
1665         rsa_tmp_export=(c->rsa_tmp_cb != NULL ||
1666                 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl));
1667 #else
1668         rsa_tmp=rsa_tmp_export=0;
1669 #endif
1670 #ifndef OPENSSL_NO_DH
1671         dh_tmp=(c->dh_tmp != NULL || c->dh_tmp_cb != NULL);
1672         dh_tmp_export=(c->dh_tmp_cb != NULL ||
1673                 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl));
1674 #else
1675         dh_tmp=dh_tmp_export=0;
1676 #endif
1677
1678 #ifndef OPENSSL_NO_ECDH
1679         have_ecdh_tmp=(c->ecdh_tmp != NULL || c->ecdh_tmp_cb != NULL);
1680 #endif
1681         cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]);
1682         rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
1683         rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1684         cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]);
1685         rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1686         cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]);
1687         dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
1688         cpk= &(c->pkeys[SSL_PKEY_DH_RSA]);
1689         dh_rsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1690         dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1691         cpk= &(c->pkeys[SSL_PKEY_DH_DSA]);
1692 /* FIX THIS EAY EAY EAY */
1693         dh_dsa=  (cpk->x509 != NULL && cpk->privatekey != NULL);
1694         dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
1695         cpk= &(c->pkeys[SSL_PKEY_ECC]);
1696         have_ecc_cert= (cpk->x509 != NULL && cpk->privatekey != NULL);
1697         mask=0;
1698         emask=0;
1699
1700 #ifdef CIPHER_DEBUG
1701         printf("rt=%d rte=%d dht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1702                 rsa_tmp,rsa_tmp_export,dh_tmp,
1703                 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
1704 #endif
1705
1706         if (rsa_enc || (rsa_tmp && rsa_sign))
1707                 mask|=SSL_kRSA;
1708         if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
1709                 emask|=SSL_kRSA;
1710
1711 #if 0
1712         /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1713         if (    (dh_tmp || dh_rsa || dh_dsa) && 
1714                 (rsa_enc || rsa_sign || dsa_sign))
1715                 mask|=SSL_kEDH;
1716         if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) &&
1717                 (rsa_enc || rsa_sign || dsa_sign))
1718                 emask|=SSL_kEDH;
1719 #endif
1720
1721         if (dh_tmp_export) 
1722                 emask|=SSL_kEDH;
1723
1724         if (dh_tmp)
1725                 mask|=SSL_kEDH;
1726
1727         if (dh_rsa) mask|=SSL_kDHr;
1728         if (dh_rsa_export) emask|=SSL_kDHr;
1729
1730         if (dh_dsa) mask|=SSL_kDHd;
1731         if (dh_dsa_export) emask|=SSL_kDHd;
1732
1733         if (rsa_enc || rsa_sign)
1734                 {
1735                 mask|=SSL_aRSA;
1736                 emask|=SSL_aRSA;
1737                 }
1738
1739         if (dsa_sign)
1740                 {
1741                 mask|=SSL_aDSS;
1742                 emask|=SSL_aDSS;
1743                 }
1744
1745         mask|=SSL_aNULL;
1746         emask|=SSL_aNULL;
1747
1748 #ifndef OPENSSL_NO_KRB5
1749         mask|=SSL_kKRB5|SSL_aKRB5;
1750         emask|=SSL_kKRB5|SSL_aKRB5;
1751 #endif
1752
1753         /* An ECC certificate may be usable for ECDH and/or
1754          * ECDSA cipher suites depending on the key usage extension.
1755          */
1756         if (have_ecc_cert)
1757                 {
1758                 /* This call populates extension flags (ex_flags) */
1759                 x = (c->pkeys[SSL_PKEY_ECC]).x509;
1760                 X509_check_purpose(x, -1, 0);
1761                 ecdh_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1762                     (x->ex_kusage & X509v3_KU_KEY_AGREEMENT) : 1;
1763                 ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) ?
1764                     (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) : 1;
1765                 ecc_pkey = X509_get_pubkey(x);
1766                 ecc_pkey_size = (ecc_pkey != NULL) ? 
1767                     EVP_PKEY_bits(ecc_pkey) : 0;
1768                 EVP_PKEY_free(ecc_pkey);
1769                 if ((x->sig_alg) && (x->sig_alg->algorithm))
1770                         signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1771 #ifndef OPENSSL_NO_ECDH
1772                 if (ecdh_ok)
1773                         {
1774                         if ((signature_nid == NID_md5WithRSAEncryption) ||
1775                             (signature_nid == NID_md4WithRSAEncryption) ||
1776                             (signature_nid == NID_md2WithRSAEncryption))
1777                                 {
1778                                 mask|=SSL_kECDH|SSL_aRSA;
1779                                 if (ecc_pkey_size <= 163)
1780                                         emask|=SSL_kECDH|SSL_aRSA;
1781                                 }
1782                         if (signature_nid == NID_ecdsa_with_SHA1)
1783                                 {
1784                                 mask|=SSL_kECDH|SSL_aECDSA;
1785                                 if (ecc_pkey_size <= 163)
1786                                         emask|=SSL_kECDH|SSL_aECDSA;
1787                                 }
1788                         }
1789 #endif
1790 #ifndef OPENSSL_NO_ECDSA
1791                 if (ecdsa_ok)
1792                         {
1793                         mask|=SSL_aECDSA;
1794                         emask|=SSL_aECDSA;
1795                         }
1796 #endif
1797                 }
1798
1799 #ifndef OPENSSL_NO_ECDH
1800         if (have_ecdh_tmp)
1801                 {
1802                 mask|=SSL_kECDHE;
1803                 emask|=SSL_kECDHE;
1804                 }
1805 #endif
1806         c->mask=mask;
1807         c->export_mask=emask;
1808         c->valid=1;
1809         }
1810
1811 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */
1812 #define ku_reject(x, usage) \
1813         (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage)))
1814
1815 int check_srvr_ecc_cert_and_alg(X509 *x, SSL_CIPHER *cs)
1816         {
1817         unsigned long alg = cs->algorithms;
1818         EVP_PKEY *pkey = NULL;
1819         int keysize = 0;
1820         int signature_nid = 0;
1821
1822         if (SSL_C_IS_EXPORT(cs))
1823                 {
1824                 /* ECDH key length in export ciphers must be <= 163 bits */
1825                 pkey = X509_get_pubkey(x);
1826                 if (pkey == NULL) return 0;
1827                 keysize = EVP_PKEY_bits(pkey);
1828                 EVP_PKEY_free(pkey);
1829                 if (keysize > 163) return 0;
1830                 }
1831
1832         /* This call populates the ex_flags field correctly */
1833         X509_check_purpose(x, -1, 0);
1834         if ((x->sig_alg) && (x->sig_alg->algorithm))
1835                 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm);
1836         if (alg & SSL_kECDH) 
1837                 {
1838                 /* key usage, if present, must allow key agreement */
1839                 if (ku_reject(x, X509v3_KU_KEY_AGREEMENT))
1840                         {
1841                         return 0;
1842                         }
1843                 if (alg & SSL_aECDSA) 
1844                         {
1845                         /* signature alg must be ECDSA */
1846                         if (signature_nid != NID_ecdsa_with_SHA1)
1847                                 {
1848                                 return 0;
1849                                 }
1850                         }
1851                 if (alg & SSL_aRSA)
1852                         {
1853                         /* signature alg must be RSA */
1854                         if ((signature_nid != NID_md5WithRSAEncryption) &&
1855                             (signature_nid != NID_md4WithRSAEncryption) &&
1856                             (signature_nid != NID_md2WithRSAEncryption))
1857                                 {
1858                                 return 0;
1859                                 }
1860                         }
1861                 } 
1862         else if (alg & SSL_aECDSA)
1863                 {
1864                 /* key usage, if present, must allow signing */
1865                 if (ku_reject(x, X509v3_KU_DIGITAL_SIGNATURE))
1866                         {
1867                         return 0;
1868                         }
1869                 }
1870
1871         return 1;  /* all checks are ok */
1872         }
1873
1874 /* THIS NEEDS CLEANING UP */
1875 X509 *ssl_get_server_send_cert(SSL *s)
1876         {
1877         unsigned long alg,mask,kalg;
1878         CERT *c;
1879         int i,is_export;
1880
1881         c=s->cert;
1882         ssl_set_cert_masks(c, s->s3->tmp.new_cipher);
1883         alg=s->s3->tmp.new_cipher->algorithms;
1884         is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
1885         mask=is_export?c->export_mask:c->mask;
1886         kalg=alg&(SSL_MKEY_MASK|SSL_AUTH_MASK);
1887
1888         if (kalg & SSL_kECDH)
1889                 {
1890                 /* we don't need to look at SSL_kECDHE 
1891                  * since no certificate is needed for
1892                  * anon ECDH and for authenticated
1893                  * ECDHE, the check for the auth 
1894                  * algorithm will set i correctly
1895                  * NOTE: For ECDH-RSA, we need an ECC
1896                  * not an RSA cert but for ECDHE-RSA
1897                  * we need an RSA cert. Placing the
1898                  * checks for SSL_kECDH before RSA
1899                  * checks ensures the correct cert is chosen.
1900                  */
1901                 i=SSL_PKEY_ECC;
1902                 }
1903         else if (kalg & SSL_aECDSA)
1904                 {
1905                 i=SSL_PKEY_ECC;
1906                 }
1907         else if (kalg & SSL_kDHr)
1908                 i=SSL_PKEY_DH_RSA;
1909         else if (kalg & SSL_kDHd)
1910                 i=SSL_PKEY_DH_DSA;
1911         else if (kalg & SSL_aDSS)
1912                 i=SSL_PKEY_DSA_SIGN;
1913         else if (kalg & SSL_aRSA)
1914                 {
1915                 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
1916                         i=SSL_PKEY_RSA_SIGN;
1917                 else
1918                         i=SSL_PKEY_RSA_ENC;
1919                 }
1920         else if (kalg & SSL_aKRB5)
1921                 {
1922                 /* VRS something else here? */
1923                 return(NULL);
1924                 }
1925         else /* if (kalg & SSL_aNULL) */
1926                 {
1927                 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,ERR_R_INTERNAL_ERROR);
1928                 return(NULL);
1929                 }
1930         if (c->pkeys[i].x509 == NULL) return(NULL);
1931
1932         return(c->pkeys[i].x509);
1933         }
1934
1935 EVP_PKEY *ssl_get_sign_pkey(SSL *s,SSL_CIPHER *cipher)
1936         {
1937         unsigned long alg;
1938         CERT *c;
1939
1940         alg=cipher->algorithms;
1941         c=s->cert;
1942
1943         if ((alg & SSL_aDSS) &&
1944                 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
1945                 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey);
1946         else if (alg & SSL_aRSA)
1947                 {
1948                 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
1949                         return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey);
1950                 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
1951                         return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey);
1952                 else
1953                         return(NULL);
1954                 }
1955         else if ((alg & SSL_aECDSA) &&
1956                  (c->pkeys[SSL_PKEY_ECC].privatekey != NULL))
1957                 return(c->pkeys[SSL_PKEY_ECC].privatekey);
1958         else /* if (alg & SSL_aNULL) */
1959                 {
1960                 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,ERR_R_INTERNAL_ERROR);
1961                 return(NULL);
1962                 }
1963         }
1964
1965 void ssl_update_cache(SSL *s,int mode)
1966         {
1967         int i;
1968
1969         /* If the session_id_length is 0, we are not supposed to cache it,
1970          * and it would be rather hard to do anyway :-) */
1971         if (s->session->session_id_length == 0) return;
1972
1973         i=s->ctx->session_cache_mode;
1974         if ((i & mode) && (!s->hit)
1975                 && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE)
1976                     || SSL_CTX_add_session(s->ctx,s->session))
1977                 && (s->ctx->new_session_cb != NULL))
1978                 {
1979                 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION);
1980                 if (!s->ctx->new_session_cb(s,s->session))
1981                         SSL_SESSION_free(s->session);
1982                 }
1983
1984         /* auto flush every 255 connections */
1985         if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) &&
1986                 ((i & mode) == mode))
1987                 {
1988                 if (  (((mode & SSL_SESS_CACHE_CLIENT)
1989                         ?s->ctx->stats.sess_connect_good
1990                         :s->ctx->stats.sess_accept_good) & 0xff) == 0xff)
1991                         {
1992                         SSL_CTX_flush_sessions(s->ctx,(unsigned long)time(NULL));
1993                         }
1994                 }
1995         }
1996
1997 SSL_METHOD *SSL_get_ssl_method(SSL *s)
1998         {
1999         return(s->method);
2000         }
2001
2002 int SSL_set_ssl_method(SSL *s,SSL_METHOD *meth)
2003         {
2004         int conn= -1;
2005         int ret=1;
2006
2007         if (s->method != meth)
2008                 {
2009                 if (s->handshake_func != NULL)
2010                         conn=(s->handshake_func == s->method->ssl_connect);
2011
2012                 if (s->method->version == meth->version)
2013                         s->method=meth;
2014                 else
2015                         {
2016                         s->method->ssl_free(s);
2017                         s->method=meth;
2018                         ret=s->method->ssl_new(s);
2019                         }
2020
2021                 if (conn == 1)
2022                         s->handshake_func=meth->ssl_connect;
2023                 else if (conn == 0)
2024                         s->handshake_func=meth->ssl_accept;
2025                 }
2026         return(ret);
2027         }
2028
2029 int SSL_get_error(const SSL *s,int i)
2030         {
2031         int reason;
2032         unsigned long l;
2033         BIO *bio;
2034
2035         if (i > 0) return(SSL_ERROR_NONE);
2036
2037         /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
2038          * etc, where we do encode the error */
2039         if ((l=ERR_peek_error()) != 0)
2040                 {
2041                 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
2042                         return(SSL_ERROR_SYSCALL);
2043                 else
2044                         return(SSL_ERROR_SSL);
2045                 }
2046
2047         if ((i < 0) && SSL_want_read(s))
2048                 {
2049                 bio=SSL_get_rbio(s);
2050                 if (BIO_should_read(bio))
2051                         return(SSL_ERROR_WANT_READ);
2052                 else if (BIO_should_write(bio))
2053                         /* This one doesn't make too much sense ... We never try
2054                          * to write to the rbio, and an application program where
2055                          * rbio and wbio are separate couldn't even know what it
2056                          * should wait for.
2057                          * However if we ever set s->rwstate incorrectly
2058                          * (so that we have SSL_want_read(s) instead of
2059                          * SSL_want_write(s)) and rbio and wbio *are* the same,
2060                          * this test works around that bug; so it might be safer
2061                          * to keep it. */
2062                         return(SSL_ERROR_WANT_WRITE);
2063                 else if (BIO_should_io_special(bio))
2064                         {
2065                         reason=BIO_get_retry_reason(bio);
2066                         if (reason == BIO_RR_CONNECT)
2067                                 return(SSL_ERROR_WANT_CONNECT);
2068                         else if (reason == BIO_RR_ACCEPT)
2069                                 return(SSL_ERROR_WANT_ACCEPT);
2070                         else
2071                                 return(SSL_ERROR_SYSCALL); /* unknown */
2072                         }
2073                 }
2074
2075         if ((i < 0) && SSL_want_write(s))
2076                 {
2077                 bio=SSL_get_wbio(s);
2078                 if (BIO_should_write(bio))
2079                         return(SSL_ERROR_WANT_WRITE);
2080                 else if (BIO_should_read(bio))
2081                         /* See above (SSL_want_read(s) with BIO_should_write(bio)) */
2082                         return(SSL_ERROR_WANT_READ);
2083                 else if (BIO_should_io_special(bio))
2084                         {
2085                         reason=BIO_get_retry_reason(bio);
2086                         if (reason == BIO_RR_CONNECT)
2087                                 return(SSL_ERROR_WANT_CONNECT);
2088                         else if (reason == BIO_RR_ACCEPT)
2089                                 return(SSL_ERROR_WANT_ACCEPT);
2090                         else
2091                                 return(SSL_ERROR_SYSCALL);
2092                         }
2093                 }
2094         if ((i < 0) && SSL_want_x509_lookup(s))
2095                 {
2096                 return(SSL_ERROR_WANT_X509_LOOKUP);
2097                 }
2098
2099         if (i == 0)
2100                 {
2101                 if (s->version == SSL2_VERSION)
2102                         {
2103                         /* assume it is the socket being closed */
2104                         return(SSL_ERROR_ZERO_RETURN);
2105                         }
2106                 else
2107                         {
2108                         if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
2109                                 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
2110                                 return(SSL_ERROR_ZERO_RETURN);
2111                         }
2112                 }
2113         return(SSL_ERROR_SYSCALL);
2114         }
2115
2116 int SSL_do_handshake(SSL *s)
2117         {
2118         int ret=1;
2119
2120         if (s->handshake_func == NULL)
2121                 {
2122                 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET);
2123                 return(-1);
2124                 }
2125
2126         s->method->ssl_renegotiate_check(s);
2127
2128         if (SSL_in_init(s) || SSL_in_before(s))
2129                 {
2130                 ret=s->handshake_func(s);
2131                 }
2132         return(ret);
2133         }
2134
2135 /* For the next 2 functions, SSL_clear() sets shutdown and so
2136  * one of these calls will reset it */
2137 void SSL_set_accept_state(SSL *s)
2138         {
2139         s->server=1;
2140         s->shutdown=0;
2141         s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE;
2142         s->handshake_func=s->method->ssl_accept;
2143         /* clear the current cipher */
2144         ssl_clear_cipher_ctx(s);
2145         }
2146
2147 void SSL_set_connect_state(SSL *s)
2148         {
2149         s->server=0;
2150         s->shutdown=0;
2151         s->state=SSL_ST_CONNECT|SSL_ST_BEFORE;
2152         s->handshake_func=s->method->ssl_connect;
2153         /* clear the current cipher */
2154         ssl_clear_cipher_ctx(s);
2155         }
2156
2157 int ssl_undefined_function(SSL *s)
2158         {
2159         SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2160         return(0);
2161         }
2162
2163 int ssl_undefined_void_function(void)
2164         {
2165         SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2166         return(0);
2167         }
2168
2169 int ssl_undefined_const_function(const SSL *s)
2170         {
2171         SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2172         return(0);
2173         }
2174
2175 SSL_METHOD *ssl_bad_method(int ver)
2176         {
2177         SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
2178         return(NULL);
2179         }
2180
2181 const char *SSL_get_version(const SSL *s)
2182         {
2183         if (s->version == TLS1_VERSION)
2184                 return("TLSv1");
2185         else if (s->version == SSL3_VERSION)
2186                 return("SSLv3");
2187         else if (s->version == SSL2_VERSION)
2188                 return("SSLv2");
2189         else
2190                 return("unknown");
2191         }
2192
2193 SSL *SSL_dup(SSL *s)
2194         {
2195         STACK_OF(X509_NAME) *sk;
2196         X509_NAME *xn;
2197         SSL *ret;
2198         int i;
2199                  
2200         if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL)
2201             return(NULL);
2202
2203         ret->version = s->version;
2204         ret->type = s->type;
2205         ret->method = s->method;
2206
2207         if (s->session != NULL)
2208                 {
2209                 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
2210                 SSL_copy_session_id(ret,s);
2211                 }
2212         else
2213                 {
2214                 /* No session has been established yet, so we have to expect
2215                  * that s->cert or ret->cert will be changed later --
2216                  * they should not both point to the same object,
2217                  * and thus we can't use SSL_copy_session_id. */
2218
2219                 ret->method->ssl_free(ret);
2220                 ret->method = s->method;
2221                 ret->method->ssl_new(ret);
2222
2223                 if (s->cert != NULL)
2224                         {
2225                         if (ret->cert != NULL)
2226                                 {
2227                                 ssl_cert_free(ret->cert);
2228                                 }
2229                         ret->cert = ssl_cert_dup(s->cert);
2230                         if (ret->cert == NULL)
2231                                 goto err;
2232                         }
2233                                 
2234                 SSL_set_session_id_context(ret,
2235                         s->sid_ctx, s->sid_ctx_length);
2236                 }
2237
2238         ret->options=s->options;
2239         ret->mode=s->mode;
2240         SSL_set_max_cert_list(ret,SSL_get_max_cert_list(s));
2241         SSL_set_read_ahead(ret,SSL_get_read_ahead(s));
2242         ret->msg_callback = s->msg_callback;
2243         ret->msg_callback_arg = s->msg_callback_arg;
2244         SSL_set_verify(ret,SSL_get_verify_mode(s),
2245                 SSL_get_verify_callback(s));
2246         SSL_set_verify_depth(ret,SSL_get_verify_depth(s));
2247         ret->generate_session_id = s->generate_session_id;
2248
2249         SSL_set_info_callback(ret,SSL_get_info_callback(s));
2250         
2251         ret->debug=s->debug;
2252
2253         /* copy app data, a little dangerous perhaps */
2254         if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
2255                 goto err;
2256
2257         /* setup rbio, and wbio */
2258         if (s->rbio != NULL)
2259                 {
2260                 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio))
2261                         goto err;
2262                 }
2263         if (s->wbio != NULL)
2264                 {
2265                 if (s->wbio != s->rbio)
2266                         {
2267                         if (!BIO_dup_state(s->wbio,(char *)&ret->wbio))
2268                                 goto err;
2269                         }
2270                 else
2271                         ret->wbio=ret->rbio;
2272                 }
2273         ret->rwstate = s->rwstate;
2274         ret->in_handshake = s->in_handshake;
2275         ret->handshake_func = s->handshake_func;
2276         ret->server = s->server;
2277         ret->new_session = s->new_session;
2278         ret->quiet_shutdown = s->quiet_shutdown;
2279         ret->shutdown=s->shutdown;
2280         ret->state=s->state; /* SSL_dup does not really work at any state, though */
2281         ret->rstate=s->rstate;
2282         ret->init_num = 0; /* would have to copy ret->init_buf, ret->init_msg, ret->init_num, ret->init_off */
2283         ret->hit=s->hit;
2284
2285         X509_VERIFY_PARAM_inherit(ret->param, s->param);
2286
2287         /* dup the cipher_list and cipher_list_by_id stacks */
2288         if (s->cipher_list != NULL)
2289                 {
2290                 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
2291                         goto err;
2292                 }
2293         if (s->cipher_list_by_id != NULL)
2294                 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_id))
2295                         == NULL)
2296                         goto err;
2297
2298         /* Dup the client_CA list */
2299         if (s->client_CA != NULL)
2300                 {
2301                 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
2302                 ret->client_CA=sk;
2303                 for (i=0; i<sk_X509_NAME_num(sk); i++)
2304                         {
2305                         xn=sk_X509_NAME_value(sk,i);
2306                         if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL)
2307                                 {
2308                                 X509_NAME_free(xn);
2309                                 goto err;
2310                                 }
2311                         }
2312                 }
2313
2314         if (0)
2315                 {
2316 err:
2317                 if (ret != NULL) SSL_free(ret);
2318                 ret=NULL;
2319                 }
2320         return(ret);
2321         }
2322
2323 void ssl_clear_cipher_ctx(SSL *s)
2324         {
2325         if (s->enc_read_ctx != NULL)
2326                 {
2327                 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
2328                 OPENSSL_free(s->enc_read_ctx);
2329                 s->enc_read_ctx=NULL;
2330                 }
2331         if (s->enc_write_ctx != NULL)
2332                 {
2333                 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
2334                 OPENSSL_free(s->enc_write_ctx);
2335                 s->enc_write_ctx=NULL;
2336                 }
2337 #ifndef OPENSSL_NO_COMP
2338         if (s->expand != NULL)
2339                 {
2340                 COMP_CTX_free(s->expand);
2341                 s->expand=NULL;
2342                 }
2343         if (s->compress != NULL)
2344                 {
2345                 COMP_CTX_free(s->compress);
2346                 s->compress=NULL;
2347                 }
2348 #endif
2349         }
2350
2351 /* Fix this function so that it takes an optional type parameter */
2352 X509 *SSL_get_certificate(const SSL *s)
2353         {
2354         if (s->cert != NULL)
2355                 return(s->cert->key->x509);
2356         else
2357                 return(NULL);
2358         }
2359
2360 /* Fix this function so that it takes an optional type parameter */
2361 EVP_PKEY *SSL_get_privatekey(SSL *s)
2362         {
2363         if (s->cert != NULL)
2364                 return(s->cert->key->privatekey);
2365         else
2366                 return(NULL);
2367         }
2368
2369 SSL_CIPHER *SSL_get_current_cipher(const SSL *s)
2370         {
2371         if ((s->session != NULL) && (s->session->cipher != NULL))
2372                 return(s->session->cipher);
2373         return(NULL);
2374         }
2375 #ifdef OPENSSL_NO_COMP
2376 const void *SSL_get_current_compression(SSL *s)
2377         {
2378         return NULL;
2379         }
2380 const void *SSL_get_current_expansion(SSL *s)
2381         {
2382         return NULL;
2383         }
2384 #else
2385
2386 const COMP_METHOD *SSL_get_current_compression(SSL *s)
2387         {
2388         if (s->compress != NULL)
2389                 return(s->compress->meth);
2390         return(NULL);
2391         }
2392
2393 const COMP_METHOD *SSL_get_current_expansion(SSL *s)
2394         {
2395         if (s->expand != NULL)
2396                 return(s->expand->meth);
2397         return(NULL);
2398         }
2399 #endif
2400
2401 int ssl_init_wbio_buffer(SSL *s,int push)
2402         {
2403         BIO *bbio;
2404
2405         if (s->bbio == NULL)
2406                 {
2407                 bbio=BIO_new(BIO_f_buffer());
2408                 if (bbio == NULL) return(0);
2409                 s->bbio=bbio;
2410                 }
2411         else
2412                 {
2413                 bbio=s->bbio;
2414                 if (s->bbio == s->wbio)
2415                         s->wbio=BIO_pop(s->wbio);
2416                 }
2417         (void)BIO_reset(bbio);
2418 /*      if (!BIO_set_write_buffer_size(bbio,16*1024)) */
2419         if (!BIO_set_read_buffer_size(bbio,1))
2420                 {
2421                 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB);
2422                 return(0);
2423                 }
2424         if (push)
2425                 {
2426                 if (s->wbio != bbio)
2427                         s->wbio=BIO_push(bbio,s->wbio);
2428                 }
2429         else
2430                 {
2431                 if (s->wbio == bbio)
2432                         s->wbio=BIO_pop(bbio);
2433                 }
2434         return(1);
2435         }
2436
2437 void ssl_free_wbio_buffer(SSL *s)
2438         {
2439         if (s->bbio == NULL) return;
2440
2441         if (s->bbio == s->wbio)
2442                 {
2443                 /* remove buffering */
2444                 s->wbio=BIO_pop(s->wbio);
2445 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids adding one more preprocessor symbol */
2446                 assert(s->wbio != NULL);
2447 #endif  
2448         }
2449         BIO_free(s->bbio);
2450         s->bbio=NULL;
2451         }
2452         
2453 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode)
2454         {
2455         ctx->quiet_shutdown=mode;
2456         }
2457
2458 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx)
2459         {
2460         return(ctx->quiet_shutdown);
2461         }
2462
2463 void SSL_set_quiet_shutdown(SSL *s,int mode)
2464         {
2465         s->quiet_shutdown=mode;
2466         }
2467
2468 int SSL_get_quiet_shutdown(const SSL *s)
2469         {
2470         return(s->quiet_shutdown);
2471         }
2472
2473 void SSL_set_shutdown(SSL *s,int mode)
2474         {
2475         s->shutdown=mode;
2476         }
2477
2478 int SSL_get_shutdown(const SSL *s)
2479         {
2480         return(s->shutdown);
2481         }
2482
2483 int SSL_version(const SSL *s)
2484         {
2485         return(s->version);
2486         }
2487
2488 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl)
2489         {
2490         return(ssl->ctx);
2491         }
2492
2493 SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX* ctx)
2494         {
2495         if (ssl->ctx == ctx)
2496                 return ssl->ctx;
2497 #ifndef OPENSSL_NO_TLSEXT
2498         if (ctx == NULL)
2499                 ctx = ssl->initial_ctx;
2500 #endif
2501         if (ssl->cert != NULL)
2502                 ssl_cert_free(ssl->cert);
2503         ssl->cert = ssl_cert_dup(ctx->cert);
2504         CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
2505         if (ssl->ctx != NULL)
2506                 SSL_CTX_free(ssl->ctx); /* decrement reference count */
2507         ssl->ctx = ctx;
2508         return(ssl->ctx);
2509         }
2510
2511 #ifndef OPENSSL_NO_STDIO
2512 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
2513         {
2514         return(X509_STORE_set_default_paths(ctx->cert_store));
2515         }
2516
2517 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
2518                 const char *CApath)
2519         {
2520         return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
2521         }
2522 #endif
2523
2524 void SSL_set_info_callback(SSL *ssl,
2525         void (*cb)(const SSL *ssl,int type,int val))
2526         {
2527         ssl->info_callback=cb;
2528         }
2529
2530 /* One compiler (Diab DCC) doesn't like argument names in returned
2531    function pointer.  */
2532 void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /*ssl*/,int /*type*/,int /*val*/) 
2533         {
2534         return ssl->info_callback;
2535         }
2536
2537 int SSL_state(const SSL *ssl)
2538         {
2539         return(ssl->state);
2540         }
2541
2542 void SSL_set_verify_result(SSL *ssl,long arg)
2543         {
2544         ssl->verify_result=arg;
2545         }
2546
2547 long SSL_get_verify_result(const SSL *ssl)
2548         {
2549         return(ssl->verify_result);
2550         }
2551
2552 int SSL_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2553                          CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2554         {
2555         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp,
2556                                 new_func, dup_func, free_func);
2557         }
2558
2559 int SSL_set_ex_data(SSL *s,int idx,void *arg)
2560         {
2561         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2562         }
2563
2564 void *SSL_get_ex_data(const SSL *s,int idx)
2565         {
2566         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2567         }
2568
2569 int SSL_CTX_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func,
2570                              CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func)
2571         {
2572         return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp,
2573                                 new_func, dup_func, free_func);
2574         }
2575
2576 int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg)
2577         {
2578         return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
2579         }
2580
2581 void *SSL_CTX_get_ex_data(const SSL_CTX *s,int idx)
2582         {
2583         return(CRYPTO_get_ex_data(&s->ex_data,idx));
2584         }
2585
2586 int ssl_ok(SSL *s)
2587         {
2588         return(1);
2589         }
2590
2591 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx)
2592         {
2593         return(ctx->cert_store);
2594         }
2595
2596 void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store)
2597         {
2598         if (ctx->cert_store != NULL)
2599                 X509_STORE_free(ctx->cert_store);
2600         ctx->cert_store=store;
2601         }
2602
2603 int SSL_want(const SSL *s)
2604         {
2605         return(s->rwstate);
2606         }
2607
2608 /*!
2609  * \brief Set the callback for generating temporary RSA keys.
2610  * \param ctx the SSL context.
2611  * \param cb the callback
2612  */
2613
2614 #ifndef OPENSSL_NO_RSA
2615 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl,
2616                                                           int is_export,
2617                                                           int keylength))
2618     {
2619     SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2620     }
2621
2622 void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl,
2623                                                   int is_export,
2624                                                   int keylength))
2625     {
2626     SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb);
2627     }
2628 #endif
2629
2630 #ifdef DOXYGEN
2631 /*!
2632  * \brief The RSA temporary key callback function.
2633  * \param ssl the SSL session.
2634  * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
2635  * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
2636  * of the required key in bits.
2637  * \return the temporary RSA key.
2638  * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
2639  */
2640
2641 RSA *cb(SSL *ssl,int is_export,int keylength)
2642     {}
2643 #endif
2644
2645 /*!
2646  * \brief Set the callback for generating temporary DH keys.
2647  * \param ctx the SSL context.
2648  * \param dh the callback
2649  */
2650
2651 #ifndef OPENSSL_NO_DH
2652 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int is_export,
2653                                                         int keylength))
2654         {
2655         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2656         }
2657
2658 void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int is_export,
2659                                                 int keylength))
2660         {
2661         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh);
2662         }
2663 #endif
2664
2665 #ifndef OPENSSL_NO_ECDH
2666 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2667                                                         int keylength))
2668         {
2669         SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2670         }
2671
2672 void SSL_set_tmp_ecdh_callback(SSL *ssl,EC_KEY *(*ecdh)(SSL *ssl,int is_export,
2673                                                 int keylength))
2674         {
2675         SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh);
2676         }
2677 #endif
2678
2679
2680 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))
2681         {
2682         SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2683         }
2684 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))
2685         {
2686         SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
2687         }
2688
2689
2690
2691 #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16)
2692 #include "../crypto/bio/bss_file.c"
2693 #endif
2694
2695 IMPLEMENT_STACK_OF(SSL_CIPHER)
2696 IMPLEMENT_STACK_OF(SSL_COMP)