d5d622c1c5fb4d85e47cf33b205b7872813081e7
[openssl.git] / ssl / statem / statem_clnt.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 <openssl/buffer.h>
54 #include <openssl/rand.h>
55 #include <openssl/objects.h>
56 #include <openssl/evp.h>
57 #include <openssl/md5.h>
58 #include <openssl/dh.h>
59 #include <openssl/bn.h>
60 #include <openssl/engine.h>
61
62 static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt);
63
64 static ossl_inline int cert_req_allowed(SSL *s);
65 static int key_exchange_expected(SSL *s);
66 static int ca_dn_cmp(const X509_NAME *const *a, const X509_NAME *const *b);
67 static int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk,
68                                     WPACKET *pkt);
69
70 /*
71  * Is a CertificateRequest message allowed at the moment or not?
72  *
73  *  Return values are:
74  *  1: Yes
75  *  0: No
76  */
77 static ossl_inline int cert_req_allowed(SSL *s)
78 {
79     /* TLS does not like anon-DH with client cert */
80     if ((s->version > SSL3_VERSION
81          && (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL))
82         || (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aSRP | SSL_aPSK)))
83         return 0;
84
85     return 1;
86 }
87
88 /*
89  * Should we expect the ServerKeyExchange message or not?
90  *
91  *  Return values are:
92  *  1: Yes
93  *  0: No
94  */
95 static int key_exchange_expected(SSL *s)
96 {
97     long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
98
99     /*
100      * Can't skip server key exchange if this is an ephemeral
101      * ciphersuite or for SRP
102      */
103     if (alg_k & (SSL_kDHE | SSL_kECDHE | SSL_kDHEPSK | SSL_kECDHEPSK
104                  | SSL_kSRP)) {
105         return 1;
106     }
107
108     return 0;
109 }
110
111 /*
112  * ossl_statem_client_read_transition() encapsulates the logic for the allowed
113  * handshake state transitions when a TLS1.3 client is reading messages from the
114  * server. The message type that the server has sent is provided in |mt|. The
115  * current state is in |s->statem.hand_state|.
116  *
117  * Return values are 1 for success (transition allowed) and  0 on error
118  * (transition not allowed)
119  */
120 static int ossl_statem_client13_read_transition(SSL *s, int mt)
121 {
122     OSSL_STATEM *st = &s->statem;
123
124     /*
125      * TODO(TLS1.3): This is still based on the TLSv1.2 state machine. Over time
126      * we will update this to look more like real TLSv1.3
127      */
128
129     /*
130      * Note: There is no case for TLS_ST_CW_CLNT_HELLO, because we haven't
131      * yet negotiated TLSv1.3 at that point so that is handled by
132      * ossl_statem_client_read_transition()
133      */
134
135     switch (st->hand_state) {
136     default:
137         break;
138
139     case TLS_ST_CR_SRVR_HELLO:
140         if (mt == SSL3_MT_ENCRYPTED_EXTENSIONS) {
141             st->hand_state = TLS_ST_CR_ENCRYPTED_EXTENSIONS;
142             return 1;
143         }
144         break;
145
146     case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
147         if (s->hit) {
148             if (mt == SSL3_MT_FINISHED) {
149                 st->hand_state = TLS_ST_CR_FINISHED;
150                 return 1;
151             }
152         } else {
153             if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
154                 st->hand_state = TLS_ST_CR_CERT_REQ;
155                 return 1;
156             }
157             if (mt == SSL3_MT_CERTIFICATE) {
158                 st->hand_state = TLS_ST_CR_CERT;
159                 return 1;
160             }
161         }
162         break;
163
164     case TLS_ST_CR_CERT_REQ:
165         if (mt == SSL3_MT_CERTIFICATE) {
166             st->hand_state = TLS_ST_CR_CERT;
167             return 1;
168         }
169         break;
170
171     case TLS_ST_CR_CERT:
172         if (mt == SSL3_MT_CERTIFICATE_VERIFY) {
173             st->hand_state = TLS_ST_CR_CERT_VRFY;
174             return 1;
175         }
176         break;
177
178     case TLS_ST_CR_CERT_VRFY:
179         if (mt == SSL3_MT_FINISHED) {
180             st->hand_state = TLS_ST_CR_FINISHED;
181             return 1;
182         }
183         break;
184
185     case TLS_ST_OK:
186         if (mt == SSL3_MT_NEWSESSION_TICKET) {
187             st->hand_state = TLS_ST_CR_SESSION_TICKET;
188             return 1;
189         }
190         break;
191     }
192
193     /* No valid transition found */
194     return 0;
195 }
196
197 /*
198  * ossl_statem_client_read_transition() encapsulates the logic for the allowed
199  * handshake state transitions when the client is reading messages from the
200  * server. The message type that the server has sent is provided in |mt|. The
201  * current state is in |s->statem.hand_state|.
202  *
203  * Return values are 1 for success (transition allowed) and  0 on error
204  * (transition not allowed)
205  */
206 int ossl_statem_client_read_transition(SSL *s, int mt)
207 {
208     OSSL_STATEM *st = &s->statem;
209     int ske_expected;
210
211     /*
212      * Note that after a ClientHello we don't know what version we are going
213      * to negotiate yet, so we don't take this branch until later
214      */
215     if (SSL_IS_TLS13(s)) {
216         if (!ossl_statem_client13_read_transition(s, mt))
217             goto err;
218         return 1;
219     }
220
221     switch (st->hand_state) {
222     default:
223         break;
224
225     case TLS_ST_CW_CLNT_HELLO:
226         if (mt == SSL3_MT_SERVER_HELLO) {
227             st->hand_state = TLS_ST_CR_SRVR_HELLO;
228             return 1;
229         }
230
231         if (SSL_IS_DTLS(s)) {
232             if (mt == DTLS1_MT_HELLO_VERIFY_REQUEST) {
233                 st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST;
234                 return 1;
235             }
236         }
237         break;
238
239     case TLS_ST_CR_SRVR_HELLO:
240         if (s->hit) {
241             if (s->ext.ticket_expected) {
242                 if (mt == SSL3_MT_NEWSESSION_TICKET) {
243                     st->hand_state = TLS_ST_CR_SESSION_TICKET;
244                     return 1;
245                 }
246             } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
247                 st->hand_state = TLS_ST_CR_CHANGE;
248                 return 1;
249             }
250         } else {
251             if (SSL_IS_DTLS(s) && mt == DTLS1_MT_HELLO_VERIFY_REQUEST) {
252                 st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST;
253                 return 1;
254             } else if (s->version >= TLS1_VERSION
255                        && s->ext.session_secret_cb != NULL
256                        && s->session->ext.tick != NULL
257                        && mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
258                 /*
259                  * Normally, we can tell if the server is resuming the session
260                  * from the session ID. EAP-FAST (RFC 4851), however, relies on
261                  * the next server message after the ServerHello to determine if
262                  * the server is resuming.
263                  */
264                 s->hit = 1;
265                 st->hand_state = TLS_ST_CR_CHANGE;
266                 return 1;
267             } else if (!(s->s3->tmp.new_cipher->algorithm_auth
268                          & (SSL_aNULL | SSL_aSRP | SSL_aPSK))) {
269                 if (mt == SSL3_MT_CERTIFICATE) {
270                     st->hand_state = TLS_ST_CR_CERT;
271                     return 1;
272                 }
273             } else {
274                 ske_expected = key_exchange_expected(s);
275                 /* SKE is optional for some PSK ciphersuites */
276                 if (ske_expected
277                     || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
278                         && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
279                     if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
280                         st->hand_state = TLS_ST_CR_KEY_EXCH;
281                         return 1;
282                     }
283                 } else if (mt == SSL3_MT_CERTIFICATE_REQUEST
284                            && cert_req_allowed(s)) {
285                     st->hand_state = TLS_ST_CR_CERT_REQ;
286                     return 1;
287                 } else if (mt == SSL3_MT_SERVER_DONE) {
288                     st->hand_state = TLS_ST_CR_SRVR_DONE;
289                     return 1;
290                 }
291             }
292         }
293         break;
294
295     case TLS_ST_CR_CERT:
296         /*
297          * The CertificateStatus message is optional even if
298          * |ext.status_expected| is set
299          */
300         if (s->ext.status_expected && mt == SSL3_MT_CERTIFICATE_STATUS) {
301             st->hand_state = TLS_ST_CR_CERT_STATUS;
302             return 1;
303         }
304         /* Fall through */
305
306     case TLS_ST_CR_CERT_STATUS:
307         ske_expected = key_exchange_expected(s);
308         /* SKE is optional for some PSK ciphersuites */
309         if (ske_expected || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)
310                              && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) {
311             if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) {
312                 st->hand_state = TLS_ST_CR_KEY_EXCH;
313                 return 1;
314             }
315             goto err;
316         }
317         /* Fall through */
318
319     case TLS_ST_CR_KEY_EXCH:
320         if (mt == SSL3_MT_CERTIFICATE_REQUEST) {
321             if (cert_req_allowed(s)) {
322                 st->hand_state = TLS_ST_CR_CERT_REQ;
323                 return 1;
324             }
325             goto err;
326         }
327         /* Fall through */
328
329     case TLS_ST_CR_CERT_REQ:
330         if (mt == SSL3_MT_SERVER_DONE) {
331             st->hand_state = TLS_ST_CR_SRVR_DONE;
332             return 1;
333         }
334         break;
335
336     case TLS_ST_CW_FINISHED:
337         if (s->ext.ticket_expected) {
338             if (mt == SSL3_MT_NEWSESSION_TICKET) {
339                 st->hand_state = TLS_ST_CR_SESSION_TICKET;
340                 return 1;
341             }
342         } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
343             st->hand_state = TLS_ST_CR_CHANGE;
344             return 1;
345         }
346         break;
347
348     case TLS_ST_CR_SESSION_TICKET:
349         if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
350             st->hand_state = TLS_ST_CR_CHANGE;
351             return 1;
352         }
353         break;
354
355     case TLS_ST_CR_CHANGE:
356         if (mt == SSL3_MT_FINISHED) {
357             st->hand_state = TLS_ST_CR_FINISHED;
358             return 1;
359         }
360         break;
361
362     case TLS_ST_OK:
363         if (mt == SSL3_MT_HELLO_REQUEST) {
364             st->hand_state = TLS_ST_CR_HELLO_REQ;
365             return 1;
366         }
367         break;
368     }
369
370  err:
371     /* No valid transition found */
372     ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_UNEXPECTED_MESSAGE);
373     SSLerr(SSL_F_OSSL_STATEM_CLIENT_READ_TRANSITION, SSL_R_UNEXPECTED_MESSAGE);
374     return 0;
375 }
376
377 /*
378  * ossl_statem_client13_write_transition() works out what handshake state to
379  * move to next when the TLSv1.3 client is writing messages to be sent to the
380  * server.
381  */
382 static WRITE_TRAN ossl_statem_client13_write_transition(SSL *s)
383 {
384     OSSL_STATEM *st = &s->statem;
385
386     /*
387      * TODO(TLS1.3): This is still based on the TLSv1.2 state machine. Over time
388      * we will update this to look more like real TLSv1.3
389      */
390
391     /*
392      * Note: There are no cases for TLS_ST_BEFORE or TLS_ST_CW_CLNT_HELLO,
393      * because we haven't negotiated TLSv1.3 yet at that point. They are
394      * handled by ossl_statem_client_write_transition().
395      */
396     switch (st->hand_state) {
397     default:
398         /* Shouldn't happen */
399         return WRITE_TRAN_ERROR;
400
401     case TLS_ST_CR_FINISHED:
402         st->hand_state = (s->s3->tmp.cert_req != 0) ? TLS_ST_CW_CERT
403                                                     : TLS_ST_CW_FINISHED;
404         return WRITE_TRAN_CONTINUE;
405
406     case TLS_ST_CW_CERT:
407         /* If a non-empty Certificate we also send CertificateVerify */
408         st->hand_state = (s->s3->tmp.cert_req == 1) ? TLS_ST_CW_CERT_VRFY
409                                                     : TLS_ST_CW_FINISHED;
410         return WRITE_TRAN_CONTINUE;
411
412     case TLS_ST_CW_CERT_VRFY:
413         st->hand_state = TLS_ST_CW_FINISHED;
414         return WRITE_TRAN_CONTINUE;
415
416     case TLS_ST_CR_SESSION_TICKET:
417     case TLS_ST_CW_FINISHED:
418         st->hand_state = TLS_ST_OK;
419         ossl_statem_set_in_init(s, 0);
420         return WRITE_TRAN_CONTINUE;
421
422     case TLS_ST_OK:
423         /* Just go straight to trying to read from the server */
424         return WRITE_TRAN_FINISHED;
425     }
426 }
427
428 /*
429  * ossl_statem_client_write_transition() works out what handshake state to
430  * move to next when the client is writing messages to be sent to the server.
431  */
432 WRITE_TRAN ossl_statem_client_write_transition(SSL *s)
433 {
434     OSSL_STATEM *st = &s->statem;
435
436     /*
437      * Note that immediately before/after a ClientHello we don't know what
438      * version we are going to negotiate yet, so we don't take this branch until
439      * later
440      */
441     if (SSL_IS_TLS13(s))
442         return ossl_statem_client13_write_transition(s);
443
444     switch (st->hand_state) {
445     default:
446         /* Shouldn't happen */
447         return WRITE_TRAN_ERROR;
448
449     case TLS_ST_OK:
450         if (!s->renegotiate) {
451             /*
452              * We haven't requested a renegotiation ourselves so we must have
453              * received a message from the server. Better read it.
454              */
455             return WRITE_TRAN_FINISHED;
456         }
457         /* Renegotiation - fall through */
458     case TLS_ST_BEFORE:
459         st->hand_state = TLS_ST_CW_CLNT_HELLO;
460         return WRITE_TRAN_CONTINUE;
461
462     case TLS_ST_CW_CLNT_HELLO:
463         /*
464          * No transition at the end of writing because we don't know what
465          * we will be sent
466          */
467         return WRITE_TRAN_FINISHED;
468
469     case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
470         st->hand_state = TLS_ST_CW_CLNT_HELLO;
471         return WRITE_TRAN_CONTINUE;
472
473     case TLS_ST_CR_SRVR_DONE:
474         if (s->s3->tmp.cert_req)
475             st->hand_state = TLS_ST_CW_CERT;
476         else
477             st->hand_state = TLS_ST_CW_KEY_EXCH;
478         return WRITE_TRAN_CONTINUE;
479
480     case TLS_ST_CW_CERT:
481         st->hand_state = TLS_ST_CW_KEY_EXCH;
482         return WRITE_TRAN_CONTINUE;
483
484     case TLS_ST_CW_KEY_EXCH:
485         /*
486          * For TLS, cert_req is set to 2, so a cert chain of nothing is
487          * sent, but no verify packet is sent
488          */
489         /*
490          * XXX: For now, we do not support client authentication in ECDH
491          * cipher suites with ECDH (rather than ECDSA) certificates. We
492          * need to skip the certificate verify message when client's
493          * ECDH public key is sent inside the client certificate.
494          */
495         if (s->s3->tmp.cert_req == 1) {
496             st->hand_state = TLS_ST_CW_CERT_VRFY;
497         } else {
498             st->hand_state = TLS_ST_CW_CHANGE;
499         }
500         if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY) {
501             st->hand_state = TLS_ST_CW_CHANGE;
502         }
503         return WRITE_TRAN_CONTINUE;
504
505     case TLS_ST_CW_CERT_VRFY:
506         st->hand_state = TLS_ST_CW_CHANGE;
507         return WRITE_TRAN_CONTINUE;
508
509     case TLS_ST_CW_CHANGE:
510 #if defined(OPENSSL_NO_NEXTPROTONEG)
511         st->hand_state = TLS_ST_CW_FINISHED;
512 #else
513         if (!SSL_IS_DTLS(s) && s->s3->npn_seen)
514             st->hand_state = TLS_ST_CW_NEXT_PROTO;
515         else
516             st->hand_state = TLS_ST_CW_FINISHED;
517 #endif
518         return WRITE_TRAN_CONTINUE;
519
520 #if !defined(OPENSSL_NO_NEXTPROTONEG)
521     case TLS_ST_CW_NEXT_PROTO:
522         st->hand_state = TLS_ST_CW_FINISHED;
523         return WRITE_TRAN_CONTINUE;
524 #endif
525
526     case TLS_ST_CW_FINISHED:
527         if (s->hit) {
528             st->hand_state = TLS_ST_OK;
529             ossl_statem_set_in_init(s, 0);
530             return WRITE_TRAN_CONTINUE;
531         } else {
532             return WRITE_TRAN_FINISHED;
533         }
534
535     case TLS_ST_CR_FINISHED:
536         if (s->hit) {
537             st->hand_state = TLS_ST_CW_CHANGE;
538             return WRITE_TRAN_CONTINUE;
539         } else {
540             st->hand_state = TLS_ST_OK;
541             ossl_statem_set_in_init(s, 0);
542             return WRITE_TRAN_CONTINUE;
543         }
544
545     case TLS_ST_CR_HELLO_REQ:
546         /*
547          * If we can renegotiate now then do so, otherwise wait for a more
548          * convenient time.
549          */
550         if (ssl3_renegotiate_check(s, 1)) {
551             if (!tls_setup_handshake(s)) {
552                 ossl_statem_set_error(s);
553                 return WRITE_TRAN_ERROR;
554             }
555             st->hand_state = TLS_ST_CW_CLNT_HELLO;
556             return WRITE_TRAN_CONTINUE;
557         }
558         st->hand_state = TLS_ST_OK;
559         ossl_statem_set_in_init(s, 0);
560         return WRITE_TRAN_CONTINUE;
561     }
562 }
563
564 /*
565  * Perform any pre work that needs to be done prior to sending a message from
566  * the client to the server.
567  */
568 WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst)
569 {
570     OSSL_STATEM *st = &s->statem;
571
572     switch (st->hand_state) {
573     default:
574         /* No pre work to be done */
575         break;
576
577     case TLS_ST_CW_CLNT_HELLO:
578         s->shutdown = 0;
579         if (SSL_IS_DTLS(s)) {
580             /* every DTLS ClientHello resets Finished MAC */
581             if (!ssl3_init_finished_mac(s)) {
582                 ossl_statem_set_error(s);
583                 return WORK_ERROR;
584             }
585         }
586         break;
587
588     case TLS_ST_CW_CHANGE:
589         if (SSL_IS_DTLS(s)) {
590             if (s->hit) {
591                 /*
592                  * We're into the last flight so we don't retransmit these
593                  * messages unless we need to.
594                  */
595                 st->use_timer = 0;
596             }
597 #ifndef OPENSSL_NO_SCTP
598             if (BIO_dgram_is_sctp(SSL_get_wbio(s)))
599                 return dtls_wait_for_dry(s);
600 #endif
601         }
602         break;
603
604     case TLS_ST_OK:
605         return tls_finish_handshake(s, wst, 1);
606     }
607
608     return WORK_FINISHED_CONTINUE;
609 }
610
611 /*
612  * Perform any work that needs to be done after sending a message from the
613  * client to the server.
614     case TLS_ST_SR_CERT_VRFY:
615         return SSL3_RT_MAX_PLAIN_LENGTH;
616  */
617 WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst)
618 {
619     OSSL_STATEM *st = &s->statem;
620
621     s->init_num = 0;
622
623     switch (st->hand_state) {
624     default:
625         /* No post work to be done */
626         break;
627
628     case TLS_ST_CW_CLNT_HELLO:
629         if (wst == WORK_MORE_A && statem_flush(s) != 1)
630             return WORK_MORE_A;
631
632         if (SSL_IS_DTLS(s)) {
633             /* Treat the next message as the first packet */
634             s->first_packet = 1;
635         }
636         break;
637
638     case TLS_ST_CW_KEY_EXCH:
639         if (tls_client_key_exchange_post_work(s) == 0)
640             return WORK_ERROR;
641         break;
642
643     case TLS_ST_CW_CHANGE:
644         s->session->cipher = s->s3->tmp.new_cipher;
645 #ifdef OPENSSL_NO_COMP
646         s->session->compress_meth = 0;
647 #else
648         if (s->s3->tmp.new_compression == NULL)
649             s->session->compress_meth = 0;
650         else
651             s->session->compress_meth = s->s3->tmp.new_compression->id;
652 #endif
653         if (!s->method->ssl3_enc->setup_key_block(s))
654             return WORK_ERROR;
655
656         if (!s->method->ssl3_enc->change_cipher_state(s,
657                                                       SSL3_CHANGE_CIPHER_CLIENT_WRITE))
658             return WORK_ERROR;
659
660         if (SSL_IS_DTLS(s)) {
661 #ifndef OPENSSL_NO_SCTP
662             if (s->hit) {
663                 /*
664                  * Change to new shared key of SCTP-Auth, will be ignored if
665                  * no SCTP used.
666                  */
667                 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
668                          0, NULL);
669             }
670 #endif
671
672             dtls1_reset_seq_numbers(s, SSL3_CC_WRITE);
673         }
674         break;
675
676     case TLS_ST_CW_FINISHED:
677 #ifndef OPENSSL_NO_SCTP
678         if (wst == WORK_MORE_A && SSL_IS_DTLS(s) && s->hit == 0) {
679             /*
680              * Change to new shared key of SCTP-Auth, will be ignored if
681              * no SCTP used.
682              */
683             BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
684                      0, NULL);
685         }
686 #endif
687         if (statem_flush(s) != 1)
688             return WORK_MORE_B;
689
690         if (SSL_IS_TLS13(s)) {
691             if (!s->method->ssl3_enc->change_cipher_state(s,
692                         SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_CLIENT_WRITE))
693             return WORK_ERROR;
694         }
695         break;
696     }
697
698     return WORK_FINISHED_CONTINUE;
699 }
700
701 /*
702  * Get the message construction function and message type for sending from the
703  * client
704  *
705  * Valid return values are:
706  *   1: Success
707  *   0: Error
708  */
709 int ossl_statem_client_construct_message(SSL *s, WPACKET *pkt,
710                                          confunc_f *confunc, int *mt)
711 {
712     OSSL_STATEM *st = &s->statem;
713
714     switch (st->hand_state) {
715     default:
716         /* Shouldn't happen */
717         return 0;
718
719     case TLS_ST_CW_CHANGE:
720         if (SSL_IS_DTLS(s))
721             *confunc = dtls_construct_change_cipher_spec;
722         else
723             *confunc = tls_construct_change_cipher_spec;
724         *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
725         break;
726
727     case TLS_ST_CW_CLNT_HELLO:
728         *confunc = tls_construct_client_hello;
729         *mt = SSL3_MT_CLIENT_HELLO;
730         break;
731
732     case TLS_ST_CW_CERT:
733         *confunc = tls_construct_client_certificate;
734         *mt = SSL3_MT_CERTIFICATE;
735         break;
736
737     case TLS_ST_CW_KEY_EXCH:
738         *confunc = tls_construct_client_key_exchange;
739         *mt = SSL3_MT_CLIENT_KEY_EXCHANGE;
740         break;
741
742     case TLS_ST_CW_CERT_VRFY:
743         *confunc = tls_construct_cert_verify;
744         *mt = SSL3_MT_CERTIFICATE_VERIFY;
745         break;
746
747 #if !defined(OPENSSL_NO_NEXTPROTONEG)
748     case TLS_ST_CW_NEXT_PROTO:
749         *confunc = tls_construct_next_proto;
750         *mt = SSL3_MT_NEXT_PROTO;
751         break;
752 #endif
753     case TLS_ST_CW_FINISHED:
754         *confunc = tls_construct_finished;
755         *mt = SSL3_MT_FINISHED;
756         break;
757     }
758
759     return 1;
760 }
761
762 /*
763  * Returns the maximum allowed length for the current message that we are
764  * reading. Excludes the message header.
765  */
766 size_t ossl_statem_client_max_message_size(SSL *s)
767 {
768     OSSL_STATEM *st = &s->statem;
769
770     switch (st->hand_state) {
771     default:
772         /* Shouldn't happen */
773         return 0;
774
775     case TLS_ST_CR_SRVR_HELLO:
776         return SERVER_HELLO_MAX_LENGTH;
777
778     case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
779         return HELLO_VERIFY_REQUEST_MAX_LENGTH;
780
781     case TLS_ST_CR_CERT:
782         return s->max_cert_list;
783
784     case TLS_ST_CR_CERT_VRFY:
785         return SSL3_RT_MAX_PLAIN_LENGTH;
786
787     case TLS_ST_CR_CERT_STATUS:
788         return SSL3_RT_MAX_PLAIN_LENGTH;
789
790     case TLS_ST_CR_KEY_EXCH:
791         return SERVER_KEY_EXCH_MAX_LENGTH;
792
793     case TLS_ST_CR_CERT_REQ:
794         /*
795          * Set to s->max_cert_list for compatibility with previous releases. In
796          * practice these messages can get quite long if servers are configured
797          * to provide a long list of acceptable CAs
798          */
799         return s->max_cert_list;
800
801     case TLS_ST_CR_SRVR_DONE:
802         return SERVER_HELLO_DONE_MAX_LENGTH;
803
804     case TLS_ST_CR_CHANGE:
805         if (s->version == DTLS1_BAD_VER)
806             return 3;
807         return CCS_MAX_LENGTH;
808
809     case TLS_ST_CR_SESSION_TICKET:
810         return SSL3_RT_MAX_PLAIN_LENGTH;
811
812     case TLS_ST_CR_FINISHED:
813         return FINISHED_MAX_LENGTH;
814
815     case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
816         return ENCRYPTED_EXTENSIONS_MAX_LENGTH;
817     }
818 }
819
820 /*
821  * Process a message that the client has been received from the server.
822  */
823 MSG_PROCESS_RETURN ossl_statem_client_process_message(SSL *s, PACKET *pkt)
824 {
825     OSSL_STATEM *st = &s->statem;
826
827     switch (st->hand_state) {
828     default:
829         /* Shouldn't happen */
830         return MSG_PROCESS_ERROR;
831
832     case TLS_ST_CR_SRVR_HELLO:
833         return tls_process_server_hello(s, pkt);
834
835     case DTLS_ST_CR_HELLO_VERIFY_REQUEST:
836         return dtls_process_hello_verify(s, pkt);
837
838     case TLS_ST_CR_CERT:
839         return tls_process_server_certificate(s, pkt);
840
841     case TLS_ST_CR_CERT_VRFY:
842         return tls_process_cert_verify(s, pkt);
843
844     case TLS_ST_CR_CERT_STATUS:
845         return tls_process_cert_status(s, pkt);
846
847     case TLS_ST_CR_KEY_EXCH:
848         return tls_process_key_exchange(s, pkt);
849
850     case TLS_ST_CR_CERT_REQ:
851         return tls_process_certificate_request(s, pkt);
852
853     case TLS_ST_CR_SRVR_DONE:
854         return tls_process_server_done(s, pkt);
855
856     case TLS_ST_CR_CHANGE:
857         return tls_process_change_cipher_spec(s, pkt);
858
859     case TLS_ST_CR_SESSION_TICKET:
860         return tls_process_new_session_ticket(s, pkt);
861
862     case TLS_ST_CR_FINISHED:
863         return tls_process_finished(s, pkt);
864
865     case TLS_ST_CR_HELLO_REQ:
866         return tls_process_hello_req(s, pkt);
867
868     case TLS_ST_CR_ENCRYPTED_EXTENSIONS:
869         return tls_process_encrypted_extensions(s, pkt);
870     }
871 }
872
873 /*
874  * Perform any further processing required following the receipt of a message
875  * from the server
876  */
877 WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst)
878 {
879     OSSL_STATEM *st = &s->statem;
880
881     switch (st->hand_state) {
882     default:
883         /* Shouldn't happen */
884         return WORK_ERROR;
885
886     case TLS_ST_CR_CERT_REQ:
887         return tls_prepare_client_certificate(s, wst);
888
889 #ifndef OPENSSL_NO_SCTP
890     case TLS_ST_CR_SRVR_DONE:
891         /* We only get here if we are using SCTP and we are renegotiating */
892         if (BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
893             s->s3->in_read_app_data = 2;
894             s->rwstate = SSL_READING;
895             BIO_clear_retry_flags(SSL_get_rbio(s));
896             BIO_set_retry_read(SSL_get_rbio(s));
897             ossl_statem_set_sctp_read_sock(s, 1);
898             return WORK_MORE_A;
899         }
900         ossl_statem_set_sctp_read_sock(s, 0);
901         return WORK_FINISHED_STOP;
902 #endif
903     }
904 }
905
906 int tls_construct_client_hello(SSL *s, WPACKET *pkt)
907 {
908     unsigned char *p;
909     size_t sess_id_len;
910     int i, protverr;
911     int al = SSL_AD_HANDSHAKE_FAILURE;
912 #ifndef OPENSSL_NO_COMP
913     SSL_COMP *comp;
914 #endif
915     SSL_SESSION *sess = s->session;
916
917     if (!WPACKET_set_max_size(pkt, SSL3_RT_MAX_PLAIN_LENGTH)) {
918         /* Should not happen */
919         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
920         return 0;
921     }
922
923     /* Work out what SSL/TLS/DTLS version to use */
924     protverr = ssl_set_client_hello_version(s);
925     if (protverr != 0) {
926         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, protverr);
927         return 0;
928     }
929
930     if ((sess == NULL) || !ssl_version_supported(s, sess->ssl_version) ||
931         /*
932          * In the case of EAP-FAST, we can have a pre-shared
933          * "ticket" without a session ID.
934          */
935         (!sess->session_id_length && !sess->ext.tick) ||
936         (sess->not_resumable)) {
937         if (!ssl_get_new_session(s, 0))
938             return 0;
939     }
940     /* else use the pre-loaded session */
941
942     /* This is a real handshake so make sure we clean it up at the end */
943     s->statem.cleanuphand = 1;
944
945     p = s->s3->client_random;
946
947     /*
948      * for DTLS if client_random is initialized, reuse it, we are
949      * required to use same upon reply to HelloVerify
950      */
951     if (SSL_IS_DTLS(s)) {
952         size_t idx;
953         i = 1;
954         for (idx = 0; idx < sizeof(s->s3->client_random); idx++) {
955             if (p[idx]) {
956                 i = 0;
957                 break;
958             }
959         }
960     } else
961         i = 1;
962
963     if (i && ssl_fill_hello_random(s, 0, p, sizeof(s->s3->client_random)) <= 0)
964         return 0;
965
966     /*-
967      * version indicates the negotiated version: for example from
968      * an SSLv2/v3 compatible client hello). The client_version
969      * field is the maximum version we permit and it is also
970      * used in RSA encrypted premaster secrets. Some servers can
971      * choke if we initially report a higher version then
972      * renegotiate to a lower one in the premaster secret. This
973      * didn't happen with TLS 1.0 as most servers supported it
974      * but it can with TLS 1.1 or later if the server only supports
975      * 1.0.
976      *
977      * Possible scenario with previous logic:
978      *      1. Client hello indicates TLS 1.2
979      *      2. Server hello says TLS 1.0
980      *      3. RSA encrypted premaster secret uses 1.2.
981      *      4. Handshake proceeds using TLS 1.0.
982      *      5. Server sends hello request to renegotiate.
983      *      6. Client hello indicates TLS v1.0 as we now
984      *         know that is maximum server supports.
985      *      7. Server chokes on RSA encrypted premaster secret
986      *         containing version 1.0.
987      *
988      * For interoperability it should be OK to always use the
989      * maximum version we support in client hello and then rely
990      * on the checking of version to ensure the servers isn't
991      * being inconsistent: for example initially negotiating with
992      * TLS 1.0 and renegotiating with TLS 1.2. We do this by using
993      * client_version in client hello and not resetting it to
994      * the negotiated version.
995      *
996      * For TLS 1.3 we always set the ClientHello version to 1.2 and rely on the
997      * supported_versions extension for the real supported versions.
998      */
999     if (!WPACKET_put_bytes_u16(pkt, s->client_version)
1000             || !WPACKET_memcpy(pkt, s->s3->client_random, SSL3_RANDOM_SIZE)) {
1001         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1002         return 0;
1003     }
1004
1005     /* Session ID */
1006     if (s->new_session || s->session->ssl_version == TLS1_3_VERSION)
1007         sess_id_len = 0;
1008     else
1009         sess_id_len = s->session->session_id_length;
1010     if (sess_id_len > sizeof(s->session->session_id)
1011             || !WPACKET_start_sub_packet_u8(pkt)
1012             || (sess_id_len != 0 && !WPACKET_memcpy(pkt, s->session->session_id,
1013                                                     sess_id_len))
1014             || !WPACKET_close(pkt)) {
1015         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1016         return 0;
1017     }
1018
1019     /* cookie stuff for DTLS */
1020     if (SSL_IS_DTLS(s)) {
1021         if (s->d1->cookie_len > sizeof(s->d1->cookie)
1022                 || !WPACKET_sub_memcpy_u8(pkt, s->d1->cookie,
1023                                           s->d1->cookie_len)) {
1024             SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1025             return 0;
1026         }
1027     }
1028
1029     /* Ciphers supported */
1030     if (!WPACKET_start_sub_packet_u16(pkt)) {
1031         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1032         return 0;
1033     }
1034     /* ssl_cipher_list_to_bytes() raises SSLerr if appropriate */
1035     if (!ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), pkt))
1036         return 0;
1037     if (!WPACKET_close(pkt)) {
1038         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1039         return 0;
1040     }
1041
1042     /* COMPRESSION */
1043     if (!WPACKET_start_sub_packet_u8(pkt)) {
1044         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1045         return 0;
1046     }
1047 #ifndef OPENSSL_NO_COMP
1048     if (ssl_allow_compression(s) && s->ctx->comp_methods) {
1049         int compnum = sk_SSL_COMP_num(s->ctx->comp_methods);
1050         for (i = 0; i < compnum; i++) {
1051             comp = sk_SSL_COMP_value(s->ctx->comp_methods, i);
1052             if (!WPACKET_put_bytes_u8(pkt, comp->id)) {
1053                 SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1054                 return 0;
1055             }
1056         }
1057     }
1058 #endif
1059     /* Add the NULL method */
1060     if (!WPACKET_put_bytes_u8(pkt, 0) || !WPACKET_close(pkt)) {
1061         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1062         return 0;
1063     }
1064
1065     /* TLS extensions */
1066     if (!tls_construct_extensions(s, pkt, EXT_CLIENT_HELLO, NULL, 0, &al)) {
1067         ssl3_send_alert(s, SSL3_AL_FATAL, al);
1068         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1069         return 0;
1070     }
1071
1072     return 1;
1073 }
1074
1075 MSG_PROCESS_RETURN dtls_process_hello_verify(SSL *s, PACKET *pkt)
1076 {
1077     int al;
1078     size_t cookie_len;
1079     PACKET cookiepkt;
1080
1081     if (!PACKET_forward(pkt, 2)
1082         || !PACKET_get_length_prefixed_1(pkt, &cookiepkt)) {
1083         al = SSL_AD_DECODE_ERROR;
1084         SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_MISMATCH);
1085         goto f_err;
1086     }
1087
1088     cookie_len = PACKET_remaining(&cookiepkt);
1089     if (cookie_len > sizeof(s->d1->cookie)) {
1090         al = SSL_AD_ILLEGAL_PARAMETER;
1091         SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_TOO_LONG);
1092         goto f_err;
1093     }
1094
1095     if (!PACKET_copy_bytes(&cookiepkt, s->d1->cookie, cookie_len)) {
1096         al = SSL_AD_DECODE_ERROR;
1097         SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_MISMATCH);
1098         goto f_err;
1099     }
1100     s->d1->cookie_len = cookie_len;
1101
1102     return MSG_PROCESS_FINISHED_READING;
1103  f_err:
1104     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1105     ossl_statem_set_error(s);
1106     return MSG_PROCESS_ERROR;
1107 }
1108
1109 MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt)
1110 {
1111     STACK_OF(SSL_CIPHER) *sk;
1112     const SSL_CIPHER *c;
1113     PACKET session_id, extpkt;
1114     size_t session_id_len;
1115     const unsigned char *cipherchars;
1116     int i, al = SSL_AD_INTERNAL_ERROR;
1117     unsigned int compression;
1118     unsigned int sversion;
1119     unsigned int context;
1120     int protverr;
1121     RAW_EXTENSION *extensions = NULL;
1122 #ifndef OPENSSL_NO_COMP
1123     SSL_COMP *comp;
1124 #endif
1125
1126     if (!PACKET_get_net_2(pkt, &sversion)) {
1127         al = SSL_AD_DECODE_ERROR;
1128         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1129         goto f_err;
1130     }
1131
1132     protverr = ssl_choose_client_version(s, sversion);
1133     if (protverr != 0) {
1134         al = SSL_AD_PROTOCOL_VERSION;
1135         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, protverr);
1136         goto f_err;
1137     }
1138
1139     /* load the server hello data */
1140     /* load the server random */
1141     if (!PACKET_copy_bytes(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1142         al = SSL_AD_DECODE_ERROR;
1143         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1144         goto f_err;
1145     }
1146
1147     s->hit = 0;
1148
1149     /* Get the session-id. */
1150     if (!SSL_IS_TLS13(s)) {
1151         if (!PACKET_get_length_prefixed_1(pkt, &session_id)) {
1152             al = SSL_AD_DECODE_ERROR;
1153             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1154             goto f_err;
1155         }
1156         session_id_len = PACKET_remaining(&session_id);
1157         if (session_id_len > sizeof s->session->session_id
1158             || session_id_len > SSL3_SESSION_ID_SIZE) {
1159             al = SSL_AD_ILLEGAL_PARAMETER;
1160             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1161                    SSL_R_SSL3_SESSION_ID_TOO_LONG);
1162             goto f_err;
1163         }
1164     } else {
1165         PACKET_null_init(&session_id);
1166         session_id_len = 0;
1167     }
1168
1169     if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) {
1170         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1171         al = SSL_AD_DECODE_ERROR;
1172         goto f_err;
1173     }
1174
1175     /*
1176      * Check if we can resume the session based on external pre-shared secret.
1177      * EAP-FAST (RFC 4851) supports two types of session resumption.
1178      * Resumption based on server-side state works with session IDs.
1179      * Resumption based on pre-shared Protected Access Credentials (PACs)
1180      * works by overriding the SessionTicket extension at the application
1181      * layer, and does not send a session ID. (We do not know whether EAP-FAST
1182      * servers would honour the session ID.) Therefore, the session ID alone
1183      * is not a reliable indicator of session resumption, so we first check if
1184      * we can resume, and later peek at the next handshake message to see if the
1185      * server wants to resume.
1186      */
1187     if (s->version >= TLS1_VERSION && !SSL_IS_TLS13(s)
1188             && s->ext.session_secret_cb != NULL && s->session->ext.tick) {
1189         const SSL_CIPHER *pref_cipher = NULL;
1190         /*
1191          * s->session->master_key_length is a size_t, but this is an int for
1192          * backwards compat reasons
1193          */
1194         int master_key_length;
1195         master_key_length = sizeof(s->session->master_key);
1196         if (s->ext.session_secret_cb(s, s->session->master_key,
1197                                      &master_key_length,
1198                                      NULL, &pref_cipher,
1199                                      s->ext.session_secret_cb_arg)
1200                  && master_key_length > 0) {
1201             s->session->master_key_length = master_key_length;
1202             s->session->cipher = pref_cipher ?
1203                 pref_cipher : ssl_get_cipher_by_char(s, cipherchars);
1204         } else {
1205             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1206             al = SSL_AD_INTERNAL_ERROR;
1207             goto f_err;
1208         }
1209     }
1210
1211     if (session_id_len != 0 && session_id_len == s->session->session_id_length
1212         && memcmp(PACKET_data(&session_id), s->session->session_id,
1213                   session_id_len) == 0) {
1214         if (s->sid_ctx_length != s->session->sid_ctx_length
1215             || memcmp(s->session->sid_ctx, s->sid_ctx, s->sid_ctx_length)) {
1216             /* actually a client application bug */
1217             al = SSL_AD_ILLEGAL_PARAMETER;
1218             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1219                    SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
1220             goto f_err;
1221         }
1222         s->hit = 1;
1223     } else {
1224         /*
1225          * If we were trying for session-id reuse but the server
1226          * didn't echo the ID, make a new SSL_SESSION.
1227          * In the case of EAP-FAST and PAC, we do not send a session ID,
1228          * so the PAC-based session secret is always preserved. It'll be
1229          * overwritten if the server refuses resumption.
1230          */
1231         if (s->session->session_id_length > 0) {
1232             s->ctx->stats.sess_miss++;
1233             if (!ssl_get_new_session(s, 0)) {
1234                 goto f_err;
1235             }
1236         }
1237
1238         s->session->ssl_version = s->version;
1239         s->session->session_id_length = session_id_len;
1240         /* session_id_len could be 0 */
1241         if (session_id_len > 0)
1242             memcpy(s->session->session_id, PACKET_data(&session_id),
1243                    session_id_len);
1244     }
1245
1246     /* Session version and negotiated protocol version should match */
1247     if (s->version != s->session->ssl_version) {
1248         al = SSL_AD_PROTOCOL_VERSION;
1249
1250         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1251                SSL_R_SSL_SESSION_VERSION_MISMATCH);
1252         goto f_err;
1253     }
1254
1255     c = ssl_get_cipher_by_char(s, cipherchars);
1256     if (c == NULL) {
1257         /* unknown cipher */
1258         al = SSL_AD_ILLEGAL_PARAMETER;
1259         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_UNKNOWN_CIPHER_RETURNED);
1260         goto f_err;
1261     }
1262     /*
1263      * Now that we know the version, update the check to see if it's an allowed
1264      * version.
1265      */
1266     s->s3->tmp.min_ver = s->version;
1267     s->s3->tmp.max_ver = s->version;
1268     /*
1269      * If it is a disabled cipher we either didn't send it in client hello,
1270      * or it's not allowed for the selected protocol. So we return an error.
1271      */
1272     if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_CHECK)) {
1273         al = SSL_AD_ILLEGAL_PARAMETER;
1274         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_WRONG_CIPHER_RETURNED);
1275         goto f_err;
1276     }
1277
1278     sk = ssl_get_ciphers_by_id(s);
1279     i = sk_SSL_CIPHER_find(sk, c);
1280     if (i < 0) {
1281         /* we did not say we would use this cipher */
1282         al = SSL_AD_ILLEGAL_PARAMETER;
1283         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_WRONG_CIPHER_RETURNED);
1284         goto f_err;
1285     }
1286
1287     /*
1288      * Depending on the session caching (internal/external), the cipher
1289      * and/or cipher_id values may not be set. Make sure that cipher_id is
1290      * set and use it for comparison.
1291      */
1292     if (s->session->cipher)
1293         s->session->cipher_id = s->session->cipher->id;
1294     if (s->hit && (s->session->cipher_id != c->id)) {
1295         al = SSL_AD_ILLEGAL_PARAMETER;
1296         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1297                SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED);
1298         goto f_err;
1299     }
1300     s->s3->tmp.new_cipher = c;
1301     /* lets get the compression algorithm */
1302     /* COMPRESSION */
1303     if (!SSL_IS_TLS13(s)) {
1304         if (!PACKET_get_1(pkt, &compression)) {
1305             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1306             al = SSL_AD_DECODE_ERROR;
1307             goto f_err;
1308         }
1309     } else {
1310         compression = 0;
1311     }
1312
1313 #ifdef OPENSSL_NO_COMP
1314     if (compression != 0) {
1315         al = SSL_AD_ILLEGAL_PARAMETER;
1316         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1317                SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1318         goto f_err;
1319     }
1320     /*
1321      * If compression is disabled we'd better not try to resume a session
1322      * using compression.
1323      */
1324     if (s->session->compress_meth != 0) {
1325         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1326         goto f_err;
1327     }
1328 #else
1329     if (s->hit && compression != s->session->compress_meth) {
1330         al = SSL_AD_ILLEGAL_PARAMETER;
1331         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1332                SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
1333         goto f_err;
1334     }
1335     if (compression == 0)
1336         comp = NULL;
1337     else if (!ssl_allow_compression(s)) {
1338         al = SSL_AD_ILLEGAL_PARAMETER;
1339         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_COMPRESSION_DISABLED);
1340         goto f_err;
1341     } else {
1342         comp = ssl3_comp_find(s->ctx->comp_methods, compression);
1343     }
1344
1345     if (compression != 0 && comp == NULL) {
1346         al = SSL_AD_ILLEGAL_PARAMETER;
1347         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1348                SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1349         goto f_err;
1350     } else {
1351         s->s3->tmp.new_compression = comp;
1352     }
1353 #endif
1354
1355     /* TLS extensions */
1356     if (PACKET_remaining(pkt) == 0) {
1357         PACKET_null_init(&extpkt);
1358     } else if (!PACKET_as_length_prefixed_2(pkt, &extpkt)) {
1359         al = SSL_AD_DECODE_ERROR;
1360         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_BAD_LENGTH);
1361         goto f_err;
1362     }
1363
1364     context = SSL_IS_TLS13(s) ? EXT_TLS1_3_SERVER_HELLO
1365                               : EXT_TLS1_2_SERVER_HELLO;
1366     if (!tls_collect_extensions(s, &extpkt, context, &extensions, &al)
1367             || !tls_parse_all_extensions(s, context, extensions, NULL, 0, &al))
1368         goto f_err;
1369
1370 #ifndef OPENSSL_NO_SCTP
1371     if (SSL_IS_DTLS(s) && s->hit) {
1372         unsigned char sctpauthkey[64];
1373         char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
1374
1375         /*
1376          * Add new shared key for SCTP-Auth, will be ignored if
1377          * no SCTP used.
1378          */
1379         memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
1380                sizeof(DTLS1_SCTP_AUTH_LABEL));
1381
1382         if (SSL_export_keying_material(s, sctpauthkey,
1383                                        sizeof(sctpauthkey),
1384                                        labelbuffer,
1385                                        sizeof(labelbuffer), NULL, 0, 0) <= 0)
1386             goto f_err;
1387
1388         BIO_ctrl(SSL_get_wbio(s),
1389                  BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
1390                  sizeof(sctpauthkey), sctpauthkey);
1391     }
1392 #endif
1393
1394     /*
1395      * In TLSv1.3 we have some post-processing to change cipher state, otherwise
1396      * we're done with this message
1397      */
1398     if (SSL_IS_TLS13(s)
1399             && (!s->method->ssl3_enc->setup_key_block(s)
1400                 || !s->method->ssl3_enc->change_cipher_state(s,
1401                     SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_WRITE)
1402                 || !s->method->ssl3_enc->change_cipher_state(s,
1403                     SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_READ))) {
1404         al = SSL_AD_INTERNAL_ERROR;
1405         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_CANNOT_CHANGE_CIPHER);
1406         goto f_err;
1407     }
1408
1409     OPENSSL_free(extensions);
1410     return MSG_PROCESS_CONTINUE_READING;
1411  f_err:
1412     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1413     ossl_statem_set_error(s);
1414     OPENSSL_free(extensions);
1415     return MSG_PROCESS_ERROR;
1416 }
1417
1418 MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s, PACKET *pkt)
1419 {
1420     int al, i, ret = MSG_PROCESS_ERROR, exp_idx;
1421     unsigned long cert_list_len, cert_len;
1422     X509 *x = NULL;
1423     const unsigned char *certstart, *certbytes;
1424     STACK_OF(X509) *sk = NULL;
1425     EVP_PKEY *pkey = NULL;
1426     size_t chainidx;
1427     unsigned int context = 0;
1428
1429     if ((sk = sk_X509_new_null()) == NULL) {
1430         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1431         goto err;
1432     }
1433
1434     if ((SSL_IS_TLS13(s) && !PACKET_get_1(pkt, &context))
1435             || context != 0
1436             || !PACKET_get_net_3(pkt, &cert_list_len)
1437             || PACKET_remaining(pkt) != cert_list_len) {
1438         al = SSL_AD_DECODE_ERROR;
1439         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
1440         goto f_err;
1441     }
1442     for (chainidx = 0; PACKET_remaining(pkt); chainidx++) {
1443         if (!PACKET_get_net_3(pkt, &cert_len)
1444             || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
1445             al = SSL_AD_DECODE_ERROR;
1446             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1447                    SSL_R_CERT_LENGTH_MISMATCH);
1448             goto f_err;
1449         }
1450
1451         certstart = certbytes;
1452         x = d2i_X509(NULL, (const unsigned char **)&certbytes, cert_len);
1453         if (x == NULL) {
1454             al = SSL_AD_BAD_CERTIFICATE;
1455             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_ASN1_LIB);
1456             goto f_err;
1457         }
1458         if (certbytes != (certstart + cert_len)) {
1459             al = SSL_AD_DECODE_ERROR;
1460             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1461                    SSL_R_CERT_LENGTH_MISMATCH);
1462             goto f_err;
1463         }
1464
1465         if (SSL_IS_TLS13(s)) {
1466             RAW_EXTENSION *rawexts = NULL;
1467             PACKET extensions;
1468
1469             if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
1470                 al = SSL_AD_DECODE_ERROR;
1471                 SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, SSL_R_BAD_LENGTH);
1472                 goto f_err;
1473             }
1474             if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_CERTIFICATE,
1475                                         &rawexts, &al)
1476                     || !tls_parse_all_extensions(s, EXT_TLS1_3_CERTIFICATE,
1477                                                  rawexts, x, chainidx, &al)) {
1478                 OPENSSL_free(rawexts);
1479                 goto f_err;
1480             }
1481             OPENSSL_free(rawexts);
1482         }
1483
1484         if (!sk_X509_push(sk, x)) {
1485             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1486             goto err;
1487         }
1488         x = NULL;
1489     }
1490
1491     i = ssl_verify_cert_chain(s, sk);
1492     /*
1493      * The documented interface is that SSL_VERIFY_PEER should be set in order
1494      * for client side verification of the server certificate to take place.
1495      * However, historically the code has only checked that *any* flag is set
1496      * to cause server verification to take place. Use of the other flags makes
1497      * no sense in client mode. An attempt to clean up the semantics was
1498      * reverted because at least one application *only* set
1499      * SSL_VERIFY_FAIL_IF_NO_PEER_CERT. Prior to the clean up this still caused
1500      * server verification to take place, after the clean up it silently did
1501      * nothing. SSL_CTX_set_verify()/SSL_set_verify() cannot validate the flags
1502      * sent to them because they are void functions. Therefore, we now use the
1503      * (less clean) historic behaviour of performing validation if any flag is
1504      * set. The *documented* interface remains the same.
1505      */
1506     if (s->verify_mode != SSL_VERIFY_NONE && i <= 0) {
1507         al = ssl_verify_alarm_type(s->verify_result);
1508         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1509                SSL_R_CERTIFICATE_VERIFY_FAILED);
1510         goto f_err;
1511     }
1512     ERR_clear_error();          /* but we keep s->verify_result */
1513     if (i > 1) {
1514         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, i);
1515         al = SSL_AD_HANDSHAKE_FAILURE;
1516         goto f_err;
1517     }
1518
1519     s->session->peer_chain = sk;
1520     /*
1521      * Inconsistency alert: cert_chain does include the peer's certificate,
1522      * which we don't include in statem_srvr.c
1523      */
1524     x = sk_X509_value(sk, 0);
1525     sk = NULL;
1526     /*
1527      * VRS 19990621: possible memory leak; sk=null ==> !sk_pop_free() @end
1528      */
1529
1530     pkey = X509_get0_pubkey(x);
1531
1532     if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) {
1533         x = NULL;
1534         al = SSL3_AL_FATAL;
1535         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1536                SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1537         goto f_err;
1538     }
1539
1540     i = ssl_cert_type(x, pkey);
1541     if (i < 0) {
1542         x = NULL;
1543         al = SSL3_AL_FATAL;
1544         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1545                SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1546         goto f_err;
1547     }
1548
1549     exp_idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher);
1550     if (exp_idx >= 0 && i != exp_idx
1551         && (exp_idx != SSL_PKEY_GOST_EC ||
1552             (i != SSL_PKEY_GOST12_512 && i != SSL_PKEY_GOST12_256
1553              && i != SSL_PKEY_GOST01))) {
1554         x = NULL;
1555         al = SSL_AD_ILLEGAL_PARAMETER;
1556         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1557                SSL_R_WRONG_CERTIFICATE_TYPE);
1558         goto f_err;
1559     }
1560     s->session->peer_type = i;
1561
1562     X509_free(s->session->peer);
1563     X509_up_ref(x);
1564     s->session->peer = x;
1565     s->session->verify_result = s->verify_result;
1566     x = NULL;
1567
1568     /* Save the current hash state for when we receive the CertificateVerify */
1569     if (SSL_IS_TLS13(s)
1570             && !ssl_handshake_hash(s, s->cert_verify_hash,
1571                                    sizeof(s->cert_verify_hash),
1572                                    &s->cert_verify_hash_len)) {
1573         al = SSL_AD_INTERNAL_ERROR;
1574         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
1575         goto f_err;
1576     }
1577
1578     ret = MSG_PROCESS_CONTINUE_READING;
1579     goto done;
1580
1581  f_err:
1582     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1583  err:
1584     ossl_statem_set_error(s);
1585  done:
1586     X509_free(x);
1587     sk_X509_pop_free(sk, X509_free);
1588     return ret;
1589 }
1590
1591 static int tls_process_ske_psk_preamble(SSL *s, PACKET *pkt, int *al)
1592 {
1593 #ifndef OPENSSL_NO_PSK
1594     PACKET psk_identity_hint;
1595
1596     /* PSK ciphersuites are preceded by an identity hint */
1597
1598     if (!PACKET_get_length_prefixed_2(pkt, &psk_identity_hint)) {
1599         *al = SSL_AD_DECODE_ERROR;
1600         SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH);
1601         return 0;
1602     }
1603
1604     /*
1605      * Store PSK identity hint for later use, hint is used in
1606      * tls_construct_client_key_exchange.  Assume that the maximum length of
1607      * a PSK identity hint can be as long as the maximum length of a PSK
1608      * identity.
1609      */
1610     if (PACKET_remaining(&psk_identity_hint) > PSK_MAX_IDENTITY_LEN) {
1611         *al = SSL_AD_HANDSHAKE_FAILURE;
1612         SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG);
1613         return 0;
1614     }
1615
1616     if (PACKET_remaining(&psk_identity_hint) == 0) {
1617         OPENSSL_free(s->session->psk_identity_hint);
1618         s->session->psk_identity_hint = NULL;
1619     } else if (!PACKET_strndup(&psk_identity_hint,
1620                                &s->session->psk_identity_hint)) {
1621         *al = SSL_AD_INTERNAL_ERROR;
1622         return 0;
1623     }
1624
1625     return 1;
1626 #else
1627     SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
1628     *al = SSL_AD_INTERNAL_ERROR;
1629     return 0;
1630 #endif
1631 }
1632
1633 static int tls_process_ske_srp(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al)
1634 {
1635 #ifndef OPENSSL_NO_SRP
1636     PACKET prime, generator, salt, server_pub;
1637
1638     if (!PACKET_get_length_prefixed_2(pkt, &prime)
1639         || !PACKET_get_length_prefixed_2(pkt, &generator)
1640         || !PACKET_get_length_prefixed_1(pkt, &salt)
1641         || !PACKET_get_length_prefixed_2(pkt, &server_pub)) {
1642         *al = SSL_AD_DECODE_ERROR;
1643         SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, SSL_R_LENGTH_MISMATCH);
1644         return 0;
1645     }
1646
1647     /* TODO(size_t): Convert BN_bin2bn() calls */
1648     if ((s->srp_ctx.N =
1649          BN_bin2bn(PACKET_data(&prime),
1650                    (int)PACKET_remaining(&prime), NULL)) == NULL
1651         || (s->srp_ctx.g =
1652             BN_bin2bn(PACKET_data(&generator),
1653                       (int)PACKET_remaining(&generator), NULL)) == NULL
1654         || (s->srp_ctx.s =
1655             BN_bin2bn(PACKET_data(&salt),
1656                       (int)PACKET_remaining(&salt), NULL)) == NULL
1657         || (s->srp_ctx.B =
1658             BN_bin2bn(PACKET_data(&server_pub),
1659                       (int)PACKET_remaining(&server_pub), NULL)) == NULL) {
1660         *al = SSL_AD_INTERNAL_ERROR;
1661         SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, ERR_R_BN_LIB);
1662         return 0;
1663     }
1664
1665     if (!srp_verify_server_param(s, al)) {
1666         *al = SSL_AD_DECODE_ERROR;
1667         SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, SSL_R_BAD_SRP_PARAMETERS);
1668         return 0;
1669     }
1670
1671     /* We must check if there is a certificate */
1672     if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
1673         *pkey = X509_get0_pubkey(s->session->peer);
1674
1675     return 1;
1676 #else
1677     SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, ERR_R_INTERNAL_ERROR);
1678     *al = SSL_AD_INTERNAL_ERROR;
1679     return 0;
1680 #endif
1681 }
1682
1683 static int tls_process_ske_dhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al)
1684 {
1685 #ifndef OPENSSL_NO_DH
1686     PACKET prime, generator, pub_key;
1687     EVP_PKEY *peer_tmp = NULL;
1688
1689     DH *dh = NULL;
1690     BIGNUM *p = NULL, *g = NULL, *bnpub_key = NULL;
1691
1692     int check_bits = 0;
1693
1694     if (!PACKET_get_length_prefixed_2(pkt, &prime)
1695         || !PACKET_get_length_prefixed_2(pkt, &generator)
1696         || !PACKET_get_length_prefixed_2(pkt, &pub_key)) {
1697         *al = SSL_AD_DECODE_ERROR;
1698         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_LENGTH_MISMATCH);
1699         return 0;
1700     }
1701
1702     peer_tmp = EVP_PKEY_new();
1703     dh = DH_new();
1704
1705     if (peer_tmp == NULL || dh == NULL) {
1706         *al = SSL_AD_INTERNAL_ERROR;
1707         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_MALLOC_FAILURE);
1708         goto err;
1709     }
1710
1711     /* TODO(size_t): Convert these calls */
1712     p = BN_bin2bn(PACKET_data(&prime), (int)PACKET_remaining(&prime), NULL);
1713     g = BN_bin2bn(PACKET_data(&generator), (int)PACKET_remaining(&generator),
1714                   NULL);
1715     bnpub_key = BN_bin2bn(PACKET_data(&pub_key),
1716                           (int)PACKET_remaining(&pub_key), NULL);
1717     if (p == NULL || g == NULL || bnpub_key == NULL) {
1718         *al = SSL_AD_INTERNAL_ERROR;
1719         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB);
1720         goto err;
1721     }
1722
1723     /* test non-zero pupkey */
1724     if (BN_is_zero(bnpub_key)) {
1725         *al = SSL_AD_DECODE_ERROR;
1726         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_BAD_DH_VALUE);
1727         goto err;
1728     }
1729
1730     if (!DH_set0_pqg(dh, p, NULL, g)) {
1731         *al = SSL_AD_INTERNAL_ERROR;
1732         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB);
1733         goto err;
1734     }
1735     p = g = NULL;
1736
1737     if (DH_check_params(dh, &check_bits) == 0 || check_bits != 0) {
1738         *al = SSL_AD_DECODE_ERROR;
1739         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_BAD_DH_VALUE);
1740         goto err;
1741     }
1742
1743     if (!DH_set0_key(dh, bnpub_key, NULL)) {
1744         *al = SSL_AD_INTERNAL_ERROR;
1745         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB);
1746         goto err;
1747     }
1748     bnpub_key = NULL;
1749
1750     if (!ssl_security(s, SSL_SECOP_TMP_DH, DH_security_bits(dh), 0, dh)) {
1751         *al = SSL_AD_HANDSHAKE_FAILURE;
1752         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_DH_KEY_TOO_SMALL);
1753         goto err;
1754     }
1755
1756     if (EVP_PKEY_assign_DH(peer_tmp, dh) == 0) {
1757         *al = SSL_AD_INTERNAL_ERROR;
1758         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_EVP_LIB);
1759         goto err;
1760     }
1761
1762     s->s3->peer_tmp = peer_tmp;
1763
1764     /*
1765      * FIXME: This makes assumptions about which ciphersuites come with
1766      * public keys. We should have a less ad-hoc way of doing this
1767      */
1768     if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
1769         *pkey = X509_get0_pubkey(s->session->peer);
1770     /* else anonymous DH, so no certificate or pkey. */
1771
1772     return 1;
1773
1774  err:
1775     BN_free(p);
1776     BN_free(g);
1777     BN_free(bnpub_key);
1778     DH_free(dh);
1779     EVP_PKEY_free(peer_tmp);
1780
1781     return 0;
1782 #else
1783     SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_INTERNAL_ERROR);
1784     *al = SSL_AD_INTERNAL_ERROR;
1785     return 0;
1786 #endif
1787 }
1788
1789 static int tls_process_ske_ecdhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al)
1790 {
1791 #ifndef OPENSSL_NO_EC
1792     PACKET encoded_pt;
1793     const unsigned char *ecparams;
1794     int curve_nid;
1795     unsigned int curve_flags;
1796     EVP_PKEY_CTX *pctx = NULL;
1797
1798     /*
1799      * Extract elliptic curve parameters and the server's ephemeral ECDH
1800      * public key. For now we only support named (not generic) curves and
1801      * ECParameters in this case is just three bytes.
1802      */
1803     if (!PACKET_get_bytes(pkt, &ecparams, 3)) {
1804         *al = SSL_AD_DECODE_ERROR;
1805         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_LENGTH_TOO_SHORT);
1806         return 0;
1807     }
1808     /*
1809      * Check curve is one of our preferences, if not server has sent an
1810      * invalid curve. ECParameters is 3 bytes.
1811      */
1812     if (!tls1_check_curve(s, ecparams, 3)) {
1813         *al = SSL_AD_DECODE_ERROR;
1814         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_WRONG_CURVE);
1815         return 0;
1816     }
1817
1818     curve_nid = tls1_ec_curve_id2nid(*(ecparams + 2), &curve_flags);
1819
1820     if (curve_nid == 0) {
1821         *al = SSL_AD_INTERNAL_ERROR;
1822         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE,
1823                SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
1824         return 0;
1825     }
1826
1827     if ((curve_flags & TLS_CURVE_TYPE) == TLS_CURVE_CUSTOM) {
1828         EVP_PKEY *key = EVP_PKEY_new();
1829
1830         if (key == NULL || !EVP_PKEY_set_type(key, curve_nid)) {
1831             *al = SSL_AD_INTERNAL_ERROR;
1832             SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_EVP_LIB);
1833             EVP_PKEY_free(key);
1834             return 0;
1835         }
1836         s->s3->peer_tmp = key;
1837     } else {
1838         /* Set up EVP_PKEY with named curve as parameters */
1839         pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL);
1840         if (pctx == NULL
1841             || EVP_PKEY_paramgen_init(pctx) <= 0
1842             || EVP_PKEY_CTX_set_ec_paramgen_curve_nid(pctx, curve_nid) <= 0
1843             || EVP_PKEY_paramgen(pctx, &s->s3->peer_tmp) <= 0) {
1844             *al = SSL_AD_INTERNAL_ERROR;
1845             SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_EVP_LIB);
1846             EVP_PKEY_CTX_free(pctx);
1847             return 0;
1848         }
1849         EVP_PKEY_CTX_free(pctx);
1850         pctx = NULL;
1851     }
1852
1853     if (!PACKET_get_length_prefixed_1(pkt, &encoded_pt)) {
1854         *al = SSL_AD_DECODE_ERROR;
1855         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_LENGTH_MISMATCH);
1856         return 0;
1857     }
1858
1859     if (!EVP_PKEY_set1_tls_encodedpoint(s->s3->peer_tmp,
1860                                         PACKET_data(&encoded_pt),
1861                                         PACKET_remaining(&encoded_pt))) {
1862         *al = SSL_AD_DECODE_ERROR;
1863         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_BAD_ECPOINT);
1864         return 0;
1865     }
1866
1867     /*
1868      * The ECC/TLS specification does not mention the use of DSA to sign
1869      * ECParameters in the server key exchange message. We do support RSA
1870      * and ECDSA.
1871      */
1872     if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aECDSA)
1873         *pkey = X509_get0_pubkey(s->session->peer);
1874     else if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aRSA)
1875         *pkey = X509_get0_pubkey(s->session->peer);
1876     /* else anonymous ECDH, so no certificate or pkey. */
1877
1878     return 1;
1879 #else
1880     SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_INTERNAL_ERROR);
1881     *al = SSL_AD_INTERNAL_ERROR;
1882     return 0;
1883 #endif
1884 }
1885
1886 MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s, PACKET *pkt)
1887 {
1888     int al = -1, ispss = 0;
1889     long alg_k;
1890     EVP_PKEY *pkey = NULL;
1891     EVP_MD_CTX *md_ctx = NULL;
1892     EVP_PKEY_CTX *pctx = NULL;
1893     PACKET save_param_start, signature;
1894
1895     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
1896
1897     save_param_start = *pkt;
1898
1899 #if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
1900     EVP_PKEY_free(s->s3->peer_tmp);
1901     s->s3->peer_tmp = NULL;
1902 #endif
1903
1904     if (alg_k & SSL_PSK) {
1905         if (!tls_process_ske_psk_preamble(s, pkt, &al))
1906             goto err;
1907     }
1908
1909     /* Nothing else to do for plain PSK or RSAPSK */
1910     if (alg_k & (SSL_kPSK | SSL_kRSAPSK)) {
1911     } else if (alg_k & SSL_kSRP) {
1912         if (!tls_process_ske_srp(s, pkt, &pkey, &al))
1913             goto err;
1914     } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
1915         if (!tls_process_ske_dhe(s, pkt, &pkey, &al))
1916             goto err;
1917     } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
1918         if (!tls_process_ske_ecdhe(s, pkt, &pkey, &al))
1919             goto err;
1920     } else if (alg_k) {
1921         al = SSL_AD_UNEXPECTED_MESSAGE;
1922         SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_UNEXPECTED_MESSAGE);
1923         goto err;
1924     }
1925
1926     /* if it was signed, check the signature */
1927     if (pkey != NULL) {
1928         PACKET params;
1929         int maxsig;
1930         const EVP_MD *md = NULL;
1931
1932         /*
1933          * |pkt| now points to the beginning of the signature, so the difference
1934          * equals the length of the parameters.
1935          */
1936         if (!PACKET_get_sub_packet(&save_param_start, &params,
1937                                    PACKET_remaining(&save_param_start) -
1938                                    PACKET_remaining(pkt))) {
1939             al = SSL_AD_INTERNAL_ERROR;
1940             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1941             goto err;
1942         }
1943
1944         if (SSL_USE_SIGALGS(s)) {
1945             unsigned int sigalg;
1946             int rv;
1947
1948             if (!PACKET_get_net_2(pkt, &sigalg)) {
1949                 al = SSL_AD_DECODE_ERROR;
1950                 SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1951                 goto err;
1952             }
1953             rv = tls12_check_peer_sigalg(&md, s, sigalg, pkey);
1954             if (rv == -1) {
1955                 al = SSL_AD_INTERNAL_ERROR;
1956                 goto err;
1957             } else if (rv == 0) {
1958                 al = SSL_AD_DECODE_ERROR;
1959                 goto err;
1960             }
1961             ispss = SIGID_IS_PSS(sigalg);
1962 #ifdef SSL_DEBUG
1963             fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
1964 #endif
1965         } else if (EVP_PKEY_id(pkey) == EVP_PKEY_RSA) {
1966             md = EVP_md5_sha1();
1967         } else {
1968             md = EVP_sha1();
1969         }
1970
1971         if (!PACKET_get_length_prefixed_2(pkt, &signature)
1972             || PACKET_remaining(pkt) != 0) {
1973             al = SSL_AD_DECODE_ERROR;
1974             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
1975             goto err;
1976         }
1977         maxsig = EVP_PKEY_size(pkey);
1978         if (maxsig < 0) {
1979             al = SSL_AD_INTERNAL_ERROR;
1980             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1981             goto err;
1982         }
1983
1984         /*
1985          * Check signature length
1986          */
1987         if (PACKET_remaining(&signature) > (size_t)maxsig) {
1988             /* wrong packet length */
1989             al = SSL_AD_DECODE_ERROR;
1990             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE,
1991                    SSL_R_WRONG_SIGNATURE_LENGTH);
1992             goto err;
1993         }
1994
1995         md_ctx = EVP_MD_CTX_new();
1996         if (md_ctx == NULL) {
1997             al = SSL_AD_INTERNAL_ERROR;
1998             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1999             goto err;
2000         }
2001
2002         if (EVP_DigestVerifyInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2003             al = SSL_AD_INTERNAL_ERROR;
2004             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2005             goto err;
2006         }
2007         if (ispss) {
2008             if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2009                        /* -1 here means set saltlen to the digest len */
2010                     || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx, -1) <= 0) {
2011                 al = SSL_AD_INTERNAL_ERROR;
2012                 SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2013                 goto err;
2014             }
2015         }
2016         if (EVP_DigestVerifyUpdate(md_ctx, &(s->s3->client_random[0]),
2017                                    SSL3_RANDOM_SIZE) <= 0
2018                 || EVP_DigestVerifyUpdate(md_ctx, &(s->s3->server_random[0]),
2019                                           SSL3_RANDOM_SIZE) <= 0
2020                 || EVP_DigestVerifyUpdate(md_ctx, PACKET_data(&params),
2021                                           PACKET_remaining(&params)) <= 0) {
2022             al = SSL_AD_INTERNAL_ERROR;
2023             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2024             goto err;
2025         }
2026         if (EVP_DigestVerifyFinal(md_ctx, PACKET_data(&signature),
2027                                   PACKET_remaining(&signature)) <= 0) {
2028             /* bad signature */
2029             al = SSL_AD_DECRYPT_ERROR;
2030             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_BAD_SIGNATURE);
2031             goto err;
2032         }
2033         EVP_MD_CTX_free(md_ctx);
2034         md_ctx = NULL;
2035     } else {
2036         /* aNULL, aSRP or PSK do not need public keys */
2037         if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
2038             && !(alg_k & SSL_PSK)) {
2039             /* Might be wrong key type, check it */
2040             if (ssl3_check_cert_and_algorithm(s)) {
2041                 /* Otherwise this shouldn't happen */
2042                 al = SSL_AD_INTERNAL_ERROR;
2043                 SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2044             } else {
2045                 al = SSL_AD_DECODE_ERROR;
2046             }
2047             goto err;
2048         }
2049         /* still data left over */
2050         if (PACKET_remaining(pkt) != 0) {
2051             al = SSL_AD_DECODE_ERROR;
2052             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_EXTRA_DATA_IN_MESSAGE);
2053             goto err;
2054         }
2055     }
2056
2057     return MSG_PROCESS_CONTINUE_READING;
2058  err:
2059     if (al != -1)
2060         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2061     ossl_statem_set_error(s);
2062     EVP_MD_CTX_free(md_ctx);
2063     return MSG_PROCESS_ERROR;
2064 }
2065
2066 MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s, PACKET *pkt)
2067 {
2068     int ret = MSG_PROCESS_ERROR;
2069     unsigned int list_len, ctype_num, i, name_len;
2070     X509_NAME *xn = NULL;
2071     const unsigned char *data;
2072     const unsigned char *namestart, *namebytes;
2073     STACK_OF(X509_NAME) *ca_sk = NULL;
2074
2075     if ((ca_sk = sk_X509_NAME_new(ca_dn_cmp)) == NULL) {
2076         SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2077         goto err;
2078     }
2079
2080     /* get the certificate types */
2081     if (!PACKET_get_1(pkt, &ctype_num)
2082         || !PACKET_get_bytes(pkt, &data, ctype_num)) {
2083         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2084         SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, SSL_R_LENGTH_MISMATCH);
2085         goto err;
2086     }
2087     OPENSSL_free(s->cert->ctypes);
2088     s->cert->ctypes = NULL;
2089     if (ctype_num > SSL3_CT_NUMBER) {
2090         /* If we exceed static buffer copy all to cert structure */
2091         s->cert->ctypes = OPENSSL_malloc(ctype_num);
2092         if (s->cert->ctypes == NULL) {
2093             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2094             goto err;
2095         }
2096         memcpy(s->cert->ctypes, data, ctype_num);
2097         s->cert->ctype_num = ctype_num;
2098         ctype_num = SSL3_CT_NUMBER;
2099     }
2100     for (i = 0; i < ctype_num; i++)
2101         s->s3->tmp.ctype[i] = data[i];
2102
2103     if (SSL_USE_SIGALGS(s)) {
2104         PACKET sigalgs;
2105
2106         if (!PACKET_get_length_prefixed_2(pkt, &sigalgs)) {
2107             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2108             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2109                    SSL_R_LENGTH_MISMATCH);
2110             goto err;
2111         }
2112
2113         /* Clear certificate digests and validity flags */
2114         for (i = 0; i < SSL_PKEY_NUM; i++) {
2115             s->s3->tmp.md[i] = NULL;
2116             s->s3->tmp.valid_flags[i] = 0;
2117         }
2118         if (!tls1_save_sigalgs(s, &sigalgs)) {
2119             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2120             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2121                    SSL_R_SIGNATURE_ALGORITHMS_ERROR);
2122             goto err;
2123         }
2124         if (!tls1_process_sigalgs(s)) {
2125             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2126             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2127             goto err;
2128         }
2129     } else {
2130         ssl_set_default_md(s);
2131     }
2132
2133     /* get the CA RDNs */
2134     if (!PACKET_get_net_2(pkt, &list_len)
2135         || PACKET_remaining(pkt) != list_len) {
2136         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2137         SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, SSL_R_LENGTH_MISMATCH);
2138         goto err;
2139     }
2140
2141     while (PACKET_remaining(pkt)) {
2142         if (!PACKET_get_net_2(pkt, &name_len)
2143             || !PACKET_get_bytes(pkt, &namebytes, name_len)) {
2144             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2145             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2146                    SSL_R_LENGTH_MISMATCH);
2147             goto err;
2148         }
2149
2150         namestart = namebytes;
2151
2152         if ((xn = d2i_X509_NAME(NULL, (const unsigned char **)&namebytes,
2153                                 name_len)) == NULL) {
2154             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2155             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_ASN1_LIB);
2156             goto err;
2157         }
2158
2159         if (namebytes != (namestart + name_len)) {
2160             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2161             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2162                    SSL_R_CA_DN_LENGTH_MISMATCH);
2163             goto err;
2164         }
2165         if (!sk_X509_NAME_push(ca_sk, xn)) {
2166             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2167             goto err;
2168         }
2169         xn = NULL;
2170     }
2171
2172     /* we should setup a certificate to return.... */
2173     s->s3->tmp.cert_req = 1;
2174     s->s3->tmp.ctype_num = ctype_num;
2175     sk_X509_NAME_pop_free(s->s3->tmp.ca_names, X509_NAME_free);
2176     s->s3->tmp.ca_names = ca_sk;
2177     ca_sk = NULL;
2178
2179     ret = MSG_PROCESS_CONTINUE_PROCESSING;
2180     goto done;
2181  err:
2182     ossl_statem_set_error(s);
2183  done:
2184     X509_NAME_free(xn);
2185     sk_X509_NAME_pop_free(ca_sk, X509_NAME_free);
2186     return ret;
2187 }
2188
2189 static int ca_dn_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
2190 {
2191     return (X509_NAME_cmp(*a, *b));
2192 }
2193
2194 MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt)
2195 {
2196     int al;
2197     unsigned int ticklen;
2198     unsigned long ticket_lifetime_hint, add_age;
2199     unsigned int sess_len;
2200     RAW_EXTENSION *exts = NULL;
2201
2202     if (!PACKET_get_net_4(pkt, &ticket_lifetime_hint)
2203         || (SSL_IS_TLS13(s) && !PACKET_get_net_4(pkt, &add_age))
2204         || !PACKET_get_net_2(pkt, &ticklen)
2205         || (!SSL_IS_TLS13(s) && PACKET_remaining(pkt) != ticklen)
2206         || (SSL_IS_TLS13(s) && (ticklen == 0
2207                                 || PACKET_remaining(pkt) < ticklen))) {
2208         al = SSL_AD_DECODE_ERROR;
2209         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH);
2210         goto f_err;
2211     }
2212
2213     /*
2214      * Server is allowed to change its mind (in <=TLSv1.2) and send an empty
2215      * ticket. We already checked this TLSv1.3 case above, so it should never
2216      * be 0 here in that instance
2217      */
2218     if (ticklen == 0)
2219         return MSG_PROCESS_CONTINUE_READING;
2220
2221     /* TODO(TLS1.3): Is this a suitable test for TLS1.3? */
2222     if (s->session->session_id_length > 0) {
2223         int i = s->session_ctx->session_cache_mode;
2224         SSL_SESSION *new_sess;
2225         /*
2226          * We reused an existing session, so we need to replace it with a new
2227          * one
2228          */
2229         if (i & SSL_SESS_CACHE_CLIENT) {
2230             /*
2231              * Remove the old session from the cache. We carry on if this fails
2232              */
2233             SSL_CTX_remove_session(s->session_ctx, s->session);
2234         }
2235
2236         if ((new_sess = ssl_session_dup(s->session, 0)) == 0) {
2237             al = SSL_AD_INTERNAL_ERROR;
2238             SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
2239             goto f_err;
2240         }
2241
2242         SSL_SESSION_free(s->session);
2243         s->session = new_sess;
2244     }
2245
2246     OPENSSL_free(s->session->ext.tick);
2247     s->session->ext.tick = NULL;
2248     s->session->ext.ticklen = 0;
2249
2250     s->session->ext.tick = OPENSSL_malloc(ticklen);
2251     if (s->session->ext.tick == NULL) {
2252         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
2253         goto err;
2254     }
2255     if (!PACKET_copy_bytes(pkt, s->session->ext.tick, ticklen)) {
2256         al = SSL_AD_DECODE_ERROR;
2257         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH);
2258         goto f_err;
2259     }
2260
2261     s->session->ext.tick_lifetime_hint = ticket_lifetime_hint;
2262     s->session->ext.ticklen = ticklen;
2263
2264     if (SSL_IS_TLS13(s)) {
2265         PACKET extpkt;
2266
2267         if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
2268                 || !tls_collect_extensions(s, &extpkt,
2269                                            EXT_TLS1_3_NEW_SESSION_TICKET,
2270                                            &exts, &al)
2271                 || !tls_parse_all_extensions(s, EXT_TLS1_3_NEW_SESSION_TICKET,
2272                                              exts, NULL, 0, &al)) {
2273             SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_BAD_EXTENSION);
2274             goto f_err;
2275         }
2276     }
2277
2278     /*
2279      * There are two ways to detect a resumed ticket session. One is to set
2280      * an appropriate session ID and then the server must return a match in
2281      * ServerHello. This allows the normal client session ID matching to work
2282      * and we know much earlier that the ticket has been accepted. The
2283      * other way is to set zero length session ID when the ticket is
2284      * presented and rely on the handshake to determine session resumption.
2285      * We choose the former approach because this fits in with assumptions
2286      * elsewhere in OpenSSL. The session ID is set to the SHA256 (or SHA1 is
2287      * SHA256 is disabled) hash of the ticket.
2288      */
2289     /*
2290      * TODO(size_t): we use sess_len here because EVP_Digest expects an int
2291      * but s->session->session_id_length is a size_t
2292      */
2293     if (!EVP_Digest(s->session->ext.tick, ticklen,
2294                     s->session->session_id, &sess_len,
2295                     EVP_sha256(), NULL)) {
2296         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_EVP_LIB);
2297         goto err;
2298     }
2299     s->session->session_id_length = sess_len;
2300
2301     /* This is a standalone message in TLSv1.3, so there is no more to read */
2302     if (SSL_IS_TLS13(s)) {
2303         ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
2304         return MSG_PROCESS_FINISHED_READING;
2305     }
2306
2307     return MSG_PROCESS_CONTINUE_READING;
2308  f_err:
2309     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2310  err:
2311     ossl_statem_set_error(s);
2312     return MSG_PROCESS_ERROR;
2313 }
2314
2315 /*
2316  * In TLSv1.3 this is called from the extensions code, otherwise it is used to
2317  * parse a separate message. Returns 1 on success or 0 on failure. On failure
2318  * |*al| is populated with a suitable alert code.
2319  */
2320 int tls_process_cert_status_body(SSL *s, PACKET *pkt, int *al)
2321 {
2322     size_t resplen;
2323     unsigned int type;
2324
2325     if (!PACKET_get_1(pkt, &type)
2326         || type != TLSEXT_STATUSTYPE_ocsp) {
2327         *al = SSL_AD_DECODE_ERROR;
2328         SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2329                SSL_R_UNSUPPORTED_STATUS_TYPE);
2330         return 0;
2331     }
2332     if (!PACKET_get_net_3_len(pkt, &resplen)
2333         || PACKET_remaining(pkt) != resplen) {
2334         *al = SSL_AD_DECODE_ERROR;
2335         SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, SSL_R_LENGTH_MISMATCH);
2336         return 0;
2337     }
2338     s->ext.ocsp.resp = OPENSSL_malloc(resplen);
2339     if (s->ext.ocsp.resp == NULL) {
2340         *al = SSL_AD_INTERNAL_ERROR;
2341         SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, ERR_R_MALLOC_FAILURE);
2342         return 0;
2343     }
2344     if (!PACKET_copy_bytes(pkt, s->ext.ocsp.resp, resplen)) {
2345         *al = SSL_AD_DECODE_ERROR;
2346         SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, SSL_R_LENGTH_MISMATCH);
2347         return 0;
2348     }
2349     s->ext.ocsp.resp_len = resplen;
2350
2351     return 1;
2352 }
2353
2354
2355 MSG_PROCESS_RETURN tls_process_cert_status(SSL *s, PACKET *pkt)
2356 {
2357     int al;
2358
2359     if (!tls_process_cert_status_body(s, pkt, &al)) {
2360         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2361         ossl_statem_set_error(s);
2362         return MSG_PROCESS_ERROR;
2363     }
2364
2365     return MSG_PROCESS_CONTINUE_READING;
2366 }
2367
2368 /*
2369  * Perform miscellaneous checks and processing after we have received the
2370  * server's initial flight. In TLS1.3 this is after the Server Finished message.
2371  * In <=TLS1.2 this is after the ServerDone message. Returns 1 on success or 0
2372  * on failure.
2373  */
2374 int tls_process_initial_server_flight(SSL *s, int *al)
2375 {
2376     /*
2377      * at this point we check that we have the required stuff from
2378      * the server
2379      */
2380     if (!ssl3_check_cert_and_algorithm(s)) {
2381         *al = SSL_AD_HANDSHAKE_FAILURE;
2382         return 0;
2383     }
2384
2385     /*
2386      * Call the ocsp status callback if needed. The |ext.ocsp.resp| and
2387      * |ext.ocsp.resp_len| values will be set if we actually received a status
2388      * message, or NULL and -1 otherwise
2389      */
2390     if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing
2391             && s->ctx->ext.status_cb != NULL) {
2392         int ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
2393
2394         if (ret == 0) {
2395             *al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
2396             SSLerr(SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2397                    SSL_R_INVALID_STATUS_RESPONSE);
2398             return 0;
2399         }
2400         if (ret < 0) {
2401             *al = SSL_AD_INTERNAL_ERROR;
2402             SSLerr(SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2403                    ERR_R_MALLOC_FAILURE);
2404             return 0;
2405         }
2406     }
2407 #ifndef OPENSSL_NO_CT
2408     if (s->ct_validation_callback != NULL) {
2409         /* Note we validate the SCTs whether or not we abort on error */
2410         if (!ssl_validate_ct(s) && (s->verify_mode & SSL_VERIFY_PEER)) {
2411             *al = SSL_AD_HANDSHAKE_FAILURE;
2412             return 0;
2413         }
2414     }
2415 #endif
2416
2417     return 1;
2418 }
2419
2420 MSG_PROCESS_RETURN tls_process_server_done(SSL *s, PACKET *pkt)
2421 {
2422     int al = SSL_AD_INTERNAL_ERROR;
2423
2424     if (PACKET_remaining(pkt) > 0) {
2425         /* should contain no data */
2426         al = SSL_AD_DECODE_ERROR;
2427         SSLerr(SSL_F_TLS_PROCESS_SERVER_DONE, SSL_R_LENGTH_MISMATCH);
2428         goto err;
2429     }
2430 #ifndef OPENSSL_NO_SRP
2431     if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
2432         if (SRP_Calc_A_param(s) <= 0) {
2433             SSLerr(SSL_F_TLS_PROCESS_SERVER_DONE, SSL_R_SRP_A_CALC);
2434             goto err;
2435         }
2436     }
2437 #endif
2438
2439     /*
2440      * Error queue messages are generated directly by this function
2441      */
2442     if (!tls_process_initial_server_flight(s, &al))
2443         goto err;
2444
2445 #ifndef OPENSSL_NO_SCTP
2446     /* Only applies to renegotiation */
2447     if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))
2448         && s->renegotiate != 0)
2449         return MSG_PROCESS_CONTINUE_PROCESSING;
2450     else
2451 #endif
2452         return MSG_PROCESS_FINISHED_READING;
2453
2454  err:
2455     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2456     ossl_statem_set_error(s);
2457     return MSG_PROCESS_ERROR;
2458 }
2459
2460 static int tls_construct_cke_psk_preamble(SSL *s, WPACKET *pkt, int *al)
2461 {
2462 #ifndef OPENSSL_NO_PSK
2463     int ret = 0;
2464     /*
2465      * The callback needs PSK_MAX_IDENTITY_LEN + 1 bytes to return a
2466      * \0-terminated identity. The last byte is for us for simulating
2467      * strnlen.
2468      */
2469     char identity[PSK_MAX_IDENTITY_LEN + 1];
2470     size_t identitylen = 0;
2471     unsigned char psk[PSK_MAX_PSK_LEN];
2472     unsigned char *tmppsk = NULL;
2473     char *tmpidentity = NULL;
2474     size_t psklen = 0;
2475
2476     if (s->psk_client_callback == NULL) {
2477         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_CLIENT_CB);
2478         *al = SSL_AD_INTERNAL_ERROR;
2479         goto err;
2480     }
2481
2482     memset(identity, 0, sizeof(identity));
2483
2484     psklen = s->psk_client_callback(s, s->session->psk_identity_hint,
2485                                     identity, sizeof(identity) - 1,
2486                                     psk, sizeof(psk));
2487
2488     if (psklen > PSK_MAX_PSK_LEN) {
2489         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2490         *al = SSL_AD_HANDSHAKE_FAILURE;
2491         goto err;
2492     } else if (psklen == 0) {
2493         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2494                SSL_R_PSK_IDENTITY_NOT_FOUND);
2495         *al = SSL_AD_HANDSHAKE_FAILURE;
2496         goto err;
2497     }
2498
2499     identitylen = strlen(identity);
2500     if (identitylen > PSK_MAX_IDENTITY_LEN) {
2501         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2502         *al = SSL_AD_HANDSHAKE_FAILURE;
2503         goto err;
2504     }
2505
2506     tmppsk = OPENSSL_memdup(psk, psklen);
2507     tmpidentity = OPENSSL_strdup(identity);
2508     if (tmppsk == NULL || tmpidentity == NULL) {
2509         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE);
2510         *al = SSL_AD_INTERNAL_ERROR;
2511         goto err;
2512     }
2513
2514     OPENSSL_free(s->s3->tmp.psk);
2515     s->s3->tmp.psk = tmppsk;
2516     s->s3->tmp.psklen = psklen;
2517     tmppsk = NULL;
2518     OPENSSL_free(s->session->psk_identity);
2519     s->session->psk_identity = tmpidentity;
2520     tmpidentity = NULL;
2521
2522     if (!WPACKET_sub_memcpy_u16(pkt, identity, identitylen))  {
2523         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2524         *al = SSL_AD_INTERNAL_ERROR;
2525         goto err;
2526     }
2527
2528     ret = 1;
2529
2530  err:
2531     OPENSSL_cleanse(psk, psklen);
2532     OPENSSL_cleanse(identity, sizeof(identity));
2533     OPENSSL_clear_free(tmppsk, psklen);
2534     OPENSSL_clear_free(tmpidentity, identitylen);
2535
2536     return ret;
2537 #else
2538     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2539     *al = SSL_AD_INTERNAL_ERROR;
2540     return 0;
2541 #endif
2542 }
2543
2544 static int tls_construct_cke_rsa(SSL *s, WPACKET *pkt, int *al)
2545 {
2546 #ifndef OPENSSL_NO_RSA
2547     unsigned char *encdata = NULL;
2548     EVP_PKEY *pkey = NULL;
2549     EVP_PKEY_CTX *pctx = NULL;
2550     size_t enclen;
2551     unsigned char *pms = NULL;
2552     size_t pmslen = 0;
2553
2554     if (s->session->peer == NULL) {
2555         /*
2556          * We should always have a server certificate with SSL_kRSA.
2557          */
2558         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2559         return 0;
2560     }
2561
2562     pkey = X509_get0_pubkey(s->session->peer);
2563     if (EVP_PKEY_get0_RSA(pkey) == NULL) {
2564         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2565         return 0;
2566     }
2567
2568     pmslen = SSL_MAX_MASTER_KEY_LENGTH;
2569     pms = OPENSSL_malloc(pmslen);
2570     if (pms == NULL) {
2571         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_MALLOC_FAILURE);
2572         *al = SSL_AD_INTERNAL_ERROR;
2573         return 0;
2574     }
2575
2576     pms[0] = s->client_version >> 8;
2577     pms[1] = s->client_version & 0xff;
2578     /* TODO(size_t): Convert this function */
2579     if (RAND_bytes(pms + 2, (int)(pmslen - 2)) <= 0) {
2580         goto err;
2581     }
2582
2583     /* Fix buf for TLS and beyond */
2584     if (s->version > SSL3_VERSION && !WPACKET_start_sub_packet_u16(pkt)) {
2585         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2586         goto err;
2587     }
2588     pctx = EVP_PKEY_CTX_new(pkey, NULL);
2589     if (pctx == NULL || EVP_PKEY_encrypt_init(pctx) <= 0
2590         || EVP_PKEY_encrypt(pctx, NULL, &enclen, pms, pmslen) <= 0) {
2591         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_EVP_LIB);
2592         goto err;
2593     }
2594     if (!WPACKET_allocate_bytes(pkt, enclen, &encdata)
2595             || EVP_PKEY_encrypt(pctx, encdata, &enclen, pms, pmslen) <= 0) {
2596         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, SSL_R_BAD_RSA_ENCRYPT);
2597         goto err;
2598     }
2599     EVP_PKEY_CTX_free(pctx);
2600     pctx = NULL;
2601 # ifdef PKCS1_CHECK
2602     if (s->options & SSL_OP_PKCS1_CHECK_1)
2603         (*p)[1]++;
2604     if (s->options & SSL_OP_PKCS1_CHECK_2)
2605         tmp_buf[0] = 0x70;
2606 # endif
2607
2608     /* Fix buf for TLS and beyond */
2609     if (s->version > SSL3_VERSION && !WPACKET_close(pkt)) {
2610         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2611         goto err;
2612     }
2613
2614     s->s3->tmp.pms = pms;
2615     s->s3->tmp.pmslen = pmslen;
2616
2617     /* Log the premaster secret, if logging is enabled. */
2618     if (!ssl_log_rsa_client_key_exchange(s, encdata, enclen, pms, pmslen))
2619         goto err;
2620
2621     return 1;
2622  err:
2623     OPENSSL_clear_free(pms, pmslen);
2624     EVP_PKEY_CTX_free(pctx);
2625
2626     return 0;
2627 #else
2628     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2629     *al = SSL_AD_INTERNAL_ERROR;
2630     return 0;
2631 #endif
2632 }
2633
2634 static int tls_construct_cke_dhe(SSL *s, WPACKET *pkt, int *al)
2635 {
2636 #ifndef OPENSSL_NO_DH
2637     DH *dh_clnt = NULL;
2638     const BIGNUM *pub_key;
2639     EVP_PKEY *ckey = NULL, *skey = NULL;
2640     unsigned char *keybytes = NULL;
2641
2642     skey = s->s3->peer_tmp;
2643     if (skey == NULL)
2644         goto err;
2645
2646     ckey = ssl_generate_pkey(skey);
2647     if (ckey == NULL)
2648         goto err;
2649
2650     dh_clnt = EVP_PKEY_get0_DH(ckey);
2651
2652     if (dh_clnt == NULL || ssl_derive(s, ckey, skey, 0) == 0)
2653         goto err;
2654
2655     /* send off the data */
2656     DH_get0_key(dh_clnt, &pub_key, NULL);
2657     if (!WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(pub_key), &keybytes))
2658         goto err;
2659
2660     BN_bn2bin(pub_key, keybytes);
2661     EVP_PKEY_free(ckey);
2662
2663     return 1;
2664  err:
2665     EVP_PKEY_free(ckey);
2666 #endif
2667     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_DHE, ERR_R_INTERNAL_ERROR);
2668     *al = SSL_AD_INTERNAL_ERROR;
2669     return 0;
2670 }
2671
2672 static int tls_construct_cke_ecdhe(SSL *s, WPACKET *pkt, int *al)
2673 {
2674 #ifndef OPENSSL_NO_EC
2675     unsigned char *encodedPoint = NULL;
2676     size_t encoded_pt_len = 0;
2677     EVP_PKEY *ckey = NULL, *skey = NULL;
2678     int ret = 0;
2679
2680     skey = s->s3->peer_tmp;
2681     if (skey == NULL) {
2682         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2683         return 0;
2684     }
2685
2686     ckey = ssl_generate_pkey(skey);
2687     if (ckey == NULL) {
2688         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_MALLOC_FAILURE);
2689         goto err;
2690     }
2691
2692     if (ssl_derive(s, ckey, skey, 0) == 0) {
2693         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_EVP_LIB);
2694         goto err;
2695     }
2696
2697     /* Generate encoding of client key */
2698     encoded_pt_len = EVP_PKEY_get1_tls_encodedpoint(ckey, &encodedPoint);
2699
2700     if (encoded_pt_len == 0) {
2701         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_EC_LIB);
2702         goto err;
2703     }
2704
2705     if (!WPACKET_sub_memcpy_u8(pkt, encodedPoint, encoded_pt_len)) {
2706         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2707         goto err;
2708     }
2709
2710     ret = 1;
2711  err:
2712     OPENSSL_free(encodedPoint);
2713     EVP_PKEY_free(ckey);
2714     return ret;
2715 #else
2716     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2717     *al = SSL_AD_INTERNAL_ERROR;
2718     return 0;
2719 #endif
2720 }
2721
2722 static int tls_construct_cke_gost(SSL *s, WPACKET *pkt, int *al)
2723 {
2724 #ifndef OPENSSL_NO_GOST
2725     /* GOST key exchange message creation */
2726     EVP_PKEY_CTX *pkey_ctx = NULL;
2727     X509 *peer_cert;
2728     size_t msglen;
2729     unsigned int md_len;
2730     unsigned char shared_ukm[32], tmp[256];
2731     EVP_MD_CTX *ukm_hash = NULL;
2732     int dgst_nid = NID_id_GostR3411_94;
2733     unsigned char *pms = NULL;
2734     size_t pmslen = 0;
2735
2736     if ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aGOST12) != 0)
2737         dgst_nid = NID_id_GostR3411_2012_256;
2738
2739     /*
2740      * Get server sertificate PKEY and create ctx from it
2741      */
2742     peer_cert = s->session->peer;
2743     if (!peer_cert) {
2744         *al = SSL_AD_HANDSHAKE_FAILURE;
2745         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST,
2746                SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
2747         return 0;
2748     }
2749
2750     pkey_ctx = EVP_PKEY_CTX_new(X509_get0_pubkey(peer_cert), NULL);
2751     if (pkey_ctx == NULL) {
2752         *al = SSL_AD_INTERNAL_ERROR;
2753         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_MALLOC_FAILURE);
2754         return 0;
2755     }
2756     /*
2757      * If we have send a certificate, and certificate key
2758      * parameters match those of server certificate, use
2759      * certificate key for key exchange
2760      */
2761
2762     /* Otherwise, generate ephemeral key pair */
2763     pmslen = 32;
2764     pms = OPENSSL_malloc(pmslen);
2765     if (pms == NULL) {
2766         *al = SSL_AD_INTERNAL_ERROR;
2767         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_MALLOC_FAILURE);
2768         goto err;
2769     }
2770
2771     if (EVP_PKEY_encrypt_init(pkey_ctx) <= 0
2772         /* Generate session key
2773          * TODO(size_t): Convert this function
2774          */
2775         || RAND_bytes(pms, (int)pmslen) <= 0) {
2776         *al = SSL_AD_INTERNAL_ERROR;
2777         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
2778         goto err;
2779     };
2780     /*
2781      * Compute shared IV and store it in algorithm-specific context
2782      * data
2783      */
2784     ukm_hash = EVP_MD_CTX_new();
2785     if (ukm_hash == NULL
2786         || EVP_DigestInit(ukm_hash, EVP_get_digestbynid(dgst_nid)) <= 0
2787         || EVP_DigestUpdate(ukm_hash, s->s3->client_random,
2788                             SSL3_RANDOM_SIZE) <= 0
2789         || EVP_DigestUpdate(ukm_hash, s->s3->server_random,
2790                             SSL3_RANDOM_SIZE) <= 0
2791         || EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len) <= 0) {
2792         *al = SSL_AD_INTERNAL_ERROR;
2793         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
2794         goto err;
2795     }
2796     EVP_MD_CTX_free(ukm_hash);
2797     ukm_hash = NULL;
2798     if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_ENCRYPT,
2799                           EVP_PKEY_CTRL_SET_IV, 8, shared_ukm) < 0) {
2800         *al = SSL_AD_INTERNAL_ERROR;
2801         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, SSL_R_LIBRARY_BUG);
2802         goto err;
2803     }
2804     /* Make GOST keytransport blob message */
2805     /*
2806      * Encapsulate it into sequence
2807      */
2808     msglen = 255;
2809     if (EVP_PKEY_encrypt(pkey_ctx, tmp, &msglen, pms, pmslen) <= 0) {
2810         *al = SSL_AD_INTERNAL_ERROR;
2811         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, SSL_R_LIBRARY_BUG);
2812         goto err;
2813     }
2814
2815     if (!WPACKET_put_bytes_u8(pkt, V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED)
2816             || (msglen >= 0x80 && !WPACKET_put_bytes_u8(pkt, 0x81))
2817             || !WPACKET_sub_memcpy_u8(pkt, tmp, msglen)) {
2818         *al = SSL_AD_INTERNAL_ERROR;
2819         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
2820         goto err;
2821     }
2822
2823     EVP_PKEY_CTX_free(pkey_ctx);
2824     s->s3->tmp.pms = pms;
2825     s->s3->tmp.pmslen = pmslen;
2826
2827     return 1;
2828  err:
2829     EVP_PKEY_CTX_free(pkey_ctx);
2830     OPENSSL_clear_free(pms, pmslen);
2831     EVP_MD_CTX_free(ukm_hash);
2832     return 0;
2833 #else
2834     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
2835     *al = SSL_AD_INTERNAL_ERROR;
2836     return 0;
2837 #endif
2838 }
2839
2840 static int tls_construct_cke_srp(SSL *s, WPACKET *pkt, int *al)
2841 {
2842 #ifndef OPENSSL_NO_SRP
2843     unsigned char *abytes = NULL;
2844
2845     if (s->srp_ctx.A == NULL
2846             || !WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(s->srp_ctx.A),
2847                                                &abytes)) {
2848         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_INTERNAL_ERROR);
2849         return 0;
2850     }
2851     BN_bn2bin(s->srp_ctx.A, abytes);
2852
2853     OPENSSL_free(s->session->srp_username);
2854     s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
2855     if (s->session->srp_username == NULL) {
2856         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_MALLOC_FAILURE);
2857         return 0;
2858     }
2859
2860     return 1;
2861 #else
2862     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_INTERNAL_ERROR);
2863     *al = SSL_AD_INTERNAL_ERROR;
2864     return 0;
2865 #endif
2866 }
2867
2868 int tls_construct_client_key_exchange(SSL *s, WPACKET *pkt)
2869 {
2870     unsigned long alg_k;
2871     int al = -1;
2872
2873     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2874
2875     if ((alg_k & SSL_PSK)
2876         && !tls_construct_cke_psk_preamble(s, pkt, &al))
2877         goto err;
2878
2879     if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
2880         if (!tls_construct_cke_rsa(s, pkt, &al))
2881             goto err;
2882     } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2883         if (!tls_construct_cke_dhe(s, pkt, &al))
2884             goto err;
2885     } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2886         if (!tls_construct_cke_ecdhe(s, pkt, &al))
2887             goto err;
2888     } else if (alg_k & SSL_kGOST) {
2889         if (!tls_construct_cke_gost(s, pkt, &al))
2890             goto err;
2891     } else if (alg_k & SSL_kSRP) {
2892         if (!tls_construct_cke_srp(s, pkt, &al))
2893             goto err;
2894     } else if (!(alg_k & SSL_kPSK)) {
2895         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
2896         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2897         goto err;
2898     }
2899
2900     return 1;
2901  err:
2902     if (al != -1)
2903         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2904     OPENSSL_clear_free(s->s3->tmp.pms, s->s3->tmp.pmslen);
2905     s->s3->tmp.pms = NULL;
2906 #ifndef OPENSSL_NO_PSK
2907     OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
2908     s->s3->tmp.psk = NULL;
2909 #endif
2910     return 0;
2911 }
2912
2913 int tls_client_key_exchange_post_work(SSL *s)
2914 {
2915     unsigned char *pms = NULL;
2916     size_t pmslen = 0;
2917
2918     pms = s->s3->tmp.pms;
2919     pmslen = s->s3->tmp.pmslen;
2920
2921 #ifndef OPENSSL_NO_SRP
2922     /* Check for SRP */
2923     if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
2924         if (!srp_generate_client_master_secret(s)) {
2925             SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK,
2926                    ERR_R_INTERNAL_ERROR);
2927             goto err;
2928         }
2929         return 1;
2930     }
2931 #endif
2932
2933     if (pms == NULL && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
2934         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2935         SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_MALLOC_FAILURE);
2936         goto err;
2937     }
2938     if (!ssl_generate_master_secret(s, pms, pmslen, 1)) {
2939         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2940         SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_INTERNAL_ERROR);
2941         /* ssl_generate_master_secret frees the pms even on error */
2942         pms = NULL;
2943         pmslen = 0;
2944         goto err;
2945     }
2946     pms = NULL;
2947     pmslen = 0;
2948
2949 #ifndef OPENSSL_NO_SCTP
2950     if (SSL_IS_DTLS(s)) {
2951         unsigned char sctpauthkey[64];
2952         char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
2953
2954         /*
2955          * Add new shared key for SCTP-Auth, will be ignored if no SCTP
2956          * used.
2957          */
2958         memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
2959                sizeof(DTLS1_SCTP_AUTH_LABEL));
2960
2961         if (SSL_export_keying_material(s, sctpauthkey,
2962                                        sizeof(sctpauthkey), labelbuffer,
2963                                        sizeof(labelbuffer), NULL, 0, 0) <= 0)
2964             goto err;
2965
2966         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
2967                  sizeof(sctpauthkey), sctpauthkey);
2968     }
2969 #endif
2970
2971     return 1;
2972  err:
2973     OPENSSL_clear_free(pms, pmslen);
2974     s->s3->tmp.pms = NULL;
2975     return 0;
2976 }
2977
2978 /*
2979  * Check a certificate can be used for client authentication. Currently check
2980  * cert exists, if we have a suitable digest for TLS 1.2 if static DH client
2981  * certificates can be used and optionally checks suitability for Suite B.
2982  */
2983 static int ssl3_check_client_certificate(SSL *s)
2984 {
2985     if (!s->cert || !s->cert->key->x509 || !s->cert->key->privatekey)
2986         return 0;
2987     /* If no suitable signature algorithm can't use certificate */
2988     if (SSL_USE_SIGALGS(s) && !s->s3->tmp.md[s->cert->key - s->cert->pkeys])
2989         return 0;
2990     /*
2991      * If strict mode check suitability of chain before using it. This also
2992      * adjusts suite B digest if necessary.
2993      */
2994     if (s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT &&
2995         !tls1_check_chain(s, NULL, NULL, NULL, -2))
2996         return 0;
2997     return 1;
2998 }
2999
3000 WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst)
3001 {
3002     X509 *x509 = NULL;
3003     EVP_PKEY *pkey = NULL;
3004     int i;
3005
3006     if (wst == WORK_MORE_A) {
3007         /* Let cert callback update client certificates if required */
3008         if (s->cert->cert_cb) {
3009             i = s->cert->cert_cb(s, s->cert->cert_cb_arg);
3010             if (i < 0) {
3011                 s->rwstate = SSL_X509_LOOKUP;
3012                 return WORK_MORE_A;
3013             }
3014             if (i == 0) {
3015                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3016                 ossl_statem_set_error(s);
3017                 return 0;
3018             }
3019             s->rwstate = SSL_NOTHING;
3020         }
3021         if (ssl3_check_client_certificate(s))
3022             return WORK_FINISHED_CONTINUE;
3023
3024         /* Fall through to WORK_MORE_B */
3025         wst = WORK_MORE_B;
3026     }
3027
3028     /* We need to get a client cert */
3029     if (wst == WORK_MORE_B) {
3030         /*
3031          * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP;
3032          * return(-1); We then get retied later
3033          */
3034         i = ssl_do_client_cert_cb(s, &x509, &pkey);
3035         if (i < 0) {
3036             s->rwstate = SSL_X509_LOOKUP;
3037             return WORK_MORE_B;
3038         }
3039         s->rwstate = SSL_NOTHING;
3040         if ((i == 1) && (pkey != NULL) && (x509 != NULL)) {
3041             if (!SSL_use_certificate(s, x509) || !SSL_use_PrivateKey(s, pkey))
3042                 i = 0;
3043         } else if (i == 1) {
3044             i = 0;
3045             SSLerr(SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3046                    SSL_R_BAD_DATA_RETURNED_BY_CALLBACK);
3047         }
3048
3049         X509_free(x509);
3050         EVP_PKEY_free(pkey);
3051         if (i && !ssl3_check_client_certificate(s))
3052             i = 0;
3053         if (i == 0) {
3054             if (s->version == SSL3_VERSION) {
3055                 s->s3->tmp.cert_req = 0;
3056                 ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_CERTIFICATE);
3057                 return WORK_FINISHED_CONTINUE;
3058             } else {
3059                 s->s3->tmp.cert_req = 2;
3060                 if (!ssl3_digest_cached_records(s, 0)) {
3061                     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3062                     ossl_statem_set_error(s);
3063                     return 0;
3064                 }
3065             }
3066         }
3067
3068         return WORK_FINISHED_CONTINUE;
3069     }
3070
3071     /* Shouldn't ever get here */
3072     return WORK_ERROR;
3073 }
3074
3075 int tls_construct_client_certificate(SSL *s, WPACKET *pkt)
3076 {
3077     int al = SSL_AD_INTERNAL_ERROR;
3078
3079     /*
3080      * TODO(TLS1.3): For now we must put an empty context. Needs to be filled in
3081      * later
3082      */
3083     if ((SSL_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0))
3084             || !ssl3_output_cert_chain(s, pkt,
3085                                (s->s3->tmp.cert_req == 2) ? NULL
3086                                                           : s->cert->key,
3087                                 &al)) {
3088         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3089         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3090         return 0;
3091     }
3092
3093     return 1;
3094 }
3095
3096 #define has_bits(i,m)   (((i)&(m)) == (m))
3097
3098 int ssl3_check_cert_and_algorithm(SSL *s)
3099 {
3100     int i;
3101 #ifndef OPENSSL_NO_EC
3102     int idx;
3103 #endif
3104     long alg_k, alg_a;
3105     EVP_PKEY *pkey = NULL;
3106     int al = SSL_AD_HANDSHAKE_FAILURE;
3107
3108     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3109     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3110
3111     /* we don't have a certificate */
3112     if ((alg_a & SSL_aNULL) || (alg_k & SSL_kPSK))
3113         return (1);
3114
3115     /* This is the passed certificate */
3116
3117 #ifndef OPENSSL_NO_EC
3118     idx = s->session->peer_type;
3119     if (idx == SSL_PKEY_ECC) {
3120         if (ssl_check_srvr_ecc_cert_and_alg(s->session->peer, s) == 0) {
3121             /* check failed */
3122             SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_BAD_ECC_CERT);
3123             goto f_err;
3124         } else {
3125             return 1;
3126         }
3127     } else if (alg_a & SSL_aECDSA) {
3128         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3129                SSL_R_MISSING_ECDSA_SIGNING_CERT);
3130         goto f_err;
3131     }
3132 #endif
3133     pkey = X509_get0_pubkey(s->session->peer);
3134     i = X509_certificate_type(s->session->peer, pkey);
3135
3136     /* Check that we have a certificate if we require one */
3137     if ((alg_a & SSL_aRSA) && !has_bits(i, EVP_PK_RSA | EVP_PKT_SIGN)) {
3138         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3139                SSL_R_MISSING_RSA_SIGNING_CERT);
3140         goto f_err;
3141     }
3142 #ifndef OPENSSL_NO_DSA
3143     else if ((alg_a & SSL_aDSS) && !has_bits(i, EVP_PK_DSA | EVP_PKT_SIGN)) {
3144         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3145                SSL_R_MISSING_DSA_SIGNING_CERT);
3146         goto f_err;
3147     }
3148 #endif
3149 #ifndef OPENSSL_NO_RSA
3150     if (alg_k & (SSL_kRSA | SSL_kRSAPSK) &&
3151         !has_bits(i, EVP_PK_RSA | EVP_PKT_ENC)) {
3152         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3153                SSL_R_MISSING_RSA_ENCRYPTING_CERT);
3154         goto f_err;
3155     }
3156 #endif
3157 #ifndef OPENSSL_NO_DH
3158     if ((alg_k & SSL_kDHE) && (s->s3->peer_tmp == NULL)) {
3159         al = SSL_AD_INTERNAL_ERROR;
3160         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, ERR_R_INTERNAL_ERROR);
3161         goto f_err;
3162     }
3163 #endif
3164
3165     return (1);
3166  f_err:
3167     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3168     return (0);
3169 }
3170
3171 #ifndef OPENSSL_NO_NEXTPROTONEG
3172 int tls_construct_next_proto(SSL *s, WPACKET *pkt)
3173 {
3174     size_t len, padding_len;
3175     unsigned char *padding = NULL;
3176
3177     len = s->ext.npn_len;
3178     padding_len = 32 - ((len + 2) % 32);
3179
3180     if (!WPACKET_sub_memcpy_u8(pkt, s->ext.npn, len)
3181             || !WPACKET_sub_allocate_bytes_u8(pkt, padding_len, &padding)) {
3182         SSLerr(SSL_F_TLS_CONSTRUCT_NEXT_PROTO, ERR_R_INTERNAL_ERROR);
3183         goto err;
3184     }
3185
3186     memset(padding, 0, padding_len);
3187
3188     return 1;
3189  err:
3190     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3191     return 0;
3192 }
3193 #endif
3194
3195 MSG_PROCESS_RETURN tls_process_hello_req(SSL *s, PACKET *pkt)
3196 {
3197     if (PACKET_remaining(pkt) > 0) {
3198         /* should contain no data */
3199         SSLerr(SSL_F_TLS_PROCESS_HELLO_REQ, SSL_R_LENGTH_MISMATCH);
3200         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
3201         ossl_statem_set_error(s);
3202         return MSG_PROCESS_ERROR;
3203     }
3204
3205     /*
3206      * This is a historical discrepancy maintained for compatibility
3207      * reasons. If a TLS client receives a HelloRequest it will attempt
3208      * an abbreviated handshake. However if a DTLS client receives a
3209      * HelloRequest it will do a full handshake.
3210      */
3211     if (SSL_IS_DTLS(s))
3212         SSL_renegotiate(s);
3213     else
3214         SSL_renegotiate_abbreviated(s);
3215
3216     return MSG_PROCESS_FINISHED_READING;
3217 }
3218
3219 static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt)
3220 {
3221     int al = SSL_AD_INTERNAL_ERROR;
3222     PACKET extensions;
3223     RAW_EXTENSION *rawexts = NULL;
3224
3225     if (!PACKET_as_length_prefixed_2(pkt, &extensions)) {
3226         al = SSL_AD_DECODE_ERROR;
3227         SSLerr(SSL_F_TLS_PROCESS_ENCRYPTED_EXTENSIONS, SSL_R_LENGTH_MISMATCH);
3228         goto err;
3229     }
3230
3231     if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3232                                 &rawexts, &al)
3233             || !tls_parse_all_extensions(s, EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3234                                          rawexts, NULL, 0, &al))
3235         goto err;
3236
3237     OPENSSL_free(rawexts);
3238     return MSG_PROCESS_CONTINUE_READING;
3239
3240  err:
3241     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3242     ossl_statem_set_error(s);
3243     OPENSSL_free(rawexts);
3244     return MSG_PROCESS_ERROR;
3245 }
3246
3247 int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey)
3248 {
3249     int i = 0;
3250 #ifndef OPENSSL_NO_ENGINE
3251     if (s->ctx->client_cert_engine) {
3252         i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s,
3253                                         SSL_get_client_CA_list(s),
3254                                         px509, ppkey, NULL, NULL, NULL);
3255         if (i != 0)
3256             return i;
3257     }
3258 #endif
3259     if (s->ctx->client_cert_cb)
3260         i = s->ctx->client_cert_cb(s, px509, ppkey);
3261     return i;
3262 }
3263
3264 int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, WPACKET *pkt)
3265 {
3266     int i;
3267     size_t totlen = 0, len, maxlen;
3268     int empty_reneg_info_scsv = !s->renegotiate;
3269     /* Set disabled masks for this session */
3270     ssl_set_client_disabled(s);
3271
3272     if (sk == NULL)
3273         return (0);
3274
3275 #ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
3276 # if OPENSSL_MAX_TLS1_2_CIPHER_LENGTH < 6
3277 #  error Max cipher length too short
3278 # endif
3279     /*
3280      * Some servers hang if client hello > 256 bytes as hack workaround
3281      * chop number of supported ciphers to keep it well below this if we
3282      * use TLS v1.2
3283      */
3284     if (TLS1_get_version(s) >= TLS1_2_VERSION)
3285         maxlen = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
3286     else
3287 #endif
3288         /* Maximum length that can be stored in 2 bytes. Length must be even */
3289         maxlen = 0xfffe;
3290
3291     if (empty_reneg_info_scsv)
3292         maxlen -= 2;
3293     if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV)
3294         maxlen -= 2;
3295
3296     for (i = 0; i < sk_SSL_CIPHER_num(sk) && totlen < maxlen; i++) {
3297         const SSL_CIPHER *c;
3298
3299         c = sk_SSL_CIPHER_value(sk, i);
3300         /* Skip disabled ciphers */
3301         if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED))
3302             continue;
3303
3304         if (!s->method->put_cipher_by_char(c, pkt, &len)) {
3305             SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3306             return 0;
3307         }
3308
3309         totlen += len;
3310     }
3311
3312     if (totlen == 0) {
3313         SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, SSL_R_NO_CIPHERS_AVAILABLE);
3314         return 0;
3315     }
3316
3317     if (totlen != 0) {
3318         if (empty_reneg_info_scsv) {
3319             static SSL_CIPHER scsv = {
3320                 0, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3321             };
3322             if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3323                 SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3324                 return 0;
3325             }
3326         }
3327         if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) {
3328             static SSL_CIPHER scsv = {
3329                 0, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3330             };
3331             if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3332                 SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3333                 return 0;
3334             }
3335         }
3336     }
3337
3338     return 1;
3339 }