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