OLD | NEW |
(Empty) | |
| 1 /*! \file ssl/ssl_lib.c |
| 2 * \brief Version independent SSL functions. |
| 3 */ |
| 4 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 5 * All rights reserved. |
| 6 * |
| 7 * This package is an SSL implementation written |
| 8 * by Eric Young (eay@cryptsoft.com). |
| 9 * The implementation was written so as to conform with Netscapes SSL. |
| 10 * |
| 11 * This library is free for commercial and non-commercial use as long as |
| 12 * the following conditions are aheared to. The following conditions |
| 13 * apply to all code found in this distribution, be it the RC4, RSA, |
| 14 * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 15 * included with this distribution is covered by the same copyright terms |
| 16 * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 17 * |
| 18 * Copyright remains Eric Young's, and as such any Copyright notices in |
| 19 * the code are not to be removed. |
| 20 * If this package is used in a product, Eric Young should be given attribution |
| 21 * as the author of the parts of the library used. |
| 22 * This can be in the form of a textual message at program startup or |
| 23 * in documentation (online or textual) provided with the package. |
| 24 * |
| 25 * Redistribution and use in source and binary forms, with or without |
| 26 * modification, are permitted provided that the following conditions |
| 27 * are met: |
| 28 * 1. Redistributions of source code must retain the copyright |
| 29 * notice, this list of conditions and the following disclaimer. |
| 30 * 2. Redistributions in binary form must reproduce the above copyright |
| 31 * notice, this list of conditions and the following disclaimer in the |
| 32 * documentation and/or other materials provided with the distribution. |
| 33 * 3. All advertising materials mentioning features or use of this software |
| 34 * must display the following acknowledgement: |
| 35 * "This product includes cryptographic software written by |
| 36 * Eric Young (eay@cryptsoft.com)" |
| 37 * The word 'cryptographic' can be left out if the rouines from the library |
| 38 * being used are not cryptographic related :-). |
| 39 * 4. If you include any Windows specific code (or a derivative thereof) from |
| 40 * the apps directory (application code) you must include an acknowledgement: |
| 41 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 42 * |
| 43 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 44 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 45 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 46 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 47 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 48 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 49 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 50 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 51 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 52 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 53 * SUCH DAMAGE. |
| 54 * |
| 55 * The licence and distribution terms for any publically available version or |
| 56 * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 57 * copied and put under another distribution licence |
| 58 * [including the GNU Public Licence.] |
| 59 */ |
| 60 /* ==================================================================== |
| 61 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. |
| 62 * |
| 63 * Redistribution and use in source and binary forms, with or without |
| 64 * modification, are permitted provided that the following conditions |
| 65 * are met: |
| 66 * |
| 67 * 1. Redistributions of source code must retain the above copyright |
| 68 * notice, this list of conditions and the following disclaimer. |
| 69 * |
| 70 * 2. Redistributions in binary form must reproduce the above copyright |
| 71 * notice, this list of conditions and the following disclaimer in |
| 72 * the documentation and/or other materials provided with the |
| 73 * distribution. |
| 74 * |
| 75 * 3. All advertising materials mentioning features or use of this |
| 76 * software must display the following acknowledgment: |
| 77 * "This product includes software developed by the OpenSSL Project |
| 78 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
| 79 * |
| 80 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 81 * endorse or promote products derived from this software without |
| 82 * prior written permission. For written permission, please contact |
| 83 * openssl-core@openssl.org. |
| 84 * |
| 85 * 5. Products derived from this software may not be called "OpenSSL" |
| 86 * nor may "OpenSSL" appear in their names without prior written |
| 87 * permission of the OpenSSL Project. |
| 88 * |
| 89 * 6. Redistributions of any form whatsoever must retain the following |
| 90 * acknowledgment: |
| 91 * "This product includes software developed by the OpenSSL Project |
| 92 * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
| 93 * |
| 94 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 95 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 96 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 97 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 98 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 99 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 100 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 101 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 102 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 103 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 104 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 105 * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 106 * ==================================================================== |
| 107 * |
| 108 * This product includes cryptographic software written by Eric Young |
| 109 * (eay@cryptsoft.com). This product includes software written by Tim |
| 110 * Hudson (tjh@cryptsoft.com). |
| 111 * |
| 112 */ |
| 113 /* ==================================================================== |
| 114 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 115 * ECC cipher suite support in OpenSSL originally developed by |
| 116 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. |
| 117 */ |
| 118 /* ==================================================================== |
| 119 * Copyright 2005 Nokia. All rights reserved. |
| 120 * |
| 121 * The portions of the attached software ("Contribution") is developed by |
| 122 * Nokia Corporation and is licensed pursuant to the OpenSSL open source |
| 123 * license. |
| 124 * |
| 125 * The Contribution, originally written by Mika Kousa and Pasi Eronen of |
| 126 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites |
| 127 * support (see RFC 4279) to OpenSSL. |
| 128 * |
| 129 * No patent licenses or other rights except those expressly stated in |
| 130 * the OpenSSL open source license shall be deemed granted or received |
| 131 * expressly, by implication, estoppel, or otherwise. |
| 132 * |
| 133 * No assurances are provided by Nokia that the Contribution does not |
| 134 * infringe the patent or other intellectual property rights of any third |
| 135 * party or that the license provides you with all the necessary rights |
| 136 * to make use of the Contribution. |
| 137 * |
| 138 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN |
| 139 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA |
| 140 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY |
| 141 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR |
| 142 * OTHERWISE. |
| 143 */ |
| 144 |
| 145 #ifdef REF_CHECK |
| 146 # include <assert.h> |
| 147 #endif |
| 148 #include <stdio.h> |
| 149 #include "ssl_locl.h" |
| 150 #include "kssl_lcl.h" |
| 151 #include <openssl/objects.h> |
| 152 #include <openssl/lhash.h> |
| 153 #include <openssl/x509v3.h> |
| 154 #include <openssl/rand.h> |
| 155 #include <openssl/ocsp.h> |
| 156 #ifndef OPENSSL_NO_DH |
| 157 #include <openssl/dh.h> |
| 158 #endif |
| 159 #ifndef OPENSSL_NO_ENGINE |
| 160 #include <openssl/engine.h> |
| 161 #endif |
| 162 |
| 163 const char *SSL_version_str=OPENSSL_VERSION_TEXT; |
| 164 |
| 165 SSL3_ENC_METHOD ssl3_undef_enc_method={ |
| 166 /* evil casts, but these functions are only called if there's a library
bug */ |
| 167 (int (*)(SSL *,int))ssl_undefined_function, |
| 168 (int (*)(SSL *, unsigned char *, int))ssl_undefined_function, |
| 169 ssl_undefined_function, |
| 170 (int (*)(SSL *, unsigned char *, unsigned char *, int))ssl_undefined_fun
ction, |
| 171 (int (*)(SSL*, int))ssl_undefined_function, |
| 172 (int (*)(SSL *, const char*, int, unsigned char *))ssl_undefined_functi
on, |
| 173 0, /* finish_mac_length */ |
| 174 (int (*)(SSL *, int, unsigned char *))ssl_undefined_function, |
| 175 NULL, /* client_finished_label */ |
| 176 0, /* client_finished_label_len */ |
| 177 NULL, /* server_finished_label */ |
| 178 0, /* server_finished_label_len */ |
| 179 (int (*)(int))ssl_undefined_function |
| 180 }; |
| 181 |
| 182 int SSL_clear(SSL *s) |
| 183 { |
| 184 |
| 185 if (s->method == NULL) |
| 186 { |
| 187 SSLerr(SSL_F_SSL_CLEAR,SSL_R_NO_METHOD_SPECIFIED); |
| 188 return(0); |
| 189 } |
| 190 |
| 191 if (ssl_clear_bad_session(s)) |
| 192 { |
| 193 SSL_SESSION_free(s->session); |
| 194 s->session=NULL; |
| 195 } |
| 196 |
| 197 s->error=0; |
| 198 s->hit=0; |
| 199 s->shutdown=0; |
| 200 |
| 201 #if 0 /* Disabled since version 1.10 of this file (early return not |
| 202 * needed because SSL_clear is not called when doing renegotiation) */ |
| 203 /* This is set if we are doing dynamic renegotiation so keep |
| 204 * the old cipher. It is sort of a SSL_clear_lite :-) */ |
| 205 if (s->new_session) return(1); |
| 206 #else |
| 207 if (s->new_session) |
| 208 { |
| 209 SSLerr(SSL_F_SSL_CLEAR,ERR_R_INTERNAL_ERROR); |
| 210 return 0; |
| 211 } |
| 212 #endif |
| 213 |
| 214 s->type=0; |
| 215 |
| 216 s->state=SSL_ST_BEFORE|((s->server)?SSL_ST_ACCEPT:SSL_ST_CONNECT); |
| 217 |
| 218 s->version=s->method->version; |
| 219 s->client_version=s->version; |
| 220 s->rwstate=SSL_NOTHING; |
| 221 s->rstate=SSL_ST_READ_HEADER; |
| 222 #if 0 |
| 223 s->read_ahead=s->ctx->read_ahead; |
| 224 #endif |
| 225 |
| 226 if (s->init_buf != NULL) |
| 227 { |
| 228 BUF_MEM_free(s->init_buf); |
| 229 s->init_buf=NULL; |
| 230 } |
| 231 |
| 232 ssl_clear_cipher_ctx(s); |
| 233 ssl_clear_hash_ctx(&s->read_hash); |
| 234 ssl_clear_hash_ctx(&s->write_hash); |
| 235 |
| 236 s->first_packet=0; |
| 237 |
| 238 #if 1 |
| 239 /* Check to see if we were changed into a different method, if |
| 240 * so, revert back if we are not doing session-id reuse. */ |
| 241 if (!s->in_handshake && (s->session == NULL) && (s->method != s->ctx->me
thod)) |
| 242 { |
| 243 s->method->ssl_free(s); |
| 244 s->method=s->ctx->method; |
| 245 if (!s->method->ssl_new(s)) |
| 246 return(0); |
| 247 } |
| 248 else |
| 249 #endif |
| 250 s->method->ssl_clear(s); |
| 251 return(1); |
| 252 } |
| 253 |
| 254 /** Used to change an SSL_CTXs default SSL method type */ |
| 255 int SSL_CTX_set_ssl_version(SSL_CTX *ctx,const SSL_METHOD *meth) |
| 256 { |
| 257 STACK_OF(SSL_CIPHER) *sk; |
| 258 |
| 259 ctx->method=meth; |
| 260 |
| 261 sk=ssl_create_cipher_list(ctx->method,&(ctx->cipher_list), |
| 262 &(ctx->cipher_list_by_id), |
| 263 meth->version == SSL2_VERSION ? "SSLv2" : SSL_DEFAULT_CIPHER_LIS
T); |
| 264 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= 0)) |
| 265 { |
| 266 SSLerr(SSL_F_SSL_CTX_SET_SSL_VERSION,SSL_R_SSL_LIBRARY_HAS_NO_CI
PHERS); |
| 267 return(0); |
| 268 } |
| 269 return(1); |
| 270 } |
| 271 |
| 272 SSL *SSL_new(SSL_CTX *ctx) |
| 273 { |
| 274 SSL *s; |
| 275 |
| 276 if (ctx == NULL) |
| 277 { |
| 278 SSLerr(SSL_F_SSL_NEW,SSL_R_NULL_SSL_CTX); |
| 279 return(NULL); |
| 280 } |
| 281 if (ctx->method == NULL) |
| 282 { |
| 283 SSLerr(SSL_F_SSL_NEW,SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION); |
| 284 return(NULL); |
| 285 } |
| 286 |
| 287 s=(SSL *)OPENSSL_malloc(sizeof(SSL)); |
| 288 if (s == NULL) goto err; |
| 289 memset(s,0,sizeof(SSL)); |
| 290 |
| 291 #ifndef OPENSSL_NO_KRB5 |
| 292 s->kssl_ctx = kssl_ctx_new(); |
| 293 #endif /* OPENSSL_NO_KRB5 */ |
| 294 |
| 295 s->options=ctx->options; |
| 296 s->mode=ctx->mode; |
| 297 s->max_cert_list=ctx->max_cert_list; |
| 298 |
| 299 if (ctx->cert != NULL) |
| 300 { |
| 301 /* Earlier library versions used to copy the pointer to |
| 302 * the CERT, not its contents; only when setting new |
| 303 * parameters for the per-SSL copy, ssl_cert_new would be |
| 304 * called (and the direct reference to the per-SSL_CTX |
| 305 * settings would be lost, but those still were indirectly |
| 306 * accessed for various purposes, and for that reason they |
| 307 * used to be known as s->ctx->default_cert). |
| 308 * Now we don't look at the SSL_CTX's CERT after having |
| 309 * duplicated it once. */ |
| 310 |
| 311 s->cert = ssl_cert_dup(ctx->cert); |
| 312 if (s->cert == NULL) |
| 313 goto err; |
| 314 } |
| 315 else |
| 316 s->cert=NULL; /* Cannot really happen (see SSL_CTX_new) */ |
| 317 |
| 318 s->read_ahead=ctx->read_ahead; |
| 319 s->msg_callback=ctx->msg_callback; |
| 320 s->msg_callback_arg=ctx->msg_callback_arg; |
| 321 s->verify_mode=ctx->verify_mode; |
| 322 #if 0 |
| 323 s->verify_depth=ctx->verify_depth; |
| 324 #endif |
| 325 s->sid_ctx_length=ctx->sid_ctx_length; |
| 326 OPENSSL_assert(s->sid_ctx_length <= sizeof s->sid_ctx); |
| 327 memcpy(&s->sid_ctx,&ctx->sid_ctx,sizeof(s->sid_ctx)); |
| 328 s->verify_callback=ctx->default_verify_callback; |
| 329 s->session_creation_enabled=1; |
| 330 s->generate_session_id=ctx->generate_session_id; |
| 331 |
| 332 s->param = X509_VERIFY_PARAM_new(); |
| 333 if (!s->param) |
| 334 goto err; |
| 335 X509_VERIFY_PARAM_inherit(s->param, ctx->param); |
| 336 #if 0 |
| 337 s->purpose = ctx->purpose; |
| 338 s->trust = ctx->trust; |
| 339 #endif |
| 340 s->quiet_shutdown=ctx->quiet_shutdown; |
| 341 s->max_send_fragment = ctx->max_send_fragment; |
| 342 |
| 343 CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX); |
| 344 s->ctx=ctx; |
| 345 #ifndef OPENSSL_NO_TLSEXT |
| 346 s->tlsext_debug_cb = 0; |
| 347 s->tlsext_debug_arg = NULL; |
| 348 s->tlsext_ticket_expected = 0; |
| 349 s->tlsext_status_type = -1; |
| 350 s->tlsext_status_expected = 0; |
| 351 s->tlsext_ocsp_ids = NULL; |
| 352 s->tlsext_ocsp_exts = NULL; |
| 353 s->tlsext_ocsp_resp = NULL; |
| 354 s->tlsext_ocsp_resplen = -1; |
| 355 CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX); |
| 356 s->initial_ctx=ctx; |
| 357 #endif |
| 358 |
| 359 s->verify_result=X509_V_OK; |
| 360 |
| 361 s->method=ctx->method; |
| 362 |
| 363 if (!s->method->ssl_new(s)) |
| 364 goto err; |
| 365 |
| 366 s->references=1; |
| 367 s->server=(ctx->method->ssl_accept == ssl_undefined_function)?0:1; |
| 368 |
| 369 SSL_clear(s); |
| 370 |
| 371 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data); |
| 372 |
| 373 #ifndef OPENSSL_NO_PSK |
| 374 s->psk_client_callback=ctx->psk_client_callback; |
| 375 s->psk_server_callback=ctx->psk_server_callback; |
| 376 #endif |
| 377 |
| 378 return(s); |
| 379 err: |
| 380 if (s != NULL) |
| 381 { |
| 382 if (s->cert != NULL) |
| 383 ssl_cert_free(s->cert); |
| 384 if (s->ctx != NULL) |
| 385 SSL_CTX_free(s->ctx); /* decrement reference count */ |
| 386 OPENSSL_free(s); |
| 387 } |
| 388 SSLerr(SSL_F_SSL_NEW,ERR_R_MALLOC_FAILURE); |
| 389 return(NULL); |
| 390 } |
| 391 |
| 392 int SSL_CTX_set_session_id_context(SSL_CTX *ctx,const unsigned char *sid_ctx, |
| 393 unsigned int sid_ctx_len) |
| 394 { |
| 395 if(sid_ctx_len > sizeof ctx->sid_ctx) |
| 396 { |
| 397 SSLerr(SSL_F_SSL_CTX_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT
_TOO_LONG); |
| 398 return 0; |
| 399 } |
| 400 ctx->sid_ctx_length=sid_ctx_len; |
| 401 memcpy(ctx->sid_ctx,sid_ctx,sid_ctx_len); |
| 402 |
| 403 return 1; |
| 404 } |
| 405 |
| 406 int SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx, |
| 407 unsigned int sid_ctx_len) |
| 408 { |
| 409 if(sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) |
| 410 { |
| 411 SSLerr(SSL_F_SSL_SET_SESSION_ID_CONTEXT,SSL_R_SSL_SESSION_ID_CONTEXT_TOO
_LONG); |
| 412 return 0; |
| 413 } |
| 414 ssl->sid_ctx_length=sid_ctx_len; |
| 415 memcpy(ssl->sid_ctx,sid_ctx,sid_ctx_len); |
| 416 |
| 417 return 1; |
| 418 } |
| 419 |
| 420 int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb) |
| 421 { |
| 422 CRYPTO_w_lock(CRYPTO_LOCK_SSL_CTX); |
| 423 ctx->generate_session_id = cb; |
| 424 CRYPTO_w_unlock(CRYPTO_LOCK_SSL_CTX); |
| 425 return 1; |
| 426 } |
| 427 |
| 428 int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb) |
| 429 { |
| 430 CRYPTO_w_lock(CRYPTO_LOCK_SSL); |
| 431 ssl->generate_session_id = cb; |
| 432 CRYPTO_w_unlock(CRYPTO_LOCK_SSL); |
| 433 return 1; |
| 434 } |
| 435 |
| 436 int SSL_has_matching_session_id(const SSL *ssl, const unsigned char *id, |
| 437 unsigned int id_len) |
| 438 { |
| 439 /* A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how |
| 440 * we can "construct" a session to give us the desired check - ie. to |
| 441 * find if there's a session in the hash table that would conflict with |
| 442 * any new session built out of this id/id_len and the ssl_version in |
| 443 * use by this SSL. */ |
| 444 SSL_SESSION r, *p; |
| 445 |
| 446 if(id_len > sizeof r.session_id) |
| 447 return 0; |
| 448 |
| 449 r.ssl_version = ssl->version; |
| 450 r.session_id_length = id_len; |
| 451 memcpy(r.session_id, id, id_len); |
| 452 /* NB: SSLv2 always uses a fixed 16-byte session ID, so even if a |
| 453 * callback is calling us to check the uniqueness of a shorter ID, it |
| 454 * must be compared as a padded-out ID because that is what it will be |
| 455 * converted to when the callback has finished choosing it. */ |
| 456 if((r.ssl_version == SSL2_VERSION) && |
| 457 (id_len < SSL2_SSL_SESSION_ID_LENGTH)) |
| 458 { |
| 459 memset(r.session_id + id_len, 0, |
| 460 SSL2_SSL_SESSION_ID_LENGTH - id_len); |
| 461 r.session_id_length = SSL2_SSL_SESSION_ID_LENGTH; |
| 462 } |
| 463 |
| 464 CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX); |
| 465 p = lh_SSL_SESSION_retrieve(ssl->ctx->sessions, &r); |
| 466 CRYPTO_r_unlock(CRYPTO_LOCK_SSL_CTX); |
| 467 return (p != NULL); |
| 468 } |
| 469 |
| 470 int SSL_CTX_set_purpose(SSL_CTX *s, int purpose) |
| 471 { |
| 472 return X509_VERIFY_PARAM_set_purpose(s->param, purpose); |
| 473 } |
| 474 |
| 475 int SSL_set_purpose(SSL *s, int purpose) |
| 476 { |
| 477 return X509_VERIFY_PARAM_set_purpose(s->param, purpose); |
| 478 } |
| 479 |
| 480 int SSL_CTX_set_trust(SSL_CTX *s, int trust) |
| 481 { |
| 482 return X509_VERIFY_PARAM_set_trust(s->param, trust); |
| 483 } |
| 484 |
| 485 int SSL_set_trust(SSL *s, int trust) |
| 486 { |
| 487 return X509_VERIFY_PARAM_set_trust(s->param, trust); |
| 488 } |
| 489 |
| 490 int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm) |
| 491 { |
| 492 return X509_VERIFY_PARAM_set1(ctx->param, vpm); |
| 493 } |
| 494 |
| 495 int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm) |
| 496 { |
| 497 return X509_VERIFY_PARAM_set1(ssl->param, vpm); |
| 498 } |
| 499 |
| 500 void SSL_free(SSL *s) |
| 501 { |
| 502 int i; |
| 503 |
| 504 if(s == NULL) |
| 505 return; |
| 506 |
| 507 i=CRYPTO_add(&s->references,-1,CRYPTO_LOCK_SSL); |
| 508 #ifdef REF_PRINT |
| 509 REF_PRINT("SSL",s); |
| 510 #endif |
| 511 if (i > 0) return; |
| 512 #ifdef REF_CHECK |
| 513 if (i < 0) |
| 514 { |
| 515 fprintf(stderr,"SSL_free, bad reference count\n"); |
| 516 abort(); /* ok */ |
| 517 } |
| 518 #endif |
| 519 |
| 520 if (s->param) |
| 521 X509_VERIFY_PARAM_free(s->param); |
| 522 |
| 523 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL, s, &s->ex_data); |
| 524 |
| 525 if (s->bbio != NULL) |
| 526 { |
| 527 /* If the buffering BIO is in place, pop it off */ |
| 528 if (s->bbio == s->wbio) |
| 529 { |
| 530 s->wbio=BIO_pop(s->wbio); |
| 531 } |
| 532 BIO_free(s->bbio); |
| 533 s->bbio=NULL; |
| 534 } |
| 535 if (s->rbio != NULL) |
| 536 BIO_free_all(s->rbio); |
| 537 if ((s->wbio != NULL) && (s->wbio != s->rbio)) |
| 538 BIO_free_all(s->wbio); |
| 539 |
| 540 if (s->init_buf != NULL) BUF_MEM_free(s->init_buf); |
| 541 |
| 542 /* add extra stuff */ |
| 543 if (s->cipher_list != NULL) sk_SSL_CIPHER_free(s->cipher_list); |
| 544 if (s->cipher_list_by_id != NULL) sk_SSL_CIPHER_free(s->cipher_list_by_i
d); |
| 545 |
| 546 /* Make the next call work :-) */ |
| 547 if (s->session != NULL) |
| 548 { |
| 549 ssl_clear_bad_session(s); |
| 550 SSL_SESSION_free(s->session); |
| 551 } |
| 552 |
| 553 ssl_clear_cipher_ctx(s); |
| 554 ssl_clear_hash_ctx(&s->read_hash); |
| 555 ssl_clear_hash_ctx(&s->write_hash); |
| 556 |
| 557 if (s->cert != NULL) ssl_cert_free(s->cert); |
| 558 /* Free up if allocated */ |
| 559 |
| 560 #ifndef OPENSSL_NO_TLSEXT |
| 561 if (s->tlsext_hostname) |
| 562 OPENSSL_free(s->tlsext_hostname); |
| 563 if (s->initial_ctx) SSL_CTX_free(s->initial_ctx); |
| 564 #ifndef OPENSSL_NO_EC |
| 565 if (s->tlsext_ecpointformatlist) OPENSSL_free(s->tlsext_ecpointformatlis
t); |
| 566 if (s->tlsext_ellipticcurvelist) OPENSSL_free(s->tlsext_ellipticcurvelis
t); |
| 567 #endif /* OPENSSL_NO_EC */ |
| 568 if (s->tlsext_opaque_prf_input) OPENSSL_free(s->tlsext_opaque_prf_input)
; |
| 569 if (s->tlsext_ocsp_exts) |
| 570 sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts, |
| 571 X509_EXTENSION_free); |
| 572 if (s->tlsext_ocsp_ids) |
| 573 sk_OCSP_RESPID_pop_free(s->tlsext_ocsp_ids, OCSP_RESPID_free); |
| 574 if (s->tlsext_ocsp_resp) |
| 575 OPENSSL_free(s->tlsext_ocsp_resp); |
| 576 #endif |
| 577 |
| 578 if (s->client_CA != NULL) |
| 579 sk_X509_NAME_pop_free(s->client_CA,X509_NAME_free); |
| 580 |
| 581 if (s->method != NULL) s->method->ssl_free(s); |
| 582 |
| 583 if (s->ctx) SSL_CTX_free(s->ctx); |
| 584 |
| 585 #ifndef OPENSSL_NO_KRB5 |
| 586 if (s->kssl_ctx != NULL) |
| 587 kssl_ctx_free(s->kssl_ctx); |
| 588 #endif /* OPENSSL_NO_KRB5 */ |
| 589 |
| 590 OPENSSL_free(s); |
| 591 } |
| 592 |
| 593 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio) |
| 594 { |
| 595 /* If the output buffering BIO is still in place, remove it |
| 596 */ |
| 597 if (s->bbio != NULL) |
| 598 { |
| 599 if (s->wbio == s->bbio) |
| 600 { |
| 601 s->wbio=s->wbio->next_bio; |
| 602 s->bbio->next_bio=NULL; |
| 603 } |
| 604 } |
| 605 if ((s->rbio != NULL) && (s->rbio != rbio)) |
| 606 BIO_free_all(s->rbio); |
| 607 if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio)) |
| 608 BIO_free_all(s->wbio); |
| 609 s->rbio=rbio; |
| 610 s->wbio=wbio; |
| 611 } |
| 612 |
| 613 BIO *SSL_get_rbio(const SSL *s) |
| 614 { return(s->rbio); } |
| 615 |
| 616 BIO *SSL_get_wbio(const SSL *s) |
| 617 { return(s->wbio); } |
| 618 |
| 619 int SSL_get_fd(const SSL *s) |
| 620 { |
| 621 return(SSL_get_rfd(s)); |
| 622 } |
| 623 |
| 624 int SSL_get_rfd(const SSL *s) |
| 625 { |
| 626 int ret= -1; |
| 627 BIO *b,*r; |
| 628 |
| 629 b=SSL_get_rbio(s); |
| 630 r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR); |
| 631 if (r != NULL) |
| 632 BIO_get_fd(r,&ret); |
| 633 return(ret); |
| 634 } |
| 635 |
| 636 int SSL_get_wfd(const SSL *s) |
| 637 { |
| 638 int ret= -1; |
| 639 BIO *b,*r; |
| 640 |
| 641 b=SSL_get_wbio(s); |
| 642 r=BIO_find_type(b,BIO_TYPE_DESCRIPTOR); |
| 643 if (r != NULL) |
| 644 BIO_get_fd(r,&ret); |
| 645 return(ret); |
| 646 } |
| 647 |
| 648 #ifndef OPENSSL_NO_SOCK |
| 649 int SSL_set_fd(SSL *s,int fd) |
| 650 { |
| 651 int ret=0; |
| 652 BIO *bio=NULL; |
| 653 |
| 654 bio=BIO_new(BIO_s_socket()); |
| 655 |
| 656 if (bio == NULL) |
| 657 { |
| 658 SSLerr(SSL_F_SSL_SET_FD,ERR_R_BUF_LIB); |
| 659 goto err; |
| 660 } |
| 661 BIO_set_fd(bio,fd,BIO_NOCLOSE); |
| 662 SSL_set_bio(s,bio,bio); |
| 663 ret=1; |
| 664 err: |
| 665 return(ret); |
| 666 } |
| 667 |
| 668 int SSL_set_wfd(SSL *s,int fd) |
| 669 { |
| 670 int ret=0; |
| 671 BIO *bio=NULL; |
| 672 |
| 673 if ((s->rbio == NULL) || (BIO_method_type(s->rbio) != BIO_TYPE_SOCKET) |
| 674 || ((int)BIO_get_fd(s->rbio,NULL) != fd)) |
| 675 { |
| 676 bio=BIO_new(BIO_s_socket()); |
| 677 |
| 678 if (bio == NULL) |
| 679 { SSLerr(SSL_F_SSL_SET_WFD,ERR_R_BUF_LIB); goto err; } |
| 680 BIO_set_fd(bio,fd,BIO_NOCLOSE); |
| 681 SSL_set_bio(s,SSL_get_rbio(s),bio); |
| 682 } |
| 683 else |
| 684 SSL_set_bio(s,SSL_get_rbio(s),SSL_get_rbio(s)); |
| 685 ret=1; |
| 686 err: |
| 687 return(ret); |
| 688 } |
| 689 |
| 690 int SSL_set_rfd(SSL *s,int fd) |
| 691 { |
| 692 int ret=0; |
| 693 BIO *bio=NULL; |
| 694 |
| 695 if ((s->wbio == NULL) || (BIO_method_type(s->wbio) != BIO_TYPE_SOCKET) |
| 696 || ((int)BIO_get_fd(s->wbio,NULL) != fd)) |
| 697 { |
| 698 bio=BIO_new(BIO_s_socket()); |
| 699 |
| 700 if (bio == NULL) |
| 701 { |
| 702 SSLerr(SSL_F_SSL_SET_RFD,ERR_R_BUF_LIB); |
| 703 goto err; |
| 704 } |
| 705 BIO_set_fd(bio,fd,BIO_NOCLOSE); |
| 706 SSL_set_bio(s,bio,SSL_get_wbio(s)); |
| 707 } |
| 708 else |
| 709 SSL_set_bio(s,SSL_get_wbio(s),SSL_get_wbio(s)); |
| 710 ret=1; |
| 711 err: |
| 712 return(ret); |
| 713 } |
| 714 #endif |
| 715 |
| 716 |
| 717 /* return length of latest Finished message we sent, copy to 'buf' */ |
| 718 size_t SSL_get_finished(const SSL *s, void *buf, size_t count) |
| 719 { |
| 720 size_t ret = 0; |
| 721 |
| 722 if (s->s3 != NULL) |
| 723 { |
| 724 ret = s->s3->tmp.finish_md_len; |
| 725 if (count > ret) |
| 726 count = ret; |
| 727 memcpy(buf, s->s3->tmp.finish_md, count); |
| 728 } |
| 729 return ret; |
| 730 } |
| 731 |
| 732 /* return length of latest Finished message we expected, copy to 'buf' */ |
| 733 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count) |
| 734 { |
| 735 size_t ret = 0; |
| 736 |
| 737 if (s->s3 != NULL) |
| 738 { |
| 739 ret = s->s3->tmp.peer_finish_md_len; |
| 740 if (count > ret) |
| 741 count = ret; |
| 742 memcpy(buf, s->s3->tmp.peer_finish_md, count); |
| 743 } |
| 744 return ret; |
| 745 } |
| 746 |
| 747 |
| 748 int SSL_get_verify_mode(const SSL *s) |
| 749 { |
| 750 return(s->verify_mode); |
| 751 } |
| 752 |
| 753 int SSL_get_verify_depth(const SSL *s) |
| 754 { |
| 755 return X509_VERIFY_PARAM_get_depth(s->param); |
| 756 } |
| 757 |
| 758 int (*SSL_get_verify_callback(const SSL *s))(int,X509_STORE_CTX *) |
| 759 { |
| 760 return(s->verify_callback); |
| 761 } |
| 762 |
| 763 int SSL_CTX_get_verify_mode(const SSL_CTX *ctx) |
| 764 { |
| 765 return(ctx->verify_mode); |
| 766 } |
| 767 |
| 768 int SSL_CTX_get_verify_depth(const SSL_CTX *ctx) |
| 769 { |
| 770 return X509_VERIFY_PARAM_get_depth(ctx->param); |
| 771 } |
| 772 |
| 773 int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *) |
| 774 { |
| 775 return(ctx->default_verify_callback); |
| 776 } |
| 777 |
| 778 void SSL_set_verify(SSL *s,int mode, |
| 779 int (*callback)(int ok,X509_STORE_CTX *ctx)) |
| 780 { |
| 781 s->verify_mode=mode; |
| 782 if (callback != NULL) |
| 783 s->verify_callback=callback; |
| 784 } |
| 785 |
| 786 void SSL_set_verify_depth(SSL *s,int depth) |
| 787 { |
| 788 X509_VERIFY_PARAM_set_depth(s->param, depth); |
| 789 } |
| 790 |
| 791 void SSL_set_read_ahead(SSL *s,int yes) |
| 792 { |
| 793 s->read_ahead=yes; |
| 794 } |
| 795 |
| 796 int SSL_get_read_ahead(const SSL *s) |
| 797 { |
| 798 return(s->read_ahead); |
| 799 } |
| 800 |
| 801 int SSL_pending(const SSL *s) |
| 802 { |
| 803 /* SSL_pending cannot work properly if read-ahead is enabled |
| 804 * (SSL_[CTX_]ctrl(..., SSL_CTRL_SET_READ_AHEAD, 1, NULL)), |
| 805 * and it is impossible to fix since SSL_pending cannot report |
| 806 * errors that may be observed while scanning the new data. |
| 807 * (Note that SSL_pending() is often used as a boolean value, |
| 808 * so we'd better not return -1.) |
| 809 */ |
| 810 return(s->method->ssl_pending(s)); |
| 811 } |
| 812 |
| 813 X509 *SSL_get_peer_certificate(const SSL *s) |
| 814 { |
| 815 X509 *r; |
| 816 |
| 817 if ((s == NULL) || (s->session == NULL)) |
| 818 r=NULL; |
| 819 else |
| 820 r=s->session->peer; |
| 821 |
| 822 if (r == NULL) return(r); |
| 823 |
| 824 CRYPTO_add(&r->references,1,CRYPTO_LOCK_X509); |
| 825 |
| 826 return(r); |
| 827 } |
| 828 |
| 829 STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s) |
| 830 { |
| 831 STACK_OF(X509) *r; |
| 832 |
| 833 if ((s == NULL) || (s->session == NULL) || (s->session->sess_cert == NUL
L)) |
| 834 r=NULL; |
| 835 else |
| 836 r=s->session->sess_cert->cert_chain; |
| 837 |
| 838 /* If we are a client, cert_chain includes the peer's own |
| 839 * certificate; if we are a server, it does not. */ |
| 840 |
| 841 return(r); |
| 842 } |
| 843 |
| 844 /* Now in theory, since the calling process own 't' it should be safe to |
| 845 * modify. We need to be able to read f without being hassled */ |
| 846 void SSL_copy_session_id(SSL *t,const SSL *f) |
| 847 { |
| 848 CERT *tmp; |
| 849 |
| 850 /* Do we need to to SSL locking? */ |
| 851 SSL_set_session(t,SSL_get_session(f)); |
| 852 |
| 853 /* what if we are setup as SSLv2 but want to talk SSLv3 or |
| 854 * vice-versa */ |
| 855 if (t->method != f->method) |
| 856 { |
| 857 t->method->ssl_free(t); /* cleanup current */ |
| 858 t->method=f->method; /* change method */ |
| 859 t->method->ssl_new(t); /* setup new */ |
| 860 } |
| 861 |
| 862 tmp=t->cert; |
| 863 if (f->cert != NULL) |
| 864 { |
| 865 CRYPTO_add(&f->cert->references,1,CRYPTO_LOCK_SSL_CERT); |
| 866 t->cert=f->cert; |
| 867 } |
| 868 else |
| 869 t->cert=NULL; |
| 870 if (tmp != NULL) ssl_cert_free(tmp); |
| 871 SSL_set_session_id_context(t,f->sid_ctx,f->sid_ctx_length); |
| 872 } |
| 873 |
| 874 /* Fix this so it checks all the valid key/cert options */ |
| 875 int SSL_CTX_check_private_key(const SSL_CTX *ctx) |
| 876 { |
| 877 if ( (ctx == NULL) || |
| 878 (ctx->cert == NULL) || |
| 879 (ctx->cert->key->x509 == NULL)) |
| 880 { |
| 881 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSI
GNED); |
| 882 return(0); |
| 883 } |
| 884 if (ctx->cert->key->privatekey == NULL) |
| 885 { |
| 886 SSLerr(SSL_F_SSL_CTX_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSI
GNED); |
| 887 return(0); |
| 888 } |
| 889 return(X509_check_private_key(ctx->cert->key->x509, ctx->cert->key->priv
atekey)); |
| 890 } |
| 891 |
| 892 /* Fix this function so that it takes an optional type parameter */ |
| 893 int SSL_check_private_key(const SSL *ssl) |
| 894 { |
| 895 if (ssl == NULL) |
| 896 { |
| 897 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,ERR_R_PASSED_NULL_PARAMETER); |
| 898 return(0); |
| 899 } |
| 900 if (ssl->cert == NULL) |
| 901 { |
| 902 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED
); |
| 903 return 0; |
| 904 } |
| 905 if (ssl->cert->key->x509 == NULL) |
| 906 { |
| 907 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_CERTIFICATE_ASSIGNED
); |
| 908 return(0); |
| 909 } |
| 910 if (ssl->cert->key->privatekey == NULL) |
| 911 { |
| 912 SSLerr(SSL_F_SSL_CHECK_PRIVATE_KEY,SSL_R_NO_PRIVATE_KEY_ASSIGNED
); |
| 913 return(0); |
| 914 } |
| 915 return(X509_check_private_key(ssl->cert->key->x509, |
| 916 ssl->cert->key->privatekey)); |
| 917 } |
| 918 |
| 919 int SSL_accept(SSL *s) |
| 920 { |
| 921 if (s->handshake_func == 0) |
| 922 /* Not properly initialized yet */ |
| 923 SSL_set_accept_state(s); |
| 924 |
| 925 return(s->method->ssl_accept(s)); |
| 926 } |
| 927 |
| 928 int SSL_connect(SSL *s) |
| 929 { |
| 930 if (s->handshake_func == 0) |
| 931 /* Not properly initialized yet */ |
| 932 SSL_set_connect_state(s); |
| 933 |
| 934 return(s->method->ssl_connect(s)); |
| 935 } |
| 936 |
| 937 long SSL_get_default_timeout(const SSL *s) |
| 938 { |
| 939 return(s->method->get_timeout()); |
| 940 } |
| 941 |
| 942 int SSL_read(SSL *s,void *buf,int num) |
| 943 { |
| 944 if (s->handshake_func == 0) |
| 945 { |
| 946 SSLerr(SSL_F_SSL_READ, SSL_R_UNINITIALIZED); |
| 947 return -1; |
| 948 } |
| 949 |
| 950 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) |
| 951 { |
| 952 s->rwstate=SSL_NOTHING; |
| 953 return(0); |
| 954 } |
| 955 return(s->method->ssl_read(s,buf,num)); |
| 956 } |
| 957 |
| 958 int SSL_peek(SSL *s,void *buf,int num) |
| 959 { |
| 960 if (s->handshake_func == 0) |
| 961 { |
| 962 SSLerr(SSL_F_SSL_PEEK, SSL_R_UNINITIALIZED); |
| 963 return -1; |
| 964 } |
| 965 |
| 966 if (s->shutdown & SSL_RECEIVED_SHUTDOWN) |
| 967 { |
| 968 return(0); |
| 969 } |
| 970 return(s->method->ssl_peek(s,buf,num)); |
| 971 } |
| 972 |
| 973 int SSL_write(SSL *s,const void *buf,int num) |
| 974 { |
| 975 if (s->handshake_func == 0) |
| 976 { |
| 977 SSLerr(SSL_F_SSL_WRITE, SSL_R_UNINITIALIZED); |
| 978 return -1; |
| 979 } |
| 980 |
| 981 if (s->shutdown & SSL_SENT_SHUTDOWN) |
| 982 { |
| 983 s->rwstate=SSL_NOTHING; |
| 984 SSLerr(SSL_F_SSL_WRITE,SSL_R_PROTOCOL_IS_SHUTDOWN); |
| 985 return(-1); |
| 986 } |
| 987 return(s->method->ssl_write(s,buf,num)); |
| 988 } |
| 989 |
| 990 int SSL_shutdown(SSL *s) |
| 991 { |
| 992 /* Note that this function behaves differently from what one might |
| 993 * expect. Return values are 0 for no success (yet), |
| 994 * 1 for success; but calling it once is usually not enough, |
| 995 * even if blocking I/O is used (see ssl3_shutdown). |
| 996 */ |
| 997 |
| 998 if (s->handshake_func == 0) |
| 999 { |
| 1000 SSLerr(SSL_F_SSL_SHUTDOWN, SSL_R_UNINITIALIZED); |
| 1001 return -1; |
| 1002 } |
| 1003 |
| 1004 if ((s != NULL) && !SSL_in_init(s)) |
| 1005 return(s->method->ssl_shutdown(s)); |
| 1006 else |
| 1007 return(1); |
| 1008 } |
| 1009 |
| 1010 int SSL_renegotiate(SSL *s) |
| 1011 { |
| 1012 if (s->new_session == 0) |
| 1013 { |
| 1014 s->new_session=1; |
| 1015 } |
| 1016 return(s->method->ssl_renegotiate(s)); |
| 1017 } |
| 1018 |
| 1019 int SSL_renegotiate_pending(SSL *s) |
| 1020 { |
| 1021 /* becomes true when negotiation is requested; |
| 1022 * false again once a handshake has finished */ |
| 1023 return (s->new_session != 0); |
| 1024 } |
| 1025 |
| 1026 long SSL_ctrl(SSL *s,int cmd,long larg,void *parg) |
| 1027 { |
| 1028 long l; |
| 1029 |
| 1030 switch (cmd) |
| 1031 { |
| 1032 case SSL_CTRL_GET_READ_AHEAD: |
| 1033 return(s->read_ahead); |
| 1034 case SSL_CTRL_SET_READ_AHEAD: |
| 1035 l=s->read_ahead; |
| 1036 s->read_ahead=larg; |
| 1037 return(l); |
| 1038 |
| 1039 case SSL_CTRL_SET_MSG_CALLBACK_ARG: |
| 1040 s->msg_callback_arg = parg; |
| 1041 return 1; |
| 1042 |
| 1043 case SSL_CTRL_OPTIONS: |
| 1044 return(s->options|=larg); |
| 1045 case SSL_CTRL_CLEAR_OPTIONS: |
| 1046 return(s->options&=~larg); |
| 1047 case SSL_CTRL_MODE: |
| 1048 return(s->mode|=larg); |
| 1049 case SSL_CTRL_CLEAR_MODE: |
| 1050 return(s->mode &=~larg); |
| 1051 case SSL_CTRL_GET_MAX_CERT_LIST: |
| 1052 return(s->max_cert_list); |
| 1053 case SSL_CTRL_SET_MAX_CERT_LIST: |
| 1054 l=s->max_cert_list; |
| 1055 s->max_cert_list=larg; |
| 1056 return(l); |
| 1057 case SSL_CTRL_SET_MTU: |
| 1058 if (larg < (long)dtls1_min_mtu()) |
| 1059 return 0; |
| 1060 |
| 1061 if (SSL_version(s) == DTLS1_VERSION || |
| 1062 SSL_version(s) == DTLS1_BAD_VER) |
| 1063 { |
| 1064 s->d1->mtu = larg; |
| 1065 return larg; |
| 1066 } |
| 1067 return 0; |
| 1068 case SSL_CTRL_SET_MAX_SEND_FRAGMENT: |
| 1069 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH) |
| 1070 return 0; |
| 1071 s->max_send_fragment = larg; |
| 1072 return 1; |
| 1073 case SSL_CTRL_GET_RI_SUPPORT: |
| 1074 if (s->s3) |
| 1075 return s->s3->send_connection_binding; |
| 1076 else return 0; |
| 1077 default: |
| 1078 return(s->method->ssl_ctrl(s,cmd,larg,parg)); |
| 1079 } |
| 1080 } |
| 1081 |
| 1082 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp)(void)) |
| 1083 { |
| 1084 switch(cmd) |
| 1085 { |
| 1086 case SSL_CTRL_SET_MSG_CALLBACK: |
| 1087 s->msg_callback = (void (*)(int write_p, int version, int conten
t_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp); |
| 1088 return 1; |
| 1089 |
| 1090 default: |
| 1091 return(s->method->ssl_callback_ctrl(s,cmd,fp)); |
| 1092 } |
| 1093 } |
| 1094 |
| 1095 LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx) |
| 1096 { |
| 1097 return ctx->sessions; |
| 1098 } |
| 1099 |
| 1100 long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd,long larg,void *parg) |
| 1101 { |
| 1102 long l; |
| 1103 |
| 1104 switch (cmd) |
| 1105 { |
| 1106 case SSL_CTRL_GET_READ_AHEAD: |
| 1107 return(ctx->read_ahead); |
| 1108 case SSL_CTRL_SET_READ_AHEAD: |
| 1109 l=ctx->read_ahead; |
| 1110 ctx->read_ahead=larg; |
| 1111 return(l); |
| 1112 |
| 1113 case SSL_CTRL_SET_MSG_CALLBACK_ARG: |
| 1114 ctx->msg_callback_arg = parg; |
| 1115 return 1; |
| 1116 |
| 1117 case SSL_CTRL_GET_MAX_CERT_LIST: |
| 1118 return(ctx->max_cert_list); |
| 1119 case SSL_CTRL_SET_MAX_CERT_LIST: |
| 1120 l=ctx->max_cert_list; |
| 1121 ctx->max_cert_list=larg; |
| 1122 return(l); |
| 1123 |
| 1124 case SSL_CTRL_SET_SESS_CACHE_SIZE: |
| 1125 l=ctx->session_cache_size; |
| 1126 ctx->session_cache_size=larg; |
| 1127 return(l); |
| 1128 case SSL_CTRL_GET_SESS_CACHE_SIZE: |
| 1129 return(ctx->session_cache_size); |
| 1130 case SSL_CTRL_SET_SESS_CACHE_MODE: |
| 1131 l=ctx->session_cache_mode; |
| 1132 ctx->session_cache_mode=larg; |
| 1133 return(l); |
| 1134 case SSL_CTRL_GET_SESS_CACHE_MODE: |
| 1135 return(ctx->session_cache_mode); |
| 1136 |
| 1137 case SSL_CTRL_SESS_NUMBER: |
| 1138 return(lh_SSL_SESSION_num_items(ctx->sessions)); |
| 1139 case SSL_CTRL_SESS_CONNECT: |
| 1140 return(ctx->stats.sess_connect); |
| 1141 case SSL_CTRL_SESS_CONNECT_GOOD: |
| 1142 return(ctx->stats.sess_connect_good); |
| 1143 case SSL_CTRL_SESS_CONNECT_RENEGOTIATE: |
| 1144 return(ctx->stats.sess_connect_renegotiate); |
| 1145 case SSL_CTRL_SESS_ACCEPT: |
| 1146 return(ctx->stats.sess_accept); |
| 1147 case SSL_CTRL_SESS_ACCEPT_GOOD: |
| 1148 return(ctx->stats.sess_accept_good); |
| 1149 case SSL_CTRL_SESS_ACCEPT_RENEGOTIATE: |
| 1150 return(ctx->stats.sess_accept_renegotiate); |
| 1151 case SSL_CTRL_SESS_HIT: |
| 1152 return(ctx->stats.sess_hit); |
| 1153 case SSL_CTRL_SESS_CB_HIT: |
| 1154 return(ctx->stats.sess_cb_hit); |
| 1155 case SSL_CTRL_SESS_MISSES: |
| 1156 return(ctx->stats.sess_miss); |
| 1157 case SSL_CTRL_SESS_TIMEOUTS: |
| 1158 return(ctx->stats.sess_timeout); |
| 1159 case SSL_CTRL_SESS_CACHE_FULL: |
| 1160 return(ctx->stats.sess_cache_full); |
| 1161 case SSL_CTRL_OPTIONS: |
| 1162 return(ctx->options|=larg); |
| 1163 case SSL_CTRL_CLEAR_OPTIONS: |
| 1164 return(ctx->options&=~larg); |
| 1165 case SSL_CTRL_MODE: |
| 1166 return(ctx->mode|=larg); |
| 1167 case SSL_CTRL_CLEAR_MODE: |
| 1168 return(ctx->mode&=~larg); |
| 1169 case SSL_CTRL_SET_MAX_SEND_FRAGMENT: |
| 1170 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH) |
| 1171 return 0; |
| 1172 ctx->max_send_fragment = larg; |
| 1173 return 1; |
| 1174 default: |
| 1175 return(ctx->method->ssl_ctx_ctrl(ctx,cmd,larg,parg)); |
| 1176 } |
| 1177 } |
| 1178 |
| 1179 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp)(void)) |
| 1180 { |
| 1181 switch(cmd) |
| 1182 { |
| 1183 case SSL_CTRL_SET_MSG_CALLBACK: |
| 1184 ctx->msg_callback = (void (*)(int write_p, int version, int cont
ent_type, const void *buf, size_t len, SSL *ssl, void *arg))(fp); |
| 1185 return 1; |
| 1186 |
| 1187 default: |
| 1188 return(ctx->method->ssl_ctx_callback_ctrl(ctx,cmd,fp)); |
| 1189 } |
| 1190 } |
| 1191 |
| 1192 int ssl_cipher_id_cmp(const SSL_CIPHER *a, const SSL_CIPHER *b) |
| 1193 { |
| 1194 long l; |
| 1195 |
| 1196 l=a->id-b->id; |
| 1197 if (l == 0L) |
| 1198 return(0); |
| 1199 else |
| 1200 return((l > 0)?1:-1); |
| 1201 } |
| 1202 |
| 1203 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap, |
| 1204 const SSL_CIPHER * const *bp) |
| 1205 { |
| 1206 long l; |
| 1207 |
| 1208 l=(*ap)->id-(*bp)->id; |
| 1209 if (l == 0L) |
| 1210 return(0); |
| 1211 else |
| 1212 return((l > 0)?1:-1); |
| 1213 } |
| 1214 |
| 1215 /** return a STACK of the ciphers available for the SSL and in order of |
| 1216 * preference */ |
| 1217 STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s) |
| 1218 { |
| 1219 if (s != NULL) |
| 1220 { |
| 1221 if (s->cipher_list != NULL) |
| 1222 { |
| 1223 return(s->cipher_list); |
| 1224 } |
| 1225 else if ((s->ctx != NULL) && |
| 1226 (s->ctx->cipher_list != NULL)) |
| 1227 { |
| 1228 return(s->ctx->cipher_list); |
| 1229 } |
| 1230 } |
| 1231 return(NULL); |
| 1232 } |
| 1233 |
| 1234 /** return a STACK of the ciphers available for the SSL and in order of |
| 1235 * algorithm id */ |
| 1236 STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s) |
| 1237 { |
| 1238 if (s != NULL) |
| 1239 { |
| 1240 if (s->cipher_list_by_id != NULL) |
| 1241 { |
| 1242 return(s->cipher_list_by_id); |
| 1243 } |
| 1244 else if ((s->ctx != NULL) && |
| 1245 (s->ctx->cipher_list_by_id != NULL)) |
| 1246 { |
| 1247 return(s->ctx->cipher_list_by_id); |
| 1248 } |
| 1249 } |
| 1250 return(NULL); |
| 1251 } |
| 1252 |
| 1253 /** The old interface to get the same thing as SSL_get_ciphers() */ |
| 1254 const char *SSL_get_cipher_list(const SSL *s,int n) |
| 1255 { |
| 1256 SSL_CIPHER *c; |
| 1257 STACK_OF(SSL_CIPHER) *sk; |
| 1258 |
| 1259 if (s == NULL) return(NULL); |
| 1260 sk=SSL_get_ciphers(s); |
| 1261 if ((sk == NULL) || (sk_SSL_CIPHER_num(sk) <= n)) |
| 1262 return(NULL); |
| 1263 c=sk_SSL_CIPHER_value(sk,n); |
| 1264 if (c == NULL) return(NULL); |
| 1265 return(c->name); |
| 1266 } |
| 1267 |
| 1268 /** specify the ciphers to be used by default by the SSL_CTX */ |
| 1269 int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str) |
| 1270 { |
| 1271 STACK_OF(SSL_CIPHER) *sk; |
| 1272 |
| 1273 sk=ssl_create_cipher_list(ctx->method,&ctx->cipher_list, |
| 1274 &ctx->cipher_list_by_id,str); |
| 1275 /* ssl_create_cipher_list may return an empty stack if it |
| 1276 * was unable to find a cipher matching the given rule string |
| 1277 * (for example if the rule string specifies a cipher which |
| 1278 * has been disabled). This is not an error as far as |
| 1279 * ssl_create_cipher_list is concerned, and hence |
| 1280 * ctx->cipher_list and ctx->cipher_list_by_id has been |
| 1281 * updated. */ |
| 1282 if (sk == NULL) |
| 1283 return 0; |
| 1284 else if (sk_SSL_CIPHER_num(sk) == 0) |
| 1285 { |
| 1286 SSLerr(SSL_F_SSL_CTX_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH); |
| 1287 return 0; |
| 1288 } |
| 1289 return 1; |
| 1290 } |
| 1291 |
| 1292 /** specify the ciphers to be used by the SSL */ |
| 1293 int SSL_set_cipher_list(SSL *s,const char *str) |
| 1294 { |
| 1295 STACK_OF(SSL_CIPHER) *sk; |
| 1296 |
| 1297 sk=ssl_create_cipher_list(s->ctx->method,&s->cipher_list, |
| 1298 &s->cipher_list_by_id,str); |
| 1299 /* see comment in SSL_CTX_set_cipher_list */ |
| 1300 if (sk == NULL) |
| 1301 return 0; |
| 1302 else if (sk_SSL_CIPHER_num(sk) == 0) |
| 1303 { |
| 1304 SSLerr(SSL_F_SSL_SET_CIPHER_LIST, SSL_R_NO_CIPHER_MATCH); |
| 1305 return 0; |
| 1306 } |
| 1307 return 1; |
| 1308 } |
| 1309 |
| 1310 /** specify the ciphers to be used by the SSL */ |
| 1311 int SSL_set_cipher_lists(SSL *s,STACK_OF(SSL_CIPHER) *sk) |
| 1312 { |
| 1313 STACK_OF(SSL_CIPHER) *tmp_cipher_list; |
| 1314 |
| 1315 if (sk == NULL) |
| 1316 return 0; |
| 1317 |
| 1318 /* Based on end of ssl_create_cipher_list */ |
| 1319 tmp_cipher_list = sk_SSL_CIPHER_dup(sk); |
| 1320 if (tmp_cipher_list == NULL) |
| 1321 { |
| 1322 return 0; |
| 1323 } |
| 1324 if (s->cipher_list != NULL) |
| 1325 sk_SSL_CIPHER_free(s->cipher_list); |
| 1326 s->cipher_list = sk; |
| 1327 if (s->cipher_list_by_id != NULL) |
| 1328 sk_SSL_CIPHER_free(s->cipher_list_by_id); |
| 1329 s->cipher_list_by_id = tmp_cipher_list; |
| 1330 (void)sk_SSL_CIPHER_set_cmp_func(s->cipher_list_by_id,ssl_cipher_ptr_id_
cmp); |
| 1331 |
| 1332 sk_SSL_CIPHER_sort(s->cipher_list_by_id); |
| 1333 return 1; |
| 1334 } |
| 1335 |
| 1336 /* works well for SSLv2, not so good for SSLv3 */ |
| 1337 char *SSL_get_shared_ciphers(const SSL *s,char *buf,int len) |
| 1338 { |
| 1339 char *p; |
| 1340 STACK_OF(SSL_CIPHER) *sk; |
| 1341 SSL_CIPHER *c; |
| 1342 int i; |
| 1343 |
| 1344 if ((s->session == NULL) || (s->session->ciphers == NULL) || |
| 1345 (len < 2)) |
| 1346 return(NULL); |
| 1347 |
| 1348 p=buf; |
| 1349 sk=s->session->ciphers; |
| 1350 for (i=0; i<sk_SSL_CIPHER_num(sk); i++) |
| 1351 { |
| 1352 int n; |
| 1353 |
| 1354 c=sk_SSL_CIPHER_value(sk,i); |
| 1355 n=strlen(c->name); |
| 1356 if (n+1 > len) |
| 1357 { |
| 1358 if (p != buf) |
| 1359 --p; |
| 1360 *p='\0'; |
| 1361 return buf; |
| 1362 } |
| 1363 strcpy(p,c->name); |
| 1364 p+=n; |
| 1365 *(p++)=':'; |
| 1366 len-=n+1; |
| 1367 } |
| 1368 p[-1]='\0'; |
| 1369 return(buf); |
| 1370 } |
| 1371 |
| 1372 int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p, |
| 1373 int (*put_cb)(const SSL_CIPHER *, unsigned char *)) |
| 1374 { |
| 1375 int i,j=0; |
| 1376 SSL_CIPHER *c; |
| 1377 unsigned char *q; |
| 1378 #ifndef OPENSSL_NO_KRB5 |
| 1379 int nokrb5 = !kssl_tgt_is_available(s->kssl_ctx); |
| 1380 #endif /* OPENSSL_NO_KRB5 */ |
| 1381 |
| 1382 if (sk == NULL) return(0); |
| 1383 q=p; |
| 1384 |
| 1385 for (i=0; i<sk_SSL_CIPHER_num(sk); i++) |
| 1386 { |
| 1387 c=sk_SSL_CIPHER_value(sk,i); |
| 1388 #ifndef OPENSSL_NO_KRB5 |
| 1389 if (((c->algorithm_mkey & SSL_kKRB5) || (c->algorithm_auth & SSL
_aKRB5)) && |
| 1390 nokrb5) |
| 1391 continue; |
| 1392 #endif /* OPENSSL_NO_KRB5 */ |
| 1393 #ifndef OPENSSL_NO_PSK |
| 1394 /* with PSK there must be client callback set */ |
| 1395 if (((c->algorithm_mkey & SSL_kPSK) || (c->algorithm_auth & SSL_
aPSK)) && |
| 1396 s->psk_client_callback == NULL) |
| 1397 continue; |
| 1398 #endif /* OPENSSL_NO_PSK */ |
| 1399 j = put_cb ? put_cb(c,p) : ssl_put_cipher_by_char(s,c,p); |
| 1400 p+=j; |
| 1401 } |
| 1402 /* If p == q, no ciphers and caller indicates an error. Otherwise |
| 1403 * add SCSV if not renegotiating. |
| 1404 */ |
| 1405 if (p != q && !s->new_session) |
| 1406 { |
| 1407 static SSL_CIPHER scsv = |
| 1408 { |
| 1409 0, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0 |
| 1410 }; |
| 1411 j = put_cb ? put_cb(&scsv,p) : ssl_put_cipher_by_char(s,&scsv,p)
; |
| 1412 p+=j; |
| 1413 #ifdef OPENSSL_RI_DEBUG |
| 1414 fprintf(stderr, "SCSV sent by client\n"); |
| 1415 #endif |
| 1416 } |
| 1417 |
| 1418 return(p-q); |
| 1419 } |
| 1420 |
| 1421 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num, |
| 1422 STACK_OF(SSL_CIPHER) **skp) |
| 1423 { |
| 1424 const SSL_CIPHER *c; |
| 1425 STACK_OF(SSL_CIPHER) *sk; |
| 1426 int i,n; |
| 1427 if (s->s3) |
| 1428 s->s3->send_connection_binding = 0; |
| 1429 |
| 1430 n=ssl_put_cipher_by_char(s,NULL,NULL); |
| 1431 if ((num%n) != 0) |
| 1432 { |
| 1433 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,SSL_R_ERROR_IN_RECEIVED_CI
PHER_LIST); |
| 1434 return(NULL); |
| 1435 } |
| 1436 if ((skp == NULL) || (*skp == NULL)) |
| 1437 sk=sk_SSL_CIPHER_new_null(); /* change perhaps later */ |
| 1438 else |
| 1439 { |
| 1440 sk= *skp; |
| 1441 sk_SSL_CIPHER_zero(sk); |
| 1442 } |
| 1443 |
| 1444 for (i=0; i<num; i+=n) |
| 1445 { |
| 1446 /* Check for SCSV */ |
| 1447 if (s->s3 && (n != 3 || !p[0]) && |
| 1448 (p[n-2] == ((SSL3_CK_SCSV >> 8) & 0xff)) && |
| 1449 (p[n-1] == (SSL3_CK_SCSV & 0xff))) |
| 1450 { |
| 1451 /* SCSV fatal if renegotiating */ |
| 1452 if (s->new_session) |
| 1453 { |
| 1454 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,SSL_R_SCSV
_RECEIVED_WHEN_RENEGOTIATING); |
| 1455 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_HANDSHAKE
_FAILURE); |
| 1456 goto err; |
| 1457 } |
| 1458 s->s3->send_connection_binding = 1; |
| 1459 p += n; |
| 1460 #ifdef OPENSSL_RI_DEBUG |
| 1461 fprintf(stderr, "SCSV received by server\n"); |
| 1462 #endif |
| 1463 continue; |
| 1464 } |
| 1465 |
| 1466 c=ssl_get_cipher_by_char(s,p); |
| 1467 p+=n; |
| 1468 if (c != NULL) |
| 1469 { |
| 1470 if (!sk_SSL_CIPHER_push(sk,c)) |
| 1471 { |
| 1472 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,ERR_R_MALL
OC_FAILURE); |
| 1473 goto err; |
| 1474 } |
| 1475 } |
| 1476 } |
| 1477 |
| 1478 if (skp != NULL) |
| 1479 *skp=sk; |
| 1480 return(sk); |
| 1481 err: |
| 1482 if ((skp == NULL) || (*skp == NULL)) |
| 1483 sk_SSL_CIPHER_free(sk); |
| 1484 return(NULL); |
| 1485 } |
| 1486 |
| 1487 |
| 1488 #ifndef OPENSSL_NO_TLSEXT |
| 1489 /** return a servername extension value if provided in Client Hello, or NULL. |
| 1490 * So far, only host_name types are defined (RFC 3546). |
| 1491 */ |
| 1492 |
| 1493 const char *SSL_get_servername(const SSL *s, const int type) |
| 1494 { |
| 1495 if (type != TLSEXT_NAMETYPE_host_name) |
| 1496 return NULL; |
| 1497 |
| 1498 return s->session && !s->tlsext_hostname ? |
| 1499 s->session->tlsext_hostname : |
| 1500 s->tlsext_hostname; |
| 1501 } |
| 1502 |
| 1503 int SSL_get_servername_type(const SSL *s) |
| 1504 { |
| 1505 if (s->session && (!s->tlsext_hostname ? s->session->tlsext_hostname : s
->tlsext_hostname)) |
| 1506 return TLSEXT_NAMETYPE_host_name; |
| 1507 return -1; |
| 1508 } |
| 1509 #endif |
| 1510 |
| 1511 static unsigned long ssl_session_hash(const SSL_SESSION *a) |
| 1512 { |
| 1513 unsigned long l; |
| 1514 |
| 1515 l=(unsigned long) |
| 1516 ((unsigned int) a->session_id[0] )| |
| 1517 ((unsigned int) a->session_id[1]<< 8L)| |
| 1518 ((unsigned long)a->session_id[2]<<16L)| |
| 1519 ((unsigned long)a->session_id[3]<<24L); |
| 1520 return(l); |
| 1521 } |
| 1522 |
| 1523 /* NB: If this function (or indeed the hash function which uses a sort of |
| 1524 * coarser function than this one) is changed, ensure |
| 1525 * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being |
| 1526 * able to construct an SSL_SESSION that will collide with any existing session |
| 1527 * with a matching session ID. */ |
| 1528 static int ssl_session_cmp(const SSL_SESSION *a,const SSL_SESSION *b) |
| 1529 { |
| 1530 if (a->ssl_version != b->ssl_version) |
| 1531 return(1); |
| 1532 if (a->session_id_length != b->session_id_length) |
| 1533 return(1); |
| 1534 return(memcmp(a->session_id,b->session_id,a->session_id_length)); |
| 1535 } |
| 1536 |
| 1537 /* These wrapper functions should remain rather than redeclaring |
| 1538 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each |
| 1539 * variable. The reason is that the functions aren't static, they're exposed via |
| 1540 * ssl.h. */ |
| 1541 static IMPLEMENT_LHASH_HASH_FN(ssl_session, SSL_SESSION) |
| 1542 static IMPLEMENT_LHASH_COMP_FN(ssl_session, SSL_SESSION) |
| 1543 |
| 1544 SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth) |
| 1545 { |
| 1546 SSL_CTX *ret=NULL; |
| 1547 |
| 1548 if (meth == NULL) |
| 1549 { |
| 1550 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_NULL_SSL_METHOD_PASSED); |
| 1551 return(NULL); |
| 1552 } |
| 1553 |
| 1554 if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) |
| 1555 { |
| 1556 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_X509_VERIFICATION_SETUP_PROBLEMS)
; |
| 1557 goto err; |
| 1558 } |
| 1559 ret=(SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX)); |
| 1560 if (ret == NULL) |
| 1561 goto err; |
| 1562 |
| 1563 memset(ret,0,sizeof(SSL_CTX)); |
| 1564 |
| 1565 ret->method=meth; |
| 1566 |
| 1567 ret->cert_store=NULL; |
| 1568 ret->session_cache_mode=SSL_SESS_CACHE_SERVER; |
| 1569 ret->session_cache_size=SSL_SESSION_CACHE_MAX_SIZE_DEFAULT; |
| 1570 ret->session_cache_head=NULL; |
| 1571 ret->session_cache_tail=NULL; |
| 1572 |
| 1573 /* We take the system default */ |
| 1574 ret->session_timeout=meth->get_timeout(); |
| 1575 |
| 1576 ret->new_session_cb=0; |
| 1577 ret->remove_session_cb=0; |
| 1578 ret->get_session_cb=0; |
| 1579 ret->generate_session_id=0; |
| 1580 |
| 1581 memset((char *)&ret->stats,0,sizeof(ret->stats)); |
| 1582 |
| 1583 ret->references=1; |
| 1584 ret->quiet_shutdown=0; |
| 1585 |
| 1586 /* ret->cipher=NULL;*/ |
| 1587 /* ret->s2->challenge=NULL; |
| 1588 ret->master_key=NULL; |
| 1589 ret->key_arg=NULL; |
| 1590 ret->s2->conn_id=NULL; */ |
| 1591 |
| 1592 ret->info_callback=NULL; |
| 1593 |
| 1594 ret->app_verify_callback=0; |
| 1595 ret->app_verify_arg=NULL; |
| 1596 |
| 1597 ret->max_cert_list=SSL_MAX_CERT_LIST_DEFAULT; |
| 1598 ret->read_ahead=0; |
| 1599 ret->msg_callback=0; |
| 1600 ret->msg_callback_arg=NULL; |
| 1601 ret->verify_mode=SSL_VERIFY_NONE; |
| 1602 #if 0 |
| 1603 ret->verify_depth=-1; /* Don't impose a limit (but x509_lu.c does) */ |
| 1604 #endif |
| 1605 ret->sid_ctx_length=0; |
| 1606 ret->default_verify_callback=NULL; |
| 1607 if ((ret->cert=ssl_cert_new()) == NULL) |
| 1608 goto err; |
| 1609 |
| 1610 ret->default_passwd_callback=0; |
| 1611 ret->default_passwd_callback_userdata=NULL; |
| 1612 ret->client_cert_cb=0; |
| 1613 ret->app_gen_cookie_cb=0; |
| 1614 ret->app_verify_cookie_cb=0; |
| 1615 |
| 1616 ret->sessions=lh_SSL_SESSION_new(); |
| 1617 if (ret->sessions == NULL) goto err; |
| 1618 ret->cert_store=X509_STORE_new(); |
| 1619 if (ret->cert_store == NULL) goto err; |
| 1620 |
| 1621 ssl_create_cipher_list(ret->method, |
| 1622 &ret->cipher_list,&ret->cipher_list_by_id, |
| 1623 meth->version == SSL2_VERSION ? "SSLv2" : SSL_DEFAULT_CIPHER_LIS
T); |
| 1624 if (ret->cipher_list == NULL |
| 1625 || sk_SSL_CIPHER_num(ret->cipher_list) <= 0) |
| 1626 { |
| 1627 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_LIBRARY_HAS_NO_CIPHERS); |
| 1628 goto err2; |
| 1629 } |
| 1630 |
| 1631 ret->param = X509_VERIFY_PARAM_new(); |
| 1632 if (!ret->param) |
| 1633 goto err; |
| 1634 |
| 1635 if ((ret->rsa_md5=EVP_get_digestbyname("ssl2-md5")) == NULL) |
| 1636 { |
| 1637 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL2_MD5_ROUTINES)
; |
| 1638 goto err2; |
| 1639 } |
| 1640 if ((ret->md5=EVP_get_digestbyname("ssl3-md5")) == NULL) |
| 1641 { |
| 1642 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_MD5_ROUTINES)
; |
| 1643 goto err2; |
| 1644 } |
| 1645 if ((ret->sha1=EVP_get_digestbyname("ssl3-sha1")) == NULL) |
| 1646 { |
| 1647 SSLerr(SSL_F_SSL_CTX_NEW,SSL_R_UNABLE_TO_LOAD_SSL3_SHA1_ROUTINES
); |
| 1648 goto err2; |
| 1649 } |
| 1650 |
| 1651 if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL) |
| 1652 goto err; |
| 1653 |
| 1654 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data); |
| 1655 |
| 1656 ret->extra_certs=NULL; |
| 1657 ret->comp_methods=SSL_COMP_get_compression_methods(); |
| 1658 |
| 1659 ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 1660 |
| 1661 #ifndef OPENSSL_NO_TLSEXT |
| 1662 ret->tlsext_servername_callback = 0; |
| 1663 ret->tlsext_servername_arg = NULL; |
| 1664 /* Setup RFC4507 ticket keys */ |
| 1665 if ((RAND_pseudo_bytes(ret->tlsext_tick_key_name, 16) <= 0) |
| 1666 || (RAND_bytes(ret->tlsext_tick_hmac_key, 16) <= 0) |
| 1667 || (RAND_bytes(ret->tlsext_tick_aes_key, 16) <= 0)) |
| 1668 ret->options |= SSL_OP_NO_TICKET; |
| 1669 |
| 1670 ret->tlsext_status_cb = 0; |
| 1671 ret->tlsext_status_arg = NULL; |
| 1672 |
| 1673 #endif |
| 1674 #ifndef OPENSSL_NO_PSK |
| 1675 ret->psk_identity_hint=NULL; |
| 1676 ret->psk_client_callback=NULL; |
| 1677 ret->psk_server_callback=NULL; |
| 1678 #endif |
| 1679 #ifndef OPENSSL_NO_BUF_FREELISTS |
| 1680 ret->freelist_max_len = SSL_MAX_BUF_FREELIST_LEN_DEFAULT; |
| 1681 ret->rbuf_freelist = OPENSSL_malloc(sizeof(SSL3_BUF_FREELIST)); |
| 1682 if (!ret->rbuf_freelist) |
| 1683 goto err; |
| 1684 ret->rbuf_freelist->chunklen = 0; |
| 1685 ret->rbuf_freelist->len = 0; |
| 1686 ret->rbuf_freelist->head = NULL; |
| 1687 ret->wbuf_freelist = OPENSSL_malloc(sizeof(SSL3_BUF_FREELIST)); |
| 1688 if (!ret->wbuf_freelist) |
| 1689 { |
| 1690 OPENSSL_free(ret->rbuf_freelist); |
| 1691 goto err; |
| 1692 } |
| 1693 ret->wbuf_freelist->chunklen = 0; |
| 1694 ret->wbuf_freelist->len = 0; |
| 1695 ret->wbuf_freelist->head = NULL; |
| 1696 #endif |
| 1697 #ifndef OPENSSL_NO_ENGINE |
| 1698 ret->client_cert_engine = NULL; |
| 1699 #ifdef OPENSSL_SSL_CLIENT_ENGINE_AUTO |
| 1700 #define eng_strx(x) #x |
| 1701 #define eng_str(x) eng_strx(x) |
| 1702 /* Use specific client engine automatically... ignore errors */ |
| 1703 { |
| 1704 ENGINE *eng; |
| 1705 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO)); |
| 1706 if (!eng) |
| 1707 { |
| 1708 ERR_clear_error(); |
| 1709 ENGINE_load_builtin_engines(); |
| 1710 eng = ENGINE_by_id(eng_str(OPENSSL_SSL_CLIENT_ENGINE_AUTO)); |
| 1711 } |
| 1712 if (!eng || !SSL_CTX_set_client_cert_engine(ret, eng)) |
| 1713 ERR_clear_error(); |
| 1714 } |
| 1715 #endif |
| 1716 #endif |
| 1717 /* Default is to connect to non-RI servers. When RI is more widely |
| 1718 * deployed might change this. |
| 1719 */ |
| 1720 ret->options |= SSL_OP_LEGACY_SERVER_CONNECT; |
| 1721 |
| 1722 return(ret); |
| 1723 err: |
| 1724 SSLerr(SSL_F_SSL_CTX_NEW,ERR_R_MALLOC_FAILURE); |
| 1725 err2: |
| 1726 if (ret != NULL) SSL_CTX_free(ret); |
| 1727 return(NULL); |
| 1728 } |
| 1729 |
| 1730 #if 0 |
| 1731 static void SSL_COMP_free(SSL_COMP *comp) |
| 1732 { OPENSSL_free(comp); } |
| 1733 #endif |
| 1734 |
| 1735 #ifndef OPENSSL_NO_BUF_FREELISTS |
| 1736 static void |
| 1737 ssl_buf_freelist_free(SSL3_BUF_FREELIST *list) |
| 1738 { |
| 1739 SSL3_BUF_FREELIST_ENTRY *ent, *next; |
| 1740 for (ent = list->head; ent; ent = next) |
| 1741 { |
| 1742 next = ent->next; |
| 1743 OPENSSL_free(ent); |
| 1744 } |
| 1745 OPENSSL_free(list); |
| 1746 } |
| 1747 #endif |
| 1748 |
| 1749 void SSL_CTX_free(SSL_CTX *a) |
| 1750 { |
| 1751 int i; |
| 1752 |
| 1753 if (a == NULL) return; |
| 1754 |
| 1755 i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_SSL_CTX); |
| 1756 #ifdef REF_PRINT |
| 1757 REF_PRINT("SSL_CTX",a); |
| 1758 #endif |
| 1759 if (i > 0) return; |
| 1760 #ifdef REF_CHECK |
| 1761 if (i < 0) |
| 1762 { |
| 1763 fprintf(stderr,"SSL_CTX_free, bad reference count\n"); |
| 1764 abort(); /* ok */ |
| 1765 } |
| 1766 #endif |
| 1767 |
| 1768 if (a->param) |
| 1769 X509_VERIFY_PARAM_free(a->param); |
| 1770 |
| 1771 /* |
| 1772 * Free internal session cache. However: the remove_cb() may reference |
| 1773 * the ex_data of SSL_CTX, thus the ex_data store can only be removed |
| 1774 * after the sessions were flushed. |
| 1775 * As the ex_data handling routines might also touch the session cache, |
| 1776 * the most secure solution seems to be: empty (flush) the cache, then |
| 1777 * free ex_data, then finally free the cache. |
| 1778 * (See ticket [openssl.org #212].) |
| 1779 */ |
| 1780 if (a->sessions != NULL) |
| 1781 SSL_CTX_flush_sessions(a,0); |
| 1782 |
| 1783 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_SSL_CTX, a, &a->ex_data); |
| 1784 |
| 1785 if (a->sessions != NULL) |
| 1786 lh_SSL_SESSION_free(a->sessions); |
| 1787 |
| 1788 if (a->cert_store != NULL) |
| 1789 X509_STORE_free(a->cert_store); |
| 1790 if (a->cipher_list != NULL) |
| 1791 sk_SSL_CIPHER_free(a->cipher_list); |
| 1792 if (a->cipher_list_by_id != NULL) |
| 1793 sk_SSL_CIPHER_free(a->cipher_list_by_id); |
| 1794 if (a->cert != NULL) |
| 1795 ssl_cert_free(a->cert); |
| 1796 if (a->client_CA != NULL) |
| 1797 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free); |
| 1798 if (a->extra_certs != NULL) |
| 1799 sk_X509_pop_free(a->extra_certs,X509_free); |
| 1800 #if 0 /* This should never be done, since it removes a global database */ |
| 1801 if (a->comp_methods != NULL) |
| 1802 sk_SSL_COMP_pop_free(a->comp_methods,SSL_COMP_free); |
| 1803 #else |
| 1804 a->comp_methods = NULL; |
| 1805 #endif |
| 1806 |
| 1807 #ifndef OPENSSL_NO_PSK |
| 1808 if (a->psk_identity_hint) |
| 1809 OPENSSL_free(a->psk_identity_hint); |
| 1810 #endif |
| 1811 #ifndef OPENSSL_NO_ENGINE |
| 1812 if (a->client_cert_engine) |
| 1813 ENGINE_finish(a->client_cert_engine); |
| 1814 #endif |
| 1815 |
| 1816 #ifndef OPENSSL_NO_BUF_FREELISTS |
| 1817 if (a->wbuf_freelist) |
| 1818 ssl_buf_freelist_free(a->wbuf_freelist); |
| 1819 if (a->rbuf_freelist) |
| 1820 ssl_buf_freelist_free(a->rbuf_freelist); |
| 1821 #endif |
| 1822 |
| 1823 OPENSSL_free(a); |
| 1824 } |
| 1825 |
| 1826 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb) |
| 1827 { |
| 1828 ctx->default_passwd_callback=cb; |
| 1829 } |
| 1830 |
| 1831 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx,void *u) |
| 1832 { |
| 1833 ctx->default_passwd_callback_userdata=u; |
| 1834 } |
| 1835 |
| 1836 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, int (*cb)(X509_STORE_CTX *,v
oid *), void *arg) |
| 1837 { |
| 1838 ctx->app_verify_callback=cb; |
| 1839 ctx->app_verify_arg=arg; |
| 1840 } |
| 1841 |
| 1842 void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *)) |
| 1843 { |
| 1844 ctx->verify_mode=mode; |
| 1845 ctx->default_verify_callback=cb; |
| 1846 } |
| 1847 |
| 1848 void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth) |
| 1849 { |
| 1850 X509_VERIFY_PARAM_set_depth(ctx->param, depth); |
| 1851 } |
| 1852 |
| 1853 void ssl_set_cert_masks(CERT *c, const SSL_CIPHER *cipher) |
| 1854 { |
| 1855 CERT_PKEY *cpk; |
| 1856 int rsa_enc,rsa_tmp,rsa_sign,dh_tmp,dh_rsa,dh_dsa,dsa_sign; |
| 1857 int rsa_enc_export,dh_rsa_export,dh_dsa_export; |
| 1858 int rsa_tmp_export,dh_tmp_export,kl; |
| 1859 unsigned long mask_k,mask_a,emask_k,emask_a; |
| 1860 int have_ecc_cert, ecdh_ok, ecdsa_ok, ecc_pkey_size; |
| 1861 #ifndef OPENSSL_NO_ECDH |
| 1862 int have_ecdh_tmp; |
| 1863 #endif |
| 1864 X509 *x = NULL; |
| 1865 EVP_PKEY *ecc_pkey = NULL; |
| 1866 int signature_nid = 0, pk_nid = 0, md_nid = 0; |
| 1867 |
| 1868 if (c == NULL) return; |
| 1869 |
| 1870 kl=SSL_C_EXPORT_PKEYLENGTH(cipher); |
| 1871 |
| 1872 #ifndef OPENSSL_NO_RSA |
| 1873 rsa_tmp=(c->rsa_tmp != NULL || c->rsa_tmp_cb != NULL); |
| 1874 rsa_tmp_export=(c->rsa_tmp_cb != NULL || |
| 1875 (rsa_tmp && RSA_size(c->rsa_tmp)*8 <= kl)); |
| 1876 #else |
| 1877 rsa_tmp=rsa_tmp_export=0; |
| 1878 #endif |
| 1879 #ifndef OPENSSL_NO_DH |
| 1880 dh_tmp=(c->dh_tmp != NULL || c->dh_tmp_cb != NULL); |
| 1881 dh_tmp_export=(c->dh_tmp_cb != NULL || |
| 1882 (dh_tmp && DH_size(c->dh_tmp)*8 <= kl)); |
| 1883 #else |
| 1884 dh_tmp=dh_tmp_export=0; |
| 1885 #endif |
| 1886 |
| 1887 #ifndef OPENSSL_NO_ECDH |
| 1888 have_ecdh_tmp=(c->ecdh_tmp != NULL || c->ecdh_tmp_cb != NULL); |
| 1889 #endif |
| 1890 cpk= &(c->pkeys[SSL_PKEY_RSA_ENC]); |
| 1891 rsa_enc= (cpk->x509 != NULL && cpk->privatekey != NULL); |
| 1892 rsa_enc_export=(rsa_enc && EVP_PKEY_size(cpk->privatekey)*8 <= kl); |
| 1893 cpk= &(c->pkeys[SSL_PKEY_RSA_SIGN]); |
| 1894 rsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL); |
| 1895 cpk= &(c->pkeys[SSL_PKEY_DSA_SIGN]); |
| 1896 dsa_sign=(cpk->x509 != NULL && cpk->privatekey != NULL); |
| 1897 cpk= &(c->pkeys[SSL_PKEY_DH_RSA]); |
| 1898 dh_rsa= (cpk->x509 != NULL && cpk->privatekey != NULL); |
| 1899 dh_rsa_export=(dh_rsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl); |
| 1900 cpk= &(c->pkeys[SSL_PKEY_DH_DSA]); |
| 1901 /* FIX THIS EAY EAY EAY */ |
| 1902 dh_dsa= (cpk->x509 != NULL && cpk->privatekey != NULL); |
| 1903 dh_dsa_export=(dh_dsa && EVP_PKEY_size(cpk->privatekey)*8 <= kl); |
| 1904 cpk= &(c->pkeys[SSL_PKEY_ECC]); |
| 1905 have_ecc_cert= (cpk->x509 != NULL && cpk->privatekey != NULL); |
| 1906 mask_k=0; |
| 1907 mask_a=0; |
| 1908 emask_k=0; |
| 1909 emask_a=0; |
| 1910 |
| 1911 |
| 1912 |
| 1913 #ifdef CIPHER_DEBUG |
| 1914 printf("rt=%d rte=%d dht=%d ecdht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd
=%d\n", |
| 1915 rsa_tmp,rsa_tmp_export,dh_tmp,have_ecdh_tmp, |
| 1916 rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa); |
| 1917 #endif |
| 1918 |
| 1919 cpk = &(c->pkeys[SSL_PKEY_GOST01]); |
| 1920 if (cpk->x509 != NULL && cpk->privatekey !=NULL) { |
| 1921 mask_k |= SSL_kGOST; |
| 1922 mask_a |= SSL_aGOST01; |
| 1923 } |
| 1924 cpk = &(c->pkeys[SSL_PKEY_GOST94]); |
| 1925 if (cpk->x509 != NULL && cpk->privatekey !=NULL) { |
| 1926 mask_k |= SSL_kGOST; |
| 1927 mask_a |= SSL_aGOST94; |
| 1928 } |
| 1929 |
| 1930 if (rsa_enc || (rsa_tmp && rsa_sign)) |
| 1931 mask_k|=SSL_kRSA; |
| 1932 if (rsa_enc_export || (rsa_tmp_export && (rsa_sign || rsa_enc))) |
| 1933 emask_k|=SSL_kRSA; |
| 1934 |
| 1935 #if 0 |
| 1936 /* The match needs to be both kEDH and aRSA or aDSA, so don't worry */ |
| 1937 if ( (dh_tmp || dh_rsa || dh_dsa) && |
| 1938 (rsa_enc || rsa_sign || dsa_sign)) |
| 1939 mask_k|=SSL_kEDH; |
| 1940 if ((dh_tmp_export || dh_rsa_export || dh_dsa_export) && |
| 1941 (rsa_enc || rsa_sign || dsa_sign)) |
| 1942 emask_k|=SSL_kEDH; |
| 1943 #endif |
| 1944 |
| 1945 if (dh_tmp_export) |
| 1946 emask_k|=SSL_kEDH; |
| 1947 |
| 1948 if (dh_tmp) |
| 1949 mask_k|=SSL_kEDH; |
| 1950 |
| 1951 if (dh_rsa) mask_k|=SSL_kDHr; |
| 1952 if (dh_rsa_export) emask_k|=SSL_kDHr; |
| 1953 |
| 1954 if (dh_dsa) mask_k|=SSL_kDHd; |
| 1955 if (dh_dsa_export) emask_k|=SSL_kDHd; |
| 1956 |
| 1957 if (rsa_enc || rsa_sign) |
| 1958 { |
| 1959 mask_a|=SSL_aRSA; |
| 1960 emask_a|=SSL_aRSA; |
| 1961 } |
| 1962 |
| 1963 if (dsa_sign) |
| 1964 { |
| 1965 mask_a|=SSL_aDSS; |
| 1966 emask_a|=SSL_aDSS; |
| 1967 } |
| 1968 |
| 1969 mask_a|=SSL_aNULL; |
| 1970 emask_a|=SSL_aNULL; |
| 1971 |
| 1972 #ifndef OPENSSL_NO_KRB5 |
| 1973 mask_k|=SSL_kKRB5; |
| 1974 mask_a|=SSL_aKRB5; |
| 1975 emask_k|=SSL_kKRB5; |
| 1976 emask_a|=SSL_aKRB5; |
| 1977 #endif |
| 1978 |
| 1979 /* An ECC certificate may be usable for ECDH and/or |
| 1980 * ECDSA cipher suites depending on the key usage extension. |
| 1981 */ |
| 1982 if (have_ecc_cert) |
| 1983 { |
| 1984 /* This call populates extension flags (ex_flags) */ |
| 1985 x = (c->pkeys[SSL_PKEY_ECC]).x509; |
| 1986 X509_check_purpose(x, -1, 0); |
| 1987 ecdh_ok = (x->ex_flags & EXFLAG_KUSAGE) ? |
| 1988 (x->ex_kusage & X509v3_KU_KEY_AGREEMENT) : 1; |
| 1989 ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) ? |
| 1990 (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) : 1; |
| 1991 ecc_pkey = X509_get_pubkey(x); |
| 1992 ecc_pkey_size = (ecc_pkey != NULL) ? |
| 1993 EVP_PKEY_bits(ecc_pkey) : 0; |
| 1994 EVP_PKEY_free(ecc_pkey); |
| 1995 if ((x->sig_alg) && (x->sig_alg->algorithm)) |
| 1996 { |
| 1997 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm); |
| 1998 OBJ_find_sigid_algs(signature_nid, &md_nid, &pk_nid); |
| 1999 } |
| 2000 #ifndef OPENSSL_NO_ECDH |
| 2001 if (ecdh_ok) |
| 2002 { |
| 2003 |
| 2004 if (pk_nid == NID_rsaEncryption || pk_nid == NID_rsa) |
| 2005 { |
| 2006 mask_k|=SSL_kECDHr; |
| 2007 mask_a|=SSL_aECDH; |
| 2008 if (ecc_pkey_size <= 163) |
| 2009 { |
| 2010 emask_k|=SSL_kECDHr; |
| 2011 emask_a|=SSL_aECDH; |
| 2012 } |
| 2013 } |
| 2014 |
| 2015 if (pk_nid == NID_X9_62_id_ecPublicKey) |
| 2016 { |
| 2017 mask_k|=SSL_kECDHe; |
| 2018 mask_a|=SSL_aECDH; |
| 2019 if (ecc_pkey_size <= 163) |
| 2020 { |
| 2021 emask_k|=SSL_kECDHe; |
| 2022 emask_a|=SSL_aECDH; |
| 2023 } |
| 2024 } |
| 2025 } |
| 2026 #endif |
| 2027 #ifndef OPENSSL_NO_ECDSA |
| 2028 if (ecdsa_ok) |
| 2029 { |
| 2030 mask_a|=SSL_aECDSA; |
| 2031 emask_a|=SSL_aECDSA; |
| 2032 } |
| 2033 #endif |
| 2034 } |
| 2035 |
| 2036 #ifndef OPENSSL_NO_ECDH |
| 2037 if (have_ecdh_tmp) |
| 2038 { |
| 2039 mask_k|=SSL_kEECDH; |
| 2040 emask_k|=SSL_kEECDH; |
| 2041 } |
| 2042 #endif |
| 2043 |
| 2044 #ifndef OPENSSL_NO_PSK |
| 2045 mask_k |= SSL_kPSK; |
| 2046 mask_a |= SSL_aPSK; |
| 2047 emask_k |= SSL_kPSK; |
| 2048 emask_a |= SSL_aPSK; |
| 2049 #endif |
| 2050 |
| 2051 c->mask_k=mask_k; |
| 2052 c->mask_a=mask_a; |
| 2053 c->export_mask_k=emask_k; |
| 2054 c->export_mask_a=emask_a; |
| 2055 c->valid=1; |
| 2056 } |
| 2057 |
| 2058 /* This handy macro borrowed from crypto/x509v3/v3_purp.c */ |
| 2059 #define ku_reject(x, usage) \ |
| 2060 (((x)->ex_flags & EXFLAG_KUSAGE) && !((x)->ex_kusage & (usage))) |
| 2061 |
| 2062 #ifndef OPENSSL_NO_EC |
| 2063 |
| 2064 int ssl_check_srvr_ecc_cert_and_alg(X509 *x, const SSL_CIPHER *cs) |
| 2065 { |
| 2066 unsigned long alg_k, alg_a; |
| 2067 EVP_PKEY *pkey = NULL; |
| 2068 int keysize = 0; |
| 2069 int signature_nid = 0, md_nid = 0, pk_nid = 0; |
| 2070 |
| 2071 alg_k = cs->algorithm_mkey; |
| 2072 alg_a = cs->algorithm_auth; |
| 2073 |
| 2074 if (SSL_C_IS_EXPORT(cs)) |
| 2075 { |
| 2076 /* ECDH key length in export ciphers must be <= 163 bits */ |
| 2077 pkey = X509_get_pubkey(x); |
| 2078 if (pkey == NULL) return 0; |
| 2079 keysize = EVP_PKEY_bits(pkey); |
| 2080 EVP_PKEY_free(pkey); |
| 2081 if (keysize > 163) return 0; |
| 2082 } |
| 2083 |
| 2084 /* This call populates the ex_flags field correctly */ |
| 2085 X509_check_purpose(x, -1, 0); |
| 2086 if ((x->sig_alg) && (x->sig_alg->algorithm)) |
| 2087 { |
| 2088 signature_nid = OBJ_obj2nid(x->sig_alg->algorithm); |
| 2089 OBJ_find_sigid_algs(signature_nid, &md_nid, &pk_nid); |
| 2090 } |
| 2091 if (alg_k & SSL_kECDHe || alg_k & SSL_kECDHr) |
| 2092 { |
| 2093 /* key usage, if present, must allow key agreement */ |
| 2094 if (ku_reject(x, X509v3_KU_KEY_AGREEMENT)) |
| 2095 { |
| 2096 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG, SSL_R_ECC_
CERT_NOT_FOR_KEY_AGREEMENT); |
| 2097 return 0; |
| 2098 } |
| 2099 if (alg_k & SSL_kECDHe) |
| 2100 { |
| 2101 /* signature alg must be ECDSA */ |
| 2102 if (pk_nid != NID_X9_62_id_ecPublicKey) |
| 2103 { |
| 2104 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG, SS
L_R_ECC_CERT_SHOULD_HAVE_SHA1_SIGNATURE); |
| 2105 return 0; |
| 2106 } |
| 2107 } |
| 2108 if (alg_k & SSL_kECDHr) |
| 2109 { |
| 2110 /* signature alg must be RSA */ |
| 2111 |
| 2112 if (pk_nid != NID_rsaEncryption && pk_nid != NID_rsa) |
| 2113 { |
| 2114 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG, SS
L_R_ECC_CERT_SHOULD_HAVE_RSA_SIGNATURE); |
| 2115 return 0; |
| 2116 } |
| 2117 } |
| 2118 } |
| 2119 if (alg_a & SSL_aECDSA) |
| 2120 { |
| 2121 /* key usage, if present, must allow signing */ |
| 2122 if (ku_reject(x, X509v3_KU_DIGITAL_SIGNATURE)) |
| 2123 { |
| 2124 SSLerr(SSL_F_SSL_CHECK_SRVR_ECC_CERT_AND_ALG, SSL_R_ECC_
CERT_NOT_FOR_SIGNING); |
| 2125 return 0; |
| 2126 } |
| 2127 } |
| 2128 |
| 2129 return 1; /* all checks are ok */ |
| 2130 } |
| 2131 |
| 2132 #endif |
| 2133 |
| 2134 /* THIS NEEDS CLEANING UP */ |
| 2135 X509 *ssl_get_server_send_cert(SSL *s) |
| 2136 { |
| 2137 unsigned long alg_k,alg_a; |
| 2138 CERT *c; |
| 2139 int i; |
| 2140 |
| 2141 c=s->cert; |
| 2142 ssl_set_cert_masks(c, s->s3->tmp.new_cipher); |
| 2143 |
| 2144 alg_k = s->s3->tmp.new_cipher->algorithm_mkey; |
| 2145 alg_a = s->s3->tmp.new_cipher->algorithm_auth; |
| 2146 |
| 2147 if (alg_k & (SSL_kECDHr|SSL_kECDHe)) |
| 2148 { |
| 2149 /* we don't need to look at SSL_kEECDH |
| 2150 * since no certificate is needed for |
| 2151 * anon ECDH and for authenticated |
| 2152 * EECDH, the check for the auth |
| 2153 * algorithm will set i correctly |
| 2154 * NOTE: For ECDH-RSA, we need an ECC |
| 2155 * not an RSA cert but for EECDH-RSA |
| 2156 * we need an RSA cert. Placing the |
| 2157 * checks for SSL_kECDH before RSA |
| 2158 * checks ensures the correct cert is chosen. |
| 2159 */ |
| 2160 i=SSL_PKEY_ECC; |
| 2161 } |
| 2162 else if (alg_a & SSL_aECDSA) |
| 2163 { |
| 2164 i=SSL_PKEY_ECC; |
| 2165 } |
| 2166 else if (alg_k & SSL_kDHr) |
| 2167 i=SSL_PKEY_DH_RSA; |
| 2168 else if (alg_k & SSL_kDHd) |
| 2169 i=SSL_PKEY_DH_DSA; |
| 2170 else if (alg_a & SSL_aDSS) |
| 2171 i=SSL_PKEY_DSA_SIGN; |
| 2172 else if (alg_a & SSL_aRSA) |
| 2173 { |
| 2174 if (c->pkeys[SSL_PKEY_RSA_ENC].x509 == NULL) |
| 2175 i=SSL_PKEY_RSA_SIGN; |
| 2176 else |
| 2177 i=SSL_PKEY_RSA_ENC; |
| 2178 } |
| 2179 else if (alg_a & SSL_aKRB5) |
| 2180 { |
| 2181 /* VRS something else here? */ |
| 2182 return(NULL); |
| 2183 } |
| 2184 else if (alg_a & SSL_aGOST94) |
| 2185 i=SSL_PKEY_GOST94; |
| 2186 else if (alg_a & SSL_aGOST01) |
| 2187 i=SSL_PKEY_GOST01; |
| 2188 else /* if (alg_a & SSL_aNULL) */ |
| 2189 { |
| 2190 SSLerr(SSL_F_SSL_GET_SERVER_SEND_CERT,ERR_R_INTERNAL_ERROR); |
| 2191 return(NULL); |
| 2192 } |
| 2193 if (c->pkeys[i].x509 == NULL) return(NULL); |
| 2194 |
| 2195 return(c->pkeys[i].x509); |
| 2196 } |
| 2197 |
| 2198 EVP_PKEY *ssl_get_sign_pkey(SSL *s,const SSL_CIPHER *cipher) |
| 2199 { |
| 2200 unsigned long alg_a; |
| 2201 CERT *c; |
| 2202 |
| 2203 alg_a = cipher->algorithm_auth; |
| 2204 c=s->cert; |
| 2205 |
| 2206 if ((alg_a & SSL_aDSS) && |
| 2207 (c->pkeys[SSL_PKEY_DSA_SIGN].privatekey != NULL)) |
| 2208 return(c->pkeys[SSL_PKEY_DSA_SIGN].privatekey); |
| 2209 else if (alg_a & SSL_aRSA) |
| 2210 { |
| 2211 if (c->pkeys[SSL_PKEY_RSA_SIGN].privatekey != NULL) |
| 2212 return(c->pkeys[SSL_PKEY_RSA_SIGN].privatekey); |
| 2213 else if (c->pkeys[SSL_PKEY_RSA_ENC].privatekey != NULL) |
| 2214 return(c->pkeys[SSL_PKEY_RSA_ENC].privatekey); |
| 2215 else |
| 2216 return(NULL); |
| 2217 } |
| 2218 else if ((alg_a & SSL_aECDSA) && |
| 2219 (c->pkeys[SSL_PKEY_ECC].privatekey != NULL)) |
| 2220 return(c->pkeys[SSL_PKEY_ECC].privatekey); |
| 2221 else /* if (alg_a & SSL_aNULL) */ |
| 2222 { |
| 2223 SSLerr(SSL_F_SSL_GET_SIGN_PKEY,ERR_R_INTERNAL_ERROR); |
| 2224 return(NULL); |
| 2225 } |
| 2226 } |
| 2227 |
| 2228 void ssl_update_cache(SSL *s,int mode) |
| 2229 { |
| 2230 int i; |
| 2231 |
| 2232 /* If the session_id_length is 0, we are not supposed to cache it, |
| 2233 * and it would be rather hard to do anyway :-) */ |
| 2234 if (s->session->session_id_length == 0) return; |
| 2235 |
| 2236 i=s->session_ctx->session_cache_mode; |
| 2237 if ((i & mode) && (!s->hit) |
| 2238 && ((i & SSL_SESS_CACHE_NO_INTERNAL_STORE) |
| 2239 || SSL_CTX_add_session(s->session_ctx,s->session)) |
| 2240 && (s->session_ctx->new_session_cb != NULL)) |
| 2241 { |
| 2242 CRYPTO_add(&s->session->references,1,CRYPTO_LOCK_SSL_SESSION); |
| 2243 if (!s->session_ctx->new_session_cb(s,s->session)) |
| 2244 SSL_SESSION_free(s->session); |
| 2245 } |
| 2246 |
| 2247 /* auto flush every 255 connections */ |
| 2248 if ((!(i & SSL_SESS_CACHE_NO_AUTO_CLEAR)) && |
| 2249 ((i & mode) == mode)) |
| 2250 { |
| 2251 if ( (((mode & SSL_SESS_CACHE_CLIENT) |
| 2252 ?s->session_ctx->stats.sess_connect_good |
| 2253 :s->session_ctx->stats.sess_accept_good) & 0xff) == 0xff
) |
| 2254 { |
| 2255 SSL_CTX_flush_sessions(s->session_ctx,(unsigned long)tim
e(NULL)); |
| 2256 } |
| 2257 } |
| 2258 } |
| 2259 |
| 2260 const SSL_METHOD *SSL_get_ssl_method(SSL *s) |
| 2261 { |
| 2262 return(s->method); |
| 2263 } |
| 2264 |
| 2265 int SSL_set_ssl_method(SSL *s, const SSL_METHOD *meth) |
| 2266 { |
| 2267 int conn= -1; |
| 2268 int ret=1; |
| 2269 |
| 2270 if (s->method != meth) |
| 2271 { |
| 2272 if (s->handshake_func != NULL) |
| 2273 conn=(s->handshake_func == s->method->ssl_connect); |
| 2274 |
| 2275 if (s->method->version == meth->version) |
| 2276 s->method=meth; |
| 2277 else |
| 2278 { |
| 2279 s->method->ssl_free(s); |
| 2280 s->method=meth; |
| 2281 ret=s->method->ssl_new(s); |
| 2282 } |
| 2283 |
| 2284 if (conn == 1) |
| 2285 s->handshake_func=meth->ssl_connect; |
| 2286 else if (conn == 0) |
| 2287 s->handshake_func=meth->ssl_accept; |
| 2288 } |
| 2289 return(ret); |
| 2290 } |
| 2291 |
| 2292 int SSL_get_error(const SSL *s,int i) |
| 2293 { |
| 2294 int reason; |
| 2295 unsigned long l; |
| 2296 BIO *bio; |
| 2297 |
| 2298 if (i > 0) return(SSL_ERROR_NONE); |
| 2299 |
| 2300 /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake |
| 2301 * etc, where we do encode the error */ |
| 2302 if ((l=ERR_peek_error()) != 0) |
| 2303 { |
| 2304 if (ERR_GET_LIB(l) == ERR_LIB_SYS) |
| 2305 return(SSL_ERROR_SYSCALL); |
| 2306 else |
| 2307 return(SSL_ERROR_SSL); |
| 2308 } |
| 2309 |
| 2310 if ((i < 0) && SSL_want_read(s)) |
| 2311 { |
| 2312 bio=SSL_get_rbio(s); |
| 2313 if (BIO_should_read(bio)) |
| 2314 return(SSL_ERROR_WANT_READ); |
| 2315 else if (BIO_should_write(bio)) |
| 2316 /* This one doesn't make too much sense ... We never try |
| 2317 * to write to the rbio, and an application program wher
e |
| 2318 * rbio and wbio are separate couldn't even know what it |
| 2319 * should wait for. |
| 2320 * However if we ever set s->rwstate incorrectly |
| 2321 * (so that we have SSL_want_read(s) instead of |
| 2322 * SSL_want_write(s)) and rbio and wbio *are* the same, |
| 2323 * this test works around that bug; so it might be safer |
| 2324 * to keep it. */ |
| 2325 return(SSL_ERROR_WANT_WRITE); |
| 2326 else if (BIO_should_io_special(bio)) |
| 2327 { |
| 2328 reason=BIO_get_retry_reason(bio); |
| 2329 if (reason == BIO_RR_CONNECT) |
| 2330 return(SSL_ERROR_WANT_CONNECT); |
| 2331 else if (reason == BIO_RR_ACCEPT) |
| 2332 return(SSL_ERROR_WANT_ACCEPT); |
| 2333 else |
| 2334 return(SSL_ERROR_SYSCALL); /* unknown */ |
| 2335 } |
| 2336 } |
| 2337 |
| 2338 if ((i < 0) && SSL_want_write(s)) |
| 2339 { |
| 2340 bio=SSL_get_wbio(s); |
| 2341 if (BIO_should_write(bio)) |
| 2342 return(SSL_ERROR_WANT_WRITE); |
| 2343 else if (BIO_should_read(bio)) |
| 2344 /* See above (SSL_want_read(s) with BIO_should_write(bio
)) */ |
| 2345 return(SSL_ERROR_WANT_READ); |
| 2346 else if (BIO_should_io_special(bio)) |
| 2347 { |
| 2348 reason=BIO_get_retry_reason(bio); |
| 2349 if (reason == BIO_RR_CONNECT) |
| 2350 return(SSL_ERROR_WANT_CONNECT); |
| 2351 else if (reason == BIO_RR_ACCEPT) |
| 2352 return(SSL_ERROR_WANT_ACCEPT); |
| 2353 else |
| 2354 return(SSL_ERROR_SYSCALL); |
| 2355 } |
| 2356 } |
| 2357 if ((i < 0) && SSL_want_x509_lookup(s)) |
| 2358 { |
| 2359 return(SSL_ERROR_WANT_X509_LOOKUP); |
| 2360 } |
| 2361 |
| 2362 if (i == 0) |
| 2363 { |
| 2364 if (s->version == SSL2_VERSION) |
| 2365 { |
| 2366 /* assume it is the socket being closed */ |
| 2367 return(SSL_ERROR_ZERO_RETURN); |
| 2368 } |
| 2369 else |
| 2370 { |
| 2371 if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) && |
| 2372 (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY)) |
| 2373 return(SSL_ERROR_ZERO_RETURN); |
| 2374 } |
| 2375 } |
| 2376 return(SSL_ERROR_SYSCALL); |
| 2377 } |
| 2378 |
| 2379 int SSL_do_handshake(SSL *s) |
| 2380 { |
| 2381 int ret=1; |
| 2382 |
| 2383 if (s->handshake_func == NULL) |
| 2384 { |
| 2385 SSLerr(SSL_F_SSL_DO_HANDSHAKE,SSL_R_CONNECTION_TYPE_NOT_SET); |
| 2386 return(-1); |
| 2387 } |
| 2388 |
| 2389 s->method->ssl_renegotiate_check(s); |
| 2390 |
| 2391 if (SSL_in_init(s) || SSL_in_before(s)) |
| 2392 { |
| 2393 ret=s->handshake_func(s); |
| 2394 } |
| 2395 return(ret); |
| 2396 } |
| 2397 |
| 2398 /* For the next 2 functions, SSL_clear() sets shutdown and so |
| 2399 * one of these calls will reset it */ |
| 2400 void SSL_set_accept_state(SSL *s) |
| 2401 { |
| 2402 s->server=1; |
| 2403 s->shutdown=0; |
| 2404 s->state=SSL_ST_ACCEPT|SSL_ST_BEFORE; |
| 2405 s->handshake_func=s->method->ssl_accept; |
| 2406 /* clear the current cipher */ |
| 2407 ssl_clear_cipher_ctx(s); |
| 2408 ssl_clear_hash_ctx(&s->read_hash); |
| 2409 ssl_clear_hash_ctx(&s->write_hash); |
| 2410 } |
| 2411 |
| 2412 void SSL_set_connect_state(SSL *s) |
| 2413 { |
| 2414 s->server=0; |
| 2415 s->shutdown=0; |
| 2416 s->state=SSL_ST_CONNECT|SSL_ST_BEFORE; |
| 2417 s->handshake_func=s->method->ssl_connect; |
| 2418 /* clear the current cipher */ |
| 2419 ssl_clear_cipher_ctx(s); |
| 2420 ssl_clear_hash_ctx(&s->read_hash); |
| 2421 ssl_clear_hash_ctx(&s->write_hash); |
| 2422 } |
| 2423 |
| 2424 int ssl_undefined_function(SSL *s) |
| 2425 { |
| 2426 SSLerr(SSL_F_SSL_UNDEFINED_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); |
| 2427 return(0); |
| 2428 } |
| 2429 |
| 2430 int ssl_undefined_void_function(void) |
| 2431 { |
| 2432 SSLerr(SSL_F_SSL_UNDEFINED_VOID_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CALL
ED); |
| 2433 return(0); |
| 2434 } |
| 2435 |
| 2436 int ssl_undefined_const_function(const SSL *s) |
| 2437 { |
| 2438 SSLerr(SSL_F_SSL_UNDEFINED_CONST_FUNCTION,ERR_R_SHOULD_NOT_HAVE_BEEN_CAL
LED); |
| 2439 return(0); |
| 2440 } |
| 2441 |
| 2442 SSL_METHOD *ssl_bad_method(int ver) |
| 2443 { |
| 2444 SSLerr(SSL_F_SSL_BAD_METHOD,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); |
| 2445 return(NULL); |
| 2446 } |
| 2447 |
| 2448 static const char *ssl_get_version(int version) |
| 2449 { |
| 2450 if (version == TLS1_VERSION) |
| 2451 return("TLSv1"); |
| 2452 else if (version == SSL3_VERSION) |
| 2453 return("SSLv3"); |
| 2454 else if (version == SSL2_VERSION) |
| 2455 return("SSLv2"); |
| 2456 else |
| 2457 return("unknown"); |
| 2458 } |
| 2459 |
| 2460 const char *SSL_get_version(const SSL *s) |
| 2461 { |
| 2462 return ssl_get_version(s->version); |
| 2463 } |
| 2464 |
| 2465 const char *SSL_SESSION_get_version(const SSL_SESSION *s) |
| 2466 { |
| 2467 return ssl_get_version(s->ssl_version); |
| 2468 } |
| 2469 |
| 2470 const char* SSL_authentication_method(const SSL* ssl) |
| 2471 { |
| 2472 if (ssl->cert != NULL && ssl->cert->rsa_tmp != NULL) |
| 2473 return SSL_TXT_RSA "_" SSL_TXT_EXPORT; |
| 2474 switch (ssl->version) |
| 2475 { |
| 2476 case SSL2_VERSION: |
| 2477 return SSL_TXT_RSA; |
| 2478 case SSL3_VERSION: |
| 2479 case TLS1_VERSION: |
| 2480 case DTLS1_VERSION: |
| 2481 return SSL_CIPHER_authentication_method(ssl->s3->tmp.new_cipher)
; |
| 2482 default: |
| 2483 return "UNKNOWN"; |
| 2484 } |
| 2485 } |
| 2486 |
| 2487 SSL *SSL_dup(SSL *s) |
| 2488 { |
| 2489 STACK_OF(X509_NAME) *sk; |
| 2490 X509_NAME *xn; |
| 2491 SSL *ret; |
| 2492 int i; |
| 2493 |
| 2494 if ((ret=SSL_new(SSL_get_SSL_CTX(s))) == NULL) |
| 2495 return(NULL); |
| 2496 |
| 2497 ret->version = s->version; |
| 2498 ret->type = s->type; |
| 2499 ret->method = s->method; |
| 2500 |
| 2501 if (s->session != NULL) |
| 2502 { |
| 2503 /* This copies session-id, SSL_METHOD, sid_ctx, and 'cert' */ |
| 2504 SSL_copy_session_id(ret,s); |
| 2505 } |
| 2506 else |
| 2507 { |
| 2508 /* No session has been established yet, so we have to expect |
| 2509 * that s->cert or ret->cert will be changed later -- |
| 2510 * they should not both point to the same object, |
| 2511 * and thus we can't use SSL_copy_session_id. */ |
| 2512 |
| 2513 ret->method->ssl_free(ret); |
| 2514 ret->method = s->method; |
| 2515 ret->method->ssl_new(ret); |
| 2516 |
| 2517 if (s->cert != NULL) |
| 2518 { |
| 2519 if (ret->cert != NULL) |
| 2520 { |
| 2521 ssl_cert_free(ret->cert); |
| 2522 } |
| 2523 ret->cert = ssl_cert_dup(s->cert); |
| 2524 if (ret->cert == NULL) |
| 2525 goto err; |
| 2526 } |
| 2527 |
| 2528 SSL_set_session_id_context(ret, |
| 2529 s->sid_ctx, s->sid_ctx_length); |
| 2530 } |
| 2531 |
| 2532 ret->options=s->options; |
| 2533 ret->mode=s->mode; |
| 2534 SSL_set_max_cert_list(ret,SSL_get_max_cert_list(s)); |
| 2535 SSL_set_read_ahead(ret,SSL_get_read_ahead(s)); |
| 2536 ret->msg_callback = s->msg_callback; |
| 2537 ret->msg_callback_arg = s->msg_callback_arg; |
| 2538 SSL_set_verify(ret,SSL_get_verify_mode(s), |
| 2539 SSL_get_verify_callback(s)); |
| 2540 SSL_set_verify_depth(ret,SSL_get_verify_depth(s)); |
| 2541 ret->generate_session_id = s->generate_session_id; |
| 2542 |
| 2543 SSL_set_info_callback(ret,SSL_get_info_callback(s)); |
| 2544 |
| 2545 ret->debug=s->debug; |
| 2546 |
| 2547 /* copy app data, a little dangerous perhaps */ |
| 2548 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data)
) |
| 2549 goto err; |
| 2550 |
| 2551 /* setup rbio, and wbio */ |
| 2552 if (s->rbio != NULL) |
| 2553 { |
| 2554 if (!BIO_dup_state(s->rbio,(char *)&ret->rbio)) |
| 2555 goto err; |
| 2556 } |
| 2557 if (s->wbio != NULL) |
| 2558 { |
| 2559 if (s->wbio != s->rbio) |
| 2560 { |
| 2561 if (!BIO_dup_state(s->wbio,(char *)&ret->wbio)) |
| 2562 goto err; |
| 2563 } |
| 2564 else |
| 2565 ret->wbio=ret->rbio; |
| 2566 } |
| 2567 ret->rwstate = s->rwstate; |
| 2568 ret->in_handshake = s->in_handshake; |
| 2569 ret->handshake_func = s->handshake_func; |
| 2570 ret->server = s->server; |
| 2571 ret->new_session = s->new_session; |
| 2572 ret->quiet_shutdown = s->quiet_shutdown; |
| 2573 ret->shutdown=s->shutdown; |
| 2574 ret->state=s->state; /* SSL_dup does not really work at any state, thoug
h */ |
| 2575 ret->rstate=s->rstate; |
| 2576 ret->init_num = 0; /* would have to copy ret->init_buf, ret->init_msg, r
et->init_num, ret->init_off */ |
| 2577 ret->hit=s->hit; |
| 2578 |
| 2579 X509_VERIFY_PARAM_inherit(ret->param, s->param); |
| 2580 |
| 2581 /* dup the cipher_list and cipher_list_by_id stacks */ |
| 2582 if (s->cipher_list != NULL) |
| 2583 { |
| 2584 if ((ret->cipher_list=sk_SSL_CIPHER_dup(s->cipher_list)) == NULL
) |
| 2585 goto err; |
| 2586 } |
| 2587 if (s->cipher_list_by_id != NULL) |
| 2588 if ((ret->cipher_list_by_id=sk_SSL_CIPHER_dup(s->cipher_list_by_
id)) |
| 2589 == NULL) |
| 2590 goto err; |
| 2591 |
| 2592 /* Dup the client_CA list */ |
| 2593 if (s->client_CA != NULL) |
| 2594 { |
| 2595 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err; |
| 2596 ret->client_CA=sk; |
| 2597 for (i=0; i<sk_X509_NAME_num(sk); i++) |
| 2598 { |
| 2599 xn=sk_X509_NAME_value(sk,i); |
| 2600 if (sk_X509_NAME_set(sk,i,X509_NAME_dup(xn)) == NULL) |
| 2601 { |
| 2602 X509_NAME_free(xn); |
| 2603 goto err; |
| 2604 } |
| 2605 } |
| 2606 } |
| 2607 |
| 2608 if (0) |
| 2609 { |
| 2610 err: |
| 2611 if (ret != NULL) SSL_free(ret); |
| 2612 ret=NULL; |
| 2613 } |
| 2614 return(ret); |
| 2615 } |
| 2616 |
| 2617 void ssl_clear_cipher_ctx(SSL *s) |
| 2618 { |
| 2619 if (s->enc_read_ctx != NULL) |
| 2620 { |
| 2621 EVP_CIPHER_CTX_cleanup(s->enc_read_ctx); |
| 2622 OPENSSL_free(s->enc_read_ctx); |
| 2623 s->enc_read_ctx=NULL; |
| 2624 } |
| 2625 if (s->enc_write_ctx != NULL) |
| 2626 { |
| 2627 EVP_CIPHER_CTX_cleanup(s->enc_write_ctx); |
| 2628 OPENSSL_free(s->enc_write_ctx); |
| 2629 s->enc_write_ctx=NULL; |
| 2630 } |
| 2631 #ifndef OPENSSL_NO_COMP |
| 2632 if (s->expand != NULL) |
| 2633 { |
| 2634 COMP_CTX_free(s->expand); |
| 2635 s->expand=NULL; |
| 2636 } |
| 2637 if (s->compress != NULL) |
| 2638 { |
| 2639 COMP_CTX_free(s->compress); |
| 2640 s->compress=NULL; |
| 2641 } |
| 2642 #endif |
| 2643 } |
| 2644 |
| 2645 /* Fix this function so that it takes an optional type parameter */ |
| 2646 X509 *SSL_get_certificate(const SSL *s) |
| 2647 { |
| 2648 if (s->cert != NULL) |
| 2649 return(s->cert->key->x509); |
| 2650 else |
| 2651 return(NULL); |
| 2652 } |
| 2653 |
| 2654 /* Fix this function so that it takes an optional type parameter */ |
| 2655 EVP_PKEY *SSL_get_privatekey(SSL *s) |
| 2656 { |
| 2657 if (s->cert != NULL) |
| 2658 return(s->cert->key->privatekey); |
| 2659 else |
| 2660 return(NULL); |
| 2661 } |
| 2662 |
| 2663 const SSL_CIPHER *SSL_get_current_cipher(const SSL *s) |
| 2664 { |
| 2665 if ((s->session != NULL) && (s->session->cipher != NULL)) |
| 2666 return(s->session->cipher); |
| 2667 return(NULL); |
| 2668 } |
| 2669 #ifdef OPENSSL_NO_COMP |
| 2670 const void *SSL_get_current_compression(SSL *s) |
| 2671 { |
| 2672 return NULL; |
| 2673 } |
| 2674 const void *SSL_get_current_expansion(SSL *s) |
| 2675 { |
| 2676 return NULL; |
| 2677 } |
| 2678 #else |
| 2679 |
| 2680 const COMP_METHOD *SSL_get_current_compression(SSL *s) |
| 2681 { |
| 2682 if (s->compress != NULL) |
| 2683 return(s->compress->meth); |
| 2684 return(NULL); |
| 2685 } |
| 2686 |
| 2687 const COMP_METHOD *SSL_get_current_expansion(SSL *s) |
| 2688 { |
| 2689 if (s->expand != NULL) |
| 2690 return(s->expand->meth); |
| 2691 return(NULL); |
| 2692 } |
| 2693 #endif |
| 2694 |
| 2695 int ssl_init_wbio_buffer(SSL *s,int push) |
| 2696 { |
| 2697 BIO *bbio; |
| 2698 |
| 2699 if (s->bbio == NULL) |
| 2700 { |
| 2701 bbio=BIO_new(BIO_f_buffer()); |
| 2702 if (bbio == NULL) return(0); |
| 2703 s->bbio=bbio; |
| 2704 } |
| 2705 else |
| 2706 { |
| 2707 bbio=s->bbio; |
| 2708 if (s->bbio == s->wbio) |
| 2709 s->wbio=BIO_pop(s->wbio); |
| 2710 } |
| 2711 (void)BIO_reset(bbio); |
| 2712 /* if (!BIO_set_write_buffer_size(bbio,16*1024)) */ |
| 2713 if (!BIO_set_read_buffer_size(bbio,1)) |
| 2714 { |
| 2715 SSLerr(SSL_F_SSL_INIT_WBIO_BUFFER,ERR_R_BUF_LIB); |
| 2716 return(0); |
| 2717 } |
| 2718 if (push) |
| 2719 { |
| 2720 if (s->wbio != bbio) |
| 2721 s->wbio=BIO_push(bbio,s->wbio); |
| 2722 } |
| 2723 else |
| 2724 { |
| 2725 if (s->wbio == bbio) |
| 2726 s->wbio=BIO_pop(bbio); |
| 2727 } |
| 2728 return(1); |
| 2729 } |
| 2730 |
| 2731 void ssl_free_wbio_buffer(SSL *s) |
| 2732 { |
| 2733 if (s->bbio == NULL) return; |
| 2734 |
| 2735 if (s->bbio == s->wbio) |
| 2736 { |
| 2737 /* remove buffering */ |
| 2738 s->wbio=BIO_pop(s->wbio); |
| 2739 #ifdef REF_CHECK /* not the usual REF_CHECK, but this avoids adding one more pre
processor symbol */ |
| 2740 assert(s->wbio != NULL); |
| 2741 #endif |
| 2742 } |
| 2743 BIO_free(s->bbio); |
| 2744 s->bbio=NULL; |
| 2745 } |
| 2746 |
| 2747 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx,int mode) |
| 2748 { |
| 2749 ctx->quiet_shutdown=mode; |
| 2750 } |
| 2751 |
| 2752 int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx) |
| 2753 { |
| 2754 return(ctx->quiet_shutdown); |
| 2755 } |
| 2756 |
| 2757 void SSL_set_quiet_shutdown(SSL *s,int mode) |
| 2758 { |
| 2759 s->quiet_shutdown=mode; |
| 2760 } |
| 2761 |
| 2762 int SSL_get_quiet_shutdown(const SSL *s) |
| 2763 { |
| 2764 return(s->quiet_shutdown); |
| 2765 } |
| 2766 |
| 2767 void SSL_set_shutdown(SSL *s,int mode) |
| 2768 { |
| 2769 s->shutdown=mode; |
| 2770 } |
| 2771 |
| 2772 int SSL_get_shutdown(const SSL *s) |
| 2773 { |
| 2774 return(s->shutdown); |
| 2775 } |
| 2776 |
| 2777 int SSL_version(const SSL *s) |
| 2778 { |
| 2779 return(s->version); |
| 2780 } |
| 2781 |
| 2782 SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl) |
| 2783 { |
| 2784 return(ssl->ctx); |
| 2785 } |
| 2786 |
| 2787 SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX* ctx) |
| 2788 { |
| 2789 if (ssl->ctx == ctx) |
| 2790 return ssl->ctx; |
| 2791 #ifndef OPENSSL_NO_TLSEXT |
| 2792 if (ctx == NULL) |
| 2793 ctx = ssl->initial_ctx; |
| 2794 #endif |
| 2795 if (ssl->cert != NULL) |
| 2796 ssl_cert_free(ssl->cert); |
| 2797 ssl->cert = ssl_cert_dup(ctx->cert); |
| 2798 CRYPTO_add(&ctx->references,1,CRYPTO_LOCK_SSL_CTX); |
| 2799 if (ssl->ctx != NULL) |
| 2800 SSL_CTX_free(ssl->ctx); /* decrement reference count */ |
| 2801 ssl->ctx = ctx; |
| 2802 return(ssl->ctx); |
| 2803 } |
| 2804 |
| 2805 #ifndef OPENSSL_NO_STDIO |
| 2806 int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx) |
| 2807 { |
| 2808 return(X509_STORE_set_default_paths(ctx->cert_store)); |
| 2809 } |
| 2810 |
| 2811 int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile, |
| 2812 const char *CApath) |
| 2813 { |
| 2814 return(X509_STORE_load_locations(ctx->cert_store,CAfile,CApath)); |
| 2815 } |
| 2816 #endif |
| 2817 |
| 2818 void SSL_set_info_callback(SSL *ssl, |
| 2819 void (*cb)(const SSL *ssl,int type,int val)) |
| 2820 { |
| 2821 ssl->info_callback=cb; |
| 2822 } |
| 2823 |
| 2824 /* One compiler (Diab DCC) doesn't like argument names in returned |
| 2825 function pointer. */ |
| 2826 void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /*ssl*/,int /*type*/,i
nt /*val*/) |
| 2827 { |
| 2828 return ssl->info_callback; |
| 2829 } |
| 2830 |
| 2831 int SSL_state(const SSL *ssl) |
| 2832 { |
| 2833 return(ssl->state); |
| 2834 } |
| 2835 |
| 2836 void SSL_set_verify_result(SSL *ssl,long arg) |
| 2837 { |
| 2838 ssl->verify_result=arg; |
| 2839 } |
| 2840 |
| 2841 long SSL_get_verify_result(const SSL *ssl) |
| 2842 { |
| 2843 return(ssl->verify_result); |
| 2844 } |
| 2845 |
| 2846 int SSL_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func, |
| 2847 CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func) |
| 2848 { |
| 2849 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL, argl, argp, |
| 2850 new_func, dup_func, free_func); |
| 2851 } |
| 2852 |
| 2853 int SSL_set_ex_data(SSL *s,int idx,void *arg) |
| 2854 { |
| 2855 return(CRYPTO_set_ex_data(&s->ex_data,idx,arg)); |
| 2856 } |
| 2857 |
| 2858 void *SSL_get_ex_data(const SSL *s,int idx) |
| 2859 { |
| 2860 return(CRYPTO_get_ex_data(&s->ex_data,idx)); |
| 2861 } |
| 2862 |
| 2863 int SSL_CTX_get_ex_new_index(long argl,void *argp,CRYPTO_EX_new *new_func, |
| 2864 CRYPTO_EX_dup *dup_func,CRYPTO_EX_free *free_func) |
| 2865 { |
| 2866 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_SSL_CTX, argl, argp, |
| 2867 new_func, dup_func, free_func); |
| 2868 } |
| 2869 |
| 2870 int SSL_CTX_set_ex_data(SSL_CTX *s,int idx,void *arg) |
| 2871 { |
| 2872 return(CRYPTO_set_ex_data(&s->ex_data,idx,arg)); |
| 2873 } |
| 2874 |
| 2875 void *SSL_CTX_get_ex_data(const SSL_CTX *s,int idx) |
| 2876 { |
| 2877 return(CRYPTO_get_ex_data(&s->ex_data,idx)); |
| 2878 } |
| 2879 |
| 2880 int ssl_ok(SSL *s) |
| 2881 { |
| 2882 return(1); |
| 2883 } |
| 2884 |
| 2885 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx) |
| 2886 { |
| 2887 return(ctx->cert_store); |
| 2888 } |
| 2889 |
| 2890 void SSL_CTX_set_cert_store(SSL_CTX *ctx,X509_STORE *store) |
| 2891 { |
| 2892 if (ctx->cert_store != NULL) |
| 2893 X509_STORE_free(ctx->cert_store); |
| 2894 ctx->cert_store=store; |
| 2895 } |
| 2896 |
| 2897 int SSL_want(const SSL *s) |
| 2898 { |
| 2899 return(s->rwstate); |
| 2900 } |
| 2901 |
| 2902 /*! |
| 2903 * \brief Set the callback for generating temporary RSA keys. |
| 2904 * \param ctx the SSL context. |
| 2905 * \param cb the callback |
| 2906 */ |
| 2907 |
| 2908 #ifndef OPENSSL_NO_RSA |
| 2909 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,RSA *(*cb)(SSL *ssl, |
| 2910 int is_export, |
| 2911 int keylength)) |
| 2912 { |
| 2913 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb); |
| 2914 } |
| 2915 |
| 2916 void SSL_set_tmp_rsa_callback(SSL *ssl,RSA *(*cb)(SSL *ssl, |
| 2917 int is_export, |
| 2918 int keylength)) |
| 2919 { |
| 2920 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_RSA_CB,(void (*)(void))cb); |
| 2921 } |
| 2922 #endif |
| 2923 |
| 2924 #ifdef DOXYGEN |
| 2925 /*! |
| 2926 * \brief The RSA temporary key callback function. |
| 2927 * \param ssl the SSL session. |
| 2928 * \param is_export \c TRUE if the temp RSA key is for an export ciphersuite. |
| 2929 * \param keylength if \c is_export is \c TRUE, then \c keylength is the size |
| 2930 * of the required key in bits. |
| 2931 * \return the temporary RSA key. |
| 2932 * \sa SSL_CTX_set_tmp_rsa_callback, SSL_set_tmp_rsa_callback |
| 2933 */ |
| 2934 |
| 2935 RSA *cb(SSL *ssl,int is_export,int keylength) |
| 2936 {} |
| 2937 #endif |
| 2938 |
| 2939 /*! |
| 2940 * \brief Set the callback for generating temporary DH keys. |
| 2941 * \param ctx the SSL context. |
| 2942 * \param dh the callback |
| 2943 */ |
| 2944 |
| 2945 #ifndef OPENSSL_NO_DH |
| 2946 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,DH *(*dh)(SSL *ssl,int is_export, |
| 2947 int keylength)) |
| 2948 { |
| 2949 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh); |
| 2950 } |
| 2951 |
| 2952 void SSL_set_tmp_dh_callback(SSL *ssl,DH *(*dh)(SSL *ssl,int is_export, |
| 2953 int keylength)) |
| 2954 { |
| 2955 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_DH_CB,(void (*)(void))dh); |
| 2956 } |
| 2957 #endif |
| 2958 |
| 2959 #ifndef OPENSSL_NO_ECDH |
| 2960 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,EC_KEY *(*ecdh)(SSL *ssl,int is_
export, |
| 2961 int keylength)) |
| 2962 { |
| 2963 SSL_CTX_callback_ctrl(ctx,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh)
; |
| 2964 } |
| 2965 |
| 2966 void SSL_set_tmp_ecdh_callback(SSL *ssl,EC_KEY *(*ecdh)(SSL *ssl,int is_export, |
| 2967 int keylength)) |
| 2968 { |
| 2969 SSL_callback_ctrl(ssl,SSL_CTRL_SET_TMP_ECDH_CB,(void (*)(void))ecdh); |
| 2970 } |
| 2971 #endif |
| 2972 |
| 2973 #ifndef OPENSSL_NO_PSK |
| 2974 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) |
| 2975 { |
| 2976 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LE
N) |
| 2977 { |
| 2978 SSLerr(SSL_F_SSL_CTX_USE_PSK_IDENTITY_HINT, SSL_R_DATA_LENGTH_TO
O_LONG); |
| 2979 return 0; |
| 2980 } |
| 2981 if (ctx->psk_identity_hint != NULL) |
| 2982 OPENSSL_free(ctx->psk_identity_hint); |
| 2983 if (identity_hint != NULL) |
| 2984 { |
| 2985 ctx->psk_identity_hint = BUF_strdup(identity_hint); |
| 2986 if (ctx->psk_identity_hint == NULL) |
| 2987 return 0; |
| 2988 } |
| 2989 else |
| 2990 ctx->psk_identity_hint = NULL; |
| 2991 return 1; |
| 2992 } |
| 2993 |
| 2994 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) |
| 2995 { |
| 2996 if (s == NULL) |
| 2997 return 0; |
| 2998 |
| 2999 if (s->session == NULL) |
| 3000 return 1; /* session not created yet, ignored */ |
| 3001 |
| 3002 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LE
N) |
| 3003 { |
| 3004 SSLerr(SSL_F_SSL_USE_PSK_IDENTITY_HINT, SSL_R_DATA_LENGTH_TOO_LO
NG); |
| 3005 return 0; |
| 3006 } |
| 3007 if (s->session->psk_identity_hint != NULL) |
| 3008 OPENSSL_free(s->session->psk_identity_hint); |
| 3009 if (identity_hint != NULL) |
| 3010 { |
| 3011 s->session->psk_identity_hint = BUF_strdup(identity_hint); |
| 3012 if (s->session->psk_identity_hint == NULL) |
| 3013 return 0; |
| 3014 } |
| 3015 else |
| 3016 s->session->psk_identity_hint = NULL; |
| 3017 return 1; |
| 3018 } |
| 3019 |
| 3020 const char *SSL_get_psk_identity_hint(const SSL *s) |
| 3021 { |
| 3022 if (s == NULL || s->session == NULL) |
| 3023 return NULL; |
| 3024 return(s->session->psk_identity_hint); |
| 3025 } |
| 3026 |
| 3027 const char *SSL_get_psk_identity(const SSL *s) |
| 3028 { |
| 3029 if (s == NULL || s->session == NULL) |
| 3030 return NULL; |
| 3031 return(s->session->psk_identity); |
| 3032 } |
| 3033 |
| 3034 void SSL_set_psk_client_callback(SSL *s, |
| 3035 unsigned int (*cb)(SSL *ssl, const char *hint, |
| 3036 char *identity, unsigned int max_identity_len, unsigned c
har *psk, |
| 3037 unsigned int max_psk_len)) |
| 3038 { |
| 3039 s->psk_client_callback = cb; |
| 3040 } |
| 3041 |
| 3042 void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx, |
| 3043 unsigned int (*cb)(SSL *ssl, const char *hint, |
| 3044 char *identity, unsigned int max_identity_len, unsigned c
har *psk, |
| 3045 unsigned int max_psk_len)) |
| 3046 { |
| 3047 ctx->psk_client_callback = cb; |
| 3048 } |
| 3049 |
| 3050 void SSL_set_psk_server_callback(SSL *s, |
| 3051 unsigned int (*cb)(SSL *ssl, const char *identity, |
| 3052 unsigned char *psk, unsigned int max_psk_len)) |
| 3053 { |
| 3054 s->psk_server_callback = cb; |
| 3055 } |
| 3056 |
| 3057 void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx, |
| 3058 unsigned int (*cb)(SSL *ssl, const char *identity, |
| 3059 unsigned char *psk, unsigned int max_psk_len)) |
| 3060 { |
| 3061 ctx->psk_server_callback = cb; |
| 3062 } |
| 3063 #endif |
| 3064 |
| 3065 void SSL_CTX_set_msg_callback(SSL_CTX *ctx, void (*cb)(int write_p, int version,
int content_type, const void *buf, size_t len, SSL *ssl, void *arg)) |
| 3066 { |
| 3067 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb
); |
| 3068 } |
| 3069 void SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version, int con
tent_type, const void *buf, size_t len, SSL *ssl, void *arg)) |
| 3070 { |
| 3071 SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb); |
| 3072 } |
| 3073 |
| 3074 int SSL_cutthrough_complete(const SSL *s) |
| 3075 { |
| 3076 return (!s->server && /* cutthrough only applies to clie
nts */ |
| 3077 !s->hit && /* full-handshake */ |
| 3078 s->version >= SSL3_VERSION && |
| 3079 s->s3->in_read_app_data == 0 && /* cutthrough only applies to
write() */ |
| 3080 (SSL_get_mode((SSL*)s) & SSL_MODE_HANDSHAKE_CUTTHROUGH) && /* c
utthrough enabled */ |
| 3081 SSL_get_cipher_bits(s, NULL) >= 128 && /* s
trong cipher choosen */ |
| 3082 s->s3->previous_server_finished_len == 0 && /* n
ot a renegotiation handshake */ |
| 3083 (s->state == SSL3_ST_CR_SESSION_TICKET_A || /* r
eady to write app-data*/ |
| 3084 s->state == SSL3_ST_CR_FINISHED_A)); |
| 3085 } |
| 3086 |
| 3087 /* Allocates new EVP_MD_CTX and sets pointer to it into given pointer |
| 3088 * vairable, freeing EVP_MD_CTX previously stored in that variable, if |
| 3089 * any. If EVP_MD pointer is passed, initializes ctx with this md |
| 3090 * Returns newly allocated ctx; |
| 3091 */ |
| 3092 |
| 3093 EVP_MD_CTX *ssl_replace_hash(EVP_MD_CTX **hash,const EVP_MD *md) |
| 3094 { |
| 3095 ssl_clear_hash_ctx(hash); |
| 3096 *hash = EVP_MD_CTX_create(); |
| 3097 if (md) EVP_DigestInit_ex(*hash,md,NULL); |
| 3098 return *hash; |
| 3099 } |
| 3100 void ssl_clear_hash_ctx(EVP_MD_CTX **hash) |
| 3101 { |
| 3102 |
| 3103 if (*hash) EVP_MD_CTX_destroy(*hash); |
| 3104 *hash=NULL; |
| 3105 } |
| 3106 |
| 3107 #if defined(_WINDLL) && defined(OPENSSL_SYS_WIN16) |
| 3108 #include "../crypto/bio/bss_file.c" |
| 3109 #endif |
| 3110 |
| 3111 IMPLEMENT_STACK_OF(SSL_CIPHER) |
| 3112 IMPLEMENT_STACK_OF(SSL_COMP) |
| 3113 IMPLEMENT_OBJ_BSEARCH_GLOBAL_CMP_FN(SSL_CIPHER, SSL_CIPHER, |
| 3114 ssl_cipher_id); |
| 3115 |
OLD | NEW |