1 /* ssl/statem/statem_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
153 #include "../ssl_locl.h"
154 #include "statem_locl.h"
155 #include "internal/constant_time_locl.h"
156 #include <openssl/buffer.h>
157 #include <openssl/rand.h>
158 #include <openssl/objects.h>
159 #include <openssl/evp.h>
160 #include <openssl/hmac.h>
161 #include <openssl/x509.h>
162 #ifndef OPENSSL_NO_DH
163 # include <openssl/dh.h>
165 #include <openssl/bn.h>
166 #include <openssl/md5.h>
168 static STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,
169 PACKET *cipher_suites,
170 STACK_OF(SSL_CIPHER) **skp,
171 int sslv2format, int *al);
174 * server_read_transition() encapsulates the logic for the allowed handshake
175 * state transitions when the server is reading messages from the client. The
176 * message type that the client has sent is provided in |mt|. The current state
177 * is in |s->statem.hand_state|.
179 * Valid return values are:
180 * 1: Success (transition allowed)
181 * 0: Error (transition not allowed)
183 int ossl_statem_server_read_transition(SSL *s, int mt)
185 OSSL_STATEM *st = &s->statem;
187 switch(st->hand_state) {
189 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
190 if (mt == SSL3_MT_CLIENT_HELLO) {
191 st->hand_state = TLS_ST_SR_CLNT_HELLO;
196 case TLS_ST_SW_SRVR_DONE:
198 * If we get a CKE message after a ServerDone then either
199 * 1) We didn't request a Certificate
201 * 2) If we did request one then
202 * a) We allow no Certificate to be returned
204 * b) We are running SSL3 (in TLS1.0+ the client must return a 0
205 * list if we requested a certificate)
207 if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE
208 && (!s->s3->tmp.cert_request
209 || (!((s->verify_mode & SSL_VERIFY_PEER) &&
210 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
211 && (s->version == SSL3_VERSION)))) {
212 st->hand_state = TLS_ST_SR_KEY_EXCH;
214 } else if (s->s3->tmp.cert_request) {
215 if (mt == SSL3_MT_CERTIFICATE) {
216 st->hand_state = TLS_ST_SR_CERT;
223 if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
224 st->hand_state = TLS_ST_SR_KEY_EXCH;
229 case TLS_ST_SR_KEY_EXCH:
231 * We should only process a CertificateVerify message if we have
232 * received a Certificate from the client. If so then |s->session->peer|
233 * will be non NULL. In some instances a CertificateVerify message is
234 * not required even if the peer has sent a Certificate (e.g. such as in
235 * the case of static DH). In that case |st->no_cert_verify| should be
238 if (s->session->peer == NULL || st->no_cert_verify) {
239 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
241 * For the ECDH ciphersuites when the client sends its ECDH
242 * pub key in a certificate, the CertificateVerify message is
243 * not sent. Also for GOST ciphersuites when the client uses
244 * its key from the certificate for key exchange.
246 st->hand_state = TLS_ST_SR_CHANGE;
250 if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
251 st->hand_state = TLS_ST_SR_CERT_VRFY;
257 case TLS_ST_SR_CERT_VRFY:
258 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
259 st->hand_state = TLS_ST_SR_CHANGE;
264 case TLS_ST_SR_CHANGE:
265 #ifndef OPENSSL_NO_NEXTPROTONEG
266 if (s->s3->next_proto_neg_seen) {
267 if (mt == SSL3_MT_NEXT_PROTO) {
268 st->hand_state = TLS_ST_SR_NEXT_PROTO;
273 if (mt == SSL3_MT_FINISHED) {
274 st->hand_state = TLS_ST_SR_FINISHED;
277 #ifndef OPENSSL_NO_NEXTPROTONEG
282 #ifndef OPENSSL_NO_NEXTPROTONEG
283 case TLS_ST_SR_NEXT_PROTO:
284 if (mt == SSL3_MT_FINISHED) {
285 st->hand_state = TLS_ST_SR_FINISHED;
291 case TLS_ST_SW_FINISHED:
292 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
293 st->hand_state = TLS_ST_SR_CHANGE;
302 /* No valid transition found */
307 * Should we send a ServerKeyExchange message?
309 * Valid return values are:
313 static inline int send_server_key_exchange(SSL *s)
315 unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
318 * only send a ServerKeyExchange if DH, fortezza or RSA but we have a
319 * sign only certificate PSK: may send PSK identity hints For
320 * ECC ciphersuites, we send a serverKeyExchange message only if
321 * the cipher suite is either ECDH-anon or ECDHE. In other cases,
322 * the server certificate contains the server's public key for
325 if ( (alg_k & SSL_kDHE)
326 || (alg_k & SSL_kECDHE)
327 || ((alg_k & SSL_kRSA)
328 && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
329 || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
330 && EVP_PKEY_size(s->cert->pkeys
331 [SSL_PKEY_RSA_ENC].privatekey) *
332 8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
337 * PSK: send ServerKeyExchange if PSK identity hint if
340 #ifndef OPENSSL_NO_PSK
341 /* Only send SKE if we have identity hint for plain PSK */
342 || ((alg_k & (SSL_kPSK | SSL_kRSAPSK))
343 && s->cert->psk_identity_hint)
344 /* For other PSK always send SKE */
345 || (alg_k & (SSL_PSK & (SSL_kDHEPSK | SSL_kECDHEPSK)))
347 #ifndef OPENSSL_NO_SRP
348 /* SRP: send ServerKeyExchange */
349 || (alg_k & SSL_kSRP)
359 * Should we send a CertificateRequest message?
361 * Valid return values are:
365 static inline int send_certificate_request(SSL *s)
368 /* don't request cert unless asked for it: */
369 s->verify_mode & SSL_VERIFY_PEER
371 * if SSL_VERIFY_CLIENT_ONCE is set, don't request cert
372 * during re-negotiation:
374 && ((s->session->peer == NULL) ||
375 !(s->verify_mode & SSL_VERIFY_CLIENT_ONCE))
377 * never request cert in anonymous ciphersuites (see
378 * section "Certificate request" in SSL 3 drafts and in
381 && (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
383 * ... except when the application insists on
384 * verification (against the specs, but s3_clnt.c accepts
387 || (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
388 /* don't request certificate for SRP auth */
389 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aSRP)
391 * With normal PSK Certificates and Certificate Requests
394 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) {
402 * server_write_transition() works out what handshake state to move to next
403 * when the server is writing messages to be sent to the client.
405 WRITE_TRAN ossl_statem_server_write_transition(SSL *s)
407 OSSL_STATEM *st = &s->statem;
409 switch(st->hand_state) {
411 /* Just go straight to trying to read from the client */;
412 return WRITE_TRAN_FINISHED;
415 /* We must be trying to renegotiate */
416 st->hand_state = TLS_ST_SW_HELLO_REQ;
417 return WRITE_TRAN_CONTINUE;
419 case TLS_ST_SW_HELLO_REQ:
420 st->hand_state = TLS_ST_OK;
421 ossl_statem_set_in_init(s, 0);
422 return WRITE_TRAN_CONTINUE;
424 case TLS_ST_SR_CLNT_HELLO:
425 if (SSL_IS_DTLS(s) && !s->d1->cookie_verified
426 && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
427 st->hand_state = DTLS_ST_SW_HELLO_VERIFY_REQUEST;
429 st->hand_state = TLS_ST_SW_SRVR_HELLO;
430 return WRITE_TRAN_CONTINUE;
432 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
433 return WRITE_TRAN_FINISHED;
435 case TLS_ST_SW_SRVR_HELLO:
437 if (s->tlsext_ticket_expected)
438 st->hand_state = TLS_ST_SW_SESSION_TICKET;
440 st->hand_state = TLS_ST_SW_CHANGE;
442 /* Check if it is anon DH or anon ECDH, */
443 /* normal PSK or SRP */
444 if (!(s->s3->tmp.new_cipher->algorithm_auth &
445 (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
446 st->hand_state = TLS_ST_SW_CERT;
447 } else if (send_server_key_exchange(s)) {
448 st->hand_state = TLS_ST_SW_KEY_EXCH;
449 } else if (send_certificate_request(s)) {
450 st->hand_state = TLS_ST_SW_CERT_REQ;
452 st->hand_state = TLS_ST_SW_SRVR_DONE;
455 return WRITE_TRAN_CONTINUE;
458 if (s->tlsext_status_expected) {
459 st->hand_state = TLS_ST_SW_CERT_STATUS;
460 return WRITE_TRAN_CONTINUE;
464 case TLS_ST_SW_CERT_STATUS:
465 if (send_server_key_exchange(s)) {
466 st->hand_state = TLS_ST_SW_KEY_EXCH;
467 return WRITE_TRAN_CONTINUE;
471 case TLS_ST_SW_KEY_EXCH:
472 if (send_certificate_request(s)) {
473 st->hand_state = TLS_ST_SW_CERT_REQ;
474 return WRITE_TRAN_CONTINUE;
478 case TLS_ST_SW_CERT_REQ:
479 st->hand_state = TLS_ST_SW_SRVR_DONE;
480 return WRITE_TRAN_CONTINUE;
482 case TLS_ST_SW_SRVR_DONE:
483 return WRITE_TRAN_FINISHED;
485 case TLS_ST_SR_FINISHED:
487 st->hand_state = TLS_ST_OK;
488 ossl_statem_set_in_init(s, 0);
489 return WRITE_TRAN_CONTINUE;
490 } else if (s->tlsext_ticket_expected) {
491 st->hand_state = TLS_ST_SW_SESSION_TICKET;
493 st->hand_state = TLS_ST_SW_CHANGE;
495 return WRITE_TRAN_CONTINUE;
497 case TLS_ST_SW_SESSION_TICKET:
498 st->hand_state = TLS_ST_SW_CHANGE;
499 return WRITE_TRAN_CONTINUE;
501 case TLS_ST_SW_CHANGE:
502 st->hand_state = TLS_ST_SW_FINISHED;
503 return WRITE_TRAN_CONTINUE;
505 case TLS_ST_SW_FINISHED:
507 return WRITE_TRAN_FINISHED;
509 st->hand_state = TLS_ST_OK;
510 ossl_statem_set_in_init(s, 0);
511 return WRITE_TRAN_CONTINUE;
514 /* Shouldn't happen */
515 return WRITE_TRAN_ERROR;
520 * Perform any pre work that needs to be done prior to sending a message from
521 * the server to the client.
523 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst)
525 OSSL_STATEM *st = &s->statem;
527 switch(st->hand_state) {
528 case TLS_ST_SW_HELLO_REQ:
531 dtls1_clear_record_buffer(s);
534 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
536 if (SSL_IS_DTLS(s)) {
537 dtls1_clear_record_buffer(s);
538 /* We don't buffer this message so don't use the timer */
543 case TLS_ST_SW_SRVR_HELLO:
544 if (SSL_IS_DTLS(s)) {
546 * Messages we write from now on should be bufferred and
547 * retransmitted if necessary, so we need to use the timer now
553 case TLS_ST_SW_SRVR_DONE:
554 #ifndef OPENSSL_NO_SCTP
555 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s)))
556 return dtls_wait_for_dry(s);
558 return WORK_FINISHED_CONTINUE;
560 case TLS_ST_SW_SESSION_TICKET:
561 if (SSL_IS_DTLS(s)) {
563 * We're into the last flight. We don't retransmit the last flight
564 * unless we need to, so we don't use the timer
570 case TLS_ST_SW_CHANGE:
571 s->session->cipher = s->s3->tmp.new_cipher;
572 if (!s->method->ssl3_enc->setup_key_block(s)) {
573 ossl_statem_set_error(s);
576 if (SSL_IS_DTLS(s)) {
578 * We're into the last flight. We don't retransmit the last flight
579 * unless we need to, so we don't use the timer. This might have
580 * already been set to 0 if we sent a NewSessionTicket message,
581 * but we'll set it again here in case we didn't.
585 return WORK_FINISHED_CONTINUE;
588 return tls_finish_handshake(s, wst);
591 /* No pre work to be done */
595 return WORK_FINISHED_CONTINUE;
599 * Perform any work that needs to be done after sending a message from the
600 * server to the client.
602 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst)
604 OSSL_STATEM *st = &s->statem;
608 switch(st->hand_state) {
609 case TLS_ST_SW_HELLO_REQ:
610 if (statem_flush(s) != 1)
612 ssl3_init_finished_mac(s);
615 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
616 if (statem_flush(s) != 1)
618 /* HelloVerifyRequest resets Finished MAC */
619 if (s->version != DTLS1_BAD_VER)
620 ssl3_init_finished_mac(s);
622 * The next message should be another ClientHello which we need to
623 * treat like it was the first packet
628 case TLS_ST_SW_SRVR_HELLO:
629 #ifndef OPENSSL_NO_SCTP
630 if (SSL_IS_DTLS(s) && s->hit) {
631 unsigned char sctpauthkey[64];
632 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
635 * Add new shared key for SCTP-Auth, will be ignored if no
638 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
639 sizeof(DTLS1_SCTP_AUTH_LABEL));
641 if (SSL_export_keying_material(s, sctpauthkey,
642 sizeof(sctpauthkey), labelbuffer,
643 sizeof(labelbuffer), NULL, 0, 0) <= 0) {
644 ossl_statem_set_error(s);
648 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
649 sizeof(sctpauthkey), sctpauthkey);
654 case TLS_ST_SW_CHANGE:
655 #ifndef OPENSSL_NO_SCTP
656 if (SSL_IS_DTLS(s) && !s->hit) {
658 * Change to new shared key of SCTP-Auth, will be ignored if
661 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
665 if (!s->method->ssl3_enc->change_cipher_state(s,
666 SSL3_CHANGE_CIPHER_SERVER_WRITE)) {
667 ossl_statem_set_error(s);
672 dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
675 case TLS_ST_SW_SRVR_DONE:
676 if (statem_flush(s) != 1)
680 case TLS_ST_SW_FINISHED:
681 if (statem_flush(s) != 1)
683 #ifndef OPENSSL_NO_SCTP
684 if (SSL_IS_DTLS(s) && s->hit) {
686 * Change to new shared key of SCTP-Auth, will be ignored if
689 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
696 /* No post work to be done */
700 return WORK_FINISHED_CONTINUE;
704 * Construct a message to be sent from the server to the client.
706 * Valid return values are:
710 int ossl_statem_server_construct_message(SSL *s)
712 OSSL_STATEM *st = &s->statem;
714 switch(st->hand_state) {
715 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
716 return dtls_construct_hello_verify_request(s);
718 case TLS_ST_SW_HELLO_REQ:
719 return tls_construct_hello_request(s);
721 case TLS_ST_SW_SRVR_HELLO:
722 return tls_construct_server_hello(s);
725 return tls_construct_server_certificate(s);
727 case TLS_ST_SW_KEY_EXCH:
728 return tls_construct_server_key_exchange(s);
730 case TLS_ST_SW_CERT_REQ:
731 return tls_construct_certificate_request(s);
733 case TLS_ST_SW_SRVR_DONE:
734 return tls_construct_server_done(s);
736 case TLS_ST_SW_SESSION_TICKET:
737 return tls_construct_new_session_ticket(s);
739 case TLS_ST_SW_CERT_STATUS:
740 return tls_construct_cert_status(s);
742 case TLS_ST_SW_CHANGE:
744 return dtls_construct_change_cipher_spec(s);
746 return tls_construct_change_cipher_spec(s);
748 case TLS_ST_SW_FINISHED:
749 return tls_construct_finished(s,
751 ssl3_enc->server_finished_label,
753 ssl3_enc->server_finished_label_len);
756 /* Shouldn't happen */
763 #define CLIENT_KEY_EXCH_MAX_LENGTH 2048
764 #define NEXT_PROTO_MAX_LENGTH 514
767 * Returns the maximum allowed length for the current message that we are
768 * reading. Excludes the message header.
770 unsigned long ossl_statem_server_max_message_size(SSL *s)
772 OSSL_STATEM *st = &s->statem;
774 switch(st->hand_state) {
775 case TLS_ST_SR_CLNT_HELLO:
776 return SSL3_RT_MAX_PLAIN_LENGTH;
779 return s->max_cert_list;
781 case TLS_ST_SR_KEY_EXCH:
782 return CLIENT_KEY_EXCH_MAX_LENGTH;
784 case TLS_ST_SR_CERT_VRFY:
785 return SSL3_RT_MAX_PLAIN_LENGTH;
787 #ifndef OPENSSL_NO_NEXTPROTONEG
788 case TLS_ST_SR_NEXT_PROTO:
789 return NEXT_PROTO_MAX_LENGTH;
792 case TLS_ST_SR_CHANGE:
793 return CCS_MAX_LENGTH;
795 case TLS_ST_SR_FINISHED:
796 return FINISHED_MAX_LENGTH;
799 /* Shouldn't happen */
807 * Process a message that the server has received from the client.
809 MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL *s, PACKET *pkt)
811 OSSL_STATEM *st = &s->statem;
813 switch(st->hand_state) {
814 case TLS_ST_SR_CLNT_HELLO:
815 return tls_process_client_hello(s, pkt);
818 return tls_process_client_certificate(s, pkt);
820 case TLS_ST_SR_KEY_EXCH:
821 return tls_process_client_key_exchange(s, pkt);
823 case TLS_ST_SR_CERT_VRFY:
824 return tls_process_cert_verify(s, pkt);
826 #ifndef OPENSSL_NO_NEXTPROTONEG
827 case TLS_ST_SR_NEXT_PROTO:
828 return tls_process_next_proto(s, pkt);
831 case TLS_ST_SR_CHANGE:
832 return tls_process_change_cipher_spec(s, pkt);
834 case TLS_ST_SR_FINISHED:
835 return tls_process_finished(s, pkt);
838 /* Shouldn't happen */
842 return MSG_PROCESS_ERROR;
846 * Perform any further processing required following the receipt of a message
849 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst)
851 OSSL_STATEM *st = &s->statem;
853 switch(st->hand_state) {
854 case TLS_ST_SR_CLNT_HELLO:
855 return tls_post_process_client_hello(s, wst);
857 case TLS_ST_SR_KEY_EXCH:
858 return tls_post_process_client_key_exchange(s, wst);
860 case TLS_ST_SR_CERT_VRFY:
861 #ifndef OPENSSL_NO_SCTP
862 if ( /* Is this SCTP? */
863 BIO_dgram_is_sctp(SSL_get_wbio(s))
864 /* Are we renegotiating? */
866 && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
867 s->s3->in_read_app_data = 2;
868 s->rwstate = SSL_READING;
869 BIO_clear_retry_flags(SSL_get_rbio(s));
870 BIO_set_retry_read(SSL_get_rbio(s));
871 statem_set_sctp_read_sock(s, 1);
874 ossl_ossl_statem_set_sctp_read_sock(s, 0);
877 return WORK_FINISHED_CONTINUE;
880 case TLS_ST_SR_FINISHED:
882 return tls_finish_handshake(s, wst);
884 return WORK_FINISHED_STOP;
889 /* Shouldn't happen */
893 #ifndef OPENSSL_NO_SRP
894 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
896 int ret = SSL_ERROR_NONE;
898 *al = SSL_AD_UNRECOGNIZED_NAME;
900 if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
901 (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
902 if (s->srp_ctx.login == NULL) {
904 * RFC 5054 says SHOULD reject, we do so if There is no srp
908 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
910 ret = SSL_srp_server_param_with_username(s, al);
917 int tls_construct_hello_request(SSL *s)
919 if (!ssl_set_handshake_header(s, SSL3_MT_HELLO_REQUEST, 0)) {
920 SSLerr(SSL_F_TLS_CONSTRUCT_HELLO_REQUEST, ERR_R_INTERNAL_ERROR);
921 ossl_statem_set_error(s);
928 unsigned int dtls_raw_hello_verify_request(unsigned char *buf,
929 unsigned char *cookie,
930 unsigned char cookie_len)
932 unsigned int msg_len;
936 /* Always use DTLS 1.0 version: see RFC 6347 */
937 *(p++) = DTLS1_VERSION >> 8;
938 *(p++) = DTLS1_VERSION & 0xFF;
940 *(p++) = (unsigned char)cookie_len;
941 memcpy(p, cookie, cookie_len);
948 int dtls_construct_hello_verify_request(SSL *s)
953 buf = (unsigned char *)s->init_buf->data;
955 if (s->ctx->app_gen_cookie_cb == NULL ||
956 s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
957 &(s->d1->cookie_len)) == 0 ||
958 s->d1->cookie_len > 255) {
959 SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST,
960 SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
961 ossl_statem_set_error(s);
965 len = dtls_raw_hello_verify_request(&buf[DTLS1_HM_HEADER_LENGTH],
966 s->d1->cookie, s->d1->cookie_len);
968 dtls1_set_message_header(s, buf, DTLS1_MT_HELLO_VERIFY_REQUEST, len, 0,
970 len += DTLS1_HM_HEADER_LENGTH;
972 /* number of bytes to write */
979 MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
981 int i, al = SSL_AD_INTERNAL_ERROR;
982 unsigned int j, complen = 0;
985 #ifndef OPENSSL_NO_COMP
986 SSL_COMP *comp = NULL;
988 STACK_OF(SSL_CIPHER) *ciphers = NULL;
990 /* |cookie| will only be initialized for DTLS. */
991 PACKET session_id, cipher_suites, compression, extensions, cookie;
994 is_v2_record = RECORD_LAYER_is_sslv2_record(&s->rlayer);
996 PACKET_null_init(&cookie);
997 /* First lets get s->client_version set correctly */
999 unsigned int version;
1002 * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
1003 * header is sent directly on the wire, not wrapped as a TLS
1004 * record. Our record layer just processes the message length and passes
1005 * the rest right through. Its format is:
1007 * 0-1 msg_length - decoded by the record layer
1008 * 2 msg_type - s->init_msg points here
1010 * 5-6 cipher_spec_length
1011 * 7-8 session_id_length
1012 * 9-10 challenge_length
1016 if (!PACKET_get_1(pkt, &mt)
1017 || mt != SSL2_MT_CLIENT_HELLO) {
1019 * Should never happen. We should have tested this in the record
1020 * layer in order to have determined that this is a SSLv2 record
1021 * in the first place
1023 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1027 if (!PACKET_get_net_2(pkt, &version)) {
1028 /* No protocol version supplied! */
1029 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1032 if (version == 0x0002) {
1033 /* This is real SSLv2. We don't support it. */
1034 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1036 } else if ((version & 0xff00) == (SSL3_VERSION_MAJOR << 8)) {
1038 s->client_version = version;
1040 /* No idea what protocol this is */
1041 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1046 * use version from inside client hello, not from record header (may
1047 * differ: see RFC 2246, Appendix E, second paragraph)
1049 if(!PACKET_get_net_2(pkt, (unsigned int *)&s->client_version)) {
1050 al = SSL_AD_DECODE_ERROR;
1051 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1056 /* Do SSL/TLS version negotiation if applicable */
1057 if (!SSL_IS_DTLS(s)) {
1058 if (s->version != TLS_ANY_VERSION) {
1059 if (s->client_version >= s->version) {
1062 } else if (s->client_version >= SSL3_VERSION) {
1063 switch(s->client_version) {
1065 case TLS1_2_VERSION:
1066 if(!(s->options & SSL_OP_NO_TLSv1_2)) {
1067 s->version = TLS1_2_VERSION;
1068 s->method = TLSv1_2_server_method();
1072 /* Deliberately fall through */
1073 case TLS1_1_VERSION:
1074 if(!(s->options & SSL_OP_NO_TLSv1_1)) {
1075 s->version = TLS1_1_VERSION;
1076 s->method = TLSv1_1_server_method();
1080 /* Deliberately fall through */
1082 if(!(s->options & SSL_OP_NO_TLSv1)) {
1083 s->version = TLS1_VERSION;
1084 s->method = TLSv1_server_method();
1088 /* Deliberately fall through */
1090 #ifndef OPENSSL_NO_SSL3
1091 if(!(s->options & SSL_OP_NO_SSLv3)) {
1092 s->version = SSL3_VERSION;
1093 s->method = SSLv3_server_method();
1102 } else if (s->client_version <= s->version
1103 || s->method->version == DTLS_ANY_VERSION) {
1105 * For DTLS we just check versions are potentially compatible. Version
1106 * negotiation comes later.
1112 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1113 if ((!s->enc_write_ctx && !s->write_hash)) {
1115 * similar to ssl3_get_record, send alert using remote version
1118 s->version = s->client_version;
1120 al = SSL_AD_PROTOCOL_VERSION;
1124 /* Parse the message and load client random. */
1127 * Handle an SSLv2 backwards compatible ClientHello
1128 * Note, this is only for SSLv3+ using the backward compatible format.
1129 * Real SSLv2 is not supported, and is rejected above.
1131 unsigned int cipher_len, session_id_len, challenge_len;
1134 if (!PACKET_get_net_2(pkt, &cipher_len)
1135 || !PACKET_get_net_2(pkt, &session_id_len)
1136 || !PACKET_get_net_2(pkt, &challenge_len)) {
1137 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1138 SSL_R_RECORD_LENGTH_MISMATCH);
1139 al = SSL_AD_DECODE_ERROR;
1143 if (!PACKET_get_sub_packet(pkt, &cipher_suites, cipher_len)
1144 || !PACKET_get_sub_packet(pkt, &session_id, session_id_len)
1145 || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
1146 /* No extensions. */
1147 || PACKET_remaining(pkt) != 0) {
1148 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1149 SSL_R_RECORD_LENGTH_MISMATCH);
1150 al = SSL_AD_DECODE_ERROR;
1154 /* Load the client random */
1155 challenge_len = challenge_len > SSL3_RANDOM_SIZE ? SSL3_RANDOM_SIZE :
1157 memset(s->s3->client_random, 0, SSL3_RANDOM_SIZE);
1158 if (!PACKET_copy_bytes(&challenge,
1159 s->s3->client_random + SSL3_RANDOM_SIZE -
1160 challenge_len, challenge_len)) {
1161 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1162 al = SSL_AD_INTERNAL_ERROR;
1166 PACKET_null_init(&compression);
1167 PACKET_null_init(&extensions);
1169 /* Regular ClientHello. */
1170 if (!PACKET_copy_bytes(pkt, s->s3->client_random, SSL3_RANDOM_SIZE)
1171 || !PACKET_get_length_prefixed_1(pkt, &session_id)) {
1172 al = SSL_AD_DECODE_ERROR;
1173 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1177 if (SSL_IS_DTLS(s)) {
1178 if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
1179 al = SSL_AD_DECODE_ERROR;
1180 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1184 * If we require cookies and this ClientHello doesn't contain one,
1185 * just return since we do not want to allocate any memory yet.
1186 * So check cookie length...
1188 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1189 if (PACKET_remaining(&cookie) == 0)
1194 if (!PACKET_get_length_prefixed_2(pkt, &cipher_suites)
1195 || !PACKET_get_length_prefixed_1(pkt, &compression)) {
1196 al = SSL_AD_DECODE_ERROR;
1197 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1200 /* Could be empty. */
1207 * We don't allow resumption in a backwards compatible ClientHello.
1208 * TODO(openssl-team): in TLS1.1+, session_id MUST be empty.
1210 * Versions before 0.9.7 always allow clients to resume sessions in
1211 * renegotiation. 0.9.7 and later allow this by default, but optionally
1212 * ignore resumption requests with flag
1213 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1214 * than a change to default behavior so that applications relying on
1215 * this for security won't even compile against older library versions).
1216 * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1217 * request renegotiation but not a new session (s->new_session remains
1218 * unset): for servers, this essentially just means that the
1219 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
1224 (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1225 if (!ssl_get_new_session(s, 1))
1228 i = ssl_get_prev_session(s, &extensions, &session_id);
1230 * Only resume if the session's version matches the negotiated
1232 * RFC 5246 does not provide much useful advice on resumption
1233 * with a different protocol version. It doesn't forbid it but
1234 * the sanity of such behaviour would be questionable.
1235 * In practice, clients do not accept a version mismatch and
1236 * will abort the handshake with an error.
1238 if (i == 1 && s->version == s->session->ssl_version) {
1239 /* previous session */
1241 } else if (i == -1) {
1245 if (!ssl_get_new_session(s, 1))
1250 if (SSL_IS_DTLS(s)) {
1251 /* Empty cookie was already handled above by returning early. */
1252 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1253 if (s->ctx->app_verify_cookie_cb != NULL) {
1254 if (s->ctx->app_verify_cookie_cb(s, PACKET_data(&cookie),
1255 PACKET_remaining(&cookie)) == 0) {
1256 al = SSL_AD_HANDSHAKE_FAILURE;
1257 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1258 SSL_R_COOKIE_MISMATCH);
1260 /* else cookie verification succeeded */
1262 /* default verification */
1263 } else if (!PACKET_equal(&cookie, s->d1->cookie,
1264 s->d1->cookie_len)) {
1265 al = SSL_AD_HANDSHAKE_FAILURE;
1266 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1269 s->d1->cookie_verified = 1;
1271 if (s->method->version == DTLS_ANY_VERSION) {
1272 /* Select version to use */
1273 if (s->client_version <= DTLS1_2_VERSION &&
1274 !(s->options & SSL_OP_NO_DTLSv1_2)) {
1275 s->version = DTLS1_2_VERSION;
1276 s->method = DTLSv1_2_server_method();
1277 } else if (tls1_suiteb(s)) {
1278 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1279 SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE);
1280 s->version = s->client_version;
1281 al = SSL_AD_PROTOCOL_VERSION;
1283 } else if (s->client_version <= DTLS1_VERSION &&
1284 !(s->options & SSL_OP_NO_DTLSv1)) {
1285 s->version = DTLS1_VERSION;
1286 s->method = DTLSv1_server_method();
1288 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1289 SSL_R_WRONG_VERSION_NUMBER);
1290 s->version = s->client_version;
1291 al = SSL_AD_PROTOCOL_VERSION;
1294 s->session->ssl_version = s->version;
1298 if (ssl_bytes_to_cipher_list(s, &cipher_suites, &(ciphers),
1299 is_v2_record, &al) == NULL) {
1303 /* If it is a hit, check that the cipher is in the list */
1306 id = s->session->cipher->id;
1309 fprintf(stderr, "client sent %d ciphers\n",
1310 sk_SSL_CIPHER_num(ciphers));
1312 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1313 c = sk_SSL_CIPHER_value(ciphers, i);
1315 fprintf(stderr, "client [%2d of %2d]:%s\n",
1316 i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1325 * we need to have the cipher in the cipher list if we are asked
1328 al = SSL_AD_ILLEGAL_PARAMETER;
1329 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1330 SSL_R_REQUIRED_CIPHER_MISSING);
1335 complen = PACKET_remaining(&compression);
1336 for (j = 0; j < complen; j++) {
1337 if (PACKET_data(&compression)[j] == 0)
1343 al = SSL_AD_DECODE_ERROR;
1344 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
1348 /* TLS extensions */
1349 if (s->version >= SSL3_VERSION) {
1350 if (!ssl_parse_clienthello_tlsext(s, &extensions)) {
1351 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
1357 * Check if we want to use external pre-shared secret for this handshake
1358 * for not reused session only. We need to generate server_random before
1359 * calling tls_session_secret_cb in order to allow SessionTicket
1360 * processing to use it in key derivation.
1364 pos = s->s3->server_random;
1365 if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
1370 if (!s->hit && s->version >= TLS1_VERSION && s->tls_session_secret_cb) {
1371 SSL_CIPHER *pref_cipher = NULL;
1373 s->session->master_key_length = sizeof(s->session->master_key);
1374 if (s->tls_session_secret_cb(s, s->session->master_key,
1375 &s->session->master_key_length, ciphers,
1377 s->tls_session_secret_cb_arg)) {
1379 s->session->ciphers = ciphers;
1380 s->session->verify_result = X509_V_OK;
1384 /* check if some cipher was preferred by call back */
1386 pref_cipher ? pref_cipher : ssl3_choose_cipher(s,
1391 if (pref_cipher == NULL) {
1392 al = SSL_AD_HANDSHAKE_FAILURE;
1393 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1397 s->session->cipher = pref_cipher;
1398 sk_SSL_CIPHER_free(s->cipher_list);
1399 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1400 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1401 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1406 * Worst case, we will use the NULL compression, but if we have other
1407 * options, we will now look for them. We have complen-1 compression
1408 * algorithms from the client, starting at q.
1410 s->s3->tmp.new_compression = NULL;
1411 #ifndef OPENSSL_NO_COMP
1412 /* This only happens if we have a cache hit */
1413 if (s->session->compress_meth != 0) {
1414 int m, comp_id = s->session->compress_meth;
1416 /* Perform sanity checks on resumed compression algorithm */
1417 /* Can't disable compression */
1418 if (!ssl_allow_compression(s)) {
1419 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1420 SSL_R_INCONSISTENT_COMPRESSION);
1423 /* Look for resumed compression method */
1424 for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
1425 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1426 if (comp_id == comp->id) {
1427 s->s3->tmp.new_compression = comp;
1431 if (s->s3->tmp.new_compression == NULL) {
1432 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1433 SSL_R_INVALID_COMPRESSION_ALGORITHM);
1436 /* Look for resumed method in compression list */
1437 for (k = 0; k < complen; k++) {
1438 if (PACKET_data(&compression)[k] == comp_id)
1442 al = SSL_AD_ILLEGAL_PARAMETER;
1443 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1444 SSL_R_REQUIRED_COMPRESSSION_ALGORITHM_MISSING);
1449 else if (ssl_allow_compression(s) && s->ctx->comp_methods) {
1450 /* See if we have a match */
1451 int m, nn, v, done = 0;
1454 nn = sk_SSL_COMP_num(s->ctx->comp_methods);
1455 for (m = 0; m < nn; m++) {
1456 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1458 for (o = 0; o < complen; o++) {
1459 if (v == PACKET_data(&compression)[o]) {
1468 s->s3->tmp.new_compression = comp;
1474 * If compression is disabled we'd better not try to resume a session
1475 * using compression.
1477 if (s->session->compress_meth != 0) {
1478 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1484 * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
1488 #ifdef OPENSSL_NO_COMP
1489 s->session->compress_meth = 0;
1491 s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
1493 sk_SSL_CIPHER_free(s->session->ciphers);
1494 s->session->ciphers = ciphers;
1495 if (ciphers == NULL) {
1496 al = SSL_AD_INTERNAL_ERROR;
1497 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1501 if (!tls1_set_server_sigalgs(s)) {
1502 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1507 sk_SSL_CIPHER_free(ciphers);
1508 return MSG_PROCESS_CONTINUE_PROCESSING;
1510 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1512 ossl_statem_set_error(s);
1514 sk_SSL_CIPHER_free(ciphers);
1515 return MSG_PROCESS_ERROR;
1519 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst)
1521 int al = SSL_AD_HANDSHAKE_FAILURE;
1524 if (wst == WORK_MORE_A) {
1526 /* Let cert callback update server certificates if required */
1527 if (s->cert->cert_cb) {
1528 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
1530 al = SSL_AD_INTERNAL_ERROR;
1531 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO, SSL_R_CERT_CB_ERROR);
1535 s->rwstate = SSL_X509_LOOKUP;
1538 s->rwstate = SSL_NOTHING;
1540 cipher = ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1542 if (cipher == NULL) {
1543 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1546 s->s3->tmp.new_cipher = cipher;
1547 /* check whether we should disable session resumption */
1548 if (s->not_resumable_session_cb != NULL)
1549 s->session->not_resumable = s->not_resumable_session_cb(s,
1550 ((cipher->algorithm_mkey & (SSL_kDHE | SSL_kECDHE)) != 0));
1551 if (s->session->not_resumable)
1552 /* do not send a session ticket */
1553 s->tlsext_ticket_expected = 0;
1555 /* Session-id reuse */
1556 s->s3->tmp.new_cipher = s->session->cipher;
1559 if (!SSL_USE_SIGALGS(s) || !(s->verify_mode & SSL_VERIFY_PEER)) {
1560 if (!ssl3_digest_cached_records(s, 0)) {
1561 al = SSL_AD_INTERNAL_ERROR;
1567 * we now have the following setup.
1569 * cipher_list - our prefered list of ciphers
1570 * ciphers - the clients prefered list of ciphers
1571 * compression - basically ignored right now
1572 * ssl version is set - sslv3
1573 * s->session - The ssl session has been setup.
1574 * s->hit - session reuse flag
1575 * s->s3->tmp.new_cipher- the new cipher to use.
1578 /* Handles TLS extensions that we couldn't check earlier */
1579 if (s->version >= SSL3_VERSION) {
1580 if (ssl_check_clienthello_tlsext_late(s) <= 0) {
1581 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1582 SSL_R_CLIENTHELLO_TLSEXT);
1589 #ifndef OPENSSL_NO_SRP
1590 if (wst == WORK_MORE_B) {
1592 if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
1594 * callback indicates further work to be done
1596 s->rwstate = SSL_X509_LOOKUP;
1599 if (ret != SSL_ERROR_NONE) {
1601 * This is not really an error but the only means to for
1602 * a client to detect whether srp is supported.
1604 if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
1605 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1606 SSL_R_CLIENTHELLO_TLSEXT);
1613 return WORK_FINISHED_STOP;
1615 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1616 ossl_statem_set_error(s);
1620 int tls_construct_server_hello(SSL *s)
1623 unsigned char *p, *d;
1628 buf = (unsigned char *)s->init_buf->data;
1630 /* Do the message type and length last */
1631 d = p = ssl_handshake_start(s);
1633 *(p++) = s->version >> 8;
1634 *(p++) = s->version & 0xff;
1637 * Random stuff. Filling of the server_random takes place in
1638 * tls_process_client_hello()
1640 memcpy(p, s->s3->server_random, SSL3_RANDOM_SIZE);
1641 p += SSL3_RANDOM_SIZE;
1644 * There are several cases for the session ID to send
1645 * back in the server hello:
1646 * - For session reuse from the session cache,
1647 * we send back the old session ID.
1648 * - If stateless session reuse (using a session ticket)
1649 * is successful, we send back the client's "session ID"
1650 * (which doesn't actually identify the session).
1651 * - If it is a new session, we send back the new
1653 * - However, if we want the new session to be single-use,
1654 * we send back a 0-length session ID.
1655 * s->hit is non-zero in either case of session reuse,
1656 * so the following won't overwrite an ID that we're supposed
1659 if (s->session->not_resumable ||
1660 (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1662 s->session->session_id_length = 0;
1664 sl = s->session->session_id_length;
1665 if (sl > (int)sizeof(s->session->session_id)) {
1666 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1667 ossl_statem_set_error(s);
1671 memcpy(p, s->session->session_id, sl);
1674 /* put the cipher */
1675 i = ssl3_put_cipher_by_char(s->s3->tmp.new_cipher, p);
1678 /* put the compression method */
1679 #ifdef OPENSSL_NO_COMP
1682 if (s->s3->tmp.new_compression == NULL)
1685 *(p++) = s->s3->tmp.new_compression->id;
1688 if (ssl_prepare_serverhello_tlsext(s) <= 0) {
1689 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, SSL_R_SERVERHELLO_TLSEXT);
1690 ossl_statem_set_error(s);
1694 ssl_add_serverhello_tlsext(s, p, buf + SSL3_RT_MAX_PLAIN_LENGTH,
1696 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1697 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1698 ossl_statem_set_error(s);
1704 if (!ssl_set_handshake_header(s, SSL3_MT_SERVER_HELLO, l)) {
1705 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1706 ossl_statem_set_error(s);
1713 int tls_construct_server_done(SSL *s)
1715 if (!ssl_set_handshake_header(s, SSL3_MT_SERVER_DONE, 0)) {
1716 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_DONE, ERR_R_INTERNAL_ERROR);
1717 ossl_statem_set_error(s);
1721 if (!s->s3->tmp.cert_request) {
1722 if (!ssl3_digest_cached_records(s, 0)) {
1723 ossl_statem_set_error(s);
1730 int tls_construct_server_key_exchange(SSL *s)
1732 #ifndef OPENSSL_NO_RSA
1736 unsigned char md_buf[MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH];
1739 #ifndef OPENSSL_NO_DH
1740 DH *dh = NULL, *dhp;
1742 #ifndef OPENSSL_NO_EC
1743 EC_KEY *ecdh = NULL, *ecdhp;
1744 unsigned char *encodedPoint = NULL;
1747 BN_CTX *bn_ctx = NULL;
1750 const EVP_MD *md = NULL;
1751 unsigned char *p, *d;
1761 EVP_MD_CTX_init(&md_ctx);
1763 type = s->s3->tmp.new_cipher->algorithm_mkey;
1768 r[0] = r[1] = r[2] = r[3] = NULL;
1770 #ifndef OPENSSL_NO_PSK
1771 if (type & SSL_PSK) {
1773 * reserve size for record length and PSK identity hint
1776 if (s->cert->psk_identity_hint)
1777 n += strlen(s->cert->psk_identity_hint);
1779 /* Plain PSK or RSAPSK nothing to do */
1780 if (type & (SSL_kPSK | SSL_kRSAPSK)) {
1782 #endif /* !OPENSSL_NO_PSK */
1783 #ifndef OPENSSL_NO_RSA
1784 if (type & SSL_kRSA) {
1785 rsa = cert->rsa_tmp;
1786 if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL)) {
1787 rsa = s->cert->rsa_tmp_cb(s,
1788 SSL_C_IS_EXPORT(s->s3->
1790 SSL_C_EXPORT_PKEYLENGTH(s->s3->
1793 al = SSL_AD_HANDSHAKE_FAILURE;
1794 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1795 SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
1799 cert->rsa_tmp = rsa;
1802 al = SSL_AD_HANDSHAKE_FAILURE;
1803 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1804 SSL_R_MISSING_TMP_RSA_KEY);
1809 s->s3->tmp.use_rsa_tmp = 1;
1812 #ifndef OPENSSL_NO_DH
1813 if (type & (SSL_kDHE | SSL_kDHEPSK)) {
1814 if (s->cert->dh_tmp_auto) {
1815 dhp = ssl_get_auto_dh(s);
1817 al = SSL_AD_INTERNAL_ERROR;
1818 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1819 ERR_R_INTERNAL_ERROR);
1824 if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1825 dhp = s->cert->dh_tmp_cb(s,
1826 SSL_C_IS_EXPORT(s->s3->
1828 SSL_C_EXPORT_PKEYLENGTH(s->s3->
1831 al = SSL_AD_HANDSHAKE_FAILURE;
1832 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1833 SSL_R_MISSING_TMP_DH_KEY);
1836 if (!ssl_security(s, SSL_SECOP_TMP_DH,
1837 DH_security_bits(dhp), 0, dhp)) {
1838 al = SSL_AD_HANDSHAKE_FAILURE;
1839 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1840 SSL_R_DH_KEY_TOO_SMALL);
1843 if (s->s3->tmp.dh != NULL) {
1844 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1845 ERR_R_INTERNAL_ERROR);
1849 if (s->cert->dh_tmp_auto)
1851 else if ((dh = DHparams_dup(dhp)) == NULL) {
1852 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
1857 if ((dhp->pub_key == NULL ||
1858 dhp->priv_key == NULL ||
1859 (s->options & SSL_OP_SINGLE_DH_USE))) {
1860 if (!DH_generate_key(dh)) {
1861 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
1865 dh->pub_key = BN_dup(dhp->pub_key);
1866 dh->priv_key = BN_dup(dhp->priv_key);
1867 if ((dh->pub_key == NULL) || (dh->priv_key == NULL)) {
1868 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
1877 #ifndef OPENSSL_NO_EC
1878 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
1879 const EC_GROUP *group;
1881 ecdhp = cert->ecdh_tmp;
1882 if (s->cert->ecdh_tmp_auto) {
1883 /* Get NID of appropriate shared curve */
1884 int nid = tls1_shared_curve(s, -2);
1885 if (nid != NID_undef)
1886 ecdhp = EC_KEY_new_by_curve_name(nid);
1887 } else if ((ecdhp == NULL) && s->cert->ecdh_tmp_cb) {
1888 ecdhp = s->cert->ecdh_tmp_cb(s,
1889 SSL_C_IS_EXPORT(s->s3->
1891 SSL_C_EXPORT_PKEYLENGTH(s->
1892 s3->tmp.new_cipher));
1894 if (ecdhp == NULL) {
1895 al = SSL_AD_HANDSHAKE_FAILURE;
1896 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1897 SSL_R_MISSING_TMP_ECDH_KEY);
1901 if (s->s3->tmp.ecdh != NULL) {
1902 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1903 ERR_R_INTERNAL_ERROR);
1907 /* Duplicate the ECDH structure. */
1908 if (ecdhp == NULL) {
1909 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1912 if (s->cert->ecdh_tmp_auto)
1914 else if ((ecdh = EC_KEY_dup(ecdhp)) == NULL) {
1915 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1919 s->s3->tmp.ecdh = ecdh;
1920 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1921 (EC_KEY_get0_private_key(ecdh) == NULL) ||
1922 (s->options & SSL_OP_SINGLE_ECDH_USE)) {
1923 if (!EC_KEY_generate_key(ecdh)) {
1924 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1930 if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
1931 (EC_KEY_get0_public_key(ecdh) == NULL) ||
1932 (EC_KEY_get0_private_key(ecdh) == NULL)) {
1933 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1937 if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1938 (EC_GROUP_get_degree(group) > 163)) {
1939 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1940 SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1945 * XXX: For now, we only support ephemeral ECDH keys over named
1946 * (not generic) curves. For supported named curves, curve_id is
1950 tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
1952 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1953 SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
1958 * Encode the public key. First check the size of encoding and
1959 * allocate memory accordingly.
1961 encodedlen = EC_POINT_point2oct(group,
1962 EC_KEY_get0_public_key(ecdh),
1963 POINT_CONVERSION_UNCOMPRESSED,
1966 encodedPoint = (unsigned char *)
1967 OPENSSL_malloc(encodedlen * sizeof(unsigned char));
1968 bn_ctx = BN_CTX_new();
1969 if ((encodedPoint == NULL) || (bn_ctx == NULL)) {
1970 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1971 ERR_R_MALLOC_FAILURE);
1975 encodedlen = EC_POINT_point2oct(group,
1976 EC_KEY_get0_public_key(ecdh),
1977 POINT_CONVERSION_UNCOMPRESSED,
1978 encodedPoint, encodedlen, bn_ctx);
1980 if (encodedlen == 0) {
1981 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1985 BN_CTX_free(bn_ctx);
1989 * XXX: For now, we only support named (not generic) curves in
1990 * ECDH ephemeral key exchanges. In this situation, we need four
1991 * additional bytes to encode the entire ServerECDHParams
1994 n += 4 + encodedlen;
1997 * We'll generate the serverKeyExchange message explicitly so we
1998 * can set these to NULLs
2005 #endif /* !OPENSSL_NO_EC */
2006 #ifndef OPENSSL_NO_SRP
2007 if (type & SSL_kSRP) {
2008 if ((s->srp_ctx.N == NULL) ||
2009 (s->srp_ctx.g == NULL) ||
2010 (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
2011 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2012 SSL_R_MISSING_SRP_PARAM);
2015 r[0] = s->srp_ctx.N;
2016 r[1] = s->srp_ctx.g;
2017 r[2] = s->srp_ctx.s;
2018 r[3] = s->srp_ctx.B;
2022 al = SSL_AD_HANDSHAKE_FAILURE;
2023 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2024 SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
2027 for (i = 0; i < 4 && r[i] != NULL; i++) {
2028 nr[i] = BN_num_bytes(r[i]);
2029 #ifndef OPENSSL_NO_SRP
2030 if ((i == 2) && (type & SSL_kSRP))
2037 if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL|SSL_aSRP))
2038 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) {
2039 if ((pkey = ssl_get_sign_pkey(s, s->s3->tmp.new_cipher, &md))
2041 al = SSL_AD_DECODE_ERROR;
2044 kn = EVP_PKEY_size(pkey);
2050 if (!BUF_MEM_grow_clean(buf, n + SSL_HM_HEADER_LENGTH(s) + kn)) {
2051 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_LIB_BUF);
2054 d = p = ssl_handshake_start(s);
2056 #ifndef OPENSSL_NO_PSK
2057 if (type & SSL_PSK) {
2058 /* copy PSK identity hint */
2059 if (s->cert->psk_identity_hint) {
2060 s2n(strlen(s->cert->psk_identity_hint), p);
2061 strncpy((char *)p, s->cert->psk_identity_hint,
2062 strlen(s->cert->psk_identity_hint));
2063 p += strlen(s->cert->psk_identity_hint);
2070 for (i = 0; i < 4 && r[i] != NULL; i++) {
2071 #ifndef OPENSSL_NO_SRP
2072 if ((i == 2) && (type & SSL_kSRP)) {
2082 #ifndef OPENSSL_NO_EC
2083 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2085 * XXX: For now, we only support named (not generic) curves. In
2086 * this situation, the serverKeyExchange message has: [1 byte
2087 * CurveType], [2 byte CurveName] [1 byte length of encoded
2088 * point], followed by the actual encoded point itself
2090 *p = NAMED_CURVE_TYPE;
2098 memcpy(p, encodedPoint, encodedlen);
2099 OPENSSL_free(encodedPoint);
2100 encodedPoint = NULL;
2108 * n is the length of the params, they start at &(d[4]) and p
2109 * points to the space at the end.
2111 #ifndef OPENSSL_NO_RSA
2112 if (pkey->type == EVP_PKEY_RSA && !SSL_USE_SIGALGS(s)) {
2115 for (num = 2; num > 0; num--) {
2116 EVP_MD_CTX_set_flags(&md_ctx,
2117 EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
2118 EVP_DigestInit_ex(&md_ctx, (num == 2)
2119 ? s->ctx->md5 : s->ctx->sha1, NULL);
2120 EVP_DigestUpdate(&md_ctx, &(s->s3->client_random[0]),
2122 EVP_DigestUpdate(&md_ctx, &(s->s3->server_random[0]),
2124 EVP_DigestUpdate(&md_ctx, d, n);
2125 EVP_DigestFinal_ex(&md_ctx, q, (unsigned int *)&i);
2129 if (RSA_sign(NID_md5_sha1, md_buf, j,
2130 &(p[2]), &u, pkey->pkey.rsa) <= 0) {
2131 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_LIB_RSA);
2139 /* send signature algorithm */
2140 if (SSL_USE_SIGALGS(s)) {
2141 if (!tls12_get_sigandhash(p, pkey, md)) {
2142 /* Should never happen */
2143 al = SSL_AD_INTERNAL_ERROR;
2144 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2145 ERR_R_INTERNAL_ERROR);
2151 fprintf(stderr, "Using hash %s\n", EVP_MD_name(md));
2153 EVP_SignInit_ex(&md_ctx, md, NULL);
2154 EVP_SignUpdate(&md_ctx, &(s->s3->client_random[0]),
2156 EVP_SignUpdate(&md_ctx, &(s->s3->server_random[0]),
2158 EVP_SignUpdate(&md_ctx, d, n);
2159 if (!EVP_SignFinal(&md_ctx, &(p[2]),
2160 (unsigned int *)&i, pkey)) {
2161 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_LIB_EVP);
2166 if (SSL_USE_SIGALGS(s))
2169 /* Is this error check actually needed? */
2170 al = SSL_AD_HANDSHAKE_FAILURE;
2171 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2172 SSL_R_UNKNOWN_PKEY_TYPE);
2177 if (!ssl_set_handshake_header(s, SSL3_MT_SERVER_KEY_EXCHANGE, n)) {
2178 al = SSL_AD_HANDSHAKE_FAILURE;
2179 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2183 EVP_MD_CTX_cleanup(&md_ctx);
2186 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2188 #ifndef OPENSSL_NO_EC
2189 OPENSSL_free(encodedPoint);
2190 BN_CTX_free(bn_ctx);
2192 EVP_MD_CTX_cleanup(&md_ctx);
2193 ossl_statem_set_error(s);
2197 int tls_construct_certificate_request(SSL *s)
2199 unsigned char *p, *d;
2200 int i, j, nl, off, n;
2201 STACK_OF(X509_NAME) *sk = NULL;
2207 d = p = ssl_handshake_start(s);
2209 /* get the list of acceptable cert types */
2211 n = ssl3_get_req_cert_type(s, p);
2216 if (SSL_USE_SIGALGS(s)) {
2217 const unsigned char *psigs;
2218 unsigned char *etmp = p;
2219 nl = tls12_get_psigalgs(s, &psigs);
2220 /* Skip over length for now */
2222 nl = tls12_copy_sigalgs(s, p, psigs, nl);
2223 /* Now fill in length */
2233 sk = SSL_get_client_CA_list(s);
2236 for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2237 name = sk_X509_NAME_value(sk, i);
2238 j = i2d_X509_NAME(name, NULL);
2239 if (!BUF_MEM_grow_clean
2240 (buf, SSL_HM_HEADER_LENGTH(s) + n + j + 2)) {
2241 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2245 p = ssl_handshake_start(s) + n;
2247 i2d_X509_NAME(name, &p);
2252 /* else no CA names */
2253 p = ssl_handshake_start(s) + off;
2256 if (!ssl_set_handshake_header(s, SSL3_MT_CERTIFICATE_REQUEST, n)) {
2257 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2261 s->s3->tmp.cert_request = 1;
2265 ossl_statem_set_error(s);
2269 MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL *s, PACKET *pkt)
2273 unsigned long alg_k;
2274 #ifndef OPENSSL_NO_RSA
2276 EVP_PKEY *pkey = NULL;
2278 #ifndef OPENSSL_NO_DH
2280 DH *dh_srvr, *dh_clnt = NULL;
2282 #ifndef OPENSSL_NO_EC
2283 EC_KEY *srvr_ecdh = NULL;
2284 EVP_PKEY *clnt_pub_pkey = NULL;
2285 EC_POINT *clnt_ecpoint = NULL;
2286 BN_CTX *bn_ctx = NULL;
2288 PACKET enc_premaster;
2289 unsigned char *data, *rsa_decrypt = NULL;
2291 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2293 #ifndef OPENSSL_NO_PSK
2294 /* For PSK parse and retrieve identity, obtain PSK key */
2295 if (alg_k & SSL_PSK) {
2296 unsigned char psk[PSK_MAX_PSK_LEN];
2298 PACKET psk_identity;
2300 if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
2301 al = SSL_AD_DECODE_ERROR;
2302 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
2305 if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
2306 al = SSL_AD_DECODE_ERROR;
2307 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2308 SSL_R_DATA_LENGTH_TOO_LONG);
2311 if (s->psk_server_callback == NULL) {
2312 al = SSL_AD_INTERNAL_ERROR;
2313 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2314 SSL_R_PSK_NO_SERVER_CB);
2318 if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
2319 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2320 al = SSL_AD_INTERNAL_ERROR;
2324 psklen = s->psk_server_callback(s, s->session->psk_identity,
2327 if (psklen > PSK_MAX_PSK_LEN) {
2328 al = SSL_AD_INTERNAL_ERROR;
2329 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2331 } else if (psklen == 0) {
2333 * PSK related to the given identity not found
2335 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2336 SSL_R_PSK_IDENTITY_NOT_FOUND);
2337 al = SSL_AD_UNKNOWN_PSK_IDENTITY;
2341 OPENSSL_free(s->s3->tmp.psk);
2342 s->s3->tmp.psk = BUF_memdup(psk, psklen);
2343 OPENSSL_cleanse(psk, psklen);
2345 if (s->s3->tmp.psk == NULL) {
2346 al = SSL_AD_INTERNAL_ERROR;
2347 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2351 s->s3->tmp.psklen = psklen;
2353 if (alg_k & SSL_kPSK) {
2354 /* Identity extracted earlier: should be nothing left */
2355 if (PACKET_remaining(pkt) != 0) {
2356 al = SSL_AD_HANDSHAKE_FAILURE;
2357 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
2360 /* PSK handled by ssl_generate_master_secret */
2361 if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
2362 al = SSL_AD_INTERNAL_ERROR;
2363 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2368 #ifndef OPENSSL_NO_RSA
2369 if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
2370 unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2372 unsigned char decrypt_good, version_good;
2375 /* FIX THIS UP EAY EAY EAY EAY */
2376 if (s->s3->tmp.use_rsa_tmp) {
2377 if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
2378 rsa = s->cert->rsa_tmp;
2380 * Don't do a callback because rsa_tmp should be sent already
2383 al = SSL_AD_HANDSHAKE_FAILURE;
2384 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2385 SSL_R_MISSING_TMP_RSA_PKEY);
2390 pkey = s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
2391 if ((pkey == NULL) ||
2392 (pkey->type != EVP_PKEY_RSA) || (pkey->pkey.rsa == NULL)) {
2393 al = SSL_AD_HANDSHAKE_FAILURE;
2394 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2395 SSL_R_MISSING_RSA_CERTIFICATE);
2398 rsa = pkey->pkey.rsa;
2401 /* SSLv3 and pre-standard DTLS omit the length bytes. */
2402 if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
2403 enc_premaster = *pkt;
2406 if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
2407 || PACKET_remaining(pkt) != 0) {
2408 /* Try SSLv3 behaviour for TLS. */
2409 if (s->options & SSL_OP_TLS_D5_BUG) {
2410 enc_premaster = orig;
2412 al = SSL_AD_DECODE_ERROR;
2413 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2414 SSL_R_LENGTH_MISMATCH);
2421 * We want to be sure that the plaintext buffer size makes it safe to
2422 * iterate over the entire size of a premaster secret
2423 * (SSL_MAX_MASTER_KEY_LENGTH). Reject overly short RSA keys because
2424 * their ciphertext cannot accommodate a premaster secret anyway.
2426 if (RSA_size(rsa) < SSL_MAX_MASTER_KEY_LENGTH) {
2427 al = SSL_AD_INTERNAL_ERROR;
2428 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2429 RSA_R_KEY_SIZE_TOO_SMALL);
2433 rsa_decrypt = OPENSSL_malloc(RSA_size(rsa));
2434 if (rsa_decrypt == NULL) {
2435 al = SSL_AD_INTERNAL_ERROR;
2436 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2441 * We must not leak whether a decryption failure occurs because of
2442 * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2443 * section 7.4.7.1). The code follows that advice of the TLS RFC and
2444 * generates a random premaster secret for the case that the decrypt
2445 * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
2448 if (RAND_bytes(rand_premaster_secret,
2449 sizeof(rand_premaster_secret)) <= 0) {
2453 decrypt_len = RSA_private_decrypt(PACKET_remaining(&enc_premaster),
2454 PACKET_data(&enc_premaster),
2455 rsa_decrypt, rsa, RSA_PKCS1_PADDING);
2459 * decrypt_len should be SSL_MAX_MASTER_KEY_LENGTH. decrypt_good will
2460 * be 0xff if so and zero otherwise.
2463 constant_time_eq_int_8(decrypt_len, SSL_MAX_MASTER_KEY_LENGTH);
2466 * If the version in the decrypted pre-master secret is correct then
2467 * version_good will be 0xff, otherwise it'll be zero. The
2468 * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2469 * (http://eprint.iacr.org/2003/052/) exploits the version number
2470 * check as a "bad version oracle". Thus version checks are done in
2471 * constant time and are treated like any other decryption error.
2474 constant_time_eq_8(rsa_decrypt[0],
2475 (unsigned)(s->client_version >> 8));
2477 constant_time_eq_8(rsa_decrypt[1],
2478 (unsigned)(s->client_version & 0xff));
2481 * The premaster secret must contain the same version number as the
2482 * ClientHello to detect version rollback attacks (strangely, the
2483 * protocol does not offer such protection for DH ciphersuites).
2484 * However, buggy clients exist that send the negotiated protocol
2485 * version instead if the server does not support the requested
2486 * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
2489 if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
2490 unsigned char workaround_good;
2492 constant_time_eq_8(rsa_decrypt[0], (unsigned)(s->version >> 8));
2494 constant_time_eq_8(rsa_decrypt[1],
2495 (unsigned)(s->version & 0xff));
2496 version_good |= workaround_good;
2500 * Both decryption and version must be good for decrypt_good to
2501 * remain non-zero (0xff).
2503 decrypt_good &= version_good;
2506 * Now copy rand_premaster_secret over from p using
2507 * decrypt_good_mask. If decryption failed, then p does not
2508 * contain valid plaintext, however, a check above guarantees
2509 * it is still sufficiently large to read from.
2511 for (j = 0; j < sizeof(rand_premaster_secret); j++) {
2513 constant_time_select_8(decrypt_good, rsa_decrypt[j],
2514 rand_premaster_secret[j]);
2517 if (!ssl_generate_master_secret(s, rsa_decrypt,
2518 sizeof(rand_premaster_secret), 0)) {
2519 al = SSL_AD_INTERNAL_ERROR;
2520 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2523 OPENSSL_free(rsa_decrypt);
2527 #ifndef OPENSSL_NO_DH
2528 if (alg_k & (SSL_kDHE | SSL_kDHr | SSL_kDHd | SSL_kDHEPSK)) {
2530 EVP_PKEY *skey = NULL;
2531 PACKET bookmark = *pkt;
2532 unsigned char shared[(OPENSSL_DH_MAX_MODULUS_BITS + 7) / 8];
2534 if (!PACKET_get_net_2(pkt, &i)) {
2535 if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2536 al = SSL_AD_HANDSHAKE_FAILURE;
2537 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2538 SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2543 if (PACKET_remaining(pkt) != i) {
2544 if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG)) {
2545 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2546 SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2550 i = PACKET_remaining(pkt);
2553 if (alg_k & SSL_kDHr)
2554 idx = SSL_PKEY_DH_RSA;
2555 else if (alg_k & SSL_kDHd)
2556 idx = SSL_PKEY_DH_DSA;
2558 skey = s->cert->pkeys[idx].privatekey;
2559 if ((skey == NULL) ||
2560 (skey->type != EVP_PKEY_DH) || (skey->pkey.dh == NULL)) {
2561 al = SSL_AD_HANDSHAKE_FAILURE;
2562 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2563 SSL_R_MISSING_RSA_CERTIFICATE);
2566 dh_srvr = skey->pkey.dh;
2567 } else if (s->s3->tmp.dh == NULL) {
2568 al = SSL_AD_HANDSHAKE_FAILURE;
2569 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2570 SSL_R_MISSING_TMP_DH_KEY);
2573 dh_srvr = s->s3->tmp.dh;
2575 if (PACKET_remaining(pkt) == 0L) {
2576 /* Get pubkey from cert */
2577 EVP_PKEY *clkey = X509_get_pubkey(s->session->peer);
2579 if (EVP_PKEY_cmp_parameters(clkey, skey) == 1)
2580 dh_clnt = EVP_PKEY_get1_DH(clkey);
2582 if (dh_clnt == NULL) {
2583 al = SSL_AD_HANDSHAKE_FAILURE;
2584 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2585 SSL_R_MISSING_TMP_DH_KEY);
2588 EVP_PKEY_free(clkey);
2589 pub = dh_clnt->pub_key;
2591 if (!PACKET_get_bytes(pkt, &data, i)) {
2592 /* We already checked we have enough data */
2593 al = SSL_AD_INTERNAL_ERROR;
2594 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2595 ERR_R_INTERNAL_ERROR);
2598 pub = BN_bin2bn(data, i, NULL);
2601 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_BN_LIB);
2605 i = DH_compute_key(shared, pub, dh_srvr);
2608 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_DH_LIB);
2613 DH_free(s->s3->tmp.dh);
2614 s->s3->tmp.dh = NULL;
2620 if (!ssl_generate_master_secret(s, shared, i, 0)) {
2621 al = SSL_AD_INTERNAL_ERROR;
2622 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2626 s->statem.no_cert_verify = 1;
2627 return MSG_PROCESS_CONTINUE_PROCESSING;
2632 #ifndef OPENSSL_NO_EC
2633 if (alg_k & (SSL_kECDHE | SSL_kECDHr | SSL_kECDHe | SSL_kECDHEPSK)) {
2636 const EC_GROUP *group;
2637 const BIGNUM *priv_key;
2638 unsigned char *shared;
2640 /* initialize structures for server's ECDH key pair */
2641 if ((srvr_ecdh = EC_KEY_new()) == NULL) {
2642 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2646 /* Let's get server private key and group information */
2647 if (alg_k & (SSL_kECDHr | SSL_kECDHe)) {
2648 /* use the certificate */
2649 tkey = s->cert->pkeys[SSL_PKEY_ECC].privatekey->pkey.ec;
2652 * use the ephermeral values we saved when generating the
2653 * ServerKeyExchange msg.
2655 tkey = s->s3->tmp.ecdh;
2658 group = EC_KEY_get0_group(tkey);
2659 priv_key = EC_KEY_get0_private_key(tkey);
2661 if (!EC_KEY_set_group(srvr_ecdh, group) ||
2662 !EC_KEY_set_private_key(srvr_ecdh, priv_key)) {
2663 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2667 /* Let's get client's public key */
2668 if ((clnt_ecpoint = EC_POINT_new(group)) == NULL) {
2669 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2673 if (PACKET_remaining(pkt) == 0L) {
2674 /* Client Publickey was in Client Certificate */
2676 if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2677 al = SSL_AD_HANDSHAKE_FAILURE;
2678 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2679 SSL_R_MISSING_TMP_ECDH_KEY);
2682 if (((clnt_pub_pkey = X509_get_pubkey(s->session->peer))
2683 == NULL) || (clnt_pub_pkey->type != EVP_PKEY_EC)) {
2685 * XXX: For now, we do not support client authentication
2686 * using ECDH certificates so this branch (n == 0L) of the
2687 * code is never executed. When that support is added, we
2688 * ought to ensure the key received in the certificate is
2689 * authorized for key agreement. ECDH_compute_key implicitly
2690 * checks that the two ECDH shares are for the same group.
2692 al = SSL_AD_HANDSHAKE_FAILURE;
2693 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2694 SSL_R_UNABLE_TO_DECODE_ECDH_CERTS);
2698 if (EC_POINT_copy(clnt_ecpoint,
2699 EC_KEY_get0_public_key(clnt_pub_pkey->
2701 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2704 s->statem.no_cert_verify = 1;
2707 * Get client's public key from encoded point in the
2708 * ClientKeyExchange message.
2710 if ((bn_ctx = BN_CTX_new()) == NULL) {
2711 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2712 ERR_R_MALLOC_FAILURE);
2716 /* Get encoded point length */
2717 if (!PACKET_get_1(pkt, &i)) {
2718 al = SSL_AD_DECODE_ERROR;
2719 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2720 SSL_R_LENGTH_MISMATCH);
2723 if (!PACKET_get_bytes(pkt, &data, i)
2724 || PACKET_remaining(pkt) != 0) {
2725 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2728 if (EC_POINT_oct2point(group, clnt_ecpoint, data, i, bn_ctx) == 0) {
2729 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2734 /* Compute the shared pre-master secret */
2735 field_size = EC_GROUP_get_degree(group);
2736 if (field_size <= 0) {
2737 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2740 shared = OPENSSL_malloc((field_size + 7) / 8);
2741 if (shared == NULL) {
2742 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2745 i = ECDH_compute_key(shared, (field_size + 7) / 8, clnt_ecpoint,
2748 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2749 OPENSSL_free(shared);
2753 EVP_PKEY_free(clnt_pub_pkey);
2754 EC_POINT_free(clnt_ecpoint);
2755 EC_KEY_free(srvr_ecdh);
2756 BN_CTX_free(bn_ctx);
2757 EC_KEY_free(s->s3->tmp.ecdh);
2758 s->s3->tmp.ecdh = NULL;
2760 if (!ssl_generate_master_secret(s, shared, i, 1)) {
2761 al = SSL_AD_INTERNAL_ERROR;
2762 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2765 return MSG_PROCESS_CONTINUE_PROCESSING;
2768 #ifndef OPENSSL_NO_SRP
2769 if (alg_k & SSL_kSRP) {
2770 if (!PACKET_get_net_2(pkt, &i)
2771 || !PACKET_get_bytes(pkt, &data, i)) {
2772 al = SSL_AD_DECODE_ERROR;
2773 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_BAD_SRP_A_LENGTH);
2776 if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
2777 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_BN_LIB);
2780 if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0
2781 || BN_is_zero(s->srp_ctx.A)) {
2782 al = SSL_AD_ILLEGAL_PARAMETER;
2783 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2784 SSL_R_BAD_SRP_PARAMETERS);
2787 OPENSSL_free(s->session->srp_username);
2788 s->session->srp_username = BUF_strdup(s->srp_ctx.login);
2789 if (s->session->srp_username == NULL) {
2790 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2794 if (!srp_generate_server_master_secret(s)) {
2795 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2799 #endif /* OPENSSL_NO_SRP */
2800 if (alg_k & SSL_kGOST) {
2801 EVP_PKEY_CTX *pkey_ctx;
2802 EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2803 unsigned char premaster_secret[32], *start;
2804 size_t outlen = 32, inlen;
2805 unsigned long alg_a;
2810 /* Get our certificate private key */
2811 alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2812 if (alg_a & SSL_aGOST01)
2813 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2815 pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
2816 EVP_PKEY_decrypt_init(pkey_ctx);
2818 * If client certificate is present and is of the same type, maybe
2819 * use it for key exchange. Don't mind errors from
2820 * EVP_PKEY_derive_set_peer, because it is completely valid to use a
2821 * client certificate for authorization only.
2823 client_pub_pkey = X509_get_pubkey(s->session->peer);
2824 if (client_pub_pkey) {
2825 if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2828 /* Decrypt session key */
2829 sess_key_len = PACKET_remaining(pkt);
2830 if (!PACKET_get_bytes(pkt, &data, sess_key_len)) {
2831 al = SSL_AD_INTERNAL_ERROR;
2832 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2835 if (ASN1_get_object ((const unsigned char **)&data, &Tlen, &Ttag,
2836 &Tclass, sess_key_len) != V_ASN1_CONSTRUCTED
2837 || Ttag != V_ASN1_SEQUENCE
2838 || Tclass != V_ASN1_UNIVERSAL) {
2839 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2840 SSL_R_DECRYPTION_FAILED);
2845 if (EVP_PKEY_decrypt
2846 (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
2847 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2848 SSL_R_DECRYPTION_FAILED);
2851 /* Generate master secret */
2852 if (!ssl_generate_master_secret(s, premaster_secret,
2853 sizeof(premaster_secret), 0)) {
2854 al = SSL_AD_INTERNAL_ERROR;
2855 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2858 /* Check if pubkey from client certificate was used */
2859 if (EVP_PKEY_CTX_ctrl
2860 (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2861 s->statem.no_cert_verify = 1;
2863 EVP_PKEY_free(client_pub_pkey);
2864 EVP_PKEY_CTX_free(pkey_ctx);
2865 return MSG_PROCESS_CONTINUE_PROCESSING;
2867 EVP_PKEY_free(client_pub_pkey);
2868 EVP_PKEY_CTX_free(pkey_ctx);
2871 al = SSL_AD_HANDSHAKE_FAILURE;
2872 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_UNKNOWN_CIPHER_TYPE);
2876 return MSG_PROCESS_CONTINUE_PROCESSING;
2878 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2879 #if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_EC) || defined(OPENSSL_NO_SRP)
2882 #ifndef OPENSSL_NO_EC
2883 EVP_PKEY_free(clnt_pub_pkey);
2884 EC_POINT_free(clnt_ecpoint);
2885 EC_KEY_free(srvr_ecdh);
2886 BN_CTX_free(bn_ctx);
2887 OPENSSL_free(rsa_decrypt);
2889 #ifndef OPENSSL_NO_PSK
2890 OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
2891 s->s3->tmp.psk = NULL;
2893 ossl_statem_set_error(s);
2894 return MSG_PROCESS_ERROR;
2897 WORK_STATE tls_post_process_client_key_exchange(SSL *s, WORK_STATE wst)
2899 #ifndef OPENSSL_NO_SCTP
2900 if (wst == WORK_MORE_A) {
2901 if (SSL_IS_DTLS(s)) {
2902 unsigned char sctpauthkey[64];
2903 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
2905 * Add new shared key for SCTP-Auth, will be ignored if no SCTP
2908 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
2909 sizeof(DTLS1_SCTP_AUTH_LABEL));
2911 if (SSL_export_keying_material(s, sctpauthkey,
2912 sizeof(sctpauthkey), labelbuffer,
2913 sizeof(labelbuffer), NULL, 0, 0) <= 0) {
2914 ossl_statem_set_error(s);
2918 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
2919 sizeof(sctpauthkey), sctpauthkey);
2924 if ((wst == WORK_MORE_B)
2926 && BIO_dgram_is_sctp(SSL_get_wbio(s))
2927 /* Are we renegotiating? */
2929 /* Are we going to skip the CertificateVerify? */
2930 && (s->session->peer == NULL || s->statem.no_cert_verify)
2931 && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
2932 s->s3->in_read_app_data = 2;
2933 s->rwstate = SSL_READING;
2934 BIO_clear_retry_flags(SSL_get_rbio(s));
2935 BIO_set_retry_read(SSL_get_rbio(s));
2936 statem_set_sctp_read_sock(s, 1);
2939 ossl_statem_set_sctp_read_sock(s, 0);
2943 if (s->statem.no_cert_verify) {
2944 /* No certificate verify so we no longer need the handshake_buffer */
2945 BIO_free(s->s3->handshake_buffer);
2946 return WORK_FINISHED_CONTINUE;
2947 } else if (SSL_USE_SIGALGS(s)) {
2948 if (!s->session->peer) {
2949 /* No peer certificate so we no longer need the handshake_buffer */
2950 BIO_free(s->s3->handshake_buffer);
2951 return WORK_FINISHED_CONTINUE;
2953 if (!s->s3->handshake_buffer) {
2954 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_KEY_EXCHANGE,
2955 ERR_R_INTERNAL_ERROR);
2956 ossl_statem_set_error(s);
2960 * For sigalgs freeze the handshake buffer. If we support
2961 * extms we've done this already so this is a no-op
2963 if (!ssl3_digest_cached_records(s, 1)) {
2964 ossl_statem_set_error(s);
2972 * We need to get hashes here so if there is a client cert,
2973 * it can be verified FIXME - digest processing for
2974 * CertificateVerify should be generalized. But it is next
2977 if (!ssl3_digest_cached_records(s, 0)) {
2978 ossl_statem_set_error(s);
2981 for (dgst_num = 0; dgst_num < SSL_MAX_DIGEST; dgst_num++) {
2982 if (s->s3->handshake_dgst[dgst_num]) {
2985 s->method->ssl3_enc->cert_verify_mac(s,
2994 EVP_MD_CTX_size(s->s3->handshake_dgst[dgst_num]);
2995 if (dgst_size < 0) {
2996 ossl_statem_set_error(s);
2999 offset += dgst_size;
3004 return WORK_FINISHED_CONTINUE;
3007 MSG_PROCESS_RETURN tls_process_cert_verify(SSL *s, PACKET *pkt)
3009 EVP_PKEY *pkey = NULL;
3010 unsigned char *sig, *data;
3011 int al, ret = MSG_PROCESS_ERROR;
3015 const EVP_MD *md = NULL;
3017 EVP_MD_CTX_init(&mctx);
3019 peer = s->session->peer;
3020 pkey = X509_get_pubkey(peer);
3021 type = X509_certificate_type(peer, pkey);
3023 if (!(type & EVP_PKT_SIGN)) {
3024 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY,
3025 SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
3026 al = SSL_AD_ILLEGAL_PARAMETER;
3030 /* Check for broken implementations of GOST ciphersuites */
3032 * If key is GOST and n is exactly 64, it is bare signature without
3035 if (PACKET_remaining(pkt) == 64 && pkey->type == NID_id_GostR3410_2001) {
3038 if (SSL_USE_SIGALGS(s)) {
3041 if (!PACKET_get_bytes(pkt, &sig, 2)) {
3042 al = SSL_AD_DECODE_ERROR;
3045 rv = tls12_check_peer_sigalg(&md, s, sig, pkey);
3047 al = SSL_AD_INTERNAL_ERROR;
3049 } else if (rv == 0) {
3050 al = SSL_AD_DECODE_ERROR;
3054 fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
3057 if (!PACKET_get_net_2(pkt, &len)) {
3058 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
3059 al = SSL_AD_DECODE_ERROR;
3063 j = EVP_PKEY_size(pkey);
3064 if (((int)len > j) || ((int)PACKET_remaining(pkt) > j)
3065 || (PACKET_remaining(pkt) == 0)) {
3066 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_WRONG_SIGNATURE_SIZE);
3067 al = SSL_AD_DECODE_ERROR;
3070 if (!PACKET_get_bytes(pkt, &data, len)) {
3071 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
3072 al = SSL_AD_DECODE_ERROR;
3076 if (SSL_USE_SIGALGS(s)) {
3079 hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3080 if (hdatalen <= 0) {
3081 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
3082 al = SSL_AD_INTERNAL_ERROR;
3086 fprintf(stderr, "Using TLS 1.2 with client verify alg %s\n",
3089 if (!EVP_VerifyInit_ex(&mctx, md, NULL)
3090 || !EVP_VerifyUpdate(&mctx, hdata, hdatalen)) {
3091 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
3092 al = SSL_AD_INTERNAL_ERROR;
3096 if (EVP_VerifyFinal(&mctx, data, len, pkey) <= 0) {
3097 al = SSL_AD_DECRYPT_ERROR;
3098 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_SIGNATURE);
3102 #ifndef OPENSSL_NO_RSA
3103 if (pkey->type == EVP_PKEY_RSA) {
3104 i = RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
3105 MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH, data, len,
3108 al = SSL_AD_DECRYPT_ERROR;
3109 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_RSA_DECRYPT);
3113 al = SSL_AD_DECRYPT_ERROR;
3114 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_RSA_SIGNATURE);
3119 #ifndef OPENSSL_NO_DSA
3120 if (pkey->type == EVP_PKEY_DSA) {
3121 j = DSA_verify(pkey->save_type,
3122 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3123 SHA_DIGEST_LENGTH, data, len, pkey->pkey.dsa);
3126 al = SSL_AD_DECRYPT_ERROR;
3127 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_DSA_SIGNATURE);
3132 #ifndef OPENSSL_NO_EC
3133 if (pkey->type == EVP_PKEY_EC) {
3134 j = ECDSA_verify(pkey->save_type,
3135 &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3136 SHA_DIGEST_LENGTH, data, len, pkey->pkey.ec);
3139 al = SSL_AD_DECRYPT_ERROR;
3140 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_ECDSA_SIGNATURE);
3145 if (pkey->type == NID_id_GostR3410_2001) {
3146 unsigned char signature[64];
3148 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new(pkey, NULL);
3149 EVP_PKEY_verify_init(pctx);
3151 fprintf(stderr, "GOST signature length is %d", len);
3153 for (idx = 0; idx < 64; idx++) {
3154 signature[63 - idx] = data[idx];
3156 j = EVP_PKEY_verify(pctx, signature, 64, s->s3->tmp.cert_verify_md,
3158 EVP_PKEY_CTX_free(pctx);
3160 al = SSL_AD_DECRYPT_ERROR;
3161 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_ECDSA_SIGNATURE);
3165 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
3166 al = SSL_AD_UNSUPPORTED_CERTIFICATE;
3170 ret = MSG_PROCESS_CONTINUE_PROCESSING;
3173 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3174 ossl_statem_set_error(s);
3176 BIO_free(s->s3->handshake_buffer);
3177 s->s3->handshake_buffer = NULL;
3178 EVP_MD_CTX_cleanup(&mctx);
3179 EVP_PKEY_free(pkey);
3183 MSG_PROCESS_RETURN tls_process_client_certificate(SSL *s, PACKET *pkt)
3185 int i, al = SSL_AD_INTERNAL_ERROR, ret = MSG_PROCESS_ERROR;
3187 unsigned long l, llen;
3188 const unsigned char *certstart;
3189 unsigned char *certbytes;
3190 STACK_OF(X509) *sk = NULL;
3193 if ((sk = sk_X509_new_null()) == NULL) {
3194 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3198 if (!PACKET_get_net_3(pkt, &llen)
3199 || !PACKET_get_sub_packet(pkt, &spkt, llen)
3200 || PACKET_remaining(pkt) != 0) {
3201 al = SSL_AD_DECODE_ERROR;
3202 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
3206 while (PACKET_remaining(&spkt) > 0) {
3207 if (!PACKET_get_net_3(&spkt, &l)
3208 || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3209 al = SSL_AD_DECODE_ERROR;
3210 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3211 SSL_R_CERT_LENGTH_MISMATCH);
3215 certstart = certbytes;
3216 x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
3218 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
3221 if (certbytes != (certstart + l)) {
3222 al = SSL_AD_DECODE_ERROR;
3223 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3224 SSL_R_CERT_LENGTH_MISMATCH);
3227 if (!sk_X509_push(sk, x)) {
3228 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3234 if (sk_X509_num(sk) <= 0) {
3235 /* TLS does not mind 0 certs returned */
3236 if (s->version == SSL3_VERSION) {
3237 al = SSL_AD_HANDSHAKE_FAILURE;
3238 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3239 SSL_R_NO_CERTIFICATES_RETURNED);
3242 /* Fail for TLS only if we required a certificate */
3243 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3244 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3245 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3246 SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3247 al = SSL_AD_HANDSHAKE_FAILURE;
3250 /* No client certificate so digest cached records */
3251 if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
3256 i = ssl_verify_cert_chain(s, sk);
3258 al = ssl_verify_alarm_type(s->verify_result);
3259 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3260 SSL_R_CERTIFICATE_VERIFY_FAILED);
3264 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, i);
3265 al = SSL_AD_HANDSHAKE_FAILURE;
3268 pkey = X509_get_pubkey(sk_X509_value(sk, 0));
3270 al = SSL3_AD_HANDSHAKE_FAILURE;
3271 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3272 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
3275 EVP_PKEY_free(pkey);
3278 X509_free(s->session->peer);
3279 s->session->peer = sk_X509_shift(sk);
3280 s->session->verify_result = s->verify_result;
3282 sk_X509_pop_free(s->session->peer_chain, X509_free);
3283 s->session->peer_chain = sk;
3285 * Inconsistency alert: cert_chain does *not* include the peer's own
3286 * certificate, while we do include it in s3_clnt.c
3289 ret = MSG_PROCESS_CONTINUE_READING;
3293 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3294 ossl_statem_set_error(s);
3297 sk_X509_pop_free(sk, X509_free);
3301 int tls_construct_server_certificate(SSL *s)
3305 cpk = ssl_get_server_send_pkey(s);
3307 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3308 ossl_statem_set_error(s);
3312 if (!ssl3_output_cert_chain(s, cpk)) {
3313 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3314 ossl_statem_set_error(s);
3321 int tls_construct_new_session_ticket(SSL *s)
3323 unsigned char *senc = NULL;
3326 unsigned char *p, *macstart;
3327 const unsigned char *const_p;
3328 int len, slen_full, slen;
3331 SSL_CTX *tctx = s->initial_ctx;
3332 unsigned char iv[EVP_MAX_IV_LENGTH];
3333 unsigned char key_name[16];
3335 /* get session encoding length */
3336 slen_full = i2d_SSL_SESSION(s->session, NULL);
3338 * Some length values are 16 bits, so forget it if session is too
3341 if (slen_full == 0 || slen_full > 0xFF00) {
3342 ossl_statem_set_error(s);
3345 senc = OPENSSL_malloc(slen_full);
3347 ossl_statem_set_error(s);
3351 EVP_CIPHER_CTX_init(&ctx);
3352 HMAC_CTX_init(&hctx);
3355 if (!i2d_SSL_SESSION(s->session, &p))
3359 * create a fresh copy (not shared with other threads) to clean up
3362 sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3365 sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3367 slen = i2d_SSL_SESSION(sess, NULL);
3368 if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
3369 SSL_SESSION_free(sess);
3373 if (!i2d_SSL_SESSION(sess, &p)) {
3374 SSL_SESSION_free(sess);
3377 SSL_SESSION_free(sess);
3380 * Grow buffer if need be: the length calculation is as
3381 * follows handshake_header_length +
3382 * 4 (ticket lifetime hint) + 2 (ticket length) +
3383 * 16 (key name) + max_iv_len (iv length) +
3384 * session_length + max_enc_block_size (max encrypted session
3385 * length) + max_md_size (HMAC).
3387 if (!BUF_MEM_grow(s->init_buf,
3388 SSL_HM_HEADER_LENGTH(s) + 22 + EVP_MAX_IV_LENGTH +
3389 EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE + slen))
3392 p = ssl_handshake_start(s);
3394 * Initialize HMAC and cipher contexts. If callback present it does
3395 * all the work otherwise use generated values from parent ctx.
3397 if (tctx->tlsext_ticket_key_cb) {
3398 if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
3402 if (RAND_bytes(iv, 16) <= 0)
3404 if (!EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
3405 tctx->tlsext_tick_aes_key, iv))
3407 if (!HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
3408 EVP_sha256(), NULL))
3410 memcpy(key_name, tctx->tlsext_tick_key_name, 16);