os/ossrv/ssl/libssl/src/s3_srvr.c
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /* ssl/s3_srvr.c */
     2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
     3  * All rights reserved.
     4  *
     5  * This package is an SSL implementation written
     6  * by Eric Young (eay@cryptsoft.com).
     7  * The implementation was written so as to conform with Netscapes SSL.
     8  * 
     9  * This library is free for commercial and non-commercial use as long as
    10  * the following conditions are aheared to.  The following conditions
    11  * apply to all code found in this distribution, be it the RC4, RSA,
    12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
    13  * included with this distribution is covered by the same copyright terms
    14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
    15  * 
    16  * Copyright remains Eric Young's, and as such any Copyright notices in
    17  * the code are not to be removed.
    18  * If this package is used in a product, Eric Young should be given attribution
    19  * as the author of the parts of the library used.
    20  * This can be in the form of a textual message at program startup or
    21  * in documentation (online or textual) provided with the package.
    22  * 
    23  * Redistribution and use in source and binary forms, with or without
    24  * modification, are permitted provided that the following conditions
    25  * are met:
    26  * 1. Redistributions of source code must retain the copyright
    27  *    notice, this list of conditions and the following disclaimer.
    28  * 2. Redistributions in binary form must reproduce the above copyright
    29  *    notice, this list of conditions and the following disclaimer in the
    30  *    documentation and/or other materials provided with the distribution.
    31  * 3. All advertising materials mentioning features or use of this software
    32  *    must display the following acknowledgement:
    33  *    "This product includes cryptographic software written by
    34  *     Eric Young (eay@cryptsoft.com)"
    35  *    The word 'cryptographic' can be left out if the rouines from the library
    36  *    being used are not cryptographic related :-).
    37  * 4. If you include any Windows specific code (or a derivative thereof) from 
    38  *    the apps directory (application code) you must include an acknowledgement:
    39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
    40  * 
    41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
    42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    51  * SUCH DAMAGE.
    52  * 
    53  * The licence and distribution terms for any publically available version or
    54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
    55  * copied and put under another distribution licence
    56  * [including the GNU Public Licence.]
    57  */
    58 /* ====================================================================
    59  * Copyright (c) 1998-2005 The OpenSSL Project.  All rights reserved.
    60  *
    61  * Redistribution and use in source and binary forms, with or without
    62  * modification, are permitted provided that the following conditions
    63  * are met:
    64  *
    65  * 1. Redistributions of source code must retain the above copyright
    66  *    notice, this list of conditions and the following disclaimer. 
    67  *
    68  * 2. Redistributions in binary form must reproduce the above copyright
    69  *    notice, this list of conditions and the following disclaimer in
    70  *    the documentation and/or other materials provided with the
    71  *    distribution.
    72  *
    73  * 3. All advertising materials mentioning features or use of this
    74  *    software must display the following acknowledgment:
    75  *    "This product includes software developed by the OpenSSL Project
    76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
    77  *
    78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
    79  *    endorse or promote products derived from this software without
    80  *    prior written permission. For written permission, please contact
    81  *    openssl-core@openssl.org.
    82  *
    83  * 5. Products derived from this software may not be called "OpenSSL"
    84  *    nor may "OpenSSL" appear in their names without prior written
    85  *    permission of the OpenSSL Project.
    86  *
    87  * 6. Redistributions of any form whatsoever must retain the following
    88  *    acknowledgment:
    89  *    "This product includes software developed by the OpenSSL Project
    90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
    91  *
    92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
    93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
    96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
    98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
   102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
   103  * OF THE POSSIBILITY OF SUCH DAMAGE.
   104  * ====================================================================
   105  *
   106  * This product includes cryptographic software written by Eric Young
   107  * (eay@cryptsoft.com).  This product includes software written by Tim
   108  * Hudson (tjh@cryptsoft.com).
   109  *
   110  */
   111 /* ====================================================================
   112  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
   113  *
   114  * Portions of the attached software ("Contribution") are developed by 
   115  * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
   116  *
   117  * The Contribution is licensed pursuant to the OpenSSL open source
   118  * license provided above.
   119  *
   120  * ECC cipher suite support in OpenSSL originally written by
   121  * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories.
   122  *
   123  */
   124 /*
   125  © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
   126  */
   127  
   128 #define REUSE_CIPHER_BUG
   129 #define NETSCAPE_HANG_BUG
   130 
   131 #include <stdio.h>
   132 #include "ssl_locl.h"
   133 #include "kssl_lcl.h"
   134 #include <openssl/buffer.h>
   135 #include <openssl/rand.h>
   136 #include <openssl/objects.h>
   137 #include <openssl/evp.h>
   138 #include <openssl/hmac.h>
   139 #include <openssl/x509.h>
   140 #ifndef OPENSSL_NO_DH
   141 #include <openssl/dh.h>
   142 #endif
   143 #include <openssl/bn.h>
   144 #ifndef OPENSSL_NO_KRB5
   145 #include <openssl/krb5_asn.h>
   146 #endif
   147 #include <openssl/md5.h>
   148 
   149 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
   150 #include "libssl_wsd.h"
   151 #endif
   152 
   153 #ifdef EMULATOR
   154 
   155 	GET_STATIC_VAR_FROM_TLS(SSLv3_server_method_data,s3_srvr,SSL_METHOD)
   156 	
   157 	#define SSLv3_server_method_data (*GET_WSD_VAR_NAME(SSLv3_server_method_data,s3_srvr,s)())
   158 	
   159 #endif
   160 
   161 static SSL_METHOD *ssl3_get_server_method(int ver);
   162 
   163 #ifndef OPENSSL_NO_ECDH
   164 static int nid2curve_id(int nid);
   165 #endif
   166 
   167 static SSL_METHOD *ssl3_get_server_method(int ver)
   168 	{
   169 	if (ver == SSL3_VERSION)
   170 		return(SSLv3_server_method());
   171 	else
   172 		return(NULL);
   173 	}
   174 
   175 EXPORT_C IMPLEMENT_ssl3_meth_func(SSLv3_server_method,
   176 			ssl3_accept,
   177 			ssl_undefined_function,
   178 			ssl3_get_server_method)
   179 
   180 int ssl3_accept(SSL *s)
   181 	{
   182 	BUF_MEM *buf;
   183 	unsigned long l,Time=(unsigned long)time(NULL);
   184 	void (*cb)(const SSL *ssl,int type,int val)=NULL;
   185 	long num1;
   186 	int ret= -1;
   187 	int new_state,state,skip=0;
   188 
   189 	RAND_add(&Time,sizeof(Time),0);
   190 	ERR_clear_error();
   191 	clear_sys_error();
   192 
   193 	if (s->info_callback != NULL)
   194 		cb=s->info_callback;
   195 	else if (s->ctx->info_callback != NULL)
   196 		cb=s->ctx->info_callback;
   197 
   198 	/* init things to blank */
   199 	s->in_handshake++;
   200 	if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
   201 
   202 	if (s->cert == NULL)
   203 		{
   204 		SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
   205 		return(-1);
   206 		}
   207 
   208 	for (;;)
   209 		{
   210 		state=s->state;
   211 
   212 		switch (s->state)
   213 			{
   214 		case SSL_ST_RENEGOTIATE:
   215 			s->new_session=1;
   216 			/* s->state=SSL_ST_ACCEPT; */
   217 
   218 		case SSL_ST_BEFORE:
   219 		case SSL_ST_ACCEPT:
   220 		case SSL_ST_BEFORE|SSL_ST_ACCEPT:
   221 		case SSL_ST_OK|SSL_ST_ACCEPT:
   222 
   223 			s->server=1;
   224 			if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
   225 
   226 			if ((s->version>>8) != 3)
   227 				{
   228 				SSLerr(SSL_F_SSL3_ACCEPT, ERR_R_INTERNAL_ERROR);
   229 				return -1;
   230 				}
   231 			s->type=SSL_ST_ACCEPT;
   232 
   233 			if (s->init_buf == NULL)
   234 				{
   235 				if ((buf=BUF_MEM_new()) == NULL)
   236 					{
   237 					ret= -1;
   238 					goto end;
   239 					}
   240 				if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
   241 					{
   242 					ret= -1;
   243 					goto end;
   244 					}
   245 				s->init_buf=buf;
   246 				}
   247 
   248 			if (!ssl3_setup_buffers(s))
   249 				{
   250 				ret= -1;
   251 				goto end;
   252 				}
   253 
   254 			s->init_num=0;
   255 
   256 			if (s->state != SSL_ST_RENEGOTIATE)
   257 				{
   258 				/* Ok, we now need to push on a buffering BIO so that
   259 				 * the output is sent in a way that TCP likes :-)
   260 				 */
   261 				if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
   262 				
   263 				ssl3_init_finished_mac(s);
   264 				s->state=SSL3_ST_SR_CLNT_HELLO_A;
   265 				s->ctx->stats.sess_accept++;
   266 				}
   267 			else
   268 				{
   269 				/* s->state == SSL_ST_RENEGOTIATE,
   270 				 * we will just send a HelloRequest */
   271 				s->ctx->stats.sess_accept_renegotiate++;
   272 				s->state=SSL3_ST_SW_HELLO_REQ_A;
   273 				}
   274 			break;
   275 
   276 		case SSL3_ST_SW_HELLO_REQ_A:
   277 		case SSL3_ST_SW_HELLO_REQ_B:
   278 
   279 			s->shutdown=0;
   280 			ret=ssl3_send_hello_request(s);
   281 			if (ret <= 0) goto end;
   282 			s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
   283 			s->state=SSL3_ST_SW_FLUSH;
   284 			s->init_num=0;
   285 
   286 			ssl3_init_finished_mac(s);
   287 			break;
   288 
   289 		case SSL3_ST_SW_HELLO_REQ_C:
   290 			s->state=SSL_ST_OK;
   291 			break;
   292 
   293 		case SSL3_ST_SR_CLNT_HELLO_A:
   294 		case SSL3_ST_SR_CLNT_HELLO_B:
   295 		case SSL3_ST_SR_CLNT_HELLO_C:
   296 
   297 			s->shutdown=0;
   298 			ret=ssl3_get_client_hello(s);
   299 			if (ret <= 0) goto end;
   300 			s->new_session = 2;
   301 			s->state=SSL3_ST_SW_SRVR_HELLO_A;
   302 			s->init_num=0;
   303 			break;
   304 
   305 		case SSL3_ST_SW_SRVR_HELLO_A:
   306 		case SSL3_ST_SW_SRVR_HELLO_B:
   307 			ret=ssl3_send_server_hello(s);
   308 			if (ret <= 0) goto end;
   309 
   310 			if (s->hit)
   311 				s->state=SSL3_ST_SW_CHANGE_A;
   312 			else
   313 				s->state=SSL3_ST_SW_CERT_A;
   314 			s->init_num=0;
   315 			break;
   316 
   317 		case SSL3_ST_SW_CERT_A:
   318 		case SSL3_ST_SW_CERT_B:
   319 			/* Check if it is anon DH or anon ECDH or KRB5 */
   320 			if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL)
   321 				&& !(s->s3->tmp.new_cipher->algorithms & SSL_aKRB5))
   322 				{
   323 				ret=ssl3_send_server_certificate(s);
   324 				if (ret <= 0) goto end;
   325 				}
   326 			else
   327 				skip=1;
   328 			s->state=SSL3_ST_SW_KEY_EXCH_A;
   329 			s->init_num=0;
   330 			break;
   331 
   332 		case SSL3_ST_SW_KEY_EXCH_A:
   333 		case SSL3_ST_SW_KEY_EXCH_B:
   334 			l=s->s3->tmp.new_cipher->algorithms;
   335 
   336 			/* clear this, it may get reset by
   337 			 * send_server_key_exchange */
   338 			if ((s->options & SSL_OP_EPHEMERAL_RSA)
   339 #ifndef OPENSSL_NO_KRB5
   340 				&& !(l & SSL_KRB5)
   341 #endif /* OPENSSL_NO_KRB5 */
   342 				)
   343 				/* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
   344 				 * even when forbidden by protocol specs
   345 				 * (handshake may fail as clients are not required to
   346 				 * be able to handle this) */
   347 				s->s3->tmp.use_rsa_tmp=1;
   348 			else
   349 				s->s3->tmp.use_rsa_tmp=0;
   350 
   351 
   352 			/* only send if a DH key exchange, fortezza or
   353 			 * RSA but we have a sign only certificate
   354 			 *
   355 			 * For ECC ciphersuites, we send a serverKeyExchange
   356 			 * message only if the cipher suite is either
   357 			 * ECDH-anon or ECDHE. In other cases, the
   358 			 * server certificate contains the server's 
   359 			 * public key for key exchange.
   360 			 */
   361 			if (s->s3->tmp.use_rsa_tmp
   362 			    || (l & SSL_kECDHE)
   363 			    || (l & (SSL_DH|SSL_kFZA))
   364 			    || ((l & SSL_kRSA)
   365 				&& (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
   366 				    || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
   367 					&& EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
   368 					)
   369 				    )
   370 				)
   371 			    )
   372 				{
   373 				ret=ssl3_send_server_key_exchange(s);
   374 				if (ret <= 0) goto end;
   375 				}
   376 			else
   377 				skip=1;
   378 
   379 			s->state=SSL3_ST_SW_CERT_REQ_A;
   380 			s->init_num=0;
   381 			break;
   382 
   383 		case SSL3_ST_SW_CERT_REQ_A:
   384 		case SSL3_ST_SW_CERT_REQ_B:
   385 			if (/* don't request cert unless asked for it: */
   386 				!(s->verify_mode & SSL_VERIFY_PEER) ||
   387 				/* if SSL_VERIFY_CLIENT_ONCE is set,
   388 				 * don't request cert during re-negotiation: */
   389 				((s->session->peer != NULL) &&
   390 				 (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
   391 				/* never request cert in anonymous ciphersuites
   392 				 * (see section "Certificate request" in SSL 3 drafts
   393 				 * and in RFC 2246): */
   394 				((s->s3->tmp.new_cipher->algorithms & SSL_aNULL) &&
   395 				 /* ... except when the application insists on verification
   396 				  * (against the specs, but s3_clnt.c accepts this for SSL 3) */
   397 				 !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
   398                                  /* never request cert in Kerberos ciphersuites */
   399                                 (s->s3->tmp.new_cipher->algorithms & SSL_aKRB5))
   400 				{
   401 				/* no cert request */
   402 				skip=1;
   403 				s->s3->tmp.cert_request=0;
   404 				s->state=SSL3_ST_SW_SRVR_DONE_A;
   405 				}
   406 			else
   407 				{
   408 				s->s3->tmp.cert_request=1;
   409 				ret=ssl3_send_certificate_request(s);
   410 				if (ret <= 0) goto end;
   411 #ifndef NETSCAPE_HANG_BUG
   412 				s->state=SSL3_ST_SW_SRVR_DONE_A;
   413 #else
   414 				s->state=SSL3_ST_SW_FLUSH;
   415 				s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
   416 #endif
   417 				s->init_num=0;
   418 				}
   419 			break;
   420 
   421 		case SSL3_ST_SW_SRVR_DONE_A:
   422 		case SSL3_ST_SW_SRVR_DONE_B:
   423 			ret=ssl3_send_server_done(s);
   424 			if (ret <= 0) goto end;
   425 			s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
   426 			s->state=SSL3_ST_SW_FLUSH;
   427 			s->init_num=0;
   428 			break;
   429 		
   430 		case SSL3_ST_SW_FLUSH:
   431 			/* number of bytes to be flushed */
   432 			num1=BIO_ctrl(s->wbio,BIO_CTRL_INFO,0,NULL);
   433 			if (num1 > 0)
   434 				{
   435 				s->rwstate=SSL_WRITING;
   436 				num1=BIO_flush(s->wbio);
   437 				if (num1 <= 0) { ret= -1; goto end; }
   438 				s->rwstate=SSL_NOTHING;
   439 				}
   440 
   441 			s->state=s->s3->tmp.next_state;
   442 			break;
   443 
   444 		case SSL3_ST_SR_CERT_A:
   445 		case SSL3_ST_SR_CERT_B:
   446 			/* Check for second client hello (MS SGC) */
   447 			ret = ssl3_check_client_hello(s);
   448 			if (ret <= 0)
   449 				goto end;
   450 			if (ret == 2)
   451 				s->state = SSL3_ST_SR_CLNT_HELLO_C;
   452 			else {
   453 				if (s->s3->tmp.cert_request)
   454 					{
   455 					ret=ssl3_get_client_certificate(s);
   456 					if (ret <= 0) goto end;
   457 					}
   458 				s->init_num=0;
   459 				s->state=SSL3_ST_SR_KEY_EXCH_A;
   460 			}
   461 			break;
   462 
   463 		case SSL3_ST_SR_KEY_EXCH_A:
   464 		case SSL3_ST_SR_KEY_EXCH_B:
   465 			ret=ssl3_get_client_key_exchange(s);
   466 			if (ret <= 0) 
   467 				goto end;
   468 			if (ret == 2)
   469 				{
   470 				/* For the ECDH ciphersuites when
   471 				 * the client sends its ECDH pub key in
   472 				 * a certificate, the CertificateVerify
   473 				 * message is not sent.
   474 				 */
   475 				s->state=SSL3_ST_SR_FINISHED_A;
   476 				s->init_num = 0;
   477 				}
   478 			else   
   479 				{
   480 				s->state=SSL3_ST_SR_CERT_VRFY_A;
   481 				s->init_num=0;
   482 
   483 				/* We need to get hashes here so if there is
   484 				 * a client cert, it can be verified
   485 				 */ 
   486 				s->method->ssl3_enc->cert_verify_mac(s,
   487 				    &(s->s3->finish_dgst1),
   488 				    &(s->s3->tmp.cert_verify_md[0]));
   489 				s->method->ssl3_enc->cert_verify_mac(s,
   490 				    &(s->s3->finish_dgst2),
   491 				    &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]));
   492 				}
   493 			break;
   494 
   495 		case SSL3_ST_SR_CERT_VRFY_A:
   496 		case SSL3_ST_SR_CERT_VRFY_B:
   497 
   498 			/* we should decide if we expected this one */
   499 			ret=ssl3_get_cert_verify(s);
   500 			if (ret <= 0) goto end;
   501 
   502 			s->state=SSL3_ST_SR_FINISHED_A;
   503 			s->init_num=0;
   504 			break;
   505 
   506 		case SSL3_ST_SR_FINISHED_A:
   507 		case SSL3_ST_SR_FINISHED_B:
   508 			ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
   509 				SSL3_ST_SR_FINISHED_B);
   510 			if (ret <= 0) goto end;
   511 			if (s->hit)
   512 				s->state=SSL_ST_OK;
   513 
   514 			else
   515 				s->state=SSL3_ST_SW_CHANGE_A;
   516 			s->init_num=0;
   517 			break;
   518 
   519 
   520 
   521 		case SSL3_ST_SW_CHANGE_A:
   522 		case SSL3_ST_SW_CHANGE_B:
   523 
   524 			s->session->cipher=s->s3->tmp.new_cipher;
   525 			if (!s->method->ssl3_enc->setup_key_block(s))
   526 				{ ret= -1; goto end; }
   527 
   528 			ret=ssl3_send_change_cipher_spec(s,
   529 				SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
   530 
   531 			if (ret <= 0) goto end;
   532 			s->state=SSL3_ST_SW_FINISHED_A;
   533 			s->init_num=0;
   534 
   535 			if (!s->method->ssl3_enc->change_cipher_state(s,
   536 				SSL3_CHANGE_CIPHER_SERVER_WRITE))
   537 				{
   538 				ret= -1;
   539 				goto end;
   540 				}
   541 
   542 			break;
   543 
   544 		case SSL3_ST_SW_FINISHED_A:
   545 		case SSL3_ST_SW_FINISHED_B:
   546 			ret=ssl3_send_finished(s,
   547 				SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
   548 				s->method->ssl3_enc->server_finished_label,
   549 				s->method->ssl3_enc->server_finished_label_len);
   550 			if (ret <= 0) goto end;
   551 			s->state=SSL3_ST_SW_FLUSH;
   552 			if (s->hit)
   553 				s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
   554 			else
   555 				s->s3->tmp.next_state=SSL_ST_OK;
   556 			s->init_num=0;
   557 			break;
   558 
   559 		case SSL_ST_OK:
   560 			/* clean a few things up */
   561 			ssl3_cleanup_key_block(s);
   562 
   563 			BUF_MEM_free(s->init_buf);
   564 			s->init_buf=NULL;
   565 
   566 			/* remove buffering on output */
   567 			ssl_free_wbio_buffer(s);
   568 
   569 			s->init_num=0;
   570 
   571 			if (s->new_session == 2) /* skipped if we just sent a HelloRequest */
   572 				{
   573 				/* actually not necessarily a 'new' session unless
   574 				 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is set */
   575 				
   576 				s->new_session=0;
   577 				
   578 				ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
   579 				
   580 				s->ctx->stats.sess_accept_good++;
   581 				/* s->server=1; */
   582 				s->handshake_func=ssl3_accept;
   583 
   584 				if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
   585 				}
   586 			
   587 			ret = 1;
   588 			goto end;
   589 			/* break; */
   590 
   591 		default:
   592 			SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_UNKNOWN_STATE);
   593 			ret= -1;
   594 			goto end;
   595 			/* break; */
   596 			}
   597 		
   598 		if (!s->s3->tmp.reuse_message && !skip)
   599 			{
   600 			if (s->debug)
   601 				{
   602 				if ((ret=BIO_flush(s->wbio)) <= 0)
   603 					goto end;
   604 				}
   605 
   606 
   607 			if ((cb != NULL) && (s->state != state))
   608 				{
   609 				new_state=s->state;
   610 				s->state=state;
   611 				cb(s,SSL_CB_ACCEPT_LOOP,1);
   612 				s->state=new_state;
   613 				}
   614 			}
   615 		skip=0;
   616 		}
   617 end:
   618 	/* BIO_flush(s->wbio); */
   619 
   620 	s->in_handshake--;
   621 	if (cb != NULL)
   622 		cb(s,SSL_CB_ACCEPT_EXIT,ret);
   623 	return(ret);
   624 	}
   625 
   626 int ssl3_send_hello_request(SSL *s)
   627 	{
   628 	unsigned char *p;
   629 
   630 	if (s->state == SSL3_ST_SW_HELLO_REQ_A)
   631 		{
   632 		p=(unsigned char *)s->init_buf->data;
   633 		*(p++)=SSL3_MT_HELLO_REQUEST;
   634 		*(p++)=0;
   635 		*(p++)=0;
   636 		*(p++)=0;
   637 
   638 		s->state=SSL3_ST_SW_HELLO_REQ_B;
   639 		/* number of bytes to write */
   640 		s->init_num=4;
   641 		s->init_off=0;
   642 		}
   643 
   644 	/* SSL3_ST_SW_HELLO_REQ_B */
   645 	return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
   646 	}
   647 
   648 int ssl3_check_client_hello(SSL *s)
   649 	{
   650 	int ok;
   651 	long n;
   652 
   653 	/* this function is called when we really expect a Certificate message,
   654 	 * so permit appropriate message length */
   655 	n=s->method->ssl_get_message(s,
   656 		SSL3_ST_SR_CERT_A,
   657 		SSL3_ST_SR_CERT_B,
   658 		-1,
   659 		s->max_cert_list,
   660 		&ok);
   661 	if (!ok) return((int)n);
   662 	s->s3->tmp.reuse_message = 1;
   663 	if (s->s3->tmp.message_type == SSL3_MT_CLIENT_HELLO)
   664 		{
   665 		/* Throw away what we have done so far in the current handshake,
   666 		 * which will now be aborted. (A full SSL_clear would be too much.)
   667 		 * I hope that tmp.dh is the only thing that may need to be cleared
   668 		 * when a handshake is not completed ... */
   669 #ifndef OPENSSL_NO_DH
   670 		if (s->s3->tmp.dh != NULL)
   671 			{
   672 			DH_free(s->s3->tmp.dh);
   673 			s->s3->tmp.dh = NULL;
   674 			}
   675 #endif
   676 		return 2;
   677 		}
   678 	return 1;
   679 }
   680 
   681 int ssl3_get_client_hello(SSL *s)
   682 	{
   683 	int i,j,ok,al,ret= -1;
   684 	unsigned int cookie_len;
   685 	long n;
   686 	unsigned long id;
   687 	unsigned char *p,*d,*q;
   688 	SSL_CIPHER *c;
   689 #ifndef OPENSSL_NO_COMP
   690 	SSL_COMP *comp=NULL;
   691 #endif
   692 	STACK_OF(SSL_CIPHER) *ciphers=NULL;
   693 
   694 	/* We do this so that we will respond with our native type.
   695 	 * If we are TLSv1 and we get SSLv3, we will respond with TLSv1,
   696 	 * This down switching should be handled by a different method.
   697 	 * If we are SSLv3, we will respond with SSLv3, even if prompted with
   698 	 * TLSv1.
   699 	 */
   700 	if (s->state == SSL3_ST_SR_CLNT_HELLO_A)
   701 		{
   702 		s->state=SSL3_ST_SR_CLNT_HELLO_B;
   703 		}
   704 	s->first_packet=1;
   705 	n=s->method->ssl_get_message(s,
   706 		SSL3_ST_SR_CLNT_HELLO_B,
   707 		SSL3_ST_SR_CLNT_HELLO_C,
   708 		SSL3_MT_CLIENT_HELLO,
   709 		SSL3_RT_MAX_PLAIN_LENGTH,
   710 		&ok);
   711 
   712 	if (!ok) return((int)n);
   713 	s->first_packet=0;
   714 	d=p=(unsigned char *)s->init_msg;
   715 
   716 	/* use version from inside client hello, not from record header
   717 	 * (may differ: see RFC 2246, Appendix E, second paragraph) */
   718 	s->client_version=(((int)p[0])<<8)|(int)p[1];
   719 	p+=2;
   720 
   721 	if ((s->version == DTLS1_VERSION && s->client_version > s->version) ||
   722 	    (s->version != DTLS1_VERSION && s->client_version < s->version))
   723 		{
   724 		SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_WRONG_VERSION_NUMBER);
   725 		if ((s->client_version>>8) == SSL3_VERSION_MAJOR) 
   726 			{
   727 			/* similar to ssl3_get_record, send alert using remote version number */
   728 			s->version = s->client_version;
   729 			}
   730 		al = SSL_AD_PROTOCOL_VERSION;
   731 		goto f_err;
   732 		}
   733 
   734 	/* load the client random */
   735 	memcpy(s->s3->client_random,p,SSL3_RANDOM_SIZE);
   736 	p+=SSL3_RANDOM_SIZE;
   737 
   738 	/* get the session-id */
   739 	j= *(p++);
   740 
   741 	s->hit=0;
   742 	/* Versions before 0.9.7 always allow session reuse during renegotiation
   743 	 * (i.e. when s->new_session is true), option
   744 	 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION is new with 0.9.7.
   745 	 * Maybe this optional behaviour should always have been the default,
   746 	 * but we cannot safely change the default behaviour (or new applications
   747 	 * might be written that become totally unsecure when compiled with
   748 	 * an earlier library version)
   749 	 */
   750 	if ((s->new_session && (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION)))
   751 		{
   752 		if (!ssl_get_new_session(s,1))
   753 			goto err;
   754 		}
   755 	else
   756 		{
   757 		i=ssl_get_prev_session(s, p, j, d + n);
   758 		if (i == 1)
   759 			{ /* previous session */
   760 			s->hit=1;
   761 			}
   762 		else if (i == -1)
   763 			goto err;
   764 		else /* i == 0 */
   765 			{
   766 			if (!ssl_get_new_session(s,1))
   767 				goto err;
   768 			}
   769 		}
   770 
   771 	p+=j;
   772 
   773 	if (s->version == DTLS1_VERSION)
   774 		{
   775 		/* cookie stuff */
   776 		cookie_len = *(p++);
   777 
   778 		if ( (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) &&
   779 			s->d1->send_cookie == 0)
   780 			{
   781 			/* HelloVerifyMessage has already been sent */
   782 			if ( cookie_len != s->d1->cookie_len)
   783 				{
   784 				al = SSL_AD_HANDSHAKE_FAILURE;
   785 				SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
   786 				goto f_err;
   787 				}
   788 			}
   789 
   790 		/* 
   791 		 * The ClientHello may contain a cookie even if the
   792 		 * HelloVerify message has not been sent--make sure that it
   793 		 * does not cause an overflow.
   794 		 */
   795 		if ( cookie_len > sizeof(s->d1->rcvd_cookie))
   796 			{
   797 			/* too much data */
   798 			al = SSL_AD_DECODE_ERROR;
   799 			SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
   800 			goto f_err;
   801 			}
   802 
   803 		/* verify the cookie if appropriate option is set. */
   804 		if ( (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) &&
   805 			cookie_len > 0)
   806 			{
   807 			memcpy(s->d1->rcvd_cookie, p, cookie_len);
   808 
   809 			if ( s->ctx->app_verify_cookie_cb != NULL)
   810 				{
   811 				if ( s->ctx->app_verify_cookie_cb(s, s->d1->rcvd_cookie,
   812 					cookie_len) == 0)
   813 					{
   814 					al=SSL_AD_HANDSHAKE_FAILURE;
   815 					SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, 
   816 						SSL_R_COOKIE_MISMATCH);
   817 					goto f_err;
   818 					}
   819 				/* else cookie verification succeeded */
   820 				}
   821 			else if ( memcmp(s->d1->rcvd_cookie, s->d1->cookie, 
   822 						  s->d1->cookie_len) != 0) /* default verification */
   823 				{
   824 					al=SSL_AD_HANDSHAKE_FAILURE;
   825 					SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, 
   826 						SSL_R_COOKIE_MISMATCH);
   827 					goto f_err;
   828 				}
   829 			}
   830 
   831 		p += cookie_len;
   832 		}
   833 
   834 	n2s(p,i);
   835 	if ((i == 0) && (j != 0))
   836 		{
   837 		/* we need a cipher if we are not resuming a session */
   838 		al=SSL_AD_ILLEGAL_PARAMETER;
   839 		SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_SPECIFIED);
   840 		goto f_err;
   841 		}
   842 	if ((p+i) >= (d+n))
   843 		{
   844 		/* not enough data */
   845 		al=SSL_AD_DECODE_ERROR;
   846 		SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
   847 		goto f_err;
   848 		}
   849 	if ((i > 0) && (ssl_bytes_to_cipher_list(s,p,i,&(ciphers))
   850 		== NULL))
   851 		{
   852 		goto err;
   853 		}
   854 	p+=i;
   855 
   856 	/* If it is a hit, check that the cipher is in the list */
   857 	if ((s->hit) && (i > 0))
   858 		{
   859 		j=0;
   860 		id=s->session->cipher->id;
   861 
   862 #ifdef CIPHER_DEBUG
   863 		printf("client sent %d ciphers\n",sk_num(ciphers));
   864 #endif
   865 		for (i=0; i<sk_SSL_CIPHER_num(ciphers); i++)
   866 			{
   867 			c=sk_SSL_CIPHER_value(ciphers,i);
   868 #ifdef CIPHER_DEBUG
   869 			printf("client [%2d of %2d]:%s\n",
   870 				i,sk_num(ciphers),SSL_CIPHER_get_name(c));
   871 #endif
   872 			if (c->id == id)
   873 				{
   874 				j=1;
   875 				break;
   876 				}
   877 			}
   878 		if (j == 0)
   879 			{
   880 			if ((s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG) && (sk_SSL_CIPHER_num(ciphers) == 1))
   881 				{
   882 				/* Very bad for multi-threading.... */
   883 				s->session->cipher=sk_SSL_CIPHER_value(ciphers, 0);
   884 				}
   885 			else
   886 				{
   887 				/* we need to have the cipher in the cipher
   888 				 * list if we are asked to reuse it */
   889 				al=SSL_AD_ILLEGAL_PARAMETER;
   890 				SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_CIPHER_MISSING);
   891 				goto f_err;
   892 				}
   893 			}
   894 		}
   895 
   896 	/* compression */
   897 	i= *(p++);
   898 	if ((p+i) > (d+n))
   899 		{
   900 		/* not enough data */
   901 		al=SSL_AD_DECODE_ERROR;
   902 		SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
   903 		goto f_err;
   904 		}
   905 	q=p;
   906 	for (j=0; j<i; j++)
   907 		{
   908 		if (p[j] == 0) break;
   909 		}
   910 
   911 	p+=i;
   912 	if (j >= i)
   913 		{
   914 		/* no compress */
   915 		al=SSL_AD_DECODE_ERROR;
   916 		SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_COMPRESSION_SPECIFIED);
   917 		goto f_err;
   918 		}
   919 
   920 
   921 	/* Worst case, we will use the NULL compression, but if we have other
   922 	 * options, we will now look for them.  We have i-1 compression
   923 	 * algorithms from the client, starting at q. */
   924 	s->s3->tmp.new_compression=NULL;
   925 #ifndef OPENSSL_NO_COMP
   926 	if (s->ctx->comp_methods != NULL)
   927 		{ /* See if we have a match */
   928 		int m,nn,o,v,done=0;
   929 
   930 		nn=sk_SSL_COMP_num(s->ctx->comp_methods);
   931 		for (m=0; m<nn; m++)
   932 			{
   933 			comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
   934 			v=comp->id;
   935 			for (o=0; o<i; o++)
   936 				{
   937 				if (v == q[o])
   938 					{
   939 					done=1;
   940 					break;
   941 					}
   942 				}
   943 			if (done) break;
   944 			}
   945 		if (done)
   946 			s->s3->tmp.new_compression=comp;
   947 		else
   948 			comp=NULL;
   949 		}
   950 #endif
   951 
   952 	/* TLS does not mind if there is extra stuff */
   953 #if 0   /* SSL 3.0 does not mind either, so we should disable this test
   954          * (was enabled in 0.9.6d through 0.9.6j and 0.9.7 through 0.9.7b,
   955          * in earlier SSLeay/OpenSSL releases this test existed but was buggy) */
   956 	if (s->version == SSL3_VERSION)
   957 		{
   958 		if (p < (d+n))
   959 			{
   960 			/* wrong number of bytes,
   961 			 * there could be more to follow */
   962 			al=SSL_AD_DECODE_ERROR;
   963 			SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
   964 			goto f_err;
   965 			}
   966 		}
   967 #endif
   968 
   969 	/* Given s->session->ciphers and SSL_get_ciphers, we must
   970 	 * pick a cipher */
   971 
   972 	if (!s->hit)
   973 		{
   974 #ifdef OPENSSL_NO_COMP
   975 		s->session->compress_meth=0;
   976 #else
   977 		s->session->compress_meth=(comp == NULL)?0:comp->id;
   978 #endif
   979 		if (s->session->ciphers != NULL)
   980 			sk_SSL_CIPHER_free(s->session->ciphers);
   981 		s->session->ciphers=ciphers;
   982 		if (ciphers == NULL)
   983 			{
   984 			al=SSL_AD_ILLEGAL_PARAMETER;
   985 			SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_PASSED);
   986 			goto f_err;
   987 			}
   988 		ciphers=NULL;
   989 		c=ssl3_choose_cipher(s,s->session->ciphers,
   990 				     SSL_get_ciphers(s));
   991 
   992 		if (c == NULL)
   993 			{
   994 			al=SSL_AD_HANDSHAKE_FAILURE;
   995 			SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
   996 			goto f_err;
   997 			}
   998 		s->s3->tmp.new_cipher=c;
   999 		}
  1000 	else
  1001 		{
  1002 		/* Session-id reuse */
  1003 #ifdef REUSE_CIPHER_BUG
  1004 		STACK_OF(SSL_CIPHER) *sk;
  1005 		SSL_CIPHER *nc=NULL;
  1006 		SSL_CIPHER *ec=NULL;
  1007 
  1008 		if (s->options & SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG)
  1009 			{
  1010 			sk=s->session->ciphers;
  1011 			for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
  1012 				{
  1013 				c=sk_SSL_CIPHER_value(sk,i);
  1014 				if (c->algorithms & SSL_eNULL)
  1015 					nc=c;
  1016 				if (SSL_C_IS_EXPORT(c))
  1017 					ec=c;
  1018 				}
  1019 			if (nc != NULL)
  1020 				s->s3->tmp.new_cipher=nc;
  1021 			else if (ec != NULL)
  1022 				s->s3->tmp.new_cipher=ec;
  1023 			else
  1024 				s->s3->tmp.new_cipher=s->session->cipher;
  1025 			}
  1026 		else
  1027 #endif
  1028 		s->s3->tmp.new_cipher=s->session->cipher;
  1029 		}
  1030 	
  1031 	/* we now have the following setup. 
  1032 	 * client_random
  1033 	 * cipher_list 		- our prefered list of ciphers
  1034 	 * ciphers 		- the clients prefered list of ciphers
  1035 	 * compression		- basically ignored right now
  1036 	 * ssl version is set	- sslv3
  1037 	 * s->session		- The ssl session has been setup.
  1038 	 * s->hit		- session reuse flag
  1039 	 * s->tmp.new_cipher	- the new cipher to use.
  1040 	 */
  1041 
  1042 	ret=1;
  1043 	if (0)
  1044 		{
  1045 f_err:
  1046 		ssl3_send_alert(s,SSL3_AL_FATAL,al);
  1047 		}
  1048 err:
  1049 	if (ciphers != NULL) sk_SSL_CIPHER_free(ciphers);
  1050 	return(ret);
  1051 	}
  1052 
  1053 int ssl3_send_server_hello(SSL *s)
  1054 	{
  1055 	unsigned char *buf;
  1056 	unsigned char *p,*d;
  1057 	int i,sl;
  1058 	unsigned long l,Time;
  1059 
  1060 	if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
  1061 		{
  1062 		buf=(unsigned char *)s->init_buf->data;
  1063 		p=s->s3->server_random;
  1064 		Time=(unsigned long)time(NULL);			/* Time */
  1065 		l2n(Time,p);
  1066 		if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0)
  1067 			return -1;
  1068 		/* Do the message type and length last */
  1069 		d=p= &(buf[4]);
  1070 
  1071 		*(p++)=s->version>>8;
  1072 		*(p++)=s->version&0xff;
  1073 
  1074 		/* Random stuff */
  1075 		memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
  1076 		p+=SSL3_RANDOM_SIZE;
  1077 
  1078 		/* now in theory we have 3 options to sending back the
  1079 		 * session id.  If it is a re-use, we send back the
  1080 		 * old session-id, if it is a new session, we send
  1081 		 * back the new session-id or we send back a 0 length
  1082 		 * session-id if we want it to be single use.
  1083 		 * Currently I will not implement the '0' length session-id
  1084 		 * 12-Jan-98 - I'll now support the '0' length stuff.
  1085 		 */
  1086 		if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER))
  1087 			s->session->session_id_length=0;
  1088 
  1089 		sl=s->session->session_id_length;
  1090 		if (sl > (int)sizeof(s->session->session_id))
  1091 			{
  1092 			SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
  1093 			return -1;
  1094 			}
  1095 		*(p++)=sl;
  1096 		memcpy(p,s->session->session_id,sl);
  1097 		p+=sl;
  1098 
  1099 		/* put the cipher */
  1100 		i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
  1101 		p+=i;
  1102 
  1103 		/* put the compression method */
  1104 #ifdef OPENSSL_NO_COMP
  1105 			*(p++)=0;
  1106 #else
  1107 		if (s->s3->tmp.new_compression == NULL)
  1108 			*(p++)=0;
  1109 		else
  1110 			*(p++)=s->s3->tmp.new_compression->id;
  1111 #endif
  1112 
  1113 		/* do the header */
  1114 		l=(p-d);
  1115 		d=buf;
  1116 		*(d++)=SSL3_MT_SERVER_HELLO;
  1117 		l2n3(l,d);
  1118 
  1119 		s->state=SSL3_ST_CW_CLNT_HELLO_B;
  1120 		/* number of bytes to write */
  1121 		s->init_num=p-buf;
  1122 		s->init_off=0;
  1123 		}
  1124 
  1125 	/* SSL3_ST_CW_CLNT_HELLO_B */
  1126 	return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
  1127 	}
  1128 
  1129 int ssl3_send_server_done(SSL *s)
  1130 	{
  1131 	unsigned char *p;
  1132 
  1133 	if (s->state == SSL3_ST_SW_SRVR_DONE_A)
  1134 		{
  1135 		p=(unsigned char *)s->init_buf->data;
  1136 
  1137 		/* do the header */
  1138 		*(p++)=SSL3_MT_SERVER_DONE;
  1139 		*(p++)=0;
  1140 		*(p++)=0;
  1141 		*(p++)=0;
  1142 
  1143 		s->state=SSL3_ST_SW_SRVR_DONE_B;
  1144 		/* number of bytes to write */
  1145 		s->init_num=4;
  1146 		s->init_off=0;
  1147 		}
  1148 
  1149 	/* SSL3_ST_CW_CLNT_HELLO_B */
  1150 	return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
  1151 	}
  1152 
  1153 int ssl3_send_server_key_exchange(SSL *s)
  1154 	{
  1155 #ifndef OPENSSL_NO_RSA
  1156 	unsigned char *q;
  1157 	int j,num;
  1158 	RSA *rsa;
  1159 	unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
  1160 	unsigned int u;
  1161 #endif
  1162 #ifndef OPENSSL_NO_DH
  1163 	DH *dh=NULL,*dhp;
  1164 #endif
  1165 #ifndef OPENSSL_NO_ECDH
  1166 	EC_KEY *ecdh=NULL, *ecdhp;
  1167 	unsigned char *encodedPoint = NULL;
  1168 	int encodedlen = 0;
  1169 	int curve_id = 0;
  1170 	BN_CTX *bn_ctx = NULL; 
  1171 #endif
  1172 	EVP_PKEY *pkey;
  1173 	unsigned char *p,*d;
  1174 	int al,i;
  1175 	unsigned long type;
  1176 	int n;
  1177 	CERT *cert;
  1178 	BIGNUM *r[4];
  1179 	int nr[4],kn;
  1180 	BUF_MEM *buf;
  1181 	EVP_MD_CTX md_ctx;
  1182 
  1183 	EVP_MD_CTX_init(&md_ctx);
  1184 	if (s->state == SSL3_ST_SW_KEY_EXCH_A)
  1185 		{
  1186 		type=s->s3->tmp.new_cipher->algorithms & SSL_MKEY_MASK;
  1187 		cert=s->cert;
  1188 
  1189 		buf=s->init_buf;
  1190 
  1191 		r[0]=r[1]=r[2]=r[3]=NULL;
  1192 		n=0;
  1193 #ifndef OPENSSL_NO_RSA
  1194 		if (type & SSL_kRSA)
  1195 			{
  1196 			rsa=cert->rsa_tmp;
  1197 			if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
  1198 				{
  1199 				rsa=s->cert->rsa_tmp_cb(s,
  1200 				      SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
  1201 				      SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
  1202 				if(rsa == NULL)
  1203 				{
  1204 					al=SSL_AD_HANDSHAKE_FAILURE;
  1205 					SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
  1206 					goto f_err;
  1207 				}
  1208 				RSA_up_ref(rsa);
  1209 				cert->rsa_tmp=rsa;
  1210 				}
  1211 			if (rsa == NULL)
  1212 				{
  1213 				al=SSL_AD_HANDSHAKE_FAILURE;
  1214 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
  1215 				goto f_err;
  1216 				}
  1217 			r[0]=rsa->n;
  1218 			r[1]=rsa->e;
  1219 			s->s3->tmp.use_rsa_tmp=1;
  1220 			}
  1221 		else
  1222 #endif
  1223 #ifndef OPENSSL_NO_DH
  1224 			if (type & SSL_kEDH)
  1225 			{
  1226 			dhp=cert->dh_tmp;
  1227 			if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
  1228 				dhp=s->cert->dh_tmp_cb(s,
  1229 				      SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
  1230 				      SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
  1231 			if (dhp == NULL)
  1232 				{
  1233 				al=SSL_AD_HANDSHAKE_FAILURE;
  1234 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
  1235 				goto f_err;
  1236 				}
  1237 
  1238 			if (s->s3->tmp.dh != NULL)
  1239 				{
  1240 				DH_free(dh);
  1241 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
  1242 				goto err;
  1243 				}
  1244 
  1245 			if ((dh=DHparams_dup(dhp)) == NULL)
  1246 				{
  1247 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
  1248 				goto err;
  1249 				}
  1250 
  1251 			s->s3->tmp.dh=dh;
  1252 			if ((dhp->pub_key == NULL ||
  1253 			     dhp->priv_key == NULL ||
  1254 			     (s->options & SSL_OP_SINGLE_DH_USE)))
  1255 				{
  1256 				if(!DH_generate_key(dh))
  1257 				    {
  1258 				    SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
  1259 					   ERR_R_DH_LIB);
  1260 				    goto err;
  1261 				    }
  1262 				}
  1263 			else
  1264 				{
  1265 				dh->pub_key=BN_dup(dhp->pub_key);
  1266 				dh->priv_key=BN_dup(dhp->priv_key);
  1267 				if ((dh->pub_key == NULL) ||
  1268 					(dh->priv_key == NULL))
  1269 					{
  1270 					SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
  1271 					goto err;
  1272 					}
  1273 				}
  1274 			r[0]=dh->p;
  1275 			r[1]=dh->g;
  1276 			r[2]=dh->pub_key;
  1277 			}
  1278 		else 
  1279 #endif
  1280 #ifndef OPENSSL_NO_ECDH
  1281 			if (type & SSL_kECDHE)
  1282 			{
  1283 			const EC_GROUP *group;
  1284 
  1285 			ecdhp=cert->ecdh_tmp;
  1286 			if ((ecdhp == NULL) && (s->cert->ecdh_tmp_cb != NULL))
  1287 				{
  1288 				ecdhp=s->cert->ecdh_tmp_cb(s,
  1289 				      SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
  1290 				      SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
  1291 				}
  1292 			if (ecdhp == NULL)
  1293 				{
  1294 				al=SSL_AD_HANDSHAKE_FAILURE;
  1295 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
  1296 				goto f_err;
  1297 				}
  1298 
  1299 			if (s->s3->tmp.ecdh != NULL)
  1300 				{
  1301 				EC_KEY_free(s->s3->tmp.ecdh); 
  1302 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
  1303 				goto err;
  1304 				}
  1305 
  1306 			/* Duplicate the ECDH structure. */
  1307 			if (ecdhp == NULL)
  1308 				{
  1309 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
  1310 				goto err;
  1311 				}
  1312 			if (!EC_KEY_up_ref(ecdhp))
  1313 				{
  1314 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
  1315 				goto err;
  1316 				}
  1317 			ecdh = ecdhp;
  1318 
  1319 			s->s3->tmp.ecdh=ecdh;
  1320 			if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
  1321 			    (EC_KEY_get0_private_key(ecdh) == NULL) ||
  1322 			    (s->options & SSL_OP_SINGLE_ECDH_USE))
  1323 				{
  1324 				if(!EC_KEY_generate_key(ecdh))
  1325 				    {
  1326 				    SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
  1327 				    goto err;
  1328 				    }
  1329 				}
  1330 
  1331 			if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
  1332 			    (EC_KEY_get0_public_key(ecdh)  == NULL) ||
  1333 			    (EC_KEY_get0_private_key(ecdh) == NULL))
  1334 				{
  1335 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
  1336 				goto err;
  1337 				}
  1338 
  1339 			if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
  1340 			    (EC_GROUP_get_degree(group) > 163)) 
  1341 				{
  1342 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
  1343 				goto err;
  1344 				}
  1345 
  1346 			/* XXX: For now, we only support ephemeral ECDH
  1347 			 * keys over named (not generic) curves. For 
  1348 			 * supported named curves, curve_id is non-zero.
  1349 			 */
  1350 			if ((curve_id = 
  1351 			    nid2curve_id(EC_GROUP_get_curve_name(group)))
  1352 			    == 0)
  1353 				{
  1354 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
  1355 				goto err;
  1356 				}
  1357 
  1358 			/* Encode the public key.
  1359 			 * First check the size of encoding and
  1360 			 * allocate memory accordingly.
  1361 			 */
  1362 			encodedlen = EC_POINT_point2oct(group, 
  1363 			    EC_KEY_get0_public_key(ecdh),
  1364 			    POINT_CONVERSION_UNCOMPRESSED, 
  1365 			    NULL, 0, NULL);
  1366 
  1367 			encodedPoint = (unsigned char *) 
  1368 			    OPENSSL_malloc(encodedlen*sizeof(unsigned char)); 
  1369 			bn_ctx = BN_CTX_new();
  1370 			if ((encodedPoint == NULL) || (bn_ctx == NULL))
  1371 				{
  1372 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
  1373 				goto err;
  1374 				}
  1375 
  1376 
  1377 			encodedlen = EC_POINT_point2oct(group, 
  1378 			    EC_KEY_get0_public_key(ecdh), 
  1379 			    POINT_CONVERSION_UNCOMPRESSED, 
  1380 			    encodedPoint, encodedlen, bn_ctx);
  1381 
  1382 			if (encodedlen == 0) 
  1383 				{
  1384 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
  1385 				goto err;
  1386 				}
  1387 
  1388 			BN_CTX_free(bn_ctx);  bn_ctx=NULL;
  1389 
  1390 			/* XXX: For now, we only support named (not 
  1391 			 * generic) curves in ECDH ephemeral key exchanges.
  1392 			 * In this situation, we need four additional bytes
  1393 			 * to encode the entire ServerECDHParams
  1394 			 * structure. 
  1395 			 */
  1396 			n = 4 + encodedlen;
  1397 
  1398 			/* We'll generate the serverKeyExchange message
  1399 			 * explicitly so we can set these to NULLs
  1400 			 */
  1401 			r[0]=NULL;
  1402 			r[1]=NULL;
  1403 			r[2]=NULL;
  1404 			r[3]=NULL;
  1405 			}
  1406 		else 
  1407 #endif /* !OPENSSL_NO_ECDH */
  1408 			{
  1409 			al=SSL_AD_HANDSHAKE_FAILURE;
  1410 			SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
  1411 			goto f_err;
  1412 			}
  1413 		for (i=0; r[i] != NULL; i++)
  1414 			{
  1415 			nr[i]=BN_num_bytes(r[i]);
  1416 			n+=2+nr[i];
  1417 			}
  1418 
  1419 		if (!(s->s3->tmp.new_cipher->algorithms & SSL_aNULL))
  1420 			{
  1421 			if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher))
  1422 				== NULL)
  1423 				{
  1424 				al=SSL_AD_DECODE_ERROR;
  1425 				goto f_err;
  1426 				}
  1427 			kn=EVP_PKEY_size(pkey);
  1428 			}
  1429 		else
  1430 			{
  1431 			pkey=NULL;
  1432 			kn=0;
  1433 			}
  1434 
  1435 		if (!BUF_MEM_grow_clean(buf,n+4+kn))
  1436 			{
  1437 			SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
  1438 			goto err;
  1439 			}
  1440 		d=(unsigned char *)s->init_buf->data;
  1441 		p= &(d[4]);
  1442 
  1443 		for (i=0; r[i] != NULL; i++)
  1444 			{
  1445 			s2n(nr[i],p);
  1446 			BN_bn2bin(r[i],p);
  1447 			p+=nr[i];
  1448 			}
  1449 
  1450 #ifndef OPENSSL_NO_ECDH
  1451 		if (type & SSL_kECDHE) 
  1452 			{
  1453 			/* XXX: For now, we only support named (not generic) curves.
  1454 			 * In this situation, the serverKeyExchange message has:
  1455 			 * [1 byte CurveType], [2 byte CurveName]
  1456 			 * [1 byte length of encoded point], followed by
  1457 			 * the actual encoded point itself
  1458 			 */
  1459 			*p = NAMED_CURVE_TYPE;
  1460 			p += 1;
  1461 			*p = 0;
  1462 			p += 1;
  1463 			*p = curve_id;
  1464 			p += 1;
  1465 			*p = encodedlen;
  1466 			p += 1;
  1467 			memcpy((unsigned char*)p, 
  1468 			    (unsigned char *)encodedPoint, 
  1469 			    encodedlen);
  1470 			OPENSSL_free(encodedPoint);
  1471 			p += encodedlen;
  1472 			}
  1473 #endif
  1474 
  1475 		/* not anonymous */
  1476 		if (pkey != NULL)
  1477 			{
  1478 			/* n is the length of the params, they start at &(d[4])
  1479 			 * and p points to the space at the end. */
  1480 #ifndef OPENSSL_NO_RSA
  1481 			if (pkey->type == EVP_PKEY_RSA)
  1482 				{
  1483 				q=md_buf;
  1484 				j=0;
  1485 				for (num=2; num > 0; num--)
  1486 					{
  1487 					EVP_DigestInit_ex(&md_ctx,(num == 2)
  1488 						?s->ctx->md5:s->ctx->sha1, NULL);
  1489 					EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
  1490 					EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
  1491 					EVP_DigestUpdate(&md_ctx,&(d[4]),n);
  1492 					EVP_DigestFinal_ex(&md_ctx,q,
  1493 						(unsigned int *)&i);
  1494 					q+=i;
  1495 					j+=i;
  1496 					}
  1497 				if (RSA_sign(NID_md5_sha1, md_buf, j,
  1498 					&(p[2]), &u, pkey->pkey.rsa) <= 0)
  1499 					{
  1500 					SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
  1501 					goto err;
  1502 					}
  1503 				s2n(u,p);
  1504 				n+=u+2;
  1505 				}
  1506 			else
  1507 #endif
  1508 #if !defined(OPENSSL_NO_DSA)
  1509 				if (pkey->type == EVP_PKEY_DSA)
  1510 				{
  1511 				/* lets do DSS */
  1512 				EVP_SignInit_ex(&md_ctx,EVP_dss1(), NULL);
  1513 				EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
  1514 				EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
  1515 				EVP_SignUpdate(&md_ctx,&(d[4]),n);
  1516 				if (!EVP_SignFinal(&md_ctx,&(p[2]),
  1517 					(unsigned int *)&i,pkey))
  1518 					{
  1519 					SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_DSA);
  1520 					goto err;
  1521 					}
  1522 				s2n(i,p);
  1523 				n+=i+2;
  1524 				}
  1525 			else
  1526 #endif
  1527 #if !defined(OPENSSL_NO_ECDSA)
  1528 				if (pkey->type == EVP_PKEY_EC)
  1529 				{
  1530 				/* let's do ECDSA */
  1531 				EVP_SignInit_ex(&md_ctx,EVP_ecdsa(), NULL);
  1532 				EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
  1533 				EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
  1534 				EVP_SignUpdate(&md_ctx,&(d[4]),n);
  1535 				if (!EVP_SignFinal(&md_ctx,&(p[2]),
  1536 					(unsigned int *)&i,pkey))
  1537 					{
  1538 					SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_ECDSA);
  1539 					goto err;
  1540 					}
  1541 				s2n(i,p);
  1542 				n+=i+2;
  1543 				}
  1544 			else
  1545 #endif
  1546 				{
  1547 				/* Is this error check actually needed? */
  1548 				al=SSL_AD_HANDSHAKE_FAILURE;
  1549 				SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
  1550 				goto f_err;
  1551 				}
  1552 			}
  1553 
  1554 		*(d++)=SSL3_MT_SERVER_KEY_EXCHANGE;
  1555 		l2n3(n,d);
  1556 
  1557 		/* we should now have things packed up, so lets send
  1558 		 * it off */
  1559 		s->init_num=n+4;
  1560 		s->init_off=0;
  1561 		}
  1562 
  1563 	s->state = SSL3_ST_SW_KEY_EXCH_B;
  1564 	EVP_MD_CTX_cleanup(&md_ctx);
  1565 	return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
  1566 f_err:
  1567 	ssl3_send_alert(s,SSL3_AL_FATAL,al);
  1568 err:
  1569 #ifndef OPENSSL_NO_ECDH
  1570 	if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
  1571 	BN_CTX_free(bn_ctx);
  1572 #endif
  1573 	EVP_MD_CTX_cleanup(&md_ctx);
  1574 	return(-1);
  1575 	}
  1576 
  1577 int ssl3_send_certificate_request(SSL *s)
  1578 	{
  1579 	unsigned char *p,*d;
  1580 	int i,j,nl,off,n;
  1581 	STACK_OF(X509_NAME) *sk=NULL;
  1582 	X509_NAME *name;
  1583 	BUF_MEM *buf;
  1584 
  1585 	if (s->state == SSL3_ST_SW_CERT_REQ_A)
  1586 		{
  1587 		buf=s->init_buf;
  1588 
  1589 		d=p=(unsigned char *)&(buf->data[4]);
  1590 
  1591 		/* get the list of acceptable cert types */
  1592 		p++;
  1593 		n=ssl3_get_req_cert_type(s,p);
  1594 		d[0]=n;
  1595 		p+=n;
  1596 		n++;
  1597 
  1598 		off=n;
  1599 		p+=2;
  1600 		n+=2;
  1601 
  1602 		sk=SSL_get_client_CA_list(s);
  1603 		nl=0;
  1604 		if (sk != NULL)
  1605 			{
  1606 			for (i=0; i<sk_X509_NAME_num(sk); i++)
  1607 				{
  1608 				name=sk_X509_NAME_value(sk,i);
  1609 				j=i2d_X509_NAME(name,NULL);
  1610 				if (!BUF_MEM_grow_clean(buf,4+n+j+2))
  1611 					{
  1612 					SSLerr(SSL_F_SSL3_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
  1613 					goto err;
  1614 					}
  1615 				p=(unsigned char *)&(buf->data[4+n]);
  1616 				if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
  1617 					{
  1618 					s2n(j,p);
  1619 					i2d_X509_NAME(name,&p);
  1620 					n+=2+j;
  1621 					nl+=2+j;
  1622 					}
  1623 				else
  1624 					{
  1625 					d=p;
  1626 					i2d_X509_NAME(name,&p);
  1627 					j-=2; s2n(j,d); j+=2;
  1628 					n+=j;
  1629 					nl+=j;
  1630 					}
  1631 				}
  1632 			}
  1633 		/* else no CA names */
  1634 		p=(unsigned char *)&(buf->data[4+off]);
  1635 		s2n(nl,p);
  1636 
  1637 		d=(unsigned char *)buf->data;
  1638 		*(d++)=SSL3_MT_CERTIFICATE_REQUEST;
  1639 		l2n3(n,d);
  1640 
  1641 		/* we should now have things packed up, so lets send
  1642 		 * it off */
  1643 
  1644 		s->init_num=n+4;
  1645 		s->init_off=0;
  1646 #ifdef NETSCAPE_HANG_BUG
  1647 		p=(unsigned char *)s->init_buf->data + s->init_num;
  1648 
  1649 		/* do the header */
  1650 		*(p++)=SSL3_MT_SERVER_DONE;
  1651 		*(p++)=0;
  1652 		*(p++)=0;
  1653 		*(p++)=0;
  1654 		s->init_num += 4;
  1655 #endif
  1656 
  1657 		s->state = SSL3_ST_SW_CERT_REQ_B;
  1658 		}
  1659 
  1660 	/* SSL3_ST_SW_CERT_REQ_B */
  1661 	return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
  1662 err:
  1663 	return(-1);
  1664 	}
  1665 
  1666 int ssl3_get_client_key_exchange(SSL *s)
  1667 	{
  1668 	int i,al,ok;
  1669 	long n;
  1670 	unsigned long l;
  1671 	unsigned char *p;
  1672 #ifndef OPENSSL_NO_RSA
  1673 	RSA *rsa=NULL;
  1674 	EVP_PKEY *pkey=NULL;
  1675 #endif
  1676 #ifndef OPENSSL_NO_DH
  1677 	BIGNUM *pub=NULL;
  1678 	DH *dh_srvr;
  1679 #endif
  1680 #ifndef OPENSSL_NO_KRB5
  1681         KSSL_ERR kssl_err;
  1682 #endif /* OPENSSL_NO_KRB5 */
  1683 
  1684 #ifndef OPENSSL_NO_ECDH
  1685 	EC_KEY *srvr_ecdh = NULL;
  1686 	EVP_PKEY *clnt_pub_pkey = NULL;
  1687 	EC_POINT *clnt_ecpoint = NULL;
  1688 	BN_CTX *bn_ctx = NULL; 
  1689 #endif
  1690 
  1691 	n=s->method->ssl_get_message(s,
  1692 		SSL3_ST_SR_KEY_EXCH_A,
  1693 		SSL3_ST_SR_KEY_EXCH_B,
  1694 		SSL3_MT_CLIENT_KEY_EXCHANGE,
  1695 		2048, /* ??? */
  1696 		&ok);
  1697 
  1698 	if (!ok) return((int)n);
  1699 	p=(unsigned char *)s->init_msg;
  1700 
  1701 	l=s->s3->tmp.new_cipher->algorithms;
  1702 
  1703 #ifndef OPENSSL_NO_RSA
  1704 	if (l & SSL_kRSA)
  1705 		{
  1706 		/* FIX THIS UP EAY EAY EAY EAY */
  1707 		if (s->s3->tmp.use_rsa_tmp)
  1708 			{
  1709 			if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
  1710 				rsa=s->cert->rsa_tmp;
  1711 			/* Don't do a callback because rsa_tmp should
  1712 			 * be sent already */
  1713 			if (rsa == NULL)
  1714 				{
  1715 				al=SSL_AD_HANDSHAKE_FAILURE;
  1716 				SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_PKEY);
  1717 				goto f_err;
  1718 
  1719 				}
  1720 			}
  1721 		else
  1722 			{
  1723 			pkey=s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
  1724 			if (	(pkey == NULL) ||
  1725 				(pkey->type != EVP_PKEY_RSA) ||
  1726 				(pkey->pkey.rsa == NULL))
  1727 				{
  1728 				al=SSL_AD_HANDSHAKE_FAILURE;
  1729 				SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_RSA_CERTIFICATE);
  1730 				goto f_err;
  1731 				}
  1732 			rsa=pkey->pkey.rsa;
  1733 			}
  1734 
  1735 		/* TLS and [incidentally] DTLS, including pre-0.9.8f */
  1736 		if (s->version > SSL3_VERSION &&
  1737 		    s->client_version != DTLS1_BAD_VER)
  1738 			{
  1739 			n2s(p,i);
  1740 			if (n != i+2)
  1741 				{
  1742 				if (!(s->options & SSL_OP_TLS_D5_BUG))
  1743 					{
  1744 					SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG);
  1745 					goto err;
  1746 					}
  1747 				else
  1748 					p-=2;
  1749 				}
  1750 			else
  1751 				n=i;
  1752 			}
  1753 
  1754 		i=RSA_private_decrypt((int)n,p,p,rsa,RSA_PKCS1_PADDING);
  1755 
  1756 		al = -1;
  1757 		
  1758 		if (i != SSL_MAX_MASTER_KEY_LENGTH)
  1759 			{
  1760 			al=SSL_AD_DECODE_ERROR;
  1761 			/* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_RSA_DECRYPT); */
  1762 			}
  1763 
  1764 		if ((al == -1) && !((p[0] == (s->client_version>>8)) && (p[1] == (s->client_version & 0xff))))
  1765 			{
  1766 			/* The premaster secret must contain the same version number as the
  1767 			 * ClientHello to detect version rollback attacks (strangely, the
  1768 			 * protocol does not offer such protection for DH ciphersuites).
  1769 			 * However, buggy clients exist that send the negotiated protocol
  1770 			 * version instead if the server does not support the requested
  1771 			 * protocol version.
  1772 			 * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients. */
  1773 			if (!((s->options & SSL_OP_TLS_ROLLBACK_BUG) &&
  1774 				(p[0] == (s->version>>8)) && (p[1] == (s->version & 0xff))))
  1775 				{
  1776 				al=SSL_AD_DECODE_ERROR;
  1777 				/* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_PROTOCOL_VERSION_NUMBER); */
  1778 
  1779 				/* The Klima-Pokorny-Rosa extension of Bleichenbacher's attack
  1780 				 * (http://eprint.iacr.org/2003/052/) exploits the version
  1781 				 * number check as a "bad version oracle" -- an alert would
  1782 				 * reveal that the plaintext corresponding to some ciphertext
  1783 				 * made up by the adversary is properly formatted except
  1784 				 * that the version number is wrong.  To avoid such attacks,
  1785 				 * we should treat this just like any other decryption error. */
  1786 				}
  1787 			}
  1788 
  1789 		if (al != -1)
  1790 			{
  1791 			/* Some decryption failure -- use random value instead as countermeasure
  1792 			 * against Bleichenbacher's attack on PKCS #1 v1.5 RSA padding
  1793 			 * (see RFC 2246, section 7.4.7.1). */
  1794 			ERR_clear_error();
  1795 			i = SSL_MAX_MASTER_KEY_LENGTH;
  1796 			p[0] = s->client_version >> 8;
  1797 			p[1] = s->client_version & 0xff;
  1798 			if (RAND_pseudo_bytes(p+2, i-2) <= 0) /* should be RAND_bytes, but we cannot work around a failure */
  1799 				goto err;
  1800 			}
  1801 	
  1802 		s->session->master_key_length=
  1803 			s->method->ssl3_enc->generate_master_secret(s,
  1804 				s->session->master_key,
  1805 				p,i);
  1806 		OPENSSL_cleanse(p,i);
  1807 		}
  1808 	else
  1809 #endif
  1810 #ifndef OPENSSL_NO_DH
  1811 		if (l & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
  1812 		{
  1813 		n2s(p,i);
  1814 		if (n != i+2)
  1815 			{
  1816 			if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG))
  1817 				{
  1818 				SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
  1819 				goto err;
  1820 				}
  1821 			else
  1822 				{
  1823 				p-=2;
  1824 				i=(int)n;
  1825 				}
  1826 			}
  1827 
  1828 		if (n == 0L) /* the parameters are in the cert */
  1829 			{
  1830 			al=SSL_AD_HANDSHAKE_FAILURE;
  1831 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_UNABLE_TO_DECODE_DH_CERTS);
  1832 			goto f_err;
  1833 			}
  1834 		else
  1835 			{
  1836 			if (s->s3->tmp.dh == NULL)
  1837 				{
  1838 				al=SSL_AD_HANDSHAKE_FAILURE;
  1839 				SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
  1840 				goto f_err;
  1841 				}
  1842 			else
  1843 				dh_srvr=s->s3->tmp.dh;
  1844 			}
  1845 
  1846 		pub=BN_bin2bn(p,i,NULL);
  1847 		if (pub == NULL)
  1848 			{
  1849 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BN_LIB);
  1850 			goto err;
  1851 			}
  1852 
  1853 		i=DH_compute_key(p,pub,dh_srvr);
  1854 
  1855 		if (i <= 0)
  1856 			{
  1857 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
  1858 			goto err;
  1859 			}
  1860 
  1861 		DH_free(s->s3->tmp.dh);
  1862 		s->s3->tmp.dh=NULL;
  1863 
  1864 		BN_clear_free(pub);
  1865 		pub=NULL;
  1866 		s->session->master_key_length=
  1867 			s->method->ssl3_enc->generate_master_secret(s,
  1868 				s->session->master_key,p,i);
  1869 		OPENSSL_cleanse(p,i);
  1870 		}
  1871 	else
  1872 #endif
  1873 #ifndef OPENSSL_NO_KRB5
  1874         if (l & SSL_kKRB5)
  1875                 {
  1876                 krb5_error_code		krb5rc;
  1877 		krb5_data		enc_ticket;
  1878 		krb5_data		authenticator;
  1879 		krb5_data		enc_pms;
  1880                 KSSL_CTX		*kssl_ctx = s->kssl_ctx;
  1881 		EVP_CIPHER_CTX		ciph_ctx;
  1882 		EVP_CIPHER		*enc = NULL;
  1883 		unsigned char		iv[EVP_MAX_IV_LENGTH];
  1884 		unsigned char		pms[SSL_MAX_MASTER_KEY_LENGTH
  1885                                                + EVP_MAX_BLOCK_LENGTH];
  1886 		int                     padl, outl;
  1887 		krb5_timestamp		authtime = 0;
  1888 		krb5_ticket_times	ttimes;
  1889 
  1890 		EVP_CIPHER_CTX_init(&ciph_ctx);
  1891 
  1892                 if (!kssl_ctx)  kssl_ctx = kssl_ctx_new();
  1893 
  1894 		n2s(p,i);
  1895 		enc_ticket.length = i;
  1896 
  1897 		if (n < (int)enc_ticket.length + 6)
  1898 			{
  1899 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  1900 				SSL_R_DATA_LENGTH_TOO_LONG);
  1901 			goto err;
  1902 			}
  1903 
  1904 		enc_ticket.data = (char *)p;
  1905 		p+=enc_ticket.length;
  1906 
  1907 		n2s(p,i);
  1908 		authenticator.length = i;
  1909 
  1910 		if (n < (int)(enc_ticket.length + authenticator.length) + 6)
  1911 			{
  1912 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  1913 				SSL_R_DATA_LENGTH_TOO_LONG);
  1914 			goto err;
  1915 			}
  1916 
  1917 		authenticator.data = (char *)p;
  1918 		p+=authenticator.length;
  1919 
  1920 		n2s(p,i);
  1921 		enc_pms.length = i;
  1922 		enc_pms.data = (char *)p;
  1923 		p+=enc_pms.length;
  1924 
  1925 		/* Note that the length is checked again below,
  1926 		** after decryption
  1927 		*/
  1928 		if(enc_pms.length > sizeof pms)
  1929 			{
  1930 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  1931 			       SSL_R_DATA_LENGTH_TOO_LONG);
  1932 			goto err;
  1933 			}
  1934 
  1935 		if (n != (long)(enc_ticket.length + authenticator.length +
  1936 						enc_pms.length + 6))
  1937 			{
  1938 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  1939 				SSL_R_DATA_LENGTH_TOO_LONG);
  1940 			goto err;
  1941 			}
  1942 
  1943                 if ((krb5rc = kssl_sget_tkt(kssl_ctx, &enc_ticket, &ttimes,
  1944 					&kssl_err)) != 0)
  1945                         {
  1946 #ifdef KSSL_DEBUG
  1947                         printf("kssl_sget_tkt rtn %d [%d]\n",
  1948                                 krb5rc, kssl_err.reason);
  1949                         if (kssl_err.text)
  1950                                 printf("kssl_err text= %s\n", kssl_err.text);
  1951 #endif	/* KSSL_DEBUG */
  1952                         SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  1953                                 kssl_err.reason);
  1954                         goto err;
  1955                         }
  1956 
  1957 		/*  Note: no authenticator is not considered an error,
  1958 		**  but will return authtime == 0.
  1959 		*/
  1960 		if ((krb5rc = kssl_check_authent(kssl_ctx, &authenticator,
  1961 					&authtime, &kssl_err)) != 0)
  1962 			{
  1963 #ifdef KSSL_DEBUG
  1964                         printf("kssl_check_authent rtn %d [%d]\n",
  1965                                 krb5rc, kssl_err.reason);
  1966                         if (kssl_err.text)
  1967                                 printf("kssl_err text= %s\n", kssl_err.text);
  1968 #endif	/* KSSL_DEBUG */
  1969                         SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  1970                                 kssl_err.reason);
  1971                         goto err;
  1972 			}
  1973 
  1974 		if ((krb5rc = kssl_validate_times(authtime, &ttimes)) != 0)
  1975 			{
  1976 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, krb5rc);
  1977                         goto err;
  1978 			}
  1979 
  1980 #ifdef KSSL_DEBUG
  1981                 kssl_ctx_show(kssl_ctx);
  1982 #endif	/* KSSL_DEBUG */
  1983 
  1984 		enc = kssl_map_enc(kssl_ctx->enctype);
  1985                 if (enc == NULL)
  1986                     goto err;
  1987 
  1988 		memset(iv, 0, sizeof iv);	/* per RFC 1510 */
  1989 
  1990 		if (!EVP_DecryptInit_ex(&ciph_ctx,enc,NULL,kssl_ctx->key,iv))
  1991 			{
  1992 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  1993 				SSL_R_DECRYPTION_FAILED);
  1994 			goto err;
  1995 			}
  1996 		if (!EVP_DecryptUpdate(&ciph_ctx, pms,&outl,
  1997 					(unsigned char *)enc_pms.data, enc_pms.length))
  1998 			{
  1999 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2000 				SSL_R_DECRYPTION_FAILED);
  2001 			goto err;
  2002 			}
  2003 		if (outl > SSL_MAX_MASTER_KEY_LENGTH)
  2004 			{
  2005 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2006 				SSL_R_DATA_LENGTH_TOO_LONG);
  2007 			goto err;
  2008 			}
  2009 		if (!EVP_DecryptFinal_ex(&ciph_ctx,&(pms[outl]),&padl))
  2010 			{
  2011 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2012 				SSL_R_DECRYPTION_FAILED);
  2013 			goto err;
  2014 			}
  2015 		outl += padl;
  2016 		if (outl > SSL_MAX_MASTER_KEY_LENGTH)
  2017 			{
  2018 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2019 				SSL_R_DATA_LENGTH_TOO_LONG);
  2020 			goto err;
  2021 			}
  2022 		if (!((pms[0] == (s->client_version>>8)) && (pms[1] == (s->client_version & 0xff))))
  2023 		    {
  2024 		    /* The premaster secret must contain the same version number as the
  2025 		     * ClientHello to detect version rollback attacks (strangely, the
  2026 		     * protocol does not offer such protection for DH ciphersuites).
  2027 		     * However, buggy clients exist that send random bytes instead of
  2028 		     * the protocol version.
  2029 		     * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients. 
  2030 		     * (Perhaps we should have a separate BUG value for the Kerberos cipher)
  2031 		     */
  2032 		    if (!(s->options & SSL_OP_TLS_ROLLBACK_BUG))
  2033 		        {
  2034 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2035 			       SSL_AD_DECODE_ERROR);
  2036 			goto err;
  2037 			}
  2038 		    }
  2039 		EVP_CIPHER_CTX_cleanup(&ciph_ctx);
  2040 
  2041                 s->session->master_key_length=
  2042                         s->method->ssl3_enc->generate_master_secret(s,
  2043                                 s->session->master_key, pms, outl);
  2044 
  2045                 if (kssl_ctx->client_princ)
  2046                         {
  2047                         size_t len = strlen(kssl_ctx->client_princ);
  2048                         if ( len < SSL_MAX_KRB5_PRINCIPAL_LENGTH ) 
  2049                                 {
  2050                                 s->session->krb5_client_princ_len = len;
  2051                                 memcpy(s->session->krb5_client_princ,kssl_ctx->client_princ,len);
  2052                                 }
  2053                         }
  2054 
  2055 
  2056                 /*  Was doing kssl_ctx_free() here,
  2057 		**  but it caused problems for apache.
  2058                 **  kssl_ctx = kssl_ctx_free(kssl_ctx);
  2059                 **  if (s->kssl_ctx)  s->kssl_ctx = NULL;
  2060                 */
  2061                 }
  2062 	else
  2063 #endif	/* OPENSSL_NO_KRB5 */
  2064 
  2065 #ifndef OPENSSL_NO_ECDH
  2066 		if ((l & SSL_kECDH) || (l & SSL_kECDHE))
  2067 		{
  2068 		int ret = 1;
  2069 		int field_size = 0;
  2070 		const EC_KEY   *tkey;
  2071 		const EC_GROUP *group;
  2072 		const BIGNUM *priv_key;
  2073 
  2074                 /* initialize structures for server's ECDH key pair */
  2075 		if ((srvr_ecdh = EC_KEY_new()) == NULL) 
  2076 			{
  2077                 	SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2078 			    ERR_R_MALLOC_FAILURE);
  2079                 	goto err;
  2080 			}
  2081 
  2082 		/* Let's get server private key and group information */
  2083 		if (l & SSL_kECDH) 
  2084 			{ 
  2085                         /* use the certificate */
  2086 			tkey = s->cert->pkeys[SSL_PKEY_ECC].privatekey->pkey.ec;
  2087 			}
  2088 		else
  2089 			{
  2090 			/* use the ephermeral values we saved when
  2091 			 * generating the ServerKeyExchange msg.
  2092 			 */
  2093 			tkey = s->s3->tmp.ecdh;
  2094 			}
  2095 
  2096 		group    = EC_KEY_get0_group(tkey);
  2097 		priv_key = EC_KEY_get0_private_key(tkey);
  2098 
  2099 		if (!EC_KEY_set_group(srvr_ecdh, group) ||
  2100 		    !EC_KEY_set_private_key(srvr_ecdh, priv_key))
  2101 			{
  2102 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2103 			       ERR_R_EC_LIB);
  2104 			goto err;
  2105 			}
  2106 
  2107 		/* Let's get client's public key */
  2108 		if ((clnt_ecpoint = EC_POINT_new(group)) == NULL)
  2109 			{
  2110 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2111 			    ERR_R_MALLOC_FAILURE);
  2112 			goto err;
  2113 			}
  2114 
  2115                 if (n == 0L) 
  2116                         {
  2117 			/* Client Publickey was in Client Certificate */
  2118 
  2119 			 if (l & SSL_kECDHE) 
  2120 				 {
  2121 				 al=SSL_AD_HANDSHAKE_FAILURE;
  2122 				 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
  2123 				 goto f_err;
  2124 				 }
  2125                         if (((clnt_pub_pkey=X509_get_pubkey(s->session->peer))
  2126 			    == NULL) || 
  2127 			    (clnt_pub_pkey->type != EVP_PKEY_EC))
  2128                         	{
  2129 				/* XXX: For now, we do not support client
  2130 				 * authentication using ECDH certificates
  2131 				 * so this branch (n == 0L) of the code is
  2132 				 * never executed. When that support is
  2133 				 * added, we ought to ensure the key 
  2134 				 * received in the certificate is 
  2135 				 * authorized for key agreement.
  2136 				 * ECDH_compute_key implicitly checks that
  2137 				 * the two ECDH shares are for the same
  2138 				 * group.
  2139 				 */
  2140                            	al=SSL_AD_HANDSHAKE_FAILURE;
  2141                            	SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2142 				    SSL_R_UNABLE_TO_DECODE_ECDH_CERTS);
  2143                            	goto f_err;
  2144                            	}
  2145 
  2146 			if (EC_POINT_copy(clnt_ecpoint,
  2147 			    EC_KEY_get0_public_key(clnt_pub_pkey->pkey.ec)) == 0)
  2148 				{
  2149 				SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2150 					ERR_R_EC_LIB);
  2151 				goto err;
  2152 				}
  2153                         ret = 2; /* Skip certificate verify processing */
  2154                         }
  2155                 else
  2156                         {
  2157 			/* Get client's public key from encoded point
  2158 			 * in the ClientKeyExchange message.
  2159 			 */
  2160 			if ((bn_ctx = BN_CTX_new()) == NULL)
  2161 				{
  2162 				SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2163 				    ERR_R_MALLOC_FAILURE);
  2164 				goto err;
  2165 				}
  2166 
  2167                         /* Get encoded point length */
  2168                         i = *p; 
  2169 			p += 1;
  2170                         if (EC_POINT_oct2point(group, 
  2171 			    clnt_ecpoint, p, i, bn_ctx) == 0)
  2172 				{
  2173 				SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2174 				    ERR_R_EC_LIB);
  2175 				goto err;
  2176 				}
  2177                         /* p is pointing to somewhere in the buffer
  2178                          * currently, so set it to the start 
  2179                          */ 
  2180                         p=(unsigned char *)s->init_buf->data;
  2181                         }
  2182 
  2183 		/* Compute the shared pre-master secret */
  2184 		field_size = EC_GROUP_get_degree(group);
  2185 		if (field_size <= 0)
  2186 			{
  2187 			SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, 
  2188 			       ERR_R_ECDH_LIB);
  2189 			goto err;
  2190 			}
  2191 		i = ECDH_compute_key(p, (field_size+7)/8, clnt_ecpoint, srvr_ecdh, NULL);
  2192                 if (i <= 0)
  2193                         {
  2194                         SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2195 			    ERR_R_ECDH_LIB);
  2196                         goto err;
  2197                         }
  2198 
  2199 		EVP_PKEY_free(clnt_pub_pkey);
  2200 		EC_POINT_free(clnt_ecpoint);
  2201 		if (srvr_ecdh != NULL) 
  2202 			EC_KEY_free(srvr_ecdh);
  2203 		BN_CTX_free(bn_ctx);
  2204 
  2205 		/* Compute the master secret */
  2206                 s->session->master_key_length = s->method->ssl3_enc-> \
  2207 		    generate_master_secret(s, s->session->master_key, p, i);
  2208 		
  2209                 OPENSSL_cleanse(p, i);
  2210                 return (ret);
  2211 		}
  2212 	else
  2213 #endif
  2214 		{
  2215 		al=SSL_AD_HANDSHAKE_FAILURE;
  2216 		SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
  2217 				SSL_R_UNKNOWN_CIPHER_TYPE);
  2218 		goto f_err;
  2219 		}
  2220 
  2221 	return(1);
  2222 f_err:
  2223 	ssl3_send_alert(s,SSL3_AL_FATAL,al);
  2224 #if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_ECDH)
  2225 err:
  2226 #endif
  2227 #ifndef OPENSSL_NO_ECDH
  2228 	EVP_PKEY_free(clnt_pub_pkey);
  2229 	EC_POINT_free(clnt_ecpoint);
  2230 	if (srvr_ecdh != NULL) 
  2231 		EC_KEY_free(srvr_ecdh);
  2232 	BN_CTX_free(bn_ctx);
  2233 #endif
  2234 	return(-1);
  2235 	}
  2236 
  2237 int ssl3_get_cert_verify(SSL *s)
  2238 	{
  2239 	EVP_PKEY *pkey=NULL;
  2240 	unsigned char *p;
  2241 	int al,ok,ret=0;
  2242 	long n;
  2243 	int type=0,i,j;
  2244 	X509 *peer;
  2245 
  2246 	n=s->method->ssl_get_message(s,
  2247 		SSL3_ST_SR_CERT_VRFY_A,
  2248 		SSL3_ST_SR_CERT_VRFY_B,
  2249 		-1,
  2250 		514, /* 514? */
  2251 		&ok);
  2252 
  2253 	if (!ok) return((int)n);
  2254 
  2255 	if (s->session->peer != NULL)
  2256 		{
  2257 		peer=s->session->peer;
  2258 		pkey=X509_get_pubkey(peer);
  2259 		type=X509_certificate_type(peer,pkey);
  2260 		}
  2261 	else
  2262 		{
  2263 		peer=NULL;
  2264 		pkey=NULL;
  2265 		}
  2266 
  2267 	if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_VERIFY)
  2268 		{
  2269 		s->s3->tmp.reuse_message=1;
  2270 		if ((peer != NULL) && (type | EVP_PKT_SIGN))
  2271 			{
  2272 			al=SSL_AD_UNEXPECTED_MESSAGE;
  2273 			SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_MISSING_VERIFY_MESSAGE);
  2274 			goto f_err;
  2275 			}
  2276 		ret=1;
  2277 		goto end;
  2278 		}
  2279 
  2280 	if (peer == NULL)
  2281 		{
  2282 		SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_NO_CLIENT_CERT_RECEIVED);
  2283 		al=SSL_AD_UNEXPECTED_MESSAGE;
  2284 		goto f_err;
  2285 		}
  2286 
  2287 	if (!(type & EVP_PKT_SIGN))
  2288 		{
  2289 		SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
  2290 		al=SSL_AD_ILLEGAL_PARAMETER;
  2291 		goto f_err;
  2292 		}
  2293 
  2294 	if (s->s3->change_cipher_spec)
  2295 		{
  2296 		SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_CCS_RECEIVED_EARLY);
  2297 		al=SSL_AD_UNEXPECTED_MESSAGE;
  2298 		goto f_err;
  2299 		}
  2300 
  2301 	/* we now have a signature that we need to verify */
  2302 	p=(unsigned char *)s->init_msg;
  2303 	n2s(p,i);
  2304 	n-=2;
  2305 	if (i > n)
  2306 		{
  2307 		SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_LENGTH_MISMATCH);
  2308 		al=SSL_AD_DECODE_ERROR;
  2309 		goto f_err;
  2310 		}
  2311 
  2312 	j=EVP_PKEY_size(pkey);
  2313 	if ((i > j) || (n > j) || (n <= 0))
  2314 		{
  2315 		SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_WRONG_SIGNATURE_SIZE);
  2316 		al=SSL_AD_DECODE_ERROR;
  2317 		goto f_err;
  2318 		}
  2319 
  2320 #ifndef OPENSSL_NO_RSA 
  2321 	if (pkey->type == EVP_PKEY_RSA)
  2322 		{
  2323 		i=RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
  2324 			MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH, p, i, 
  2325 							pkey->pkey.rsa);
  2326 		if (i < 0)
  2327 			{
  2328 			al=SSL_AD_DECRYPT_ERROR;
  2329 			SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_DECRYPT);
  2330 			goto f_err;
  2331 			}
  2332 		if (i == 0)
  2333 			{
  2334 			al=SSL_AD_DECRYPT_ERROR;
  2335 			SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_SIGNATURE);
  2336 			goto f_err;
  2337 			}
  2338 		}
  2339 	else
  2340 #endif
  2341 #ifndef OPENSSL_NO_DSA
  2342 		if (pkey->type == EVP_PKEY_DSA)
  2343 		{
  2344 		j=DSA_verify(pkey->save_type,
  2345 			&(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
  2346 			SHA_DIGEST_LENGTH,p,i,pkey->pkey.dsa);
  2347 		if (j <= 0)
  2348 			{
  2349 			/* bad signature */
  2350 			al=SSL_AD_DECRYPT_ERROR;
  2351 			SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_DSA_SIGNATURE);
  2352 			goto f_err;
  2353 			}
  2354 		}
  2355 	else
  2356 #endif
  2357 #ifndef OPENSSL_NO_ECDSA
  2358 		if (pkey->type == EVP_PKEY_EC)
  2359 		{
  2360 		j=ECDSA_verify(pkey->save_type,
  2361 			&(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
  2362 			SHA_DIGEST_LENGTH,p,i,pkey->pkey.ec);
  2363 		if (j <= 0)
  2364 			{
  2365 			/* bad signature */
  2366 			al=SSL_AD_DECRYPT_ERROR;
  2367 			SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
  2368 			    SSL_R_BAD_ECDSA_SIGNATURE);
  2369 			goto f_err;
  2370 			}
  2371 		}
  2372 	else
  2373 #endif
  2374 		{
  2375 		SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,ERR_R_INTERNAL_ERROR);
  2376 		al=SSL_AD_UNSUPPORTED_CERTIFICATE;
  2377 		goto f_err;
  2378 		}
  2379 
  2380 
  2381 	ret=1;
  2382 	if (0)
  2383 		{
  2384 f_err:
  2385 		ssl3_send_alert(s,SSL3_AL_FATAL,al);
  2386 		}
  2387 end:
  2388 	EVP_PKEY_free(pkey);
  2389 	return(ret);
  2390 	}
  2391 
  2392 int ssl3_get_client_certificate(SSL *s)
  2393 	{
  2394 	int i,ok,al,ret= -1;
  2395 	X509 *x=NULL;
  2396 	unsigned long l,nc,llen,n;
  2397 	const unsigned char *p,*q;
  2398 	unsigned char *d;
  2399 	STACK_OF(X509) *sk=NULL;
  2400 
  2401 	n=s->method->ssl_get_message(s,
  2402 		SSL3_ST_SR_CERT_A,
  2403 		SSL3_ST_SR_CERT_B,
  2404 		-1,
  2405 		s->max_cert_list,
  2406 		&ok);
  2407 
  2408 	if (!ok) return((int)n);
  2409 
  2410 	if	(s->s3->tmp.message_type == SSL3_MT_CLIENT_KEY_EXCHANGE)
  2411 		{
  2412 		if (	(s->verify_mode & SSL_VERIFY_PEER) &&
  2413 			(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
  2414 			{
  2415 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
  2416 			al=SSL_AD_HANDSHAKE_FAILURE;
  2417 			goto f_err;
  2418 			}
  2419 		/* If tls asked for a client cert, the client must return a 0 list */
  2420 		if ((s->version > SSL3_VERSION) && s->s3->tmp.cert_request)
  2421 			{
  2422 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST);
  2423 			al=SSL_AD_UNEXPECTED_MESSAGE;
  2424 			goto f_err;
  2425 			}
  2426 		s->s3->tmp.reuse_message=1;
  2427 		return(1);
  2428 		}
  2429 
  2430 	if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
  2431 		{
  2432 		al=SSL_AD_UNEXPECTED_MESSAGE;
  2433 		SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_WRONG_MESSAGE_TYPE);
  2434 		goto f_err;
  2435 		}
  2436 	p=d=(unsigned char *)s->init_msg;
  2437 
  2438 	if ((sk=sk_X509_new_null()) == NULL)
  2439 		{
  2440 		SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
  2441 		goto err;
  2442 		}
  2443 
  2444 	n2l3(p,llen);
  2445 	if (llen+3 != n)
  2446 		{
  2447 		al=SSL_AD_DECODE_ERROR;
  2448 		SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_LENGTH_MISMATCH);
  2449 		goto f_err;
  2450 		}
  2451 	for (nc=0; nc<llen; )
  2452 		{
  2453 		n2l3(p,l);
  2454 		if ((l+nc+3) > llen)
  2455 			{
  2456 			al=SSL_AD_DECODE_ERROR;
  2457 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
  2458 			goto f_err;
  2459 			}
  2460 
  2461 		q=p;
  2462 		x=d2i_X509(NULL,&p,l);
  2463 		if (x == NULL)
  2464 			{
  2465 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_ASN1_LIB);
  2466 			goto err;
  2467 			}
  2468 		if (p != (q+l))
  2469 			{
  2470 			al=SSL_AD_DECODE_ERROR;
  2471 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
  2472 			goto f_err;
  2473 			}
  2474 		if (!sk_X509_push(sk,x))
  2475 			{
  2476 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
  2477 			goto err;
  2478 			}
  2479 		x=NULL;
  2480 		nc+=l+3;
  2481 		}
  2482 
  2483 	if (sk_X509_num(sk) <= 0)
  2484 		{
  2485 		/* TLS does not mind 0 certs returned */
  2486 		if (s->version == SSL3_VERSION)
  2487 			{
  2488 			al=SSL_AD_HANDSHAKE_FAILURE;
  2489 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATES_RETURNED);
  2490 			goto f_err;
  2491 			}
  2492 		/* Fail for TLS only if we required a certificate */
  2493 		else if ((s->verify_mode & SSL_VERIFY_PEER) &&
  2494 			 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
  2495 			{
  2496 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
  2497 			al=SSL_AD_HANDSHAKE_FAILURE;
  2498 			goto f_err;
  2499 			}
  2500 		}
  2501 	else
  2502 		{
  2503 		i=ssl_verify_cert_chain(s,sk);
  2504 		if (!i)
  2505 			{
  2506 			al=ssl_verify_alarm_type(s->verify_result);
  2507 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATE_RETURNED);
  2508 			goto f_err;
  2509 			}
  2510 		}
  2511 
  2512 	if (s->session->peer != NULL) /* This should not be needed */
  2513 		X509_free(s->session->peer);
  2514 	s->session->peer=sk_X509_shift(sk);
  2515 	s->session->verify_result = s->verify_result;
  2516 
  2517 	/* With the current implementation, sess_cert will always be NULL
  2518 	 * when we arrive here. */
  2519 	if (s->session->sess_cert == NULL)
  2520 		{
  2521 		s->session->sess_cert = ssl_sess_cert_new();
  2522 		if (s->session->sess_cert == NULL)
  2523 			{
  2524 			SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
  2525 			goto err;
  2526 			}
  2527 		}
  2528 	if (s->session->sess_cert->cert_chain != NULL)
  2529 		sk_X509_pop_free(s->session->sess_cert->cert_chain, X509_free);
  2530 	s->session->sess_cert->cert_chain=sk;
  2531 	/* Inconsistency alert: cert_chain does *not* include the
  2532 	 * peer's own certificate, while we do include it in s3_clnt.c */
  2533 
  2534 	sk=NULL;
  2535 
  2536 	ret=1;
  2537 	if (0)
  2538 		{
  2539 f_err:
  2540 		ssl3_send_alert(s,SSL3_AL_FATAL,al);
  2541 		}
  2542 err:
  2543 	if (x != NULL) X509_free(x);
  2544 	if (sk != NULL) sk_X509_pop_free(sk,X509_free);
  2545 	return(ret);
  2546 	}
  2547 
  2548 int ssl3_send_server_certificate(SSL *s)
  2549 	{
  2550 	unsigned long l;
  2551 	X509 *x;
  2552 
  2553 	if (s->state == SSL3_ST_SW_CERT_A)
  2554 		{
  2555 		x=ssl_get_server_send_cert(s);
  2556 		if (x == NULL &&
  2557                         /* VRS: allow null cert if auth == KRB5 */
  2558                         (s->s3->tmp.new_cipher->algorithms
  2559                                 & (SSL_MKEY_MASK|SSL_AUTH_MASK))
  2560                         != (SSL_aKRB5|SSL_kKRB5))
  2561 			{
  2562 			SSLerr(SSL_F_SSL3_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
  2563 			return(0);
  2564 			}
  2565 
  2566 		l=ssl3_output_cert_chain(s,x);
  2567 		s->state=SSL3_ST_SW_CERT_B;
  2568 		s->init_num=(int)l;
  2569 		s->init_off=0;
  2570 		}
  2571 
  2572 	/* SSL3_ST_SW_CERT_B */
  2573 	return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
  2574 	}
  2575 
  2576 
  2577 #ifndef OPENSSL_NO_ECDH
  2578 /* This is the complement of curve_id2nid in s3_clnt.c. */
  2579 static int nid2curve_id(int nid)
  2580 {
  2581 	/* ECC curves from draft-ietf-tls-ecc-01.txt (Mar 15, 2001)
  2582 	 * (no changes in draft-ietf-tls-ecc-03.txt [June 2003]) */
  2583 	switch (nid) {
  2584 	case NID_sect163k1: /* sect163k1 (1) */
  2585 		return 1;
  2586 	case NID_sect163r1: /* sect163r1 (2) */
  2587 		return 2;
  2588 	case NID_sect163r2: /* sect163r2 (3) */
  2589 		return 3;
  2590 	case NID_sect193r1: /* sect193r1 (4) */ 
  2591 		return 4;
  2592 	case NID_sect193r2: /* sect193r2 (5) */ 
  2593 		return 5;
  2594 	case NID_sect233k1: /* sect233k1 (6) */
  2595 		return 6;
  2596 	case NID_sect233r1: /* sect233r1 (7) */ 
  2597 		return 7;
  2598 	case NID_sect239k1: /* sect239k1 (8) */ 
  2599 		return 8;
  2600 	case NID_sect283k1: /* sect283k1 (9) */
  2601 		return 9;
  2602 	case NID_sect283r1: /* sect283r1 (10) */ 
  2603 		return 10;
  2604 	case NID_sect409k1: /* sect409k1 (11) */ 
  2605 		return 11;
  2606 	case NID_sect409r1: /* sect409r1 (12) */
  2607 		return 12;
  2608 	case NID_sect571k1: /* sect571k1 (13) */ 
  2609 		return 13;
  2610 	case NID_sect571r1: /* sect571r1 (14) */ 
  2611 		return 14;
  2612 	case NID_secp160k1: /* secp160k1 (15) */
  2613 		return 15;
  2614 	case NID_secp160r1: /* secp160r1 (16) */ 
  2615 		return 16;
  2616 	case NID_secp160r2: /* secp160r2 (17) */ 
  2617 		return 17;
  2618 	case NID_secp192k1: /* secp192k1 (18) */
  2619 		return 18;
  2620 	case NID_X9_62_prime192v1: /* secp192r1 (19) */ 
  2621 		return 19;
  2622 	case NID_secp224k1: /* secp224k1 (20) */ 
  2623 		return 20;
  2624 	case NID_secp224r1: /* secp224r1 (21) */
  2625 		return 21;
  2626 	case NID_secp256k1: /* secp256k1 (22) */ 
  2627 		return 22;
  2628 	case NID_X9_62_prime256v1: /* secp256r1 (23) */ 
  2629 		return 23;
  2630 	case NID_secp384r1: /* secp384r1 (24) */
  2631 		return 24;
  2632 	case NID_secp521r1:  /* secp521r1 (25) */	
  2633 		return 25;
  2634 	default:
  2635 		return 0;
  2636 	}
  2637 }
  2638 #endif