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