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