a6209e71620b0ed5865253c95173362a8e2ba180
[openssl.git] / ssl / s3_clnt.c
1 /* ssl/s3_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 "kssl_lcl.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 #ifdef OPENSSL_FIPS
160 # include <openssl/fips.h>
161 #endif
162 #ifndef OPENSSL_NO_DH
163 # include <openssl/dh.h>
164 #endif
165 #include <openssl/bn.h>
166 #ifndef OPENSSL_NO_ENGINE
167 # include <openssl/engine.h>
168 #endif
169
170 static int ca_dn_cmp(const X509_NAME *const *a, const X509_NAME *const *b);
171 #ifndef OPENSSL_NO_TLSEXT
172 static int ssl3_check_finished(SSL *s);
173 #endif
174
175 #ifndef OPENSSL_NO_SSL3_METHOD
176 static const SSL_METHOD *ssl3_get_client_method(int ver)
177 {
178     if (ver == SSL3_VERSION)
179         return (SSLv3_client_method());
180     else
181         return (NULL);
182 }
183
184 IMPLEMENT_ssl3_meth_func(SSLv3_client_method,
185                          ssl_undefined_function,
186                          ssl3_connect, ssl3_get_client_method)
187 #endif
188 int ssl3_connect(SSL *s)
189 {
190     BUF_MEM *buf = NULL;
191     unsigned long Time = (unsigned long)time(NULL);
192     void (*cb) (const SSL *ssl, int type, int val) = NULL;
193     int ret = -1;
194     int new_state, state, skip = 0;
195
196     RAND_add(&Time, sizeof(Time), 0);
197     ERR_clear_error();
198     clear_sys_error();
199
200     if (s->info_callback != NULL)
201         cb = s->info_callback;
202     else if (s->ctx->info_callback != NULL)
203         cb = s->ctx->info_callback;
204
205     s->in_handshake++;
206     if (!SSL_in_init(s) || SSL_in_before(s))
207         SSL_clear(s);
208
209 #ifndef OPENSSL_NO_HEARTBEATS
210     /*
211      * If we're awaiting a HeartbeatResponse, pretend we already got and
212      * don't await it anymore, because Heartbeats don't make sense during
213      * handshakes anyway.
214      */
215     if (s->tlsext_hb_pending) {
216         s->tlsext_hb_pending = 0;
217         s->tlsext_hb_seq++;
218     }
219 #endif
220
221     for (;;) {
222         state = s->state;
223
224         switch (s->state) {
225         case SSL_ST_RENEGOTIATE:
226             s->renegotiate = 1;
227             s->state = SSL_ST_CONNECT;
228             s->ctx->stats.sess_connect_renegotiate++;
229             /* break */
230         case SSL_ST_BEFORE:
231         case SSL_ST_CONNECT:
232         case SSL_ST_BEFORE | SSL_ST_CONNECT:
233         case SSL_ST_OK | SSL_ST_CONNECT:
234
235             s->server = 0;
236             if (cb != NULL)
237                 cb(s, SSL_CB_HANDSHAKE_START, 1);
238
239             if ((s->version & 0xff00) != 0x0300) {
240                 SSLerr(SSL_F_SSL3_CONNECT, ERR_R_INTERNAL_ERROR);
241                 s->state = SSL_ST_ERR;
242                 ret = -1;
243                 goto end;
244             }
245
246             /* s->version=SSL3_VERSION; */
247             s->type = SSL_ST_CONNECT;
248
249             if (s->init_buf == NULL) {
250                 if ((buf = BUF_MEM_new()) == NULL) {
251                     ret = -1;
252                     s->state = SSL_ST_ERR;
253                     goto end;
254                 }
255                 if (!BUF_MEM_grow(buf, SSL3_RT_MAX_PLAIN_LENGTH)) {
256                     ret = -1;
257                     s->state = SSL_ST_ERR;
258                     goto end;
259                 }
260                 s->init_buf = buf;
261                 buf = NULL;
262             }
263
264             if (!ssl3_setup_buffers(s)) {
265                 ret = -1;
266                 goto end;
267             }
268
269             /* setup buffing BIO */
270             if (!ssl_init_wbio_buffer(s, 0)) {
271                 ret = -1;
272                 s->state = SSL_ST_ERR;
273                 goto end;
274             }
275
276             /* don't push the buffering BIO quite yet */
277
278             ssl3_init_finished_mac(s);
279
280             s->state = SSL3_ST_CW_CLNT_HELLO_A;
281             s->ctx->stats.sess_connect++;
282             s->init_num = 0;
283             s->s3->flags &= ~SSL3_FLAGS_CCS_OK;
284             /*
285              * Should have been reset by ssl3_get_finished, too.
286              */
287             s->s3->change_cipher_spec = 0;
288             break;
289
290         case SSL3_ST_CW_CLNT_HELLO_A:
291         case SSL3_ST_CW_CLNT_HELLO_B:
292
293             s->shutdown = 0;
294             ret = ssl3_client_hello(s);
295             if (ret <= 0)
296                 goto end;
297             s->state = SSL3_ST_CR_SRVR_HELLO_A;
298             s->init_num = 0;
299
300             /* turn on buffering for the next lot of output */
301             if (s->bbio != s->wbio)
302                 s->wbio = BIO_push(s->bbio, s->wbio);
303
304             break;
305
306         case SSL3_ST_CR_SRVR_HELLO_A:
307         case SSL3_ST_CR_SRVR_HELLO_B:
308             ret = ssl3_get_server_hello(s);
309             if (ret <= 0)
310                 goto end;
311
312             if (s->hit) {
313                 s->state = SSL3_ST_CR_FINISHED_A;
314 #ifndef OPENSSL_NO_TLSEXT
315                 if (s->tlsext_ticket_expected) {
316                     /* receive renewed session ticket */
317                     s->state = SSL3_ST_CR_SESSION_TICKET_A;
318                 }
319 #endif
320             } else {
321                 s->state = SSL3_ST_CR_CERT_A;
322             }
323             s->init_num = 0;
324             break;
325         case SSL3_ST_CR_CERT_A:
326         case SSL3_ST_CR_CERT_B:
327 #ifndef OPENSSL_NO_TLSEXT
328             /* Noop (ret = 0) for everything but EAP-FAST. */
329             ret = ssl3_check_finished(s);
330             if (ret < 0)
331                 goto end;
332             if (ret == 1) {
333                 s->hit = 1;
334                 s->state = SSL3_ST_CR_FINISHED_A;
335                 s->init_num = 0;
336                 break;
337             }
338 #endif
339             /* Check if it is anon DH/ECDH, SRP auth */
340             /* or PSK */
341             if (!
342                 (s->s3->tmp.
343                  new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
344                     && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
345                 ret = ssl3_get_server_certificate(s);
346                 if (ret <= 0)
347                     goto end;
348 #ifndef OPENSSL_NO_TLSEXT
349                 if (s->tlsext_status_expected)
350                     s->state = SSL3_ST_CR_CERT_STATUS_A;
351                 else
352                     s->state = SSL3_ST_CR_KEY_EXCH_A;
353             } else {
354                 skip = 1;
355                 s->state = SSL3_ST_CR_KEY_EXCH_A;
356             }
357 #else
358             } else
359                 skip = 1;
360
361             s->state = SSL3_ST_CR_KEY_EXCH_A;
362 #endif
363             s->init_num = 0;
364             break;
365
366         case SSL3_ST_CR_KEY_EXCH_A:
367         case SSL3_ST_CR_KEY_EXCH_B:
368             ret = ssl3_get_key_exchange(s);
369             if (ret <= 0)
370                 goto end;
371             s->state = SSL3_ST_CR_CERT_REQ_A;
372             s->init_num = 0;
373
374             /*
375              * at this point we check that we have the required stuff from
376              * the server
377              */
378             if (!ssl3_check_cert_and_algorithm(s)) {
379                 ret = -1;
380                 s->state = SSL_ST_ERR;
381                 goto end;
382             }
383             break;
384
385         case SSL3_ST_CR_CERT_REQ_A:
386         case SSL3_ST_CR_CERT_REQ_B:
387             ret = ssl3_get_certificate_request(s);
388             if (ret <= 0)
389                 goto end;
390             s->state = SSL3_ST_CR_SRVR_DONE_A;
391             s->init_num = 0;
392             break;
393
394         case SSL3_ST_CR_SRVR_DONE_A:
395         case SSL3_ST_CR_SRVR_DONE_B:
396             ret = ssl3_get_server_done(s);
397             if (ret <= 0)
398                 goto end;
399 #ifndef OPENSSL_NO_SRP
400             if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) {
401                 if ((ret = SRP_Calc_A_param(s)) <= 0) {
402                     SSLerr(SSL_F_SSL3_CONNECT, SSL_R_SRP_A_CALC);
403                     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
404                     s->state = SSL_ST_ERR;
405                     goto end;
406                 }
407             }
408 #endif
409             if (s->s3->tmp.cert_req)
410                 s->state = SSL3_ST_CW_CERT_A;
411             else
412                 s->state = SSL3_ST_CW_KEY_EXCH_A;
413             s->init_num = 0;
414
415             break;
416
417         case SSL3_ST_CW_CERT_A:
418         case SSL3_ST_CW_CERT_B:
419         case SSL3_ST_CW_CERT_C:
420         case SSL3_ST_CW_CERT_D:
421             ret = ssl3_send_client_certificate(s);
422             if (ret <= 0)
423                 goto end;
424             s->state = SSL3_ST_CW_KEY_EXCH_A;
425             s->init_num = 0;
426             break;
427
428         case SSL3_ST_CW_KEY_EXCH_A:
429         case SSL3_ST_CW_KEY_EXCH_B:
430             ret = ssl3_send_client_key_exchange(s);
431             if (ret <= 0)
432                 goto end;
433             /*
434              * EAY EAY EAY need to check for DH fix cert sent back
435              */
436             /*
437              * For TLS, cert_req is set to 2, so a cert chain of nothing is
438              * sent, but no verify packet is sent
439              */
440             /*
441              * XXX: For now, we do not support client authentication in ECDH
442              * cipher suites with ECDH (rather than ECDSA) certificates. We
443              * need to skip the certificate verify message when client's
444              * ECDH public key is sent inside the client certificate.
445              */
446             if (s->s3->tmp.cert_req == 1) {
447                 s->state = SSL3_ST_CW_CERT_VRFY_A;
448             } else {
449                 s->state = SSL3_ST_CW_CHANGE_A;
450             }
451             if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY) {
452                 s->state = SSL3_ST_CW_CHANGE_A;
453             }
454
455             s->init_num = 0;
456             break;
457
458         case SSL3_ST_CW_CERT_VRFY_A:
459         case SSL3_ST_CW_CERT_VRFY_B:
460             ret = ssl3_send_client_verify(s);
461             if (ret <= 0)
462                 goto end;
463             s->state = SSL3_ST_CW_CHANGE_A;
464             s->init_num = 0;
465             break;
466
467         case SSL3_ST_CW_CHANGE_A:
468         case SSL3_ST_CW_CHANGE_B:
469             ret = ssl3_send_change_cipher_spec(s,
470                                                SSL3_ST_CW_CHANGE_A,
471                                                SSL3_ST_CW_CHANGE_B);
472             if (ret <= 0)
473                 goto end;
474
475 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
476             s->state = SSL3_ST_CW_FINISHED_A;
477 #else
478             if (s->s3->next_proto_neg_seen)
479                 s->state = SSL3_ST_CW_NEXT_PROTO_A;
480             else
481                 s->state = SSL3_ST_CW_FINISHED_A;
482 #endif
483             s->init_num = 0;
484
485             s->session->cipher = s->s3->tmp.new_cipher;
486 #ifdef OPENSSL_NO_COMP
487             s->session->compress_meth = 0;
488 #else
489             if (s->s3->tmp.new_compression == NULL)
490                 s->session->compress_meth = 0;
491             else
492                 s->session->compress_meth = s->s3->tmp.new_compression->id;
493 #endif
494             if (!s->method->ssl3_enc->setup_key_block(s)) {
495                 ret = -1;
496                 s->state = SSL_ST_ERR;
497                 goto end;
498             }
499
500             if (!s->method->ssl3_enc->change_cipher_state(s,
501                                                           SSL3_CHANGE_CIPHER_CLIENT_WRITE))
502             {
503                 ret = -1;
504                 s->state = SSL_ST_ERR;
505                 goto end;
506             }
507
508             break;
509
510 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
511         case SSL3_ST_CW_NEXT_PROTO_A:
512         case SSL3_ST_CW_NEXT_PROTO_B:
513             ret = ssl3_send_next_proto(s);
514             if (ret <= 0)
515                 goto end;
516             s->state = SSL3_ST_CW_FINISHED_A;
517             break;
518 #endif
519
520         case SSL3_ST_CW_FINISHED_A:
521         case SSL3_ST_CW_FINISHED_B:
522             ret = ssl3_send_finished(s,
523                                      SSL3_ST_CW_FINISHED_A,
524                                      SSL3_ST_CW_FINISHED_B,
525                                      s->method->
526                                      ssl3_enc->client_finished_label,
527                                      s->method->
528                                      ssl3_enc->client_finished_label_len);
529             if (ret <= 0)
530                 goto end;
531             s->state = SSL3_ST_CW_FLUSH;
532
533             /* clear flags */
534             s->s3->flags &= ~SSL3_FLAGS_POP_BUFFER;
535             if (s->hit) {
536                 s->s3->tmp.next_state = SSL_ST_OK;
537                 if (s->s3->flags & SSL3_FLAGS_DELAY_CLIENT_FINISHED) {
538                     s->state = SSL_ST_OK;
539                     s->s3->flags |= SSL3_FLAGS_POP_BUFFER;
540                     s->s3->delay_buf_pop_ret = 0;
541                 }
542             } else {
543 #ifndef OPENSSL_NO_TLSEXT
544                 /*
545                  * Allow NewSessionTicket if ticket expected
546                  */
547                 if (s->tlsext_ticket_expected)
548                     s->s3->tmp.next_state = SSL3_ST_CR_SESSION_TICKET_A;
549                 else
550 #endif
551
552                     s->s3->tmp.next_state = SSL3_ST_CR_FINISHED_A;
553             }
554             s->init_num = 0;
555             break;
556
557 #ifndef OPENSSL_NO_TLSEXT
558         case SSL3_ST_CR_SESSION_TICKET_A:
559         case SSL3_ST_CR_SESSION_TICKET_B:
560             ret = ssl3_get_new_session_ticket(s);
561             if (ret <= 0)
562                 goto end;
563             s->state = SSL3_ST_CR_FINISHED_A;
564             s->init_num = 0;
565             break;
566
567         case SSL3_ST_CR_CERT_STATUS_A:
568         case SSL3_ST_CR_CERT_STATUS_B:
569             ret = ssl3_get_cert_status(s);
570             if (ret <= 0)
571                 goto end;
572             s->state = SSL3_ST_CR_KEY_EXCH_A;
573             s->init_num = 0;
574             break;
575 #endif
576
577         case SSL3_ST_CR_FINISHED_A:
578         case SSL3_ST_CR_FINISHED_B:
579             if (!s->s3->change_cipher_spec)
580                 s->s3->flags |= SSL3_FLAGS_CCS_OK;
581             ret = ssl3_get_finished(s, SSL3_ST_CR_FINISHED_A,
582                                     SSL3_ST_CR_FINISHED_B);
583             if (ret <= 0)
584                 goto end;
585
586             if (s->hit)
587                 s->state = SSL3_ST_CW_CHANGE_A;
588             else
589                 s->state = SSL_ST_OK;
590             s->init_num = 0;
591             break;
592
593         case SSL3_ST_CW_FLUSH:
594             s->rwstate = SSL_WRITING;
595             if (BIO_flush(s->wbio) <= 0) {
596                 ret = -1;
597                 goto end;
598             }
599             s->rwstate = SSL_NOTHING;
600             s->state = s->s3->tmp.next_state;
601             break;
602
603         case SSL_ST_OK:
604             /* clean a few things up */
605             ssl3_cleanup_key_block(s);
606
607             if (s->init_buf != NULL) {
608                 BUF_MEM_free(s->init_buf);
609                 s->init_buf = NULL;
610             }
611
612             /*
613              * If we are not 'joining' the last two packets, remove the
614              * buffering now
615              */
616             if (!(s->s3->flags & SSL3_FLAGS_POP_BUFFER))
617                 ssl_free_wbio_buffer(s);
618             /* else do it later in ssl3_write */
619
620             s->init_num = 0;
621             s->renegotiate = 0;
622             s->new_session = 0;
623
624             ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
625             if (s->hit)
626                 s->ctx->stats.sess_hit++;
627
628             ret = 1;
629             /* s->server=0; */
630             s->handshake_func = ssl3_connect;
631             s->ctx->stats.sess_connect_good++;
632
633             if (cb != NULL)
634                 cb(s, SSL_CB_HANDSHAKE_DONE, 1);
635
636             goto end;
637             /* break; */
638
639         case SSL_ST_ERR:
640         default:
641             SSLerr(SSL_F_SSL3_CONNECT, SSL_R_UNKNOWN_STATE);
642             ret = -1;
643             goto end;
644             /* break; */
645         }
646
647         /* did we do anything */
648         if (!s->s3->tmp.reuse_message && !skip) {
649             if (s->debug) {
650                 if ((ret = BIO_flush(s->wbio)) <= 0)
651                     goto end;
652             }
653
654             if ((cb != NULL) && (s->state != state)) {
655                 new_state = s->state;
656                 s->state = state;
657                 cb(s, SSL_CB_CONNECT_LOOP, 1);
658                 s->state = new_state;
659             }
660         }
661         skip = 0;
662     }
663  end:
664     s->in_handshake--;
665     if (buf != NULL)
666         BUF_MEM_free(buf);
667     if (cb != NULL)
668         cb(s, SSL_CB_CONNECT_EXIT, ret);
669     return (ret);
670 }
671
672 int ssl3_client_hello(SSL *s)
673 {
674     unsigned char *buf;
675     unsigned char *p, *d;
676     int i;
677     unsigned long l;
678     int al = 0;
679 #ifndef OPENSSL_NO_COMP
680     int j;
681     SSL_COMP *comp;
682 #endif
683
684     buf = (unsigned char *)s->init_buf->data;
685     if (s->state == SSL3_ST_CW_CLNT_HELLO_A) {
686         SSL_SESSION *sess = s->session;
687         if ((sess == NULL) || (sess->ssl_version != s->version) ||
688 #ifdef OPENSSL_NO_TLSEXT
689             !sess->session_id_length ||
690 #else
691             /*
692              * In the case of EAP-FAST, we can have a pre-shared
693              * "ticket" without a session ID.
694              */
695             (!sess->session_id_length && !sess->tlsext_tick) ||
696 #endif
697             (sess->not_resumable)) {
698             if (!ssl_get_new_session(s, 0))
699                 goto err;
700         }
701         if (s->method->version == DTLS_ANY_VERSION) {
702             /* Determine which DTLS version to use */
703             int options = s->options;
704             /* If DTLS 1.2 disabled correct the version number */
705             if (options & SSL_OP_NO_DTLSv1_2) {
706                 if (tls1_suiteb(s)) {
707                     SSLerr(SSL_F_SSL3_CLIENT_HELLO,
708                            SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE);
709                     goto err;
710                 }
711                 /*
712                  * Disabling all versions is silly: return an error.
713                  */
714                 if (options & SSL_OP_NO_DTLSv1) {
715                     SSLerr(SSL_F_SSL3_CLIENT_HELLO, SSL_R_WRONG_SSL_VERSION);
716                     goto err;
717                 }
718                 /*
719                  * Update method so we don't use any DTLS 1.2 features.
720                  */
721                 s->method = DTLSv1_client_method();
722                 s->version = DTLS1_VERSION;
723             } else {
724                 /*
725                  * We only support one version: update method
726                  */
727                 if (options & SSL_OP_NO_DTLSv1)
728                     s->method = DTLSv1_2_client_method();
729                 s->version = DTLS1_2_VERSION;
730             }
731             s->client_version = s->version;
732         }
733         /* else use the pre-loaded session */
734
735         p = s->s3->client_random;
736
737         /*
738          * for DTLS if client_random is initialized, reuse it, we are
739          * required to use same upon reply to HelloVerify
740          */
741         if (SSL_IS_DTLS(s)) {
742             size_t idx;
743             i = 1;
744             for (idx = 0; idx < sizeof(s->s3->client_random); idx++) {
745                 if (p[idx]) {
746                     i = 0;
747                     break;
748                 }
749             }
750         } else
751             i = 1;
752
753         if (i && ssl_fill_hello_random(s, 0, p,
754                                        sizeof(s->s3->client_random)) <= 0)
755             goto err;
756
757         /* Do the message type and length last */
758         d = p = ssl_handshake_start(s);
759
760         /*-
761          * version indicates the negotiated version: for example from
762          * an SSLv2/v3 compatible client hello). The client_version
763          * field is the maximum version we permit and it is also
764          * used in RSA encrypted premaster secrets. Some servers can
765          * choke if we initially report a higher version then
766          * renegotiate to a lower one in the premaster secret. This
767          * didn't happen with TLS 1.0 as most servers supported it
768          * but it can with TLS 1.1 or later if the server only supports
769          * 1.0.
770          *
771          * Possible scenario with previous logic:
772          *      1. Client hello indicates TLS 1.2
773          *      2. Server hello says TLS 1.0
774          *      3. RSA encrypted premaster secret uses 1.2.
775          *      4. Handhaked proceeds using TLS 1.0.
776          *      5. Server sends hello request to renegotiate.
777          *      6. Client hello indicates TLS v1.0 as we now
778          *         know that is maximum server supports.
779          *      7. Server chokes on RSA encrypted premaster secret
780          *         containing version 1.0.
781          *
782          * For interoperability it should be OK to always use the
783          * maximum version we support in client hello and then rely
784          * on the checking of version to ensure the servers isn't
785          * being inconsistent: for example initially negotiating with
786          * TLS 1.0 and renegotiating with TLS 1.2. We do this by using
787          * client_version in client hello and not resetting it to
788          * the negotiated version.
789          */
790 #if 0
791         *(p++) = s->version >> 8;
792         *(p++) = s->version & 0xff;
793         s->client_version = s->version;
794 #else
795         *(p++) = s->client_version >> 8;
796         *(p++) = s->client_version & 0xff;
797 #endif
798
799         /* Random stuff */
800         memcpy(p, s->s3->client_random, SSL3_RANDOM_SIZE);
801         p += SSL3_RANDOM_SIZE;
802
803         /* Session ID */
804         if (s->new_session)
805             i = 0;
806         else
807             i = s->session->session_id_length;
808         *(p++) = i;
809         if (i != 0) {
810             if (i > (int)sizeof(s->session->session_id)) {
811                 SSLerr(SSL_F_SSL3_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
812                 goto err;
813             }
814             memcpy(p, s->session->session_id, i);
815             p += i;
816         }
817
818         /* cookie stuff for DTLS */
819         if (SSL_IS_DTLS(s)) {
820             if (s->d1->cookie_len > sizeof(s->d1->cookie)) {
821                 SSLerr(SSL_F_SSL3_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
822                 goto err;
823             }
824             *(p++) = s->d1->cookie_len;
825             memcpy(p, s->d1->cookie, s->d1->cookie_len);
826             p += s->d1->cookie_len;
827         }
828
829         /* Ciphers supported */
830         i = ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), &(p[2]), 0);
831         if (i == 0) {
832             SSLerr(SSL_F_SSL3_CLIENT_HELLO, SSL_R_NO_CIPHERS_AVAILABLE);
833             goto err;
834         }
835 #ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH
836         /*
837          * Some servers hang if client hello > 256 bytes as hack workaround
838          * chop number of supported ciphers to keep it well below this if we
839          * use TLS v1.2
840          */
841         if (TLS1_get_version(s) >= TLS1_2_VERSION
842             && i > OPENSSL_MAX_TLS1_2_CIPHER_LENGTH)
843             i = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1;
844 #endif
845         s2n(i, p);
846         p += i;
847
848         /* COMPRESSION */
849 #ifdef OPENSSL_NO_COMP
850         *(p++) = 1;
851 #else
852
853         if ((s->options & SSL_OP_NO_COMPRESSION)
854             || !s->ctx->comp_methods)
855             j = 0;
856         else
857             j = sk_SSL_COMP_num(s->ctx->comp_methods);
858         *(p++) = 1 + j;
859         for (i = 0; i < j; i++) {
860             comp = sk_SSL_COMP_value(s->ctx->comp_methods, i);
861             *(p++) = comp->id;
862         }
863 #endif
864         *(p++) = 0;             /* Add the NULL method */
865
866 #ifndef OPENSSL_NO_TLSEXT
867         /* TLS extensions */
868         if (ssl_prepare_clienthello_tlsext(s) <= 0) {
869             SSLerr(SSL_F_SSL3_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
870             goto err;
871         }
872         if ((p =
873              ssl_add_clienthello_tlsext(s, p, buf + SSL3_RT_MAX_PLAIN_LENGTH,
874                                         &al)) == NULL) {
875             ssl3_send_alert(s, SSL3_AL_FATAL, al);
876             SSLerr(SSL_F_SSL3_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
877             goto err;
878         }
879 #endif
880
881         l = p - d;
882         ssl_set_handshake_header(s, SSL3_MT_CLIENT_HELLO, l);
883         s->state = SSL3_ST_CW_CLNT_HELLO_B;
884     }
885
886     /* SSL3_ST_CW_CLNT_HELLO_B */
887     return ssl_do_write(s);
888  err:
889     s->state = SSL_ST_ERR;
890     return (-1);
891 }
892
893 int ssl3_get_server_hello(SSL *s)
894 {
895     STACK_OF(SSL_CIPHER) *sk;
896     const SSL_CIPHER *c;
897     CERT *ct = s->cert;
898     unsigned char *p, *d;
899     int i, al = SSL_AD_INTERNAL_ERROR, ok;
900     unsigned int j;
901     long n;
902 #ifndef OPENSSL_NO_COMP
903     SSL_COMP *comp;
904 #endif
905     /*
906      * Hello verify request and/or server hello version may not match so set
907      * first packet if we're negotiating version.
908      */
909     if (SSL_IS_DTLS(s))
910         s->first_packet = 1;
911
912     n = s->method->ssl_get_message(s,
913                                    SSL3_ST_CR_SRVR_HELLO_A,
914                                    SSL3_ST_CR_SRVR_HELLO_B, -1, 20000, &ok);
915
916     if (!ok)
917         return ((int)n);
918
919     if (SSL_IS_DTLS(s)) {
920         s->first_packet = 0;
921         if (s->s3->tmp.message_type == DTLS1_MT_HELLO_VERIFY_REQUEST) {
922             if (s->d1->send_cookie == 0) {
923                 s->s3->tmp.reuse_message = 1;
924                 return 1;
925             } else {            /* already sent a cookie */
926
927                 al = SSL_AD_UNEXPECTED_MESSAGE;
928                 SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_BAD_MESSAGE_TYPE);
929                 goto f_err;
930             }
931         }
932     }
933
934     if (s->s3->tmp.message_type != SSL3_MT_SERVER_HELLO) {
935         al = SSL_AD_UNEXPECTED_MESSAGE;
936         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_BAD_MESSAGE_TYPE);
937         goto f_err;
938     }
939
940     d = p = (unsigned char *)s->init_msg;
941     if (s->method->version == DTLS_ANY_VERSION) {
942         /* Work out correct protocol version to use */
943         int hversion = (p[0] << 8) | p[1];
944         int options = s->options;
945         if (hversion == DTLS1_2_VERSION && !(options & SSL_OP_NO_DTLSv1_2))
946             s->method = DTLSv1_2_client_method();
947         else if (tls1_suiteb(s)) {
948             SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,
949                    SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE);
950             s->version = hversion;
951             al = SSL_AD_PROTOCOL_VERSION;
952             goto f_err;
953         } else if (hversion == DTLS1_VERSION && !(options & SSL_OP_NO_DTLSv1))
954             s->method = DTLSv1_client_method();
955         else {
956             SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_WRONG_SSL_VERSION);
957             s->version = hversion;
958             al = SSL_AD_PROTOCOL_VERSION;
959             goto f_err;
960         }
961         s->session->ssl_version = s->version = s->method->version;
962     }
963
964     if ((p[0] != (s->version >> 8)) || (p[1] != (s->version & 0xff))) {
965         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_WRONG_SSL_VERSION);
966         s->version = (s->version & 0xff00) | p[1];
967         al = SSL_AD_PROTOCOL_VERSION;
968         goto f_err;
969     }
970     p += 2;
971
972     /* load the server hello data */
973     /* load the server random */
974     memcpy(s->s3->server_random, p, SSL3_RANDOM_SIZE);
975     p += SSL3_RANDOM_SIZE;
976
977     s->hit = 0;
978
979     /* get the session-id */
980     j = *(p++);
981
982     if ((j > sizeof s->session->session_id) || (j > SSL3_SESSION_ID_SIZE)) {
983         al = SSL_AD_ILLEGAL_PARAMETER;
984         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_SSL3_SESSION_ID_TOO_LONG);
985         goto f_err;
986     }
987 #ifndef OPENSSL_NO_TLSEXT
988     /*
989      * Check if we can resume the session based on external pre-shared secret.
990      * EAP-FAST (RFC 4851) supports two types of session resumption.
991      * Resumption based on server-side state works with session IDs.
992      * Resumption based on pre-shared Protected Access Credentials (PACs)
993      * works by overriding the SessionTicket extension at the application
994      * layer, and does not send a session ID. (We do not know whether EAP-FAST
995      * servers would honour the session ID.) Therefore, the session ID alone
996      * is not a reliable indicator of session resumption, so we first check if
997      * we can resume, and later peek at the next handshake message to see if the
998      * server wants to resume.
999      */
1000     if (s->version >= TLS1_VERSION && s->tls_session_secret_cb &&
1001         s->session->tlsext_tick) {
1002         SSL_CIPHER *pref_cipher = NULL;
1003         s->session->master_key_length = sizeof(s->session->master_key);
1004         if (s->tls_session_secret_cb(s, s->session->master_key,
1005                                      &s->session->master_key_length,
1006                                      NULL, &pref_cipher,
1007                                      s->tls_session_secret_cb_arg)) {
1008             s->session->cipher = pref_cipher ?
1009                 pref_cipher : ssl_get_cipher_by_char(s, p + j);
1010         } else {
1011             SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1012             al = SSL_AD_INTERNAL_ERROR;
1013             goto f_err;
1014         }
1015     }
1016 #endif                          /* OPENSSL_NO_TLSEXT */
1017
1018     if (j != 0 && j == s->session->session_id_length
1019         && memcmp(p, s->session->session_id, j) == 0) {
1020         if (s->sid_ctx_length != s->session->sid_ctx_length
1021             || memcmp(s->session->sid_ctx, s->sid_ctx, s->sid_ctx_length)) {
1022             /* actually a client application bug */
1023             al = SSL_AD_ILLEGAL_PARAMETER;
1024             SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,
1025                    SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT);
1026             goto f_err;
1027         }
1028         s->hit = 1;
1029     } else {
1030         /*
1031          * If we were trying for session-id reuse but the server
1032          * didn't echo the ID, make a new SSL_SESSION.
1033          * In the case of EAP-FAST and PAC, we do not send a session ID,
1034          * so the PAC-based session secret is always preserved. It'll be
1035          * overwritten if the server refuses resumption.
1036          */
1037         if (s->session->session_id_length > 0) {
1038             if (!ssl_get_new_session(s, 0)) {
1039                 goto f_err;
1040             }
1041         }
1042         s->session->session_id_length = j;
1043         memcpy(s->session->session_id, p, j); /* j could be 0 */
1044     }
1045     p += j;
1046     c = ssl_get_cipher_by_char(s, p);
1047     if (c == NULL) {
1048         /* unknown cipher */
1049         al = SSL_AD_ILLEGAL_PARAMETER;
1050         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_UNKNOWN_CIPHER_RETURNED);
1051         goto f_err;
1052     }
1053     /*
1054      * If it is a disabled cipher we didn't send it in client hello, so
1055      * return an error.
1056      */
1057     if (c->algorithm_ssl & ct->mask_ssl ||
1058         c->algorithm_mkey & ct->mask_k || c->algorithm_auth & ct->mask_a) {
1059         al = SSL_AD_ILLEGAL_PARAMETER;
1060         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_WRONG_CIPHER_RETURNED);
1061         goto f_err;
1062     }
1063     p += ssl_put_cipher_by_char(s, NULL, NULL);
1064
1065     sk = ssl_get_ciphers_by_id(s);
1066     i = sk_SSL_CIPHER_find(sk, c);
1067     if (i < 0) {
1068         /* we did not say we would use this cipher */
1069         al = SSL_AD_ILLEGAL_PARAMETER;
1070         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_WRONG_CIPHER_RETURNED);
1071         goto f_err;
1072     }
1073
1074     /*
1075      * Depending on the session caching (internal/external), the cipher
1076      * and/or cipher_id values may not be set. Make sure that cipher_id is
1077      * set and use it for comparison.
1078      */
1079     if (s->session->cipher)
1080         s->session->cipher_id = s->session->cipher->id;
1081     if (s->hit && (s->session->cipher_id != c->id)) {
1082 /* Workaround is now obsolete */
1083 #if 0
1084         if (!(s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG))
1085 #endif
1086         {
1087             al = SSL_AD_ILLEGAL_PARAMETER;
1088             SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,
1089                    SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED);
1090             goto f_err;
1091         }
1092     }
1093     s->s3->tmp.new_cipher = c;
1094     /*
1095      * Don't digest cached records if no sigalgs: we may need them for client
1096      * authentication.
1097      */
1098     if (!SSL_USE_SIGALGS(s) && !ssl3_digest_cached_records(s))
1099         goto f_err;
1100     /* lets get the compression algorithm */
1101     /* COMPRESSION */
1102 #ifdef OPENSSL_NO_COMP
1103     if (*(p++) != 0) {
1104         al = SSL_AD_ILLEGAL_PARAMETER;
1105         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,
1106                SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1107         goto f_err;
1108     }
1109     /*
1110      * If compression is disabled we'd better not try to resume a session
1111      * using compression.
1112      */
1113     if (s->session->compress_meth != 0) {
1114         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1115         goto f_err;
1116     }
1117 #else
1118     j = *(p++);
1119     if (s->hit && j != s->session->compress_meth) {
1120         al = SSL_AD_ILLEGAL_PARAMETER;
1121         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,
1122                SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED);
1123         goto f_err;
1124     }
1125     if (j == 0)
1126         comp = NULL;
1127     else if (s->options & SSL_OP_NO_COMPRESSION) {
1128         al = SSL_AD_ILLEGAL_PARAMETER;
1129         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_COMPRESSION_DISABLED);
1130         goto f_err;
1131     } else
1132         comp = ssl3_comp_find(s->ctx->comp_methods, j);
1133
1134     if ((j != 0) && (comp == NULL)) {
1135         al = SSL_AD_ILLEGAL_PARAMETER;
1136         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO,
1137                SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM);
1138         goto f_err;
1139     } else {
1140         s->s3->tmp.new_compression = comp;
1141     }
1142 #endif
1143
1144 #ifndef OPENSSL_NO_TLSEXT
1145     /* TLS extensions */
1146     if (!ssl_parse_serverhello_tlsext(s, &p, d, n)) {
1147         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_PARSE_TLSEXT);
1148         goto err;
1149     }
1150 #endif
1151
1152     if (p != (d + n)) {
1153         /* wrong packet length */
1154         al = SSL_AD_DECODE_ERROR;
1155         SSLerr(SSL_F_SSL3_GET_SERVER_HELLO, SSL_R_BAD_PACKET_LENGTH);
1156         goto f_err;
1157     }
1158
1159     return (1);
1160  f_err:
1161     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1162  err:
1163     s->state = SSL_ST_ERR;
1164     return (-1);
1165 }
1166
1167 int ssl3_get_server_certificate(SSL *s)
1168 {
1169     int al, i, ok, ret = -1;
1170     unsigned long n, nc, llen, l;
1171     X509 *x = NULL;
1172     const unsigned char *q, *p;
1173     unsigned char *d;
1174     STACK_OF(X509) *sk = NULL;
1175     SESS_CERT *sc;
1176     EVP_PKEY *pkey = NULL;
1177     int need_cert = 1;          /* VRS: 0=> will allow null cert if auth ==
1178                                  * KRB5 */
1179
1180     n = s->method->ssl_get_message(s,
1181                                    SSL3_ST_CR_CERT_A,
1182                                    SSL3_ST_CR_CERT_B,
1183                                    -1, s->max_cert_list, &ok);
1184
1185     if (!ok)
1186         return ((int)n);
1187
1188     if ((s->s3->tmp.message_type == SSL3_MT_SERVER_KEY_EXCHANGE) ||
1189         ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5) &&
1190          (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE))) {
1191         s->s3->tmp.reuse_message = 1;
1192         return (1);
1193     }
1194
1195     if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE) {
1196         al = SSL_AD_UNEXPECTED_MESSAGE;
1197         SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, SSL_R_BAD_MESSAGE_TYPE);
1198         goto f_err;
1199     }
1200     p = d = (unsigned char *)s->init_msg;
1201
1202     if ((sk = sk_X509_new_null()) == NULL) {
1203         SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1204         goto err;
1205     }
1206
1207     n2l3(p, llen);
1208     if (llen + 3 != n) {
1209         al = SSL_AD_DECODE_ERROR;
1210         SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
1211         goto f_err;
1212     }
1213     for (nc = 0; nc < llen;) {
1214         n2l3(p, l);
1215         if ((l + nc + 3) > llen) {
1216             al = SSL_AD_DECODE_ERROR;
1217             SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1218                    SSL_R_CERT_LENGTH_MISMATCH);
1219             goto f_err;
1220         }
1221
1222         q = p;
1223         x = d2i_X509(NULL, &q, l);
1224         if (x == NULL) {
1225             al = SSL_AD_BAD_CERTIFICATE;
1226             SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, ERR_R_ASN1_LIB);
1227             goto f_err;
1228         }
1229         if (q != (p + l)) {
1230             al = SSL_AD_DECODE_ERROR;
1231             SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1232                    SSL_R_CERT_LENGTH_MISMATCH);
1233             goto f_err;
1234         }
1235         if (!sk_X509_push(sk, x)) {
1236             SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE);
1237             goto err;
1238         }
1239         x = NULL;
1240         nc += l + 3;
1241         p = q;
1242     }
1243
1244     i = ssl_verify_cert_chain(s, sk);
1245     if ((s->verify_mode != SSL_VERIFY_NONE) && (i <= 0)
1246 #ifndef OPENSSL_NO_KRB5
1247         && !((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5) &&
1248              (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
1249 #endif                          /* OPENSSL_NO_KRB5 */
1250         ) {
1251         al = ssl_verify_alarm_type(s->verify_result);
1252         SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1253                SSL_R_CERTIFICATE_VERIFY_FAILED);
1254         goto f_err;
1255     }
1256     ERR_clear_error();          /* but we keep s->verify_result */
1257
1258     sc = ssl_sess_cert_new();
1259     if (sc == NULL)
1260         goto err;
1261
1262     if (s->session->sess_cert)
1263         ssl_sess_cert_free(s->session->sess_cert);
1264     s->session->sess_cert = sc;
1265
1266     sc->cert_chain = sk;
1267     /*
1268      * Inconsistency alert: cert_chain does include the peer's certificate,
1269      * which we don't include in s3_srvr.c
1270      */
1271     x = sk_X509_value(sk, 0);
1272     sk = NULL;
1273     /*
1274      * VRS 19990621: possible memory leak; sk=null ==> !sk_pop_free() @end
1275      */
1276
1277     pkey = X509_get_pubkey(x);
1278
1279     /* VRS: allow null cert if auth == KRB5 */
1280     need_cert = ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5) &&
1281                  (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5))
1282         ? 0 : 1;
1283
1284 #ifdef KSSL_DEBUG
1285     fprintf(stderr, "pkey,x = %p, %p\n", pkey, x);
1286     fprintf(stderr, "ssl_cert_type(x,pkey) = %d\n", ssl_cert_type(x, pkey));
1287     fprintf(stderr, "cipher, alg, nc = %s, %lx, %lx, %d\n",
1288             s->s3->tmp.new_cipher->name,
1289             s->s3->tmp.new_cipher->algorithm_mkey,
1290             s->s3->tmp.new_cipher->algorithm_auth, need_cert);
1291 #endif                          /* KSSL_DEBUG */
1292
1293     if (need_cert && ((pkey == NULL) || EVP_PKEY_missing_parameters(pkey))) {
1294         x = NULL;
1295         al = SSL3_AL_FATAL;
1296         SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1297                SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS);
1298         goto f_err;
1299     }
1300
1301     i = ssl_cert_type(x, pkey);
1302     if (need_cert && i < 0) {
1303         x = NULL;
1304         al = SSL3_AL_FATAL;
1305         SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1306                SSL_R_UNKNOWN_CERTIFICATE_TYPE);
1307         goto f_err;
1308     }
1309
1310     if (need_cert) {
1311         int exp_idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher);
1312         if (exp_idx >= 0 && i != exp_idx) {
1313             x = NULL;
1314             al = SSL_AD_ILLEGAL_PARAMETER;
1315             SSLerr(SSL_F_SSL3_GET_SERVER_CERTIFICATE,
1316                    SSL_R_WRONG_CERTIFICATE_TYPE);
1317             goto f_err;
1318         }
1319         sc->peer_cert_type = i;
1320         CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
1321         /*
1322          * Why would the following ever happen? We just created sc a couple
1323          * of lines ago.
1324          */
1325         if (sc->peer_pkeys[i].x509 != NULL)
1326             X509_free(sc->peer_pkeys[i].x509);
1327         sc->peer_pkeys[i].x509 = x;
1328         sc->peer_key = &(sc->peer_pkeys[i]);
1329
1330         if (s->session->peer != NULL)
1331             X509_free(s->session->peer);
1332         CRYPTO_add(&x->references, 1, CRYPTO_LOCK_X509);
1333         s->session->peer = x;
1334     } else {
1335         sc->peer_cert_type = i;
1336         sc->peer_key = NULL;
1337
1338         if (s->session->peer != NULL)
1339             X509_free(s->session->peer);
1340         s->session->peer = NULL;
1341     }
1342     s->session->verify_result = s->verify_result;
1343
1344     x = NULL;
1345     ret = 1;
1346     if (0) {
1347  f_err:
1348         ssl3_send_alert(s, SSL3_AL_FATAL, al);
1349  err:
1350         s->state = SSL_ST_ERR;
1351     }
1352
1353     EVP_PKEY_free(pkey);
1354     X509_free(x);
1355     sk_X509_pop_free(sk, X509_free);
1356     return (ret);
1357 }
1358
1359 int ssl3_get_key_exchange(SSL *s)
1360 {
1361 #ifndef OPENSSL_NO_RSA
1362     unsigned char *q, md_buf[EVP_MAX_MD_SIZE * 2];
1363 #endif
1364     EVP_MD_CTX md_ctx;
1365     unsigned char *param, *p;
1366     int al, j, ok;
1367     long i, param_len, n, alg_k, alg_a;
1368     EVP_PKEY *pkey = NULL;
1369     const EVP_MD *md = NULL;
1370 #ifndef OPENSSL_NO_RSA
1371     RSA *rsa = NULL;
1372 #endif
1373 #ifndef OPENSSL_NO_DH
1374     DH *dh = NULL;
1375 #endif
1376 #ifndef OPENSSL_NO_ECDH
1377     EC_KEY *ecdh = NULL;
1378     BN_CTX *bn_ctx = NULL;
1379     EC_POINT *srvr_ecpoint = NULL;
1380     int curve_nid = 0;
1381     int encoded_pt_len = 0;
1382 #endif
1383
1384     EVP_MD_CTX_init(&md_ctx);
1385
1386     /*
1387      * use same message size as in ssl3_get_certificate_request() as
1388      * ServerKeyExchange message may be skipped
1389      */
1390     n = s->method->ssl_get_message(s,
1391                                    SSL3_ST_CR_KEY_EXCH_A,
1392                                    SSL3_ST_CR_KEY_EXCH_B,
1393                                    -1, s->max_cert_list, &ok);
1394     if (!ok)
1395         return ((int)n);
1396
1397     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
1398
1399     if (s->s3->tmp.message_type != SSL3_MT_SERVER_KEY_EXCHANGE) {
1400         /*
1401          * Can't skip server key exchange if this is an ephemeral
1402          * ciphersuite.
1403          */
1404         if (alg_k & (SSL_kDHE | SSL_kECDHE)) {
1405             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_UNEXPECTED_MESSAGE);
1406             al = SSL_AD_UNEXPECTED_MESSAGE;
1407             goto f_err;
1408         }
1409 #ifndef OPENSSL_NO_PSK
1410         /*
1411          * In plain PSK ciphersuite, ServerKeyExchange can be omitted if no
1412          * identity hint is sent. Set session->sess_cert anyway to avoid
1413          * problems later.
1414          */
1415         if (alg_k & SSL_kPSK) {
1416             s->session->sess_cert = ssl_sess_cert_new();
1417             if (s->ctx->psk_identity_hint)
1418                 OPENSSL_free(s->ctx->psk_identity_hint);
1419             s->ctx->psk_identity_hint = NULL;
1420         }
1421 #endif
1422         s->s3->tmp.reuse_message = 1;
1423         return (1);
1424     }
1425
1426     param = p = (unsigned char *)s->init_msg;
1427     if (s->session->sess_cert != NULL) {
1428 #ifndef OPENSSL_NO_RSA
1429         if (s->session->sess_cert->peer_rsa_tmp != NULL) {
1430             RSA_free(s->session->sess_cert->peer_rsa_tmp);
1431             s->session->sess_cert->peer_rsa_tmp = NULL;
1432         }
1433 #endif
1434 #ifndef OPENSSL_NO_DH
1435         if (s->session->sess_cert->peer_dh_tmp) {
1436             DH_free(s->session->sess_cert->peer_dh_tmp);
1437             s->session->sess_cert->peer_dh_tmp = NULL;
1438         }
1439 #endif
1440 #ifndef OPENSSL_NO_ECDH
1441         if (s->session->sess_cert->peer_ecdh_tmp) {
1442             EC_KEY_free(s->session->sess_cert->peer_ecdh_tmp);
1443             s->session->sess_cert->peer_ecdh_tmp = NULL;
1444         }
1445 #endif
1446     } else {
1447         s->session->sess_cert = ssl_sess_cert_new();
1448     }
1449
1450     /* Total length of the parameters including the length prefix */
1451     param_len = 0;
1452
1453     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
1454
1455     al = SSL_AD_DECODE_ERROR;
1456
1457 #ifndef OPENSSL_NO_PSK
1458     if (alg_k & SSL_kPSK) {
1459         param_len = 2;
1460         if (param_len > n) {
1461             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1462             goto f_err;
1463         }
1464         n2s(p, i);
1465
1466         /*
1467          * Store PSK identity hint for later use, hint is used in
1468          * ssl3_send_client_key_exchange.  Assume that the maximum length of
1469          * a PSK identity hint can be as long as the maximum length of a PSK
1470          * identity.
1471          */
1472         if (i > PSK_MAX_IDENTITY_LEN) {
1473             al = SSL_AD_HANDSHAKE_FAILURE;
1474             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_DATA_LENGTH_TOO_LONG);
1475             goto f_err;
1476         }
1477         if (i > n - param_len) {
1478             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1479                    SSL_R_BAD_PSK_IDENTITY_HINT_LENGTH);
1480             goto f_err;
1481         }
1482         param_len += i;
1483
1484         s->session->psk_identity_hint = BUF_strndup((char *)p, i);
1485         if (s->session->psk_identity_hint == NULL) {
1486             al = SSL_AD_HANDSHAKE_FAILURE;
1487             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1488             goto f_err;
1489         }
1490
1491         p += i;
1492         n -= param_len;
1493     } else
1494 #endif                          /* !OPENSSL_NO_PSK */
1495 #ifndef OPENSSL_NO_SRP
1496     if (alg_k & SSL_kSRP) {
1497         param_len = 2;
1498         if (param_len > n) {
1499             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1500             goto f_err;
1501         }
1502         n2s(p, i);
1503
1504         if (i > n - param_len) {
1505             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_SRP_N_LENGTH);
1506             goto f_err;
1507         }
1508         param_len += i;
1509
1510         if (!(s->srp_ctx.N = BN_bin2bn(p, i, NULL))) {
1511             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1512             goto err;
1513         }
1514         p += i;
1515
1516         if (2 > n - param_len) {
1517             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1518             goto f_err;
1519         }
1520         param_len += 2;
1521
1522         n2s(p, i);
1523
1524         if (i > n - param_len) {
1525             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_SRP_G_LENGTH);
1526             goto f_err;
1527         }
1528         param_len += i;
1529
1530         if (!(s->srp_ctx.g = BN_bin2bn(p, i, NULL))) {
1531             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1532             goto err;
1533         }
1534         p += i;
1535
1536         if (1 > n - param_len) {
1537             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1538             goto f_err;
1539         }
1540         param_len += 1;
1541
1542         i = (unsigned int)(p[0]);
1543         p++;
1544
1545         if (i > n - param_len) {
1546             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_SRP_S_LENGTH);
1547             goto f_err;
1548         }
1549         param_len += i;
1550
1551         if (!(s->srp_ctx.s = BN_bin2bn(p, i, NULL))) {
1552             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1553             goto err;
1554         }
1555         p += i;
1556
1557         if (2 > n - param_len) {
1558             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1559             goto f_err;
1560         }
1561         param_len += 2;
1562
1563         n2s(p, i);
1564
1565         if (i > n - param_len) {
1566             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_SRP_B_LENGTH);
1567             goto f_err;
1568         }
1569         param_len += i;
1570
1571         if (!(s->srp_ctx.B = BN_bin2bn(p, i, NULL))) {
1572             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1573             goto err;
1574         }
1575         p += i;
1576         n -= param_len;
1577
1578         if (!srp_verify_server_param(s, &al)) {
1579             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_SRP_PARAMETERS);
1580             goto f_err;
1581         }
1582
1583 /* We must check if there is a certificate */
1584 # ifndef OPENSSL_NO_RSA
1585         if (alg_a & SSL_aRSA)
1586             pkey =
1587                 X509_get_pubkey(s->session->
1588                                 sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1589 # else
1590         if (0) ;
1591 # endif
1592 # ifndef OPENSSL_NO_DSA
1593         else if (alg_a & SSL_aDSS)
1594             pkey =
1595                 X509_get_pubkey(s->session->
1596                                 sess_cert->peer_pkeys[SSL_PKEY_DSA_SIGN].
1597                                 x509);
1598 # endif
1599     } else
1600 #endif                          /* !OPENSSL_NO_SRP */
1601 #ifndef OPENSSL_NO_RSA
1602     if (alg_k & SSL_kRSA) {
1603         /* Temporary RSA keys only allowed in export ciphersuites */
1604         if (!SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)) {
1605             al = SSL_AD_UNEXPECTED_MESSAGE;
1606             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_UNEXPECTED_MESSAGE);
1607             goto f_err;
1608         }
1609         if ((rsa = RSA_new()) == NULL) {
1610             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1611             goto err;
1612         }
1613
1614         param_len = 2;
1615         if (param_len > n) {
1616             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1617             goto f_err;
1618         }
1619         n2s(p, i);
1620
1621         if (i > n - param_len) {
1622             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_RSA_MODULUS_LENGTH);
1623             goto f_err;
1624         }
1625         param_len += i;
1626
1627         if (!(rsa->n = BN_bin2bn(p, i, rsa->n))) {
1628             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1629             goto err;
1630         }
1631         p += i;
1632
1633         if (2 > n - param_len) {
1634             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1635             goto f_err;
1636         }
1637         param_len += 2;
1638
1639         n2s(p, i);
1640
1641         if (i > n - param_len) {
1642             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_RSA_E_LENGTH);
1643             goto f_err;
1644         }
1645         param_len += i;
1646
1647         if (!(rsa->e = BN_bin2bn(p, i, rsa->e))) {
1648             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1649             goto err;
1650         }
1651         p += i;
1652         n -= param_len;
1653
1654         /* this should be because we are using an export cipher */
1655         if (alg_a & SSL_aRSA)
1656             pkey =
1657                 X509_get_pubkey(s->session->
1658                                 sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1659         else {
1660             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1661             goto err;
1662         }
1663
1664         if (EVP_PKEY_bits(pkey) <= SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)) {
1665             al = SSL_AD_UNEXPECTED_MESSAGE;
1666             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_UNEXPECTED_MESSAGE);
1667             goto f_err;
1668         }
1669
1670         s->session->sess_cert->peer_rsa_tmp = rsa;
1671         rsa = NULL;
1672     }
1673 #else                           /* OPENSSL_NO_RSA */
1674     if (0) ;
1675 #endif
1676 #ifndef OPENSSL_NO_DH
1677     else if (alg_k & SSL_kEDH) {
1678         if ((dh = DH_new()) == NULL) {
1679             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_DH_LIB);
1680             goto err;
1681         }
1682
1683         param_len = 2;
1684         if (param_len > n) {
1685             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1686             goto f_err;
1687         }
1688         n2s(p, i);
1689
1690         if (i > n - param_len) {
1691             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_DH_P_LENGTH);
1692             goto f_err;
1693         }
1694         param_len += i;
1695
1696         if (!(dh->p = BN_bin2bn(p, i, NULL))) {
1697             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1698             goto err;
1699         }
1700         p += i;
1701
1702         if (BN_is_zero(dh->p)) {
1703             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_DH_P_VALUE);
1704             goto f_err;
1705         }
1706
1707
1708         if (2 > n - param_len) {
1709             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1710             goto f_err;
1711         }
1712         param_len += 2;
1713
1714         n2s(p, i);
1715
1716         if (i > n - param_len) {
1717             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_DH_G_LENGTH);
1718             goto f_err;
1719         }
1720         param_len += i;
1721
1722         if (!(dh->g = BN_bin2bn(p, i, NULL))) {
1723             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1724             goto err;
1725         }
1726         p += i;
1727
1728         if (BN_is_zero(dh->g)) {
1729             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_DH_G_VALUE);
1730             goto f_err;
1731         }
1732
1733         if (2 > n - param_len) {
1734             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1735             goto f_err;
1736         }
1737         param_len += 2;
1738
1739         n2s(p, i);
1740
1741         if (i > n - param_len) {
1742             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_DH_PUB_KEY_LENGTH);
1743             goto f_err;
1744         }
1745         param_len += i;
1746
1747         if (!(dh->pub_key = BN_bin2bn(p, i, NULL))) {
1748             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_BN_LIB);
1749             goto err;
1750         }
1751         p += i;
1752         n -= param_len;
1753
1754         if (BN_is_zero(dh->pub_key)) {
1755             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_DH_PUB_KEY_VALUE);
1756             goto f_err;
1757         }
1758
1759 # ifndef OPENSSL_NO_RSA
1760         if (alg_a & SSL_aRSA)
1761             pkey =
1762                 X509_get_pubkey(s->session->
1763                                 sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1764 # else
1765         if (0) ;
1766 # endif
1767 # ifndef OPENSSL_NO_DSA
1768         else if (alg_a & SSL_aDSS)
1769             pkey =
1770                 X509_get_pubkey(s->session->
1771                                 sess_cert->peer_pkeys[SSL_PKEY_DSA_SIGN].
1772                                 x509);
1773 # endif
1774         /* else anonymous DH, so no certificate or pkey. */
1775
1776         s->session->sess_cert->peer_dh_tmp = dh;
1777         dh = NULL;
1778     } else if ((alg_k & SSL_kDHr) || (alg_k & SSL_kDHd)) {
1779         al = SSL_AD_ILLEGAL_PARAMETER;
1780         SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1781                SSL_R_TRIED_TO_USE_UNSUPPORTED_CIPHER);
1782         goto f_err;
1783     }
1784 #endif                          /* !OPENSSL_NO_DH */
1785
1786 #ifndef OPENSSL_NO_ECDH
1787     else if (alg_k & SSL_kEECDH) {
1788         EC_GROUP *ngroup;
1789         const EC_GROUP *group;
1790
1791         if ((ecdh = EC_KEY_new()) == NULL) {
1792             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1793             goto err;
1794         }
1795
1796         /*
1797          * Extract elliptic curve parameters and the server's ephemeral ECDH
1798          * public key. Keep accumulating lengths of various components in
1799          * param_len and make sure it never exceeds n.
1800          */
1801
1802         /*
1803          * XXX: For now we only support named (not generic) curves and the
1804          * ECParameters in this case is just three bytes. We also need one
1805          * byte for the length of the encoded point
1806          */
1807         param_len = 4;
1808         if (param_len > n) {
1809             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1810             goto f_err;
1811         }
1812         /*
1813          * Check curve is one of our preferences, if not server has sent an
1814          * invalid curve. ECParameters is 3 bytes.
1815          */
1816         if (!tls1_check_curve(s, p, 3)) {
1817             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_WRONG_CURVE);
1818             goto f_err;
1819         }
1820
1821         if ((curve_nid = tls1_ec_curve_id2nid(*(p + 2))) == 0) {
1822             al = SSL_AD_INTERNAL_ERROR;
1823             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1824                    SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS);
1825             goto f_err;
1826         }
1827
1828         ngroup = EC_GROUP_new_by_curve_name(curve_nid);
1829         if (ngroup == NULL) {
1830             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_EC_LIB);
1831             goto err;
1832         }
1833         if (EC_KEY_set_group(ecdh, ngroup) == 0) {
1834             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_EC_LIB);
1835             goto err;
1836         }
1837         EC_GROUP_free(ngroup);
1838
1839         group = EC_KEY_get0_group(ecdh);
1840
1841         if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1842             (EC_GROUP_get_degree(group) > 163)) {
1843             al = SSL_AD_EXPORT_RESTRICTION;
1844             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE,
1845                    SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1846             goto f_err;
1847         }
1848
1849         p += 3;
1850
1851         /* Next, get the encoded ECPoint */
1852         if (((srvr_ecpoint = EC_POINT_new(group)) == NULL) ||
1853             ((bn_ctx = BN_CTX_new()) == NULL)) {
1854             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1855             goto err;
1856         }
1857
1858         encoded_pt_len = *p;    /* length of encoded point */
1859         p += 1;
1860
1861         if ((encoded_pt_len > n - param_len) ||
1862             (EC_POINT_oct2point(group, srvr_ecpoint,
1863                                 p, encoded_pt_len, bn_ctx) == 0)) {
1864             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_ECPOINT);
1865             goto f_err;
1866         }
1867         param_len += encoded_pt_len;
1868
1869         n -= param_len;
1870         p += encoded_pt_len;
1871
1872         /*
1873          * The ECC/TLS specification does not mention the use of DSA to sign
1874          * ECParameters in the server key exchange message. We do support RSA
1875          * and ECDSA.
1876          */
1877         if (0) ;
1878 # ifndef OPENSSL_NO_RSA
1879         else if (alg_a & SSL_aRSA)
1880             pkey =
1881                 X509_get_pubkey(s->session->
1882                                 sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509);
1883 # endif
1884 # ifndef OPENSSL_NO_ECDSA
1885         else if (alg_a & SSL_aECDSA)
1886             pkey =
1887                 X509_get_pubkey(s->session->
1888                                 sess_cert->peer_pkeys[SSL_PKEY_ECC].x509);
1889 # endif
1890         /* else anonymous ECDH, so no certificate or pkey. */
1891         EC_KEY_set_public_key(ecdh, srvr_ecpoint);
1892         s->session->sess_cert->peer_ecdh_tmp = ecdh;
1893         ecdh = NULL;
1894         BN_CTX_free(bn_ctx);
1895         bn_ctx = NULL;
1896         EC_POINT_free(srvr_ecpoint);
1897         srvr_ecpoint = NULL;
1898     } else if (alg_k) {
1899         al = SSL_AD_UNEXPECTED_MESSAGE;
1900         SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_UNEXPECTED_MESSAGE);
1901         goto f_err;
1902     }
1903 #endif                          /* !OPENSSL_NO_ECDH */
1904
1905     /* p points to the next byte, there are 'n' bytes left */
1906
1907     /* if it was signed, check the signature */
1908     if (pkey != NULL) {
1909         if (SSL_USE_SIGALGS(s)) {
1910             int rv;
1911             if (2 > n) {
1912                 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1913                 goto f_err;
1914             }
1915             rv = tls12_check_peer_sigalg(&md, s, p, pkey);
1916             if (rv == -1)
1917                 goto err;
1918             else if (rv == 0) {
1919                 goto f_err;
1920             }
1921 #ifdef SSL_DEBUG
1922             fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
1923 #endif
1924             p += 2;
1925             n -= 2;
1926         } else
1927             md = EVP_sha1();
1928
1929         if (2 > n) {
1930             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT);
1931             goto f_err;
1932         }
1933         n2s(p, i);
1934         n -= 2;
1935         j = EVP_PKEY_size(pkey);
1936
1937         /*
1938          * Check signature length. If n is 0 then signature is empty
1939          */
1940         if ((i != n) || (n > j) || (n <= 0)) {
1941             /* wrong packet length */
1942             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_WRONG_SIGNATURE_LENGTH);
1943             goto f_err;
1944         }
1945 #ifndef OPENSSL_NO_RSA
1946         if (pkey->type == EVP_PKEY_RSA && !SSL_USE_SIGALGS(s)) {
1947             int num;
1948             unsigned int size;
1949
1950             j = 0;
1951             q = md_buf;
1952             for (num = 2; num > 0; num--) {
1953                 EVP_MD_CTX_set_flags(&md_ctx, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
1954                 EVP_DigestInit_ex(&md_ctx, (num == 2)
1955                                   ? s->ctx->md5 : s->ctx->sha1, NULL);
1956                 EVP_DigestUpdate(&md_ctx, &(s->s3->client_random[0]),
1957                                  SSL3_RANDOM_SIZE);
1958                 EVP_DigestUpdate(&md_ctx, &(s->s3->server_random[0]),
1959                                  SSL3_RANDOM_SIZE);
1960                 EVP_DigestUpdate(&md_ctx, param, param_len);
1961                 EVP_DigestFinal_ex(&md_ctx, q, &size);
1962                 q += size;
1963                 j += size;
1964             }
1965             i = RSA_verify(NID_md5_sha1, md_buf, j, p, n, pkey->pkey.rsa);
1966             if (i < 0) {
1967                 al = SSL_AD_DECRYPT_ERROR;
1968                 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_RSA_DECRYPT);
1969                 goto f_err;
1970             }
1971             if (i == 0) {
1972                 /* bad signature */
1973                 al = SSL_AD_DECRYPT_ERROR;
1974                 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_SIGNATURE);
1975                 goto f_err;
1976             }
1977         } else
1978 #endif
1979         {
1980             EVP_VerifyInit_ex(&md_ctx, md, NULL);
1981             EVP_VerifyUpdate(&md_ctx, &(s->s3->client_random[0]),
1982                              SSL3_RANDOM_SIZE);
1983             EVP_VerifyUpdate(&md_ctx, &(s->s3->server_random[0]),
1984                              SSL3_RANDOM_SIZE);
1985             EVP_VerifyUpdate(&md_ctx, param, param_len);
1986             if (EVP_VerifyFinal(&md_ctx, p, (int)n, pkey) <= 0) {
1987                 /* bad signature */
1988                 al = SSL_AD_DECRYPT_ERROR;
1989                 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_BAD_SIGNATURE);
1990                 goto f_err;
1991             }
1992         }
1993     } else {
1994         /* aNULL, aSRP or kPSK do not need public keys */
1995         if (!(alg_a & (SSL_aNULL | SSL_aSRP)) && !(alg_k & SSL_kPSK)) {
1996             /* Might be wrong key type, check it */
1997             if (ssl3_check_cert_and_algorithm(s))
1998                 /* Otherwise this shouldn't happen */
1999                 SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2000             goto err;
2001         }
2002         /* still data left over */
2003         if (n != 0) {
2004             SSLerr(SSL_F_SSL3_GET_KEY_EXCHANGE, SSL_R_EXTRA_DATA_IN_MESSAGE);
2005             goto f_err;
2006         }
2007     }
2008     EVP_PKEY_free(pkey);
2009     EVP_MD_CTX_cleanup(&md_ctx);
2010     return (1);
2011  f_err:
2012     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2013  err:
2014     EVP_PKEY_free(pkey);
2015 #ifndef OPENSSL_NO_RSA
2016     if (rsa != NULL)
2017         RSA_free(rsa);
2018 #endif
2019 #ifndef OPENSSL_NO_DH
2020     if (dh != NULL)
2021         DH_free(dh);
2022 #endif
2023 #ifndef OPENSSL_NO_ECDH
2024     BN_CTX_free(bn_ctx);
2025     EC_POINT_free(srvr_ecpoint);
2026     if (ecdh != NULL)
2027         EC_KEY_free(ecdh);
2028 #endif
2029     EVP_MD_CTX_cleanup(&md_ctx);
2030     s->state = SSL_ST_ERR;
2031     return (-1);
2032 }
2033
2034 int ssl3_get_certificate_request(SSL *s)
2035 {
2036     int ok, ret = 0;
2037     unsigned long n, nc, l;
2038     unsigned int llen, ctype_num, i;
2039     X509_NAME *xn = NULL;
2040     const unsigned char *p, *q;
2041     unsigned char *d;
2042     STACK_OF(X509_NAME) *ca_sk = NULL;
2043
2044     n = s->method->ssl_get_message(s,
2045                                    SSL3_ST_CR_CERT_REQ_A,
2046                                    SSL3_ST_CR_CERT_REQ_B,
2047                                    -1, s->max_cert_list, &ok);
2048
2049     if (!ok)
2050         return ((int)n);
2051
2052     s->s3->tmp.cert_req = 0;
2053
2054     if (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE) {
2055         s->s3->tmp.reuse_message = 1;
2056         /*
2057          * If we get here we don't need any cached handshake records as we
2058          * wont be doing client auth.
2059          */
2060         if (s->s3->handshake_buffer) {
2061             if (!ssl3_digest_cached_records(s))
2062                 goto err;
2063         }
2064         return (1);
2065     }
2066
2067     if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_REQUEST) {
2068         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE);
2069         SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST, SSL_R_WRONG_MESSAGE_TYPE);
2070         goto err;
2071     }
2072
2073     /* TLS does not like anon-DH with client cert */
2074     if (s->version > SSL3_VERSION) {
2075         if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) {
2076             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE);
2077             SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,
2078                    SSL_R_TLS_CLIENT_CERT_REQ_WITH_ANON_CIPHER);
2079             goto err;
2080         }
2081     }
2082
2083     p = d = (unsigned char *)s->init_msg;
2084
2085     if ((ca_sk = sk_X509_NAME_new(ca_dn_cmp)) == NULL) {
2086         SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2087         goto err;
2088     }
2089
2090     /* get the certificate types */
2091     ctype_num = *(p++);
2092     if (s->cert->ctypes) {
2093         OPENSSL_free(s->cert->ctypes);
2094         s->cert->ctypes = NULL;
2095     }
2096     if (ctype_num > SSL3_CT_NUMBER) {
2097         /* If we exceed static buffer copy all to cert structure */
2098         s->cert->ctypes = OPENSSL_malloc(ctype_num);
2099         memcpy(s->cert->ctypes, p, ctype_num);
2100         s->cert->ctype_num = (size_t)ctype_num;
2101         ctype_num = SSL3_CT_NUMBER;
2102     }
2103     for (i = 0; i < ctype_num; i++)
2104         s->s3->tmp.ctype[i] = p[i];
2105     p += p[-1];
2106     if (SSL_USE_SIGALGS(s)) {
2107         n2s(p, llen);
2108         /*
2109          * Check we have enough room for signature algorithms and following
2110          * length value.
2111          */
2112         if ((unsigned long)(p - d + llen + 2) > n) {
2113             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2114             SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,
2115                    SSL_R_DATA_LENGTH_TOO_LONG);
2116             goto err;
2117         }
2118         /* Clear certificate digests and validity flags */
2119         for (i = 0; i < SSL_PKEY_NUM; i++) {
2120             s->cert->pkeys[i].digest = NULL;
2121             s->cert->pkeys[i].valid_flags = 0;
2122         }
2123         if ((llen & 1) || !tls1_save_sigalgs(s, p, llen)) {
2124             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2125             SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,
2126                    SSL_R_SIGNATURE_ALGORITHMS_ERROR);
2127             goto err;
2128         }
2129         if (!tls1_process_sigalgs(s)) {
2130             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
2131             SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2132             goto err;
2133         }
2134         p += llen;
2135     }
2136
2137     /* get the CA RDNs */
2138     n2s(p, llen);
2139 #if 0
2140     {
2141         FILE *out;
2142         out = fopen("/tmp/vsign.der", "w");
2143         fwrite(p, 1, llen, out);
2144         fclose(out);
2145     }
2146 #endif
2147
2148     if ((unsigned long)(p - d + llen) != n) {
2149         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2150         SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST, SSL_R_LENGTH_MISMATCH);
2151         goto err;
2152     }
2153
2154     for (nc = 0; nc < llen;) {
2155         n2s(p, l);
2156         if ((l + nc + 2) > llen) {
2157             if ((s->options & SSL_OP_NETSCAPE_CA_DN_BUG))
2158                 goto cont;      /* netscape bugs */
2159             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2160             SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST, SSL_R_CA_DN_TOO_LONG);
2161             goto err;
2162         }
2163
2164         q = p;
2165
2166         if ((xn = d2i_X509_NAME(NULL, &q, l)) == NULL) {
2167             /* If netscape tolerance is on, ignore errors */
2168             if (s->options & SSL_OP_NETSCAPE_CA_DN_BUG)
2169                 goto cont;
2170             else {
2171                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2172                 SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST, ERR_R_ASN1_LIB);
2173                 goto err;
2174             }
2175         }
2176
2177         if (q != (p + l)) {
2178             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2179             SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST,
2180                    SSL_R_CA_DN_LENGTH_MISMATCH);
2181             goto err;
2182         }
2183         if (!sk_X509_NAME_push(ca_sk, xn)) {
2184             SSLerr(SSL_F_SSL3_GET_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE);
2185             goto err;
2186         }
2187
2188         p += l;
2189         nc += l + 2;
2190     }
2191
2192     if (0) {
2193  cont:
2194         ERR_clear_error();
2195     }
2196
2197     /* we should setup a certificate to return.... */
2198     s->s3->tmp.cert_req = 1;
2199     s->s3->tmp.ctype_num = ctype_num;
2200     if (s->s3->tmp.ca_names != NULL)
2201         sk_X509_NAME_pop_free(s->s3->tmp.ca_names, X509_NAME_free);
2202     s->s3->tmp.ca_names = ca_sk;
2203     ca_sk = NULL;
2204
2205     ret = 1;
2206     goto done;
2207  err:
2208     s->state = SSL_ST_ERR;
2209  done:
2210     if (ca_sk != NULL)
2211         sk_X509_NAME_pop_free(ca_sk, X509_NAME_free);
2212     return (ret);
2213 }
2214
2215 static int ca_dn_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
2216 {
2217     return (X509_NAME_cmp(*a, *b));
2218 }
2219
2220 #ifndef OPENSSL_NO_TLSEXT
2221 int ssl3_get_new_session_ticket(SSL *s)
2222 {
2223     int ok, al, ret = 0, ticklen;
2224     long n;
2225     const unsigned char *p;
2226     unsigned char *d;
2227     unsigned long ticket_lifetime_hint;
2228
2229     n = s->method->ssl_get_message(s,
2230                                    SSL3_ST_CR_SESSION_TICKET_A,
2231                                    SSL3_ST_CR_SESSION_TICKET_B,
2232                                    SSL3_MT_NEWSESSION_TICKET, 16384, &ok);
2233
2234     if (!ok)
2235         return ((int)n);
2236
2237     if (n < 6) {
2238         /* need at least ticket_lifetime_hint + ticket length */
2239         al = SSL_AD_DECODE_ERROR;
2240         SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH);
2241         goto f_err;
2242     }
2243
2244     p = d = (unsigned char *)s->init_msg;
2245
2246     n2l(p, ticket_lifetime_hint);
2247     n2s(p, ticklen);
2248     /* ticket_lifetime_hint + ticket_length + ticket */
2249     if (ticklen + 6 != n) {
2250         al = SSL_AD_DECODE_ERROR;
2251         SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH);
2252         goto f_err;
2253     }
2254
2255     /* Server is allowed to change its mind and send an empty ticket. */
2256     if (ticklen == 0)
2257         return 1;
2258
2259     if (s->session->session_id_length > 0) {
2260         int i = s->session_ctx->session_cache_mode;
2261         SSL_SESSION *new_sess;
2262         /*
2263          * We reused an existing session, so we need to replace it with a new
2264          * one
2265          */
2266         if (i & SSL_SESS_CACHE_CLIENT) {
2267             /*
2268              * Remove the old session from the cache
2269              */
2270             if (i & SSL_SESS_CACHE_NO_INTERNAL_STORE) {
2271                 if (s->session_ctx->remove_session_cb != NULL)
2272                     s->session_ctx->remove_session_cb(s->session_ctx,
2273                                                       s->session);
2274             } else {
2275                 /* We carry on if this fails */
2276                 SSL_CTX_remove_session(s->session_ctx, s->session);
2277             }
2278         }
2279
2280         if ((new_sess = ssl_session_dup(s->session, 0)) == 0) {
2281             al = SSL_AD_INTERNAL_ERROR;
2282             SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
2283             goto f_err;
2284         }
2285
2286         SSL_SESSION_free(s->session);
2287         s->session = new_sess;
2288     }
2289
2290     if (s->session->tlsext_tick) {
2291         OPENSSL_free(s->session->tlsext_tick);
2292         s->session->tlsext_ticklen = 0;
2293     }
2294     s->session->tlsext_tick = OPENSSL_malloc(ticklen);
2295     if (!s->session->tlsext_tick) {
2296         SSLerr(SSL_F_SSL3_GET_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE);
2297         goto err;
2298     }
2299     memcpy(s->session->tlsext_tick, p, ticklen);
2300     s->session->tlsext_tick_lifetime_hint = ticket_lifetime_hint;
2301     s->session->tlsext_ticklen = ticklen;
2302     /*
2303      * There are two ways to detect a resumed ticket session. One is to set
2304      * an appropriate session ID and then the server must return a match in
2305      * ServerHello. This allows the normal client session ID matching to work
2306      * and we know much earlier that the ticket has been accepted. The
2307      * other way is to set zero length session ID when the ticket is
2308      * presented and rely on the handshake to determine session resumption.
2309      * We choose the former approach because this fits in with assumptions
2310      * elsewhere in OpenSSL. The session ID is set to the SHA256 (or SHA1 is
2311      * SHA256 is disabled) hash of the ticket.
2312      */
2313     EVP_Digest(p, ticklen,
2314                s->session->session_id, &s->session->session_id_length,
2315 # ifndef OPENSSL_NO_SHA256
2316                EVP_sha256(), NULL);
2317 # else
2318                EVP_sha1(), NULL);
2319 # endif
2320     ret = 1;
2321     return (ret);
2322  f_err:
2323     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2324  err:
2325     s->state = SSL_ST_ERR;
2326     return (-1);
2327 }
2328
2329 int ssl3_get_cert_status(SSL *s)
2330 {
2331     int ok, al;
2332     unsigned long resplen, n;
2333     const unsigned char *p;
2334
2335     n = s->method->ssl_get_message(s,
2336                                    SSL3_ST_CR_CERT_STATUS_A,
2337                                    SSL3_ST_CR_CERT_STATUS_B,
2338                                    SSL3_MT_CERTIFICATE_STATUS, 16384, &ok);
2339
2340     if (!ok)
2341         return ((int)n);
2342     if (n < 4) {
2343         /* need at least status type + length */
2344         al = SSL_AD_DECODE_ERROR;
2345         SSLerr(SSL_F_SSL3_GET_CERT_STATUS, SSL_R_LENGTH_MISMATCH);
2346         goto f_err;
2347     }
2348     p = (unsigned char *)s->init_msg;
2349     if (*p++ != TLSEXT_STATUSTYPE_ocsp) {
2350         al = SSL_AD_DECODE_ERROR;
2351         SSLerr(SSL_F_SSL3_GET_CERT_STATUS, SSL_R_UNSUPPORTED_STATUS_TYPE);
2352         goto f_err;
2353     }
2354     n2l3(p, resplen);
2355     if (resplen + 4 != n) {
2356         al = SSL_AD_DECODE_ERROR;
2357         SSLerr(SSL_F_SSL3_GET_CERT_STATUS, SSL_R_LENGTH_MISMATCH);
2358         goto f_err;
2359     }
2360     if (s->tlsext_ocsp_resp)
2361         OPENSSL_free(s->tlsext_ocsp_resp);
2362     s->tlsext_ocsp_resp = BUF_memdup(p, resplen);
2363     if (!s->tlsext_ocsp_resp) {
2364         al = SSL_AD_INTERNAL_ERROR;
2365         SSLerr(SSL_F_SSL3_GET_CERT_STATUS, ERR_R_MALLOC_FAILURE);
2366         goto f_err;
2367     }
2368     s->tlsext_ocsp_resplen = resplen;
2369     if (s->ctx->tlsext_status_cb) {
2370         int ret;
2371         ret = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
2372         if (ret == 0) {
2373             al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
2374             SSLerr(SSL_F_SSL3_GET_CERT_STATUS, SSL_R_INVALID_STATUS_RESPONSE);
2375             goto f_err;
2376         }
2377         if (ret < 0) {
2378             al = SSL_AD_INTERNAL_ERROR;
2379             SSLerr(SSL_F_SSL3_GET_CERT_STATUS, ERR_R_MALLOC_FAILURE);
2380             goto f_err;
2381         }
2382     }
2383     return 1;
2384  f_err:
2385     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2386     s->state = SSL_ST_ERR;
2387     return (-1);
2388 }
2389 #endif
2390
2391 int ssl3_get_server_done(SSL *s)
2392 {
2393     int ok, ret = 0;
2394     long n;
2395
2396     /* Second to last param should be very small, like 0 :-) */
2397     n = s->method->ssl_get_message(s,
2398                                    SSL3_ST_CR_SRVR_DONE_A,
2399                                    SSL3_ST_CR_SRVR_DONE_B,
2400                                    SSL3_MT_SERVER_DONE, 30, &ok);
2401
2402     if (!ok)
2403         return ((int)n);
2404     if (n > 0) {
2405         /* should contain no data */
2406         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR);
2407         SSLerr(SSL_F_SSL3_GET_SERVER_DONE, SSL_R_LENGTH_MISMATCH);
2408         s->state = SSL_ST_ERR;
2409         return -1;
2410     }
2411     ret = 1;
2412     return (ret);
2413 }
2414
2415 #ifndef OPENSSL_NO_DH
2416 static DH *get_server_static_dh_key(SESS_CERT *scert)
2417 {
2418     DH *dh_srvr = NULL;
2419     EVP_PKEY *spkey = NULL;
2420     int idx = scert->peer_cert_type;
2421
2422     if (idx >= 0)
2423         spkey = X509_get_pubkey(scert->peer_pkeys[idx].x509);
2424     if (spkey) {
2425         dh_srvr = EVP_PKEY_get1_DH(spkey);
2426         EVP_PKEY_free(spkey);
2427     }
2428     if (dh_srvr == NULL)
2429         SSLerr(SSL_F_GET_SERVER_STATIC_DH_KEY, ERR_R_INTERNAL_ERROR);
2430     return dh_srvr;
2431 }
2432 #endif
2433
2434 int ssl3_send_client_key_exchange(SSL *s)
2435 {
2436     unsigned char *p;
2437     int n;
2438     unsigned long alg_k;
2439 #ifndef OPENSSL_NO_RSA
2440     unsigned char *q;
2441     EVP_PKEY *pkey = NULL;
2442 #endif
2443 #ifndef OPENSSL_NO_KRB5
2444     KSSL_ERR kssl_err;
2445 #endif                          /* OPENSSL_NO_KRB5 */
2446 #ifndef OPENSSL_NO_ECDH
2447     EC_KEY *clnt_ecdh = NULL;
2448     const EC_POINT *srvr_ecpoint = NULL;
2449     EVP_PKEY *srvr_pub_pkey = NULL;
2450     unsigned char *encodedPoint = NULL;
2451     int encoded_pt_len = 0;
2452     BN_CTX *bn_ctx = NULL;
2453 #endif
2454
2455     if (s->state == SSL3_ST_CW_KEY_EXCH_A) {
2456         p = ssl_handshake_start(s);
2457
2458         alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2459
2460         /* Fool emacs indentation */
2461         if (0) {
2462         }
2463 #ifndef OPENSSL_NO_RSA
2464         else if (alg_k & SSL_kRSA) {
2465             RSA *rsa;
2466             unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH];
2467
2468             if (s->session->sess_cert == NULL) {
2469                 /*
2470                  * We should always have a server certificate with SSL_kRSA.
2471                  */
2472                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2473                        ERR_R_INTERNAL_ERROR);
2474                 goto err;
2475             }
2476
2477             if (s->session->sess_cert->peer_rsa_tmp != NULL)
2478                 rsa = s->session->sess_cert->peer_rsa_tmp;
2479             else {
2480                 pkey =
2481                     X509_get_pubkey(s->session->
2482                                     sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].
2483                                     x509);
2484                 if ((pkey == NULL) || (pkey->type != EVP_PKEY_RSA)
2485                     || (pkey->pkey.rsa == NULL)) {
2486                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2487                            ERR_R_INTERNAL_ERROR);
2488                     EVP_PKEY_free(pkey);
2489                     goto err;
2490                 }
2491                 rsa = pkey->pkey.rsa;
2492                 EVP_PKEY_free(pkey);
2493             }
2494
2495             tmp_buf[0] = s->client_version >> 8;
2496             tmp_buf[1] = s->client_version & 0xff;
2497             if (RAND_bytes(&(tmp_buf[2]), sizeof tmp_buf - 2) <= 0)
2498                 goto err;
2499
2500             s->session->master_key_length = sizeof tmp_buf;
2501
2502             q = p;
2503             /* Fix buf for TLS and beyond */
2504             if (s->version > SSL3_VERSION)
2505                 p += 2;
2506             n = RSA_public_encrypt(sizeof tmp_buf,
2507                                    tmp_buf, p, rsa, RSA_PKCS1_PADDING);
2508 # ifdef PKCS1_CHECK
2509             if (s->options & SSL_OP_PKCS1_CHECK_1)
2510                 p[1]++;
2511             if (s->options & SSL_OP_PKCS1_CHECK_2)
2512                 tmp_buf[0] = 0x70;
2513 # endif
2514             if (n <= 0) {
2515                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2516                        SSL_R_BAD_RSA_ENCRYPT);
2517                 goto err;
2518             }
2519
2520             /* Fix buf for TLS and beyond */
2521             if (s->version > SSL3_VERSION) {
2522                 s2n(n, q);
2523                 n += 2;
2524             }
2525
2526             s->session->master_key_length =
2527                 s->method->ssl3_enc->generate_master_secret(s,
2528                                                             s->
2529                                                             session->master_key,
2530                                                             tmp_buf,
2531                                                             sizeof tmp_buf);
2532             OPENSSL_cleanse(tmp_buf, sizeof tmp_buf);
2533         }
2534 #endif
2535 #ifndef OPENSSL_NO_KRB5
2536         else if (alg_k & SSL_kKRB5) {
2537             krb5_error_code krb5rc;
2538             KSSL_CTX *kssl_ctx = s->kssl_ctx;
2539             /*  krb5_data   krb5_ap_req;  */
2540             krb5_data *enc_ticket;
2541             krb5_data authenticator, *authp = NULL;
2542             EVP_CIPHER_CTX ciph_ctx;
2543             const EVP_CIPHER *enc = NULL;
2544             unsigned char iv[EVP_MAX_IV_LENGTH];
2545             unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH];
2546             unsigned char epms[SSL_MAX_MASTER_KEY_LENGTH + EVP_MAX_IV_LENGTH];
2547             int padl, outl = sizeof(epms);
2548
2549             EVP_CIPHER_CTX_init(&ciph_ctx);
2550
2551 # ifdef KSSL_DEBUG
2552             fprintf(stderr, "ssl3_send_client_key_exchange(%lx & %lx)\n",
2553                     alg_k, SSL_kKRB5);
2554 # endif                         /* KSSL_DEBUG */
2555
2556             authp = NULL;
2557 # ifdef KRB5SENDAUTH
2558             if (KRB5SENDAUTH)
2559                 authp = &authenticator;
2560 # endif                         /* KRB5SENDAUTH */
2561
2562             krb5rc = kssl_cget_tkt(kssl_ctx, &enc_ticket, authp, &kssl_err);
2563             enc = kssl_map_enc(kssl_ctx->enctype);
2564             if (enc == NULL)
2565                 goto err;
2566 # ifdef KSSL_DEBUG
2567             {
2568                 fprintf(stderr, "kssl_cget_tkt rtn %d\n", krb5rc);
2569                 if (krb5rc && kssl_err.text)
2570                     fprintf(stderr, "kssl_cget_tkt kssl_err=%s\n",
2571                             kssl_err.text);
2572             }
2573 # endif                         /* KSSL_DEBUG */
2574
2575             if (krb5rc) {
2576                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
2577                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, kssl_err.reason);
2578                 goto err;
2579             }
2580
2581             /*-
2582              * 20010406 VRS - Earlier versions used KRB5 AP_REQ
2583              * in place of RFC 2712 KerberosWrapper, as in:
2584              *
2585              * Send ticket (copy to *p, set n = length)
2586              * n = krb5_ap_req.length;
2587              * memcpy(p, krb5_ap_req.data, krb5_ap_req.length);
2588              * if (krb5_ap_req.data)
2589              *   kssl_krb5_free_data_contents(NULL,&krb5_ap_req);
2590              *
2591              * Now using real RFC 2712 KerberosWrapper
2592              * (Thanks to Simon Wilkinson <sxw@sxw.org.uk>)
2593              * Note: 2712 "opaque" types are here replaced
2594              * with a 2-byte length followed by the value.
2595              * Example:
2596              * KerberosWrapper= xx xx asn1ticket 0 0 xx xx encpms
2597              * Where "xx xx" = length bytes.  Shown here with
2598              * optional authenticator omitted.
2599              */
2600
2601             /*  KerberosWrapper.Ticket              */
2602             s2n(enc_ticket->length, p);
2603             memcpy(p, enc_ticket->data, enc_ticket->length);
2604             p += enc_ticket->length;
2605             n = enc_ticket->length + 2;
2606
2607             /*  KerberosWrapper.Authenticator       */
2608             if (authp && authp->length) {
2609                 s2n(authp->length, p);
2610                 memcpy(p, authp->data, authp->length);
2611                 p += authp->length;
2612                 n += authp->length + 2;
2613
2614                 free(authp->data);
2615                 authp->data = NULL;
2616                 authp->length = 0;
2617             } else {
2618                 s2n(0, p);      /* null authenticator length */
2619                 n += 2;
2620             }
2621
2622             tmp_buf[0] = s->client_version >> 8;
2623             tmp_buf[1] = s->client_version & 0xff;
2624             if (RAND_bytes(&(tmp_buf[2]), sizeof tmp_buf - 2) <= 0)
2625                 goto err;
2626
2627             /*-
2628              * 20010420 VRS.  Tried it this way; failed.
2629              *      EVP_EncryptInit_ex(&ciph_ctx,enc, NULL,NULL);
2630              *      EVP_CIPHER_CTX_set_key_length(&ciph_ctx,
2631              *                              kssl_ctx->length);
2632              *      EVP_EncryptInit_ex(&ciph_ctx,NULL, key,iv);
2633              */
2634
2635             memset(iv, 0, sizeof iv); /* per RFC 1510 */
2636             EVP_EncryptInit_ex(&ciph_ctx, enc, NULL, kssl_ctx->key, iv);
2637             EVP_EncryptUpdate(&ciph_ctx, epms, &outl, tmp_buf,
2638                               sizeof tmp_buf);
2639             EVP_EncryptFinal_ex(&ciph_ctx, &(epms[outl]), &padl);
2640             outl += padl;
2641             if (outl > (int)sizeof epms) {
2642                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2643                        ERR_R_INTERNAL_ERROR);
2644                 goto err;
2645             }
2646             EVP_CIPHER_CTX_cleanup(&ciph_ctx);
2647
2648             /*  KerberosWrapper.EncryptedPreMasterSecret    */
2649             s2n(outl, p);
2650             memcpy(p, epms, outl);
2651             p += outl;
2652             n += outl + 2;
2653
2654             s->session->master_key_length =
2655                 s->method->ssl3_enc->generate_master_secret(s,
2656                                                             s->
2657                                                             session->master_key,
2658                                                             tmp_buf,
2659                                                             sizeof tmp_buf);
2660
2661             OPENSSL_cleanse(tmp_buf, sizeof tmp_buf);
2662             OPENSSL_cleanse(epms, outl);
2663         }
2664 #endif
2665 #ifndef OPENSSL_NO_DH
2666         else if (alg_k & (SSL_kEDH | SSL_kDHr | SSL_kDHd)) {
2667             DH *dh_srvr, *dh_clnt;
2668             SESS_CERT *scert = s->session->sess_cert;
2669
2670             if (scert == NULL) {
2671                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE);
2672                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2673                        SSL_R_UNEXPECTED_MESSAGE);
2674                 goto err;
2675             }
2676
2677             if (scert->peer_dh_tmp != NULL) {
2678                 dh_srvr = scert->peer_dh_tmp;
2679             } else {
2680                 dh_srvr = get_server_static_dh_key(scert);
2681                 if (dh_srvr == NULL)
2682                     goto err;
2683             }
2684
2685             if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY) {
2686                 /* Use client certificate key */
2687                 EVP_PKEY *clkey = s->cert->key->privatekey;
2688                 dh_clnt = NULL;
2689                 if (clkey)
2690                     dh_clnt = EVP_PKEY_get1_DH(clkey);
2691                 if (dh_clnt == NULL) {
2692                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2693                            ERR_R_INTERNAL_ERROR);
2694                     goto err;
2695                 }
2696             } else {
2697                 /* generate a new random key */
2698                 if ((dh_clnt = DHparams_dup(dh_srvr)) == NULL) {
2699                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_DH_LIB);
2700                     goto err;
2701                 }
2702                 if (!DH_generate_key(dh_clnt)) {
2703                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_DH_LIB);
2704                     DH_free(dh_clnt);
2705                     goto err;
2706                 }
2707             }
2708
2709             /*
2710              * use the 'p' output buffer for the DH key, but make sure to
2711              * clear it out afterwards
2712              */
2713
2714             n = DH_compute_key(p, dh_srvr->pub_key, dh_clnt);
2715             if (scert->peer_dh_tmp == NULL)
2716                 DH_free(dh_srvr);
2717
2718             if (n <= 0) {
2719                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_DH_LIB);
2720                 DH_free(dh_clnt);
2721                 goto err;
2722             }
2723
2724             /* generate master key from the result */
2725             s->session->master_key_length =
2726                 s->method->ssl3_enc->generate_master_secret(s,
2727                                                             s->
2728                                                             session->master_key,
2729                                                             p, n);
2730             /* clean up */
2731             memset(p, 0, n);
2732
2733             if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY)
2734                 n = 0;
2735             else {
2736                 /* send off the data */
2737                 n = BN_num_bytes(dh_clnt->pub_key);
2738                 s2n(n, p);
2739                 BN_bn2bin(dh_clnt->pub_key, p);
2740                 n += 2;
2741             }
2742
2743             DH_free(dh_clnt);
2744         }
2745 #endif
2746
2747 #ifndef OPENSSL_NO_ECDH
2748         else if (alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe)) {
2749             const EC_GROUP *srvr_group = NULL;
2750             EC_KEY *tkey;
2751             int ecdh_clnt_cert = 0;
2752             int field_size = 0;
2753
2754             if (s->session->sess_cert == NULL) {
2755                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE);
2756                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2757                        SSL_R_UNEXPECTED_MESSAGE);
2758                 goto err;
2759             }
2760
2761             /*
2762              * Did we send out the client's ECDH share for use in premaster
2763              * computation as part of client certificate? If so, set
2764              * ecdh_clnt_cert to 1.
2765              */
2766             if ((alg_k & (SSL_kECDHr | SSL_kECDHe)) && (s->cert != NULL)) {
2767                 /*-
2768                  * XXX: For now, we do not support client
2769                  * authentication using ECDH certificates.
2770                  * To add such support, one needs to add
2771                  * code that checks for appropriate
2772                  * conditions and sets ecdh_clnt_cert to 1.
2773                  * For example, the cert have an ECC
2774                  * key on the same curve as the server's
2775                  * and the key should be authorized for
2776                  * key agreement.
2777                  *
2778                  * One also needs to add code in ssl3_connect
2779                  * to skip sending the certificate verify
2780                  * message.
2781                  *
2782                  * if ((s->cert->key->privatekey != NULL) &&
2783                  *     (s->cert->key->privatekey->type ==
2784                  *      EVP_PKEY_EC) && ...)
2785                  * ecdh_clnt_cert = 1;
2786                  */
2787             }
2788
2789             if (s->session->sess_cert->peer_ecdh_tmp != NULL) {
2790                 tkey = s->session->sess_cert->peer_ecdh_tmp;
2791             } else {
2792                 /* Get the Server Public Key from Cert */
2793                 srvr_pub_pkey =
2794                     X509_get_pubkey(s->session->
2795                                     sess_cert->peer_pkeys[SSL_PKEY_ECC].x509);
2796                 if ((srvr_pub_pkey == NULL)
2797                     || (srvr_pub_pkey->type != EVP_PKEY_EC)
2798                     || (srvr_pub_pkey->pkey.ec == NULL)) {
2799                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2800                            ERR_R_INTERNAL_ERROR);
2801                     goto err;
2802                 }
2803
2804                 tkey = srvr_pub_pkey->pkey.ec;
2805             }
2806
2807             srvr_group = EC_KEY_get0_group(tkey);
2808             srvr_ecpoint = EC_KEY_get0_public_key(tkey);
2809
2810             if ((srvr_group == NULL) || (srvr_ecpoint == NULL)) {
2811                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2812                        ERR_R_INTERNAL_ERROR);
2813                 goto err;
2814             }
2815
2816             if ((clnt_ecdh = EC_KEY_new()) == NULL) {
2817                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2818                        ERR_R_MALLOC_FAILURE);
2819                 goto err;
2820             }
2821
2822             if (!EC_KEY_set_group(clnt_ecdh, srvr_group)) {
2823                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2824                 goto err;
2825             }
2826             if (ecdh_clnt_cert) {
2827                 /*
2828                  * Reuse key info from our certificate We only need our
2829                  * private key to perform the ECDH computation.
2830                  */
2831                 const BIGNUM *priv_key;
2832                 tkey = s->cert->key->privatekey->pkey.ec;
2833                 priv_key = EC_KEY_get0_private_key(tkey);
2834                 if (priv_key == NULL) {
2835                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2836                            ERR_R_MALLOC_FAILURE);
2837                     goto err;
2838                 }
2839                 if (!EC_KEY_set_private_key(clnt_ecdh, priv_key)) {
2840                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2841                     goto err;
2842                 }
2843             } else {
2844                 /* Generate a new ECDH key pair */
2845                 if (!(EC_KEY_generate_key(clnt_ecdh))) {
2846                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2847                            ERR_R_ECDH_LIB);
2848                     goto err;
2849                 }
2850             }
2851
2852             /*
2853              * use the 'p' output buffer for the ECDH key, but make sure to
2854              * clear it out afterwards
2855              */
2856
2857             field_size = EC_GROUP_get_degree(srvr_group);
2858             if (field_size <= 0) {
2859                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2860                 goto err;
2861             }
2862             n = ECDH_compute_key(p, (field_size + 7) / 8, srvr_ecpoint,
2863                                  clnt_ecdh, NULL);
2864             if (n <= 0) {
2865                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2866                 goto err;
2867             }
2868
2869             /* generate master key from the result */
2870             s->session->master_key_length =
2871                 s->method->ssl3_enc->generate_master_secret(s,
2872                                                             s->
2873                                                             session->master_key,
2874                                                             p, n);
2875
2876             memset(p, 0, n);    /* clean up */
2877
2878             if (ecdh_clnt_cert) {
2879                 /* Send empty client key exch message */
2880                 n = 0;
2881             } else {
2882                 /*
2883                  * First check the size of encoding and allocate memory
2884                  * accordingly.
2885                  */
2886                 encoded_pt_len =
2887                     EC_POINT_point2oct(srvr_group,
2888                                        EC_KEY_get0_public_key(clnt_ecdh),
2889                                        POINT_CONVERSION_UNCOMPRESSED,
2890                                        NULL, 0, NULL);
2891
2892                 encodedPoint = (unsigned char *)
2893                     OPENSSL_malloc(encoded_pt_len * sizeof(unsigned char));
2894                 bn_ctx = BN_CTX_new();
2895                 if ((encodedPoint == NULL) || (bn_ctx == NULL)) {
2896                     SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2897                            ERR_R_MALLOC_FAILURE);
2898                     goto err;
2899                 }
2900
2901                 /* Encode the public key */
2902                 n = EC_POINT_point2oct(srvr_group,
2903                                        EC_KEY_get0_public_key(clnt_ecdh),
2904                                        POINT_CONVERSION_UNCOMPRESSED,
2905                                        encodedPoint, encoded_pt_len, bn_ctx);
2906
2907                 *p = n;         /* length of encoded point */
2908                 /* Encoded point will be copied here */
2909                 p += 1;
2910                 /* copy the point */
2911                 memcpy((unsigned char *)p, encodedPoint, n);
2912                 /* increment n to account for length field */
2913                 n += 1;
2914             }
2915
2916             /* Free allocated memory */
2917             BN_CTX_free(bn_ctx);
2918             if (encodedPoint != NULL)
2919                 OPENSSL_free(encodedPoint);
2920             if (clnt_ecdh != NULL)
2921                 EC_KEY_free(clnt_ecdh);
2922             EVP_PKEY_free(srvr_pub_pkey);
2923         }
2924 #endif                          /* !OPENSSL_NO_ECDH */
2925         else if (alg_k & SSL_kGOST) {
2926             /* GOST key exchange message creation */
2927             EVP_PKEY_CTX *pkey_ctx;
2928             X509 *peer_cert;
2929             size_t msglen;
2930             unsigned int md_len;
2931             int keytype;
2932             unsigned char premaster_secret[32], shared_ukm[32], tmp[256];
2933             EVP_MD_CTX *ukm_hash;
2934             EVP_PKEY *pub_key;
2935
2936             /*
2937              * Get server sertificate PKEY and create ctx from it
2938              */
2939             peer_cert =
2940                 s->session->
2941                 sess_cert->peer_pkeys[(keytype = SSL_PKEY_GOST01)].x509;
2942             if (!peer_cert)
2943                 peer_cert =
2944                     s->session->
2945                     sess_cert->peer_pkeys[(keytype = SSL_PKEY_GOST94)].x509;
2946             if (!peer_cert) {
2947                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2948                        SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER);
2949                 goto err;
2950             }
2951
2952             pkey_ctx = EVP_PKEY_CTX_new(pub_key =
2953                                         X509_get_pubkey(peer_cert), NULL);
2954             /*
2955              * If we have send a certificate, and certificate key
2956              *
2957              * * parameters match those of server certificate, use
2958              * certificate key for key exchange
2959              */
2960
2961             /* Otherwise, generate ephemeral key pair */
2962
2963             EVP_PKEY_encrypt_init(pkey_ctx);
2964             /* Generate session key */
2965             if (RAND_bytes(premaster_secret, 32) <= 0) {
2966                 EVP_PKEY_CTX_free(pkey_ctx);
2967                 goto err;
2968             }
2969             /*
2970              * If we have client certificate, use its secret as peer key
2971              */
2972             if (s->s3->tmp.cert_req && s->cert->key->privatekey) {
2973                 if (EVP_PKEY_derive_set_peer
2974                     (pkey_ctx, s->cert->key->privatekey) <= 0) {
2975                     /*
2976                      * If there was an error - just ignore it. Ephemeral key
2977                      * * would be used
2978                      */
2979                     ERR_clear_error();
2980                 }
2981             }
2982             /*
2983              * Compute shared IV and store it in algorithm-specific context
2984              * data
2985              */
2986             ukm_hash = EVP_MD_CTX_create();
2987             EVP_DigestInit(ukm_hash,
2988                            EVP_get_digestbynid(NID_id_GostR3411_94));
2989             EVP_DigestUpdate(ukm_hash, s->s3->client_random,
2990                              SSL3_RANDOM_SIZE);
2991             EVP_DigestUpdate(ukm_hash, s->s3->server_random,
2992                              SSL3_RANDOM_SIZE);
2993             EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len);
2994             EVP_MD_CTX_destroy(ukm_hash);
2995             if (EVP_PKEY_CTX_ctrl
2996                 (pkey_ctx, -1, EVP_PKEY_OP_ENCRYPT, EVP_PKEY_CTRL_SET_IV, 8,
2997                  shared_ukm) < 0) {
2998                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
2999                        SSL_R_LIBRARY_BUG);
3000                 goto err;
3001             }
3002             /* Make GOST keytransport blob message */
3003             /*
3004              * Encapsulate it into sequence
3005              */
3006             *(p++) = V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED;
3007             msglen = 255;
3008             if (EVP_PKEY_encrypt(pkey_ctx, tmp, &msglen, premaster_secret, 32)
3009                 < 0) {
3010                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3011                        SSL_R_LIBRARY_BUG);
3012                 goto err;
3013             }
3014             if (msglen >= 0x80) {
3015                 *(p++) = 0x81;
3016                 *(p++) = msglen & 0xff;
3017                 n = msglen + 3;
3018             } else {
3019                 *(p++) = msglen & 0xff;
3020                 n = msglen + 2;
3021             }
3022             memcpy(p, tmp, msglen);
3023             /* Check if pubkey from client certificate was used */
3024             if (EVP_PKEY_CTX_ctrl
3025                 (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0) {
3026                 /* Set flag "skip certificate verify" */
3027                 s->s3->flags |= TLS1_FLAGS_SKIP_CERT_VERIFY;
3028             }
3029             EVP_PKEY_CTX_free(pkey_ctx);
3030             s->session->master_key_length =
3031                 s->method->ssl3_enc->generate_master_secret(s,
3032                                                             s->
3033                                                             session->master_key,
3034                                                             premaster_secret,
3035                                                             32);
3036             EVP_PKEY_free(pub_key);
3037
3038         }
3039 #ifndef OPENSSL_NO_SRP
3040         else if (alg_k & SSL_kSRP) {
3041             if (s->srp_ctx.A != NULL) {
3042                 /* send off the data */
3043                 n = BN_num_bytes(s->srp_ctx.A);
3044                 s2n(n, p);
3045                 BN_bn2bin(s->srp_ctx.A, p);
3046                 n += 2;
3047             } else {
3048                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3049                        ERR_R_INTERNAL_ERROR);
3050                 goto err;
3051             }
3052             if (s->session->srp_username != NULL)
3053                 OPENSSL_free(s->session->srp_username);
3054             s->session->srp_username = BUF_strdup(s->srp_ctx.login);
3055             if (s->session->srp_username == NULL) {
3056                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3057                        ERR_R_MALLOC_FAILURE);
3058                 goto err;
3059             }
3060
3061             if ((s->session->master_key_length =
3062                  SRP_generate_client_master_secret(s,
3063                                                    s->session->master_key)) <
3064                 0) {
3065                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3066                        ERR_R_INTERNAL_ERROR);
3067                 goto err;
3068             }
3069         }
3070 #endif
3071 #ifndef OPENSSL_NO_PSK
3072         else if (alg_k & SSL_kPSK) {
3073             /*
3074              * The callback needs PSK_MAX_IDENTITY_LEN + 1 bytes to return a
3075              * \0-terminated identity. The last byte is for us for simulating
3076              * strnlen.
3077              */
3078             char identity[PSK_MAX_IDENTITY_LEN + 2];
3079             size_t identity_len;
3080             unsigned char *t = NULL;
3081             unsigned char psk_or_pre_ms[PSK_MAX_PSK_LEN * 2 + 4];
3082             unsigned int pre_ms_len = 0, psk_len = 0;
3083             int psk_err = 1;
3084
3085             n = 0;
3086             if (s->psk_client_callback == NULL) {
3087                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3088                        SSL_R_PSK_NO_CLIENT_CB);
3089                 goto err;
3090             }
3091
3092             memset(identity, 0, sizeof(identity));
3093             psk_len = s->psk_client_callback(s, s->session->psk_identity_hint,
3094                                              identity, sizeof(identity) - 1,
3095                                              psk_or_pre_ms,
3096                                              sizeof(psk_or_pre_ms));
3097             if (psk_len > PSK_MAX_PSK_LEN) {
3098                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3099                        ERR_R_INTERNAL_ERROR);
3100                 goto psk_err;
3101             } else if (psk_len == 0) {
3102                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3103                        SSL_R_PSK_IDENTITY_NOT_FOUND);
3104                 goto psk_err;
3105             }
3106             identity[PSK_MAX_IDENTITY_LEN + 1] = '\0';
3107             identity_len = strlen(identity);
3108             if (identity_len > PSK_MAX_IDENTITY_LEN) {
3109                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3110                        ERR_R_INTERNAL_ERROR);
3111                 goto psk_err;
3112             }
3113             /* create PSK pre_master_secret */
3114             pre_ms_len = 2 + psk_len + 2 + psk_len;
3115             t = psk_or_pre_ms;
3116             memmove(psk_or_pre_ms + psk_len + 4, psk_or_pre_ms, psk_len);
3117             s2n(psk_len, t);
3118             memset(t, 0, psk_len);
3119             t += psk_len;
3120             s2n(psk_len, t);
3121
3122             if (s->session->psk_identity_hint != NULL)
3123                 OPENSSL_free(s->session->psk_identity_hint);
3124             s->session->psk_identity_hint =
3125                 BUF_strdup(s->ctx->psk_identity_hint);
3126             if (s->ctx->psk_identity_hint != NULL
3127                 && s->session->psk_identity_hint == NULL) {
3128                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3129                        ERR_R_MALLOC_FAILURE);
3130                 goto psk_err;
3131             }
3132
3133             if (s->session->psk_identity != NULL)
3134                 OPENSSL_free(s->session->psk_identity);
3135             s->session->psk_identity = BUF_strdup(identity);
3136             if (s->session->psk_identity == NULL) {
3137                 SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE,
3138                        ERR_R_MALLOC_FAILURE);
3139                 goto psk_err;
3140             }
3141
3142             s->session->master_key_length =
3143                 s->method->ssl3_enc->generate_master_secret(s,
3144                                                             s->
3145                                                             session->master_key,
3146                                                             psk_or_pre_ms,
3147                                                             pre_ms_len);
3148             s2n(identity_len, p);
3149             memcpy(p, identity, identity_len);
3150             n = 2 + identity_len;
3151             psk_err = 0;
3152  psk_err:
3153             OPENSSL_cleanse(identity, sizeof(identity));
3154             OPENSSL_cleanse(psk_or_pre_ms, sizeof(psk_or_pre_ms));
3155             if (psk_err != 0) {
3156                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
3157                 goto err;
3158             }
3159         }
3160 #endif
3161         else {
3162             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
3163             SSLerr(SSL_F_SSL3_SEND_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
3164             goto err;
3165         }
3166
3167         ssl_set_handshake_header(s, SSL3_MT_CLIENT_KEY_EXCHANGE, n);
3168         s->state = SSL3_ST_CW_KEY_EXCH_B;
3169     }
3170
3171     /* SSL3_ST_CW_KEY_EXCH_B */
3172     return ssl_do_write(s);
3173  err:
3174 #ifndef OPENSSL_NO_ECDH
3175     BN_CTX_free(bn_ctx);
3176     if (encodedPoint != NULL)
3177         OPENSSL_free(encodedPoint);
3178     if (clnt_ecdh != NULL)
3179         EC_KEY_free(clnt_ecdh);
3180     EVP_PKEY_free(srvr_pub_pkey);
3181 #endif
3182     s->state = SSL_ST_ERR;
3183     return (-1);
3184 }
3185
3186 int ssl3_send_client_verify(SSL *s)
3187 {
3188     unsigned char *p;
3189     unsigned char data[MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH];
3190     EVP_PKEY *pkey;
3191     EVP_PKEY_CTX *pctx = NULL;
3192     EVP_MD_CTX mctx;
3193     unsigned u = 0;
3194     unsigned long n;
3195     int j;
3196
3197     EVP_MD_CTX_init(&mctx);
3198
3199     if (s->state == SSL3_ST_CW_CERT_VRFY_A) {
3200         p = ssl_handshake_start(s);
3201         pkey = s->cert->key->privatekey;
3202 /* Create context from key and test if sha1 is allowed as digest */
3203         pctx = EVP_PKEY_CTX_new(pkey, NULL);
3204         EVP_PKEY_sign_init(pctx);
3205         if (EVP_PKEY_CTX_set_signature_md(pctx, EVP_sha1()) > 0) {
3206             if (!SSL_USE_SIGALGS(s))
3207                 s->method->ssl3_enc->cert_verify_mac(s,
3208                                                      NID_sha1,
3209                                                      &(data
3210                                                        [MD5_DIGEST_LENGTH]));
3211         } else {
3212             ERR_clear_error();
3213         }
3214         /*
3215          * For TLS v1.2 send signature algorithm and signature using agreed
3216          * digest and cached handshake records.
3217          */
3218         if (SSL_USE_SIGALGS(s)) {
3219             long hdatalen = 0;
3220             void *hdata;
3221             const EVP_MD *md = s->cert->key->digest;
3222             hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3223             if (hdatalen <= 0 || !tls12_get_sigandhash(p, pkey, md)) {
3224                 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY, ERR_R_INTERNAL_ERROR);
3225                 goto err;
3226             }
3227             p += 2;
3228 #ifdef SSL_DEBUG
3229             fprintf(stderr, "Using TLS 1.2 with client alg %s\n",
3230                     EVP_MD_name(md));
3231 #endif
3232             if (!EVP_SignInit_ex(&mctx, md, NULL)
3233                 || !EVP_SignUpdate(&mctx, hdata, hdatalen)
3234                 || !EVP_SignFinal(&mctx, p + 2, &u, pkey)) {
3235                 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY, ERR_R_EVP_LIB);
3236                 goto err;
3237             }
3238             s2n(u, p);
3239             n = u + 4;
3240             if (!ssl3_digest_cached_records(s))
3241                 goto err;
3242         } else
3243 #ifndef OPENSSL_NO_RSA
3244         if (pkey->type == EVP_PKEY_RSA) {
3245             s->method->ssl3_enc->cert_verify_mac(s, NID_md5, &(data[0]));
3246             if (RSA_sign(NID_md5_sha1, data,
3247                          MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH,
3248                          &(p[2]), &u, pkey->pkey.rsa) <= 0) {
3249                 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY, ERR_R_RSA_LIB);
3250                 goto err;
3251             }
3252             s2n(u, p);
3253             n = u + 2;
3254         } else
3255 #endif
3256 #ifndef OPENSSL_NO_DSA
3257         if (pkey->type == EVP_PKEY_DSA) {
3258             if (!DSA_sign(pkey->save_type,
3259                           &(data[MD5_DIGEST_LENGTH]),
3260                           SHA_DIGEST_LENGTH, &(p[2]),
3261                           (unsigned int *)&j, pkey->pkey.dsa)) {
3262                 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY, ERR_R_DSA_LIB);
3263                 goto err;
3264             }
3265             s2n(j, p);
3266             n = j + 2;
3267         } else
3268 #endif
3269 #ifndef OPENSSL_NO_ECDSA
3270         if (pkey->type == EVP_PKEY_EC) {
3271             if (!ECDSA_sign(pkey->save_type,
3272                             &(data[MD5_DIGEST_LENGTH]),
3273                             SHA_DIGEST_LENGTH, &(p[2]),
3274                             (unsigned int *)&j, pkey->pkey.ec)) {
3275                 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY, ERR_R_ECDSA_LIB);
3276                 goto err;
3277             }
3278             s2n(j, p);
3279             n = j + 2;
3280         } else
3281 #endif
3282         if (pkey->type == NID_id_GostR3410_94
3283                 || pkey->type == NID_id_GostR3410_2001) {
3284             unsigned char signbuf[64];
3285             int i;
3286             size_t sigsize = 64;
3287             s->method->ssl3_enc->cert_verify_mac(s,
3288                                                  NID_id_GostR3411_94, data);
3289             if (EVP_PKEY_sign(pctx, signbuf, &sigsize, data, 32) <= 0) {
3290                 SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY, ERR_R_INTERNAL_ERROR);
3291                 goto err;
3292             }
3293             for (i = 63, j = 0; i >= 0; j++, i--) {
3294                 p[2 + j] = signbuf[i];
3295             }
3296             s2n(j, p);
3297             n = j + 2;
3298         } else {
3299             SSLerr(SSL_F_SSL3_SEND_CLIENT_VERIFY, ERR_R_INTERNAL_ERROR);
3300             goto err;
3301         }
3302         ssl_set_handshake_header(s, SSL3_MT_CERTIFICATE_VERIFY, n);
3303         s->state = SSL3_ST_CW_CERT_VRFY_B;
3304     }
3305     EVP_MD_CTX_cleanup(&mctx);
3306     EVP_PKEY_CTX_free(pctx);
3307     return ssl_do_write(s);
3308  err:
3309     EVP_MD_CTX_cleanup(&mctx);
3310     EVP_PKEY_CTX_free(pctx);
3311     s->state = SSL_ST_ERR;
3312     return (-1);
3313 }
3314
3315 /*
3316  * Check a certificate can be used for client authentication. Currently check
3317  * cert exists, if we have a suitable digest for TLS 1.2 if static DH client
3318  * certificates can be used and optionally checks suitability for Suite B.
3319  */
3320 static int ssl3_check_client_certificate(SSL *s)
3321 {
3322     unsigned long alg_k;
3323     if (!s->cert || !s->cert->key->x509 || !s->cert->key->privatekey)
3324         return 0;
3325     /* If no suitable signature algorithm can't use certificate */
3326     if (SSL_USE_SIGALGS(s) && !s->cert->key->digest)
3327         return 0;
3328     /*
3329      * If strict mode check suitability of chain before using it. This also
3330      * adjusts suite B digest if necessary.
3331      */
3332     if (s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT &&
3333         !tls1_check_chain(s, NULL, NULL, NULL, -2))
3334         return 0;
3335     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3336     /* See if we can use client certificate for fixed DH */
3337     if (alg_k & (SSL_kDHr | SSL_kDHd)) {
3338         SESS_CERT *scert = s->session->sess_cert;
3339         int i = scert->peer_cert_type;
3340         EVP_PKEY *clkey = NULL, *spkey = NULL;
3341         clkey = s->cert->key->privatekey;
3342         /* If client key not DH assume it can be used */
3343         if (EVP_PKEY_id(clkey) != EVP_PKEY_DH)
3344             return 1;
3345         if (i >= 0)
3346             spkey = X509_get_pubkey(scert->peer_pkeys[i].x509);
3347         if (spkey) {
3348             /* Compare server and client parameters */
3349             i = EVP_PKEY_cmp_parameters(clkey, spkey);
3350             EVP_PKEY_free(spkey);
3351             if (i != 1)
3352                 return 0;
3353         }
3354         s->s3->flags |= TLS1_FLAGS_SKIP_CERT_VERIFY;
3355     }
3356     return 1;
3357 }
3358
3359 int ssl3_send_client_certificate(SSL *s)
3360 {
3361     X509 *x509 = NULL;
3362     EVP_PKEY *pkey = NULL;
3363     int i;
3364
3365     if (s->state == SSL3_ST_CW_CERT_A) {
3366         /* Let cert callback update client certificates if required */
3367         if (s->cert->cert_cb) {
3368             i = s->cert->cert_cb(s, s->cert->cert_cb_arg);
3369             if (i < 0) {
3370                 s->rwstate = SSL_X509_LOOKUP;
3371                 return -1;
3372             }
3373             if (i == 0) {
3374                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3375                 s->state = SSL_ST_ERR;
3376                 return 0;
3377             }
3378             s->rwstate = SSL_NOTHING;
3379         }
3380         if (ssl3_check_client_certificate(s))
3381             s->state = SSL3_ST_CW_CERT_C;
3382         else
3383             s->state = SSL3_ST_CW_CERT_B;
3384     }
3385
3386     /* We need to get a client cert */
3387     if (s->state == SSL3_ST_CW_CERT_B) {
3388         /*
3389          * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP;
3390          * return(-1); We then get retied later
3391          */
3392         i = 0;
3393         i = ssl_do_client_cert_cb(s, &x509, &pkey);
3394         if (i < 0) {
3395             s->rwstate = SSL_X509_LOOKUP;
3396             return (-1);
3397         }
3398         s->rwstate = SSL_NOTHING;
3399         if ((i == 1) && (pkey != NULL) && (x509 != NULL)) {
3400             s->state = SSL3_ST_CW_CERT_B;
3401             if (!SSL_use_certificate(s, x509) || !SSL_use_PrivateKey(s, pkey))
3402                 i = 0;
3403         } else if (i == 1) {
3404             i = 0;
3405             SSLerr(SSL_F_SSL3_SEND_CLIENT_CERTIFICATE,
3406                    SSL_R_BAD_DATA_RETURNED_BY_CALLBACK);
3407         }
3408
3409         if (x509 != NULL)
3410             X509_free(x509);
3411         if (pkey != NULL)
3412             EVP_PKEY_free(pkey);
3413         if (i && !ssl3_check_client_certificate(s))
3414             i = 0;
3415         if (i == 0) {
3416             if (s->version == SSL3_VERSION) {
3417                 s->s3->tmp.cert_req = 0;
3418                 ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_CERTIFICATE);
3419                 return (1);
3420             } else {
3421                 s->s3->tmp.cert_req = 2;
3422             }
3423         }
3424
3425         /* Ok, we have a cert */
3426         s->state = SSL3_ST_CW_CERT_C;
3427     }
3428
3429     if (s->state == SSL3_ST_CW_CERT_C) {
3430         s->state = SSL3_ST_CW_CERT_D;
3431         if (!ssl3_output_cert_chain(s,
3432                                     (s->s3->tmp.cert_req ==
3433                                      2) ? NULL : s->cert->key)) {
3434             SSLerr(SSL_F_SSL3_SEND_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3435             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
3436             s->state = SSL_ST_ERR;
3437             return 0;
3438         }
3439     }
3440     /* SSL3_ST_CW_CERT_D */
3441     return ssl_do_write(s);
3442 }
3443
3444 #define has_bits(i,m)   (((i)&(m)) == (m))
3445
3446 int ssl3_check_cert_and_algorithm(SSL *s)
3447 {
3448     int i, idx;
3449     long alg_k, alg_a;
3450     EVP_PKEY *pkey = NULL;
3451     int pkey_bits;
3452     SESS_CERT *sc;
3453 #ifndef OPENSSL_NO_RSA
3454     RSA *rsa;
3455 #endif
3456 #ifndef OPENSSL_NO_DH
3457     DH *dh;
3458 #endif
3459     int al = SSL_AD_HANDSHAKE_FAILURE;
3460
3461     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3462     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3463
3464     /* we don't have a certificate */
3465     if ((alg_a & (SSL_aNULL | SSL_aKRB5)) || (alg_k & SSL_kPSK))
3466         return (1);
3467
3468     sc = s->session->sess_cert;
3469     if (sc == NULL) {
3470         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, ERR_R_INTERNAL_ERROR);
3471         goto err;
3472     }
3473 #ifndef OPENSSL_NO_RSA
3474     rsa = s->session->sess_cert->peer_rsa_tmp;
3475 #endif
3476 #ifndef OPENSSL_NO_DH
3477     dh = s->session->sess_cert->peer_dh_tmp;
3478 #endif
3479
3480     /* This is the passed certificate */
3481
3482     idx = sc->peer_cert_type;
3483 #ifndef OPENSSL_NO_ECDH
3484     if (idx == SSL_PKEY_ECC) {
3485         if (ssl_check_srvr_ecc_cert_and_alg(sc->peer_pkeys[idx].x509, s) == 0) {
3486             /* check failed */
3487             SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_BAD_ECC_CERT);
3488             goto f_err;
3489         } else {
3490             return 1;
3491         }
3492     } else if (alg_a & SSL_aECDSA) {
3493         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3494                SSL_R_MISSING_ECDSA_SIGNING_CERT);
3495         goto f_err;
3496     } else if (alg_k & (SSL_kECDHr | SSL_kECDHe)) {
3497         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_MISSING_ECDH_CERT);
3498         goto f_err;
3499     }
3500 #endif
3501     pkey = X509_get_pubkey(sc->peer_pkeys[idx].x509);
3502     pkey_bits = EVP_PKEY_bits(pkey);
3503     i = X509_certificate_type(sc->peer_pkeys[idx].x509, pkey);
3504     EVP_PKEY_free(pkey);
3505
3506     /* Check that we have a certificate if we require one */
3507     if ((alg_a & SSL_aRSA) && !has_bits(i, EVP_PK_RSA | EVP_PKT_SIGN)) {
3508         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3509                SSL_R_MISSING_RSA_SIGNING_CERT);
3510         goto f_err;
3511     }
3512 #ifndef OPENSSL_NO_DSA
3513     else if ((alg_a & SSL_aDSS) && !has_bits(i, EVP_PK_DSA | EVP_PKT_SIGN)) {
3514         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3515                SSL_R_MISSING_DSA_SIGNING_CERT);
3516         goto f_err;
3517     }
3518 #endif
3519 #ifndef OPENSSL_NO_RSA
3520     if (alg_k & SSL_kRSA) {
3521         if (!SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
3522             !has_bits(i, EVP_PK_RSA | EVP_PKT_ENC)) {
3523             SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3524                    SSL_R_MISSING_RSA_ENCRYPTING_CERT);
3525             goto f_err;
3526         } else if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)) {
3527             if (pkey_bits <= SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)) {
3528                 if (!has_bits(i, EVP_PK_RSA | EVP_PKT_ENC)) {
3529                     SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3530                            SSL_R_MISSING_RSA_ENCRYPTING_CERT);
3531                     goto f_err;
3532                 }
3533                 if (rsa != NULL) {
3534                     /* server key exchange is not allowed. */
3535                     al = SSL_AD_INTERNAL_ERROR;
3536                     SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, ERR_R_INTERNAL_ERROR);
3537                     goto f_err;
3538                 }
3539             }
3540         }
3541     }
3542 #endif
3543 #ifndef OPENSSL_NO_DH
3544     if ((alg_k & SSL_kEDH) && dh == NULL) {
3545         al = SSL_AD_INTERNAL_ERROR;
3546         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, ERR_R_INTERNAL_ERROR);
3547         goto f_err;
3548     }
3549     if ((alg_k & SSL_kDHr) && !SSL_USE_SIGALGS(s) &&
3550                !has_bits(i, EVP_PK_DH | EVP_PKS_RSA)) {
3551         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3552                SSL_R_MISSING_DH_RSA_CERT);
3553         goto f_err;
3554     }
3555 # ifndef OPENSSL_NO_DSA
3556     if ((alg_k & SSL_kDHd) && !SSL_USE_SIGALGS(s) &&
3557         !has_bits(i, EVP_PK_DH | EVP_PKS_DSA)) {
3558         SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3559                SSL_R_MISSING_DH_DSA_CERT);
3560         goto f_err;
3561     }
3562 # endif
3563
3564     if (alg_k & (SSL_kDHE | SSL_kDHr | SSL_kDHd)) {
3565         int dh_size;
3566         if (alg_k & SSL_kDHE) {
3567             dh_size = BN_num_bits(dh->p);
3568         } else {
3569             DH *dh_srvr = get_server_static_dh_key(sc);
3570             if (dh_srvr == NULL)
3571                 goto f_err;
3572             dh_size = BN_num_bits(dh_srvr->p);
3573             DH_free(dh_srvr);
3574         }
3575
3576         if ((!SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) && dh_size < 768)
3577             || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) && dh_size < 512)) {
3578             SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_DH_KEY_TOO_SMALL);
3579             goto f_err;
3580         }
3581     }
3582 #endif  /* !OPENSSL_NO_DH */
3583
3584     if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
3585         pkey_bits > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)) {
3586 #ifndef OPENSSL_NO_RSA
3587         if (alg_k & SSL_kRSA) {
3588             if (rsa == NULL) {
3589                 SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3590                        SSL_R_MISSING_EXPORT_TMP_RSA_KEY);
3591                 goto f_err;
3592             } else if (BN_num_bits(rsa->n) >
3593                 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)) {
3594                 /* We have a temporary RSA key but it's too large. */
3595                 al = SSL_AD_EXPORT_RESTRICTION;
3596                 SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3597                        SSL_R_MISSING_EXPORT_TMP_RSA_KEY);
3598                 goto f_err;
3599             }
3600         } else
3601 #endif
3602 #ifndef OPENSSL_NO_DH
3603         if (alg_k & SSL_kDHE) {
3604             if (BN_num_bits(dh->p) >
3605                 SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)) {
3606                 /* We have a temporary DH key but it's too large. */
3607                 al = SSL_AD_EXPORT_RESTRICTION;
3608                 SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3609                        SSL_R_MISSING_EXPORT_TMP_DH_KEY);
3610                 goto f_err;
3611             }
3612         } else if (alg_k & (SSL_kDHr | SSL_kDHd)) {
3613             /* The cert should have had an export DH key. */
3614             al = SSL_AD_EXPORT_RESTRICTION;
3615             SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3616                    SSL_R_MISSING_EXPORT_TMP_DH_KEY);
3617                 goto f_err;
3618         } else
3619 #endif
3620         {
3621             SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM,
3622                    SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
3623             goto f_err;
3624         }
3625     }
3626     return (1);
3627  f_err:
3628     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3629  err:
3630     return (0);
3631 }
3632
3633 #ifndef OPENSSL_NO_TLSEXT
3634 /*
3635  * Normally, we can tell if the server is resuming the session from
3636  * the session ID. EAP-FAST (RFC 4851), however, relies on the next server
3637  * message after the ServerHello to determine if the server is resuming.
3638  * Therefore, we allow EAP-FAST to peek ahead.
3639  * ssl3_check_finished returns 1 if we are resuming from an external
3640  * pre-shared secret, we have a "ticket" and the next server handshake message
3641  * is Finished; and 0 otherwise. It returns -1 upon an error.
3642  */
3643 static int ssl3_check_finished(SSL *s)
3644 {
3645     int ok = 0;
3646
3647     if (s->version < TLS1_VERSION || !s->tls_session_secret_cb ||
3648         !s->session->tlsext_tick)
3649         return 0;
3650
3651     /* Need to permit this temporarily, in case the next message is Finished. */
3652     s->s3->flags |= SSL3_FLAGS_CCS_OK;
3653     /*
3654      * This function is called when we might get a Certificate message instead,
3655      * so permit appropriate message length.
3656      * We ignore the return value as we're only interested in the message type
3657      * and not its length.
3658      */
3659     s->method->ssl_get_message(s,
3660                                SSL3_ST_CR_CERT_A,
3661                                SSL3_ST_CR_CERT_B,
3662                                -1, s->max_cert_list, &ok);
3663     s->s3->flags &= ~SSL3_FLAGS_CCS_OK;
3664
3665     if (!ok)
3666         return -1;
3667
3668     s->s3->tmp.reuse_message = 1;
3669
3670     if (s->s3->tmp.message_type == SSL3_MT_FINISHED)
3671         return 1;
3672
3673     /* If we're not done, then the CCS arrived early and we should bail. */
3674     if (s->s3->change_cipher_spec) {
3675         SSLerr(SSL_F_SSL3_CHECK_FINISHED, SSL_R_CCS_RECEIVED_EARLY);
3676         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE);
3677         return -1;
3678     }
3679
3680     return 0;
3681 }
3682
3683 # ifndef OPENSSL_NO_NEXTPROTONEG
3684 int ssl3_send_next_proto(SSL *s)
3685 {
3686     unsigned int len, padding_len;
3687     unsigned char *d;
3688
3689     if (s->state == SSL3_ST_CW_NEXT_PROTO_A) {
3690         len = s->next_proto_negotiated_len;
3691         padding_len = 32 - ((len + 2) % 32);
3692         d = (unsigned char *)s->init_buf->data;
3693         d[4] = len;
3694         memcpy(d + 5, s->next_proto_negotiated, len);
3695         d[5 + len] = padding_len;
3696         memset(d + 6 + len, 0, padding_len);
3697         *(d++) = SSL3_MT_NEXT_PROTO;
3698         l2n3(2 + len + padding_len, d);
3699         s->state = SSL3_ST_CW_NEXT_PROTO_B;
3700         s->init_num = 4 + 2 + len + padding_len;
3701         s->init_off = 0;
3702     }
3703
3704     return ssl3_do_write(s, SSL3_RT_HANDSHAKE);
3705 }
3706 #endif                          /* !OPENSSL_NO_NEXTPROTONEG */
3707 #endif                          /* !OPENSSL_NO_TLSEXT */
3708
3709 int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey)
3710 {
3711     int i = 0;
3712 #ifndef OPENSSL_NO_ENGINE
3713     if (s->ctx->client_cert_engine) {
3714         i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s,
3715                                         SSL_get_client_CA_list(s),
3716                                         px509, ppkey, NULL, NULL, NULL);
3717         if (i != 0)
3718             return i;
3719     }
3720 #endif
3721     if (s->ctx->client_cert_cb)
3722         i = s->ctx->client_cert_cb(s, px509, ppkey);
3723     return i;
3724 }