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 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,
66 PACKET *cipher_suites,
68 **skp, int sslv2format,
72 * ossl_statem_server13_read_transition() encapsulates the logic for the allowed
73 * handshake state transitions when a TLSv1.3 server is reading messages from
74 * the client. The message type that the client has sent is provided in |mt|.
75 * The current state is in |s->statem.hand_state|.
77 * Return values are 1 for success (transition allowed) and 0 on error
78 * (transition not allowed)
80 static int ossl_statem_server13_read_transition(SSL *s, int mt)
82 OSSL_STATEM *st = &s->statem;
85 * TODO(TLS1.3): This is still based on the TLSv1.2 state machine. Over time
86 * we will update this to look more like real TLSv1.3
90 * Note: There is no case for TLS_ST_BEFORE because at that stage we have
91 * not negotiated TLSv1.3 yet, so that case is handled by
92 * ossl_statem_server_read_transition()
94 switch (st->hand_state) {
98 case TLS_ST_SW_FINISHED:
99 if (s->s3->tmp.cert_request) {
100 if (mt == SSL3_MT_CERTIFICATE) {
101 st->hand_state = TLS_ST_SR_CERT;
105 if (mt == SSL3_MT_FINISHED) {
106 st->hand_state = TLS_ST_SR_FINISHED;
113 if (s->session->peer == NULL) {
114 if (mt == SSL3_MT_FINISHED) {
115 st->hand_state = TLS_ST_SR_FINISHED;
119 if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
120 st->hand_state = TLS_ST_SR_CERT_VRFY;
126 case TLS_ST_SR_CERT_VRFY:
127 if (mt == SSL3_MT_FINISHED) {
128 st->hand_state = TLS_ST_SR_FINISHED;
134 /* No valid transition found */
135 ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_UNEXPECTED_MESSAGE);
136 SSLerr(SSL_F_OSSL_STATEM_SERVER13_READ_TRANSITION,
137 SSL_R_UNEXPECTED_MESSAGE);
142 * ossl_statem_server_read_transition() encapsulates the logic for the allowed
143 * handshake state transitions when the server is reading messages from the
144 * client. The message type that the client has sent is provided in |mt|. The
145 * current state is in |s->statem.hand_state|.
147 * Return values are 1 for success (transition allowed) and 0 on error
148 * (transition not allowed)
150 int ossl_statem_server_read_transition(SSL *s, int mt)
152 OSSL_STATEM *st = &s->statem;
154 if (SSL_IS_TLS13(s)) {
155 if (!ossl_statem_server13_read_transition(s, mt))
160 switch (st->hand_state) {
166 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
167 if (mt == SSL3_MT_CLIENT_HELLO) {
168 st->hand_state = TLS_ST_SR_CLNT_HELLO;
173 case TLS_ST_SW_SRVR_DONE:
175 * If we get a CKE message after a ServerDone then either
176 * 1) We didn't request a Certificate
178 * 2) If we did request one then
179 * a) We allow no Certificate to be returned
181 * b) We are running SSL3 (in TLS1.0+ the client must return a 0
182 * list if we requested a certificate)
184 if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
185 if (s->s3->tmp.cert_request) {
186 if (s->version == SSL3_VERSION) {
187 if ((s->verify_mode & SSL_VERIFY_PEER)
188 && (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
190 * This isn't an unexpected message as such - we're just
191 * not going to accept it because we require a client
194 ssl3_send_alert(s, SSL3_AL_FATAL,
195 SSL3_AD_HANDSHAKE_FAILURE);
196 SSLerr(SSL_F_OSSL_STATEM_SERVER_READ_TRANSITION,
197 SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
200 st->hand_state = TLS_ST_SR_KEY_EXCH;
204 st->hand_state = TLS_ST_SR_KEY_EXCH;
207 } else if (s->s3->tmp.cert_request) {
208 if (mt == SSL3_MT_CERTIFICATE) {
209 st->hand_state = TLS_ST_SR_CERT;
216 if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
217 st->hand_state = TLS_ST_SR_KEY_EXCH;
222 case TLS_ST_SR_KEY_EXCH:
224 * We should only process a CertificateVerify message if we have
225 * received a Certificate from the client. If so then |s->session->peer|
226 * will be non NULL. In some instances a CertificateVerify message is
227 * not required even if the peer has sent a Certificate (e.g. such as in
228 * the case of static DH). In that case |st->no_cert_verify| should be
231 if (s->session->peer == NULL || st->no_cert_verify) {
232 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
234 * For the ECDH ciphersuites when the client sends its ECDH
235 * pub key in a certificate, the CertificateVerify message is
236 * not sent. Also for GOST ciphersuites when the client uses
237 * its key from the certificate for key exchange.
239 st->hand_state = TLS_ST_SR_CHANGE;
243 if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
244 st->hand_state = TLS_ST_SR_CERT_VRFY;
250 case TLS_ST_SR_CERT_VRFY:
251 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
252 st->hand_state = TLS_ST_SR_CHANGE;
257 case TLS_ST_SR_CHANGE:
258 #ifndef OPENSSL_NO_NEXTPROTONEG
259 if (s->s3->npn_seen) {
260 if (mt == SSL3_MT_NEXT_PROTO) {
261 st->hand_state = TLS_ST_SR_NEXT_PROTO;
266 if (mt == SSL3_MT_FINISHED) {
267 st->hand_state = TLS_ST_SR_FINISHED;
270 #ifndef OPENSSL_NO_NEXTPROTONEG
275 #ifndef OPENSSL_NO_NEXTPROTONEG
276 case TLS_ST_SR_NEXT_PROTO:
277 if (mt == SSL3_MT_FINISHED) {
278 st->hand_state = TLS_ST_SR_FINISHED;
284 case TLS_ST_SW_FINISHED:
285 if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
286 st->hand_state = TLS_ST_SR_CHANGE;
293 /* No valid transition found */
294 ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_UNEXPECTED_MESSAGE);
295 SSLerr(SSL_F_OSSL_STATEM_SERVER_READ_TRANSITION, SSL_R_UNEXPECTED_MESSAGE);
300 * Should we send a ServerKeyExchange message?
302 * Valid return values are:
306 static int send_server_key_exchange(SSL *s)
308 unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
311 * only send a ServerKeyExchange if DH or fortezza but we have a
312 * sign only certificate PSK: may send PSK identity hints For
313 * ECC ciphersuites, we send a serverKeyExchange message only if
314 * the cipher suite is either ECDH-anon or ECDHE. In other cases,
315 * the server certificate contains the server's public key for
318 if (alg_k & (SSL_kDHE | SSL_kECDHE)
320 * PSK: send ServerKeyExchange if PSK identity hint if
323 #ifndef OPENSSL_NO_PSK
324 /* Only send SKE if we have identity hint for plain PSK */
325 || ((alg_k & (SSL_kPSK | SSL_kRSAPSK))
326 && s->cert->psk_identity_hint)
327 /* For other PSK always send SKE */
328 || (alg_k & (SSL_PSK & (SSL_kDHEPSK | SSL_kECDHEPSK)))
330 #ifndef OPENSSL_NO_SRP
331 /* SRP: send ServerKeyExchange */
332 || (alg_k & SSL_kSRP)
342 * Should we send a CertificateRequest message?
344 * Valid return values are:
348 static int send_certificate_request(SSL *s)
351 /* don't request cert unless asked for it: */
352 s->verify_mode & SSL_VERIFY_PEER
354 * if SSL_VERIFY_CLIENT_ONCE is set, don't request cert
355 * during re-negotiation:
357 && (s->s3->tmp.finish_md_len == 0 ||
358 !(s->verify_mode & SSL_VERIFY_CLIENT_ONCE))
360 * never request cert in anonymous ciphersuites (see
361 * section "Certificate request" in SSL 3 drafts and in
364 && (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
366 * ... except when the application insists on
367 * verification (against the specs, but statem_clnt.c accepts
370 || (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
371 /* don't request certificate for SRP auth */
372 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aSRP)
374 * With normal PSK Certificates and Certificate Requests
377 && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aPSK)) {
385 * ossl_statem_server13_write_transition() works out what handshake state to
386 * move to next when a TLSv1.3 server is writing messages to be sent to the
389 static WRITE_TRAN ossl_statem_server13_write_transition(SSL *s)
391 OSSL_STATEM *st = &s->statem;
394 * TODO(TLS1.3): This is still based on the TLSv1.2 state machine. Over time
395 * we will update this to look more like real TLSv1.3
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;
408 case TLS_ST_SR_CLNT_HELLO:
409 st->hand_state = TLS_ST_SW_SRVR_HELLO;
410 return WRITE_TRAN_CONTINUE;
412 case TLS_ST_SW_SRVR_HELLO:
413 st->hand_state = TLS_ST_SW_ENCRYPTED_EXTENSIONS;
414 return WRITE_TRAN_CONTINUE;
416 case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
418 st->hand_state = TLS_ST_SW_FINISHED;
419 else if (send_certificate_request(s))
420 st->hand_state = TLS_ST_SW_CERT_REQ;
422 st->hand_state = TLS_ST_SW_CERT;
424 return WRITE_TRAN_CONTINUE;
426 case TLS_ST_SW_CERT_REQ:
427 st->hand_state = TLS_ST_SW_CERT;
428 return WRITE_TRAN_CONTINUE;
431 st->hand_state = TLS_ST_SW_CERT_VRFY;
432 return WRITE_TRAN_CONTINUE;
434 case TLS_ST_SW_CERT_VRFY:
435 st->hand_state = TLS_ST_SW_FINISHED;
436 return WRITE_TRAN_CONTINUE;
438 case TLS_ST_SW_FINISHED:
439 return WRITE_TRAN_FINISHED;
441 case TLS_ST_SR_FINISHED:
443 * Technically we have finished the handshake at this point, but we're
444 * going to remain "in_init" for now and write out the session ticket
446 * TODO(TLS1.3): Perhaps we need to be able to control this behaviour
447 * and give the application the opportunity to delay sending the
450 st->hand_state = TLS_ST_SW_SESSION_TICKET;
451 return WRITE_TRAN_CONTINUE;
453 case TLS_ST_SW_SESSION_TICKET:
454 st->hand_state = TLS_ST_OK;
455 ossl_statem_set_in_init(s, 0);
456 return WRITE_TRAN_CONTINUE;
461 * ossl_statem_server_write_transition() works out what handshake state to move
462 * to next when the server is writing messages to be sent to the client.
464 WRITE_TRAN ossl_statem_server_write_transition(SSL *s)
466 OSSL_STATEM *st = &s->statem;
469 * Note that before the ClientHello we don't know what version we are going
470 * to negotiate yet, so we don't take this branch until later
474 return ossl_statem_server13_write_transition(s);
476 switch (st->hand_state) {
478 /* Shouldn't happen */
479 return WRITE_TRAN_ERROR;
482 if (st->request_state == TLS_ST_SW_HELLO_REQ) {
483 /* We must be trying to renegotiate */
484 st->hand_state = TLS_ST_SW_HELLO_REQ;
485 st->request_state = TLS_ST_BEFORE;
486 return WRITE_TRAN_CONTINUE;
488 /* Must be an incoming ClientHello */
489 if (!tls_setup_handshake(s)) {
490 ossl_statem_set_error(s);
491 return WRITE_TRAN_ERROR;
496 /* Just go straight to trying to read from the client */
497 return WRITE_TRAN_FINISHED;
499 case TLS_ST_SW_HELLO_REQ:
500 st->hand_state = TLS_ST_OK;
501 ossl_statem_set_in_init(s, 0);
502 return WRITE_TRAN_CONTINUE;
504 case TLS_ST_SR_CLNT_HELLO:
505 if (SSL_IS_DTLS(s) && !s->d1->cookie_verified
506 && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
507 st->hand_state = DTLS_ST_SW_HELLO_VERIFY_REQUEST;
509 st->hand_state = TLS_ST_SW_SRVR_HELLO;
510 return WRITE_TRAN_CONTINUE;
512 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
513 return WRITE_TRAN_FINISHED;
515 case TLS_ST_SW_SRVR_HELLO:
517 if (s->ext.ticket_expected)
518 st->hand_state = TLS_ST_SW_SESSION_TICKET;
520 st->hand_state = TLS_ST_SW_CHANGE;
522 /* Check if it is anon DH or anon ECDH, */
523 /* normal PSK or SRP */
524 if (!(s->s3->tmp.new_cipher->algorithm_auth &
525 (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
526 st->hand_state = TLS_ST_SW_CERT;
527 } else if (send_server_key_exchange(s)) {
528 st->hand_state = TLS_ST_SW_KEY_EXCH;
529 } else if (send_certificate_request(s)) {
530 st->hand_state = TLS_ST_SW_CERT_REQ;
532 st->hand_state = TLS_ST_SW_SRVR_DONE;
535 return WRITE_TRAN_CONTINUE;
538 if (s->ext.status_expected) {
539 st->hand_state = TLS_ST_SW_CERT_STATUS;
540 return WRITE_TRAN_CONTINUE;
544 case TLS_ST_SW_CERT_STATUS:
545 if (send_server_key_exchange(s)) {
546 st->hand_state = TLS_ST_SW_KEY_EXCH;
547 return WRITE_TRAN_CONTINUE;
551 case TLS_ST_SW_KEY_EXCH:
552 if (send_certificate_request(s)) {
553 st->hand_state = TLS_ST_SW_CERT_REQ;
554 return WRITE_TRAN_CONTINUE;
558 case TLS_ST_SW_CERT_REQ:
559 st->hand_state = TLS_ST_SW_SRVR_DONE;
560 return WRITE_TRAN_CONTINUE;
562 case TLS_ST_SW_SRVR_DONE:
563 return WRITE_TRAN_FINISHED;
565 case TLS_ST_SR_FINISHED:
567 st->hand_state = TLS_ST_OK;
568 ossl_statem_set_in_init(s, 0);
569 return WRITE_TRAN_CONTINUE;
570 } else if (s->ext.ticket_expected) {
571 st->hand_state = TLS_ST_SW_SESSION_TICKET;
573 st->hand_state = TLS_ST_SW_CHANGE;
575 return WRITE_TRAN_CONTINUE;
577 case TLS_ST_SW_SESSION_TICKET:
578 st->hand_state = TLS_ST_SW_CHANGE;
579 return WRITE_TRAN_CONTINUE;
581 case TLS_ST_SW_CHANGE:
582 st->hand_state = TLS_ST_SW_FINISHED;
583 return WRITE_TRAN_CONTINUE;
585 case TLS_ST_SW_FINISHED:
587 return WRITE_TRAN_FINISHED;
589 st->hand_state = TLS_ST_OK;
590 ossl_statem_set_in_init(s, 0);
591 return WRITE_TRAN_CONTINUE;
596 * Perform any pre work that needs to be done prior to sending a message from
597 * the server to the client.
599 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst)
601 OSSL_STATEM *st = &s->statem;
603 switch (st->hand_state) {
605 /* No pre work to be done */
608 case TLS_ST_SW_HELLO_REQ:
611 dtls1_clear_sent_buffer(s);
614 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
616 if (SSL_IS_DTLS(s)) {
617 dtls1_clear_sent_buffer(s);
618 /* We don't buffer this message so don't use the timer */
623 case TLS_ST_SW_SRVR_HELLO:
624 if (SSL_IS_DTLS(s)) {
626 * Messages we write from now on should be bufferred and
627 * retransmitted if necessary, so we need to use the timer now
633 case TLS_ST_SW_SRVR_DONE:
634 #ifndef OPENSSL_NO_SCTP
635 if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s)))
636 return dtls_wait_for_dry(s);
638 return WORK_FINISHED_CONTINUE;
640 case TLS_ST_SW_SESSION_TICKET:
641 if (SSL_IS_TLS13(s)) {
643 * Actually this is the end of the handshake, but we're going
644 * straight into writing the session ticket out. So we finish off
645 * the handshake, but keep the various buffers active.
647 return tls_finish_handshake(s, wst, 0);
648 } if (SSL_IS_DTLS(s)) {
650 * We're into the last flight. We don't retransmit the last flight
651 * unless we need to, so we don't use the timer
657 case TLS_ST_SW_CHANGE:
658 s->session->cipher = s->s3->tmp.new_cipher;
659 if (!s->method->ssl3_enc->setup_key_block(s)) {
660 ossl_statem_set_error(s);
663 if (SSL_IS_DTLS(s)) {
665 * We're into the last flight. We don't retransmit the last flight
666 * unless we need to, so we don't use the timer. This might have
667 * already been set to 0 if we sent a NewSessionTicket message,
668 * but we'll set it again here in case we didn't.
672 return WORK_FINISHED_CONTINUE;
675 return tls_finish_handshake(s, wst, 1);
678 return WORK_FINISHED_CONTINUE;
682 * Perform any work that needs to be done after sending a message from the
683 * server to the client.
685 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst)
687 OSSL_STATEM *st = &s->statem;
691 switch (st->hand_state) {
693 /* No post work to be done */
696 case TLS_ST_SW_HELLO_REQ:
697 if (statem_flush(s) != 1)
699 if (!ssl3_init_finished_mac(s)) {
700 ossl_statem_set_error(s);
705 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
706 if (statem_flush(s) != 1)
708 /* HelloVerifyRequest resets Finished MAC */
709 if (s->version != DTLS1_BAD_VER && !ssl3_init_finished_mac(s)) {
710 ossl_statem_set_error(s);
714 * The next message should be another ClientHello which we need to
715 * treat like it was the first packet
720 case TLS_ST_SW_SRVR_HELLO:
721 #ifndef OPENSSL_NO_SCTP
722 if (SSL_IS_DTLS(s) && s->hit) {
723 unsigned char sctpauthkey[64];
724 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
727 * Add new shared key for SCTP-Auth, will be ignored if no
730 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
731 sizeof(DTLS1_SCTP_AUTH_LABEL));
733 if (SSL_export_keying_material(s, sctpauthkey,
734 sizeof(sctpauthkey), labelbuffer,
735 sizeof(labelbuffer), NULL, 0,
737 ossl_statem_set_error(s);
741 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
742 sizeof(sctpauthkey), sctpauthkey);
746 * TODO(TLS1.3): This actually causes a problem. We don't yet know
747 * whether the next record we are going to receive is an unencrypted
748 * alert, or an encrypted handshake message. We're going to need
749 * something clever in the record layer for this.
751 if (SSL_IS_TLS13(s)) {
752 if (!s->method->ssl3_enc->setup_key_block(s)
753 || !s->method->ssl3_enc->change_cipher_state(s,
754 SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_WRITE)
755 || !s->method->ssl3_enc->change_cipher_state(s,
756 SSL3_CC_HANDSHAKE |SSL3_CHANGE_CIPHER_SERVER_READ))
761 case TLS_ST_SW_CHANGE:
762 #ifndef OPENSSL_NO_SCTP
763 if (SSL_IS_DTLS(s) && !s->hit) {
765 * Change to new shared key of SCTP-Auth, will be ignored if
768 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
772 if (!s->method->ssl3_enc->change_cipher_state(s,
773 SSL3_CHANGE_CIPHER_SERVER_WRITE))
775 ossl_statem_set_error(s);
780 dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
783 case TLS_ST_SW_SRVR_DONE:
784 if (statem_flush(s) != 1)
788 case TLS_ST_SW_FINISHED:
789 if (statem_flush(s) != 1)
791 #ifndef OPENSSL_NO_SCTP
792 if (SSL_IS_DTLS(s) && s->hit) {
794 * Change to new shared key of SCTP-Auth, will be ignored if
797 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
801 if (SSL_IS_TLS13(s)) {
802 if (!s->method->ssl3_enc->generate_master_secret(s,
803 s->master_secret, s->handshake_secret, 0,
804 &s->session->master_key_length)
805 || !s->method->ssl3_enc->change_cipher_state(s,
806 SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_WRITE))
811 case TLS_ST_SW_SESSION_TICKET:
812 if (SSL_IS_TLS13(s) && statem_flush(s) != 1)
817 return WORK_FINISHED_CONTINUE;
821 * Get the message construction function and message type for sending from the
824 * Valid return values are:
828 int ossl_statem_server_construct_message(SSL *s, WPACKET *pkt,
829 confunc_f *confunc, int *mt)
831 OSSL_STATEM *st = &s->statem;
833 switch (st->hand_state) {
835 /* Shouldn't happen */
838 case TLS_ST_SW_CHANGE:
840 *confunc = dtls_construct_change_cipher_spec;
842 *confunc = tls_construct_change_cipher_spec;
843 *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
846 case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
847 *confunc = dtls_construct_hello_verify_request;
848 *mt = DTLS1_MT_HELLO_VERIFY_REQUEST;
851 case TLS_ST_SW_HELLO_REQ:
852 /* No construction function needed */
854 *mt = SSL3_MT_HELLO_REQUEST;
857 case TLS_ST_SW_SRVR_HELLO:
858 *confunc = tls_construct_server_hello;
859 *mt = SSL3_MT_SERVER_HELLO;
863 *confunc = tls_construct_server_certificate;
864 *mt = SSL3_MT_CERTIFICATE;
867 case TLS_ST_SW_CERT_VRFY:
868 *confunc = tls_construct_cert_verify;
869 *mt = SSL3_MT_CERTIFICATE_VERIFY;
873 case TLS_ST_SW_KEY_EXCH:
874 *confunc = tls_construct_server_key_exchange;
875 *mt = SSL3_MT_SERVER_KEY_EXCHANGE;
878 case TLS_ST_SW_CERT_REQ:
879 *confunc = tls_construct_certificate_request;
880 *mt = SSL3_MT_CERTIFICATE_REQUEST;
883 case TLS_ST_SW_SRVR_DONE:
884 *confunc = tls_construct_server_done;
885 *mt = SSL3_MT_SERVER_DONE;
888 case TLS_ST_SW_SESSION_TICKET:
889 *confunc = tls_construct_new_session_ticket;
890 *mt = SSL3_MT_NEWSESSION_TICKET;
893 case TLS_ST_SW_CERT_STATUS:
894 *confunc = tls_construct_cert_status;
895 *mt = SSL3_MT_CERTIFICATE_STATUS;
898 case TLS_ST_SW_FINISHED:
899 *confunc = tls_construct_finished;
900 *mt = SSL3_MT_FINISHED;
903 case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
904 *confunc = tls_construct_encrypted_extensions;
905 *mt = SSL3_MT_ENCRYPTED_EXTENSIONS;
913 * Maximum size (excluding the Handshake header) of a ClientHello message,
914 * calculated as follows:
916 * 2 + # client_version
917 * 32 + # only valid length for random
918 * 1 + # length of session_id
919 * 32 + # maximum size for session_id
920 * 2 + # length of cipher suites
921 * 2^16-2 + # maximum length of cipher suites array
922 * 1 + # length of compression_methods
923 * 2^8-1 + # maximum length of compression methods
924 * 2 + # length of extensions
925 * 2^16-1 # maximum length of extensions
927 #define CLIENT_HELLO_MAX_LENGTH 131396
929 #define CLIENT_KEY_EXCH_MAX_LENGTH 2048
930 #define NEXT_PROTO_MAX_LENGTH 514
933 * Returns the maximum allowed length for the current message that we are
934 * reading. Excludes the message header.
936 size_t ossl_statem_server_max_message_size(SSL *s)
938 OSSL_STATEM *st = &s->statem;
940 switch (st->hand_state) {
942 /* Shouldn't happen */
945 case TLS_ST_SR_CLNT_HELLO:
946 return CLIENT_HELLO_MAX_LENGTH;
949 return s->max_cert_list;
951 case TLS_ST_SR_KEY_EXCH:
952 return CLIENT_KEY_EXCH_MAX_LENGTH;
954 case TLS_ST_SR_CERT_VRFY:
955 return SSL3_RT_MAX_PLAIN_LENGTH;
957 #ifndef OPENSSL_NO_NEXTPROTONEG
958 case TLS_ST_SR_NEXT_PROTO:
959 return NEXT_PROTO_MAX_LENGTH;
962 case TLS_ST_SR_CHANGE:
963 return CCS_MAX_LENGTH;
965 case TLS_ST_SR_FINISHED:
966 return FINISHED_MAX_LENGTH;
971 * Process a message that the server has received from the client.
973 MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL *s, PACKET *pkt)
975 OSSL_STATEM *st = &s->statem;
977 switch (st->hand_state) {
979 /* Shouldn't happen */
980 return MSG_PROCESS_ERROR;
982 case TLS_ST_SR_CLNT_HELLO:
983 return tls_process_client_hello(s, pkt);
986 return tls_process_client_certificate(s, pkt);
988 case TLS_ST_SR_KEY_EXCH:
989 return tls_process_client_key_exchange(s, pkt);
991 case TLS_ST_SR_CERT_VRFY:
992 return tls_process_cert_verify(s, pkt);
994 #ifndef OPENSSL_NO_NEXTPROTONEG
995 case TLS_ST_SR_NEXT_PROTO:
996 return tls_process_next_proto(s, pkt);
999 case TLS_ST_SR_CHANGE:
1000 return tls_process_change_cipher_spec(s, pkt);
1002 case TLS_ST_SR_FINISHED:
1003 return tls_process_finished(s, pkt);
1008 * Perform any further processing required following the receipt of a message
1011 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst)
1013 OSSL_STATEM *st = &s->statem;
1015 switch (st->hand_state) {
1017 /* Shouldn't happen */
1020 case TLS_ST_SR_CLNT_HELLO:
1021 return tls_post_process_client_hello(s, wst);
1023 case TLS_ST_SR_KEY_EXCH:
1024 return tls_post_process_client_key_exchange(s, wst);
1026 case TLS_ST_SR_CERT_VRFY:
1027 #ifndef OPENSSL_NO_SCTP
1028 if ( /* Is this SCTP? */
1029 BIO_dgram_is_sctp(SSL_get_wbio(s))
1030 /* Are we renegotiating? */
1031 && s->renegotiate && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
1032 s->s3->in_read_app_data = 2;
1033 s->rwstate = SSL_READING;
1034 BIO_clear_retry_flags(SSL_get_rbio(s));
1035 BIO_set_retry_read(SSL_get_rbio(s));
1036 ossl_statem_set_sctp_read_sock(s, 1);
1039 ossl_statem_set_sctp_read_sock(s, 0);
1042 return WORK_FINISHED_CONTINUE;
1044 return WORK_FINISHED_CONTINUE;
1047 #ifndef OPENSSL_NO_SRP
1048 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
1050 int ret = SSL_ERROR_NONE;
1052 *al = SSL_AD_UNRECOGNIZED_NAME;
1054 if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
1055 (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
1056 if (s->srp_ctx.login == NULL) {
1058 * RFC 5054 says SHOULD reject, we do so if There is no srp
1061 ret = SSL3_AL_FATAL;
1062 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
1064 ret = SSL_srp_server_param_with_username(s, al);
1071 int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
1074 /* Always use DTLS 1.0 version: see RFC 6347 */
1075 if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION)
1076 || !WPACKET_sub_memcpy_u8(pkt, cookie, cookie_len))
1082 int dtls_construct_hello_verify_request(SSL *s, WPACKET *pkt)
1084 unsigned int cookie_leni;
1085 if (s->ctx->app_gen_cookie_cb == NULL ||
1086 s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
1087 &cookie_leni) == 0 ||
1088 cookie_leni > 255) {
1089 SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST,
1090 SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
1093 s->d1->cookie_len = cookie_leni;
1095 if (!dtls_raw_hello_verify_request(pkt, s->d1->cookie,
1096 s->d1->cookie_len)) {
1097 SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST, ERR_R_INTERNAL_ERROR);
1104 #ifndef OPENSSL_NO_EC
1106 * ssl_check_for_safari attempts to fingerprint Safari using OS X
1107 * SecureTransport using the TLS extension block in |hello|.
1108 * Safari, since 10.6, sends exactly these extensions, in this order:
1113 * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
1114 * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
1115 * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
1116 * 10.8..10.8.3 (which don't work).
1118 static void ssl_check_for_safari(SSL *s, const CLIENTHELLO_MSG *hello)
1120 static const unsigned char kSafariExtensionsBlock[] = {
1121 0x00, 0x0a, /* elliptic_curves extension */
1122 0x00, 0x08, /* 8 bytes */
1123 0x00, 0x06, /* 6 bytes of curve ids */
1124 0x00, 0x17, /* P-256 */
1125 0x00, 0x18, /* P-384 */
1126 0x00, 0x19, /* P-521 */
1128 0x00, 0x0b, /* ec_point_formats */
1129 0x00, 0x02, /* 2 bytes */
1130 0x01, /* 1 point format */
1131 0x00, /* uncompressed */
1132 /* The following is only present in TLS 1.2 */
1133 0x00, 0x0d, /* signature_algorithms */
1134 0x00, 0x0c, /* 12 bytes */
1135 0x00, 0x0a, /* 10 bytes */
1136 0x05, 0x01, /* SHA-384/RSA */
1137 0x04, 0x01, /* SHA-256/RSA */
1138 0x02, 0x01, /* SHA-1/RSA */
1139 0x04, 0x03, /* SHA-256/ECDSA */
1140 0x02, 0x03, /* SHA-1/ECDSA */
1142 /* Length of the common prefix (first two extensions). */
1143 static const size_t kSafariCommonExtensionsLength = 18;
1148 tmppkt = hello->extensions;
1150 if (!PACKET_forward(&tmppkt, 2)
1151 || !PACKET_get_net_2(&tmppkt, &type)
1152 || !PACKET_get_length_prefixed_2(&tmppkt, &sni)) {
1156 if (type != TLSEXT_TYPE_server_name)
1159 ext_len = TLS1_get_client_version(s) >= TLS1_2_VERSION ?
1160 sizeof(kSafariExtensionsBlock) : kSafariCommonExtensionsLength;
1162 s->s3->is_probably_safari = PACKET_equal(&tmppkt, kSafariExtensionsBlock,
1165 #endif /* !OPENSSL_NO_EC */
1167 MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
1169 int i, al = SSL_AD_INTERNAL_ERROR;
1173 const SSL_CIPHER *c;
1174 #ifndef OPENSSL_NO_COMP
1175 SSL_COMP *comp = NULL;
1177 STACK_OF(SSL_CIPHER) *ciphers = NULL;
1179 /* |cookie| will only be initialized for DTLS. */
1180 PACKET session_id, compression, extensions, cookie;
1181 static const unsigned char null_compression = 0;
1182 CLIENTHELLO_MSG clienthello;
1184 /* Check if this is actually an unexpected renegotiation ClientHello */
1185 if (s->renegotiate == 0 && !SSL_IS_FIRST_HANDSHAKE(s)) {
1190 /* This is a real handshake so make sure we clean it up at the end */
1191 s->statem.cleanuphand = 1;
1194 * First, parse the raw ClientHello data into the CLIENTHELLO_MSG structure.
1196 memset(&clienthello, 0, sizeof(clienthello));
1197 clienthello.isv2 = RECORD_LAYER_is_sslv2_record(&s->rlayer);
1198 PACKET_null_init(&cookie);
1200 if (clienthello.isv2) {
1204 * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
1205 * header is sent directly on the wire, not wrapped as a TLS
1206 * record. Our record layer just processes the message length and passes
1207 * the rest right through. Its format is:
1209 * 0-1 msg_length - decoded by the record layer
1210 * 2 msg_type - s->init_msg points here
1212 * 5-6 cipher_spec_length
1213 * 7-8 session_id_length
1214 * 9-10 challenge_length
1218 if (!PACKET_get_1(pkt, &mt)
1219 || mt != SSL2_MT_CLIENT_HELLO) {
1221 * Should never happen. We should have tested this in the record
1222 * layer in order to have determined that this is a SSLv2 record
1223 * in the first place
1225 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1230 if (!PACKET_get_net_2(pkt, &clienthello.legacy_version)) {
1231 al = SSL_AD_DECODE_ERROR;
1232 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1236 /* Parse the message and load client random. */
1237 if (clienthello.isv2) {
1239 * Handle an SSLv2 backwards compatible ClientHello
1240 * Note, this is only for SSLv3+ using the backward compatible format.
1241 * Real SSLv2 is not supported, and is rejected below.
1243 unsigned int ciphersuite_len, session_id_len, challenge_len;
1246 if (!PACKET_get_net_2(pkt, &ciphersuite_len)
1247 || !PACKET_get_net_2(pkt, &session_id_len)
1248 || !PACKET_get_net_2(pkt, &challenge_len)) {
1249 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1250 SSL_R_RECORD_LENGTH_MISMATCH);
1251 al = SSL_AD_DECODE_ERROR;
1255 if (session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
1256 al = SSL_AD_DECODE_ERROR;
1257 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1261 if (!PACKET_get_sub_packet(pkt, &clienthello.ciphersuites,
1263 || !PACKET_copy_bytes(pkt, clienthello.session_id, session_id_len)
1264 || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
1265 /* No extensions. */
1266 || PACKET_remaining(pkt) != 0) {
1267 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1268 SSL_R_RECORD_LENGTH_MISMATCH);
1269 al = SSL_AD_DECODE_ERROR;
1272 clienthello.session_id_len = session_id_len;
1274 /* Load the client random and compression list. We use SSL3_RANDOM_SIZE
1275 * here rather than sizeof(clienthello.random) because that is the limit
1276 * for SSLv3 and it is fixed. It won't change even if
1277 * sizeof(clienthello.random) does.
1279 challenge_len = challenge_len > SSL3_RANDOM_SIZE
1280 ? SSL3_RANDOM_SIZE : challenge_len;
1281 memset(clienthello.random, 0, SSL3_RANDOM_SIZE);
1282 if (!PACKET_copy_bytes(&challenge,
1283 clienthello.random + SSL3_RANDOM_SIZE -
1284 challenge_len, challenge_len)
1285 /* Advertise only null compression. */
1286 || !PACKET_buf_init(&compression, &null_compression, 1)) {
1287 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1288 al = SSL_AD_INTERNAL_ERROR;
1292 PACKET_null_init(&clienthello.extensions);
1294 /* Regular ClientHello. */
1295 if (!PACKET_copy_bytes(pkt, clienthello.random, SSL3_RANDOM_SIZE)
1296 || !PACKET_get_length_prefixed_1(pkt, &session_id)
1297 || !PACKET_copy_all(&session_id, clienthello.session_id,
1298 SSL_MAX_SSL_SESSION_ID_LENGTH,
1299 &clienthello.session_id_len)) {
1300 al = SSL_AD_DECODE_ERROR;
1301 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1305 if (SSL_IS_DTLS(s)) {
1306 if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
1307 al = SSL_AD_DECODE_ERROR;
1308 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1311 if (!PACKET_copy_all(&cookie, clienthello.dtls_cookie,
1312 DTLS1_COOKIE_LENGTH,
1313 &clienthello.dtls_cookie_len)) {
1314 al = SSL_AD_DECODE_ERROR;
1315 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1319 * If we require cookies and this ClientHello doesn't contain one,
1320 * just return since we do not want to allocate any memory yet.
1321 * So check cookie length...
1323 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1324 if (clienthello.dtls_cookie_len == 0)
1329 if (!PACKET_get_length_prefixed_2(pkt, &clienthello.ciphersuites)) {
1330 al = SSL_AD_DECODE_ERROR;
1331 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1335 if (!PACKET_get_length_prefixed_1(pkt, &compression)) {
1336 al = SSL_AD_DECODE_ERROR;
1337 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1341 /* Could be empty. */
1342 if (PACKET_remaining(pkt) == 0) {
1343 PACKET_null_init(&clienthello.extensions);
1345 if (!PACKET_get_length_prefixed_2(pkt, &clienthello.extensions)) {
1346 al = SSL_AD_DECODE_ERROR;
1347 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1353 if (!PACKET_copy_all(&compression, clienthello.compressions,
1354 MAX_COMPRESSIONS_SIZE,
1355 &clienthello.compressions_len)) {
1356 al = SSL_AD_DECODE_ERROR;
1357 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1361 /* Preserve the raw extensions PACKET for later use */
1362 extensions = clienthello.extensions;
1363 if (!tls_collect_extensions(s, &extensions, EXT_CLIENT_HELLO,
1364 &clienthello.pre_proc_exts, &al)) {
1365 /* SSLerr already been called */
1369 /* Finished parsing the ClientHello, now we can start processing it */
1371 /* Set up the client_random */
1372 memcpy(s->s3->client_random, clienthello.random, SSL3_RANDOM_SIZE);
1374 /* Choose the version */
1376 if (clienthello.isv2) {
1377 if (clienthello.legacy_version == SSL2_VERSION
1378 || (clienthello.legacy_version & 0xff00)
1379 != (SSL3_VERSION_MAJOR << 8)) {
1381 * This is real SSLv2 or something complete unknown. We don't
1384 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1388 s->client_version = clienthello.legacy_version;
1391 * Do SSL/TLS version negotiation if applicable. For DTLS we just check
1392 * versions are potentially compatible. Version negotiation comes later.
1394 if (!SSL_IS_DTLS(s)) {
1395 protverr = ssl_choose_server_version(s, &clienthello);
1396 } else if (s->method->version != DTLS_ANY_VERSION &&
1397 DTLS_VERSION_LT((int)clienthello.legacy_version, s->version)) {
1398 protverr = SSL_R_VERSION_TOO_LOW;
1404 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, protverr);
1405 if ((!s->enc_write_ctx && !s->write_hash)) {
1406 /* like ssl3_get_record, send alert using remote version number */
1407 s->version = s->client_version = clienthello.legacy_version;
1409 al = SSL_AD_PROTOCOL_VERSION;
1413 if (SSL_IS_DTLS(s)) {
1414 /* Empty cookie was already handled above by returning early. */
1415 if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1416 if (s->ctx->app_verify_cookie_cb != NULL) {
1417 if (s->ctx->app_verify_cookie_cb(s, clienthello.dtls_cookie,
1418 clienthello.dtls_cookie_len) == 0) {
1419 al = SSL_AD_HANDSHAKE_FAILURE;
1420 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1421 SSL_R_COOKIE_MISMATCH);
1423 /* else cookie verification succeeded */
1425 /* default verification */
1426 } else if (s->d1->cookie_len != clienthello.dtls_cookie_len
1427 || memcmp(clienthello.dtls_cookie, s->d1->cookie,
1428 s->d1->cookie_len) != 0) {
1429 al = SSL_AD_HANDSHAKE_FAILURE;
1430 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1433 s->d1->cookie_verified = 1;
1435 if (s->method->version == DTLS_ANY_VERSION) {
1436 protverr = ssl_choose_server_version(s, &clienthello);
1437 if (protverr != 0) {
1438 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, protverr);
1439 s->version = s->client_version;
1440 al = SSL_AD_PROTOCOL_VERSION;
1448 /* We need to do this before getting the session */
1449 if (!tls_parse_extension(s, TLSEXT_IDX_extended_master_secret,
1451 clienthello.pre_proc_exts, NULL, 0, &al)) {
1452 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1457 * We don't allow resumption in a backwards compatible ClientHello.
1458 * TODO(openssl-team): in TLS1.1+, session_id MUST be empty.
1460 * Versions before 0.9.7 always allow clients to resume sessions in
1461 * renegotiation. 0.9.7 and later allow this by default, but optionally
1462 * ignore resumption requests with flag
1463 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1464 * than a change to default behavior so that applications relying on
1465 * this for security won't even compile against older library versions).
1466 * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1467 * request renegotiation but not a new session (s->new_session remains
1468 * unset): for servers, this essentially just means that the
1469 * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
1472 if (clienthello.isv2 ||
1474 (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1475 if (!ssl_get_new_session(s, 1))
1478 i = ssl_get_prev_session(s, &clienthello, &al);
1480 /* previous session */
1482 } else if (i == -1) {
1486 if (!ssl_get_new_session(s, 1))
1491 if (ssl_bytes_to_cipher_list(s, &clienthello.ciphersuites, &ciphers,
1492 clienthello.isv2, &al) == NULL) {
1496 /* If it is a hit, check that the cipher is in the list */
1499 id = s->session->cipher->id;
1502 fprintf(stderr, "client sent %d ciphers\n", sk_SSL_CIPHER_num(ciphers));
1504 for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1505 c = sk_SSL_CIPHER_value(ciphers, i);
1507 fprintf(stderr, "client [%2d of %2d]:%s\n",
1508 i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1517 * we need to have the cipher in the cipher list if we are asked
1520 al = SSL_AD_ILLEGAL_PARAMETER;
1521 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1522 SSL_R_REQUIRED_CIPHER_MISSING);
1527 for (loop = 0; loop < clienthello.compressions_len; loop++) {
1528 if (clienthello.compressions[loop] == 0)
1532 if (loop >= clienthello.compressions_len) {
1534 al = SSL_AD_DECODE_ERROR;
1535 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
1539 #ifndef OPENSSL_NO_EC
1540 if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
1541 ssl_check_for_safari(s, &clienthello);
1542 #endif /* !OPENSSL_NO_EC */
1544 /* TLS extensions */
1545 if (!tls_parse_all_extensions(s, EXT_CLIENT_HELLO,
1546 clienthello.pre_proc_exts, NULL, 0, &al)) {
1547 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
1552 * Check if we want to use external pre-shared secret for this handshake
1553 * for not reused session only. We need to generate server_random before
1554 * calling tls_session_secret_cb in order to allow SessionTicket
1555 * processing to use it in key derivation.
1559 pos = s->s3->server_random;
1560 if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
1565 if (!s->hit && s->version >= TLS1_VERSION && s->ext.session_secret_cb) {
1566 const SSL_CIPHER *pref_cipher = NULL;
1568 * s->session->master_key_length is a size_t, but this is an int for
1569 * backwards compat reasons
1571 int master_key_length;
1573 master_key_length = sizeof(s->session->master_key);
1574 if (s->ext.session_secret_cb(s, s->session->master_key,
1575 &master_key_length, ciphers,
1577 s->ext.session_secret_cb_arg)
1578 && master_key_length > 0) {
1579 s->session->master_key_length = master_key_length;
1581 s->session->ciphers = ciphers;
1582 s->session->verify_result = X509_V_OK;
1586 /* check if some cipher was preferred by call back */
1587 if (pref_cipher == NULL)
1588 pref_cipher = ssl3_choose_cipher(s, s->session->ciphers,
1589 SSL_get_ciphers(s));
1590 if (pref_cipher == NULL) {
1591 al = SSL_AD_HANDSHAKE_FAILURE;
1592 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1596 s->session->cipher = pref_cipher;
1597 sk_SSL_CIPHER_free(s->cipher_list);
1598 s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1599 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1600 s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1605 * Worst case, we will use the NULL compression, but if we have other
1606 * options, we will now look for them. We have complen-1 compression
1607 * algorithms from the client, starting at q.
1609 s->s3->tmp.new_compression = NULL;
1610 #ifndef OPENSSL_NO_COMP
1611 /* This only happens if we have a cache hit */
1612 if (s->session->compress_meth != 0) {
1613 int m, comp_id = s->session->compress_meth;
1615 /* Perform sanity checks on resumed compression algorithm */
1616 /* Can't disable compression */
1617 if (!ssl_allow_compression(s)) {
1618 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1619 SSL_R_INCONSISTENT_COMPRESSION);
1622 /* Look for resumed compression method */
1623 for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
1624 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1625 if (comp_id == comp->id) {
1626 s->s3->tmp.new_compression = comp;
1630 if (s->s3->tmp.new_compression == NULL) {
1631 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1632 SSL_R_INVALID_COMPRESSION_ALGORITHM);
1635 /* Look for resumed method in compression list */
1636 for (k = 0; k < clienthello.compressions_len; k++) {
1637 if (clienthello.compressions[k] == comp_id)
1640 if (k >= clienthello.compressions_len) {
1641 al = SSL_AD_ILLEGAL_PARAMETER;
1642 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1643 SSL_R_REQUIRED_COMPRESSION_ALGORITHM_MISSING);
1648 else if (ssl_allow_compression(s) && s->ctx->comp_methods) {
1649 /* See if we have a match */
1650 int m, nn, v, done = 0;
1653 nn = sk_SSL_COMP_num(s->ctx->comp_methods);
1654 for (m = 0; m < nn; m++) {
1655 comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1657 for (o = 0; o < clienthello.compressions_len; o++) {
1658 if (v == clienthello.compressions[o]) {
1667 s->s3->tmp.new_compression = comp;
1673 * If compression is disabled we'd better not try to resume a session
1674 * using compression.
1676 if (s->session->compress_meth != 0) {
1677 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1683 * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
1687 #ifdef OPENSSL_NO_COMP
1688 s->session->compress_meth = 0;
1690 s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
1692 sk_SSL_CIPHER_free(s->session->ciphers);
1693 s->session->ciphers = ciphers;
1694 if (ciphers == NULL) {
1695 al = SSL_AD_INTERNAL_ERROR;
1696 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1700 if (!tls1_set_server_sigalgs(s)) {
1701 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1706 sk_SSL_CIPHER_free(ciphers);
1707 OPENSSL_free(clienthello.pre_proc_exts);
1708 return MSG_PROCESS_CONTINUE_PROCESSING;
1710 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1712 ossl_statem_set_error(s);
1714 sk_SSL_CIPHER_free(ciphers);
1715 OPENSSL_free(clienthello.pre_proc_exts);
1717 return MSG_PROCESS_ERROR;
1721 * Call the status request callback if needed. Upon success, returns 1.
1722 * Upon failure, returns 0 and sets |*al| to the appropriate fatal alert.
1724 static int tls_handle_status_request(SSL *s, int *al)
1726 s->ext.status_expected = 0;
1729 * If status request then ask callback what to do. Note: this must be
1730 * called after servername callbacks in case the certificate has changed,
1731 * and must be called after the cipher has been chosen because this may
1732 * influence which certificate is sent
1734 if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing && s->ctx != NULL
1735 && s->ctx->ext.status_cb != NULL) {
1737 CERT_PKEY *certpkey = ssl_get_server_send_pkey(s);
1739 /* If no certificate can't return certificate status */
1740 if (certpkey != NULL) {
1742 * Set current certificate to one we will use so SSL_get_certificate
1743 * et al can pick it up.
1745 s->cert->key = certpkey;
1746 ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
1748 /* We don't want to send a status request response */
1749 case SSL_TLSEXT_ERR_NOACK:
1750 s->ext.status_expected = 0;
1752 /* status request response should be sent */
1753 case SSL_TLSEXT_ERR_OK:
1754 if (s->ext.ocsp.resp)
1755 s->ext.status_expected = 1;
1757 /* something bad happened */
1758 case SSL_TLSEXT_ERR_ALERT_FATAL:
1760 *al = SSL_AD_INTERNAL_ERROR;
1769 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst)
1771 int al = SSL_AD_HANDSHAKE_FAILURE;
1772 const SSL_CIPHER *cipher;
1774 if (wst == WORK_MORE_A) {
1776 /* Let cert callback update server certificates if required */
1777 if (s->cert->cert_cb) {
1778 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
1780 al = SSL_AD_INTERNAL_ERROR;
1781 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1782 SSL_R_CERT_CB_ERROR);
1786 s->rwstate = SSL_X509_LOOKUP;
1789 s->rwstate = SSL_NOTHING;
1792 ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1794 if (cipher == NULL) {
1795 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1796 SSL_R_NO_SHARED_CIPHER);
1799 s->s3->tmp.new_cipher = cipher;
1800 if (!tls_choose_sigalg(s)) {
1801 al = SSL_AD_HANDSHAKE_FAILURE;
1802 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1803 SSL_R_NO_SUITABLE_SIGNATURE_ALGORITHM);
1806 /* check whether we should disable session resumption */
1807 if (s->not_resumable_session_cb != NULL)
1808 s->session->not_resumable =
1809 s->not_resumable_session_cb(s, ((cipher->algorithm_mkey
1810 & (SSL_kDHE | SSL_kECDHE))
1812 if (s->session->not_resumable)
1813 /* do not send a session ticket */
1814 s->ext.ticket_expected = 0;
1816 /* Session-id reuse */
1817 s->s3->tmp.new_cipher = s->session->cipher;
1820 if (!(s->verify_mode & SSL_VERIFY_PEER)) {
1821 if (!ssl3_digest_cached_records(s, 0)) {
1822 al = SSL_AD_INTERNAL_ERROR;
1828 * we now have the following setup.
1830 * cipher_list - our preferred list of ciphers
1831 * ciphers - the clients preferred list of ciphers
1832 * compression - basically ignored right now
1833 * ssl version is set - sslv3
1834 * s->session - The ssl session has been setup.
1835 * s->hit - session reuse flag
1836 * s->s3->tmp.new_cipher- the new cipher to use.
1840 * Call status_request callback if needed. Has to be done after the
1841 * certificate callbacks etc above.
1843 if (!tls_handle_status_request(s, &al)) {
1844 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1845 SSL_R_CLIENTHELLO_TLSEXT);
1851 #ifndef OPENSSL_NO_SRP
1852 if (wst == WORK_MORE_B) {
1854 if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
1856 * callback indicates further work to be done
1858 s->rwstate = SSL_X509_LOOKUP;
1861 if (ret != SSL_ERROR_NONE) {
1863 * This is not really an error but the only means to for
1864 * a client to detect whether srp is supported.
1866 if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
1867 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1868 SSL_R_CLIENTHELLO_TLSEXT);
1870 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1871 SSL_R_PSK_IDENTITY_NOT_FOUND);
1877 return WORK_FINISHED_STOP;
1879 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1880 ossl_statem_set_error(s);
1884 int tls_construct_server_hello(SSL *s, WPACKET *pkt)
1886 int compm, al = SSL_AD_INTERNAL_ERROR;
1890 /* TODO(TLS1.3): Remove the DRAFT conditional before release */
1891 version = SSL_IS_TLS13(s) ? TLS1_3_VERSION_DRAFT : s->version;
1892 if (!WPACKET_put_bytes_u16(pkt, version)
1894 * Random stuff. Filling of the server_random takes place in
1895 * tls_process_client_hello()
1897 || !WPACKET_memcpy(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1898 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1903 * There are several cases for the session ID to send
1904 * back in the server hello:
1905 * - For session reuse from the session cache,
1906 * we send back the old session ID.
1907 * - If stateless session reuse (using a session ticket)
1908 * is successful, we send back the client's "session ID"
1909 * (which doesn't actually identify the session).
1910 * - If it is a new session, we send back the new
1912 * - However, if we want the new session to be single-use,
1913 * we send back a 0-length session ID.
1914 * s->hit is non-zero in either case of session reuse,
1915 * so the following won't overwrite an ID that we're supposed
1918 if (s->session->not_resumable ||
1919 (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1921 s->session->session_id_length = 0;
1923 sl = s->session->session_id_length;
1924 if (sl > sizeof(s->session->session_id)) {
1925 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1929 /* set up the compression method */
1930 #ifdef OPENSSL_NO_COMP
1933 if (s->s3->tmp.new_compression == NULL)
1936 compm = s->s3->tmp.new_compression->id;
1939 if ((!SSL_IS_TLS13(s)
1940 && !WPACKET_sub_memcpy_u8(pkt, s->session->session_id, sl))
1941 || !s->method->put_cipher_by_char(s->s3->tmp.new_cipher, pkt, &len)
1942 || (!SSL_IS_TLS13(s)
1943 && !WPACKET_put_bytes_u8(pkt, compm))
1944 || !tls_construct_extensions(s, pkt,
1946 ? EXT_TLS1_3_SERVER_HELLO
1947 : EXT_TLS1_2_SERVER_HELLO,
1949 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1955 ssl3_send_alert(s, SSL3_AL_FATAL, al);
1959 int tls_construct_server_done(SSL *s, WPACKET *pkt)
1961 if (!s->s3->tmp.cert_request) {
1962 if (!ssl3_digest_cached_records(s, 0)) {
1963 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
1970 int tls_construct_server_key_exchange(SSL *s, WPACKET *pkt)
1972 #ifndef OPENSSL_NO_DH
1973 EVP_PKEY *pkdh = NULL;
1975 #ifndef OPENSSL_NO_EC
1976 unsigned char *encodedPoint = NULL;
1977 size_t encodedlen = 0;
1981 const EVP_MD *md = NULL;
1982 int al = SSL_AD_INTERNAL_ERROR, i;
1985 EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
1986 EVP_PKEY_CTX *pctx = NULL;
1987 size_t paramlen, paramoffset;
1989 if (!WPACKET_get_total_written(pkt, ¶moffset)) {
1990 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1994 if (md_ctx == NULL) {
1995 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1999 type = s->s3->tmp.new_cipher->algorithm_mkey;
2001 r[0] = r[1] = r[2] = r[3] = NULL;
2002 #ifndef OPENSSL_NO_PSK
2003 /* Plain PSK or RSAPSK nothing to do */
2004 if (type & (SSL_kPSK | SSL_kRSAPSK)) {
2006 #endif /* !OPENSSL_NO_PSK */
2007 #ifndef OPENSSL_NO_DH
2008 if (type & (SSL_kDHE | SSL_kDHEPSK)) {
2009 CERT *cert = s->cert;
2011 EVP_PKEY *pkdhp = NULL;
2014 if (s->cert->dh_tmp_auto) {
2015 DH *dhp = ssl_get_auto_dh(s);
2016 pkdh = EVP_PKEY_new();
2017 if (pkdh == NULL || dhp == NULL) {
2019 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2020 ERR_R_INTERNAL_ERROR);
2023 EVP_PKEY_assign_DH(pkdh, dhp);
2026 pkdhp = cert->dh_tmp;
2028 if ((pkdhp == NULL) && (s->cert->dh_tmp_cb != NULL)) {
2029 DH *dhp = s->cert->dh_tmp_cb(s, 0, 1024);
2030 pkdh = ssl_dh_to_pkey(dhp);
2032 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2033 ERR_R_INTERNAL_ERROR);
2038 if (pkdhp == NULL) {
2039 al = SSL_AD_HANDSHAKE_FAILURE;
2040 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2041 SSL_R_MISSING_TMP_DH_KEY);
2044 if (!ssl_security(s, SSL_SECOP_TMP_DH,
2045 EVP_PKEY_security_bits(pkdhp), 0, pkdhp)) {
2046 al = SSL_AD_HANDSHAKE_FAILURE;
2047 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2048 SSL_R_DH_KEY_TOO_SMALL);
2051 if (s->s3->tmp.pkey != NULL) {
2052 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2053 ERR_R_INTERNAL_ERROR);
2057 s->s3->tmp.pkey = ssl_generate_pkey(pkdhp);
2059 if (s->s3->tmp.pkey == NULL) {
2060 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2064 dh = EVP_PKEY_get0_DH(s->s3->tmp.pkey);
2066 EVP_PKEY_free(pkdh);
2069 DH_get0_pqg(dh, &r[0], NULL, &r[1]);
2070 DH_get0_key(dh, &r[2], NULL);
2073 #ifndef OPENSSL_NO_EC
2074 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2077 if (s->s3->tmp.pkey != NULL) {
2078 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2079 ERR_R_INTERNAL_ERROR);
2083 /* Get NID of appropriate shared curve */
2084 nid = tls1_shared_group(s, -2);
2085 curve_id = tls1_ec_nid2curve_id(nid);
2086 if (curve_id == 0) {
2087 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2088 SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
2091 s->s3->tmp.pkey = ssl_generate_pkey_curve(curve_id);
2092 /* Generate a new key for this curve */
2093 if (s->s3->tmp.pkey == NULL) {
2094 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2098 /* Encode the public key. */
2099 encodedlen = EVP_PKEY_get1_tls_encodedpoint(s->s3->tmp.pkey,
2101 if (encodedlen == 0) {
2102 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EC_LIB);
2107 * We'll generate the serverKeyExchange message explicitly so we
2108 * can set these to NULLs
2115 #endif /* !OPENSSL_NO_EC */
2116 #ifndef OPENSSL_NO_SRP
2117 if (type & SSL_kSRP) {
2118 if ((s->srp_ctx.N == NULL) ||
2119 (s->srp_ctx.g == NULL) ||
2120 (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
2121 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2122 SSL_R_MISSING_SRP_PARAM);
2125 r[0] = s->srp_ctx.N;
2126 r[1] = s->srp_ctx.g;
2127 r[2] = s->srp_ctx.s;
2128 r[3] = s->srp_ctx.B;
2132 al = SSL_AD_HANDSHAKE_FAILURE;
2133 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2134 SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
2138 if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
2139 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) {
2140 if ((pkey = ssl_get_sign_pkey(s, s->s3->tmp.new_cipher, &md))
2142 al = SSL_AD_DECODE_ERROR;
2149 #ifndef OPENSSL_NO_PSK
2150 if (type & SSL_PSK) {
2151 size_t len = (s->cert->psk_identity_hint == NULL)
2152 ? 0 : strlen(s->cert->psk_identity_hint);
2155 * It should not happen that len > PSK_MAX_IDENTITY_LEN - we already
2156 * checked this when we set the identity hint - but just in case
2158 if (len > PSK_MAX_IDENTITY_LEN
2159 || !WPACKET_sub_memcpy_u16(pkt, s->cert->psk_identity_hint,
2161 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2162 ERR_R_INTERNAL_ERROR);
2168 for (i = 0; i < 4 && r[i] != NULL; i++) {
2169 unsigned char *binval;
2172 #ifndef OPENSSL_NO_SRP
2173 if ((i == 2) && (type & SSL_kSRP)) {
2174 res = WPACKET_start_sub_packet_u8(pkt);
2177 res = WPACKET_start_sub_packet_u16(pkt);
2180 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2181 ERR_R_INTERNAL_ERROR);
2185 #ifndef OPENSSL_NO_DH
2187 * for interoperability with some versions of the Microsoft TLS
2188 * stack, we need to zero pad the DHE pub key to the same length
2191 if ((i == 2) && (type & (SSL_kDHE | SSL_kDHEPSK))) {
2192 size_t len = BN_num_bytes(r[0]) - BN_num_bytes(r[2]);
2195 if (!WPACKET_allocate_bytes(pkt, len, &binval)) {
2196 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2197 ERR_R_INTERNAL_ERROR);
2200 memset(binval, 0, len);
2204 if (!WPACKET_allocate_bytes(pkt, BN_num_bytes(r[i]), &binval)
2205 || !WPACKET_close(pkt)) {
2206 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2207 ERR_R_INTERNAL_ERROR);
2211 BN_bn2bin(r[i], binval);
2214 #ifndef OPENSSL_NO_EC
2215 if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2217 * We only support named (not generic) curves. In this situation, the
2218 * ServerKeyExchange message has: [1 byte CurveType], [2 byte CurveName]
2219 * [1 byte length of encoded point], followed by the actual encoded
2222 if (!WPACKET_put_bytes_u8(pkt, NAMED_CURVE_TYPE)
2223 || !WPACKET_put_bytes_u8(pkt, 0)
2224 || !WPACKET_put_bytes_u8(pkt, curve_id)
2225 || !WPACKET_sub_memcpy_u8(pkt, encodedPoint, encodedlen)) {
2226 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2227 ERR_R_INTERNAL_ERROR);
2230 OPENSSL_free(encodedPoint);
2231 encodedPoint = NULL;
2238 * n is the length of the params, they start at &(d[4]) and p
2239 * points to the space at the end.
2242 unsigned char *sigbytes1, *sigbytes2;
2246 /* Get length of the parameters we have written above */
2247 if (!WPACKET_get_length(pkt, ¶mlen)) {
2248 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2249 ERR_R_INTERNAL_ERROR);
2252 /* send signature algorithm */
2253 if (SSL_USE_SIGALGS(s)) {
2254 if (!tls12_get_sigandhash(s, pkt, pkey, md, &ispss)) {
2255 /* Should never happen */
2256 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2257 ERR_R_INTERNAL_ERROR);
2262 fprintf(stderr, "Using hash %s\n", EVP_MD_name(md));
2265 * Create the signature. We don't know the actual length of the sig
2266 * until after we've created it, so we reserve enough bytes for it
2267 * up front, and then properly allocate them in the WPACKET
2270 siglen = EVP_PKEY_size(pkey);
2271 if (!WPACKET_sub_reserve_bytes_u16(pkt, siglen, &sigbytes1)
2272 || EVP_DigestSignInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2273 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2274 ERR_R_INTERNAL_ERROR);
2278 if (EVP_PKEY_CTX_set_rsa_padding(pctx,
2279 RSA_PKCS1_PSS_PADDING) <= 0
2280 || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx, RSA_PSS_SALTLEN_DIGEST) <= 0) {
2281 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2286 if (EVP_DigestSignUpdate(md_ctx, &(s->s3->client_random[0]),
2287 SSL3_RANDOM_SIZE) <= 0
2288 || EVP_DigestSignUpdate(md_ctx, &(s->s3->server_random[0]),
2289 SSL3_RANDOM_SIZE) <= 0
2290 || EVP_DigestSignUpdate(md_ctx,
2291 s->init_buf->data + paramoffset,
2293 || EVP_DigestSignFinal(md_ctx, sigbytes1, &siglen) <= 0
2294 || !WPACKET_sub_allocate_bytes_u16(pkt, siglen, &sigbytes2)
2295 || sigbytes1 != sigbytes2) {
2296 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2297 ERR_R_INTERNAL_ERROR);
2301 /* Is this error check actually needed? */
2302 al = SSL_AD_HANDSHAKE_FAILURE;
2303 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2304 SSL_R_UNKNOWN_PKEY_TYPE);
2309 EVP_MD_CTX_free(md_ctx);
2312 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2314 #ifndef OPENSSL_NO_DH
2315 EVP_PKEY_free(pkdh);
2317 #ifndef OPENSSL_NO_EC
2318 OPENSSL_free(encodedPoint);
2320 EVP_MD_CTX_free(md_ctx);
2324 int tls_construct_certificate_request(SSL *s, WPACKET *pkt)
2327 STACK_OF(X509_NAME) *sk = NULL;
2329 /* get the list of acceptable cert types */
2330 if (!WPACKET_start_sub_packet_u8(pkt)
2331 || !ssl3_get_req_cert_type(s, pkt)
2332 || !WPACKET_close(pkt)) {
2333 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2337 if (SSL_USE_SIGALGS(s)) {
2338 const uint16_t *psigs;
2339 size_t nl = tls12_get_psigalgs(s, 1, &psigs);
2341 if (!WPACKET_start_sub_packet_u16(pkt)
2342 || !tls12_copy_sigalgs(s, pkt, psigs, nl)
2343 || !WPACKET_close(pkt)) {
2344 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2345 ERR_R_INTERNAL_ERROR);
2350 /* Start sub-packet for client CA list */
2351 if (!WPACKET_start_sub_packet_u16(pkt)) {
2352 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2356 sk = SSL_get_client_CA_list(s);
2358 for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2359 unsigned char *namebytes;
2360 X509_NAME *name = sk_X509_NAME_value(sk, i);
2364 || (namelen = i2d_X509_NAME(name, NULL)) < 0
2365 || !WPACKET_sub_allocate_bytes_u16(pkt, namelen,
2367 || i2d_X509_NAME(name, &namebytes) != namelen) {
2368 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2369 ERR_R_INTERNAL_ERROR);
2374 /* else no CA names */
2376 if (!WPACKET_close(pkt)) {
2377 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2381 s->s3->tmp.cert_request = 1;
2385 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2389 static int tls_process_cke_psk_preamble(SSL *s, PACKET *pkt, int *al)
2391 #ifndef OPENSSL_NO_PSK
2392 unsigned char psk[PSK_MAX_PSK_LEN];
2394 PACKET psk_identity;
2396 if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
2397 *al = SSL_AD_DECODE_ERROR;
2398 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH);
2401 if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
2402 *al = SSL_AD_DECODE_ERROR;
2403 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG);
2406 if (s->psk_server_callback == NULL) {
2407 *al = SSL_AD_INTERNAL_ERROR;
2408 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_SERVER_CB);
2412 if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
2413 *al = SSL_AD_INTERNAL_ERROR;
2414 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2418 psklen = s->psk_server_callback(s, s->session->psk_identity,
2421 if (psklen > PSK_MAX_PSK_LEN) {
2422 *al = SSL_AD_INTERNAL_ERROR;
2423 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2425 } else if (psklen == 0) {
2427 * PSK related to the given identity not found
2429 *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
2430 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE,
2431 SSL_R_PSK_IDENTITY_NOT_FOUND);
2435 OPENSSL_free(s->s3->tmp.psk);
2436 s->s3->tmp.psk = OPENSSL_memdup(psk, psklen);
2437 OPENSSL_cleanse(psk, psklen);
2439 if (s->s3->tmp.psk == NULL) {
2440 *al = SSL_AD_INTERNAL_ERROR;
2441 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE);
2445 s->s3->tmp.psklen = psklen;
2449 /* Should never happen */
2450 *al = SSL_AD_INTERNAL_ERROR;
2451 SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2456 static int tls_process_cke_rsa(SSL *s, PACKET *pkt, int *al)
2458 #ifndef OPENSSL_NO_RSA
2459 unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2461 unsigned char decrypt_good, version_good;
2462 size_t j, padding_len;
2463 PACKET enc_premaster;
2465 unsigned char *rsa_decrypt = NULL;
2468 rsa = EVP_PKEY_get0_RSA(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey);
2470 *al = SSL_AD_HANDSHAKE_FAILURE;
2471 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_MISSING_RSA_CERTIFICATE);
2475 /* SSLv3 and pre-standard DTLS omit the length bytes. */
2476 if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
2477 enc_premaster = *pkt;
2479 if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
2480 || PACKET_remaining(pkt) != 0) {
2481 *al = SSL_AD_DECODE_ERROR;
2482 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_LENGTH_MISMATCH);
2488 * We want to be sure that the plaintext buffer size makes it safe to
2489 * iterate over the entire size of a premaster secret
2490 * (SSL_MAX_MASTER_KEY_LENGTH). Reject overly short RSA keys because
2491 * their ciphertext cannot accommodate a premaster secret anyway.
2493 if (RSA_size(rsa) < SSL_MAX_MASTER_KEY_LENGTH) {
2494 *al = SSL_AD_INTERNAL_ERROR;
2495 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, RSA_R_KEY_SIZE_TOO_SMALL);
2499 rsa_decrypt = OPENSSL_malloc(RSA_size(rsa));
2500 if (rsa_decrypt == NULL) {
2501 *al = SSL_AD_INTERNAL_ERROR;
2502 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_MALLOC_FAILURE);
2507 * We must not leak whether a decryption failure occurs because of
2508 * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2509 * section 7.4.7.1). The code follows that advice of the TLS RFC and
2510 * generates a random premaster secret for the case that the decrypt
2511 * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
2514 if (RAND_bytes(rand_premaster_secret, sizeof(rand_premaster_secret)) <= 0)
2518 * Decrypt with no padding. PKCS#1 padding will be removed as part of
2519 * the timing-sensitive code below.
2521 /* TODO(size_t): Convert this function */
2522 decrypt_len = (int)RSA_private_decrypt((int)PACKET_remaining(&enc_premaster),
2523 PACKET_data(&enc_premaster),
2524 rsa_decrypt, rsa, RSA_NO_PADDING);
2525 if (decrypt_len < 0)
2528 /* Check the padding. See RFC 3447, section 7.2.2. */
2531 * The smallest padded premaster is 11 bytes of overhead. Small keys
2532 * are publicly invalid, so this may return immediately. This ensures
2533 * PS is at least 8 bytes.
2535 if (decrypt_len < 11 + SSL_MAX_MASTER_KEY_LENGTH) {
2536 *al = SSL_AD_DECRYPT_ERROR;
2537 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_DECRYPTION_FAILED);
2541 padding_len = decrypt_len - SSL_MAX_MASTER_KEY_LENGTH;
2542 decrypt_good = constant_time_eq_int_8(rsa_decrypt[0], 0) &
2543 constant_time_eq_int_8(rsa_decrypt[1], 2);
2544 for (j = 2; j < padding_len - 1; j++) {
2545 decrypt_good &= ~constant_time_is_zero_8(rsa_decrypt[j]);
2547 decrypt_good &= constant_time_is_zero_8(rsa_decrypt[padding_len - 1]);
2550 * If the version in the decrypted pre-master secret is correct then
2551 * version_good will be 0xff, otherwise it'll be zero. The
2552 * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2553 * (http://eprint.iacr.org/2003/052/) exploits the version number
2554 * check as a "bad version oracle". Thus version checks are done in
2555 * constant time and are treated like any other decryption error.
2558 constant_time_eq_8(rsa_decrypt[padding_len],
2559 (unsigned)(s->client_version >> 8));
2561 constant_time_eq_8(rsa_decrypt[padding_len + 1],
2562 (unsigned)(s->client_version & 0xff));
2565 * The premaster secret must contain the same version number as the
2566 * ClientHello to detect version rollback attacks (strangely, the
2567 * protocol does not offer such protection for DH ciphersuites).
2568 * However, buggy clients exist that send the negotiated protocol
2569 * version instead if the server does not support the requested
2570 * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
2573 if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
2574 unsigned char workaround_good;
2575 workaround_good = constant_time_eq_8(rsa_decrypt[padding_len],
2576 (unsigned)(s->version >> 8));
2578 constant_time_eq_8(rsa_decrypt[padding_len + 1],
2579 (unsigned)(s->version & 0xff));
2580 version_good |= workaround_good;
2584 * Both decryption and version must be good for decrypt_good to
2585 * remain non-zero (0xff).
2587 decrypt_good &= version_good;
2590 * Now copy rand_premaster_secret over from p using
2591 * decrypt_good_mask. If decryption failed, then p does not
2592 * contain valid plaintext, however, a check above guarantees
2593 * it is still sufficiently large to read from.
2595 for (j = 0; j < sizeof(rand_premaster_secret); j++) {
2596 rsa_decrypt[padding_len + j] =
2597 constant_time_select_8(decrypt_good,
2598 rsa_decrypt[padding_len + j],
2599 rand_premaster_secret[j]);
2602 if (!ssl_generate_master_secret(s, rsa_decrypt + padding_len,
2603 sizeof(rand_premaster_secret), 0)) {
2604 *al = SSL_AD_INTERNAL_ERROR;
2605 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2611 OPENSSL_free(rsa_decrypt);
2614 /* Should never happen */
2615 *al = SSL_AD_INTERNAL_ERROR;
2616 SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2621 static int tls_process_cke_dhe(SSL *s, PACKET *pkt, int *al)
2623 #ifndef OPENSSL_NO_DH
2624 EVP_PKEY *skey = NULL;
2628 const unsigned char *data;
2629 EVP_PKEY *ckey = NULL;
2632 if (!PACKET_get_net_2(pkt, &i) || PACKET_remaining(pkt) != i) {
2633 *al = SSL_AD_HANDSHAKE_FAILURE;
2634 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE,
2635 SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2638 skey = s->s3->tmp.pkey;
2640 *al = SSL_AD_HANDSHAKE_FAILURE;
2641 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2645 if (PACKET_remaining(pkt) == 0L) {
2646 *al = SSL_AD_HANDSHAKE_FAILURE;
2647 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2650 if (!PACKET_get_bytes(pkt, &data, i)) {
2651 /* We already checked we have enough data */
2652 *al = SSL_AD_INTERNAL_ERROR;
2653 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2656 ckey = EVP_PKEY_new();
2657 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) {
2658 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_BN_LIB);
2661 cdh = EVP_PKEY_get0_DH(ckey);
2662 pub_key = BN_bin2bn(data, i, NULL);
2664 if (pub_key == NULL || !DH_set0_key(cdh, pub_key, NULL)) {
2665 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2666 if (pub_key != NULL)
2671 if (ssl_derive(s, skey, ckey, 1) == 0) {
2672 *al = SSL_AD_INTERNAL_ERROR;
2673 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2678 EVP_PKEY_free(s->s3->tmp.pkey);
2679 s->s3->tmp.pkey = NULL;
2681 EVP_PKEY_free(ckey);
2684 /* Should never happen */
2685 *al = SSL_AD_INTERNAL_ERROR;
2686 SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2691 static int tls_process_cke_ecdhe(SSL *s, PACKET *pkt, int *al)
2693 #ifndef OPENSSL_NO_EC
2694 EVP_PKEY *skey = s->s3->tmp.pkey;
2695 EVP_PKEY *ckey = NULL;
2698 if (PACKET_remaining(pkt) == 0L) {
2699 /* We don't support ECDH client auth */
2700 *al = SSL_AD_HANDSHAKE_FAILURE;
2701 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_MISSING_TMP_ECDH_KEY);
2705 const unsigned char *data;
2708 * Get client's public key from encoded point in the
2709 * ClientKeyExchange message.
2712 /* Get encoded point length */
2713 if (!PACKET_get_1(pkt, &i) || !PACKET_get_bytes(pkt, &data, i)
2714 || PACKET_remaining(pkt) != 0) {
2715 *al = SSL_AD_DECODE_ERROR;
2716 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_LENGTH_MISMATCH);
2719 ckey = EVP_PKEY_new();
2720 if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) {
2721 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EVP_LIB);
2724 if (EVP_PKEY_set1_tls_encodedpoint(ckey, data, i) == 0) {
2725 *al = SSL_AD_HANDSHAKE_FAILURE;
2726 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EC_LIB);
2731 if (ssl_derive(s, skey, ckey, 1) == 0) {
2732 *al = SSL_AD_INTERNAL_ERROR;
2733 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2738 EVP_PKEY_free(s->s3->tmp.pkey);
2739 s->s3->tmp.pkey = NULL;
2741 EVP_PKEY_free(ckey);
2745 /* Should never happen */
2746 *al = SSL_AD_INTERNAL_ERROR;
2747 SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2752 static int tls_process_cke_srp(SSL *s, PACKET *pkt, int *al)
2754 #ifndef OPENSSL_NO_SRP
2756 const unsigned char *data;
2758 if (!PACKET_get_net_2(pkt, &i)
2759 || !PACKET_get_bytes(pkt, &data, i)) {
2760 *al = SSL_AD_DECODE_ERROR;
2761 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_A_LENGTH);
2764 if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
2765 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_BN_LIB);
2768 if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) {
2769 *al = SSL_AD_ILLEGAL_PARAMETER;
2770 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_PARAMETERS);
2773 OPENSSL_free(s->session->srp_username);
2774 s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
2775 if (s->session->srp_username == NULL) {
2776 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_MALLOC_FAILURE);
2780 if (!srp_generate_server_master_secret(s)) {
2781 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2787 /* Should never happen */
2788 *al = SSL_AD_INTERNAL_ERROR;
2789 SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2794 static int tls_process_cke_gost(SSL *s, PACKET *pkt, int *al)
2796 #ifndef OPENSSL_NO_GOST
2797 EVP_PKEY_CTX *pkey_ctx;
2798 EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2799 unsigned char premaster_secret[32];
2800 const unsigned char *start;
2801 size_t outlen = 32, inlen;
2802 unsigned long alg_a;
2805 size_t sess_key_len;
2806 const unsigned char *data;
2809 /* Get our certificate private key */
2810 alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2811 if (alg_a & SSL_aGOST12) {
2813 * New GOST ciphersuites have SSL_aGOST01 bit too
2815 pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey;
2817 pk = s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
2820 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2822 } else if (alg_a & SSL_aGOST01) {
2823 pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2826 pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
2827 if (pkey_ctx == NULL) {
2828 *al = SSL_AD_INTERNAL_ERROR;
2829 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_MALLOC_FAILURE);
2832 if (EVP_PKEY_decrypt_init(pkey_ctx) <= 0) {
2833 *al = SSL_AD_INTERNAL_ERROR;
2834 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2838 * If client certificate is present and is of the same type, maybe
2839 * use it for key exchange. Don't mind errors from
2840 * EVP_PKEY_derive_set_peer, because it is completely valid to use a
2841 * client certificate for authorization only.
2843 client_pub_pkey = X509_get0_pubkey(s->session->peer);
2844 if (client_pub_pkey) {
2845 if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2848 /* Decrypt session key */
2849 sess_key_len = PACKET_remaining(pkt);
2850 if (!PACKET_get_bytes(pkt, &data, sess_key_len)) {
2851 *al = SSL_AD_INTERNAL_ERROR;
2852 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2855 /* TODO(size_t): Convert this function */
2856 if (ASN1_get_object((const unsigned char **)&data, &Tlen, &Ttag,
2857 &Tclass, (long)sess_key_len) != V_ASN1_CONSTRUCTED
2858 || Ttag != V_ASN1_SEQUENCE || Tclass != V_ASN1_UNIVERSAL) {
2859 *al = SSL_AD_DECODE_ERROR;
2860 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2865 if (EVP_PKEY_decrypt
2866 (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
2867 *al = SSL_AD_DECODE_ERROR;
2868 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2871 /* Generate master secret */
2872 if (!ssl_generate_master_secret(s, premaster_secret,
2873 sizeof(premaster_secret), 0)) {
2874 *al = SSL_AD_INTERNAL_ERROR;
2875 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2878 /* Check if pubkey from client certificate was used */
2879 if (EVP_PKEY_CTX_ctrl
2880 (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2881 s->statem.no_cert_verify = 1;
2885 EVP_PKEY_CTX_free(pkey_ctx);
2888 /* Should never happen */
2889 *al = SSL_AD_INTERNAL_ERROR;
2890 SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2895 MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL *s, PACKET *pkt)
2898 unsigned long alg_k;
2900 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2902 /* For PSK parse and retrieve identity, obtain PSK key */
2903 if ((alg_k & SSL_PSK) && !tls_process_cke_psk_preamble(s, pkt, &al))
2906 if (alg_k & SSL_kPSK) {
2907 /* Identity extracted earlier: should be nothing left */
2908 if (PACKET_remaining(pkt) != 0) {
2909 al = SSL_AD_HANDSHAKE_FAILURE;
2910 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2911 SSL_R_LENGTH_MISMATCH);
2914 /* PSK handled by ssl_generate_master_secret */
2915 if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
2916 al = SSL_AD_INTERNAL_ERROR;
2917 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2920 } else if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
2921 if (!tls_process_cke_rsa(s, pkt, &al))
2923 } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2924 if (!tls_process_cke_dhe(s, pkt, &al))
2926 } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2927 if (!tls_process_cke_ecdhe(s, pkt, &al))
2929 } else if (alg_k & SSL_kSRP) {
2930 if (!tls_process_cke_srp(s, pkt, &al))
2932 } else if (alg_k & SSL_kGOST) {
2933 if (!tls_process_cke_gost(s, pkt, &al))
2936 al = SSL_AD_HANDSHAKE_FAILURE;
2937 SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2938 SSL_R_UNKNOWN_CIPHER_TYPE);
2942 return MSG_PROCESS_CONTINUE_PROCESSING;
2945 ssl3_send_alert(s, SSL3_AL_FATAL, al);
2946 #ifndef OPENSSL_NO_PSK
2947 OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
2948 s->s3->tmp.psk = NULL;
2950 ossl_statem_set_error(s);
2951 return MSG_PROCESS_ERROR;
2954 WORK_STATE tls_post_process_client_key_exchange(SSL *s, WORK_STATE wst)
2956 #ifndef OPENSSL_NO_SCTP
2957 if (wst == WORK_MORE_A) {
2958 if (SSL_IS_DTLS(s)) {
2959 unsigned char sctpauthkey[64];
2960 char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
2962 * Add new shared key for SCTP-Auth, will be ignored if no SCTP
2965 memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
2966 sizeof(DTLS1_SCTP_AUTH_LABEL));
2968 if (SSL_export_keying_material(s, sctpauthkey,
2969 sizeof(sctpauthkey), labelbuffer,
2970 sizeof(labelbuffer), NULL, 0,
2972 ossl_statem_set_error(s);
2976 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
2977 sizeof(sctpauthkey), sctpauthkey);
2982 if ((wst == WORK_MORE_B)
2984 && BIO_dgram_is_sctp(SSL_get_wbio(s))
2985 /* Are we renegotiating? */
2987 /* Are we going to skip the CertificateVerify? */
2988 && (s->session->peer == NULL || s->statem.no_cert_verify)
2989 && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
2990 s->s3->in_read_app_data = 2;
2991 s->rwstate = SSL_READING;
2992 BIO_clear_retry_flags(SSL_get_rbio(s));
2993 BIO_set_retry_read(SSL_get_rbio(s));
2994 ossl_statem_set_sctp_read_sock(s, 1);
2997 ossl_statem_set_sctp_read_sock(s, 0);
3001 if (s->statem.no_cert_verify || !s->session->peer) {
3003 * No certificate verify or no peer certificate so we no longer need
3004 * the handshake_buffer
3006 if (!ssl3_digest_cached_records(s, 0)) {
3007 ossl_statem_set_error(s);
3010 return WORK_FINISHED_CONTINUE;
3012 if (!s->s3->handshake_buffer) {
3013 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_KEY_EXCHANGE,
3014 ERR_R_INTERNAL_ERROR);
3015 ossl_statem_set_error(s);
3019 * For sigalgs freeze the handshake buffer. If we support
3020 * extms we've done this already so this is a no-op
3022 if (!ssl3_digest_cached_records(s, 1)) {
3023 ossl_statem_set_error(s);
3028 return WORK_FINISHED_CONTINUE;
3031 MSG_PROCESS_RETURN tls_process_client_certificate(SSL *s, PACKET *pkt)
3033 int i, al = SSL_AD_INTERNAL_ERROR, ret = MSG_PROCESS_ERROR;
3035 unsigned long l, llen;
3036 const unsigned char *certstart, *certbytes;
3037 STACK_OF(X509) *sk = NULL;
3038 PACKET spkt, context;
3041 if ((sk = sk_X509_new_null()) == NULL) {
3042 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3046 /* TODO(TLS1.3): For now we ignore the context. We need to verify this */
3047 if ((SSL_IS_TLS13(s) && !PACKET_get_length_prefixed_1(pkt, &context))
3048 || !PACKET_get_net_3(pkt, &llen)
3049 || !PACKET_get_sub_packet(pkt, &spkt, llen)
3050 || PACKET_remaining(pkt) != 0) {
3051 al = SSL_AD_DECODE_ERROR;
3052 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
3056 for (chainidx = 0; PACKET_remaining(&spkt) > 0; chainidx++) {
3057 if (!PACKET_get_net_3(&spkt, &l)
3058 || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3059 al = SSL_AD_DECODE_ERROR;
3060 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3061 SSL_R_CERT_LENGTH_MISMATCH);
3065 certstart = certbytes;
3066 x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
3068 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
3071 if (certbytes != (certstart + l)) {
3072 al = SSL_AD_DECODE_ERROR;
3073 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3074 SSL_R_CERT_LENGTH_MISMATCH);
3078 if (SSL_IS_TLS13(s)) {
3079 RAW_EXTENSION *rawexts = NULL;
3082 if (!PACKET_get_length_prefixed_2(&spkt, &extensions)) {
3083 al = SSL_AD_DECODE_ERROR;
3084 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_BAD_LENGTH);
3087 if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_CERTIFICATE,
3089 || !tls_parse_all_extensions(s, EXT_TLS1_3_CERTIFICATE,
3090 rawexts, x, chainidx, &al)) {
3091 OPENSSL_free(rawexts);
3094 OPENSSL_free(rawexts);
3097 if (!sk_X509_push(sk, x)) {
3098 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3104 if (sk_X509_num(sk) <= 0) {
3105 /* TLS does not mind 0 certs returned */
3106 if (s->version == SSL3_VERSION) {
3107 al = SSL_AD_HANDSHAKE_FAILURE;
3108 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3109 SSL_R_NO_CERTIFICATES_RETURNED);
3112 /* Fail for TLS only if we required a certificate */
3113 else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3114 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3115 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3116 SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3117 al = SSL_AD_HANDSHAKE_FAILURE;
3120 /* No client certificate so digest cached records */
3121 if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
3126 i = ssl_verify_cert_chain(s, sk);
3128 al = ssl_verify_alarm_type(s->verify_result);
3129 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3130 SSL_R_CERTIFICATE_VERIFY_FAILED);
3134 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, i);
3135 al = SSL_AD_HANDSHAKE_FAILURE;
3138 pkey = X509_get0_pubkey(sk_X509_value(sk, 0));
3140 al = SSL3_AD_HANDSHAKE_FAILURE;
3141 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3142 SSL_R_UNKNOWN_CERTIFICATE_TYPE);
3147 X509_free(s->session->peer);
3148 s->session->peer = sk_X509_shift(sk);
3149 s->session->verify_result = s->verify_result;
3151 sk_X509_pop_free(s->session->peer_chain, X509_free);
3152 s->session->peer_chain = sk;
3155 * Freeze the handshake buffer. For <TLS1.3 we do this after the CKE
3158 if (SSL_IS_TLS13(s) && !ssl3_digest_cached_records(s, 1)) {
3159 al = SSL_AD_INTERNAL_ERROR;
3160 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3165 * Inconsistency alert: cert_chain does *not* include the peer's own
3166 * certificate, while we do include it in statem_clnt.c
3170 /* Save the current hash state for when we receive the CertificateVerify */
3172 && !ssl_handshake_hash(s, s->cert_verify_hash,
3173 sizeof(s->cert_verify_hash),
3174 &s->cert_verify_hash_len)) {
3175 al = SSL_AD_INTERNAL_ERROR;
3176 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3180 ret = MSG_PROCESS_CONTINUE_READING;
3184 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3185 ossl_statem_set_error(s);
3188 sk_X509_pop_free(sk, X509_free);
3192 int tls_construct_server_certificate(SSL *s, WPACKET *pkt)
3195 int al = SSL_AD_INTERNAL_ERROR;
3197 cpk = ssl_get_server_send_pkey(s);
3199 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3204 * In TLSv1.3 the certificate chain is always preceded by a 0 length context
3205 * for the server Certificate message
3207 if ((SSL_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0))
3208 || !ssl3_output_cert_chain(s, pkt, cpk, &al)) {
3209 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3210 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3217 int tls_construct_new_session_ticket(SSL *s, WPACKET *pkt)
3219 unsigned char *senc = NULL;
3220 EVP_CIPHER_CTX *ctx = NULL;
3221 HMAC_CTX *hctx = NULL;
3222 unsigned char *p, *encdata1, *encdata2, *macdata1, *macdata2;
3223 const unsigned char *const_p;
3224 int len, slen_full, slen, lenfinal;
3227 SSL_CTX *tctx = s->session_ctx;
3228 unsigned char iv[EVP_MAX_IV_LENGTH];
3229 unsigned char key_name[TLSEXT_KEYNAME_LENGTH];
3230 int iv_len, al = SSL_AD_INTERNAL_ERROR;
3231 size_t macoffset, macendoffset;
3233 unsigned char age_add_c[sizeof(uint32_t)];
3237 if (SSL_IS_TLS13(s)) {
3238 if (RAND_bytes(age_add_u.age_add_c, sizeof(age_add_u)) <= 0)
3240 s->session->ext.tick_age_add = age_add_u.age_add;
3243 /* get session encoding length */
3244 slen_full = i2d_SSL_SESSION(s->session, NULL);
3246 * Some length values are 16 bits, so forget it if session is too
3249 if (slen_full == 0 || slen_full > 0xFF00) {
3250 ossl_statem_set_error(s);
3253 senc = OPENSSL_malloc(slen_full);
3255 ossl_statem_set_error(s);
3259 ctx = EVP_CIPHER_CTX_new();
3260 hctx = HMAC_CTX_new();
3261 if (ctx == NULL || hctx == NULL) {
3262 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
3267 if (!i2d_SSL_SESSION(s->session, &p))
3271 * create a fresh copy (not shared with other threads) to clean up
3274 sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3277 sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3279 slen = i2d_SSL_SESSION(sess, NULL);
3280 if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
3281 SSL_SESSION_free(sess);
3285 if (!i2d_SSL_SESSION(sess, &p)) {
3286 SSL_SESSION_free(sess);
3289 SSL_SESSION_free(sess);
3292 * Initialize HMAC and cipher contexts. If callback present it does
3293 * all the work otherwise use generated values from parent ctx.
3295 if (tctx->ext.ticket_key_cb) {
3296 /* if 0 is returned, write an empty ticket */
3297 int ret = tctx->ext.ticket_key_cb(s, key_name, iv, ctx,
3302 /* Put timeout and length */
3303 if (!WPACKET_put_bytes_u32(pkt, 0)
3304 || !WPACKET_put_bytes_u16(pkt, 0)) {
3305 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET,
3306 ERR_R_INTERNAL_ERROR);
3310 EVP_CIPHER_CTX_free(ctx);
3311 HMAC_CTX_free(hctx);
3316 iv_len = EVP_CIPHER_CTX_iv_length(ctx);
3318 const EVP_CIPHER *cipher = EVP_aes_256_cbc();
3320 iv_len = EVP_CIPHER_iv_length(cipher);
3321 if (RAND_bytes(iv, iv_len) <= 0)
3323 if (!EVP_EncryptInit_ex(ctx, cipher, NULL,
3324 tctx->ext.tick_aes_key, iv))
3326 if (!HMAC_Init_ex(hctx, tctx->ext.tick_hmac_key,
3327 sizeof(tctx->ext.tick_hmac_key),
3328 EVP_sha256(), NULL))
3330 memcpy(key_name, tctx->ext.tick_key_name,
3331 sizeof(tctx->ext.tick_key_name));
3335 * Ticket lifetime hint (advisory only): We leave this unspecified
3336 * for resumed session (for simplicity), and guess that tickets for
3337 * new sessions will live as long as their sessions.
3339 if (!WPACKET_put_bytes_u32(pkt, s->hit ? 0 : s->session->timeout)
3341 && !WPACKET_put_bytes_u32(pkt, age_add_u.age_add))
3342 /* Now the actual ticket data */
3343 || !WPACKET_start_sub_packet_u16(pkt)
3344 || !WPACKET_get_total_written(pkt, &macoffset)
3345 /* Output key name */
3346 || !WPACKET_memcpy(pkt, key_name, sizeof(key_name))
3348 || !WPACKET_memcpy(pkt, iv, iv_len)
3349 || !WPACKET_reserve_bytes(pkt, slen + EVP_MAX_BLOCK_LENGTH,
3351 /* Encrypt session data */
3352 || !EVP_EncryptUpdate(ctx, encdata1, &len, senc, slen)
3353 || !WPACKET_allocate_bytes(pkt, len, &encdata2)
3354 || encdata1 != encdata2
3355 || !EVP_EncryptFinal(ctx, encdata1 + len, &lenfinal)
3356 || !WPACKET_allocate_bytes(pkt, lenfinal, &encdata2)
3357 || encdata1 + len != encdata2
3358 || len + lenfinal > slen + EVP_MAX_BLOCK_LENGTH
3359 || !WPACKET_get_total_written(pkt, &macendoffset)
3360 || !HMAC_Update(hctx,
3361 (unsigned char *)s->init_buf->data + macoffset,
3362 macendoffset - macoffset)
3363 || !WPACKET_reserve_bytes(pkt, EVP_MAX_MD_SIZE, &macdata1)
3364 || !HMAC_Final(hctx, macdata1, &hlen)
3365 || hlen > EVP_MAX_MD_SIZE
3366 || !WPACKET_allocate_bytes(pkt, hlen, &macdata2)
3367 || macdata1 != macdata2
3368 || !WPACKET_close(pkt)
3370 && !tls_construct_extensions(s, pkt,
3371 EXT_TLS1_3_NEW_SESSION_TICKET,
3373 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_INTERNAL_ERROR);
3376 EVP_CIPHER_CTX_free(ctx);
3377 HMAC_CTX_free(hctx);
3383 EVP_CIPHER_CTX_free(ctx);
3384 HMAC_CTX_free(hctx);
3385 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3390 * In TLSv1.3 this is called from the extensions code, otherwise it is used to
3391 * create a separate message. Returns 1 on success or 0 on failure.
3393 int tls_construct_cert_status_body(SSL *s, WPACKET *pkt)
3395 if (!WPACKET_put_bytes_u8(pkt, s->ext.status_type)
3396 || !WPACKET_sub_memcpy_u24(pkt, s->ext.ocsp.resp,
3397 s->ext.ocsp.resp_len)) {
3398 SSLerr(SSL_F_TLS_CONSTRUCT_CERT_STATUS_BODY, ERR_R_INTERNAL_ERROR);
3405 int tls_construct_cert_status(SSL *s, WPACKET *pkt)
3407 if (!tls_construct_cert_status_body(s, pkt)) {
3408 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3415 #ifndef OPENSSL_NO_NEXTPROTONEG
3417 * tls_process_next_proto reads a Next Protocol Negotiation handshake message.
3418 * It sets the next_proto member in s if found
3420 MSG_PROCESS_RETURN tls_process_next_proto(SSL *s, PACKET *pkt)
3422 PACKET next_proto, padding;
3423 size_t next_proto_len;
3426 * The payload looks like:
3428 * uint8 proto[proto_len];
3429 * uint8 padding_len;
3430 * uint8 padding[padding_len];
3432 if (!PACKET_get_length_prefixed_1(pkt, &next_proto)
3433 || !PACKET_get_length_prefixed_1(pkt, &padding)
3434 || PACKET_remaining(pkt) > 0) {
3435 SSLerr(SSL_F_TLS_PROCESS_NEXT_PROTO, SSL_R_LENGTH_MISMATCH);
3439 if (!PACKET_memdup(&next_proto, &s->ext.npn, &next_proto_len)) {
3444 s->ext.npn_len = (unsigned char)next_proto_len;
3446 return MSG_PROCESS_CONTINUE_READING;
3448 ossl_statem_set_error(s);
3449 return MSG_PROCESS_ERROR;
3453 static int tls_construct_encrypted_extensions(SSL *s, WPACKET *pkt)
3457 if (!tls_construct_extensions(s, pkt, EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3459 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3460 SSLerr(SSL_F_TLS_CONSTRUCT_ENCRYPTED_EXTENSIONS, ERR_R_INTERNAL_ERROR);
3461 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3468 #define SSLV2_CIPHER_LEN 3
3470 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,
3471 PACKET *cipher_suites,
3472 STACK_OF(SSL_CIPHER) **skp,
3473 int sslv2format, int *al)
3475 const SSL_CIPHER *c;
3476 STACK_OF(SSL_CIPHER) *sk;
3478 /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
3479 unsigned char cipher[SSLV2_CIPHER_LEN];
3481 s->s3->send_connection_binding = 0;
3483 n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
3485 if (PACKET_remaining(cipher_suites) == 0) {
3486 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, SSL_R_NO_CIPHERS_SPECIFIED);
3487 *al = SSL_AD_ILLEGAL_PARAMETER;
3491 if (PACKET_remaining(cipher_suites) % n != 0) {
3492 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3493 SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
3494 *al = SSL_AD_DECODE_ERROR;
3498 sk = sk_SSL_CIPHER_new_null();
3500 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
3501 *al = SSL_AD_INTERNAL_ERROR;
3506 size_t numciphers = PACKET_remaining(cipher_suites) / n;
3507 PACKET sslv2ciphers = *cipher_suites;
3508 unsigned int leadbyte;
3512 * We store the raw ciphers list in SSLv3+ format so we need to do some
3513 * preprocessing to convert the list first. If there are any SSLv2 only
3514 * ciphersuites with a non-zero leading byte then we are going to
3515 * slightly over allocate because we won't store those. But that isn't a
3518 raw = OPENSSL_malloc(numciphers * TLS_CIPHER_LEN);
3519 s->s3->tmp.ciphers_raw = raw;
3521 *al = SSL_AD_INTERNAL_ERROR;
3524 for (s->s3->tmp.ciphers_rawlen = 0;
3525 PACKET_remaining(&sslv2ciphers) > 0;
3526 raw += TLS_CIPHER_LEN) {
3527 if (!PACKET_get_1(&sslv2ciphers, &leadbyte)
3529 && !PACKET_copy_bytes(&sslv2ciphers, raw,
3532 && !PACKET_forward(&sslv2ciphers, TLS_CIPHER_LEN))) {
3533 *al = SSL_AD_INTERNAL_ERROR;
3534 OPENSSL_free(s->s3->tmp.ciphers_raw);
3535 s->s3->tmp.ciphers_raw = NULL;
3536 s->s3->tmp.ciphers_rawlen = 0;
3540 s->s3->tmp.ciphers_rawlen += TLS_CIPHER_LEN;
3542 } else if (!PACKET_memdup(cipher_suites, &s->s3->tmp.ciphers_raw,
3543 &s->s3->tmp.ciphers_rawlen)) {
3544 *al = SSL_AD_INTERNAL_ERROR;
3548 while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
3550 * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
3551 * first byte set to zero, while true SSLv2 ciphers have a non-zero
3552 * first byte. We don't support any true SSLv2 ciphers, so skip them.
3554 if (sslv2format && cipher[0] != '\0')
3557 /* Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV */
3558 if ((cipher[n - 2] == ((SSL3_CK_SCSV >> 8) & 0xff)) &&
3559 (cipher[n - 1] == (SSL3_CK_SCSV & 0xff))) {
3560 /* SCSV fatal if renegotiating */
3561 if (s->renegotiate) {
3562 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3563 SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
3564 *al = SSL_AD_HANDSHAKE_FAILURE;
3567 s->s3->send_connection_binding = 1;
3571 /* Check for TLS_FALLBACK_SCSV */
3572 if ((cipher[n - 2] == ((SSL3_CK_FALLBACK_SCSV >> 8) & 0xff)) &&
3573 (cipher[n - 1] == (SSL3_CK_FALLBACK_SCSV & 0xff))) {
3575 * The SCSV indicates that the client previously tried a higher
3576 * version. Fail if the current version is an unexpected
3579 if (!ssl_check_version_downgrade(s)) {
3580 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3581 SSL_R_INAPPROPRIATE_FALLBACK);
3582 *al = SSL_AD_INAPPROPRIATE_FALLBACK;
3588 /* For SSLv2-compat, ignore leading 0-byte. */
3589 c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher);
3591 if (!sk_SSL_CIPHER_push(sk, c)) {
3592 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
3593 *al = SSL_AD_INTERNAL_ERROR;
3598 if (PACKET_remaining(cipher_suites) > 0) {
3599 *al = SSL_AD_INTERNAL_ERROR;
3600 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_INTERNAL_ERROR);
3607 sk_SSL_CIPHER_free(sk);