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