2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
10 /* ====================================================================
11 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
13 * Portions of the attached software ("Contribution") are developed by
14 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
16 * The Contribution is licensed pursuant to the OpenSSL open source
17 * license provided above.
19 * ECC cipher suite support in OpenSSL originally written by
20 * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories.
23 /* ====================================================================
24 * Copyright 2005 Nokia. All rights reserved.
26 * The portions of the attached software ("Contribution") is developed by
27 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
30 * The Contribution, originally written by Mika Kousa and Pasi Eronen of
31 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
32 * support (see RFC 4279) to OpenSSL.
34 * No patent licenses or other rights except those expressly stated in
35 * the OpenSSL open source license shall be deemed granted or received
36 * expressly, by implication, estoppel, or otherwise.
38 * No assurances are provided by Nokia that the Contribution does not
39 * infringe the patent or other intellectual property rights of any third
40 * party or that the license provides you with all the necessary rights
41 * to make use of the Contribution.
43 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
44 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
45 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
46 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
51 #include "../ssl_locl.h"
52 #include "statem_locl.h"
53 #include "internal/constant_time_locl.h"
54 #include <openssl/buffer.h>
55 #include <openssl/rand.h>
56 #include <openssl/objects.h>
57 #include <openssl/evp.h>
58 #include <openssl/hmac.h>
59 #include <openssl/x509.h>
60 #include <openssl/dh.h>
61 #include <openssl/bn.h>
62 #include <openssl/md5.h>
64 static int tls_construct_encrypted_extensions(SSL *s, WPACKET *pkt);
65 static int tls_construct_hello_retry_request(SSL *s, WPACKET *pkt);
68 * ossl_statem_server13_read_transition() encapsulates the logic for the allowed
69 * handshake state transitions when a TLSv1.3 server is reading messages from
70 * the client. The message type that the client has sent is provided in |mt|.
71 * The current state is in |s->statem.hand_state|.
73 * Return values are 1 for success (transition allowed) and 0 on error
74 * (transition not allowed)
76 static int ossl_statem_server13_read_transition(SSL *s, int mt)
78 OSSL_STATEM *st = &s->statem;
81 * Note: There is no case for TLS_ST_BEFORE because at that stage we have
82 * not negotiated TLSv1.3 yet, so that case is handled by
83 * ossl_statem_server_read_transition()
85 switch (st->hand_state) {
89 case TLS_ST_SW_HELLO_RETRY_REQUEST:
90 if (mt == SSL3_MT_CLIENT_HELLO) {
91 st->hand_state = TLS_ST_SR_CLNT_HELLO;
96 case TLS_ST_SW_FINISHED:
97 if (s->s3->tmp.cert_request) {
98 if (mt == SSL3_MT_CERTIFICATE) {
99 st->hand_state = TLS_ST_SR_CERT;
103 if (mt == SSL3_MT_FINISHED) {
104 st->hand_state = TLS_ST_SR_FINISHED;
111 if (s->session->peer == NULL) {
112 if (mt == SSL3_MT_FINISHED) {
113 st->hand_state = TLS_ST_SR_FINISHED;
117 if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
118 st->hand_state = TLS_ST_SR_CERT_VRFY;
124 case TLS_ST_SR_CERT_VRFY:
125 if (mt == SSL3_MT_FINISHED) {
126 st->hand_state = TLS_ST_SR_FINISHED;
132 if (mt == SSL3_MT_KEY_UPDATE) {
133 st->hand_state = TLS_ST_SR_KEY_UPDATE;
139 /* No valid transition found */
140 ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_UNEXPECTED_MESSAGE);
141 SSLerr(SSL_F_OSSL_STATEM_SERVER13_READ_TRANSITION,
142 SSL_R_UNEXPECTED_MESSAGE);
147 * ossl_statem_server_read_transition() encapsulates the logic for the allowed
148 * handshake state transitions when the server is reading messages from the
149 * client. The message type that the client has sent is provided in |mt|. The
150 * current state is in |s->statem.hand_state|.
152 * Return values are 1 for success (transition allowed) and 0 on error
153 * (transition not allowed)
155 int ossl_statem_server_read_transition(SSL *s, int mt)
157 OSSL_STATEM *st = &s->statem;
159 if (SSL_IS_TLS13(s)) {
160 if (!ossl_statem_server13_read_transition(s, mt))
165 switch (st->hand_state) {
171 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
172 if (mt == SSL3_MT_CLIENT_HELLO) {
173 st->hand_state = TLS_ST_SR_CLNT_HELLO;
178 case TLS_ST_SW_SRVR_DONE:
180 * If we get a CKE message after a ServerDone then either
181 * 1) We didn't request a Certificate
183 * 2) If we did request one then
184 * a) We allow no Certificate to be returned
186 * b) We are running SSL3 (in TLS1.0+ the client must return a 0
187 * list if we requested a certificate)
189 if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
190 if (s->s3->tmp.cert_request) {
191 if (s->version == SSL3_VERSION) {
192 if ((s->verify_mode & SSL_VERIFY_PEER)
193 && (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
195 * This isn't an unexpected message as such - we're just
196 * not going to accept it because we require a client
199 ssl3_send_alert(s, SSL3_AL_FATAL,
200 SSL3_AD_HANDSHAKE_FAILURE);
201 SSLerr(SSL_F_OSSL_STATEM_SERVER_READ_TRANSITION,
202 SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
205 st->hand_state = TLS_ST_SR_KEY_EXCH;
209 st->hand_state = TLS_ST_SR_KEY_EXCH;
212 } else if (s->s3->tmp.cert_request) {
213 if (mt == SSL3_MT_CERTIFICATE) {
214 st->hand_state = TLS_ST_SR_CERT;
221 if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
222 st->hand_state = TLS_ST_SR_KEY_EXCH;
227 case TLS_ST_SR_KEY_EXCH:
229 * We should only process a CertificateVerify message if we have
230 * received a Certificate from the client. If so then |s->session->peer|
231 * will be non NULL. In some instances a CertificateVerify message is
232 * not required even if the peer has sent a Certificate (e.g. such as in
233 * the case of static DH). In that case |st->no_cert_verify| should be
236 if (s->session->peer == NULL || st->no_cert_verify) {
237 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
239 * For the ECDH ciphersuites when the client sends its ECDH
240 * pub key in a certificate, the CertificateVerify message is
241 * not sent. Also for GOST ciphersuites when the client uses
242 * its key from the certificate for key exchange.
244 st->hand_state = TLS_ST_SR_CHANGE;
248 if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
249 st->hand_state = TLS_ST_SR_CERT_VRFY;
255 case TLS_ST_SR_CERT_VRFY:
256 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
257 st->hand_state = TLS_ST_SR_CHANGE;
262 case TLS_ST_SR_CHANGE:
263 #ifndef OPENSSL_NO_NEXTPROTONEG
264 if (s->s3->npn_seen) {
265 if (mt == SSL3_MT_NEXT_PROTO) {
266 st->hand_state = TLS_ST_SR_NEXT_PROTO;
271 if (mt == SSL3_MT_FINISHED) {
272 st->hand_state = TLS_ST_SR_FINISHED;
275 #ifndef OPENSSL_NO_NEXTPROTONEG
280 #ifndef OPENSSL_NO_NEXTPROTONEG
281 case TLS_ST_SR_NEXT_PROTO:
282 if (mt == SSL3_MT_FINISHED) {
283 st->hand_state = TLS_ST_SR_FINISHED;
289 case TLS_ST_SW_FINISHED:
290 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
291 st->hand_state = TLS_ST_SR_CHANGE;
298 /* No valid transition found */
299 ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_UNEXPECTED_MESSAGE);
300 SSLerr(SSL_F_OSSL_STATEM_SERVER_READ_TRANSITION, SSL_R_UNEXPECTED_MESSAGE);
305 * Should we send a ServerKeyExchange message?
307 * Valid return values are:
311 static int send_server_key_exchange(SSL *s)
313 unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
316 * only send a ServerKeyExchange if DH or fortezza but we have a
317 * sign only certificate PSK: may send PSK identity hints For
318 * ECC ciphersuites, we send a serverKeyExchange message only if
319 * the cipher suite is either ECDH-anon or ECDHE. In other cases,
320 * the server certificate contains the server's public key for
323 if (alg_k & (SSL_kDHE | SSL_kECDHE)
325 * PSK: send ServerKeyExchange if PSK identity hint if
328 #ifndef OPENSSL_NO_PSK
329 /* Only send SKE if we have identity hint for plain PSK */
330 || ((alg_k & (SSL_kPSK | SSL_kRSAPSK))
331 && s->cert->psk_identity_hint)
332 /* For other PSK always send SKE */
333 || (alg_k & (SSL_PSK & (SSL_kDHEPSK | SSL_kECDHEPSK)))
335 #ifndef OPENSSL_NO_SRP
336 /* SRP: send ServerKeyExchange */
337 || (alg_k & SSL_kSRP)
347 * Should we send a CertificateRequest message?
349 * Valid return values are:
353 static int send_certificate_request(SSL *s)
356 /* don't request cert unless asked for it: */
357 s->verify_mode & SSL_VERIFY_PEER
359 * if SSL_VERIFY_CLIENT_ONCE is set, don't request cert
360 * during re-negotiation:
362 && (s->s3->tmp.finish_md_len == 0 ||
363 !(s->verify_mode & SSL_VERIFY_CLIENT_ONCE))
365 * never request cert in anonymous ciphersuites (see
366 * section "Certificate request" in SSL 3 drafts and in
369 && (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
371 * ... except when the application insists on
372 * verification (against the specs, but statem_clnt.c accepts
375 || (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
376 /* don't request certificate for SRP auth */
377 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aSRP)
379 * With normal PSK Certificates and Certificate Requests
382 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aPSK)) {
390 * ossl_statem_server13_write_transition() works out what handshake state to
391 * move to next when a TLSv1.3 server is writing messages to be sent to the
394 static WRITE_TRAN ossl_statem_server13_write_transition(SSL *s)
396 OSSL_STATEM *st = &s->statem;
399 * No case for TLS_ST_BEFORE, because at that stage we have not negotiated
400 * TLSv1.3 yet, so that is handled by ossl_statem_server_write_transition()
403 switch (st->hand_state) {
405 /* Shouldn't happen */
406 return WRITE_TRAN_ERROR;
409 if (s->early_data_state == SSL_EARLY_DATA_FINISHED_READING) {
410 st->hand_state = TLS_ST_SW_FINISHED;
411 return WRITE_TRAN_FINISHED;
413 if (s->key_update != SSL_KEY_UPDATE_NONE) {
414 st->hand_state = TLS_ST_SW_KEY_UPDATE;
415 return WRITE_TRAN_CONTINUE;
417 /* Try to read from the client instead */
418 return WRITE_TRAN_FINISHED;
420 case TLS_ST_SR_CLNT_HELLO:
421 if (s->hello_retry_request)
422 st->hand_state = TLS_ST_SW_HELLO_RETRY_REQUEST;
424 st->hand_state = TLS_ST_SW_SRVR_HELLO;
425 return WRITE_TRAN_CONTINUE;
427 case TLS_ST_SW_HELLO_RETRY_REQUEST:
428 return WRITE_TRAN_FINISHED;
430 case TLS_ST_SW_SRVR_HELLO:
431 st->hand_state = TLS_ST_SW_ENCRYPTED_EXTENSIONS;
432 return WRITE_TRAN_CONTINUE;
434 case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
436 st->hand_state = TLS_ST_SW_FINISHED;
437 else if (send_certificate_request(s))
438 st->hand_state = TLS_ST_SW_CERT_REQ;
440 st->hand_state = TLS_ST_SW_CERT;
442 return WRITE_TRAN_CONTINUE;
444 case TLS_ST_SW_CERT_REQ:
445 st->hand_state = TLS_ST_SW_CERT;
446 return WRITE_TRAN_CONTINUE;
449 st->hand_state = TLS_ST_SW_CERT_VRFY;
450 return WRITE_TRAN_CONTINUE;
452 case TLS_ST_SW_CERT_VRFY:
453 st->hand_state = TLS_ST_SW_FINISHED;
454 return WRITE_TRAN_CONTINUE;
456 case TLS_ST_SW_FINISHED:
457 if (s->early_data_state == SSL_EARLY_DATA_ACCEPTING) {
458 st->hand_state = TLS_ST_OK;
459 ossl_statem_set_in_init(s, 0);
460 return WRITE_TRAN_CONTINUE;
462 return WRITE_TRAN_FINISHED;
464 case TLS_ST_SR_FINISHED:
466 * Technically we have finished the handshake at this point, but we're
467 * going to remain "in_init" for now and write out the session ticket
469 * TODO(TLS1.3): Perhaps we need to be able to control this behaviour
470 * and give the application the opportunity to delay sending the
473 st->hand_state = TLS_ST_SW_SESSION_TICKET;
474 return WRITE_TRAN_CONTINUE;
476 case TLS_ST_SR_KEY_UPDATE:
477 if (s->key_update != SSL_KEY_UPDATE_NONE) {
478 st->hand_state = TLS_ST_SW_KEY_UPDATE;
479 return WRITE_TRAN_CONTINUE;
483 case TLS_ST_SW_KEY_UPDATE:
484 case TLS_ST_SW_SESSION_TICKET:
485 st->hand_state = TLS_ST_OK;
486 ossl_statem_set_in_init(s, 0);
487 return WRITE_TRAN_CONTINUE;
492 * ossl_statem_server_write_transition() works out what handshake state to move
493 * to next when the server is writing messages to be sent to the client.
495 WRITE_TRAN ossl_statem_server_write_transition(SSL *s)
497 OSSL_STATEM *st = &s->statem;
500 * Note that before the ClientHello we don't know what version we are going
501 * to negotiate yet, so we don't take this branch until later
505 return ossl_statem_server13_write_transition(s);
507 switch (st->hand_state) {
509 /* Shouldn't happen */
510 return WRITE_TRAN_ERROR;
513 if (st->request_state == TLS_ST_SW_HELLO_REQ) {
514 /* We must be trying to renegotiate */
515 st->hand_state = TLS_ST_SW_HELLO_REQ;
516 st->request_state = TLS_ST_BEFORE;
517 return WRITE_TRAN_CONTINUE;
519 /* Must be an incoming ClientHello */
520 if (!tls_setup_handshake(s)) {
521 ossl_statem_set_error(s);
522 return WRITE_TRAN_ERROR;
527 /* Just go straight to trying to read from the client */
528 return WRITE_TRAN_FINISHED;
530 case TLS_ST_SW_HELLO_REQ:
531 st->hand_state = TLS_ST_OK;
532 ossl_statem_set_in_init(s, 0);
533 return WRITE_TRAN_CONTINUE;
535 case TLS_ST_SR_CLNT_HELLO:
536 if (SSL_IS_DTLS(s) && !s->d1->cookie_verified
537 && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
538 st->hand_state = DTLS_ST_SW_HELLO_VERIFY_REQUEST;
540 st->hand_state = TLS_ST_SW_SRVR_HELLO;
541 return WRITE_TRAN_CONTINUE;
543 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
544 return WRITE_TRAN_FINISHED;
546 case TLS_ST_SW_SRVR_HELLO:
548 if (s->ext.ticket_expected)
549 st->hand_state = TLS_ST_SW_SESSION_TICKET;
551 st->hand_state = TLS_ST_SW_CHANGE;
553 /* Check if it is anon DH or anon ECDH, */
554 /* normal PSK or SRP */
555 if (!(s->s3->tmp.new_cipher->algorithm_auth &
556 (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
557 st->hand_state = TLS_ST_SW_CERT;
558 } else if (send_server_key_exchange(s)) {
559 st->hand_state = TLS_ST_SW_KEY_EXCH;
560 } else if (send_certificate_request(s)) {
561 st->hand_state = TLS_ST_SW_CERT_REQ;
563 st->hand_state = TLS_ST_SW_SRVR_DONE;
566 return WRITE_TRAN_CONTINUE;
569 if (s->ext.status_expected) {
570 st->hand_state = TLS_ST_SW_CERT_STATUS;
571 return WRITE_TRAN_CONTINUE;
575 case TLS_ST_SW_CERT_STATUS:
576 if (send_server_key_exchange(s)) {
577 st->hand_state = TLS_ST_SW_KEY_EXCH;
578 return WRITE_TRAN_CONTINUE;
582 case TLS_ST_SW_KEY_EXCH:
583 if (send_certificate_request(s)) {
584 st->hand_state = TLS_ST_SW_CERT_REQ;
585 return WRITE_TRAN_CONTINUE;
589 case TLS_ST_SW_CERT_REQ:
590 st->hand_state = TLS_ST_SW_SRVR_DONE;
591 return WRITE_TRAN_CONTINUE;
593 case TLS_ST_SW_SRVR_DONE:
594 return WRITE_TRAN_FINISHED;
596 case TLS_ST_SR_FINISHED:
598 st->hand_state = TLS_ST_OK;
599 ossl_statem_set_in_init(s, 0);
600 return WRITE_TRAN_CONTINUE;
601 } else if (s->ext.ticket_expected) {
602 st->hand_state = TLS_ST_SW_SESSION_TICKET;
604 st->hand_state = TLS_ST_SW_CHANGE;
606 return WRITE_TRAN_CONTINUE;
608 case TLS_ST_SW_SESSION_TICKET:
609 st->hand_state = TLS_ST_SW_CHANGE;
610 return WRITE_TRAN_CONTINUE;
612 case TLS_ST_SW_CHANGE:
613 st->hand_state = TLS_ST_SW_FINISHED;
614 return WRITE_TRAN_CONTINUE;
616 case TLS_ST_SW_FINISHED:
618 return WRITE_TRAN_FINISHED;
620 st->hand_state = TLS_ST_OK;
621 ossl_statem_set_in_init(s, 0);
622 return WRITE_TRAN_CONTINUE;
627 * Perform any pre work that needs to be done prior to sending a message from
628 * the server to the client.
630 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst)
632 OSSL_STATEM *st = &s->statem;
634 switch (st->hand_state) {
636 /* No pre work to be done */
639 case TLS_ST_SW_HELLO_REQ:
642 dtls1_clear_sent_buffer(s);
645 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
647 if (SSL_IS_DTLS(s)) {
648 dtls1_clear_sent_buffer(s);
649 /* We don't buffer this message so don't use the timer */
654 case TLS_ST_SW_SRVR_HELLO:
655 if (SSL_IS_DTLS(s)) {
657 * Messages we write from now on should be bufferred and
658 * retransmitted if necessary, so we need to use the timer now
664 case TLS_ST_SW_SRVR_DONE:
665 #ifndef OPENSSL_NO_SCTP
666 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s)))
667 return dtls_wait_for_dry(s);
669 return WORK_FINISHED_CONTINUE;
671 case TLS_ST_SW_SESSION_TICKET:
672 if (SSL_IS_TLS13(s)) {
674 * Actually this is the end of the handshake, but we're going
675 * straight into writing the session ticket out. So we finish off
676 * the handshake, but keep the various buffers active.
678 return tls_finish_handshake(s, wst, 0);
679 } if (SSL_IS_DTLS(s)) {
681 * We're into the last flight. We don't retransmit the last flight
682 * unless we need to, so we don't use the timer
688 case TLS_ST_SW_CHANGE:
689 s->session->cipher = s->s3->tmp.new_cipher;
690 if (!s->method->ssl3_enc->setup_key_block(s)) {
691 ossl_statem_set_error(s);
694 if (SSL_IS_DTLS(s)) {
696 * We're into the last flight. We don't retransmit the last flight
697 * unless we need to, so we don't use the timer. This might have
698 * already been set to 0 if we sent a NewSessionTicket message,
699 * but we'll set it again here in case we didn't.
703 return WORK_FINISHED_CONTINUE;
706 return tls_finish_handshake(s, wst, 1);
709 return WORK_FINISHED_CONTINUE;
713 * Perform any work that needs to be done after sending a message from the
714 * server to the client.
716 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst)
718 OSSL_STATEM *st = &s->statem;
722 switch (st->hand_state) {
724 /* No post work to be done */
727 case TLS_ST_SW_HELLO_RETRY_REQUEST:
728 if (statem_flush(s) != 1)
732 case TLS_ST_SW_HELLO_REQ:
733 if (statem_flush(s) != 1)
735 if (!ssl3_init_finished_mac(s)) {
736 ossl_statem_set_error(s);
741 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
742 if (statem_flush(s) != 1)
744 /* HelloVerifyRequest resets Finished MAC */
745 if (s->version != DTLS1_BAD_VER && !ssl3_init_finished_mac(s)) {
746 ossl_statem_set_error(s);
750 * The next message should be another ClientHello which we need to
751 * treat like it was the first packet
756 case TLS_ST_SW_SRVR_HELLO:
757 #ifndef OPENSSL_NO_SCTP
758 if (SSL_IS_DTLS(s) && s->hit) {
759 unsigned char sctpauthkey[64];
760 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
763 * Add new shared key for SCTP-Auth, will be ignored if no
766 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
767 sizeof(DTLS1_SCTP_AUTH_LABEL));
769 if (SSL_export_keying_material(s, sctpauthkey,
770 sizeof(sctpauthkey), labelbuffer,
771 sizeof(labelbuffer), NULL, 0,
773 ossl_statem_set_error(s);
777 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
778 sizeof(sctpauthkey), sctpauthkey);
782 * TODO(TLS1.3): This actually causes a problem. We don't yet know
783 * whether the next record we are going to receive is an unencrypted
784 * alert, or an encrypted handshake message. We're going to need
785 * something clever in the record layer for this.
787 if (SSL_IS_TLS13(s)) {
788 if (!s->method->ssl3_enc->setup_key_block(s)
789 || !s->method->ssl3_enc->change_cipher_state(s,
790 SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_WRITE))
793 if (s->ext.early_data != SSL_EARLY_DATA_ACCEPTED
794 && !s->method->ssl3_enc->change_cipher_state(s,
795 SSL3_CC_HANDSHAKE |SSL3_CHANGE_CIPHER_SERVER_READ))
800 case TLS_ST_SW_CHANGE:
801 #ifndef OPENSSL_NO_SCTP
802 if (SSL_IS_DTLS(s) && !s->hit) {
804 * Change to new shared key of SCTP-Auth, will be ignored if
807 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
811 if (!s->method->ssl3_enc->change_cipher_state(s,
812 SSL3_CHANGE_CIPHER_SERVER_WRITE))
814 ossl_statem_set_error(s);
819 dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
822 case TLS_ST_SW_SRVR_DONE:
823 if (statem_flush(s) != 1)
827 case TLS_ST_SW_FINISHED:
828 if (statem_flush(s) != 1)
830 #ifndef OPENSSL_NO_SCTP
831 if (SSL_IS_DTLS(s) && s->hit) {
833 * Change to new shared key of SCTP-Auth, will be ignored if
836 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
840 if (SSL_IS_TLS13(s)) {
841 if (!s->method->ssl3_enc->generate_master_secret(s,
842 s->master_secret, s->handshake_secret, 0,
843 &s->session->master_key_length)
844 || !s->method->ssl3_enc->change_cipher_state(s,
845 SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_WRITE))
850 case TLS_ST_SW_KEY_UPDATE:
851 if (statem_flush(s) != 1)
853 if (!tls13_update_key(s, 1))
857 case TLS_ST_SW_SESSION_TICKET:
858 if (SSL_IS_TLS13(s) && statem_flush(s) != 1)
863 return WORK_FINISHED_CONTINUE;
867 * Get the message construction function and message type for sending from the
870 * Valid return values are:
874 int ossl_statem_server_construct_message(SSL *s, WPACKET *pkt,
875 confunc_f *confunc, int *mt)
877 OSSL_STATEM *st = &s->statem;
879 switch (st->hand_state) {
881 /* Shouldn't happen */
884 case TLS_ST_SW_CHANGE:
886 *confunc = dtls_construct_change_cipher_spec;
888 *confunc = tls_construct_change_cipher_spec;
889 *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
892 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
893 *confunc = dtls_construct_hello_verify_request;
894 *mt = DTLS1_MT_HELLO_VERIFY_REQUEST;
897 case TLS_ST_SW_HELLO_REQ:
898 /* No construction function needed */
900 *mt = SSL3_MT_HELLO_REQUEST;
903 case TLS_ST_SW_SRVR_HELLO:
904 *confunc = tls_construct_server_hello;
905 *mt = SSL3_MT_SERVER_HELLO;
909 *confunc = tls_construct_server_certificate;
910 *mt = SSL3_MT_CERTIFICATE;
913 case TLS_ST_SW_CERT_VRFY:
914 *confunc = tls_construct_cert_verify;
915 *mt = SSL3_MT_CERTIFICATE_VERIFY;
919 case TLS_ST_SW_KEY_EXCH:
920 *confunc = tls_construct_server_key_exchange;
921 *mt = SSL3_MT_SERVER_KEY_EXCHANGE;
924 case TLS_ST_SW_CERT_REQ:
925 *confunc = tls_construct_certificate_request;
926 *mt = SSL3_MT_CERTIFICATE_REQUEST;
929 case TLS_ST_SW_SRVR_DONE:
930 *confunc = tls_construct_server_done;
931 *mt = SSL3_MT_SERVER_DONE;
934 case TLS_ST_SW_SESSION_TICKET:
935 *confunc = tls_construct_new_session_ticket;
936 *mt = SSL3_MT_NEWSESSION_TICKET;
939 case TLS_ST_SW_CERT_STATUS:
940 *confunc = tls_construct_cert_status;
941 *mt = SSL3_MT_CERTIFICATE_STATUS;
944 case TLS_ST_SW_FINISHED:
945 *confunc = tls_construct_finished;
946 *mt = SSL3_MT_FINISHED;
949 case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
950 *confunc = tls_construct_encrypted_extensions;
951 *mt = SSL3_MT_ENCRYPTED_EXTENSIONS;
954 case TLS_ST_SW_HELLO_RETRY_REQUEST:
955 *confunc = tls_construct_hello_retry_request;
956 *mt = SSL3_MT_HELLO_RETRY_REQUEST;
959 case TLS_ST_SW_KEY_UPDATE:
960 *confunc = tls_construct_key_update;
961 *mt = SSL3_MT_KEY_UPDATE;
969 * Maximum size (excluding the Handshake header) of a ClientHello message,
970 * calculated as follows:
972 * 2 + # client_version
973 * 32 + # only valid length for random
974 * 1 + # length of session_id
975 * 32 + # maximum size for session_id
976 * 2 + # length of cipher suites
977 * 2^16-2 + # maximum length of cipher suites array
978 * 1 + # length of compression_methods
979 * 2^8-1 + # maximum length of compression methods
980 * 2 + # length of extensions
981 * 2^16-1 # maximum length of extensions
983 #define CLIENT_HELLO_MAX_LENGTH 131396
985 #define CLIENT_KEY_EXCH_MAX_LENGTH 2048
986 #define NEXT_PROTO_MAX_LENGTH 514
989 * Returns the maximum allowed length for the current message that we are
990 * reading. Excludes the message header.
992 size_t ossl_statem_server_max_message_size(SSL *s)
994 OSSL_STATEM *st = &s->statem;
996 switch (st->hand_state) {
998 /* Shouldn't happen */
1001 case TLS_ST_SR_CLNT_HELLO:
1002 return CLIENT_HELLO_MAX_LENGTH;
1004 case TLS_ST_SR_CERT:
1005 return s->max_cert_list;
1007 case TLS_ST_SR_KEY_EXCH:
1008 return CLIENT_KEY_EXCH_MAX_LENGTH;
1010 case TLS_ST_SR_CERT_VRFY:
1011 return SSL3_RT_MAX_PLAIN_LENGTH;
1013 #ifndef OPENSSL_NO_NEXTPROTONEG
1014 case TLS_ST_SR_NEXT_PROTO:
1015 return NEXT_PROTO_MAX_LENGTH;
1018 case TLS_ST_SR_CHANGE:
1019 return CCS_MAX_LENGTH;
1021 case TLS_ST_SR_FINISHED:
1022 return FINISHED_MAX_LENGTH;
1024 case TLS_ST_SR_KEY_UPDATE:
1025 return KEY_UPDATE_MAX_LENGTH;
1030 * Process a message that the server has received from the client.
1032 MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL *s, PACKET *pkt)
1034 OSSL_STATEM *st = &s->statem;
1036 switch (st->hand_state) {
1038 /* Shouldn't happen */
1039 return MSG_PROCESS_ERROR;
1041 case TLS_ST_SR_CLNT_HELLO:
1042 return tls_process_client_hello(s, pkt);
1044 case TLS_ST_SR_CERT:
1045 return tls_process_client_certificate(s, pkt);
1047 case TLS_ST_SR_KEY_EXCH:
1048 return tls_process_client_key_exchange(s, pkt);
1050 case TLS_ST_SR_CERT_VRFY:
1051 return tls_process_cert_verify(s, pkt);
1053 #ifndef OPENSSL_NO_NEXTPROTONEG
1054 case TLS_ST_SR_NEXT_PROTO:
1055 return tls_process_next_proto(s, pkt);
1058 case TLS_ST_SR_CHANGE:
1059 return tls_process_change_cipher_spec(s, pkt);
1061 case TLS_ST_SR_FINISHED:
1062 return tls_process_finished(s, pkt);
1064 case TLS_ST_SR_KEY_UPDATE:
1065 return tls_process_key_update(s, pkt);
1071 * Perform any further processing required following the receipt of a message
1074 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst)
1076 OSSL_STATEM *st = &s->statem;
1078 switch (st->hand_state) {
1080 /* Shouldn't happen */
1083 case TLS_ST_SR_CLNT_HELLO:
1084 return tls_post_process_client_hello(s, wst);
1086 case TLS_ST_SR_KEY_EXCH:
1087 return tls_post_process_client_key_exchange(s, wst);
1089 case TLS_ST_SR_CERT_VRFY:
1090 #ifndef OPENSSL_NO_SCTP
1091 if ( /* Is this SCTP? */
1092 BIO_dgram_is_sctp(SSL_get_wbio(s))
1093 /* Are we renegotiating? */
1094 && s->renegotiate && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
1095 s->s3->in_read_app_data = 2;
1096 s->rwstate = SSL_READING;
1097 BIO_clear_retry_flags(SSL_get_rbio(s));
1098 BIO_set_retry_read(SSL_get_rbio(s));
1099 ossl_statem_set_sctp_read_sock(s, 1);
1102 ossl_statem_set_sctp_read_sock(s, 0);
1105 return WORK_FINISHED_CONTINUE;
1107 return WORK_FINISHED_CONTINUE;
1110 int ossl_statem_finish_early_data(SSL *s)
1112 if (!s->method->ssl3_enc->change_cipher_state(s,
1113 SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_READ))
1119 #ifndef OPENSSL_NO_SRP
1120 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
1122 int ret = SSL_ERROR_NONE;
1124 *al = SSL_AD_UNRECOGNIZED_NAME;
1126 if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
1127 (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
1128 if (s->srp_ctx.login == NULL) {
1130 * RFC 5054 says SHOULD reject, we do so if There is no srp
1133 ret = SSL3_AL_FATAL;
1134 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
1136 ret = SSL_srp_server_param_with_username(s, al);
1143 int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
1146 /* Always use DTLS 1.0 version: see RFC 6347 */
1147 if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION)
1148 || !WPACKET_sub_memcpy_u8(pkt, cookie, cookie_len))
1154 int dtls_construct_hello_verify_request(SSL *s, WPACKET *pkt)
1156 unsigned int cookie_leni;
1157 if (s->ctx->app_gen_cookie_cb == NULL ||
1158 s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
1159 &cookie_leni) == 0 ||
1160 cookie_leni > 255) {
1161 SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST,
1162 SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
1165 s->d1->cookie_len = cookie_leni;
1167 if (!dtls_raw_hello_verify_request(pkt, s->d1->cookie,
1168 s->d1->cookie_len)) {
1169 SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST, ERR_R_INTERNAL_ERROR);
1176 #ifndef OPENSSL_NO_EC
1178 * ssl_check_for_safari attempts to fingerprint Safari using OS X
1179 * SecureTransport using the TLS extension block in |hello|.
1180 * Safari, since 10.6, sends exactly these extensions, in this order:
1185 * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
1186 * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
1187 * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
1188 * 10.8..10.8.3 (which don't work).
1190 static void ssl_check_for_safari(SSL *s, const CLIENTHELLO_MSG *hello)
1192 static const unsigned char kSafariExtensionsBlock[] = {
1193 0x00, 0x0a, /* elliptic_curves extension */
1194 0x00, 0x08, /* 8 bytes */
1195 0x00, 0x06, /* 6 bytes of curve ids */
1196 0x00, 0x17, /* P-256 */
1197 0x00, 0x18, /* P-384 */
1198 0x00, 0x19, /* P-521 */
1200 0x00, 0x0b, /* ec_point_formats */
1201 0x00, 0x02, /* 2 bytes */
1202 0x01, /* 1 point format */
1203 0x00, /* uncompressed */
1204 /* The following is only present in TLS 1.2 */
1205 0x00, 0x0d, /* signature_algorithms */
1206 0x00, 0x0c, /* 12 bytes */
1207 0x00, 0x0a, /* 10 bytes */
1208 0x05, 0x01, /* SHA-384/RSA */
1209 0x04, 0x01, /* SHA-256/RSA */
1210 0x02, 0x01, /* SHA-1/RSA */
1211 0x04, 0x03, /* SHA-256/ECDSA */
1212 0x02, 0x03, /* SHA-1/ECDSA */
1214 /* Length of the common prefix (first two extensions). */
1215 static const size_t kSafariCommonExtensionsLength = 18;
1220 tmppkt = hello->extensions;
1222 if (!PACKET_forward(&tmppkt, 2)
1223 || !PACKET_get_net_2(&tmppkt, &type)
1224 || !PACKET_get_length_prefixed_2(&tmppkt, &sni)) {
1228 if (type != TLSEXT_TYPE_server_name)
1231 ext_len = TLS1_get_client_version(s) >= TLS1_2_VERSION ?
1232 sizeof(kSafariExtensionsBlock) : kSafariCommonExtensionsLength;
1234 s->s3->is_probably_safari = PACKET_equal(&tmppkt, kSafariExtensionsBlock,
1237 #endif /* !OPENSSL_NO_EC */
1239 MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
1241 int al = SSL_AD_INTERNAL_ERROR;
1242 /* |cookie| will only be initialized for DTLS. */
1243 PACKET session_id, compression, extensions, cookie;
1244 static const unsigned char null_compression = 0;
1245 CLIENTHELLO_MSG *clienthello;
1247 clienthello = OPENSSL_zalloc(sizeof(*clienthello));
1248 if (clienthello == NULL) {
1249 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1252 /* Check if this is actually an unexpected renegotiation ClientHello */
1253 if (s->renegotiate == 0 && !SSL_IS_FIRST_HANDSHAKE(s)) {
1259 * First, parse the raw ClientHello data into the CLIENTHELLO_MSG structure.
1261 clienthello->isv2 = RECORD_LAYER_is_sslv2_record(&s->rlayer);
1262 PACKET_null_init(&cookie);
1264 if (clienthello->isv2) {
1267 if (!SSL_IS_FIRST_HANDSHAKE(s) || s->hello_retry_request) {
1268 al = SSL_AD_HANDSHAKE_FAILURE;
1269 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNEXPECTED_MESSAGE);
1274 * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
1275 * header is sent directly on the wire, not wrapped as a TLS
1276 * record. Our record layer just processes the message length and passes
1277 * the rest right through. Its format is:
1279 * 0-1 msg_length - decoded by the record layer
1280 * 2 msg_type - s->init_msg points here
1282 * 5-6 cipher_spec_length
1283 * 7-8 session_id_length
1284 * 9-10 challenge_length
1288 if (!PACKET_get_1(pkt, &mt)
1289 || mt != SSL2_MT_CLIENT_HELLO) {
1291 * Should never happen. We should have tested this in the record
1292 * layer in order to have determined that this is a SSLv2 record
1293 * in the first place
1295 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1300 if (!PACKET_get_net_2(pkt, &clienthello->legacy_version)) {
1301 al = SSL_AD_DECODE_ERROR;
1302 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1306 /* Parse the message and load client random. */
1307 if (clienthello->isv2) {
1309 * Handle an SSLv2 backwards compatible ClientHello
1310 * Note, this is only for SSLv3+ using the backward compatible format.
1311 * Real SSLv2 is not supported, and is rejected below.
1313 unsigned int ciphersuite_len, session_id_len, challenge_len;
1316 if (!PACKET_get_net_2(pkt, &ciphersuite_len)
1317 || !PACKET_get_net_2(pkt, &session_id_len)
1318 || !PACKET_get_net_2(pkt, &challenge_len)) {
1319 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1320 SSL_R_RECORD_LENGTH_MISMATCH);
1321 al = SSL_AD_DECODE_ERROR;
1325 if (session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
1326 al = SSL_AD_DECODE_ERROR;
1327 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1331 if (!PACKET_get_sub_packet(pkt, &clienthello->ciphersuites,
1333 || !PACKET_copy_bytes(pkt, clienthello->session_id, session_id_len)
1334 || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
1335 /* No extensions. */
1336 || PACKET_remaining(pkt) != 0) {
1337 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1338 SSL_R_RECORD_LENGTH_MISMATCH);
1339 al = SSL_AD_DECODE_ERROR;
1342 clienthello->session_id_len = session_id_len;
1344 /* Load the client random and compression list. We use SSL3_RANDOM_SIZE
1345 * here rather than sizeof(clienthello->random) because that is the limit
1346 * for SSLv3 and it is fixed. It won't change even if
1347 * sizeof(clienthello->random) does.
1349 challenge_len = challenge_len > SSL3_RANDOM_SIZE
1350 ? SSL3_RANDOM_SIZE : challenge_len;
1351 memset(clienthello->random, 0, SSL3_RANDOM_SIZE);
1352 if (!PACKET_copy_bytes(&challenge,
1353 clienthello->random + SSL3_RANDOM_SIZE -
1354 challenge_len, challenge_len)
1355 /* Advertise only null compression. */
1356 || !PACKET_buf_init(&compression, &null_compression, 1)) {
1357 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1358 al = SSL_AD_INTERNAL_ERROR;
1362 PACKET_null_init(&clienthello->extensions);
1364 /* Regular ClientHello. */
1365 if (!PACKET_copy_bytes(pkt, clienthello->random, SSL3_RANDOM_SIZE)
1366 || !PACKET_get_length_prefixed_1(pkt, &session_id)
1367 || !PACKET_copy_all(&session_id, clienthello->session_id,
1368 SSL_MAX_SSL_SESSION_ID_LENGTH,
1369 &clienthello->session_id_len)) {
1370 al = SSL_AD_DECODE_ERROR;
1371 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1375 if (SSL_IS_DTLS(s)) {
1376 if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
1377 al = SSL_AD_DECODE_ERROR;
1378 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1381 if (!PACKET_copy_all(&cookie, clienthello->dtls_cookie,
1382 DTLS1_COOKIE_LENGTH,
1383 &clienthello->dtls_cookie_len)) {
1384 al = SSL_AD_DECODE_ERROR;
1385 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1389 * If we require cookies and this ClientHello doesn't contain one,
1390 * just return since we do not want to allocate any memory yet.
1391 * So check cookie length...
1393 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1394 if (clienthello->dtls_cookie_len == 0)
1399 if (!PACKET_get_length_prefixed_2(pkt, &clienthello->ciphersuites)) {
1400 al = SSL_AD_DECODE_ERROR;
1401 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1405 if (!PACKET_get_length_prefixed_1(pkt, &compression)) {
1406 al = SSL_AD_DECODE_ERROR;
1407 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1411 /* Could be empty. */
1412 if (PACKET_remaining(pkt) == 0) {
1413 PACKET_null_init(&clienthello->extensions);
1415 if (!PACKET_get_length_prefixed_2(pkt, &clienthello->extensions)) {
1416 al = SSL_AD_DECODE_ERROR;
1417 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1423 if (!PACKET_copy_all(&compression, clienthello->compressions,
1424 MAX_COMPRESSIONS_SIZE,
1425 &clienthello->compressions_len)) {
1426 al = SSL_AD_DECODE_ERROR;
1427 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1431 /* Preserve the raw extensions PACKET for later use */
1432 extensions = clienthello->extensions;
1433 if (!tls_collect_extensions(s, &extensions, EXT_CLIENT_HELLO,
1434 &clienthello->pre_proc_exts, &al,
1435 &clienthello->pre_proc_exts_len)) {
1436 /* SSLerr already been called */
1439 s->clienthello = clienthello;
1441 return MSG_PROCESS_CONTINUE_PROCESSING;
1443 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1445 ossl_statem_set_error(s);
1447 OPENSSL_free(clienthello->pre_proc_exts);
1448 OPENSSL_free(clienthello);
1450 return MSG_PROCESS_ERROR;
1453 static int tls_early_post_process_client_hello(SSL *s, int *al)
1460 #ifndef OPENSSL_NO_COMP
1461 SSL_COMP *comp = NULL;
1463 const SSL_CIPHER *c;
1464 STACK_OF(SSL_CIPHER) *ciphers = NULL;
1465 STACK_OF(SSL_CIPHER) *scsvs = NULL;
1466 CLIENTHELLO_MSG *clienthello = s->clienthello;
1468 *al = SSL_AD_INTERNAL_ERROR;
1469 /* Finished parsing the ClientHello, now we can start processing it */
1470 /* Give the early callback a crack at things */
1471 if (s->ctx->early_cb != NULL) {
1473 /* A failure in the early callback terminates the connection. */
1474 code = s->ctx->early_cb(s, al, s->ctx->early_cb_arg);
1478 s->rwstate = SSL_EARLY_WORK;
1483 /* Set up the client_random */
1484 memcpy(s->s3->client_random, clienthello->random, SSL3_RANDOM_SIZE);
1486 /* Choose the version */
1488 if (clienthello->isv2) {
1489 if (clienthello->legacy_version == SSL2_VERSION
1490 || (clienthello->legacy_version & 0xff00)
1491 != (SSL3_VERSION_MAJOR << 8)) {
1493 * This is real SSLv2 or something complete unknown. We don't
1496 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1500 s->client_version = clienthello->legacy_version;
1503 * Do SSL/TLS version negotiation if applicable. For DTLS we just check
1504 * versions are potentially compatible. Version negotiation comes later.
1506 if (!SSL_IS_DTLS(s)) {
1507 protverr = ssl_choose_server_version(s, clienthello);
1508 } else if (s->method->version != DTLS_ANY_VERSION &&
1509 DTLS_VERSION_LT((int)clienthello->legacy_version, s->version)) {
1510 protverr = SSL_R_VERSION_TOO_LOW;
1516 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, protverr);
1517 if (SSL_IS_FIRST_HANDSHAKE(s)) {
1518 /* like ssl3_get_record, send alert using remote version number */
1519 s->version = s->client_version = clienthello->legacy_version;
1521 *al = SSL_AD_PROTOCOL_VERSION;
1525 if (SSL_IS_DTLS(s)) {
1526 /* Empty cookie was already handled above by returning early. */
1527 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1528 if (s->ctx->app_verify_cookie_cb != NULL) {
1529 if (s->ctx->app_verify_cookie_cb(s, clienthello->dtls_cookie,
1530 clienthello->dtls_cookie_len) == 0) {
1531 *al = SSL_AD_HANDSHAKE_FAILURE;
1532 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1533 SSL_R_COOKIE_MISMATCH);
1535 /* else cookie verification succeeded */
1537 /* default verification */
1538 } else if (s->d1->cookie_len != clienthello->dtls_cookie_len
1539 || memcmp(clienthello->dtls_cookie, s->d1->cookie,
1540 s->d1->cookie_len) != 0) {
1541 *al = SSL_AD_HANDSHAKE_FAILURE;
1542 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1545 s->d1->cookie_verified = 1;
1547 if (s->method->version == DTLS_ANY_VERSION) {
1548 protverr = ssl_choose_server_version(s, clienthello);
1549 if (protverr != 0) {
1550 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, protverr);
1551 s->version = s->client_version;
1552 *al = SSL_AD_PROTOCOL_VERSION;
1560 /* We need to do this before getting the session */
1561 if (!tls_parse_extension(s, TLSEXT_IDX_extended_master_secret,
1563 clienthello->pre_proc_exts, NULL, 0, al)) {
1564 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1569 * We don't allow resumption in a backwards compatible ClientHello.
1570 * TODO(openssl-team): in TLS1.1+, session_id MUST be empty.
1572 * Versions before 0.9.7 always allow clients to resume sessions in
1573 * renegotiation. 0.9.7 and later allow this by default, but optionally
1574 * ignore resumption requests with flag
1575 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1576 * than a change to default behavior so that applications relying on
1577 * this for security won't even compile against older library versions).
1578 * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1579 * request renegotiation but not a new session (s->new_session remains
1580 * unset): for servers, this essentially just means that the
1581 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
1584 if (clienthello->isv2 ||
1586 (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1587 if (!ssl_get_new_session(s, 1))
1590 i = ssl_get_prev_session(s, clienthello, al);
1592 /* previous session */
1594 } else if (i == -1) {
1598 if (!ssl_get_new_session(s, 1))
1603 if (!ssl_cache_cipherlist(s, &clienthello->ciphersuites,
1604 clienthello->isv2, al) ||
1605 !bytes_to_cipher_list(s, &clienthello->ciphersuites, &ciphers, &scsvs,
1606 clienthello->isv2, al)) {
1610 s->s3->send_connection_binding = 0;
1611 /* Check what signalling cipher-suite values were received. */
1612 if (scsvs != NULL) {
1613 for(i = 0; i < sk_SSL_CIPHER_num(scsvs); i++) {
1614 c = sk_SSL_CIPHER_value(scsvs, i);
1615 if (SSL_CIPHER_get_id(c) == SSL3_CK_SCSV) {
1616 if (s->renegotiate) {
1617 /* SCSV is fatal if renegotiating */
1618 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1619 SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
1620 *al = SSL_AD_HANDSHAKE_FAILURE;
1623 s->s3->send_connection_binding = 1;
1624 } else if (SSL_CIPHER_get_id(c) == SSL3_CK_FALLBACK_SCSV &&
1625 !ssl_check_version_downgrade(s)) {
1627 * This SCSV indicates that the client previously tried
1628 * a higher version. We should fail if the current version
1629 * is an unexpected downgrade, as that indicates that the first
1630 * connection may have been tampered with in order to trigger
1631 * an insecure downgrade.
1633 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1634 SSL_R_INAPPROPRIATE_FALLBACK);
1635 *al = SSL_AD_INAPPROPRIATE_FALLBACK;
1641 /* If it is a hit, check that the cipher is in the list */
1644 id = s->session->cipher->id;
1647 fprintf(stderr, "client sent %d ciphers\n", sk_SSL_CIPHER_num(ciphers));
1649 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1650 c = sk_SSL_CIPHER_value(ciphers, i);
1652 fprintf(stderr, "client [%2d of %2d]:%s\n",
1653 i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1662 * we need to have the cipher in the cipher list if we are asked
1665 *al = SSL_AD_ILLEGAL_PARAMETER;
1666 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1667 SSL_R_REQUIRED_CIPHER_MISSING);
1672 for (loop = 0; loop < clienthello->compressions_len; loop++) {
1673 if (clienthello->compressions[loop] == 0)
1677 if (loop >= clienthello->compressions_len) {
1679 *al = SSL_AD_DECODE_ERROR;
1680 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
1684 #ifndef OPENSSL_NO_EC
1685 if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
1686 ssl_check_for_safari(s, clienthello);
1687 #endif /* !OPENSSL_NO_EC */
1689 /* TLS extensions */
1690 if (!tls_parse_all_extensions(s, EXT_CLIENT_HELLO,
1691 clienthello->pre_proc_exts, NULL, 0, al)) {
1692 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
1697 * Check if we want to use external pre-shared secret for this handshake
1698 * for not reused session only. We need to generate server_random before
1699 * calling tls_session_secret_cb in order to allow SessionTicket
1700 * processing to use it in key derivation.
1704 pos = s->s3->server_random;
1705 if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
1710 if (!s->hit && s->version >= TLS1_VERSION && s->ext.session_secret_cb) {
1711 const SSL_CIPHER *pref_cipher = NULL;
1713 * s->session->master_key_length is a size_t, but this is an int for
1714 * backwards compat reasons
1716 int master_key_length;
1718 master_key_length = sizeof(s->session->master_key);
1719 if (s->ext.session_secret_cb(s, s->session->master_key,
1720 &master_key_length, ciphers,
1722 s->ext.session_secret_cb_arg)
1723 && master_key_length > 0) {
1724 s->session->master_key_length = master_key_length;
1726 s->session->ciphers = ciphers;
1727 s->session->verify_result = X509_V_OK;
1731 /* check if some cipher was preferred by call back */
1732 if (pref_cipher == NULL)
1733 pref_cipher = ssl3_choose_cipher(s, s->session->ciphers,
1734 SSL_get_ciphers(s));
1735 if (pref_cipher == NULL) {
1736 *al = SSL_AD_HANDSHAKE_FAILURE;
1737 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1741 s->session->cipher = pref_cipher;
1742 sk_SSL_CIPHER_free(s->cipher_list);
1743 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1744 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1745 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1750 * Worst case, we will use the NULL compression, but if we have other
1751 * options, we will now look for them. We have complen-1 compression
1752 * algorithms from the client, starting at q.
1754 s->s3->tmp.new_compression = NULL;
1755 #ifndef OPENSSL_NO_COMP
1756 /* This only happens if we have a cache hit */
1757 if (s->session->compress_meth != 0 && !SSL_IS_TLS13(s)) {
1758 int m, comp_id = s->session->compress_meth;
1760 /* Perform sanity checks on resumed compression algorithm */
1761 /* Can't disable compression */
1762 if (!ssl_allow_compression(s)) {
1763 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1764 SSL_R_INCONSISTENT_COMPRESSION);
1767 /* Look for resumed compression method */
1768 for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
1769 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1770 if (comp_id == comp->id) {
1771 s->s3->tmp.new_compression = comp;
1775 if (s->s3->tmp.new_compression == NULL) {
1776 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1777 SSL_R_INVALID_COMPRESSION_ALGORITHM);
1780 /* Look for resumed method in compression list */
1781 for (k = 0; k < clienthello->compressions_len; k++) {
1782 if (clienthello->compressions[k] == comp_id)
1785 if (k >= clienthello->compressions_len) {
1786 *al = SSL_AD_ILLEGAL_PARAMETER;
1787 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1788 SSL_R_REQUIRED_COMPRESSION_ALGORITHM_MISSING);
1791 } else if (s->hit) {
1793 } else if (ssl_allow_compression(s) && s->ctx->comp_methods
1794 && !SSL_IS_TLS13(s)) {
1795 /* See if we have a match */
1796 int m, nn, v, done = 0;
1799 nn = sk_SSL_COMP_num(s->ctx->comp_methods);
1800 for (m = 0; m < nn; m++) {
1801 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1803 for (o = 0; o < clienthello->compressions_len; o++) {
1804 if (v == clienthello->compressions[o]) {
1813 s->s3->tmp.new_compression = comp;
1819 * If compression is disabled we'd better not try to resume a session
1820 * using compression.
1822 if (s->session->compress_meth != 0) {
1823 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1829 * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
1833 #ifdef OPENSSL_NO_COMP
1834 s->session->compress_meth = 0;
1836 s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
1838 sk_SSL_CIPHER_free(s->session->ciphers);
1839 s->session->ciphers = ciphers;
1840 if (ciphers == NULL) {
1841 *al = SSL_AD_INTERNAL_ERROR;
1842 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1846 if (!tls1_set_server_sigalgs(s)) {
1847 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1852 sk_SSL_CIPHER_free(ciphers);
1853 sk_SSL_CIPHER_free(scsvs);
1854 OPENSSL_free(clienthello->pre_proc_exts);
1855 OPENSSL_free(s->clienthello);
1856 s->clienthello = NULL;
1859 ossl_statem_set_error(s);
1861 sk_SSL_CIPHER_free(ciphers);
1862 sk_SSL_CIPHER_free(scsvs);
1863 OPENSSL_free(clienthello->pre_proc_exts);
1864 OPENSSL_free(s->clienthello);
1865 s->clienthello = NULL;
1871 * Call the status request callback if needed. Upon success, returns 1.
1872 * Upon failure, returns 0 and sets |*al| to the appropriate fatal alert.
1874 static int tls_handle_status_request(SSL *s, int *al)
1876 s->ext.status_expected = 0;
1879 * If status request then ask callback what to do. Note: this must be
1880 * called after servername callbacks in case the certificate has changed,
1881 * and must be called after the cipher has been chosen because this may
1882 * influence which certificate is sent
1884 if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing && s->ctx != NULL
1885 && s->ctx->ext.status_cb != NULL) {
1888 /* If no certificate can't return certificate status */
1889 if (s->s3->tmp.cert != NULL) {
1891 * Set current certificate to one we will use so SSL_get_certificate
1892 * et al can pick it up.
1894 s->cert->key = s->s3->tmp.cert;
1895 ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
1897 /* We don't want to send a status request response */
1898 case SSL_TLSEXT_ERR_NOACK:
1899 s->ext.status_expected = 0;
1901 /* status request response should be sent */
1902 case SSL_TLSEXT_ERR_OK:
1903 if (s->ext.ocsp.resp)
1904 s->ext.status_expected = 1;
1906 /* something bad happened */
1907 case SSL_TLSEXT_ERR_ALERT_FATAL:
1909 *al = SSL_AD_INTERNAL_ERROR;
1918 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst)
1920 int al = SSL_AD_HANDSHAKE_FAILURE;
1921 const SSL_CIPHER *cipher;
1923 if (wst == WORK_MORE_A) {
1924 int rv = tls_early_post_process_client_hello(s, &al);
1926 /* SSLErr() was already called */
1933 if (wst == WORK_MORE_B) {
1935 /* Let cert callback update server certificates if required */
1936 if (s->cert->cert_cb) {
1937 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
1939 al = SSL_AD_INTERNAL_ERROR;
1940 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1941 SSL_R_CERT_CB_ERROR);
1945 s->rwstate = SSL_X509_LOOKUP;
1948 s->rwstate = SSL_NOTHING;
1951 ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1953 if (cipher == NULL) {
1954 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1955 SSL_R_NO_SHARED_CIPHER);
1958 s->s3->tmp.new_cipher = cipher;
1959 if (!tls_choose_sigalg(s, &al))
1961 /* check whether we should disable session resumption */
1962 if (s->not_resumable_session_cb != NULL)
1963 s->session->not_resumable =
1964 s->not_resumable_session_cb(s, ((cipher->algorithm_mkey
1965 & (SSL_kDHE | SSL_kECDHE))
1967 if (s->session->not_resumable)
1968 /* do not send a session ticket */
1969 s->ext.ticket_expected = 0;
1971 /* Session-id reuse */
1972 s->s3->tmp.new_cipher = s->session->cipher;
1976 * we now have the following setup.
1978 * cipher_list - our preferred list of ciphers
1979 * ciphers - the clients preferred list of ciphers
1980 * compression - basically ignored right now
1981 * ssl version is set - sslv3
1982 * s->session - The ssl session has been setup.
1983 * s->hit - session reuse flag
1984 * s->s3->tmp.new_cipher- the new cipher to use.
1988 * Call status_request callback if needed. Has to be done after the
1989 * certificate callbacks etc above.
1991 if (!tls_handle_status_request(s, &al)) {
1992 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1993 SSL_R_CLIENTHELLO_TLSEXT);
1999 #ifndef OPENSSL_NO_SRP
2000 if (wst == WORK_MORE_C) {
2002 if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
2004 * callback indicates further work to be done
2006 s->rwstate = SSL_X509_LOOKUP;
2009 if (ret != SSL_ERROR_NONE) {
2011 * This is not really an error but the only means to for
2012 * a client to detect whether srp is supported.
2014 if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
2015 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
2016 SSL_R_CLIENTHELLO_TLSEXT);
2018 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
2019 SSL_R_PSK_IDENTITY_NOT_FOUND);
2025 return WORK_FINISHED_STOP;
2027 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2028 ossl_statem_set_error(s);
2032 int tls_construct_server_hello(SSL *s, WPACKET *pkt)
2034 int compm, al = SSL_AD_INTERNAL_ERROR;
2038 /* TODO(TLS1.3): Remove the DRAFT conditional before release */
2039 version = SSL_IS_TLS13(s) ? TLS1_3_VERSION_DRAFT : s->version;
2040 if (!WPACKET_put_bytes_u16(pkt, version)
2042 * Random stuff. Filling of the server_random takes place in
2043 * tls_process_client_hello()
2045 || !WPACKET_memcpy(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
2046 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
2051 * There are several cases for the session ID to send
2052 * back in the server hello:
2053 * - For session reuse from the session cache,
2054 * we send back the old session ID.
2055 * - If stateless session reuse (using a session ticket)
2056 * is successful, we send back the client's "session ID"
2057 * (which doesn't actually identify the session).
2058 * - If it is a new session, we send back the new
2060 * - However, if we want the new session to be single-use,
2061 * we send back a 0-length session ID.
2062 * s->hit is non-zero in either case of session reuse,
2063 * so the following won't overwrite an ID that we're supposed
2066 if (s->session->not_resumable ||
2067 (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
2069 s->session->session_id_length = 0;
2071 sl = s->session->session_id_length;
2072 if (sl > sizeof(s->session->session_id)) {
2073 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
2077 /* set up the compression method */
2078 #ifdef OPENSSL_NO_COMP
2081 if (s->s3->tmp.new_compression == NULL)
2084 compm = s->s3->tmp.new_compression->id;
2087 if ((!SSL_IS_TLS13(s)
2088 && !WPACKET_sub_memcpy_u8(pkt, s->session->session_id, sl))
2089 || !s->method->put_cipher_by_char(s->s3->tmp.new_cipher, pkt, &len)
2090 || (!SSL_IS_TLS13(s)
2091 && !WPACKET_put_bytes_u8(pkt, compm))
2092 || !tls_construct_extensions(s, pkt,
2094 ? EXT_TLS1_3_SERVER_HELLO
2095 : EXT_TLS1_2_SERVER_HELLO,
2097 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
2101 if (!(s->verify_mode & SSL_VERIFY_PEER)
2102 && !ssl3_digest_cached_records(s, 0)) {
2103 al = SSL_AD_INTERNAL_ERROR;
2109 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2113 int tls_construct_server_done(SSL *s, WPACKET *pkt)
2115 if (!s->s3->tmp.cert_request) {
2116 if (!ssl3_digest_cached_records(s, 0)) {
2117 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2124 int tls_construct_server_key_exchange(SSL *s, WPACKET *pkt)
2126 #ifndef OPENSSL_NO_DH
2127 EVP_PKEY *pkdh = NULL;
2129 #ifndef OPENSSL_NO_EC
2130 unsigned char *encodedPoint = NULL;
2131 size_t encodedlen = 0;
2134 const SIGALG_LOOKUP *lu = s->s3->tmp.sigalg;
2135 int al = SSL_AD_INTERNAL_ERROR, i;
2138 EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
2139 EVP_PKEY_CTX *pctx = NULL;
2140 size_t paramlen, paramoffset;
2142 if (!WPACKET_get_total_written(pkt, ¶moffset)) {
2143 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2147 if (md_ctx == NULL) {
2148 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2152 type = s->s3->tmp.new_cipher->algorithm_mkey;
2154 r[0] = r[1] = r[2] = r[3] = NULL;
2155 #ifndef OPENSSL_NO_PSK
2156 /* Plain PSK or RSAPSK nothing to do */
2157 if (type & (SSL_kPSK | SSL_kRSAPSK)) {
2159 #endif /* !OPENSSL_NO_PSK */
2160 #ifndef OPENSSL_NO_DH
2161 if (type & (SSL_kDHE | SSL_kDHEPSK)) {
2162 CERT *cert = s->cert;
2164 EVP_PKEY *pkdhp = NULL;
2167 if (s->cert->dh_tmp_auto) {
2168 DH *dhp = ssl_get_auto_dh(s);
2169 pkdh = EVP_PKEY_new();
2170 if (pkdh == NULL || dhp == NULL) {
2172 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2173 ERR_R_INTERNAL_ERROR);
2176 EVP_PKEY_assign_DH(pkdh, dhp);
2179 pkdhp = cert->dh_tmp;
2181 if ((pkdhp == NULL) && (s->cert->dh_tmp_cb != NULL)) {
2182 DH *dhp = s->cert->dh_tmp_cb(s, 0, 1024);
2183 pkdh = ssl_dh_to_pkey(dhp);
2185 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2186 ERR_R_INTERNAL_ERROR);
2191 if (pkdhp == NULL) {
2192 al = SSL_AD_HANDSHAKE_FAILURE;
2193 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2194 SSL_R_MISSING_TMP_DH_KEY);
2197 if (!ssl_security(s, SSL_SECOP_TMP_DH,
2198 EVP_PKEY_security_bits(pkdhp), 0, pkdhp)) {
2199 al = SSL_AD_HANDSHAKE_FAILURE;
2200 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2201 SSL_R_DH_KEY_TOO_SMALL);
2204 if (s->s3->tmp.pkey != NULL) {
2205 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2206 ERR_R_INTERNAL_ERROR);
2210 s->s3->tmp.pkey = ssl_generate_pkey(pkdhp);
2212 if (s->s3->tmp.pkey == NULL) {
2213 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2217 dh = EVP_PKEY_get0_DH(s->s3->tmp.pkey);
2219 EVP_PKEY_free(pkdh);
2222 DH_get0_pqg(dh, &r[0], NULL, &r[1]);
2223 DH_get0_key(dh, &r[2], NULL);
2226 #ifndef OPENSSL_NO_EC
2227 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2230 if (s->s3->tmp.pkey != NULL) {
2231 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2232 ERR_R_INTERNAL_ERROR);
2236 /* Get NID of appropriate shared curve */
2237 nid = tls1_shared_group(s, -2);
2238 curve_id = tls1_ec_nid2curve_id(nid);
2239 if (curve_id == 0) {
2240 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2241 SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
2244 s->s3->tmp.pkey = ssl_generate_pkey_curve(curve_id);
2245 /* Generate a new key for this curve */
2246 if (s->s3->tmp.pkey == NULL) {
2247 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2251 /* Encode the public key. */
2252 encodedlen = EVP_PKEY_get1_tls_encodedpoint(s->s3->tmp.pkey,
2254 if (encodedlen == 0) {
2255 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EC_LIB);
2260 * We'll generate the serverKeyExchange message explicitly so we
2261 * can set these to NULLs
2268 #endif /* !OPENSSL_NO_EC */
2269 #ifndef OPENSSL_NO_SRP
2270 if (type & SSL_kSRP) {
2271 if ((s->srp_ctx.N == NULL) ||
2272 (s->srp_ctx.g == NULL) ||
2273 (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
2274 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2275 SSL_R_MISSING_SRP_PARAM);
2278 r[0] = s->srp_ctx.N;
2279 r[1] = s->srp_ctx.g;
2280 r[2] = s->srp_ctx.s;
2281 r[3] = s->srp_ctx.B;
2285 al = SSL_AD_HANDSHAKE_FAILURE;
2286 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2287 SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
2291 if (((s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP)) != 0)
2292 || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) != 0) {
2294 } else if (lu == NULL) {
2295 al = SSL_AD_DECODE_ERROR;
2299 #ifndef OPENSSL_NO_PSK
2300 if (type & SSL_PSK) {
2301 size_t len = (s->cert->psk_identity_hint == NULL)
2302 ? 0 : strlen(s->cert->psk_identity_hint);
2305 * It should not happen that len > PSK_MAX_IDENTITY_LEN - we already
2306 * checked this when we set the identity hint - but just in case
2308 if (len > PSK_MAX_IDENTITY_LEN
2309 || !WPACKET_sub_memcpy_u16(pkt, s->cert->psk_identity_hint,
2311 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2312 ERR_R_INTERNAL_ERROR);
2318 for (i = 0; i < 4 && r[i] != NULL; i++) {
2319 unsigned char *binval;
2322 #ifndef OPENSSL_NO_SRP
2323 if ((i == 2) && (type & SSL_kSRP)) {
2324 res = WPACKET_start_sub_packet_u8(pkt);
2327 res = WPACKET_start_sub_packet_u16(pkt);
2330 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2331 ERR_R_INTERNAL_ERROR);
2335 #ifndef OPENSSL_NO_DH
2337 * for interoperability with some versions of the Microsoft TLS
2338 * stack, we need to zero pad the DHE pub key to the same length
2341 if ((i == 2) && (type & (SSL_kDHE | SSL_kDHEPSK))) {
2342 size_t len = BN_num_bytes(r[0]) - BN_num_bytes(r[2]);
2345 if (!WPACKET_allocate_bytes(pkt, len, &binval)) {
2346 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2347 ERR_R_INTERNAL_ERROR);
2350 memset(binval, 0, len);
2354 if (!WPACKET_allocate_bytes(pkt, BN_num_bytes(r[i]), &binval)
2355 || !WPACKET_close(pkt)) {
2356 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2357 ERR_R_INTERNAL_ERROR);
2361 BN_bn2bin(r[i], binval);
2364 #ifndef OPENSSL_NO_EC
2365 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2367 * We only support named (not generic) curves. In this situation, the
2368 * ServerKeyExchange message has: [1 byte CurveType], [2 byte CurveName]
2369 * [1 byte length of encoded point], followed by the actual encoded
2372 if (!WPACKET_put_bytes_u8(pkt, NAMED_CURVE_TYPE)
2373 || !WPACKET_put_bytes_u8(pkt, 0)
2374 || !WPACKET_put_bytes_u8(pkt, curve_id)
2375 || !WPACKET_sub_memcpy_u8(pkt, encodedPoint, encodedlen)) {
2376 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2377 ERR_R_INTERNAL_ERROR);
2380 OPENSSL_free(encodedPoint);
2381 encodedPoint = NULL;
2387 EVP_PKEY *pkey = s->s3->tmp.cert->privatekey;
2388 const EVP_MD *md = ssl_md(lu->hash_idx);
2389 unsigned char *sigbytes1, *sigbytes2;
2392 if (pkey == NULL || md == NULL) {
2393 /* Should never happen */
2394 al = SSL_AD_INTERNAL_ERROR;
2395 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2396 ERR_R_INTERNAL_ERROR);
2400 * n is the length of the params, they start at &(d[4]) and p
2401 * points to the space at the end.
2404 /* Get length of the parameters we have written above */
2405 if (!WPACKET_get_length(pkt, ¶mlen)) {
2406 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2407 ERR_R_INTERNAL_ERROR);
2410 /* send signature algorithm */
2411 if (SSL_USE_SIGALGS(s) && !WPACKET_put_bytes_u16(pkt, lu->sigalg))
2414 * Create the signature. We don't know the actual length of the sig
2415 * until after we've created it, so we reserve enough bytes for it
2416 * up front, and then properly allocate them in the WPACKET
2419 siglen = EVP_PKEY_size(pkey);
2420 if (!WPACKET_sub_reserve_bytes_u16(pkt, siglen, &sigbytes1)
2421 || EVP_DigestSignInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2422 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2423 ERR_R_INTERNAL_ERROR);
2426 if (lu->sig == EVP_PKEY_RSA_PSS) {
2427 if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2428 || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx, RSA_PSS_SALTLEN_DIGEST) <= 0) {
2429 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2434 if (EVP_DigestSignUpdate(md_ctx, &(s->s3->client_random[0]),
2435 SSL3_RANDOM_SIZE) <= 0
2436 || EVP_DigestSignUpdate(md_ctx, &(s->s3->server_random[0]),
2437 SSL3_RANDOM_SIZE) <= 0
2438 || EVP_DigestSignUpdate(md_ctx,
2439 s->init_buf->data + paramoffset,
2441 || EVP_DigestSignFinal(md_ctx, sigbytes1, &siglen) <= 0
2442 || !WPACKET_sub_allocate_bytes_u16(pkt, siglen, &sigbytes2)
2443 || sigbytes1 != sigbytes2) {
2444 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2445 ERR_R_INTERNAL_ERROR);
2450 EVP_MD_CTX_free(md_ctx);
2453 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2455 #ifndef OPENSSL_NO_DH
2456 EVP_PKEY_free(pkdh);
2458 #ifndef OPENSSL_NO_EC
2459 OPENSSL_free(encodedPoint);
2461 EVP_MD_CTX_free(md_ctx);
2465 int tls_construct_certificate_request(SSL *s, WPACKET *pkt)
2468 STACK_OF(X509_NAME) *sk = NULL;
2470 if (SSL_IS_TLS13(s)) {
2471 /* TODO(TLS1.3) for now send empty request context */
2472 if (!WPACKET_put_bytes_u8(pkt, 0)) {
2473 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2474 ERR_R_INTERNAL_ERROR);
2478 /* get the list of acceptable cert types */
2479 if (!WPACKET_start_sub_packet_u8(pkt)
2480 || !ssl3_get_req_cert_type(s, pkt) || !WPACKET_close(pkt)) {
2481 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2482 ERR_R_INTERNAL_ERROR);
2487 if (SSL_USE_SIGALGS(s)) {
2488 const uint16_t *psigs;
2489 size_t nl = tls12_get_psigalgs(s, 1, &psigs);
2491 if (!WPACKET_start_sub_packet_u16(pkt)
2492 || !tls12_copy_sigalgs(s, pkt, psigs, nl)
2493 || !WPACKET_close(pkt)) {
2494 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2495 ERR_R_INTERNAL_ERROR);
2500 /* Start sub-packet for client CA list */
2501 if (!WPACKET_start_sub_packet_u16(pkt)) {
2502 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2506 sk = SSL_get_client_CA_list(s);
2508 for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2509 unsigned char *namebytes;
2510 X509_NAME *name = sk_X509_NAME_value(sk, i);
2514 || (namelen = i2d_X509_NAME(name, NULL)) < 0
2515 || !WPACKET_sub_allocate_bytes_u16(pkt, namelen,
2517 || i2d_X509_NAME(name, &namebytes) != namelen) {
2518 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2519 ERR_R_INTERNAL_ERROR);
2524 /* else no CA names */
2525 if (!WPACKET_close(pkt)) {
2526 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2530 * TODO(TLS1.3) implement configurable certificate_extensions
2531 * For now just send zero length extensions.
2533 if (SSL_IS_TLS13(s) && !WPACKET_put_bytes_u16(pkt, 0)) {
2534 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2538 s->s3->tmp.cert_request = 1;
2542 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2546 static int tls_process_cke_psk_preamble(SSL *s, PACKET *pkt, int *al)
2548 #ifndef OPENSSL_NO_PSK
2549 unsigned char psk[PSK_MAX_PSK_LEN];
2551 PACKET psk_identity;
2553 if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
2554 *al = SSL_AD_DECODE_ERROR;
2555 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH);
2558 if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
2559 *al = SSL_AD_DECODE_ERROR;
2560 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG);
2563 if (s->psk_server_callback == NULL) {
2564 *al = SSL_AD_INTERNAL_ERROR;
2565 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_SERVER_CB);
2569 if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
2570 *al = SSL_AD_INTERNAL_ERROR;
2571 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2575 psklen = s->psk_server_callback(s, s->session->psk_identity,
2578 if (psklen > PSK_MAX_PSK_LEN) {
2579 *al = SSL_AD_INTERNAL_ERROR;
2580 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2582 } else if (psklen == 0) {
2584 * PSK related to the given identity not found
2586 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
2587 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE,
2588 SSL_R_PSK_IDENTITY_NOT_FOUND);
2592 OPENSSL_free(s->s3->tmp.psk);
2593 s->s3->tmp.psk = OPENSSL_memdup(psk, psklen);
2594 OPENSSL_cleanse(psk, psklen);
2596 if (s->s3->tmp.psk == NULL) {
2597 *al = SSL_AD_INTERNAL_ERROR;
2598 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE);
2602 s->s3->tmp.psklen = psklen;
2606 /* Should never happen */
2607 *al = SSL_AD_INTERNAL_ERROR;
2608 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2613 static int tls_process_cke_rsa(SSL *s, PACKET *pkt, int *al)
2615 #ifndef OPENSSL_NO_RSA
2616 unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2618 unsigned char decrypt_good, version_good;
2619 size_t j, padding_len;
2620 PACKET enc_premaster;
2622 unsigned char *rsa_decrypt = NULL;
2625 rsa = EVP_PKEY_get0_RSA(s->cert->pkeys[SSL_PKEY_RSA].privatekey);
2627 *al = SSL_AD_HANDSHAKE_FAILURE;
2628 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_MISSING_RSA_CERTIFICATE);
2632 /* SSLv3 and pre-standard DTLS omit the length bytes. */
2633 if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
2634 enc_premaster = *pkt;
2636 if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
2637 || PACKET_remaining(pkt) != 0) {
2638 *al = SSL_AD_DECODE_ERROR;
2639 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_LENGTH_MISMATCH);
2645 * We want to be sure that the plaintext buffer size makes it safe to
2646 * iterate over the entire size of a premaster secret
2647 * (SSL_MAX_MASTER_KEY_LENGTH). Reject overly short RSA keys because
2648 * their ciphertext cannot accommodate a premaster secret anyway.
2650 if (RSA_size(rsa) < SSL_MAX_MASTER_KEY_LENGTH) {
2651 *al = SSL_AD_INTERNAL_ERROR;
2652 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, RSA_R_KEY_SIZE_TOO_SMALL);
2656 rsa_decrypt = OPENSSL_malloc(RSA_size(rsa));
2657 if (rsa_decrypt == NULL) {
2658 *al = SSL_AD_INTERNAL_ERROR;
2659 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_MALLOC_FAILURE);
2664 * We must not leak whether a decryption failure occurs because of
2665 * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2666 * section 7.4.7.1). The code follows that advice of the TLS RFC and
2667 * generates a random premaster secret for the case that the decrypt
2668 * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
2671 if (RAND_bytes(rand_premaster_secret, sizeof(rand_premaster_secret)) <= 0)
2675 * Decrypt with no padding. PKCS#1 padding will be removed as part of
2676 * the timing-sensitive code below.
2678 /* TODO(size_t): Convert this function */
2679 decrypt_len = (int)RSA_private_decrypt((int)PACKET_remaining(&enc_premaster),
2680 PACKET_data(&enc_premaster),
2681 rsa_decrypt, rsa, RSA_NO_PADDING);
2682 if (decrypt_len < 0)
2685 /* Check the padding. See RFC 3447, section 7.2.2. */
2688 * The smallest padded premaster is 11 bytes of overhead. Small keys
2689 * are publicly invalid, so this may return immediately. This ensures
2690 * PS is at least 8 bytes.
2692 if (decrypt_len < 11 + SSL_MAX_MASTER_KEY_LENGTH) {
2693 *al = SSL_AD_DECRYPT_ERROR;
2694 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_DECRYPTION_FAILED);
2698 padding_len = decrypt_len - SSL_MAX_MASTER_KEY_LENGTH;
2699 decrypt_good = constant_time_eq_int_8(rsa_decrypt[0], 0) &
2700 constant_time_eq_int_8(rsa_decrypt[1], 2);
2701 for (j = 2; j < padding_len - 1; j++) {
2702 decrypt_good &= ~constant_time_is_zero_8(rsa_decrypt[j]);
2704 decrypt_good &= constant_time_is_zero_8(rsa_decrypt[padding_len - 1]);
2707 * If the version in the decrypted pre-master secret is correct then
2708 * version_good will be 0xff, otherwise it'll be zero. The
2709 * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2710 * (http://eprint.iacr.org/2003/052/) exploits the version number
2711 * check as a "bad version oracle". Thus version checks are done in
2712 * constant time and are treated like any other decryption error.
2715 constant_time_eq_8(rsa_decrypt[padding_len],
2716 (unsigned)(s->client_version >> 8));
2718 constant_time_eq_8(rsa_decrypt[padding_len + 1],
2719 (unsigned)(s->client_version & 0xff));
2722 * The premaster secret must contain the same version number as the
2723 * ClientHello to detect version rollback attacks (strangely, the
2724 * protocol does not offer such protection for DH ciphersuites).
2725 * However, buggy clients exist that send the negotiated protocol
2726 * version instead if the server does not support the requested
2727 * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
2730 if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
2731 unsigned char workaround_good;
2732 workaround_good = constant_time_eq_8(rsa_decrypt[padding_len],
2733 (unsigned)(s->version >> 8));
2735 constant_time_eq_8(rsa_decrypt[padding_len + 1],
2736 (unsigned)(s->version & 0xff));
2737 version_good |= workaround_good;
2741 * Both decryption and version must be good for decrypt_good to
2742 * remain non-zero (0xff).
2744 decrypt_good &= version_good;
2747 * Now copy rand_premaster_secret over from p using
2748 * decrypt_good_mask. If decryption failed, then p does not
2749 * contain valid plaintext, however, a check above guarantees
2750 * it is still sufficiently large to read from.
2752 for (j = 0; j < sizeof(rand_premaster_secret); j++) {
2753 rsa_decrypt[padding_len + j] =
2754 constant_time_select_8(decrypt_good,
2755 rsa_decrypt[padding_len + j],
2756 rand_premaster_secret[j]);
2759 if (!ssl_generate_master_secret(s, rsa_decrypt + padding_len,
2760 sizeof(rand_premaster_secret), 0)) {
2761 *al = SSL_AD_INTERNAL_ERROR;
2762 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2768 OPENSSL_free(rsa_decrypt);
2771 /* Should never happen */
2772 *al = SSL_AD_INTERNAL_ERROR;
2773 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2778 static int tls_process_cke_dhe(SSL *s, PACKET *pkt, int *al)
2780 #ifndef OPENSSL_NO_DH
2781 EVP_PKEY *skey = NULL;
2785 const unsigned char *data;
2786 EVP_PKEY *ckey = NULL;
2789 if (!PACKET_get_net_2(pkt, &i) || PACKET_remaining(pkt) != i) {
2790 *al = SSL_AD_HANDSHAKE_FAILURE;
2791 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE,
2792 SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2795 skey = s->s3->tmp.pkey;
2797 *al = SSL_AD_HANDSHAKE_FAILURE;
2798 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2802 if (PACKET_remaining(pkt) == 0L) {
2803 *al = SSL_AD_HANDSHAKE_FAILURE;
2804 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2807 if (!PACKET_get_bytes(pkt, &data, i)) {
2808 /* We already checked we have enough data */
2809 *al = SSL_AD_INTERNAL_ERROR;
2810 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2813 ckey = EVP_PKEY_new();
2814 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) {
2815 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_BN_LIB);
2818 cdh = EVP_PKEY_get0_DH(ckey);
2819 pub_key = BN_bin2bn(data, i, NULL);
2821 if (pub_key == NULL || !DH_set0_key(cdh, pub_key, NULL)) {
2822 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2823 if (pub_key != NULL)
2828 if (ssl_derive(s, skey, ckey, 1) == 0) {
2829 *al = SSL_AD_INTERNAL_ERROR;
2830 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2835 EVP_PKEY_free(s->s3->tmp.pkey);
2836 s->s3->tmp.pkey = NULL;
2838 EVP_PKEY_free(ckey);
2841 /* Should never happen */
2842 *al = SSL_AD_INTERNAL_ERROR;
2843 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2848 static int tls_process_cke_ecdhe(SSL *s, PACKET *pkt, int *al)
2850 #ifndef OPENSSL_NO_EC
2851 EVP_PKEY *skey = s->s3->tmp.pkey;
2852 EVP_PKEY *ckey = NULL;
2855 if (PACKET_remaining(pkt) == 0L) {
2856 /* We don't support ECDH client auth */
2857 *al = SSL_AD_HANDSHAKE_FAILURE;
2858 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_MISSING_TMP_ECDH_KEY);
2862 const unsigned char *data;
2865 * Get client's public key from encoded point in the
2866 * ClientKeyExchange message.
2869 /* Get encoded point length */
2870 if (!PACKET_get_1(pkt, &i) || !PACKET_get_bytes(pkt, &data, i)
2871 || PACKET_remaining(pkt) != 0) {
2872 *al = SSL_AD_DECODE_ERROR;
2873 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_LENGTH_MISMATCH);
2876 ckey = EVP_PKEY_new();
2877 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) {
2878 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EVP_LIB);
2881 if (EVP_PKEY_set1_tls_encodedpoint(ckey, data, i) == 0) {
2882 *al = SSL_AD_HANDSHAKE_FAILURE;
2883 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EC_LIB);
2888 if (ssl_derive(s, skey, ckey, 1) == 0) {
2889 *al = SSL_AD_INTERNAL_ERROR;
2890 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2895 EVP_PKEY_free(s->s3->tmp.pkey);
2896 s->s3->tmp.pkey = NULL;
2898 EVP_PKEY_free(ckey);
2902 /* Should never happen */
2903 *al = SSL_AD_INTERNAL_ERROR;
2904 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2909 static int tls_process_cke_srp(SSL *s, PACKET *pkt, int *al)
2911 #ifndef OPENSSL_NO_SRP
2913 const unsigned char *data;
2915 if (!PACKET_get_net_2(pkt, &i)
2916 || !PACKET_get_bytes(pkt, &data, i)) {
2917 *al = SSL_AD_DECODE_ERROR;
2918 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_A_LENGTH);
2921 if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
2922 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_BN_LIB);
2925 if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) {
2926 *al = SSL_AD_ILLEGAL_PARAMETER;
2927 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_PARAMETERS);
2930 OPENSSL_free(s->session->srp_username);
2931 s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
2932 if (s->session->srp_username == NULL) {
2933 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_MALLOC_FAILURE);
2937 if (!srp_generate_server_master_secret(s)) {
2938 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2944 /* Should never happen */
2945 *al = SSL_AD_INTERNAL_ERROR;
2946 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2951 static int tls_process_cke_gost(SSL *s, PACKET *pkt, int *al)
2953 #ifndef OPENSSL_NO_GOST
2954 EVP_PKEY_CTX *pkey_ctx;
2955 EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2956 unsigned char premaster_secret[32];
2957 const unsigned char *start;
2958 size_t outlen = 32, inlen;
2959 unsigned long alg_a;
2962 size_t sess_key_len;
2963 const unsigned char *data;
2966 /* Get our certificate private key */
2967 alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2968 if (alg_a & SSL_aGOST12) {
2970 * New GOST ciphersuites have SSL_aGOST01 bit too
2972 pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey;
2974 pk = s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
2977 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2979 } else if (alg_a & SSL_aGOST01) {
2980 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2983 pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
2984 if (pkey_ctx == NULL) {
2985 *al = SSL_AD_INTERNAL_ERROR;
2986 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_MALLOC_FAILURE);
2989 if (EVP_PKEY_decrypt_init(pkey_ctx) <= 0) {
2990 *al = SSL_AD_INTERNAL_ERROR;
2991 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2995 * If client certificate is present and is of the same type, maybe
2996 * use it for key exchange. Don't mind errors from
2997 * EVP_PKEY_derive_set_peer, because it is completely valid to use a
2998 * client certificate for authorization only.
3000 client_pub_pkey = X509_get0_pubkey(s->session->peer);
3001 if (client_pub_pkey) {
3002 if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
3005 /* Decrypt session key */
3006 sess_key_len = PACKET_remaining(pkt);
3007 if (!PACKET_get_bytes(pkt, &data, sess_key_len)) {
3008 *al = SSL_AD_INTERNAL_ERROR;
3009 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
3012 /* TODO(size_t): Convert this function */
3013 if (ASN1_get_object((const unsigned char **)&data, &Tlen, &Ttag,
3014 &Tclass, (long)sess_key_len) != V_ASN1_CONSTRUCTED
3015 || Ttag != V_ASN1_SEQUENCE || Tclass != V_ASN1_UNIVERSAL) {
3016 *al = SSL_AD_DECODE_ERROR;
3017 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
3022 if (EVP_PKEY_decrypt
3023 (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
3024 *al = SSL_AD_DECODE_ERROR;
3025 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
3028 /* Generate master secret */
3029 if (!ssl_generate_master_secret(s, premaster_secret,
3030 sizeof(premaster_secret), 0)) {
3031 *al = SSL_AD_INTERNAL_ERROR;
3032 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
3035 /* Check if pubkey from client certificate was used */
3036 if (EVP_PKEY_CTX_ctrl
3037 (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
3038 s->statem.no_cert_verify = 1;
3042 EVP_PKEY_CTX_free(pkey_ctx);
3045 /* Should never happen */
3046 *al = SSL_AD_INTERNAL_ERROR;
3047 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
3052 MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL *s, PACKET *pkt)
3055 unsigned long alg_k;
3057 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3059 /* For PSK parse and retrieve identity, obtain PSK key */
3060 if ((alg_k & SSL_PSK) && !tls_process_cke_psk_preamble(s, pkt, &al))
3063 if (alg_k & SSL_kPSK) {
3064 /* Identity extracted earlier: should be nothing left */
3065 if (PACKET_remaining(pkt) != 0) {
3066 al = SSL_AD_HANDSHAKE_FAILURE;
3067 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
3068 SSL_R_LENGTH_MISMATCH);
3071 /* PSK handled by ssl_generate_master_secret */
3072 if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
3073 al = SSL_AD_INTERNAL_ERROR;
3074 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
3077 } else if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
3078 if (!tls_process_cke_rsa(s, pkt, &al))
3080 } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
3081 if (!tls_process_cke_dhe(s, pkt, &al))
3083 } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
3084 if (!tls_process_cke_ecdhe(s, pkt, &al))
3086 } else if (alg_k & SSL_kSRP) {
3087 if (!tls_process_cke_srp(s, pkt, &al))
3089 } else if (alg_k & SSL_kGOST) {
3090 if (!tls_process_cke_gost(s, pkt, &al))
3093 al = SSL_AD_HANDSHAKE_FAILURE;
3094 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
3095 SSL_R_UNKNOWN_CIPHER_TYPE);
3099 return MSG_PROCESS_CONTINUE_PROCESSING;
3102 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3103 #ifndef OPENSSL_NO_PSK
3104 OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
3105 s->s3->tmp.psk = NULL;
3107 ossl_statem_set_error(s);
3108 return MSG_PROCESS_ERROR;
3111 WORK_STATE tls_post_process_client_key_exchange(SSL *s, WORK_STATE wst)
3113 #ifndef OPENSSL_NO_SCTP
3114 if (wst == WORK_MORE_A) {
3115 if (SSL_IS_DTLS(s)) {
3116 unsigned char sctpauthkey[64];
3117 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
3119 * Add new shared key for SCTP-Auth, will be ignored if no SCTP
3122 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
3123 sizeof(DTLS1_SCTP_AUTH_LABEL));
3125 if (SSL_export_keying_material(s, sctpauthkey,
3126 sizeof(sctpauthkey), labelbuffer,
3127 sizeof(labelbuffer), NULL, 0,
3129 ossl_statem_set_error(s);
3133 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
3134 sizeof(sctpauthkey), sctpauthkey);
3139 if ((wst == WORK_MORE_B)
3141 && BIO_dgram_is_sctp(SSL_get_wbio(s))
3142 /* Are we renegotiating? */
3144 /* Are we going to skip the CertificateVerify? */
3145 && (s->session->peer == NULL || s->statem.no_cert_verify)
3146 && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
3147 s->s3->in_read_app_data = 2;
3148 s->rwstate = SSL_READING;
3149 BIO_clear_retry_flags(SSL_get_rbio(s));
3150 BIO_set_retry_read(SSL_get_rbio(s));
3151 ossl_statem_set_sctp_read_sock(s, 1);
3154 ossl_statem_set_sctp_read_sock(s, 0);
3158 if (s->statem.no_cert_verify || !s->session->peer) {
3160 * No certificate verify or no peer certificate so we no longer need
3161 * the handshake_buffer
3163 if (!ssl3_digest_cached_records(s, 0)) {
3164 ossl_statem_set_error(s);
3167 return WORK_FINISHED_CONTINUE;
3169 if (!s->s3->handshake_buffer) {
3170 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_KEY_EXCHANGE,
3171 ERR_R_INTERNAL_ERROR);
3172 ossl_statem_set_error(s);
3176 * For sigalgs freeze the handshake buffer. If we support
3177 * extms we've done this already so this is a no-op
3179 if (!ssl3_digest_cached_records(s, 1)) {
3180 ossl_statem_set_error(s);
3185 return WORK_FINISHED_CONTINUE;
3188 MSG_PROCESS_RETURN tls_process_client_certificate(SSL *s, PACKET *pkt)
3190 int i, al = SSL_AD_INTERNAL_ERROR, ret = MSG_PROCESS_ERROR;
3192 unsigned long l, llen;
3193 const unsigned char *certstart, *certbytes;
3194 STACK_OF(X509) *sk = NULL;
3195 PACKET spkt, context;
3198 if ((sk = sk_X509_new_null()) == NULL) {
3199 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3203 /* TODO(TLS1.3): For now we ignore the context. We need to verify this */
3204 if ((SSL_IS_TLS13(s) && !PACKET_get_length_prefixed_1(pkt, &context))
3205 || !PACKET_get_net_3(pkt, &llen)
3206 || !PACKET_get_sub_packet(pkt, &spkt, llen)
3207 || PACKET_remaining(pkt) != 0) {
3208 al = SSL_AD_DECODE_ERROR;
3209 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
3213 for (chainidx = 0; PACKET_remaining(&spkt) > 0; chainidx++) {
3214 if (!PACKET_get_net_3(&spkt, &l)
3215 || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3216 al = SSL_AD_DECODE_ERROR;
3217 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3218 SSL_R_CERT_LENGTH_MISMATCH);
3222 certstart = certbytes;
3223 x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
3225 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
3228 if (certbytes != (certstart + l)) {
3229 al = SSL_AD_DECODE_ERROR;
3230 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3231 SSL_R_CERT_LENGTH_MISMATCH);
3235 if (SSL_IS_TLS13(s)) {
3236 RAW_EXTENSION *rawexts = NULL;
3239 if (!PACKET_get_length_prefixed_2(&spkt, &extensions)) {
3240 al = SSL_AD_DECODE_ERROR;
3241 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_BAD_LENGTH);
3244 if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_CERTIFICATE,
3245 &rawexts, &al, NULL)
3246 || !tls_parse_all_extensions(s, EXT_TLS1_3_CERTIFICATE,
3247 rawexts, x, chainidx, &al)) {
3248 OPENSSL_free(rawexts);
3251 OPENSSL_free(rawexts);
3254 if (!sk_X509_push(sk, x)) {
3255 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3261 if (sk_X509_num(sk) <= 0) {
3262 /* TLS does not mind 0 certs returned */
3263 if (s->version == SSL3_VERSION) {
3264 al = SSL_AD_HANDSHAKE_FAILURE;
3265 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3266 SSL_R_NO_CERTIFICATES_RETURNED);
3269 /* Fail for TLS only if we required a certificate */
3270 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3271 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3272 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3273 SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3274 al = SSL_AD_HANDSHAKE_FAILURE;
3277 /* No client certificate so digest cached records */
3278 if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
3283 i = ssl_verify_cert_chain(s, sk);
3285 al = ssl_verify_alarm_type(s->verify_result);
3286 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3287 SSL_R_CERTIFICATE_VERIFY_FAILED);
3291 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, i);
3292 al = SSL_AD_HANDSHAKE_FAILURE;
3295 pkey = X509_get0_pubkey(sk_X509_value(sk, 0));
3297 al = SSL3_AD_HANDSHAKE_FAILURE;
3298 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3299 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
3304 X509_free(s->session->peer);
3305 s->session->peer = sk_X509_shift(sk);
3306 s->session->verify_result = s->verify_result;
3308 sk_X509_pop_free(s->session->peer_chain, X509_free);
3309 s->session->peer_chain = sk;
3312 * Freeze the handshake buffer. For <TLS1.3 we do this after the CKE
3315 if (SSL_IS_TLS13(s) && !ssl3_digest_cached_records(s, 1)) {
3316 al = SSL_AD_INTERNAL_ERROR;
3317 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3322 * Inconsistency alert: cert_chain does *not* include the peer's own
3323 * certificate, while we do include it in statem_clnt.c
3327 /* Save the current hash state for when we receive the CertificateVerify */
3329 && !ssl_handshake_hash(s, s->cert_verify_hash,
3330 sizeof(s->cert_verify_hash),
3331 &s->cert_verify_hash_len)) {
3332 al = SSL_AD_INTERNAL_ERROR;
3333 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3337 ret = MSG_PROCESS_CONTINUE_READING;
3341 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3342 ossl_statem_set_error(s);
3345 sk_X509_pop_free(sk, X509_free);
3349 int tls_construct_server_certificate(SSL *s, WPACKET *pkt)
3351 CERT_PKEY *cpk = s->s3->tmp.cert;
3352 int al = SSL_AD_INTERNAL_ERROR;
3355 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3360 * In TLSv1.3 the certificate chain is always preceded by a 0 length context
3361 * for the server Certificate message
3363 if ((SSL_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0))
3364 || !ssl3_output_cert_chain(s, pkt, cpk, &al)) {
3365 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3366 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3373 int tls_construct_new_session_ticket(SSL *s, WPACKET *pkt)
3375 unsigned char *senc = NULL;
3376 EVP_CIPHER_CTX *ctx = NULL;
3377 HMAC_CTX *hctx = NULL;
3378 unsigned char *p, *encdata1, *encdata2, *macdata1, *macdata2;
3379 const unsigned char *const_p;
3380 int len, slen_full, slen, lenfinal;
3383 SSL_CTX *tctx = s->session_ctx;
3384 unsigned char iv[EVP_MAX_IV_LENGTH];
3385 unsigned char key_name[TLSEXT_KEYNAME_LENGTH];
3386 int iv_len, al = SSL_AD_INTERNAL_ERROR;
3387 size_t macoffset, macendoffset;
3389 unsigned char age_add_c[sizeof(uint32_t)];
3393 if (SSL_IS_TLS13(s)) {
3394 if (RAND_bytes(age_add_u.age_add_c, sizeof(age_add_u)) <= 0)
3396 s->session->ext.tick_age_add = age_add_u.age_add;
3399 /* get session encoding length */
3400 slen_full = i2d_SSL_SESSION(s->session, NULL);
3402 * Some length values are 16 bits, so forget it if session is too
3405 if (slen_full == 0 || slen_full > 0xFF00) {
3406 ossl_statem_set_error(s);
3409 senc = OPENSSL_malloc(slen_full);
3411 ossl_statem_set_error(s);
3415 ctx = EVP_CIPHER_CTX_new();
3416 hctx = HMAC_CTX_new();
3417 if (ctx == NULL || hctx == NULL) {
3418 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
3423 if (!i2d_SSL_SESSION(s->session, &p))
3427 * create a fresh copy (not shared with other threads) to clean up
3430 sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3433 sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3435 slen = i2d_SSL_SESSION(sess, NULL);
3436 if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
3437 SSL_SESSION_free(sess);
3441 if (!i2d_SSL_SESSION(sess, &p)) {
3442 SSL_SESSION_free(sess);
3445 SSL_SESSION_free(sess);
3448 * Initialize HMAC and cipher contexts. If callback present it does
3449 * all the work otherwise use generated values from parent ctx.
3451 if (tctx->ext.ticket_key_cb) {
3452 /* if 0 is returned, write an empty ticket */
3453 int ret = tctx->ext.ticket_key_cb(s, key_name, iv, ctx,
3458 /* Put timeout and length */
3459 if (!WPACKET_put_bytes_u32(pkt, 0)
3460 || !WPACKET_put_bytes_u16(pkt, 0)) {
3461 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET,
3462 ERR_R_INTERNAL_ERROR);
3466 EVP_CIPHER_CTX_free(ctx);
3467 HMAC_CTX_free(hctx);
3472 iv_len = EVP_CIPHER_CTX_iv_length(ctx);
3474 const EVP_CIPHER *cipher = EVP_aes_256_cbc();
3476 iv_len = EVP_CIPHER_iv_length(cipher);
3477 if (RAND_bytes(iv, iv_len) <= 0)
3479 if (!EVP_EncryptInit_ex(ctx, cipher, NULL,
3480 tctx->ext.tick_aes_key, iv))
3482 if (!HMAC_Init_ex(hctx, tctx->ext.tick_hmac_key,
3483 sizeof(tctx->ext.tick_hmac_key),
3484 EVP_sha256(), NULL))
3486 memcpy(key_name, tctx->ext.tick_key_name,
3487 sizeof(tctx->ext.tick_key_name));
3491 * Ticket lifetime hint (advisory only): We leave this unspecified
3492 * for resumed session (for simplicity), and guess that tickets for
3493 * new sessions will live as long as their sessions.
3495 if (!WPACKET_put_bytes_u32(pkt, s->hit ? 0 : s->session->timeout)
3497 && !WPACKET_put_bytes_u32(pkt, age_add_u.age_add))
3498 /* Now the actual ticket data */
3499 || !WPACKET_start_sub_packet_u16(pkt)
3500 || !WPACKET_get_total_written(pkt, &macoffset)
3501 /* Output key name */
3502 || !WPACKET_memcpy(pkt, key_name, sizeof(key_name))
3504 || !WPACKET_memcpy(pkt, iv, iv_len)
3505 || !WPACKET_reserve_bytes(pkt, slen + EVP_MAX_BLOCK_LENGTH,
3507 /* Encrypt session data */
3508 || !EVP_EncryptUpdate(ctx, encdata1, &len, senc, slen)
3509 || !WPACKET_allocate_bytes(pkt, len, &encdata2)
3510 || encdata1 != encdata2
3511 || !EVP_EncryptFinal(ctx, encdata1 + len, &lenfinal)
3512 || !WPACKET_allocate_bytes(pkt, lenfinal, &encdata2)
3513 || encdata1 + len != encdata2
3514 || len + lenfinal > slen + EVP_MAX_BLOCK_LENGTH
3515 || !WPACKET_get_total_written(pkt, &macendoffset)
3516 || !HMAC_Update(hctx,
3517 (unsigned char *)s->init_buf->data + macoffset,
3518 macendoffset - macoffset)
3519 || !WPACKET_reserve_bytes(pkt, EVP_MAX_MD_SIZE, &macdata1)
3520 || !HMAC_Final(hctx, macdata1, &hlen)
3521 || hlen > EVP_MAX_MD_SIZE
3522 || !WPACKET_allocate_bytes(pkt, hlen, &macdata2)
3523 || macdata1 != macdata2
3524 || !WPACKET_close(pkt)
3526 && !tls_construct_extensions(s, pkt,
3527 EXT_TLS1_3_NEW_SESSION_TICKET,
3529 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_INTERNAL_ERROR);
3532 EVP_CIPHER_CTX_free(ctx);
3533 HMAC_CTX_free(hctx);
3539 EVP_CIPHER_CTX_free(ctx);
3540 HMAC_CTX_free(hctx);
3541 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3546 * In TLSv1.3 this is called from the extensions code, otherwise it is used to
3547 * create a separate message. Returns 1 on success or 0 on failure.
3549 int tls_construct_cert_status_body(SSL *s, WPACKET *pkt)
3551 if (!WPACKET_put_bytes_u8(pkt, s->ext.status_type)
3552 || !WPACKET_sub_memcpy_u24(pkt, s->ext.ocsp.resp,
3553 s->ext.ocsp.resp_len)) {
3554 SSLerr(SSL_F_TLS_CONSTRUCT_CERT_STATUS_BODY, ERR_R_INTERNAL_ERROR);
3561 int tls_construct_cert_status(SSL *s, WPACKET *pkt)
3563 if (!tls_construct_cert_status_body(s, pkt)) {
3564 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3571 #ifndef OPENSSL_NO_NEXTPROTONEG
3573 * tls_process_next_proto reads a Next Protocol Negotiation handshake message.
3574 * It sets the next_proto member in s if found
3576 MSG_PROCESS_RETURN tls_process_next_proto(SSL *s, PACKET *pkt)
3578 PACKET next_proto, padding;
3579 size_t next_proto_len;
3582 * The payload looks like:
3584 * uint8 proto[proto_len];
3585 * uint8 padding_len;
3586 * uint8 padding[padding_len];
3588 if (!PACKET_get_length_prefixed_1(pkt, &next_proto)
3589 || !PACKET_get_length_prefixed_1(pkt, &padding)
3590 || PACKET_remaining(pkt) > 0) {
3591 SSLerr(SSL_F_TLS_PROCESS_NEXT_PROTO, SSL_R_LENGTH_MISMATCH);
3595 if (!PACKET_memdup(&next_proto, &s->ext.npn, &next_proto_len)) {
3600 s->ext.npn_len = (unsigned char)next_proto_len;
3602 return MSG_PROCESS_CONTINUE_READING;
3604 ossl_statem_set_error(s);
3605 return MSG_PROCESS_ERROR;
3609 static int tls_construct_encrypted_extensions(SSL *s, WPACKET *pkt)
3613 if (!tls_construct_extensions(s, pkt, EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3615 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3616 SSLerr(SSL_F_TLS_CONSTRUCT_ENCRYPTED_EXTENSIONS, ERR_R_INTERNAL_ERROR);
3617 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3624 static int tls_construct_hello_retry_request(SSL *s, WPACKET *pkt)
3626 int al = SSL_AD_INTERNAL_ERROR;
3629 * TODO(TLS1.3): Remove the DRAFT version before release
3630 * (should be s->version)
3632 if (!WPACKET_put_bytes_u16(pkt, TLS1_3_VERSION_DRAFT)
3633 || !tls_construct_extensions(s, pkt, EXT_TLS1_3_HELLO_RETRY_REQUEST,
3635 SSLerr(SSL_F_TLS_CONSTRUCT_HELLO_RETRY_REQUEST, ERR_R_INTERNAL_ERROR);
3636 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3640 /* Ditch the session. We'll create a new one next time around */
3641 SSL_SESSION_free(s->session);