12eb6aeb42e7ece9ffd979f6013718c056cf9269
[openssl.git] / ssl / statem / statem_srvr.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
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
8  */
9
10 /* ====================================================================
11  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
12  *
13  * Portions of the attached software ("Contribution") are developed by
14  * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
15  *
16  * The Contribution is licensed pursuant to the OpenSSL open source
17  * license provided above.
18  *
19  * ECC cipher suite support in OpenSSL originally written by
20  * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories.
21  *
22  */
23 /* ====================================================================
24  * Copyright 2005 Nokia. All rights reserved.
25  *
26  * The portions of the attached software ("Contribution") is developed by
27  * Nokia Corporation and is licensed pursuant to the OpenSSL open source
28  * license.
29  *
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.
33  *
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.
37  *
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.
42  *
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
47  * OTHERWISE.
48  */
49
50 #include <stdio.h>
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>
63
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,
67                                                       STACK_OF(SSL_CIPHER)
68                                                       **skp, int sslv2format,
69                                                       int *al);
70
71 /*
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|.
76  *
77  * Return values are 1 for success (transition allowed) and  0 on error
78  * (transition not allowed)
79  */
80 static int ossl_statem_server13_read_transition(SSL *s, int mt)
81 {
82     OSSL_STATEM *st = &s->statem;
83
84     /*
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
87      */
88
89     /*
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()
93      */
94     switch (st->hand_state) {
95     default:
96         break;
97
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;
102                 return 1;
103             }
104         } else {
105             if (mt == SSL3_MT_FINISHED) {
106                 st->hand_state = TLS_ST_SR_FINISHED;
107                 return 1;
108             }
109         }
110         break;
111
112     case TLS_ST_SR_CERT:
113         if (s->session->peer == NULL) {
114             if (mt == SSL3_MT_FINISHED) {
115                 st->hand_state = TLS_ST_SR_FINISHED;
116                 return 1;
117             }
118         } else {
119             if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
120                 st->hand_state = TLS_ST_SR_CERT_VRFY;
121                 return 1;
122             }
123         }
124         break;
125
126     case TLS_ST_SR_CERT_VRFY:
127         if (mt == SSL3_MT_FINISHED) {
128             st->hand_state = TLS_ST_SR_FINISHED;
129             return 1;
130         }
131         break;
132     }
133
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);
138     return 0;
139 }
140
141 /*
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|.
146  *
147  * Return values are 1 for success (transition allowed) and  0 on error
148  * (transition not allowed)
149  */
150 int ossl_statem_server_read_transition(SSL *s, int mt)
151 {
152     OSSL_STATEM *st = &s->statem;
153
154     if (SSL_IS_TLS13(s)) {
155         if (!ossl_statem_server13_read_transition(s, mt))
156             goto err;
157         return 1;
158     }
159
160     switch (st->hand_state) {
161     default:
162         break;
163
164     case TLS_ST_BEFORE:
165     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
166         if (mt == SSL3_MT_CLIENT_HELLO) {
167             st->hand_state = TLS_ST_SR_CLNT_HELLO;
168             return 1;
169         }
170         break;
171
172     case TLS_ST_SW_SRVR_DONE:
173         /*
174          * If we get a CKE message after a ServerDone then either
175          * 1) We didn't request a Certificate
176          * OR
177          * 2) If we did request one then
178          *      a) We allow no Certificate to be returned
179          *      AND
180          *      b) We are running SSL3 (in TLS1.0+ the client must return a 0
181          *         list if we requested a certificate)
182          */
183         if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
184             if (s->s3->tmp.cert_request) {
185                 if (s->version == SSL3_VERSION) {
186                     if ((s->verify_mode & SSL_VERIFY_PEER)
187                         && (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
188                         /*
189                          * This isn't an unexpected message as such - we're just
190                          * not going to accept it because we require a client
191                          * cert.
192                          */
193                         ssl3_send_alert(s, SSL3_AL_FATAL,
194                                         SSL3_AD_HANDSHAKE_FAILURE);
195                         SSLerr(SSL_F_OSSL_STATEM_SERVER_READ_TRANSITION,
196                                SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
197                         return 0;
198                     }
199                     st->hand_state = TLS_ST_SR_KEY_EXCH;
200                     return 1;
201                 }
202             } else {
203                 st->hand_state = TLS_ST_SR_KEY_EXCH;
204                 return 1;
205             }
206         } else if (s->s3->tmp.cert_request) {
207             if (mt == SSL3_MT_CERTIFICATE) {
208                 st->hand_state = TLS_ST_SR_CERT;
209                 return 1;
210             }
211         }
212         break;
213
214     case TLS_ST_SR_CERT:
215         if (mt == SSL3_MT_CLIENT_KEY_EXCHANGE) {
216             st->hand_state = TLS_ST_SR_KEY_EXCH;
217             return 1;
218         }
219         break;
220
221     case TLS_ST_SR_KEY_EXCH:
222         /*
223          * We should only process a CertificateVerify message if we have
224          * received a Certificate from the client. If so then |s->session->peer|
225          * will be non NULL. In some instances a CertificateVerify message is
226          * not required even if the peer has sent a Certificate (e.g. such as in
227          * the case of static DH). In that case |st->no_cert_verify| should be
228          * set.
229          */
230         if (s->session->peer == NULL || st->no_cert_verify) {
231             if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
232                 /*
233                  * For the ECDH ciphersuites when the client sends its ECDH
234                  * pub key in a certificate, the CertificateVerify message is
235                  * not sent. Also for GOST ciphersuites when the client uses
236                  * its key from the certificate for key exchange.
237                  */
238                 st->hand_state = TLS_ST_SR_CHANGE;
239                 return 1;
240             }
241         } else {
242             if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
243                 st->hand_state = TLS_ST_SR_CERT_VRFY;
244                 return 1;
245             }
246         }
247         break;
248
249     case TLS_ST_SR_CERT_VRFY:
250         if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
251             st->hand_state = TLS_ST_SR_CHANGE;
252             return 1;
253         }
254         break;
255
256     case TLS_ST_SR_CHANGE:
257 #ifndef OPENSSL_NO_NEXTPROTONEG
258         if (s->s3->npn_seen) {
259             if (mt == SSL3_MT_NEXT_PROTO) {
260                 st->hand_state = TLS_ST_SR_NEXT_PROTO;
261                 return 1;
262             }
263         } else {
264 #endif
265             if (mt == SSL3_MT_FINISHED) {
266                 st->hand_state = TLS_ST_SR_FINISHED;
267                 return 1;
268             }
269 #ifndef OPENSSL_NO_NEXTPROTONEG
270         }
271 #endif
272         break;
273
274 #ifndef OPENSSL_NO_NEXTPROTONEG
275     case TLS_ST_SR_NEXT_PROTO:
276         if (mt == SSL3_MT_FINISHED) {
277             st->hand_state = TLS_ST_SR_FINISHED;
278             return 1;
279         }
280         break;
281 #endif
282
283     case TLS_ST_SW_FINISHED:
284         if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
285             st->hand_state = TLS_ST_SR_CHANGE;
286             return 1;
287         }
288         break;
289     }
290
291  err:
292     /* No valid transition found */
293     ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_UNEXPECTED_MESSAGE);
294     SSLerr(SSL_F_OSSL_STATEM_SERVER_READ_TRANSITION, SSL_R_UNEXPECTED_MESSAGE);
295     return 0;
296 }
297
298 /*
299  * Should we send a ServerKeyExchange message?
300  *
301  * Valid return values are:
302  *   1: Yes
303  *   0: No
304  */
305 static int send_server_key_exchange(SSL *s)
306 {
307     unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
308
309     /*
310      * only send a ServerKeyExchange if DH or fortezza but we have a
311      * sign only certificate PSK: may send PSK identity hints For
312      * ECC ciphersuites, we send a serverKeyExchange message only if
313      * the cipher suite is either ECDH-anon or ECDHE. In other cases,
314      * the server certificate contains the server's public key for
315      * key exchange.
316      */
317     if (alg_k & (SSL_kDHE | SSL_kECDHE)
318         /*
319          * PSK: send ServerKeyExchange if PSK identity hint if
320          * provided
321          */
322 #ifndef OPENSSL_NO_PSK
323         /* Only send SKE if we have identity hint for plain PSK */
324         || ((alg_k & (SSL_kPSK | SSL_kRSAPSK))
325             && s->cert->psk_identity_hint)
326         /* For other PSK always send SKE */
327         || (alg_k & (SSL_PSK & (SSL_kDHEPSK | SSL_kECDHEPSK)))
328 #endif
329 #ifndef OPENSSL_NO_SRP
330         /* SRP: send ServerKeyExchange */
331         || (alg_k & SSL_kSRP)
332 #endif
333         ) {
334         return 1;
335     }
336
337     return 0;
338 }
339
340 /*
341  * Should we send a CertificateRequest message?
342  *
343  * Valid return values are:
344  *   1: Yes
345  *   0: No
346  */
347 static int send_certificate_request(SSL *s)
348 {
349     if (
350            /* don't request cert unless asked for it: */
351            s->verify_mode & SSL_VERIFY_PEER
352            /*
353             * if SSL_VERIFY_CLIENT_ONCE is set, don't request cert
354             * during re-negotiation:
355             */
356            && ((s->session->peer == NULL) ||
357                !(s->verify_mode & SSL_VERIFY_CLIENT_ONCE))
358            /*
359             * never request cert in anonymous ciphersuites (see
360             * section "Certificate request" in SSL 3 drafts and in
361             * RFC 2246):
362             */
363            && (!(s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)
364                /*
365                 * ... except when the application insists on
366                 * verification (against the specs, but statem_clnt.c accepts
367                 * this for SSL 3)
368                 */
369                || (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT))
370            /* don't request certificate for SRP auth */
371            && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aSRP)
372            /*
373             * With normal PSK Certificates and Certificate Requests
374             * are omitted
375             */
376            && !(s->s3->tmp.new_cipher->algorithm_auth & SSL_aPSK)) {
377         return 1;
378     }
379
380     return 0;
381 }
382
383 /*
384  * ossl_statem_server13_write_transition() works out what handshake state to
385  * move to next when a TLSv1.3 server is writing messages to be sent to the
386  * client.
387  */
388 static WRITE_TRAN ossl_statem_server13_write_transition(SSL *s)
389 {
390     OSSL_STATEM *st = &s->statem;
391
392     /*
393      * TODO(TLS1.3): This is still based on the TLSv1.2 state machine. Over time
394      * we will update this to look more like real TLSv1.3
395      */
396
397     /*
398      * No case for TLS_ST_BEFORE, because at that stage we have not negotiated
399      * TLSv1.3 yet, so that is handled by ossl_statem_server_write_transition()
400      */
401
402     switch (st->hand_state) {
403     default:
404         /* Shouldn't happen */
405         return WRITE_TRAN_ERROR;
406
407     case TLS_ST_SR_CLNT_HELLO:
408         st->hand_state = TLS_ST_SW_SRVR_HELLO;
409         return WRITE_TRAN_CONTINUE;
410
411     case TLS_ST_SW_SRVR_HELLO:
412         st->hand_state = TLS_ST_SW_ENCRYPTED_EXTENSIONS;
413         return WRITE_TRAN_CONTINUE;
414
415     case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
416         if (s->hit)
417             st->hand_state = TLS_ST_SW_FINISHED;
418         else if (send_certificate_request(s))
419             st->hand_state = TLS_ST_SW_CERT_REQ;
420         else
421             st->hand_state = TLS_ST_SW_CERT;
422
423         return WRITE_TRAN_CONTINUE;
424
425     case TLS_ST_SW_CERT_REQ:
426         st->hand_state = TLS_ST_SW_CERT;
427         return WRITE_TRAN_CONTINUE;
428
429     case TLS_ST_SW_CERT:
430         st->hand_state = TLS_ST_SW_CERT_VRFY;
431         return WRITE_TRAN_CONTINUE;
432
433     case TLS_ST_SW_CERT_VRFY:
434         st->hand_state = TLS_ST_SW_FINISHED;
435         return WRITE_TRAN_CONTINUE;
436
437     case TLS_ST_SW_FINISHED:
438         return WRITE_TRAN_FINISHED;
439
440     case TLS_ST_SR_FINISHED:
441         st->hand_state = TLS_ST_OK;
442         ossl_statem_set_in_init(s, 0);
443         return WRITE_TRAN_CONTINUE;
444     }
445 }
446
447 /*
448  * ossl_statem_server_write_transition() works out what handshake state to move
449  * to next when the server is writing messages to be sent to the client.
450  */
451 WRITE_TRAN ossl_statem_server_write_transition(SSL *s)
452 {
453     OSSL_STATEM *st = &s->statem;
454
455     /*
456      * Note that before the ClientHello we don't know what version we are going
457      * to negotiate yet, so we don't take this branch until later
458      */
459
460     if (SSL_IS_TLS13(s))
461         return ossl_statem_server13_write_transition(s);
462
463     switch (st->hand_state) {
464     default:
465         /* Shouldn't happen */
466         return WRITE_TRAN_ERROR;
467
468     case TLS_ST_BEFORE:
469         /* Just go straight to trying to read from the client */
470         return WRITE_TRAN_FINISHED;
471
472     case TLS_ST_OK:
473         /* We must be trying to renegotiate */
474         st->hand_state = TLS_ST_SW_HELLO_REQ;
475         return WRITE_TRAN_CONTINUE;
476
477     case TLS_ST_SW_HELLO_REQ:
478         st->hand_state = TLS_ST_OK;
479         ossl_statem_set_in_init(s, 0);
480         return WRITE_TRAN_CONTINUE;
481
482     case TLS_ST_SR_CLNT_HELLO:
483         if (SSL_IS_DTLS(s) && !s->d1->cookie_verified
484             && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
485             st->hand_state = DTLS_ST_SW_HELLO_VERIFY_REQUEST;
486         else
487             st->hand_state = TLS_ST_SW_SRVR_HELLO;
488         return WRITE_TRAN_CONTINUE;
489
490     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
491         return WRITE_TRAN_FINISHED;
492
493     case TLS_ST_SW_SRVR_HELLO:
494         if (s->hit) {
495             if (s->ext.ticket_expected)
496                 st->hand_state = TLS_ST_SW_SESSION_TICKET;
497             else
498                 st->hand_state = TLS_ST_SW_CHANGE;
499         } else {
500             /* Check if it is anon DH or anon ECDH, */
501             /* normal PSK or SRP */
502             if (!(s->s3->tmp.new_cipher->algorithm_auth &
503                   (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
504                 st->hand_state = TLS_ST_SW_CERT;
505             } else if (send_server_key_exchange(s)) {
506                 st->hand_state = TLS_ST_SW_KEY_EXCH;
507             } else if (send_certificate_request(s)) {
508                 st->hand_state = TLS_ST_SW_CERT_REQ;
509             } else {
510                 st->hand_state = TLS_ST_SW_SRVR_DONE;
511             }
512         }
513         return WRITE_TRAN_CONTINUE;
514
515     case TLS_ST_SW_CERT:
516         if (s->ext.status_expected) {
517             st->hand_state = TLS_ST_SW_CERT_STATUS;
518             return WRITE_TRAN_CONTINUE;
519         }
520         /* Fall through */
521
522     case TLS_ST_SW_CERT_STATUS:
523         if (send_server_key_exchange(s)) {
524             st->hand_state = TLS_ST_SW_KEY_EXCH;
525             return WRITE_TRAN_CONTINUE;
526         }
527         /* Fall through */
528
529     case TLS_ST_SW_KEY_EXCH:
530         if (send_certificate_request(s)) {
531             st->hand_state = TLS_ST_SW_CERT_REQ;
532             return WRITE_TRAN_CONTINUE;
533         }
534         /* Fall through */
535
536     case TLS_ST_SW_CERT_REQ:
537         st->hand_state = TLS_ST_SW_SRVR_DONE;
538         return WRITE_TRAN_CONTINUE;
539
540     case TLS_ST_SW_SRVR_DONE:
541         return WRITE_TRAN_FINISHED;
542
543     case TLS_ST_SR_FINISHED:
544         if (s->hit) {
545             st->hand_state = TLS_ST_OK;
546             ossl_statem_set_in_init(s, 0);
547             return WRITE_TRAN_CONTINUE;
548         } else if (s->ext.ticket_expected) {
549             st->hand_state = TLS_ST_SW_SESSION_TICKET;
550         } else {
551             st->hand_state = TLS_ST_SW_CHANGE;
552         }
553         return WRITE_TRAN_CONTINUE;
554
555     case TLS_ST_SW_SESSION_TICKET:
556         st->hand_state = TLS_ST_SW_CHANGE;
557         return WRITE_TRAN_CONTINUE;
558
559     case TLS_ST_SW_CHANGE:
560         st->hand_state = TLS_ST_SW_FINISHED;
561         return WRITE_TRAN_CONTINUE;
562
563     case TLS_ST_SW_FINISHED:
564         if (s->hit) {
565             return WRITE_TRAN_FINISHED;
566         }
567         st->hand_state = TLS_ST_OK;
568         ossl_statem_set_in_init(s, 0);
569         return WRITE_TRAN_CONTINUE;
570     }
571 }
572
573 /*
574  * Perform any pre work that needs to be done prior to sending a message from
575  * the server to the client.
576  */
577 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst)
578 {
579     OSSL_STATEM *st = &s->statem;
580
581     switch (st->hand_state) {
582     default:
583         /* No pre work to be done */
584         break;
585
586     case TLS_ST_SW_HELLO_REQ:
587         s->shutdown = 0;
588         if (SSL_IS_DTLS(s))
589             dtls1_clear_sent_buffer(s);
590         break;
591
592     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
593         s->shutdown = 0;
594         if (SSL_IS_DTLS(s)) {
595             dtls1_clear_sent_buffer(s);
596             /* We don't buffer this message so don't use the timer */
597             st->use_timer = 0;
598         }
599         break;
600
601     case TLS_ST_SW_SRVR_HELLO:
602         if (SSL_IS_DTLS(s)) {
603             /*
604              * Messages we write from now on should be bufferred and
605              * retransmitted if necessary, so we need to use the timer now
606              */
607             st->use_timer = 1;
608         }
609         break;
610
611     case TLS_ST_SW_SRVR_DONE:
612 #ifndef OPENSSL_NO_SCTP
613         if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s)))
614             return dtls_wait_for_dry(s);
615 #endif
616         return WORK_FINISHED_CONTINUE;
617
618     case TLS_ST_SW_SESSION_TICKET:
619         if (SSL_IS_DTLS(s)) {
620             /*
621              * We're into the last flight. We don't retransmit the last flight
622              * unless we need to, so we don't use the timer
623              */
624             st->use_timer = 0;
625         }
626         break;
627
628     case TLS_ST_SW_CHANGE:
629         s->session->cipher = s->s3->tmp.new_cipher;
630         if (!s->method->ssl3_enc->setup_key_block(s)) {
631             ossl_statem_set_error(s);
632             return WORK_ERROR;
633         }
634         if (SSL_IS_DTLS(s)) {
635             /*
636              * We're into the last flight. We don't retransmit the last flight
637              * unless we need to, so we don't use the timer. This might have
638              * already been set to 0 if we sent a NewSessionTicket message,
639              * but we'll set it again here in case we didn't.
640              */
641             st->use_timer = 0;
642         }
643         return WORK_FINISHED_CONTINUE;
644
645     case TLS_ST_OK:
646         return tls_finish_handshake(s, wst);
647     }
648
649     return WORK_FINISHED_CONTINUE;
650 }
651
652 /*
653  * Perform any work that needs to be done after sending a message from the
654  * server to the client.
655  */
656 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst)
657 {
658     OSSL_STATEM *st = &s->statem;
659
660     s->init_num = 0;
661
662     switch (st->hand_state) {
663     default:
664         /* No post work to be done */
665         break;
666
667     case TLS_ST_SW_HELLO_REQ:
668         if (statem_flush(s) != 1)
669             return WORK_MORE_A;
670         if (!ssl3_init_finished_mac(s)) {
671             ossl_statem_set_error(s);
672             return WORK_ERROR;
673         }
674         break;
675
676     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
677         if (statem_flush(s) != 1)
678             return WORK_MORE_A;
679         /* HelloVerifyRequest resets Finished MAC */
680         if (s->version != DTLS1_BAD_VER && !ssl3_init_finished_mac(s)) {
681             ossl_statem_set_error(s);
682             return WORK_ERROR;
683         }
684         /*
685          * The next message should be another ClientHello which we need to
686          * treat like it was the first packet
687          */
688         s->first_packet = 1;
689         break;
690
691     case TLS_ST_SW_SRVR_HELLO:
692 #ifndef OPENSSL_NO_SCTP
693         if (SSL_IS_DTLS(s) && s->hit) {
694             unsigned char sctpauthkey[64];
695             char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
696
697             /*
698              * Add new shared key for SCTP-Auth, will be ignored if no
699              * SCTP used.
700              */
701             memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
702                    sizeof(DTLS1_SCTP_AUTH_LABEL));
703
704             if (SSL_export_keying_material(s, sctpauthkey,
705                                            sizeof(sctpauthkey), labelbuffer,
706                                            sizeof(labelbuffer), NULL, 0,
707                                            0) <= 0) {
708                 ossl_statem_set_error(s);
709                 return WORK_ERROR;
710             }
711
712             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
713                      sizeof(sctpauthkey), sctpauthkey);
714         }
715 #endif
716         /*
717          * TODO(TLS1.3): This actually causes a problem. We don't yet know
718          * whether the next record we are going to receive is an unencrypted
719          * alert, or an encrypted handshake message. We're going to need
720          * something clever in the record layer for this.
721          */
722         if (SSL_IS_TLS13(s)) {
723             if (!s->method->ssl3_enc->setup_key_block(s)
724                 || !s->method->ssl3_enc->change_cipher_state(s,
725                         SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_WRITE)
726                 || !s->method->ssl3_enc->change_cipher_state(s,
727                         SSL3_CC_HANDSHAKE |SSL3_CHANGE_CIPHER_SERVER_READ))
728             return WORK_ERROR;
729         }
730         break;
731
732     case TLS_ST_SW_CHANGE:
733 #ifndef OPENSSL_NO_SCTP
734         if (SSL_IS_DTLS(s) && !s->hit) {
735             /*
736              * Change to new shared key of SCTP-Auth, will be ignored if
737              * no SCTP used.
738              */
739             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
740                      0, NULL);
741         }
742 #endif
743         if (!s->method->ssl3_enc->change_cipher_state(s,
744                                                       SSL3_CHANGE_CIPHER_SERVER_WRITE))
745         {
746             ossl_statem_set_error(s);
747             return WORK_ERROR;
748         }
749
750         if (SSL_IS_DTLS(s))
751             dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
752         break;
753
754     case TLS_ST_SW_SRVR_DONE:
755         if (statem_flush(s) != 1)
756             return WORK_MORE_A;
757         break;
758
759     case TLS_ST_SW_FINISHED:
760         if (statem_flush(s) != 1)
761             return WORK_MORE_A;
762 #ifndef OPENSSL_NO_SCTP
763         if (SSL_IS_DTLS(s) && s->hit) {
764             /*
765              * Change to new shared key of SCTP-Auth, will be ignored if
766              * no SCTP used.
767              */
768             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
769                      0, NULL);
770         }
771 #endif
772         if (SSL_IS_TLS13(s)) {
773             if (!s->method->ssl3_enc->generate_master_secret(s,
774                         s->session->master_key, s->handshake_secret, 0,
775                         &s->session->master_key_length)
776                 || !s->method->ssl3_enc->change_cipher_state(s,
777                         SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_WRITE))
778             return WORK_ERROR;
779         }
780         break;
781     }
782
783     return WORK_FINISHED_CONTINUE;
784 }
785
786 /*
787  * Get the message construction function and message type for sending from the
788  * server
789  *
790  * Valid return values are:
791  *   1: Success
792  *   0: Error
793  */
794 int ossl_statem_server_construct_message(SSL *s, WPACKET *pkt,
795                                          confunc_f *confunc, int *mt)
796 {
797     OSSL_STATEM *st = &s->statem;
798
799     switch (st->hand_state) {
800     default:
801         /* Shouldn't happen */
802         return 0;
803
804     case TLS_ST_SW_CHANGE:
805         if (SSL_IS_DTLS(s))
806             *confunc = dtls_construct_change_cipher_spec;
807         else
808             *confunc = tls_construct_change_cipher_spec;
809         *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
810         break;
811
812     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
813         *confunc = dtls_construct_hello_verify_request;
814         *mt = DTLS1_MT_HELLO_VERIFY_REQUEST;
815         break;
816
817     case TLS_ST_SW_HELLO_REQ:
818         /* No construction function needed */
819         *confunc = NULL;
820         *mt = SSL3_MT_HELLO_REQUEST;
821         break;
822
823     case TLS_ST_SW_SRVR_HELLO:
824         *confunc = tls_construct_server_hello;
825         *mt = SSL3_MT_SERVER_HELLO;
826         break;
827
828     case TLS_ST_SW_CERT:
829         *confunc = tls_construct_server_certificate;
830         *mt = SSL3_MT_CERTIFICATE;
831         break;
832
833     case TLS_ST_SW_CERT_VRFY:
834         *confunc = tls_construct_cert_verify;
835         *mt = SSL3_MT_CERTIFICATE_VERIFY;
836         break;
837
838
839     case TLS_ST_SW_KEY_EXCH:
840         *confunc = tls_construct_server_key_exchange;
841         *mt = SSL3_MT_SERVER_KEY_EXCHANGE;
842         break;
843
844     case TLS_ST_SW_CERT_REQ:
845         *confunc = tls_construct_certificate_request;
846         *mt = SSL3_MT_CERTIFICATE_REQUEST;
847         break;
848
849     case TLS_ST_SW_SRVR_DONE:
850         *confunc = tls_construct_server_done;
851         *mt = SSL3_MT_SERVER_DONE;
852         break;
853
854     case TLS_ST_SW_SESSION_TICKET:
855         *confunc = tls_construct_new_session_ticket;
856         *mt = SSL3_MT_NEWSESSION_TICKET;
857         break;
858
859     case TLS_ST_SW_CERT_STATUS:
860         *confunc = tls_construct_cert_status;
861         *mt = SSL3_MT_CERTIFICATE_STATUS;
862         break;
863
864     case TLS_ST_SW_FINISHED:
865         *confunc = tls_construct_finished;
866         *mt = SSL3_MT_FINISHED;
867         break;
868
869     case TLS_ST_SW_ENCRYPTED_EXTENSIONS:
870         *confunc = tls_construct_encrypted_extensions;
871         *mt = SSL3_MT_ENCRYPTED_EXTENSIONS;
872         break;
873     }
874
875     return 1;
876 }
877
878 /*
879  * Maximum size (excluding the Handshake header) of a ClientHello message,
880  * calculated as follows:
881  *
882  *  2 + # client_version
883  *  32 + # only valid length for random
884  *  1 + # length of session_id
885  *  32 + # maximum size for session_id
886  *  2 + # length of cipher suites
887  *  2^16-2 + # maximum length of cipher suites array
888  *  1 + # length of compression_methods
889  *  2^8-1 + # maximum length of compression methods
890  *  2 + # length of extensions
891  *  2^16-1 # maximum length of extensions
892  */
893 #define CLIENT_HELLO_MAX_LENGTH         131396
894
895 #define CLIENT_KEY_EXCH_MAX_LENGTH      2048
896 #define NEXT_PROTO_MAX_LENGTH           514
897
898 /*
899  * Returns the maximum allowed length for the current message that we are
900  * reading. Excludes the message header.
901  */
902 size_t ossl_statem_server_max_message_size(SSL *s)
903 {
904     OSSL_STATEM *st = &s->statem;
905
906     switch (st->hand_state) {
907     default:
908         /* Shouldn't happen */
909         return 0;
910
911     case TLS_ST_SR_CLNT_HELLO:
912         return CLIENT_HELLO_MAX_LENGTH;
913
914     case TLS_ST_SR_CERT:
915         return s->max_cert_list;
916
917     case TLS_ST_SR_KEY_EXCH:
918         return CLIENT_KEY_EXCH_MAX_LENGTH;
919
920     case TLS_ST_SR_CERT_VRFY:
921         return SSL3_RT_MAX_PLAIN_LENGTH;
922
923 #ifndef OPENSSL_NO_NEXTPROTONEG
924     case TLS_ST_SR_NEXT_PROTO:
925         return NEXT_PROTO_MAX_LENGTH;
926 #endif
927
928     case TLS_ST_SR_CHANGE:
929         return CCS_MAX_LENGTH;
930
931     case TLS_ST_SR_FINISHED:
932         return FINISHED_MAX_LENGTH;
933     }
934 }
935
936 /*
937  * Process a message that the server has received from the client.
938  */
939 MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL *s, PACKET *pkt)
940 {
941     OSSL_STATEM *st = &s->statem;
942
943     switch (st->hand_state) {
944     default:
945         /* Shouldn't happen */
946         return MSG_PROCESS_ERROR;
947
948     case TLS_ST_SR_CLNT_HELLO:
949         return tls_process_client_hello(s, pkt);
950
951     case TLS_ST_SR_CERT:
952         return tls_process_client_certificate(s, pkt);
953
954     case TLS_ST_SR_KEY_EXCH:
955         return tls_process_client_key_exchange(s, pkt);
956
957     case TLS_ST_SR_CERT_VRFY:
958         return tls_process_cert_verify(s, pkt);
959
960 #ifndef OPENSSL_NO_NEXTPROTONEG
961     case TLS_ST_SR_NEXT_PROTO:
962         return tls_process_next_proto(s, pkt);
963 #endif
964
965     case TLS_ST_SR_CHANGE:
966         return tls_process_change_cipher_spec(s, pkt);
967
968     case TLS_ST_SR_FINISHED:
969         return tls_process_finished(s, pkt);
970     }
971 }
972
973 /*
974  * Perform any further processing required following the receipt of a message
975  * from the client
976  */
977 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst)
978 {
979     OSSL_STATEM *st = &s->statem;
980
981     switch (st->hand_state) {
982     default:
983         /* Shouldn't happen */
984         return WORK_ERROR;
985
986     case TLS_ST_SR_CLNT_HELLO:
987         return tls_post_process_client_hello(s, wst);
988
989     case TLS_ST_SR_KEY_EXCH:
990         return tls_post_process_client_key_exchange(s, wst);
991
992     case TLS_ST_SR_CERT_VRFY:
993 #ifndef OPENSSL_NO_SCTP
994         if (                    /* Is this SCTP? */
995                BIO_dgram_is_sctp(SSL_get_wbio(s))
996                /* Are we renegotiating? */
997                && s->renegotiate && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
998             s->s3->in_read_app_data = 2;
999             s->rwstate = SSL_READING;
1000             BIO_clear_retry_flags(SSL_get_rbio(s));
1001             BIO_set_retry_read(SSL_get_rbio(s));
1002             ossl_statem_set_sctp_read_sock(s, 1);
1003             return WORK_MORE_A;
1004         } else {
1005             ossl_statem_set_sctp_read_sock(s, 0);
1006         }
1007 #endif
1008         return WORK_FINISHED_CONTINUE;
1009     }
1010     return WORK_FINISHED_CONTINUE;
1011 }
1012
1013 #ifndef OPENSSL_NO_SRP
1014 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
1015 {
1016     int ret = SSL_ERROR_NONE;
1017
1018     *al = SSL_AD_UNRECOGNIZED_NAME;
1019
1020     if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
1021         (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
1022         if (s->srp_ctx.login == NULL) {
1023             /*
1024              * RFC 5054 says SHOULD reject, we do so if There is no srp
1025              * login name
1026              */
1027             ret = SSL3_AL_FATAL;
1028             *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
1029         } else {
1030             ret = SSL_srp_server_param_with_username(s, al);
1031         }
1032     }
1033     return ret;
1034 }
1035 #endif
1036
1037 int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
1038                                   size_t cookie_len)
1039 {
1040     /* Always use DTLS 1.0 version: see RFC 6347 */
1041     if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION)
1042             || !WPACKET_sub_memcpy_u8(pkt, cookie, cookie_len))
1043         return 0;
1044
1045     return 1;
1046 }
1047
1048 int dtls_construct_hello_verify_request(SSL *s, WPACKET *pkt)
1049 {
1050     unsigned int cookie_leni;
1051     if (s->ctx->app_gen_cookie_cb == NULL ||
1052         s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
1053                                   &cookie_leni) == 0 ||
1054         cookie_leni > 255) {
1055         SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST,
1056                SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
1057         return 0;
1058     }
1059     s->d1->cookie_len = cookie_leni;
1060
1061     if (!dtls_raw_hello_verify_request(pkt, s->d1->cookie,
1062                                               s->d1->cookie_len)) {
1063         SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST, ERR_R_INTERNAL_ERROR);
1064         return 0;
1065     }
1066
1067     return 1;
1068 }
1069
1070 #ifndef OPENSSL_NO_EC
1071 /*-
1072  * ssl_check_for_safari attempts to fingerprint Safari using OS X
1073  * SecureTransport using the TLS extension block in |hello|.
1074  * Safari, since 10.6, sends exactly these extensions, in this order:
1075  *   SNI,
1076  *   elliptic_curves
1077  *   ec_point_formats
1078  *
1079  * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
1080  * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
1081  * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
1082  * 10.8..10.8.3 (which don't work).
1083  */
1084 static void ssl_check_for_safari(SSL *s, const CLIENTHELLO_MSG *hello)
1085 {
1086     static const unsigned char kSafariExtensionsBlock[] = {
1087         0x00, 0x0a,             /* elliptic_curves extension */
1088         0x00, 0x08,             /* 8 bytes */
1089         0x00, 0x06,             /* 6 bytes of curve ids */
1090         0x00, 0x17,             /* P-256 */
1091         0x00, 0x18,             /* P-384 */
1092         0x00, 0x19,             /* P-521 */
1093
1094         0x00, 0x0b,             /* ec_point_formats */
1095         0x00, 0x02,             /* 2 bytes */
1096         0x01,                   /* 1 point format */
1097         0x00,                   /* uncompressed */
1098         /* The following is only present in TLS 1.2 */
1099         0x00, 0x0d,             /* signature_algorithms */
1100         0x00, 0x0c,             /* 12 bytes */
1101         0x00, 0x0a,             /* 10 bytes */
1102         0x05, 0x01,             /* SHA-384/RSA */
1103         0x04, 0x01,             /* SHA-256/RSA */
1104         0x02, 0x01,             /* SHA-1/RSA */
1105         0x04, 0x03,             /* SHA-256/ECDSA */
1106         0x02, 0x03,             /* SHA-1/ECDSA */
1107     };
1108     /* Length of the common prefix (first two extensions). */
1109     static const size_t kSafariCommonExtensionsLength = 18;
1110     unsigned int type;
1111     PACKET sni, tmppkt;
1112     size_t ext_len;
1113
1114     tmppkt = hello->extensions;
1115
1116     if (!PACKET_forward(&tmppkt, 2)
1117         || !PACKET_get_net_2(&tmppkt, &type)
1118         || !PACKET_get_length_prefixed_2(&tmppkt, &sni)) {
1119         return;
1120     }
1121
1122     if (type != TLSEXT_TYPE_server_name)
1123         return;
1124
1125     ext_len = TLS1_get_client_version(s) >= TLS1_2_VERSION ?
1126         sizeof(kSafariExtensionsBlock) : kSafariCommonExtensionsLength;
1127
1128     s->s3->is_probably_safari = PACKET_equal(&tmppkt, kSafariExtensionsBlock,
1129                                              ext_len);
1130 }
1131 #endif                          /* !OPENSSL_NO_EC */
1132
1133 MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
1134 {
1135     int i, al = SSL_AD_INTERNAL_ERROR;
1136     unsigned int j;
1137     size_t loop;
1138     unsigned long id;
1139     const SSL_CIPHER *c;
1140 #ifndef OPENSSL_NO_COMP
1141     SSL_COMP *comp = NULL;
1142 #endif
1143     STACK_OF(SSL_CIPHER) *ciphers = NULL;
1144     int protverr;
1145     /* |cookie| will only be initialized for DTLS. */
1146     PACKET session_id, compression, extensions, cookie;
1147     static const unsigned char null_compression = 0;
1148     CLIENTHELLO_MSG clienthello;
1149
1150     /*
1151      * First, parse the raw ClientHello data into the CLIENTHELLO_MSG structure.
1152      */
1153     memset(&clienthello, 0, sizeof(clienthello));
1154     clienthello.isv2 = RECORD_LAYER_is_sslv2_record(&s->rlayer);
1155     PACKET_null_init(&cookie);
1156
1157     if (clienthello.isv2) {
1158         unsigned int mt;
1159
1160         /*-
1161          * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
1162          * header is sent directly on the wire, not wrapped as a TLS
1163          * record. Our record layer just processes the message length and passes
1164          * the rest right through. Its format is:
1165          * Byte  Content
1166          * 0-1   msg_length - decoded by the record layer
1167          * 2     msg_type - s->init_msg points here
1168          * 3-4   version
1169          * 5-6   cipher_spec_length
1170          * 7-8   session_id_length
1171          * 9-10  challenge_length
1172          * ...   ...
1173          */
1174
1175         if (!PACKET_get_1(pkt, &mt)
1176             || mt != SSL2_MT_CLIENT_HELLO) {
1177             /*
1178              * Should never happen. We should have tested this in the record
1179              * layer in order to have determined that this is a SSLv2 record
1180              * in the first place
1181              */
1182             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1183             goto err;
1184         }
1185     }
1186
1187     if (!PACKET_get_net_2(pkt, &clienthello.legacy_version)) {
1188         al = SSL_AD_DECODE_ERROR;
1189         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1190         goto err;
1191     }
1192
1193     /* Parse the message and load client random. */
1194     if (clienthello.isv2) {
1195         /*
1196          * Handle an SSLv2 backwards compatible ClientHello
1197          * Note, this is only for SSLv3+ using the backward compatible format.
1198          * Real SSLv2 is not supported, and is rejected below.
1199          */
1200         unsigned int ciphersuite_len, session_id_len, challenge_len;
1201         PACKET challenge;
1202
1203         if (!PACKET_get_net_2(pkt, &ciphersuite_len)
1204             || !PACKET_get_net_2(pkt, &session_id_len)
1205             || !PACKET_get_net_2(pkt, &challenge_len)) {
1206             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1207                    SSL_R_RECORD_LENGTH_MISMATCH);
1208             al = SSL_AD_DECODE_ERROR;
1209             goto f_err;
1210         }
1211
1212         if (session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
1213             al = SSL_AD_DECODE_ERROR;
1214             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1215             goto f_err;
1216         }
1217
1218         if (!PACKET_get_sub_packet(pkt, &clienthello.ciphersuites,
1219                                    ciphersuite_len)
1220             || !PACKET_copy_bytes(pkt, clienthello.session_id, session_id_len)
1221             || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
1222             /* No extensions. */
1223             || PACKET_remaining(pkt) != 0) {
1224             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1225                    SSL_R_RECORD_LENGTH_MISMATCH);
1226             al = SSL_AD_DECODE_ERROR;
1227             goto f_err;
1228         }
1229         clienthello.session_id_len = session_id_len;
1230
1231         /* Load the client random and compression list. We use SSL3_RANDOM_SIZE
1232          * here rather than sizeof(clienthello.random) because that is the limit
1233          * for SSLv3 and it is fixed. It won't change even if
1234          * sizeof(clienthello.random) does.
1235          */
1236         challenge_len = challenge_len > SSL3_RANDOM_SIZE
1237                         ? SSL3_RANDOM_SIZE : challenge_len;
1238         memset(clienthello.random, 0, SSL3_RANDOM_SIZE);
1239         if (!PACKET_copy_bytes(&challenge,
1240                                clienthello.random + SSL3_RANDOM_SIZE -
1241                                challenge_len, challenge_len)
1242             /* Advertise only null compression. */
1243             || !PACKET_buf_init(&compression, &null_compression, 1)) {
1244             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1245             al = SSL_AD_INTERNAL_ERROR;
1246             goto f_err;
1247         }
1248
1249         PACKET_null_init(&clienthello.extensions);
1250     } else {
1251         /* Regular ClientHello. */
1252         if (!PACKET_copy_bytes(pkt, clienthello.random, SSL3_RANDOM_SIZE)
1253             || !PACKET_get_length_prefixed_1(pkt, &session_id)
1254             || !PACKET_copy_all(&session_id, clienthello.session_id,
1255                     SSL_MAX_SSL_SESSION_ID_LENGTH,
1256                     &clienthello.session_id_len)) {
1257             al = SSL_AD_DECODE_ERROR;
1258             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1259             goto f_err;
1260         }
1261
1262         if (SSL_IS_DTLS(s)) {
1263             if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
1264                 al = SSL_AD_DECODE_ERROR;
1265                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1266                 goto f_err;
1267             }
1268             if (!PACKET_copy_all(&cookie, clienthello.dtls_cookie,
1269                                  DTLS1_COOKIE_LENGTH,
1270                                  &clienthello.dtls_cookie_len)) {
1271                 al = SSL_AD_DECODE_ERROR;
1272                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1273                 goto f_err;
1274             }
1275             /*
1276              * If we require cookies and this ClientHello doesn't contain one,
1277              * just return since we do not want to allocate any memory yet.
1278              * So check cookie length...
1279              */
1280             if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1281                 if (clienthello.dtls_cookie_len == 0)
1282                     return 1;
1283             }
1284         }
1285
1286         if (!PACKET_get_length_prefixed_2(pkt, &clienthello.ciphersuites)) {
1287             al = SSL_AD_DECODE_ERROR;
1288             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1289             goto f_err;
1290         }
1291
1292         if (!PACKET_get_length_prefixed_1(pkt, &compression)) {
1293             al = SSL_AD_DECODE_ERROR;
1294             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1295             goto f_err;
1296         }
1297
1298         /* Could be empty. */
1299         if (PACKET_remaining(pkt) == 0) {
1300             PACKET_null_init(&clienthello.extensions);
1301         } else {
1302             if (!PACKET_get_length_prefixed_2(pkt, &clienthello.extensions)) {
1303                 al = SSL_AD_DECODE_ERROR;
1304                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1305                 goto f_err;
1306             }
1307         }
1308     }
1309
1310     if (!PACKET_copy_all(&compression, clienthello.compressions,
1311                          MAX_COMPRESSIONS_SIZE,
1312                          &clienthello.compressions_len)) {
1313         al = SSL_AD_DECODE_ERROR;
1314         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1315         goto f_err;
1316     }
1317
1318     /* Preserve the raw extensions PACKET for later use */
1319     extensions = clienthello.extensions;
1320     if (!tls_collect_extensions(s, &extensions, EXT_CLIENT_HELLO,
1321                                 &clienthello.pre_proc_exts, &al)) {
1322         /* SSLerr already been called */
1323         goto f_err;
1324     }
1325
1326     /* Finished parsing the ClientHello, now we can start processing it */
1327
1328     /* Set up the client_random */
1329     memcpy(s->s3->client_random, clienthello.random, SSL3_RANDOM_SIZE);
1330
1331     /* Choose the version */
1332
1333     if (clienthello.isv2) {
1334         if (clienthello.legacy_version == SSL2_VERSION
1335                 || (clienthello.legacy_version & 0xff00)
1336                    != (SSL3_VERSION_MAJOR << 8)) {
1337             /*
1338              * This is real SSLv2 or something complete unknown. We don't
1339              * support it.
1340              */
1341             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1342             goto err;
1343         }
1344         /* SSLv3/TLS */
1345         s->client_version = clienthello.legacy_version;
1346     }
1347     /*
1348      * Do SSL/TLS version negotiation if applicable. For DTLS we just check
1349      * versions are potentially compatible. Version negotiation comes later.
1350      */
1351     if (!SSL_IS_DTLS(s)) {
1352         protverr = ssl_choose_server_version(s, &clienthello);
1353     } else if (s->method->version != DTLS_ANY_VERSION &&
1354                DTLS_VERSION_LT((int)clienthello.legacy_version, s->version)) {
1355         protverr = SSL_R_VERSION_TOO_LOW;
1356     } else {
1357         protverr = 0;
1358     }
1359
1360     if (protverr) {
1361         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, protverr);
1362         if ((!s->enc_write_ctx && !s->write_hash)) {
1363             /* like ssl3_get_record, send alert using remote version number */
1364             s->version = s->client_version = clienthello.legacy_version;
1365         }
1366         al = SSL_AD_PROTOCOL_VERSION;
1367         goto f_err;
1368     }
1369
1370     if (SSL_IS_DTLS(s)) {
1371         /* Empty cookie was already handled above by returning early. */
1372         if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1373             if (s->ctx->app_verify_cookie_cb != NULL) {
1374                 if (s->ctx->app_verify_cookie_cb(s, clienthello.dtls_cookie,
1375                         clienthello.dtls_cookie_len) == 0) {
1376                     al = SSL_AD_HANDSHAKE_FAILURE;
1377                     SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1378                            SSL_R_COOKIE_MISMATCH);
1379                     goto f_err;
1380                     /* else cookie verification succeeded */
1381                 }
1382                 /* default verification */
1383             } else if (s->d1->cookie_len != clienthello.dtls_cookie_len
1384                     || memcmp(clienthello.dtls_cookie, s->d1->cookie,
1385                               s->d1->cookie_len) != 0) {
1386                 al = SSL_AD_HANDSHAKE_FAILURE;
1387                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1388                 goto f_err;
1389             }
1390             s->d1->cookie_verified = 1;
1391         }
1392         if (s->method->version == DTLS_ANY_VERSION) {
1393             protverr = ssl_choose_server_version(s, &clienthello);
1394             if (protverr != 0) {
1395                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, protverr);
1396                 s->version = s->client_version;
1397                 al = SSL_AD_PROTOCOL_VERSION;
1398                 goto f_err;
1399             }
1400         }
1401     }
1402
1403     s->hit = 0;
1404
1405     /* We need to do this before getting the session */
1406     if (!tls_parse_extension(s, TLSEXT_IDX_extended_master_secret,
1407                              EXT_CLIENT_HELLO,
1408                              clienthello.pre_proc_exts, NULL, 0, &al)) {
1409         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1410         goto f_err;
1411     }
1412
1413     /*
1414      * We don't allow resumption in a backwards compatible ClientHello.
1415      * TODO(openssl-team): in TLS1.1+, session_id MUST be empty.
1416      *
1417      * Versions before 0.9.7 always allow clients to resume sessions in
1418      * renegotiation. 0.9.7 and later allow this by default, but optionally
1419      * ignore resumption requests with flag
1420      * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1421      * than a change to default behavior so that applications relying on
1422      * this for security won't even compile against older library versions).
1423      * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1424      * request renegotiation but not a new session (s->new_session remains
1425      * unset): for servers, this essentially just means that the
1426      * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
1427      * ignored.
1428      */
1429     if (clienthello.isv2 ||
1430         (s->new_session &&
1431          (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1432         if (!ssl_get_new_session(s, 1))
1433             goto err;
1434     } else {
1435         i = ssl_get_prev_session(s, &clienthello);
1436         /*
1437          * Only resume if the session's version matches the negotiated
1438          * version.
1439          * RFC 5246 does not provide much useful advice on resumption
1440          * with a different protocol version. It doesn't forbid it but
1441          * the sanity of such behaviour would be questionable.
1442          * In practice, clients do not accept a version mismatch and
1443          * will abort the handshake with an error.
1444          */
1445         if (i == 1 && s->version == s->session->ssl_version) {
1446             /* previous session */
1447             s->hit = 1;
1448         } else if (i == -1) {
1449             goto err;
1450         } else {
1451             /* i == 0 */
1452             if (!ssl_get_new_session(s, 1))
1453                 goto err;
1454         }
1455     }
1456
1457     if (ssl_bytes_to_cipher_list(s, &clienthello.ciphersuites, &ciphers,
1458                                  clienthello.isv2, &al) == NULL) {
1459         goto f_err;
1460     }
1461
1462     /* If it is a hit, check that the cipher is in the list */
1463     if (s->hit) {
1464         j = 0;
1465         id = s->session->cipher->id;
1466
1467 #ifdef CIPHER_DEBUG
1468         fprintf(stderr, "client sent %d ciphers\n", sk_SSL_CIPHER_num(ciphers));
1469 #endif
1470         for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1471             c = sk_SSL_CIPHER_value(ciphers, i);
1472 #ifdef CIPHER_DEBUG
1473             fprintf(stderr, "client [%2d of %2d]:%s\n",
1474                     i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1475 #endif
1476             if (c->id == id) {
1477                 j = 1;
1478                 break;
1479             }
1480         }
1481         if (j == 0) {
1482             /*
1483              * we need to have the cipher in the cipher list if we are asked
1484              * to reuse it
1485              */
1486             al = SSL_AD_ILLEGAL_PARAMETER;
1487             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1488                    SSL_R_REQUIRED_CIPHER_MISSING);
1489             goto f_err;
1490         }
1491     }
1492
1493     for (loop = 0; loop < clienthello.compressions_len; loop++) {
1494         if (clienthello.compressions[loop] == 0)
1495             break;
1496     }
1497
1498     if (loop >= clienthello.compressions_len) {
1499         /* no compress */
1500         al = SSL_AD_DECODE_ERROR;
1501         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
1502         goto f_err;
1503     }
1504
1505 #ifndef OPENSSL_NO_EC
1506     if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
1507         ssl_check_for_safari(s, &clienthello);
1508 #endif                          /* !OPENSSL_NO_EC */
1509
1510     /* TLS extensions */
1511     if (!tls_parse_all_extensions(s, EXT_CLIENT_HELLO,
1512                                   clienthello.pre_proc_exts, NULL, 0, &al)) {
1513         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
1514         goto f_err;
1515     }
1516
1517     /* Check we've got a key_share for TLSv1.3 */
1518     if (SSL_IS_TLS13(s) && s->s3->peer_tmp == NULL && !s->hit) {
1519         /* No suitable share */
1520         /* TODO(TLS1.3): Send a HelloRetryRequest */
1521         al = SSL_AD_HANDSHAKE_FAILURE;
1522         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_SUITABLE_KEY_SHARE);
1523         goto f_err;
1524     }
1525
1526     /*
1527      * Check if we want to use external pre-shared secret for this handshake
1528      * for not reused session only. We need to generate server_random before
1529      * calling tls_session_secret_cb in order to allow SessionTicket
1530      * processing to use it in key derivation.
1531      */
1532     {
1533         unsigned char *pos;
1534         pos = s->s3->server_random;
1535         if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
1536             goto f_err;
1537         }
1538     }
1539
1540     if (!s->hit && s->version >= TLS1_VERSION && s->ext.session_secret_cb) {
1541         const SSL_CIPHER *pref_cipher = NULL;
1542         /*
1543          * s->session->master_key_length is a size_t, but this is an int for
1544          * backwards compat reasons
1545          */
1546         int master_key_length;
1547
1548         master_key_length = sizeof(s->session->master_key);
1549         if (s->ext.session_secret_cb(s, s->session->master_key,
1550                                      &master_key_length, ciphers,
1551                                      &pref_cipher,
1552                                      s->ext.session_secret_cb_arg)
1553                 && master_key_length > 0) {
1554             s->session->master_key_length = master_key_length;
1555             s->hit = 1;
1556             s->session->ciphers = ciphers;
1557             s->session->verify_result = X509_V_OK;
1558
1559             ciphers = NULL;
1560
1561             /* check if some cipher was preferred by call back */
1562             pref_cipher =
1563                 pref_cipher ? pref_cipher : ssl3_choose_cipher(s,
1564                                                                s->
1565                                                                session->ciphers,
1566                                                                SSL_get_ciphers
1567                                                                (s));
1568             if (pref_cipher == NULL) {
1569                 al = SSL_AD_HANDSHAKE_FAILURE;
1570                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1571                 goto f_err;
1572             }
1573
1574             s->session->cipher = pref_cipher;
1575             sk_SSL_CIPHER_free(s->cipher_list);
1576             s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1577             sk_SSL_CIPHER_free(s->cipher_list_by_id);
1578             s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1579         }
1580     }
1581
1582     /*
1583      * Worst case, we will use the NULL compression, but if we have other
1584      * options, we will now look for them.  We have complen-1 compression
1585      * algorithms from the client, starting at q.
1586      */
1587     s->s3->tmp.new_compression = NULL;
1588 #ifndef OPENSSL_NO_COMP
1589     /* This only happens if we have a cache hit */
1590     if (s->session->compress_meth != 0) {
1591         int m, comp_id = s->session->compress_meth;
1592         unsigned int k;
1593         /* Perform sanity checks on resumed compression algorithm */
1594         /* Can't disable compression */
1595         if (!ssl_allow_compression(s)) {
1596             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1597                    SSL_R_INCONSISTENT_COMPRESSION);
1598             goto f_err;
1599         }
1600         /* Look for resumed compression method */
1601         for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
1602             comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1603             if (comp_id == comp->id) {
1604                 s->s3->tmp.new_compression = comp;
1605                 break;
1606             }
1607         }
1608         if (s->s3->tmp.new_compression == NULL) {
1609             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1610                    SSL_R_INVALID_COMPRESSION_ALGORITHM);
1611             goto f_err;
1612         }
1613         /* Look for resumed method in compression list */
1614         for (k = 0; k < clienthello.compressions_len; k++) {
1615             if (clienthello.compressions[k] == comp_id)
1616                 break;
1617         }
1618         if (k >= clienthello.compressions_len) {
1619             al = SSL_AD_ILLEGAL_PARAMETER;
1620             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1621                    SSL_R_REQUIRED_COMPRESSION_ALGORITHM_MISSING);
1622             goto f_err;
1623         }
1624     } else if (s->hit)
1625         comp = NULL;
1626     else if (ssl_allow_compression(s) && s->ctx->comp_methods) {
1627         /* See if we have a match */
1628         int m, nn, v, done = 0;
1629         unsigned int o;
1630
1631         nn = sk_SSL_COMP_num(s->ctx->comp_methods);
1632         for (m = 0; m < nn; m++) {
1633             comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1634             v = comp->id;
1635             for (o = 0; o < clienthello.compressions_len; o++) {
1636                 if (v == clienthello.compressions[o]) {
1637                     done = 1;
1638                     break;
1639                 }
1640             }
1641             if (done)
1642                 break;
1643         }
1644         if (done)
1645             s->s3->tmp.new_compression = comp;
1646         else
1647             comp = NULL;
1648     }
1649 #else
1650     /*
1651      * If compression is disabled we'd better not try to resume a session
1652      * using compression.
1653      */
1654     if (s->session->compress_meth != 0) {
1655         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1656         goto f_err;
1657     }
1658 #endif
1659
1660     /*
1661      * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
1662      */
1663
1664     if (!s->hit) {
1665 #ifdef OPENSSL_NO_COMP
1666         s->session->compress_meth = 0;
1667 #else
1668         s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
1669 #endif
1670         sk_SSL_CIPHER_free(s->session->ciphers);
1671         s->session->ciphers = ciphers;
1672         if (ciphers == NULL) {
1673             al = SSL_AD_INTERNAL_ERROR;
1674             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1675             goto f_err;
1676         }
1677         ciphers = NULL;
1678         if (!tls1_set_server_sigalgs(s)) {
1679             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1680             goto err;
1681         }
1682     }
1683
1684     sk_SSL_CIPHER_free(ciphers);
1685     OPENSSL_free(clienthello.pre_proc_exts);
1686     return MSG_PROCESS_CONTINUE_PROCESSING;
1687  f_err:
1688     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1689  err:
1690     ossl_statem_set_error(s);
1691
1692     sk_SSL_CIPHER_free(ciphers);
1693     OPENSSL_free(clienthello.pre_proc_exts);
1694
1695     return MSG_PROCESS_ERROR;
1696 }
1697
1698 /*
1699  * Call the status request callback if needed. Upon success, returns 1.
1700  * Upon failure, returns 0 and sets |*al| to the appropriate fatal alert.
1701  */
1702 static int tls_handle_status_request(SSL *s, int *al)
1703 {
1704     s->ext.status_expected = 0;
1705
1706     /*
1707      * If status request then ask callback what to do. Note: this must be
1708      * called after servername callbacks in case the certificate has changed,
1709      * and must be called after the cipher has been chosen because this may
1710      * influence which certificate is sent
1711      */
1712     if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing && s->ctx != NULL
1713             && s->ctx->ext.status_cb != NULL) {
1714         int ret;
1715         CERT_PKEY *certpkey = ssl_get_server_send_pkey(s);
1716
1717         /* If no certificate can't return certificate status */
1718         if (certpkey != NULL) {
1719             /*
1720              * Set current certificate to one we will use so SSL_get_certificate
1721              * et al can pick it up.
1722              */
1723             s->cert->key = certpkey;
1724             ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
1725             switch (ret) {
1726                 /* We don't want to send a status request response */
1727             case SSL_TLSEXT_ERR_NOACK:
1728                 s->ext.status_expected = 0;
1729                 break;
1730                 /* status request response should be sent */
1731             case SSL_TLSEXT_ERR_OK:
1732                 if (s->ext.ocsp.resp)
1733                     s->ext.status_expected = 1;
1734                 break;
1735                 /* something bad happened */
1736             case SSL_TLSEXT_ERR_ALERT_FATAL:
1737             default:
1738                 *al = SSL_AD_INTERNAL_ERROR;
1739                 return 0;
1740             }
1741         }
1742     }
1743
1744     return 1;
1745 }
1746
1747 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst)
1748 {
1749     int al = SSL_AD_HANDSHAKE_FAILURE;
1750     const SSL_CIPHER *cipher;
1751
1752     if (wst == WORK_MORE_A) {
1753         if (!s->hit) {
1754             /* Let cert callback update server certificates if required */
1755             if (s->cert->cert_cb) {
1756                 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
1757                 if (rv == 0) {
1758                     al = SSL_AD_INTERNAL_ERROR;
1759                     SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1760                            SSL_R_CERT_CB_ERROR);
1761                     goto f_err;
1762                 }
1763                 if (rv < 0) {
1764                     s->rwstate = SSL_X509_LOOKUP;
1765                     return WORK_MORE_A;
1766                 }
1767                 s->rwstate = SSL_NOTHING;
1768             }
1769             cipher =
1770                 ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1771
1772             if (cipher == NULL) {
1773                 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1774                        SSL_R_NO_SHARED_CIPHER);
1775                 goto f_err;
1776             }
1777             s->s3->tmp.new_cipher = cipher;
1778             /* check whether we should disable session resumption */
1779             if (s->not_resumable_session_cb != NULL)
1780                 s->session->not_resumable =
1781                     s->not_resumable_session_cb(s, ((cipher->algorithm_mkey
1782                                                     & (SSL_kDHE | SSL_kECDHE))
1783                                                    != 0));
1784             if (s->session->not_resumable)
1785                 /* do not send a session ticket */
1786                 s->ext.ticket_expected = 0;
1787         } else {
1788             /* Session-id reuse */
1789             s->s3->tmp.new_cipher = s->session->cipher;
1790         }
1791
1792         if (!(s->verify_mode & SSL_VERIFY_PEER)) {
1793             if (!ssl3_digest_cached_records(s, 0)) {
1794                 al = SSL_AD_INTERNAL_ERROR;
1795                 goto f_err;
1796             }
1797         }
1798
1799         /*-
1800          * we now have the following setup.
1801          * client_random
1802          * cipher_list          - our preferred list of ciphers
1803          * ciphers              - the clients preferred list of ciphers
1804          * compression          - basically ignored right now
1805          * ssl version is set   - sslv3
1806          * s->session           - The ssl session has been setup.
1807          * s->hit               - session reuse flag
1808          * s->s3->tmp.new_cipher- the new cipher to use.
1809          */
1810
1811         /*
1812          * Call status_request callback if needed. Has to be done after the
1813          * certificate callbacks etc above.
1814          */
1815         if (!tls_handle_status_request(s, &al)) {
1816             SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1817                    SSL_R_CLIENTHELLO_TLSEXT);
1818             goto f_err;
1819         }
1820
1821         wst = WORK_MORE_B;
1822     }
1823 #ifndef OPENSSL_NO_SRP
1824     if (wst == WORK_MORE_B) {
1825         int ret;
1826         if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
1827             /*
1828              * callback indicates further work to be done
1829              */
1830             s->rwstate = SSL_X509_LOOKUP;
1831             return WORK_MORE_B;
1832         }
1833         if (ret != SSL_ERROR_NONE) {
1834             /*
1835              * This is not really an error but the only means to for
1836              * a client to detect whether srp is supported.
1837              */
1838             if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
1839                 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1840                        SSL_R_CLIENTHELLO_TLSEXT);
1841             else
1842                 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1843                        SSL_R_PSK_IDENTITY_NOT_FOUND);
1844             goto f_err;
1845         }
1846     }
1847 #endif
1848     s->renegotiate = 2;
1849
1850     return WORK_FINISHED_STOP;
1851  f_err:
1852     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1853     ossl_statem_set_error(s);
1854     return WORK_ERROR;
1855 }
1856
1857 int tls_construct_server_hello(SSL *s, WPACKET *pkt)
1858 {
1859     int compm, al = SSL_AD_INTERNAL_ERROR;
1860     size_t sl, len;
1861     int version;
1862
1863     /* TODO(TLS1.3): Remove the DRAFT conditional before release */
1864     version = SSL_IS_TLS13(s) ? TLS1_3_VERSION_DRAFT : s->version;
1865     if (!WPACKET_put_bytes_u16(pkt, version)
1866                /*
1867                 * Random stuff. Filling of the server_random takes place in
1868                 * tls_process_client_hello()
1869                 */
1870             || !WPACKET_memcpy(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1871         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1872         goto err;
1873     }
1874
1875     /*-
1876      * There are several cases for the session ID to send
1877      * back in the server hello:
1878      * - For session reuse from the session cache,
1879      *   we send back the old session ID.
1880      * - If stateless session reuse (using a session ticket)
1881      *   is successful, we send back the client's "session ID"
1882      *   (which doesn't actually identify the session).
1883      * - If it is a new session, we send back the new
1884      *   session ID.
1885      * - However, if we want the new session to be single-use,
1886      *   we send back a 0-length session ID.
1887      * s->hit is non-zero in either case of session reuse,
1888      * so the following won't overwrite an ID that we're supposed
1889      * to send back.
1890      */
1891     if (s->session->not_resumable ||
1892         (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1893          && !s->hit))
1894         s->session->session_id_length = 0;
1895
1896     sl = s->session->session_id_length;
1897     if (sl > sizeof(s->session->session_id)) {
1898         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1899         goto err;
1900     }
1901
1902     /* set up the compression method */
1903 #ifdef OPENSSL_NO_COMP
1904     compm = 0;
1905 #else
1906     if (s->s3->tmp.new_compression == NULL)
1907         compm = 0;
1908     else
1909         compm = s->s3->tmp.new_compression->id;
1910 #endif
1911
1912     if ((!SSL_IS_TLS13(s)
1913                 && !WPACKET_sub_memcpy_u8(pkt, s->session->session_id, sl))
1914             || !s->method->put_cipher_by_char(s->s3->tmp.new_cipher, pkt, &len)
1915             || (!SSL_IS_TLS13(s)
1916                 && !WPACKET_put_bytes_u8(pkt, compm))
1917             || !tls_construct_extensions(s, pkt,
1918                                          SSL_IS_TLS13(s)
1919                                             ? EXT_TLS1_3_SERVER_HELLO
1920                                             : EXT_TLS1_2_SERVER_HELLO,
1921                                          NULL, 0, &al)) {
1922         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1923         goto err;
1924     }
1925
1926     return 1;
1927  err:
1928     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1929     return 0;
1930 }
1931
1932 int tls_construct_server_done(SSL *s, WPACKET *pkt)
1933 {
1934     if (!s->s3->tmp.cert_request) {
1935         if (!ssl3_digest_cached_records(s, 0)) {
1936             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
1937             return 0;
1938         }
1939     }
1940     return 1;
1941 }
1942
1943 int tls_construct_server_key_exchange(SSL *s, WPACKET *pkt)
1944 {
1945 #ifndef OPENSSL_NO_DH
1946     EVP_PKEY *pkdh = NULL;
1947 #endif
1948 #ifndef OPENSSL_NO_EC
1949     unsigned char *encodedPoint = NULL;
1950     size_t encodedlen = 0;
1951     int curve_id = 0;
1952 #endif
1953     EVP_PKEY *pkey;
1954     const EVP_MD *md = NULL;
1955     int al = SSL_AD_INTERNAL_ERROR, i;
1956     unsigned long type;
1957     const BIGNUM *r[4];
1958     EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
1959     size_t paramlen, paramoffset;
1960
1961     if (!WPACKET_get_total_written(pkt, &paramoffset)) {
1962         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1963         goto f_err;
1964     }
1965
1966     if (md_ctx == NULL) {
1967         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1968         goto f_err;
1969     }
1970
1971     type = s->s3->tmp.new_cipher->algorithm_mkey;
1972
1973     r[0] = r[1] = r[2] = r[3] = NULL;
1974 #ifndef OPENSSL_NO_PSK
1975     /* Plain PSK or RSAPSK nothing to do */
1976     if (type & (SSL_kPSK | SSL_kRSAPSK)) {
1977     } else
1978 #endif                          /* !OPENSSL_NO_PSK */
1979 #ifndef OPENSSL_NO_DH
1980     if (type & (SSL_kDHE | SSL_kDHEPSK)) {
1981         CERT *cert = s->cert;
1982
1983         EVP_PKEY *pkdhp = NULL;
1984         DH *dh;
1985
1986         if (s->cert->dh_tmp_auto) {
1987             DH *dhp = ssl_get_auto_dh(s);
1988             pkdh = EVP_PKEY_new();
1989             if (pkdh == NULL || dhp == NULL) {
1990                 DH_free(dhp);
1991                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1992                        ERR_R_INTERNAL_ERROR);
1993                 goto f_err;
1994             }
1995             EVP_PKEY_assign_DH(pkdh, dhp);
1996             pkdhp = pkdh;
1997         } else {
1998             pkdhp = cert->dh_tmp;
1999         }
2000         if ((pkdhp == NULL) && (s->cert->dh_tmp_cb != NULL)) {
2001             DH *dhp = s->cert->dh_tmp_cb(s, 0, 1024);
2002             pkdh = ssl_dh_to_pkey(dhp);
2003             if (pkdh == NULL) {
2004                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2005                        ERR_R_INTERNAL_ERROR);
2006                 goto f_err;
2007             }
2008             pkdhp = pkdh;
2009         }
2010         if (pkdhp == NULL) {
2011             al = SSL_AD_HANDSHAKE_FAILURE;
2012             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2013                    SSL_R_MISSING_TMP_DH_KEY);
2014             goto f_err;
2015         }
2016         if (!ssl_security(s, SSL_SECOP_TMP_DH,
2017                           EVP_PKEY_security_bits(pkdhp), 0, pkdhp)) {
2018             al = SSL_AD_HANDSHAKE_FAILURE;
2019             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2020                    SSL_R_DH_KEY_TOO_SMALL);
2021             goto f_err;
2022         }
2023         if (s->s3->tmp.pkey != NULL) {
2024             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2025                    ERR_R_INTERNAL_ERROR);
2026             goto err;
2027         }
2028
2029         s->s3->tmp.pkey = ssl_generate_pkey(pkdhp);
2030
2031         if (s->s3->tmp.pkey == NULL) {
2032             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2033             goto err;
2034         }
2035
2036         dh = EVP_PKEY_get0_DH(s->s3->tmp.pkey);
2037
2038         EVP_PKEY_free(pkdh);
2039         pkdh = NULL;
2040
2041         DH_get0_pqg(dh, &r[0], NULL, &r[1]);
2042         DH_get0_key(dh, &r[2], NULL);
2043     } else
2044 #endif
2045 #ifndef OPENSSL_NO_EC
2046     if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2047         int nid;
2048
2049         if (s->s3->tmp.pkey != NULL) {
2050             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2051                    ERR_R_INTERNAL_ERROR);
2052             goto err;
2053         }
2054
2055         /* Get NID of appropriate shared curve */
2056         nid = tls1_shared_group(s, -2);
2057         curve_id = tls1_ec_nid2curve_id(nid);
2058         if (curve_id == 0) {
2059             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2060                    SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
2061             goto err;
2062         }
2063         s->s3->tmp.pkey = ssl_generate_pkey_curve(curve_id);
2064         /* Generate a new key for this curve */
2065         if (s->s3->tmp.pkey == NULL) {
2066             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
2067             goto f_err;
2068         }
2069
2070         /* Encode the public key. */
2071         encodedlen = EVP_PKEY_get1_tls_encodedpoint(s->s3->tmp.pkey,
2072                                                     &encodedPoint);
2073         if (encodedlen == 0) {
2074             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EC_LIB);
2075             goto err;
2076         }
2077
2078         /*
2079          * We'll generate the serverKeyExchange message explicitly so we
2080          * can set these to NULLs
2081          */
2082         r[0] = NULL;
2083         r[1] = NULL;
2084         r[2] = NULL;
2085         r[3] = NULL;
2086     } else
2087 #endif                          /* !OPENSSL_NO_EC */
2088 #ifndef OPENSSL_NO_SRP
2089     if (type & SSL_kSRP) {
2090         if ((s->srp_ctx.N == NULL) ||
2091             (s->srp_ctx.g == NULL) ||
2092             (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
2093             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2094                    SSL_R_MISSING_SRP_PARAM);
2095             goto err;
2096         }
2097         r[0] = s->srp_ctx.N;
2098         r[1] = s->srp_ctx.g;
2099         r[2] = s->srp_ctx.s;
2100         r[3] = s->srp_ctx.B;
2101     } else
2102 #endif
2103     {
2104         al = SSL_AD_HANDSHAKE_FAILURE;
2105         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2106                SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
2107         goto f_err;
2108     }
2109
2110     if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
2111         && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) {
2112         if ((pkey = ssl_get_sign_pkey(s, s->s3->tmp.new_cipher, &md))
2113             == NULL) {
2114             al = SSL_AD_DECODE_ERROR;
2115             goto f_err;
2116         }
2117     } else {
2118         pkey = NULL;
2119     }
2120
2121 #ifndef OPENSSL_NO_PSK
2122     if (type & SSL_PSK) {
2123         size_t len = (s->cert->psk_identity_hint == NULL)
2124                         ? 0 : strlen(s->cert->psk_identity_hint);
2125
2126         /*
2127          * It should not happen that len > PSK_MAX_IDENTITY_LEN - we already
2128          * checked this when we set the identity hint - but just in case
2129          */
2130         if (len > PSK_MAX_IDENTITY_LEN
2131                 || !WPACKET_sub_memcpy_u16(pkt, s->cert->psk_identity_hint,
2132                                            len)) {
2133             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2134                    ERR_R_INTERNAL_ERROR);
2135             goto f_err;
2136         }
2137     }
2138 #endif
2139
2140     for (i = 0; i < 4 && r[i] != NULL; i++) {
2141         unsigned char *binval;
2142         int res;
2143
2144 #ifndef OPENSSL_NO_SRP
2145         if ((i == 2) && (type & SSL_kSRP)) {
2146             res = WPACKET_start_sub_packet_u8(pkt);
2147         } else
2148 #endif
2149             res = WPACKET_start_sub_packet_u16(pkt);
2150
2151         if (!res) {
2152             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2153                    ERR_R_INTERNAL_ERROR);
2154             goto f_err;
2155         }
2156
2157 #ifndef OPENSSL_NO_DH
2158         /*-
2159          * for interoperability with some versions of the Microsoft TLS
2160          * stack, we need to zero pad the DHE pub key to the same length
2161          * as the prime
2162          */
2163         if ((i == 2) && (type & (SSL_kDHE | SSL_kDHEPSK))) {
2164             size_t len = BN_num_bytes(r[0]) - BN_num_bytes(r[2]);
2165
2166             if (len > 0) {
2167                 if (!WPACKET_allocate_bytes(pkt, len, &binval)) {
2168                     SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2169                            ERR_R_INTERNAL_ERROR);
2170                     goto f_err;
2171                 }
2172                 memset(binval, 0, len);
2173             }
2174         }
2175 #endif
2176         if (!WPACKET_allocate_bytes(pkt, BN_num_bytes(r[i]), &binval)
2177                 || !WPACKET_close(pkt)) {
2178             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2179                    ERR_R_INTERNAL_ERROR);
2180             goto f_err;
2181         }
2182
2183         BN_bn2bin(r[i], binval);
2184     }
2185
2186 #ifndef OPENSSL_NO_EC
2187     if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
2188         /*
2189          * We only support named (not generic) curves. In this situation, the
2190          * ServerKeyExchange message has: [1 byte CurveType], [2 byte CurveName]
2191          * [1 byte length of encoded point], followed by the actual encoded
2192          * point itself
2193          */
2194         if (!WPACKET_put_bytes_u8(pkt, NAMED_CURVE_TYPE)
2195                 || !WPACKET_put_bytes_u8(pkt, 0)
2196                 || !WPACKET_put_bytes_u8(pkt, curve_id)
2197                 || !WPACKET_sub_memcpy_u8(pkt, encodedPoint, encodedlen)) {
2198             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2199                    ERR_R_INTERNAL_ERROR);
2200             goto f_err;
2201         }
2202         OPENSSL_free(encodedPoint);
2203         encodedPoint = NULL;
2204     }
2205 #endif
2206
2207     /* not anonymous */
2208     if (pkey != NULL) {
2209         /*
2210          * n is the length of the params, they start at &(d[4]) and p
2211          * points to the space at the end.
2212          */
2213         if (md) {
2214             unsigned char *sigbytes1, *sigbytes2;
2215             unsigned int siglen;
2216
2217             /* Get length of the parameters we have written above */
2218             if (!WPACKET_get_length(pkt, &paramlen)) {
2219                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2220                        ERR_R_INTERNAL_ERROR);
2221                 goto f_err;
2222             }
2223             /* send signature algorithm */
2224             if (SSL_USE_SIGALGS(s)) {
2225                 if (!tls12_get_sigandhash(pkt, pkey, md)) {
2226                     /* Should never happen */
2227                     SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2228                            ERR_R_INTERNAL_ERROR);
2229                     goto f_err;
2230                 }
2231             }
2232 #ifdef SSL_DEBUG
2233             fprintf(stderr, "Using hash %s\n", EVP_MD_name(md));
2234 #endif
2235             /*
2236              * Create the signature. We don't know the actual length of the sig
2237              * until after we've created it, so we reserve enough bytes for it
2238              * up front, and then properly allocate them in the WPACKET
2239              * afterwards.
2240              */
2241             if (!WPACKET_sub_reserve_bytes_u16(pkt, EVP_PKEY_size(pkey),
2242                                                &sigbytes1)
2243                     || EVP_SignInit_ex(md_ctx, md, NULL) <= 0
2244                     || EVP_SignUpdate(md_ctx, &(s->s3->client_random[0]),
2245                                       SSL3_RANDOM_SIZE) <= 0
2246                     || EVP_SignUpdate(md_ctx, &(s->s3->server_random[0]),
2247                                       SSL3_RANDOM_SIZE) <= 0
2248                     || EVP_SignUpdate(md_ctx, s->init_buf->data + paramoffset,
2249                                       paramlen) <= 0
2250                     || EVP_SignFinal(md_ctx, sigbytes1, &siglen, pkey) <= 0
2251                     || !WPACKET_sub_allocate_bytes_u16(pkt, siglen, &sigbytes2)
2252                     || sigbytes1 != sigbytes2) {
2253                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2254                        ERR_R_INTERNAL_ERROR);
2255                 goto f_err;
2256             }
2257         } else {
2258             /* Is this error check actually needed? */
2259             al = SSL_AD_HANDSHAKE_FAILURE;
2260             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
2261                    SSL_R_UNKNOWN_PKEY_TYPE);
2262             goto f_err;
2263         }
2264     }
2265
2266     EVP_MD_CTX_free(md_ctx);
2267     return 1;
2268  f_err:
2269     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2270  err:
2271 #ifndef OPENSSL_NO_DH
2272     EVP_PKEY_free(pkdh);
2273 #endif
2274 #ifndef OPENSSL_NO_EC
2275     OPENSSL_free(encodedPoint);
2276 #endif
2277     EVP_MD_CTX_free(md_ctx);
2278     return 0;
2279 }
2280
2281 int tls_construct_certificate_request(SSL *s, WPACKET *pkt)
2282 {
2283     int i;
2284     STACK_OF(X509_NAME) *sk = NULL;
2285
2286     /* get the list of acceptable cert types */
2287     if (!WPACKET_start_sub_packet_u8(pkt)
2288             || !ssl3_get_req_cert_type(s, pkt)
2289             || !WPACKET_close(pkt)) {
2290         SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2291         goto err;
2292     }
2293
2294     if (SSL_USE_SIGALGS(s)) {
2295         const unsigned int *psigs;
2296         size_t nl = tls12_get_psigalgs(s, &psigs);
2297
2298         if (!WPACKET_start_sub_packet_u16(pkt)
2299                 || !tls12_copy_sigalgs(s, pkt, psigs, nl)
2300                 || !WPACKET_close(pkt)) {
2301             SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2302                    ERR_R_INTERNAL_ERROR);
2303             goto err;
2304         }
2305     }
2306
2307     /* Start sub-packet for client CA list */
2308     if (!WPACKET_start_sub_packet_u16(pkt)) {
2309         SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2310         goto err;
2311     }
2312
2313     sk = SSL_get_client_CA_list(s);
2314     if (sk != NULL) {
2315         for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2316             unsigned char *namebytes;
2317             X509_NAME *name = sk_X509_NAME_value(sk, i);
2318             int namelen;
2319
2320             if (name == NULL
2321                     || (namelen = i2d_X509_NAME(name, NULL)) < 0
2322                     || !WPACKET_sub_allocate_bytes_u16(pkt, namelen,
2323                                                        &namebytes)
2324                     || i2d_X509_NAME(name, &namebytes) != namelen) {
2325                 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
2326                        ERR_R_INTERNAL_ERROR);
2327                 goto err;
2328             }
2329         }
2330     }
2331     /* else no CA names */
2332
2333     if (!WPACKET_close(pkt)) {
2334         SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2335         goto err;
2336     }
2337
2338     s->s3->tmp.cert_request = 1;
2339
2340     return 1;
2341  err:
2342     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2343     return 0;
2344 }
2345
2346 static int tls_process_cke_psk_preamble(SSL *s, PACKET *pkt, int *al)
2347 {
2348 #ifndef OPENSSL_NO_PSK
2349     unsigned char psk[PSK_MAX_PSK_LEN];
2350     size_t psklen;
2351     PACKET psk_identity;
2352
2353     if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
2354         *al = SSL_AD_DECODE_ERROR;
2355         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH);
2356         return 0;
2357     }
2358     if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
2359         *al = SSL_AD_DECODE_ERROR;
2360         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG);
2361         return 0;
2362     }
2363     if (s->psk_server_callback == NULL) {
2364         *al = SSL_AD_INTERNAL_ERROR;
2365         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_SERVER_CB);
2366         return 0;
2367     }
2368
2369     if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
2370         *al = SSL_AD_INTERNAL_ERROR;
2371         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2372         return 0;
2373     }
2374
2375     psklen = s->psk_server_callback(s, s->session->psk_identity,
2376                                     psk, sizeof(psk));
2377
2378     if (psklen > PSK_MAX_PSK_LEN) {
2379         *al = SSL_AD_INTERNAL_ERROR;
2380         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2381         return 0;
2382     } else if (psklen == 0) {
2383         /*
2384          * PSK related to the given identity not found
2385          */
2386         *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
2387         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE,
2388                SSL_R_PSK_IDENTITY_NOT_FOUND);
2389         return 0;
2390     }
2391
2392     OPENSSL_free(s->s3->tmp.psk);
2393     s->s3->tmp.psk = OPENSSL_memdup(psk, psklen);
2394     OPENSSL_cleanse(psk, psklen);
2395
2396     if (s->s3->tmp.psk == NULL) {
2397         *al = SSL_AD_INTERNAL_ERROR;
2398         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE);
2399         return 0;
2400     }
2401
2402     s->s3->tmp.psklen = psklen;
2403
2404     return 1;
2405 #else
2406     /* Should never happen */
2407     *al = SSL_AD_INTERNAL_ERROR;
2408     SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2409     return 0;
2410 #endif
2411 }
2412
2413 static int tls_process_cke_rsa(SSL *s, PACKET *pkt, int *al)
2414 {
2415 #ifndef OPENSSL_NO_RSA
2416     unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2417     int decrypt_len;
2418     unsigned char decrypt_good, version_good;
2419     size_t j, padding_len;
2420     PACKET enc_premaster;
2421     RSA *rsa = NULL;
2422     unsigned char *rsa_decrypt = NULL;
2423     int ret = 0;
2424
2425     rsa = EVP_PKEY_get0_RSA(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey);
2426     if (rsa == NULL) {
2427         *al = SSL_AD_HANDSHAKE_FAILURE;
2428         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_MISSING_RSA_CERTIFICATE);
2429         return 0;
2430     }
2431
2432     /* SSLv3 and pre-standard DTLS omit the length bytes. */
2433     if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
2434         enc_premaster = *pkt;
2435     } else {
2436         if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
2437             || PACKET_remaining(pkt) != 0) {
2438             *al = SSL_AD_DECODE_ERROR;
2439             SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_LENGTH_MISMATCH);
2440             return 0;
2441         }
2442     }
2443
2444     /*
2445      * We want to be sure that the plaintext buffer size makes it safe to
2446      * iterate over the entire size of a premaster secret
2447      * (SSL_MAX_MASTER_KEY_LENGTH). Reject overly short RSA keys because
2448      * their ciphertext cannot accommodate a premaster secret anyway.
2449      */
2450     if (RSA_size(rsa) < SSL_MAX_MASTER_KEY_LENGTH) {
2451         *al = SSL_AD_INTERNAL_ERROR;
2452         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, RSA_R_KEY_SIZE_TOO_SMALL);
2453         return 0;
2454     }
2455
2456     rsa_decrypt = OPENSSL_malloc(RSA_size(rsa));
2457     if (rsa_decrypt == NULL) {
2458         *al = SSL_AD_INTERNAL_ERROR;
2459         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_MALLOC_FAILURE);
2460         return 0;
2461     }
2462
2463     /*
2464      * We must not leak whether a decryption failure occurs because of
2465      * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2466      * section 7.4.7.1). The code follows that advice of the TLS RFC and
2467      * generates a random premaster secret for the case that the decrypt
2468      * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
2469      */
2470
2471     if (RAND_bytes(rand_premaster_secret, sizeof(rand_premaster_secret)) <= 0)
2472         goto err;
2473
2474     /*
2475      * Decrypt with no padding. PKCS#1 padding will be removed as part of
2476      * the timing-sensitive code below.
2477      */
2478      /* TODO(size_t): Convert this function */
2479     decrypt_len = (int)RSA_private_decrypt((int)PACKET_remaining(&enc_premaster),
2480                                            PACKET_data(&enc_premaster),
2481                                            rsa_decrypt, rsa, RSA_NO_PADDING);
2482     if (decrypt_len < 0)
2483         goto err;
2484
2485     /* Check the padding. See RFC 3447, section 7.2.2. */
2486
2487     /*
2488      * The smallest padded premaster is 11 bytes of overhead. Small keys
2489      * are publicly invalid, so this may return immediately. This ensures
2490      * PS is at least 8 bytes.
2491      */
2492     if (decrypt_len < 11 + SSL_MAX_MASTER_KEY_LENGTH) {
2493         *al = SSL_AD_DECRYPT_ERROR;
2494         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_DECRYPTION_FAILED);
2495         goto err;
2496     }
2497
2498     padding_len = decrypt_len - SSL_MAX_MASTER_KEY_LENGTH;
2499     decrypt_good = constant_time_eq_int_8(rsa_decrypt[0], 0) &
2500         constant_time_eq_int_8(rsa_decrypt[1], 2);
2501     for (j = 2; j < padding_len - 1; j++) {
2502         decrypt_good &= ~constant_time_is_zero_8(rsa_decrypt[j]);
2503     }
2504     decrypt_good &= constant_time_is_zero_8(rsa_decrypt[padding_len - 1]);
2505
2506     /*
2507      * If the version in the decrypted pre-master secret is correct then
2508      * version_good will be 0xff, otherwise it'll be zero. The
2509      * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2510      * (http://eprint.iacr.org/2003/052/) exploits the version number
2511      * check as a "bad version oracle". Thus version checks are done in
2512      * constant time and are treated like any other decryption error.
2513      */
2514     version_good =
2515         constant_time_eq_8(rsa_decrypt[padding_len],
2516                            (unsigned)(s->client_version >> 8));
2517     version_good &=
2518         constant_time_eq_8(rsa_decrypt[padding_len + 1],
2519                            (unsigned)(s->client_version & 0xff));
2520
2521     /*
2522      * The premaster secret must contain the same version number as the
2523      * ClientHello to detect version rollback attacks (strangely, the
2524      * protocol does not offer such protection for DH ciphersuites).
2525      * However, buggy clients exist that send the negotiated protocol
2526      * version instead if the server does not support the requested
2527      * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
2528      * clients.
2529      */
2530     if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
2531         unsigned char workaround_good;
2532         workaround_good = constant_time_eq_8(rsa_decrypt[padding_len],
2533                                              (unsigned)(s->version >> 8));
2534         workaround_good &=
2535             constant_time_eq_8(rsa_decrypt[padding_len + 1],
2536                                (unsigned)(s->version & 0xff));
2537         version_good |= workaround_good;
2538     }
2539
2540     /*
2541      * Both decryption and version must be good for decrypt_good to
2542      * remain non-zero (0xff).
2543      */
2544     decrypt_good &= version_good;
2545
2546     /*
2547      * Now copy rand_premaster_secret over from p using
2548      * decrypt_good_mask. If decryption failed, then p does not
2549      * contain valid plaintext, however, a check above guarantees
2550      * it is still sufficiently large to read from.
2551      */
2552     for (j = 0; j < sizeof(rand_premaster_secret); j++) {
2553         rsa_decrypt[padding_len + j] =
2554             constant_time_select_8(decrypt_good,
2555                                    rsa_decrypt[padding_len + j],
2556                                    rand_premaster_secret[j]);
2557     }
2558
2559     if (!ssl_generate_master_secret(s, rsa_decrypt + padding_len,
2560                                     sizeof(rand_premaster_secret), 0)) {
2561         *al = SSL_AD_INTERNAL_ERROR;
2562         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2563         goto err;
2564     }
2565
2566     ret = 1;
2567  err:
2568     OPENSSL_free(rsa_decrypt);
2569     return ret;
2570 #else
2571     /* Should never happen */
2572     *al = SSL_AD_INTERNAL_ERROR;
2573     SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2574     return 0;
2575 #endif
2576 }
2577
2578 static int tls_process_cke_dhe(SSL *s, PACKET *pkt, int *al)
2579 {
2580 #ifndef OPENSSL_NO_DH
2581     EVP_PKEY *skey = NULL;
2582     DH *cdh;
2583     unsigned int i;
2584     BIGNUM *pub_key;
2585     const unsigned char *data;
2586     EVP_PKEY *ckey = NULL;
2587     int ret = 0;
2588
2589     if (!PACKET_get_net_2(pkt, &i) || PACKET_remaining(pkt) != i) {
2590         *al = SSL_AD_HANDSHAKE_FAILURE;
2591         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE,
2592                SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2593         goto err;
2594     }
2595     skey = s->s3->tmp.pkey;
2596     if (skey == NULL) {
2597         *al = SSL_AD_HANDSHAKE_FAILURE;
2598         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2599         goto err;
2600     }
2601
2602     if (PACKET_remaining(pkt) == 0L) {
2603         *al = SSL_AD_HANDSHAKE_FAILURE;
2604         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2605         goto err;
2606     }
2607     if (!PACKET_get_bytes(pkt, &data, i)) {
2608         /* We already checked we have enough data */
2609         *al = SSL_AD_INTERNAL_ERROR;
2610         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2611         goto err;
2612     }
2613     ckey = EVP_PKEY_new();
2614     if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) {
2615         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_BN_LIB);
2616         goto err;
2617     }
2618     cdh = EVP_PKEY_get0_DH(ckey);
2619     pub_key = BN_bin2bn(data, i, NULL);
2620
2621     if (pub_key == NULL || !DH_set0_key(cdh, pub_key, NULL)) {
2622         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2623         if (pub_key != NULL)
2624             BN_free(pub_key);
2625         goto err;
2626     }
2627
2628     if (ssl_derive(s, skey, ckey, 1) == 0) {
2629         *al = SSL_AD_INTERNAL_ERROR;
2630         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2631         goto err;
2632     }
2633
2634     ret = 1;
2635     EVP_PKEY_free(s->s3->tmp.pkey);
2636     s->s3->tmp.pkey = NULL;
2637  err:
2638     EVP_PKEY_free(ckey);
2639     return ret;
2640 #else
2641     /* Should never happen */
2642     *al = SSL_AD_INTERNAL_ERROR;
2643     SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2644     return 0;
2645 #endif
2646 }
2647
2648 static int tls_process_cke_ecdhe(SSL *s, PACKET *pkt, int *al)
2649 {
2650 #ifndef OPENSSL_NO_EC
2651     EVP_PKEY *skey = s->s3->tmp.pkey;
2652     EVP_PKEY *ckey = NULL;
2653     int ret = 0;
2654
2655     if (PACKET_remaining(pkt) == 0L) {
2656         /* We don't support ECDH client auth */
2657         *al = SSL_AD_HANDSHAKE_FAILURE;
2658         SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_MISSING_TMP_ECDH_KEY);
2659         goto err;
2660     } else {
2661         unsigned int i;
2662         const unsigned char *data;
2663
2664         /*
2665          * Get client's public key from encoded point in the
2666          * ClientKeyExchange message.
2667          */
2668
2669         /* Get encoded point length */
2670         if (!PACKET_get_1(pkt, &i) || !PACKET_get_bytes(pkt, &data, i)
2671             || PACKET_remaining(pkt) != 0) {
2672             *al = SSL_AD_DECODE_ERROR;
2673             SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_LENGTH_MISMATCH);
2674             goto err;
2675         }
2676         ckey = EVP_PKEY_new();
2677         if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) {
2678             SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EVP_LIB);
2679             goto err;
2680         }
2681         if (EVP_PKEY_set1_tls_encodedpoint(ckey, data, i) == 0) {
2682             *al = SSL_AD_HANDSHAKE_FAILURE;
2683             SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EC_LIB);
2684             goto err;
2685         }
2686     }
2687
2688     if (ssl_derive(s, skey, ckey, 1) == 0) {
2689         *al = SSL_AD_INTERNAL_ERROR;
2690         SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2691         goto err;
2692     }
2693
2694     ret = 1;
2695     EVP_PKEY_free(s->s3->tmp.pkey);
2696     s->s3->tmp.pkey = NULL;
2697  err:
2698     EVP_PKEY_free(ckey);
2699
2700     return ret;
2701 #else
2702     /* Should never happen */
2703     *al = SSL_AD_INTERNAL_ERROR;
2704     SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2705     return 0;
2706 #endif
2707 }
2708
2709 static int tls_process_cke_srp(SSL *s, PACKET *pkt, int *al)
2710 {
2711 #ifndef OPENSSL_NO_SRP
2712     unsigned int i;
2713     const unsigned char *data;
2714
2715     if (!PACKET_get_net_2(pkt, &i)
2716         || !PACKET_get_bytes(pkt, &data, i)) {
2717         *al = SSL_AD_DECODE_ERROR;
2718         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_A_LENGTH);
2719         return 0;
2720     }
2721     if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
2722         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_BN_LIB);
2723         return 0;
2724     }
2725     if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) {
2726         *al = SSL_AD_ILLEGAL_PARAMETER;
2727         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_PARAMETERS);
2728         return 0;
2729     }
2730     OPENSSL_free(s->session->srp_username);
2731     s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
2732     if (s->session->srp_username == NULL) {
2733         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_MALLOC_FAILURE);
2734         return 0;
2735     }
2736
2737     if (!srp_generate_server_master_secret(s)) {
2738         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2739         return 0;
2740     }
2741
2742     return 1;
2743 #else
2744     /* Should never happen */
2745     *al = SSL_AD_INTERNAL_ERROR;
2746     SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2747     return 0;
2748 #endif
2749 }
2750
2751 static int tls_process_cke_gost(SSL *s, PACKET *pkt, int *al)
2752 {
2753 #ifndef OPENSSL_NO_GOST
2754     EVP_PKEY_CTX *pkey_ctx;
2755     EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2756     unsigned char premaster_secret[32];
2757     const unsigned char *start;
2758     size_t outlen = 32, inlen;
2759     unsigned long alg_a;
2760     int Ttag, Tclass;
2761     long Tlen;
2762     size_t sess_key_len;
2763     const unsigned char *data;
2764     int ret = 0;
2765
2766     /* Get our certificate private key */
2767     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2768     if (alg_a & SSL_aGOST12) {
2769         /*
2770          * New GOST ciphersuites have SSL_aGOST01 bit too
2771          */
2772         pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey;
2773         if (pk == NULL) {
2774             pk = s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
2775         }
2776         if (pk == NULL) {
2777             pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2778         }
2779     } else if (alg_a & SSL_aGOST01) {
2780         pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2781     }
2782
2783     pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
2784     if (pkey_ctx == NULL) {
2785         *al = SSL_AD_INTERNAL_ERROR;
2786         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_MALLOC_FAILURE);
2787         return 0;
2788     }
2789     if (EVP_PKEY_decrypt_init(pkey_ctx) <= 0) {
2790         *al = SSL_AD_INTERNAL_ERROR;
2791         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2792         return 0;
2793     }
2794     /*
2795      * If client certificate is present and is of the same type, maybe
2796      * use it for key exchange.  Don't mind errors from
2797      * EVP_PKEY_derive_set_peer, because it is completely valid to use a
2798      * client certificate for authorization only.
2799      */
2800     client_pub_pkey = X509_get0_pubkey(s->session->peer);
2801     if (client_pub_pkey) {
2802         if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2803             ERR_clear_error();
2804     }
2805     /* Decrypt session key */
2806     sess_key_len = PACKET_remaining(pkt);
2807     if (!PACKET_get_bytes(pkt, &data, sess_key_len)) {
2808         *al = SSL_AD_INTERNAL_ERROR;
2809         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2810         goto err;
2811     }
2812     /* TODO(size_t): Convert this function */
2813     if (ASN1_get_object((const unsigned char **)&data, &Tlen, &Ttag,
2814                         &Tclass, (long)sess_key_len) != V_ASN1_CONSTRUCTED
2815         || Ttag != V_ASN1_SEQUENCE || Tclass != V_ASN1_UNIVERSAL) {
2816         *al = SSL_AD_DECODE_ERROR;
2817         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2818         goto err;
2819     }
2820     start = data;
2821     inlen = Tlen;
2822     if (EVP_PKEY_decrypt
2823         (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
2824         *al = SSL_AD_DECODE_ERROR;
2825         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2826         goto err;
2827     }
2828     /* Generate master secret */
2829     if (!ssl_generate_master_secret(s, premaster_secret,
2830                                     sizeof(premaster_secret), 0)) {
2831         *al = SSL_AD_INTERNAL_ERROR;
2832         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2833         goto err;
2834     }
2835     /* Check if pubkey from client certificate was used */
2836     if (EVP_PKEY_CTX_ctrl
2837         (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2838         s->statem.no_cert_verify = 1;
2839
2840     ret = 1;
2841  err:
2842     EVP_PKEY_CTX_free(pkey_ctx);
2843     return ret;
2844 #else
2845     /* Should never happen */
2846     *al = SSL_AD_INTERNAL_ERROR;
2847     SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2848     return 0;
2849 #endif
2850 }
2851
2852 MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL *s, PACKET *pkt)
2853 {
2854     int al = -1;
2855     unsigned long alg_k;
2856
2857     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2858
2859     /* For PSK parse and retrieve identity, obtain PSK key */
2860     if ((alg_k & SSL_PSK) && !tls_process_cke_psk_preamble(s, pkt, &al))
2861         goto err;
2862
2863     if (alg_k & SSL_kPSK) {
2864         /* Identity extracted earlier: should be nothing left */
2865         if (PACKET_remaining(pkt) != 0) {
2866             al = SSL_AD_HANDSHAKE_FAILURE;
2867             SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2868                    SSL_R_LENGTH_MISMATCH);
2869             goto err;
2870         }
2871         /* PSK handled by ssl_generate_master_secret */
2872         if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
2873             al = SSL_AD_INTERNAL_ERROR;
2874             SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2875             goto err;
2876         }
2877     } else if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
2878         if (!tls_process_cke_rsa(s, pkt, &al))
2879             goto err;
2880     } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2881         if (!tls_process_cke_dhe(s, pkt, &al))
2882             goto err;
2883     } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2884         if (!tls_process_cke_ecdhe(s, pkt, &al))
2885             goto err;
2886     } else if (alg_k & SSL_kSRP) {
2887         if (!tls_process_cke_srp(s, pkt, &al))
2888             goto err;
2889     } else if (alg_k & SSL_kGOST) {
2890         if (!tls_process_cke_gost(s, pkt, &al))
2891             goto err;
2892     } else {
2893         al = SSL_AD_HANDSHAKE_FAILURE;
2894         SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2895                SSL_R_UNKNOWN_CIPHER_TYPE);
2896         goto err;
2897     }
2898
2899     return MSG_PROCESS_CONTINUE_PROCESSING;
2900  err:
2901     if (al != -1)
2902         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2903 #ifndef OPENSSL_NO_PSK
2904     OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
2905     s->s3->tmp.psk = NULL;
2906 #endif
2907     ossl_statem_set_error(s);
2908     return MSG_PROCESS_ERROR;
2909 }
2910
2911 WORK_STATE tls_post_process_client_key_exchange(SSL *s, WORK_STATE wst)
2912 {
2913 #ifndef OPENSSL_NO_SCTP
2914     if (wst == WORK_MORE_A) {
2915         if (SSL_IS_DTLS(s)) {
2916             unsigned char sctpauthkey[64];
2917             char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
2918             /*
2919              * Add new shared key for SCTP-Auth, will be ignored if no SCTP
2920              * used.
2921              */
2922             memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
2923                    sizeof(DTLS1_SCTP_AUTH_LABEL));
2924
2925             if (SSL_export_keying_material(s, sctpauthkey,
2926                                            sizeof(sctpauthkey), labelbuffer,
2927                                            sizeof(labelbuffer), NULL, 0,
2928                                            0) <= 0) {
2929                 ossl_statem_set_error(s);
2930                 return WORK_ERROR;;
2931             }
2932
2933             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
2934                      sizeof(sctpauthkey), sctpauthkey);
2935         }
2936         wst = WORK_MORE_B;
2937     }
2938
2939     if ((wst == WORK_MORE_B)
2940         /* Is this SCTP? */
2941         && BIO_dgram_is_sctp(SSL_get_wbio(s))
2942         /* Are we renegotiating? */
2943         && s->renegotiate
2944         /* Are we going to skip the CertificateVerify? */
2945         && (s->session->peer == NULL || s->statem.no_cert_verify)
2946         && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
2947         s->s3->in_read_app_data = 2;
2948         s->rwstate = SSL_READING;
2949         BIO_clear_retry_flags(SSL_get_rbio(s));
2950         BIO_set_retry_read(SSL_get_rbio(s));
2951         ossl_statem_set_sctp_read_sock(s, 1);
2952         return WORK_MORE_B;
2953     } else {
2954         ossl_statem_set_sctp_read_sock(s, 0);
2955     }
2956 #endif
2957
2958     if (s->statem.no_cert_verify || !s->session->peer) {
2959         /*
2960          * No certificate verify or no peer certificate so we no longer need
2961          * the handshake_buffer
2962          */
2963         if (!ssl3_digest_cached_records(s, 0)) {
2964             ossl_statem_set_error(s);
2965             return WORK_ERROR;
2966         }
2967         return WORK_FINISHED_CONTINUE;
2968     } else {
2969         if (!s->s3->handshake_buffer) {
2970             SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_KEY_EXCHANGE,
2971                    ERR_R_INTERNAL_ERROR);
2972             ossl_statem_set_error(s);
2973             return WORK_ERROR;
2974         }
2975         /*
2976          * For sigalgs freeze the handshake buffer. If we support
2977          * extms we've done this already so this is a no-op
2978          */
2979         if (!ssl3_digest_cached_records(s, 1)) {
2980             ossl_statem_set_error(s);
2981             return WORK_ERROR;
2982         }
2983     }
2984
2985     return WORK_FINISHED_CONTINUE;
2986 }
2987
2988 MSG_PROCESS_RETURN tls_process_client_certificate(SSL *s, PACKET *pkt)
2989 {
2990     int i, al = SSL_AD_INTERNAL_ERROR, ret = MSG_PROCESS_ERROR;
2991     X509 *x = NULL;
2992     unsigned long l, llen;
2993     const unsigned char *certstart, *certbytes;
2994     STACK_OF(X509) *sk = NULL;
2995     PACKET spkt, context;
2996     size_t chainidx;
2997
2998     if ((sk = sk_X509_new_null()) == NULL) {
2999         SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3000         goto f_err;
3001     }
3002
3003     /* TODO(TLS1.3): For now we ignore the context. We need to verify this */
3004     if ((SSL_IS_TLS13(s) && !PACKET_get_length_prefixed_1(pkt, &context))
3005             || !PACKET_get_net_3(pkt, &llen)
3006             || !PACKET_get_sub_packet(pkt, &spkt, llen)
3007             || PACKET_remaining(pkt) != 0) {
3008         al = SSL_AD_DECODE_ERROR;
3009         SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
3010         goto f_err;
3011     }
3012
3013     for (chainidx = 0; PACKET_remaining(&spkt) > 0; chainidx++) {
3014         if (!PACKET_get_net_3(&spkt, &l)
3015             || !PACKET_get_bytes(&spkt, &certbytes, l)) {
3016             al = SSL_AD_DECODE_ERROR;
3017             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3018                    SSL_R_CERT_LENGTH_MISMATCH);
3019             goto f_err;
3020         }
3021
3022         certstart = certbytes;
3023         x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
3024         if (x == NULL) {
3025             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
3026             goto f_err;
3027         }
3028         if (certbytes != (certstart + l)) {
3029             al = SSL_AD_DECODE_ERROR;
3030             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3031                    SSL_R_CERT_LENGTH_MISMATCH);
3032             goto f_err;
3033         }
3034
3035         if (SSL_IS_TLS13(s)) {
3036             RAW_EXTENSION *rawexts = NULL;
3037             PACKET extensions;
3038
3039             if (!PACKET_get_length_prefixed_2(&spkt, &extensions)) {
3040                 al = SSL_AD_DECODE_ERROR;
3041                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_BAD_LENGTH);
3042                 goto f_err;
3043             }
3044             if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_CERTIFICATE,
3045                                         &rawexts, &al)
3046                     || !tls_parse_all_extensions(s, EXT_TLS1_3_CERTIFICATE,
3047                                                  rawexts, x, chainidx, &al))
3048                 goto f_err;
3049         }
3050
3051         if (!sk_X509_push(sk, x)) {
3052             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3053             goto f_err;
3054         }
3055         x = NULL;
3056     }
3057
3058     if (sk_X509_num(sk) <= 0) {
3059         /* TLS does not mind 0 certs returned */
3060         if (s->version == SSL3_VERSION) {
3061             al = SSL_AD_HANDSHAKE_FAILURE;
3062             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3063                    SSL_R_NO_CERTIFICATES_RETURNED);
3064             goto f_err;
3065         }
3066         /* Fail for TLS only if we required a certificate */
3067         else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3068                  (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3069             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3070                    SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3071             al = SSL_AD_HANDSHAKE_FAILURE;
3072             goto f_err;
3073         }
3074         /* No client certificate so digest cached records */
3075         if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
3076             goto f_err;
3077         }
3078     } else {
3079         EVP_PKEY *pkey;
3080         i = ssl_verify_cert_chain(s, sk);
3081         if (i <= 0) {
3082             al = ssl_verify_alarm_type(s->verify_result);
3083             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3084                    SSL_R_CERTIFICATE_VERIFY_FAILED);
3085             goto f_err;
3086         }
3087         if (i > 1) {
3088             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, i);
3089             al = SSL_AD_HANDSHAKE_FAILURE;
3090             goto f_err;
3091         }
3092         pkey = X509_get0_pubkey(sk_X509_value(sk, 0));
3093         if (pkey == NULL) {
3094             al = SSL3_AD_HANDSHAKE_FAILURE;
3095             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
3096                    SSL_R_UNKNOWN_CERTIFICATE_TYPE);
3097             goto f_err;
3098         }
3099     }
3100
3101     X509_free(s->session->peer);
3102     s->session->peer = sk_X509_shift(sk);
3103     s->session->verify_result = s->verify_result;
3104
3105     sk_X509_pop_free(s->session->peer_chain, X509_free);
3106     s->session->peer_chain = sk;
3107
3108     /*
3109      * Freeze the handshake buffer. For <TLS1.3 we do this after the CKE
3110      * message
3111      */
3112     if (SSL_IS_TLS13(s) && !ssl3_digest_cached_records(s, 1)) {
3113         al = SSL_AD_INTERNAL_ERROR;
3114         SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3115         goto f_err;
3116     }
3117
3118     /*
3119      * Inconsistency alert: cert_chain does *not* include the peer's own
3120      * certificate, while we do include it in statem_clnt.c
3121      */
3122     sk = NULL;
3123
3124     /* Save the current hash state for when we receive the CertificateVerify */
3125     if (SSL_IS_TLS13(s)
3126             && !ssl_handshake_hash(s, s->cert_verify_hash,
3127                                    sizeof(s->cert_verify_hash),
3128                                    &s->cert_verify_hash_len)) {
3129         al = SSL_AD_INTERNAL_ERROR;
3130         SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3131         goto f_err;
3132     }
3133
3134     ret = MSG_PROCESS_CONTINUE_READING;
3135     goto done;
3136
3137  f_err:
3138     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3139     ossl_statem_set_error(s);
3140  done:
3141     X509_free(x);
3142     sk_X509_pop_free(sk, X509_free);
3143     return ret;
3144 }
3145
3146 int tls_construct_server_certificate(SSL *s, WPACKET *pkt)
3147 {
3148     CERT_PKEY *cpk;
3149     int al = SSL_AD_INTERNAL_ERROR;
3150
3151     cpk = ssl_get_server_send_pkey(s);
3152     if (cpk == NULL) {
3153         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3154         return 0;
3155     }
3156
3157     /*
3158      * In TLSv1.3 the certificate chain is always preceded by a 0 length context
3159      * for the server Certificate message
3160      */
3161     if ((SSL_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0))
3162             || !ssl3_output_cert_chain(s, pkt, cpk, &al)) {
3163         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3164         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3165         return 0;
3166     }
3167
3168     return 1;
3169 }
3170
3171 int tls_construct_new_session_ticket(SSL *s, WPACKET *pkt)
3172 {
3173     unsigned char *senc = NULL;
3174     EVP_CIPHER_CTX *ctx = NULL;
3175     HMAC_CTX *hctx = NULL;
3176     unsigned char *p, *encdata1, *encdata2, *macdata1, *macdata2;
3177     const unsigned char *const_p;
3178     int len, slen_full, slen, lenfinal;
3179     SSL_SESSION *sess;
3180     unsigned int hlen;
3181     SSL_CTX *tctx = s->initial_ctx;
3182     unsigned char iv[EVP_MAX_IV_LENGTH];
3183     unsigned char key_name[TLSEXT_KEYNAME_LENGTH];
3184     int iv_len;
3185     size_t macoffset, macendoffset;
3186
3187     /* get session encoding length */
3188     slen_full = i2d_SSL_SESSION(s->session, NULL);
3189     /*
3190      * Some length values are 16 bits, so forget it if session is too
3191      * long
3192      */
3193     if (slen_full == 0 || slen_full > 0xFF00) {
3194         ossl_statem_set_error(s);
3195         return 0;
3196     }
3197     senc = OPENSSL_malloc(slen_full);
3198     if (senc == NULL) {
3199         ossl_statem_set_error(s);
3200         return 0;
3201     }
3202
3203     ctx = EVP_CIPHER_CTX_new();
3204     hctx = HMAC_CTX_new();
3205     if (ctx == NULL || hctx == NULL) {
3206         SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
3207         goto err;
3208     }
3209
3210     p = senc;
3211     if (!i2d_SSL_SESSION(s->session, &p))
3212         goto err;
3213
3214     /*
3215      * create a fresh copy (not shared with other threads) to clean up
3216      */
3217     const_p = senc;
3218     sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3219     if (sess == NULL)
3220         goto err;
3221     sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3222
3223     slen = i2d_SSL_SESSION(sess, NULL);
3224     if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
3225         SSL_SESSION_free(sess);
3226         goto err;
3227     }
3228     p = senc;
3229     if (!i2d_SSL_SESSION(sess, &p)) {
3230         SSL_SESSION_free(sess);
3231         goto err;
3232     }
3233     SSL_SESSION_free(sess);
3234
3235     /*
3236      * Initialize HMAC and cipher contexts. If callback present it does
3237      * all the work otherwise use generated values from parent ctx.
3238      */
3239     if (tctx->ext.ticket_key_cb) {
3240         /* if 0 is returned, write an empty ticket */
3241         int ret = tctx->ext.ticket_key_cb(s, key_name, iv, ctx,
3242                                              hctx, 1);
3243
3244         if (ret == 0) {
3245
3246             /* Put timeout and length */
3247             if (!WPACKET_put_bytes_u32(pkt, 0)
3248                     || !WPACKET_put_bytes_u16(pkt, 0)) {
3249                 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET,
3250                        ERR_R_INTERNAL_ERROR);
3251                 goto err;
3252             }
3253             OPENSSL_free(senc);
3254             EVP_CIPHER_CTX_free(ctx);
3255             HMAC_CTX_free(hctx);
3256             return 1;
3257         }
3258         if (ret < 0)
3259             goto err;
3260         iv_len = EVP_CIPHER_CTX_iv_length(ctx);
3261     } else {
3262         const EVP_CIPHER *cipher = EVP_aes_256_cbc();
3263
3264         iv_len = EVP_CIPHER_iv_length(cipher);
3265         if (RAND_bytes(iv, iv_len) <= 0)
3266             goto err;
3267         if (!EVP_EncryptInit_ex(ctx, cipher, NULL,
3268                                 tctx->ext.tick_aes_key, iv))
3269             goto err;
3270         if (!HMAC_Init_ex(hctx, tctx->ext.tick_hmac_key,
3271                           sizeof(tctx->ext.tick_hmac_key),
3272                           EVP_sha256(), NULL))
3273             goto err;
3274         memcpy(key_name, tctx->ext.tick_key_name,
3275                sizeof(tctx->ext.tick_key_name));
3276     }
3277
3278     /*
3279      * Ticket lifetime hint (advisory only): We leave this unspecified
3280      * for resumed session (for simplicity), and guess that tickets for
3281      * new sessions will live as long as their sessions.
3282      */
3283     if (!WPACKET_put_bytes_u32(pkt, s->hit ? 0 : s->session->timeout)
3284                /* Now the actual ticket data */
3285             || !WPACKET_start_sub_packet_u16(pkt)
3286             || !WPACKET_get_total_written(pkt, &macoffset)
3287                /* Output key name */
3288             || !WPACKET_memcpy(pkt, key_name, sizeof(key_name))
3289                /* output IV */
3290             || !WPACKET_memcpy(pkt, iv, iv_len)
3291             || !WPACKET_reserve_bytes(pkt, slen + EVP_MAX_BLOCK_LENGTH,
3292                                       &encdata1)
3293                /* Encrypt session data */
3294             || !EVP_EncryptUpdate(ctx, encdata1, &len, senc, slen)
3295             || !WPACKET_allocate_bytes(pkt, len, &encdata2)
3296             || encdata1 != encdata2
3297             || !EVP_EncryptFinal(ctx, encdata1 + len, &lenfinal)
3298             || !WPACKET_allocate_bytes(pkt, lenfinal, &encdata2)
3299             || encdata1 + len != encdata2
3300             || len + lenfinal > slen + EVP_MAX_BLOCK_LENGTH
3301             || !WPACKET_get_total_written(pkt, &macendoffset)
3302             || !HMAC_Update(hctx,
3303                             (unsigned char *)s->init_buf->data + macoffset,
3304                             macendoffset - macoffset)
3305             || !WPACKET_reserve_bytes(pkt, EVP_MAX_MD_SIZE, &macdata1)
3306             || !HMAC_Final(hctx, macdata1, &hlen)
3307             || hlen > EVP_MAX_MD_SIZE
3308             || !WPACKET_allocate_bytes(pkt, hlen, &macdata2)
3309             || macdata1 != macdata2
3310             || !WPACKET_close(pkt)) {
3311         SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_INTERNAL_ERROR);
3312         goto err;
3313     }
3314     EVP_CIPHER_CTX_free(ctx);
3315     HMAC_CTX_free(hctx);
3316     OPENSSL_free(senc);
3317
3318     return 1;
3319  err:
3320     OPENSSL_free(senc);
3321     EVP_CIPHER_CTX_free(ctx);
3322     HMAC_CTX_free(hctx);
3323     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3324     return 0;
3325 }
3326
3327 /*
3328  * In TLSv1.3 this is called from the extensions code, otherwise it is used to
3329  * create a separate message. Returns 1 on success or 0 on failure.
3330  */
3331 int tls_construct_cert_status_body(SSL *s, WPACKET *pkt)
3332 {
3333     if (!WPACKET_put_bytes_u8(pkt, s->ext.status_type)
3334             || !WPACKET_sub_memcpy_u24(pkt, s->ext.ocsp.resp,
3335                                        s->ext.ocsp.resp_len)) {
3336         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_STATUS_BODY, ERR_R_INTERNAL_ERROR);
3337         return 0;
3338     }
3339
3340     return 1;
3341 }
3342
3343 int tls_construct_cert_status(SSL *s, WPACKET *pkt)
3344 {
3345     if (!tls_construct_cert_status_body(s, pkt)) {
3346         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3347         return 0;
3348     }
3349
3350     return 1;
3351 }
3352
3353 #ifndef OPENSSL_NO_NEXTPROTONEG
3354 /*
3355  * tls_process_next_proto reads a Next Protocol Negotiation handshake message.
3356  * It sets the next_proto member in s if found
3357  */
3358 MSG_PROCESS_RETURN tls_process_next_proto(SSL *s, PACKET *pkt)
3359 {
3360     PACKET next_proto, padding;
3361     size_t next_proto_len;
3362
3363     /*-
3364      * The payload looks like:
3365      *   uint8 proto_len;
3366      *   uint8 proto[proto_len];
3367      *   uint8 padding_len;
3368      *   uint8 padding[padding_len];
3369      */
3370     if (!PACKET_get_length_prefixed_1(pkt, &next_proto)
3371         || !PACKET_get_length_prefixed_1(pkt, &padding)
3372         || PACKET_remaining(pkt) > 0) {
3373         SSLerr(SSL_F_TLS_PROCESS_NEXT_PROTO, SSL_R_LENGTH_MISMATCH);
3374         goto err;
3375     }
3376
3377     if (!PACKET_memdup(&next_proto, &s->ext.npn, &next_proto_len)) {
3378         s->ext.npn_len = 0;
3379         goto err;
3380     }
3381
3382     s->ext.npn_len = (unsigned char)next_proto_len;
3383
3384     return MSG_PROCESS_CONTINUE_READING;
3385  err:
3386     ossl_statem_set_error(s);
3387     return MSG_PROCESS_ERROR;
3388 }
3389 #endif
3390
3391 static int tls_construct_encrypted_extensions(SSL *s, WPACKET *pkt)
3392 {
3393     int al;
3394
3395     if (!tls_construct_extensions(s, pkt, EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3396                                   NULL, 0, &al)) {
3397         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3398         SSLerr(SSL_F_TLS_CONSTRUCT_ENCRYPTED_EXTENSIONS, ERR_R_INTERNAL_ERROR);
3399         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3400         return 0;
3401     }
3402
3403     return 1;
3404 }
3405
3406 #define SSLV2_CIPHER_LEN    3
3407
3408 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,
3409                                                PACKET *cipher_suites,
3410                                                STACK_OF(SSL_CIPHER) **skp,
3411                                                int sslv2format, int *al)
3412 {
3413     const SSL_CIPHER *c;
3414     STACK_OF(SSL_CIPHER) *sk;
3415     int n;
3416     /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
3417     unsigned char cipher[SSLV2_CIPHER_LEN];
3418
3419     s->s3->send_connection_binding = 0;
3420
3421     n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
3422
3423     if (PACKET_remaining(cipher_suites) == 0) {
3424         SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, SSL_R_NO_CIPHERS_SPECIFIED);
3425         *al = SSL_AD_ILLEGAL_PARAMETER;
3426         return NULL;
3427     }
3428
3429     if (PACKET_remaining(cipher_suites) % n != 0) {
3430         SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3431                SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
3432         *al = SSL_AD_DECODE_ERROR;
3433         return NULL;
3434     }
3435
3436     if ((skp == NULL) || (*skp == NULL)) {
3437         sk = sk_SSL_CIPHER_new_null(); /* change perhaps later */
3438         if (sk == NULL) {
3439             SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
3440             *al = SSL_AD_INTERNAL_ERROR;
3441             return NULL;
3442         }
3443     } else {
3444         sk = *skp;
3445         sk_SSL_CIPHER_zero(sk);
3446     }
3447
3448     if (!PACKET_memdup(cipher_suites, &s->s3->tmp.ciphers_raw,
3449                        &s->s3->tmp.ciphers_rawlen)) {
3450         *al = SSL_AD_INTERNAL_ERROR;
3451         goto err;
3452     }
3453
3454     while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
3455         /*
3456          * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
3457          * first byte set to zero, while true SSLv2 ciphers have a non-zero
3458          * first byte. We don't support any true SSLv2 ciphers, so skip them.
3459          */
3460         if (sslv2format && cipher[0] != '\0')
3461             continue;
3462
3463         /* Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV */
3464         if ((cipher[n - 2] == ((SSL3_CK_SCSV >> 8) & 0xff)) &&
3465             (cipher[n - 1] == (SSL3_CK_SCSV & 0xff))) {
3466             /* SCSV fatal if renegotiating */
3467             if (s->renegotiate) {
3468                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3469                        SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
3470                 *al = SSL_AD_HANDSHAKE_FAILURE;
3471                 goto err;
3472             }
3473             s->s3->send_connection_binding = 1;
3474             continue;
3475         }
3476
3477         /* Check for TLS_FALLBACK_SCSV */
3478         if ((cipher[n - 2] == ((SSL3_CK_FALLBACK_SCSV >> 8) & 0xff)) &&
3479             (cipher[n - 1] == (SSL3_CK_FALLBACK_SCSV & 0xff))) {
3480             /*
3481              * The SCSV indicates that the client previously tried a higher
3482              * version. Fail if the current version is an unexpected
3483              * downgrade.
3484              */
3485             if (!ssl_check_version_downgrade(s)) {
3486                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3487                        SSL_R_INAPPROPRIATE_FALLBACK);
3488                 *al = SSL_AD_INAPPROPRIATE_FALLBACK;
3489                 goto err;
3490             }
3491             continue;
3492         }
3493
3494         /* For SSLv2-compat, ignore leading 0-byte. */
3495         c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher);
3496         if (c != NULL) {
3497             if (!sk_SSL_CIPHER_push(sk, c)) {
3498                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
3499                 *al = SSL_AD_INTERNAL_ERROR;
3500                 goto err;
3501             }
3502         }
3503     }
3504     if (PACKET_remaining(cipher_suites) > 0) {
3505         *al = SSL_AD_INTERNAL_ERROR;
3506         SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_INTERNAL_ERROR);
3507         goto err;
3508     }
3509
3510     if (skp != NULL)
3511         *skp = sk;
3512     return (sk);
3513  err:
3514     if ((skp == NULL) || (*skp == NULL))
3515         sk_SSL_CIPHER_free(sk);
3516     return NULL;
3517 }