]> git.ipfire.org Git - thirdparty/openssl.git/blame - ssl/ssl_lib.c
Don't use ...-oldgcc for egcs compiler.
[thirdparty/openssl.git] / ssl / ssl_lib.c
CommitLineData
4f43d0e7
BL
1/*! \file ssl/ssl_lib.c
2 * \brief Version independent SSL functions.
3 */
58964a49 4/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
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#include <stdio.h>
ec577822
BM
62#include <openssl/objects.h>
63#include <openssl/lhash.h>
d02b48c6
RE
64#include "ssl_locl.h"
65
b4cadc6e 66char *SSL_version_str=OPENSSL_VERSION_TEXT;
58964a49
RE
67
68static STACK *ssl_meth=NULL;
69static STACK *ssl_ctx_meth=NULL;
70static int ssl_meth_num=0;
71static int ssl_ctx_meth_num=0;
d02b48c6 72
7f0dae32 73OPENSSL_GLOBAL SSL3_ENC_METHOD ssl3_undef_enc_method={
58964a49
RE
74 ssl_undefined_function,
75 ssl_undefined_function,
76 ssl_undefined_function,
77 ssl_undefined_function,
78 ssl_undefined_function,
79 ssl_undefined_function,
80 };
d02b48c6 81
4f43d0e7 82int SSL_clear(SSL *s)
d02b48c6
RE
83 {
84 int state;
85
413c4f45
MC
86 if (s->method == NULL)
87 {
88 SSLerr(SSL_F_SSL_CLEAR,SSL_R_NO_METHOD_SPECIFIED);
89 return(0);
90 }
d02b48c6
RE
91
92 s->error=0;
93 s->hit=0;
413c4f45 94 s->shutdown=0;
d02b48c6 95
413c4f45 96#if 0
d02b48c6
RE
97 /* This is set if we are doing dynamic renegotiation so keep
98 * the old cipher. It is sort of a SSL_clear_lite :-) */
413c4f45
MC
99 if (s->new_session) return(1);
100#endif
d02b48c6
RE
101
102 state=s->state; /* Keep to check if we throw away the session-id */
103 s->type=0;
104
413c4f45
MC
105 s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT);
106
d02b48c6 107 s->version=s->method->version;
413c4f45 108 s->client_version=s->version;
d02b48c6 109 s->rwstate=SSL_NOTHING;
d02b48c6 110 s->rstate=SSL_ST_READ_HEADER;
413c4f45 111 s->read_ahead=s->ctx->read_ahead;
d02b48c6
RE
112
113 if (s->init_buf != NULL)
114 {
115 BUF_MEM_free(s->init_buf);
116 s->init_buf=NULL;
117 }
118
119 ssl_clear_cipher_ctx(s);
120
121 if (ssl_clear_bad_session(s))
122 {
123 SSL_SESSION_free(s->session);
124 s->session=NULL;
125 }
126
d02b48c6
RE
127 s->first_packet=0;
128
413c4f45
MC
129#if 1
130 /* Check to see if we were changed into a different method, if
131 * so, revert back if we are not doing session-id reuse. */
132 if ((s->session == NULL) && (s->method != s->ctx->method))
133 {
134 s->method->ssl_free(s);
135 s->method=s->ctx->method;
136 if (!s->method->ssl_new(s))
137 return(0);
138 }
139 else
140#endif
141 s->method->ssl_clear(s);
142 return(1);
d02b48c6
RE
143 }
144
4f43d0e7
BL
145/** Used to change an SSL_CTXs default SSL method type */
146int SSL_CTX_set_ssl_version(SSL_CTX *ctx,SSL_METHOD *meth)
d02b48c6 147 {
f73e07cf 148 STACK_OF(SSL_CIPHER) *sk;
d02b48c6
RE
149
150 ctx->method=meth;
151
152 sk=ssl_create_cipher_list(ctx->method,&(ctx->cipher_list),
153 &(ctx->cipher_list_by_id),SSL_DEFAULT_CIPHER_LIST);
f73e07cf 154 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0))
d02b48c6
RE
155 {
156 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,SSL_R_SSL_LIBRARY_HAS_NO_CIPHERS);
157 return(0);
158 }
159 return(1);
160 }
161
4f43d0e7 162SSL *SSL_new(SSL_CTX *ctx)
d02b48c6
RE
163 {
164 SSL *s;
165
166 if (ctx == NULL)
167 {
168 SSLerr(SSL_F_SSL_NEW,SSL_R_NULL_SSL_CTX);
169 return(NULL);
170 }
171 if (ctx->method == NULL)
172 {
173 SSLerr(SSL_F_SSL_NEW,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION);
174 return(NULL);
175 }
176
177 s=(SSL *)Malloc(sizeof(SSL));
178 if (s == NULL) goto err;
179 memset(s,0,sizeof(SSL));
180
ca8e5b9b 181 if (ctx->cert != NULL)
d02b48c6 182 {
ca8e5b9b
BM
183 /* Earlier library versions used to copy the pointer to
184 * the CERT, not its contents; only when setting new
185 * parameters for the per-SSL copy, ssl_cert_new would be
186 * called (and the direct reference to the per-SSL_CTX
187 * settings would be lost, but those still were indirectly
188 * accessed for various purposes, and for that reason they
189 * used to be known as s->ctx->default_cert).
190 * Now we don't look at the SSL_CTX's CERT after having
191 * duplicated it once. */
192
193 s->cert = ssl_cert_dup(ctx->cert);
194 if (s->cert == NULL)
195 goto err;
d02b48c6
RE
196 }
197 else
ca8e5b9b 198 s->cert=NULL; /* Cannot really happen (see SSL_CTX_new) */
4eb77b26
BM
199 s->sid_ctx_length=ctx->sid_ctx_length;
200 memcpy(&s->sid_ctx,&ctx->sid_ctx,sizeof(s->sid_ctx));
413c4f45 201 s->verify_mode=ctx->verify_mode;
7f89714e 202 s->verify_depth=ctx->verify_depth;
d02b48c6
RE
203 s->verify_callback=ctx->default_verify_callback;
204 CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX);
205 s->ctx=ctx;
206
207 s->verify_result=X509_V_OK;
208
209 s->method=ctx->method;
210
211 if (!s->method->ssl_new(s))
d02b48c6 212 goto err;
d02b48c6
RE
213
214 s->quiet_shutdown=ctx->quiet_shutdown;
58964a49 215 s->references=1;
413c4f45 216 s->server=(ctx->method->ssl_accept == ssl_undefined_function)?0:1;
58964a49 217 s->options=ctx->options;
d02b48c6 218 SSL_clear(s);
58964a49
RE
219
220 CRYPTO_new_ex_data(ssl_meth,(char *)s,&s->ex_data);
221
d02b48c6
RE
222 return(s);
223err:
ca8e5b9b
BM
224 if (s != NULL)
225 {
226 if (s->cert != NULL)
227 ssl_cert_free(s->cert);
228 if (s->ctx != NULL)
229 SSL_CTX_free(s->ctx); /* decrement reference count */
230 Free(s);
231 }
d02b48c6
RE
232 SSLerr(SSL_F_SSL_NEW,ERR_R_MALLOC_FAILURE);
233 return(NULL);
234 }
235
4eb77b26
BM
236int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx,
237 unsigned int sid_ctx_len)
238 {
239 if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH)
240 {
241 SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
242 return 0;
243 }
244 ctx->sid_ctx_length=sid_ctx_len;
245 memcpy(ctx->sid_ctx,sid_ctx,sid_ctx_len);
246
247 return 1;
248 }
249
b4cadc6e
BL
250int SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
251 unsigned int sid_ctx_len)
252 {
253 if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH)
254 {
255 SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
256 return 0;
257 }
258 ssl->sid_ctx_length=sid_ctx_len;
259 memcpy(ssl->sid_ctx,sid_ctx,sid_ctx_len);
260
261 return 1;
262 }
263
4f43d0e7 264void SSL_free(SSL *s)
d02b48c6 265 {
58964a49
RE
266 int i;
267
e03ddfae
BL
268 if(s == NULL)
269 return;
270
58964a49
RE
271 i=CRYPTO_add(&s->references,-1,CRYPTO_LOCK_SSL);
272#ifdef REF_PRINT
273 REF_PRINT("SSL",s);
274#endif
275 if (i > 0) return;
276#ifdef REF_CHECK
277 if (i < 0)
278 {
279 fprintf(stderr,"SSL_free, bad reference count\n");
280 abort(); /* ok */
281 }
282#endif
283
284 CRYPTO_free_ex_data(ssl_meth,(char *)s,&s->ex_data);
285
d02b48c6
RE
286 if (s->bbio != NULL)
287 {
288 /* If the buffering BIO is in place, pop it off */
289 if (s->bbio == s->wbio)
290 {
291 s->wbio=BIO_pop(s->wbio);
292 }
293 BIO_free(s->bbio);
58964a49 294 s->bbio=NULL;
d02b48c6
RE
295 }
296 if (s->rbio != NULL)
297 BIO_free_all(s->rbio);
298 if ((s->wbio != NULL) && (s->wbio != s->rbio))
299 BIO_free_all(s->wbio);
300
301 if (s->init_buf != NULL) BUF_MEM_free(s->init_buf);
302
303 /* add extra stuff */
f73e07cf
BL
304 if (s->cipher_list != NULL) sk_SSL_CIPHER_free(s->cipher_list);
305 if (s->cipher_list_by_id != NULL) sk_SSL_CIPHER_free(s->cipher_list_by_id);
d02b48c6
RE
306
307 /* Make the next call work :-) */
308 if (s->session != NULL)
309 {
310 ssl_clear_bad_session(s);
311 SSL_SESSION_free(s->session);
312 }
313
314 ssl_clear_cipher_ctx(s);
315
316 if (s->cert != NULL) ssl_cert_free(s->cert);
317 /* Free up if allocated */
318
319 if (s->ctx) SSL_CTX_free(s->ctx);
320
321 if (s->client_CA != NULL)
f73e07cf 322 sk_X509_NAME_pop_free(s->client_CA,X509_NAME_free);
d02b48c6
RE
323
324 if (s->method != NULL) s->method->ssl_free(s);
325
326 Free((char *)s);
327 }
328
4f43d0e7 329void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
d02b48c6
RE
330 {
331 /* If the output buffering BIO is still in place, remove it
332 */
333 if (s->bbio != NULL)
334 {
335 if (s->wbio == s->bbio)
336 {
337 s->wbio=s->wbio->next_bio;
338 s->bbio->next_bio=NULL;
339 }
340 }
341 if ((s->rbio != NULL) && (s->rbio != rbio))
342 BIO_free_all(s->rbio);
343 if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
344 BIO_free_all(s->wbio);
345 s->rbio=rbio;
346 s->wbio=wbio;
347 }
348
4f43d0e7 349BIO *SSL_get_rbio(SSL *s)
d02b48c6
RE
350 { return(s->rbio); }
351
4f43d0e7 352BIO *SSL_get_wbio(SSL *s)
d02b48c6
RE
353 { return(s->wbio); }
354
4f43d0e7 355int SSL_get_fd(SSL *s)
d02b48c6
RE
356 {
357 int ret= -1;
358 BIO *b,*r;
359
360 b=SSL_get_rbio(s);
361 r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR);
362 if (r != NULL)
363 BIO_get_fd(r,&ret);
364 return(ret);
365 }
366
367#ifndef NO_SOCK
4f43d0e7 368int SSL_set_fd(SSL *s,int fd)
d02b48c6
RE
369 {
370 int ret=0;
371 BIO *bio=NULL;
372
373 bio=BIO_new(BIO_s_socket());
374
375 if (bio == NULL)
376 {
377 SSLerr(SSL_F_SSL_SET_FD,ERR_R_BUF_LIB);
378 goto err;
379 }
380 BIO_set_fd(bio,fd,BIO_NOCLOSE);
381 SSL_set_bio(s,bio,bio);
382 ret=1;
383err:
384 return(ret);
385 }
386
4f43d0e7 387int SSL_set_wfd(SSL *s,int fd)
d02b48c6
RE
388 {
389 int ret=0;
390 BIO *bio=NULL;
391
58964a49
RE
392 if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET)
393 || ((int)BIO_get_fd(s->rbio,NULL) != fd))
394 {
395 bio=BIO_new(BIO_s_socket());
d02b48c6 396
58964a49
RE
397 if (bio == NULL)
398 { SSLerr(SSL_F_SSL_SET_WFD,ERR_R_BUF_LIB); goto err; }
399 BIO_set_fd(bio,fd,BIO_NOCLOSE);
400 SSL_set_bio(s,SSL_get_rbio(s),bio);
401 }
402 else
403 SSL_set_bio(s,SSL_get_rbio(s),SSL_get_rbio(s));
d02b48c6
RE
404 ret=1;
405err:
406 return(ret);
407 }
408
4f43d0e7 409int SSL_set_rfd(SSL *s,int fd)
d02b48c6
RE
410 {
411 int ret=0;
412 BIO *bio=NULL;
413
58964a49
RE
414 if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET)
415 || ((int)BIO_get_fd(s->wbio,NULL) != fd))
d02b48c6 416 {
58964a49
RE
417 bio=BIO_new(BIO_s_socket());
418
419 if (bio == NULL)
420 {
421 SSLerr(SSL_F_SSL_SET_RFD,ERR_R_BUF_LIB);
422 goto err;
423 }
424 BIO_set_fd(bio,fd,BIO_NOCLOSE);
425 SSL_set_bio(s,bio,SSL_get_wbio(s));
d02b48c6 426 }
58964a49
RE
427 else
428 SSL_set_bio(s,SSL_get_wbio(s),SSL_get_wbio(s));
d02b48c6
RE
429 ret=1;
430err:
431 return(ret);
432 }
433#endif
434
4f43d0e7 435int SSL_get_verify_mode(SSL *s)
d02b48c6
RE
436 {
437 return(s->verify_mode);
438 }
439
7f89714e
BM
440int SSL_get_verify_depth(SSL *s)
441 {
442 return(s->verify_depth);
443 }
444
a06c602e 445int (*SSL_get_verify_callback(SSL *s))(int,X509_STORE_CTX *)
d02b48c6
RE
446 {
447 return(s->verify_callback);
448 }
449
4f43d0e7 450int SSL_CTX_get_verify_mode(SSL_CTX *ctx)
d02b48c6 451 {
413c4f45 452 return(ctx->verify_mode);
d02b48c6
RE
453 }
454
7f89714e
BM
455int SSL_CTX_get_verify_depth(SSL_CTX *ctx)
456 {
457 return(ctx->verify_depth);
458 }
459
a06c602e 460int (*SSL_CTX_get_verify_callback(SSL_CTX *ctx))(int,X509_STORE_CTX *)
d02b48c6
RE
461 {
462 return(ctx->default_verify_callback);
463 }
464
49bc2624
BL
465void SSL_set_verify(SSL *s,int mode,
466 int (*callback)(int ok,X509_STORE_CTX *ctx))
d02b48c6
RE
467 {
468 s->verify_mode=mode;
469 if (callback != NULL)
470 s->verify_callback=callback;
471 }
472
7f89714e
BM
473void SSL_set_verify_depth(SSL *s,int depth)
474 {
475 s->verify_depth=depth;
476 }
477
4f43d0e7 478void SSL_set_read_ahead(SSL *s,int yes)
d02b48c6
RE
479 {
480 s->read_ahead=yes;
481 }
482
4f43d0e7 483int SSL_get_read_ahead(SSL *s)
d02b48c6
RE
484 {
485 return(s->read_ahead);
486 }
487
4f43d0e7 488int SSL_pending(SSL *s)
d02b48c6
RE
489 {
490 return(s->method->ssl_pending(s));
491 }
492
4f43d0e7 493X509 *SSL_get_peer_certificate(SSL *s)
d02b48c6
RE
494 {
495 X509 *r;
496
497 if ((s == NULL) || (s->session == NULL))
498 r=NULL;
499 else
500 r=s->session->peer;
501
502 if (r == NULL) return(r);
503
504 CRYPTO_add(&r->references,1,CRYPTO_LOCK_X509);
505
506 return(r);
507 }
508
f73e07cf 509STACK_OF(X509) *SSL_get_peer_cert_chain(SSL *s)
d02b48c6 510 {
f73e07cf 511 STACK_OF(X509) *r;
d02b48c6 512
9d5cceac 513 if ((s == NULL) || (s->session == NULL) || (s->session->sess_cert == NULL))
d02b48c6
RE
514 r=NULL;
515 else
9d5cceac 516 r=s->session->sess_cert->cert_chain;
d02b48c6
RE
517
518 return(r);
519 }
520
521/* Now in theory, since the calling process own 't' it should be safe to
522 * modify. We need to be able to read f without being hassled */
4f43d0e7 523void SSL_copy_session_id(SSL *t,SSL *f)
d02b48c6
RE
524 {
525 CERT *tmp;
526
527 /* Do we need to to SSL locking? */
528 SSL_set_session(t,SSL_get_session(f));
529
530 /* what if we are setup as SSLv2 but want to talk SSLv3 or
531 * vice-versa */
532 if (t->method != f->method)
533 {
534 t->method->ssl_free(t); /* cleanup current */
535 t->method=f->method; /* change method */
536 t->method->ssl_new(t); /* setup new */
537 }
538
539 tmp=t->cert;
540 if (f->cert != NULL)
541 {
542 CRYPTO_add(&f->cert->references,1,CRYPTO_LOCK_SSL_CERT);
543 t->cert=f->cert;
544 }
545 else
546 t->cert=NULL;
547 if (tmp != NULL) ssl_cert_free(tmp);
b4cadc6e 548 SSL_set_session_id_context(t,f->sid_ctx,f->sid_ctx_length);
d02b48c6
RE
549 }
550
58964a49 551/* Fix this so it checks all the valid key/cert options */
4f43d0e7 552int SSL_CTX_check_private_key(SSL_CTX *ctx)
d02b48c6
RE
553 {
554 if ( (ctx == NULL) ||
ca8e5b9b
BM
555 (ctx->cert == NULL) ||
556 (ctx->cert->key->x509 == NULL))
d02b48c6
RE
557 {
558 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
559 return(0);
560 }
ca8e5b9b 561 if (ctx->cert->key->privatekey == NULL)
d02b48c6
RE
562 {
563 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
564 return(0);
565 }
ca8e5b9b 566 return(X509_check_private_key(ctx->cert->key->x509, ctx->cert->key->privatekey));
d02b48c6
RE
567 }
568
58964a49 569/* Fix this function so that it takes an optional type parameter */
4f43d0e7 570int SSL_check_private_key(SSL *ssl)
d02b48c6
RE
571 {
572 if (ssl == NULL)
573 {
574 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,ERR_R_PASSED_NULL_PARAMETER);
575 return(0);
576 }
577 if (ssl->cert == NULL)
578 return(SSL_CTX_check_private_key(ssl->ctx));
579 if (ssl->cert->key->x509 == NULL)
580 {
581 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED);
582 return(0);
583 }
584 if (ssl->cert->key->privatekey == NULL)
585 {
586 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED);
587 return(0);
588 }
589 return(X509_check_private_key(ssl->cert->key->x509,
590 ssl->cert->key->privatekey));
591 }
592
4f43d0e7 593int SSL_accept(SSL *s)
d02b48c6 594 {
b31b04d9
BM
595 if (s->handshake_func == 0)
596 /* Not properly initialized yet */
597 SSL_set_accept_state(s);
598
d02b48c6
RE
599 return(s->method->ssl_accept(s));
600 }
601
4f43d0e7 602int SSL_connect(SSL *s)
d02b48c6 603 {
b31b04d9
BM
604 if (s->handshake_func == 0)
605 /* Not properly initialized yet */
606 SSL_set_connect_state(s);
607
d02b48c6
RE
608 return(s->method->ssl_connect(s));
609 }
610
4f43d0e7 611long SSL_get_default_timeout(SSL *s)
d02b48c6
RE
612 {
613 return(s->method->get_timeout());
614 }
615
4f43d0e7 616int SSL_read(SSL *s,char *buf,int num)
d02b48c6 617 {
b31b04d9
BM
618 if (s->handshake_func == 0)
619 {
ff712220 620 SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED);
b31b04d9
BM
621 return -1;
622 }
623
d02b48c6
RE
624 if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
625 {
626 s->rwstate=SSL_NOTHING;
627 return(0);
628 }
629 return(s->method->ssl_read(s,buf,num));
630 }
631
4f43d0e7 632int SSL_peek(SSL *s,char *buf,int num)
d02b48c6
RE
633 {
634 if (s->shutdown & SSL_RECEIVED_SHUTDOWN)
635 {
636 return(0);
637 }
638 return(s->method->ssl_peek(s,buf,num));
639 }
640
4f43d0e7 641int SSL_write(SSL *s,const char *buf,int num)
d02b48c6 642 {
b31b04d9
BM
643 if (s->handshake_func == 0)
644 {
ff712220 645 SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED);
b31b04d9
BM
646 return -1;
647 }
648
d02b48c6
RE
649 if (s->shutdown & SSL_SENT_SHUTDOWN)
650 {
651 s->rwstate=SSL_NOTHING;
652 SSLerr(SSL_F_SSL_WRITE,SSL_R_PROTOCOL_IS_SHUTDOWN);
653 return(-1);
654 }
655 return(s->method->ssl_write(s,buf,num));
656 }
657
4f43d0e7 658int SSL_shutdown(SSL *s)
d02b48c6 659 {
d3407350 660 /* Note that this function behaves differently from what one might
e2e3d5ce
BM
661 * expect. Return values are 0 for no success (yet),
662 * 1 for success; but calling it once is usually not enough,
663 * even if blocking I/O is used (see ssl3_shutdown).
664 */
665
b31b04d9
BM
666 if (s->handshake_func == 0)
667 {
ff712220 668 SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED);
b31b04d9
BM
669 return -1;
670 }
671
d02b48c6
RE
672 if ((s != NULL) && !SSL_in_init(s))
673 return(s->method->ssl_shutdown(s));
674 else
675 return(1);
676 }
677
4f43d0e7 678int SSL_renegotiate(SSL *s)
d02b48c6 679 {
58964a49 680 s->new_session=1;
d02b48c6
RE
681 return(s->method->ssl_renegotiate(s));
682 }
683
4f43d0e7 684long SSL_ctrl(SSL *s,int cmd,long larg,char *parg)
d02b48c6 685 {
413c4f45
MC
686 long l;
687
688 switch (cmd)
689 {
690 case SSL_CTRL_GET_READ_AHEAD:
691 return(s->read_ahead);
692 case SSL_CTRL_SET_READ_AHEAD:
693 l=s->read_ahead;
694 s->read_ahead=larg;
695 return(l);
696 case SSL_CTRL_OPTIONS:
697 return(s->options|=larg);
698 default:
699 return(s->method->ssl_ctrl(s,cmd,larg,parg));
700 }
d02b48c6
RE
701 }
702
4f43d0e7 703long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd,long larg,char *parg)
d02b48c6 704 {
413c4f45
MC
705 long l;
706
707 switch (cmd)
708 {
709 case SSL_CTRL_GET_READ_AHEAD:
710 return(ctx->read_ahead);
711 case SSL_CTRL_SET_READ_AHEAD:
712 l=ctx->read_ahead;
713 ctx->read_ahead=larg;
714 return(l);
715
716 case SSL_CTRL_SET_SESS_CACHE_SIZE:
717 l=ctx->session_cache_size;
718 ctx->session_cache_size=larg;
719 return(l);
720 case SSL_CTRL_GET_SESS_CACHE_SIZE:
721 return(ctx->session_cache_size);
722 case SSL_CTRL_SET_SESS_CACHE_MODE:
723 l=ctx->session_cache_mode;
724 ctx->session_cache_mode=larg;
725 return(l);
726 case SSL_CTRL_GET_SESS_CACHE_MODE:
727 return(ctx->session_cache_mode);
728
729 case SSL_CTRL_SESS_NUMBER:
730 return(ctx->sessions->num_items);
731 case SSL_CTRL_SESS_CONNECT:
732 return(ctx->stats.sess_connect);
733 case SSL_CTRL_SESS_CONNECT_GOOD:
734 return(ctx->stats.sess_connect_good);
735 case SSL_CTRL_SESS_CONNECT_RENEGOTIATE:
736 return(ctx->stats.sess_connect_renegotiate);
737 case SSL_CTRL_SESS_ACCEPT:
738 return(ctx->stats.sess_accept);
739 case SSL_CTRL_SESS_ACCEPT_GOOD:
740 return(ctx->stats.sess_accept_good);
741 case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE:
742 return(ctx->stats.sess_accept_renegotiate);
743 case SSL_CTRL_SESS_HIT:
744 return(ctx->stats.sess_hit);
745 case SSL_CTRL_SESS_CB_HIT:
746 return(ctx->stats.sess_cb_hit);
747 case SSL_CTRL_SESS_MISSES:
748 return(ctx->stats.sess_miss);
749 case SSL_CTRL_SESS_TIMEOUTS:
750 return(ctx->stats.sess_timeout);
751 case SSL_CTRL_SESS_CACHE_FULL:
752 return(ctx->stats.sess_cache_full);
753 case SSL_CTRL_OPTIONS:
754 return(ctx->options|=larg);
755 default:
756 return(ctx->method->ssl_ctx_ctrl(ctx,cmd,larg,parg));
757 }
d02b48c6
RE
758 }
759
4f43d0e7 760int ssl_cipher_id_cmp(SSL_CIPHER *a,SSL_CIPHER *b)
d02b48c6
RE
761 {
762 long l;
763
764 l=a->id-b->id;
765 if (l == 0L)
766 return(0);
767 else
768 return((l > 0)?1:-1);
769 }
770
4f43d0e7 771int ssl_cipher_ptr_id_cmp(SSL_CIPHER **ap,SSL_CIPHER **bp)
d02b48c6
RE
772 {
773 long l;
774
775 l=(*ap)->id-(*bp)->id;
776 if (l == 0L)
777 return(0);
778 else
779 return((l > 0)?1:-1);
780 }
781
4f43d0e7 782/** return a STACK of the ciphers available for the SSL and in order of
d02b48c6 783 * preference */
f73e07cf 784STACK_OF(SSL_CIPHER) *SSL_get_ciphers(SSL *s)
d02b48c6
RE
785 {
786 if ((s != NULL) && (s->cipher_list != NULL))
787 {
788 return(s->cipher_list);
789 }
58964a49 790 else if ((s->ctx != NULL) &&
d02b48c6
RE
791 (s->ctx->cipher_list != NULL))
792 {
793 return(s->ctx->cipher_list);
794 }
795 return(NULL);
796 }
797
4f43d0e7 798/** return a STACK of the ciphers available for the SSL and in order of
d02b48c6 799 * algorithm id */
f73e07cf 800STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s)
d02b48c6
RE
801 {
802 if ((s != NULL) && (s->cipher_list_by_id != NULL))
803 {
804 return(s->cipher_list_by_id);
805 }
806 else if ((s != NULL) && (s->ctx != NULL) &&
807 (s->ctx->cipher_list_by_id != NULL))
808 {
809 return(s->ctx->cipher_list_by_id);
810 }
811 return(NULL);
812 }
813
4f43d0e7 814/** The old interface to get the same thing as SSL_get_ciphers() */
e778802f 815const char *SSL_get_cipher_list(SSL *s,int n)
d02b48c6
RE
816 {
817 SSL_CIPHER *c;
f73e07cf 818 STACK_OF(SSL_CIPHER) *sk;
d02b48c6
RE
819
820 if (s == NULL) return(NULL);
821 sk=SSL_get_ciphers(s);
f73e07cf 822 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n))
d02b48c6 823 return(NULL);
f73e07cf 824 c=sk_SSL_CIPHER_value(sk,n);
d02b48c6
RE
825 if (c == NULL) return(NULL);
826 return(c->name);
827 }
828
4f43d0e7
BL
829/** specify the ciphers to be used by defaut by the SSL_CTX */
830int SSL_CTX_set_cipher_list(SSL_CTX *ctx,char *str)
d02b48c6 831 {
f73e07cf 832 STACK_OF(SSL_CIPHER) *sk;
d02b48c6
RE
833
834 sk=ssl_create_cipher_list(ctx->method,&ctx->cipher_list,
835 &ctx->cipher_list_by_id,str);
836/* XXXX */
837 return((sk == NULL)?0:1);
838 }
839
4f43d0e7
BL
840/** specify the ciphers to be used by the SSL */
841int SSL_set_cipher_list(SSL *s,char *str)
d02b48c6 842 {
f73e07cf 843 STACK_OF(SSL_CIPHER) *sk;
d02b48c6
RE
844
845 sk=ssl_create_cipher_list(s->ctx->method,&s->cipher_list,
846 &s->cipher_list_by_id,str);
847/* XXXX */
848 return((sk == NULL)?0:1);
849 }
850
851/* works well for SSLv2, not so good for SSLv3 */
4f43d0e7 852char *SSL_get_shared_ciphers(SSL *s,char *buf,int len)
d02b48c6 853 {
e778802f
BL
854 char *p;
855 const char *cp;
f73e07cf 856 STACK_OF(SSL_CIPHER) *sk;
d02b48c6
RE
857 SSL_CIPHER *c;
858 int i;
859
860 if ((s->session == NULL) || (s->session->ciphers == NULL) ||
861 (len < 2))
862 return(NULL);
863
864 p=buf;
865 sk=s->session->ciphers;
f73e07cf 866 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
d02b48c6 867 {
58964a49
RE
868 /* Decrement for either the ':' or a '\0' */
869 len--;
f73e07cf 870 c=sk_SSL_CIPHER_value(sk,i);
d02b48c6
RE
871 for (cp=c->name; *cp; )
872 {
58964a49 873 if (len-- == 0)
d02b48c6
RE
874 {
875 *p='\0';
876 return(buf);
877 }
878 else
879 *(p++)= *(cp++);
880 }
881 *(p++)=':';
882 }
883 p[-1]='\0';
884 return(buf);
885 }
886
f73e07cf 887int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p)
d02b48c6
RE
888 {
889 int i,j=0;
890 SSL_CIPHER *c;
891 unsigned char *q;
892
893 if (sk == NULL) return(0);
894 q=p;
895
f73e07cf 896 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
d02b48c6 897 {
f73e07cf 898 c=sk_SSL_CIPHER_value(sk,i);
d02b48c6
RE
899 j=ssl_put_cipher_by_char(s,c,p);
900 p+=j;
901 }
902 return(p-q);
903 }
904
f73e07cf
BL
905STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
906 STACK_OF(SSL_CIPHER) **skp)
d02b48c6
RE
907 {
908 SSL_CIPHER *c;
f73e07cf 909 STACK_OF(SSL_CIPHER) *sk;
d02b48c6
RE
910 int i,n;
911
912 n=ssl_put_cipher_by_char(s,NULL,NULL);
913 if ((num%n) != 0)
914 {
915 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
916 return(NULL);
917 }
918 if ((skp == NULL) || (*skp == NULL))
f73e07cf 919 sk=sk_SSL_CIPHER_new(NULL); /* change perhaps later */
d02b48c6
RE
920 else
921 {
922 sk= *skp;
f73e07cf 923 sk_SSL_CIPHER_zero(sk);
d02b48c6
RE
924 }
925
926 for (i=0; i<num; i+=n)
927 {
928 c=ssl_get_cipher_by_char(s,p);
929 p+=n;
930 if (c != NULL)
931 {
f73e07cf 932 if (!sk_SSL_CIPHER_push(sk,c))
d02b48c6
RE
933 {
934 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,ERR_R_MALLOC_FAILURE);
935 goto err;
936 }
937 }
938 }
939
940 if (skp != NULL)
941 *skp=sk;
942 return(sk);
943err:
944 if ((skp == NULL) || (*skp == NULL))
f73e07cf 945 sk_SSL_CIPHER_free(sk);
d02b48c6
RE
946 return(NULL);
947 }
948
4f43d0e7 949unsigned long SSL_SESSION_hash(SSL_SESSION *a)
d02b48c6
RE
950 {
951 unsigned long l;
952
dfeab068
RE
953 l=(unsigned long)
954 ((unsigned int) a->session_id[0] )|
955 ((unsigned int) a->session_id[1]<< 8L)|
956 ((unsigned long)a->session_id[2]<<16L)|
957 ((unsigned long)a->session_id[3]<<24L);
d02b48c6
RE
958 return(l);
959 }
960
4f43d0e7 961int SSL_SESSION_cmp(SSL_SESSION *a,SSL_SESSION *b)
d02b48c6 962 {
58964a49
RE
963 if (a->ssl_version != b->ssl_version)
964 return(1);
965 if (a->session_id_length != b->session_id_length)
966 return(1);
967 return(memcmp(a->session_id,b->session_id,a->session_id_length));
d02b48c6
RE
968 }
969
4f43d0e7 970SSL_CTX *SSL_CTX_new(SSL_METHOD *meth)
d02b48c6 971 {
dfeab068 972 SSL_CTX *ret=NULL;
d02b48c6
RE
973
974 if (meth == NULL)
975 {
976 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_NULL_SSL_METHOD_PASSED);
977 return(NULL);
978 }
dfeab068
RE
979
980 if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0)
981 {
982 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS);
983 goto err;
984 }
d02b48c6
RE
985 ret=(SSL_CTX *)Malloc(sizeof(SSL_CTX));
986 if (ret == NULL)
987 goto err;
988
989 memset(ret,0,sizeof(SSL_CTX));
990
991 ret->method=meth;
992
993 ret->cert_store=NULL;
994 ret->session_cache_mode=SSL_SESS_CACHE_SERVER;
58964a49
RE
995 ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT;
996 ret->session_cache_head=NULL;
997 ret->session_cache_tail=NULL;
d02b48c6
RE
998
999 /* We take the system default */
1000 ret->session_timeout=meth->get_timeout();
1001
1002 ret->new_session_cb=NULL;
1003 ret->remove_session_cb=NULL;
1004 ret->get_session_cb=NULL;
1005
413c4f45 1006 memset((char *)&ret->stats,0,sizeof(ret->stats));
d02b48c6
RE
1007
1008 ret->references=1;
1009 ret->quiet_shutdown=0;
1010
1011/* ret->cipher=NULL;*/
1012/* ret->s2->challenge=NULL;
1013 ret->master_key=NULL;
1014 ret->key_arg=NULL;
1015 ret->s2->conn_id=NULL; */
1016
1017 ret->info_callback=NULL;
1018
1019 ret->app_verify_callback=NULL;
1020 ret->app_verify_arg=NULL;
1021
413c4f45
MC
1022 ret->read_ahead=0;
1023 ret->verify_mode=SSL_VERIFY_NONE;
7f89714e 1024 ret->verify_depth=-1; /* Don't impose a limit (but x509_lu.c does) */
d02b48c6 1025 ret->default_verify_callback=NULL;
ca8e5b9b 1026 if ((ret->cert=ssl_cert_new()) == NULL)
d02b48c6
RE
1027 goto err;
1028
1029 ret->default_passwd_callback=NULL;
1030 ret->client_cert_cb=NULL;
1031
58964a49 1032 ret->sessions=lh_new(SSL_SESSION_hash,SSL_SESSION_cmp);
d02b48c6
RE
1033 if (ret->sessions == NULL) goto err;
1034 ret->cert_store=X509_STORE_new();
1035 if (ret->cert_store == NULL) goto err;
1036
1037 ssl_create_cipher_list(ret->method,
1038 &ret->cipher_list,&ret->cipher_list_by_id,
1039 SSL_DEFAULT_CIPHER_LIST);
f73e07cf
BL
1040 if (ret->cipher_list == NULL
1041 || sk_SSL_CIPHER_num(ret->cipher_list) <= 0)
d02b48c6
RE
1042 {
1043 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS);
1044 goto err2;
1045 }
1046
58964a49
RE
1047 if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL)
1048 {
1049 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES);
1050 goto err2;
1051 }
1052 if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL)
1053 {
1054 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES);
1055 goto err2;
1056 }
1057 if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL)
1058 {
1059 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES);
1060 goto err2;
1061 }
1062
f73e07cf 1063 if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
d02b48c6
RE
1064 goto err;
1065
58964a49
RE
1066 CRYPTO_new_ex_data(ssl_ctx_meth,(char *)ret,&ret->ex_data);
1067
dfeab068 1068 ret->extra_certs=NULL;
413c4f45 1069 ret->comp_methods=SSL_COMP_get_compression_methods();
dfeab068 1070
d02b48c6
RE
1071 return(ret);
1072err:
1073 SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE);
1074err2:
1075 if (ret != NULL) SSL_CTX_free(ret);
1076 return(NULL);
1077 }
1078
f73e07cf
BL
1079static void SSL_COMP_free(SSL_COMP *comp)
1080 { Free(comp); }
1081
4f43d0e7 1082void SSL_CTX_free(SSL_CTX *a)
d02b48c6
RE
1083 {
1084 int i;
1085
1086 if (a == NULL) return;
1087
1088 i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX);
58964a49
RE
1089#ifdef REF_PRINT
1090 REF_PRINT("SSL_CTX",a);
1091#endif
d02b48c6
RE
1092 if (i > 0) return;
1093#ifdef REF_CHECK
1094 if (i < 0)
1095 {
1096 fprintf(stderr,"SSL_CTX_free, bad reference count\n");
1097 abort(); /* ok */
1098 }
1099#endif
58964a49 1100 CRYPTO_free_ex_data(ssl_ctx_meth,(char *)a,&a->ex_data);
d02b48c6
RE
1101
1102 if (a->sessions != NULL)
1103 {
1104 SSL_CTX_flush_sessions(a,0);
1105 lh_free(a->sessions);
1106 }
1107 if (a->cert_store != NULL)
1108 X509_STORE_free(a->cert_store);
1109 if (a->cipher_list != NULL)
f73e07cf 1110 sk_SSL_CIPHER_free(a->cipher_list);
d02b48c6 1111 if (a->cipher_list_by_id != NULL)
f73e07cf 1112 sk_SSL_CIPHER_free(a->cipher_list_by_id);
ca8e5b9b
BM
1113 if (a->cert != NULL)
1114 ssl_cert_free(a->cert);
d02b48c6 1115 if (a->client_CA != NULL)
f73e07cf 1116 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
dfeab068 1117 if (a->extra_certs != NULL)
f73e07cf 1118 sk_X509_pop_free(a->extra_certs,X509_free);
413c4f45 1119 if (a->comp_methods != NULL)
f73e07cf 1120 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free);
d02b48c6
RE
1121 Free((char *)a);
1122 }
1123
3ae76679 1124void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
d02b48c6
RE
1125 {
1126 ctx->default_passwd_callback=cb;
1127 }
1128
a74c55cd 1129void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,int (*cb)(),char *arg)
d02b48c6
RE
1130 {
1131 ctx->app_verify_callback=cb;
1132 ctx->app_verify_arg=arg;
1133 }
1134
4f43d0e7 1135void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
d02b48c6 1136 {
413c4f45 1137 ctx->verify_mode=mode;
d02b48c6
RE
1138 ctx->default_verify_callback=cb;
1139 /* This needs cleaning up EAY EAY EAY */
1140 X509_STORE_set_verify_cb_func(ctx->cert_store,cb);
1141 }
1142
7f89714e
BM
1143void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth)
1144 {
1145 ctx->verify_depth=depth;
1146 }
1147
ca8e5b9b 1148void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
d02b48c6
RE
1149 {
1150 CERT_PKEY *cpk;
1151 int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign;
1152 int rsa_enc_export,dh_rsa_export,dh_dsa_export;
60e31c3a 1153 int rsa_tmp_export,dh_tmp_export,kl;
d02b48c6
RE
1154 unsigned long mask,emask;
1155
f415fa32 1156 if (c == NULL) return;
d02b48c6 1157
60e31c3a
BL
1158 kl=SSL_C_EXPORT_PKEYLENGTH(cipher);
1159
d02b48c6 1160#ifndef NO_RSA
ca8e5b9b
BM
1161 rsa_tmp=(c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL);
1162 rsa_tmp_export=(c->rsa_tmp_cb != NULL ||
60e31c3a 1163 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl));
d02b48c6
RE
1164#else
1165 rsa_tmp=rsa_tmp_export=0;
1166#endif
1167#ifndef NO_DH
ca8e5b9b
BM
1168 dh_tmp=(c->dh_tmp != NULL || c->dh_tmp_cb != NULL);
1169 dh_tmp_export=(c->dh_tmp_cb != NULL ||
60e31c3a 1170 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl));
d02b48c6
RE
1171#else
1172 dh_tmp=dh_tmp_export=0;
1173#endif
1174
1175 cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]);
60e31c3a
BL
1176 rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL);
1177 rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
d02b48c6 1178 cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]);
60e31c3a 1179 rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
d02b48c6 1180 cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]);
60e31c3a 1181 dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL);
d02b48c6 1182 cpk= &(c->pkeys[SSL_PKEY_DH_RSA]);
60e31c3a
BL
1183 dh_rsa= (cpk->x509 != NULL && cpk->privatekey != NULL);
1184 dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
d02b48c6
RE
1185 cpk= &(c->pkeys[SSL_PKEY_DH_DSA]);
1186/* FIX THIS EAY EAY EAY */
60e31c3a
BL
1187 dh_dsa= (cpk->x509 != NULL && cpk->privatekey != NULL);
1188 dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl);
d02b48c6
RE
1189
1190 mask=0;
1191 emask=0;
1192
1193#ifdef CIPHER_DEBUG
f415fa32
BL
1194 printf("rt=%d rte=%d dht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
1195 rsa_tmp,rsa_tmp_export,dh_tmp,
1196 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
d02b48c6
RE
1197#endif
1198
1199 if (rsa_enc || (rsa_tmp && rsa_sign))
1200 mask|=SSL_kRSA;
f415fa32 1201 if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc)))
d02b48c6
RE
1202 emask|=SSL_kRSA;
1203
1204#if 0
1205 /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */
1206 if ( (dh_tmp || dh_rsa || dh_dsa) &&
1207 (rsa_enc || rsa_sign || dsa_sign))
1208 mask|=SSL_kEDH;
1209 if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) &&
1210 (rsa_enc || rsa_sign || dsa_sign))
1211 emask|=SSL_kEDH;
1212#endif
1213
1214 if (dh_tmp_export)
1215 emask|=SSL_kEDH;
1216
1217 if (dh_tmp)
1218 mask|=SSL_kEDH;
1219
1220 if (dh_rsa) mask|=SSL_kDHr;
1221 if (dh_rsa_export) emask|=SSL_kDHr;
1222
1223 if (dh_dsa) mask|=SSL_kDHd;
1224 if (dh_dsa_export) emask|=SSL_kDHd;
1225
1226 if (rsa_enc || rsa_sign)
1227 {
1228 mask|=SSL_aRSA;
1229 emask|=SSL_aRSA;
1230 }
1231
1232 if (dsa_sign)
1233 {
1234 mask|=SSL_aDSS;
1235 emask|=SSL_aDSS;
1236 }
1237
1238#ifdef SSL_ALLOW_ADH
1239 mask|=SSL_aNULL;
1240 emask|=SSL_aNULL;
1241#endif
1242
1243 c->mask=mask;
1244 c->export_mask=emask;
1245 c->valid=1;
1246 }
1247
1248/* THIS NEEDS CLEANING UP */
4f43d0e7 1249X509 *ssl_get_server_send_cert(SSL *s)
d02b48c6
RE
1250 {
1251 unsigned long alg,mask,kalg;
1252 CERT *c;
df63a389 1253 int i,is_export;
d02b48c6
RE
1254
1255 c=s->cert;
ca8e5b9b 1256 ssl_set_cert_masks(c, s->s3->tmp.new_cipher);
d02b48c6 1257 alg=s->s3->tmp.new_cipher->algorithms;
df63a389
UM
1258 is_export=SSL_IS_EXPORT(alg);
1259 mask=is_export?c->export_mask:c->mask;
d02b48c6
RE
1260 kalg=alg&(SSL_MKEY_MASK|SSL_AUTH_MASK);
1261
1262 if (kalg & SSL_kDHr)
1263 i=SSL_PKEY_DH_RSA;
1264 else if (kalg & SSL_kDHd)
1265 i=SSL_PKEY_DH_DSA;
1266 else if (kalg & SSL_aDSS)
1267 i=SSL_PKEY_DSA_SIGN;
1268 else if (kalg & SSL_aRSA)
1269 {
1270 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL)
1271 i=SSL_PKEY_RSA_SIGN;
1272 else
1273 i=SSL_PKEY_RSA_ENC;
1274 }
1275 else /* if (kalg & SSL_aNULL) */
1276 {
1277 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,SSL_R_INTERNAL_ERROR);
1278 return(NULL);
1279 }
1280 if (c->pkeys[i].x509 == NULL) return(NULL);
1281 return(c->pkeys[i].x509);
1282 }
1283
4f43d0e7 1284EVP_PKEY *ssl_get_sign_pkey(SSL *s,SSL_CIPHER *cipher)
d02b48c6
RE
1285 {
1286 unsigned long alg;
1287 CERT *c;
1288
1289 alg=cipher->algorithms;
1290 c=s->cert;
1291
1292 if ((alg & SSL_aDSS) &&
1293 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL))
1294 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey);
1295 else if (alg & SSL_aRSA)
1296 {
1297 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL)
1298 return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey);
1299 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL)
1300 return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey);
1301 else
1302 return(NULL);
1303 }
1304 else /* if (alg & SSL_aNULL) */
1305 {
1306 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,SSL_R_INTERNAL_ERROR);
1307 return(NULL);
1308 }
1309 }
1310
4f43d0e7 1311void ssl_update_cache(SSL *s,int mode)
d02b48c6 1312 {
58964a49
RE
1313 int i;
1314
1315 /* If the session_id_length is 0, we are not supposed to cache it,
1316 * and it would be rather hard to do anyway :-) */
1317 if (s->session->session_id_length == 0) return;
1318
d02b48c6
RE
1319 if ((s->ctx->session_cache_mode & mode)
1320 && (!s->hit)
1321 && SSL_CTX_add_session(s->ctx,s->session)
1322 && (s->ctx->new_session_cb != NULL))
1323 {
58964a49 1324 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION);
d02b48c6
RE
1325 if (!s->ctx->new_session_cb(s,s->session))
1326 SSL_SESSION_free(s->session);
1327 }
1328
1329 /* auto flush every 255 connections */
58964a49
RE
1330 i=s->ctx->session_cache_mode;
1331 if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) &&
1332 ((i & mode) == mode))
1333 {
1334 if ( (((mode & SSL_SESS_CACHE_CLIENT)
413c4f45
MC
1335 ?s->ctx->stats.sess_connect_good
1336 :s->ctx->stats.sess_accept_good) & 0xff) == 0xff)
58964a49
RE
1337 {
1338 SSL_CTX_flush_sessions(s->ctx,time(NULL));
1339 }
1340 }
d02b48c6
RE
1341 }
1342
4f43d0e7 1343SSL_METHOD *SSL_get_ssl_method(SSL *s)
d02b48c6
RE
1344 {
1345 return(s->method);
1346 }
1347
4f43d0e7 1348int SSL_set_ssl_method(SSL *s,SSL_METHOD *meth)
d02b48c6
RE
1349 {
1350 int conn= -1;
1351 int ret=1;
1352
1353 if (s->method != meth)
1354 {
1355 if (s->handshake_func != NULL)
1356 conn=(s->handshake_func == s->method->ssl_connect);
1357
1358 if (s->method->version == meth->version)
1359 s->method=meth;
1360 else
1361 {
1362 s->method->ssl_free(s);
1363 s->method=meth;
1364 ret=s->method->ssl_new(s);
1365 }
1366
1367 if (conn == 1)
1368 s->handshake_func=meth->ssl_connect;
1369 else if (conn == 0)
1370 s->handshake_func=meth->ssl_accept;
1371 }
1372 return(ret);
1373 }
1374
4f43d0e7 1375int SSL_get_error(SSL *s,int i)
d02b48c6
RE
1376 {
1377 int reason;
413c4f45 1378 unsigned long l;
d02b48c6
RE
1379 BIO *bio;
1380
1381 if (i > 0) return(SSL_ERROR_NONE);
1382
413c4f45
MC
1383 /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake
1384 * etc, where we do encode the error */
1385 if ((l=ERR_peek_error()) != 0)
1386 {
1387 if (ERR_GET_LIB(l) == ERR_LIB_SYS)
1388 return(SSL_ERROR_SYSCALL);
1389 else
1390 return(SSL_ERROR_SSL);
1391 }
d02b48c6
RE
1392
1393 if ((i < 0) && SSL_want_read(s))
1394 {
1395 bio=SSL_get_rbio(s);
1396 if (BIO_should_read(bio))
1397 return(SSL_ERROR_WANT_READ);
1398 else if (BIO_should_write(bio))
3a66e306
BM
1399 /* This one doesn't make too much sense ... We never try
1400 * to write to the rbio, and an application program where
1401 * rbio and wbio are separate couldn't even know what it
1402 * should wait for.
1403 * However if we ever set s->rwstate incorrectly
1404 * (so that we have SSL_want_read(s) instead of
1405 * SSL_want_write(s)) and rbio and wbio *are* the same,
1406 * this test works around that bug; so it might be safer
1407 * to keep it. */
d02b48c6
RE
1408 return(SSL_ERROR_WANT_WRITE);
1409 else if (BIO_should_io_special(bio))
1410 {
1411 reason=BIO_get_retry_reason(bio);
1412 if (reason == BIO_RR_CONNECT)
1413 return(SSL_ERROR_WANT_CONNECT);
1414 else
1415 return(SSL_ERROR_SYSCALL); /* unknown */
1416 }
1417 }
1418
1419 if ((i < 0) && SSL_want_write(s))
1420 {
1421 bio=SSL_get_wbio(s);
1422 if (BIO_should_write(bio))
1423 return(SSL_ERROR_WANT_WRITE);
1424 else if (BIO_should_read(bio))
3a66e306 1425 /* See above (SSL_want_read(s) with BIO_should_write(bio)) */
d02b48c6
RE
1426 return(SSL_ERROR_WANT_READ);
1427 else if (BIO_should_io_special(bio))
1428 {
1429 reason=BIO_get_retry_reason(bio);
1430 if (reason == BIO_RR_CONNECT)
1431 return(SSL_ERROR_WANT_CONNECT);
1432 else
1433 return(SSL_ERROR_SYSCALL);
1434 }
1435 }
1436 if ((i < 0) && SSL_want_x509_lookup(s))
1437 {
1438 return(SSL_ERROR_WANT_X509_LOOKUP);
1439 }
1440
1441 if (i == 0)
1442 {
58964a49 1443 if (s->version == SSL2_VERSION)
d02b48c6
RE
1444 {
1445 /* assume it is the socket being closed */
1446 return(SSL_ERROR_ZERO_RETURN);
1447 }
1448 else
1449 {
1450 if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) &&
58964a49 1451 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY))
d02b48c6
RE
1452 return(SSL_ERROR_ZERO_RETURN);
1453 }
1454 }
1455 return(SSL_ERROR_SYSCALL);
1456 }
1457
4f43d0e7 1458int SSL_do_handshake(SSL *s)
d02b48c6 1459 {
58964a49
RE
1460 int ret=1;
1461
d02b48c6
RE
1462 if (s->handshake_func == NULL)
1463 {
58964a49 1464 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET);
d02b48c6
RE
1465 return(-1);
1466 }
dfeab068
RE
1467
1468 s->method->ssl_renegotiate_check(s);
1469
d02b48c6 1470 if (SSL_in_init(s) || SSL_in_before(s))
58964a49
RE
1471 {
1472 ret=s->handshake_func(s);
1473 }
1474 return(ret);
d02b48c6
RE
1475 }
1476
1477/* For the next 2 functions, SSL_clear() sets shutdown and so
1478 * one of these calls will reset it */
4f43d0e7 1479void SSL_set_accept_state(SSL *s)
d02b48c6 1480 {
413c4f45 1481 s->server=1;
d02b48c6
RE
1482 s->shutdown=0;
1483 s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE;
1484 s->handshake_func=s->method->ssl_accept;
1485 /* clear the current cipher */
1486 ssl_clear_cipher_ctx(s);
1487 }
1488
4f43d0e7 1489void SSL_set_connect_state(SSL *s)
d02b48c6 1490 {
413c4f45 1491 s->server=0;
d02b48c6
RE
1492 s->shutdown=0;
1493 s->state=SSL_ST_CONNECT|SSL_ST_BEFORE;
1494 s->handshake_func=s->method->ssl_connect;
1495 /* clear the current cipher */
1496 ssl_clear_cipher_ctx(s);
1497 }
1498
4f43d0e7 1499int ssl_undefined_function(SSL *s)
d02b48c6
RE
1500 {
1501 SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1502 return(0);
1503 }
1504
4f43d0e7 1505SSL_METHOD *ssl_bad_method(int ver)
d02b48c6
RE
1506 {
1507 SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1508 return(NULL);
1509 }
1510
4f43d0e7 1511char *SSL_get_version(SSL *s)
d02b48c6 1512 {
58964a49
RE
1513 if (s->version == TLS1_VERSION)
1514 return("TLSv1");
1515 else if (s->version == SSL3_VERSION)
d02b48c6 1516 return("SSLv3");
58964a49 1517 else if (s->version == SSL2_VERSION)
d02b48c6
RE
1518 return("SSLv2");
1519 else
1520 return("unknown");
1521 }
1522
4f43d0e7 1523SSL *SSL_dup(SSL *s)
8a41eb70 1524 {
f73e07cf 1525 STACK_OF(X509_NAME) *sk;
d02b48c6 1526 X509_NAME *xn;
b1c4fe36 1527 SSL *ret;
d02b48c6
RE
1528 int i;
1529
b4cadc6e
BL
1530 if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL)
1531 return(NULL);
d02b48c6 1532
8a41eb70
BM
1533 if (s->session != NULL)
1534 {
1535 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */
1536 SSL_copy_session_id(ret,s);
1537 }
1538 else
1539 {
1540 /* No session has been established yet, so we have to expect
1541 * that s->cert or ret->cert will be changed later --
1542 * they should not both point to the same object,
1543 * and thus we can't use SSL_copy_session_id. */
1544
1545 ret->method = s->method;
1546 ret->method->ssl_new(ret);
1547
1548 if (s->cert != NULL)
1549 {
1550 ret->cert = ssl_cert_dup(s->cert);
1551 if (ret->cert == NULL)
1552 goto err;
1553 }
1554
1555 SSL_set_session_id_context(ret,
1556 s->sid_ctx, s->sid_ctx_length);
1557 }
d02b48c6
RE
1558
1559 SSL_set_read_ahead(ret,SSL_get_read_ahead(s));
1560 SSL_set_verify(ret,SSL_get_verify_mode(s),
1561 SSL_get_verify_callback(s));
7f89714e 1562 SSL_set_verify_depth(ret,SSL_get_verify_depth(s));
d02b48c6
RE
1563
1564 SSL_set_info_callback(ret,SSL_get_info_callback(s));
1565
1566 ret->debug=s->debug;
58964a49 1567 ret->options=s->options;
d02b48c6
RE
1568
1569 /* copy app data, a little dangerous perhaps */
58964a49
RE
1570 if (!CRYPTO_dup_ex_data(ssl_meth,&ret->ex_data,&s->ex_data))
1571 goto err;
d02b48c6
RE
1572
1573 /* setup rbio, and wbio */
1574 if (s->rbio != NULL)
1575 {
1576 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio))
1577 goto err;
1578 }
1579 if (s->wbio != NULL)
1580 {
1581 if (s->wbio != s->rbio)
1582 {
58964a49 1583 if (!BIO_dup_state(s->wbio,(char *)&ret->wbio))
d02b48c6
RE
1584 goto err;
1585 }
1586 else
1587 ret->wbio=ret->rbio;
1588 }
1589
1590 /* dup the cipher_list and cipher_list_by_id stacks */
1591 if (s->cipher_list != NULL)
1592 {
f73e07cf 1593 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL)
d02b48c6
RE
1594 goto err;
1595 }
1596 if (s->cipher_list_by_id != NULL)
f73e07cf 1597 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_id))
d02b48c6
RE
1598 == NULL)
1599 goto err;
1600
1601 /* Dup the client_CA list */
1602 if (s->client_CA != NULL)
1603 {
f73e07cf 1604 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
d02b48c6 1605 ret->client_CA=sk;
f73e07cf 1606 for (i=0; i<sk_X509_NAME_num(sk); i++)
d02b48c6 1607 {
f73e07cf
BL
1608 xn=sk_X509_NAME_value(sk,i);
1609 if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL)
d02b48c6
RE
1610 {
1611 X509_NAME_free(xn);
1612 goto err;
1613 }
1614 }
1615 }
1616
1617 ret->shutdown=s->shutdown;
1618 ret->state=s->state;
1619 ret->handshake_func=s->handshake_func;
413c4f45 1620 ret->server=s->server;
d02b48c6
RE
1621
1622 if (0)
1623 {
1624err:
1625 if (ret != NULL) SSL_free(ret);
1626 ret=NULL;
1627 }
1628 return(ret);
1629 }
1630
4f43d0e7 1631void ssl_clear_cipher_ctx(SSL *s)
d02b48c6 1632 {
8a41eb70
BM
1633 if (s->enc_read_ctx != NULL)
1634 {
1635 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx);
1636 Free(s->enc_read_ctx);
1637 s->enc_read_ctx=NULL;
1638 }
1639 if (s->enc_write_ctx != NULL)
1640 {
1641 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx);
1642 Free(s->enc_write_ctx);
1643 s->enc_write_ctx=NULL;
1644 }
413c4f45
MC
1645 if (s->expand != NULL)
1646 {
1647 COMP_CTX_free(s->expand);
1648 s->expand=NULL;
1649 }
1650 if (s->compress != NULL)
1651 {
1652 COMP_CTX_free(s->compress);
1653 s->compress=NULL;
1654 }
d02b48c6
RE
1655 }
1656
58964a49 1657/* Fix this function so that it takes an optional type parameter */
4f43d0e7 1658X509 *SSL_get_certificate(SSL *s)
d02b48c6
RE
1659 {
1660 if (s->cert != NULL)
1661 return(s->cert->key->x509);
1662 else
1663 return(NULL);
1664 }
1665
58964a49 1666/* Fix this function so that it takes an optional type parameter */
4f43d0e7 1667EVP_PKEY *SSL_get_privatekey(SSL *s)
d02b48c6
RE
1668 {
1669 if (s->cert != NULL)
1670 return(s->cert->key->privatekey);
1671 else
1672 return(NULL);
1673 }
1674
4f43d0e7 1675SSL_CIPHER *SSL_get_current_cipher(SSL *s)
d02b48c6 1676 {
b1c4fe36
BM
1677 if ((s->session != NULL) && (s->session->cipher != NULL))
1678 return(s->session->cipher);
1679 return(NULL);
d02b48c6
RE
1680 }
1681
4f43d0e7 1682int ssl_init_wbio_buffer(SSL *s,int push)
58964a49
RE
1683 {
1684 BIO *bbio;
1685
1686 if (s->bbio == NULL)
1687 {
1688 bbio=BIO_new(BIO_f_buffer());
1689 if (bbio == NULL) return(0);
1690 s->bbio=bbio;
1691 }
1692 else
1693 {
1694 bbio=s->bbio;
1695 if (s->bbio == s->wbio)
1696 s->wbio=BIO_pop(s->wbio);
1697 }
d58d092b 1698 (void)BIO_reset(bbio);
58964a49
RE
1699/* if (!BIO_set_write_buffer_size(bbio,16*1024)) */
1700 if (!BIO_set_read_buffer_size(bbio,1))
1701 {
1702 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB);
1703 return(0);
1704 }
1705 if (push)
1706 {
1707 if (s->wbio != bbio)
1708 s->wbio=BIO_push(bbio,s->wbio);
1709 }
1710 else
1711 {
1712 if (s->wbio == bbio)
1713 s->wbio=BIO_pop(bbio);
1714 }
1715 return(1);
1716 }
413c4f45 1717
4f43d0e7 1718void ssl_free_wbio_buffer(SSL *s)
413c4f45
MC
1719 {
1720 BIO *under;
1721
1722 if (s->bbio == NULL) return;
1723
1724 if (s->bbio == s->wbio)
1725 {
1726 /* remove buffering */
1727 under=BIO_pop(s->wbio);
1728 if (under != NULL)
1729 s->wbio=under;
1730 else
1731 abort(); /* ok */
1732 }
1733 BIO_free(s->bbio);
1734 s->bbio=NULL;
1735 }
58964a49 1736
4f43d0e7 1737void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode)
58964a49
RE
1738 {
1739 ctx->quiet_shutdown=mode;
1740 }
1741
4f43d0e7 1742int SSL_CTX_get_quiet_shutdown(SSL_CTX *ctx)
58964a49
RE
1743 {
1744 return(ctx->quiet_shutdown);
1745 }
1746
4f43d0e7 1747void SSL_set_quiet_shutdown(SSL *s,int mode)
58964a49
RE
1748 {
1749 s->quiet_shutdown=mode;
1750 }
1751
4f43d0e7 1752int SSL_get_quiet_shutdown(SSL *s)
58964a49
RE
1753 {
1754 return(s->quiet_shutdown);
1755 }
1756
4f43d0e7 1757void SSL_set_shutdown(SSL *s,int mode)
58964a49
RE
1758 {
1759 s->shutdown=mode;
1760 }
1761
4f43d0e7 1762int SSL_get_shutdown(SSL *s)
58964a49
RE
1763 {
1764 return(s->shutdown);
1765 }
1766
4f43d0e7 1767int SSL_version(SSL *s)
58964a49
RE
1768 {
1769 return(s->version);
1770 }
1771
4f43d0e7 1772SSL_CTX *SSL_get_SSL_CTX(SSL *ssl)
58964a49
RE
1773 {
1774 return(ssl->ctx);
1775 }
1776
dfeab068 1777#ifndef NO_STDIO
4f43d0e7 1778int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx)
58964a49
RE
1779 {
1780 return(X509_STORE_set_default_paths(ctx->cert_store));
1781 }
1782
303c0028
BM
1783int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
1784 const char *CApath)
58964a49
RE
1785 {
1786 return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath));
1787 }
dfeab068 1788#endif
58964a49 1789
4f43d0e7 1790void SSL_set_info_callback(SSL *ssl,void (*cb)())
58964a49
RE
1791 {
1792 ssl->info_callback=cb;
1793 }
1794
6b691a5c 1795void (*SSL_get_info_callback(SSL *ssl))(void)
58964a49 1796 {
dfeab068 1797 return((void (*)())ssl->info_callback);
58964a49
RE
1798 }
1799
4f43d0e7 1800int SSL_state(SSL *ssl)
58964a49
RE
1801 {
1802 return(ssl->state);
1803 }
1804
4f43d0e7 1805void SSL_set_verify_result(SSL *ssl,long arg)
58964a49
RE
1806 {
1807 ssl->verify_result=arg;
1808 }
1809
4f43d0e7 1810long SSL_get_verify_result(SSL *ssl)
58964a49
RE
1811 {
1812 return(ssl->verify_result);
1813 }
1814
4f43d0e7
BL
1815int SSL_get_ex_new_index(long argl,char *argp,int (*new_func)(),
1816 int (*dup_func)(),void (*free_func)())
b1c4fe36 1817 {
58964a49
RE
1818 ssl_meth_num++;
1819 return(CRYPTO_get_ex_new_index(ssl_meth_num-1,
1820 &ssl_meth,argl,argp,new_func,dup_func,free_func));
b1c4fe36 1821 }
58964a49 1822
4f43d0e7 1823int SSL_set_ex_data(SSL *s,int idx,void *arg)
58964a49
RE
1824 {
1825 return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
1826 }
1827
4f43d0e7 1828void *SSL_get_ex_data(SSL *s,int idx)
58964a49
RE
1829 {
1830 return(CRYPTO_get_ex_data(&s->ex_data,idx));
1831 }
1832
4f43d0e7
BL
1833int SSL_CTX_get_ex_new_index(long argl,char *argp,int (*new_func)(),
1834 int (*dup_func)(),void (*free_func)())
b1c4fe36 1835 {
58964a49
RE
1836 ssl_ctx_meth_num++;
1837 return(CRYPTO_get_ex_new_index(ssl_ctx_meth_num-1,
1838 &ssl_ctx_meth,argl,argp,new_func,dup_func,free_func));
b1c4fe36 1839 }
58964a49 1840
4f43d0e7 1841int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg)
58964a49
RE
1842 {
1843 return(CRYPTO_set_ex_data(&s->ex_data,idx,arg));
1844 }
1845
4f43d0e7 1846void *SSL_CTX_get_ex_data(SSL_CTX *s,int idx)
58964a49
RE
1847 {
1848 return(CRYPTO_get_ex_data(&s->ex_data,idx));
1849 }
1850
4f43d0e7 1851int ssl_ok(SSL *s)
dfeab068
RE
1852 {
1853 return(1);
1854 }
1855
4f43d0e7 1856X509_STORE *SSL_CTX_get_cert_store(SSL_CTX *ctx)
413c4f45
MC
1857 {
1858 return(ctx->cert_store);
1859 }
1860
4f43d0e7 1861void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store)
413c4f45
MC
1862 {
1863 if (ctx->cert_store != NULL)
1864 X509_STORE_free(ctx->cert_store);
1865 ctx->cert_store=store;
1866 }
1867
4f43d0e7 1868int SSL_want(SSL *s)
413c4f45
MC
1869 {
1870 return(s->rwstate);
1871 }
1872
4f43d0e7
BL
1873/*!
1874 * \brief Set the callback for generating temporary RSA keys.
1875 * \param ctx the SSL context.
1876 * \param cb the callback
1877 */
1878
79df9d62 1879#ifndef NO_RSA
df63a389
UM
1880void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl,
1881 int is_export,
60e31c3a 1882 int keylength))
f8c3c05d 1883 { SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,0,(char *)cb); }
79df9d62
UM
1884#endif
1885
1886#ifndef NO_RSA
df63a389 1887void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl,int is_export,
79df9d62
UM
1888 int keylength))
1889 { SSL_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,0,(char *)cb); }
1890#endif
f8c3c05d 1891
4f43d0e7
BL
1892#ifdef DOXYGEN
1893/*!
1894 * \brief The RSA temporary key callback function.
1895 * \param ssl the SSL session.
df63a389
UM
1896 * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite.
1897 * \param keylength if \c is_export is \c TRUE, then \c keylength is the size
1898 * of the required key in bits.
4f43d0e7
BL
1899 * \return the temporary RSA key.
1900 * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback
1901 */
1902
df63a389 1903RSA *cb(SSL *ssl,int is_export,int keylength)
4f43d0e7
BL
1904 {}
1905#endif
1906
1907/*!
1908 * \brief Set the callback for generating temporary DH keys.
1909 * \param ctx the SSL context.
1910 * \param dh the callback
1911 */
1912
79df9d62 1913#ifndef NO_DH
df63a389 1914void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int is_export,
60e31c3a 1915 int keylength))
f8c3c05d
BL
1916 { SSL_CTX_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,0,(char *)dh); }
1917
df63a389 1918void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int is_export,
15d21c2d
RE
1919 int keylength))
1920 { SSL_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,0,(char *)dh); }
79df9d62 1921#endif
15d21c2d 1922
58964a49
RE
1923#if defined(_WINDLL) && defined(WIN16)
1924#include "../crypto/bio/bss_file.c"
1925#endif
f73e07cf
BL
1926
1927IMPLEMENT_STACK_OF(SSL_CIPHER)
1928IMPLEMENT_STACK_OF(SSL_COMP)