1 /* ssl/s3_srvr.c -*- mode:C; c-file-style: "eay" -*- */
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
151 #define REUSE_CIPHER_BUG
152 #define NETSCAPE_HANG_BUG
155 #include "ssl_locl.h"
156 #include "kssl_lcl.h"
157 #include <openssl/buffer.h>
158 #include <openssl/rand.h>
159 #include <openssl/objects.h>
160 #include <openssl/evp.h>
161 #include <openssl/hmac.h>
162 #include <openssl/x509.h>
163 #ifndef OPENSSL_NO_DH
164 #include <openssl/dh.h>
166 #include <openssl/bn.h>
167 #ifndef OPENSSL_NO_KRB5
168 #include <openssl/krb5_asn.h>
170 #include <openssl/md5.h>
172 static const SSL_METHOD *ssl3_get_server_method(int ver);
174 static const SSL_METHOD *ssl3_get_server_method(int ver)
176 if (ver == SSL3_VERSION)
177 return(SSLv3_server_method());
182 #ifndef OPENSSL_NO_SRP
183 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
185 int ret = SSL_ERROR_NONE;
187 *al = SSL_AD_UNRECOGNIZED_NAME;
189 if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
190 (s->srp_ctx.TLS_ext_srp_username_callback != NULL))
192 if(s->srp_ctx.login == NULL)
194 /* RFC 5054 says SHOULD reject,
195 we do so if There is no srp login name */
197 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
201 ret = SSL_srp_server_param_with_username(s,al);
208 IMPLEMENT_ssl3_meth_func(SSLv3_server_method,
210 ssl_undefined_function,
211 ssl3_get_server_method)
213 int ssl3_accept(SSL *s)
216 unsigned long alg_k,Time=(unsigned long)time(NULL);
217 void (*cb)(const SSL *ssl,int type,int val)=NULL;
219 int new_state,state,skip=0;
221 RAND_add(&Time,sizeof(Time),0);
225 if (s->info_callback != NULL)
227 else if (s->ctx->info_callback != NULL)
228 cb=s->ctx->info_callback;
230 /* init things to blank */
232 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
236 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
240 #ifndef OPENSSL_NO_HEARTBEATS
241 /* If we're awaiting a HeartbeatResponse, pretend we
242 * already got and don't await it anymore, because
243 * Heartbeats don't make sense during handshakes anyway.
245 if (s->tlsext_hb_pending)
247 s->tlsext_hb_pending = 0;
258 case SSL_ST_RENEGOTIATE:
260 /* s->state=SSL_ST_ACCEPT; */
264 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
265 case SSL_ST_OK|SSL_ST_ACCEPT:
268 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
270 if ((s->version>>8) != 3)
272 SSLerr(SSL_F_SSL3_ACCEPT, ERR_R_INTERNAL_ERROR);
275 s->type=SSL_ST_ACCEPT;
277 if (s->init_buf == NULL)
279 if ((buf=BUF_MEM_new()) == NULL)
284 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
292 if (!ssl3_setup_buffers(s))
299 s->s3->flags &= ~SSL3_FLAGS_SGC_RESTART_DONE;
300 s->s3->flags &= ~TLS1_FLAGS_SKIP_CERT_VERIFY;
302 if (s->state != SSL_ST_RENEGOTIATE)
304 /* Ok, we now need to push on a buffering BIO so that
305 * the output is sent in a way that TCP likes :-)
307 if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
309 ssl3_init_finished_mac(s);
310 s->state=SSL3_ST_SR_CLNT_HELLO_A;
311 s->ctx->stats.sess_accept++;
313 else if (!s->s3->send_connection_binding &&
314 !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION))
316 /* Server attempting to renegotiate with
317 * client that doesn't support secure
320 SSLerr(SSL_F_SSL3_ACCEPT, SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
321 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_HANDSHAKE_FAILURE);
327 /* s->state == SSL_ST_RENEGOTIATE,
328 * we will just send a HelloRequest */
329 s->ctx->stats.sess_accept_renegotiate++;
330 s->state=SSL3_ST_SW_HELLO_REQ_A;
334 case SSL3_ST_SW_HELLO_REQ_A:
335 case SSL3_ST_SW_HELLO_REQ_B:
338 ret=ssl3_send_hello_request(s);
339 if (ret <= 0) goto end;
340 s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
341 s->state=SSL3_ST_SW_FLUSH;
344 ssl3_init_finished_mac(s);
347 case SSL3_ST_SW_HELLO_REQ_C:
351 case SSL3_ST_SR_CLNT_HELLO_A:
352 case SSL3_ST_SR_CLNT_HELLO_B:
353 case SSL3_ST_SR_CLNT_HELLO_C:
355 if (s->rwstate != SSL_X509_LOOKUP)
357 ret=ssl3_get_client_hello(s);
358 if (ret <= 0) goto end;
360 #ifndef OPENSSL_NO_SRP
363 if ((ret = ssl_check_srp_ext_ClientHello(s,&al)) < 0)
365 /* callback indicates firther work to be done */
366 s->rwstate=SSL_X509_LOOKUP;
369 if (ret != SSL_ERROR_NONE)
371 ssl3_send_alert(s,SSL3_AL_FATAL,al);
372 /* This is not really an error but the only means to
373 for a client to detect whether srp is supported. */
374 if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
375 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_CLIENTHELLO_TLSEXT);
376 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
384 s->state=SSL3_ST_SW_SRVR_HELLO_A;
388 case SSL3_ST_SW_SRVR_HELLO_A:
389 case SSL3_ST_SW_SRVR_HELLO_B:
390 ret=ssl3_send_server_hello(s);
391 if (ret <= 0) goto end;
392 #ifndef OPENSSL_NO_TLSEXT
395 if (s->tlsext_ticket_expected)
396 s->state=SSL3_ST_SW_SESSION_TICKET_A;
398 s->state=SSL3_ST_SW_CHANGE_A;
402 s->state=SSL3_ST_SW_CHANGE_A;
405 #ifndef OPENSSL_NO_TLSEXT
406 s->state = SSL3_ST_SW_SUPPLEMENTAL_DATA_A;
408 s->state = SSL3_ST_SW_CERT_A;
413 #ifndef OPENSSL_NO_TLSEXT
414 case SSL3_ST_SW_SUPPLEMENTAL_DATA_A:
415 case SSL3_ST_SW_SUPPLEMENTAL_DATA_B:
416 ret = tls1_send_server_supplemental_data(s, &skip);
417 if (ret <= 0) goto end;
419 s->state = SSL3_ST_SW_CERT_A;
424 case SSL3_ST_SW_CERT_A:
425 case SSL3_ST_SW_CERT_B:
426 /* Check if it is anon DH or anon ECDH, */
427 /* normal PSK or KRB5 or SRP */
428 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
429 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)
430 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
432 ret=ssl3_send_server_certificate(s);
433 if (ret <= 0) goto end;
434 #ifndef OPENSSL_NO_TLSEXT
435 if (s->tlsext_status_expected)
436 s->state=SSL3_ST_SW_CERT_STATUS_A;
438 s->state=SSL3_ST_SW_KEY_EXCH_A;
443 s->state=SSL3_ST_SW_KEY_EXCH_A;
450 s->state=SSL3_ST_SW_KEY_EXCH_A;
455 case SSL3_ST_SW_KEY_EXCH_A:
456 case SSL3_ST_SW_KEY_EXCH_B:
457 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
459 /* clear this, it may get reset by
460 * send_server_key_exchange */
461 if ((s->options & SSL_OP_EPHEMERAL_RSA)
462 #ifndef OPENSSL_NO_KRB5
463 && !(alg_k & SSL_kKRB5)
464 #endif /* OPENSSL_NO_KRB5 */
466 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
467 * even when forbidden by protocol specs
468 * (handshake may fail as clients are not required to
469 * be able to handle this) */
470 s->s3->tmp.use_rsa_tmp=1;
472 s->s3->tmp.use_rsa_tmp=0;
475 /* only send if a DH key exchange, fortezza or
476 * RSA but we have a sign only certificate
478 * PSK: may send PSK identity hints
480 * For ECC ciphersuites, we send a serverKeyExchange
481 * message only if the cipher suite is either
482 * ECDH-anon or ECDHE. In other cases, the
483 * server certificate contains the server's
484 * public key for key exchange.
486 if (s->s3->tmp.use_rsa_tmp
487 /* PSK: send ServerKeyExchange if PSK identity
488 * hint if provided */
489 #ifndef OPENSSL_NO_PSK
490 || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
492 #ifndef OPENSSL_NO_SRP
493 /* SRP: send ServerKeyExchange */
494 || (alg_k & SSL_kSRP)
496 || (alg_k & SSL_kEDH)
497 || (alg_k & SSL_kEECDH)
498 || ((alg_k & SSL_kRSA)
499 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
500 || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
501 && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
507 ret=ssl3_send_server_key_exchange(s);
508 if (ret <= 0) goto end;
513 s->state=SSL3_ST_SW_CERT_REQ_A;
517 case SSL3_ST_SW_CERT_REQ_A:
518 case SSL3_ST_SW_CERT_REQ_B:
519 if (/* don't request cert unless asked for it: */
520 !(s->verify_mode & SSL_VERIFY_PEER) ||
521 /* if SSL_VERIFY_CLIENT_ONCE is set,
522 * don't request cert during re-negotiation: */
523 ((s->session->peer != NULL) &&
524 (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
525 /* never request cert in anonymous ciphersuites
526 * (see section "Certificate request" in SSL 3 drafts
527 * and in RFC 2246): */
528 ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
529 /* ... except when the application insists on verification
530 * (against the specs, but s3_clnt.c accepts this for SSL 3) */
531 !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
532 /* never request cert in Kerberos ciphersuites */
533 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5)
534 /* With normal PSK Certificates and
535 * Certificate Requests are omitted */
536 || (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
538 /* no cert request */
540 s->s3->tmp.cert_request=0;
541 s->state=SSL3_ST_SW_SRVR_DONE_A;
542 if (s->s3->handshake_buffer)
543 if (!ssl3_digest_cached_records(s))
548 s->s3->tmp.cert_request=1;
549 ret=ssl3_send_certificate_request(s);
550 if (ret <= 0) goto end;
551 #ifndef NETSCAPE_HANG_BUG
552 s->state=SSL3_ST_SW_SRVR_DONE_A;
554 s->state=SSL3_ST_SW_FLUSH;
555 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
561 case SSL3_ST_SW_SRVR_DONE_A:
562 case SSL3_ST_SW_SRVR_DONE_B:
563 ret=ssl3_send_server_done(s);
564 if (ret <= 0) goto end;
565 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
566 s->state=SSL3_ST_SW_FLUSH;
570 case SSL3_ST_SW_FLUSH:
572 /* This code originally checked to see if
573 * any data was pending using BIO_CTRL_INFO
574 * and then flushed. This caused problems
575 * as documented in PR#1939. The proposed
576 * fix doesn't completely resolve this issue
577 * as buggy implementations of BIO_CTRL_PENDING
578 * still exist. So instead we just flush
582 s->rwstate=SSL_WRITING;
583 if (BIO_flush(s->wbio) <= 0)
588 s->rwstate=SSL_NOTHING;
590 s->state=s->s3->tmp.next_state;
592 #ifndef OPENSSL_NO_TLSEXT
593 case SSL3_ST_SR_SUPPLEMENTAL_DATA_A:
594 case SSL3_ST_SR_SUPPLEMENTAL_DATA_B:
595 ret=tls1_get_client_supplemental_data(s);
596 if (ret <= 0) goto end;
597 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
598 s->state=SSL3_ST_SW_FLUSH;
602 case SSL3_ST_SR_CERT_A:
603 case SSL3_ST_SR_CERT_B:
604 /* Check for second client hello (MS SGC) */
605 ret = ssl3_check_client_hello(s);
609 s->state = SSL3_ST_SR_CLNT_HELLO_C;
610 #ifndef OPENSSL_NO_TLSEXT
612 s->state = SSL3_ST_SR_SUPPLEMENTAL_DATA_A;
615 if (s->s3->tmp.cert_request)
617 ret=ssl3_get_client_certificate(s);
618 if (ret <= 0) goto end;
621 s->state=SSL3_ST_SR_KEY_EXCH_A;
625 case SSL3_ST_SR_KEY_EXCH_A:
626 case SSL3_ST_SR_KEY_EXCH_B:
627 ret=ssl3_get_client_key_exchange(s);
632 /* For the ECDH ciphersuites when
633 * the client sends its ECDH pub key in
634 * a certificate, the CertificateVerify
635 * message is not sent.
636 * Also for GOST ciphersuites when
637 * the client uses its key from the certificate
640 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
641 s->state=SSL3_ST_SR_FINISHED_A;
643 if (s->s3->next_proto_neg_seen)
644 s->state=SSL3_ST_SR_NEXT_PROTO_A;
646 s->state=SSL3_ST_SR_FINISHED_A;
650 else if (SSL_USE_SIGALGS(s))
652 s->state=SSL3_ST_SR_CERT_VRFY_A;
654 if (!s->session->peer)
656 /* For sigalgs freeze the handshake buffer
657 * at this point and digest cached records.
659 if (!s->s3->handshake_buffer)
661 SSLerr(SSL_F_SSL3_ACCEPT,ERR_R_INTERNAL_ERROR);
664 s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE;
665 if (!ssl3_digest_cached_records(s))
673 s->state=SSL3_ST_SR_CERT_VRFY_A;
676 /* We need to get hashes here so if there is
677 * a client cert, it can be verified
678 * FIXME - digest processing for CertificateVerify
679 * should be generalized. But it is next step
681 if (s->s3->handshake_buffer)
682 if (!ssl3_digest_cached_records(s))
684 for (dgst_num=0; dgst_num<SSL_MAX_DIGEST;dgst_num++)
685 if (s->s3->handshake_dgst[dgst_num])
689 s->method->ssl3_enc->cert_verify_mac(s,EVP_MD_CTX_type(s->s3->handshake_dgst[dgst_num]),&(s->s3->tmp.cert_verify_md[offset]));
690 dgst_size=EVP_MD_CTX_size(s->s3->handshake_dgst[dgst_num]);
701 case SSL3_ST_SR_CERT_VRFY_A:
702 case SSL3_ST_SR_CERT_VRFY_B:
704 /* we should decide if we expected this one */
705 ret=ssl3_get_cert_verify(s);
706 if (ret <= 0) goto end;
708 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
709 s->state=SSL3_ST_SR_FINISHED_A;
711 if (s->s3->next_proto_neg_seen)
712 s->state=SSL3_ST_SR_NEXT_PROTO_A;
714 s->state=SSL3_ST_SR_FINISHED_A;
719 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
720 case SSL3_ST_SR_NEXT_PROTO_A:
721 case SSL3_ST_SR_NEXT_PROTO_B:
722 ret=ssl3_get_next_proto(s);
723 if (ret <= 0) goto end;
725 s->state=SSL3_ST_SR_FINISHED_A;
729 case SSL3_ST_SR_FINISHED_A:
730 case SSL3_ST_SR_FINISHED_B:
731 ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
732 SSL3_ST_SR_FINISHED_B);
733 if (ret <= 0) goto end;
736 #ifndef OPENSSL_NO_TLSEXT
737 else if (s->tlsext_ticket_expected)
738 s->state=SSL3_ST_SW_SESSION_TICKET_A;
741 s->state=SSL3_ST_SW_CHANGE_A;
745 #ifndef OPENSSL_NO_TLSEXT
746 case SSL3_ST_SW_SESSION_TICKET_A:
747 case SSL3_ST_SW_SESSION_TICKET_B:
748 ret=ssl3_send_newsession_ticket(s);
749 if (ret <= 0) goto end;
750 s->state=SSL3_ST_SW_CHANGE_A;
754 case SSL3_ST_SW_CERT_STATUS_A:
755 case SSL3_ST_SW_CERT_STATUS_B:
756 ret=ssl3_send_cert_status(s);
757 if (ret <= 0) goto end;
758 s->state=SSL3_ST_SW_KEY_EXCH_A;
764 case SSL3_ST_SW_CHANGE_A:
765 case SSL3_ST_SW_CHANGE_B:
767 s->session->cipher=s->s3->tmp.new_cipher;
768 if (!s->method->ssl3_enc->setup_key_block(s))
769 { ret= -1; goto end; }
771 ret=ssl3_send_change_cipher_spec(s,
772 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
774 if (ret <= 0) goto end;
775 s->state=SSL3_ST_SW_FINISHED_A;
778 if (!s->method->ssl3_enc->change_cipher_state(s,
779 SSL3_CHANGE_CIPHER_SERVER_WRITE))
787 case SSL3_ST_SW_FINISHED_A:
788 case SSL3_ST_SW_FINISHED_B:
789 ret=ssl3_send_finished(s,
790 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
791 s->method->ssl3_enc->server_finished_label,
792 s->method->ssl3_enc->server_finished_label_len);
793 if (ret <= 0) goto end;
794 s->state=SSL3_ST_SW_FLUSH;
797 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
798 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
800 if (s->s3->next_proto_neg_seen)
801 s->s3->tmp.next_state=SSL3_ST_SR_NEXT_PROTO_A;
803 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
807 s->s3->tmp.next_state=SSL_ST_OK;
812 /* clean a few things up */
813 ssl3_cleanup_key_block(s);
815 BUF_MEM_free(s->init_buf);
818 /* remove buffering on output */
819 ssl_free_wbio_buffer(s);
823 if (s->renegotiate == 2) /* skipped if we just sent a HelloRequest */
828 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
830 s->ctx->stats.sess_accept_good++;
832 s->handshake_func=ssl3_accept;
834 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
842 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_UNKNOWN_STATE);
848 if (!s->s3->tmp.reuse_message && !skip)
852 if ((ret=BIO_flush(s->wbio)) <= 0)
857 if ((cb != NULL) && (s->state != state))
861 cb(s,SSL_CB_ACCEPT_LOOP,1);
868 /* BIO_flush(s->wbio); */
872 cb(s,SSL_CB_ACCEPT_EXIT,ret);
876 int ssl3_send_hello_request(SSL *s)
879 if (s->state == SSL3_ST_SW_HELLO_REQ_A)
881 ssl_set_handshake_header(s, SSL3_MT_HELLO_REQUEST, 0);
882 s->state=SSL3_ST_SW_HELLO_REQ_B;
885 /* SSL3_ST_SW_HELLO_REQ_B */
886 return ssl_do_write(s);
889 int ssl3_check_client_hello(SSL *s)
894 /* this function is called when we really expect a Certificate message,
895 * so permit appropriate message length */
896 n=s->method->ssl_get_message(s,
902 if (!ok) return((int)n);
903 s->s3->tmp.reuse_message = 1;
904 #ifndef OPENSSL_NO_TLSEXT
905 if (s->s3->tmp.message_type == SSL3_MT_SUPPLEMENTAL_DATA)
910 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_HELLO)
912 /* We only allow the client to restart the handshake once per
914 if (s->s3->flags & SSL3_FLAGS_SGC_RESTART_DONE)
916 SSLerr(SSL_F_SSL3_CHECK_CLIENT_HELLO, SSL_R_MULTIPLE_SGC_RESTARTS);
919 /* Throw away what we have done so far in the current handshake,
920 * which will now be aborted. (A full SSL_clear would be too much.) */
921 #ifndef OPENSSL_NO_DH
922 if (s->s3->tmp.dh != NULL)
924 DH_free(s->s3->tmp.dh);
925 s->s3->tmp.dh = NULL;
928 #ifndef OPENSSL_NO_ECDH
929 if (s->s3->tmp.ecdh != NULL)
931 EC_KEY_free(s->s3->tmp.ecdh);
932 s->s3->tmp.ecdh = NULL;
935 s->s3->flags |= SSL3_FLAGS_SGC_RESTART_DONE;
941 int ssl3_get_client_hello(SSL *s)
943 int i,j,ok,al=SSL_AD_INTERNAL_ERROR,ret= -1;
944 unsigned int cookie_len;
949 #ifndef OPENSSL_NO_COMP
953 STACK_OF(SSL_CIPHER) *ciphers=NULL;
955 /* We do this so that we will respond with our native type.
956 * If we are TLSv1 and we get SSLv3, we will respond with TLSv1,
957 * This down switching should be handled by a different method.
958 * If we are SSLv3, we will respond with SSLv3, even if prompted with
961 if (s->state == SSL3_ST_SR_CLNT_HELLO_A
964 s->state=SSL3_ST_SR_CLNT_HELLO_B;
967 n=s->method->ssl_get_message(s,
968 SSL3_ST_SR_CLNT_HELLO_B,
969 SSL3_ST_SR_CLNT_HELLO_C,
970 SSL3_MT_CLIENT_HELLO,
971 SSL3_RT_MAX_PLAIN_LENGTH,
974 if (!ok) return((int)n);
976 d=p=(unsigned char *)s->init_msg;
978 /* use version from inside client hello, not from record header
979 * (may differ: see RFC 2246, Appendix E, second paragraph) */
980 s->client_version=(((int)p[0])<<8)|(int)p[1];
983 if ((SSL_IS_DTLS(s) && s->client_version > s->version
984 && s->method->version != DTLS_ANY_VERSION) ||
985 (!SSL_IS_DTLS(s) && s->client_version < s->version))
987 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_WRONG_VERSION_NUMBER);
988 if ((s->client_version>>8) == SSL3_VERSION_MAJOR)
990 /* similar to ssl3_get_record, send alert using remote version number */
991 s->version = s->client_version;
993 al = SSL_AD_PROTOCOL_VERSION;
997 /* If we require cookies and this ClientHello doesn't
998 * contain one, just return since we do not want to
999 * allocate any memory yet. So check cookie length...
1001 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE)
1003 unsigned int session_length, cookie_length;
1005 session_length = *(p + SSL3_RANDOM_SIZE);
1006 cookie_length = *(p + SSL3_RANDOM_SIZE + session_length + 1);
1008 if (cookie_length == 0)
1012 /* load the client random */
1013 memcpy(s->s3->client_random,p,SSL3_RANDOM_SIZE);
1014 p+=SSL3_RANDOM_SIZE;
1016 /* get the session-id */
1020 /* Versions before 0.9.7 always allow clients to resume sessions in renegotiation.
1021 * 0.9.7 and later allow this by default, but optionally ignore resumption requests
1022 * with flag SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1023 * than a change to default behavior so that applications relying on this for security
1024 * won't even compile against older library versions).
1026 * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to request
1027 * renegotiation but not a new session (s->new_session remains unset): for servers,
1028 * this essentially just means that the SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
1029 * setting will be ignored.
1031 if ((s->new_session && (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION)))
1033 if (!ssl_get_new_session(s,1))
1038 i=ssl_get_prev_session(s, p, j, d + n);
1040 { /* previous session */
1047 if (!ssl_get_new_session(s,1))
1057 cookie_len = *(p++);
1060 * The ClientHello may contain a cookie even if the
1061 * HelloVerify message has not been sent--make sure that it
1062 * does not cause an overflow.
1064 if ( cookie_len > sizeof(s->d1->rcvd_cookie))
1067 al = SSL_AD_DECODE_ERROR;
1068 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1072 /* verify the cookie if appropriate option is set. */
1073 if ((SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) &&
1076 memcpy(s->d1->rcvd_cookie, p, cookie_len);
1078 if ( s->ctx->app_verify_cookie_cb != NULL)
1080 if ( s->ctx->app_verify_cookie_cb(s, s->d1->rcvd_cookie,
1083 al=SSL_AD_HANDSHAKE_FAILURE;
1084 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1085 SSL_R_COOKIE_MISMATCH);
1088 /* else cookie verification succeeded */
1090 else if ( memcmp(s->d1->rcvd_cookie, s->d1->cookie,
1091 s->d1->cookie_len) != 0) /* default verification */
1093 al=SSL_AD_HANDSHAKE_FAILURE;
1094 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1095 SSL_R_COOKIE_MISMATCH);
1098 /* Set to -2 so if successful we return 2 */
1103 if (s->method->version == DTLS_ANY_VERSION)
1105 /* Select version to use */
1106 if (s->client_version <= DTLS1_2_VERSION &&
1107 !(s->options & SSL_OP_NO_DTLSv1_2))
1109 s->version = DTLS1_2_VERSION;
1110 s->method = DTLSv1_2_server_method();
1112 else if (tls1_suiteb(s))
1114 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE);
1115 s->version = s->client_version;
1116 al = SSL_AD_PROTOCOL_VERSION;
1119 else if (s->client_version <= DTLS1_VERSION &&
1120 !(s->options & SSL_OP_NO_DTLSv1))
1122 s->version = DTLS1_VERSION;
1123 s->method = DTLSv1_server_method();
1127 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_WRONG_VERSION_NUMBER);
1128 s->version = s->client_version;
1129 al = SSL_AD_PROTOCOL_VERSION;
1132 s->session->ssl_version = s->version;
1137 if ((i == 0) && (j != 0))
1139 /* we need a cipher if we are not resuming a session */
1140 al=SSL_AD_ILLEGAL_PARAMETER;
1141 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_SPECIFIED);
1146 /* not enough data */
1147 al=SSL_AD_DECODE_ERROR;
1148 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
1151 if ((i > 0) && (ssl_bytes_to_cipher_list(s,p,i,&(ciphers))
1158 /* If it is a hit, check that the cipher is in the list */
1159 if ((s->hit) && (i > 0))
1162 id=s->session->cipher->id;
1165 printf("client sent %d ciphers\n",sk_num(ciphers));
1167 for (i=0; i<sk_SSL_CIPHER_num(ciphers); i++)
1169 c=sk_SSL_CIPHER_value(ciphers,i);
1171 printf("client [%2d of %2d]:%s\n",
1172 i,sk_num(ciphers),SSL_CIPHER_get_name(c));
1180 /* Disabled because it can be used in a ciphersuite downgrade
1181 * attack: CVE-2010-4180.
1184 if (j == 0 && (s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG) && (sk_SSL_CIPHER_num(ciphers) == 1))
1186 /* Special case as client bug workaround: the previously used cipher may
1187 * not be in the current list, the client instead might be trying to
1188 * continue using a cipher that before wasn't chosen due to server
1189 * preferences. We'll have to reject the connection if the cipher is not
1190 * enabled, though. */
1191 c = sk_SSL_CIPHER_value(ciphers, 0);
1192 if (sk_SSL_CIPHER_find(SSL_get_ciphers(s), c) >= 0)
1194 s->session->cipher = c;
1201 /* we need to have the cipher in the cipher
1202 * list if we are asked to reuse it */
1203 al=SSL_AD_ILLEGAL_PARAMETER;
1204 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_CIPHER_MISSING);
1213 /* not enough data */
1214 al=SSL_AD_DECODE_ERROR;
1215 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
1218 #ifndef OPENSSL_NO_COMP
1223 if (p[j] == 0) break;
1230 al=SSL_AD_DECODE_ERROR;
1231 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_COMPRESSION_SPECIFIED);
1235 #ifndef OPENSSL_NO_TLSEXT
1237 if (s->version >= SSL3_VERSION)
1239 if (!ssl_parse_clienthello_tlsext(s,&p,d,n))
1241 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_PARSE_TLSEXT);
1246 /* Check if we want to use external pre-shared secret for this
1247 * handshake for not reused session only. We need to generate
1248 * server_random before calling tls_session_secret_cb in order to allow
1249 * SessionTicket processing to use it in key derivation. */
1253 Time=(unsigned long)time(NULL); /* Time */
1254 pos=s->s3->server_random;
1256 if (RAND_pseudo_bytes(pos,SSL3_RANDOM_SIZE-4) <= 0)
1262 if (!s->hit && s->version >= TLS1_VERSION && s->tls_session_secret_cb)
1264 SSL_CIPHER *pref_cipher=NULL;
1266 s->session->master_key_length=sizeof(s->session->master_key);
1267 if(s->tls_session_secret_cb(s, s->session->master_key, &s->session->master_key_length,
1268 ciphers, &pref_cipher, s->tls_session_secret_cb_arg))
1271 s->session->ciphers=ciphers;
1272 s->session->verify_result=X509_V_OK;
1276 /* check if some cipher was preferred by call back */
1277 pref_cipher=pref_cipher ? pref_cipher : ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1278 if (pref_cipher == NULL)
1280 al=SSL_AD_HANDSHAKE_FAILURE;
1281 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
1285 s->session->cipher=pref_cipher;
1288 sk_SSL_CIPHER_free(s->cipher_list);
1290 if (s->cipher_list_by_id)
1291 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1293 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1294 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1299 /* Worst case, we will use the NULL compression, but if we have other
1300 * options, we will now look for them. We have i-1 compression
1301 * algorithms from the client, starting at q. */
1302 s->s3->tmp.new_compression=NULL;
1303 #ifndef OPENSSL_NO_COMP
1304 /* This only happens if we have a cache hit */
1305 if (s->session->compress_meth != 0)
1307 int m, comp_id = s->session->compress_meth;
1308 /* Perform sanity checks on resumed compression algorithm */
1309 /* Can't disable compression */
1310 if (s->options & SSL_OP_NO_COMPRESSION)
1312 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
1315 /* Look for resumed compression method */
1316 for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++)
1318 comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
1319 if (comp_id == comp->id)
1321 s->s3->tmp.new_compression=comp;
1325 if (s->s3->tmp.new_compression == NULL)
1327 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INVALID_COMPRESSION_ALGORITHM);
1330 /* Look for resumed method in compression list */
1331 for (m = 0; m < i; m++)
1333 if (q[m] == comp_id)
1338 al=SSL_AD_ILLEGAL_PARAMETER;
1339 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_COMPRESSSION_ALGORITHM_MISSING);
1345 else if (!(s->options & SSL_OP_NO_COMPRESSION) && s->ctx->comp_methods)
1346 { /* See if we have a match */
1347 int m,nn,o,v,done=0;
1349 nn=sk_SSL_COMP_num(s->ctx->comp_methods);
1350 for (m=0; m<nn; m++)
1352 comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
1365 s->s3->tmp.new_compression=comp;
1370 /* If compression is disabled we'd better not try to resume a session
1371 * using compression.
1373 if (s->session->compress_meth != 0)
1375 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
1380 /* Given s->session->ciphers and SSL_get_ciphers, we must
1385 #ifdef OPENSSL_NO_COMP
1386 s->session->compress_meth=0;
1388 s->session->compress_meth=(comp == NULL)?0:comp->id;
1390 if (s->session->ciphers != NULL)
1391 sk_SSL_CIPHER_free(s->session->ciphers);
1392 s->session->ciphers=ciphers;
1393 if (ciphers == NULL)
1395 al=SSL_AD_ILLEGAL_PARAMETER;
1396 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_PASSED);
1400 /* Let cert callback update server certificates if required */
1401 if (s->cert->cert_cb
1402 && s->cert->cert_cb(s, s->cert->cert_cb_arg) <= 0)
1404 al=SSL_AD_INTERNAL_ERROR;
1405 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_CERT_CB_ERROR);
1408 c=ssl3_choose_cipher(s,s->session->ciphers,
1409 SSL_get_ciphers(s));
1413 al=SSL_AD_HANDSHAKE_FAILURE;
1414 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
1417 s->s3->tmp.new_cipher=c;
1418 /* check whether we should disable session resumption */
1419 if (s->not_resumable_session_cb != NULL)
1420 s->session->not_resumable=s->not_resumable_session_cb(s,
1421 ((c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)) != 0));
1422 if (s->session->not_resumable)
1423 /* do not send a session ticket */
1424 s->tlsext_ticket_expected = 0;
1428 /* Session-id reuse */
1429 #ifdef REUSE_CIPHER_BUG
1430 STACK_OF(SSL_CIPHER) *sk;
1431 SSL_CIPHER *nc=NULL;
1432 SSL_CIPHER *ec=NULL;
1434 if (s->options & SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG)
1436 sk=s->session->ciphers;
1437 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1439 c=sk_SSL_CIPHER_value(sk,i);
1440 if (c->algorithm_enc & SSL_eNULL)
1442 if (SSL_C_IS_EXPORT(c))
1446 s->s3->tmp.new_cipher=nc;
1447 else if (ec != NULL)
1448 s->s3->tmp.new_cipher=ec;
1450 s->s3->tmp.new_cipher=s->session->cipher;
1454 s->s3->tmp.new_cipher=s->session->cipher;
1457 if (!SSL_USE_SIGALGS(s) || !(s->verify_mode & SSL_VERIFY_PEER))
1459 if (!ssl3_digest_cached_records(s))
1463 /* we now have the following setup.
1465 * cipher_list - our prefered list of ciphers
1466 * ciphers - the clients prefered list of ciphers
1467 * compression - basically ignored right now
1468 * ssl version is set - sslv3
1469 * s->session - The ssl session has been setup.
1470 * s->hit - session reuse flag
1471 * s->tmp.new_cipher - the new cipher to use.
1474 /* Handles TLS extensions that we couldn't check earlier */
1475 if (s->version >= SSL3_VERSION)
1477 if (ssl_check_clienthello_tlsext_late(s) <= 0)
1479 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1484 if (ret < 0) ret=-ret;
1488 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1491 if (ciphers != NULL) sk_SSL_CIPHER_free(ciphers);
1492 return ret < 0 ? -1 : ret;
1495 int ssl3_send_server_hello(SSL *s)
1498 unsigned char *p,*d;
1501 #ifdef OPENSSL_NO_TLSEXT
1505 if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
1507 buf=(unsigned char *)s->init_buf->data;
1508 #ifdef OPENSSL_NO_TLSEXT
1509 p=s->s3->server_random;
1510 /* Generate server_random if it was not needed previously */
1511 Time=(unsigned long)time(NULL); /* Time */
1513 if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0)
1516 /* Do the message type and length last */
1517 d=p= ssl_handshake_start(s);
1519 *(p++)=s->version>>8;
1520 *(p++)=s->version&0xff;
1523 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
1524 p+=SSL3_RANDOM_SIZE;
1526 /* There are several cases for the session ID to send
1527 * back in the server hello:
1528 * - For session reuse from the session cache,
1529 * we send back the old session ID.
1530 * - If stateless session reuse (using a session ticket)
1531 * is successful, we send back the client's "session ID"
1532 * (which doesn't actually identify the session).
1533 * - If it is a new session, we send back the new
1535 * - However, if we want the new session to be single-use,
1536 * we send back a 0-length session ID.
1537 * s->hit is non-zero in either case of session reuse,
1538 * so the following won't overwrite an ID that we're supposed
1541 if (s->session->not_resumable ||
1542 (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1544 s->session->session_id_length=0;
1546 sl=s->session->session_id_length;
1547 if (sl > (int)sizeof(s->session->session_id))
1549 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1553 memcpy(p,s->session->session_id,sl);
1556 /* put the cipher */
1557 i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
1560 /* put the compression method */
1561 #ifdef OPENSSL_NO_COMP
1564 if (s->s3->tmp.new_compression == NULL)
1567 *(p++)=s->s3->tmp.new_compression->id;
1569 #ifndef OPENSSL_NO_TLSEXT
1570 if (ssl_prepare_serverhello_tlsext(s) <= 0)
1572 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO,SSL_R_SERVERHELLO_TLSEXT);
1575 if ((p = ssl_add_serverhello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
1577 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO,ERR_R_INTERNAL_ERROR);
1583 ssl_set_handshake_header(s, SSL3_MT_SERVER_HELLO, l);
1584 s->state=SSL3_ST_SW_SRVR_HELLO_B;
1587 /* SSL3_ST_SW_SRVR_HELLO_B */
1588 return ssl_do_write(s);
1591 int ssl3_send_server_done(SSL *s)
1594 if (s->state == SSL3_ST_SW_SRVR_DONE_A)
1596 ssl_set_handshake_header(s, SSL3_MT_SERVER_DONE, 0);
1597 s->state = SSL3_ST_SW_SRVR_DONE_B;
1600 /* SSL3_ST_SW_SRVR_DONE_B */
1601 return ssl_do_write(s);
1604 int ssl3_send_server_key_exchange(SSL *s)
1606 #ifndef OPENSSL_NO_RSA
1610 unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
1613 #ifndef OPENSSL_NO_DH
1616 #ifndef OPENSSL_NO_ECDH
1617 EC_KEY *ecdh=NULL, *ecdhp;
1618 unsigned char *encodedPoint = NULL;
1621 BN_CTX *bn_ctx = NULL;
1624 const EVP_MD *md = NULL;
1625 unsigned char *p,*d;
1635 EVP_MD_CTX_init(&md_ctx);
1636 if (s->state == SSL3_ST_SW_KEY_EXCH_A)
1638 type=s->s3->tmp.new_cipher->algorithm_mkey;
1643 r[0]=r[1]=r[2]=r[3]=NULL;
1645 #ifndef OPENSSL_NO_RSA
1646 if (type & SSL_kRSA)
1649 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
1651 rsa=s->cert->rsa_tmp_cb(s,
1652 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1653 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1656 al=SSL_AD_HANDSHAKE_FAILURE;
1657 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
1665 al=SSL_AD_HANDSHAKE_FAILURE;
1666 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
1671 s->s3->tmp.use_rsa_tmp=1;
1675 #ifndef OPENSSL_NO_DH
1676 if (type & SSL_kEDH)
1679 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1680 dhp=s->cert->dh_tmp_cb(s,
1681 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1682 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1685 al=SSL_AD_HANDSHAKE_FAILURE;
1686 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
1690 if (s->s3->tmp.dh != NULL)
1692 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1696 if ((dh=DHparams_dup(dhp)) == NULL)
1698 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1703 if ((dhp->pub_key == NULL ||
1704 dhp->priv_key == NULL ||
1705 (s->options & SSL_OP_SINGLE_DH_USE)))
1707 if(!DH_generate_key(dh))
1709 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1716 dh->pub_key=BN_dup(dhp->pub_key);
1717 dh->priv_key=BN_dup(dhp->priv_key);
1718 if ((dh->pub_key == NULL) ||
1719 (dh->priv_key == NULL))
1721 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1731 #ifndef OPENSSL_NO_ECDH
1732 if (type & SSL_kEECDH)
1734 const EC_GROUP *group;
1736 ecdhp=cert->ecdh_tmp;
1737 if (s->cert->ecdh_tmp_auto)
1739 /* Get NID of appropriate shared curve */
1740 int nid = tls1_shared_curve(s, -2);
1741 if (nid != NID_undef)
1742 ecdhp = EC_KEY_new_by_curve_name(nid);
1744 else if ((ecdhp == NULL) && s->cert->ecdh_tmp_cb)
1746 ecdhp=s->cert->ecdh_tmp_cb(s,
1747 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1748 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1752 al=SSL_AD_HANDSHAKE_FAILURE;
1753 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
1757 if (s->s3->tmp.ecdh != NULL)
1759 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1763 /* Duplicate the ECDH structure. */
1766 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1769 if (s->cert->ecdh_tmp_auto)
1771 else if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1773 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1777 s->s3->tmp.ecdh=ecdh;
1778 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1779 (EC_KEY_get0_private_key(ecdh) == NULL) ||
1780 (s->options & SSL_OP_SINGLE_ECDH_USE))
1782 if(!EC_KEY_generate_key(ecdh))
1784 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1789 if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
1790 (EC_KEY_get0_public_key(ecdh) == NULL) ||
1791 (EC_KEY_get0_private_key(ecdh) == NULL))
1793 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1797 if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1798 (EC_GROUP_get_degree(group) > 163))
1800 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1804 /* XXX: For now, we only support ephemeral ECDH
1805 * keys over named (not generic) curves. For
1806 * supported named curves, curve_id is non-zero.
1809 tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
1812 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
1816 /* Encode the public key.
1817 * First check the size of encoding and
1818 * allocate memory accordingly.
1820 encodedlen = EC_POINT_point2oct(group,
1821 EC_KEY_get0_public_key(ecdh),
1822 POINT_CONVERSION_UNCOMPRESSED,
1825 encodedPoint = (unsigned char *)
1826 OPENSSL_malloc(encodedlen*sizeof(unsigned char));
1827 bn_ctx = BN_CTX_new();
1828 if ((encodedPoint == NULL) || (bn_ctx == NULL))
1830 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1835 encodedlen = EC_POINT_point2oct(group,
1836 EC_KEY_get0_public_key(ecdh),
1837 POINT_CONVERSION_UNCOMPRESSED,
1838 encodedPoint, encodedlen, bn_ctx);
1840 if (encodedlen == 0)
1842 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1846 BN_CTX_free(bn_ctx); bn_ctx=NULL;
1848 /* XXX: For now, we only support named (not
1849 * generic) curves in ECDH ephemeral key exchanges.
1850 * In this situation, we need four additional bytes
1851 * to encode the entire ServerECDHParams
1856 /* We'll generate the serverKeyExchange message
1857 * explicitly so we can set these to NULLs
1865 #endif /* !OPENSSL_NO_ECDH */
1866 #ifndef OPENSSL_NO_PSK
1867 if (type & SSL_kPSK)
1869 /* reserve size for record length and PSK identity hint*/
1870 n+=2+strlen(s->ctx->psk_identity_hint);
1873 #endif /* !OPENSSL_NO_PSK */
1874 #ifndef OPENSSL_NO_SRP
1875 if (type & SSL_kSRP)
1877 if ((s->srp_ctx.N == NULL) ||
1878 (s->srp_ctx.g == NULL) ||
1879 (s->srp_ctx.s == NULL) ||
1880 (s->srp_ctx.B == NULL))
1882 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_SRP_PARAM);
1893 al=SSL_AD_HANDSHAKE_FAILURE;
1894 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
1897 for (i=0; r[i] != NULL && i<4; i++)
1899 nr[i]=BN_num_bytes(r[i]);
1900 #ifndef OPENSSL_NO_SRP
1901 if ((i == 2) && (type & SSL_kSRP))
1908 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
1909 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
1911 if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher,&md))
1914 al=SSL_AD_DECODE_ERROR;
1917 kn=EVP_PKEY_size(pkey);
1925 if (!BUF_MEM_grow_clean(buf,n+SSL_HM_HEADER_LENGTH(s)+kn))
1927 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
1930 d = p = ssl_handshake_start(s);
1932 for (i=0; r[i] != NULL && i<4; i++)
1934 #ifndef OPENSSL_NO_SRP
1935 if ((i == 2) && (type & SSL_kSRP))
1947 #ifndef OPENSSL_NO_ECDH
1948 if (type & SSL_kEECDH)
1950 /* XXX: For now, we only support named (not generic) curves.
1951 * In this situation, the serverKeyExchange message has:
1952 * [1 byte CurveType], [2 byte CurveName]
1953 * [1 byte length of encoded point], followed by
1954 * the actual encoded point itself
1956 *p = NAMED_CURVE_TYPE;
1964 memcpy((unsigned char*)p,
1965 (unsigned char *)encodedPoint,
1967 OPENSSL_free(encodedPoint);
1968 encodedPoint = NULL;
1973 #ifndef OPENSSL_NO_PSK
1974 if (type & SSL_kPSK)
1976 /* copy PSK identity hint */
1977 s2n(strlen(s->ctx->psk_identity_hint), p);
1978 strncpy((char *)p, s->ctx->psk_identity_hint, strlen(s->ctx->psk_identity_hint));
1979 p+=strlen(s->ctx->psk_identity_hint);
1986 /* n is the length of the params, they start at &(d[4])
1987 * and p points to the space at the end. */
1988 #ifndef OPENSSL_NO_RSA
1989 if (pkey->type == EVP_PKEY_RSA && !SSL_USE_SIGALGS(s))
1993 for (num=2; num > 0; num--)
1995 EVP_MD_CTX_set_flags(&md_ctx,
1996 EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
1997 EVP_DigestInit_ex(&md_ctx,(num == 2)
1998 ?s->ctx->md5:s->ctx->sha1, NULL);
1999 EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
2000 EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
2001 EVP_DigestUpdate(&md_ctx,d,n);
2002 EVP_DigestFinal_ex(&md_ctx,q,
2003 (unsigned int *)&i);
2007 if (RSA_sign(NID_md5_sha1, md_buf, j,
2008 &(p[2]), &u, pkey->pkey.rsa) <= 0)
2010 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
2020 /* send signature algorithm */
2021 if (SSL_USE_SIGALGS(s))
2023 if (!tls12_get_sigandhash(p, pkey, md))
2025 /* Should never happen */
2026 al=SSL_AD_INTERNAL_ERROR;
2027 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2033 fprintf(stderr, "Using hash %s\n",
2036 EVP_SignInit_ex(&md_ctx, md, NULL);
2037 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
2038 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
2039 EVP_SignUpdate(&md_ctx,d,n);
2040 if (!EVP_SignFinal(&md_ctx,&(p[2]),
2041 (unsigned int *)&i,pkey))
2043 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_EVP);
2048 if (SSL_USE_SIGALGS(s))
2053 /* Is this error check actually needed? */
2054 al=SSL_AD_HANDSHAKE_FAILURE;
2055 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
2060 ssl_set_handshake_header(s, SSL3_MT_SERVER_KEY_EXCHANGE, n);
2063 s->state = SSL3_ST_SW_KEY_EXCH_B;
2064 EVP_MD_CTX_cleanup(&md_ctx);
2065 return ssl_do_write(s);
2067 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2069 #ifndef OPENSSL_NO_ECDH
2070 if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
2071 BN_CTX_free(bn_ctx);
2073 EVP_MD_CTX_cleanup(&md_ctx);
2077 int ssl3_send_certificate_request(SSL *s)
2079 unsigned char *p,*d;
2081 STACK_OF(X509_NAME) *sk=NULL;
2085 if (s->state == SSL3_ST_SW_CERT_REQ_A)
2089 d=p=ssl_handshake_start(s);
2091 /* get the list of acceptable cert types */
2093 n=ssl3_get_req_cert_type(s,p);
2098 if (SSL_USE_SIGALGS(s))
2100 const unsigned char *psigs;
2101 nl = tls12_get_psigalgs(s, &psigs);
2103 memcpy(p, psigs, nl);
2112 sk=SSL_get_client_CA_list(s);
2116 for (i=0; i<sk_X509_NAME_num(sk); i++)
2118 name=sk_X509_NAME_value(sk,i);
2119 j=i2d_X509_NAME(name,NULL);
2120 if (!BUF_MEM_grow_clean(buf,4+n+j+2))
2122 SSLerr(SSL_F_SSL3_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
2125 p=(unsigned char *)&(buf->data[4+n]);
2126 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
2129 i2d_X509_NAME(name,&p);
2136 i2d_X509_NAME(name,&p);
2137 j-=2; s2n(j,d); j+=2;
2143 /* else no CA names */
2144 p = ssl_handshake_start(s) + off;
2147 ssl_set_handshake_header(s, SSL3_MT_CERTIFICATE_REQUEST, n);
2149 #ifdef NETSCAPE_HANG_BUG
2150 if (!SSL_IS_DTLS(s))
2152 p=(unsigned char *)s->init_buf->data + s->init_num;
2154 *(p++)=SSL3_MT_SERVER_DONE;
2162 s->state = SSL3_ST_SW_CERT_REQ_B;
2165 /* SSL3_ST_SW_CERT_REQ_B */
2166 return ssl_do_write(s);
2171 int ssl3_get_client_key_exchange(SSL *s)
2175 unsigned long alg_k;
2177 #ifndef OPENSSL_NO_RSA
2179 EVP_PKEY *pkey=NULL;
2181 #ifndef OPENSSL_NO_DH
2183 DH *dh_srvr, *dh_clnt = NULL;
2185 #ifndef OPENSSL_NO_KRB5
2187 #endif /* OPENSSL_NO_KRB5 */
2189 #ifndef OPENSSL_NO_ECDH
2190 EC_KEY *srvr_ecdh = NULL;
2191 EVP_PKEY *clnt_pub_pkey = NULL;
2192 EC_POINT *clnt_ecpoint = NULL;
2193 BN_CTX *bn_ctx = NULL;
2196 n=s->method->ssl_get_message(s,
2197 SSL3_ST_SR_KEY_EXCH_A,
2198 SSL3_ST_SR_KEY_EXCH_B,
2199 SSL3_MT_CLIENT_KEY_EXCHANGE,
2203 if (!ok) return((int)n);
2204 p=(unsigned char *)s->init_msg;
2206 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
2208 #ifndef OPENSSL_NO_RSA
2209 if (alg_k & SSL_kRSA)
2211 unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2212 int decrypt_len, decrypt_good_mask;
2213 unsigned char version_good;
2215 /* FIX THIS UP EAY EAY EAY EAY */
2216 if (s->s3->tmp.use_rsa_tmp)
2218 if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
2219 rsa=s->cert->rsa_tmp;
2220 /* Don't do a callback because rsa_tmp should
2221 * be sent already */
2224 al=SSL_AD_HANDSHAKE_FAILURE;
2225 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_PKEY);
2232 pkey=s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
2233 if ( (pkey == NULL) ||
2234 (pkey->type != EVP_PKEY_RSA) ||
2235 (pkey->pkey.rsa == NULL))
2237 al=SSL_AD_HANDSHAKE_FAILURE;
2238 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_RSA_CERTIFICATE);
2244 /* TLS and [incidentally] DTLS{0xFEFF} */
2245 if (s->version > SSL3_VERSION && s->version != DTLS1_BAD_VER)
2250 if (!(s->options & SSL_OP_TLS_D5_BUG))
2252 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG);
2262 /* We must not leak whether a decryption failure occurs because
2263 * of Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see
2264 * RFC 2246, section 7.4.7.1). The code follows that advice of
2265 * the TLS RFC and generates a random premaster secret for the
2266 * case that the decrypt fails. See
2267 * https://tools.ietf.org/html/rfc5246#section-7.4.7.1 */
2269 /* should be RAND_bytes, but we cannot work around a failure. */
2270 if (RAND_pseudo_bytes(rand_premaster_secret,
2271 sizeof(rand_premaster_secret)) <= 0)
2273 decrypt_len = RSA_private_decrypt((int)n,p,p,rsa,RSA_PKCS1_PADDING);
2276 /* decrypt_len should be SSL_MAX_MASTER_KEY_LENGTH.
2277 * decrypt_good_mask will be zero if so and non-zero otherwise. */
2278 decrypt_good_mask = decrypt_len ^ SSL_MAX_MASTER_KEY_LENGTH;
2280 /* If the version in the decrypted pre-master secret is correct
2281 * then version_good will be zero. The Klima-Pokorny-Rosa
2282 * extension of Bleichenbacher's attack
2283 * (http://eprint.iacr.org/2003/052/) exploits the version
2284 * number check as a "bad version oracle". Thus version checks
2285 * are done in constant time and are treated like any other
2286 * decryption error. */
2287 version_good = p[0] ^ (s->client_version>>8);
2288 version_good |= p[1] ^ (s->client_version&0xff);
2290 /* The premaster secret must contain the same version number as
2291 * the ClientHello to detect version rollback attacks
2292 * (strangely, the protocol does not offer such protection for
2293 * DH ciphersuites). However, buggy clients exist that send the
2294 * negotiated protocol version instead if the server does not
2295 * support the requested protocol version. If
2296 * SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients. */
2297 if (s->options & SSL_OP_TLS_ROLLBACK_BUG)
2299 unsigned char workaround_mask = version_good;
2300 unsigned char workaround;
2302 /* workaround_mask will be 0xff if version_good is
2303 * non-zero (i.e. the version match failed). Otherwise
2305 workaround_mask |= workaround_mask >> 4;
2306 workaround_mask |= workaround_mask >> 2;
2307 workaround_mask |= workaround_mask >> 1;
2308 workaround_mask = ~((workaround_mask & 1) - 1);
2310 workaround = p[0] ^ (s->version>>8);
2311 workaround |= p[1] ^ (s->version&0xff);
2313 /* If workaround_mask is 0xff (i.e. there was a version
2314 * mismatch) then we copy the value of workaround over
2316 version_good = (workaround & workaround_mask) |
2317 (version_good & ~workaround_mask);
2320 /* If any bits in version_good are set then they'll poision
2321 * decrypt_good_mask and cause rand_premaster_secret to be
2323 decrypt_good_mask |= version_good;
2325 /* decrypt_good_mask will be zero iff decrypt_len ==
2326 * SSL_MAX_MASTER_KEY_LENGTH and the version check passed. We
2327 * fold the bottom 32 bits of it with an OR so that the LSB
2328 * will be zero iff everything is good. This assumes that we'll
2329 * never decrypt a value > 2**31 bytes, which seems safe. */
2330 decrypt_good_mask |= decrypt_good_mask >> 16;
2331 decrypt_good_mask |= decrypt_good_mask >> 8;
2332 decrypt_good_mask |= decrypt_good_mask >> 4;
2333 decrypt_good_mask |= decrypt_good_mask >> 2;
2334 decrypt_good_mask |= decrypt_good_mask >> 1;
2335 /* Now select only the LSB and subtract one. If decrypt_len ==
2336 * SSL_MAX_MASTER_KEY_LENGTH and the version check passed then
2337 * decrypt_good_mask will be all ones. Otherwise it'll be all
2339 decrypt_good_mask &= 1;
2340 decrypt_good_mask--;
2342 /* Now copy rand_premaster_secret over p using
2343 * decrypt_good_mask. */
2344 for (i = 0; i < (int) sizeof(rand_premaster_secret); i++)
2346 p[i] = (p[i] & decrypt_good_mask) |
2347 (rand_premaster_secret[i] & ~decrypt_good_mask);
2350 s->session->master_key_length=
2351 s->method->ssl3_enc->generate_master_secret(s,
2352 s->session->master_key,
2354 OPENSSL_cleanse(p,i);
2358 #ifndef OPENSSL_NO_DH
2359 if (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
2362 EVP_PKEY *skey = NULL;
2369 if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG))
2371 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2380 if (alg_k & SSL_kDHr)
2381 idx = SSL_PKEY_DH_RSA;
2382 else if (alg_k & SSL_kDHd)
2383 idx = SSL_PKEY_DH_DSA;
2386 skey = s->cert->pkeys[idx].privatekey;
2387 if ((skey == NULL) ||
2388 (skey->type != EVP_PKEY_DH) ||
2389 (skey->pkey.dh == NULL))
2391 al=SSL_AD_HANDSHAKE_FAILURE;
2392 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_RSA_CERTIFICATE);
2395 dh_srvr = skey->pkey.dh;
2397 else if (s->s3->tmp.dh == NULL)
2399 al=SSL_AD_HANDSHAKE_FAILURE;
2400 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
2404 dh_srvr=s->s3->tmp.dh;
2408 /* Get pubkey from cert */
2409 EVP_PKEY *clkey=X509_get_pubkey(s->session->peer);
2412 if (EVP_PKEY_cmp_parameters(clkey, skey) == 1)
2413 dh_clnt = EVP_PKEY_get1_DH(clkey);
2415 if (dh_clnt == NULL)
2417 al=SSL_AD_HANDSHAKE_FAILURE;
2418 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
2421 EVP_PKEY_free(clkey);
2422 pub = dh_clnt->pub_key;
2425 pub=BN_bin2bn(p,i,NULL);
2428 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BN_LIB);
2432 i=DH_compute_key(p,pub,dh_srvr);
2436 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2441 DH_free(s->s3->tmp.dh);
2448 s->session->master_key_length=
2449 s->method->ssl3_enc->generate_master_secret(s,
2450 s->session->master_key,p,i);
2451 OPENSSL_cleanse(p,i);
2457 #ifndef OPENSSL_NO_KRB5
2458 if (alg_k & SSL_kKRB5)
2460 krb5_error_code krb5rc;
2461 krb5_data enc_ticket;
2462 krb5_data authenticator;
2464 KSSL_CTX *kssl_ctx = s->kssl_ctx;
2465 EVP_CIPHER_CTX ciph_ctx;
2466 const EVP_CIPHER *enc = NULL;
2467 unsigned char iv[EVP_MAX_IV_LENGTH];
2468 unsigned char pms[SSL_MAX_MASTER_KEY_LENGTH
2469 + EVP_MAX_BLOCK_LENGTH];
2471 krb5_timestamp authtime = 0;
2472 krb5_ticket_times ttimes;
2474 EVP_CIPHER_CTX_init(&ciph_ctx);
2476 if (!kssl_ctx) kssl_ctx = kssl_ctx_new();
2479 enc_ticket.length = i;
2481 if (n < (long)(enc_ticket.length + 6))
2483 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2484 SSL_R_DATA_LENGTH_TOO_LONG);
2488 enc_ticket.data = (char *)p;
2489 p+=enc_ticket.length;
2492 authenticator.length = i;
2494 if (n < (long)(enc_ticket.length + authenticator.length + 6))
2496 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2497 SSL_R_DATA_LENGTH_TOO_LONG);
2501 authenticator.data = (char *)p;
2502 p+=authenticator.length;
2506 enc_pms.data = (char *)p;
2509 /* Note that the length is checked again below,
2512 if(enc_pms.length > sizeof pms)
2514 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2515 SSL_R_DATA_LENGTH_TOO_LONG);
2519 if (n != (long)(enc_ticket.length + authenticator.length +
2520 enc_pms.length + 6))
2522 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2523 SSL_R_DATA_LENGTH_TOO_LONG);
2527 if ((krb5rc = kssl_sget_tkt(kssl_ctx, &enc_ticket, &ttimes,
2531 printf("kssl_sget_tkt rtn %d [%d]\n",
2532 krb5rc, kssl_err.reason);
2534 printf("kssl_err text= %s\n", kssl_err.text);
2535 #endif /* KSSL_DEBUG */
2536 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2541 /* Note: no authenticator is not considered an error,
2542 ** but will return authtime == 0.
2544 if ((krb5rc = kssl_check_authent(kssl_ctx, &authenticator,
2545 &authtime, &kssl_err)) != 0)
2548 printf("kssl_check_authent rtn %d [%d]\n",
2549 krb5rc, kssl_err.reason);
2551 printf("kssl_err text= %s\n", kssl_err.text);
2552 #endif /* KSSL_DEBUG */
2553 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2558 if ((krb5rc = kssl_validate_times(authtime, &ttimes)) != 0)
2560 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, krb5rc);
2565 kssl_ctx_show(kssl_ctx);
2566 #endif /* KSSL_DEBUG */
2568 enc = kssl_map_enc(kssl_ctx->enctype);
2572 memset(iv, 0, sizeof iv); /* per RFC 1510 */
2574 if (!EVP_DecryptInit_ex(&ciph_ctx,enc,NULL,kssl_ctx->key,iv))
2576 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2577 SSL_R_DECRYPTION_FAILED);
2580 if (!EVP_DecryptUpdate(&ciph_ctx, pms,&outl,
2581 (unsigned char *)enc_pms.data, enc_pms.length))
2583 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2584 SSL_R_DECRYPTION_FAILED);
2587 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
2589 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2590 SSL_R_DATA_LENGTH_TOO_LONG);
2593 if (!EVP_DecryptFinal_ex(&ciph_ctx,&(pms[outl]),&padl))
2595 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2596 SSL_R_DECRYPTION_FAILED);
2600 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
2602 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2603 SSL_R_DATA_LENGTH_TOO_LONG);
2606 if (!((pms[0] == (s->client_version>>8)) && (pms[1] == (s->client_version & 0xff))))
2608 /* The premaster secret must contain the same version number as the
2609 * ClientHello to detect version rollback attacks (strangely, the
2610 * protocol does not offer such protection for DH ciphersuites).
2611 * However, buggy clients exist that send random bytes instead of
2612 * the protocol version.
2613 * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients.
2614 * (Perhaps we should have a separate BUG value for the Kerberos cipher)
2616 if (!(s->options & SSL_OP_TLS_ROLLBACK_BUG))
2618 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2619 SSL_AD_DECODE_ERROR);
2624 EVP_CIPHER_CTX_cleanup(&ciph_ctx);
2626 s->session->master_key_length=
2627 s->method->ssl3_enc->generate_master_secret(s,
2628 s->session->master_key, pms, outl);
2630 if (kssl_ctx->client_princ)
2632 size_t len = strlen(kssl_ctx->client_princ);
2633 if ( len < SSL_MAX_KRB5_PRINCIPAL_LENGTH )
2635 s->session->krb5_client_princ_len = len;
2636 memcpy(s->session->krb5_client_princ,kssl_ctx->client_princ,len);
2641 /* Was doing kssl_ctx_free() here,
2642 ** but it caused problems for apache.
2643 ** kssl_ctx = kssl_ctx_free(kssl_ctx);
2644 ** if (s->kssl_ctx) s->kssl_ctx = NULL;
2648 #endif /* OPENSSL_NO_KRB5 */
2650 #ifndef OPENSSL_NO_ECDH
2651 if (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe))
2656 const EC_GROUP *group;
2657 const BIGNUM *priv_key;
2659 /* initialize structures for server's ECDH key pair */
2660 if ((srvr_ecdh = EC_KEY_new()) == NULL)
2662 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2663 ERR_R_MALLOC_FAILURE);
2667 /* Let's get server private key and group information */
2668 if (alg_k & (SSL_kECDHr|SSL_kECDHe))
2670 /* use the certificate */
2671 tkey = s->cert->pkeys[SSL_PKEY_ECC].privatekey->pkey.ec;
2675 /* use the ephermeral values we saved when
2676 * generating the ServerKeyExchange msg.
2678 tkey = s->s3->tmp.ecdh;
2681 group = EC_KEY_get0_group(tkey);
2682 priv_key = EC_KEY_get0_private_key(tkey);
2684 if (!EC_KEY_set_group(srvr_ecdh, group) ||
2685 !EC_KEY_set_private_key(srvr_ecdh, priv_key))
2687 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2692 /* Let's get client's public key */
2693 if ((clnt_ecpoint = EC_POINT_new(group)) == NULL)
2695 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2696 ERR_R_MALLOC_FAILURE);
2702 /* Client Publickey was in Client Certificate */
2704 if (alg_k & SSL_kEECDH)
2706 al=SSL_AD_HANDSHAKE_FAILURE;
2707 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
2710 if (((clnt_pub_pkey=X509_get_pubkey(s->session->peer))
2712 (clnt_pub_pkey->type != EVP_PKEY_EC))
2714 /* XXX: For now, we do not support client
2715 * authentication using ECDH certificates
2716 * so this branch (n == 0L) of the code is
2717 * never executed. When that support is
2718 * added, we ought to ensure the key
2719 * received in the certificate is
2720 * authorized for key agreement.
2721 * ECDH_compute_key implicitly checks that
2722 * the two ECDH shares are for the same
2725 al=SSL_AD_HANDSHAKE_FAILURE;
2726 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2727 SSL_R_UNABLE_TO_DECODE_ECDH_CERTS);
2731 if (EC_POINT_copy(clnt_ecpoint,
2732 EC_KEY_get0_public_key(clnt_pub_pkey->pkey.ec)) == 0)
2734 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2738 ret = 2; /* Skip certificate verify processing */
2742 /* Get client's public key from encoded point
2743 * in the ClientKeyExchange message.
2745 if ((bn_ctx = BN_CTX_new()) == NULL)
2747 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2748 ERR_R_MALLOC_FAILURE);
2752 /* Get encoded point length */
2757 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2761 if (EC_POINT_oct2point(group,
2762 clnt_ecpoint, p, i, bn_ctx) == 0)
2764 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2768 /* p is pointing to somewhere in the buffer
2769 * currently, so set it to the start
2771 p=(unsigned char *)s->init_buf->data;
2774 /* Compute the shared pre-master secret */
2775 field_size = EC_GROUP_get_degree(group);
2776 if (field_size <= 0)
2778 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2782 i = ECDH_compute_key(p, (field_size+7)/8, clnt_ecpoint, srvr_ecdh, NULL);
2785 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2790 EVP_PKEY_free(clnt_pub_pkey);
2791 EC_POINT_free(clnt_ecpoint);
2792 EC_KEY_free(srvr_ecdh);
2793 BN_CTX_free(bn_ctx);
2794 EC_KEY_free(s->s3->tmp.ecdh);
2795 s->s3->tmp.ecdh = NULL;
2797 /* Compute the master secret */
2798 s->session->master_key_length = s->method->ssl3_enc-> \
2799 generate_master_secret(s, s->session->master_key, p, i);
2801 OPENSSL_cleanse(p, i);
2806 #ifndef OPENSSL_NO_PSK
2807 if (alg_k & SSL_kPSK)
2809 unsigned char *t = NULL;
2810 unsigned char psk_or_pre_ms[PSK_MAX_PSK_LEN*2+4];
2811 unsigned int pre_ms_len = 0, psk_len = 0;
2813 char tmp_id[PSK_MAX_IDENTITY_LEN+1];
2815 al=SSL_AD_HANDSHAKE_FAILURE;
2820 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2821 SSL_R_LENGTH_MISMATCH);
2824 if (i > PSK_MAX_IDENTITY_LEN)
2826 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2827 SSL_R_DATA_LENGTH_TOO_LONG);
2830 if (s->psk_server_callback == NULL)
2832 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2833 SSL_R_PSK_NO_SERVER_CB);
2837 /* Create guaranteed NULL-terminated identity
2838 * string for the callback */
2839 memcpy(tmp_id, p, i);
2840 memset(tmp_id+i, 0, PSK_MAX_IDENTITY_LEN+1-i);
2841 psk_len = s->psk_server_callback(s, tmp_id,
2842 psk_or_pre_ms, sizeof(psk_or_pre_ms));
2843 OPENSSL_cleanse(tmp_id, PSK_MAX_IDENTITY_LEN+1);
2845 if (psk_len > PSK_MAX_PSK_LEN)
2847 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2848 ERR_R_INTERNAL_ERROR);
2851 else if (psk_len == 0)
2853 /* PSK related to the given identity not found */
2854 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2855 SSL_R_PSK_IDENTITY_NOT_FOUND);
2856 al=SSL_AD_UNKNOWN_PSK_IDENTITY;
2860 /* create PSK pre_master_secret */
2861 pre_ms_len=2+psk_len+2+psk_len;
2863 memmove(psk_or_pre_ms+psk_len+4, psk_or_pre_ms, psk_len);
2865 memset(t, 0, psk_len);
2869 if (s->session->psk_identity != NULL)
2870 OPENSSL_free(s->session->psk_identity);
2871 s->session->psk_identity = BUF_strdup((char *)p);
2872 if (s->session->psk_identity == NULL)
2874 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2875 ERR_R_MALLOC_FAILURE);
2879 if (s->session->psk_identity_hint != NULL)
2880 OPENSSL_free(s->session->psk_identity_hint);
2881 s->session->psk_identity_hint = BUF_strdup(s->ctx->psk_identity_hint);
2882 if (s->ctx->psk_identity_hint != NULL &&
2883 s->session->psk_identity_hint == NULL)
2885 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2886 ERR_R_MALLOC_FAILURE);
2890 s->session->master_key_length=
2891 s->method->ssl3_enc->generate_master_secret(s,
2892 s->session->master_key, psk_or_pre_ms, pre_ms_len);
2895 OPENSSL_cleanse(psk_or_pre_ms, sizeof(psk_or_pre_ms));
2901 #ifndef OPENSSL_NO_SRP
2902 if (alg_k & SSL_kSRP)
2910 al=SSL_AD_DECODE_ERROR;
2911 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_SRP_A_LENGTH);
2914 if (!(s->srp_ctx.A=BN_bin2bn(p,i,NULL)))
2916 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_BN_LIB);
2919 if (s->session->srp_username != NULL)
2920 OPENSSL_free(s->session->srp_username);
2921 s->session->srp_username = BUF_strdup(s->srp_ctx.login);
2922 if (s->session->srp_username == NULL)
2924 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2925 ERR_R_MALLOC_FAILURE);
2929 if ((s->session->master_key_length = SRP_generate_server_master_secret(s,s->session->master_key))<0)
2931 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2938 #endif /* OPENSSL_NO_SRP */
2939 if (alg_k & SSL_kGOST)
2942 EVP_PKEY_CTX *pkey_ctx;
2943 EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2944 unsigned char premaster_secret[32], *start;
2945 size_t outlen=32, inlen;
2946 unsigned long alg_a;
2948 /* Get our certificate private key*/
2949 alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2950 if (alg_a & SSL_aGOST94)
2951 pk = s->cert->pkeys[SSL_PKEY_GOST94].privatekey;
2952 else if (alg_a & SSL_aGOST01)
2953 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2955 pkey_ctx = EVP_PKEY_CTX_new(pk,NULL);
2956 EVP_PKEY_decrypt_init(pkey_ctx);
2957 /* If client certificate is present and is of the same type, maybe
2958 * use it for key exchange. Don't mind errors from
2959 * EVP_PKEY_derive_set_peer, because it is completely valid to use
2960 * a client certificate for authorization only. */
2961 client_pub_pkey = X509_get_pubkey(s->session->peer);
2962 if (client_pub_pkey)
2964 if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2967 /* Decrypt session key */
2968 if ((*p!=( V_ASN1_SEQUENCE| V_ASN1_CONSTRUCTED)))
2970 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2978 else if (p[1] < 0x80)
2985 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2988 if (EVP_PKEY_decrypt(pkey_ctx,premaster_secret,&outlen,start,inlen) <=0)
2991 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2994 /* Generate master secret */
2995 s->session->master_key_length=
2996 s->method->ssl3_enc->generate_master_secret(s,
2997 s->session->master_key,premaster_secret,32);
2998 /* Check if pubkey from client certificate was used */
2999 if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
3004 EVP_PKEY_free(client_pub_pkey);
3005 EVP_PKEY_CTX_free(pkey_ctx);
3013 al=SSL_AD_HANDSHAKE_FAILURE;
3014 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
3015 SSL_R_UNKNOWN_CIPHER_TYPE);
3021 ssl3_send_alert(s,SSL3_AL_FATAL,al);
3022 #if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_ECDH) || defined(OPENSSL_NO_SRP)
3025 #ifndef OPENSSL_NO_ECDH
3026 EVP_PKEY_free(clnt_pub_pkey);
3027 EC_POINT_free(clnt_ecpoint);
3028 if (srvr_ecdh != NULL)
3029 EC_KEY_free(srvr_ecdh);
3030 BN_CTX_free(bn_ctx);
3035 int ssl3_get_cert_verify(SSL *s)
3037 EVP_PKEY *pkey=NULL;
3043 const EVP_MD *md = NULL;
3045 EVP_MD_CTX_init(&mctx);
3047 n=s->method->ssl_get_message(s,
3048 SSL3_ST_SR_CERT_VRFY_A,
3049 SSL3_ST_SR_CERT_VRFY_B,
3051 516, /* Enough for 4096 bit RSA key with TLS v1.2 */
3054 if (!ok) return((int)n);
3056 if (s->session->peer != NULL)
3058 peer=s->session->peer;
3059 pkey=X509_get_pubkey(peer);
3060 type=X509_certificate_type(peer,pkey);
3068 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_VERIFY)
3070 s->s3->tmp.reuse_message=1;
3071 if ((peer != NULL) && (type & EVP_PKT_SIGN))
3073 al=SSL_AD_UNEXPECTED_MESSAGE;
3074 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_MISSING_VERIFY_MESSAGE);
3083 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_NO_CLIENT_CERT_RECEIVED);
3084 al=SSL_AD_UNEXPECTED_MESSAGE;
3088 if (!(type & EVP_PKT_SIGN))
3090 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
3091 al=SSL_AD_ILLEGAL_PARAMETER;
3095 if (s->s3->change_cipher_spec)
3097 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_CCS_RECEIVED_EARLY);
3098 al=SSL_AD_UNEXPECTED_MESSAGE;
3102 /* we now have a signature that we need to verify */
3103 p=(unsigned char *)s->init_msg;
3104 /* Check for broken implementations of GOST ciphersuites */
3105 /* If key is GOST and n is exactly 64, it is bare
3106 * signature without length field */
3107 if (n==64 && (pkey->type==NID_id_GostR3410_94 ||
3108 pkey->type == NID_id_GostR3410_2001) )
3114 if (SSL_USE_SIGALGS(s))
3116 int rv = tls12_check_peer_sigalg(&md, s, p, pkey);
3119 al = SSL_AD_INTERNAL_ERROR;
3124 al = SSL_AD_DECODE_ERROR;
3128 fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
3137 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_LENGTH_MISMATCH);
3138 al=SSL_AD_DECODE_ERROR;
3142 j=EVP_PKEY_size(pkey);
3143 if ((i > j) || (n > j) || (n <= 0))
3145 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_WRONG_SIGNATURE_SIZE);
3146 al=SSL_AD_DECODE_ERROR;
3150 if (SSL_USE_SIGALGS(s))
3154 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3157 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
3158 al=SSL_AD_INTERNAL_ERROR;
3162 fprintf(stderr, "Using TLS 1.2 with client verify alg %s\n",
3165 if (!EVP_VerifyInit_ex(&mctx, md, NULL)
3166 || !EVP_VerifyUpdate(&mctx, hdata, hdatalen))
3168 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_EVP_LIB);
3169 al=SSL_AD_INTERNAL_ERROR;
3173 if (EVP_VerifyFinal(&mctx, p , i, pkey) <= 0)
3175 al=SSL_AD_DECRYPT_ERROR;
3176 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_SIGNATURE);
3181 #ifndef OPENSSL_NO_RSA
3182 if (pkey->type == EVP_PKEY_RSA)
3184 i=RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
3185 MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH, p, i,
3189 al=SSL_AD_DECRYPT_ERROR;
3190 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_DECRYPT);
3195 al=SSL_AD_DECRYPT_ERROR;
3196 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_SIGNATURE);
3202 #ifndef OPENSSL_NO_DSA
3203 if (pkey->type == EVP_PKEY_DSA)
3205 j=DSA_verify(pkey->save_type,
3206 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3207 SHA_DIGEST_LENGTH,p,i,pkey->pkey.dsa);
3211 al=SSL_AD_DECRYPT_ERROR;
3212 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_DSA_SIGNATURE);
3218 #ifndef OPENSSL_NO_ECDSA
3219 if (pkey->type == EVP_PKEY_EC)
3221 j=ECDSA_verify(pkey->save_type,
3222 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3223 SHA_DIGEST_LENGTH,p,i,pkey->pkey.ec);
3227 al=SSL_AD_DECRYPT_ERROR;
3228 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
3229 SSL_R_BAD_ECDSA_SIGNATURE);
3235 if (pkey->type == NID_id_GostR3410_94 || pkey->type == NID_id_GostR3410_2001)
3236 { unsigned char signature[64];
3238 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new(pkey,NULL);
3239 EVP_PKEY_verify_init(pctx);
3241 fprintf(stderr,"GOST signature length is %d",i);
3243 for (idx=0;idx<64;idx++) {
3244 signature[63-idx]=p[idx];
3246 j=EVP_PKEY_verify(pctx,signature,64,s->s3->tmp.cert_verify_md,32);
3247 EVP_PKEY_CTX_free(pctx);
3250 al=SSL_AD_DECRYPT_ERROR;
3251 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
3252 SSL_R_BAD_ECDSA_SIGNATURE);
3258 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,ERR_R_INTERNAL_ERROR);
3259 al=SSL_AD_UNSUPPORTED_CERTIFICATE;
3268 ssl3_send_alert(s,SSL3_AL_FATAL,al);
3271 if (s->s3->handshake_buffer)
3273 BIO_free(s->s3->handshake_buffer);
3274 s->s3->handshake_buffer = NULL;
3275 s->s3->flags &= ~TLS1_FLAGS_KEEP_HANDSHAKE;
3277 EVP_MD_CTX_cleanup(&mctx);
3278 EVP_PKEY_free(pkey);
3282 int ssl3_get_client_certificate(SSL *s)
3284 int i,ok,al,ret= -1;
3286 unsigned long l,nc,llen,n;
3287 const unsigned char *p,*q;
3289 STACK_OF(X509) *sk=NULL;
3291 n=s->method->ssl_get_message(s,
3298 if (!ok) return((int)n);
3300 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_KEY_EXCHANGE)
3302 if ( (s->verify_mode & SSL_VERIFY_PEER) &&
3303 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
3305 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3306 al=SSL_AD_HANDSHAKE_FAILURE;
3309 /* If tls asked for a client cert, the client must return a 0 list */
3310 if ((s->version > SSL3_VERSION) && s->s3->tmp.cert_request)
3312 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST);
3313 al=SSL_AD_UNEXPECTED_MESSAGE;
3316 s->s3->tmp.reuse_message=1;
3320 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
3322 al=SSL_AD_UNEXPECTED_MESSAGE;
3323 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_WRONG_MESSAGE_TYPE);
3326 p=d=(unsigned char *)s->init_msg;
3328 if ((sk=sk_X509_new_null()) == NULL)
3330 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
3337 al=SSL_AD_DECODE_ERROR;
3338 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_LENGTH_MISMATCH);
3341 for (nc=0; nc<llen; )
3344 if ((l+nc+3) > llen)
3346 al=SSL_AD_DECODE_ERROR;
3347 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
3352 x=d2i_X509(NULL,&p,l);
3355 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_ASN1_LIB);
3360 al=SSL_AD_DECODE_ERROR;
3361 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
3364 if (!sk_X509_push(sk,x))
3366 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
3373 if (sk_X509_num(sk) <= 0)
3375 /* TLS does not mind 0 certs returned */
3376 if (s->version == SSL3_VERSION)
3378 al=SSL_AD_HANDSHAKE_FAILURE;
3379 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATES_RETURNED);
3382 /* Fail for TLS only if we required a certificate */
3383 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3384 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
3386 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3387 al=SSL_AD_HANDSHAKE_FAILURE;
3390 /* No client certificate so digest cached records */
3391 if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s))
3393 al=SSL_AD_INTERNAL_ERROR;
3399 i=ssl_verify_cert_chain(s,sk);
3402 al=ssl_verify_alarm_type(s->verify_result);
3403 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERTIFICATE_VERIFY_FAILED);
3408 if (s->session->peer != NULL) /* This should not be needed */
3409 X509_free(s->session->peer);
3410 s->session->peer=sk_X509_shift(sk);
3411 s->session->verify_result = s->verify_result;
3413 /* With the current implementation, sess_cert will always be NULL
3414 * when we arrive here. */
3415 if (s->session->sess_cert == NULL)
3417 s->session->sess_cert = ssl_sess_cert_new();
3418 if (s->session->sess_cert == NULL)
3420 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3424 if (s->session->sess_cert->cert_chain != NULL)
3425 sk_X509_pop_free(s->session->sess_cert->cert_chain, X509_free);
3426 s->session->sess_cert->cert_chain=sk;
3427 /* Inconsistency alert: cert_chain does *not* include the
3428 * peer's own certificate, while we do include it in s3_clnt.c */
3436 ssl3_send_alert(s,SSL3_AL_FATAL,al);
3439 if (x != NULL) X509_free(x);
3440 if (sk != NULL) sk_X509_pop_free(sk,X509_free);
3444 int ssl3_send_server_certificate(SSL *s)
3448 if (s->state == SSL3_ST_SW_CERT_A)
3450 cpk=ssl_get_server_send_pkey(s);
3453 /* VRS: allow null cert if auth == KRB5 */
3454 if ((s->s3->tmp.new_cipher->algorithm_auth != SSL_aKRB5) ||
3455 (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5))
3457 SSLerr(SSL_F_SSL3_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
3462 ssl3_output_cert_chain(s,cpk);
3463 s->state=SSL3_ST_SW_CERT_B;
3466 /* SSL3_ST_SW_CERT_B */
3467 return ssl_do_write(s);
3470 #ifndef OPENSSL_NO_TLSEXT
3471 /* send a new session ticket (not necessarily for a new session) */
3472 int ssl3_send_newsession_ticket(SSL *s)
3474 if (s->state == SSL3_ST_SW_SESSION_TICKET_A)
3476 unsigned char *p, *senc, *macstart;
3477 const unsigned char *const_p;
3478 int len, slen_full, slen;
3483 SSL_CTX *tctx = s->initial_ctx;
3484 unsigned char iv[EVP_MAX_IV_LENGTH];
3485 unsigned char key_name[16];
3487 /* get session encoding length */
3488 slen_full = i2d_SSL_SESSION(s->session, NULL);
3489 /* Some length values are 16 bits, so forget it if session is
3492 if (slen_full > 0xFF00)
3494 senc = OPENSSL_malloc(slen_full);
3498 i2d_SSL_SESSION(s->session, &p);
3500 /* create a fresh copy (not shared with other threads) to clean up */
3502 sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3508 sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3510 slen = i2d_SSL_SESSION(sess, NULL);
3511 if (slen > slen_full) /* shouldn't ever happen */
3517 i2d_SSL_SESSION(sess, &p);
3518 SSL_SESSION_free(sess);
3520 /* Grow buffer if need be: the length calculation is as
3521 * follows handshake_header_length +
3522 * 4 (ticket lifetime hint) + 2 (ticket length) +
3523 * 16 (key name) + max_iv_len (iv length) +
3524 * session_length + max_enc_block_size (max encrypted session
3525 * length) + max_md_size (HMAC).
3527 if (!BUF_MEM_grow(s->init_buf,
3528 SSL_HM_HEADER_LENGTH(s) + 22 + EVP_MAX_IV_LENGTH +
3529 EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE + slen))
3531 p = ssl_handshake_start(s);
3532 EVP_CIPHER_CTX_init(&ctx);
3533 HMAC_CTX_init(&hctx);
3534 /* Initialize HMAC and cipher contexts. If callback present
3535 * it does all the work otherwise use generated values
3538 if (tctx->tlsext_ticket_key_cb)
3540 if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
3549 RAND_pseudo_bytes(iv, 16);
3550 EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
3551 tctx->tlsext_tick_aes_key, iv);
3552 HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
3553 tlsext_tick_md(), NULL);
3554 memcpy(key_name, tctx->tlsext_tick_key_name, 16);
3557 /* Ticket lifetime hint (advisory only):
3558 * We leave this unspecified for resumed session (for simplicity),
3559 * and guess that tickets for new sessions will live as long
3560 * as their sessions. */
3561 l2n(s->hit ? 0 : s->session->timeout, p);
3563 /* Skip ticket length for now */
3565 /* Output key name */
3567 memcpy(p, key_name, 16);
3570 memcpy(p, iv, EVP_CIPHER_CTX_iv_length(&ctx));
3571 p += EVP_CIPHER_CTX_iv_length(&ctx);
3572 /* Encrypt session data */
3573 EVP_EncryptUpdate(&ctx, p, &len, senc, slen);
3575 EVP_EncryptFinal(&ctx, p, &len);
3577 EVP_CIPHER_CTX_cleanup(&ctx);
3579 HMAC_Update(&hctx, macstart, p - macstart);
3580 HMAC_Final(&hctx, p, &hlen);
3581 HMAC_CTX_cleanup(&hctx);
3584 /* Now write out lengths: p points to end of data written */
3586 len = p - ssl_handshake_start(s);
3587 ssl_set_handshake_header(s, SSL3_MT_NEWSESSION_TICKET, len);
3588 /* Skip ticket lifetime hint */
3589 p = ssl_handshake_start(s) + 4;
3591 s->state=SSL3_ST_SW_SESSION_TICKET_B;
3595 /* SSL3_ST_SW_SESSION_TICKET_B */
3596 return ssl_do_write(s);
3599 int ssl3_send_cert_status(SSL *s)
3601 if (s->state == SSL3_ST_SW_CERT_STATUS_A)
3604 /* Grow buffer if need be: the length calculation is as
3605 * follows 1 (message type) + 3 (message length) +
3606 * 1 (ocsp response type) + 3 (ocsp response length)
3609 if (!BUF_MEM_grow(s->init_buf, 8 + s->tlsext_ocsp_resplen))
3612 p=(unsigned char *)s->init_buf->data;
3615 *(p++)=SSL3_MT_CERTIFICATE_STATUS;
3616 /* message length */
3617 l2n3(s->tlsext_ocsp_resplen + 4, p);
3619 *(p++)= s->tlsext_status_type;
3620 /* length of OCSP response */
3621 l2n3(s->tlsext_ocsp_resplen, p);
3622 /* actual response */
3623 memcpy(p, s->tlsext_ocsp_resp, s->tlsext_ocsp_resplen);
3624 /* number of bytes to write */
3625 s->init_num = 8 + s->tlsext_ocsp_resplen;
3626 s->state=SSL3_ST_SW_CERT_STATUS_B;
3630 /* SSL3_ST_SW_CERT_STATUS_B */
3631 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3634 # ifndef OPENSSL_NO_NEXTPROTONEG
3635 /* ssl3_get_next_proto reads a Next Protocol Negotiation handshake message. It
3636 * sets the next_proto member in s if found */
3637 int ssl3_get_next_proto(SSL *s)
3640 int proto_len, padding_len;
3642 const unsigned char *p;
3644 /* Clients cannot send a NextProtocol message if we didn't see the
3645 * extension in their ClientHello */
3646 if (!s->s3->next_proto_neg_seen)
3648 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION);
3652 n=s->method->ssl_get_message(s,
3653 SSL3_ST_SR_NEXT_PROTO_A,
3654 SSL3_ST_SR_NEXT_PROTO_B,
3656 514, /* See the payload format below */
3662 /* s->state doesn't reflect whether ChangeCipherSpec has been received
3663 * in this handshake, but s->s3->change_cipher_spec does (will be reset
3664 * by ssl3_get_finished). */
3665 if (!s->s3->change_cipher_spec)
3667 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,SSL_R_GOT_NEXT_PROTO_BEFORE_A_CCS);
3672 return 0; /* The body must be > 1 bytes long */
3674 p=(unsigned char *)s->init_msg;
3676 /* The payload looks like:
3678 * uint8 proto[proto_len];
3679 * uint8 padding_len;
3680 * uint8 padding[padding_len];
3683 if (proto_len + 2 > s->init_num)
3685 padding_len = p[proto_len + 1];
3686 if (proto_len + padding_len + 2 != s->init_num)
3689 s->next_proto_negotiated = OPENSSL_malloc(proto_len);
3690 if (!s->next_proto_negotiated)
3692 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,ERR_R_MALLOC_FAILURE);
3695 memcpy(s->next_proto_negotiated, p + 1, proto_len);
3696 s->next_proto_negotiated_len = proto_len;
3702 int tls1_send_server_supplemental_data(SSL *s, int *skip)
3704 if (s->ctx->srv_supp_data_records_count)
3706 unsigned char *p = NULL;
3707 unsigned char *size_loc = NULL;
3708 srv_supp_data_record *record = NULL;
3712 for (i = 0; i < s->ctx->srv_supp_data_records_count; i++)
3714 const unsigned char *out = NULL;
3715 unsigned short outlen = 0;
3717 record = &s->ctx->srv_supp_data_records[i];
3719 /* NULL callback or -1 omits supp data entry */
3722 cb_retval = record->fn1(s, record->supp_data_type,
3725 if (cb_retval == -1)
3726 continue; /* skip this supp data entry */
3729 SSLerr(SSL_F_TLS1_SEND_SERVER_SUPPLEMENTAL_DATA,ERR_R_BUF_LIB);
3732 if (outlen == 0 || TLSEXT_MAXLEN_supplemental_data < outlen + 4 + length)
3734 SSLerr(SSL_F_TLS1_SEND_SERVER_SUPPLEMENTAL_DATA,ERR_R_BUF_LIB);
3737 //write supp data entry...
3738 //if first entry, write handshake message type
3739 //jump back to write length at end
3742 //1 byte message type + 3 bytes for message length
3743 if (!BUF_MEM_grow_clean(s->init_buf, 4))
3745 SSLerr(SSL_F_TLS1_SEND_SERVER_SUPPLEMENTAL_DATA,ERR_R_BUF_LIB);
3748 p = (unsigned char *)s->init_buf->data;
3749 *(p++) = SSL3_MT_SUPPLEMENTAL_DATA;
3750 //hold on to length field to update later
3752 //skip over handshake length field (3 bytes) and supp_data length field (3 bytes)
3756 //2 byte supp data type + 2 byte length + outlen
3757 if (!BUF_MEM_grow(s->init_buf, outlen + 4))
3759 SSLerr(SSL_F_TLS1_SEND_SERVER_SUPPLEMENTAL_DATA,ERR_R_BUF_LIB);
3762 s2n(record->supp_data_type, p);
3764 memcpy(p, out, outlen);
3765 //update length to supp data type (2 bytes) + supp data length (2 bytes) + supp data
3766 length += (outlen + 4);
3771 //write handshake length
3772 l2n3(length - 4, size_loc);
3774 l2n3(length - 7, size_loc);
3775 s->state = SSL3_ST_SW_SUPPLEMENTAL_DATA_B;
3776 s->init_num = length;
3779 return ssl3_do_write(s, SSL3_RT_HANDSHAKE);
3783 //no supp data message sent
3790 int tls1_get_client_supplemental_data(SSL *s)
3796 const unsigned char *p, *d;
3797 unsigned short supp_data_entry_type = 0;
3798 unsigned long supp_data_entry_len = 0;
3799 unsigned long supp_data_len = 0;
3802 n=s->method->ssl_get_message(s,
3803 SSL3_ST_SR_SUPPLEMENTAL_DATA_A,
3804 SSL3_ST_SR_SUPPLEMENTAL_DATA_B,
3805 SSL3_MT_SUPPLEMENTAL_DATA,
3806 /* use default limit */
3807 TLSEXT_MAXLEN_supplemental_data,
3810 if (!ok) return((int)n);
3812 p = (unsigned char *)s->init_msg;
3815 /* The message cannot be empty */
3818 al = SSL_AD_DECODE_ERROR;
3819 SSLerr(SSL_F_TLS1_GET_CLIENT_SUPPLEMENTAL_DATA,SSL_R_LENGTH_MISMATCH);
3822 n2l3(p, supp_data_len);
3823 while (p<d+supp_data_len)
3825 n2s(p, supp_data_entry_type);
3826 n2s(p, supp_data_entry_len);
3827 //if there is a callback for this supp data type, send it
3828 for (i=0; i < s->ctx->srv_supp_data_records_count; i++)
3830 if (s->ctx->srv_supp_data_records[i].supp_data_type == supp_data_entry_type && s->ctx->srv_supp_data_records[i].fn2)
3832 cb_retval = s->ctx->srv_supp_data_records[i].fn2(s, supp_data_entry_type, p, supp_data_entry_len, &al, s->ctx->srv_supp_data_records[i].arg);
3835 SSLerr(SSL_F_TLS1_GET_CLIENT_SUPPLEMENTAL_DATA, ERR_R_SSL_LIB);
3840 p+=supp_data_entry_len;
3844 ssl3_send_alert(s,SSL3_AL_FATAL,al);