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 <openssl/crypto.h>
156 #include "ssl_locl.h"
157 #include "kssl_lcl.h"
158 #include <openssl/buffer.h>
159 #include <openssl/rand.h>
160 #include <openssl/objects.h>
161 #include <openssl/evp.h>
162 #include <openssl/hmac.h>
163 #include <openssl/x509.h>
164 #ifndef OPENSSL_NO_DH
165 #include <openssl/dh.h>
167 #include <openssl/bn.h>
168 #ifndef OPENSSL_NO_KRB5
169 #include <openssl/krb5_asn.h>
171 #include <openssl/md5.h>
173 static const SSL_METHOD *ssl3_get_server_method(int ver);
175 static const SSL_METHOD *ssl3_get_server_method(int ver)
177 if (ver == SSL3_VERSION)
178 return(SSLv3_server_method());
183 #ifndef OPENSSL_NO_SRP
184 static int ssl_check_srp_ext_ClientHello(SSL *s,int *al)
186 int ret = SSL_ERROR_NONE;
188 *al = SSL_AD_UNRECOGNIZED_NAME;
190 if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
191 (s->srp_ctx.TLS_ext_srp_username_callback != NULL))
193 if(s->srp_ctx.login == NULL)
195 /* RFC 5054 says SHOULD reject,
196 we do so if There is no srp login name */
198 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
202 ret = SSL_srp_server_param_with_username(s,al);
209 IMPLEMENT_ssl3_meth_func(SSLv3_server_method,
211 ssl_undefined_function,
212 ssl3_get_server_method)
214 int ssl3_accept(SSL *s)
217 unsigned long alg_k,Time=(unsigned long)time(NULL);
218 void (*cb)(const SSL *ssl,int type,int val)=NULL;
220 int new_state,state,skip=0;
222 RAND_add(&Time,sizeof(Time),0);
226 if (s->info_callback != NULL)
228 else if (s->ctx->info_callback != NULL)
229 cb=s->ctx->info_callback;
231 /* init things to blank */
233 if (!SSL_in_init(s) || SSL_in_before(s)) SSL_clear(s);
237 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_NO_CERTIFICATE_SET);
241 #ifndef OPENSSL_NO_HEARTBEATS
242 /* If we're awaiting a HeartbeatResponse, pretend we
243 * already got and don't await it anymore, because
244 * Heartbeats don't make sense during handshakes anyway.
246 if (s->tlsext_hb_pending)
248 s->tlsext_hb_pending = 0;
259 case SSL_ST_RENEGOTIATE:
261 /* s->state=SSL_ST_ACCEPT; */
265 case SSL_ST_BEFORE|SSL_ST_ACCEPT:
266 case SSL_ST_OK|SSL_ST_ACCEPT:
269 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
271 if ((s->version>>8) != 3)
273 SSLerr(SSL_F_SSL3_ACCEPT, ERR_R_INTERNAL_ERROR);
276 s->type=SSL_ST_ACCEPT;
278 if (s->init_buf == NULL)
280 if ((buf=BUF_MEM_new()) == NULL)
285 if (!BUF_MEM_grow(buf,SSL3_RT_MAX_PLAIN_LENGTH))
293 if (!ssl3_setup_buffers(s))
300 s->s3->flags &= ~SSL3_FLAGS_SGC_RESTART_DONE;
301 s->s3->flags &= ~TLS1_FLAGS_SKIP_CERT_VERIFY;
303 if (s->state != SSL_ST_RENEGOTIATE)
305 /* Ok, we now need to push on a buffering BIO so that
306 * the output is sent in a way that TCP likes :-)
308 if (!ssl_init_wbio_buffer(s,1)) { ret= -1; goto end; }
310 ssl3_init_finished_mac(s);
311 s->state=SSL3_ST_SR_CLNT_HELLO_A;
312 s->ctx->stats.sess_accept++;
314 else if (!s->s3->send_connection_binding &&
315 !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION))
317 /* Server attempting to renegotiate with
318 * client that doesn't support secure
321 SSLerr(SSL_F_SSL3_ACCEPT, SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
322 ssl3_send_alert(s,SSL3_AL_FATAL,SSL_AD_HANDSHAKE_FAILURE);
328 /* s->state == SSL_ST_RENEGOTIATE,
329 * we will just send a HelloRequest */
330 s->ctx->stats.sess_accept_renegotiate++;
331 s->state=SSL3_ST_SW_HELLO_REQ_A;
335 case SSL3_ST_SW_HELLO_REQ_A:
336 case SSL3_ST_SW_HELLO_REQ_B:
339 ret=ssl3_send_hello_request(s);
340 if (ret <= 0) goto end;
341 s->s3->tmp.next_state=SSL3_ST_SW_HELLO_REQ_C;
342 s->state=SSL3_ST_SW_FLUSH;
345 ssl3_init_finished_mac(s);
348 case SSL3_ST_SW_HELLO_REQ_C:
352 case SSL3_ST_SR_CLNT_HELLO_A:
353 case SSL3_ST_SR_CLNT_HELLO_B:
354 case SSL3_ST_SR_CLNT_HELLO_C:
356 if (s->rwstate != SSL_X509_LOOKUP)
358 ret=ssl3_get_client_hello(s);
359 if (ret <= 0) goto end;
361 #ifndef OPENSSL_NO_SRP
364 if ((ret = ssl_check_srp_ext_ClientHello(s,&al)) < 0)
366 /* callback indicates firther work to be done */
367 s->rwstate=SSL_X509_LOOKUP;
370 if (ret != SSL_ERROR_NONE)
372 ssl3_send_alert(s,SSL3_AL_FATAL,al);
373 /* This is not really an error but the only means to
374 for a client to detect whether srp is supported. */
375 if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
376 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_CLIENTHELLO_TLSEXT);
377 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
385 s->state=SSL3_ST_SW_SRVR_HELLO_A;
389 case SSL3_ST_SW_SRVR_HELLO_A:
390 case SSL3_ST_SW_SRVR_HELLO_B:
391 ret=ssl3_send_server_hello(s);
392 if (ret <= 0) goto end;
393 #ifndef OPENSSL_NO_TLSEXT
396 if (s->tlsext_ticket_expected)
397 s->state=SSL3_ST_SW_SESSION_TICKET_A;
399 s->state=SSL3_ST_SW_CHANGE_A;
403 s->state=SSL3_ST_SW_CHANGE_A;
406 #ifndef OPENSSL_NO_TLSEXT
407 s->state = SSL3_ST_SW_SUPPLEMENTAL_DATA_A;
409 s->state = SSL3_ST_SW_CERT_A;
414 #ifndef OPENSSL_NO_TLSEXT
415 case SSL3_ST_SW_SUPPLEMENTAL_DATA_A:
416 case SSL3_ST_SW_SUPPLEMENTAL_DATA_B:
417 /* We promised to send an audit proof in the hello. */
418 if (s->s3->tlsext_authz_promised_to_client)
420 ret = tls1_send_server_supplemental_data(s);
421 if (ret <= 0) goto end;
426 s->state = SSL3_ST_SW_CERT_A;
431 case SSL3_ST_SW_CERT_A:
432 case SSL3_ST_SW_CERT_B:
433 /* Check if it is anon DH or anon ECDH, */
434 /* normal PSK or KRB5 or SRP */
435 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
436 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)
437 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
439 ret=ssl3_send_server_certificate(s);
440 if (ret <= 0) goto end;
441 #ifndef OPENSSL_NO_TLSEXT
442 if (s->tlsext_status_expected)
443 s->state=SSL3_ST_SW_CERT_STATUS_A;
445 s->state=SSL3_ST_SW_KEY_EXCH_A;
450 s->state=SSL3_ST_SW_KEY_EXCH_A;
457 s->state=SSL3_ST_SW_KEY_EXCH_A;
462 case SSL3_ST_SW_KEY_EXCH_A:
463 case SSL3_ST_SW_KEY_EXCH_B:
464 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
466 /* clear this, it may get reset by
467 * send_server_key_exchange */
468 if ((s->options & SSL_OP_EPHEMERAL_RSA)
469 #ifndef OPENSSL_NO_KRB5
470 && !(alg_k & SSL_kKRB5)
471 #endif /* OPENSSL_NO_KRB5 */
473 /* option SSL_OP_EPHEMERAL_RSA sends temporary RSA key
474 * even when forbidden by protocol specs
475 * (handshake may fail as clients are not required to
476 * be able to handle this) */
477 s->s3->tmp.use_rsa_tmp=1;
479 s->s3->tmp.use_rsa_tmp=0;
482 /* only send if a DH key exchange, fortezza or
483 * RSA but we have a sign only certificate
485 * PSK: may send PSK identity hints
487 * For ECC ciphersuites, we send a serverKeyExchange
488 * message only if the cipher suite is either
489 * ECDH-anon or ECDHE. In other cases, the
490 * server certificate contains the server's
491 * public key for key exchange.
493 if (s->s3->tmp.use_rsa_tmp
494 /* PSK: send ServerKeyExchange if PSK identity
495 * hint if provided */
496 #ifndef OPENSSL_NO_PSK
497 || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
499 #ifndef OPENSSL_NO_SRP
500 /* SRP: send ServerKeyExchange */
501 || (alg_k & SSL_kSRP)
503 || (alg_k & SSL_kEDH)
504 || (alg_k & SSL_kEECDH)
505 || ((alg_k & SSL_kRSA)
506 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
507 || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
508 && EVP_PKEY_size(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey)*8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
514 ret=ssl3_send_server_key_exchange(s);
515 if (ret <= 0) goto end;
520 s->state=SSL3_ST_SW_CERT_REQ_A;
524 case SSL3_ST_SW_CERT_REQ_A:
525 case SSL3_ST_SW_CERT_REQ_B:
526 if (/* don't request cert unless asked for it: */
527 !(s->verify_mode & SSL_VERIFY_PEER) ||
528 /* if SSL_VERIFY_CLIENT_ONCE is set,
529 * don't request cert during re-negotiation: */
530 ((s->session->peer != NULL) &&
531 (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
532 /* never request cert in anonymous ciphersuites
533 * (see section "Certificate request" in SSL 3 drafts
534 * and in RFC 2246): */
535 ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
536 /* ... except when the application insists on verification
537 * (against the specs, but s3_clnt.c accepts this for SSL 3) */
538 !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
539 /* never request cert in Kerberos ciphersuites */
540 (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5)
541 /* With normal PSK Certificates and
542 * Certificate Requests are omitted */
543 || (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
545 /* no cert request */
547 s->s3->tmp.cert_request=0;
548 s->state=SSL3_ST_SW_SRVR_DONE_A;
549 if (s->s3->handshake_buffer)
550 if (!ssl3_digest_cached_records(s))
555 s->s3->tmp.cert_request=1;
556 ret=ssl3_send_certificate_request(s);
557 if (ret <= 0) goto end;
558 #ifndef NETSCAPE_HANG_BUG
559 s->state=SSL3_ST_SW_SRVR_DONE_A;
561 s->state=SSL3_ST_SW_FLUSH;
562 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
568 case SSL3_ST_SW_SRVR_DONE_A:
569 case SSL3_ST_SW_SRVR_DONE_B:
570 ret=ssl3_send_server_done(s);
571 if (ret <= 0) goto end;
572 s->s3->tmp.next_state=SSL3_ST_SR_CERT_A;
573 s->state=SSL3_ST_SW_FLUSH;
577 case SSL3_ST_SW_FLUSH:
579 /* This code originally checked to see if
580 * any data was pending using BIO_CTRL_INFO
581 * and then flushed. This caused problems
582 * as documented in PR#1939. The proposed
583 * fix doesn't completely resolve this issue
584 * as buggy implementations of BIO_CTRL_PENDING
585 * still exist. So instead we just flush
589 s->rwstate=SSL_WRITING;
590 if (BIO_flush(s->wbio) <= 0)
595 s->rwstate=SSL_NOTHING;
597 s->state=s->s3->tmp.next_state;
600 case SSL3_ST_SR_CERT_A:
601 case SSL3_ST_SR_CERT_B:
602 /* Check for second client hello (MS SGC) */
603 ret = ssl3_check_client_hello(s);
607 s->state = SSL3_ST_SR_CLNT_HELLO_C;
609 if (s->s3->tmp.cert_request)
611 ret=ssl3_get_client_certificate(s);
612 if (ret <= 0) goto end;
615 s->state=SSL3_ST_SR_KEY_EXCH_A;
619 case SSL3_ST_SR_KEY_EXCH_A:
620 case SSL3_ST_SR_KEY_EXCH_B:
621 ret=ssl3_get_client_key_exchange(s);
626 /* For the ECDH ciphersuites when
627 * the client sends its ECDH pub key in
628 * a certificate, the CertificateVerify
629 * message is not sent.
630 * Also for GOST ciphersuites when
631 * the client uses its key from the certificate
634 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
635 s->state=SSL3_ST_SR_FINISHED_A;
637 if (s->s3->next_proto_neg_seen)
638 s->state=SSL3_ST_SR_NEXT_PROTO_A;
640 s->state=SSL3_ST_SR_FINISHED_A;
644 else if (TLS1_get_version(s) >= TLS1_2_VERSION)
646 s->state=SSL3_ST_SR_CERT_VRFY_A;
648 if (!s->session->peer)
650 /* For TLS v1.2 freeze the handshake buffer
651 * at this point and digest cached records.
653 if (!s->s3->handshake_buffer)
655 SSLerr(SSL_F_SSL3_ACCEPT,ERR_R_INTERNAL_ERROR);
658 s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE;
659 if (!ssl3_digest_cached_records(s))
667 s->state=SSL3_ST_SR_CERT_VRFY_A;
670 /* We need to get hashes here so if there is
671 * a client cert, it can be verified
672 * FIXME - digest processing for CertificateVerify
673 * should be generalized. But it is next step
675 if (s->s3->handshake_buffer)
676 if (!ssl3_digest_cached_records(s))
678 for (dgst_num=0; dgst_num<SSL_MAX_DIGEST;dgst_num++)
679 if (s->s3->handshake_dgst[dgst_num])
683 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]));
684 dgst_size=EVP_MD_CTX_size(s->s3->handshake_dgst[dgst_num]);
695 case SSL3_ST_SR_CERT_VRFY_A:
696 case SSL3_ST_SR_CERT_VRFY_B:
698 /* we should decide if we expected this one */
699 ret=ssl3_get_cert_verify(s);
700 if (ret <= 0) goto end;
702 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
703 s->state=SSL3_ST_SR_FINISHED_A;
705 if (s->s3->next_proto_neg_seen)
706 s->state=SSL3_ST_SR_NEXT_PROTO_A;
708 s->state=SSL3_ST_SR_FINISHED_A;
713 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
714 case SSL3_ST_SR_NEXT_PROTO_A:
715 case SSL3_ST_SR_NEXT_PROTO_B:
716 ret=ssl3_get_next_proto(s);
717 if (ret <= 0) goto end;
719 s->state=SSL3_ST_SR_FINISHED_A;
723 case SSL3_ST_SR_FINISHED_A:
724 case SSL3_ST_SR_FINISHED_B:
725 ret=ssl3_get_finished(s,SSL3_ST_SR_FINISHED_A,
726 SSL3_ST_SR_FINISHED_B);
727 if (ret <= 0) goto end;
730 #ifndef OPENSSL_NO_TLSEXT
731 else if (s->tlsext_ticket_expected)
732 s->state=SSL3_ST_SW_SESSION_TICKET_A;
735 s->state=SSL3_ST_SW_CHANGE_A;
739 #ifndef OPENSSL_NO_TLSEXT
740 case SSL3_ST_SW_SESSION_TICKET_A:
741 case SSL3_ST_SW_SESSION_TICKET_B:
742 ret=ssl3_send_newsession_ticket(s);
743 if (ret <= 0) goto end;
744 s->state=SSL3_ST_SW_CHANGE_A;
748 case SSL3_ST_SW_CERT_STATUS_A:
749 case SSL3_ST_SW_CERT_STATUS_B:
750 ret=ssl3_send_cert_status(s);
751 if (ret <= 0) goto end;
752 s->state=SSL3_ST_SW_KEY_EXCH_A;
758 case SSL3_ST_SW_CHANGE_A:
759 case SSL3_ST_SW_CHANGE_B:
761 s->session->cipher=s->s3->tmp.new_cipher;
762 if (!s->method->ssl3_enc->setup_key_block(s))
763 { ret= -1; goto end; }
765 ret=ssl3_send_change_cipher_spec(s,
766 SSL3_ST_SW_CHANGE_A,SSL3_ST_SW_CHANGE_B);
768 if (ret <= 0) goto end;
769 s->state=SSL3_ST_SW_FINISHED_A;
772 if (!s->method->ssl3_enc->change_cipher_state(s,
773 SSL3_CHANGE_CIPHER_SERVER_WRITE))
781 case SSL3_ST_SW_FINISHED_A:
782 case SSL3_ST_SW_FINISHED_B:
783 ret=ssl3_send_finished(s,
784 SSL3_ST_SW_FINISHED_A,SSL3_ST_SW_FINISHED_B,
785 s->method->ssl3_enc->server_finished_label,
786 s->method->ssl3_enc->server_finished_label_len);
787 if (ret <= 0) goto end;
788 s->state=SSL3_ST_SW_FLUSH;
791 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
792 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
794 if (s->s3->next_proto_neg_seen)
795 s->s3->tmp.next_state=SSL3_ST_SR_NEXT_PROTO_A;
797 s->s3->tmp.next_state=SSL3_ST_SR_FINISHED_A;
801 s->s3->tmp.next_state=SSL_ST_OK;
806 /* clean a few things up */
807 ssl3_cleanup_key_block(s);
809 BUF_MEM_free(s->init_buf);
812 /* remove buffering on output */
813 ssl_free_wbio_buffer(s);
817 if (s->renegotiate == 2) /* skipped if we just sent a HelloRequest */
822 ssl_update_cache(s,SSL_SESS_CACHE_SERVER);
824 s->ctx->stats.sess_accept_good++;
826 s->handshake_func=ssl3_accept;
828 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_DONE,1);
836 SSLerr(SSL_F_SSL3_ACCEPT,SSL_R_UNKNOWN_STATE);
842 if (!s->s3->tmp.reuse_message && !skip)
846 if ((ret=BIO_flush(s->wbio)) <= 0)
851 if ((cb != NULL) && (s->state != state))
855 cb(s,SSL_CB_ACCEPT_LOOP,1);
862 /* BIO_flush(s->wbio); */
866 cb(s,SSL_CB_ACCEPT_EXIT,ret);
870 int ssl3_send_hello_request(SSL *s)
874 if (s->state == SSL3_ST_SW_HELLO_REQ_A)
876 p=(unsigned char *)s->init_buf->data;
877 *(p++)=SSL3_MT_HELLO_REQUEST;
882 s->state=SSL3_ST_SW_HELLO_REQ_B;
883 /* number of bytes to write */
888 /* SSL3_ST_SW_HELLO_REQ_B */
889 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
892 int ssl3_check_client_hello(SSL *s)
897 /* this function is called when we really expect a Certificate message,
898 * so permit appropriate message length */
899 n=s->method->ssl_get_message(s,
905 if (!ok) return((int)n);
906 s->s3->tmp.reuse_message = 1;
907 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_HELLO)
909 /* We only allow the client to restart the handshake once per
911 if (s->s3->flags & SSL3_FLAGS_SGC_RESTART_DONE)
913 SSLerr(SSL_F_SSL3_CHECK_CLIENT_HELLO, SSL_R_MULTIPLE_SGC_RESTARTS);
916 /* Throw away what we have done so far in the current handshake,
917 * which will now be aborted. (A full SSL_clear would be too much.) */
918 #ifndef OPENSSL_NO_DH
919 if (s->s3->tmp.dh != NULL)
921 DH_free(s->s3->tmp.dh);
922 s->s3->tmp.dh = NULL;
925 #ifndef OPENSSL_NO_ECDH
926 if (s->s3->tmp.ecdh != NULL)
928 EC_KEY_free(s->s3->tmp.ecdh);
929 s->s3->tmp.ecdh = NULL;
932 s->s3->flags |= SSL3_FLAGS_SGC_RESTART_DONE;
938 int ssl3_get_client_hello(SSL *s)
940 int i,j,ok,al=SSL_AD_INTERNAL_ERROR,ret= -1;
941 unsigned int cookie_len;
944 unsigned char *p,*d,*q;
946 #ifndef OPENSSL_NO_COMP
949 STACK_OF(SSL_CIPHER) *ciphers=NULL;
951 /* We do this so that we will respond with our native type.
952 * If we are TLSv1 and we get SSLv3, we will respond with TLSv1,
953 * This down switching should be handled by a different method.
954 * If we are SSLv3, we will respond with SSLv3, even if prompted with
957 if (s->state == SSL3_ST_SR_CLNT_HELLO_A
960 s->state=SSL3_ST_SR_CLNT_HELLO_B;
963 n=s->method->ssl_get_message(s,
964 SSL3_ST_SR_CLNT_HELLO_B,
965 SSL3_ST_SR_CLNT_HELLO_C,
966 SSL3_MT_CLIENT_HELLO,
967 SSL3_RT_MAX_PLAIN_LENGTH,
970 if (!ok) return((int)n);
972 d=p=(unsigned char *)s->init_msg;
974 /* use version from inside client hello, not from record header
975 * (may differ: see RFC 2246, Appendix E, second paragraph) */
976 s->client_version=(((int)p[0])<<8)|(int)p[1];
979 if ((s->version == DTLS1_VERSION && s->client_version > s->version) ||
980 (s->version != DTLS1_VERSION && s->client_version < s->version))
982 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_WRONG_VERSION_NUMBER);
983 if ((s->client_version>>8) == SSL3_VERSION_MAJOR)
985 /* similar to ssl3_get_record, send alert using remote version number */
986 s->version = s->client_version;
988 al = SSL_AD_PROTOCOL_VERSION;
992 /* If we require cookies and this ClientHello doesn't
993 * contain one, just return since we do not want to
994 * allocate any memory yet. So check cookie length...
996 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE)
998 unsigned int session_length, cookie_length;
1000 session_length = *(p + SSL3_RANDOM_SIZE);
1001 cookie_length = *(p + SSL3_RANDOM_SIZE + session_length + 1);
1003 if (cookie_length == 0)
1007 /* load the client random */
1008 memcpy(s->s3->client_random,p,SSL3_RANDOM_SIZE);
1009 p+=SSL3_RANDOM_SIZE;
1011 /* get the session-id */
1015 /* Versions before 0.9.7 always allow clients to resume sessions in renegotiation.
1016 * 0.9.7 and later allow this by default, but optionally ignore resumption requests
1017 * with flag SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1018 * than a change to default behavior so that applications relying on this for security
1019 * won't even compile against older library versions).
1021 * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to request
1022 * renegotiation but not a new session (s->new_session remains unset): for servers,
1023 * this essentially just means that the SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
1024 * setting will be ignored.
1026 if ((s->new_session && (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION)))
1028 if (!ssl_get_new_session(s,1))
1033 i=ssl_get_prev_session(s, p, j, d + n);
1035 { /* previous session */
1042 if (!ssl_get_new_session(s,1))
1049 if (s->version == DTLS1_VERSION || s->version == DTLS1_BAD_VER)
1052 cookie_len = *(p++);
1055 * The ClientHello may contain a cookie even if the
1056 * HelloVerify message has not been sent--make sure that it
1057 * does not cause an overflow.
1059 if ( cookie_len > sizeof(s->d1->rcvd_cookie))
1062 al = SSL_AD_DECODE_ERROR;
1063 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1067 /* verify the cookie if appropriate option is set. */
1068 if ((SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) &&
1071 memcpy(s->d1->rcvd_cookie, p, cookie_len);
1073 if ( s->ctx->app_verify_cookie_cb != NULL)
1075 if ( s->ctx->app_verify_cookie_cb(s, s->d1->rcvd_cookie,
1078 al=SSL_AD_HANDSHAKE_FAILURE;
1079 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1080 SSL_R_COOKIE_MISMATCH);
1083 /* else cookie verification succeeded */
1085 else if ( memcmp(s->d1->rcvd_cookie, s->d1->cookie,
1086 s->d1->cookie_len) != 0) /* default verification */
1088 al=SSL_AD_HANDSHAKE_FAILURE;
1089 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1090 SSL_R_COOKIE_MISMATCH);
1101 if ((i == 0) && (j != 0))
1103 /* we need a cipher if we are not resuming a session */
1104 al=SSL_AD_ILLEGAL_PARAMETER;
1105 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_SPECIFIED);
1110 /* not enough data */
1111 al=SSL_AD_DECODE_ERROR;
1112 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
1115 if ((i > 0) && (ssl_bytes_to_cipher_list(s,p,i,&(ciphers))
1122 /* If it is a hit, check that the cipher is in the list */
1123 if ((s->hit) && (i > 0))
1126 id=s->session->cipher->id;
1129 printf("client sent %d ciphers\n",sk_num(ciphers));
1131 for (i=0; i<sk_SSL_CIPHER_num(ciphers); i++)
1133 c=sk_SSL_CIPHER_value(ciphers,i);
1135 printf("client [%2d of %2d]:%s\n",
1136 i,sk_num(ciphers),SSL_CIPHER_get_name(c));
1144 /* Disabled because it can be used in a ciphersuite downgrade
1145 * attack: CVE-2010-4180.
1148 if (j == 0 && (s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG) && (sk_SSL_CIPHER_num(ciphers) == 1))
1150 /* Special case as client bug workaround: the previously used cipher may
1151 * not be in the current list, the client instead might be trying to
1152 * continue using a cipher that before wasn't chosen due to server
1153 * preferences. We'll have to reject the connection if the cipher is not
1154 * enabled, though. */
1155 c = sk_SSL_CIPHER_value(ciphers, 0);
1156 if (sk_SSL_CIPHER_find(SSL_get_ciphers(s), c) >= 0)
1158 s->session->cipher = c;
1165 /* we need to have the cipher in the cipher
1166 * list if we are asked to reuse it */
1167 al=SSL_AD_ILLEGAL_PARAMETER;
1168 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_CIPHER_MISSING);
1177 /* not enough data */
1178 al=SSL_AD_DECODE_ERROR;
1179 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_LENGTH_MISMATCH);
1185 if (p[j] == 0) break;
1192 al=SSL_AD_DECODE_ERROR;
1193 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_COMPRESSION_SPECIFIED);
1197 #ifndef OPENSSL_NO_TLSEXT
1199 if (s->version >= SSL3_VERSION)
1201 if (!ssl_parse_clienthello_tlsext(s,&p,d,n))
1203 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_PARSE_TLSEXT);
1208 /* Check if we want to use external pre-shared secret for this
1209 * handshake for not reused session only. We need to generate
1210 * server_random before calling tls_session_secret_cb in order to allow
1211 * SessionTicket processing to use it in key derivation. */
1215 Time=(unsigned long)time(NULL); /* Time */
1216 pos=s->s3->server_random;
1218 if (RAND_pseudo_bytes(pos,SSL3_RANDOM_SIZE-4) <= 0)
1224 if (!s->hit && s->version >= TLS1_VERSION && s->tls_session_secret_cb)
1226 SSL_CIPHER *pref_cipher=NULL;
1228 s->session->master_key_length=sizeof(s->session->master_key);
1229 if(s->tls_session_secret_cb(s, s->session->master_key, &s->session->master_key_length,
1230 ciphers, &pref_cipher, s->tls_session_secret_cb_arg))
1233 s->session->ciphers=ciphers;
1234 s->session->verify_result=X509_V_OK;
1238 /* check if some cipher was preferred by call back */
1239 pref_cipher=pref_cipher ? pref_cipher : ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1240 if (pref_cipher == NULL)
1242 al=SSL_AD_HANDSHAKE_FAILURE;
1243 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
1247 s->session->cipher=pref_cipher;
1250 sk_SSL_CIPHER_free(s->cipher_list);
1252 if (s->cipher_list_by_id)
1253 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1255 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1256 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1261 /* Worst case, we will use the NULL compression, but if we have other
1262 * options, we will now look for them. We have i-1 compression
1263 * algorithms from the client, starting at q. */
1264 s->s3->tmp.new_compression=NULL;
1265 #ifndef OPENSSL_NO_COMP
1266 /* This only happens if we have a cache hit */
1267 if (s->session->compress_meth != 0)
1269 int m, comp_id = s->session->compress_meth;
1270 /* Perform sanity checks on resumed compression algorithm */
1271 /* Can't disable compression */
1272 if (s->options & SSL_OP_NO_COMPRESSION)
1274 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
1277 /* Look for resumed compression method */
1278 for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++)
1280 comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
1281 if (comp_id == comp->id)
1283 s->s3->tmp.new_compression=comp;
1287 if (s->s3->tmp.new_compression == NULL)
1289 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INVALID_COMPRESSION_ALGORITHM);
1292 /* Look for resumed method in compression list */
1293 for (m = 0; m < i; m++)
1295 if (q[m] == comp_id)
1300 al=SSL_AD_ILLEGAL_PARAMETER;
1301 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_REQUIRED_COMPRESSSION_ALGORITHM_MISSING);
1307 else if (!(s->options & SSL_OP_NO_COMPRESSION) && s->ctx->comp_methods)
1308 { /* See if we have a match */
1309 int m,nn,o,v,done=0;
1311 nn=sk_SSL_COMP_num(s->ctx->comp_methods);
1312 for (m=0; m<nn; m++)
1314 comp=sk_SSL_COMP_value(s->ctx->comp_methods,m);
1327 s->s3->tmp.new_compression=comp;
1332 /* If compression is disabled we'd better not try to resume a session
1333 * using compression.
1335 if (s->session->compress_meth != 0)
1337 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_INCONSISTENT_COMPRESSION);
1342 /* Given s->session->ciphers and SSL_get_ciphers, we must
1347 #ifdef OPENSSL_NO_COMP
1348 s->session->compress_meth=0;
1350 s->session->compress_meth=(comp == NULL)?0:comp->id;
1352 if (s->session->ciphers != NULL)
1353 sk_SSL_CIPHER_free(s->session->ciphers);
1354 s->session->ciphers=ciphers;
1355 if (ciphers == NULL)
1357 al=SSL_AD_ILLEGAL_PARAMETER;
1358 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_CIPHERS_PASSED);
1362 c=ssl3_choose_cipher(s,s->session->ciphers,
1363 SSL_get_ciphers(s));
1367 al=SSL_AD_HANDSHAKE_FAILURE;
1368 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,SSL_R_NO_SHARED_CIPHER);
1371 s->s3->tmp.new_cipher=c;
1372 /* check whether we should disable session resumption */
1373 if (s->not_resumable_session_cb != NULL)
1374 s->session->not_resumable=s->not_resumable_session_cb(s,
1375 ((c->algorithm_mkey & (SSL_kEDH | SSL_kEECDH)) != 0));
1376 if (s->session->not_resumable)
1377 /* do not send a session ticket */
1378 s->tlsext_ticket_expected = 0;
1382 /* Session-id reuse */
1383 #ifdef REUSE_CIPHER_BUG
1384 STACK_OF(SSL_CIPHER) *sk;
1385 SSL_CIPHER *nc=NULL;
1386 SSL_CIPHER *ec=NULL;
1388 if (s->options & SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG)
1390 sk=s->session->ciphers;
1391 for (i=0; i<sk_SSL_CIPHER_num(sk); i++)
1393 c=sk_SSL_CIPHER_value(sk,i);
1394 if (c->algorithm_enc & SSL_eNULL)
1396 if (SSL_C_IS_EXPORT(c))
1400 s->s3->tmp.new_cipher=nc;
1401 else if (ec != NULL)
1402 s->s3->tmp.new_cipher=ec;
1404 s->s3->tmp.new_cipher=s->session->cipher;
1408 s->s3->tmp.new_cipher=s->session->cipher;
1411 if (TLS1_get_version(s) < TLS1_2_VERSION || !(s->verify_mode & SSL_VERIFY_PEER))
1413 if (!ssl3_digest_cached_records(s))
1417 /* we now have the following setup.
1419 * cipher_list - our prefered list of ciphers
1420 * ciphers - the clients prefered list of ciphers
1421 * compression - basically ignored right now
1422 * ssl version is set - sslv3
1423 * s->session - The ssl session has been setup.
1424 * s->hit - session reuse flag
1425 * s->tmp.new_cipher - the new cipher to use.
1432 ssl3_send_alert(s,SSL3_AL_FATAL,al);
1435 if (ciphers != NULL) sk_SSL_CIPHER_free(ciphers);
1439 int ssl3_send_server_hello(SSL *s)
1442 unsigned char *p,*d;
1445 #ifdef OPENSSL_NO_TLSEXT
1449 if (s->state == SSL3_ST_SW_SRVR_HELLO_A)
1451 buf=(unsigned char *)s->init_buf->data;
1452 #ifdef OPENSSL_NO_TLSEXT
1453 p=s->s3->server_random;
1454 /* Generate server_random if it was not needed previously */
1455 Time=(unsigned long)time(NULL); /* Time */
1457 if (RAND_pseudo_bytes(p,SSL3_RANDOM_SIZE-4) <= 0)
1460 /* Do the message type and length last */
1463 *(p++)=s->version>>8;
1464 *(p++)=s->version&0xff;
1467 memcpy(p,s->s3->server_random,SSL3_RANDOM_SIZE);
1468 p+=SSL3_RANDOM_SIZE;
1470 /* There are several cases for the session ID to send
1471 * back in the server hello:
1472 * - For session reuse from the session cache,
1473 * we send back the old session ID.
1474 * - If stateless session reuse (using a session ticket)
1475 * is successful, we send back the client's "session ID"
1476 * (which doesn't actually identify the session).
1477 * - If it is a new session, we send back the new
1479 * - However, if we want the new session to be single-use,
1480 * we send back a 0-length session ID.
1481 * s->hit is non-zero in either case of session reuse,
1482 * so the following won't overwrite an ID that we're supposed
1485 if (s->session->not_resumable ||
1486 (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1488 s->session->session_id_length=0;
1490 sl=s->session->session_id_length;
1491 if (sl > (int)sizeof(s->session->session_id))
1493 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1497 memcpy(p,s->session->session_id,sl);
1500 /* put the cipher */
1501 i=ssl3_put_cipher_by_char(s->s3->tmp.new_cipher,p);
1504 /* put the compression method */
1505 #ifdef OPENSSL_NO_COMP
1508 if (s->s3->tmp.new_compression == NULL)
1511 *(p++)=s->s3->tmp.new_compression->id;
1513 #ifndef OPENSSL_NO_TLSEXT
1514 if (ssl_prepare_serverhello_tlsext(s) <= 0)
1516 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO,SSL_R_SERVERHELLO_TLSEXT);
1519 if ((p = ssl_add_serverhello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
1521 SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO,ERR_R_INTERNAL_ERROR);
1528 *(d++)=SSL3_MT_SERVER_HELLO;
1531 s->state=SSL3_ST_SW_SRVR_HELLO_B;
1532 /* number of bytes to write */
1537 /* SSL3_ST_SW_SRVR_HELLO_B */
1538 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1541 int ssl3_send_server_done(SSL *s)
1545 if (s->state == SSL3_ST_SW_SRVR_DONE_A)
1547 p=(unsigned char *)s->init_buf->data;
1550 *(p++)=SSL3_MT_SERVER_DONE;
1555 s->state=SSL3_ST_SW_SRVR_DONE_B;
1556 /* number of bytes to write */
1561 /* SSL3_ST_SW_SRVR_DONE_B */
1562 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
1565 int ssl3_send_server_key_exchange(SSL *s)
1567 #ifndef OPENSSL_NO_RSA
1571 unsigned char md_buf[MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH];
1574 #ifndef OPENSSL_NO_DH
1577 #ifndef OPENSSL_NO_ECDH
1578 EC_KEY *ecdh=NULL, *ecdhp;
1579 unsigned char *encodedPoint = NULL;
1582 BN_CTX *bn_ctx = NULL;
1585 const EVP_MD *md = NULL;
1586 unsigned char *p,*d;
1596 EVP_MD_CTX_init(&md_ctx);
1597 if (s->state == SSL3_ST_SW_KEY_EXCH_A)
1599 type=s->s3->tmp.new_cipher->algorithm_mkey;
1604 r[0]=r[1]=r[2]=r[3]=NULL;
1606 #ifndef OPENSSL_NO_RSA
1607 if (type & SSL_kRSA)
1610 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL))
1612 rsa=s->cert->rsa_tmp_cb(s,
1613 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1614 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1617 al=SSL_AD_HANDSHAKE_FAILURE;
1618 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
1626 al=SSL_AD_HANDSHAKE_FAILURE;
1627 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_KEY);
1632 s->s3->tmp.use_rsa_tmp=1;
1636 #ifndef OPENSSL_NO_DH
1637 if (type & SSL_kEDH)
1640 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1641 dhp=s->cert->dh_tmp_cb(s,
1642 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1643 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1646 al=SSL_AD_HANDSHAKE_FAILURE;
1647 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
1651 if (s->s3->tmp.dh != NULL)
1653 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1657 if ((dh=DHparams_dup(dhp)) == NULL)
1659 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1664 if ((dhp->pub_key == NULL ||
1665 dhp->priv_key == NULL ||
1666 (s->options & SSL_OP_SINGLE_DH_USE)))
1668 if(!DH_generate_key(dh))
1670 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1677 dh->pub_key=BN_dup(dhp->pub_key);
1678 dh->priv_key=BN_dup(dhp->priv_key);
1679 if ((dh->pub_key == NULL) ||
1680 (dh->priv_key == NULL))
1682 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_DH_LIB);
1692 #ifndef OPENSSL_NO_ECDH
1693 if (type & SSL_kEECDH)
1695 const EC_GROUP *group;
1697 ecdhp=cert->ecdh_tmp;
1698 if (s->cert->ecdh_tmp_auto)
1700 /* Get NID of first shared curve */
1701 int nid = tls1_shared_curve(s, 0);
1702 if (nid != NID_undef)
1703 ecdhp = EC_KEY_new_by_curve_name(nid);
1705 else if ((ecdhp == NULL) && s->cert->ecdh_tmp_cb)
1707 ecdhp=s->cert->ecdh_tmp_cb(s,
1708 SSL_C_IS_EXPORT(s->s3->tmp.new_cipher),
1709 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher));
1713 al=SSL_AD_HANDSHAKE_FAILURE;
1714 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
1718 if (s->s3->tmp.ecdh != NULL)
1720 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1724 /* Duplicate the ECDH structure. */
1727 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1730 if (s->cert->ecdh_tmp_auto)
1732 else if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1734 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1738 s->s3->tmp.ecdh=ecdh;
1739 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1740 (EC_KEY_get0_private_key(ecdh) == NULL) ||
1741 (s->options & SSL_OP_SINGLE_ECDH_USE))
1743 if(!EC_KEY_generate_key(ecdh))
1745 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1750 if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
1751 (EC_KEY_get0_public_key(ecdh) == NULL) ||
1752 (EC_KEY_get0_private_key(ecdh) == NULL))
1754 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1758 if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1759 (EC_GROUP_get_degree(group) > 163))
1761 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1765 /* XXX: For now, we only support ephemeral ECDH
1766 * keys over named (not generic) curves. For
1767 * supported named curves, curve_id is non-zero.
1770 tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
1773 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
1777 /* Encode the public key.
1778 * First check the size of encoding and
1779 * allocate memory accordingly.
1781 encodedlen = EC_POINT_point2oct(group,
1782 EC_KEY_get0_public_key(ecdh),
1783 POINT_CONVERSION_UNCOMPRESSED,
1786 encodedPoint = (unsigned char *)
1787 OPENSSL_malloc(encodedlen*sizeof(unsigned char));
1788 bn_ctx = BN_CTX_new();
1789 if ((encodedPoint == NULL) || (bn_ctx == NULL))
1791 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_MALLOC_FAILURE);
1796 encodedlen = EC_POINT_point2oct(group,
1797 EC_KEY_get0_public_key(ecdh),
1798 POINT_CONVERSION_UNCOMPRESSED,
1799 encodedPoint, encodedlen, bn_ctx);
1801 if (encodedlen == 0)
1803 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_ECDH_LIB);
1807 BN_CTX_free(bn_ctx); bn_ctx=NULL;
1809 /* XXX: For now, we only support named (not
1810 * generic) curves in ECDH ephemeral key exchanges.
1811 * In this situation, we need four additional bytes
1812 * to encode the entire ServerECDHParams
1817 /* We'll generate the serverKeyExchange message
1818 * explicitly so we can set these to NULLs
1826 #endif /* !OPENSSL_NO_ECDH */
1827 #ifndef OPENSSL_NO_PSK
1828 if (type & SSL_kPSK)
1830 /* reserve size for record length and PSK identity hint*/
1831 n+=2+strlen(s->ctx->psk_identity_hint);
1834 #endif /* !OPENSSL_NO_PSK */
1835 #ifndef OPENSSL_NO_SRP
1836 if (type & SSL_kSRP)
1838 if ((s->srp_ctx.N == NULL) ||
1839 (s->srp_ctx.g == NULL) ||
1840 (s->srp_ctx.s == NULL) ||
1841 (s->srp_ctx.B == NULL))
1843 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_MISSING_SRP_PARAM);
1854 al=SSL_AD_HANDSHAKE_FAILURE;
1855 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
1858 for (i=0; r[i] != NULL && i<4; i++)
1860 nr[i]=BN_num_bytes(r[i]);
1861 #ifndef OPENSSL_NO_SRP
1862 if ((i == 2) && (type & SSL_kSRP))
1869 if (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
1870 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK))
1872 if ((pkey=ssl_get_sign_pkey(s,s->s3->tmp.new_cipher,&md))
1875 al=SSL_AD_DECODE_ERROR;
1878 kn=EVP_PKEY_size(pkey);
1886 if (!BUF_MEM_grow_clean(buf,n+4+kn))
1888 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_BUF);
1891 d=(unsigned char *)s->init_buf->data;
1894 for (i=0; r[i] != NULL && i<4; i++)
1896 #ifndef OPENSSL_NO_SRP
1897 if ((i == 2) && (type & SSL_kSRP))
1909 #ifndef OPENSSL_NO_ECDH
1910 if (type & SSL_kEECDH)
1912 /* XXX: For now, we only support named (not generic) curves.
1913 * In this situation, the serverKeyExchange message has:
1914 * [1 byte CurveType], [2 byte CurveName]
1915 * [1 byte length of encoded point], followed by
1916 * the actual encoded point itself
1918 *p = NAMED_CURVE_TYPE;
1926 memcpy((unsigned char*)p,
1927 (unsigned char *)encodedPoint,
1929 OPENSSL_free(encodedPoint);
1930 encodedPoint = NULL;
1935 #ifndef OPENSSL_NO_PSK
1936 if (type & SSL_kPSK)
1938 /* copy PSK identity hint */
1939 s2n(strlen(s->ctx->psk_identity_hint), p);
1940 strncpy((char *)p, s->ctx->psk_identity_hint, strlen(s->ctx->psk_identity_hint));
1941 p+=strlen(s->ctx->psk_identity_hint);
1948 /* n is the length of the params, they start at &(d[4])
1949 * and p points to the space at the end. */
1950 #ifndef OPENSSL_NO_RSA
1951 if (pkey->type == EVP_PKEY_RSA
1952 && TLS1_get_version(s) < TLS1_2_VERSION)
1956 for (num=2; num > 0; num--)
1958 EVP_MD_CTX_set_flags(&md_ctx,
1959 EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
1960 EVP_DigestInit_ex(&md_ctx,(num == 2)
1961 ?s->ctx->md5:s->ctx->sha1, NULL);
1962 EVP_DigestUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
1963 EVP_DigestUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
1964 EVP_DigestUpdate(&md_ctx,&(d[4]),n);
1965 EVP_DigestFinal_ex(&md_ctx,q,
1966 (unsigned int *)&i);
1970 if (RSA_sign(NID_md5_sha1, md_buf, j,
1971 &(p[2]), &u, pkey->pkey.rsa) <= 0)
1973 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_RSA);
1983 /* For TLS1.2 and later send signature
1985 if (TLS1_get_version(s) >= TLS1_2_VERSION)
1987 if (!tls12_get_sigandhash(p, pkey, md))
1989 /* Should never happen */
1990 al=SSL_AD_INTERNAL_ERROR;
1991 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
1997 fprintf(stderr, "Using hash %s\n",
2000 EVP_SignInit_ex(&md_ctx, md, NULL);
2001 EVP_SignUpdate(&md_ctx,&(s->s3->client_random[0]),SSL3_RANDOM_SIZE);
2002 EVP_SignUpdate(&md_ctx,&(s->s3->server_random[0]),SSL3_RANDOM_SIZE);
2003 EVP_SignUpdate(&md_ctx,&(d[4]),n);
2004 if (!EVP_SignFinal(&md_ctx,&(p[2]),
2005 (unsigned int *)&i,pkey))
2007 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,ERR_LIB_EVP);
2012 if (TLS1_get_version(s) >= TLS1_2_VERSION)
2017 /* Is this error check actually needed? */
2018 al=SSL_AD_HANDSHAKE_FAILURE;
2019 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,SSL_R_UNKNOWN_PKEY_TYPE);
2024 *(d++)=SSL3_MT_SERVER_KEY_EXCHANGE;
2027 /* we should now have things packed up, so lets send
2033 s->state = SSL3_ST_SW_KEY_EXCH_B;
2034 EVP_MD_CTX_cleanup(&md_ctx);
2035 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
2037 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2039 #ifndef OPENSSL_NO_ECDH
2040 if (encodedPoint != NULL) OPENSSL_free(encodedPoint);
2041 BN_CTX_free(bn_ctx);
2043 EVP_MD_CTX_cleanup(&md_ctx);
2047 int ssl3_send_certificate_request(SSL *s)
2049 unsigned char *p,*d;
2051 STACK_OF(X509_NAME) *sk=NULL;
2055 if (s->state == SSL3_ST_SW_CERT_REQ_A)
2059 d=p=(unsigned char *)&(buf->data[4]);
2061 /* get the list of acceptable cert types */
2063 n=ssl3_get_req_cert_type(s,p);
2068 if (TLS1_get_version(s) >= TLS1_2_VERSION)
2070 nl = tls12_get_req_sig_algs(s, p + 2);
2080 sk=SSL_get_client_CA_list(s);
2084 for (i=0; i<sk_X509_NAME_num(sk); i++)
2086 name=sk_X509_NAME_value(sk,i);
2087 j=i2d_X509_NAME(name,NULL);
2088 if (!BUF_MEM_grow_clean(buf,4+n+j+2))
2090 SSLerr(SSL_F_SSL3_SEND_CERTIFICATE_REQUEST,ERR_R_BUF_LIB);
2093 p=(unsigned char *)&(buf->data[4+n]);
2094 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
2097 i2d_X509_NAME(name,&p);
2104 i2d_X509_NAME(name,&p);
2105 j-=2; s2n(j,d); j+=2;
2111 /* else no CA names */
2112 p=(unsigned char *)&(buf->data[4+off]);
2115 d=(unsigned char *)buf->data;
2116 *(d++)=SSL3_MT_CERTIFICATE_REQUEST;
2119 /* we should now have things packed up, so lets send
2124 #ifdef NETSCAPE_HANG_BUG
2125 p=(unsigned char *)s->init_buf->data + s->init_num;
2128 *(p++)=SSL3_MT_SERVER_DONE;
2135 s->state = SSL3_ST_SW_CERT_REQ_B;
2138 /* SSL3_ST_SW_CERT_REQ_B */
2139 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
2144 int ssl3_get_client_key_exchange(SSL *s)
2148 unsigned long alg_k;
2150 #ifndef OPENSSL_NO_RSA
2152 EVP_PKEY *pkey=NULL;
2154 #ifndef OPENSSL_NO_DH
2156 DH *dh_srvr, *dh_clnt = NULL;
2158 #ifndef OPENSSL_NO_KRB5
2160 #endif /* OPENSSL_NO_KRB5 */
2162 #ifndef OPENSSL_NO_ECDH
2163 EC_KEY *srvr_ecdh = NULL;
2164 EVP_PKEY *clnt_pub_pkey = NULL;
2165 EC_POINT *clnt_ecpoint = NULL;
2166 BN_CTX *bn_ctx = NULL;
2169 n=s->method->ssl_get_message(s,
2170 SSL3_ST_SR_KEY_EXCH_A,
2171 SSL3_ST_SR_KEY_EXCH_B,
2172 SSL3_MT_CLIENT_KEY_EXCHANGE,
2176 if (!ok) return((int)n);
2177 p=(unsigned char *)s->init_msg;
2179 alg_k=s->s3->tmp.new_cipher->algorithm_mkey;
2181 #ifndef OPENSSL_NO_RSA
2182 if (alg_k & SSL_kRSA)
2184 /* FIX THIS UP EAY EAY EAY EAY */
2185 if (s->s3->tmp.use_rsa_tmp)
2187 if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
2188 rsa=s->cert->rsa_tmp;
2189 /* Don't do a callback because rsa_tmp should
2190 * be sent already */
2193 al=SSL_AD_HANDSHAKE_FAILURE;
2194 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_RSA_PKEY);
2201 pkey=s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
2202 if ( (pkey == NULL) ||
2203 (pkey->type != EVP_PKEY_RSA) ||
2204 (pkey->pkey.rsa == NULL))
2206 al=SSL_AD_HANDSHAKE_FAILURE;
2207 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_RSA_CERTIFICATE);
2213 /* TLS and [incidentally] DTLS{0xFEFF} */
2214 if (s->version > SSL3_VERSION && s->version != DTLS1_BAD_VER)
2219 if (!(s->options & SSL_OP_TLS_D5_BUG))
2221 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG);
2231 i=RSA_private_decrypt((int)n,p,p,rsa,RSA_PKCS1_PADDING);
2235 if (i != SSL_MAX_MASTER_KEY_LENGTH)
2237 al=SSL_AD_DECODE_ERROR;
2238 /* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_RSA_DECRYPT); */
2241 if ((al == -1) && !((p[0] == (s->client_version>>8)) && (p[1] == (s->client_version & 0xff))))
2243 /* The premaster secret must contain the same version number as the
2244 * ClientHello to detect version rollback attacks (strangely, the
2245 * protocol does not offer such protection for DH ciphersuites).
2246 * However, buggy clients exist that send the negotiated protocol
2247 * version instead if the server does not support the requested
2249 * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients. */
2250 if (!((s->options & SSL_OP_TLS_ROLLBACK_BUG) &&
2251 (p[0] == (s->version>>8)) && (p[1] == (s->version & 0xff))))
2253 al=SSL_AD_DECODE_ERROR;
2254 /* SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_PROTOCOL_VERSION_NUMBER); */
2256 /* The Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2257 * (http://eprint.iacr.org/2003/052/) exploits the version
2258 * number check as a "bad version oracle" -- an alert would
2259 * reveal that the plaintext corresponding to some ciphertext
2260 * made up by the adversary is properly formatted except
2261 * that the version number is wrong. To avoid such attacks,
2262 * we should treat this just like any other decryption error. */
2268 /* Some decryption failure -- use random value instead as countermeasure
2269 * against Bleichenbacher's attack on PKCS #1 v1.5 RSA padding
2270 * (see RFC 2246, section 7.4.7.1). */
2272 i = SSL_MAX_MASTER_KEY_LENGTH;
2273 p[0] = s->client_version >> 8;
2274 p[1] = s->client_version & 0xff;
2275 if (RAND_pseudo_bytes(p+2, i-2) <= 0) /* should be RAND_bytes, but we cannot work around a failure */
2279 s->session->master_key_length=
2280 s->method->ssl3_enc->generate_master_secret(s,
2281 s->session->master_key,
2283 OPENSSL_cleanse(p,i);
2287 #ifndef OPENSSL_NO_DH
2288 if (alg_k & (SSL_kEDH|SSL_kDHr|SSL_kDHd))
2291 EVP_PKEY *skey = NULL;
2298 if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG))
2300 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2309 if (alg_k & SSL_kDHr)
2310 idx = SSL_PKEY_DH_RSA;
2311 else if (alg_k & SSL_kDHd)
2312 idx = SSL_PKEY_DH_DSA;
2315 skey = s->cert->pkeys[idx].privatekey;
2316 if ((skey == NULL) ||
2317 (skey->type != EVP_PKEY_DH) ||
2318 (skey->pkey.dh == NULL))
2320 al=SSL_AD_HANDSHAKE_FAILURE;
2321 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_RSA_CERTIFICATE);
2324 dh_srvr = skey->pkey.dh;
2326 else if (s->s3->tmp.dh == NULL)
2328 al=SSL_AD_HANDSHAKE_FAILURE;
2329 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
2333 dh_srvr=s->s3->tmp.dh;
2337 /* Get pubkey from cert */
2338 EVP_PKEY *clkey=X509_get_pubkey(s->session->peer);
2341 if (EVP_PKEY_cmp_parameters(clkey, skey) == 1)
2342 dh_clnt = EVP_PKEY_get1_DH(clkey);
2344 if (dh_clnt == NULL)
2346 al=SSL_AD_HANDSHAKE_FAILURE;
2347 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_DH_KEY);
2350 EVP_PKEY_free(clkey);
2351 pub = dh_clnt->pub_key;
2354 pub=BN_bin2bn(p,i,NULL);
2357 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BN_LIB);
2361 i=DH_compute_key(p,pub,dh_srvr);
2365 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_DH_LIB);
2370 DH_free(s->s3->tmp.dh);
2377 s->session->master_key_length=
2378 s->method->ssl3_enc->generate_master_secret(s,
2379 s->session->master_key,p,i);
2380 OPENSSL_cleanse(p,i);
2386 #ifndef OPENSSL_NO_KRB5
2387 if (alg_k & SSL_kKRB5)
2389 krb5_error_code krb5rc;
2390 krb5_data enc_ticket;
2391 krb5_data authenticator;
2393 KSSL_CTX *kssl_ctx = s->kssl_ctx;
2394 EVP_CIPHER_CTX ciph_ctx;
2395 const EVP_CIPHER *enc = NULL;
2396 unsigned char iv[EVP_MAX_IV_LENGTH];
2397 unsigned char pms[SSL_MAX_MASTER_KEY_LENGTH
2398 + EVP_MAX_BLOCK_LENGTH];
2400 krb5_timestamp authtime = 0;
2401 krb5_ticket_times ttimes;
2403 EVP_CIPHER_CTX_init(&ciph_ctx);
2405 if (!kssl_ctx) kssl_ctx = kssl_ctx_new();
2408 enc_ticket.length = i;
2410 if (n < (long)(enc_ticket.length + 6))
2412 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2413 SSL_R_DATA_LENGTH_TOO_LONG);
2417 enc_ticket.data = (char *)p;
2418 p+=enc_ticket.length;
2421 authenticator.length = i;
2423 if (n < (long)(enc_ticket.length + authenticator.length + 6))
2425 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2426 SSL_R_DATA_LENGTH_TOO_LONG);
2430 authenticator.data = (char *)p;
2431 p+=authenticator.length;
2435 enc_pms.data = (char *)p;
2438 /* Note that the length is checked again below,
2441 if(enc_pms.length > sizeof pms)
2443 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2444 SSL_R_DATA_LENGTH_TOO_LONG);
2448 if (n != (long)(enc_ticket.length + authenticator.length +
2449 enc_pms.length + 6))
2451 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2452 SSL_R_DATA_LENGTH_TOO_LONG);
2456 if ((krb5rc = kssl_sget_tkt(kssl_ctx, &enc_ticket, &ttimes,
2460 printf("kssl_sget_tkt rtn %d [%d]\n",
2461 krb5rc, kssl_err.reason);
2463 printf("kssl_err text= %s\n", kssl_err.text);
2464 #endif /* KSSL_DEBUG */
2465 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2470 /* Note: no authenticator is not considered an error,
2471 ** but will return authtime == 0.
2473 if ((krb5rc = kssl_check_authent(kssl_ctx, &authenticator,
2474 &authtime, &kssl_err)) != 0)
2477 printf("kssl_check_authent rtn %d [%d]\n",
2478 krb5rc, kssl_err.reason);
2480 printf("kssl_err text= %s\n", kssl_err.text);
2481 #endif /* KSSL_DEBUG */
2482 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2487 if ((krb5rc = kssl_validate_times(authtime, &ttimes)) != 0)
2489 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, krb5rc);
2494 kssl_ctx_show(kssl_ctx);
2495 #endif /* KSSL_DEBUG */
2497 enc = kssl_map_enc(kssl_ctx->enctype);
2501 memset(iv, 0, sizeof iv); /* per RFC 1510 */
2503 if (!EVP_DecryptInit_ex(&ciph_ctx,enc,NULL,kssl_ctx->key,iv))
2505 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2506 SSL_R_DECRYPTION_FAILED);
2509 if (!EVP_DecryptUpdate(&ciph_ctx, pms,&outl,
2510 (unsigned char *)enc_pms.data, enc_pms.length))
2512 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2513 SSL_R_DECRYPTION_FAILED);
2516 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
2518 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2519 SSL_R_DATA_LENGTH_TOO_LONG);
2522 if (!EVP_DecryptFinal_ex(&ciph_ctx,&(pms[outl]),&padl))
2524 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2525 SSL_R_DECRYPTION_FAILED);
2529 if (outl > SSL_MAX_MASTER_KEY_LENGTH)
2531 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2532 SSL_R_DATA_LENGTH_TOO_LONG);
2535 if (!((pms[0] == (s->client_version>>8)) && (pms[1] == (s->client_version & 0xff))))
2537 /* The premaster secret must contain the same version number as the
2538 * ClientHello to detect version rollback attacks (strangely, the
2539 * protocol does not offer such protection for DH ciphersuites).
2540 * However, buggy clients exist that send random bytes instead of
2541 * the protocol version.
2542 * If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients.
2543 * (Perhaps we should have a separate BUG value for the Kerberos cipher)
2545 if (!(s->options & SSL_OP_TLS_ROLLBACK_BUG))
2547 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2548 SSL_AD_DECODE_ERROR);
2553 EVP_CIPHER_CTX_cleanup(&ciph_ctx);
2555 s->session->master_key_length=
2556 s->method->ssl3_enc->generate_master_secret(s,
2557 s->session->master_key, pms, outl);
2559 if (kssl_ctx->client_princ)
2561 size_t len = strlen(kssl_ctx->client_princ);
2562 if ( len < SSL_MAX_KRB5_PRINCIPAL_LENGTH )
2564 s->session->krb5_client_princ_len = len;
2565 memcpy(s->session->krb5_client_princ,kssl_ctx->client_princ,len);
2570 /* Was doing kssl_ctx_free() here,
2571 ** but it caused problems for apache.
2572 ** kssl_ctx = kssl_ctx_free(kssl_ctx);
2573 ** if (s->kssl_ctx) s->kssl_ctx = NULL;
2577 #endif /* OPENSSL_NO_KRB5 */
2579 #ifndef OPENSSL_NO_ECDH
2580 if (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe))
2585 const EC_GROUP *group;
2586 const BIGNUM *priv_key;
2588 /* initialize structures for server's ECDH key pair */
2589 if ((srvr_ecdh = EC_KEY_new()) == NULL)
2591 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2592 ERR_R_MALLOC_FAILURE);
2596 /* Let's get server private key and group information */
2597 if (alg_k & (SSL_kECDHr|SSL_kECDHe))
2599 /* use the certificate */
2600 tkey = s->cert->pkeys[SSL_PKEY_ECC].privatekey->pkey.ec;
2604 /* use the ephermeral values we saved when
2605 * generating the ServerKeyExchange msg.
2607 tkey = s->s3->tmp.ecdh;
2610 group = EC_KEY_get0_group(tkey);
2611 priv_key = EC_KEY_get0_private_key(tkey);
2613 if (!EC_KEY_set_group(srvr_ecdh, group) ||
2614 !EC_KEY_set_private_key(srvr_ecdh, priv_key))
2616 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2621 /* Let's get client's public key */
2622 if ((clnt_ecpoint = EC_POINT_new(group)) == NULL)
2624 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2625 ERR_R_MALLOC_FAILURE);
2631 /* Client Publickey was in Client Certificate */
2633 if (alg_k & SSL_kEECDH)
2635 al=SSL_AD_HANDSHAKE_FAILURE;
2636 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_MISSING_TMP_ECDH_KEY);
2639 if (((clnt_pub_pkey=X509_get_pubkey(s->session->peer))
2641 (clnt_pub_pkey->type != EVP_PKEY_EC))
2643 /* XXX: For now, we do not support client
2644 * authentication using ECDH certificates
2645 * so this branch (n == 0L) of the code is
2646 * never executed. When that support is
2647 * added, we ought to ensure the key
2648 * received in the certificate is
2649 * authorized for key agreement.
2650 * ECDH_compute_key implicitly checks that
2651 * the two ECDH shares are for the same
2654 al=SSL_AD_HANDSHAKE_FAILURE;
2655 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2656 SSL_R_UNABLE_TO_DECODE_ECDH_CERTS);
2660 if (EC_POINT_copy(clnt_ecpoint,
2661 EC_KEY_get0_public_key(clnt_pub_pkey->pkey.ec)) == 0)
2663 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2667 ret = 2; /* Skip certificate verify processing */
2671 /* Get client's public key from encoded point
2672 * in the ClientKeyExchange message.
2674 if ((bn_ctx = BN_CTX_new()) == NULL)
2676 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2677 ERR_R_MALLOC_FAILURE);
2681 /* Get encoded point length */
2686 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2690 if (EC_POINT_oct2point(group,
2691 clnt_ecpoint, p, i, bn_ctx) == 0)
2693 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2697 /* p is pointing to somewhere in the buffer
2698 * currently, so set it to the start
2700 p=(unsigned char *)s->init_buf->data;
2703 /* Compute the shared pre-master secret */
2704 field_size = EC_GROUP_get_degree(group);
2705 if (field_size <= 0)
2707 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2711 i = ECDH_compute_key(p, (field_size+7)/8, clnt_ecpoint, srvr_ecdh, NULL);
2714 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2719 EVP_PKEY_free(clnt_pub_pkey);
2720 EC_POINT_free(clnt_ecpoint);
2721 EC_KEY_free(srvr_ecdh);
2722 BN_CTX_free(bn_ctx);
2723 EC_KEY_free(s->s3->tmp.ecdh);
2724 s->s3->tmp.ecdh = NULL;
2726 /* Compute the master secret */
2727 s->session->master_key_length = s->method->ssl3_enc-> \
2728 generate_master_secret(s, s->session->master_key, p, i);
2730 OPENSSL_cleanse(p, i);
2735 #ifndef OPENSSL_NO_PSK
2736 if (alg_k & SSL_kPSK)
2738 unsigned char *t = NULL;
2739 unsigned char psk_or_pre_ms[PSK_MAX_PSK_LEN*2+4];
2740 unsigned int pre_ms_len = 0, psk_len = 0;
2742 char tmp_id[PSK_MAX_IDENTITY_LEN+1];
2744 al=SSL_AD_HANDSHAKE_FAILURE;
2749 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2750 SSL_R_LENGTH_MISMATCH);
2753 if (i > PSK_MAX_IDENTITY_LEN)
2755 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2756 SSL_R_DATA_LENGTH_TOO_LONG);
2759 if (s->psk_server_callback == NULL)
2761 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2762 SSL_R_PSK_NO_SERVER_CB);
2766 /* Create guaranteed NULL-terminated identity
2767 * string for the callback */
2768 memcpy(tmp_id, p, i);
2769 memset(tmp_id+i, 0, PSK_MAX_IDENTITY_LEN+1-i);
2770 psk_len = s->psk_server_callback(s, tmp_id,
2771 psk_or_pre_ms, sizeof(psk_or_pre_ms));
2772 OPENSSL_cleanse(tmp_id, PSK_MAX_IDENTITY_LEN+1);
2774 if (psk_len > PSK_MAX_PSK_LEN)
2776 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2777 ERR_R_INTERNAL_ERROR);
2780 else if (psk_len == 0)
2782 /* PSK related to the given identity not found */
2783 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2784 SSL_R_PSK_IDENTITY_NOT_FOUND);
2785 al=SSL_AD_UNKNOWN_PSK_IDENTITY;
2789 /* create PSK pre_master_secret */
2790 pre_ms_len=2+psk_len+2+psk_len;
2792 memmove(psk_or_pre_ms+psk_len+4, psk_or_pre_ms, psk_len);
2794 memset(t, 0, psk_len);
2798 if (s->session->psk_identity != NULL)
2799 OPENSSL_free(s->session->psk_identity);
2800 s->session->psk_identity = BUF_strdup((char *)p);
2801 if (s->session->psk_identity == NULL)
2803 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2804 ERR_R_MALLOC_FAILURE);
2808 if (s->session->psk_identity_hint != NULL)
2809 OPENSSL_free(s->session->psk_identity_hint);
2810 s->session->psk_identity_hint = BUF_strdup(s->ctx->psk_identity_hint);
2811 if (s->ctx->psk_identity_hint != NULL &&
2812 s->session->psk_identity_hint == NULL)
2814 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2815 ERR_R_MALLOC_FAILURE);
2819 s->session->master_key_length=
2820 s->method->ssl3_enc->generate_master_secret(s,
2821 s->session->master_key, psk_or_pre_ms, pre_ms_len);
2824 OPENSSL_cleanse(psk_or_pre_ms, sizeof(psk_or_pre_ms));
2830 #ifndef OPENSSL_NO_SRP
2831 if (alg_k & SSL_kSRP)
2839 al=SSL_AD_DECODE_ERROR;
2840 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_BAD_SRP_A_LENGTH);
2843 if (!(s->srp_ctx.A=BN_bin2bn(p,i,NULL)))
2845 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_BN_LIB);
2848 if (s->session->srp_username != NULL)
2849 OPENSSL_free(s->session->srp_username);
2850 s->session->srp_username = BUF_strdup(s->srp_ctx.login);
2851 if (s->session->srp_username == NULL)
2853 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2854 ERR_R_MALLOC_FAILURE);
2858 if ((s->session->master_key_length = SRP_generate_server_master_secret(s,s->session->master_key))<0)
2860 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,ERR_R_INTERNAL_ERROR);
2867 #endif /* OPENSSL_NO_SRP */
2868 if (alg_k & SSL_kGOST)
2871 EVP_PKEY_CTX *pkey_ctx;
2872 EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2873 unsigned char premaster_secret[32], *start;
2874 size_t outlen=32, inlen;
2875 unsigned long alg_a;
2877 /* Get our certificate private key*/
2878 alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2879 if (alg_a & SSL_aGOST94)
2880 pk = s->cert->pkeys[SSL_PKEY_GOST94].privatekey;
2881 else if (alg_a & SSL_aGOST01)
2882 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2884 pkey_ctx = EVP_PKEY_CTX_new(pk,NULL);
2885 EVP_PKEY_decrypt_init(pkey_ctx);
2886 /* If client certificate is present and is of the same type, maybe
2887 * use it for key exchange. Don't mind errors from
2888 * EVP_PKEY_derive_set_peer, because it is completely valid to use
2889 * a client certificate for authorization only. */
2890 client_pub_pkey = X509_get_pubkey(s->session->peer);
2891 if (client_pub_pkey)
2893 if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2896 /* Decrypt session key */
2897 if ((*p!=( V_ASN1_SEQUENCE| V_ASN1_CONSTRUCTED)))
2899 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2907 else if (p[1] < 0x80)
2914 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2917 if (EVP_PKEY_decrypt(pkey_ctx,premaster_secret,&outlen,start,inlen) <=0)
2920 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,SSL_R_DECRYPTION_FAILED);
2923 /* Generate master secret */
2924 s->session->master_key_length=
2925 s->method->ssl3_enc->generate_master_secret(s,
2926 s->session->master_key,premaster_secret,32);
2927 /* Check if pubkey from client certificate was used */
2928 if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2933 EVP_PKEY_free(client_pub_pkey);
2934 EVP_PKEY_CTX_free(pkey_ctx);
2942 al=SSL_AD_HANDSHAKE_FAILURE;
2943 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2944 SSL_R_UNKNOWN_CIPHER_TYPE);
2950 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2951 #if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_ECDH) || defined(OPENSSL_NO_SRP)
2954 #ifndef OPENSSL_NO_ECDH
2955 EVP_PKEY_free(clnt_pub_pkey);
2956 EC_POINT_free(clnt_ecpoint);
2957 if (srvr_ecdh != NULL)
2958 EC_KEY_free(srvr_ecdh);
2959 BN_CTX_free(bn_ctx);
2964 int ssl3_get_cert_verify(SSL *s)
2966 EVP_PKEY *pkey=NULL;
2972 const EVP_MD *md = NULL;
2974 EVP_MD_CTX_init(&mctx);
2976 n=s->method->ssl_get_message(s,
2977 SSL3_ST_SR_CERT_VRFY_A,
2978 SSL3_ST_SR_CERT_VRFY_B,
2980 516, /* Enough for 4096 bit RSA key with TLS v1.2 */
2983 if (!ok) return((int)n);
2985 if (s->session->peer != NULL)
2987 peer=s->session->peer;
2988 pkey=X509_get_pubkey(peer);
2989 type=X509_certificate_type(peer,pkey);
2997 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_VERIFY)
2999 s->s3->tmp.reuse_message=1;
3000 if ((peer != NULL) && (type & EVP_PKT_SIGN))
3002 al=SSL_AD_UNEXPECTED_MESSAGE;
3003 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_MISSING_VERIFY_MESSAGE);
3012 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_NO_CLIENT_CERT_RECEIVED);
3013 al=SSL_AD_UNEXPECTED_MESSAGE;
3017 if (!(type & EVP_PKT_SIGN))
3019 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
3020 al=SSL_AD_ILLEGAL_PARAMETER;
3024 if (s->s3->change_cipher_spec)
3026 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_CCS_RECEIVED_EARLY);
3027 al=SSL_AD_UNEXPECTED_MESSAGE;
3031 /* we now have a signature that we need to verify */
3032 p=(unsigned char *)s->init_msg;
3033 /* Check for broken implementations of GOST ciphersuites */
3034 /* If key is GOST and n is exactly 64, it is bare
3035 * signature without length field */
3036 if (n==64 && (pkey->type==NID_id_GostR3410_94 ||
3037 pkey->type == NID_id_GostR3410_2001) )
3043 if (TLS1_get_version(s) >= TLS1_2_VERSION)
3045 int sigalg = tls12_get_sigid(pkey);
3046 /* Should never happen */
3049 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,ERR_R_INTERNAL_ERROR);
3050 al=SSL_AD_INTERNAL_ERROR;
3053 /* Check key type is consistent with signature */
3054 if (sigalg != (int)p[1])
3056 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_WRONG_SIGNATURE_TYPE);
3057 al=SSL_AD_DECODE_ERROR;
3060 md = tls12_get_hash(p[0]);
3063 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_UNKNOWN_DIGEST);
3064 al=SSL_AD_DECODE_ERROR;
3068 fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
3077 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_LENGTH_MISMATCH);
3078 al=SSL_AD_DECODE_ERROR;
3082 j=EVP_PKEY_size(pkey);
3083 if ((i > j) || (n > j) || (n <= 0))
3085 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_WRONG_SIGNATURE_SIZE);
3086 al=SSL_AD_DECODE_ERROR;
3090 if (TLS1_get_version(s) >= TLS1_2_VERSION)
3094 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3097 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
3098 al=SSL_AD_INTERNAL_ERROR;
3102 fprintf(stderr, "Using TLS 1.2 with client verify alg %s\n",
3105 if (!EVP_VerifyInit_ex(&mctx, md, NULL)
3106 || !EVP_VerifyUpdate(&mctx, hdata, hdatalen))
3108 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_EVP_LIB);
3109 al=SSL_AD_INTERNAL_ERROR;
3113 if (EVP_VerifyFinal(&mctx, p , i, pkey) <= 0)
3115 al=SSL_AD_DECRYPT_ERROR;
3116 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_SIGNATURE);
3121 #ifndef OPENSSL_NO_RSA
3122 if (pkey->type == EVP_PKEY_RSA)
3124 i=RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
3125 MD5_DIGEST_LENGTH+SHA_DIGEST_LENGTH, p, i,
3129 al=SSL_AD_DECRYPT_ERROR;
3130 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_DECRYPT);
3135 al=SSL_AD_DECRYPT_ERROR;
3136 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_RSA_SIGNATURE);
3142 #ifndef OPENSSL_NO_DSA
3143 if (pkey->type == EVP_PKEY_DSA)
3145 j=DSA_verify(pkey->save_type,
3146 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3147 SHA_DIGEST_LENGTH,p,i,pkey->pkey.dsa);
3151 al=SSL_AD_DECRYPT_ERROR;
3152 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,SSL_R_BAD_DSA_SIGNATURE);
3158 #ifndef OPENSSL_NO_ECDSA
3159 if (pkey->type == EVP_PKEY_EC)
3161 j=ECDSA_verify(pkey->save_type,
3162 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3163 SHA_DIGEST_LENGTH,p,i,pkey->pkey.ec);
3167 al=SSL_AD_DECRYPT_ERROR;
3168 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
3169 SSL_R_BAD_ECDSA_SIGNATURE);
3175 if (pkey->type == NID_id_GostR3410_94 || pkey->type == NID_id_GostR3410_2001)
3176 { unsigned char signature[64];
3178 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new(pkey,NULL);
3179 EVP_PKEY_verify_init(pctx);
3181 fprintf(stderr,"GOST signature length is %d",i);
3183 for (idx=0;idx<64;idx++) {
3184 signature[63-idx]=p[idx];
3186 j=EVP_PKEY_verify(pctx,signature,64,s->s3->tmp.cert_verify_md,32);
3187 EVP_PKEY_CTX_free(pctx);
3190 al=SSL_AD_DECRYPT_ERROR;
3191 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
3192 SSL_R_BAD_ECDSA_SIGNATURE);
3198 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,ERR_R_INTERNAL_ERROR);
3199 al=SSL_AD_UNSUPPORTED_CERTIFICATE;
3208 ssl3_send_alert(s,SSL3_AL_FATAL,al);
3211 if (s->s3->handshake_buffer)
3213 BIO_free(s->s3->handshake_buffer);
3214 s->s3->handshake_buffer = NULL;
3215 s->s3->flags &= ~TLS1_FLAGS_KEEP_HANDSHAKE;
3217 EVP_MD_CTX_cleanup(&mctx);
3218 EVP_PKEY_free(pkey);
3222 int ssl3_get_client_certificate(SSL *s)
3224 int i,ok,al,ret= -1;
3226 unsigned long l,nc,llen,n;
3227 const unsigned char *p,*q;
3229 STACK_OF(X509) *sk=NULL;
3231 n=s->method->ssl_get_message(s,
3238 if (!ok) return((int)n);
3240 if (s->s3->tmp.message_type == SSL3_MT_CLIENT_KEY_EXCHANGE)
3242 if ( (s->verify_mode & SSL_VERIFY_PEER) &&
3243 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
3245 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3246 al=SSL_AD_HANDSHAKE_FAILURE;
3249 /* If tls asked for a client cert, the client must return a 0 list */
3250 if ((s->version > SSL3_VERSION) && s->s3->tmp.cert_request)
3252 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST);
3253 al=SSL_AD_UNEXPECTED_MESSAGE;
3256 s->s3->tmp.reuse_message=1;
3260 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
3262 al=SSL_AD_UNEXPECTED_MESSAGE;
3263 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_WRONG_MESSAGE_TYPE);
3266 p=d=(unsigned char *)s->init_msg;
3268 if ((sk=sk_X509_new_null()) == NULL)
3270 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
3277 al=SSL_AD_DECODE_ERROR;
3278 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_LENGTH_MISMATCH);
3281 for (nc=0; nc<llen; )
3284 if ((l+nc+3) > llen)
3286 al=SSL_AD_DECODE_ERROR;
3287 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
3292 x=d2i_X509(NULL,&p,l);
3295 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_ASN1_LIB);
3300 al=SSL_AD_DECODE_ERROR;
3301 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_CERT_LENGTH_MISMATCH);
3304 if (!sk_X509_push(sk,x))
3306 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,ERR_R_MALLOC_FAILURE);
3313 if (sk_X509_num(sk) <= 0)
3315 /* TLS does not mind 0 certs returned */
3316 if (s->version == SSL3_VERSION)
3318 al=SSL_AD_HANDSHAKE_FAILURE;
3319 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATES_RETURNED);
3322 /* Fail for TLS only if we required a certificate */
3323 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3324 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
3326 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3327 al=SSL_AD_HANDSHAKE_FAILURE;
3330 /* No client certificate so digest cached records */
3331 if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s))
3333 al=SSL_AD_INTERNAL_ERROR;
3339 i=ssl_verify_cert_chain(s,sk);
3342 al=ssl_verify_alarm_type(s->verify_result);
3343 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,SSL_R_NO_CERTIFICATE_RETURNED);
3348 if (s->session->peer != NULL) /* This should not be needed */
3349 X509_free(s->session->peer);
3350 s->session->peer=sk_X509_shift(sk);
3351 s->session->verify_result = s->verify_result;
3353 /* With the current implementation, sess_cert will always be NULL
3354 * when we arrive here. */
3355 if (s->session->sess_cert == NULL)
3357 s->session->sess_cert = ssl_sess_cert_new();
3358 if (s->session->sess_cert == NULL)
3360 SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3364 if (s->session->sess_cert->cert_chain != NULL)
3365 sk_X509_pop_free(s->session->sess_cert->cert_chain, X509_free);
3366 s->session->sess_cert->cert_chain=sk;
3367 /* Inconsistency alert: cert_chain does *not* include the
3368 * peer's own certificate, while we do include it in s3_clnt.c */
3376 ssl3_send_alert(s,SSL3_AL_FATAL,al);
3379 if (x != NULL) X509_free(x);
3380 if (sk != NULL) sk_X509_pop_free(sk,X509_free);
3384 int ssl3_send_server_certificate(SSL *s)
3389 if (s->state == SSL3_ST_SW_CERT_A)
3391 cpk=ssl_get_server_send_pkey(s);
3394 /* VRS: allow null cert if auth == KRB5 */
3395 if ((s->s3->tmp.new_cipher->algorithm_auth != SSL_aKRB5) ||
3396 (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5))
3398 SSLerr(SSL_F_SSL3_SEND_SERVER_CERTIFICATE,ERR_R_INTERNAL_ERROR);
3403 l=ssl3_output_cert_chain(s,cpk);
3404 s->state=SSL3_ST_SW_CERT_B;
3409 /* SSL3_ST_SW_CERT_B */
3410 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3413 #ifndef OPENSSL_NO_TLSEXT
3414 /* send a new session ticket (not necessarily for a new session) */
3415 int ssl3_send_newsession_ticket(SSL *s)
3417 if (s->state == SSL3_ST_SW_SESSION_TICKET_A)
3419 unsigned char *p, *senc, *macstart;
3420 const unsigned char *const_p;
3421 int len, slen_full, slen;
3426 SSL_CTX *tctx = s->initial_ctx;
3427 unsigned char iv[EVP_MAX_IV_LENGTH];
3428 unsigned char key_name[16];
3430 /* get session encoding length */
3431 slen_full = i2d_SSL_SESSION(s->session, NULL);
3432 /* Some length values are 16 bits, so forget it if session is
3435 if (slen_full > 0xFF00)
3437 senc = OPENSSL_malloc(slen_full);
3441 i2d_SSL_SESSION(s->session, &p);
3443 /* create a fresh copy (not shared with other threads) to clean up */
3445 sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3451 sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3453 slen = i2d_SSL_SESSION(sess, NULL);
3454 if (slen > slen_full) /* shouldn't ever happen */
3460 i2d_SSL_SESSION(sess, &p);
3461 SSL_SESSION_free(sess);
3463 /* Grow buffer if need be: the length calculation is as
3464 * follows 1 (size of message name) + 3 (message length
3465 * bytes) + 4 (ticket lifetime hint) + 2 (ticket length) +
3466 * 16 (key name) + max_iv_len (iv length) +
3467 * session_length + max_enc_block_size (max encrypted session
3468 * length) + max_md_size (HMAC).
3470 if (!BUF_MEM_grow(s->init_buf,
3471 26 + EVP_MAX_IV_LENGTH + EVP_MAX_BLOCK_LENGTH +
3472 EVP_MAX_MD_SIZE + slen))
3475 p=(unsigned char *)s->init_buf->data;
3477 *(p++)=SSL3_MT_NEWSESSION_TICKET;
3478 /* Skip message length for now */
3480 EVP_CIPHER_CTX_init(&ctx);
3481 HMAC_CTX_init(&hctx);
3482 /* Initialize HMAC and cipher contexts. If callback present
3483 * it does all the work otherwise use generated values
3486 if (tctx->tlsext_ticket_key_cb)
3488 if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
3497 RAND_pseudo_bytes(iv, 16);
3498 EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
3499 tctx->tlsext_tick_aes_key, iv);
3500 HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
3501 tlsext_tick_md(), NULL);
3502 memcpy(key_name, tctx->tlsext_tick_key_name, 16);
3505 /* Ticket lifetime hint (advisory only):
3506 * We leave this unspecified for resumed session (for simplicity),
3507 * and guess that tickets for new sessions will live as long
3508 * as their sessions. */
3509 l2n(s->hit ? 0 : s->session->timeout, p);
3511 /* Skip ticket length for now */
3513 /* Output key name */
3515 memcpy(p, key_name, 16);
3518 memcpy(p, iv, EVP_CIPHER_CTX_iv_length(&ctx));
3519 p += EVP_CIPHER_CTX_iv_length(&ctx);
3520 /* Encrypt session data */
3521 EVP_EncryptUpdate(&ctx, p, &len, senc, slen);
3523 EVP_EncryptFinal(&ctx, p, &len);
3525 EVP_CIPHER_CTX_cleanup(&ctx);
3527 HMAC_Update(&hctx, macstart, p - macstart);
3528 HMAC_Final(&hctx, p, &hlen);
3529 HMAC_CTX_cleanup(&hctx);
3532 /* Now write out lengths: p points to end of data written */
3534 len = p - (unsigned char *)s->init_buf->data;
3535 p=(unsigned char *)s->init_buf->data + 1;
3536 l2n3(len - 4, p); /* Message length */
3538 s2n(len - 10, p); /* Ticket length */
3540 /* number of bytes to write */
3542 s->state=SSL3_ST_SW_SESSION_TICKET_B;
3547 /* SSL3_ST_SW_SESSION_TICKET_B */
3548 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3551 int ssl3_send_cert_status(SSL *s)
3553 if (s->state == SSL3_ST_SW_CERT_STATUS_A)
3556 /* Grow buffer if need be: the length calculation is as
3557 * follows 1 (message type) + 3 (message length) +
3558 * 1 (ocsp response type) + 3 (ocsp response length)
3561 if (!BUF_MEM_grow(s->init_buf, 8 + s->tlsext_ocsp_resplen))
3564 p=(unsigned char *)s->init_buf->data;
3567 *(p++)=SSL3_MT_CERTIFICATE_STATUS;
3568 /* message length */
3569 l2n3(s->tlsext_ocsp_resplen + 4, p);
3571 *(p++)= s->tlsext_status_type;
3572 /* length of OCSP response */
3573 l2n3(s->tlsext_ocsp_resplen, p);
3574 /* actual response */
3575 memcpy(p, s->tlsext_ocsp_resp, s->tlsext_ocsp_resplen);
3576 /* number of bytes to write */
3577 s->init_num = 8 + s->tlsext_ocsp_resplen;
3578 s->state=SSL3_ST_SW_CERT_STATUS_B;
3582 /* SSL3_ST_SW_CERT_STATUS_B */
3583 return(ssl3_do_write(s,SSL3_RT_HANDSHAKE));
3586 # ifndef OPENSSL_NO_NPN
3587 /* ssl3_get_next_proto reads a Next Protocol Negotiation handshake message. It
3588 * sets the next_proto member in s if found */
3589 int ssl3_get_next_proto(SSL *s)
3592 int proto_len, padding_len;
3594 const unsigned char *p;
3596 /* Clients cannot send a NextProtocol message if we didn't see the
3597 * extension in their ClientHello */
3598 if (!s->s3->next_proto_neg_seen)
3600 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION);
3604 n=s->method->ssl_get_message(s,
3605 SSL3_ST_SR_NEXT_PROTO_A,
3606 SSL3_ST_SR_NEXT_PROTO_B,
3608 514, /* See the payload format below */
3614 /* s->state doesn't reflect whether ChangeCipherSpec has been received
3615 * in this handshake, but s->s3->change_cipher_spec does (will be reset
3616 * by ssl3_get_finished). */
3617 if (!s->s3->change_cipher_spec)
3619 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,SSL_R_GOT_NEXT_PROTO_BEFORE_A_CCS);
3624 return 0; /* The body must be > 1 bytes long */
3626 p=(unsigned char *)s->init_msg;
3628 /* The payload looks like:
3630 * uint8 proto[proto_len];
3631 * uint8 padding_len;
3632 * uint8 padding[padding_len];
3635 if (proto_len + 2 > s->init_num)
3637 padding_len = p[proto_len + 1];
3638 if (proto_len + padding_len + 2 != s->init_num)
3641 s->next_proto_negotiated = OPENSSL_malloc(proto_len);
3642 if (!s->next_proto_negotiated)
3644 SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,ERR_R_MALLOC_FAILURE);
3647 memcpy(s->next_proto_negotiated, p + 1, proto_len);
3648 s->next_proto_negotiated_len = proto_len;
3654 int tls1_send_server_supplemental_data(SSL *s)
3657 const unsigned char *authz, *orig_authz;
3659 size_t authz_length, i;
3661 if (s->state != SSL3_ST_SW_SUPPLEMENTAL_DATA_A)
3662 return ssl3_do_write(s, SSL3_RT_HANDSHAKE);
3664 orig_authz = authz = ssl_get_authz_data(s, &authz_length);
3667 /* This should never occur. */
3671 /* First we walk over the authz data to see how long the handshake
3672 * message will be. */
3673 for (i = 0; i < authz_length; i++)
3681 if (memchr(s->s3->tlsext_authz_client_types,
3683 s->s3->tlsext_authz_client_types_len) != NULL)
3684 length += 1 /* authz type */ + 2 /* length */ + len;
3690 length += 1 /* handshake type */ +
3691 3 /* handshake length */ +
3692 3 /* supplemental data length */ +
3693 2 /* supplemental entry type */ +
3694 2 /* supplemental entry length */;
3696 if (!BUF_MEM_grow_clean(s->init_buf, length))
3698 SSLerr(SSL_F_TLS1_SEND_SERVER_SUPPLEMENTAL_DATA,ERR_R_BUF_LIB);
3702 p = (unsigned char *)s->init_buf->data;
3703 *(p++) = SSL3_MT_SUPPLEMENTAL_DATA;
3704 /* Handshake length */
3705 l2n3(length - 4, p);
3706 /* Length of supplemental data */
3707 l2n3(length - 7, p);
3708 /* Supplemental data type */
3709 s2n(TLSEXT_SUPPLEMENTALDATATYPE_authz_data, p);
3711 s2n(length - 11, p);
3715 /* Walk over the authz again and append the selected elements. */
3716 for (i = 0; i < authz_length; i++)
3724 if (memchr(s->s3->tlsext_authz_client_types,
3726 s->s3->tlsext_authz_client_types_len) != NULL)
3730 memcpy(p, authz, len);
3738 s->state = SSL3_ST_SW_SUPPLEMENTAL_DATA_B;
3739 s->init_num = length;
3742 return ssl3_do_write(s, SSL3_RT_HANDSHAKE);