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