2f070c0ac079720731ad727286d081a3c583888d
[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, WPACKET *pkt)
623 {
624     OSSL_STATEM *st = &s->statem;
625     int (*confunc) (SSL *s, WPACKET *pkt) = NULL;
626     int mt;
627
628     switch (st->hand_state) {
629     default:
630         /* Shouldn't happen */
631         return 0;
632
633     case TLS_ST_SW_CHANGE:
634         if (SSL_IS_DTLS(s))
635             confunc = dtls_construct_change_cipher_spec;
636         else
637             confunc = tls_construct_change_cipher_spec;
638         mt = SSL3_MT_CHANGE_CIPHER_SPEC;
639         break;
640
641     case DTLS_ST_SW_HELLO_VERIFY_REQUEST:
642         confunc = dtls_construct_hello_verify_request;
643         mt = DTLS1_MT_HELLO_VERIFY_REQUEST;
644         break;
645
646     case TLS_ST_SW_HELLO_REQ:
647         /* No construction function needed */
648         mt = SSL3_MT_HELLO_REQUEST;
649         break;
650
651     case TLS_ST_SW_SRVR_HELLO:
652         confunc = tls_construct_server_hello;
653         mt = SSL3_MT_SERVER_HELLO;
654         break;
655
656     case TLS_ST_SW_CERT:
657         confunc = tls_construct_server_certificate;
658         mt = SSL3_MT_CERTIFICATE;
659         break;
660
661     case TLS_ST_SW_KEY_EXCH:
662         confunc = tls_construct_server_key_exchange;
663         mt = SSL3_MT_SERVER_KEY_EXCHANGE;
664         break;
665
666     case TLS_ST_SW_CERT_REQ:
667         confunc = tls_construct_certificate_request;
668         mt = SSL3_MT_CERTIFICATE_REQUEST;
669         break;
670
671     case TLS_ST_SW_SRVR_DONE:
672         confunc = tls_construct_server_done;
673         mt = SSL3_MT_SERVER_DONE;
674         break;
675
676     case TLS_ST_SW_SESSION_TICKET:
677         confunc = tls_construct_new_session_ticket;
678         mt = SSL3_MT_NEWSESSION_TICKET;
679         break;
680
681     case TLS_ST_SW_CERT_STATUS:
682         confunc = tls_construct_cert_status;
683         mt = SSL3_MT_CERTIFICATE_STATUS;
684         break;
685
686     case TLS_ST_SW_FINISHED:
687         confunc = tls_construct_finished;
688         mt = SSL3_MT_FINISHED;
689         break;
690     }
691
692     if (!ssl_set_handshake_header(s, pkt, mt)
693             || (confunc != NULL && !confunc(s, pkt))
694             || !ssl_close_construct_packet(s, pkt, mt)) {
695         SSLerr(SSL_F_OSSL_STATEM_SERVER_CONSTRUCT_MESSAGE,
696                ERR_R_INTERNAL_ERROR);
697         return 0;
698     }
699
700     return 1;
701 }
702
703 /*
704  * Maximum size (excluding the Handshake header) of a ClientHello message,
705  * calculated as follows:
706  *
707  *  2 + # client_version
708  *  32 + # only valid length for random
709  *  1 + # length of session_id
710  *  32 + # maximum size for session_id
711  *  2 + # length of cipher suites
712  *  2^16-2 + # maximum length of cipher suites array
713  *  1 + # length of compression_methods
714  *  2^8-1 + # maximum length of compression methods
715  *  2 + # length of extensions
716  *  2^16-1 # maximum length of extensions
717  */
718 #define CLIENT_HELLO_MAX_LENGTH         131396
719
720 #define CLIENT_KEY_EXCH_MAX_LENGTH      2048
721 #define NEXT_PROTO_MAX_LENGTH           514
722
723 /*
724  * Returns the maximum allowed length for the current message that we are
725  * reading. Excludes the message header.
726  */
727 unsigned long ossl_statem_server_max_message_size(SSL *s)
728 {
729     OSSL_STATEM *st = &s->statem;
730
731     switch (st->hand_state) {
732     default:
733         /* Shouldn't happen */
734         return 0;
735
736     case TLS_ST_SR_CLNT_HELLO:
737         return CLIENT_HELLO_MAX_LENGTH;
738
739     case TLS_ST_SR_CERT:
740         return s->max_cert_list;
741
742     case TLS_ST_SR_KEY_EXCH:
743         return CLIENT_KEY_EXCH_MAX_LENGTH;
744
745     case TLS_ST_SR_CERT_VRFY:
746         return SSL3_RT_MAX_PLAIN_LENGTH;
747
748 #ifndef OPENSSL_NO_NEXTPROTONEG
749     case TLS_ST_SR_NEXT_PROTO:
750         return NEXT_PROTO_MAX_LENGTH;
751 #endif
752
753     case TLS_ST_SR_CHANGE:
754         return CCS_MAX_LENGTH;
755
756     case TLS_ST_SR_FINISHED:
757         return FINISHED_MAX_LENGTH;
758     }
759 }
760
761 /*
762  * Process a message that the server has received from the client.
763  */
764 MSG_PROCESS_RETURN ossl_statem_server_process_message(SSL *s, PACKET *pkt)
765 {
766     OSSL_STATEM *st = &s->statem;
767
768     switch (st->hand_state) {
769     default:
770         /* Shouldn't happen */
771         return MSG_PROCESS_ERROR;
772
773     case TLS_ST_SR_CLNT_HELLO:
774         return tls_process_client_hello(s, pkt);
775
776     case TLS_ST_SR_CERT:
777         return tls_process_client_certificate(s, pkt);
778
779     case TLS_ST_SR_KEY_EXCH:
780         return tls_process_client_key_exchange(s, pkt);
781
782     case TLS_ST_SR_CERT_VRFY:
783         return tls_process_cert_verify(s, pkt);
784
785 #ifndef OPENSSL_NO_NEXTPROTONEG
786     case TLS_ST_SR_NEXT_PROTO:
787         return tls_process_next_proto(s, pkt);
788 #endif
789
790     case TLS_ST_SR_CHANGE:
791         return tls_process_change_cipher_spec(s, pkt);
792
793     case TLS_ST_SR_FINISHED:
794         return tls_process_finished(s, pkt);
795     }
796 }
797
798 /*
799  * Perform any further processing required following the receipt of a message
800  * from the client
801  */
802 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst)
803 {
804     OSSL_STATEM *st = &s->statem;
805
806     switch (st->hand_state) {
807     default:
808         /* Shouldn't happen */
809         return WORK_ERROR;
810
811     case TLS_ST_SR_CLNT_HELLO:
812         return tls_post_process_client_hello(s, wst);
813
814     case TLS_ST_SR_KEY_EXCH:
815         return tls_post_process_client_key_exchange(s, wst);
816
817     case TLS_ST_SR_CERT_VRFY:
818 #ifndef OPENSSL_NO_SCTP
819         if (                    /* Is this SCTP? */
820                BIO_dgram_is_sctp(SSL_get_wbio(s))
821                /* Are we renegotiating? */
822                && s->renegotiate && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
823             s->s3->in_read_app_data = 2;
824             s->rwstate = SSL_READING;
825             BIO_clear_retry_flags(SSL_get_rbio(s));
826             BIO_set_retry_read(SSL_get_rbio(s));
827             ossl_statem_set_sctp_read_sock(s, 1);
828             return WORK_MORE_A;
829         } else {
830             ossl_statem_set_sctp_read_sock(s, 0);
831         }
832 #endif
833         return WORK_FINISHED_CONTINUE;
834     }
835
836 }
837
838 #ifndef OPENSSL_NO_SRP
839 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
840 {
841     int ret = SSL_ERROR_NONE;
842
843     *al = SSL_AD_UNRECOGNIZED_NAME;
844
845     if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
846         (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
847         if (s->srp_ctx.login == NULL) {
848             /*
849              * RFC 5054 says SHOULD reject, we do so if There is no srp
850              * login name
851              */
852             ret = SSL3_AL_FATAL;
853             *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
854         } else {
855             ret = SSL_srp_server_param_with_username(s, al);
856         }
857     }
858     return ret;
859 }
860 #endif
861
862 int dtls_raw_hello_verify_request(WPACKET *pkt, unsigned char *cookie,
863                                   unsigned char cookie_len)
864 {
865     /* Always use DTLS 1.0 version: see RFC 6347 */
866     if (!WPACKET_put_bytes_u16(pkt, DTLS1_VERSION)
867             || !WPACKET_sub_memcpy_u8(pkt, cookie, cookie_len))
868         return 0;
869
870     return 1;
871 }
872
873 int dtls_construct_hello_verify_request(SSL *s, WPACKET *pkt)
874 {
875     if (s->ctx->app_gen_cookie_cb == NULL ||
876         s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
877                                   &(s->d1->cookie_len)) == 0 ||
878         s->d1->cookie_len > 255) {
879         SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST,
880                SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
881         return 0;
882     }
883
884     if (!dtls_raw_hello_verify_request(pkt, s->d1->cookie,
885                                               s->d1->cookie_len)) {
886         SSLerr(SSL_F_DTLS_CONSTRUCT_HELLO_VERIFY_REQUEST, ERR_R_INTERNAL_ERROR);
887         return 0;
888     }
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, WPACKET *pkt)
1493 {
1494     int sl, compm, al = SSL_AD_INTERNAL_ERROR;
1495     size_t len;
1496
1497     if (!WPACKET_put_bytes_u16(pkt, s->version)
1498                /*
1499                 * Random stuff. Filling of the server_random takes place in
1500                 * tls_process_client_hello()
1501                 */
1502             || !WPACKET_memcpy(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1503         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1504         goto err;
1505     }
1506
1507     /*-
1508      * There are several cases for the session ID to send
1509      * back in the server hello:
1510      * - For session reuse from the session cache,
1511      *   we send back the old session ID.
1512      * - If stateless session reuse (using a session ticket)
1513      *   is successful, we send back the client's "session ID"
1514      *   (which doesn't actually identify the session).
1515      * - If it is a new session, we send back the new
1516      *   session ID.
1517      * - However, if we want the new session to be single-use,
1518      *   we send back a 0-length session ID.
1519      * s->hit is non-zero in either case of session reuse,
1520      * so the following won't overwrite an ID that we're supposed
1521      * to send back.
1522      */
1523     if (s->session->not_resumable ||
1524         (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1525          && !s->hit))
1526         s->session->session_id_length = 0;
1527
1528     sl = s->session->session_id_length;
1529     if (sl > (int)sizeof(s->session->session_id)) {
1530         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1531         goto err;
1532     }
1533
1534     /* set up the compression method */
1535 #ifdef OPENSSL_NO_COMP
1536     compm = 0;
1537 #else
1538     if (s->s3->tmp.new_compression == NULL)
1539         compm = 0;
1540     else
1541         compm = s->s3->tmp.new_compression->id;
1542 #endif
1543
1544     if (!WPACKET_sub_memcpy_u8(pkt, s->session->session_id, sl)
1545             || !s->method->put_cipher_by_char(s->s3->tmp.new_cipher, pkt, &len)
1546             || !WPACKET_put_bytes_u8(pkt, compm)
1547             || !ssl_prepare_serverhello_tlsext(s)
1548             || !ssl_add_serverhello_tlsext(s, pkt, &al)) {
1549         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1550         goto err;
1551     }
1552
1553     return 1;
1554  err:
1555     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
1556     return 0;
1557 }
1558
1559 int tls_construct_server_done(SSL *s, WPACKET *pkt)
1560 {
1561     if (!s->s3->tmp.cert_request) {
1562         if (!ssl3_digest_cached_records(s, 0)) {
1563             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
1564             return 0;
1565         }
1566     }
1567     return 1;
1568 }
1569
1570 int tls_construct_server_key_exchange(SSL *s, WPACKET *pkt)
1571 {
1572 #ifndef OPENSSL_NO_DH
1573     EVP_PKEY *pkdh = NULL;
1574 #endif
1575 #ifndef OPENSSL_NO_EC
1576     unsigned char *encodedPoint = NULL;
1577     int encodedlen = 0;
1578     int curve_id = 0;
1579 #endif
1580     EVP_PKEY *pkey;
1581     const EVP_MD *md = NULL;
1582     int al = SSL_AD_INTERNAL_ERROR, i;
1583     unsigned long type;
1584     const BIGNUM *r[4];
1585     EVP_MD_CTX *md_ctx = EVP_MD_CTX_new();
1586     size_t paramlen, paramoffset;
1587
1588     if (!WPACKET_get_total_written(pkt, &paramoffset)) {
1589         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1590         goto f_err;
1591     }
1592
1593     if (md_ctx == NULL) {
1594         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1595         goto f_err;
1596     }
1597
1598     type = s->s3->tmp.new_cipher->algorithm_mkey;
1599
1600     r[0] = r[1] = r[2] = r[3] = NULL;
1601 #ifndef OPENSSL_NO_PSK
1602     /* Plain PSK or RSAPSK nothing to do */
1603     if (type & (SSL_kPSK | SSL_kRSAPSK)) {
1604     } else
1605 #endif                          /* !OPENSSL_NO_PSK */
1606 #ifndef OPENSSL_NO_DH
1607     if (type & (SSL_kDHE | SSL_kDHEPSK)) {
1608         CERT *cert = s->cert;
1609
1610         EVP_PKEY *pkdhp = NULL;
1611         DH *dh;
1612
1613         if (s->cert->dh_tmp_auto) {
1614             DH *dhp = ssl_get_auto_dh(s);
1615             pkdh = EVP_PKEY_new();
1616             if (pkdh == NULL || dhp == NULL) {
1617                 DH_free(dhp);
1618                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1619                        ERR_R_INTERNAL_ERROR);
1620                 goto f_err;
1621             }
1622             EVP_PKEY_assign_DH(pkdh, dhp);
1623             pkdhp = pkdh;
1624         } else {
1625             pkdhp = cert->dh_tmp;
1626         }
1627         if ((pkdhp == NULL) && (s->cert->dh_tmp_cb != NULL)) {
1628             DH *dhp = s->cert->dh_tmp_cb(s, 0, 1024);
1629             pkdh = ssl_dh_to_pkey(dhp);
1630             if (pkdh == NULL) {
1631                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1632                        ERR_R_INTERNAL_ERROR);
1633                 goto f_err;
1634             }
1635             pkdhp = pkdh;
1636         }
1637         if (pkdhp == NULL) {
1638             al = SSL_AD_HANDSHAKE_FAILURE;
1639             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1640                    SSL_R_MISSING_TMP_DH_KEY);
1641             goto f_err;
1642         }
1643         if (!ssl_security(s, SSL_SECOP_TMP_DH,
1644                           EVP_PKEY_security_bits(pkdhp), 0, pkdhp)) {
1645             al = SSL_AD_HANDSHAKE_FAILURE;
1646             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1647                    SSL_R_DH_KEY_TOO_SMALL);
1648             goto f_err;
1649         }
1650         if (s->s3->tmp.pkey != NULL) {
1651             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1652                    ERR_R_INTERNAL_ERROR);
1653             goto err;
1654         }
1655
1656         s->s3->tmp.pkey = ssl_generate_pkey(pkdhp);
1657
1658         if (s->s3->tmp.pkey == NULL) {
1659             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
1660             goto err;
1661         }
1662
1663         dh = EVP_PKEY_get0_DH(s->s3->tmp.pkey);
1664
1665         EVP_PKEY_free(pkdh);
1666         pkdh = NULL;
1667
1668         DH_get0_pqg(dh, &r[0], NULL, &r[1]);
1669         DH_get0_key(dh, &r[2], NULL);
1670     } else
1671 #endif
1672 #ifndef OPENSSL_NO_EC
1673     if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
1674         int nid;
1675
1676         if (s->s3->tmp.pkey != NULL) {
1677             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1678                    ERR_R_INTERNAL_ERROR);
1679             goto err;
1680         }
1681
1682         /* Get NID of appropriate shared curve */
1683         nid = tls1_shared_curve(s, -2);
1684         curve_id = tls1_ec_nid2curve_id(nid);
1685         if (curve_id == 0) {
1686             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1687                    SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
1688             goto err;
1689         }
1690         s->s3->tmp.pkey = ssl_generate_pkey_curve(curve_id);
1691         /* Generate a new key for this curve */
1692         if (s->s3->tmp.pkey == NULL) {
1693             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EVP_LIB);
1694             goto f_err;
1695         }
1696
1697         /* Encode the public key. */
1698         encodedlen = EVP_PKEY_get1_tls_encodedpoint(s->s3->tmp.pkey,
1699                                                     &encodedPoint);
1700         if (encodedlen == 0) {
1701             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_EC_LIB);
1702             goto err;
1703         }
1704
1705         /*
1706          * We'll generate the serverKeyExchange message explicitly so we
1707          * can set these to NULLs
1708          */
1709         r[0] = NULL;
1710         r[1] = NULL;
1711         r[2] = NULL;
1712         r[3] = NULL;
1713     } else
1714 #endif                          /* !OPENSSL_NO_EC */
1715 #ifndef OPENSSL_NO_SRP
1716     if (type & SSL_kSRP) {
1717         if ((s->srp_ctx.N == NULL) ||
1718             (s->srp_ctx.g == NULL) ||
1719             (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
1720             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1721                    SSL_R_MISSING_SRP_PARAM);
1722             goto err;
1723         }
1724         r[0] = s->srp_ctx.N;
1725         r[1] = s->srp_ctx.g;
1726         r[2] = s->srp_ctx.s;
1727         r[3] = s->srp_ctx.B;
1728     } else
1729 #endif
1730     {
1731         al = SSL_AD_HANDSHAKE_FAILURE;
1732         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1733                SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
1734         goto f_err;
1735     }
1736
1737     if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
1738         && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) {
1739         if ((pkey = ssl_get_sign_pkey(s, s->s3->tmp.new_cipher, &md))
1740             == NULL) {
1741             al = SSL_AD_DECODE_ERROR;
1742             goto f_err;
1743         }
1744     } else {
1745         pkey = NULL;
1746     }
1747
1748 #ifndef OPENSSL_NO_PSK
1749     if (type & SSL_PSK) {
1750         size_t len = (s->cert->psk_identity_hint == NULL)
1751                         ? 0 : strlen(s->cert->psk_identity_hint);
1752
1753         /*
1754          * It should not happen that len > PSK_MAX_IDENTITY_LEN - we already
1755          * checked this when we set the identity hint - but just in case
1756          */
1757         if (len > PSK_MAX_IDENTITY_LEN
1758                 || !WPACKET_sub_memcpy_u16(pkt, s->cert->psk_identity_hint,
1759                                            len)) {
1760             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1761                    ERR_R_INTERNAL_ERROR);
1762             goto f_err;
1763         }
1764     }
1765 #endif
1766
1767     for (i = 0; i < 4 && r[i] != NULL; i++) {
1768         unsigned char *binval;
1769         int res;
1770
1771 #ifndef OPENSSL_NO_SRP
1772         if ((i == 2) && (type & SSL_kSRP)) {
1773             res = WPACKET_start_sub_packet_u8(pkt);
1774         } else
1775 #endif
1776             res = WPACKET_start_sub_packet_u16(pkt);
1777
1778         if (!res) {
1779             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1780                    ERR_R_INTERNAL_ERROR);
1781             goto f_err;
1782         }
1783
1784 #ifndef OPENSSL_NO_DH
1785         /*-
1786          * for interoperability with some versions of the Microsoft TLS
1787          * stack, we need to zero pad the DHE pub key to the same length
1788          * as the prime
1789          */
1790         if ((i == 2) && (type & (SSL_kDHE | SSL_kDHEPSK))) {
1791             size_t len = BN_num_bytes(r[0]) - BN_num_bytes(r[2]);
1792
1793             if (len > 0) {
1794                 if (!WPACKET_allocate_bytes(pkt, len, &binval)) {
1795                     SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1796                            ERR_R_INTERNAL_ERROR);
1797                     goto f_err;
1798                 }
1799                 memset(binval, 0, len);
1800             }
1801         }
1802 #endif
1803         if (!WPACKET_allocate_bytes(pkt, BN_num_bytes(r[i]), &binval)
1804                 || !WPACKET_close(pkt)) {
1805             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1806                    ERR_R_INTERNAL_ERROR);
1807             goto f_err;
1808         }
1809
1810         BN_bn2bin(r[i], binval);
1811     }
1812
1813 #ifndef OPENSSL_NO_EC
1814     if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
1815         /*
1816          * We only support named (not generic) curves. In this situation, the
1817          * ServerKeyExchange message has: [1 byte CurveType], [2 byte CurveName]
1818          * [1 byte length of encoded point], followed by the actual encoded
1819          * point itself
1820          */
1821         if (!WPACKET_put_bytes_u8(pkt, NAMED_CURVE_TYPE)
1822                 || !WPACKET_put_bytes_u8(pkt, 0)
1823                 || !WPACKET_put_bytes_u8(pkt, curve_id)
1824                 || !WPACKET_sub_memcpy_u8(pkt, encodedPoint, encodedlen)) {
1825             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1826                    ERR_R_INTERNAL_ERROR);
1827             goto f_err;
1828         }
1829         OPENSSL_free(encodedPoint);
1830         encodedPoint = NULL;
1831     }
1832 #endif
1833
1834     /* not anonymous */
1835     if (pkey != NULL) {
1836         /*
1837          * n is the length of the params, they start at &(d[4]) and p
1838          * points to the space at the end.
1839          */
1840         if (md) {
1841             unsigned char *sigbytes1, *sigbytes2;
1842             unsigned int siglen;
1843
1844             /* Get length of the parameters we have written above */
1845             if (!WPACKET_get_length(pkt, &paramlen)) {
1846                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1847                        ERR_R_INTERNAL_ERROR);
1848                 goto f_err;
1849             }
1850             /* send signature algorithm */
1851             if (SSL_USE_SIGALGS(s)) {
1852                 if (!tls12_get_sigandhash(pkt, pkey, md)) {
1853                     /* Should never happen */
1854                     SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1855                            ERR_R_INTERNAL_ERROR);
1856                     goto f_err;
1857                 }
1858             }
1859 #ifdef SSL_DEBUG
1860             fprintf(stderr, "Using hash %s\n", EVP_MD_name(md));
1861 #endif
1862             /*
1863              * Create the signature. We don't know the actual length of the sig
1864              * until after we've created it, so we reserve enough bytes for it
1865              * up front, and then properly allocate them in the WPACKET
1866              * afterwards.
1867              */
1868             if (!WPACKET_sub_reserve_bytes_u16(pkt, EVP_PKEY_size(pkey),
1869                                                &sigbytes1)
1870                     || EVP_SignInit_ex(md_ctx, md, NULL) <= 0
1871                     || EVP_SignUpdate(md_ctx, &(s->s3->client_random[0]),
1872                                       SSL3_RANDOM_SIZE) <= 0
1873                     || EVP_SignUpdate(md_ctx, &(s->s3->server_random[0]),
1874                                       SSL3_RANDOM_SIZE) <= 0
1875                     || EVP_SignUpdate(md_ctx, s->init_buf->data + paramoffset,
1876                                       paramlen) <= 0
1877                     || EVP_SignFinal(md_ctx, sigbytes1, &siglen, pkey) <= 0
1878                     || !WPACKET_sub_allocate_bytes_u16(pkt, siglen, &sigbytes2)
1879                     || sigbytes1 != sigbytes2) {
1880                 SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1881                        ERR_R_INTERNAL_ERROR);
1882                 goto f_err;
1883             }
1884         } else {
1885             /* Is this error check actually needed? */
1886             al = SSL_AD_HANDSHAKE_FAILURE;
1887             SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1888                    SSL_R_UNKNOWN_PKEY_TYPE);
1889             goto f_err;
1890         }
1891     }
1892
1893     EVP_MD_CTX_free(md_ctx);
1894     return 1;
1895  f_err:
1896     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1897  err:
1898 #ifndef OPENSSL_NO_DH
1899     EVP_PKEY_free(pkdh);
1900 #endif
1901 #ifndef OPENSSL_NO_EC
1902     OPENSSL_free(encodedPoint);
1903 #endif
1904     EVP_MD_CTX_free(md_ctx);
1905     return 0;
1906 }
1907
1908 int tls_construct_certificate_request(SSL *s, WPACKET *pkt)
1909 {
1910     int i, nl;
1911     STACK_OF(X509_NAME) *sk = NULL;
1912
1913     /* get the list of acceptable cert types */
1914     if (!WPACKET_start_sub_packet_u8(pkt)
1915             || !ssl3_get_req_cert_type(s, pkt)
1916             || !WPACKET_close(pkt)) {
1917         SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
1918         goto err;
1919     }
1920
1921     if (SSL_USE_SIGALGS(s)) {
1922         const unsigned char *psigs;
1923         nl = tls12_get_psigalgs(s, &psigs);
1924         if (!WPACKET_start_sub_packet_u16(pkt)
1925                 || !tls12_copy_sigalgs(s, pkt, psigs, nl)
1926                 || !WPACKET_close(pkt)) {
1927             SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
1928                    ERR_R_INTERNAL_ERROR);
1929             goto err;
1930         }
1931     }
1932
1933     /* Start sub-packet for client CA list */
1934     if (!WPACKET_start_sub_packet_u16(pkt)) {
1935         SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
1936         goto err;
1937     }
1938
1939     sk = SSL_get_client_CA_list(s);
1940     if (sk != NULL) {
1941         for (i = 0; i < sk_X509_NAME_num(sk); i++) {
1942             unsigned char *namebytes;
1943             X509_NAME *name = sk_X509_NAME_value(sk, i);
1944             int namelen;
1945
1946             if (name == NULL
1947                     || (namelen = i2d_X509_NAME(name, NULL)) < 0
1948                     || !WPACKET_sub_allocate_bytes_u16(pkt, namelen,
1949                                                        &namebytes)
1950                     || i2d_X509_NAME(name, &namebytes) != namelen) {
1951                 SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
1952                        ERR_R_INTERNAL_ERROR);
1953                 goto err;
1954             }
1955         }
1956     }
1957     /* else no CA names */
1958
1959     if (!WPACKET_close(pkt)) {
1960         SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
1961         goto err;
1962     }
1963
1964     s->s3->tmp.cert_request = 1;
1965
1966     return 1;
1967  err:
1968     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
1969     return 0;
1970 }
1971
1972 static int tls_process_cke_psk_preamble(SSL *s, PACKET *pkt, int *al)
1973 {
1974 #ifndef OPENSSL_NO_PSK
1975     unsigned char psk[PSK_MAX_PSK_LEN];
1976     size_t psklen;
1977     PACKET psk_identity;
1978
1979     if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
1980         *al = SSL_AD_DECODE_ERROR;
1981         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH);
1982         return 0;
1983     }
1984     if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
1985         *al = SSL_AD_DECODE_ERROR;
1986         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG);
1987         return 0;
1988     }
1989     if (s->psk_server_callback == NULL) {
1990         *al = SSL_AD_INTERNAL_ERROR;
1991         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_SERVER_CB);
1992         return 0;
1993     }
1994
1995     if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
1996         *al = SSL_AD_INTERNAL_ERROR;
1997         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
1998         return 0;
1999     }
2000
2001     psklen = s->psk_server_callback(s, s->session->psk_identity,
2002                                     psk, sizeof(psk));
2003
2004     if (psklen > PSK_MAX_PSK_LEN) {
2005         *al = SSL_AD_INTERNAL_ERROR;
2006         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2007         return 0;
2008     } else if (psklen == 0) {
2009         /*
2010          * PSK related to the given identity not found
2011          */
2012         *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
2013         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE,
2014                SSL_R_PSK_IDENTITY_NOT_FOUND);
2015         return 0;
2016     }
2017
2018     OPENSSL_free(s->s3->tmp.psk);
2019     s->s3->tmp.psk = OPENSSL_memdup(psk, psklen);
2020     OPENSSL_cleanse(psk, psklen);
2021
2022     if (s->s3->tmp.psk == NULL) {
2023         *al = SSL_AD_INTERNAL_ERROR;
2024         SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE);
2025         return 0;
2026     }
2027
2028     s->s3->tmp.psklen = psklen;
2029
2030     return 1;
2031 #else
2032     /* Should never happen */
2033     *al = SSL_AD_INTERNAL_ERROR;
2034     SSLerr(SSL_F_TLS_PROCESS_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2035     return 0;
2036 #endif
2037 }
2038
2039 static int tls_process_cke_rsa(SSL *s, PACKET *pkt, int *al)
2040 {
2041 #ifndef OPENSSL_NO_RSA
2042     unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2043     int decrypt_len;
2044     unsigned char decrypt_good, version_good;
2045     size_t j, padding_len;
2046     PACKET enc_premaster;
2047     RSA *rsa = NULL;
2048     unsigned char *rsa_decrypt = NULL;
2049     int ret = 0;
2050
2051     rsa = EVP_PKEY_get0_RSA(s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey);
2052     if (rsa == NULL) {
2053         *al = SSL_AD_HANDSHAKE_FAILURE;
2054         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_MISSING_RSA_CERTIFICATE);
2055         return 0;
2056     }
2057
2058     /* SSLv3 and pre-standard DTLS omit the length bytes. */
2059     if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
2060         enc_premaster = *pkt;
2061     } else {
2062         if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
2063             || PACKET_remaining(pkt) != 0) {
2064             *al = SSL_AD_DECODE_ERROR;
2065             SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_LENGTH_MISMATCH);
2066             return 0;
2067         }
2068     }
2069
2070     /*
2071      * We want to be sure that the plaintext buffer size makes it safe to
2072      * iterate over the entire size of a premaster secret
2073      * (SSL_MAX_MASTER_KEY_LENGTH). Reject overly short RSA keys because
2074      * their ciphertext cannot accommodate a premaster secret anyway.
2075      */
2076     if (RSA_size(rsa) < SSL_MAX_MASTER_KEY_LENGTH) {
2077         *al = SSL_AD_INTERNAL_ERROR;
2078         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, RSA_R_KEY_SIZE_TOO_SMALL);
2079         return 0;
2080     }
2081
2082     rsa_decrypt = OPENSSL_malloc(RSA_size(rsa));
2083     if (rsa_decrypt == NULL) {
2084         *al = SSL_AD_INTERNAL_ERROR;
2085         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_MALLOC_FAILURE);
2086         return 0;
2087     }
2088
2089     /*
2090      * We must not leak whether a decryption failure occurs because of
2091      * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2092      * section 7.4.7.1). The code follows that advice of the TLS RFC and
2093      * generates a random premaster secret for the case that the decrypt
2094      * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
2095      */
2096
2097     if (RAND_bytes(rand_premaster_secret, sizeof(rand_premaster_secret)) <= 0)
2098         goto err;
2099
2100     /*
2101      * Decrypt with no padding. PKCS#1 padding will be removed as part of
2102      * the timing-sensitive code below.
2103      */
2104     decrypt_len = RSA_private_decrypt(PACKET_remaining(&enc_premaster),
2105                                       PACKET_data(&enc_premaster),
2106                                       rsa_decrypt, rsa, RSA_NO_PADDING);
2107     if (decrypt_len < 0)
2108         goto err;
2109
2110     /* Check the padding. See RFC 3447, section 7.2.2. */
2111
2112     /*
2113      * The smallest padded premaster is 11 bytes of overhead. Small keys
2114      * are publicly invalid, so this may return immediately. This ensures
2115      * PS is at least 8 bytes.
2116      */
2117     if (decrypt_len < 11 + SSL_MAX_MASTER_KEY_LENGTH) {
2118         *al = SSL_AD_DECRYPT_ERROR;
2119         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, SSL_R_DECRYPTION_FAILED);
2120         goto err;
2121     }
2122
2123     padding_len = decrypt_len - SSL_MAX_MASTER_KEY_LENGTH;
2124     decrypt_good = constant_time_eq_int_8(rsa_decrypt[0], 0) &
2125         constant_time_eq_int_8(rsa_decrypt[1], 2);
2126     for (j = 2; j < padding_len - 1; j++) {
2127         decrypt_good &= ~constant_time_is_zero_8(rsa_decrypt[j]);
2128     }
2129     decrypt_good &= constant_time_is_zero_8(rsa_decrypt[padding_len - 1]);
2130
2131     /*
2132      * If the version in the decrypted pre-master secret is correct then
2133      * version_good will be 0xff, otherwise it'll be zero. The
2134      * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2135      * (http://eprint.iacr.org/2003/052/) exploits the version number
2136      * check as a "bad version oracle". Thus version checks are done in
2137      * constant time and are treated like any other decryption error.
2138      */
2139     version_good =
2140         constant_time_eq_8(rsa_decrypt[padding_len],
2141                            (unsigned)(s->client_version >> 8));
2142     version_good &=
2143         constant_time_eq_8(rsa_decrypt[padding_len + 1],
2144                            (unsigned)(s->client_version & 0xff));
2145
2146     /*
2147      * The premaster secret must contain the same version number as the
2148      * ClientHello to detect version rollback attacks (strangely, the
2149      * protocol does not offer such protection for DH ciphersuites).
2150      * However, buggy clients exist that send the negotiated protocol
2151      * version instead if the server does not support the requested
2152      * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
2153      * clients.
2154      */
2155     if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
2156         unsigned char workaround_good;
2157         workaround_good = constant_time_eq_8(rsa_decrypt[padding_len],
2158                                              (unsigned)(s->version >> 8));
2159         workaround_good &=
2160             constant_time_eq_8(rsa_decrypt[padding_len + 1],
2161                                (unsigned)(s->version & 0xff));
2162         version_good |= workaround_good;
2163     }
2164
2165     /*
2166      * Both decryption and version must be good for decrypt_good to
2167      * remain non-zero (0xff).
2168      */
2169     decrypt_good &= version_good;
2170
2171     /*
2172      * Now copy rand_premaster_secret over from p using
2173      * decrypt_good_mask. If decryption failed, then p does not
2174      * contain valid plaintext, however, a check above guarantees
2175      * it is still sufficiently large to read from.
2176      */
2177     for (j = 0; j < sizeof(rand_premaster_secret); j++) {
2178         rsa_decrypt[padding_len + j] =
2179             constant_time_select_8(decrypt_good,
2180                                    rsa_decrypt[padding_len + j],
2181                                    rand_premaster_secret[j]);
2182     }
2183
2184     if (!ssl_generate_master_secret(s, rsa_decrypt + padding_len,
2185                                     sizeof(rand_premaster_secret), 0)) {
2186         *al = SSL_AD_INTERNAL_ERROR;
2187         SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2188         goto err;
2189     }
2190
2191     ret = 1;
2192  err:
2193     OPENSSL_free(rsa_decrypt);
2194     return ret;
2195 #else
2196     /* Should never happen */
2197     *al = SSL_AD_INTERNAL_ERROR;
2198     SSLerr(SSL_F_TLS_PROCESS_CKE_RSA, ERR_R_INTERNAL_ERROR);
2199     return 0;
2200 #endif
2201 }
2202
2203 static int tls_process_cke_dhe(SSL *s, PACKET *pkt, int *al)
2204 {
2205 #ifndef OPENSSL_NO_DH
2206     EVP_PKEY *skey = NULL;
2207     DH *cdh;
2208     unsigned int i;
2209     BIGNUM *pub_key;
2210     const unsigned char *data;
2211     EVP_PKEY *ckey = NULL;
2212     int ret = 0;
2213
2214     if (!PACKET_get_net_2(pkt, &i) || PACKET_remaining(pkt) != i) {
2215         *al = SSL_AD_HANDSHAKE_FAILURE;
2216         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE,
2217                SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2218         goto err;
2219     }
2220     skey = s->s3->tmp.pkey;
2221     if (skey == NULL) {
2222         *al = SSL_AD_HANDSHAKE_FAILURE;
2223         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2224         goto err;
2225     }
2226
2227     if (PACKET_remaining(pkt) == 0L) {
2228         *al = SSL_AD_HANDSHAKE_FAILURE;
2229         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_MISSING_TMP_DH_KEY);
2230         goto err;
2231     }
2232     if (!PACKET_get_bytes(pkt, &data, i)) {
2233         /* We already checked we have enough data */
2234         *al = SSL_AD_INTERNAL_ERROR;
2235         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2236         goto err;
2237     }
2238     ckey = EVP_PKEY_new();
2239     if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) == 0) {
2240         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, SSL_R_BN_LIB);
2241         goto err;
2242     }
2243     cdh = EVP_PKEY_get0_DH(ckey);
2244     pub_key = BN_bin2bn(data, i, NULL);
2245
2246     if (pub_key == NULL || !DH_set0_key(cdh, pub_key, NULL)) {
2247         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2248         if (pub_key != NULL)
2249             BN_free(pub_key);
2250         goto err;
2251     }
2252
2253     if (ssl_derive(s, skey, ckey) == 0) {
2254         *al = SSL_AD_INTERNAL_ERROR;
2255         SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2256         goto err;
2257     }
2258
2259     ret = 1;
2260     EVP_PKEY_free(s->s3->tmp.pkey);
2261     s->s3->tmp.pkey = NULL;
2262  err:
2263     EVP_PKEY_free(ckey);
2264     return ret;
2265 #else
2266     /* Should never happen */
2267     *al = SSL_AD_INTERNAL_ERROR;
2268     SSLerr(SSL_F_TLS_PROCESS_CKE_DHE, ERR_R_INTERNAL_ERROR);
2269     return 0;
2270 #endif
2271 }
2272
2273 static int tls_process_cke_ecdhe(SSL *s, PACKET *pkt, int *al)
2274 {
2275 #ifndef OPENSSL_NO_EC
2276     EVP_PKEY *skey = s->s3->tmp.pkey;
2277     EVP_PKEY *ckey = NULL;
2278     int ret = 0;
2279
2280     if (PACKET_remaining(pkt) == 0L) {
2281         /* We don't support ECDH client auth */
2282         *al = SSL_AD_HANDSHAKE_FAILURE;
2283         SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_MISSING_TMP_ECDH_KEY);
2284         goto err;
2285     } else {
2286         unsigned int i;
2287         const unsigned char *data;
2288
2289         /*
2290          * Get client's public key from encoded point in the
2291          * ClientKeyExchange message.
2292          */
2293
2294         /* Get encoded point length */
2295         if (!PACKET_get_1(pkt, &i) || !PACKET_get_bytes(pkt, &data, i)
2296             || PACKET_remaining(pkt) != 0) {
2297             *al = SSL_AD_DECODE_ERROR;
2298             SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, SSL_R_LENGTH_MISMATCH);
2299             goto err;
2300         }
2301         ckey = EVP_PKEY_new();
2302         if (ckey == NULL || EVP_PKEY_copy_parameters(ckey, skey) <= 0) {
2303             SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EVP_LIB);
2304             goto err;
2305         }
2306         if (EVP_PKEY_set1_tls_encodedpoint(ckey, data, i) == 0) {
2307             *al = SSL_AD_HANDSHAKE_FAILURE;
2308             SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_EC_LIB);
2309             goto err;
2310         }
2311     }
2312
2313     if (ssl_derive(s, skey, ckey) == 0) {
2314         *al = SSL_AD_INTERNAL_ERROR;
2315         SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2316         goto err;
2317     }
2318
2319     ret = 1;
2320     EVP_PKEY_free(s->s3->tmp.pkey);
2321     s->s3->tmp.pkey = NULL;
2322  err:
2323     EVP_PKEY_free(ckey);
2324
2325     return ret;
2326 #else
2327     /* Should never happen */
2328     *al = SSL_AD_INTERNAL_ERROR;
2329     SSLerr(SSL_F_TLS_PROCESS_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2330     return 0;
2331 #endif
2332 }
2333
2334 static int tls_process_cke_srp(SSL *s, PACKET *pkt, int *al)
2335 {
2336 #ifndef OPENSSL_NO_SRP
2337     unsigned int i;
2338     const unsigned char *data;
2339
2340     if (!PACKET_get_net_2(pkt, &i)
2341         || !PACKET_get_bytes(pkt, &data, i)) {
2342         *al = SSL_AD_DECODE_ERROR;
2343         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_A_LENGTH);
2344         return 0;
2345     }
2346     if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
2347         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_BN_LIB);
2348         return 0;
2349     }
2350     if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) {
2351         *al = SSL_AD_ILLEGAL_PARAMETER;
2352         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, SSL_R_BAD_SRP_PARAMETERS);
2353         return 0;
2354     }
2355     OPENSSL_free(s->session->srp_username);
2356     s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
2357     if (s->session->srp_username == NULL) {
2358         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_MALLOC_FAILURE);
2359         return 0;
2360     }
2361
2362     if (!srp_generate_server_master_secret(s)) {
2363         SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2364         return 0;
2365     }
2366
2367     return 1;
2368 #else
2369     /* Should never happen */
2370     *al = SSL_AD_INTERNAL_ERROR;
2371     SSLerr(SSL_F_TLS_PROCESS_CKE_SRP, ERR_R_INTERNAL_ERROR);
2372     return 0;
2373 #endif
2374 }
2375
2376 static int tls_process_cke_gost(SSL *s, PACKET *pkt, int *al)
2377 {
2378 #ifndef OPENSSL_NO_GOST
2379     EVP_PKEY_CTX *pkey_ctx;
2380     EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2381     unsigned char premaster_secret[32];
2382     const unsigned char *start;
2383     size_t outlen = 32, inlen;
2384     unsigned long alg_a;
2385     int Ttag, Tclass;
2386     long Tlen;
2387     long sess_key_len;
2388     const unsigned char *data;
2389     int ret = 0;
2390
2391     /* Get our certificate private key */
2392     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2393     if (alg_a & SSL_aGOST12) {
2394         /*
2395          * New GOST ciphersuites have SSL_aGOST01 bit too
2396          */
2397         pk = s->cert->pkeys[SSL_PKEY_GOST12_512].privatekey;
2398         if (pk == NULL) {
2399             pk = s->cert->pkeys[SSL_PKEY_GOST12_256].privatekey;
2400         }
2401         if (pk == NULL) {
2402             pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2403         }
2404     } else if (alg_a & SSL_aGOST01) {
2405         pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2406     }
2407
2408     pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
2409     if (pkey_ctx == NULL) {
2410         *al = SSL_AD_INTERNAL_ERROR;
2411         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_MALLOC_FAILURE);
2412         return 0;
2413     }
2414     if (EVP_PKEY_decrypt_init(pkey_ctx) <= 0) {
2415         *al = SSL_AD_INTERNAL_ERROR;
2416         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2417         return 0;
2418     }
2419     /*
2420      * If client certificate is present and is of the same type, maybe
2421      * use it for key exchange.  Don't mind errors from
2422      * EVP_PKEY_derive_set_peer, because it is completely valid to use a
2423      * client certificate for authorization only.
2424      */
2425     client_pub_pkey = X509_get0_pubkey(s->session->peer);
2426     if (client_pub_pkey) {
2427         if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2428             ERR_clear_error();
2429     }
2430     /* Decrypt session key */
2431     sess_key_len = PACKET_remaining(pkt);
2432     if (!PACKET_get_bytes(pkt, &data, sess_key_len)) {
2433         *al = SSL_AD_INTERNAL_ERROR;
2434         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2435         goto err;
2436     }
2437     if (ASN1_get_object((const unsigned char **)&data, &Tlen, &Ttag,
2438                         &Tclass, sess_key_len) != V_ASN1_CONSTRUCTED
2439         || Ttag != V_ASN1_SEQUENCE || Tclass != V_ASN1_UNIVERSAL) {
2440         *al = SSL_AD_DECODE_ERROR;
2441         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2442         goto err;
2443     }
2444     start = data;
2445     inlen = Tlen;
2446     if (EVP_PKEY_decrypt
2447         (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
2448         *al = SSL_AD_DECODE_ERROR;
2449         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, SSL_R_DECRYPTION_FAILED);
2450         goto err;
2451     }
2452     /* Generate master secret */
2453     if (!ssl_generate_master_secret(s, premaster_secret,
2454                                     sizeof(premaster_secret), 0)) {
2455         *al = SSL_AD_INTERNAL_ERROR;
2456         SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2457         goto err;
2458     }
2459     /* Check if pubkey from client certificate was used */
2460     if (EVP_PKEY_CTX_ctrl
2461         (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2462         s->statem.no_cert_verify = 1;
2463
2464     ret = 1;
2465  err:
2466     EVP_PKEY_CTX_free(pkey_ctx);
2467     return ret;
2468 #else
2469     /* Should never happen */
2470     *al = SSL_AD_INTERNAL_ERROR;
2471     SSLerr(SSL_F_TLS_PROCESS_CKE_GOST, ERR_R_INTERNAL_ERROR);
2472     return 0;
2473 #endif
2474 }
2475
2476 MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL *s, PACKET *pkt)
2477 {
2478     int al = -1;
2479     unsigned long alg_k;
2480
2481     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2482
2483     /* For PSK parse and retrieve identity, obtain PSK key */
2484     if ((alg_k & SSL_PSK) && !tls_process_cke_psk_preamble(s, pkt, &al))
2485         goto err;
2486
2487     if (alg_k & SSL_kPSK) {
2488         /* Identity extracted earlier: should be nothing left */
2489         if (PACKET_remaining(pkt) != 0) {
2490             al = SSL_AD_HANDSHAKE_FAILURE;
2491             SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2492                    SSL_R_LENGTH_MISMATCH);
2493             goto err;
2494         }
2495         /* PSK handled by ssl_generate_master_secret */
2496         if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
2497             al = SSL_AD_INTERNAL_ERROR;
2498             SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2499             goto err;
2500         }
2501     } else if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
2502         if (!tls_process_cke_rsa(s, pkt, &al))
2503             goto err;
2504     } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2505         if (!tls_process_cke_dhe(s, pkt, &al))
2506             goto err;
2507     } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2508         if (!tls_process_cke_ecdhe(s, pkt, &al))
2509             goto err;
2510     } else if (alg_k & SSL_kSRP) {
2511         if (!tls_process_cke_srp(s, pkt, &al))
2512             goto err;
2513     } else if (alg_k & SSL_kGOST) {
2514         if (!tls_process_cke_gost(s, pkt, &al))
2515             goto err;
2516     } else {
2517         al = SSL_AD_HANDSHAKE_FAILURE;
2518         SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2519                SSL_R_UNKNOWN_CIPHER_TYPE);
2520         goto err;
2521     }
2522
2523     return MSG_PROCESS_CONTINUE_PROCESSING;
2524  err:
2525     if (al != -1)
2526         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2527 #ifndef OPENSSL_NO_PSK
2528     OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
2529     s->s3->tmp.psk = NULL;
2530 #endif
2531     ossl_statem_set_error(s);
2532     return MSG_PROCESS_ERROR;
2533 }
2534
2535 WORK_STATE tls_post_process_client_key_exchange(SSL *s, WORK_STATE wst)
2536 {
2537 #ifndef OPENSSL_NO_SCTP
2538     if (wst == WORK_MORE_A) {
2539         if (SSL_IS_DTLS(s)) {
2540             unsigned char sctpauthkey[64];
2541             char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
2542             /*
2543              * Add new shared key for SCTP-Auth, will be ignored if no SCTP
2544              * used.
2545              */
2546             memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
2547                    sizeof(DTLS1_SCTP_AUTH_LABEL));
2548
2549             if (SSL_export_keying_material(s, sctpauthkey,
2550                                            sizeof(sctpauthkey), labelbuffer,
2551                                            sizeof(labelbuffer), NULL, 0,
2552                                            0) <= 0) {
2553                 ossl_statem_set_error(s);
2554                 return WORK_ERROR;;
2555             }
2556
2557             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
2558                      sizeof(sctpauthkey), sctpauthkey);
2559         }
2560         wst = WORK_MORE_B;
2561     }
2562
2563     if ((wst == WORK_MORE_B)
2564         /* Is this SCTP? */
2565         && BIO_dgram_is_sctp(SSL_get_wbio(s))
2566         /* Are we renegotiating? */
2567         && s->renegotiate
2568         /* Are we going to skip the CertificateVerify? */
2569         && (s->session->peer == NULL || s->statem.no_cert_verify)
2570         && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
2571         s->s3->in_read_app_data = 2;
2572         s->rwstate = SSL_READING;
2573         BIO_clear_retry_flags(SSL_get_rbio(s));
2574         BIO_set_retry_read(SSL_get_rbio(s));
2575         ossl_statem_set_sctp_read_sock(s, 1);
2576         return WORK_MORE_B;
2577     } else {
2578         ossl_statem_set_sctp_read_sock(s, 0);
2579     }
2580 #endif
2581
2582     if (s->statem.no_cert_verify || !s->session->peer) {
2583         /*
2584          * No certificate verify or no peer certificate so we no longer need
2585          * the handshake_buffer
2586          */
2587         if (!ssl3_digest_cached_records(s, 0)) {
2588             ossl_statem_set_error(s);
2589             return WORK_ERROR;
2590         }
2591         return WORK_FINISHED_CONTINUE;
2592     } else {
2593         if (!s->s3->handshake_buffer) {
2594             SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_KEY_EXCHANGE,
2595                    ERR_R_INTERNAL_ERROR);
2596             ossl_statem_set_error(s);
2597             return WORK_ERROR;
2598         }
2599         /*
2600          * For sigalgs freeze the handshake buffer. If we support
2601          * extms we've done this already so this is a no-op
2602          */
2603         if (!ssl3_digest_cached_records(s, 1)) {
2604             ossl_statem_set_error(s);
2605             return WORK_ERROR;
2606         }
2607     }
2608
2609     return WORK_FINISHED_CONTINUE;
2610 }
2611
2612 MSG_PROCESS_RETURN tls_process_cert_verify(SSL *s, PACKET *pkt)
2613 {
2614     EVP_PKEY *pkey = NULL;
2615     const unsigned char *sig, *data;
2616 #ifndef OPENSSL_NO_GOST
2617     unsigned char *gost_data = NULL;
2618 #endif
2619     int al, ret = MSG_PROCESS_ERROR;
2620     int type = 0, j;
2621     unsigned int len;
2622     X509 *peer;
2623     const EVP_MD *md = NULL;
2624     long hdatalen = 0;
2625     void *hdata;
2626
2627     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
2628
2629     if (mctx == NULL) {
2630         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_MALLOC_FAILURE);
2631         al = SSL_AD_INTERNAL_ERROR;
2632         goto f_err;
2633     }
2634
2635     peer = s->session->peer;
2636     pkey = X509_get0_pubkey(peer);
2637     type = X509_certificate_type(peer, pkey);
2638
2639     if (!(type & EVP_PKT_SIGN)) {
2640         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY,
2641                SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
2642         al = SSL_AD_ILLEGAL_PARAMETER;
2643         goto f_err;
2644     }
2645
2646     /* Check for broken implementations of GOST ciphersuites */
2647     /*
2648      * If key is GOST and n is exactly 64, it is bare signature without
2649      * length field (CryptoPro implementations at least till CSP 4.0)
2650      */
2651 #ifndef OPENSSL_NO_GOST
2652     if (PACKET_remaining(pkt) == 64
2653         && EVP_PKEY_id(pkey) == NID_id_GostR3410_2001) {
2654         len = 64;
2655     } else
2656 #endif
2657     {
2658         if (SSL_USE_SIGALGS(s)) {
2659             int rv;
2660
2661             if (!PACKET_get_bytes(pkt, &sig, 2)) {
2662                 al = SSL_AD_DECODE_ERROR;
2663                 goto f_err;
2664             }
2665             rv = tls12_check_peer_sigalg(&md, s, sig, pkey);
2666             if (rv == -1) {
2667                 al = SSL_AD_INTERNAL_ERROR;
2668                 goto f_err;
2669             } else if (rv == 0) {
2670                 al = SSL_AD_DECODE_ERROR;
2671                 goto f_err;
2672             }
2673 #ifdef SSL_DEBUG
2674             fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
2675 #endif
2676         } else {
2677             /* Use default digest for this key type */
2678             int idx = ssl_cert_type(NULL, pkey);
2679             if (idx >= 0)
2680                 md = s->s3->tmp.md[idx];
2681             if (md == NULL) {
2682                 al = SSL_AD_INTERNAL_ERROR;
2683                 goto f_err;
2684             }
2685         }
2686
2687         if (!PACKET_get_net_2(pkt, &len)) {
2688             SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
2689             al = SSL_AD_DECODE_ERROR;
2690             goto f_err;
2691         }
2692     }
2693     j = EVP_PKEY_size(pkey);
2694     if (((int)len > j) || ((int)PACKET_remaining(pkt) > j)
2695         || (PACKET_remaining(pkt) == 0)) {
2696         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_WRONG_SIGNATURE_SIZE);
2697         al = SSL_AD_DECODE_ERROR;
2698         goto f_err;
2699     }
2700     if (!PACKET_get_bytes(pkt, &data, len)) {
2701         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
2702         al = SSL_AD_DECODE_ERROR;
2703         goto f_err;
2704     }
2705
2706     hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
2707     if (hdatalen <= 0) {
2708         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
2709         al = SSL_AD_INTERNAL_ERROR;
2710         goto f_err;
2711     }
2712 #ifdef SSL_DEBUG
2713     fprintf(stderr, "Using client verify alg %s\n", EVP_MD_name(md));
2714 #endif
2715     if (!EVP_VerifyInit_ex(mctx, md, NULL)
2716         || !EVP_VerifyUpdate(mctx, hdata, hdatalen)) {
2717         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
2718         al = SSL_AD_INTERNAL_ERROR;
2719         goto f_err;
2720     }
2721 #ifndef OPENSSL_NO_GOST
2722     {
2723         int pktype = EVP_PKEY_id(pkey);
2724         if (pktype == NID_id_GostR3410_2001
2725             || pktype == NID_id_GostR3410_2012_256
2726             || pktype == NID_id_GostR3410_2012_512) {
2727             if ((gost_data = OPENSSL_malloc(len)) == NULL) {
2728                 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_MALLOC_FAILURE);
2729                 al = SSL_AD_INTERNAL_ERROR;
2730                 goto f_err;
2731             }
2732             BUF_reverse(gost_data, data, len);
2733             data = gost_data;
2734         }
2735     }
2736 #endif
2737
2738     if (s->version == SSL3_VERSION
2739         && !EVP_MD_CTX_ctrl(mctx, EVP_CTRL_SSL3_MASTER_SECRET,
2740                             s->session->master_key_length,
2741                             s->session->master_key)) {
2742         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
2743         al = SSL_AD_INTERNAL_ERROR;
2744         goto f_err;
2745     }
2746
2747     if (EVP_VerifyFinal(mctx, data, len, pkey) <= 0) {
2748         al = SSL_AD_DECRYPT_ERROR;
2749         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_SIGNATURE);
2750         goto f_err;
2751     }
2752
2753     ret = MSG_PROCESS_CONTINUE_PROCESSING;
2754     if (0) {
2755  f_err:
2756         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2757         ossl_statem_set_error(s);
2758     }
2759     BIO_free(s->s3->handshake_buffer);
2760     s->s3->handshake_buffer = NULL;
2761     EVP_MD_CTX_free(mctx);
2762 #ifndef OPENSSL_NO_GOST
2763     OPENSSL_free(gost_data);
2764 #endif
2765     return ret;
2766 }
2767
2768 MSG_PROCESS_RETURN tls_process_client_certificate(SSL *s, PACKET *pkt)
2769 {
2770     int i, al = SSL_AD_INTERNAL_ERROR, ret = MSG_PROCESS_ERROR;
2771     X509 *x = NULL;
2772     unsigned long l, llen;
2773     const unsigned char *certstart, *certbytes;
2774     STACK_OF(X509) *sk = NULL;
2775     PACKET spkt;
2776
2777     if ((sk = sk_X509_new_null()) == NULL) {
2778         SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
2779         goto f_err;
2780     }
2781
2782     if (!PACKET_get_net_3(pkt, &llen)
2783         || !PACKET_get_sub_packet(pkt, &spkt, llen)
2784         || PACKET_remaining(pkt) != 0) {
2785         al = SSL_AD_DECODE_ERROR;
2786         SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
2787         goto f_err;
2788     }
2789
2790     while (PACKET_remaining(&spkt) > 0) {
2791         if (!PACKET_get_net_3(&spkt, &l)
2792             || !PACKET_get_bytes(&spkt, &certbytes, l)) {
2793             al = SSL_AD_DECODE_ERROR;
2794             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2795                    SSL_R_CERT_LENGTH_MISMATCH);
2796             goto f_err;
2797         }
2798
2799         certstart = certbytes;
2800         x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
2801         if (x == NULL) {
2802             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
2803             goto f_err;
2804         }
2805         if (certbytes != (certstart + l)) {
2806             al = SSL_AD_DECODE_ERROR;
2807             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2808                    SSL_R_CERT_LENGTH_MISMATCH);
2809             goto f_err;
2810         }
2811         if (!sk_X509_push(sk, x)) {
2812             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
2813             goto f_err;
2814         }
2815         x = NULL;
2816     }
2817
2818     if (sk_X509_num(sk) <= 0) {
2819         /* TLS does not mind 0 certs returned */
2820         if (s->version == SSL3_VERSION) {
2821             al = SSL_AD_HANDSHAKE_FAILURE;
2822             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2823                    SSL_R_NO_CERTIFICATES_RETURNED);
2824             goto f_err;
2825         }
2826         /* Fail for TLS only if we required a certificate */
2827         else if ((s->verify_mode & SSL_VERIFY_PEER) &&
2828                  (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
2829             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2830                    SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
2831             al = SSL_AD_HANDSHAKE_FAILURE;
2832             goto f_err;
2833         }
2834         /* No client certificate so digest cached records */
2835         if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
2836             goto f_err;
2837         }
2838     } else {
2839         EVP_PKEY *pkey;
2840         i = ssl_verify_cert_chain(s, sk);
2841         if (i <= 0) {
2842             al = ssl_verify_alarm_type(s->verify_result);
2843             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2844                    SSL_R_CERTIFICATE_VERIFY_FAILED);
2845             goto f_err;
2846         }
2847         if (i > 1) {
2848             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, i);
2849             al = SSL_AD_HANDSHAKE_FAILURE;
2850             goto f_err;
2851         }
2852         pkey = X509_get0_pubkey(sk_X509_value(sk, 0));
2853         if (pkey == NULL) {
2854             al = SSL3_AD_HANDSHAKE_FAILURE;
2855             SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2856                    SSL_R_UNKNOWN_CERTIFICATE_TYPE);
2857             goto f_err;
2858         }
2859     }
2860
2861     X509_free(s->session->peer);
2862     s->session->peer = sk_X509_shift(sk);
2863     s->session->verify_result = s->verify_result;
2864
2865     sk_X509_pop_free(s->session->peer_chain, X509_free);
2866     s->session->peer_chain = sk;
2867     /*
2868      * Inconsistency alert: cert_chain does *not* include the peer's own
2869      * certificate, while we do include it in statem_clnt.c
2870      */
2871     sk = NULL;
2872     ret = MSG_PROCESS_CONTINUE_READING;
2873     goto done;
2874
2875  f_err:
2876     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2877     ossl_statem_set_error(s);
2878  done:
2879     X509_free(x);
2880     sk_X509_pop_free(sk, X509_free);
2881     return ret;
2882 }
2883
2884 int tls_construct_server_certificate(SSL *s, WPACKET *pkt)
2885 {
2886     CERT_PKEY *cpk;
2887
2888     cpk = ssl_get_server_send_pkey(s);
2889     if (cpk == NULL) {
2890         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
2891         return 0;
2892     }
2893
2894     if (!ssl3_output_cert_chain(s, pkt, cpk)) {
2895         SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
2896         return 0;
2897     }
2898
2899     return 1;
2900 }
2901
2902 int tls_construct_new_session_ticket(SSL *s, WPACKET *pkt)
2903 {
2904     unsigned char *senc = NULL;
2905     EVP_CIPHER_CTX *ctx = NULL;
2906     HMAC_CTX *hctx = NULL;
2907     unsigned char *p, *encdata1, *encdata2, *macdata1, *macdata2;
2908     const unsigned char *const_p;
2909     int len, slen_full, slen, lenfinal;
2910     SSL_SESSION *sess;
2911     unsigned int hlen;
2912     SSL_CTX *tctx = s->initial_ctx;
2913     unsigned char iv[EVP_MAX_IV_LENGTH];
2914     unsigned char key_name[TLSEXT_KEYNAME_LENGTH];
2915     int iv_len;
2916     size_t macoffset, macendoffset;
2917
2918     /* get session encoding length */
2919     slen_full = i2d_SSL_SESSION(s->session, NULL);
2920     /*
2921      * Some length values are 16 bits, so forget it if session is too
2922      * long
2923      */
2924     if (slen_full == 0 || slen_full > 0xFF00) {
2925         ossl_statem_set_error(s);
2926         return 0;
2927     }
2928     senc = OPENSSL_malloc(slen_full);
2929     if (senc == NULL) {
2930         ossl_statem_set_error(s);
2931         return 0;
2932     }
2933
2934     ctx = EVP_CIPHER_CTX_new();
2935     hctx = HMAC_CTX_new();
2936     if (ctx == NULL || hctx == NULL) {
2937         SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
2938         goto err;
2939     }
2940
2941     p = senc;
2942     if (!i2d_SSL_SESSION(s->session, &p))
2943         goto err;
2944
2945     /*
2946      * create a fresh copy (not shared with other threads) to clean up
2947      */
2948     const_p = senc;
2949     sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
2950     if (sess == NULL)
2951         goto err;
2952     sess->session_id_length = 0; /* ID is irrelevant for the ticket */
2953
2954     slen = i2d_SSL_SESSION(sess, NULL);
2955     if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
2956         SSL_SESSION_free(sess);
2957         goto err;
2958     }
2959     p = senc;
2960     if (!i2d_SSL_SESSION(sess, &p)) {
2961         SSL_SESSION_free(sess);
2962         goto err;
2963     }
2964     SSL_SESSION_free(sess);
2965
2966     /*
2967      * Initialize HMAC and cipher contexts. If callback present it does
2968      * all the work otherwise use generated values from parent ctx.
2969      */
2970     if (tctx->tlsext_ticket_key_cb) {
2971         /* if 0 is returned, write an empty ticket */
2972         int ret = tctx->tlsext_ticket_key_cb(s, key_name, iv, ctx,
2973                                              hctx, 1);
2974
2975         if (ret == 0) {
2976
2977             /* Put timeout and length */
2978             if (!WPACKET_put_bytes_u32(pkt, 0)
2979                     || !WPACKET_put_bytes_u16(pkt, 0)) {
2980                 SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET,
2981                        ERR_R_INTERNAL_ERROR);
2982                 goto err;
2983             }
2984             OPENSSL_free(senc);
2985             EVP_CIPHER_CTX_free(ctx);
2986             HMAC_CTX_free(hctx);
2987             return 1;
2988         }
2989         if (ret < 0)
2990             goto err;
2991         iv_len = EVP_CIPHER_CTX_iv_length(ctx);
2992     } else {
2993         const EVP_CIPHER *cipher = EVP_aes_256_cbc();
2994
2995         iv_len = EVP_CIPHER_iv_length(cipher);
2996         if (RAND_bytes(iv, iv_len) <= 0)
2997             goto err;
2998         if (!EVP_EncryptInit_ex(ctx, cipher, NULL,
2999                                 tctx->tlsext_tick_aes_key, iv))
3000             goto err;
3001         if (!HMAC_Init_ex(hctx, tctx->tlsext_tick_hmac_key,
3002                           sizeof(tctx->tlsext_tick_hmac_key),
3003                           EVP_sha256(), NULL))
3004             goto err;
3005         memcpy(key_name, tctx->tlsext_tick_key_name,
3006                sizeof(tctx->tlsext_tick_key_name));
3007     }
3008
3009     /*
3010      * Ticket lifetime hint (advisory only): We leave this unspecified
3011      * for resumed session (for simplicity), and guess that tickets for
3012      * new sessions will live as long as their sessions.
3013      */
3014     if (!WPACKET_put_bytes_u32(pkt, s->hit ? 0 : s->session->timeout)
3015                /* Now the actual ticket data */
3016             || !WPACKET_start_sub_packet_u16(pkt)
3017             || !WPACKET_get_total_written(pkt, &macoffset)
3018                /* Output key name */
3019             || !WPACKET_memcpy(pkt, key_name, sizeof(key_name))
3020                /* output IV */
3021             || !WPACKET_memcpy(pkt, iv, iv_len)
3022             || !WPACKET_reserve_bytes(pkt, slen + EVP_MAX_BLOCK_LENGTH,
3023                                       &encdata1)
3024                /* Encrypt session data */
3025             || !EVP_EncryptUpdate(ctx, encdata1, &len, senc, slen)
3026             || !WPACKET_allocate_bytes(pkt, len, &encdata2)
3027             || encdata1 != encdata2
3028             || !EVP_EncryptFinal(ctx, encdata1 + len, &lenfinal)
3029             || !WPACKET_allocate_bytes(pkt, lenfinal, &encdata2)
3030             || encdata1 + len != encdata2
3031             || len + lenfinal > slen + EVP_MAX_BLOCK_LENGTH
3032             || !WPACKET_get_total_written(pkt, &macendoffset)
3033             || !HMAC_Update(hctx,
3034                             (unsigned char *)s->init_buf->data + macoffset,
3035                             macendoffset - macoffset)
3036             || !WPACKET_reserve_bytes(pkt, EVP_MAX_MD_SIZE, &macdata1)
3037             || !HMAC_Final(hctx, macdata1, &hlen)
3038             || hlen > EVP_MAX_MD_SIZE
3039             || !WPACKET_allocate_bytes(pkt, hlen, &macdata2)
3040             || macdata1 != macdata2
3041             || !WPACKET_close(pkt)) {
3042         SSLerr(SSL_F_TLS_CONSTRUCT_NEW_SESSION_TICKET, ERR_R_INTERNAL_ERROR);
3043         goto err;
3044     }
3045     EVP_CIPHER_CTX_free(ctx);
3046     HMAC_CTX_free(hctx);
3047     OPENSSL_free(senc);
3048
3049     return 1;
3050  err:
3051     OPENSSL_free(senc);
3052     EVP_CIPHER_CTX_free(ctx);
3053     HMAC_CTX_free(hctx);
3054     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3055     return 0;
3056 }
3057
3058 int tls_construct_cert_status(SSL *s, WPACKET *pkt)
3059 {
3060     if (!WPACKET_put_bytes_u8(pkt, s->tlsext_status_type)
3061             || !WPACKET_sub_memcpy_u24(pkt, s->tlsext_ocsp_resp,
3062                                        s->tlsext_ocsp_resplen)) {
3063         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_STATUS, ERR_R_INTERNAL_ERROR);
3064         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3065         return 0;
3066     }
3067
3068     return 1;
3069 }
3070
3071 #ifndef OPENSSL_NO_NEXTPROTONEG
3072 /*
3073  * tls_process_next_proto reads a Next Protocol Negotiation handshake message.
3074  * It sets the next_proto member in s if found
3075  */
3076 MSG_PROCESS_RETURN tls_process_next_proto(SSL *s, PACKET *pkt)
3077 {
3078     PACKET next_proto, padding;
3079     size_t next_proto_len;
3080
3081     /*-
3082      * The payload looks like:
3083      *   uint8 proto_len;
3084      *   uint8 proto[proto_len];
3085      *   uint8 padding_len;
3086      *   uint8 padding[padding_len];
3087      */
3088     if (!PACKET_get_length_prefixed_1(pkt, &next_proto)
3089         || !PACKET_get_length_prefixed_1(pkt, &padding)
3090         || PACKET_remaining(pkt) > 0) {
3091         SSLerr(SSL_F_TLS_PROCESS_NEXT_PROTO, SSL_R_LENGTH_MISMATCH);
3092         goto err;
3093     }
3094
3095     if (!PACKET_memdup(&next_proto, &s->next_proto_negotiated, &next_proto_len)) {
3096         s->next_proto_negotiated_len = 0;
3097         goto err;
3098     }
3099
3100     s->next_proto_negotiated_len = (unsigned char)next_proto_len;
3101
3102     return MSG_PROCESS_CONTINUE_READING;
3103  err:
3104     ossl_statem_set_error(s);
3105     return MSG_PROCESS_ERROR;
3106 }
3107 #endif
3108
3109 #define SSLV2_CIPHER_LEN    3
3110
3111 STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,
3112                                                PACKET *cipher_suites,
3113                                                STACK_OF(SSL_CIPHER) **skp,
3114                                                int sslv2format, int *al)
3115 {
3116     const SSL_CIPHER *c;
3117     STACK_OF(SSL_CIPHER) *sk;
3118     int n;
3119     /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
3120     unsigned char cipher[SSLV2_CIPHER_LEN];
3121
3122     s->s3->send_connection_binding = 0;
3123
3124     n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;
3125
3126     if (PACKET_remaining(cipher_suites) == 0) {
3127         SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, SSL_R_NO_CIPHERS_SPECIFIED);
3128         *al = SSL_AD_ILLEGAL_PARAMETER;
3129         return NULL;
3130     }
3131
3132     if (PACKET_remaining(cipher_suites) % n != 0) {
3133         SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3134                SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
3135         *al = SSL_AD_DECODE_ERROR;
3136         return NULL;
3137     }
3138
3139     if ((skp == NULL) || (*skp == NULL)) {
3140         sk = sk_SSL_CIPHER_new_null(); /* change perhaps later */
3141         if (sk == NULL) {
3142             SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
3143             *al = SSL_AD_INTERNAL_ERROR;
3144             return NULL;
3145         }
3146     } else {
3147         sk = *skp;
3148         sk_SSL_CIPHER_zero(sk);
3149     }
3150
3151     if (!PACKET_memdup(cipher_suites, &s->s3->tmp.ciphers_raw,
3152                        &s->s3->tmp.ciphers_rawlen)) {
3153         *al = SSL_AD_INTERNAL_ERROR;
3154         goto err;
3155     }
3156
3157     while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
3158         /*
3159          * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
3160          * first byte set to zero, while true SSLv2 ciphers have a non-zero
3161          * first byte. We don't support any true SSLv2 ciphers, so skip them.
3162          */
3163         if (sslv2format && cipher[0] != '\0')
3164             continue;
3165
3166         /* Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV */
3167         if ((cipher[n - 2] == ((SSL3_CK_SCSV >> 8) & 0xff)) &&
3168             (cipher[n - 1] == (SSL3_CK_SCSV & 0xff))) {
3169             /* SCSV fatal if renegotiating */
3170             if (s->renegotiate) {
3171                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3172                        SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
3173                 *al = SSL_AD_HANDSHAKE_FAILURE;
3174                 goto err;
3175             }
3176             s->s3->send_connection_binding = 1;
3177             continue;
3178         }
3179
3180         /* Check for TLS_FALLBACK_SCSV */
3181         if ((cipher[n - 2] == ((SSL3_CK_FALLBACK_SCSV >> 8) & 0xff)) &&
3182             (cipher[n - 1] == (SSL3_CK_FALLBACK_SCSV & 0xff))) {
3183             /*
3184              * The SCSV indicates that the client previously tried a higher
3185              * version. Fail if the current version is an unexpected
3186              * downgrade.
3187              */
3188             if (!ssl_check_version_downgrade(s)) {
3189                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
3190                        SSL_R_INAPPROPRIATE_FALLBACK);
3191                 *al = SSL_AD_INAPPROPRIATE_FALLBACK;
3192                 goto err;
3193             }
3194             continue;
3195         }
3196
3197         /* For SSLv2-compat, ignore leading 0-byte. */
3198         c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher);
3199         if (c != NULL) {
3200             if (!sk_SSL_CIPHER_push(sk, c)) {
3201                 SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
3202                 *al = SSL_AD_INTERNAL_ERROR;
3203                 goto err;
3204             }
3205         }
3206     }
3207     if (PACKET_remaining(cipher_suites) > 0) {
3208         *al = SSL_AD_INTERNAL_ERROR;
3209         SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_INTERNAL_ERROR);
3210         goto err;
3211     }
3212
3213     if (skp != NULL)
3214         *skp = sk;
3215     return (sk);
3216  err:
3217     if ((skp == NULL) || (*skp == NULL))
3218         sk_SSL_CIPHER_free(sk);
3219     return NULL;
3220 }