fa56af1764a65db9a4e631b899aa1c1a3a943912
[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 (SSL_IS_TLS13(s)) {
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             st->hand_state = s->tlsext_status_expected ? TLS_ST_SW_CERT_STATUS
426                                                        : TLS_ST_SW_FINISHED;
427         return WRITE_TRAN_CONTINUE;
428
429     case TLS_ST_SW_CERT_STATUS:
430         st->hand_state = TLS_ST_SW_FINISHED;
431         return WRITE_TRAN_CONTINUE;
432
433     case TLS_ST_SW_FINISHED:
434         return WRITE_TRAN_FINISHED;
435
436     case TLS_ST_SR_FINISHED:
437         st->hand_state = TLS_ST_OK;
438         ossl_statem_set_in_init(s, 0);
439         return WRITE_TRAN_CONTINUE;
440     }
441 }
442
443 /*
444  * ossl_statem_server_write_transition() works out what handshake state to move
445  * to next when the server is writing messages to be sent to the client.
446  */
447 WRITE_TRAN ossl_statem_server_write_transition(SSL *s)
448 {
449     OSSL_STATEM *st = &s->statem;
450
451     /*
452      * Note that before the ClientHello we don't know what version we are going
453      * to negotiate yet, so we don't take this branch until later
454      */
455
456     if (SSL_IS_TLS13(s))
457         return ossl_statem_server13_write_transition(s);
458
459     switch (st->hand_state) {
460     default:
461         /* Shouldn't happen */
462         return WRITE_TRAN_ERROR;
463
464     case TLS_ST_BEFORE:
465         /* Just go straight to trying to read from the client */
466         return WRITE_TRAN_FINISHED;
467
468     case TLS_ST_OK:
469         /* We must be trying to renegotiate */
470         st->hand_state = TLS_ST_SW_HELLO_REQ;
471         return WRITE_TRAN_CONTINUE;
472
473     case TLS_ST_SW_HELLO_REQ:
474         st->hand_state = TLS_ST_OK;
475         ossl_statem_set_in_init(s, 0);
476         return WRITE_TRAN_CONTINUE;
477
478     case TLS_ST_SR_CLNT_HELLO:
479         if (SSL_IS_DTLS(s) && !s->d1->cookie_verified
480             && (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE))
481             st->hand_state = DTLS_ST_SW_HELLO_VERIFY_REQUEST;
482         else
483             st->hand_state = TLS_ST_SW_SRVR_HELLO;
484         return WRITE_TRAN_CONTINUE;
485
486     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
487         return WRITE_TRAN_FINISHED;
488
489     case TLS_ST_SW_SRVR_HELLO:
490         if (s->hit) {
491             if (s->tlsext_ticket_expected)
492                 st->hand_state = TLS_ST_SW_SESSION_TICKET;
493             else
494                 st->hand_state = TLS_ST_SW_CHANGE;
495         } else {
496             /* Check if it is anon DH or anon ECDH, */
497             /* normal PSK or SRP */
498             if (!(s->s3->tmp.new_cipher->algorithm_auth &
499                   (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
500                 st->hand_state = TLS_ST_SW_CERT;
501             } else if (send_server_key_exchange(s)) {
502                 st->hand_state = TLS_ST_SW_KEY_EXCH;
503             } else if (send_certificate_request(s)) {
504                 st->hand_state = TLS_ST_SW_CERT_REQ;
505             } else {
506                 st->hand_state = TLS_ST_SW_SRVR_DONE;
507             }
508         }
509         return WRITE_TRAN_CONTINUE;
510
511     case TLS_ST_SW_CERT:
512         if (s->tlsext_status_expected) {
513             st->hand_state = TLS_ST_SW_CERT_STATUS;
514             return WRITE_TRAN_CONTINUE;
515         }
516         /* Fall through */
517
518     case TLS_ST_SW_CERT_STATUS:
519         if (send_server_key_exchange(s)) {
520             st->hand_state = TLS_ST_SW_KEY_EXCH;
521             return WRITE_TRAN_CONTINUE;
522         }
523         /* Fall through */
524
525     case TLS_ST_SW_KEY_EXCH:
526         if (send_certificate_request(s)) {
527             st->hand_state = TLS_ST_SW_CERT_REQ;
528             return WRITE_TRAN_CONTINUE;
529         }
530         /* Fall through */
531
532     case TLS_ST_SW_CERT_REQ:
533         st->hand_state = TLS_ST_SW_SRVR_DONE;
534         return WRITE_TRAN_CONTINUE;
535
536     case TLS_ST_SW_SRVR_DONE:
537         return WRITE_TRAN_FINISHED;
538
539     case TLS_ST_SR_FINISHED:
540         if (s->hit) {
541             st->hand_state = TLS_ST_OK;
542             ossl_statem_set_in_init(s, 0);
543             return WRITE_TRAN_CONTINUE;
544         } else if (s->tlsext_ticket_expected) {
545             st->hand_state = TLS_ST_SW_SESSION_TICKET;
546         } else {
547             st->hand_state = TLS_ST_SW_CHANGE;
548         }
549         return WRITE_TRAN_CONTINUE;
550
551     case TLS_ST_SW_SESSION_TICKET:
552         st->hand_state = TLS_ST_SW_CHANGE;
553         return WRITE_TRAN_CONTINUE;
554
555     case TLS_ST_SW_CHANGE:
556         st->hand_state = TLS_ST_SW_FINISHED;
557         return WRITE_TRAN_CONTINUE;
558
559     case TLS_ST_SW_FINISHED:
560         if (s->hit) {
561             return WRITE_TRAN_FINISHED;
562         }
563         st->hand_state = TLS_ST_OK;
564         ossl_statem_set_in_init(s, 0);
565         return WRITE_TRAN_CONTINUE;
566     }
567 }
568
569 /*
570  * Perform any pre work that needs to be done prior to sending a message from
571  * the server to the client.
572  */
573 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst)
574 {
575     OSSL_STATEM *st = &s->statem;
576
577     switch (st->hand_state) {
578     default:
579         /* No pre work to be done */
580         break;
581
582     case TLS_ST_SW_HELLO_REQ:
583         s->shutdown = 0;
584         if (SSL_IS_DTLS(s))
585             dtls1_clear_sent_buffer(s);
586         break;
587
588     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
589         s->shutdown = 0;
590         if (SSL_IS_DTLS(s)) {
591             dtls1_clear_sent_buffer(s);
592             /* We don't buffer this message so don't use the timer */
593             st->use_timer = 0;
594         }
595         break;
596
597     case TLS_ST_SW_SRVR_HELLO:
598         if (SSL_IS_DTLS(s)) {
599             /*
600              * Messages we write from now on should be bufferred and
601              * retransmitted if necessary, so we need to use the timer now
602              */
603             st->use_timer = 1;
604         }
605         break;
606
607     case TLS_ST_SW_SRVR_DONE:
608 #ifndef OPENSSL_NO_SCTP
609         if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s)))
610             return dtls_wait_for_dry(s);
611 #endif
612         return WORK_FINISHED_CONTINUE;
613
614     case TLS_ST_SW_SESSION_TICKET:
615         if (SSL_IS_DTLS(s)) {
616             /*
617              * We're into the last flight. We don't retransmit the last flight
618              * unless we need to, so we don't use the timer
619              */
620             st->use_timer = 0;
621         }
622         break;
623
624     case TLS_ST_SW_CHANGE:
625         s->session->cipher = s->s3->tmp.new_cipher;
626         if (!s->method->ssl3_enc->setup_key_block(s)) {
627             ossl_statem_set_error(s);
628             return WORK_ERROR;
629         }
630         if (SSL_IS_DTLS(s)) {
631             /*
632              * We're into the last flight. We don't retransmit the last flight
633              * unless we need to, so we don't use the timer. This might have
634              * already been set to 0 if we sent a NewSessionTicket message,
635              * but we'll set it again here in case we didn't.
636              */
637             st->use_timer = 0;
638         }
639         return WORK_FINISHED_CONTINUE;
640
641     case TLS_ST_OK:
642         return tls_finish_handshake(s, wst);
643     }
644
645     return WORK_FINISHED_CONTINUE;
646 }
647
648 /*
649  * Perform any work that needs to be done after sending a message from the
650  * server to the client.
651  */
652 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst)
653 {
654     OSSL_STATEM *st = &s->statem;
655
656     s->init_num = 0;
657
658     switch (st->hand_state) {
659     default:
660         /* No post work to be done */
661         break;
662
663     case TLS_ST_SW_HELLO_REQ:
664         if (statem_flush(s) != 1)
665             return WORK_MORE_A;
666         if (!ssl3_init_finished_mac(s)) {
667             ossl_statem_set_error(s);
668             return WORK_ERROR;
669         }
670         break;
671
672     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
673         if (statem_flush(s) != 1)
674             return WORK_MORE_A;
675         /* HelloVerifyRequest resets Finished MAC */
676         if (s->version != DTLS1_BAD_VER && !ssl3_init_finished_mac(s)) {
677             ossl_statem_set_error(s);
678             return WORK_ERROR;
679         }
680         /*
681          * The next message should be another ClientHello which we need to
682          * treat like it was the first packet
683          */
684         s->first_packet = 1;
685         break;
686
687     case TLS_ST_SW_SRVR_HELLO:
688 #ifndef OPENSSL_NO_SCTP
689         if (SSL_IS_DTLS(s) && s->hit) {
690             unsigned char sctpauthkey[64];
691             char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
692
693             /*
694              * Add new shared key for SCTP-Auth, will be ignored if no
695              * SCTP used.
696              */
697             memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
698                    sizeof(DTLS1_SCTP_AUTH_LABEL));
699
700             if (SSL_export_keying_material(s, sctpauthkey,
701                                            sizeof(sctpauthkey), labelbuffer,
702                                            sizeof(labelbuffer), NULL, 0,
703                                            0) <= 0) {
704                 ossl_statem_set_error(s);
705                 return WORK_ERROR;
706             }
707
708             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
709                      sizeof(sctpauthkey), sctpauthkey);
710         }
711 #endif
712         /*
713          * TODO(TLS1.3): This actually causes a problem. We don't yet know
714          * whether the next record we are going to receive is an unencrypted
715          * alert, or an encrypted handshake message. We're going to need
716          * something clever in the record layer for this.
717          */
718         if (SSL_IS_TLS13(s)) {
719             if (!s->method->ssl3_enc->setup_key_block(s)
720                 || !s->method->ssl3_enc->change_cipher_state(s,
721                         SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_SERVER_WRITE)
722                 || !s->method->ssl3_enc->change_cipher_state(s,
723                         SSL3_CC_HANDSHAKE |SSL3_CHANGE_CIPHER_SERVER_READ))
724             return WORK_ERROR;
725         }
726         break;
727
728     case TLS_ST_SW_CHANGE:
729 #ifndef OPENSSL_NO_SCTP
730         if (SSL_IS_DTLS(s) && !s->hit) {
731             /*
732              * Change to new shared key of SCTP-Auth, will be ignored if
733              * no SCTP used.
734              */
735             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
736                      0, NULL);
737         }
738 #endif
739         if (!s->method->ssl3_enc->change_cipher_state(s,
740                                                       SSL3_CHANGE_CIPHER_SERVER_WRITE))
741         {
742             ossl_statem_set_error(s);
743             return WORK_ERROR;
744         }
745
746         if (SSL_IS_DTLS(s))
747             dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
748         break;
749
750     case TLS_ST_SW_SRVR_DONE:
751         if (statem_flush(s) != 1)
752             return WORK_MORE_A;
753         break;
754
755     case TLS_ST_SW_FINISHED:
756         if (statem_flush(s) != 1)
757             return WORK_MORE_A;
758 #ifndef OPENSSL_NO_SCTP
759         if (SSL_IS_DTLS(s) && s->hit) {
760             /*
761              * Change to new shared key of SCTP-Auth, will be ignored if
762              * no SCTP used.
763              */
764             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
765                      0, NULL);
766         }
767 #endif
768         if (SSL_IS_TLS13(s)) {
769             if (!s->method->ssl3_enc->generate_master_secret(s,
770                         s->session->master_key, s->handshake_secret, 0,
771                         &s->session->master_key_length)
772                 || !s->method->ssl3_enc->change_cipher_state(s,
773                         SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_WRITE))
774             return WORK_ERROR;
775         }
776         break;
777     }
778
779     return WORK_FINISHED_CONTINUE;
780 }
781
782 /*
783  * Get the message construction function and message type for sending from the
784  * server
785  *
786  * Valid return values are:
787  *   1: Success
788  *   0: Error
789  */
790 int ossl_statem_server_construct_message(SSL *s, WPACKET *pkt,
791                                          confunc_f *confunc, int *mt)
792 {
793     OSSL_STATEM *st = &s->statem;
794
795     switch (st->hand_state) {
796     default:
797         /* Shouldn't happen */
798         return 0;
799
800     case TLS_ST_SW_CHANGE:
801         if (SSL_IS_DTLS(s))
802             *confunc = dtls_construct_change_cipher_spec;
803         else
804             *confunc = tls_construct_change_cipher_spec;
805         *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
806         break;
807
808     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
809         *confunc = dtls_construct_hello_verify_request;
810         *mt = DTLS1_MT_HELLO_VERIFY_REQUEST;
811         break;
812
813     case TLS_ST_SW_HELLO_REQ:
814         /* No construction function needed */
815         *confunc = NULL;
816         *mt = SSL3_MT_HELLO_REQUEST;
817         break;
818
819     case TLS_ST_SW_SRVR_HELLO:
820         *confunc = tls_construct_server_hello;
821         *mt = SSL3_MT_SERVER_HELLO;
822         break;
823
824     case TLS_ST_SW_CERT:
825         *confunc = tls_construct_server_certificate;
826         *mt = SSL3_MT_CERTIFICATE;
827         break;
828
829     case TLS_ST_SW_KEY_EXCH:
830         *confunc = tls_construct_server_key_exchange;
831         *mt = SSL3_MT_SERVER_KEY_EXCHANGE;
832         break;
833
834     case TLS_ST_SW_CERT_REQ:
835         *confunc = tls_construct_certificate_request;
836         *mt = SSL3_MT_CERTIFICATE_REQUEST;
837         break;
838
839     case TLS_ST_SW_SRVR_DONE:
840         *confunc = tls_construct_server_done;
841         *mt = SSL3_MT_SERVER_DONE;
842         break;
843
844     case TLS_ST_SW_SESSION_TICKET:
845         *confunc = tls_construct_new_session_ticket;
846         *mt = SSL3_MT_NEWSESSION_TICKET;
847         break;
848
849     case TLS_ST_SW_CERT_STATUS:
850         *confunc = tls_construct_cert_status;
851         *mt = SSL3_MT_CERTIFICATE_STATUS;
852         break;
853
854     case TLS_ST_SW_FINISHED:
855         *confunc = tls_construct_finished;
856         *mt = SSL3_MT_FINISHED;
857         break;
858     }
859
860     return 1;
861 }
862
863 /*
864  * Maximum size (excluding the Handshake header) of a ClientHello message,
865  * calculated as follows:
866  *
867  *  2 + # client_version
868  *  32 + # only valid length for random
869  *  1 + # length of session_id
870  *  32 + # maximum size for session_id
871  *  2 + # length of cipher suites
872  *  2^16-2 + # maximum length of cipher suites array
873  *  1 + # length of compression_methods
874  *  2^8-1 + # maximum length of compression methods
875  *  2 + # length of extensions
876  *  2^16-1 # maximum length of extensions
877  */
878 #define CLIENT_HELLO_MAX_LENGTH         131396
879
880 #define CLIENT_KEY_EXCH_MAX_LENGTH      2048
881 #define NEXT_PROTO_MAX_LENGTH           514
882
883 /*
884  * Returns the maximum allowed length for the current message that we are
885  * reading. Excludes the message header.
886  */
887 size_t ossl_statem_server_max_message_size(SSL *s)
888 {
889     OSSL_STATEM *st = &s->statem;
890
891     switch (st->hand_state) {
892     default:
893         /* Shouldn't happen */
894         return 0;
895
896     case TLS_ST_SR_CLNT_HELLO:
897         return CLIENT_HELLO_MAX_LENGTH;
898
899     case TLS_ST_SR_CERT:
900         return s->max_cert_list;
901
902     case TLS_ST_SR_KEY_EXCH:
903         return CLIENT_KEY_EXCH_MAX_LENGTH;
904
905     case TLS_ST_SR_CERT_VRFY:
906         return SSL3_RT_MAX_PLAIN_LENGTH;
907
908 #ifndef OPENSSL_NO_NEXTPROTONEG
909     case TLS_ST_SR_NEXT_PROTO:
910         return NEXT_PROTO_MAX_LENGTH;
911 #endif
912
913     case TLS_ST_SR_CHANGE:
914         return CCS_MAX_LENGTH;
915
916     case TLS_ST_SR_FINISHED:
917         return FINISHED_MAX_LENGTH;
918     }
919 }
920
921 /*
922  * Process a message that the server has received from the client.
923  */
924 MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL *s, PACKET *pkt)
925 {
926     OSSL_STATEM *st = &s->statem;
927
928     switch (st->hand_state) {
929     default:
930         /* Shouldn't happen */
931         return MSG_PROCESS_ERROR;
932
933     case TLS_ST_SR_CLNT_HELLO:
934         return tls_process_client_hello(s, pkt);
935
936     case TLS_ST_SR_CERT:
937         return tls_process_client_certificate(s, pkt);
938
939     case TLS_ST_SR_KEY_EXCH:
940         return tls_process_client_key_exchange(s, pkt);
941
942     case TLS_ST_SR_CERT_VRFY:
943         return tls_process_cert_verify(s, pkt);
944
945 #ifndef OPENSSL_NO_NEXTPROTONEG
946     case TLS_ST_SR_NEXT_PROTO:
947         return tls_process_next_proto(s, pkt);
948 #endif
949
950     case TLS_ST_SR_CHANGE:
951         return tls_process_change_cipher_spec(s, pkt);
952
953     case TLS_ST_SR_FINISHED:
954         return tls_process_finished(s, pkt);
955     }
956 }
957
958 /*
959  * Perform any further processing required following the receipt of a message
960  * from the client
961  */
962 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst)
963 {
964     OSSL_STATEM *st = &s->statem;
965
966     switch (st->hand_state) {
967     default:
968         /* Shouldn't happen */
969         return WORK_ERROR;
970
971     case TLS_ST_SR_CLNT_HELLO:
972         return tls_post_process_client_hello(s, wst);
973
974     case TLS_ST_SR_KEY_EXCH:
975         return tls_post_process_client_key_exchange(s, wst);
976
977     case TLS_ST_SR_CERT_VRFY:
978 #ifndef OPENSSL_NO_SCTP
979         if (                    /* Is this SCTP? */
980                BIO_dgram_is_sctp(SSL_get_wbio(s))
981                /* Are we renegotiating? */
982                && s->renegotiate && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
983             s->s3->in_read_app_data = 2;
984             s->rwstate = SSL_READING;
985             BIO_clear_retry_flags(SSL_get_rbio(s));
986             BIO_set_retry_read(SSL_get_rbio(s));
987             ossl_statem_set_sctp_read_sock(s, 1);
988             return WORK_MORE_A;
989         } else {
990             ossl_statem_set_sctp_read_sock(s, 0);
991         }
992 #endif
993         return WORK_FINISHED_CONTINUE;
994     }
995     return WORK_FINISHED_CONTINUE;
996 }
997
998 #ifndef OPENSSL_NO_SRP
999 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
1000 {
1001     int ret = SSL_ERROR_NONE;
1002
1003     *al = SSL_AD_UNRECOGNIZED_NAME;
1004
1005     if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
1006         (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
1007         if (s->srp_ctx.login == NULL) {
1008             /*
1009              * RFC 5054 says SHOULD reject, we do so if There is no srp
1010              * login name
1011              */
1012             ret = SSL3_AL_FATAL;
1013             *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
1014         } else {
1015             ret = SSL_srp_server_param_with_username(s, al);
1016         }
1017     }
1018     return ret;
1019 }
1020 #endif
1021
1022 int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
1023                                   size_t cookie_len)
1024 {
1025     /* Always use DTLS 1.0 version: see RFC 6347 */
1026     if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION)
1027             || !WPACKET_sub_memcpy_u8(pkt, cookie, cookie_len))
1028         return 0;
1029
1030     return 1;
1031 }
1032
1033 int dtls_construct_hello_verify_request(SSL *s, WPACKET *pkt)
1034 {
1035     unsigned int cookie_leni;
1036     if (s->ctx->app_gen_cookie_cb == NULL ||
1037         s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
1038                                   &cookie_leni) == 0 ||
1039         cookie_leni > 255) {
1040         SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST,
1041                SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
1042         return 0;
1043     }
1044     s->d1->cookie_len = cookie_leni;
1045
1046     if (!dtls_raw_hello_verify_request(pkt, s->d1->cookie,
1047                                               s->d1->cookie_len)) {
1048         SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST, ERR_R_INTERNAL_ERROR);
1049         return 0;
1050     }
1051
1052     return 1;
1053 }
1054
1055 MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
1056 {
1057     int i, al = SSL_AD_INTERNAL_ERROR;
1058     unsigned int j;
1059     size_t loop;
1060     unsigned long id;
1061     const SSL_CIPHER *c;
1062 #ifndef OPENSSL_NO_COMP
1063     SSL_COMP *comp = NULL;
1064 #endif
1065     STACK_OF(SSL_CIPHER) *ciphers = NULL;
1066     int protverr;
1067     /* |cookie| will only be initialized for DTLS. */
1068     PACKET session_id, compression, extensions, cookie;
1069     static const unsigned char null_compression = 0;
1070     CLIENTHELLO_MSG clienthello;
1071
1072     /*
1073      * First, parse the raw ClientHello data into the CLIENTHELLO_MSG structure.
1074      */
1075     memset(&clienthello, 0, sizeof(clienthello));
1076     clienthello.isv2 = RECORD_LAYER_is_sslv2_record(&s->rlayer);
1077     PACKET_null_init(&cookie);
1078
1079     if (clienthello.isv2) {
1080         unsigned int mt;
1081
1082         /*-
1083          * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
1084          * header is sent directly on the wire, not wrapped as a TLS
1085          * record. Our record layer just processes the message length and passes
1086          * the rest right through. Its format is:
1087          * Byte  Content
1088          * 0-1   msg_length - decoded by the record layer
1089          * 2     msg_type - s->init_msg points here
1090          * 3-4   version
1091          * 5-6   cipher_spec_length
1092          * 7-8   session_id_length
1093          * 9-10  challenge_length
1094          * ...   ...
1095          */
1096
1097         if (!PACKET_get_1(pkt, &mt)
1098             || mt != SSL2_MT_CLIENT_HELLO) {
1099             /*
1100              * Should never happen. We should have tested this in the record
1101              * layer in order to have determined that this is a SSLv2 record
1102              * in the first place
1103              */
1104             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1105             goto err;
1106         }
1107     }
1108
1109     if (!PACKET_get_net_2(pkt, &clienthello.legacy_version)) {
1110         al = SSL_AD_DECODE_ERROR;
1111         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1112         goto err;
1113     }
1114
1115     /* Parse the message and load client random. */
1116     if (clienthello.isv2) {
1117         /*
1118          * Handle an SSLv2 backwards compatible ClientHello
1119          * Note, this is only for SSLv3+ using the backward compatible format.
1120          * Real SSLv2 is not supported, and is rejected below.
1121          */
1122         unsigned int ciphersuite_len, session_id_len, challenge_len;
1123         PACKET challenge;
1124
1125         if (!PACKET_get_net_2(pkt, &ciphersuite_len)
1126             || !PACKET_get_net_2(pkt, &session_id_len)
1127             || !PACKET_get_net_2(pkt, &challenge_len)) {
1128             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1129                    SSL_R_RECORD_LENGTH_MISMATCH);
1130             al = SSL_AD_DECODE_ERROR;
1131             goto f_err;
1132         }
1133
1134         if (session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
1135             al = SSL_AD_DECODE_ERROR;
1136             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1137             goto f_err;
1138         }
1139
1140         if (!PACKET_get_sub_packet(pkt, &clienthello.ciphersuites,
1141                                    ciphersuite_len)
1142             || !PACKET_copy_bytes(pkt, clienthello.session_id, session_id_len)
1143             || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
1144             /* No extensions. */
1145             || PACKET_remaining(pkt) != 0) {
1146             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1147                    SSL_R_RECORD_LENGTH_MISMATCH);
1148             al = SSL_AD_DECODE_ERROR;
1149             goto f_err;
1150         }
1151         clienthello.session_id_len = session_id_len;
1152
1153         /* Load the client random and compression list. We use SSL3_RANDOM_SIZE
1154          * here rather than sizeof(clienthello.random) because that is the limit
1155          * for SSLv3 and it is fixed. It won't change even if
1156          * sizeof(clienthello.random) does.
1157          */
1158         challenge_len = challenge_len > SSL3_RANDOM_SIZE
1159                         ? SSL3_RANDOM_SIZE : challenge_len;
1160         memset(clienthello.random, 0, SSL3_RANDOM_SIZE);
1161         if (!PACKET_copy_bytes(&challenge,
1162                                clienthello.random + SSL3_RANDOM_SIZE -
1163                                challenge_len, challenge_len)
1164             /* Advertise only null compression. */
1165             || !PACKET_buf_init(&compression, &null_compression, 1)) {
1166             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1167             al = SSL_AD_INTERNAL_ERROR;
1168             goto f_err;
1169         }
1170
1171         PACKET_null_init(&clienthello.extensions);
1172     } else {
1173         /* Regular ClientHello. */
1174         if (!PACKET_copy_bytes(pkt, clienthello.random, SSL3_RANDOM_SIZE)
1175             || !PACKET_get_length_prefixed_1(pkt, &session_id)
1176             || !PACKET_copy_all(&session_id, clienthello.session_id,
1177                     SSL_MAX_SSL_SESSION_ID_LENGTH,
1178                     &clienthello.session_id_len)) {
1179             al = SSL_AD_DECODE_ERROR;
1180             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1181             goto f_err;
1182         }
1183
1184         if (SSL_IS_DTLS(s)) {
1185             if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
1186                 al = SSL_AD_DECODE_ERROR;
1187                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1188                 goto f_err;
1189             }
1190             if (!PACKET_copy_all(&cookie, clienthello.dtls_cookie,
1191                                  DTLS1_COOKIE_LENGTH,
1192                                  &clienthello.dtls_cookie_len)) {
1193                 al = SSL_AD_DECODE_ERROR;
1194                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1195                 goto f_err;
1196             }
1197             /*
1198              * If we require cookies and this ClientHello doesn't contain one,
1199              * just return since we do not want to allocate any memory yet.
1200              * So check cookie length...
1201              */
1202             if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1203                 if (clienthello.dtls_cookie_len == 0)
1204                     return 1;
1205             }
1206         }
1207
1208         if (!PACKET_get_length_prefixed_2(pkt, &clienthello.ciphersuites)) {
1209             al = SSL_AD_DECODE_ERROR;
1210             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1211             goto f_err;
1212         }
1213
1214         if (!PACKET_get_length_prefixed_1(pkt, &compression)) {
1215             al = SSL_AD_DECODE_ERROR;
1216             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1217             goto f_err;
1218         }
1219
1220         /* Could be empty. */
1221         if (PACKET_remaining(pkt) == 0) {
1222             PACKET_null_init(&clienthello.extensions);
1223         } else {
1224             if (!PACKET_get_length_prefixed_2(pkt, &clienthello.extensions)) {
1225                 al = SSL_AD_DECODE_ERROR;
1226                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1227                 goto f_err;
1228             }
1229         }
1230     }
1231
1232     if (!PACKET_copy_all(&compression, clienthello.compressions,
1233                          MAX_COMPRESSIONS_SIZE,
1234                          &clienthello.compressions_len)) {
1235         al = SSL_AD_DECODE_ERROR;
1236         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1237         goto f_err;
1238     }
1239
1240     /* Preserve the raw extensions PACKET for later use */
1241     extensions = clienthello.extensions;
1242     if (!tls_collect_extensions(&extensions, &clienthello.pre_proc_exts,
1243                                   &clienthello.num_extensions, &al)) {
1244         /* SSLerr already been called */
1245         goto f_err;
1246     }
1247
1248     /* Finished parsing the ClientHello, now we can start processing it */
1249
1250     /* Set up the client_random */
1251     memcpy(s->s3->client_random, clienthello.random, SSL3_RANDOM_SIZE);
1252
1253     /* Choose the version */
1254
1255     if (clienthello.isv2) {
1256         if (clienthello.legacy_version == SSL2_VERSION
1257                 || (clienthello.legacy_version & 0xff00)
1258                    != (SSL3_VERSION_MAJOR << 8)) {
1259             /*
1260              * This is real SSLv2 or something complete unknown. We don't
1261              * support it.
1262              */
1263             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
1264             goto err;
1265         }
1266         /* SSLv3/TLS */
1267         s->client_version = clienthello.legacy_version;
1268     }
1269     /*
1270      * Do SSL/TLS version negotiation if applicable. For DTLS we just check
1271      * versions are potentially compatible. Version negotiation comes later.
1272      */
1273     if (!SSL_IS_DTLS(s)) {
1274         protverr = ssl_choose_server_version(s, &clienthello);
1275     } else if (s->method->version != DTLS_ANY_VERSION &&
1276                DTLS_VERSION_LT((int)clienthello.legacy_version, s->version)) {
1277         protverr = SSL_R_VERSION_TOO_LOW;
1278     } else {
1279         protverr = 0;
1280     }
1281
1282     if (protverr) {
1283         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, protverr);
1284         if ((!s->enc_write_ctx && !s->write_hash)) {
1285             /* like ssl3_get_record, send alert using remote version number */
1286             s->version = s->client_version = clienthello.legacy_version;
1287         }
1288         al = SSL_AD_PROTOCOL_VERSION;
1289         goto f_err;
1290     }
1291
1292     if (SSL_IS_DTLS(s)) {
1293         /* Empty cookie was already handled above by returning early. */
1294         if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1295             if (s->ctx->app_verify_cookie_cb != NULL) {
1296                 if (s->ctx->app_verify_cookie_cb(s, clienthello.dtls_cookie,
1297                         clienthello.dtls_cookie_len) == 0) {
1298                     al = SSL_AD_HANDSHAKE_FAILURE;
1299                     SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1300                            SSL_R_COOKIE_MISMATCH);
1301                     goto f_err;
1302                     /* else cookie verification succeeded */
1303                 }
1304                 /* default verification */
1305             } else if (s->d1->cookie_len != clienthello.dtls_cookie_len
1306                     || memcmp(clienthello.dtls_cookie, s->d1->cookie,
1307                               s->d1->cookie_len) != 0) {
1308                 al = SSL_AD_HANDSHAKE_FAILURE;
1309                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1310                 goto f_err;
1311             }
1312             s->d1->cookie_verified = 1;
1313         }
1314         if (s->method->version == DTLS_ANY_VERSION) {
1315             protverr = ssl_choose_server_version(s, &clienthello);
1316             if (protverr != 0) {
1317                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, protverr);
1318                 s->version = s->client_version;
1319                 al = SSL_AD_PROTOCOL_VERSION;
1320                 goto f_err;
1321             }
1322         }
1323     }
1324
1325     s->hit = 0;
1326
1327     /* We need to do this before getting the session */
1328     if (!tls_check_client_ems_support(s, &clienthello)) {
1329         /* Only fails if the extension is malformed */
1330         al = SSL_AD_DECODE_ERROR;
1331         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1332         goto f_err;
1333     }
1334
1335     /*
1336      * We don't allow resumption in a backwards compatible ClientHello.
1337      * TODO(openssl-team): in TLS1.1+, session_id MUST be empty.
1338      *
1339      * Versions before 0.9.7 always allow clients to resume sessions in
1340      * renegotiation. 0.9.7 and later allow this by default, but optionally
1341      * ignore resumption requests with flag
1342      * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1343      * than a change to default behavior so that applications relying on
1344      * this for security won't even compile against older library versions).
1345      * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1346      * request renegotiation but not a new session (s->new_session remains
1347      * unset): for servers, this essentially just means that the
1348      * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
1349      * ignored.
1350      */
1351     if (clienthello.isv2 ||
1352         (s->new_session &&
1353          (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1354         if (!ssl_get_new_session(s, 1))
1355             goto err;
1356     } else {
1357         i = ssl_get_prev_session(s, &clienthello);
1358         /*
1359          * Only resume if the session's version matches the negotiated
1360          * version.
1361          * RFC 5246 does not provide much useful advice on resumption
1362          * with a different protocol version. It doesn't forbid it but
1363          * the sanity of such behaviour would be questionable.
1364          * In practice, clients do not accept a version mismatch and
1365          * will abort the handshake with an error.
1366          */
1367         if (i == 1 && s->version == s->session->ssl_version) {
1368             /* previous session */
1369             s->hit = 1;
1370         } else if (i == -1) {
1371             goto err;
1372         } else {
1373             /* i == 0 */
1374             if (!ssl_get_new_session(s, 1))
1375                 goto err;
1376         }
1377     }
1378
1379     if (ssl_bytes_to_cipher_list(s, &clienthello.ciphersuites, &ciphers,
1380                                  clienthello.isv2, &al) == NULL) {
1381         goto f_err;
1382     }
1383
1384     /* If it is a hit, check that the cipher is in the list */
1385     if (s->hit) {
1386         j = 0;
1387         id = s->session->cipher->id;
1388
1389 #ifdef CIPHER_DEBUG
1390         fprintf(stderr, "client sent %d ciphers\n", sk_SSL_CIPHER_num(ciphers));
1391 #endif
1392         for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1393             c = sk_SSL_CIPHER_value(ciphers, i);
1394 #ifdef CIPHER_DEBUG
1395             fprintf(stderr, "client [%2d of %2d]:%s\n",
1396                     i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1397 #endif
1398             if (c->id == id) {
1399                 j = 1;
1400                 break;
1401             }
1402         }
1403         if (j == 0) {
1404             /*
1405              * we need to have the cipher in the cipher list if we are asked
1406              * to reuse it
1407              */
1408             al = SSL_AD_ILLEGAL_PARAMETER;
1409             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1410                    SSL_R_REQUIRED_CIPHER_MISSING);
1411             goto f_err;
1412         }
1413     }
1414
1415     for (loop = 0; loop < clienthello.compressions_len; loop++) {
1416         if (clienthello.compressions[loop] == 0)
1417             break;
1418     }
1419
1420     if (loop >= clienthello.compressions_len) {
1421         /* no compress */
1422         al = SSL_AD_DECODE_ERROR;
1423         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
1424         goto f_err;
1425     }
1426
1427     /* TLS extensions */
1428     if (!ssl_parse_clienthello_tlsext(s, &clienthello)) {
1429         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
1430         goto err;
1431     }
1432
1433     /* Check we've got a key_share for TLSv1.3 */
1434     if (SSL_IS_TLS13(s) && s->s3->peer_tmp == NULL && !s->hit) {
1435         /* No suitable share */
1436         /* TODO(TLS1.3): Send a HelloRetryRequest */
1437         al = SSL_AD_HANDSHAKE_FAILURE;
1438         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_SUITABLE_KEY_SHARE);
1439         goto f_err;
1440     }
1441
1442     /*
1443      * Check if we want to use external pre-shared secret for this handshake
1444      * for not reused session only. We need to generate server_random before
1445      * calling tls_session_secret_cb in order to allow SessionTicket
1446      * processing to use it in key derivation.
1447      */
1448     {
1449         unsigned char *pos;
1450         pos = s->s3->server_random;
1451         if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
1452             goto f_err;
1453         }
1454     }
1455
1456     if (!s->hit && s->version >= TLS1_VERSION && s->tls_session_secret_cb) {
1457         const SSL_CIPHER *pref_cipher = NULL;
1458         /*
1459          * s->session->master_key_length is a size_t, but this is an int for
1460          * backwards compat reasons
1461          */
1462         int master_key_length;
1463
1464         master_key_length = sizeof(s->session->master_key);
1465         if (s->tls_session_secret_cb(s, s->session->master_key,
1466                                      &master_key_length, ciphers,
1467                                      &pref_cipher,
1468                                      s->tls_session_secret_cb_arg)
1469                 && master_key_length > 0) {
1470             s->session->master_key_length = master_key_length;
1471             s->hit = 1;
1472             s->session->ciphers = ciphers;
1473             s->session->verify_result = X509_V_OK;
1474
1475             ciphers = NULL;
1476
1477             /* check if some cipher was preferred by call back */
1478             pref_cipher =
1479                 pref_cipher ? pref_cipher : ssl3_choose_cipher(s,
1480                                                                s->
1481                                                                session->ciphers,
1482                                                                SSL_get_ciphers
1483                                                                (s));
1484             if (pref_cipher == NULL) {
1485                 al = SSL_AD_HANDSHAKE_FAILURE;
1486                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1487                 goto f_err;
1488             }
1489
1490             s->session->cipher = pref_cipher;
1491             sk_SSL_CIPHER_free(s->cipher_list);
1492             s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1493             sk_SSL_CIPHER_free(s->cipher_list_by_id);
1494             s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1495         }
1496     }
1497
1498     /*
1499      * Worst case, we will use the NULL compression, but if we have other
1500      * options, we will now look for them.  We have complen-1 compression
1501      * algorithms from the client, starting at q.
1502      */
1503     s->s3->tmp.new_compression = NULL;
1504 #ifndef OPENSSL_NO_COMP
1505     /* This only happens if we have a cache hit */
1506     if (s->session->compress_meth != 0) {
1507         int m, comp_id = s->session->compress_meth;
1508         unsigned int k;
1509         /* Perform sanity checks on resumed compression algorithm */
1510         /* Can't disable compression */
1511         if (!ssl_allow_compression(s)) {
1512             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1513                    SSL_R_INCONSISTENT_COMPRESSION);
1514             goto f_err;
1515         }
1516         /* Look for resumed compression method */
1517         for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
1518             comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1519             if (comp_id == comp->id) {
1520                 s->s3->tmp.new_compression = comp;
1521                 break;
1522             }
1523         }
1524         if (s->s3->tmp.new_compression == NULL) {
1525             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1526                    SSL_R_INVALID_COMPRESSION_ALGORITHM);
1527             goto f_err;
1528         }
1529         /* Look for resumed method in compression list */
1530         for (k = 0; k < clienthello.compressions_len; k++) {
1531             if (clienthello.compressions[k] == comp_id)
1532                 break;
1533         }
1534         if (k >= clienthello.compressions_len) {
1535             al = SSL_AD_ILLEGAL_PARAMETER;
1536             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
1537                    SSL_R_REQUIRED_COMPRESSION_ALGORITHM_MISSING);
1538             goto f_err;
1539         }
1540     } else if (s->hit)
1541         comp = NULL;
1542     else if (ssl_allow_compression(s) && s->ctx->comp_methods) {
1543         /* See if we have a match */
1544         int m, nn, v, done = 0;
1545         unsigned int o;
1546
1547         nn = sk_SSL_COMP_num(s->ctx->comp_methods);
1548         for (m = 0; m < nn; m++) {
1549             comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1550             v = comp->id;
1551             for (o = 0; o < clienthello.compressions_len; o++) {
1552                 if (v == clienthello.compressions[o]) {
1553                     done = 1;
1554                     break;
1555                 }
1556             }
1557             if (done)
1558                 break;
1559         }
1560         if (done)
1561             s->s3->tmp.new_compression = comp;
1562         else
1563             comp = NULL;
1564     }
1565 #else
1566     /*
1567      * If compression is disabled we'd better not try to resume a session
1568      * using compression.
1569      */
1570     if (s->session->compress_meth != 0) {
1571         SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1572         goto f_err;
1573     }
1574 #endif
1575
1576     /*
1577      * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
1578      */
1579
1580     if (!s->hit) {
1581 #ifdef OPENSSL_NO_COMP
1582         s->session->compress_meth = 0;
1583 #else
1584         s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
1585 #endif
1586         sk_SSL_CIPHER_free(s->session->ciphers);
1587         s->session->ciphers = ciphers;
1588         if (ciphers == NULL) {
1589             al = SSL_AD_INTERNAL_ERROR;
1590             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1591             goto f_err;
1592         }
1593         ciphers = NULL;
1594         if (!tls1_set_server_sigalgs(s)) {
1595             SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1596             goto err;
1597         }
1598     }
1599
1600     sk_SSL_CIPHER_free(ciphers);
1601     OPENSSL_free(clienthello.pre_proc_exts);
1602     return MSG_PROCESS_CONTINUE_PROCESSING;
1603  f_err:
1604     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1605  err:
1606     ossl_statem_set_error(s);
1607
1608     sk_SSL_CIPHER_free(ciphers);
1609     OPENSSL_free(clienthello.pre_proc_exts);
1610
1611     return MSG_PROCESS_ERROR;
1612 }
1613
1614 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst)
1615 {
1616     int al = SSL_AD_HANDSHAKE_FAILURE;
1617     const SSL_CIPHER *cipher;
1618
1619     if (wst == WORK_MORE_A) {
1620         if (!s->hit) {
1621             /* Let cert callback update server certificates if required */
1622             if (s->cert->cert_cb) {
1623                 int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
1624                 if (rv == 0) {
1625                     al = SSL_AD_INTERNAL_ERROR;
1626                     SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1627                            SSL_R_CERT_CB_ERROR);
1628                     goto f_err;
1629                 }
1630                 if (rv < 0) {
1631                     s->rwstate = SSL_X509_LOOKUP;
1632                     return WORK_MORE_A;
1633                 }
1634                 s->rwstate = SSL_NOTHING;
1635             }
1636             cipher =
1637                 ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1638
1639             if (cipher == NULL) {
1640                 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1641                        SSL_R_NO_SHARED_CIPHER);
1642                 goto f_err;
1643             }
1644             s->s3->tmp.new_cipher = cipher;
1645             /* check whether we should disable session resumption */
1646             if (s->not_resumable_session_cb != NULL)
1647                 s->session->not_resumable = s->not_resumable_session_cb(s,
1648                                                                         ((cipher->algorithm_mkey & (SSL_kDHE | SSL_kECDHE)) != 0));
1649             if (s->session->not_resumable)
1650                 /* do not send a session ticket */
1651                 s->tlsext_ticket_expected = 0;
1652         } else {
1653             /* Session-id reuse */
1654             s->s3->tmp.new_cipher = s->session->cipher;
1655         }
1656
1657         if (!(s->verify_mode & SSL_VERIFY_PEER)) {
1658             if (!ssl3_digest_cached_records(s, 0)) {
1659                 al = SSL_AD_INTERNAL_ERROR;
1660                 goto f_err;
1661             }
1662         }
1663
1664         /*-
1665          * we now have the following setup.
1666          * client_random
1667          * cipher_list          - our preferred list of ciphers
1668          * ciphers              - the clients preferred list of ciphers
1669          * compression          - basically ignored right now
1670          * ssl version is set   - sslv3
1671          * s->session           - The ssl session has been setup.
1672          * s->hit               - session reuse flag
1673          * s->s3->tmp.new_cipher- the new cipher to use.
1674          */
1675
1676         /* Handles TLS extensions that we couldn't check earlier */
1677         if (s->version >= SSL3_VERSION) {
1678             if (!ssl_check_clienthello_tlsext_late(s, &al)) {
1679                 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1680                        SSL_R_CLIENTHELLO_TLSEXT);
1681                 goto f_err;
1682             }
1683         }
1684
1685         wst = WORK_MORE_B;
1686     }
1687 #ifndef OPENSSL_NO_SRP
1688     if (wst == WORK_MORE_B) {
1689         int ret;
1690         if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
1691             /*
1692              * callback indicates further work to be done
1693              */
1694             s->rwstate = SSL_X509_LOOKUP;
1695             return WORK_MORE_B;
1696         }
1697         if (ret != SSL_ERROR_NONE) {
1698             /*
1699              * This is not really an error but the only means to for
1700              * a client to detect whether srp is supported.
1701              */
1702             if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
1703                 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1704                        SSL_R_CLIENTHELLO_TLSEXT);
1705             else
1706                 SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
1707                        SSL_R_PSK_IDENTITY_NOT_FOUND);
1708             goto f_err;
1709         }
1710     }
1711 #endif
1712     s->renegotiate = 2;
1713
1714     return WORK_FINISHED_STOP;
1715  f_err:
1716     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1717     ossl_statem_set_error(s);
1718     return WORK_ERROR;
1719 }
1720
1721 int tls_construct_server_hello(SSL *s, WPACKET *pkt)
1722 {
1723     int compm, al = SSL_AD_INTERNAL_ERROR;
1724     size_t sl, len;
1725     int version;
1726
1727     /* TODO(TLS1.3): Remove the DRAFT conditional before release */
1728     version = SSL_IS_TLS13(s) ? TLS1_3_VERSION_DRAFT : s->version;
1729     if (!WPACKET_put_bytes_u16(pkt, version)
1730                /*
1731                 * Random stuff. Filling of the server_random takes place in
1732                 * tls_process_client_hello()
1733                 */
1734             || !WPACKET_memcpy(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1735         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1736         goto err;
1737     }
1738
1739     /*-
1740      * There are several cases for the session ID to send
1741      * back in the server hello:
1742      * - For session reuse from the session cache,
1743      *   we send back the old session ID.
1744      * - If stateless session reuse (using a session ticket)
1745      *   is successful, we send back the client's "session ID"
1746      *   (which doesn't actually identify the session).
1747      * - If it is a new session, we send back the new
1748      *   session ID.
1749      * - However, if we want the new session to be single-use,
1750      *   we send back a 0-length session ID.
1751      * s->hit is non-zero in either case of session reuse,
1752      * so the following won't overwrite an ID that we're supposed
1753      * to send back.
1754      */
1755     if (s->session->not_resumable ||
1756         (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1757          && !s->hit))
1758         s->session->session_id_length = 0;
1759
1760     sl = s->session->session_id_length;
1761     if (sl > sizeof(s->session->session_id)) {
1762         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1763         goto err;
1764     }
1765
1766     /* set up the compression method */
1767 #ifdef OPENSSL_NO_COMP
1768     compm = 0;
1769 #else
1770     if (s->s3->tmp.new_compression == NULL)
1771         compm = 0;
1772     else
1773         compm = s->s3->tmp.new_compression->id;
1774 #endif
1775
1776     if ((!SSL_IS_TLS13(s)
1777                 && !WPACKET_sub_memcpy_u8(pkt, s->session->session_id, sl))
1778             || !s->method->put_cipher_by_char(s->s3->tmp.new_cipher, pkt, &len)
1779             || (!SSL_IS_TLS13(s)
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 }