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