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