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