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 "ssl_locl.h"
153 #include "kssl_lcl.h"
154 #include <openssl/buffer.h>
155 #include <openssl/rand.h>
156 #include <openssl/objects.h>
157 #include <openssl/evp.h>
158 #include <openssl/md5.h>
160 #include <openssl/fips.h>
162 #ifndef OPENSSL_NO_DH
163 #include <openssl/dh.h>
165 #include <openssl/bn.h>
166 #ifndef OPENSSL_NO_ENGINE
167 #include <openssl/engine.h>
170 static const SSL_METHOD *ssl3_get_client_method(int ver);
171 static int ca_dn_cmp(const X509_NAME * const *a,const X509_NAME * const *b);
173 static const SSL_METHOD *ssl3_get_client_method(int ver)
175 if (ver == SSL3_VERSION)
176 return(SSLv3_client_method());
181 IMPLEMENT_ssl3_meth_func(SSLv3_client_method,
182 ssl_undefined_function,
184 ssl3_get_client_method)
186 int ssl3_connect(SSL *s)
189 unsigned long Time=(unsigned long)time(NULL);
190 void (*cb)(const SSL *ssl,int type,int val)=NULL;
192 int new_state,state,skip=0;
194 RAND_add(&Time,sizeof(Time),0);
198 if (s->info_callback != NULL)
200 else if (s->ctx->info_callback != NULL)
201 cb=s->ctx->info_callback;
204 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
206 #ifndef OPENSSL_NO_HEARTBEATS
207 /* If we're awaiting a HeartbeatResponse, pretend we
208 * already got and don't await it anymore, because
209 * Heartbeats don't make sense during handshakes anyway.
211 if (s->tlsext_hb_pending)
213 s->tlsext_hb_pending = 0;
224 case SSL_ST_RENEGOTIATE:
226 s->state=SSL_ST_CONNECT;
227 s->ctx->stats.sess_connect_renegotiate++;
231 case SSL_ST_BEFORE|SSL_ST_CONNECT:
232 case SSL_ST_OK|SSL_ST_CONNECT:
235 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
237 if ((s->version & 0xff00 ) != 0x0300)
239 SSLerr(SSL_F_SSL3_CONNECT, ERR_R_INTERNAL_ERROR);
244 /* s->version=SSL3_VERSION; */
245 s->type=SSL_ST_CONNECT;
247 if (s->init_buf == NULL)
249 if ((buf=BUF_MEM_new()) == NULL)
254 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
263 if (!ssl3_setup_buffers(s)) { ret= -1; goto end; }
265 /* setup buffing BIO */
266 if (!ssl_init_wbio_buffer(s,0)) { ret= -1; goto end; }
268 /* don't push the buffering BIO quite yet */
270 ssl3_init_finished_mac(s);
272 s->state=SSL3_ST_CW_CLNT_HELLO_A;
273 s->ctx->stats.sess_connect++;
277 case SSL3_ST_CW_CLNT_HELLO_A:
278 case SSL3_ST_CW_CLNT_HELLO_B:
281 ret=ssl3_client_hello(s);
282 if (ret <= 0) goto end;
283 s->state=SSL3_ST_CR_SRVR_HELLO_A;
286 /* turn on buffering for the next lot of output */
287 if (s->bbio != s->wbio)
288 s->wbio=BIO_push(s->bbio,s->wbio);
292 case SSL3_ST_CR_SRVR_HELLO_A:
293 case SSL3_ST_CR_SRVR_HELLO_B:
294 ret=ssl3_get_server_hello(s);
295 if (ret <= 0) goto end;
299 s->state=SSL3_ST_CR_FINISHED_A;
300 #ifndef OPENSSL_NO_TLSEXT
301 if (s->tlsext_ticket_expected)
303 /* receive renewed session ticket */
304 s->state=SSL3_ST_CR_SESSION_TICKET_A;
310 s->state=SSL3_ST_CR_CERT_A;
314 #ifndef OPENSSL_NO_TLSEXT
315 case SSL3_ST_CR_SUPPLEMENTAL_DATA_A:
316 case SSL3_ST_CR_SUPPLEMENTAL_DATA_B:
317 ret = tls1_get_server_supplemental_data(s);
318 if (ret <= 0) goto end;
319 s->state=SSL3_ST_CR_CERT_A;
323 case SSL3_ST_CR_CERT_A:
324 case SSL3_ST_CR_CERT_B:
325 #ifndef OPENSSL_NO_TLSEXT
326 ret=ssl3_check_finished(s);
327 if (ret <= 0) goto end;
330 s->state=SSL3_ST_CR_SUPPLEMENTAL_DATA_A;
337 if (s->tlsext_ticket_expected)
338 s->state=SSL3_ST_CR_SESSION_TICKET_A;
340 s->state=SSL3_ST_CR_FINISHED_A;
345 /* Check if it is anon DH/ECDH */
347 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
348 !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
350 ret=ssl3_get_server_certificate(s);
351 if (ret <= 0) goto end;
352 #ifndef OPENSSL_NO_TLSEXT
353 if (s->tlsext_status_expected)
354 s->state=SSL3_ST_CR_CERT_STATUS_A;
356 s->state=SSL3_ST_CR_KEY_EXCH_A;
361 s->state=SSL3_ST_CR_KEY_EXCH_A;
368 s->state=SSL3_ST_CR_KEY_EXCH_A;
373 case SSL3_ST_CR_KEY_EXCH_A:
374 case SSL3_ST_CR_KEY_EXCH_B:
375 ret=ssl3_get_key_exchange(s);
376 if (ret <= 0) goto end;
377 s->state=SSL3_ST_CR_CERT_REQ_A;
380 /* at this point we check that we have the
381 * required stuff from the server */
382 if (!ssl3_check_cert_and_algorithm(s))
389 case SSL3_ST_CR_CERT_REQ_A:
390 case SSL3_ST_CR_CERT_REQ_B:
391 ret=ssl3_get_certificate_request(s);
392 if (ret <= 0) goto end;
393 s->state=SSL3_ST_CR_SRVR_DONE_A;
397 case SSL3_ST_CR_SRVR_DONE_A:
398 case SSL3_ST_CR_SRVR_DONE_B:
399 ret=ssl3_get_server_done(s);
400 if (ret <= 0) goto end;
401 #ifndef OPENSSL_NO_SRP
402 if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP)
404 if ((ret = SRP_Calc_A_param(s))<=0)
406 SSLerr(SSL_F_SSL3_CONNECT,SSL_R_SRP_A_CALC);
407 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_INTERNAL_ERROR);
412 #ifndef OPENSSL_NO_TLSEXT
413 s->state=SSL3_ST_CW_SUPPLEMENTAL_DATA_A;
415 if (s->s3->tmp.cert_req)
416 s->state=SSL3_ST_CW_CERT_A;
418 s->state=SSL3_ST_CW_KEY_EXCH_A;
424 case SSL3_ST_CW_CERT_A:
425 case SSL3_ST_CW_CERT_B:
426 case SSL3_ST_CW_CERT_C:
427 case SSL3_ST_CW_CERT_D:
428 ret=ssl3_send_client_certificate(s);
429 if (ret <= 0) goto end;
430 s->state=SSL3_ST_CW_KEY_EXCH_A;
434 case SSL3_ST_CW_KEY_EXCH_A:
435 case SSL3_ST_CW_KEY_EXCH_B:
436 ret=ssl3_send_client_key_exchange(s);
437 if (ret <= 0) goto end;
438 /* EAY EAY EAY need to check for DH fix cert
440 /* For TLS, cert_req is set to 2, so a cert chain
441 * of nothing is sent, but no verify packet is sent */
442 /* XXX: For now, we do not support client
443 * authentication in ECDH cipher suites with
444 * ECDH (rather than ECDSA) certificates.
445 * We need to skip the certificate verify
446 * message when client's ECDH public key is sent
447 * inside the client certificate.
449 if (s->s3->tmp.cert_req == 1)
451 s->state=SSL3_ST_CW_CERT_VRFY_A;
455 s->state=SSL3_ST_CW_CHANGE_A;
456 s->s3->change_cipher_spec=0;
458 if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY)
460 s->state=SSL3_ST_CW_CHANGE_A;
461 s->s3->change_cipher_spec=0;
467 case SSL3_ST_CW_CERT_VRFY_A:
468 case SSL3_ST_CW_CERT_VRFY_B:
469 ret=ssl3_send_client_verify(s);
470 if (ret <= 0) goto end;
471 s->state=SSL3_ST_CW_CHANGE_A;
473 s->s3->change_cipher_spec=0;
476 case SSL3_ST_CW_CHANGE_A:
477 case SSL3_ST_CW_CHANGE_B:
478 ret=ssl3_send_change_cipher_spec(s,
479 SSL3_ST_CW_CHANGE_A,SSL3_ST_CW_CHANGE_B);
480 if (ret <= 0) goto end;
482 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
483 s->state=SSL3_ST_CW_FINISHED_A;
485 if (s->s3->next_proto_neg_seen)
486 s->state=SSL3_ST_CW_NEXT_PROTO_A;
488 s->state=SSL3_ST_CW_FINISHED_A;
492 s->session->cipher=s->s3->tmp.new_cipher;
493 #ifdef OPENSSL_NO_COMP
494 s->session->compress_meth=0;
496 if (s->s3->tmp.new_compression == NULL)
497 s->session->compress_meth=0;
499 s->session->compress_meth=
500 s->s3->tmp.new_compression->id;
502 if (!s->method->ssl3_enc->setup_key_block(s))
508 if (!s->method->ssl3_enc->change_cipher_state(s,
509 SSL3_CHANGE_CIPHER_CLIENT_WRITE))
517 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
518 case SSL3_ST_CW_NEXT_PROTO_A:
519 case SSL3_ST_CW_NEXT_PROTO_B:
520 ret=ssl3_send_next_proto(s);
521 if (ret <= 0) goto end;
522 s->state=SSL3_ST_CW_FINISHED_A;
526 #ifndef OPENSSL_NO_TLSEXT
527 case SSL3_ST_CW_SUPPLEMENTAL_DATA_A:
528 case SSL3_ST_CW_SUPPLEMENTAL_DATA_B:
529 ret = tls1_send_client_supplemental_data(s, &skip);
530 if (ret <= 0) goto end;
531 if (s->s3->tmp.cert_req)
532 s->state=SSL3_ST_CW_CERT_A;
534 s->state=SSL3_ST_CW_KEY_EXCH_A;
539 case SSL3_ST_CW_FINISHED_A:
540 case SSL3_ST_CW_FINISHED_B:
541 ret=ssl3_send_finished(s,
542 SSL3_ST_CW_FINISHED_A,SSL3_ST_CW_FINISHED_B,
543 s->method->ssl3_enc->client_finished_label,
544 s->method->ssl3_enc->client_finished_label_len);
545 if (ret <= 0) goto end;
546 s->state=SSL3_ST_CW_FLUSH;
549 s->s3->flags&= ~SSL3_FLAGS_POP_BUFFER;
552 s->s3->tmp.next_state=SSL_ST_OK;
553 if (s->s3->flags & SSL3_FLAGS_DELAY_CLIENT_FINISHED)
556 s->s3->flags|=SSL3_FLAGS_POP_BUFFER;
557 s->s3->delay_buf_pop_ret=0;
562 #ifndef OPENSSL_NO_TLSEXT
563 /* Allow NewSessionTicket if ticket expected */
564 if (s->tlsext_ticket_expected)
565 s->s3->tmp.next_state=SSL3_ST_CR_SESSION_TICKET_A;
569 s->s3->tmp.next_state=SSL3_ST_CR_FINISHED_A;
574 #ifndef OPENSSL_NO_TLSEXT
575 case SSL3_ST_CR_SESSION_TICKET_A:
576 case SSL3_ST_CR_SESSION_TICKET_B:
577 ret=ssl3_get_new_session_ticket(s);
578 if (ret <= 0) goto end;
579 s->state=SSL3_ST_CR_FINISHED_A;
583 case SSL3_ST_CR_CERT_STATUS_A:
584 case SSL3_ST_CR_CERT_STATUS_B:
585 ret=ssl3_get_cert_status(s);
586 if (ret <= 0) goto end;
587 s->state=SSL3_ST_CR_KEY_EXCH_A;
592 case SSL3_ST_CR_FINISHED_A:
593 case SSL3_ST_CR_FINISHED_B:
595 ret=ssl3_get_finished(s,SSL3_ST_CR_FINISHED_A,
596 SSL3_ST_CR_FINISHED_B);
597 if (ret <= 0) goto end;
600 s->state=SSL3_ST_CW_CHANGE_A;
606 case SSL3_ST_CW_FLUSH:
607 s->rwstate=SSL_WRITING;
608 if (BIO_flush(s->wbio) <= 0)
613 s->rwstate=SSL_NOTHING;
614 s->state=s->s3->tmp.next_state;
618 /* clean a few things up */
619 ssl3_cleanup_key_block(s);
621 if (s->init_buf != NULL)
623 BUF_MEM_free(s->init_buf);
627 /* If we are not 'joining' the last two packets,
628 * remove the buffering now */
629 if (!(s->s3->flags & SSL3_FLAGS_POP_BUFFER))
630 ssl_free_wbio_buffer(s);
631 /* else do it later in ssl3_write */
637 ssl_update_cache(s,SSL_SESS_CACHE_CLIENT);
638 if (s->hit) s->ctx->stats.sess_hit++;
642 s->handshake_func=ssl3_connect;
643 s->ctx->stats.sess_connect_good++;
645 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
651 SSLerr(SSL_F_SSL3_CONNECT,SSL_R_UNKNOWN_STATE);
657 /* did we do anything */
658 if (!s->s3->tmp.reuse_message && !skip)
662 if ((ret=BIO_flush(s->wbio)) <= 0)
666 if ((cb != NULL) && (s->state != state))
670 cb(s,SSL_CB_CONNECT_LOOP,1);
681 cb(s,SSL_CB_CONNECT_EXIT,ret);
686 int ssl3_client_hello(SSL *s)
691 unsigned long Time,l;
692 #ifndef OPENSSL_NO_COMP
697 buf=(unsigned char *)s->init_buf->data;
698 if (s->state == SSL3_ST_CW_CLNT_HELLO_A)
700 SSL_SESSION *sess = s->session;
701 if ((sess == NULL) ||
702 (sess->ssl_version != s->version) ||
703 #ifdef OPENSSL_NO_TLSEXT
704 !sess->session_id_length ||
706 (!sess->session_id_length && !sess->tlsext_tick) ||
708 (sess->not_resumable))
710 if (!ssl_get_new_session(s,0))
713 if (s->method->version == DTLS_ANY_VERSION)
715 /* Determine which DTLS version to use */
716 int options = s->options;
717 /* If DTLS 1.2 disabled correct the version number */
718 if (options & SSL_OP_NO_DTLSv1_2)
722 SSLerr(SSL_F_SSL3_CLIENT_HELLO, SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE);
725 /* Disabling all versions is silly: return an
728 if (options & SSL_OP_NO_DTLSv1)
730 SSLerr(SSL_F_SSL3_CLIENT_HELLO,SSL_R_WRONG_SSL_VERSION);
733 /* Update method so we don't use any DTLS 1.2
736 s->method = DTLSv1_client_method();
737 s->version = DTLS1_VERSION;
741 /* We only support one version: update method */
742 if (options & SSL_OP_NO_DTLSv1)
743 s->method = DTLSv1_2_client_method();
744 s->version = DTLS1_2_VERSION;
746 s->client_version = s->version;
748 /* else use the pre-loaded session */
750 p=s->s3->client_random;
752 /* for DTLS if client_random is initialized, reuse it, we are
753 * required to use same upon reply to HelloVerify */
758 for (idx=0; idx < sizeof(s->s3->client_random); idx++)
772 Time=(unsigned long)time(NULL); /* Time */
774 RAND_pseudo_bytes(p,sizeof(s->s3->client_random)-4);
778 /* Do the message type and length last */
779 d=p= ssl_handshake_start(s);
781 /* version indicates the negotiated version: for example from
782 * an SSLv2/v3 compatible client hello). The client_version
783 * field is the maximum version we permit and it is also
784 * used in RSA encrypted premaster secrets. Some servers can
785 * choke if we initially report a higher version then
786 * renegotiate to a lower one in the premaster secret. This
787 * didn't happen with TLS 1.0 as most servers supported it
788 * but it can with TLS 1.1 or later if the server only supports
791 * Possible scenario with previous logic:
792 * 1. Client hello indicates TLS 1.2
793 * 2. Server hello says TLS 1.0
794 * 3. RSA encrypted premaster secret uses 1.2.
795 * 4. Handhaked proceeds using TLS 1.0.
796 * 5. Server sends hello request to renegotiate.
797 * 6. Client hello indicates TLS v1.0 as we now
798 * know that is maximum server supports.
799 * 7. Server chokes on RSA encrypted premaster secret
800 * containing version 1.0.
802 * For interoperability it should be OK to always use the
803 * maximum version we support in client hello and then rely
804 * on the checking of version to ensure the servers isn't
805 * being inconsistent: for example initially negotiating with
806 * TLS 1.0 and renegotiating with TLS 1.2. We do this by using
807 * client_version in client hello and not resetting it to
808 * the negotiated version.
811 *(p++)=s->version>>8;
812 *(p++)=s->version&0xff;
813 s->client_version=s->version;
815 *(p++)=s->client_version>>8;
816 *(p++)=s->client_version&0xff;
820 memcpy(p,s->s3->client_random,SSL3_RANDOM_SIZE);
827 i=s->session->session_id_length;
831 if (i > (int)sizeof(s->session->session_id))
833 SSLerr(SSL_F_SSL3_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
836 memcpy(p,s->session->session_id,i);
840 /* cookie stuff for DTLS */
843 if ( s->d1->cookie_len > sizeof(s->d1->cookie))
845 SSLerr(SSL_F_SSL3_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
848 *(p++) = s->d1->cookie_len;
849 memcpy(p, s->d1->cookie, s->d1->cookie_len);
850 p += s->d1->cookie_len;
853 /* Ciphers supported */
854 i=ssl_cipher_list_to_bytes(s,SSL_get_ciphers(s),&(p[2]),0);
857 SSLerr(SSL_F_SSL3_CLIENT_HELLO,SSL_R_NO_CIPHERS_AVAILABLE);
860 #ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
861 /* Some servers hang if client hello > 256 bytes
862 * as hack workaround chop number of supported ciphers
863 * to keep it well below this if we use TLS v1.2
865 if (TLS1_get_version(s) >= TLS1_2_VERSION
866 && i > OPENSSL_MAX_TLS1_2_CIPHER_LENGTH)
867 i = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
873 #ifdef OPENSSL_NO_COMP
877 if ((s->options & SSL_OP_NO_COMPRESSION)
878 || !s->ctx->comp_methods)
881 j=sk_SSL_COMP_num(s->ctx->comp_methods);
885 comp=sk_SSL_COMP_value(s->ctx->comp_methods,i);
889 *(p++)=0; /* Add the NULL method */
891 #ifndef OPENSSL_NO_TLSEXT
893 if (ssl_prepare_clienthello_tlsext(s) <= 0)
895 SSLerr(SSL_F_SSL3_CLIENT_HELLO,SSL_R_CLIENTHELLO_TLSEXT);
898 if ((p = ssl_add_clienthello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
900 SSLerr(SSL_F_SSL3_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
906 ssl_set_handshake_header(s, SSL3_MT_CLIENT_HELLO, l);
907 s->state=SSL3_ST_CW_CLNT_HELLO_B;
910 /* SSL3_ST_CW_CLNT_HELLO_B */
911 return ssl_do_write(s);
916 int ssl3_get_server_hello(SSL *s)
918 STACK_OF(SSL_CIPHER) *sk;
922 int i,al=SSL_AD_INTERNAL_ERROR,ok;
925 #ifndef OPENSSL_NO_COMP
928 /* Hello verify request and/or server hello version may not
929 * match so set first packet if we're negotiating version.
931 if (s->method->version == DTLS_ANY_VERSION)
934 n=s->method->ssl_get_message(s,
935 SSL3_ST_CR_SRVR_HELLO_A,
936 SSL3_ST_CR_SRVR_HELLO_B,
941 if (!ok) return((int)n);
946 if ( s->s3->tmp.message_type == DTLS1_MT_HELLO_VERIFY_REQUEST)
948 if ( s->d1->send_cookie == 0)
950 s->s3->tmp.reuse_message = 1;
953 else /* already sent a cookie */
955 al=SSL_AD_UNEXPECTED_MESSAGE;
956 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_BAD_MESSAGE_TYPE);
962 if ( s->s3->tmp.message_type != SSL3_MT_SERVER_HELLO)
964 al=SSL_AD_UNEXPECTED_MESSAGE;
965 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_BAD_MESSAGE_TYPE);
969 d=p=(unsigned char *)s->init_msg;
970 if (s->method->version == DTLS_ANY_VERSION)
972 /* Work out correct protocol version to use */
973 int hversion = (p[0] << 8)|p[1];
974 int options = s->options;
975 if (hversion == DTLS1_2_VERSION
976 && !(options & SSL_OP_NO_DTLSv1_2))
977 s->method = DTLSv1_2_client_method();
978 else if (tls1_suiteb(s))
980 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE);
981 s->version = hversion;
982 al = SSL_AD_PROTOCOL_VERSION;
985 else if (hversion == DTLS1_VERSION
986 && !(options & SSL_OP_NO_DTLSv1))
987 s->method = DTLSv1_client_method();
990 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_WRONG_SSL_VERSION);
991 s->version = hversion;
992 al = SSL_AD_PROTOCOL_VERSION;
995 s->version = s->client_version = s->method->version;
998 if ((p[0] != (s->version>>8)) || (p[1] != (s->version&0xff)))
1000 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_WRONG_SSL_VERSION);
1001 s->version=(s->version&0xff00)|p[1];
1002 al=SSL_AD_PROTOCOL_VERSION;
1007 /* load the server hello data */
1008 /* load the server random */
1009 memcpy(s->s3->server_random,p,SSL3_RANDOM_SIZE);
1010 p+=SSL3_RANDOM_SIZE;
1012 /* get the session-id */
1015 if ((j > sizeof s->session->session_id) || (j > SSL3_SESSION_ID_SIZE))
1017 al=SSL_AD_ILLEGAL_PARAMETER;
1018 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_SSL3_SESSION_ID_TOO_LONG);
1022 #ifndef OPENSSL_NO_TLSEXT
1023 /* check if we want to resume the session based on external pre-shared secret */
1024 if (s->version >= TLS1_VERSION && s->tls_session_secret_cb)
1026 SSL_CIPHER *pref_cipher=NULL;
1027 s->session->master_key_length=sizeof(s->session->master_key);
1028 if (s->tls_session_secret_cb(s, s->session->master_key,
1029 &s->session->master_key_length,
1031 s->tls_session_secret_cb_arg))
1033 s->session->cipher = pref_cipher ?
1034 pref_cipher : ssl_get_cipher_by_char(s, p+j);
1037 #endif /* OPENSSL_NO_TLSEXT */
1039 if (j != 0 && j == s->session->session_id_length
1040 && memcmp(p,s->session->session_id,j) == 0)
1042 if(s->sid_ctx_length != s->session->sid_ctx_length
1043 || memcmp(s->session->sid_ctx,s->sid_ctx,s->sid_ctx_length))
1045 /* actually a client application bug */
1046 al=SSL_AD_ILLEGAL_PARAMETER;
1047 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
1052 else /* a miss or crap from the other end */
1054 /* If we were trying for session-id reuse, make a new
1055 * SSL_SESSION so we don't stuff up other people */
1057 if (s->session->session_id_length > 0)
1059 if (!ssl_get_new_session(s,0))
1064 s->session->session_id_length=j;
1065 memcpy(s->session->session_id,p,j); /* j could be 0 */
1068 c=ssl_get_cipher_by_char(s,p);
1071 /* unknown cipher */
1072 al=SSL_AD_ILLEGAL_PARAMETER;
1073 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_UNKNOWN_CIPHER_RETURNED);
1076 /* Set version disabled mask now we know version */
1077 if (!SSL_USE_TLS1_2_CIPHERS(s))
1078 ct->mask_ssl = SSL_TLSV1_2;
1081 /* If it is a disabled cipher we didn't send it in client hello,
1082 * so return an error.
1084 if (c->algorithm_ssl & ct->mask_ssl ||
1085 c->algorithm_mkey & ct->mask_k ||
1086 c->algorithm_auth & ct->mask_a)
1088 al=SSL_AD_ILLEGAL_PARAMETER;
1089 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_WRONG_CIPHER_RETURNED);
1092 p+=ssl_put_cipher_by_char(s,NULL,NULL);
1094 sk=ssl_get_ciphers_by_id(s);
1095 i=sk_SSL_CIPHER_find(sk,c);
1098 /* we did not say we would use this cipher */
1099 al=SSL_AD_ILLEGAL_PARAMETER;
1100 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_WRONG_CIPHER_RETURNED);
1104 /* Depending on the session caching (internal/external), the cipher
1105 and/or cipher_id values may not be set. Make sure that
1106 cipher_id is set and use it for comparison. */
1107 if (s->session->cipher)
1108 s->session->cipher_id = s->session->cipher->id;
1109 if (s->hit && (s->session->cipher_id != c->id))
1111 /* Workaround is now obsolete */
1114 SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG))
1117 al=SSL_AD_ILLEGAL_PARAMETER;
1118 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED);
1122 s->s3->tmp.new_cipher=c;
1123 /* Don't digest cached records if no sigalgs: we may need them for
1124 * client authentication.
1126 if (!SSL_USE_SIGALGS(s) && !ssl3_digest_cached_records(s))
1128 /* lets get the compression algorithm */
1130 #ifdef OPENSSL_NO_COMP
1133 al=SSL_AD_ILLEGAL_PARAMETER;
1134 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1137 /* If compression is disabled we'd better not try to resume a session
1138 * using compression.
1140 if (s->session->compress_meth != 0)
1142 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
1147 if (s->hit && j != s->session->compress_meth)
1149 al=SSL_AD_ILLEGAL_PARAMETER;
1150 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
1155 else if (s->options & SSL_OP_NO_COMPRESSION)
1157 al=SSL_AD_ILLEGAL_PARAMETER;
1158 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_COMPRESSION_DISABLED);
1162 comp=ssl3_comp_find(s->ctx->comp_methods,j);
1164 if ((j != 0) && (comp == NULL))
1166 al=SSL_AD_ILLEGAL_PARAMETER;
1167 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1172 s->s3->tmp.new_compression=comp;
1176 #ifndef OPENSSL_NO_TLSEXT
1178 if (!ssl_parse_serverhello_tlsext(s,&p,d,n))
1180 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_PARSE_TLSEXT);
1187 /* wrong packet length */
1188 al=SSL_AD_DECODE_ERROR;
1189 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,SSL_R_BAD_PACKET_LENGTH);
1195 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1200 int ssl3_get_server_certificate(SSL *s)
1202 int al,i,ok,ret= -1;
1203 unsigned long n,nc,llen,l;
1205 const unsigned char *q,*p;
1207 STACK_OF(X509) *sk=NULL;
1209 EVP_PKEY *pkey=NULL;
1210 int need_cert = 1; /* VRS: 0=> will allow null cert if auth == KRB5 */
1212 n=s->method->ssl_get_message(s,
1219 if (!ok) return((int)n);
1221 if ((s->s3->tmp.message_type == SSL3_MT_SERVER_KEY_EXCHANGE) ||
1222 ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5) &&
1223 (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE)))
1225 s->s3->tmp.reuse_message=1;
1229 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
1231 al=SSL_AD_UNEXPECTED_MESSAGE;
1232 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_BAD_MESSAGE_TYPE);
1235 p=d=(unsigned char *)s->init_msg;
1237 if ((sk=sk_X509_new_null()) == NULL)
1239 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,ERR_R_MALLOC_FAILURE);
1246 al=SSL_AD_DECODE_ERROR;
1247 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_LENGTH_MISMATCH);
1250 for (nc=0; nc<llen; )
1253 if ((l+nc+3) > llen)
1255 al=SSL_AD_DECODE_ERROR;
1256 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
1261 x=d2i_X509(NULL,&q,l);
1264 al=SSL_AD_BAD_CERTIFICATE;
1265 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,ERR_R_ASN1_LIB);
1270 al=SSL_AD_DECODE_ERROR;
1271 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
1274 if (!sk_X509_push(sk,x))
1276 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,ERR_R_MALLOC_FAILURE);
1284 i=ssl_verify_cert_chain(s,sk);
1285 if ((s->verify_mode != SSL_VERIFY_NONE) && (i <= 0)
1286 #ifndef OPENSSL_NO_KRB5
1287 && !((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5) &&
1288 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
1289 #endif /* OPENSSL_NO_KRB5 */
1292 al=ssl_verify_alarm_type(s->verify_result);
1293 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,SSL_R_CERTIFICATE_VERIFY_FAILED);
1296 ERR_clear_error(); /* but we keep s->verify_result */
1298 sc=ssl_sess_cert_new();
1299 if (sc == NULL) goto err;
1301 if (s->session->sess_cert) ssl_sess_cert_free(s->session->sess_cert);
1302 s->session->sess_cert=sc;
1305 /* Inconsistency alert: cert_chain does include the peer's
1306 * certificate, which we don't include in s3_srvr.c */
1307 x=sk_X509_value(sk,0);
1309 /* VRS 19990621: possible memory leak; sk=null ==> !sk_pop_free() @end*/
1311 pkey=X509_get_pubkey(x);
1313 /* VRS: allow null cert if auth == KRB5 */
1314 need_cert = ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5) &&
1315 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
1319 printf("pkey,x = %p, %p\n", pkey,x);
1320 printf("ssl_cert_type(x,pkey) = %d\n", ssl_cert_type(x,pkey));
1321 printf("cipher, alg, nc = %s, %lx, %lx, %d\n", s->s3->tmp.new_cipher->name,
1322 s->s3->tmp.new_cipher->algorithm_mkey, s->s3->tmp.new_cipher->algorithm_auth, need_cert);
1323 #endif /* KSSL_DEBUG */
1325 if (need_cert && ((pkey == NULL) || EVP_PKEY_missing_parameters(pkey)))
1329 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1330 SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1334 i=ssl_cert_type(x,pkey);
1335 if (need_cert && i < 0)
1339 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1340 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1346 int exp_idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher);
1347 if (exp_idx >= 0 && i != exp_idx)
1350 al=SSL_AD_ILLEGAL_PARAMETER;
1351 SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1352 SSL_R_WRONG_CERTIFICATE_TYPE);
1355 sc->peer_cert_type=i;
1356 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
1357 /* Why would the following ever happen?
1358 * We just created sc a couple of lines ago. */
1359 if (sc->peer_pkeys[i].x509 != NULL)
1360 X509_free(sc->peer_pkeys[i].x509);
1361 sc->peer_pkeys[i].x509=x;
1362 sc->peer_key= &(sc->peer_pkeys[i]);
1364 if (s->session->peer != NULL)
1365 X509_free(s->session->peer);
1366 CRYPTO_add(&x->references,1,CRYPTO_LOCK_X509);
1371 sc->peer_cert_type=i;
1374 if (s->session->peer != NULL)
1375 X509_free(s->session->peer);
1376 s->session->peer=NULL;
1378 s->session->verify_result = s->verify_result;
1385 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1388 EVP_PKEY_free(pkey);
1390 sk_X509_pop_free(sk,X509_free);
1394 int ssl3_get_key_exchange(SSL *s)
1396 #ifndef OPENSSL_NO_RSA
1397 unsigned char *q,md_buf[EVP_MAX_MD_SIZE*2];
1400 unsigned char *param,*p;
1401 int al,i,j,param_len,ok;
1403 EVP_PKEY *pkey=NULL;
1404 const EVP_MD *md = NULL;
1405 #ifndef OPENSSL_NO_RSA
1408 #ifndef OPENSSL_NO_DH
1411 #ifndef OPENSSL_NO_ECDH
1412 EC_KEY *ecdh = NULL;
1413 BN_CTX *bn_ctx = NULL;
1414 EC_POINT *srvr_ecpoint = NULL;
1416 int encoded_pt_len = 0;
1419 /* use same message size as in ssl3_get_certificate_request()
1420 * as ServerKeyExchange message may be skipped */
1421 n=s->method->ssl_get_message(s,
1422 SSL3_ST_CR_KEY_EXCH_A,
1423 SSL3_ST_CR_KEY_EXCH_B,
1427 if (!ok) return((int)n);
1429 if (s->s3->tmp.message_type != SSL3_MT_SERVER_KEY_EXCHANGE)
1431 #ifndef OPENSSL_NO_PSK
1432 /* In plain PSK ciphersuite, ServerKeyExchange can be
1433 omitted if no identity hint is sent. Set
1434 session->sess_cert anyway to avoid problems
1436 if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)
1438 s->session->sess_cert=ssl_sess_cert_new();
1439 if (s->ctx->psk_identity_hint)
1440 OPENSSL_free(s->ctx->psk_identity_hint);
1441 s->ctx->psk_identity_hint = NULL;
1444 s->s3->tmp.reuse_message=1;
1448 param=p=(unsigned char *)s->init_msg;
1449 if (s->session->sess_cert != NULL)
1451 #ifndef OPENSSL_NO_RSA
1452 if (s->session->sess_cert->peer_rsa_tmp != NULL)
1454 RSA_free(s->session->sess_cert->peer_rsa_tmp);
1455 s->session->sess_cert->peer_rsa_tmp=NULL;
1458 #ifndef OPENSSL_NO_DH
1459 if (s->session->sess_cert->peer_dh_tmp)
1461 DH_free(s->session->sess_cert->peer_dh_tmp);
1462 s->session->sess_cert->peer_dh_tmp=NULL;
1465 #ifndef OPENSSL_NO_ECDH
1466 if (s->session->sess_cert->peer_ecdh_tmp)
1468 EC_KEY_free(s->session->sess_cert->peer_ecdh_tmp);
1469 s->session->sess_cert->peer_ecdh_tmp=NULL;
1475 s->session->sess_cert=ssl_sess_cert_new();
1479 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
1480 alg_a=s->s3->tmp.new_cipher->algorithm_auth;
1481 EVP_MD_CTX_init(&md_ctx);
1483 #ifndef OPENSSL_NO_PSK
1484 if (alg_k & SSL_kPSK)
1486 char tmp_id_hint[PSK_MAX_IDENTITY_LEN+1];
1488 al=SSL_AD_HANDSHAKE_FAILURE;
1491 /* Store PSK identity hint for later use, hint is used
1492 * in ssl3_send_client_key_exchange. Assume that the
1493 * maximum length of a PSK identity hint can be as
1494 * long as the maximum length of a PSK identity. */
1495 if (i > PSK_MAX_IDENTITY_LEN)
1497 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1498 SSL_R_DATA_LENGTH_TOO_LONG);
1503 al=SSL_AD_DECODE_ERROR;
1504 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1505 SSL_R_BAD_PSK_IDENTITY_HINT_LENGTH);
1508 /* If received PSK identity hint contains NULL
1509 * characters, the hint is truncated from the first
1510 * NULL. p may not be ending with NULL, so create a
1511 * NULL-terminated string. */
1512 memcpy(tmp_id_hint, p, i);
1513 memset(tmp_id_hint+i, 0, PSK_MAX_IDENTITY_LEN+1-i);
1514 if (s->ctx->psk_identity_hint != NULL)
1515 OPENSSL_free(s->ctx->psk_identity_hint);
1516 s->ctx->psk_identity_hint = BUF_strdup(tmp_id_hint);
1517 if (s->ctx->psk_identity_hint == NULL)
1519 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1527 #endif /* !OPENSSL_NO_PSK */
1528 #ifndef OPENSSL_NO_SRP
1529 if (alg_k & SSL_kSRP)
1535 al=SSL_AD_DECODE_ERROR;
1536 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_N_LENGTH);
1539 if (!(s->srp_ctx.N=BN_bin2bn(p,i,NULL)))
1541 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1550 al=SSL_AD_DECODE_ERROR;
1551 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_G_LENGTH);
1554 if (!(s->srp_ctx.g=BN_bin2bn(p,i,NULL)))
1556 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1561 i = (unsigned int)(p[0]);
1566 al=SSL_AD_DECODE_ERROR;
1567 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_S_LENGTH);
1570 if (!(s->srp_ctx.s=BN_bin2bn(p,i,NULL)))
1572 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1581 al=SSL_AD_DECODE_ERROR;
1582 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SRP_B_LENGTH);
1585 if (!(s->srp_ctx.B=BN_bin2bn(p,i,NULL)))
1587 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1593 /* We must check if there is a certificate */
1594 #ifndef OPENSSL_NO_RSA
1595 if (alg_a & SSL_aRSA)
1596 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1601 #ifndef OPENSSL_NO_DSA
1602 else if (alg_a & SSL_aDSS)
1603 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_DSA_SIGN].x509);
1607 #endif /* !OPENSSL_NO_SRP */
1608 #ifndef OPENSSL_NO_RSA
1609 if (alg_k & SSL_kRSA)
1611 if ((rsa=RSA_new()) == NULL)
1613 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1620 al=SSL_AD_DECODE_ERROR;
1621 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_RSA_MODULUS_LENGTH);
1624 if (!(rsa->n=BN_bin2bn(p,i,rsa->n)))
1626 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1635 al=SSL_AD_DECODE_ERROR;
1636 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_RSA_E_LENGTH);
1639 if (!(rsa->e=BN_bin2bn(p,i,rsa->e)))
1641 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1647 /* this should be because we are using an export cipher */
1648 if (alg_a & SSL_aRSA)
1649 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1652 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
1655 s->session->sess_cert->peer_rsa_tmp=rsa;
1658 #else /* OPENSSL_NO_RSA */
1662 #ifndef OPENSSL_NO_DH
1663 else if (alg_k & SSL_kEDH)
1665 if ((dh=DH_new()) == NULL)
1667 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_DH_LIB);
1674 al=SSL_AD_DECODE_ERROR;
1675 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_DH_P_LENGTH);
1678 if (!(dh->p=BN_bin2bn(p,i,NULL)))
1680 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1689 al=SSL_AD_DECODE_ERROR;
1690 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_DH_G_LENGTH);
1693 if (!(dh->g=BN_bin2bn(p,i,NULL)))
1695 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1704 al=SSL_AD_DECODE_ERROR;
1705 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_DH_PUB_KEY_LENGTH);
1708 if (!(dh->pub_key=BN_bin2bn(p,i,NULL)))
1710 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_BN_LIB);
1716 #ifndef OPENSSL_NO_RSA
1717 if (alg_a & SSL_aRSA)
1718 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1723 #ifndef OPENSSL_NO_DSA
1724 else if (alg_a & SSL_aDSS)
1725 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_DSA_SIGN].x509);
1727 /* else anonymous DH, so no certificate or pkey. */
1729 s->session->sess_cert->peer_dh_tmp=dh;
1732 else if ((alg_k & SSL_kDHr) || (alg_k & SSL_kDHd))
1734 al=SSL_AD_ILLEGAL_PARAMETER;
1735 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_TRIED_TO_USE_UNSUPPORTED_CIPHER);
1738 #endif /* !OPENSSL_NO_DH */
1740 #ifndef OPENSSL_NO_ECDH
1741 else if (alg_k & SSL_kEECDH)
1744 const EC_GROUP *group;
1746 if ((ecdh=EC_KEY_new()) == NULL)
1748 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1752 /* Extract elliptic curve parameters and the
1753 * server's ephemeral ECDH public key.
1754 * Keep accumulating lengths of various components in
1755 * param_len and make sure it never exceeds n.
1758 /* XXX: For now we only support named (not generic) curves
1759 * and the ECParameters in this case is just three bytes.
1762 /* Check curve is one of our preferences, if not server has
1763 * sent an invalid curve.
1765 if (!tls1_check_curve(s, p, param_len))
1767 al=SSL_AD_DECODE_ERROR;
1768 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_WRONG_CURVE);
1772 if ((curve_nid = tls1_ec_curve_id2nid(*(p + 2))) == 0)
1774 al=SSL_AD_INTERNAL_ERROR;
1775 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
1779 ngroup = EC_GROUP_new_by_curve_name(curve_nid);
1782 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_EC_LIB);
1785 if (EC_KEY_set_group(ecdh, ngroup) == 0)
1787 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_EC_LIB);
1790 EC_GROUP_free(ngroup);
1792 group = EC_KEY_get0_group(ecdh);
1794 if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1795 (EC_GROUP_get_degree(group) > 163))
1797 al=SSL_AD_EXPORT_RESTRICTION;
1798 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1804 /* Next, get the encoded ECPoint */
1805 if (((srvr_ecpoint = EC_POINT_new(group)) == NULL) ||
1806 ((bn_ctx = BN_CTX_new()) == NULL))
1808 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1812 encoded_pt_len = *p; /* length of encoded point */
1814 param_len += (1 + encoded_pt_len);
1815 if ((param_len > n) ||
1816 (EC_POINT_oct2point(group, srvr_ecpoint,
1817 p, encoded_pt_len, bn_ctx) == 0))
1819 al=SSL_AD_DECODE_ERROR;
1820 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_ECPOINT);
1827 /* The ECC/TLS specification does not mention
1828 * the use of DSA to sign ECParameters in the server
1829 * key exchange message. We do support RSA and ECDSA.
1832 #ifndef OPENSSL_NO_RSA
1833 else if (alg_a & SSL_aRSA)
1834 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1836 #ifndef OPENSSL_NO_ECDSA
1837 else if (alg_a & SSL_aECDSA)
1838 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_ECC].x509);
1840 /* else anonymous ECDH, so no certificate or pkey. */
1841 EC_KEY_set_public_key(ecdh, srvr_ecpoint);
1842 s->session->sess_cert->peer_ecdh_tmp=ecdh;
1844 BN_CTX_free(bn_ctx);
1846 EC_POINT_free(srvr_ecpoint);
1847 srvr_ecpoint = NULL;
1851 al=SSL_AD_UNEXPECTED_MESSAGE;
1852 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_UNEXPECTED_MESSAGE);
1855 #endif /* !OPENSSL_NO_ECDH */
1858 /* p points to the next byte, there are 'n' bytes left */
1860 /* if it was signed, check the signature */
1863 if (SSL_USE_SIGALGS(s))
1865 int rv = tls12_check_peer_sigalg(&md, s, p, pkey);
1870 al = SSL_AD_DECODE_ERROR;
1874 fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
1884 j=EVP_PKEY_size(pkey);
1886 if ((i != n) || (n > j) || (n <= 0))
1888 /* wrong packet length */
1889 al=SSL_AD_DECODE_ERROR;
1890 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_WRONG_SIGNATURE_LENGTH);
1894 #ifndef OPENSSL_NO_RSA
1895 if (pkey->type == EVP_PKEY_RSA && !SSL_USE_SIGALGS(s))
1901 for (num=2; num > 0; num--)
1903 EVP_MD_CTX_set_flags(&md_ctx,
1904 EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
1905 EVP_DigestInit_ex(&md_ctx,(num == 2)
1906 ?s->ctx->md5:s->ctx->sha1, NULL);
1907 EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1908 EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1909 EVP_DigestUpdate(&md_ctx,param,param_len);
1910 EVP_DigestFinal_ex(&md_ctx,q,(unsigned int *)&i);
1914 i=RSA_verify(NID_md5_sha1, md_buf, j, p, n,
1918 al=SSL_AD_DECRYPT_ERROR;
1919 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_RSA_DECRYPT);
1925 al=SSL_AD_DECRYPT_ERROR;
1926 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SIGNATURE);
1933 EVP_VerifyInit_ex(&md_ctx, md, NULL);
1934 EVP_VerifyUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1935 EVP_VerifyUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1936 EVP_VerifyUpdate(&md_ctx,param,param_len);
1937 if (EVP_VerifyFinal(&md_ctx,p,(int)n,pkey) <= 0)
1940 al=SSL_AD_DECRYPT_ERROR;
1941 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_BAD_SIGNATURE);
1948 /* aNULL or kPSK do not need public keys */
1949 if (!(alg_a & SSL_aNULL) && !(alg_k & SSL_kPSK))
1951 /* Might be wrong key type, check it */
1952 if (ssl3_check_cert_and_algorithm(s))
1953 /* Otherwise this shouldn't happen */
1954 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
1957 /* still data left over */
1960 al=SSL_AD_DECODE_ERROR;
1961 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,SSL_R_EXTRA_DATA_IN_MESSAGE);
1965 EVP_PKEY_free(pkey);
1966 EVP_MD_CTX_cleanup(&md_ctx);
1969 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1971 EVP_PKEY_free(pkey);
1972 #ifndef OPENSSL_NO_RSA
1976 #ifndef OPENSSL_NO_DH
1980 #ifndef OPENSSL_NO_ECDH
1981 BN_CTX_free(bn_ctx);
1982 EC_POINT_free(srvr_ecpoint);
1986 EVP_MD_CTX_cleanup(&md_ctx);
1990 int ssl3_get_certificate_request(SSL *s)
1993 unsigned long n,nc,l;
1994 unsigned int llen, ctype_num,i;
1996 const unsigned char *p,*q;
1998 STACK_OF(X509_NAME) *ca_sk=NULL;
2000 n=s->method->ssl_get_message(s,
2001 SSL3_ST_CR_CERT_REQ_A,
2002 SSL3_ST_CR_CERT_REQ_B,
2007 if (!ok) return((int)n);
2009 s->s3->tmp.cert_req=0;
2011 if (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE)
2013 s->s3->tmp.reuse_message=1;
2014 /* If we get here we don't need any cached handshake records
2015 * as we wont be doing client auth.
2017 if (s->s3->handshake_buffer)
2019 if (!ssl3_digest_cached_records(s))
2025 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_REQUEST)
2027 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_UNEXPECTED_MESSAGE);
2028 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_WRONG_MESSAGE_TYPE);
2032 /* TLS does not like anon-DH with client cert */
2033 if (s->version > SSL3_VERSION)
2035 if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
2037 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_UNEXPECTED_MESSAGE);
2038 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_TLS_CLIENT_CERT_REQ_WITH_ANON_CIPHER);
2043 p=d=(unsigned char *)s->init_msg;
2045 if ((ca_sk=sk_X509_NAME_new(ca_dn_cmp)) == NULL)
2047 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,ERR_R_MALLOC_FAILURE);
2051 /* get the certificate types */
2053 if (s->cert->ctypes)
2055 OPENSSL_free(s->cert->ctypes);
2056 s->cert->ctypes = NULL;
2058 if (ctype_num > SSL3_CT_NUMBER)
2060 /* If we exceed static buffer copy all to cert structure */
2061 s->cert->ctypes = OPENSSL_malloc(ctype_num);
2062 memcpy(s->cert->ctypes, p, ctype_num);
2063 s->cert->ctype_num = (size_t)ctype_num;
2064 ctype_num=SSL3_CT_NUMBER;
2066 for (i=0; i<ctype_num; i++)
2067 s->s3->tmp.ctype[i]= p[i];
2069 if (SSL_USE_SIGALGS(s))
2072 /* Check we have enough room for signature algorithms and
2073 * following length value.
2075 if ((unsigned long)(p - d + llen + 2) > n)
2077 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2078 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_DATA_LENGTH_TOO_LONG);
2081 /* Clear certificate digests and validity flags */
2082 for (i = 0; i < SSL_PKEY_NUM; i++)
2084 s->cert->pkeys[i].digest = NULL;
2085 s->cert->pkeys[i].valid_flags = 0;
2087 if ((llen & 1) || !tls1_process_sigalgs(s, p, llen))
2089 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2090 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_SIGNATURE_ALGORITHMS_ERROR);
2096 /* get the CA RDNs */
2101 out=fopen("/tmp/vsign.der","w");
2102 fwrite(p,1,llen,out);
2107 if ((unsigned long)(p - d + llen) != n)
2109 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2110 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_LENGTH_MISMATCH);
2114 for (nc=0; nc<llen; )
2117 if ((l+nc+2) > llen)
2119 if ((s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
2120 goto cont; /* netscape bugs */
2121 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2122 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_CA_DN_TOO_LONG);
2128 if ((xn=d2i_X509_NAME(NULL,&q,l)) == NULL)
2130 /* If netscape tolerance is on, ignore errors */
2131 if (s->options & SSL_OP_NETSCAPE_CA_DN_BUG)
2135 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2136 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,ERR_R_ASN1_LIB);
2143 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2144 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,SSL_R_CA_DN_LENGTH_MISMATCH);
2147 if (!sk_X509_NAME_push(ca_sk,xn))
2149 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,ERR_R_MALLOC_FAILURE);
2163 /* we should setup a certificate to return.... */
2164 s->s3->tmp.cert_req=1;
2165 s->s3->tmp.ctype_num=ctype_num;
2166 if (s->s3->tmp.ca_names != NULL)
2167 sk_X509_NAME_pop_free(s->s3->tmp.ca_names,X509_NAME_free);
2168 s->s3->tmp.ca_names=ca_sk;
2173 if (ca_sk != NULL) sk_X509_NAME_pop_free(ca_sk,X509_NAME_free);
2177 static int ca_dn_cmp(const X509_NAME * const *a, const X509_NAME * const *b)
2179 return(X509_NAME_cmp(*a,*b));
2181 #ifndef OPENSSL_NO_TLSEXT
2182 int ssl3_get_new_session_ticket(SSL *s)
2184 int ok,al,ret=0, ticklen;
2186 const unsigned char *p;
2189 n=s->method->ssl_get_message(s,
2190 SSL3_ST_CR_SESSION_TICKET_A,
2191 SSL3_ST_CR_SESSION_TICKET_B,
2199 if (s->s3->tmp.message_type == SSL3_MT_FINISHED)
2201 s->s3->tmp.reuse_message=1;
2204 if (s->s3->tmp.message_type != SSL3_MT_NEWSESSION_TICKET)
2206 al=SSL_AD_UNEXPECTED_MESSAGE;
2207 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,SSL_R_BAD_MESSAGE_TYPE);
2212 /* need at least ticket_lifetime_hint + ticket length */
2213 al = SSL_AD_DECODE_ERROR;
2214 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,SSL_R_LENGTH_MISMATCH);
2218 p=d=(unsigned char *)s->init_msg;
2219 n2l(p, s->session->tlsext_tick_lifetime_hint);
2221 /* ticket_lifetime_hint + ticket_length + ticket */
2222 if (ticklen + 6 != n)
2224 al = SSL_AD_DECODE_ERROR;
2225 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,SSL_R_LENGTH_MISMATCH);
2228 if (s->session->tlsext_tick)
2230 OPENSSL_free(s->session->tlsext_tick);
2231 s->session->tlsext_ticklen = 0;
2233 s->session->tlsext_tick = OPENSSL_malloc(ticklen);
2234 if (!s->session->tlsext_tick)
2236 SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET,ERR_R_MALLOC_FAILURE);
2239 memcpy(s->session->tlsext_tick, p, ticklen);
2240 s->session->tlsext_ticklen = ticklen;
2241 /* There are two ways to detect a resumed ticket sesion.
2242 * One is to set an appropriate session ID and then the server
2243 * must return a match in ServerHello. This allows the normal
2244 * client session ID matching to work and we know much
2245 * earlier that the ticket has been accepted.
2247 * The other way is to set zero length session ID when the
2248 * ticket is presented and rely on the handshake to determine
2249 * session resumption.
2251 * We choose the former approach because this fits in with
2252 * assumptions elsewhere in OpenSSL. The session ID is set
2253 * to the SHA256 (or SHA1 is SHA256 is disabled) hash of the
2256 EVP_Digest(p, ticklen,
2257 s->session->session_id, &s->session->session_id_length,
2258 #ifndef OPENSSL_NO_SHA256
2259 EVP_sha256(), NULL);
2266 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2271 int ssl3_get_cert_status(SSL *s)
2274 unsigned long resplen,n;
2275 const unsigned char *p;
2277 n=s->method->ssl_get_message(s,
2278 SSL3_ST_CR_CERT_STATUS_A,
2279 SSL3_ST_CR_CERT_STATUS_B,
2280 SSL3_MT_CERTIFICATE_STATUS,
2284 if (!ok) return((int)n);
2287 /* need at least status type + length */
2288 al = SSL_AD_DECODE_ERROR;
2289 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_LENGTH_MISMATCH);
2292 p = (unsigned char *)s->init_msg;
2293 if (*p++ != TLSEXT_STATUSTYPE_ocsp)
2295 al = SSL_AD_DECODE_ERROR;
2296 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_UNSUPPORTED_STATUS_TYPE);
2300 if (resplen + 4 != n)
2302 al = SSL_AD_DECODE_ERROR;
2303 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_LENGTH_MISMATCH);
2306 if (s->tlsext_ocsp_resp)
2307 OPENSSL_free(s->tlsext_ocsp_resp);
2308 s->tlsext_ocsp_resp = BUF_memdup(p, resplen);
2309 if (!s->tlsext_ocsp_resp)
2311 al = SSL_AD_INTERNAL_ERROR;
2312 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,ERR_R_MALLOC_FAILURE);
2315 s->tlsext_ocsp_resplen = resplen;
2316 if (s->ctx->tlsext_status_cb)
2319 ret = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
2322 al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
2323 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,SSL_R_INVALID_STATUS_RESPONSE);
2328 al = SSL_AD_INTERNAL_ERROR;
2329 SSLerr(SSL_F_SSL3_GET_CERT_STATUS,ERR_R_MALLOC_FAILURE);
2335 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2340 int ssl3_get_server_done(SSL *s)
2345 n=s->method->ssl_get_message(s,
2346 SSL3_ST_CR_SRVR_DONE_A,
2347 SSL3_ST_CR_SRVR_DONE_B,
2348 SSL3_MT_SERVER_DONE,
2349 30, /* should be very small, like 0 :-) */
2352 if (!ok) return((int)n);
2355 /* should contain no data */
2356 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_DECODE_ERROR);
2357 SSLerr(SSL_F_SSL3_GET_SERVER_DONE,SSL_R_LENGTH_MISMATCH);
2365 int ssl3_send_client_key_exchange(SSL *s)
2369 unsigned long alg_k;
2370 #ifndef OPENSSL_NO_RSA
2372 EVP_PKEY *pkey=NULL;
2374 #ifndef OPENSSL_NO_KRB5
2376 #endif /* OPENSSL_NO_KRB5 */
2377 #ifndef OPENSSL_NO_ECDH
2378 EC_KEY *clnt_ecdh = NULL;
2379 const EC_POINT *srvr_ecpoint = NULL;
2380 EVP_PKEY *srvr_pub_pkey = NULL;
2381 unsigned char *encodedPoint = NULL;
2382 int encoded_pt_len = 0;
2383 BN_CTX * bn_ctx = NULL;
2386 if (s->state == SSL3_ST_CW_KEY_EXCH_A)
2388 p = ssl_handshake_start(s);
2390 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
2392 /* Fool emacs indentation */
2394 #ifndef OPENSSL_NO_RSA
2395 else if (alg_k & SSL_kRSA)
2398 unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH];
2400 if (s->session->sess_cert->peer_rsa_tmp != NULL)
2401 rsa=s->session->sess_cert->peer_rsa_tmp;
2404 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
2405 if ((pkey == NULL) ||
2406 (pkey->type != EVP_PKEY_RSA) ||
2407 (pkey->pkey.rsa == NULL))
2409 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2413 EVP_PKEY_free(pkey);
2416 tmp_buf[0]=s->client_version>>8;
2417 tmp_buf[1]=s->client_version&0xff;
2418 if (RAND_bytes(&(tmp_buf[2]),sizeof tmp_buf-2) <= 0)
2421 s->session->master_key_length=sizeof tmp_buf;
2424 /* Fix buf for TLS and beyond */
2425 if (s->version > SSL3_VERSION)
2427 n=RSA_public_encrypt(sizeof tmp_buf,
2428 tmp_buf,p,rsa,RSA_PKCS1_PADDING);
2430 if (s->options & SSL_OP_PKCS1_CHECK_1) p[1]++;
2431 if (s->options & SSL_OP_PKCS1_CHECK_2) tmp_buf[0]=0x70;
2435 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_BAD_RSA_ENCRYPT);
2439 /* Fix buf for TLS and beyond */
2440 if (s->version > SSL3_VERSION)
2446 s->session->master_key_length=
2447 s->method->ssl3_enc->generate_master_secret(s,
2448 s->session->master_key,
2449 tmp_buf,sizeof tmp_buf);
2450 OPENSSL_cleanse(tmp_buf,sizeof tmp_buf);
2453 #ifndef OPENSSL_NO_KRB5
2454 else if (alg_k & SSL_kKRB5)
2456 krb5_error_code krb5rc;
2457 KSSL_CTX *kssl_ctx = s->kssl_ctx;
2458 /* krb5_data krb5_ap_req; */
2459 krb5_data *enc_ticket;
2460 krb5_data authenticator, *authp = NULL;
2461 EVP_CIPHER_CTX ciph_ctx;
2462 const EVP_CIPHER *enc = NULL;
2463 unsigned char iv[EVP_MAX_IV_LENGTH];
2464 unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH];
2465 unsigned char epms[SSL_MAX_MASTER_KEY_LENGTH
2466 + EVP_MAX_IV_LENGTH];
2467 int padl, outl = sizeof(epms);
2469 EVP_CIPHER_CTX_init(&ciph_ctx);
2472 printf("ssl3_send_client_key_exchange(%lx & %lx)\n",
2474 #endif /* KSSL_DEBUG */
2478 if (KRB5SENDAUTH) authp = &authenticator;
2479 #endif /* KRB5SENDAUTH */
2481 krb5rc = kssl_cget_tkt(kssl_ctx, &enc_ticket, authp,
2483 enc = kssl_map_enc(kssl_ctx->enctype);
2488 printf("kssl_cget_tkt rtn %d\n", krb5rc);
2489 if (krb5rc && kssl_err.text)
2490 printf("kssl_cget_tkt kssl_err=%s\n", kssl_err.text);
2492 #endif /* KSSL_DEBUG */
2496 ssl3_send_alert(s,SSL3_AL_FATAL,
2497 SSL_AD_HANDSHAKE_FAILURE);
2498 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2503 /* 20010406 VRS - Earlier versions used KRB5 AP_REQ
2504 ** in place of RFC 2712 KerberosWrapper, as in:
2506 ** Send ticket (copy to *p, set n = length)
2507 ** n = krb5_ap_req.length;
2508 ** memcpy(p, krb5_ap_req.data, krb5_ap_req.length);
2509 ** if (krb5_ap_req.data)
2510 ** kssl_krb5_free_data_contents(NULL,&krb5_ap_req);
2512 ** Now using real RFC 2712 KerberosWrapper
2513 ** (Thanks to Simon Wilkinson <sxw@sxw.org.uk>)
2514 ** Note: 2712 "opaque" types are here replaced
2515 ** with a 2-byte length followed by the value.
2517 ** KerberosWrapper= xx xx asn1ticket 0 0 xx xx encpms
2518 ** Where "xx xx" = length bytes. Shown here with
2519 ** optional authenticator omitted.
2522 /* KerberosWrapper.Ticket */
2523 s2n(enc_ticket->length,p);
2524 memcpy(p, enc_ticket->data, enc_ticket->length);
2525 p+= enc_ticket->length;
2526 n = enc_ticket->length + 2;
2528 /* KerberosWrapper.Authenticator */
2529 if (authp && authp->length)
2531 s2n(authp->length,p);
2532 memcpy(p, authp->data, authp->length);
2534 n+= authp->length + 2;
2542 s2n(0,p);/* null authenticator length */
2546 tmp_buf[0]=s->client_version>>8;
2547 tmp_buf[1]=s->client_version&0xff;
2548 if (RAND_bytes(&(tmp_buf[2]),sizeof tmp_buf-2) <= 0)
2551 /* 20010420 VRS. Tried it this way; failed.
2552 ** EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,NULL);
2553 ** EVP_CIPHER_CTX_set_key_length(&ciph_ctx,
2554 ** kssl_ctx->length);
2555 ** EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
2558 memset(iv, 0, sizeof iv); /* per RFC 1510 */
2559 EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,
2561 EVP_EncryptUpdate(&ciph_ctx,epms,&outl,tmp_buf,
2563 EVP_EncryptFinal_ex(&ciph_ctx,&(epms[outl]),&padl);
2565 if (outl > (int)sizeof epms)
2567 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2570 EVP_CIPHER_CTX_cleanup(&ciph_ctx);
2572 /* KerberosWrapper.EncryptedPreMasterSecret */
2574 memcpy(p, epms, outl);
2578 s->session->master_key_length=
2579 s->method->ssl3_enc->generate_master_secret(s,
2580 s->session->master_key,
2581 tmp_buf, sizeof tmp_buf);
2583 OPENSSL_cleanse(tmp_buf, sizeof tmp_buf);
2584 OPENSSL_cleanse(epms, outl);
2587 #ifndef OPENSSL_NO_DH
2588 else if (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
2590 DH *dh_srvr,*dh_clnt;
2591 SESS_CERT *scert = s->session->sess_cert;
2595 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_UNEXPECTED_MESSAGE);
2596 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_UNEXPECTED_MESSAGE);
2600 if (scert->peer_dh_tmp != NULL)
2601 dh_srvr=scert->peer_dh_tmp;
2604 /* we get them from the cert */
2605 int idx = scert->peer_cert_type;
2606 EVP_PKEY *spkey = NULL;
2609 spkey = X509_get_pubkey(
2610 scert->peer_pkeys[idx].x509);
2613 dh_srvr = EVP_PKEY_get1_DH(spkey);
2614 EVP_PKEY_free(spkey);
2616 if (dh_srvr == NULL)
2618 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2619 ERR_R_INTERNAL_ERROR);
2623 if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY)
2625 /* Use client certificate key */
2626 EVP_PKEY *clkey = s->cert->key->privatekey;
2629 dh_clnt = EVP_PKEY_get1_DH(clkey);
2630 if (dh_clnt == NULL)
2632 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2633 ERR_R_INTERNAL_ERROR);
2639 /* generate a new random key */
2640 if ((dh_clnt=DHparams_dup(dh_srvr)) == NULL)
2642 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2645 if (!DH_generate_key(dh_clnt))
2647 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2653 /* use the 'p' output buffer for the DH key, but
2654 * make sure to clear it out afterwards */
2656 n=DH_compute_key(p,dh_srvr->pub_key,dh_clnt);
2657 if (scert->peer_dh_tmp == NULL)
2662 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2667 /* generate master key from the result */
2668 s->session->master_key_length=
2669 s->method->ssl3_enc->generate_master_secret(s,
2670 s->session->master_key,p,n);
2674 if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY)
2678 /* send off the data */
2679 n=BN_num_bytes(dh_clnt->pub_key);
2681 BN_bn2bin(dh_clnt->pub_key,p);
2687 /* perhaps clean things up a bit EAY EAY EAY EAY*/
2691 #ifndef OPENSSL_NO_ECDH
2692 else if (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe))
2694 const EC_GROUP *srvr_group = NULL;
2696 int ecdh_clnt_cert = 0;
2699 /* Did we send out the client's
2700 * ECDH share for use in premaster
2701 * computation as part of client certificate?
2702 * If so, set ecdh_clnt_cert to 1.
2704 if ((alg_k & (SSL_kECDHr|SSL_kECDHe)) && (s->cert != NULL))
2706 /* XXX: For now, we do not support client
2707 * authentication using ECDH certificates.
2708 * To add such support, one needs to add
2709 * code that checks for appropriate
2710 * conditions and sets ecdh_clnt_cert to 1.
2711 * For example, the cert have an ECC
2712 * key on the same curve as the server's
2713 * and the key should be authorized for
2716 * One also needs to add code in ssl3_connect
2717 * to skip sending the certificate verify
2720 * if ((s->cert->key->privatekey != NULL) &&
2721 * (s->cert->key->privatekey->type ==
2722 * EVP_PKEY_EC) && ...)
2723 * ecdh_clnt_cert = 1;
2727 if (s->session->sess_cert->peer_ecdh_tmp != NULL)
2729 tkey = s->session->sess_cert->peer_ecdh_tmp;
2733 /* Get the Server Public Key from Cert */
2734 srvr_pub_pkey = X509_get_pubkey(s->session-> \
2735 sess_cert->peer_pkeys[SSL_PKEY_ECC].x509);
2736 if ((srvr_pub_pkey == NULL) ||
2737 (srvr_pub_pkey->type != EVP_PKEY_EC) ||
2738 (srvr_pub_pkey->pkey.ec == NULL))
2740 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2741 ERR_R_INTERNAL_ERROR);
2745 tkey = srvr_pub_pkey->pkey.ec;
2748 srvr_group = EC_KEY_get0_group(tkey);
2749 srvr_ecpoint = EC_KEY_get0_public_key(tkey);
2751 if ((srvr_group == NULL) || (srvr_ecpoint == NULL))
2753 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2754 ERR_R_INTERNAL_ERROR);
2758 if ((clnt_ecdh=EC_KEY_new()) == NULL)
2760 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
2764 if (!EC_KEY_set_group(clnt_ecdh, srvr_group))
2766 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_EC_LIB);
2771 /* Reuse key info from our certificate
2772 * We only need our private key to perform
2773 * the ECDH computation.
2775 const BIGNUM *priv_key;
2776 tkey = s->cert->key->privatekey->pkey.ec;
2777 priv_key = EC_KEY_get0_private_key(tkey);
2778 if (priv_key == NULL)
2780 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
2783 if (!EC_KEY_set_private_key(clnt_ecdh, priv_key))
2785 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_EC_LIB);
2791 /* Generate a new ECDH key pair */
2792 if (!(EC_KEY_generate_key(clnt_ecdh)))
2794 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2799 /* use the 'p' output buffer for the ECDH key, but
2800 * make sure to clear it out afterwards
2803 field_size = EC_GROUP_get_degree(srvr_group);
2804 if (field_size <= 0)
2806 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2810 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL);
2813 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2818 /* generate master key from the result */
2819 s->session->master_key_length = s->method->ssl3_enc \
2820 -> generate_master_secret(s,
2821 s->session->master_key,
2824 memset(p, 0, n); /* clean up */
2828 /* Send empty client key exch message */
2833 /* First check the size of encoding and
2834 * allocate memory accordingly.
2837 EC_POINT_point2oct(srvr_group,
2838 EC_KEY_get0_public_key(clnt_ecdh),
2839 POINT_CONVERSION_UNCOMPRESSED,
2842 encodedPoint = (unsigned char *)
2843 OPENSSL_malloc(encoded_pt_len *
2844 sizeof(unsigned char));
2845 bn_ctx = BN_CTX_new();
2846 if ((encodedPoint == NULL) ||
2849 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
2853 /* Encode the public key */
2854 n = EC_POINT_point2oct(srvr_group,
2855 EC_KEY_get0_public_key(clnt_ecdh),
2856 POINT_CONVERSION_UNCOMPRESSED,
2857 encodedPoint, encoded_pt_len, bn_ctx);
2859 *p = n; /* length of encoded point */
2860 /* Encoded point will be copied here */
2862 /* copy the point */
2863 memcpy((unsigned char *)p, encodedPoint, n);
2864 /* increment n to account for length field */
2868 /* Free allocated memory */
2869 BN_CTX_free(bn_ctx);
2870 if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
2871 if (clnt_ecdh != NULL)
2872 EC_KEY_free(clnt_ecdh);
2873 EVP_PKEY_free(srvr_pub_pkey);
2875 #endif /* !OPENSSL_NO_ECDH */
2876 else if (alg_k & SSL_kGOST)
2878 /* GOST key exchange message creation */
2879 EVP_PKEY_CTX *pkey_ctx;
2882 unsigned int md_len;
2884 unsigned char premaster_secret[32],shared_ukm[32], tmp[256];
2885 EVP_MD_CTX *ukm_hash;
2888 /* Get server sertificate PKEY and create ctx from it */
2889 peer_cert=s->session->sess_cert->peer_pkeys[(keytype=SSL_PKEY_GOST01)].x509;
2891 peer_cert=s->session->sess_cert->peer_pkeys[(keytype=SSL_PKEY_GOST94)].x509;
2893 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
2897 pkey_ctx=EVP_PKEY_CTX_new(pub_key=X509_get_pubkey(peer_cert),NULL);
2898 /* If we have send a certificate, and certificate key
2900 * parameters match those of server certificate, use
2901 * certificate key for key exchange
2904 /* Otherwise, generate ephemeral key pair */
2906 EVP_PKEY_encrypt_init(pkey_ctx);
2907 /* Generate session key */
2908 RAND_bytes(premaster_secret,32);
2909 /* If we have client certificate, use its secret as peer key */
2910 if (s->s3->tmp.cert_req && s->cert->key->privatekey) {
2911 if (EVP_PKEY_derive_set_peer(pkey_ctx,s->cert->key->privatekey) <=0) {
2912 /* If there was an error - just ignore it. Ephemeral key
2918 /* Compute shared IV and store it in algorithm-specific
2920 ukm_hash = EVP_MD_CTX_create();
2921 EVP_DigestInit(ukm_hash,EVP_get_digestbynid(NID_id_GostR3411_94));
2922 EVP_DigestUpdate(ukm_hash,s->s3->client_random,SSL3_RANDOM_SIZE);
2923 EVP_DigestUpdate(ukm_hash,s->s3->server_random,SSL3_RANDOM_SIZE);
2924 EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len);
2925 EVP_MD_CTX_destroy(ukm_hash);
2926 if (EVP_PKEY_CTX_ctrl(pkey_ctx,-1,EVP_PKEY_OP_ENCRYPT,EVP_PKEY_CTRL_SET_IV,
2928 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2932 /* Make GOST keytransport blob message */
2933 /*Encapsulate it into sequence */
2934 *(p++)=V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED;
2936 if (EVP_PKEY_encrypt(pkey_ctx,tmp,&msglen,premaster_secret,32)<0) {
2937 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2944 *(p++)= msglen & 0xff;
2949 *(p++)= msglen & 0xff;
2952 memcpy(p, tmp, msglen);
2953 /* Check if pubkey from client certificate was used */
2954 if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2956 /* Set flag "skip certificate verify" */
2957 s->s3->flags |= TLS1_FLAGS_SKIP_CERT_VERIFY;
2959 EVP_PKEY_CTX_free(pkey_ctx);
2960 s->session->master_key_length=
2961 s->method->ssl3_enc->generate_master_secret(s,
2962 s->session->master_key,premaster_secret,32);
2963 EVP_PKEY_free(pub_key);
2966 #ifndef OPENSSL_NO_SRP
2967 else if (alg_k & SSL_kSRP)
2969 if (s->srp_ctx.A != NULL)
2971 /* send off the data */
2972 n=BN_num_bytes(s->srp_ctx.A);
2974 BN_bn2bin(s->srp_ctx.A,p);
2979 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2982 if (s->session->srp_username != NULL)
2983 OPENSSL_free(s->session->srp_username);
2984 s->session->srp_username = BUF_strdup(s->srp_ctx.login);
2985 if (s->session->srp_username == NULL)
2987 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2988 ERR_R_MALLOC_FAILURE);
2992 if ((s->session->master_key_length = SRP_generate_client_master_secret(s,s->session->master_key))<0)
2994 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2999 #ifndef OPENSSL_NO_PSK
3000 else if (alg_k & SSL_kPSK)
3002 char identity[PSK_MAX_IDENTITY_LEN];
3003 unsigned char *t = NULL;
3004 unsigned char psk_or_pre_ms[PSK_MAX_PSK_LEN*2+4];
3005 unsigned int pre_ms_len = 0, psk_len = 0;
3009 if (s->psk_client_callback == NULL)
3011 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3012 SSL_R_PSK_NO_CLIENT_CB);
3016 psk_len = s->psk_client_callback(s, s->ctx->psk_identity_hint,
3017 identity, PSK_MAX_IDENTITY_LEN,
3018 psk_or_pre_ms, sizeof(psk_or_pre_ms));
3019 if (psk_len > PSK_MAX_PSK_LEN)
3021 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3022 ERR_R_INTERNAL_ERROR);
3025 else if (psk_len == 0)
3027 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3028 SSL_R_PSK_IDENTITY_NOT_FOUND);
3032 /* create PSK pre_master_secret */
3033 pre_ms_len = 2+psk_len+2+psk_len;
3035 memmove(psk_or_pre_ms+psk_len+4, psk_or_pre_ms, psk_len);
3037 memset(t, 0, psk_len);
3041 if (s->session->psk_identity_hint != NULL)
3042 OPENSSL_free(s->session->psk_identity_hint);
3043 s->session->psk_identity_hint = BUF_strdup(s->ctx->psk_identity_hint);
3044 if (s->ctx->psk_identity_hint != NULL &&
3045 s->session->psk_identity_hint == NULL)
3047 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3048 ERR_R_MALLOC_FAILURE);
3052 if (s->session->psk_identity != NULL)
3053 OPENSSL_free(s->session->psk_identity);
3054 s->session->psk_identity = BUF_strdup(identity);
3055 if (s->session->psk_identity == NULL)
3057 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3058 ERR_R_MALLOC_FAILURE);
3062 s->session->master_key_length =
3063 s->method->ssl3_enc->generate_master_secret(s,
3064 s->session->master_key,
3065 psk_or_pre_ms, pre_ms_len);
3066 n = strlen(identity);
3068 memcpy(p, identity, n);
3072 OPENSSL_cleanse(identity, PSK_MAX_IDENTITY_LEN);
3073 OPENSSL_cleanse(psk_or_pre_ms, sizeof(psk_or_pre_ms));
3076 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);