Support draft-19 TLS certificate request format
[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 #ifndef OPENSSL_NO_SCTP
1027     case TLS_ST_CR_SRVR_DONE:
1028         /* We only get here if we are using SCTP and we are renegotiating */
1029         if (BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
1030             s->s3->in_read_app_data = 2;
1031             s->rwstate = SSL_READING;
1032             BIO_clear_retry_flags(SSL_get_rbio(s));
1033             BIO_set_retry_read(SSL_get_rbio(s));
1034             ossl_statem_set_sctp_read_sock(s, 1);
1035             return WORK_MORE_A;
1036         }
1037         ossl_statem_set_sctp_read_sock(s, 0);
1038         return WORK_FINISHED_STOP;
1039 #endif
1040     }
1041 }
1042
1043 int tls_construct_client_hello(SSL *s, WPACKET *pkt)
1044 {
1045     unsigned char *p;
1046     size_t sess_id_len;
1047     int i, protverr;
1048     int al = SSL_AD_HANDSHAKE_FAILURE;
1049 #ifndef OPENSSL_NO_COMP
1050     SSL_COMP *comp;
1051 #endif
1052     SSL_SESSION *sess = s->session;
1053
1054     if (!WPACKET_set_max_size(pkt, SSL3_RT_MAX_PLAIN_LENGTH)) {
1055         /* Should not happen */
1056         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1057         return 0;
1058     }
1059
1060     /* Work out what SSL/TLS/DTLS version to use */
1061     protverr = ssl_set_client_hello_version(s);
1062     if (protverr != 0) {
1063         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, protverr);
1064         return 0;
1065     }
1066
1067     if ((sess == NULL) || !ssl_version_supported(s, sess->ssl_version) ||
1068         /*
1069          * In the case of EAP-FAST, we can have a pre-shared
1070          * "ticket" without a session ID.
1071          */
1072         (!sess->session_id_length && !sess->ext.tick) ||
1073         (sess->not_resumable)) {
1074         if (!ssl_get_new_session(s, 0))
1075             return 0;
1076     }
1077     /* else use the pre-loaded session */
1078
1079     p = s->s3->client_random;
1080
1081     /*
1082      * for DTLS if client_random is initialized, reuse it, we are
1083      * required to use same upon reply to HelloVerify
1084      */
1085     if (SSL_IS_DTLS(s)) {
1086         size_t idx;
1087         i = 1;
1088         for (idx = 0; idx < sizeof(s->s3->client_random); idx++) {
1089             if (p[idx]) {
1090                 i = 0;
1091                 break;
1092             }
1093         }
1094     } else
1095         i = 1;
1096
1097     if (i && ssl_fill_hello_random(s, 0, p, sizeof(s->s3->client_random)) <= 0)
1098         return 0;
1099
1100     /*-
1101      * version indicates the negotiated version: for example from
1102      * an SSLv2/v3 compatible client hello). The client_version
1103      * field is the maximum version we permit and it is also
1104      * used in RSA encrypted premaster secrets. Some servers can
1105      * choke if we initially report a higher version then
1106      * renegotiate to a lower one in the premaster secret. This
1107      * didn't happen with TLS 1.0 as most servers supported it
1108      * but it can with TLS 1.1 or later if the server only supports
1109      * 1.0.
1110      *
1111      * Possible scenario with previous logic:
1112      *      1. Client hello indicates TLS 1.2
1113      *      2. Server hello says TLS 1.0
1114      *      3. RSA encrypted premaster secret uses 1.2.
1115      *      4. Handshake proceeds using TLS 1.0.
1116      *      5. Server sends hello request to renegotiate.
1117      *      6. Client hello indicates TLS v1.0 as we now
1118      *         know that is maximum server supports.
1119      *      7. Server chokes on RSA encrypted premaster secret
1120      *         containing version 1.0.
1121      *
1122      * For interoperability it should be OK to always use the
1123      * maximum version we support in client hello and then rely
1124      * on the checking of version to ensure the servers isn't
1125      * being inconsistent: for example initially negotiating with
1126      * TLS 1.0 and renegotiating with TLS 1.2. We do this by using
1127      * client_version in client hello and not resetting it to
1128      * the negotiated version.
1129      *
1130      * For TLS 1.3 we always set the ClientHello version to 1.2 and rely on the
1131      * supported_versions extension for the real supported versions.
1132      */
1133     if (!WPACKET_put_bytes_u16(pkt, s->client_version)
1134             || !WPACKET_memcpy(pkt, s->s3->client_random, SSL3_RANDOM_SIZE)) {
1135         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1136         return 0;
1137     }
1138
1139     /* Session ID */
1140     if (s->new_session || s->session->ssl_version == TLS1_3_VERSION)
1141         sess_id_len = 0;
1142     else
1143         sess_id_len = s->session->session_id_length;
1144     if (sess_id_len > sizeof(s->session->session_id)
1145             || !WPACKET_start_sub_packet_u8(pkt)
1146             || (sess_id_len != 0 && !WPACKET_memcpy(pkt, s->session->session_id,
1147                                                     sess_id_len))
1148             || !WPACKET_close(pkt)) {
1149         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1150         return 0;
1151     }
1152
1153     /* cookie stuff for DTLS */
1154     if (SSL_IS_DTLS(s)) {
1155         if (s->d1->cookie_len > sizeof(s->d1->cookie)
1156                 || !WPACKET_sub_memcpy_u8(pkt, s->d1->cookie,
1157                                           s->d1->cookie_len)) {
1158             SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1159             return 0;
1160         }
1161     }
1162
1163     /* Ciphers supported */
1164     if (!WPACKET_start_sub_packet_u16(pkt)) {
1165         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1166         return 0;
1167     }
1168     /* ssl_cipher_list_to_bytes() raises SSLerr if appropriate */
1169     if (!ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), pkt))
1170         return 0;
1171     if (!WPACKET_close(pkt)) {
1172         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1173         return 0;
1174     }
1175
1176     /* COMPRESSION */
1177     if (!WPACKET_start_sub_packet_u8(pkt)) {
1178         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1179         return 0;
1180     }
1181 #ifndef OPENSSL_NO_COMP
1182     if (ssl_allow_compression(s)
1183             && s->ctx->comp_methods
1184             && (SSL_IS_DTLS(s) || s->s3->tmp.max_ver < TLS1_3_VERSION)) {
1185         int compnum = sk_SSL_COMP_num(s->ctx->comp_methods);
1186         for (i = 0; i < compnum; i++) {
1187             comp = sk_SSL_COMP_value(s->ctx->comp_methods, i);
1188             if (!WPACKET_put_bytes_u8(pkt, comp->id)) {
1189                 SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1190                 return 0;
1191             }
1192         }
1193     }
1194 #endif
1195     /* Add the NULL method */
1196     if (!WPACKET_put_bytes_u8(pkt, 0) || !WPACKET_close(pkt)) {
1197         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1198         return 0;
1199     }
1200
1201     /* TLS extensions */
1202     if (!tls_construct_extensions(s, pkt, EXT_CLIENT_HELLO, NULL, 0, &al)) {
1203         ssl3_send_alert(s, SSL3_AL_FATAL, al);
1204         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1205         return 0;
1206     }
1207
1208     return 1;
1209 }
1210
1211 MSG_PROCESS_RETURN dtls_process_hello_verify(SSL *s, PACKET *pkt)
1212 {
1213     int al;
1214     size_t cookie_len;
1215     PACKET cookiepkt;
1216
1217     if (!PACKET_forward(pkt, 2)
1218         || !PACKET_get_length_prefixed_1(pkt, &cookiepkt)) {
1219         al = SSL_AD_DECODE_ERROR;
1220         SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_MISMATCH);
1221         goto f_err;
1222     }
1223
1224     cookie_len = PACKET_remaining(&cookiepkt);
1225     if (cookie_len > sizeof(s->d1->cookie)) {
1226         al = SSL_AD_ILLEGAL_PARAMETER;
1227         SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_TOO_LONG);
1228         goto f_err;
1229     }
1230
1231     if (!PACKET_copy_bytes(&cookiepkt, s->d1->cookie, cookie_len)) {
1232         al = SSL_AD_DECODE_ERROR;
1233         SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_MISMATCH);
1234         goto f_err;
1235     }
1236     s->d1->cookie_len = cookie_len;
1237
1238     return MSG_PROCESS_FINISHED_READING;
1239  f_err:
1240     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1241     ossl_statem_set_error(s);
1242     return MSG_PROCESS_ERROR;
1243 }
1244
1245 static int set_client_ciphersuite(SSL *s, const unsigned char *cipherchars)
1246 {
1247     STACK_OF(SSL_CIPHER) *sk;
1248     const SSL_CIPHER *c;
1249     int i;
1250
1251     c = ssl_get_cipher_by_char(s, cipherchars, 0);
1252     if (c == NULL) {
1253         /* unknown cipher */
1254         SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_UNKNOWN_CIPHER_RETURNED);
1255         return 0;
1256     }
1257     /*
1258      * If it is a disabled cipher we either didn't send it in client hello,
1259      * or it's not allowed for the selected protocol. So we return an error.
1260      */
1261     if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_CHECK)) {
1262         SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_WRONG_CIPHER_RETURNED);
1263         return 0;
1264     }
1265
1266     sk = ssl_get_ciphers_by_id(s);
1267     i = sk_SSL_CIPHER_find(sk, c);
1268     if (i < 0) {
1269         /* we did not say we would use this cipher */
1270         SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_WRONG_CIPHER_RETURNED);
1271         return 0;
1272     }
1273
1274     if (SSL_IS_TLS13(s) && s->s3->tmp.new_cipher != NULL
1275             && s->s3->tmp.new_cipher->id != c->id) {
1276         /* ServerHello selected a different ciphersuite to that in the HRR */
1277         SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_WRONG_CIPHER_RETURNED);
1278         return 0;
1279     }
1280
1281     /*
1282      * Depending on the session caching (internal/external), the cipher
1283      * and/or cipher_id values may not be set. Make sure that cipher_id is
1284      * set and use it for comparison.
1285      */
1286     if (s->session->cipher != NULL)
1287         s->session->cipher_id = s->session->cipher->id;
1288     if (s->hit && (s->session->cipher_id != c->id)) {
1289         SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE,
1290                SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED);
1291         return 0;
1292     }
1293     s->s3->tmp.new_cipher = c;
1294
1295     return 1;
1296 }
1297
1298 MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt)
1299 {
1300     PACKET session_id, extpkt;
1301     size_t session_id_len;
1302     const unsigned char *cipherchars;
1303     int al = SSL_AD_INTERNAL_ERROR;
1304     unsigned int compression;
1305     unsigned int sversion;
1306     unsigned int context;
1307     int protverr;
1308     RAW_EXTENSION *extensions = NULL;
1309 #ifndef OPENSSL_NO_COMP
1310     SSL_COMP *comp;
1311 #endif
1312
1313     if (!PACKET_get_net_2(pkt, &sversion)) {
1314         al = SSL_AD_DECODE_ERROR;
1315         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1316         goto f_err;
1317     }
1318
1319     /* We do this immediately so we know what format the ServerHello is in */
1320     protverr = ssl_choose_client_version(s, sversion);
1321     if (protverr != 0) {
1322         al = SSL_AD_PROTOCOL_VERSION;
1323         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, protverr);
1324         goto f_err;
1325     }
1326
1327     /*
1328      * In TLSv1.3 a ServerHello message signals a key change so the end of the
1329      * message must be on a record boundary.
1330      */
1331     if (SSL_IS_TLS13(s) && RECORD_LAYER_processed_read_pending(&s->rlayer)) {
1332         al = SSL_AD_UNEXPECTED_MESSAGE;
1333         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_NOT_ON_RECORD_BOUNDARY);
1334         goto f_err;
1335     }
1336
1337     /* load the server hello data */
1338     /* load the server random */
1339     if (!PACKET_copy_bytes(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) {
1340         al = SSL_AD_DECODE_ERROR;
1341         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1342         goto f_err;
1343     }
1344
1345     /* Get the session-id. */
1346     if (!SSL_IS_TLS13(s)) {
1347         if (!PACKET_get_length_prefixed_1(pkt, &session_id)) {
1348             al = SSL_AD_DECODE_ERROR;
1349             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1350             goto f_err;
1351         }
1352         session_id_len = PACKET_remaining(&session_id);
1353         if (session_id_len > sizeof s->session->session_id
1354             || session_id_len > SSL3_SESSION_ID_SIZE) {
1355             al = SSL_AD_ILLEGAL_PARAMETER;
1356             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1357                    SSL_R_SSL3_SESSION_ID_TOO_LONG);
1358             goto f_err;
1359         }
1360     } else {
1361         PACKET_null_init(&session_id);
1362         session_id_len = 0;
1363     }
1364
1365     if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) {
1366         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1367         al = SSL_AD_DECODE_ERROR;
1368         goto f_err;
1369     }
1370
1371     if (!SSL_IS_TLS13(s)) {
1372         if (!PACKET_get_1(pkt, &compression)) {
1373             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH);
1374             al = SSL_AD_DECODE_ERROR;
1375             goto f_err;
1376         }
1377     } else {
1378         compression = 0;
1379     }
1380
1381     /* TLS extensions */
1382     if (PACKET_remaining(pkt) == 0) {
1383         PACKET_null_init(&extpkt);
1384     } else if (!PACKET_as_length_prefixed_2(pkt, &extpkt)) {
1385         al = SSL_AD_DECODE_ERROR;
1386         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_BAD_LENGTH);
1387         goto f_err;
1388     }
1389
1390     context = SSL_IS_TLS13(s) ? EXT_TLS1_3_SERVER_HELLO
1391                               : EXT_TLS1_2_SERVER_HELLO;
1392     if (!tls_collect_extensions(s, &extpkt, context, &extensions, &al, NULL))
1393         goto f_err;
1394
1395     s->hit = 0;
1396
1397     if (SSL_IS_TLS13(s)) {
1398         /* This will set s->hit if we are resuming */
1399         if (!tls_parse_extension(s, TLSEXT_IDX_psk,
1400                                  EXT_TLS1_3_SERVER_HELLO,
1401                                  extensions, NULL, 0, &al))
1402             goto f_err;
1403     } else {
1404         /*
1405          * Check if we can resume the session based on external pre-shared
1406          * secret. EAP-FAST (RFC 4851) supports two types of session resumption.
1407          * Resumption based on server-side state works with session IDs.
1408          * Resumption based on pre-shared Protected Access Credentials (PACs)
1409          * works by overriding the SessionTicket extension at the application
1410          * layer, and does not send a session ID. (We do not know whether
1411          * EAP-FAST servers would honour the session ID.) Therefore, the session
1412          * ID alone is not a reliable indicator of session resumption, so we
1413          * first check if we can resume, and later peek at the next handshake
1414          * message to see if the server wants to resume.
1415          */
1416         if (s->version >= TLS1_VERSION
1417                 && s->ext.session_secret_cb != NULL && s->session->ext.tick) {
1418             const SSL_CIPHER *pref_cipher = NULL;
1419             /*
1420              * s->session->master_key_length is a size_t, but this is an int for
1421              * backwards compat reasons
1422              */
1423             int master_key_length;
1424             master_key_length = sizeof(s->session->master_key);
1425             if (s->ext.session_secret_cb(s, s->session->master_key,
1426                                          &master_key_length,
1427                                          NULL, &pref_cipher,
1428                                          s->ext.session_secret_cb_arg)
1429                      && master_key_length > 0) {
1430                 s->session->master_key_length = master_key_length;
1431                 s->session->cipher = pref_cipher ?
1432                     pref_cipher : ssl_get_cipher_by_char(s, cipherchars, 0);
1433             } else {
1434                 SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1435                 al = SSL_AD_INTERNAL_ERROR;
1436                 goto f_err;
1437             }
1438         }
1439
1440         if (session_id_len != 0
1441                 && session_id_len == s->session->session_id_length
1442                 && memcmp(PACKET_data(&session_id), s->session->session_id,
1443                           session_id_len) == 0)
1444             s->hit = 1;
1445     }
1446
1447     if (s->hit) {
1448         if (s->sid_ctx_length != s->session->sid_ctx_length
1449                 || memcmp(s->session->sid_ctx, s->sid_ctx, s->sid_ctx_length)) {
1450             /* actually a client application bug */
1451             al = SSL_AD_ILLEGAL_PARAMETER;
1452             SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1453                    SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
1454             goto f_err;
1455         }
1456     } else {
1457         /*
1458          * If we were trying for session-id reuse but the server
1459          * didn't resume, make a new SSL_SESSION.
1460          * In the case of EAP-FAST and PAC, we do not send a session ID,
1461          * so the PAC-based session secret is always preserved. It'll be
1462          * overwritten if the server refuses resumption.
1463          */
1464         if (s->session->session_id_length > 0
1465                 || (SSL_IS_TLS13(s)
1466                     && s->session->ext.tick_identity
1467                        != TLSEXT_PSK_BAD_IDENTITY)) {
1468             s->ctx->stats.sess_miss++;
1469             if (!ssl_get_new_session(s, 0)) {
1470                 goto f_err;
1471             }
1472         }
1473
1474         s->session->ssl_version = s->version;
1475         s->session->session_id_length = session_id_len;
1476         /* session_id_len could be 0 */
1477         if (session_id_len > 0)
1478             memcpy(s->session->session_id, PACKET_data(&session_id),
1479                    session_id_len);
1480     }
1481
1482     /* Session version and negotiated protocol version should match */
1483     if (s->version != s->session->ssl_version) {
1484         al = SSL_AD_PROTOCOL_VERSION;
1485
1486         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1487                SSL_R_SSL_SESSION_VERSION_MISMATCH);
1488         goto f_err;
1489     }
1490     /*
1491      * Now that we know the version, update the check to see if it's an allowed
1492      * version.
1493      */
1494     s->s3->tmp.min_ver = s->version;
1495     s->s3->tmp.max_ver = s->version;
1496
1497     if (!set_client_ciphersuite(s, cipherchars)) {
1498         al = SSL_AD_ILLEGAL_PARAMETER;
1499         goto f_err;
1500     }
1501
1502 #ifdef OPENSSL_NO_COMP
1503     if (compression != 0) {
1504         al = SSL_AD_ILLEGAL_PARAMETER;
1505         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1506                SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1507         goto f_err;
1508     }
1509     /*
1510      * If compression is disabled we'd better not try to resume a session
1511      * using compression.
1512      */
1513     if (s->session->compress_meth != 0) {
1514         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1515         goto f_err;
1516     }
1517 #else
1518     if (s->hit && compression != s->session->compress_meth) {
1519         al = SSL_AD_ILLEGAL_PARAMETER;
1520         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1521                SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
1522         goto f_err;
1523     }
1524     if (compression == 0)
1525         comp = NULL;
1526     else if (!ssl_allow_compression(s)) {
1527         al = SSL_AD_ILLEGAL_PARAMETER;
1528         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_COMPRESSION_DISABLED);
1529         goto f_err;
1530     } else {
1531         comp = ssl3_comp_find(s->ctx->comp_methods, compression);
1532     }
1533
1534     if (compression != 0 && comp == NULL) {
1535         al = SSL_AD_ILLEGAL_PARAMETER;
1536         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO,
1537                SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1538         goto f_err;
1539     } else {
1540         s->s3->tmp.new_compression = comp;
1541     }
1542 #endif
1543
1544     if (!tls_parse_all_extensions(s, context, extensions, NULL, 0, &al))
1545         goto f_err;
1546
1547 #ifndef OPENSSL_NO_SCTP
1548     if (SSL_IS_DTLS(s) && s->hit) {
1549         unsigned char sctpauthkey[64];
1550         char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
1551
1552         /*
1553          * Add new shared key for SCTP-Auth, will be ignored if
1554          * no SCTP used.
1555          */
1556         memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
1557                sizeof(DTLS1_SCTP_AUTH_LABEL));
1558
1559         if (SSL_export_keying_material(s, sctpauthkey,
1560                                        sizeof(sctpauthkey),
1561                                        labelbuffer,
1562                                        sizeof(labelbuffer), NULL, 0, 0) <= 0)
1563             goto f_err;
1564
1565         BIO_ctrl(SSL_get_wbio(s),
1566                  BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
1567                  sizeof(sctpauthkey), sctpauthkey);
1568     }
1569 #endif
1570
1571     /*
1572      * In TLSv1.3 we have some post-processing to change cipher state, otherwise
1573      * we're done with this message
1574      */
1575     if (SSL_IS_TLS13(s)
1576             && (!s->method->ssl3_enc->setup_key_block(s)
1577                 || !s->method->ssl3_enc->change_cipher_state(s,
1578                     SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_READ))) {
1579         al = SSL_AD_INTERNAL_ERROR;
1580         SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_CANNOT_CHANGE_CIPHER);
1581         goto f_err;
1582     }
1583
1584     OPENSSL_free(extensions);
1585     return MSG_PROCESS_CONTINUE_READING;
1586  f_err:
1587     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1588     ossl_statem_set_error(s);
1589     OPENSSL_free(extensions);
1590     return MSG_PROCESS_ERROR;
1591 }
1592
1593 static MSG_PROCESS_RETURN tls_process_hello_retry_request(SSL *s, PACKET *pkt)
1594 {
1595     unsigned int sversion;
1596     int errorcode;
1597     const unsigned char *cipherchars;
1598     RAW_EXTENSION *extensions = NULL;
1599     int al;
1600     PACKET extpkt;
1601
1602     if (!PACKET_get_net_2(pkt, &sversion)) {
1603         al = SSL_AD_DECODE_ERROR;
1604         SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, SSL_R_LENGTH_MISMATCH);
1605         goto f_err;
1606     }
1607
1608     s->hello_retry_request = 1;
1609
1610     /* This will fail if it doesn't choose TLSv1.3+ */
1611     errorcode = ssl_choose_client_version(s, sversion);
1612     if (errorcode != 0) {
1613         al = SSL_AD_PROTOCOL_VERSION;
1614         SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, errorcode);
1615         goto f_err;
1616     }
1617
1618     if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) {
1619         SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, SSL_R_LENGTH_MISMATCH);
1620         al = SSL_AD_DECODE_ERROR;
1621         goto f_err;
1622     }
1623
1624     if (!set_client_ciphersuite(s, cipherchars)) {
1625         al = SSL_AD_ILLEGAL_PARAMETER;
1626         goto f_err;
1627     }
1628
1629     if (!PACKET_as_length_prefixed_2(pkt, &extpkt)) {
1630         al = SSL_AD_DECODE_ERROR;
1631         SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, SSL_R_BAD_LENGTH);
1632         goto f_err;
1633     }
1634
1635     if (!tls_collect_extensions(s, &extpkt, EXT_TLS1_3_HELLO_RETRY_REQUEST,
1636                                 &extensions, &al, NULL)
1637             || !tls_parse_all_extensions(s, EXT_TLS1_3_HELLO_RETRY_REQUEST,
1638                                          extensions, NULL, 0, &al))
1639         goto f_err;
1640
1641     OPENSSL_free(extensions);
1642
1643     /*
1644      * Re-initialise the Transcript Hash. We're going to prepopulate it with
1645      * a synthetic message_hash in place of ClientHello1.
1646      */
1647     if (!create_synthetic_message_hash(s)) {
1648         al = SSL_AD_INTERNAL_ERROR;
1649         goto f_err;
1650     }
1651
1652     /*
1653      * Add this message to the Transcript Hash. Normally this is done
1654      * automatically prior to the message processing stage. However due to the
1655      * need to create the synthetic message hash, we defer that step until now
1656      * for HRR messages.
1657      */
1658     if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
1659                                 s->init_num + SSL3_HM_HEADER_LENGTH)) {
1660         al = SSL_AD_INTERNAL_ERROR;
1661         SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, ERR_R_INTERNAL_ERROR);
1662         goto f_err;
1663     }
1664
1665     return MSG_PROCESS_FINISHED_READING;
1666  f_err:
1667     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1668     ossl_statem_set_error(s);
1669     OPENSSL_free(extensions);
1670     return MSG_PROCESS_ERROR;
1671 }
1672
1673 MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s, PACKET *pkt)
1674 {
1675     int al, i, ret = MSG_PROCESS_ERROR, exp_idx;
1676     unsigned long cert_list_len, cert_len;
1677     X509 *x = NULL;
1678     const unsigned char *certstart, *certbytes;
1679     STACK_OF(X509) *sk = NULL;
1680     EVP_PKEY *pkey = NULL;
1681     size_t chainidx;
1682     unsigned int context = 0;
1683
1684     if ((sk = sk_X509_new_null()) == NULL) {
1685         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1686         goto err;
1687     }
1688
1689     if ((SSL_IS_TLS13(s) && !PACKET_get_1(pkt, &context))
1690             || context != 0
1691             || !PACKET_get_net_3(pkt, &cert_list_len)
1692             || PACKET_remaining(pkt) != cert_list_len) {
1693         al = SSL_AD_DECODE_ERROR;
1694         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
1695         goto f_err;
1696     }
1697     for (chainidx = 0; PACKET_remaining(pkt); chainidx++) {
1698         if (!PACKET_get_net_3(pkt, &cert_len)
1699             || !PACKET_get_bytes(pkt, &certbytes, cert_len)) {
1700             al = SSL_AD_DECODE_ERROR;
1701             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1702                    SSL_R_CERT_LENGTH_MISMATCH);
1703             goto f_err;
1704         }
1705
1706         certstart = certbytes;
1707         x = d2i_X509(NULL, (const unsigned char **)&certbytes, cert_len);
1708         if (x == NULL) {
1709             al = SSL_AD_BAD_CERTIFICATE;
1710             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_ASN1_LIB);
1711             goto f_err;
1712         }
1713         if (certbytes != (certstart + cert_len)) {
1714             al = SSL_AD_DECODE_ERROR;
1715             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1716                    SSL_R_CERT_LENGTH_MISMATCH);
1717             goto f_err;
1718         }
1719
1720         if (SSL_IS_TLS13(s)) {
1721             RAW_EXTENSION *rawexts = NULL;
1722             PACKET extensions;
1723
1724             if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
1725                 al = SSL_AD_DECODE_ERROR;
1726                 SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, SSL_R_BAD_LENGTH);
1727                 goto f_err;
1728             }
1729             if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_CERTIFICATE,
1730                                         &rawexts, &al, NULL)
1731                     || !tls_parse_all_extensions(s, EXT_TLS1_3_CERTIFICATE,
1732                                                  rawexts, x, chainidx, &al)) {
1733                 OPENSSL_free(rawexts);
1734                 goto f_err;
1735             }
1736             OPENSSL_free(rawexts);
1737         }
1738
1739         if (!sk_X509_push(sk, x)) {
1740             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1741             goto err;
1742         }
1743         x = NULL;
1744     }
1745
1746     i = ssl_verify_cert_chain(s, sk);
1747     /*
1748      * The documented interface is that SSL_VERIFY_PEER should be set in order
1749      * for client side verification of the server certificate to take place.
1750      * However, historically the code has only checked that *any* flag is set
1751      * to cause server verification to take place. Use of the other flags makes
1752      * no sense in client mode. An attempt to clean up the semantics was
1753      * reverted because at least one application *only* set
1754      * SSL_VERIFY_FAIL_IF_NO_PEER_CERT. Prior to the clean up this still caused
1755      * server verification to take place, after the clean up it silently did
1756      * nothing. SSL_CTX_set_verify()/SSL_set_verify() cannot validate the flags
1757      * sent to them because they are void functions. Therefore, we now use the
1758      * (less clean) historic behaviour of performing validation if any flag is
1759      * set. The *documented* interface remains the same.
1760      */
1761     if (s->verify_mode != SSL_VERIFY_NONE && i <= 0) {
1762         al = ssl_verify_alarm_type(s->verify_result);
1763         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1764                SSL_R_CERTIFICATE_VERIFY_FAILED);
1765         goto f_err;
1766     }
1767     ERR_clear_error();          /* but we keep s->verify_result */
1768     if (i > 1) {
1769         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, i);
1770         al = SSL_AD_HANDSHAKE_FAILURE;
1771         goto f_err;
1772     }
1773
1774     s->session->peer_chain = sk;
1775     /*
1776      * Inconsistency alert: cert_chain does include the peer's certificate,
1777      * which we don't include in statem_srvr.c
1778      */
1779     x = sk_X509_value(sk, 0);
1780     sk = NULL;
1781     /*
1782      * VRS 19990621: possible memory leak; sk=null ==> !sk_pop_free() @end
1783      */
1784
1785     pkey = X509_get0_pubkey(x);
1786
1787     if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) {
1788         x = NULL;
1789         al = SSL3_AL_FATAL;
1790         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1791                SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1792         goto f_err;
1793     }
1794
1795     i = ssl_cert_type(x, pkey);
1796     if (i < 0) {
1797         x = NULL;
1798         al = SSL3_AL_FATAL;
1799         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1800                SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1801         goto f_err;
1802     }
1803     /*
1804      * Check certificate type is consistent with ciphersuite. For TLS 1.3
1805      * skip check since TLS 1.3 ciphersuites can be used with any certificate
1806      * type.
1807      */
1808     if (!SSL_IS_TLS13(s)) {
1809         exp_idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher);
1810         if (exp_idx >= 0 && i != exp_idx
1811             && (exp_idx != SSL_PKEY_GOST_EC ||
1812                 (i != SSL_PKEY_GOST12_512 && i != SSL_PKEY_GOST12_256
1813                  && i != SSL_PKEY_GOST01))) {
1814             x = NULL;
1815             al = SSL_AD_ILLEGAL_PARAMETER;
1816             SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE,
1817                    SSL_R_WRONG_CERTIFICATE_TYPE);
1818             goto f_err;
1819         }
1820     }
1821     s->session->peer_type = i;
1822
1823     X509_free(s->session->peer);
1824     X509_up_ref(x);
1825     s->session->peer = x;
1826     s->session->verify_result = s->verify_result;
1827     x = NULL;
1828
1829     /* Save the current hash state for when we receive the CertificateVerify */
1830     if (SSL_IS_TLS13(s)
1831             && !ssl_handshake_hash(s, s->cert_verify_hash,
1832                                    sizeof(s->cert_verify_hash),
1833                                    &s->cert_verify_hash_len)) {
1834         al = SSL_AD_INTERNAL_ERROR;
1835         SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
1836         goto f_err;
1837     }
1838
1839     ret = MSG_PROCESS_CONTINUE_READING;
1840     goto done;
1841
1842  f_err:
1843     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1844  err:
1845     ossl_statem_set_error(s);
1846  done:
1847     X509_free(x);
1848     sk_X509_pop_free(sk, X509_free);
1849     return ret;
1850 }
1851
1852 static int tls_process_ske_psk_preamble(SSL *s, PACKET *pkt, int *al)
1853 {
1854 #ifndef OPENSSL_NO_PSK
1855     PACKET psk_identity_hint;
1856
1857     /* PSK ciphersuites are preceded by an identity hint */
1858
1859     if (!PACKET_get_length_prefixed_2(pkt, &psk_identity_hint)) {
1860         *al = SSL_AD_DECODE_ERROR;
1861         SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH);
1862         return 0;
1863     }
1864
1865     /*
1866      * Store PSK identity hint for later use, hint is used in
1867      * tls_construct_client_key_exchange.  Assume that the maximum length of
1868      * a PSK identity hint can be as long as the maximum length of a PSK
1869      * identity.
1870      */
1871     if (PACKET_remaining(&psk_identity_hint) > PSK_MAX_IDENTITY_LEN) {
1872         *al = SSL_AD_HANDSHAKE_FAILURE;
1873         SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG);
1874         return 0;
1875     }
1876
1877     if (PACKET_remaining(&psk_identity_hint) == 0) {
1878         OPENSSL_free(s->session->psk_identity_hint);
1879         s->session->psk_identity_hint = NULL;
1880     } else if (!PACKET_strndup(&psk_identity_hint,
1881                                &s->session->psk_identity_hint)) {
1882         *al = SSL_AD_INTERNAL_ERROR;
1883         return 0;
1884     }
1885
1886     return 1;
1887 #else
1888     SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
1889     *al = SSL_AD_INTERNAL_ERROR;
1890     return 0;
1891 #endif
1892 }
1893
1894 static int tls_process_ske_srp(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al)
1895 {
1896 #ifndef OPENSSL_NO_SRP
1897     PACKET prime, generator, salt, server_pub;
1898
1899     if (!PACKET_get_length_prefixed_2(pkt, &prime)
1900         || !PACKET_get_length_prefixed_2(pkt, &generator)
1901         || !PACKET_get_length_prefixed_1(pkt, &salt)
1902         || !PACKET_get_length_prefixed_2(pkt, &server_pub)) {
1903         *al = SSL_AD_DECODE_ERROR;
1904         SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, SSL_R_LENGTH_MISMATCH);
1905         return 0;
1906     }
1907
1908     /* TODO(size_t): Convert BN_bin2bn() calls */
1909     if ((s->srp_ctx.N =
1910          BN_bin2bn(PACKET_data(&prime),
1911                    (int)PACKET_remaining(&prime), NULL)) == NULL
1912         || (s->srp_ctx.g =
1913             BN_bin2bn(PACKET_data(&generator),
1914                       (int)PACKET_remaining(&generator), NULL)) == NULL
1915         || (s->srp_ctx.s =
1916             BN_bin2bn(PACKET_data(&salt),
1917                       (int)PACKET_remaining(&salt), NULL)) == NULL
1918         || (s->srp_ctx.B =
1919             BN_bin2bn(PACKET_data(&server_pub),
1920                       (int)PACKET_remaining(&server_pub), NULL)) == NULL) {
1921         *al = SSL_AD_INTERNAL_ERROR;
1922         SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, ERR_R_BN_LIB);
1923         return 0;
1924     }
1925
1926     if (!srp_verify_server_param(s, al)) {
1927         *al = SSL_AD_DECODE_ERROR;
1928         SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, SSL_R_BAD_SRP_PARAMETERS);
1929         return 0;
1930     }
1931
1932     /* We must check if there is a certificate */
1933     if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
1934         *pkey = X509_get0_pubkey(s->session->peer);
1935
1936     return 1;
1937 #else
1938     SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, ERR_R_INTERNAL_ERROR);
1939     *al = SSL_AD_INTERNAL_ERROR;
1940     return 0;
1941 #endif
1942 }
1943
1944 static int tls_process_ske_dhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al)
1945 {
1946 #ifndef OPENSSL_NO_DH
1947     PACKET prime, generator, pub_key;
1948     EVP_PKEY *peer_tmp = NULL;
1949
1950     DH *dh = NULL;
1951     BIGNUM *p = NULL, *g = NULL, *bnpub_key = NULL;
1952
1953     int check_bits = 0;
1954
1955     if (!PACKET_get_length_prefixed_2(pkt, &prime)
1956         || !PACKET_get_length_prefixed_2(pkt, &generator)
1957         || !PACKET_get_length_prefixed_2(pkt, &pub_key)) {
1958         *al = SSL_AD_DECODE_ERROR;
1959         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_LENGTH_MISMATCH);
1960         return 0;
1961     }
1962
1963     peer_tmp = EVP_PKEY_new();
1964     dh = DH_new();
1965
1966     if (peer_tmp == NULL || dh == NULL) {
1967         *al = SSL_AD_INTERNAL_ERROR;
1968         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_MALLOC_FAILURE);
1969         goto err;
1970     }
1971
1972     /* TODO(size_t): Convert these calls */
1973     p = BN_bin2bn(PACKET_data(&prime), (int)PACKET_remaining(&prime), NULL);
1974     g = BN_bin2bn(PACKET_data(&generator), (int)PACKET_remaining(&generator),
1975                   NULL);
1976     bnpub_key = BN_bin2bn(PACKET_data(&pub_key),
1977                           (int)PACKET_remaining(&pub_key), NULL);
1978     if (p == NULL || g == NULL || bnpub_key == NULL) {
1979         *al = SSL_AD_INTERNAL_ERROR;
1980         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB);
1981         goto err;
1982     }
1983
1984     /* test non-zero pupkey */
1985     if (BN_is_zero(bnpub_key)) {
1986         *al = SSL_AD_DECODE_ERROR;
1987         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_BAD_DH_VALUE);
1988         goto err;
1989     }
1990
1991     if (!DH_set0_pqg(dh, p, NULL, g)) {
1992         *al = SSL_AD_INTERNAL_ERROR;
1993         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB);
1994         goto err;
1995     }
1996     p = g = NULL;
1997
1998     if (DH_check_params(dh, &check_bits) == 0 || check_bits != 0) {
1999         *al = SSL_AD_DECODE_ERROR;
2000         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_BAD_DH_VALUE);
2001         goto err;
2002     }
2003
2004     if (!DH_set0_key(dh, bnpub_key, NULL)) {
2005         *al = SSL_AD_INTERNAL_ERROR;
2006         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB);
2007         goto err;
2008     }
2009     bnpub_key = NULL;
2010
2011     if (!ssl_security(s, SSL_SECOP_TMP_DH, DH_security_bits(dh), 0, dh)) {
2012         *al = SSL_AD_HANDSHAKE_FAILURE;
2013         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_DH_KEY_TOO_SMALL);
2014         goto err;
2015     }
2016
2017     if (EVP_PKEY_assign_DH(peer_tmp, dh) == 0) {
2018         *al = SSL_AD_INTERNAL_ERROR;
2019         SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_EVP_LIB);
2020         goto err;
2021     }
2022
2023     s->s3->peer_tmp = peer_tmp;
2024
2025     /*
2026      * FIXME: This makes assumptions about which ciphersuites come with
2027      * public keys. We should have a less ad-hoc way of doing this
2028      */
2029     if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS))
2030         *pkey = X509_get0_pubkey(s->session->peer);
2031     /* else anonymous DH, so no certificate or pkey. */
2032
2033     return 1;
2034
2035  err:
2036     BN_free(p);
2037     BN_free(g);
2038     BN_free(bnpub_key);
2039     DH_free(dh);
2040     EVP_PKEY_free(peer_tmp);
2041
2042     return 0;
2043 #else
2044     SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_INTERNAL_ERROR);
2045     *al = SSL_AD_INTERNAL_ERROR;
2046     return 0;
2047 #endif
2048 }
2049
2050 static int tls_process_ske_ecdhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al)
2051 {
2052 #ifndef OPENSSL_NO_EC
2053     PACKET encoded_pt;
2054     const unsigned char *ecparams;
2055     int curve_nid;
2056     unsigned int curve_flags;
2057     EVP_PKEY_CTX *pctx = NULL;
2058
2059     /*
2060      * Extract elliptic curve parameters and the server's ephemeral ECDH
2061      * public key. For now we only support named (not generic) curves and
2062      * ECParameters in this case is just three bytes.
2063      */
2064     if (!PACKET_get_bytes(pkt, &ecparams, 3)) {
2065         *al = SSL_AD_DECODE_ERROR;
2066         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_LENGTH_TOO_SHORT);
2067         return 0;
2068     }
2069     /*
2070      * Check curve is one of our preferences, if not server has sent an
2071      * invalid curve. ECParameters is 3 bytes.
2072      */
2073     if (!tls1_check_curve(s, ecparams, 3)) {
2074         *al = SSL_AD_DECODE_ERROR;
2075         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_WRONG_CURVE);
2076         return 0;
2077     }
2078
2079     curve_nid = tls1_ec_curve_id2nid(*(ecparams + 2), &curve_flags);
2080
2081     if (curve_nid == 0) {
2082         *al = SSL_AD_INTERNAL_ERROR;
2083         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE,
2084                SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
2085         return 0;
2086     }
2087
2088     if ((curve_flags & TLS_CURVE_TYPE) == TLS_CURVE_CUSTOM) {
2089         EVP_PKEY *key = EVP_PKEY_new();
2090
2091         if (key == NULL || !EVP_PKEY_set_type(key, curve_nid)) {
2092             *al = SSL_AD_INTERNAL_ERROR;
2093             SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_EVP_LIB);
2094             EVP_PKEY_free(key);
2095             return 0;
2096         }
2097         s->s3->peer_tmp = key;
2098     } else {
2099         /* Set up EVP_PKEY with named curve as parameters */
2100         pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL);
2101         if (pctx == NULL
2102             || EVP_PKEY_paramgen_init(pctx) <= 0
2103             || EVP_PKEY_CTX_set_ec_paramgen_curve_nid(pctx, curve_nid) <= 0
2104             || EVP_PKEY_paramgen(pctx, &s->s3->peer_tmp) <= 0) {
2105             *al = SSL_AD_INTERNAL_ERROR;
2106             SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_EVP_LIB);
2107             EVP_PKEY_CTX_free(pctx);
2108             return 0;
2109         }
2110         EVP_PKEY_CTX_free(pctx);
2111         pctx = NULL;
2112     }
2113
2114     if (!PACKET_get_length_prefixed_1(pkt, &encoded_pt)) {
2115         *al = SSL_AD_DECODE_ERROR;
2116         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_LENGTH_MISMATCH);
2117         return 0;
2118     }
2119
2120     if (!EVP_PKEY_set1_tls_encodedpoint(s->s3->peer_tmp,
2121                                         PACKET_data(&encoded_pt),
2122                                         PACKET_remaining(&encoded_pt))) {
2123         *al = SSL_AD_DECODE_ERROR;
2124         SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_BAD_ECPOINT);
2125         return 0;
2126     }
2127
2128     /*
2129      * The ECC/TLS specification does not mention the use of DSA to sign
2130      * ECParameters in the server key exchange message. We do support RSA
2131      * and ECDSA.
2132      */
2133     if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aECDSA)
2134         *pkey = X509_get0_pubkey(s->session->peer);
2135     else if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aRSA)
2136         *pkey = X509_get0_pubkey(s->session->peer);
2137     /* else anonymous ECDH, so no certificate or pkey. */
2138
2139     return 1;
2140 #else
2141     SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_INTERNAL_ERROR);
2142     *al = SSL_AD_INTERNAL_ERROR;
2143     return 0;
2144 #endif
2145 }
2146
2147 MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s, PACKET *pkt)
2148 {
2149     int al = -1;
2150     long alg_k;
2151     EVP_PKEY *pkey = NULL;
2152     EVP_MD_CTX *md_ctx = NULL;
2153     EVP_PKEY_CTX *pctx = NULL;
2154     PACKET save_param_start, signature;
2155
2156     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2157
2158     save_param_start = *pkt;
2159
2160 #if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH)
2161     EVP_PKEY_free(s->s3->peer_tmp);
2162     s->s3->peer_tmp = NULL;
2163 #endif
2164
2165     if (alg_k & SSL_PSK) {
2166         if (!tls_process_ske_psk_preamble(s, pkt, &al))
2167             goto err;
2168     }
2169
2170     /* Nothing else to do for plain PSK or RSAPSK */
2171     if (alg_k & (SSL_kPSK | SSL_kRSAPSK)) {
2172     } else if (alg_k & SSL_kSRP) {
2173         if (!tls_process_ske_srp(s, pkt, &pkey, &al))
2174             goto err;
2175     } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
2176         if (!tls_process_ske_dhe(s, pkt, &pkey, &al))
2177             goto err;
2178     } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
2179         if (!tls_process_ske_ecdhe(s, pkt, &pkey, &al))
2180             goto err;
2181     } else if (alg_k) {
2182         al = SSL_AD_UNEXPECTED_MESSAGE;
2183         SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_UNEXPECTED_MESSAGE);
2184         goto err;
2185     }
2186
2187     /* if it was signed, check the signature */
2188     if (pkey != NULL) {
2189         PACKET params;
2190         int maxsig;
2191         const EVP_MD *md = NULL;
2192
2193         /*
2194          * |pkt| now points to the beginning of the signature, so the difference
2195          * equals the length of the parameters.
2196          */
2197         if (!PACKET_get_sub_packet(&save_param_start, &params,
2198                                    PACKET_remaining(&save_param_start) -
2199                                    PACKET_remaining(pkt))) {
2200             al = SSL_AD_INTERNAL_ERROR;
2201             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2202             goto err;
2203         }
2204
2205         if (SSL_USE_SIGALGS(s)) {
2206             unsigned int sigalg;
2207             int rv;
2208
2209             if (!PACKET_get_net_2(pkt, &sigalg)) {
2210                 al = SSL_AD_DECODE_ERROR;
2211                 SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
2212                 goto err;
2213             }
2214             rv = tls12_check_peer_sigalg(s, sigalg, pkey);
2215             if (rv == -1) {
2216                 al = SSL_AD_INTERNAL_ERROR;
2217                 goto err;
2218             } else if (rv == 0) {
2219                 al = SSL_AD_DECODE_ERROR;
2220                 goto err;
2221             }
2222 #ifdef SSL_DEBUG
2223             fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
2224 #endif
2225         } else if (!tls1_set_peer_legacy_sigalg(s, pkey)) {
2226             al = SSL_AD_INTERNAL_ERROR;
2227             goto err;
2228         }
2229
2230         md = ssl_md(s->s3->tmp.peer_sigalg->hash_idx);
2231
2232         if (!PACKET_get_length_prefixed_2(pkt, &signature)
2233             || PACKET_remaining(pkt) != 0) {
2234             al = SSL_AD_DECODE_ERROR;
2235             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
2236             goto err;
2237         }
2238         maxsig = EVP_PKEY_size(pkey);
2239         if (maxsig < 0) {
2240             al = SSL_AD_INTERNAL_ERROR;
2241             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2242             goto err;
2243         }
2244
2245         /*
2246          * Check signature length
2247          */
2248         if (PACKET_remaining(&signature) > (size_t)maxsig) {
2249             /* wrong packet length */
2250             al = SSL_AD_DECODE_ERROR;
2251             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE,
2252                    SSL_R_WRONG_SIGNATURE_LENGTH);
2253             goto err;
2254         }
2255
2256         md_ctx = EVP_MD_CTX_new();
2257         if (md_ctx == NULL) {
2258             al = SSL_AD_INTERNAL_ERROR;
2259             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2260             goto err;
2261         }
2262
2263         if (EVP_DigestVerifyInit(md_ctx, &pctx, md, NULL, pkey) <= 0) {
2264             al = SSL_AD_INTERNAL_ERROR;
2265             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2266             goto err;
2267         }
2268         if (SSL_USE_PSS(s)) {
2269             if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
2270                 || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx,
2271                                                 RSA_PSS_SALTLEN_DIGEST) <= 0) {
2272                 al = SSL_AD_INTERNAL_ERROR;
2273                 SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2274                 goto err;
2275             }
2276         }
2277         if (EVP_DigestVerifyUpdate(md_ctx, &(s->s3->client_random[0]),
2278                                    SSL3_RANDOM_SIZE) <= 0
2279                 || EVP_DigestVerifyUpdate(md_ctx, &(s->s3->server_random[0]),
2280                                           SSL3_RANDOM_SIZE) <= 0
2281                 || EVP_DigestVerifyUpdate(md_ctx, PACKET_data(&params),
2282                                           PACKET_remaining(&params)) <= 0) {
2283             al = SSL_AD_INTERNAL_ERROR;
2284             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB);
2285             goto err;
2286         }
2287         if (EVP_DigestVerifyFinal(md_ctx, PACKET_data(&signature),
2288                                   PACKET_remaining(&signature)) <= 0) {
2289             /* bad signature */
2290             al = SSL_AD_DECRYPT_ERROR;
2291             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_BAD_SIGNATURE);
2292             goto err;
2293         }
2294         EVP_MD_CTX_free(md_ctx);
2295         md_ctx = NULL;
2296     } else {
2297         /* aNULL, aSRP or PSK do not need public keys */
2298         if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
2299             && !(alg_k & SSL_PSK)) {
2300             /* Might be wrong key type, check it */
2301             if (ssl3_check_cert_and_algorithm(s)) {
2302                 /* Otherwise this shouldn't happen */
2303                 al = SSL_AD_INTERNAL_ERROR;
2304                 SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2305             } else {
2306                 al = SSL_AD_DECODE_ERROR;
2307             }
2308             goto err;
2309         }
2310         /* still data left over */
2311         if (PACKET_remaining(pkt) != 0) {
2312             al = SSL_AD_DECODE_ERROR;
2313             SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_EXTRA_DATA_IN_MESSAGE);
2314             goto err;
2315         }
2316     }
2317
2318     return MSG_PROCESS_CONTINUE_READING;
2319  err:
2320     if (al != -1)
2321         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2322     ossl_statem_set_error(s);
2323     EVP_MD_CTX_free(md_ctx);
2324     return MSG_PROCESS_ERROR;
2325 }
2326
2327 MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s, PACKET *pkt)
2328 {
2329     int ret = MSG_PROCESS_ERROR;
2330     int al = SSL_AD_DECODE_ERROR;
2331     size_t i;
2332
2333     /* Clear certificate validity flags */
2334     for (i = 0; i < SSL_PKEY_NUM; i++)
2335         s->s3->tmp.valid_flags[i] = 0;
2336
2337     if (SSL_IS_TLS13(s)) {
2338         PACKET reqctx, extensions;
2339         RAW_EXTENSION *rawexts = NULL;
2340
2341         /* Free and zero certificate types: it is not present in TLS 1.3 */
2342         OPENSSL_free(s->s3->tmp.ctype);
2343         s->s3->tmp.ctype = NULL;
2344         s->s3->tmp.ctype_len = 0;
2345
2346         /* TODO(TLS1.3) need to process request context, for now ignore */
2347         if (!PACKET_get_length_prefixed_1(pkt, &reqctx)) {
2348             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2349                    SSL_R_LENGTH_MISMATCH);
2350             goto err;
2351         }
2352
2353         if (!PACKET_get_length_prefixed_2(pkt, &extensions)) {
2354                 SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_BAD_LENGTH);
2355                 goto err;
2356         }
2357         if (!tls_collect_extensions(s, &extensions,
2358                                     EXT_TLS1_3_CERTIFICATE_REQUEST,
2359                                     &rawexts, &al, NULL)
2360             || !tls_parse_all_extensions(s, EXT_TLS1_3_CERTIFICATE_REQUEST,
2361                                          rawexts, NULL, 0, &al)) {
2362             OPENSSL_free(rawexts);
2363             goto err;
2364         }
2365         OPENSSL_free(rawexts);
2366         if (!tls1_process_sigalgs(s)) {
2367             al = SSL_AD_INTERNAL_ERROR;
2368             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2369             goto err;
2370         }
2371     } else {
2372         PACKET ctypes;
2373
2374         /* get the certificate types */
2375         if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) {
2376             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2377                    SSL_R_LENGTH_MISMATCH);
2378             goto err;
2379         }
2380
2381         if (!PACKET_memdup(&ctypes, &s->s3->tmp.ctype, &s->s3->tmp.ctype_len)) {
2382             al = SSL_AD_INTERNAL_ERROR;
2383             SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
2384             goto err;
2385         }
2386
2387         if (SSL_USE_SIGALGS(s)) {
2388             PACKET sigalgs;
2389
2390             if (!PACKET_get_length_prefixed_2(pkt, &sigalgs)) {
2391                 SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2392                        SSL_R_LENGTH_MISMATCH);
2393                 goto err;
2394             }
2395
2396             if (!tls1_save_sigalgs(s, &sigalgs)) {
2397                 SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2398                        SSL_R_SIGNATURE_ALGORITHMS_ERROR);
2399                 goto err;
2400             }
2401             if (!tls1_process_sigalgs(s)) {
2402                 al = SSL_AD_INTERNAL_ERROR;
2403                 SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST,
2404                        ERR_R_MALLOC_FAILURE);
2405                 goto err;
2406             }
2407         }
2408
2409         /* get the CA RDNs */
2410         if (!parse_ca_names(s, pkt, &al))
2411             goto err;
2412     }
2413
2414     if (PACKET_remaining(pkt) != 0) {
2415         SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, SSL_R_LENGTH_MISMATCH);
2416         goto err;
2417     }
2418
2419     /* we should setup a certificate to return.... */
2420     s->s3->tmp.cert_req = 1;
2421
2422     ret = MSG_PROCESS_CONTINUE_PROCESSING;
2423     goto done;
2424  err:
2425     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2426     ossl_statem_set_error(s);
2427  done:
2428     return ret;
2429 }
2430
2431 MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt)
2432 {
2433     int al = SSL_AD_DECODE_ERROR;
2434     unsigned int ticklen;
2435     unsigned long ticket_lifetime_hint, age_add = 0;
2436     unsigned int sess_len;
2437     RAW_EXTENSION *exts = NULL;
2438
2439     if (!PACKET_get_net_4(pkt, &ticket_lifetime_hint)
2440         || (SSL_IS_TLS13(s) && !PACKET_get_net_4(pkt, &age_add))
2441         || !PACKET_get_net_2(pkt, &ticklen)
2442         || (!SSL_IS_TLS13(s) && PACKET_remaining(pkt) != ticklen)
2443         || (SSL_IS_TLS13(s)
2444             && (ticklen == 0 || PACKET_remaining(pkt) < ticklen))) {
2445         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH);
2446         goto f_err;
2447     }
2448
2449     /*
2450      * Server is allowed to change its mind (in <=TLSv1.2) and send an empty
2451      * ticket. We already checked this TLSv1.3 case above, so it should never
2452      * be 0 here in that instance
2453      */
2454     if (ticklen == 0)
2455         return MSG_PROCESS_CONTINUE_READING;
2456
2457     /* TODO(TLS1.3): Is this a suitable test for TLS1.3? */
2458     if (s->session->session_id_length > 0) {
2459         int i = s->session_ctx->session_cache_mode;
2460         SSL_SESSION *new_sess;
2461         /*
2462          * We reused an existing session, so we need to replace it with a new
2463          * one
2464          */
2465         if (i & SSL_SESS_CACHE_CLIENT) {
2466             /*
2467              * Remove the old session from the cache. We carry on if this fails
2468              */
2469             SSL_CTX_remove_session(s->session_ctx, s->session);
2470         }
2471
2472         if ((new_sess = ssl_session_dup(s->session, 0)) == 0) {
2473             al = SSL_AD_INTERNAL_ERROR;
2474             SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
2475             goto f_err;
2476         }
2477
2478         SSL_SESSION_free(s->session);
2479         s->session = new_sess;
2480     }
2481
2482     /*
2483      * Technically the cast to long here is not guaranteed by the C standard -
2484      * but we use it elsewhere, so this should be ok.
2485      */
2486     s->session->time = (long)time(NULL);
2487
2488     OPENSSL_free(s->session->ext.tick);
2489     s->session->ext.tick = NULL;
2490     s->session->ext.ticklen = 0;
2491
2492     s->session->ext.tick = OPENSSL_malloc(ticklen);
2493     if (s->session->ext.tick == NULL) {
2494         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
2495         goto err;
2496     }
2497     if (!PACKET_copy_bytes(pkt, s->session->ext.tick, ticklen)) {
2498         al = SSL_AD_DECODE_ERROR;
2499         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH);
2500         goto f_err;
2501     }
2502
2503     s->session->ext.tick_lifetime_hint = ticket_lifetime_hint;
2504     s->session->ext.tick_age_add = age_add;
2505     s->session->ext.ticklen = ticklen;
2506
2507     if (SSL_IS_TLS13(s)) {
2508         PACKET extpkt;
2509
2510         if (!PACKET_as_length_prefixed_2(pkt, &extpkt)
2511                 || !tls_collect_extensions(s, &extpkt,
2512                                            EXT_TLS1_3_NEW_SESSION_TICKET,
2513                                            &exts, &al, NULL)
2514                 || !tls_parse_all_extensions(s, EXT_TLS1_3_NEW_SESSION_TICKET,
2515                                              exts, NULL, 0, &al)) {
2516             SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_BAD_EXTENSION);
2517             goto f_err;
2518         }
2519     }
2520
2521     /*
2522      * There are two ways to detect a resumed ticket session. One is to set
2523      * an appropriate session ID and then the server must return a match in
2524      * ServerHello. This allows the normal client session ID matching to work
2525      * and we know much earlier that the ticket has been accepted. The
2526      * other way is to set zero length session ID when the ticket is
2527      * presented and rely on the handshake to determine session resumption.
2528      * We choose the former approach because this fits in with assumptions
2529      * elsewhere in OpenSSL. The session ID is set to the SHA256 (or SHA1 is
2530      * SHA256 is disabled) hash of the ticket.
2531      */
2532     /*
2533      * TODO(size_t): we use sess_len here because EVP_Digest expects an int
2534      * but s->session->session_id_length is a size_t
2535      */
2536     if (!EVP_Digest(s->session->ext.tick, ticklen,
2537                     s->session->session_id, &sess_len,
2538                     EVP_sha256(), NULL)) {
2539         SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_EVP_LIB);
2540         goto err;
2541     }
2542     s->session->session_id_length = sess_len;
2543
2544     /* This is a standalone message in TLSv1.3, so there is no more to read */
2545     if (SSL_IS_TLS13(s)) {
2546         OPENSSL_free(exts);
2547         ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
2548         return MSG_PROCESS_FINISHED_READING;
2549     }
2550
2551     return MSG_PROCESS_CONTINUE_READING;
2552  f_err:
2553     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2554  err:
2555     ossl_statem_set_error(s);
2556     OPENSSL_free(exts);
2557     return MSG_PROCESS_ERROR;
2558 }
2559
2560 /*
2561  * In TLSv1.3 this is called from the extensions code, otherwise it is used to
2562  * parse a separate message. Returns 1 on success or 0 on failure. On failure
2563  * |*al| is populated with a suitable alert code.
2564  */
2565 int tls_process_cert_status_body(SSL *s, PACKET *pkt, int *al)
2566 {
2567     size_t resplen;
2568     unsigned int type;
2569
2570     if (!PACKET_get_1(pkt, &type)
2571         || type != TLSEXT_STATUSTYPE_ocsp) {
2572         *al = SSL_AD_DECODE_ERROR;
2573         SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY,
2574                SSL_R_UNSUPPORTED_STATUS_TYPE);
2575         return 0;
2576     }
2577     if (!PACKET_get_net_3_len(pkt, &resplen)
2578         || PACKET_remaining(pkt) != 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 = OPENSSL_malloc(resplen);
2584     if (s->ext.ocsp.resp == NULL) {
2585         *al = SSL_AD_INTERNAL_ERROR;
2586         SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, ERR_R_MALLOC_FAILURE);
2587         return 0;
2588     }
2589     if (!PACKET_copy_bytes(pkt, s->ext.ocsp.resp, resplen)) {
2590         *al = SSL_AD_DECODE_ERROR;
2591         SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, SSL_R_LENGTH_MISMATCH);
2592         return 0;
2593     }
2594     s->ext.ocsp.resp_len = resplen;
2595
2596     return 1;
2597 }
2598
2599
2600 MSG_PROCESS_RETURN tls_process_cert_status(SSL *s, PACKET *pkt)
2601 {
2602     int al;
2603
2604     if (!tls_process_cert_status_body(s, pkt, &al)) {
2605         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2606         ossl_statem_set_error(s);
2607         return MSG_PROCESS_ERROR;
2608     }
2609
2610     return MSG_PROCESS_CONTINUE_READING;
2611 }
2612
2613 /*
2614  * Perform miscellaneous checks and processing after we have received the
2615  * server's initial flight. In TLS1.3 this is after the Server Finished message.
2616  * In <=TLS1.2 this is after the ServerDone message. Returns 1 on success or 0
2617  * on failure.
2618  */
2619 int tls_process_initial_server_flight(SSL *s, int *al)
2620 {
2621     /*
2622      * at this point we check that we have the required stuff from
2623      * the server
2624      */
2625     if (!ssl3_check_cert_and_algorithm(s)) {
2626         *al = SSL_AD_HANDSHAKE_FAILURE;
2627         return 0;
2628     }
2629
2630     /*
2631      * Call the ocsp status callback if needed. The |ext.ocsp.resp| and
2632      * |ext.ocsp.resp_len| values will be set if we actually received a status
2633      * message, or NULL and -1 otherwise
2634      */
2635     if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing
2636             && s->ctx->ext.status_cb != NULL) {
2637         int ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg);
2638
2639         if (ret == 0) {
2640             *al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
2641             SSLerr(SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2642                    SSL_R_INVALID_STATUS_RESPONSE);
2643             return 0;
2644         }
2645         if (ret < 0) {
2646             *al = SSL_AD_INTERNAL_ERROR;
2647             SSLerr(SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT,
2648                    ERR_R_MALLOC_FAILURE);
2649             return 0;
2650         }
2651     }
2652 #ifndef OPENSSL_NO_CT
2653     if (s->ct_validation_callback != NULL) {
2654         /* Note we validate the SCTs whether or not we abort on error */
2655         if (!ssl_validate_ct(s) && (s->verify_mode & SSL_VERIFY_PEER)) {
2656             *al = SSL_AD_HANDSHAKE_FAILURE;
2657             return 0;
2658         }
2659     }
2660 #endif
2661
2662     return 1;
2663 }
2664
2665 MSG_PROCESS_RETURN tls_process_server_done(SSL *s, PACKET *pkt)
2666 {
2667     int al = SSL_AD_INTERNAL_ERROR;
2668
2669     if (PACKET_remaining(pkt) > 0) {
2670         /* should contain no data */
2671         al = SSL_AD_DECODE_ERROR;
2672         SSLerr(SSL_F_TLS_PROCESS_SERVER_DONE, SSL_R_LENGTH_MISMATCH);
2673         goto err;
2674     }
2675 #ifndef OPENSSL_NO_SRP
2676     if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
2677         if (SRP_Calc_A_param(s) <= 0) {
2678             SSLerr(SSL_F_TLS_PROCESS_SERVER_DONE, SSL_R_SRP_A_CALC);
2679             goto err;
2680         }
2681     }
2682 #endif
2683
2684     /*
2685      * Error queue messages are generated directly by this function
2686      */
2687     if (!tls_process_initial_server_flight(s, &al))
2688         goto err;
2689
2690 #ifndef OPENSSL_NO_SCTP
2691     /* Only applies to renegotiation */
2692     if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))
2693         && s->renegotiate != 0)
2694         return MSG_PROCESS_CONTINUE_PROCESSING;
2695     else
2696 #endif
2697         return MSG_PROCESS_FINISHED_READING;
2698
2699  err:
2700     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2701     ossl_statem_set_error(s);
2702     return MSG_PROCESS_ERROR;
2703 }
2704
2705 static int tls_construct_cke_psk_preamble(SSL *s, WPACKET *pkt, int *al)
2706 {
2707 #ifndef OPENSSL_NO_PSK
2708     int ret = 0;
2709     /*
2710      * The callback needs PSK_MAX_IDENTITY_LEN + 1 bytes to return a
2711      * \0-terminated identity. The last byte is for us for simulating
2712      * strnlen.
2713      */
2714     char identity[PSK_MAX_IDENTITY_LEN + 1];
2715     size_t identitylen = 0;
2716     unsigned char psk[PSK_MAX_PSK_LEN];
2717     unsigned char *tmppsk = NULL;
2718     char *tmpidentity = NULL;
2719     size_t psklen = 0;
2720
2721     if (s->psk_client_callback == NULL) {
2722         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_CLIENT_CB);
2723         *al = SSL_AD_INTERNAL_ERROR;
2724         goto err;
2725     }
2726
2727     memset(identity, 0, sizeof(identity));
2728
2729     psklen = s->psk_client_callback(s, s->session->psk_identity_hint,
2730                                     identity, sizeof(identity) - 1,
2731                                     psk, sizeof(psk));
2732
2733     if (psklen > PSK_MAX_PSK_LEN) {
2734         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2735         *al = SSL_AD_HANDSHAKE_FAILURE;
2736         goto err;
2737     } else if (psklen == 0) {
2738         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE,
2739                SSL_R_PSK_IDENTITY_NOT_FOUND);
2740         *al = SSL_AD_HANDSHAKE_FAILURE;
2741         goto err;
2742     }
2743
2744     identitylen = strlen(identity);
2745     if (identitylen > PSK_MAX_IDENTITY_LEN) {
2746         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2747         *al = SSL_AD_HANDSHAKE_FAILURE;
2748         goto err;
2749     }
2750
2751     tmppsk = OPENSSL_memdup(psk, psklen);
2752     tmpidentity = OPENSSL_strdup(identity);
2753     if (tmppsk == NULL || tmpidentity == NULL) {
2754         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE);
2755         *al = SSL_AD_INTERNAL_ERROR;
2756         goto err;
2757     }
2758
2759     OPENSSL_free(s->s3->tmp.psk);
2760     s->s3->tmp.psk = tmppsk;
2761     s->s3->tmp.psklen = psklen;
2762     tmppsk = NULL;
2763     OPENSSL_free(s->session->psk_identity);
2764     s->session->psk_identity = tmpidentity;
2765     tmpidentity = NULL;
2766
2767     if (!WPACKET_sub_memcpy_u16(pkt, identity, identitylen))  {
2768         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2769         *al = SSL_AD_INTERNAL_ERROR;
2770         goto err;
2771     }
2772
2773     ret = 1;
2774
2775  err:
2776     OPENSSL_cleanse(psk, psklen);
2777     OPENSSL_cleanse(identity, sizeof(identity));
2778     OPENSSL_clear_free(tmppsk, psklen);
2779     OPENSSL_clear_free(tmpidentity, identitylen);
2780
2781     return ret;
2782 #else
2783     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR);
2784     *al = SSL_AD_INTERNAL_ERROR;
2785     return 0;
2786 #endif
2787 }
2788
2789 static int tls_construct_cke_rsa(SSL *s, WPACKET *pkt, int *al)
2790 {
2791 #ifndef OPENSSL_NO_RSA
2792     unsigned char *encdata = NULL;
2793     EVP_PKEY *pkey = NULL;
2794     EVP_PKEY_CTX *pctx = NULL;
2795     size_t enclen;
2796     unsigned char *pms = NULL;
2797     size_t pmslen = 0;
2798
2799     if (s->session->peer == NULL) {
2800         /*
2801          * We should always have a server certificate with SSL_kRSA.
2802          */
2803         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2804         return 0;
2805     }
2806
2807     pkey = X509_get0_pubkey(s->session->peer);
2808     if (EVP_PKEY_get0_RSA(pkey) == NULL) {
2809         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2810         return 0;
2811     }
2812
2813     pmslen = SSL_MAX_MASTER_KEY_LENGTH;
2814     pms = OPENSSL_malloc(pmslen);
2815     if (pms == NULL) {
2816         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_MALLOC_FAILURE);
2817         *al = SSL_AD_INTERNAL_ERROR;
2818         return 0;
2819     }
2820
2821     pms[0] = s->client_version >> 8;
2822     pms[1] = s->client_version & 0xff;
2823     /* TODO(size_t): Convert this function */
2824     if (RAND_bytes(pms + 2, (int)(pmslen - 2)) <= 0) {
2825         goto err;
2826     }
2827
2828     /* Fix buf for TLS and beyond */
2829     if (s->version > SSL3_VERSION && !WPACKET_start_sub_packet_u16(pkt)) {
2830         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2831         goto err;
2832     }
2833     pctx = EVP_PKEY_CTX_new(pkey, NULL);
2834     if (pctx == NULL || EVP_PKEY_encrypt_init(pctx) <= 0
2835         || EVP_PKEY_encrypt(pctx, NULL, &enclen, pms, pmslen) <= 0) {
2836         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_EVP_LIB);
2837         goto err;
2838     }
2839     if (!WPACKET_allocate_bytes(pkt, enclen, &encdata)
2840             || EVP_PKEY_encrypt(pctx, encdata, &enclen, pms, pmslen) <= 0) {
2841         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, SSL_R_BAD_RSA_ENCRYPT);
2842         goto err;
2843     }
2844     EVP_PKEY_CTX_free(pctx);
2845     pctx = NULL;
2846
2847     /* Fix buf for TLS and beyond */
2848     if (s->version > SSL3_VERSION && !WPACKET_close(pkt)) {
2849         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2850         goto err;
2851     }
2852
2853     s->s3->tmp.pms = pms;
2854     s->s3->tmp.pmslen = pmslen;
2855
2856     /* Log the premaster secret, if logging is enabled. */
2857     if (!ssl_log_rsa_client_key_exchange(s, encdata, enclen, pms, pmslen))
2858         goto err;
2859
2860     return 1;
2861  err:
2862     OPENSSL_clear_free(pms, pmslen);
2863     EVP_PKEY_CTX_free(pctx);
2864
2865     return 0;
2866 #else
2867     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR);
2868     *al = SSL_AD_INTERNAL_ERROR;
2869     return 0;
2870 #endif
2871 }
2872
2873 static int tls_construct_cke_dhe(SSL *s, WPACKET *pkt, int *al)
2874 {
2875 #ifndef OPENSSL_NO_DH
2876     DH *dh_clnt = NULL;
2877     const BIGNUM *pub_key;
2878     EVP_PKEY *ckey = NULL, *skey = NULL;
2879     unsigned char *keybytes = NULL;
2880
2881     skey = s->s3->peer_tmp;
2882     if (skey == NULL)
2883         goto err;
2884
2885     ckey = ssl_generate_pkey(skey);
2886     if (ckey == NULL)
2887         goto err;
2888
2889     dh_clnt = EVP_PKEY_get0_DH(ckey);
2890
2891     if (dh_clnt == NULL || ssl_derive(s, ckey, skey, 0) == 0)
2892         goto err;
2893
2894     /* send off the data */
2895     DH_get0_key(dh_clnt, &pub_key, NULL);
2896     if (!WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(pub_key), &keybytes))
2897         goto err;
2898
2899     BN_bn2bin(pub_key, keybytes);
2900     EVP_PKEY_free(ckey);
2901
2902     return 1;
2903  err:
2904     EVP_PKEY_free(ckey);
2905 #endif
2906     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_DHE, ERR_R_INTERNAL_ERROR);
2907     *al = SSL_AD_INTERNAL_ERROR;
2908     return 0;
2909 }
2910
2911 static int tls_construct_cke_ecdhe(SSL *s, WPACKET *pkt, int *al)
2912 {
2913 #ifndef OPENSSL_NO_EC
2914     unsigned char *encodedPoint = NULL;
2915     size_t encoded_pt_len = 0;
2916     EVP_PKEY *ckey = NULL, *skey = NULL;
2917     int ret = 0;
2918
2919     skey = s->s3->peer_tmp;
2920     if (skey == NULL) {
2921         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2922         return 0;
2923     }
2924
2925     ckey = ssl_generate_pkey(skey);
2926     if (ckey == NULL) {
2927         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_MALLOC_FAILURE);
2928         goto err;
2929     }
2930
2931     if (ssl_derive(s, ckey, skey, 0) == 0) {
2932         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_EVP_LIB);
2933         goto err;
2934     }
2935
2936     /* Generate encoding of client key */
2937     encoded_pt_len = EVP_PKEY_get1_tls_encodedpoint(ckey, &encodedPoint);
2938
2939     if (encoded_pt_len == 0) {
2940         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_EC_LIB);
2941         goto err;
2942     }
2943
2944     if (!WPACKET_sub_memcpy_u8(pkt, encodedPoint, encoded_pt_len)) {
2945         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2946         goto err;
2947     }
2948
2949     ret = 1;
2950  err:
2951     OPENSSL_free(encodedPoint);
2952     EVP_PKEY_free(ckey);
2953     return ret;
2954 #else
2955     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR);
2956     *al = SSL_AD_INTERNAL_ERROR;
2957     return 0;
2958 #endif
2959 }
2960
2961 static int tls_construct_cke_gost(SSL *s, WPACKET *pkt, int *al)
2962 {
2963 #ifndef OPENSSL_NO_GOST
2964     /* GOST key exchange message creation */
2965     EVP_PKEY_CTX *pkey_ctx = NULL;
2966     X509 *peer_cert;
2967     size_t msglen;
2968     unsigned int md_len;
2969     unsigned char shared_ukm[32], tmp[256];
2970     EVP_MD_CTX *ukm_hash = NULL;
2971     int dgst_nid = NID_id_GostR3411_94;
2972     unsigned char *pms = NULL;
2973     size_t pmslen = 0;
2974
2975     if ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aGOST12) != 0)
2976         dgst_nid = NID_id_GostR3411_2012_256;
2977
2978     /*
2979      * Get server sertificate PKEY and create ctx from it
2980      */
2981     peer_cert = s->session->peer;
2982     if (!peer_cert) {
2983         *al = SSL_AD_HANDSHAKE_FAILURE;
2984         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST,
2985                SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
2986         return 0;
2987     }
2988
2989     pkey_ctx = EVP_PKEY_CTX_new(X509_get0_pubkey(peer_cert), NULL);
2990     if (pkey_ctx == NULL) {
2991         *al = SSL_AD_INTERNAL_ERROR;
2992         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_MALLOC_FAILURE);
2993         return 0;
2994     }
2995     /*
2996      * If we have send a certificate, and certificate key
2997      * parameters match those of server certificate, use
2998      * certificate key for key exchange
2999      */
3000
3001     /* Otherwise, generate ephemeral key pair */
3002     pmslen = 32;
3003     pms = OPENSSL_malloc(pmslen);
3004     if (pms == NULL) {
3005         *al = SSL_AD_INTERNAL_ERROR;
3006         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_MALLOC_FAILURE);
3007         goto err;
3008     }
3009
3010     if (EVP_PKEY_encrypt_init(pkey_ctx) <= 0
3011         /* Generate session key
3012          * TODO(size_t): Convert this function
3013          */
3014         || RAND_bytes(pms, (int)pmslen) <= 0) {
3015         *al = SSL_AD_INTERNAL_ERROR;
3016         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
3017         goto err;
3018     };
3019     /*
3020      * Compute shared IV and store it in algorithm-specific context
3021      * data
3022      */
3023     ukm_hash = EVP_MD_CTX_new();
3024     if (ukm_hash == NULL
3025         || EVP_DigestInit(ukm_hash, EVP_get_digestbynid(dgst_nid)) <= 0
3026         || EVP_DigestUpdate(ukm_hash, s->s3->client_random,
3027                             SSL3_RANDOM_SIZE) <= 0
3028         || EVP_DigestUpdate(ukm_hash, s->s3->server_random,
3029                             SSL3_RANDOM_SIZE) <= 0
3030         || EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len) <= 0) {
3031         *al = SSL_AD_INTERNAL_ERROR;
3032         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
3033         goto err;
3034     }
3035     EVP_MD_CTX_free(ukm_hash);
3036     ukm_hash = NULL;
3037     if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_ENCRYPT,
3038                           EVP_PKEY_CTRL_SET_IV, 8, shared_ukm) < 0) {
3039         *al = SSL_AD_INTERNAL_ERROR;
3040         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, SSL_R_LIBRARY_BUG);
3041         goto err;
3042     }
3043     /* Make GOST keytransport blob message */
3044     /*
3045      * Encapsulate it into sequence
3046      */
3047     msglen = 255;
3048     if (EVP_PKEY_encrypt(pkey_ctx, tmp, &msglen, pms, pmslen) <= 0) {
3049         *al = SSL_AD_INTERNAL_ERROR;
3050         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, SSL_R_LIBRARY_BUG);
3051         goto err;
3052     }
3053
3054     if (!WPACKET_put_bytes_u8(pkt, V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED)
3055             || (msglen >= 0x80 && !WPACKET_put_bytes_u8(pkt, 0x81))
3056             || !WPACKET_sub_memcpy_u8(pkt, tmp, msglen)) {
3057         *al = SSL_AD_INTERNAL_ERROR;
3058         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
3059         goto err;
3060     }
3061
3062     EVP_PKEY_CTX_free(pkey_ctx);
3063     s->s3->tmp.pms = pms;
3064     s->s3->tmp.pmslen = pmslen;
3065
3066     return 1;
3067  err:
3068     EVP_PKEY_CTX_free(pkey_ctx);
3069     OPENSSL_clear_free(pms, pmslen);
3070     EVP_MD_CTX_free(ukm_hash);
3071     return 0;
3072 #else
3073     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR);
3074     *al = SSL_AD_INTERNAL_ERROR;
3075     return 0;
3076 #endif
3077 }
3078
3079 static int tls_construct_cke_srp(SSL *s, WPACKET *pkt, int *al)
3080 {
3081 #ifndef OPENSSL_NO_SRP
3082     unsigned char *abytes = NULL;
3083
3084     if (s->srp_ctx.A == NULL
3085             || !WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(s->srp_ctx.A),
3086                                                &abytes)) {
3087         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_INTERNAL_ERROR);
3088         return 0;
3089     }
3090     BN_bn2bin(s->srp_ctx.A, abytes);
3091
3092     OPENSSL_free(s->session->srp_username);
3093     s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login);
3094     if (s->session->srp_username == NULL) {
3095         SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_MALLOC_FAILURE);
3096         return 0;
3097     }
3098
3099     return 1;
3100 #else
3101     SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_INTERNAL_ERROR);
3102     *al = SSL_AD_INTERNAL_ERROR;
3103     return 0;
3104 #endif
3105 }
3106
3107 int tls_construct_client_key_exchange(SSL *s, WPACKET *pkt)
3108 {
3109     unsigned long alg_k;
3110     int al = -1;
3111
3112     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3113
3114     if ((alg_k & SSL_PSK)
3115         && !tls_construct_cke_psk_preamble(s, pkt, &al))
3116         goto err;
3117
3118     if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
3119         if (!tls_construct_cke_rsa(s, pkt, &al))
3120             goto err;
3121     } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
3122         if (!tls_construct_cke_dhe(s, pkt, &al))
3123             goto err;
3124     } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
3125         if (!tls_construct_cke_ecdhe(s, pkt, &al))
3126             goto err;
3127     } else if (alg_k & SSL_kGOST) {
3128         if (!tls_construct_cke_gost(s, pkt, &al))
3129             goto err;
3130     } else if (alg_k & SSL_kSRP) {
3131         if (!tls_construct_cke_srp(s, pkt, &al))
3132             goto err;
3133     } else if (!(alg_k & SSL_kPSK)) {
3134         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
3135         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
3136         goto err;
3137     }
3138
3139     return 1;
3140  err:
3141     if (al != -1)
3142         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3143     OPENSSL_clear_free(s->s3->tmp.pms, s->s3->tmp.pmslen);
3144     s->s3->tmp.pms = NULL;
3145 #ifndef OPENSSL_NO_PSK
3146     OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
3147     s->s3->tmp.psk = NULL;
3148 #endif
3149     return 0;
3150 }
3151
3152 int tls_client_key_exchange_post_work(SSL *s)
3153 {
3154     unsigned char *pms = NULL;
3155     size_t pmslen = 0;
3156
3157     pms = s->s3->tmp.pms;
3158     pmslen = s->s3->tmp.pmslen;
3159
3160 #ifndef OPENSSL_NO_SRP
3161     /* Check for SRP */
3162     if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
3163         if (!srp_generate_client_master_secret(s)) {
3164             SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK,
3165                    ERR_R_INTERNAL_ERROR);
3166             goto err;
3167         }
3168         return 1;
3169     }
3170 #endif
3171
3172     if (pms == NULL && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
3173         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3174         SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_MALLOC_FAILURE);
3175         goto err;
3176     }
3177     if (!ssl_generate_master_secret(s, pms, pmslen, 1)) {
3178         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3179         SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_INTERNAL_ERROR);
3180         /* ssl_generate_master_secret frees the pms even on error */
3181         pms = NULL;
3182         pmslen = 0;
3183         goto err;
3184     }
3185     pms = NULL;
3186     pmslen = 0;
3187
3188 #ifndef OPENSSL_NO_SCTP
3189     if (SSL_IS_DTLS(s)) {
3190         unsigned char sctpauthkey[64];
3191         char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
3192
3193         /*
3194          * Add new shared key for SCTP-Auth, will be ignored if no SCTP
3195          * used.
3196          */
3197         memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL,
3198                sizeof(DTLS1_SCTP_AUTH_LABEL));
3199
3200         if (SSL_export_keying_material(s, sctpauthkey,
3201                                        sizeof(sctpauthkey), labelbuffer,
3202                                        sizeof(labelbuffer), NULL, 0, 0) <= 0)
3203             goto err;
3204
3205         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
3206                  sizeof(sctpauthkey), sctpauthkey);
3207     }
3208 #endif
3209
3210     return 1;
3211  err:
3212     OPENSSL_clear_free(pms, pmslen);
3213     s->s3->tmp.pms = NULL;
3214     return 0;
3215 }
3216
3217 /*
3218  * Check a certificate can be used for client authentication. Currently check
3219  * cert exists, if we have a suitable digest for TLS 1.2 if static DH client
3220  * certificates can be used and optionally checks suitability for Suite B.
3221  */
3222 static int ssl3_check_client_certificate(SSL *s)
3223 {
3224     /* If no suitable signature algorithm can't use certificate */
3225     if (!tls_choose_sigalg(s, NULL) || s->s3->tmp.sigalg == NULL)
3226         return 0;
3227     /*
3228      * If strict mode check suitability of chain before using it. This also
3229      * adjusts suite B digest if necessary.
3230      */
3231     if (s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT &&
3232         !tls1_check_chain(s, NULL, NULL, NULL, -2))
3233         return 0;
3234     return 1;
3235 }
3236
3237 WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst)
3238 {
3239     X509 *x509 = NULL;
3240     EVP_PKEY *pkey = NULL;
3241     int i;
3242
3243     if (wst == WORK_MORE_A) {
3244         /* Let cert callback update client certificates if required */
3245         if (s->cert->cert_cb) {
3246             i = s->cert->cert_cb(s, s->cert->cert_cb_arg);
3247             if (i < 0) {
3248                 s->rwstate = SSL_X509_LOOKUP;
3249                 return WORK_MORE_A;
3250             }
3251             if (i == 0) {
3252                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3253                 ossl_statem_set_error(s);
3254                 return 0;
3255             }
3256             s->rwstate = SSL_NOTHING;
3257         }
3258         if (ssl3_check_client_certificate(s))
3259             return WORK_FINISHED_CONTINUE;
3260
3261         /* Fall through to WORK_MORE_B */
3262         wst = WORK_MORE_B;
3263     }
3264
3265     /* We need to get a client cert */
3266     if (wst == WORK_MORE_B) {
3267         /*
3268          * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP;
3269          * return(-1); We then get retied later
3270          */
3271         i = ssl_do_client_cert_cb(s, &x509, &pkey);
3272         if (i < 0) {
3273             s->rwstate = SSL_X509_LOOKUP;
3274             return WORK_MORE_B;
3275         }
3276         s->rwstate = SSL_NOTHING;
3277         if ((i == 1) && (pkey != NULL) && (x509 != NULL)) {
3278             if (!SSL_use_certificate(s, x509) || !SSL_use_PrivateKey(s, pkey))
3279                 i = 0;
3280         } else if (i == 1) {
3281             i = 0;
3282             SSLerr(SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE,
3283                    SSL_R_BAD_DATA_RETURNED_BY_CALLBACK);
3284         }
3285
3286         X509_free(x509);
3287         EVP_PKEY_free(pkey);
3288         if (i && !ssl3_check_client_certificate(s))
3289             i = 0;
3290         if (i == 0) {
3291             if (s->version == SSL3_VERSION) {
3292                 s->s3->tmp.cert_req = 0;
3293                 ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_CERTIFICATE);
3294                 return WORK_FINISHED_CONTINUE;
3295             } else {
3296                 s->s3->tmp.cert_req = 2;
3297                 if (!ssl3_digest_cached_records(s, 0)) {
3298                     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3299                     ossl_statem_set_error(s);
3300                     return 0;
3301                 }
3302             }
3303         }
3304
3305         return WORK_FINISHED_CONTINUE;
3306     }
3307
3308     /* Shouldn't ever get here */
3309     return WORK_ERROR;
3310 }
3311
3312 int tls_construct_client_certificate(SSL *s, WPACKET *pkt)
3313 {
3314     int al = SSL_AD_INTERNAL_ERROR;
3315
3316     /*
3317      * TODO(TLS1.3): For now we must put an empty context. Needs to be filled in
3318      * later
3319      */
3320     if ((SSL_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0))
3321             || !ssl3_output_cert_chain(s, pkt,
3322                                (s->s3->tmp.cert_req == 2) ? NULL
3323                                                           : s->cert->key,
3324                                 &al)) {
3325         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3326         goto err;
3327     }
3328
3329     if (SSL_IS_TLS13(s)
3330             && SSL_IS_FIRST_HANDSHAKE(s)
3331             && (!s->method->ssl3_enc->change_cipher_state(s,
3332                     SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_WRITE))) {
3333         SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE,
3334                SSL_R_CANNOT_CHANGE_CIPHER);
3335         goto err;
3336     }
3337
3338     return 1;
3339  err:
3340     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3341     return 0;
3342 }
3343
3344 #define has_bits(i,m)   (((i)&(m)) == (m))
3345
3346 int ssl3_check_cert_and_algorithm(SSL *s)
3347 {
3348     int i;
3349 #ifndef OPENSSL_NO_EC
3350     int idx;
3351 #endif
3352     long alg_k, alg_a;
3353     EVP_PKEY *pkey = NULL;
3354     int al = SSL_AD_HANDSHAKE_FAILURE;
3355
3356     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3357     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3358
3359     /* we don't have a certificate */
3360     if ((alg_a & SSL_aNULL) || (alg_k & SSL_kPSK))
3361         return (1);
3362
3363     /* This is the passed certificate */
3364
3365 #ifndef OPENSSL_NO_EC
3366     idx = s->session->peer_type;
3367     if (idx == SSL_PKEY_ECC) {
3368         if (ssl_check_srvr_ecc_cert_and_alg(s->session->peer, s) == 0) {
3369             /* check failed */
3370             SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_BAD_ECC_CERT);
3371             goto f_err;
3372         } else {
3373             return 1;
3374         }
3375     } else if (alg_a & SSL_aECDSA) {
3376         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3377                SSL_R_MISSING_ECDSA_SIGNING_CERT);
3378         goto f_err;
3379     }
3380 #endif
3381     pkey = X509_get0_pubkey(s->session->peer);
3382     i = X509_certificate_type(s->session->peer, pkey);
3383
3384     /* Check that we have a certificate if we require one */
3385     if ((alg_a & SSL_aRSA) && !has_bits(i, EVP_PK_RSA | EVP_PKT_SIGN)) {
3386         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3387                SSL_R_MISSING_RSA_SIGNING_CERT);
3388         goto f_err;
3389     }
3390 #ifndef OPENSSL_NO_DSA
3391     else if ((alg_a & SSL_aDSS) && !has_bits(i, EVP_PK_DSA | EVP_PKT_SIGN)) {
3392         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3393                SSL_R_MISSING_DSA_SIGNING_CERT);
3394         goto f_err;
3395     }
3396 #endif
3397 #ifndef OPENSSL_NO_RSA
3398     if (alg_k & (SSL_kRSA | SSL_kRSAPSK) &&
3399         !has_bits(i, EVP_PK_RSA | EVP_PKT_ENC)) {
3400         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3401                SSL_R_MISSING_RSA_ENCRYPTING_CERT);
3402         goto f_err;
3403     }
3404 #endif
3405 #ifndef OPENSSL_NO_DH
3406     if ((alg_k & SSL_kDHE) && (s->s3->peer_tmp == NULL)) {
3407         al = SSL_AD_INTERNAL_ERROR;
3408         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, ERR_R_INTERNAL_ERROR);
3409         goto f_err;
3410     }
3411 #endif
3412
3413     return (1);
3414  f_err:
3415     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3416     return (0);
3417 }
3418
3419 #ifndef OPENSSL_NO_NEXTPROTONEG
3420 int tls_construct_next_proto(SSL *s, WPACKET *pkt)
3421 {
3422     size_t len, padding_len;
3423     unsigned char *padding = NULL;
3424
3425     len = s->ext.npn_len;
3426     padding_len = 32 - ((len + 2) % 32);
3427
3428     if (!WPACKET_sub_memcpy_u8(pkt, s->ext.npn, len)
3429             || !WPACKET_sub_allocate_bytes_u8(pkt, padding_len, &padding)) {
3430         SSLerr(SSL_F_TLS_CONSTRUCT_NEXT_PROTO, ERR_R_INTERNAL_ERROR);
3431         goto err;
3432     }
3433
3434     memset(padding, 0, padding_len);
3435
3436     return 1;
3437  err:
3438     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3439     return 0;
3440 }
3441 #endif
3442
3443 MSG_PROCESS_RETURN tls_process_hello_req(SSL *s, PACKET *pkt)
3444 {
3445     if (PACKET_remaining(pkt) > 0) {
3446         /* should contain no data */
3447         SSLerr(SSL_F_TLS_PROCESS_HELLO_REQ, SSL_R_LENGTH_MISMATCH);
3448         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
3449         ossl_statem_set_error(s);
3450         return MSG_PROCESS_ERROR;
3451     }
3452
3453     /*
3454      * This is a historical discrepancy (not in the RFC) maintained for
3455      * compatibility reasons. If a TLS client receives a HelloRequest it will
3456      * attempt an abbreviated handshake. However if a DTLS client receives a
3457      * HelloRequest it will do a full handshake. Either behaviour is reasonable
3458      * but doing one for TLS and another for DTLS is odd.
3459      */
3460     if (SSL_IS_DTLS(s))
3461         SSL_renegotiate(s);
3462     else
3463         SSL_renegotiate_abbreviated(s);
3464
3465     return MSG_PROCESS_FINISHED_READING;
3466 }
3467
3468 static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt)
3469 {
3470     int al = SSL_AD_INTERNAL_ERROR;
3471     PACKET extensions;
3472     RAW_EXTENSION *rawexts = NULL;
3473
3474     if (!PACKET_as_length_prefixed_2(pkt, &extensions)) {
3475         al = SSL_AD_DECODE_ERROR;
3476         SSLerr(SSL_F_TLS_PROCESS_ENCRYPTED_EXTENSIONS, SSL_R_LENGTH_MISMATCH);
3477         goto err;
3478     }
3479
3480     if (!tls_collect_extensions(s, &extensions, EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3481                                 &rawexts, &al, NULL)
3482             || !tls_parse_all_extensions(s, EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
3483                                          rawexts, NULL, 0, &al))
3484         goto err;
3485
3486     OPENSSL_free(rawexts);
3487     return MSG_PROCESS_CONTINUE_READING;
3488
3489  err:
3490     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3491     ossl_statem_set_error(s);
3492     OPENSSL_free(rawexts);
3493     return MSG_PROCESS_ERROR;
3494 }
3495
3496 int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey)
3497 {
3498     int i = 0;
3499 #ifndef OPENSSL_NO_ENGINE
3500     if (s->ctx->client_cert_engine) {
3501         i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s,
3502                                         SSL_get_client_CA_list(s),
3503                                         px509, ppkey, NULL, NULL, NULL);
3504         if (i != 0)
3505             return i;
3506     }
3507 #endif
3508     if (s->ctx->client_cert_cb)
3509         i = s->ctx->client_cert_cb(s, px509, ppkey);
3510     return i;
3511 }
3512
3513 int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, WPACKET *pkt)
3514 {
3515     int i;
3516     size_t totlen = 0, len, maxlen;
3517     int empty_reneg_info_scsv = !s->renegotiate;
3518     /* Set disabled masks for this session */
3519     ssl_set_client_disabled(s);
3520
3521     if (sk == NULL)
3522         return (0);
3523
3524 #ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
3525 # if OPENSSL_MAX_TLS1_2_CIPHER_LENGTH < 6
3526 #  error Max cipher length too short
3527 # endif
3528     /*
3529      * Some servers hang if client hello > 256 bytes as hack workaround
3530      * chop number of supported ciphers to keep it well below this if we
3531      * use TLS v1.2
3532      */
3533     if (TLS1_get_version(s) >= TLS1_2_VERSION)
3534         maxlen = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
3535     else
3536 #endif
3537         /* Maximum length that can be stored in 2 bytes. Length must be even */
3538         maxlen = 0xfffe;
3539
3540     if (empty_reneg_info_scsv)
3541         maxlen -= 2;
3542     if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV)
3543         maxlen -= 2;
3544
3545     for (i = 0; i < sk_SSL_CIPHER_num(sk) && totlen < maxlen; i++) {
3546         const SSL_CIPHER *c;
3547
3548         c = sk_SSL_CIPHER_value(sk, i);
3549         /* Skip disabled ciphers */
3550         if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED))
3551             continue;
3552
3553         if (!s->method->put_cipher_by_char(c, pkt, &len)) {
3554             SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3555             return 0;
3556         }
3557
3558         totlen += len;
3559     }
3560
3561     if (totlen == 0) {
3562         SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, SSL_R_NO_CIPHERS_AVAILABLE);
3563         return 0;
3564     }
3565
3566     if (totlen != 0) {
3567         if (empty_reneg_info_scsv) {
3568             static SSL_CIPHER scsv = {
3569                 0, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3570             };
3571             if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3572                 SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3573                 return 0;
3574             }
3575         }
3576         if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) {
3577             static SSL_CIPHER scsv = {
3578                 0, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0
3579             };
3580             if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) {
3581                 SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR);
3582                 return 0;
3583             }
3584         }
3585     }
3586
3587     return 1;
3588 }
3589
3590 int tls_construct_end_of_early_data(SSL *s, WPACKET *pkt)
3591 {
3592     if (s->early_data_state != SSL_EARLY_DATA_WRITE_RETRY
3593             && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING) {
3594         SSLerr(SSL_F_TLS_CONSTRUCT_END_OF_EARLY_DATA,
3595                ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
3596         return 0;
3597     }
3598
3599     s->early_data_state = SSL_EARLY_DATA_FINISHED_WRITING;
3600     return 1;
3601 }