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