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