2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
58 /* ====================================================================
59 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
87 * 6. Redistributions of any form whatsoever must retain the following
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
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 * ====================================================================
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).
111 /* ====================================================================
112 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
114 * Portions of the attached software ("Contribution") are developed by
115 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
117 * The Contribution is licensed pursuant to the OpenSSL open source
118 * license provided above.
120 * ECC cipher suite support in OpenSSL originally written by
121 * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories.
124 /* ====================================================================
125 * Copyright 2005 Nokia. All rights reserved.
127 * The portions of the attached software ("Contribution") is developed by
128 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
131 * The Contribution, originally written by Mika Kousa and Pasi Eronen of
132 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
133 * support (see RFC 4279) to OpenSSL.
135 * No patent licenses or other rights except those expressly stated in
136 * the OpenSSL open source license shall be deemed granted or received
137 * expressly, by implication, estoppel, or otherwise.
139 * No assurances are provided by Nokia that the Contribution does not
140 * infringe the patent or other intellectual property rights of any third
141 * party or that the license provides you with all the necessary rights
142 * to make use of the Contribution.
144 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
145 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
146 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
147 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
152 #include <openssl/crypto.h>
153 #include "ssl_locl.h"
154 #include "kssl_lcl.h"
155 #include <openssl/buffer.h>
156 #include <openssl/rand.h>
157 #include <openssl/objects.h>
158 #include <openssl/evp.h>
159 #include <openssl/md5.h>
161 #include <openssl/fips.h>
163 #ifndef OPENSSL_NO_DH
164 #include <openssl/dh.h>
166 #include <openssl/bn.h>
167 #ifndef OPENSSL_NO_ENGINE
168 #include <openssl/engine.h>
171 static const SSL_METHOD *ssl3_get_client_method(int ver);
172 static int ca_dn_cmp(const X509_NAME * const *a,const X509_NAME * const *b);
174 static const SSL_METHOD *ssl3_get_client_method(int ver)
176 if (ver == SSL3_VERSION)
177 return(SSLv3_client_method());
182 IMPLEMENT_ssl3_meth_func(SSLv3_client_method,
183 ssl_undefined_function,
185 ssl3_get_client_method)
187 int ssl3_connect(SSL *s)
190 unsigned long Time=(unsigned long)time(NULL);
191 void (*cb)(const SSL *ssl,int type,int val)=NULL;
193 int new_state,state,skip=0;
195 RAND_add(&Time,sizeof(Time),0);
199 if (s->info_callback != NULL)
201 else if (s->ctx->info_callback != NULL)
202 cb=s->ctx->info_callback;
205 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
213 case SSL_ST_RENEGOTIATE:
215 s->state=SSL_ST_CONNECT;
216 s->ctx->stats.sess_connect_renegotiate++;
220 case SSL_ST_BEFORE|SSL_ST_CONNECT:
221 case SSL_ST_OK|SSL_ST_CONNECT:
224 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
226 if ((s->version & 0xff00 ) != 0x0300)
228 SSLerr(SSL_F_SSL3_CONNECT, ERR_R_INTERNAL_ERROR);
233 /* s->version=SSL3_VERSION; */
234 s->type=SSL_ST_CONNECT;
236 if (s->init_buf == NULL)
238 if ((buf=BUF_MEM_new()) == NULL)
243 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
252 if (!ssl3_setup_buffers(s)) { ret= -1; goto end; }
254 /* setup buffing BIO */
255 if (!ssl_init_wbio_buffer(s,0)) { ret= -1; goto end; }
257 /* don't push the buffering BIO quite yet */
259 ssl3_init_finished_mac(s);
261 s->state=SSL3_ST_CW_CLNT_HELLO_A;
262 s->ctx->stats.sess_connect++;
266 case SSL3_ST_CW_CLNT_HELLO_A:
267 case SSL3_ST_CW_CLNT_HELLO_B:
270 ret=ssl3_client_hello(s);
271 if (ret <= 0) goto end;
272 s->state=SSL3_ST_CR_SRVR_HELLO_A;
275 /* turn on buffering for the next lot of output */
276 if (s->bbio != s->wbio)
277 s->wbio=BIO_push(s->bbio,s->wbio);
281 case SSL3_ST_CR_SRVR_HELLO_A:
282 case SSL3_ST_CR_SRVR_HELLO_B:
283 ret=ssl3_get_server_hello(s);
284 if (ret <= 0) goto end;
288 s->state=SSL3_ST_CR_FINISHED_A;
289 #ifndef OPENSSL_NO_TLSEXT
290 if (s->tlsext_ticket_expected)
292 /* receive renewed session ticket */
293 s->state=SSL3_ST_CR_SESSION_TICKET_A;
298 s->state=SSL3_ST_CR_CERT_A;
302 case SSL3_ST_CR_CERT_A:
303 case SSL3_ST_CR_CERT_B:
304 #ifndef OPENSSL_NO_TLSEXT
305 ret=ssl3_check_finished(s);
306 if (ret <= 0) goto end;
310 if (s->tlsext_ticket_expected)
311 s->state=SSL3_ST_CR_SESSION_TICKET_A;
313 s->state=SSL3_ST_CR_FINISHED_A;
318 /* Check if it is anon DH/ECDH */
320 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
321 !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
323 ret=ssl3_get_server_certificate(s);
324 if (ret <= 0) goto end;
325 #ifndef OPENSSL_NO_TLSEXT
326 if (s->tlsext_status_expected)
327 s->state=SSL3_ST_CR_CERT_STATUS_A;
329 s->state=SSL3_ST_CR_KEY_EXCH_A;
334 s->state=SSL3_ST_CR_KEY_EXCH_A;
341 s->state=SSL3_ST_CR_KEY_EXCH_A;
346 case SSL3_ST_CR_KEY_EXCH_A:
347 case SSL3_ST_CR_KEY_EXCH_B:
348 ret=ssl3_get_key_exchange(s);
349 if (ret <= 0) goto end;
350 s->state=SSL3_ST_CR_CERT_REQ_A;
353 /* at this point we check that we have the
354 * required stuff from the server */
355 if (!ssl3_check_cert_and_algorithm(s))
362 case SSL3_ST_CR_CERT_REQ_A:
363 case SSL3_ST_CR_CERT_REQ_B:
364 ret=ssl3_get_certificate_request(s);
365 if (ret <= 0) goto end;
366 s->state=SSL3_ST_CR_SRVR_DONE_A;
370 case SSL3_ST_CR_SRVR_DONE_A:
371 case SSL3_ST_CR_SRVR_DONE_B:
372 ret=ssl3_get_server_done(s);
373 if (ret <= 0) goto end;
374 #ifndef OPENSSL_NO_SRP
375 if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP)
377 if ((ret = SRP_Calc_A_param(s))<=0)
379 SSLerr(SSL_F_SSL3_CONNECT,SSL_R_SRP_A_CALC);
380 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_INTERNAL_ERROR);
385 if (s->s3->tmp.cert_req)
386 s->state=SSL3_ST_CW_CERT_A;
388 s->state=SSL3_ST_CW_KEY_EXCH_A;
393 case SSL3_ST_CW_CERT_A:
394 case SSL3_ST_CW_CERT_B:
395 case SSL3_ST_CW_CERT_C:
396 case SSL3_ST_CW_CERT_D:
397 ret=ssl3_send_client_certificate(s);
398 if (ret <= 0) goto end;
399 s->state=SSL3_ST_CW_KEY_EXCH_A;
403 case SSL3_ST_CW_KEY_EXCH_A:
404 case SSL3_ST_CW_KEY_EXCH_B:
405 ret=ssl3_send_client_key_exchange(s);
406 if (ret <= 0) goto end;
407 /* EAY EAY EAY need to check for DH fix cert
409 /* For TLS, cert_req is set to 2, so a cert chain
410 * of nothing is sent, but no verify packet is sent */
411 /* XXX: For now, we do not support client
412 * authentication in ECDH cipher suites with
413 * ECDH (rather than ECDSA) certificates.
414 * We need to skip the certificate verify
415 * message when client's ECDH public key is sent
416 * inside the client certificate.
418 if (s->s3->tmp.cert_req == 1)
420 s->state=SSL3_ST_CW_CERT_VRFY_A;
424 s->state=SSL3_ST_CW_CHANGE_A;
425 s->s3->change_cipher_spec=0;
427 if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY)
429 s->state=SSL3_ST_CW_CHANGE_A;
430 s->s3->change_cipher_spec=0;
436 case SSL3_ST_CW_CERT_VRFY_A:
437 case SSL3_ST_CW_CERT_VRFY_B:
438 ret=ssl3_send_client_verify(s);
439 if (ret <= 0) goto end;
440 s->state=SSL3_ST_CW_CHANGE_A;
442 s->s3->change_cipher_spec=0;
445 case SSL3_ST_CW_CHANGE_A:
446 case SSL3_ST_CW_CHANGE_B:
447 ret=ssl3_send_change_cipher_spec(s,
448 SSL3_ST_CW_CHANGE_A,SSL3_ST_CW_CHANGE_B);
449 if (ret <= 0) goto end;
451 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
452 s->state=SSL3_ST_CW_FINISHED_A;
454 if (s->s3->next_proto_neg_seen)
455 s->state=SSL3_ST_CW_NEXT_PROTO_A;
457 s->state=SSL3_ST_CW_FINISHED_A;
461 s->session->cipher=s->s3->tmp.new_cipher;
462 #ifdef OPENSSL_NO_COMP
463 s->session->compress_meth=0;
465 if (s->s3->tmp.new_compression == NULL)
466 s->session->compress_meth=0;
468 s->session->compress_meth=
469 s->s3->tmp.new_compression->id;
471 if (!s->method->ssl3_enc->setup_key_block(s))
477 if (!s->method->ssl3_enc->change_cipher_state(s,
478 SSL3_CHANGE_CIPHER_CLIENT_WRITE))
486 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
487 case SSL3_ST_CW_NEXT_PROTO_A:
488 case SSL3_ST_CW_NEXT_PROTO_B:
489 ret=ssl3_send_next_proto(s);
490 if (ret <= 0) goto end;
491 s->state=SSL3_ST_CW_FINISHED_A;
495 case SSL3_ST_CW_FINISHED_A:
496 case SSL3_ST_CW_FINISHED_B:
497 ret=ssl3_send_finished(s,
498 SSL3_ST_CW_FINISHED_A,SSL3_ST_CW_FINISHED_B,
499 s->method->ssl3_enc->client_finished_label,
500 s->method->ssl3_enc->client_finished_label_len);
501 if (ret <= 0) goto end;
502 s->state=SSL3_ST_CW_FLUSH;
505 s->s3->flags&= ~SSL3_FLAGS_POP_BUFFER;
508 s->s3->tmp.next_state=SSL_ST_OK;
509 if (s->s3->flags & SSL3_FLAGS_DELAY_CLIENT_FINISHED)
512 s->s3->flags|=SSL3_FLAGS_POP_BUFFER;
513 s->s3->delay_buf_pop_ret=0;
518 #ifndef OPENSSL_NO_TLSEXT
519 /* Allow NewSessionTicket if ticket expected */
520 if (s->tlsext_ticket_expected)
521 s->s3->tmp.next_state=SSL3_ST_CR_SESSION_TICKET_A;
525 s->s3->tmp.next_state=SSL3_ST_CR_FINISHED_A;
530 #ifndef OPENSSL_NO_TLSEXT
531 case SSL3_ST_CR_SESSION_TICKET_A:
532 case SSL3_ST_CR_SESSION_TICKET_B:
533 ret=ssl3_get_new_session_ticket(s);
534 if (ret <= 0) goto end;
535 s->state=SSL3_ST_CR_FINISHED_A;
539 case SSL3_ST_CR_CERT_STATUS_A:
540 case SSL3_ST_CR_CERT_STATUS_B:
541 ret=ssl3_get_cert_status(s);
542 if (ret <= 0) goto end;
543 s->state=SSL3_ST_CR_KEY_EXCH_A;
548 case SSL3_ST_CR_FINISHED_A:
549 case SSL3_ST_CR_FINISHED_B:
551 ret=ssl3_get_finished(s,SSL3_ST_CR_FINISHED_A,
552 SSL3_ST_CR_FINISHED_B);
553 if (ret <= 0) goto end;
556 s->state=SSL3_ST_CW_CHANGE_A;
562 case SSL3_ST_CW_FLUSH:
563 s->rwstate=SSL_WRITING;
564 if (BIO_flush(s->wbio) <= 0)
569 s->rwstate=SSL_NOTHING;
570 s->state=s->s3->tmp.next_state;
574 /* clean a few things up */
575 ssl3_cleanup_key_block(s);
577 if (s->init_buf != NULL)
579 BUF_MEM_free(s->init_buf);
583 /* If we are not 'joining' the last two packets,
584 * remove the buffering now */
585 if (!(s->s3->flags & SSL3_FLAGS_POP_BUFFER))
586 ssl_free_wbio_buffer(s);
587 /* else do it later in ssl3_write */
593 ssl_update_cache(s,SSL_SESS_CACHE_CLIENT);
594 if (s->hit) s->ctx->stats.sess_hit++;
598 s->handshake_func=ssl3_connect;
599 s->ctx->stats.sess_connect_good++;
601 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
607 SSLerr(SSL_F_SSL3_CONNECT,SSL_R_UNKNOWN_STATE);
613 /* did we do anything */
614 if (!s->s3->tmp.reuse_message && !skip)
618 if ((ret=BIO_flush(s->wbio)) <= 0)
622 if ((cb != NULL) && (s->state != state))
626 cb(s,SSL_CB_CONNECT_LOOP,1);
637 cb(s,SSL_CB_CONNECT_EXIT,ret);
642 int ssl3_client_hello(SSL *s)
647 unsigned long Time,l;
648 #ifndef OPENSSL_NO_COMP
653 buf=(unsigned char *)s->init_buf->data;
654 if (s->state == SSL3_ST_CW_CLNT_HELLO_A)
656 SSL_SESSION *sess = s->session;
657 if ((sess == NULL) ||
658 (sess->ssl_version != s->version) ||
659 #ifdef OPENSSL_NO_TLSEXT
660 !sess->session_id_length ||
662 (!sess->session_id_length && !sess->tlsext_tick) ||
664 (sess->not_resumable))
666 if (!ssl_get_new_session(s,0))
669 /* else use the pre-loaded session */
671 p=s->s3->client_random;
672 Time=(unsigned long)time(NULL); /* Time */
674 if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0)
677 /* Do the message type and length last */
680 *(p++)=s->version>>8;
681 *(p++)=s->version&0xff;
682 s->client_version=s->version;
685 memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
692 i=s->session->session_id_length;
696 if (i > (int)sizeof(s->session->session_id))
698 SSLerr(SSL_F_SSL3_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
701 memcpy(p,s->session->session_id,i);
705 /* Ciphers supported */
706 i=ssl_cipher_list_to_bytes(s,SSL_get_ciphers(s),&(p[2]),0);
709 SSLerr(SSL_F_SSL3_CLIENT_HELLO,SSL_R_NO_CIPHERS_AVAILABLE);
716 #ifdef OPENSSL_NO_COMP
720 if ((s->options & SSL_OP_NO_COMPRESSION)
721 || !s->ctx->comp_methods)
724 j=sk_SSL_COMP_num(s->ctx->comp_methods);
728 comp=sk_SSL_COMP_value(s->ctx->comp_methods,i);
732 *(p++)=0; /* Add the NULL method */
734 #ifndef OPENSSL_NO_TLSEXT
736 if (ssl_prepare_clienthello_tlsext(s) <= 0)
738 SSLerr(SSL_F_SSL3_CLIENT_HELLO,SSL_R_CLIENTHELLO_TLSEXT);
741 if ((p = ssl_add_clienthello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
743 SSLerr(SSL_F_SSL3_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
750 *(d++)=SSL3_MT_CLIENT_HELLO;
753 s->state=SSL3_ST_CW_CLNT_HELLO_B;
754 /* number of bytes to write */
759 /* SSL3_ST_CW_CLNT_HELLO_B */
760 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
765 int ssl3_get_server_hello(SSL *s)
767 STACK_OF(SSL_CIPHER) *sk;
773 #ifndef OPENSSL_NO_COMP
777 n=s->method->ssl_get_message(s,
778 SSL3_ST_CR_SRVR_HELLO_A,
779 SSL3_ST_CR_SRVR_HELLO_B,
784 if (!ok) return((int)n);
786 if ( SSL_version(s) == DTLS1_VERSION || SSL_version(s) == DTLS1_BAD_VER)
788 if ( s->s3->tmp.message_type == DTLS1_MT_HELLO_VERIFY_REQUEST)
790 if ( s->d1->send_cookie == 0)
792 s->s3->tmp.reuse_message = 1;
795 else /* already sent a cookie */
797 al=SSL_AD_UNEXPECTED_MESSAGE;
798 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_BAD_MESSAGE_TYPE);
804 if ( s->s3->tmp.message_type != SSL3_MT_SERVER_HELLO)
806 al=SSL_AD_UNEXPECTED_MESSAGE;
807 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_BAD_MESSAGE_TYPE);
811 d=p=(unsigned char *)s->init_msg;
813 if ((p[0] != (s->version>>8)) || (p[1] != (s->version&0xff)))
815 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_WRONG_SSL_VERSION);
816 s->version=(s->version&0xff00)|p[1];
817 al=SSL_AD_PROTOCOL_VERSION;
822 /* load the server hello data */
823 /* load the server random */
824 memcpy(s->s3->server_random,p,SSL3_RANDOM_SIZE);
827 /* get the session-id */
830 if ((j > sizeof s->session->session_id) || (j > SSL3_SESSION_ID_SIZE))
832 al=SSL_AD_ILLEGAL_PARAMETER;
833 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_SSL3_SESSION_ID_TOO_LONG);
837 #ifndef OPENSSL_NO_TLSEXT
838 /* check if we want to resume the session based on external pre-shared secret */
839 if (s->version >= TLS1_VERSION && s->tls_session_secret_cb)
841 SSL_CIPHER *pref_cipher=NULL;
842 s->session->master_key_length=sizeof(s->session->master_key);
843 if (s->tls_session_secret_cb(s, s->session->master_key,
844 &s->session->master_key_length,
846 s->tls_session_secret_cb_arg))
848 s->session->cipher = pref_cipher ?
849 pref_cipher : ssl_get_cipher_by_char(s, p+j);
852 #endif /* OPENSSL_NO_TLSEXT */
854 if (j != 0 && j == s->session->session_id_length
855 && memcmp(p,s->session->session_id,j) == 0)
857 if(s->sid_ctx_length != s->session->sid_ctx_length
858 || memcmp(s->session->sid_ctx,s->sid_ctx,s->sid_ctx_length))
860 /* actually a client application bug */
861 al=SSL_AD_ILLEGAL_PARAMETER;
862 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
867 else /* a miss or crap from the other end */
869 /* If we were trying for session-id reuse, make a new
870 * SSL_SESSION so we don't stuff up other people */
872 if (s->session->session_id_length > 0)
874 if (!ssl_get_new_session(s,0))
876 al=SSL_AD_INTERNAL_ERROR;
880 s->session->session_id_length=j;
881 memcpy(s->session->session_id,p,j); /* j could be 0 */
884 c=ssl_get_cipher_by_char(s,p);
888 al=SSL_AD_ILLEGAL_PARAMETER;
889 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_UNKNOWN_CIPHER_RETURNED);
892 /* TLS v1.2 only ciphersuites require v1.2 or later */
893 if ((c->algorithm_ssl & SSL_TLSV1_2) &&
894 (TLS1_get_version(s) < TLS1_2_VERSION))
896 al=SSL_AD_ILLEGAL_PARAMETER;
897 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_WRONG_CIPHER_RETURNED);
900 p+=ssl_put_cipher_by_char(s,NULL,NULL);
902 sk=ssl_get_ciphers_by_id(s);
903 i=sk_SSL_CIPHER_find(sk,c);
906 /* we did not say we would use this cipher */
907 al=SSL_AD_ILLEGAL_PARAMETER;
908 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_WRONG_CIPHER_RETURNED);
912 /* Depending on the session caching (internal/external), the cipher
913 and/or cipher_id values may not be set. Make sure that
914 cipher_id is set and use it for comparison. */
915 if (s->session->cipher)
916 s->session->cipher_id = s->session->cipher->id;
917 if (s->hit && (s->session->cipher_id != c->id))
919 /* Workaround is now obsolete */
922 SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG))
925 al=SSL_AD_ILLEGAL_PARAMETER;
926 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED);
930 s->s3->tmp.new_cipher=c;
931 /* Don't digest cached records if TLS v1.2: we may need them for
932 * client authentication.
934 if (TLS1_get_version(s) < TLS1_2_VERSION && !ssl3_digest_cached_records(s))
936 /* lets get the compression algorithm */
938 #ifdef OPENSSL_NO_COMP
941 al=SSL_AD_ILLEGAL_PARAMETER;
942 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
945 /* If compression is disabled we'd better not try to resume a session
948 if (s->session->compress_meth != 0)
950 al=SSL_AD_INTERNAL_ERROR;
951 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
956 if (s->hit && j != s->session->compress_meth)
958 al=SSL_AD_ILLEGAL_PARAMETER;
959 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
964 else if (s->options & SSL_OP_NO_COMPRESSION)
966 al=SSL_AD_ILLEGAL_PARAMETER;
967 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_COMPRESSION_DISABLED);
971 comp=ssl3_comp_find(s->ctx->comp_methods,j);
973 if ((j != 0) && (comp == NULL))
975 al=SSL_AD_ILLEGAL_PARAMETER;
976 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
981 s->s3->tmp.new_compression=comp;
985 #ifndef OPENSSL_NO_TLSEXT
987 if (s->version >= SSL3_VERSION)
989 if (!ssl_parse_serverhello_tlsext(s,&p,d,n, &al))
991 /* 'al' set by ssl_parse_serverhello_tlsext */
992 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_PARSE_TLSEXT);
995 if (ssl_check_serverhello_tlsext(s) <= 0)
997 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_SERVERHELLO_TLSEXT);
1005 /* wrong packet length */
1006 al=SSL_AD_DECODE_ERROR;
1007 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_BAD_PACKET_LENGTH);
1013 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1018 int ssl3_get_server_certificate(SSL *s)
1020 int al,i,ok,ret= -1;
1021 unsigned long n,nc,llen,l;
1023 const unsigned char *q,*p;
1025 STACK_OF(X509) *sk=NULL;
1027 EVP_PKEY *pkey=NULL;
1028 int need_cert = 1; /* VRS: 0=> will allow null cert if auth == KRB5 */
1030 n=s->method->ssl_get_message(s,
1037 if (!ok) return((int)n);
1039 if ((s->s3->tmp.message_type == SSL3_MT_SERVER_KEY_EXCHANGE) ||
1040 ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5) &&
1041 (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE)))
1043 s->s3->tmp.reuse_message=1;
1047 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
1049 al=SSL_AD_UNEXPECTED_MESSAGE;
1050 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_BAD_MESSAGE_TYPE);
1053 p=d=(unsigned char *)s->init_msg;
1055 if ((sk=sk_X509_new_null()) == NULL)
1057 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,ERR_R_MALLOC_FAILURE);
1064 al=SSL_AD_DECODE_ERROR;
1065 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_LENGTH_MISMATCH);
1068 for (nc=0; nc<llen; )
1071 if ((l+nc+3) > llen)
1073 al=SSL_AD_DECODE_ERROR;
1074 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
1079 x=d2i_X509(NULL,&q,l);
1082 al=SSL_AD_BAD_CERTIFICATE;
1083 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,ERR_R_ASN1_LIB);
1088 al=SSL_AD_DECODE_ERROR;
1089 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
1092 if (!sk_X509_push(sk,x))
1094 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,ERR_R_MALLOC_FAILURE);
1102 i=ssl_verify_cert_chain(s,sk);
1103 if ((s->verify_mode != SSL_VERIFY_NONE) && (i <= 0)
1104 #ifndef OPENSSL_NO_KRB5
1105 && !((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5) &&
1106 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
1107 #endif /* OPENSSL_NO_KRB5 */
1110 al=ssl_verify_alarm_type(s->verify_result);
1111 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_CERTIFICATE_VERIFY_FAILED);
1114 ERR_clear_error(); /* but we keep s->verify_result */
1116 sc=ssl_sess_cert_new();
1117 if (sc == NULL) goto err;
1119 if (s->session->sess_cert) ssl_sess_cert_free(s->session->sess_cert);
1120 s->session->sess_cert=sc;
1123 /* Inconsistency alert: cert_chain does include the peer's
1124 * certificate, which we don't include in s3_srvr.c */
1125 x=sk_X509_value(sk,0);
1127 /* VRS 19990621: possible memory leak; sk=null ==> !sk_pop_free() @end*/
1129 pkey=X509_get_pubkey(x);
1131 /* VRS: allow null cert if auth == KRB5 */
1132 need_cert = ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5) &&
1133 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
1137 printf("pkey,x = %p, %p\n", pkey,x);
1138 printf("ssl_cert_type(x,pkey) = %d\n", ssl_cert_type(x,pkey));
1139 printf("cipher, alg, nc = %s, %lx, %lx, %d\n", s->s3->tmp.new_cipher->name,
1140 s->s3->tmp.new_cipher->algorithm_mkey, s->s3->tmp.new_cipher->algorithm_auth, need_cert);
1141 #endif /* KSSL_DEBUG */
1143 if (need_cert && ((pkey == NULL) || EVP_PKEY_missing_parameters(pkey)))
1147 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1148 SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1152 i=ssl_cert_type(x,pkey);
1153 if (need_cert && i < 0)
1157 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1158 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1164 sc->peer_cert_type=i;
1165 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
1166 /* Why would the following ever happen?
1167 * We just created sc a couple of lines ago. */
1168 if (sc->peer_pkeys[i].x509 != NULL)
1169 X509_free(sc->peer_pkeys[i].x509);
1170 sc->peer_pkeys[i].x509=x;
1171 sc->peer_key= &(sc->peer_pkeys[i]);
1173 if (s->session->peer != NULL)
1174 X509_free(s->session->peer);
1175 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
1180 sc->peer_cert_type=i;
1183 if (s->session->peer != NULL)
1184 X509_free(s->session->peer);
1185 s->session->peer=NULL;
1187 s->session->verify_result = s->verify_result;
1195 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1198 EVP_PKEY_free(pkey);
1200 sk_X509_pop_free(sk,X509_free);
1204 int ssl3_get_key_exchange(SSL *s)
1206 #ifndef OPENSSL_NO_RSA
1207 unsigned char *q,md_buf[EVP_MAX_MD_SIZE*2];
1210 unsigned char *param,*p;
1211 int al,i,j,param_len,ok;
1213 EVP_PKEY *pkey=NULL;
1214 const EVP_MD *md = NULL;
1215 #ifndef OPENSSL_NO_RSA
1218 #ifndef OPENSSL_NO_DH
1221 #ifndef OPENSSL_NO_ECDH
1222 EC_KEY *ecdh = NULL;
1223 BN_CTX *bn_ctx = NULL;
1224 EC_POINT *srvr_ecpoint = NULL;
1226 int encoded_pt_len = 0;
1229 /* use same message size as in ssl3_get_certificate_request()
1230 * as ServerKeyExchange message may be skipped */
1231 n=s->method->ssl_get_message(s,
1232 SSL3_ST_CR_KEY_EXCH_A,
1233 SSL3_ST_CR_KEY_EXCH_B,
1237 if (!ok) return((int)n);
1239 if (s->s3->tmp.message_type != SSL3_MT_SERVER_KEY_EXCHANGE)
1241 #ifndef OPENSSL_NO_PSK
1242 /* In plain PSK ciphersuite, ServerKeyExchange can be
1243 omitted if no identity hint is sent. Set
1244 session->sess_cert anyway to avoid problems
1246 if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)
1248 s->session->sess_cert=ssl_sess_cert_new();
1249 if (s->ctx->psk_identity_hint)
1250 OPENSSL_free(s->ctx->psk_identity_hint);
1251 s->ctx->psk_identity_hint = NULL;
1254 s->s3->tmp.reuse_message=1;
1258 param=p=(unsigned char *)s->init_msg;
1259 if (s->session->sess_cert != NULL)
1261 #ifndef OPENSSL_NO_RSA
1262 if (s->session->sess_cert->peer_rsa_tmp != NULL)
1264 RSA_free(s->session->sess_cert->peer_rsa_tmp);
1265 s->session->sess_cert->peer_rsa_tmp=NULL;
1268 #ifndef OPENSSL_NO_DH
1269 if (s->session->sess_cert->peer_dh_tmp)
1271 DH_free(s->session->sess_cert->peer_dh_tmp);
1272 s->session->sess_cert->peer_dh_tmp=NULL;
1275 #ifndef OPENSSL_NO_ECDH
1276 if (s->session->sess_cert->peer_ecdh_tmp)
1278 EC_KEY_free(s->session->sess_cert->peer_ecdh_tmp);
1279 s->session->sess_cert->peer_ecdh_tmp=NULL;
1285 s->session->sess_cert=ssl_sess_cert_new();
1289 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
1290 alg_a=s->s3->tmp.new_cipher->algorithm_auth;
1291 EVP_MD_CTX_init(&md_ctx);
1293 #ifndef OPENSSL_NO_PSK
1294 if (alg_k & SSL_kPSK)
1296 char tmp_id_hint[PSK_MAX_IDENTITY_LEN+1];
1298 al=SSL_AD_HANDSHAKE_FAILURE;
1301 /* Store PSK identity hint for later use, hint is used
1302 * in ssl3_send_client_key_exchange. Assume that the
1303 * maximum length of a PSK identity hint can be as
1304 * long as the maximum length of a PSK identity. */
1305 if (i > PSK_MAX_IDENTITY_LEN)
1307 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1308 SSL_R_DATA_LENGTH_TOO_LONG);
1313 al=SSL_AD_DECODE_ERROR;
1314 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1315 SSL_R_BAD_PSK_IDENTITY_HINT_LENGTH);
1318 /* If received PSK identity hint contains NULL
1319 * characters, the hint is truncated from the first
1320 * NULL. p may not be ending with NULL, so create a
1321 * NULL-terminated string. */
1322 memcpy(tmp_id_hint, p, i);
1323 memset(tmp_id_hint+i, 0, PSK_MAX_IDENTITY_LEN+1-i);
1324 if (s->ctx->psk_identity_hint != NULL)
1325 OPENSSL_free(s->ctx->psk_identity_hint);
1326 s->ctx->psk_identity_hint = BUF_strdup(tmp_id_hint);
1327 if (s->ctx->psk_identity_hint == NULL)
1329 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1337 #endif /* !OPENSSL_NO_PSK */
1338 #ifndef OPENSSL_NO_SRP
1339 if (alg_k & SSL_kSRP)
1345 al=SSL_AD_DECODE_ERROR;
1346 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_N_LENGTH);
1349 if (!(s->srp_ctx.N=BN_bin2bn(p,i,NULL)))
1351 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1360 al=SSL_AD_DECODE_ERROR;
1361 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_G_LENGTH);
1364 if (!(s->srp_ctx.g=BN_bin2bn(p,i,NULL)))
1366 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1371 i = (unsigned int)(p[0]);
1376 al=SSL_AD_DECODE_ERROR;
1377 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_S_LENGTH);
1380 if (!(s->srp_ctx.s=BN_bin2bn(p,i,NULL)))
1382 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1391 al=SSL_AD_DECODE_ERROR;
1392 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_B_LENGTH);
1395 if (!(s->srp_ctx.B=BN_bin2bn(p,i,NULL)))
1397 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1403 /* We must check if there is a certificate */
1404 #ifndef OPENSSL_NO_RSA
1405 if (alg_a & SSL_aRSA)
1406 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1411 #ifndef OPENSSL_NO_DSA
1412 else if (alg_a & SSL_aDSS)
1413 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_DSA_SIGN].x509);
1417 #endif /* !OPENSSL_NO_SRP */
1418 #ifndef OPENSSL_NO_RSA
1419 if (alg_k & SSL_kRSA)
1421 if ((rsa=RSA_new()) == NULL)
1423 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1430 al=SSL_AD_DECODE_ERROR;
1431 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_RSA_MODULUS_LENGTH);
1434 if (!(rsa->n=BN_bin2bn(p,i,rsa->n)))
1436 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1445 al=SSL_AD_DECODE_ERROR;
1446 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_RSA_E_LENGTH);
1449 if (!(rsa->e=BN_bin2bn(p,i,rsa->e)))
1451 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1457 /* this should be because we are using an export cipher */
1458 if (alg_a & SSL_aRSA)
1459 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1462 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
1465 s->session->sess_cert->peer_rsa_tmp=rsa;
1468 #else /* OPENSSL_NO_RSA */
1472 #ifndef OPENSSL_NO_DH
1473 else if (alg_k & SSL_kEDH)
1475 if ((dh=DH_new()) == NULL)
1477 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_DH_LIB);
1484 al=SSL_AD_DECODE_ERROR;
1485 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_DH_P_LENGTH);
1488 if (!(dh->p=BN_bin2bn(p,i,NULL)))
1490 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1499 al=SSL_AD_DECODE_ERROR;
1500 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_DH_G_LENGTH);
1503 if (!(dh->g=BN_bin2bn(p,i,NULL)))
1505 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1514 al=SSL_AD_DECODE_ERROR;
1515 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_DH_PUB_KEY_LENGTH);
1518 if (!(dh->pub_key=BN_bin2bn(p,i,NULL)))
1520 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1526 #ifndef OPENSSL_NO_RSA
1527 if (alg_a & SSL_aRSA)
1528 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1533 #ifndef OPENSSL_NO_DSA
1534 else if (alg_a & SSL_aDSS)
1535 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_DSA_SIGN].x509);
1537 /* else anonymous DH, so no certificate or pkey. */
1539 s->session->sess_cert->peer_dh_tmp=dh;
1542 else if ((alg_k & SSL_kDHr) || (alg_k & SSL_kDHd))
1544 al=SSL_AD_ILLEGAL_PARAMETER;
1545 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_TRIED_TO_USE_UNSUPPORTED_CIPHER);
1548 #endif /* !OPENSSL_NO_DH */
1550 #ifndef OPENSSL_NO_ECDH
1551 else if (alg_k & SSL_kEECDH)
1554 const EC_GROUP *group;
1556 if ((ecdh=EC_KEY_new()) == NULL)
1558 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1562 /* Extract elliptic curve parameters and the
1563 * server's ephemeral ECDH public key.
1564 * Keep accumulating lengths of various components in
1565 * param_len and make sure it never exceeds n.
1568 /* XXX: For now we only support named (not generic) curves
1569 * and the ECParameters in this case is just three bytes.
1572 if ((param_len > n) ||
1573 (*p != NAMED_CURVE_TYPE) ||
1574 ((curve_nid = tls1_ec_curve_id2nid(*(p + 2))) == 0))
1576 al=SSL_AD_INTERNAL_ERROR;
1577 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
1581 ngroup = EC_GROUP_new_by_curve_name(curve_nid);
1584 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_EC_LIB);
1587 if (EC_KEY_set_group(ecdh, ngroup) == 0)
1589 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_EC_LIB);
1592 EC_GROUP_free(ngroup);
1594 group = EC_KEY_get0_group(ecdh);
1596 if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1597 (EC_GROUP_get_degree(group) > 163))
1599 al=SSL_AD_EXPORT_RESTRICTION;
1600 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1606 /* Next, get the encoded ECPoint */
1607 if (((srvr_ecpoint = EC_POINT_new(group)) == NULL) ||
1608 ((bn_ctx = BN_CTX_new()) == NULL))
1610 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1614 encoded_pt_len = *p; /* length of encoded point */
1616 param_len += (1 + encoded_pt_len);
1617 if ((param_len > n) ||
1618 (EC_POINT_oct2point(group, srvr_ecpoint,
1619 p, encoded_pt_len, bn_ctx) == 0))
1621 al=SSL_AD_DECODE_ERROR;
1622 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_ECPOINT);
1629 /* The ECC/TLS specification does not mention
1630 * the use of DSA to sign ECParameters in the server
1631 * key exchange message. We do support RSA and ECDSA.
1634 #ifndef OPENSSL_NO_RSA
1635 else if (alg_a & SSL_aRSA)
1636 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1638 #ifndef OPENSSL_NO_ECDSA
1639 else if (alg_a & SSL_aECDSA)
1640 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_ECC].x509);
1642 /* else anonymous ECDH, so no certificate or pkey. */
1643 EC_KEY_set_public_key(ecdh, srvr_ecpoint);
1644 s->session->sess_cert->peer_ecdh_tmp=ecdh;
1646 BN_CTX_free(bn_ctx);
1648 EC_POINT_free(srvr_ecpoint);
1649 srvr_ecpoint = NULL;
1653 al=SSL_AD_UNEXPECTED_MESSAGE;
1654 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_UNEXPECTED_MESSAGE);
1657 #endif /* !OPENSSL_NO_ECDH */
1660 /* p points to the next byte, there are 'n' bytes left */
1662 /* if it was signed, check the signature */
1665 if (TLS1_get_version(s) >= TLS1_2_VERSION)
1667 int sigalg = tls12_get_sigid(pkey);
1668 /* Should never happen */
1671 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
1674 /* Check key type is consistent with signature */
1675 if (sigalg != (int)p[1])
1677 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_WRONG_SIGNATURE_TYPE);
1678 al=SSL_AD_DECODE_ERROR;
1681 md = tls12_get_hash(p[0]);
1684 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_UNKNOWN_DIGEST);
1685 al=SSL_AD_DECODE_ERROR;
1689 fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
1699 j=EVP_PKEY_size(pkey);
1701 if ((i != n) || (n > j) || (n <= 0))
1703 /* wrong packet length */
1704 al=SSL_AD_DECODE_ERROR;
1705 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_WRONG_SIGNATURE_LENGTH);
1709 #ifndef OPENSSL_NO_RSA
1710 if (pkey->type == EVP_PKEY_RSA && TLS1_get_version(s) < TLS1_2_VERSION)
1716 for (num=2; num > 0; num--)
1718 EVP_MD_CTX_set_flags(&md_ctx,
1719 EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
1720 EVP_DigestInit_ex(&md_ctx,(num == 2)
1721 ?s->ctx->md5:s->ctx->sha1, NULL);
1722 EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1723 EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1724 EVP_DigestUpdate(&md_ctx,param,param_len);
1725 EVP_DigestFinal_ex(&md_ctx,q,(unsigned int *)&i);
1729 i=RSA_verify(NID_md5_sha1, md_buf, j, p, n,
1733 al=SSL_AD_DECRYPT_ERROR;
1734 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_RSA_DECRYPT);
1740 al=SSL_AD_DECRYPT_ERROR;
1741 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SIGNATURE);
1748 EVP_VerifyInit_ex(&md_ctx, md, NULL);
1749 EVP_VerifyUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1750 EVP_VerifyUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1751 EVP_VerifyUpdate(&md_ctx,param,param_len);
1752 if (EVP_VerifyFinal(&md_ctx,p,(int)n,pkey) <= 0)
1755 al=SSL_AD_DECRYPT_ERROR;
1756 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SIGNATURE);
1763 if (!(alg_a & SSL_aNULL) && !(alg_k & SSL_kPSK))
1764 /* aNULL or kPSK do not need public keys */
1766 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
1769 /* still data left over */
1772 al=SSL_AD_DECODE_ERROR;
1773 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_EXTRA_DATA_IN_MESSAGE);
1777 EVP_PKEY_free(pkey);
1778 EVP_MD_CTX_cleanup(&md_ctx);
1781 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1783 EVP_PKEY_free(pkey);
1784 #ifndef OPENSSL_NO_RSA
1788 #ifndef OPENSSL_NO_DH
1792 #ifndef OPENSSL_NO_ECDH
1793 BN_CTX_free(bn_ctx);
1794 EC_POINT_free(srvr_ecpoint);
1798 EVP_MD_CTX_cleanup(&md_ctx);
1802 int ssl3_get_certificate_request(SSL *s)
1805 unsigned long n,nc,l;
1806 unsigned int llen, ctype_num,i;
1808 const unsigned char *p,*q;
1810 STACK_OF(X509_NAME) *ca_sk=NULL;
1812 n=s->method->ssl_get_message(s,
1813 SSL3_ST_CR_CERT_REQ_A,
1814 SSL3_ST_CR_CERT_REQ_B,
1819 if (!ok) return((int)n);
1821 s->s3->tmp.cert_req=0;
1823 if (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE)
1825 s->s3->tmp.reuse_message=1;
1826 /* If we get here we don't need any cached handshake records
1827 * as we wont be doing client auth.
1829 if (s->s3->handshake_buffer)
1831 if (!ssl3_digest_cached_records(s))
1837 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_REQUEST)
1839 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_UNEXPECTED_MESSAGE);
1840 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_WRONG_MESSAGE_TYPE);
1844 /* TLS does not like anon-DH with client cert */
1845 if (s->version > SSL3_VERSION)
1847 if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
1849 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_UNEXPECTED_MESSAGE);
1850 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_TLS_CLIENT_CERT_REQ_WITH_ANON_CIPHER);
1855 p=d=(unsigned char *)s->init_msg;
1857 if ((ca_sk=sk_X509_NAME_new(ca_dn_cmp)) == NULL)
1859 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,ERR_R_MALLOC_FAILURE);
1863 /* get the certificate types */
1865 if (ctype_num > SSL3_CT_NUMBER)
1866 ctype_num=SSL3_CT_NUMBER;
1867 for (i=0; i<ctype_num; i++)
1868 s->s3->tmp.ctype[i]= p[i];
1870 if (TLS1_get_version(s) >= TLS1_2_VERSION)
1873 /* Check we have enough room for signature algorithms and
1874 * following length value.
1876 if ((unsigned long)(p - d + llen + 2) > n)
1878 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
1879 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_DATA_LENGTH_TOO_LONG);
1882 if ((llen & 1) || !tls1_process_sigalgs(s, p, llen))
1884 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
1885 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_SIGNATURE_ALGORITHMS_ERROR);
1891 /* get the CA RDNs */
1896 out=fopen("/tmp/vsign.der","w");
1897 fwrite(p,1,llen,out);
1902 if ((unsigned long)(p - d + llen) != n)
1904 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
1905 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_LENGTH_MISMATCH);
1909 for (nc=0; nc<llen; )
1912 if ((l+nc+2) > llen)
1914 if ((s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
1915 goto cont; /* netscape bugs */
1916 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
1917 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_CA_DN_TOO_LONG);
1923 if ((xn=d2i_X509_NAME(NULL,&q,l)) == NULL)
1925 /* If netscape tolerance is on, ignore errors */
1926 if (s->options & SSL_OP_NETSCAPE_CA_DN_BUG)
1930 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
1931 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,ERR_R_ASN1_LIB);
1938 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
1939 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_CA_DN_LENGTH_MISMATCH);
1942 if (!sk_X509_NAME_push(ca_sk,xn))
1944 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,ERR_R_MALLOC_FAILURE);
1958 /* we should setup a certificate to return.... */
1959 s->s3->tmp.cert_req=1;
1960 s->s3->tmp.ctype_num=ctype_num;
1961 if (s->s3->tmp.ca_names != NULL)
1962 sk_X509_NAME_pop_free(s->s3->tmp.ca_names,X509_NAME_free);
1963 s->s3->tmp.ca_names=ca_sk;
1968 if (ca_sk != NULL) sk_X509_NAME_pop_free(ca_sk,X509_NAME_free);
1972 static int ca_dn_cmp(const X509_NAME * const *a, const X509_NAME * const *b)
1974 return(X509_NAME_cmp(*a,*b));
1976 #ifndef OPENSSL_NO_TLSEXT
1977 int ssl3_get_new_session_ticket(SSL *s)
1979 int ok,al,ret=0, ticklen;
1981 const unsigned char *p;
1984 n=s->method->ssl_get_message(s,
1985 SSL3_ST_CR_SESSION_TICKET_A,
1986 SSL3_ST_CR_SESSION_TICKET_B,
1994 if (s->s3->tmp.message_type == SSL3_MT_FINISHED)
1996 s->s3->tmp.reuse_message=1;
1999 if (s->s3->tmp.message_type != SSL3_MT_NEWSESSION_TICKET)
2001 al=SSL_AD_UNEXPECTED_MESSAGE;
2002 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,SSL_R_BAD_MESSAGE_TYPE);
2007 /* need at least ticket_lifetime_hint + ticket length */
2008 al = SSL_AD_DECODE_ERROR;
2009 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,SSL_R_LENGTH_MISMATCH);
2013 p=d=(unsigned char *)s->init_msg;
2014 n2l(p, s->session->tlsext_tick_lifetime_hint);
2016 /* ticket_lifetime_hint + ticket_length + ticket */
2017 if (ticklen + 6 != n)
2019 al = SSL_AD_DECODE_ERROR;
2020 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,SSL_R_LENGTH_MISMATCH);
2023 if (s->session->tlsext_tick)
2025 OPENSSL_free(s->session->tlsext_tick);
2026 s->session->tlsext_ticklen = 0;
2028 s->session->tlsext_tick = OPENSSL_malloc(ticklen);
2029 if (!s->session->tlsext_tick)
2031 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,ERR_R_MALLOC_FAILURE);
2034 memcpy(s->session->tlsext_tick, p, ticklen);
2035 s->session->tlsext_ticklen = ticklen;
2036 /* There are two ways to detect a resumed ticket sesion.
2037 * One is to set an appropriate session ID and then the server
2038 * must return a match in ServerHello. This allows the normal
2039 * client session ID matching to work and we know much
2040 * earlier that the ticket has been accepted.
2042 * The other way is to set zero length session ID when the
2043 * ticket is presented and rely on the handshake to determine
2044 * session resumption.
2046 * We choose the former approach because this fits in with
2047 * assumptions elsewhere in OpenSSL. The session ID is set
2048 * to the SHA256 (or SHA1 is SHA256 is disabled) hash of the
2051 EVP_Digest(p, ticklen,
2052 s->session->session_id, &s->session->session_id_length,
2053 #ifndef OPENSSL_NO_SHA256
2054 EVP_sha256(), NULL);
2061 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2066 int ssl3_get_cert_status(SSL *s)
2069 unsigned long resplen,n;
2070 const unsigned char *p;
2072 n=s->method->ssl_get_message(s,
2073 SSL3_ST_CR_CERT_STATUS_A,
2074 SSL3_ST_CR_CERT_STATUS_B,
2075 SSL3_MT_CERTIFICATE_STATUS,
2079 if (!ok) return((int)n);
2082 /* need at least status type + length */
2083 al = SSL_AD_DECODE_ERROR;
2084 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_LENGTH_MISMATCH);
2087 p = (unsigned char *)s->init_msg;
2088 if (*p++ != TLSEXT_STATUSTYPE_ocsp)
2090 al = SSL_AD_DECODE_ERROR;
2091 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_UNSUPPORTED_STATUS_TYPE);
2095 if (resplen + 4 != n)
2097 al = SSL_AD_DECODE_ERROR;
2098 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_LENGTH_MISMATCH);
2101 if (s->tlsext_ocsp_resp)
2102 OPENSSL_free(s->tlsext_ocsp_resp);
2103 s->tlsext_ocsp_resp = BUF_memdup(p, resplen);
2104 if (!s->tlsext_ocsp_resp)
2106 al = SSL_AD_INTERNAL_ERROR;
2107 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,ERR_R_MALLOC_FAILURE);
2110 s->tlsext_ocsp_resplen = resplen;
2111 if (s->ctx->tlsext_status_cb)
2114 ret = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
2117 al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
2118 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_INVALID_STATUS_RESPONSE);
2123 al = SSL_AD_INTERNAL_ERROR;
2124 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,ERR_R_MALLOC_FAILURE);
2130 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2135 int ssl3_get_server_done(SSL *s)
2140 n=s->method->ssl_get_message(s,
2141 SSL3_ST_CR_SRVR_DONE_A,
2142 SSL3_ST_CR_SRVR_DONE_B,
2143 SSL3_MT_SERVER_DONE,
2144 30, /* should be very small, like 0 :-) */
2147 if (!ok) return((int)n);
2150 /* should contain no data */
2151 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2152 SSLerr(SSL_F_SSL3_GET_SERVER_DONE,SSL_R_LENGTH_MISMATCH);
2160 int ssl3_send_client_key_exchange(SSL *s)
2162 unsigned char *p,*d;
2164 unsigned long alg_k;
2165 #ifndef OPENSSL_NO_RSA
2167 EVP_PKEY *pkey=NULL;
2169 #ifndef OPENSSL_NO_KRB5
2171 #endif /* OPENSSL_NO_KRB5 */
2172 #ifndef OPENSSL_NO_ECDH
2173 EC_KEY *clnt_ecdh = NULL;
2174 const EC_POINT *srvr_ecpoint = NULL;
2175 EVP_PKEY *srvr_pub_pkey = NULL;
2176 unsigned char *encodedPoint = NULL;
2177 int encoded_pt_len = 0;
2178 BN_CTX * bn_ctx = NULL;
2181 if (s->state == SSL3_ST_CW_KEY_EXCH_A)
2183 d=(unsigned char *)s->init_buf->data;
2186 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
2188 /* Fool emacs indentation */
2190 #ifndef OPENSSL_NO_RSA
2191 else if (alg_k & SSL_kRSA)
2194 unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH];
2196 if (s->session->sess_cert->peer_rsa_tmp != NULL)
2197 rsa=s->session->sess_cert->peer_rsa_tmp;
2200 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
2201 if ((pkey == NULL) ||
2202 (pkey->type != EVP_PKEY_RSA) ||
2203 (pkey->pkey.rsa == NULL))
2205 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2209 EVP_PKEY_free(pkey);
2212 tmp_buf[0]=s->client_version>>8;
2213 tmp_buf[1]=s->client_version&0xff;
2214 if (RAND_bytes(&(tmp_buf[2]),sizeof tmp_buf-2) <= 0)
2217 s->session->master_key_length=sizeof tmp_buf;
2220 /* Fix buf for TLS and beyond */
2221 if (s->version > SSL3_VERSION)
2223 n=RSA_public_encrypt(sizeof tmp_buf,
2224 tmp_buf,p,rsa,RSA_PKCS1_PADDING);
2226 if (s->options & SSL_OP_PKCS1_CHECK_1) p[1]++;
2227 if (s->options & SSL_OP_PKCS1_CHECK_2) tmp_buf[0]=0x70;
2231 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_BAD_RSA_ENCRYPT);
2235 /* Fix buf for TLS and beyond */
2236 if (s->version > SSL3_VERSION)
2242 s->session->master_key_length=
2243 s->method->ssl3_enc->generate_master_secret(s,
2244 s->session->master_key,
2245 tmp_buf,sizeof tmp_buf);
2246 OPENSSL_cleanse(tmp_buf,sizeof tmp_buf);
2249 #ifndef OPENSSL_NO_KRB5
2250 else if (alg_k & SSL_kKRB5)
2252 krb5_error_code krb5rc;
2253 KSSL_CTX *kssl_ctx = s->kssl_ctx;
2254 /* krb5_data krb5_ap_req; */
2255 krb5_data *enc_ticket;
2256 krb5_data authenticator, *authp = NULL;
2257 EVP_CIPHER_CTX ciph_ctx;
2258 const EVP_CIPHER *enc = NULL;
2259 unsigned char iv[EVP_MAX_IV_LENGTH];
2260 unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH];
2261 unsigned char epms[SSL_MAX_MASTER_KEY_LENGTH
2262 + EVP_MAX_IV_LENGTH];
2263 int padl, outl = sizeof(epms);
2265 EVP_CIPHER_CTX_init(&ciph_ctx);
2268 printf("ssl3_send_client_key_exchange(%lx & %lx)\n",
2270 #endif /* KSSL_DEBUG */
2274 if (KRB5SENDAUTH) authp = &authenticator;
2275 #endif /* KRB5SENDAUTH */
2277 krb5rc = kssl_cget_tkt(kssl_ctx, &enc_ticket, authp,
2279 enc = kssl_map_enc(kssl_ctx->enctype);
2284 printf("kssl_cget_tkt rtn %d\n", krb5rc);
2285 if (krb5rc && kssl_err.text)
2286 printf("kssl_cget_tkt kssl_err=%s\n", kssl_err.text);
2288 #endif /* KSSL_DEBUG */
2292 ssl3_send_alert(s,SSL3_AL_FATAL,
2293 SSL_AD_HANDSHAKE_FAILURE);
2294 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2299 /* 20010406 VRS - Earlier versions used KRB5 AP_REQ
2300 ** in place of RFC 2712 KerberosWrapper, as in:
2302 ** Send ticket (copy to *p, set n = length)
2303 ** n = krb5_ap_req.length;
2304 ** memcpy(p, krb5_ap_req.data, krb5_ap_req.length);
2305 ** if (krb5_ap_req.data)
2306 ** kssl_krb5_free_data_contents(NULL,&krb5_ap_req);
2308 ** Now using real RFC 2712 KerberosWrapper
2309 ** (Thanks to Simon Wilkinson <sxw@sxw.org.uk>)
2310 ** Note: 2712 "opaque" types are here replaced
2311 ** with a 2-byte length followed by the value.
2313 ** KerberosWrapper= xx xx asn1ticket 0 0 xx xx encpms
2314 ** Where "xx xx" = length bytes. Shown here with
2315 ** optional authenticator omitted.
2318 /* KerberosWrapper.Ticket */
2319 s2n(enc_ticket->length,p);
2320 memcpy(p, enc_ticket->data, enc_ticket->length);
2321 p+= enc_ticket->length;
2322 n = enc_ticket->length + 2;
2324 /* KerberosWrapper.Authenticator */
2325 if (authp && authp->length)
2327 s2n(authp->length,p);
2328 memcpy(p, authp->data, authp->length);
2330 n+= authp->length + 2;
2338 s2n(0,p);/* null authenticator length */
2342 tmp_buf[0]=s->client_version>>8;
2343 tmp_buf[1]=s->client_version&0xff;
2344 if (RAND_bytes(&(tmp_buf[2]),sizeof tmp_buf-2) <= 0)
2347 /* 20010420 VRS. Tried it this way; failed.
2348 ** EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,NULL);
2349 ** EVP_CIPHER_CTX_set_key_length(&ciph_ctx,
2350 ** kssl_ctx->length);
2351 ** EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
2354 memset(iv, 0, sizeof iv); /* per RFC 1510 */
2355 EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,
2357 EVP_EncryptUpdate(&ciph_ctx,epms,&outl,tmp_buf,
2359 EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl);
2361 if (outl > (int)sizeof epms)
2363 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2366 EVP_CIPHER_CTX_cleanup(&ciph_ctx);
2368 /* KerberosWrapper.EncryptedPreMasterSecret */
2370 memcpy(p, epms, outl);
2374 s->session->master_key_length=
2375 s->method->ssl3_enc->generate_master_secret(s,
2376 s->session->master_key,
2377 tmp_buf, sizeof tmp_buf);
2379 OPENSSL_cleanse(tmp_buf, sizeof tmp_buf);
2380 OPENSSL_cleanse(epms, outl);
2383 #ifndef OPENSSL_NO_DH
2384 else if (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
2386 DH *dh_srvr,*dh_clnt;
2388 if (s->session->sess_cert == NULL)
2390 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_UNEXPECTED_MESSAGE);
2391 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_UNEXPECTED_MESSAGE);
2395 if (s->session->sess_cert->peer_dh_tmp != NULL)
2396 dh_srvr=s->session->sess_cert->peer_dh_tmp;
2399 /* we get them from the cert */
2400 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_HANDSHAKE_FAILURE);
2401 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_UNABLE_TO_FIND_DH_PARAMETERS);
2405 /* generate a new random key */
2406 if ((dh_clnt=DHparams_dup(dh_srvr)) == NULL)
2408 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2411 if (!DH_generate_key(dh_clnt))
2413 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2418 /* use the 'p' output buffer for the DH key, but
2419 * make sure to clear it out afterwards */
2421 n=DH_compute_key(p,dh_srvr->pub_key,dh_clnt);
2425 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2430 /* generate master key from the result */
2431 s->session->master_key_length=
2432 s->method->ssl3_enc->generate_master_secret(s,
2433 s->session->master_key,p,n);
2437 /* send off the data */
2438 n=BN_num_bytes(dh_clnt->pub_key);
2440 BN_bn2bin(dh_clnt->pub_key,p);
2445 /* perhaps clean things up a bit EAY EAY EAY EAY*/
2449 #ifndef OPENSSL_NO_ECDH
2450 else if (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe))
2452 const EC_GROUP *srvr_group = NULL;
2454 int ecdh_clnt_cert = 0;
2457 /* Did we send out the client's
2458 * ECDH share for use in premaster
2459 * computation as part of client certificate?
2460 * If so, set ecdh_clnt_cert to 1.
2462 if ((alg_k & (SSL_kECDHr|SSL_kECDHe)) && (s->cert != NULL))
2464 /* XXX: For now, we do not support client
2465 * authentication using ECDH certificates.
2466 * To add such support, one needs to add
2467 * code that checks for appropriate
2468 * conditions and sets ecdh_clnt_cert to 1.
2469 * For example, the cert have an ECC
2470 * key on the same curve as the server's
2471 * and the key should be authorized for
2474 * One also needs to add code in ssl3_connect
2475 * to skip sending the certificate verify
2478 * if ((s->cert->key->privatekey != NULL) &&
2479 * (s->cert->key->privatekey->type ==
2480 * EVP_PKEY_EC) && ...)
2481 * ecdh_clnt_cert = 1;
2485 if (s->session->sess_cert->peer_ecdh_tmp != NULL)
2487 tkey = s->session->sess_cert->peer_ecdh_tmp;
2491 /* Get the Server Public Key from Cert */
2492 srvr_pub_pkey = X509_get_pubkey(s->session-> \
2493 sess_cert->peer_pkeys[SSL_PKEY_ECC].x509);
2494 if ((srvr_pub_pkey == NULL) ||
2495 (srvr_pub_pkey->type != EVP_PKEY_EC) ||
2496 (srvr_pub_pkey->pkey.ec == NULL))
2498 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2499 ERR_R_INTERNAL_ERROR);
2503 tkey = srvr_pub_pkey->pkey.ec;
2506 srvr_group = EC_KEY_get0_group(tkey);
2507 srvr_ecpoint = EC_KEY_get0_public_key(tkey);
2509 if ((srvr_group == NULL) || (srvr_ecpoint == NULL))
2511 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2512 ERR_R_INTERNAL_ERROR);
2516 if ((clnt_ecdh=EC_KEY_new()) == NULL)
2518 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
2522 if (!EC_KEY_set_group(clnt_ecdh, srvr_group))
2524 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_EC_LIB);
2529 /* Reuse key info from our certificate
2530 * We only need our private key to perform
2531 * the ECDH computation.
2533 const BIGNUM *priv_key;
2534 tkey = s->cert->key->privatekey->pkey.ec;
2535 priv_key = EC_KEY_get0_private_key(tkey);
2536 if (priv_key == NULL)
2538 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
2541 if (!EC_KEY_set_private_key(clnt_ecdh, priv_key))
2543 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_EC_LIB);
2549 /* Generate a new ECDH key pair */
2550 if (!(EC_KEY_generate_key(clnt_ecdh)))
2552 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2557 /* use the 'p' output buffer for the ECDH key, but
2558 * make sure to clear it out afterwards
2561 field_size = EC_GROUP_get_degree(srvr_group);
2562 if (field_size <= 0)
2564 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2568 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL);
2571 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2576 /* generate master key from the result */
2577 s->session->master_key_length = s->method->ssl3_enc \
2578 -> generate_master_secret(s,
2579 s->session->master_key,
2582 memset(p, 0, n); /* clean up */
2586 /* Send empty client key exch message */
2591 /* First check the size of encoding and
2592 * allocate memory accordingly.
2595 EC_POINT_point2oct(srvr_group,
2596 EC_KEY_get0_public_key(clnt_ecdh),
2597 POINT_CONVERSION_UNCOMPRESSED,
2600 encodedPoint = (unsigned char *)
2601 OPENSSL_malloc(encoded_pt_len *
2602 sizeof(unsigned char));
2603 bn_ctx = BN_CTX_new();
2604 if ((encodedPoint == NULL) ||
2607 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
2611 /* Encode the public key */
2612 n = EC_POINT_point2oct(srvr_group,
2613 EC_KEY_get0_public_key(clnt_ecdh),
2614 POINT_CONVERSION_UNCOMPRESSED,
2615 encodedPoint, encoded_pt_len, bn_ctx);
2617 *p = n; /* length of encoded point */
2618 /* Encoded point will be copied here */
2620 /* copy the point */
2621 memcpy((unsigned char *)p, encodedPoint, n);
2622 /* increment n to account for length field */
2626 /* Free allocated memory */
2627 BN_CTX_free(bn_ctx);
2628 if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
2629 if (clnt_ecdh != NULL)
2630 EC_KEY_free(clnt_ecdh);
2631 EVP_PKEY_free(srvr_pub_pkey);
2633 #endif /* !OPENSSL_NO_ECDH */
2634 else if (alg_k & SSL_kGOST)
2636 /* GOST key exchange message creation */
2637 EVP_PKEY_CTX *pkey_ctx;
2640 unsigned int md_len;
2642 unsigned char premaster_secret[32],shared_ukm[32], tmp[256];
2643 EVP_MD_CTX *ukm_hash;
2646 /* Get server sertificate PKEY and create ctx from it */
2647 peer_cert=s->session->sess_cert->peer_pkeys[(keytype=SSL_PKEY_GOST01)].x509;
2649 peer_cert=s->session->sess_cert->peer_pkeys[(keytype=SSL_PKEY_GOST94)].x509;
2651 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
2655 pkey_ctx=EVP_PKEY_CTX_new(pub_key=X509_get_pubkey(peer_cert),NULL);
2656 /* If we have send a certificate, and certificate key
2658 * parameters match those of server certificate, use
2659 * certificate key for key exchange
2662 /* Otherwise, generate ephemeral key pair */
2664 EVP_PKEY_encrypt_init(pkey_ctx);
2665 /* Generate session key */
2666 RAND_bytes(premaster_secret,32);
2667 /* If we have client certificate, use its secret as peer key */
2668 if (s->s3->tmp.cert_req && s->cert->key->privatekey) {
2669 if (EVP_PKEY_derive_set_peer(pkey_ctx,s->cert->key->privatekey) <=0) {
2670 /* If there was an error - just ignore it. Ephemeral key
2676 /* Compute shared IV and store it in algorithm-specific
2678 ukm_hash = EVP_MD_CTX_create();
2679 EVP_DigestInit(ukm_hash,EVP_get_digestbynid(NID_id_GostR3411_94));
2680 EVP_DigestUpdate(ukm_hash,s->s3->client_random,SSL3_RANDOM_SIZE);
2681 EVP_DigestUpdate(ukm_hash,s->s3->server_random,SSL3_RANDOM_SIZE);
2682 EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len);
2683 EVP_MD_CTX_destroy(ukm_hash);
2684 if (EVP_PKEY_CTX_ctrl(pkey_ctx,-1,EVP_PKEY_OP_ENCRYPT,EVP_PKEY_CTRL_SET_IV,
2686 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2690 /* Make GOST keytransport blob message */
2691 /*Encapsulate it into sequence */
2692 *(p++)=V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED;
2694 if (EVP_PKEY_encrypt(pkey_ctx,tmp,&msglen,premaster_secret,32)<0) {
2695 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2702 *(p++)= msglen & 0xff;
2707 *(p++)= msglen & 0xff;
2710 memcpy(p, tmp, msglen);
2711 /* Check if pubkey from client certificate was used */
2712 if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2714 /* Set flag "skip certificate verify" */
2715 s->s3->flags |= TLS1_FLAGS_SKIP_CERT_VERIFY;
2717 EVP_PKEY_CTX_free(pkey_ctx);
2718 s->session->master_key_length=
2719 s->method->ssl3_enc->generate_master_secret(s,
2720 s->session->master_key,premaster_secret,32);
2721 EVP_PKEY_free(pub_key);
2724 #ifndef OPENSSL_NO_SRP
2725 else if (alg_k & SSL_kSRP)
2727 if (s->srp_ctx.A != NULL)
2729 /* send off the data */
2730 n=BN_num_bytes(s->srp_ctx.A);
2732 BN_bn2bin(s->srp_ctx.A,p);
2737 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2740 if (s->session->srp_username != NULL)
2741 OPENSSL_free(s->session->srp_username);
2742 s->session->srp_username = BUF_strdup(s->srp_ctx.login);
2743 if (s->session->srp_username == NULL)
2745 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2746 ERR_R_MALLOC_FAILURE);
2750 if ((s->session->master_key_length = SRP_generate_client_master_secret(s,s->session->master_key))<0)
2752 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2757 #ifndef OPENSSL_NO_PSK
2758 else if (alg_k & SSL_kPSK)
2760 char identity[PSK_MAX_IDENTITY_LEN];
2761 unsigned char *t = NULL;
2762 unsigned char psk_or_pre_ms[PSK_MAX_PSK_LEN*2+4];
2763 unsigned int pre_ms_len = 0, psk_len = 0;
2767 if (s->psk_client_callback == NULL)
2769 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2770 SSL_R_PSK_NO_CLIENT_CB);
2774 psk_len = s->psk_client_callback(s, s->ctx->psk_identity_hint,
2775 identity, PSK_MAX_IDENTITY_LEN,
2776 psk_or_pre_ms, sizeof(psk_or_pre_ms));
2777 if (psk_len > PSK_MAX_PSK_LEN)
2779 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2780 ERR_R_INTERNAL_ERROR);
2783 else if (psk_len == 0)
2785 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2786 SSL_R_PSK_IDENTITY_NOT_FOUND);
2790 /* create PSK pre_master_secret */
2791 pre_ms_len = 2+psk_len+2+psk_len;
2793 memmove(psk_or_pre_ms+psk_len+4, psk_or_pre_ms, psk_len);
2795 memset(t, 0, psk_len);
2799 if (s->session->psk_identity_hint != NULL)
2800 OPENSSL_free(s->session->psk_identity_hint);
2801 s->session->psk_identity_hint = BUF_strdup(s->ctx->psk_identity_hint);
2802 if (s->ctx->psk_identity_hint != NULL &&
2803 s->session->psk_identity_hint == NULL)
2805 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2806 ERR_R_MALLOC_FAILURE);
2810 if (s->session->psk_identity != NULL)
2811 OPENSSL_free(s->session->psk_identity);
2812 s->session->psk_identity = BUF_strdup(identity);
2813 if (s->session->psk_identity == NULL)
2815 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2816 ERR_R_MALLOC_FAILURE);
2820 s->session->master_key_length =
2821 s->method->ssl3_enc->generate_master_secret(s,
2822 s->session->master_key,
2823 psk_or_pre_ms, pre_ms_len);
2824 n = strlen(identity);
2826 memcpy(p, identity, n);
2830 OPENSSL_cleanse(identity, PSK_MAX_IDENTITY_LEN);
2831 OPENSSL_cleanse(psk_or_pre_ms, sizeof(psk_or_pre_ms));
2834 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
2841 ssl3_send_alert(s, SSL3_AL_FATAL,
2842 SSL_AD_HANDSHAKE_FAILURE);
2843 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2844 ERR_R_INTERNAL_ERROR);
2848 *(d++)=SSL3_MT_CLIENT_KEY_EXCHANGE;
2851 s->state=SSL3_ST_CW_KEY_EXCH_B;
2852 /* number of bytes to write */
2857 /* SSL3_ST_CW_KEY_EXCH_B */
2858 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
2860 #ifndef OPENSSL_NO_ECDH
2861 BN_CTX_free(bn_ctx);
2862 if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
2863 if (clnt_ecdh != NULL)
2864 EC_KEY_free(clnt_ecdh);
2865 EVP_PKEY_free(srvr_pub_pkey);
2870 int ssl3_send_client_verify(SSL *s)
2872 unsigned char *p,*d;
2873 unsigned char data[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
2875 EVP_PKEY_CTX *pctx=NULL;
2881 EVP_MD_CTX_init(&mctx);
2883 if (s->state == SSL3_ST_CW_CERT_VRFY_A)
2885 d=(unsigned char *)s->init_buf->data;
2887 pkey=s->cert->key->privatekey;
2888 /* Create context from key and test if sha1 is allowed as digest */
2889 pctx = EVP_PKEY_CTX_new(pkey,NULL);
2890 EVP_PKEY_sign_init(pctx);
2891 if (EVP_PKEY_CTX_set_signature_md(pctx, EVP_sha1())>0)
2893 if (TLS1_get_version(s) < TLS1_2_VERSION)
2894 s->method->ssl3_enc->cert_verify_mac(s,
2896 &(data[MD5_DIGEST_LENGTH]));
2902 /* For TLS v1.2 send signature algorithm and signature
2903 * using agreed digest and cached handshake records.
2905 if (TLS1_get_version(s) >= TLS1_2_VERSION)
2909 const EVP_MD *md = s->cert->key->digest;
2910 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer,
2912 if (hdatalen <= 0 || !tls12_get_sigandhash(p, pkey, md))
2914 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY,
2915 ERR_R_INTERNAL_ERROR);
2920 fprintf(stderr, "Using TLS 1.2 with client alg %s\n",
2923 if (!EVP_SignInit_ex(&mctx, md, NULL)
2924 || !EVP_SignUpdate(&mctx, hdata, hdatalen)
2925 || !EVP_SignFinal(&mctx, p + 2, &u, pkey))
2927 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY,
2933 if (!ssl3_digest_cached_records(s))
2937 #ifndef OPENSSL_NO_RSA
2938 if (pkey->type == EVP_PKEY_RSA)
2940 s->method->ssl3_enc->cert_verify_mac(s,
2943 if (RSA_sign(NID_md5_sha1, data,
2944 MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH,
2945 &(p[2]), &u, pkey->pkey.rsa) <= 0 )
2947 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY,ERR_R_RSA_LIB);
2955 #ifndef OPENSSL_NO_DSA
2956 if (pkey->type == EVP_PKEY_DSA)
2958 if (!DSA_sign(pkey->save_type,
2959 &(data[MD5_DIGEST_LENGTH]),
2960 SHA_DIGEST_LENGTH,&(p[2]),
2961 (unsigned int *)&j,pkey->pkey.dsa))
2963 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY,ERR_R_DSA_LIB);
2971 #ifndef OPENSSL_NO_ECDSA
2972 if (pkey->type == EVP_PKEY_EC)
2974 if (!ECDSA_sign(pkey->save_type,
2975 &(data[MD5_DIGEST_LENGTH]),
2976 SHA_DIGEST_LENGTH,&(p[2]),
2977 (unsigned int *)&j,pkey->pkey.ec))
2979 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY,
2988 if (pkey->type == NID_id_GostR3410_94 || pkey->type == NID_id_GostR3410_2001)
2990 unsigned char signbuf[64];
2993 s->method->ssl3_enc->cert_verify_mac(s,
2994 NID_id_GostR3411_94,
2996 if (EVP_PKEY_sign(pctx, signbuf, &sigsize, data, 32) <= 0) {
2997 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY,
2998 ERR_R_INTERNAL_ERROR);
3001 for (i=63,j=0; i>=0; j++, i--) {
3009 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY,ERR_R_INTERNAL_ERROR);
3012 *(d++)=SSL3_MT_CERTIFICATE_VERIFY;
3015 s->state=SSL3_ST_CW_CERT_VRFY_B;
3016 s->init_num=(int)n+4;
3019 EVP_MD_CTX_cleanup(&mctx);
3020 EVP_PKEY_CTX_free(pctx);
3021 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3023 EVP_MD_CTX_cleanup(&mctx);
3024 EVP_PKEY_CTX_free(pctx);
3028 int ssl3_send_client_certificate(SSL *s)
3031 EVP_PKEY *pkey=NULL;
3035 if (s->state == SSL3_ST_CW_CERT_A)
3037 if ((s->cert == NULL) ||
3038 (s->cert->key->x509 == NULL) ||