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