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->key_update != SSL_KEY_UPDATE_NONE) {
410 st->hand_state = TLS_ST_SW_KEY_UPDATE;
411 return WRITE_TRAN_CONTINUE;
413 /* Try to read from the client instead */
414 return WRITE_TRAN_FINISHED;
416 case TLS_ST_SR_CLNT_HELLO:
417 if (s->hello_retry_request)
418 st->hand_state = TLS_ST_SW_HELLO_RETRY_REQUEST;
420 st->hand_state = TLS_ST_SW_SRVR_HELLO;
421 return WRITE_TRAN_CONTINUE;
423 case TLS_ST_SW_HELLO_RETRY_REQUEST:
424 return WRITE_TRAN_FINISHED;
426 case TLS_ST_SW_SRVR_HELLO:
427 st->hand_state = TLS_ST_SW_ENCRYPTED_EXTENSIONS;
428 return WRITE_TRAN_CONTINUE;
430 case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
432 st->hand_state = TLS_ST_SW_FINISHED;
433 else if (send_certificate_request(s))
434 st->hand_state = TLS_ST_SW_CERT_REQ;
436 st->hand_state = TLS_ST_SW_CERT;
438 return WRITE_TRAN_CONTINUE;
440 case TLS_ST_SW_CERT_REQ:
441 st->hand_state = TLS_ST_SW_CERT;
442 return WRITE_TRAN_CONTINUE;
445 st->hand_state = TLS_ST_SW_CERT_VRFY;
446 return WRITE_TRAN_CONTINUE;
448 case TLS_ST_SW_CERT_VRFY:
449 st->hand_state = TLS_ST_SW_FINISHED;
450 return WRITE_TRAN_CONTINUE;
452 case TLS_ST_SW_FINISHED:
453 return WRITE_TRAN_FINISHED;
455 case TLS_ST_SR_FINISHED:
457 * Technically we have finished the handshake at this point, but we're
458 * going to remain "in_init" for now and write out the session ticket
460 * TODO(TLS1.3): Perhaps we need to be able to control this behaviour
461 * and give the application the opportunity to delay sending the
464 st->hand_state = TLS_ST_SW_SESSION_TICKET;
465 return WRITE_TRAN_CONTINUE;
467 case TLS_ST_SR_KEY_UPDATE:
468 if (s->key_update != SSL_KEY_UPDATE_NONE) {
469 st->hand_state = TLS_ST_SW_KEY_UPDATE;
470 return WRITE_TRAN_CONTINUE;
474 case TLS_ST_SW_KEY_UPDATE:
475 case TLS_ST_SW_SESSION_TICKET:
476 st->hand_state = TLS_ST_OK;
477 ossl_statem_set_in_init(s, 0);
478 return WRITE_TRAN_CONTINUE;
483 * ossl_statem_server_write_transition() works out what handshake state to move
484 * to next when the server is writing messages to be sent to the client.
486 WRITE_TRAN ossl_statem_server_write_transition(SSL *s)
488 OSSL_STATEM *st = &s->statem;
491 * Note that before the ClientHello we don't know what version we are going
492 * to negotiate yet, so we don't take this branch until later
496 return ossl_statem_server13_write_transition(s);
498 switch (st->hand_state) {
500 /* Shouldn't happen */
501 return WRITE_TRAN_ERROR;
504 if (st->request_state == TLS_ST_SW_HELLO_REQ) {
505 /* We must be trying to renegotiate */
506 st->hand_state = TLS_ST_SW_HELLO_REQ;
507 st->request_state = TLS_ST_BEFORE;
508 return WRITE_TRAN_CONTINUE;
510 /* Must be an incoming ClientHello */
511 if (!tls_setup_handshake(s)) {
512 ossl_statem_set_error(s);
513 return WRITE_TRAN_ERROR;
518 /* Just go straight to trying to read from the client */
519 return WRITE_TRAN_FINISHED;
521 case TLS_ST_SW_HELLO_REQ:
522 st->hand_state = TLS_ST_OK;
523 ossl_statem_set_in_init(s, 0);
524 return WRITE_TRAN_CONTINUE;
526 case TLS_ST_SR_CLNT_HELLO:
527 if (SSL_IS_DTLS(s) && !s->d1->cookie_verified
528 && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
529 st->hand_state = DTLS_ST_SW_HELLO_VERIFY_REQUEST;
531 st->hand_state = TLS_ST_SW_SRVR_HELLO;
532 return WRITE_TRAN_CONTINUE;
534 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
535 return WRITE_TRAN_FINISHED;
537 case TLS_ST_SW_SRVR_HELLO:
539 if (s->ext.ticket_expected)
540 st->hand_state = TLS_ST_SW_SESSION_TICKET;
542 st->hand_state = TLS_ST_SW_CHANGE;
544 /* Check if it is anon DH or anon ECDH, */
545 /* normal PSK or SRP */
546 if (!(s->s3->tmp.new_cipher->algorithm_auth &
547 (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
548 st->hand_state = TLS_ST_SW_CERT;
549 } else if (send_server_key_exchange(s)) {
550 st->hand_state = TLS_ST_SW_KEY_EXCH;
551 } else if (send_certificate_request(s)) {
552 st->hand_state = TLS_ST_SW_CERT_REQ;
554 st->hand_state = TLS_ST_SW_SRVR_DONE;
557 return WRITE_TRAN_CONTINUE;
560 if (s->ext.status_expected) {
561 st->hand_state = TLS_ST_SW_CERT_STATUS;
562 return WRITE_TRAN_CONTINUE;
566 case TLS_ST_SW_CERT_STATUS:
567 if (send_server_key_exchange(s)) {
568 st->hand_state = TLS_ST_SW_KEY_EXCH;
569 return WRITE_TRAN_CONTINUE;
573 case TLS_ST_SW_KEY_EXCH:
574 if (send_certificate_request(s)) {
575 st->hand_state = TLS_ST_SW_CERT_REQ;
576 return WRITE_TRAN_CONTINUE;
580 case TLS_ST_SW_CERT_REQ:
581 st->hand_state = TLS_ST_SW_SRVR_DONE;
582 return WRITE_TRAN_CONTINUE;
584 case TLS_ST_SW_SRVR_DONE:
585 return WRITE_TRAN_FINISHED;
587 case TLS_ST_SR_FINISHED:
589 st->hand_state = TLS_ST_OK;
590 ossl_statem_set_in_init(s, 0);
591 return WRITE_TRAN_CONTINUE;
592 } else if (s->ext.ticket_expected) {
593 st->hand_state = TLS_ST_SW_SESSION_TICKET;
595 st->hand_state = TLS_ST_SW_CHANGE;
597 return WRITE_TRAN_CONTINUE;
599 case TLS_ST_SW_SESSION_TICKET:
600 st->hand_state = TLS_ST_SW_CHANGE;
601 return WRITE_TRAN_CONTINUE;
603 case TLS_ST_SW_CHANGE:
604 st->hand_state = TLS_ST_SW_FINISHED;
605 return WRITE_TRAN_CONTINUE;
607 case TLS_ST_SW_FINISHED:
609 return WRITE_TRAN_FINISHED;
611 st->hand_state = TLS_ST_OK;
612 ossl_statem_set_in_init(s, 0);
613 return WRITE_TRAN_CONTINUE;
618 * Perform any pre work that needs to be done prior to sending a message from
619 * the server to the client.
621 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst)
623 OSSL_STATEM *st = &s->statem;
625 switch (st->hand_state) {
627 /* No pre work to be done */
630 case TLS_ST_SW_HELLO_REQ:
633 dtls1_clear_sent_buffer(s);
636 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
638 if (SSL_IS_DTLS(s)) {
639 dtls1_clear_sent_buffer(s);
640 /* We don't buffer this message so don't use the timer */
645 case TLS_ST_SW_SRVR_HELLO:
646 if (SSL_IS_DTLS(s)) {
648 * Messages we write from now on should be bufferred and
649 * retransmitted if necessary, so we need to use the timer now
655 case TLS_ST_SW_SRVR_DONE:
656 #ifndef OPENSSL_NO_SCTP
657 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s)))
658 return dtls_wait_for_dry(s);
660 return WORK_FINISHED_CONTINUE;
662 case TLS_ST_SW_SESSION_TICKET:
663 if (SSL_IS_TLS13(s)) {
665 * Actually this is the end of the handshake, but we're going
666 * straight into writing the session ticket out. So we finish off
667 * the handshake, but keep the various buffers active.
669 return tls_finish_handshake(s, wst, 0);
670 } if (SSL_IS_DTLS(s)) {
672 * We're into the last flight. We don't retransmit the last flight
673 * unless we need to, so we don't use the timer
679 case TLS_ST_SW_CHANGE:
680 s->session->cipher = s->s3->tmp.new_cipher;
681 if (!s->method->ssl3_enc->setup_key_block(s)) {
682 ossl_statem_set_error(s);
685 if (SSL_IS_DTLS(s)) {
687 * We're into the last flight. We don't retransmit the last flight
688 * unless we need to, so we don't use the timer. This might have
689 * already been set to 0 if we sent a NewSessionTicket message,
690 * but we'll set it again here in case we didn't.
694 return WORK_FINISHED_CONTINUE;
697 return tls_finish_handshake(s, wst, 1);
700 return WORK_FINISHED_CONTINUE;
704 * Perform any work that needs to be done after sending a message from the
705 * server to the client.
707 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst)
709 OSSL_STATEM *st = &s->statem;
713 switch (st->hand_state) {
715 /* No post work to be done */
718 case TLS_ST_SW_HELLO_RETRY_REQUEST:
719 if (statem_flush(s) != 1)
723 case TLS_ST_SW_HELLO_REQ:
724 if (statem_flush(s) != 1)
726 if (!ssl3_init_finished_mac(s)) {
727 ossl_statem_set_error(s);
732 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
733 if (statem_flush(s) != 1)
735 /* HelloVerifyRequest resets Finished MAC */
736 if (s->version != DTLS1_BAD_VER && !ssl3_init_finished_mac(s)) {
737 ossl_statem_set_error(s);
741 * The next message should be another ClientHello which we need to
742 * treat like it was the first packet
747 case TLS_ST_SW_SRVR_HELLO:
748 #ifndef OPENSSL_NO_SCTP
749 if (SSL_IS_DTLS(s) && s->hit) {
750 unsigned char sctpauthkey[64];
751 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
754 * Add new shared key for SCTP-Auth, will be ignored if no
757 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
758 sizeof(DTLS1_SCTP_AUTH_LABEL));
760 if (SSL_export_keying_material(s, sctpauthkey,
761 sizeof(sctpauthkey), labelbuffer,
762 sizeof(labelbuffer), NULL, 0,
764 ossl_statem_set_error(s);
768 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
769 sizeof(sctpauthkey), sctpauthkey);
773 * TODO(TLS1.3): This actually causes a problem. We don't yet know
774 * whether the next record we are going to receive is an unencrypted
775 * alert, or an encrypted handshake message. We're going to need
776 * something clever in the record layer for this.
778 if (SSL_IS_TLS13(s)) {
779 if (!s->method->ssl3_enc->setup_key_block(s)
780 || !s->method->ssl3_enc->change_cipher_state(s,
781 SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_WRITE)
782 || !s->method->ssl3_enc->change_cipher_state(s,
783 SSL3_CC_HANDSHAKE |SSL3_CHANGE_CIPHER_SERVER_READ))
788 case TLS_ST_SW_CHANGE:
789 #ifndef OPENSSL_NO_SCTP
790 if (SSL_IS_DTLS(s) && !s->hit) {
792 * Change to new shared key of SCTP-Auth, will be ignored if
795 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
799 if (!s->method->ssl3_enc->change_cipher_state(s,
800 SSL3_CHANGE_CIPHER_SERVER_WRITE))
802 ossl_statem_set_error(s);
807 dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
810 case TLS_ST_SW_SRVR_DONE:
811 if (statem_flush(s) != 1)
815 case TLS_ST_SW_FINISHED:
816 if (statem_flush(s) != 1)
818 #ifndef OPENSSL_NO_SCTP
819 if (SSL_IS_DTLS(s) && s->hit) {
821 * Change to new shared key of SCTP-Auth, will be ignored if
824 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
828 if (SSL_IS_TLS13(s)) {
829 if (!s->method->ssl3_enc->generate_master_secret(s,
830 s->master_secret, s->handshake_secret, 0,
831 &s->session->master_key_length)
832 || !s->method->ssl3_enc->change_cipher_state(s,
833 SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_WRITE))
838 case TLS_ST_SW_KEY_UPDATE:
839 if (statem_flush(s) != 1)
841 if (!tls13_update_key(s, 1))
845 case TLS_ST_SW_SESSION_TICKET:
846 if (SSL_IS_TLS13(s) && statem_flush(s) != 1)
851 return WORK_FINISHED_CONTINUE;
855 * Get the message construction function and message type for sending from the
858 * Valid return values are:
862 int ossl_statem_server_construct_message(SSL *s, WPACKET *pkt,
863 confunc_f *confunc, int *mt)
865 OSSL_STATEM *st = &s->statem;
867 switch (st->hand_state) {
869 /* Shouldn't happen */
872 case TLS_ST_SW_CHANGE:
874 *confunc = dtls_construct_change_cipher_spec;
876 *confunc = tls_construct_change_cipher_spec;
877 *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
880 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
881 *confunc = dtls_construct_hello_verify_request;
882 *mt = DTLS1_MT_HELLO_VERIFY_REQUEST;
885 case TLS_ST_SW_HELLO_REQ:
886 /* No construction function needed */
888 *mt = SSL3_MT_HELLO_REQUEST;
891 case TLS_ST_SW_SRVR_HELLO:
892 *confunc = tls_construct_server_hello;
893 *mt = SSL3_MT_SERVER_HELLO;
897 *confunc = tls_construct_server_certificate;
898 *mt = SSL3_MT_CERTIFICATE;
901 case TLS_ST_SW_CERT_VRFY:
902 *confunc = tls_construct_cert_verify;
903 *mt = SSL3_MT_CERTIFICATE_VERIFY;
907 case TLS_ST_SW_KEY_EXCH:
908 *confunc = tls_construct_server_key_exchange;
909 *mt = SSL3_MT_SERVER_KEY_EXCHANGE;
912 case TLS_ST_SW_CERT_REQ:
913 *confunc = tls_construct_certificate_request;
914 *mt = SSL3_MT_CERTIFICATE_REQUEST;
917 case TLS_ST_SW_SRVR_DONE:
918 *confunc = tls_construct_server_done;
919 *mt = SSL3_MT_SERVER_DONE;
922 case TLS_ST_SW_SESSION_TICKET:
923 *confunc = tls_construct_new_session_ticket;
924 *mt = SSL3_MT_NEWSESSION_TICKET;
927 case TLS_ST_SW_CERT_STATUS:
928 *confunc = tls_construct_cert_status;
929 *mt = SSL3_MT_CERTIFICATE_STATUS;
932 case TLS_ST_SW_FINISHED:
933 *confunc = tls_construct_finished;
934 *mt = SSL3_MT_FINISHED;
937 case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
938 *confunc = tls_construct_encrypted_extensions;
939 *mt = SSL3_MT_ENCRYPTED_EXTENSIONS;
942 case TLS_ST_SW_HELLO_RETRY_REQUEST:
943 *confunc = tls_construct_hello_retry_request;
944 *mt = SSL3_MT_HELLO_RETRY_REQUEST;
947 case TLS_ST_SW_KEY_UPDATE:
948 *confunc = tls_construct_key_update;
949 *mt = SSL3_MT_KEY_UPDATE;
957 * Maximum size (excluding the Handshake header) of a ClientHello message,
958 * calculated as follows:
960 * 2 + # client_version
961 * 32 + # only valid length for random
962 * 1 + # length of session_id
963 * 32 + # maximum size for session_id
964 * 2 + # length of cipher suites
965 * 2^16-2 + # maximum length of cipher suites array
966 * 1 + # length of compression_methods
967 * 2^8-1 + # maximum length of compression methods
968 * 2 + # length of extensions
969 * 2^16-1 # maximum length of extensions
971 #define CLIENT_HELLO_MAX_LENGTH 131396
973 #define CLIENT_KEY_EXCH_MAX_LENGTH 2048
974 #define NEXT_PROTO_MAX_LENGTH 514
977 * Returns the maximum allowed length for the current message that we are
978 * reading. Excludes the message header.
980 size_t ossl_statem_server_max_message_size(SSL *s)
982 OSSL_STATEM *st = &s->statem;
984 switch (st->hand_state) {
986 /* Shouldn't happen */
989 case TLS_ST_SR_CLNT_HELLO:
990 return CLIENT_HELLO_MAX_LENGTH;
993 return s->max_cert_list;
995 case TLS_ST_SR_KEY_EXCH:
996 return CLIENT_KEY_EXCH_MAX_LENGTH;
998 case TLS_ST_SR_CERT_VRFY:
999 return SSL3_RT_MAX_PLAIN_LENGTH;
1001 #ifndef OPENSSL_NO_NEXTPROTONEG
1002 case TLS_ST_SR_NEXT_PROTO:
1003 return NEXT_PROTO_MAX_LENGTH;
1006 case TLS_ST_SR_CHANGE:
1007 return CCS_MAX_LENGTH;
1009 case TLS_ST_SR_FINISHED:
1010 return FINISHED_MAX_LENGTH;
1012 case TLS_ST_SR_KEY_UPDATE:
1013 return KEY_UPDATE_MAX_LENGTH;
1018 * Process a message that the server has received from the client.
1020 MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL *s, PACKET *pkt)
1022 OSSL_STATEM *st = &s->statem;
1024 switch (st->hand_state) {
1026 /* Shouldn't happen */
1027 return MSG_PROCESS_ERROR;
1029 case TLS_ST_SR_CLNT_HELLO:
1030 return tls_process_client_hello(s, pkt);
1032 case TLS_ST_SR_CERT:
1033 return tls_process_client_certificate(s, pkt);
1035 case TLS_ST_SR_KEY_EXCH:
1036 return tls_process_client_key_exchange(s, pkt);
1038 case TLS_ST_SR_CERT_VRFY:
1039 return tls_process_cert_verify(s, pkt);
1041 #ifndef OPENSSL_NO_NEXTPROTONEG
1042 case TLS_ST_SR_NEXT_PROTO:
1043 return tls_process_next_proto(s, pkt);
1046 case TLS_ST_SR_CHANGE:
1047 return tls_process_change_cipher_spec(s, pkt);
1049 case TLS_ST_SR_FINISHED:
1050 return tls_process_finished(s, pkt);
1052 case TLS_ST_SR_KEY_UPDATE:
1053 return tls_process_key_update(s, pkt);
1059 * Perform any further processing required following the receipt of a message
1062 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst)
1064 OSSL_STATEM *st = &s->statem;
1066 switch (st->hand_state) {
1068 /* Shouldn't happen */
1071 case TLS_ST_SR_CLNT_HELLO:
1072 return tls_post_process_client_hello(s, wst);
1074 case TLS_ST_SR_KEY_EXCH:
1075 return tls_post_process_client_key_exchange(s, wst);
1077 case TLS_ST_SR_CERT_VRFY:
1078 #ifndef OPENSSL_NO_SCTP
1079 if ( /* Is this SCTP? */
1080 BIO_dgram_is_sctp(SSL_get_wbio(s))
1081 /* Are we renegotiating? */
1082 && s->renegotiate && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
1083 s->s3->in_read_app_data = 2;
1084 s->rwstate = SSL_READING;
1085 BIO_clear_retry_flags(SSL_get_rbio(s));
1086 BIO_set_retry_read(SSL_get_rbio(s));
1087 ossl_statem_set_sctp_read_sock(s, 1);
1090 ossl_statem_set_sctp_read_sock(s, 0);
1093 return WORK_FINISHED_CONTINUE;
1095 return WORK_FINISHED_CONTINUE;
1098 #ifndef OPENSSL_NO_SRP
1099 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
1101 int ret = SSL_ERROR_NONE;
1103 *al = SSL_AD_UNRECOGNIZED_NAME;
1105 if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
1106 (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
1107 if (s->srp_ctx.login == NULL) {
1109 * RFC 5054 says SHOULD reject, we do so if There is no srp
1112 ret = SSL3_AL_FATAL;
1113 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
1115 ret = SSL_srp_server_param_with_username(s, al);
1122 int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
1125 /* Always use DTLS 1.0 version: see RFC 6347 */
1126 if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION)
1127 || !WPACKET_sub_memcpy_u8(pkt, cookie, cookie_len))
1133 int dtls_construct_hello_verify_request(SSL *s, WPACKET *pkt)
1135 unsigned int cookie_leni;
1136 if (s->ctx->app_gen_cookie_cb == NULL ||
1137 s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
1138 &cookie_leni) == 0 ||
1139 cookie_leni > 255) {
1140 SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST,
1141 SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
1144 s->d1->cookie_len = cookie_leni;
1146 if (!dtls_raw_hello_verify_request(pkt, s->d1->cookie,
1147 s->d1->cookie_len)) {
1148 SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST, ERR_R_INTERNAL_ERROR);
1155 #ifndef OPENSSL_NO_EC
1157 * ssl_check_for_safari attempts to fingerprint Safari using OS X
1158 * SecureTransport using the TLS extension block in |hello|.
1159 * Safari, since 10.6, sends exactly these extensions, in this order:
1164 * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
1165 * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
1166 * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
1167 * 10.8..10.8.3 (which don't work).
1169 static void ssl_check_for_safari(SSL *s, const CLIENTHELLO_MSG *hello)
1171 static const unsigned char kSafariExtensionsBlock[] = {
1172 0x00, 0x0a, /* elliptic_curves extension */
1173 0x00, 0x08, /* 8 bytes */
1174 0x00, 0x06, /* 6 bytes of curve ids */
1175 0x00, 0x17, /* P-256 */
1176 0x00, 0x18, /* P-384 */
1177 0x00, 0x19, /* P-521 */
1179 0x00, 0x0b, /* ec_point_formats */
1180 0x00, 0x02, /* 2 bytes */
1181 0x01, /* 1 point format */
1182 0x00, /* uncompressed */
1183 /* The following is only present in TLS 1.2 */
1184 0x00, 0x0d, /* signature_algorithms */
1185 0x00, 0x0c, /* 12 bytes */
1186 0x00, 0x0a, /* 10 bytes */
1187 0x05, 0x01, /* SHA-384/RSA */
1188 0x04, 0x01, /* SHA-256/RSA */
1189 0x02, 0x01, /* SHA-1/RSA */
1190 0x04, 0x03, /* SHA-256/ECDSA */
1191 0x02, 0x03, /* SHA-1/ECDSA */
1193 /* Length of the common prefix (first two extensions). */
1194 static const size_t kSafariCommonExtensionsLength = 18;
1199 tmppkt = hello->extensions;
1201 if (!PACKET_forward(&tmppkt, 2)
1202 || !PACKET_get_net_2(&tmppkt, &type)
1203 || !PACKET_get_length_prefixed_2(&tmppkt, &sni)) {
1207 if (type != TLSEXT_TYPE_server_name)
1210 ext_len = TLS1_get_client_version(s) >= TLS1_2_VERSION ?
1211 sizeof(kSafariExtensionsBlock) : kSafariCommonExtensionsLength;
1213 s->s3->is_probably_safari = PACKET_equal(&tmppkt, kSafariExtensionsBlock,
1216 #endif /* !OPENSSL_NO_EC */
1218 MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
1220 int al = SSL_AD_INTERNAL_ERROR;
1221 /* |cookie| will only be initialized for DTLS. */
1222 PACKET session_id, compression, extensions, cookie;
1223 static const unsigned char null_compression = 0;
1224 CLIENTHELLO_MSG *clienthello;
1226 clienthello = OPENSSL_zalloc(sizeof(*clienthello));
1227 if (clienthello == NULL) {
1228 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1231 /* Check if this is actually an unexpected renegotiation ClientHello */
1232 if (s->renegotiate == 0 && !SSL_IS_FIRST_HANDSHAKE(s)) {
1237 /* This is a real handshake so make sure we clean it up at the end */
1238 s->statem.cleanuphand = 1;
1241 * First, parse the raw ClientHello data into the CLIENTHELLO_MSG structure.
1243 clienthello->isv2 = RECORD_LAYER_is_sslv2_record(&s->rlayer);
1244 PACKET_null_init(&cookie);
1246 if (clienthello->isv2) {
1249 if (!SSL_IS_FIRST_HANDSHAKE(s) || s->hello_retry_request) {
1250 al = SSL_AD_HANDSHAKE_FAILURE;
1251 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNEXPECTED_MESSAGE);
1256 * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
1257 * header is sent directly on the wire, not wrapped as a TLS
1258 * record. Our record layer just processes the message length and passes
1259 * the rest right through. Its format is:
1261 * 0-1 msg_length - decoded by the record layer
1262 * 2 msg_type - s->init_msg points here
1264 * 5-6 cipher_spec_length
1265 * 7-8 session_id_length
1266 * 9-10 challenge_length
1270 if (!PACKET_get_1(pkt, &mt)
1271 || mt != SSL2_MT_CLIENT_HELLO) {
1273 * Should never happen. We should have tested this in the record
1274 * layer in order to have determined that this is a SSLv2 record
1275 * in the first place
1277 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1282 if (!PACKET_get_net_2(pkt, &clienthello->legacy_version)) {
1283 al = SSL_AD_DECODE_ERROR;
1284 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1288 /* Parse the message and load client random. */
1289 if (clienthello->isv2) {
1291 * Handle an SSLv2 backwards compatible ClientHello
1292 * Note, this is only for SSLv3+ using the backward compatible format.
1293 * Real SSLv2 is not supported, and is rejected below.
1295 unsigned int ciphersuite_len, session_id_len, challenge_len;
1298 if (!PACKET_get_net_2(pkt, &ciphersuite_len)
1299 || !PACKET_get_net_2(pkt, &session_id_len)
1300 || !PACKET_get_net_2(pkt, &challenge_len)) {
1301 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1302 SSL_R_RECORD_LENGTH_MISMATCH);
1303 al = SSL_AD_DECODE_ERROR;
1307 if (session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
1308 al = SSL_AD_DECODE_ERROR;
1309 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1313 if (!PACKET_get_sub_packet(pkt, &clienthello->ciphersuites,
1315 || !PACKET_copy_bytes(pkt, clienthello->session_id, session_id_len)
1316 || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
1317 /* No extensions. */
1318 || PACKET_remaining(pkt) != 0) {
1319 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1320 SSL_R_RECORD_LENGTH_MISMATCH);
1321 al = SSL_AD_DECODE_ERROR;
1324 clienthello->session_id_len = session_id_len;
1326 /* Load the client random and compression list. We use SSL3_RANDOM_SIZE
1327 * here rather than sizeof(clienthello->random) because that is the limit
1328 * for SSLv3 and it is fixed. It won't change even if
1329 * sizeof(clienthello->random) does.
1331 challenge_len = challenge_len > SSL3_RANDOM_SIZE
1332 ? SSL3_RANDOM_SIZE : challenge_len;
1333 memset(clienthello->random, 0, SSL3_RANDOM_SIZE);
1334 if (!PACKET_copy_bytes(&challenge,
1335 clienthello->random + SSL3_RANDOM_SIZE -
1336 challenge_len, challenge_len)
1337 /* Advertise only null compression. */
1338 || !PACKET_buf_init(&compression, &null_compression, 1)) {
1339 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1340 al = SSL_AD_INTERNAL_ERROR;
1344 PACKET_null_init(&clienthello->extensions);
1346 /* Regular ClientHello. */
1347 if (!PACKET_copy_bytes(pkt, clienthello->random, SSL3_RANDOM_SIZE)
1348 || !PACKET_get_length_prefixed_1(pkt, &session_id)
1349 || !PACKET_copy_all(&session_id, clienthello->session_id,
1350 SSL_MAX_SSL_SESSION_ID_LENGTH,
1351 &clienthello->session_id_len)) {
1352 al = SSL_AD_DECODE_ERROR;
1353 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1357 if (SSL_IS_DTLS(s)) {
1358 if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
1359 al = SSL_AD_DECODE_ERROR;
1360 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1363 if (!PACKET_copy_all(&cookie, clienthello->dtls_cookie,
1364 DTLS1_COOKIE_LENGTH,
1365 &clienthello->dtls_cookie_len)) {
1366 al = SSL_AD_DECODE_ERROR;
1367 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1371 * If we require cookies and this ClientHello doesn't contain one,
1372 * just return since we do not want to allocate any memory yet.
1373 * So check cookie length...
1375 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1376 if (clienthello->dtls_cookie_len == 0)
1381 if (!PACKET_get_length_prefixed_2(pkt, &clienthello->ciphersuites)) {
1382 al = SSL_AD_DECODE_ERROR;
1383 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1387 if (!PACKET_get_length_prefixed_1(pkt, &compression)) {
1388 al = SSL_AD_DECODE_ERROR;
1389 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1393 /* Could be empty. */
1394 if (PACKET_remaining(pkt) == 0) {
1395 PACKET_null_init(&clienthello->extensions);
1397 if (!PACKET_get_length_prefixed_2(pkt, &clienthello->extensions)) {
1398 al = SSL_AD_DECODE_ERROR;
1399 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1405 if (!PACKET_copy_all(&compression, clienthello->compressions,
1406 MAX_COMPRESSIONS_SIZE,
1407 &clienthello->compressions_len)) {
1408 al = SSL_AD_DECODE_ERROR;
1409 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1413 /* Preserve the raw extensions PACKET for later use */
1414 extensions = clienthello->extensions;
1415 if (!tls_collect_extensions(s, &extensions, EXT_CLIENT_HELLO,
1416 &clienthello->pre_proc_exts, &al,
1417 &clienthello->pre_proc_exts_len)) {
1418 /* SSLerr already been called */
1421 s->clienthello = clienthello;
1423 return MSG_PROCESS_CONTINUE_PROCESSING;
1425 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1427 ossl_statem_set_error(s);
1429 OPENSSL_free(clienthello->pre_proc_exts);
1430 OPENSSL_free(clienthello);
1432 return MSG_PROCESS_ERROR;
1435 static int tls_early_post_process_client_hello(SSL *s, int *al)
1442 #ifndef OPENSSL_NO_COMP
1443 SSL_COMP *comp = NULL;
1445 const SSL_CIPHER *c;
1446 STACK_OF(SSL_CIPHER) *ciphers = NULL;
1447 STACK_OF(SSL_CIPHER) *scsvs = NULL;
1448 CLIENTHELLO_MSG *clienthello = s->clienthello;
1450 *al = SSL_AD_INTERNAL_ERROR;
1451 /* Finished parsing the ClientHello, now we can start processing it */
1452 /* Give the early callback a crack at things */
1453 if (s->ctx->early_cb != NULL) {
1455 /* A failure in the early callback terminates the connection. */
1456 code = s->ctx->early_cb(s, al, s->ctx->early_cb_arg);
1460 s->rwstate = SSL_EARLY_WORK;
1465 /* Set up the client_random */
1466 memcpy(s->s3->client_random, clienthello->random, SSL3_RANDOM_SIZE);
1468 /* Choose the version */
1470 if (clienthello->isv2) {
1471 if (clienthello->legacy_version == SSL2_VERSION
1472 || (clienthello->legacy_version & 0xff00)
1473 != (SSL3_VERSION_MAJOR << 8)) {
1475 * This is real SSLv2 or something complete unknown. We don't
1478 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1482 s->client_version = clienthello->legacy_version;
1485 * Do SSL/TLS version negotiation if applicable. For DTLS we just check
1486 * versions are potentially compatible. Version negotiation comes later.
1488 if (!SSL_IS_DTLS(s)) {
1489 protverr = ssl_choose_server_version(s, clienthello);
1490 } else if (s->method->version != DTLS_ANY_VERSION &&
1491 DTLS_VERSION_LT((int)clienthello->legacy_version, s->version)) {
1492 protverr = SSL_R_VERSION_TOO_LOW;
1498 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, protverr);
1499 if (SSL_IS_FIRST_HANDSHAKE(s)) {
1500 /* like ssl3_get_record, send alert using remote version number */
1501 s->version = s->client_version = clienthello->legacy_version;
1503 *al = SSL_AD_PROTOCOL_VERSION;
1507 if (SSL_IS_DTLS(s)) {
1508 /* Empty cookie was already handled above by returning early. */
1509 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1510 if (s->ctx->app_verify_cookie_cb != NULL) {
1511 if (s->ctx->app_verify_cookie_cb(s, clienthello->dtls_cookie,
1512 clienthello->dtls_cookie_len) == 0) {
1513 *al = SSL_AD_HANDSHAKE_FAILURE;
1514 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1515 SSL_R_COOKIE_MISMATCH);
1517 /* else cookie verification succeeded */
1519 /* default verification */
1520 } else if (s->d1->cookie_len != clienthello->dtls_cookie_len
1521 || memcmp(clienthello->dtls_cookie, s->d1->cookie,
1522 s->d1->cookie_len) != 0) {
1523 *al = SSL_AD_HANDSHAKE_FAILURE;
1524 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1527 s->d1->cookie_verified = 1;
1529 if (s->method->version == DTLS_ANY_VERSION) {
1530 protverr = ssl_choose_server_version(s, clienthello);
1531 if (protverr != 0) {
1532 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, protverr);
1533 s->version = s->client_version;
1534 *al = SSL_AD_PROTOCOL_VERSION;
1542 /* We need to do this before getting the session */
1543 if (!tls_parse_extension(s, TLSEXT_IDX_extended_master_secret,
1545 clienthello->pre_proc_exts, NULL, 0, al)) {
1546 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1551 * We don't allow resumption in a backwards compatible ClientHello.
1552 * TODO(openssl-team): in TLS1.1+, session_id MUST be empty.
1554 * Versions before 0.9.7 always allow clients to resume sessions in
1555 * renegotiation. 0.9.7 and later allow this by default, but optionally
1556 * ignore resumption requests with flag
1557 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1558 * than a change to default behavior so that applications relying on
1559 * this for security won't even compile against older library versions).
1560 * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1561 * request renegotiation but not a new session (s->new_session remains
1562 * unset): for servers, this essentially just means that the
1563 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
1566 if (clienthello->isv2 ||
1568 (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1569 if (!ssl_get_new_session(s, 1))
1572 i = ssl_get_prev_session(s, clienthello, al);
1574 /* previous session */
1576 } else if (i == -1) {
1580 if (!ssl_get_new_session(s, 1))
1585 if (!ssl_cache_cipherlist(s, &clienthello->ciphersuites,
1586 clienthello->isv2, al) ||
1587 !bytes_to_cipher_list(s, &clienthello->ciphersuites, &ciphers, &scsvs,
1588 clienthello->isv2, al)) {
1592 s->s3->send_connection_binding = 0;
1593 /* Check what signalling cipher-suite values were received. */
1594 if (scsvs != NULL) {
1595 for(i = 0; i < sk_SSL_CIPHER_num(scsvs); i++) {
1596 c = sk_SSL_CIPHER_value(scsvs, i);
1597 if (SSL_CIPHER_get_id(c) == SSL3_CK_SCSV) {
1598 if (s->renegotiate) {
1599 /* SCSV is fatal if renegotiating */
1600 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1601 SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
1602 *al = SSL_AD_HANDSHAKE_FAILURE;
1605 s->s3->send_connection_binding = 1;
1606 } else if (SSL_CIPHER_get_id(c) == SSL3_CK_FALLBACK_SCSV &&
1607 !ssl_check_version_downgrade(s)) {
1609 * This SCSV indicates that the client previously tried
1610 * a higher version. We should fail if the current version
1611 * is an unexpected downgrade, as that indicates that the first
1612 * connection may have been tampered with in order to trigger
1613 * an insecure downgrade.
1615 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1616 SSL_R_INAPPROPRIATE_FALLBACK);
1617 *al = SSL_AD_INAPPROPRIATE_FALLBACK;
1623 /* If it is a hit, check that the cipher is in the list */
1626 id = s->session->cipher->id;
1629 fprintf(stderr, "client sent %d ciphers\n", sk_SSL_CIPHER_num(ciphers));
1631 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1632 c = sk_SSL_CIPHER_value(ciphers, i);
1634 fprintf(stderr, "client [%2d of %2d]:%s\n",
1635 i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1644 * we need to have the cipher in the cipher list if we are asked
1647 *al = SSL_AD_ILLEGAL_PARAMETER;
1648 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1649 SSL_R_REQUIRED_CIPHER_MISSING);
1654 for (loop = 0; loop < clienthello->compressions_len; loop++) {
1655 if (clienthello->compressions[loop] == 0)
1659 if (loop >= clienthello->compressions_len) {
1661 *al = SSL_AD_DECODE_ERROR;
1662 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
1666 #ifndef OPENSSL_NO_EC
1667 if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
1668 ssl_check_for_safari(s, clienthello);
1669 #endif /* !OPENSSL_NO_EC */
1671 /* TLS extensions */
1672 if (!tls_parse_all_extensions(s, EXT_CLIENT_HELLO,
1673 clienthello->pre_proc_exts, NULL, 0, al)) {
1674 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
1679 * Check if we want to use external pre-shared secret for this handshake
1680 * for not reused session only. We need to generate server_random before
1681 * calling tls_session_secret_cb in order to allow SessionTicket
1682 * processing to use it in key derivation.
1686 pos = s->s3->server_random;
1687 if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
1692 if (!s->hit && s->version >= TLS1_VERSION && s->ext.session_secret_cb) {
1693 const SSL_CIPHER *pref_cipher = NULL;
1695 * s->session->master_key_length is a size_t, but this is an int for
1696 * backwards compat reasons
1698 int master_key_length;
1700 master_key_length = sizeof(s->session->master_key);
1701 if (s->ext.session_secret_cb(s, s->session->master_key,
1702 &master_key_length, ciphers,
1704 s->ext.session_secret_cb_arg)
1705 && master_key_length > 0) {
1706 s->session->master_key_length = master_key_length;
1708 s->session->ciphers = ciphers;
1709 s->session->verify_result = X509_V_OK;
1713 /* check if some cipher was preferred by call back */
1714 if (pref_cipher == NULL)
1715 pref_cipher = ssl3_choose_cipher(s, s->session->ciphers,
1716 SSL_get_ciphers(s));
1717 if (pref_cipher == NULL) {
1718 *al = SSL_AD_HANDSHAKE_FAILURE;
1719 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1723 s->session->cipher = pref_cipher;
1724 sk_SSL_CIPHER_free(s->cipher_list);
1725 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1726 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1727 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1732 * Worst case, we will use the NULL compression, but if we have other
1733 * options, we will now look for them. We have complen-1 compression
1734 * algorithms from the client, starting at q.
1736 s->s3->tmp.new_compression = NULL;
1737 #ifndef OPENSSL_NO_COMP
1738 /* This only happens if we have a cache hit */
1739 if (s->session->compress_meth != 0) {
1740 int m, comp_id = s->session->compress_meth;
1742 /* Perform sanity checks on resumed compression algorithm */
1743 /* Can't disable compression */
1744 if (!ssl_allow_compression(s)) {
1745 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1746 SSL_R_INCONSISTENT_COMPRESSION);
1749 /* Look for resumed compression method */
1750 for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
1751 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1752 if (comp_id == comp->id) {
1753 s->s3->tmp.new_compression = comp;
1757 if (s->s3->tmp.new_compression == NULL) {
1758 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1759 SSL_R_INVALID_COMPRESSION_ALGORITHM);
1762 /* Look for resumed method in compression list */
1763 for (k = 0; k < clienthello->compressions_len; k++) {
1764 if (clienthello->compressions[k] == comp_id)
1767 if (k >= clienthello->compressions_len) {
1768 *al = SSL_AD_ILLEGAL_PARAMETER;
1769 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO,
1770 SSL_R_REQUIRED_COMPRESSION_ALGORITHM_MISSING);
1775 else if (ssl_allow_compression(s) && s->ctx->comp_methods) {
1776 /* See if we have a match */
1777 int m, nn, v, done = 0;
1780 nn = sk_SSL_COMP_num(s->ctx->comp_methods);
1781 for (m = 0; m < nn; m++) {
1782 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1784 for (o = 0; o < clienthello->compressions_len; o++) {
1785 if (v == clienthello->compressions[o]) {
1794 s->s3->tmp.new_compression = comp;
1800 * If compression is disabled we'd better not try to resume a session
1801 * using compression.
1803 if (s->session->compress_meth != 0) {
1804 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1810 * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
1814 #ifdef OPENSSL_NO_COMP
1815 s->session->compress_meth = 0;
1817 s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
1819 sk_SSL_CIPHER_free(s->session->ciphers);
1820 s->session->ciphers = ciphers;
1821 if (ciphers == NULL) {
1822 *al = SSL_AD_INTERNAL_ERROR;
1823 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1827 if (!tls1_set_server_sigalgs(s)) {
1828 SSLerr(SSL_F_TLS_EARLY_POST_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1833 sk_SSL_CIPHER_free(ciphers);
1834 sk_SSL_CIPHER_free(scsvs);
1835 OPENSSL_free(clienthello->pre_proc_exts);
1836 OPENSSL_free(s->clienthello);
1837 s->clienthello = NULL;
1840 ossl_statem_set_error(s);
1842 sk_SSL_CIPHER_free(ciphers);
1843 sk_SSL_CIPHER_free(scsvs);
1844 OPENSSL_free(clienthello->pre_proc_exts);
1845 OPENSSL_free(s->clienthello);
1846 s->clienthello = NULL;
1852 * Call the status request callback if needed. Upon success, returns 1.
1853 * Upon failure, returns 0 and sets |*al| to the appropriate fatal alert.
1855 static int tls_handle_status_request(SSL *s, int *al)
1857 s->ext.status_expected = 0;
1860 * If status request then ask callback what to do. Note: this must be
1861 * called after servername callbacks in case the certificate has changed,
1862 * and must be called after the cipher has been chosen because this may
1863 * influence which certificate is sent
1865 if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing && s->ctx != NULL
1866 && s->ctx->ext.status_cb != NULL) {
1869 /* If no certificate can't return certificate status */
1870 if (s->s3->tmp.cert != NULL) {
1872 * Set current certificate to one we will use so SSL_get_certificate
1873 * et al can pick it up.
1875 s->cert->key = s->s3->tmp.cert;
1876 ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
1878 /* We don't want to send a status request response */
1879 case SSL_TLSEXT_ERR_NOACK:
1880 s->ext.status_expected = 0;
1882 /* status request response should be sent */
1883 case SSL_TLSEXT_ERR_OK:
1884 if (s->ext.ocsp.resp)
1885 s->ext.status_expected = 1;
1887 /* something bad happened */
1888 case SSL_TLSEXT_ERR_ALERT_FATAL:
1890 *al = SSL_AD_INTERNAL_ERROR;
1899 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst)
1901 int al = SSL_AD_HANDSHAKE_FAILURE;
1902 const SSL_CIPHER *cipher;
1904 if (wst == WORK_MORE_A) {
1905 int rv = tls_early_post_process_client_hello(s, &al);
1907 /* SSLErr() was already called */
1914 if (wst == WORK_MORE_B) {
1916 /* Let cert callback update server certificates if required */
1917 if (s->cert->cert_cb) {
1918 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
1920 al = SSL_AD_INTERNAL_ERROR;
1921 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1922 SSL_R_CERT_CB_ERROR);
1926 s->rwstate = SSL_X509_LOOKUP;
1929 s->rwstate = SSL_NOTHING;
1932 ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1934 if (cipher == NULL) {
1935 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1936 SSL_R_NO_SHARED_CIPHER);
1939 s->s3->tmp.new_cipher = cipher;
1940 if (!tls_choose_sigalg(s, &al))
1942 /* check whether we should disable session resumption */
1943 if (s->not_resumable_session_cb != NULL)
1944 s->session->not_resumable =
1945 s->not_resumable_session_cb(s, ((cipher->algorithm_mkey
1946 & (SSL_kDHE | SSL_kECDHE))
1948 if (s->session->not_resumable)
1949 /* do not send a session ticket */
1950 s->ext.ticket_expected = 0;
1952 /* Session-id reuse */
1953 s->s3->tmp.new_cipher = s->session->cipher;
1957 * we now have the following setup.
1959 * cipher_list - our preferred list of ciphers
1960 * ciphers - the clients preferred list of ciphers
1961 * compression - basically ignored right now
1962 * ssl version is set - sslv3
1963 * s->session - The ssl session has been setup.
1964 * s->hit - session reuse flag
1965 * s->s3->tmp.new_cipher- the new cipher to use.
1969 * Call status_request callback if needed. Has to be done after the
1970 * certificate callbacks etc above.
1972 if (!tls_handle_status_request(s, &al)) {
1973 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1974 SSL_R_CLIENTHELLO_TLSEXT);
1980 #ifndef OPENSSL_NO_SRP
1981 if (wst == WORK_MORE_C) {
1983 if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
1985 * callback indicates further work to be done
1987 s->rwstate = SSL_X509_LOOKUP;
1990 if (ret != SSL_ERROR_NONE) {
1992 * This is not really an error but the only means to for
1993 * a client to detect whether srp is supported.
1995 if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
1996 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1997 SSL_R_CLIENTHELLO_TLSEXT);
1999 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
2000 SSL_R_PSK_IDENTITY_NOT_FOUND);
2006 return WORK_FINISHED_STOP;
2008 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2009 ossl_statem_set_error(s);
2013 int tls_construct_server_hello(SSL *s, WPACKET *pkt)
2015 int compm, al = SSL_AD_INTERNAL_ERROR;
2019 /* TODO(TLS1.3): Remove the DRAFT conditional before release */
2020 version = SSL_IS_TLS13(s) ? TLS1_3_VERSION_DRAFT : s->version;
2021 if (!WPACKET_put_bytes_u16(pkt, version)
2023 * Random stuff. Filling of the server_random takes place in
2024 * tls_process_client_hello()
2026 || !WPACKET_memcpy(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
2027 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
2032 * There are several cases for the session ID to send
2033 * back in the server hello:
2034 * - For session reuse from the session cache,
2035 * we send back the old session ID.
2036 * - If stateless session reuse (using a session ticket)
2037 * is successful, we send back the client's "session ID"
2038 * (which doesn't actually identify the session).
2039 * - If it is a new session, we send back the new
2041 * - However, if we want the new session to be single-use,
2042 * we send back a 0-length session ID.
2043 * s->hit is non-zero in either case of session reuse,
2044 * so the following won't overwrite an ID that we're supposed
2047 if (s->session->not_resumable ||
2048 (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
2050 s->session->session_id_length = 0;
2052 sl = s->session->session_id_length;
2053 if (sl > sizeof(s->session->session_id)) {
2054 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
2058 /* set up the compression method */
2059 #ifdef OPENSSL_NO_COMP
2062 if (s->s3->tmp.new_compression == NULL)
2065 compm = s->s3->tmp.new_compression->id;
2068 if ((!SSL_IS_TLS13(s)
2069 && !WPACKET_sub_memcpy_u8(pkt, s->session->session_id, sl))
2070 || !s->method->put_cipher_by_char(s->s3->tmp.new_cipher, pkt, &len)
2071 || (!SSL_IS_TLS13(s)
2072 && !WPACKET_put_bytes_u8(pkt, compm))
2073 || !tls_construct_extensions(s, pkt,
2075 ? EXT_TLS1_3_SERVER_HELLO
2076 : EXT_TLS1_2_SERVER_HELLO,
2078 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
2082 if (!(s->verify_mode & SSL_VERIFY_PEER)
2083 && !ssl3_digest_cached_records(s, 0)) {
2084 al = SSL_AD_INTERNAL_ERROR;
2090 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2094 int tls_construct_server_done(SSL *s, WPACKET *pkt)
2096 if (!s->s3->tmp.cert_request) {
2097 if (!ssl3_digest_cached_records(s, 0)) {
2098 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2105 int tls_construct_server_key_exchange(SSL *s, WPACKET *pkt)
2107 #ifndef OPENSSL_NO_DH
2108 EVP_PKEY *pkdh = NULL;
2110 #ifndef OPENSSL_NO_EC
2111 unsigned char *encodedPoint = NULL;
2112 size_t encodedlen = 0;
2115 const SIGALG_LOOKUP *lu = s->s3->tmp.sigalg;
2116 int al = SSL_AD_INTERNAL_ERROR, i;
2119 EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
2120 EVP_PKEY_CTX *pctx = NULL;
2121 size_t paramlen, paramoffset;
2123 if (!WPACKET_get_total_written(pkt, ¶moffset)) {
2124 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2128 if (md_ctx == NULL) {
2129 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2133 type = s->s3->tmp.new_cipher->algorithm_mkey;
2135 r[0] = r[1] = r[2] = r[3] = NULL;
2136 #ifndef OPENSSL_NO_PSK
2137 /* Plain PSK or RSAPSK nothing to do */
2138 if (type & (SSL_kPSK | SSL_kRSAPSK)) {
2140 #endif /* !OPENSSL_NO_PSK */
2141 #ifndef OPENSSL_NO_DH
2142 if (type & (SSL_kDHE | SSL_kDHEPSK)) {
2143 CERT *cert = s->cert;
2145 EVP_PKEY *pkdhp = NULL;
2148 if (s->cert->dh_tmp_auto) {
2149 DH *dhp = ssl_get_auto_dh(s);
2150 pkdh = EVP_PKEY_new();
2151 if (pkdh == NULL || dhp == NULL) {
2153 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2154 ERR_R_INTERNAL_ERROR);
2157 EVP_PKEY_assign_DH(pkdh, dhp);
2160 pkdhp = cert->dh_tmp;
2162 if ((pkdhp == NULL) && (s->cert->dh_tmp_cb != NULL)) {
2163 DH *dhp = s->cert->dh_tmp_cb(s, 0, 1024);
2164 pkdh = ssl_dh_to_pkey(dhp);
2166 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2167 ERR_R_INTERNAL_ERROR);
2172 if (pkdhp == NULL) {
2173 al = SSL_AD_HANDSHAKE_FAILURE;
2174 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2175 SSL_R_MISSING_TMP_DH_KEY);
2178 if (!ssl_security(s, SSL_SECOP_TMP_DH,
2179 EVP_PKEY_security_bits(pkdhp), 0, pkdhp)) {
2180 al = SSL_AD_HANDSHAKE_FAILURE;
2181 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2182 SSL_R_DH_KEY_TOO_SMALL);
2185 if (s->s3->tmp.pkey != NULL) {
2186 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2187 ERR_R_INTERNAL_ERROR);
2191 s->s3->tmp.pkey = ssl_generate_pkey(pkdhp);
2193 if (s->s3->tmp.pkey == NULL) {
2194 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2198 dh = EVP_PKEY_get0_DH(s->s3->tmp.pkey);
2200 EVP_PKEY_free(pkdh);
2203 DH_get0_pqg(dh, &r[0], NULL, &r[1]);
2204 DH_get0_key(dh, &r[2], NULL);
2207 #ifndef OPENSSL_NO_EC
2208 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2211 if (s->s3->tmp.pkey != NULL) {
2212 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2213 ERR_R_INTERNAL_ERROR);
2217 /* Get NID of appropriate shared curve */
2218 nid = tls1_shared_group(s, -2);
2219 curve_id = tls1_ec_nid2curve_id(nid);
2220 if (curve_id == 0) {
2221 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2222 SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
2225 s->s3->tmp.pkey = ssl_generate_pkey_curve(curve_id);
2226 /* Generate a new key for this curve */
2227 if (s->s3->tmp.pkey == NULL) {
2228 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2232 /* Encode the public key. */
2233 encodedlen = EVP_PKEY_get1_tls_encodedpoint(s->s3->tmp.pkey,
2235 if (encodedlen == 0) {
2236 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EC_LIB);
2241 * We'll generate the serverKeyExchange message explicitly so we
2242 * can set these to NULLs
2249 #endif /* !OPENSSL_NO_EC */
2250 #ifndef OPENSSL_NO_SRP
2251 if (type & SSL_kSRP) {
2252 if ((s->srp_ctx.N == NULL) ||
2253 (s->srp_ctx.g == NULL) ||
2254 (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
2255 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2256 SSL_R_MISSING_SRP_PARAM);
2259 r[0] = s->srp_ctx.N;
2260 r[1] = s->srp_ctx.g;
2261 r[2] = s->srp_ctx.s;
2262 r[3] = s->srp_ctx.B;
2266 al = SSL_AD_HANDSHAKE_FAILURE;
2267 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2268 SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
2272 if (((s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP)) != 0)
2273 || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) != 0) {
2275 } else if (lu == NULL) {
2276 al = SSL_AD_DECODE_ERROR;
2280 #ifndef OPENSSL_NO_PSK
2281 if (type & SSL_PSK) {
2282 size_t len = (s->cert->psk_identity_hint == NULL)
2283 ? 0 : strlen(s->cert->psk_identity_hint);
2286 * It should not happen that len > PSK_MAX_IDENTITY_LEN - we already
2287 * checked this when we set the identity hint - but just in case
2289 if (len > PSK_MAX_IDENTITY_LEN
2290 || !WPACKET_sub_memcpy_u16(pkt, s->cert->psk_identity_hint,
2292 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2293 ERR_R_INTERNAL_ERROR);
2299 for (i = 0; i < 4 && r[i] != NULL; i++) {
2300 unsigned char *binval;
2303 #ifndef OPENSSL_NO_SRP
2304 if ((i == 2) && (type & SSL_kSRP)) {
2305 res = WPACKET_start_sub_packet_u8(pkt);
2308 res = WPACKET_start_sub_packet_u16(pkt);
2311 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2312 ERR_R_INTERNAL_ERROR);
2316 #ifndef OPENSSL_NO_DH
2318 * for interoperability with some versions of the Microsoft TLS
2319 * stack, we need to zero pad the DHE pub key to the same length
2322 if ((i == 2) && (type & (SSL_kDHE | SSL_kDHEPSK))) {
2323 size_t len = BN_num_bytes(r[0]) - BN_num_bytes(r[2]);
2326 if (!WPACKET_allocate_bytes(pkt, len, &binval)) {
2327 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2328 ERR_R_INTERNAL_ERROR);
2331 memset(binval, 0, len);
2335 if (!WPACKET_allocate_bytes(pkt, BN_num_bytes(r[i]), &binval)
2336 || !WPACKET_close(pkt)) {
2337 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2338 ERR_R_INTERNAL_ERROR);
2342 BN_bn2bin(r[i], binval);
2345 #ifndef OPENSSL_NO_EC
2346 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2348 * We only support named (not generic) curves. In this situation, the
2349 * ServerKeyExchange message has: [1 byte CurveType], [2 byte CurveName]
2350 * [1 byte length of encoded point], followed by the actual encoded
2353 if (!WPACKET_put_bytes_u8(pkt, NAMED_CURVE_TYPE)
2354 || !WPACKET_put_bytes_u8(pkt, 0)
2355 || !WPACKET_put_bytes_u8(pkt, curve_id)
2356 || !WPACKET_sub_memcpy_u8(pkt, encodedPoint, encodedlen)) {
2357 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2358 ERR_R_INTERNAL_ERROR);
2361 OPENSSL_free(encodedPoint);
2362 encodedPoint = NULL;
2368 EVP_PKEY *pkey = s->s3->tmp.cert->privatekey;
2369 const EVP_MD *md = ssl_md(lu->hash_idx);
2370 unsigned char *sigbytes1, *sigbytes2;
2373 if (pkey == NULL || md == NULL) {
2374 /* Should never happen */
2375 al = SSL_AD_INTERNAL_ERROR;
2376 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2377 ERR_R_INTERNAL_ERROR);
2381 * n is the length of the params, they start at &(d[4]) and p
2382 * points to the space at the end.
2385 /* Get length of the parameters we have written above */
2386 if (!WPACKET_get_length(pkt, ¶mlen)) {
2387 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2388 ERR_R_INTERNAL_ERROR);
2391 /* send signature algorithm */
2392 if (SSL_USE_SIGALGS(s) && !WPACKET_put_bytes_u16(pkt, lu->sigalg))
2395 * Create the signature. We don't know the actual length of the sig
2396 * until after we've created it, so we reserve enough bytes for it
2397 * up front, and then properly allocate them in the WPACKET
2400 siglen = EVP_PKEY_size(pkey);
2401 if (!WPACKET_sub_reserve_bytes_u16(pkt, siglen, &sigbytes1)
2402 || EVP_DigestSignInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2403 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2404 ERR_R_INTERNAL_ERROR);
2407 if (lu->sig == EVP_PKEY_RSA_PSS) {
2408 if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2409 || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx, RSA_PSS_SALTLEN_DIGEST) <= 0) {
2410 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2415 if (EVP_DigestSignUpdate(md_ctx, &(s->s3->client_random[0]),
2416 SSL3_RANDOM_SIZE) <= 0
2417 || EVP_DigestSignUpdate(md_ctx, &(s->s3->server_random[0]),
2418 SSL3_RANDOM_SIZE) <= 0
2419 || EVP_DigestSignUpdate(md_ctx,
2420 s->init_buf->data + paramoffset,
2422 || EVP_DigestSignFinal(md_ctx, sigbytes1, &siglen) <= 0
2423 || !WPACKET_sub_allocate_bytes_u16(pkt, siglen, &sigbytes2)
2424 || sigbytes1 != sigbytes2) {
2425 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2426 ERR_R_INTERNAL_ERROR);
2431 EVP_MD_CTX_free(md_ctx);
2434 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2436 #ifndef OPENSSL_NO_DH
2437 EVP_PKEY_free(pkdh);
2439 #ifndef OPENSSL_NO_EC
2440 OPENSSL_free(encodedPoint);
2442 EVP_MD_CTX_free(md_ctx);
2446 int tls_construct_certificate_request(SSL *s, WPACKET *pkt)
2449 STACK_OF(X509_NAME) *sk = NULL;
2451 /* get the list of acceptable cert types */
2452 if (!WPACKET_start_sub_packet_u8(pkt)
2453 || !ssl3_get_req_cert_type(s, pkt)
2454 || !WPACKET_close(pkt)) {
2455 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2459 if (SSL_USE_SIGALGS(s)) {
2460 const uint16_t *psigs;
2461 size_t nl = tls12_get_psigalgs(s, 1, &psigs);
2463 if (!WPACKET_start_sub_packet_u16(pkt)
2464 || !tls12_copy_sigalgs(s, pkt, psigs, nl)
2465 || !WPACKET_close(pkt)) {
2466 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2467 ERR_R_INTERNAL_ERROR);
2472 /* Start sub-packet for client CA list */
2473 if (!WPACKET_start_sub_packet_u16(pkt)) {
2474 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2478 sk = SSL_get_client_CA_list(s);
2480 for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2481 unsigned char *namebytes;
2482 X509_NAME *name = sk_X509_NAME_value(sk, i);
2486 || (namelen = i2d_X509_NAME(name, NULL)) < 0
2487 || !WPACKET_sub_allocate_bytes_u16(pkt, namelen,
2489 || i2d_X509_NAME(name, &namebytes) != namelen) {
2490 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2491 ERR_R_INTERNAL_ERROR);
2496 /* else no CA names */
2498 if (!WPACKET_close(pkt)) {
2499 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2503 s->s3->tmp.cert_request = 1;
2507 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2511 static int tls_process_cke_psk_preamble(SSL *s, PACKET *pkt, int *al)
2513 #ifndef OPENSSL_NO_PSK
2514 unsigned char psk[PSK_MAX_PSK_LEN];
2516 PACKET psk_identity;
2518 if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
2519 *al = SSL_AD_DECODE_ERROR;
2520 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH);
2523 if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
2524 *al = SSL_AD_DECODE_ERROR;
2525 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG);
2528 if (s->psk_server_callback == NULL) {
2529 *al = SSL_AD_INTERNAL_ERROR;
2530 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_SERVER_CB);
2534 if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
2535 *al = SSL_AD_INTERNAL_ERROR;
2536 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2540 psklen = s->psk_server_callback(s, s->session->psk_identity,
2543 if (psklen > PSK_MAX_PSK_LEN) {
2544 *al = SSL_AD_INTERNAL_ERROR;
2545 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2547 } else if (psklen == 0) {
2549 * PSK related to the given identity not found
2551 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
2552 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE,
2553 SSL_R_PSK_IDENTITY_NOT_FOUND);
2557 OPENSSL_free(s->s3->tmp.psk);
2558 s->s3->tmp.psk = OPENSSL_memdup(psk, psklen);
2559 OPENSSL_cleanse(psk, psklen);
2561 if (s->s3->tmp.psk == NULL) {
2562 *al = SSL_AD_INTERNAL_ERROR;
2563 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE);
2567 s->s3->tmp.psklen = psklen;
2571 /* Should never happen */
2572 *al = SSL_AD_INTERNAL_ERROR;
2573 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2578 static int tls_process_cke_rsa(SSL *s, PACKET *pkt, int *al)
2580 #ifndef OPENSSL_NO_RSA
2581 unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2583 unsigned char decrypt_good, version_good;
2584 size_t j, padding_len;
2585 PACKET enc_premaster;
2587 unsigned char *rsa_decrypt = NULL;
2590 rsa = EVP_PKEY_get0_RSA(s->cert->pkeys[SSL_PKEY_RSA].privatekey);
2592 *al = SSL_AD_HANDSHAKE_FAILURE;
2593 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_MISSING_RSA_CERTIFICATE);
2597 /* SSLv3 and pre-standard DTLS omit the length bytes. */
2598 if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
2599 enc_premaster = *pkt;
2601 if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
2602 || PACKET_remaining(pkt) != 0) {
2603 *al = SSL_AD_DECODE_ERROR;
2604 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_LENGTH_MISMATCH);
2610 * We want to be sure that the plaintext buffer size makes it safe to
2611 * iterate over the entire size of a premaster secret
2612 * (SSL_MAX_MASTER_KEY_LENGTH). Reject overly short RSA keys because
2613 * their ciphertext cannot accommodate a premaster secret anyway.
2615 if (RSA_size(rsa) < SSL_MAX_MASTER_KEY_LENGTH) {
2616 *al = SSL_AD_INTERNAL_ERROR;
2617 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, RSA_R_KEY_SIZE_TOO_SMALL);
2621 rsa_decrypt = OPENSSL_malloc(RSA_size(rsa));
2622 if (rsa_decrypt == NULL) {
2623 *al = SSL_AD_INTERNAL_ERROR;
2624 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_MALLOC_FAILURE);
2629 * We must not leak whether a decryption failure occurs because of
2630 * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2631 * section 7.4.7.1). The code follows that advice of the TLS RFC and
2632 * generates a random premaster secret for the case that the decrypt
2633 * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
2636 if (RAND_bytes(rand_premaster_secret, sizeof(rand_premaster_secret)) <= 0)
2640 * Decrypt with no padding. PKCS#1 padding will be removed as part of
2641 * the timing-sensitive code below.
2643 /* TODO(size_t): Convert this function */
2644 decrypt_len = (int)RSA_private_decrypt((int)PACKET_remaining(&enc_premaster),
2645 PACKET_data(&enc_premaster),
2646 rsa_decrypt, rsa, RSA_NO_PADDING);
2647 if (decrypt_len < 0)
2650 /* Check the padding. See RFC 3447, section 7.2.2. */
2653 * The smallest padded premaster is 11 bytes of overhead. Small keys
2654 * are publicly invalid, so this may return immediately. This ensures
2655 * PS is at least 8 bytes.
2657 if (decrypt_len < 11 + SSL_MAX_MASTER_KEY_LENGTH) {
2658 *al = SSL_AD_DECRYPT_ERROR;
2659 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_DECRYPTION_FAILED);
2663 padding_len = decrypt_len - SSL_MAX_MASTER_KEY_LENGTH;
2664 decrypt_good = constant_time_eq_int_8(rsa_decrypt[0], 0) &
2665 constant_time_eq_int_8(rsa_decrypt[1], 2);
2666 for (j = 2; j < padding_len - 1; j++) {
2667 decrypt_good &= ~constant_time_is_zero_8(rsa_decrypt[j]);
2669 decrypt_good &= constant_time_is_zero_8(rsa_decrypt[padding_len - 1]);
2672 * If the version in the decrypted pre-master secret is correct then
2673 * version_good will be 0xff, otherwise it'll be zero. The
2674 * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2675 * (http://eprint.iacr.org/2003/052/) exploits the version number
2676 * check as a "bad version oracle". Thus version checks are done in
2677 * constant time and are treated like any other decryption error.
2680 constant_time_eq_8(rsa_decrypt[padding_len],
2681 (unsigned)(s->client_version >> 8));
2683 constant_time_eq_8(rsa_decrypt[padding_len + 1],
2684 (unsigned)(s->client_version & 0xff));
2687 * The premaster secret must contain the same version number as the
2688 * ClientHello to detect version rollback attacks (strangely, the
2689 * protocol does not offer such protection for DH ciphersuites).
2690 * However, buggy clients exist that send the negotiated protocol
2691 * version instead if the server does not support the requested
2692 * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
2695 if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
2696 unsigned char workaround_good;
2697 workaround_good = constant_time_eq_8(rsa_decrypt[padding_len],
2698 (unsigned)(s->version >> 8));
2700 constant_time_eq_8(rsa_decrypt[padding_len + 1],
2701 (unsigned)(s->version & 0xff));
2702 version_good |= workaround_good;
2706 * Both decryption and version must be good for decrypt_good to
2707 * remain non-zero (0xff).
2709 decrypt_good &= version_good;
2712 * Now copy rand_premaster_secret over from p using
2713 * decrypt_good_mask. If decryption failed, then p does not
2714 * contain valid plaintext, however, a check above guarantees
2715 * it is still sufficiently large to read from.
2717 for (j = 0; j < sizeof(rand_premaster_secret); j++) {
2718 rsa_decrypt[padding_len + j] =
2719 constant_time_select_8(decrypt_good,
2720 rsa_decrypt[padding_len + j],
2721 rand_premaster_secret[j]);
2724 if (!ssl_generate_master_secret(s, rsa_decrypt + padding_len,
2725 sizeof(rand_premaster_secret), 0)) {
2726 *al = SSL_AD_INTERNAL_ERROR;
2727 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2733 OPENSSL_free(rsa_decrypt);
2736 /* Should never happen */
2737 *al = SSL_AD_INTERNAL_ERROR;
2738 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2743 static int tls_process_cke_dhe(SSL *s, PACKET *pkt, int *al)
2745 #ifndef OPENSSL_NO_DH
2746 EVP_PKEY *skey = NULL;
2750 const unsigned char *data;
2751 EVP_PKEY *ckey = NULL;
2754 if (!PACKET_get_net_2(pkt, &i) || PACKET_remaining(pkt) != i) {
2755 *al = SSL_AD_HANDSHAKE_FAILURE;
2756 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE,
2757 SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2760 skey = s->s3->tmp.pkey;
2762 *al = SSL_AD_HANDSHAKE_FAILURE;
2763 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2767 if (PACKET_remaining(pkt) == 0L) {
2768 *al = SSL_AD_HANDSHAKE_FAILURE;
2769 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2772 if (!PACKET_get_bytes(pkt, &data, i)) {
2773 /* We already checked we have enough data */
2774 *al = SSL_AD_INTERNAL_ERROR;
2775 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2778 ckey = EVP_PKEY_new();
2779 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) {
2780 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_BN_LIB);
2783 cdh = EVP_PKEY_get0_DH(ckey);
2784 pub_key = BN_bin2bn(data, i, NULL);
2786 if (pub_key == NULL || !DH_set0_key(cdh, pub_key, NULL)) {
2787 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2788 if (pub_key != NULL)
2793 if (ssl_derive(s, skey, ckey, 1) == 0) {
2794 *al = SSL_AD_INTERNAL_ERROR;
2795 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2800 EVP_PKEY_free(s->s3->tmp.pkey);
2801 s->s3->tmp.pkey = NULL;
2803 EVP_PKEY_free(ckey);
2806 /* Should never happen */
2807 *al = SSL_AD_INTERNAL_ERROR;
2808 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2813 static int tls_process_cke_ecdhe(SSL *s, PACKET *pkt, int *al)
2815 #ifndef OPENSSL_NO_EC
2816 EVP_PKEY *skey = s->s3->tmp.pkey;
2817 EVP_PKEY *ckey = NULL;
2820 if (PACKET_remaining(pkt) == 0L) {
2821 /* We don't support ECDH client auth */
2822 *al = SSL_AD_HANDSHAKE_FAILURE;
2823 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_MISSING_TMP_ECDH_KEY);
2827 const unsigned char *data;
2830 * Get client's public key from encoded point in the
2831 * ClientKeyExchange message.
2834 /* Get encoded point length */
2835 if (!PACKET_get_1(pkt, &i) || !PACKET_get_bytes(pkt, &data, i)
2836 || PACKET_remaining(pkt) != 0) {
2837 *al = SSL_AD_DECODE_ERROR;
2838 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_LENGTH_MISMATCH);
2841 ckey = EVP_PKEY_new();
2842 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) {
2843 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EVP_LIB);
2846 if (EVP_PKEY_set1_tls_encodedpoint(ckey, data, i) == 0) {
2847 *al = SSL_AD_HANDSHAKE_FAILURE;
2848 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EC_LIB);
2853 if (ssl_derive(s, skey, ckey, 1) == 0) {
2854 *al = SSL_AD_INTERNAL_ERROR;
2855 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2860 EVP_PKEY_free(s->s3->tmp.pkey);
2861 s->s3->tmp.pkey = NULL;
2863 EVP_PKEY_free(ckey);
2867 /* Should never happen */
2868 *al = SSL_AD_INTERNAL_ERROR;
2869 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2874 static int tls_process_cke_srp(SSL *s, PACKET *pkt, int *al)
2876 #ifndef OPENSSL_NO_SRP
2878 const unsigned char *data;
2880 if (!PACKET_get_net_2(pkt, &i)
2881 || !PACKET_get_bytes(pkt, &data, i)) {
2882 *al = SSL_AD_DECODE_ERROR;
2883 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_A_LENGTH);
2886 if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
2887 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_BN_LIB);
2890 if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) {
2891 *al = SSL_AD_ILLEGAL_PARAMETER;
2892 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_PARAMETERS);
2895 OPENSSL_free(s->session->srp_username);
2896 s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
2897 if (s->session->srp_username == NULL) {
2898 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_MALLOC_FAILURE);
2902 if (!srp_generate_server_master_secret(s)) {
2903 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2909 /* Should never happen */
2910 *al = SSL_AD_INTERNAL_ERROR;
2911 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2916 static int tls_process_cke_gost(SSL *s, PACKET *pkt, int *al)
2918 #ifndef OPENSSL_NO_GOST
2919 EVP_PKEY_CTX *pkey_ctx;
2920 EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2921 unsigned char premaster_secret[32];
2922 const unsigned char *start;
2923 size_t outlen = 32, inlen;
2924 unsigned long alg_a;
2927 size_t sess_key_len;
2928 const unsigned char *data;
2931 /* Get our certificate private key */
2932 alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2933 if (alg_a & SSL_aGOST12) {
2935 * New GOST ciphersuites have SSL_aGOST01 bit too
2937 pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey;
2939 pk = s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
2942 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2944 } else if (alg_a & SSL_aGOST01) {
2945 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2948 pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
2949 if (pkey_ctx == NULL) {
2950 *al = SSL_AD_INTERNAL_ERROR;
2951 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_MALLOC_FAILURE);
2954 if (EVP_PKEY_decrypt_init(pkey_ctx) <= 0) {
2955 *al = SSL_AD_INTERNAL_ERROR;
2956 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2960 * If client certificate is present and is of the same type, maybe
2961 * use it for key exchange. Don't mind errors from
2962 * EVP_PKEY_derive_set_peer, because it is completely valid to use a
2963 * client certificate for authorization only.
2965 client_pub_pkey = X509_get0_pubkey(s->session->peer);
2966 if (client_pub_pkey) {
2967 if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2970 /* Decrypt session key */
2971 sess_key_len = PACKET_remaining(pkt);
2972 if (!PACKET_get_bytes(pkt, &data, sess_key_len)) {
2973 *al = SSL_AD_INTERNAL_ERROR;
2974 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2977 /* TODO(size_t): Convert this function */
2978 if (ASN1_get_object((const unsigned char **)&data, &Tlen, &Ttag,
2979 &Tclass, (long)sess_key_len) != V_ASN1_CONSTRUCTED
2980 || Ttag != V_ASN1_SEQUENCE || Tclass != V_ASN1_UNIVERSAL) {
2981 *al = SSL_AD_DECODE_ERROR;
2982 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2987 if (EVP_PKEY_decrypt
2988 (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
2989 *al = SSL_AD_DECODE_ERROR;
2990 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2993 /* Generate master secret */
2994 if (!ssl_generate_master_secret(s, premaster_secret,
2995 sizeof(premaster_secret), 0)) {
2996 *al = SSL_AD_INTERNAL_ERROR;
2997 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
3000 /* Check if pubkey from client certificate was used */
3001 if (EVP_PKEY_CTX_ctrl
3002 (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
3003 s->statem.no_cert_verify = 1;
3007 EVP_PKEY_CTX_free(pkey_ctx);
3010 /* Should never happen */
3011 *al = SSL_AD_INTERNAL_ERROR;
3012 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
3017 MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL *s, PACKET *pkt)
3020 unsigned long alg_k;
3022 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3024 /* For PSK parse and retrieve identity, obtain PSK key */
3025 if ((alg_k & SSL_PSK) && !tls_process_cke_psk_preamble(s, pkt, &al))
3028 if (alg_k & SSL_kPSK) {
3029 /* Identity extracted earlier: should be nothing left */
3030 if (PACKET_remaining(pkt) != 0) {
3031 al = SSL_AD_HANDSHAKE_FAILURE;
3032 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
3033 SSL_R_LENGTH_MISMATCH);
3036 /* PSK handled by ssl_generate_master_secret */
3037 if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
3038 al = SSL_AD_INTERNAL_ERROR;
3039 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
3042 } else if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
3043 if (!tls_process_cke_rsa(s, pkt, &al))
3045 } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
3046 if (!tls_process_cke_dhe(s, pkt, &al))
3048 } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
3049 if (!tls_process_cke_ecdhe(s, pkt, &al))
3051 } else if (alg_k & SSL_kSRP) {
3052 if (!tls_process_cke_srp(s, pkt, &al))
3054 } else if (alg_k & SSL_kGOST) {
3055 if (!tls_process_cke_gost(s, pkt, &al))
3058 al = SSL_AD_HANDSHAKE_FAILURE;
3059 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
3060 SSL_R_UNKNOWN_CIPHER_TYPE);
3064 return MSG_PROCESS_CONTINUE_PROCESSING;
3067 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3068 #ifndef OPENSSL_NO_PSK
3069 OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
3070 s->s3->tmp.psk = NULL;
3072 ossl_statem_set_error(s);
3073 return MSG_PROCESS_ERROR;
3076 WORK_STATE tls_post_process_client_key_exchange(SSL *s, WORK_STATE wst)
3078 #ifndef OPENSSL_NO_SCTP
3079 if (wst == WORK_MORE_A) {
3080 if (SSL_IS_DTLS(s)) {
3081 unsigned char sctpauthkey[64];
3082 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
3084 * Add new shared key for SCTP-Auth, will be ignored if no SCTP
3087 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
3088 sizeof(DTLS1_SCTP_AUTH_LABEL));
3090 if (SSL_export_keying_material(s, sctpauthkey,
3091 sizeof(sctpauthkey), labelbuffer,
3092 sizeof(labelbuffer), NULL, 0,
3094 ossl_statem_set_error(s);
3098 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
3099 sizeof(sctpauthkey), sctpauthkey);
3104 if ((wst == WORK_MORE_B)
3106 && BIO_dgram_is_sctp(SSL_get_wbio(s))
3107 /* Are we renegotiating? */
3109 /* Are we going to skip the CertificateVerify? */
3110 && (s->session->peer == NULL || s->statem.no_cert_verify)
3111 && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
3112 s->s3->in_read_app_data = 2;
3113 s->rwstate = SSL_READING;
3114 BIO_clear_retry_flags(SSL_get_rbio(s));
3115 BIO_set_retry_read(SSL_get_rbio(s));
3116 ossl_statem_set_sctp_read_sock(s, 1);
3119 ossl_statem_set_sctp_read_sock(s, 0);
3123 if (s->statem.no_cert_verify || !s->session->peer) {
3125 * No certificate verify or no peer certificate so we no longer need
3126 * the handshake_buffer
3128 if (!ssl3_digest_cached_records(s, 0)) {
3129 ossl_statem_set_error(s);
3132 return WORK_FINISHED_CONTINUE;
3134 if (!s->s3->handshake_buffer) {
3135 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_KEY_EXCHANGE,
3136 ERR_R_INTERNAL_ERROR);
3137 ossl_statem_set_error(s);
3141 * For sigalgs freeze the handshake buffer. If we support
3142 * extms we've done this already so this is a no-op
3144 if (!ssl3_digest_cached_records(s, 1)) {
3145 ossl_statem_set_error(s);
3150 return WORK_FINISHED_CONTINUE;
3153 MSG_PROCESS_RETURN tls_process_client_certificate(SSL *s, PACKET *pkt)
3155 int i, al = SSL_AD_INTERNAL_ERROR, ret = MSG_PROCESS_ERROR;
3157 unsigned long l, llen;
3158 const unsigned char *certstart, *certbytes;
3159 STACK_OF(X509) *sk = NULL;
3160 PACKET spkt, context;
3163 if ((sk = sk_X509_new_null()) == NULL) {
3164 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3168 /* TODO(TLS1.3): For now we ignore the context. We need to verify this */
3169 if ((SSL_IS_TLS13(s) && !PACKET_get_length_prefixed_1(pkt, &context))
3170 || !PACKET_get_net_3(pkt, &llen)
3171 || !PACKET_get_sub_packet(pkt, &spkt, llen)
3172 || PACKET_remaining(pkt) != 0) {
3173 al = SSL_AD_DECODE_ERROR;
3174 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
3178 for (chainidx = 0; PACKET_remaining(&spkt) > 0; chainidx++) {
3179 if (!PACKET_get_net_3(&spkt, &l)
3180 || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3181 al = SSL_AD_DECODE_ERROR;
3182 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3183 SSL_R_CERT_LENGTH_MISMATCH);
3187 certstart = certbytes;
3188 x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
3190 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
3193 if (certbytes != (certstart + l)) {
3194 al = SSL_AD_DECODE_ERROR;
3195 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3196 SSL_R_CERT_LENGTH_MISMATCH);
3200 if (SSL_IS_TLS13(s)) {
3201 RAW_EXTENSION *rawexts = NULL;
3204 if (!PACKET_get_length_prefixed_2(&spkt, &extensions)) {
3205 al = SSL_AD_DECODE_ERROR;
3206 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_BAD_LENGTH);
3209 if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_CERTIFICATE,
3210 &rawexts, &al, NULL)
3211 || !tls_parse_all_extensions(s, EXT_TLS1_3_CERTIFICATE,
3212 rawexts, x, chainidx, &al)) {
3213 OPENSSL_free(rawexts);
3216 OPENSSL_free(rawexts);
3219 if (!sk_X509_push(sk, x)) {
3220 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3226 if (sk_X509_num(sk) <= 0) {
3227 /* TLS does not mind 0 certs returned */
3228 if (s->version == SSL3_VERSION) {
3229 al = SSL_AD_HANDSHAKE_FAILURE;
3230 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3231 SSL_R_NO_CERTIFICATES_RETURNED);
3234 /* Fail for TLS only if we required a certificate */
3235 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3236 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3237 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3238 SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3239 al = SSL_AD_HANDSHAKE_FAILURE;
3242 /* No client certificate so digest cached records */
3243 if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
3248 i = ssl_verify_cert_chain(s, sk);
3250 al = ssl_verify_alarm_type(s->verify_result);
3251 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3252 SSL_R_CERTIFICATE_VERIFY_FAILED);
3256 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, i);
3257 al = SSL_AD_HANDSHAKE_FAILURE;
3260 pkey = X509_get0_pubkey(sk_X509_value(sk, 0));
3262 al = SSL3_AD_HANDSHAKE_FAILURE;
3263 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3264 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
3269 X509_free(s->session->peer);
3270 s->session->peer = sk_X509_shift(sk);
3271 s->session->verify_result = s->verify_result;
3273 sk_X509_pop_free(s->session->peer_chain, X509_free);
3274 s->session->peer_chain = sk;
3277 * Freeze the handshake buffer. For <TLS1.3 we do this after the CKE
3280 if (SSL_IS_TLS13(s) && !ssl3_digest_cached_records(s, 1)) {
3281 al = SSL_AD_INTERNAL_ERROR;
3282 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3287 * Inconsistency alert: cert_chain does *not* include the peer's own
3288 * certificate, while we do include it in statem_clnt.c
3292 /* Save the current hash state for when we receive the CertificateVerify */
3294 && !ssl_handshake_hash(s, s->cert_verify_hash,
3295 sizeof(s->cert_verify_hash),
3296 &s->cert_verify_hash_len)) {
3297 al = SSL_AD_INTERNAL_ERROR;
3298 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3302 ret = MSG_PROCESS_CONTINUE_READING;
3306 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3307 ossl_statem_set_error(s);
3310 sk_X509_pop_free(sk, X509_free);
3314 int tls_construct_server_certificate(SSL *s, WPACKET *pkt)
3316 CERT_PKEY *cpk = s->s3->tmp.cert;
3317 int al = SSL_AD_INTERNAL_ERROR;
3320 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3325 * In TLSv1.3 the certificate chain is always preceded by a 0 length context
3326 * for the server Certificate message
3328 if ((SSL_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0))
3329 || !ssl3_output_cert_chain(s, pkt, cpk, &al)) {
3330 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3331 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3338 int tls_construct_new_session_ticket(SSL *s, WPACKET *pkt)
3340 unsigned char *senc = NULL;
3341 EVP_CIPHER_CTX *ctx = NULL;
3342 HMAC_CTX *hctx = NULL;
3343 unsigned char *p, *encdata1, *encdata2, *macdata1, *macdata2;
3344 const unsigned char *const_p;
3345 int len, slen_full, slen, lenfinal;
3348 SSL_CTX *tctx = s->session_ctx;
3349 unsigned char iv[EVP_MAX_IV_LENGTH];
3350 unsigned char key_name[TLSEXT_KEYNAME_LENGTH];
3351 int iv_len, al = SSL_AD_INTERNAL_ERROR;
3352 size_t macoffset, macendoffset;
3354 unsigned char age_add_c[sizeof(uint32_t)];
3358 if (SSL_IS_TLS13(s)) {
3359 if (RAND_bytes(age_add_u.age_add_c, sizeof(age_add_u)) <= 0)
3361 s->session->ext.tick_age_add = age_add_u.age_add;
3364 /* get session encoding length */
3365 slen_full = i2d_SSL_SESSION(s->session, NULL);
3367 * Some length values are 16 bits, so forget it if session is too
3370 if (slen_full == 0 || slen_full > 0xFF00) {
3371 ossl_statem_set_error(s);
3374 senc = OPENSSL_malloc(slen_full);
3376 ossl_statem_set_error(s);
3380 ctx = EVP_CIPHER_CTX_new();
3381 hctx = HMAC_CTX_new();
3382 if (ctx == NULL || hctx == NULL) {
3383 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
3388 if (!i2d_SSL_SESSION(s->session, &p))
3392 * create a fresh copy (not shared with other threads) to clean up
3395 sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3398 sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3400 slen = i2d_SSL_SESSION(sess, NULL);
3401 if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
3402 SSL_SESSION_free(sess);
3406 if (!i2d_SSL_SESSION(sess, &p)) {
3407 SSL_SESSION_free(sess);
3410 SSL_SESSION_free(sess);
3413 * Initialize HMAC and cipher contexts. If callback present it does
3414 * all the work otherwise use generated values from parent ctx.
3416 if (tctx->ext.ticket_key_cb) {
3417 /* if 0 is returned, write an empty ticket */
3418 int ret = tctx->ext.ticket_key_cb(s, key_name, iv, ctx,
3423 /* Put timeout and length */
3424 if (!WPACKET_put_bytes_u32(pkt, 0)
3425 || !WPACKET_put_bytes_u16(pkt, 0)) {
3426 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET,
3427 ERR_R_INTERNAL_ERROR);
3431 EVP_CIPHER_CTX_free(ctx);
3432 HMAC_CTX_free(hctx);
3437 iv_len = EVP_CIPHER_CTX_iv_length(ctx);
3439 const EVP_CIPHER *cipher = EVP_aes_256_cbc();
3441 iv_len = EVP_CIPHER_iv_length(cipher);
3442 if (RAND_bytes(iv, iv_len) <= 0)
3444 if (!EVP_EncryptInit_ex(ctx, cipher, NULL,
3445 tctx->ext.tick_aes_key, iv))
3447 if (!HMAC_Init_ex(hctx, tctx->ext.tick_hmac_key,
3448 sizeof(tctx->ext.tick_hmac_key),
3449 EVP_sha256(), NULL))
3451 memcpy(key_name, tctx->ext.tick_key_name,
3452 sizeof(tctx->ext.tick_key_name));
3456 * Ticket lifetime hint (advisory only): We leave this unspecified
3457 * for resumed session (for simplicity), and guess that tickets for
3458 * new sessions will live as long as their sessions.
3460 if (!WPACKET_put_bytes_u32(pkt, s->hit ? 0 : s->session->timeout)
3462 && !WPACKET_put_bytes_u32(pkt, age_add_u.age_add))
3463 /* Now the actual ticket data */
3464 || !WPACKET_start_sub_packet_u16(pkt)
3465 || !WPACKET_get_total_written(pkt, &macoffset)
3466 /* Output key name */
3467 || !WPACKET_memcpy(pkt, key_name, sizeof(key_name))
3469 || !WPACKET_memcpy(pkt, iv, iv_len)
3470 || !WPACKET_reserve_bytes(pkt, slen + EVP_MAX_BLOCK_LENGTH,
3472 /* Encrypt session data */
3473 || !EVP_EncryptUpdate(ctx, encdata1, &len, senc, slen)
3474 || !WPACKET_allocate_bytes(pkt, len, &encdata2)
3475 || encdata1 != encdata2
3476 || !EVP_EncryptFinal(ctx, encdata1 + len, &lenfinal)
3477 || !WPACKET_allocate_bytes(pkt, lenfinal, &encdata2)
3478 || encdata1 + len != encdata2
3479 || len + lenfinal > slen + EVP_MAX_BLOCK_LENGTH
3480 || !WPACKET_get_total_written(pkt, &macendoffset)
3481 || !HMAC_Update(hctx,
3482 (unsigned char *)s->init_buf->data + macoffset,
3483 macendoffset - macoffset)
3484 || !WPACKET_reserve_bytes(pkt, EVP_MAX_MD_SIZE, &macdata1)
3485 || !HMAC_Final(hctx, macdata1, &hlen)
3486 || hlen > EVP_MAX_MD_SIZE
3487 || !WPACKET_allocate_bytes(pkt, hlen, &macdata2)
3488 || macdata1 != macdata2
3489 || !WPACKET_close(pkt)
3491 && !tls_construct_extensions(s, pkt,
3492 EXT_TLS1_3_NEW_SESSION_TICKET,
3494 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_INTERNAL_ERROR);
3497 EVP_CIPHER_CTX_free(ctx);
3498 HMAC_CTX_free(hctx);
3504 EVP_CIPHER_CTX_free(ctx);
3505 HMAC_CTX_free(hctx);
3506 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3511 * In TLSv1.3 this is called from the extensions code, otherwise it is used to
3512 * create a separate message. Returns 1 on success or 0 on failure.
3514 int tls_construct_cert_status_body(SSL *s, WPACKET *pkt)
3516 if (!WPACKET_put_bytes_u8(pkt, s->ext.status_type)
3517 || !WPACKET_sub_memcpy_u24(pkt, s->ext.ocsp.resp,
3518 s->ext.ocsp.resp_len)) {
3519 SSLerr(SSL_F_TLS_CONSTRUCT_CERT_STATUS_BODY, ERR_R_INTERNAL_ERROR);
3526 int tls_construct_cert_status(SSL *s, WPACKET *pkt)
3528 if (!tls_construct_cert_status_body(s, pkt)) {
3529 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3536 #ifndef OPENSSL_NO_NEXTPROTONEG
3538 * tls_process_next_proto reads a Next Protocol Negotiation handshake message.
3539 * It sets the next_proto member in s if found
3541 MSG_PROCESS_RETURN tls_process_next_proto(SSL *s, PACKET *pkt)
3543 PACKET next_proto, padding;
3544 size_t next_proto_len;
3547 * The payload looks like:
3549 * uint8 proto[proto_len];
3550 * uint8 padding_len;
3551 * uint8 padding[padding_len];
3553 if (!PACKET_get_length_prefixed_1(pkt, &next_proto)
3554 || !PACKET_get_length_prefixed_1(pkt, &padding)
3555 || PACKET_remaining(pkt) > 0) {
3556 SSLerr(SSL_F_TLS_PROCESS_NEXT_PROTO, SSL_R_LENGTH_MISMATCH);
3560 if (!PACKET_memdup(&next_proto, &s->ext.npn, &next_proto_len)) {
3565 s->ext.npn_len = (unsigned char)next_proto_len;