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