Add Error state
[openssl.git] / ssl / s3_srvr.c
1 /* ssl/s3_srvr.c -*- mode:C; c-file-style: "eay" -*- */
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 #define REUSE_CIPHER_BUG
152 #define NETSCAPE_HANG_BUG
153
154 #include <stdio.h>
155 #include "ssl_locl.h"
156 #include "kssl_lcl.h"
157 #include "../crypto/constant_time_locl.h"
158 #include <openssl/buffer.h>
159 #include <openssl/rand.h>
160 #include <openssl/objects.h>
161 #include <openssl/evp.h>
162 #include <openssl/hmac.h>
163 #include <openssl/x509.h>
164 #ifndef OPENSSL_NO_DH
165 # include <openssl/dh.h>
166 #endif
167 #include <openssl/bn.h>
168 #ifndef OPENSSL_NO_KRB5
169 # include <openssl/krb5_asn.h>
170 #endif
171 #include <openssl/md5.h>
172
173 #ifndef OPENSSL_NO_SSL3_METHOD
174 static const SSL_METHOD *ssl3_get_server_method(int ver);
175
176 static const SSL_METHOD *ssl3_get_server_method(int ver)
177 {
178     if (ver == SSL3_VERSION)
179         return (SSLv3_server_method());
180     else
181         return (NULL);
182 }
183
184 IMPLEMENT_ssl3_meth_func(SSLv3_server_method,
185                          ssl3_accept,
186                          ssl_undefined_function, ssl3_get_server_method)
187 #endif
188 #ifndef OPENSSL_NO_SRP
189 static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
190 {
191     int ret = SSL_ERROR_NONE;
192
193     *al = SSL_AD_UNRECOGNIZED_NAME;
194
195     if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
196         (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
197         if (s->srp_ctx.login == NULL) {
198             /*
199              * RFC 5054 says SHOULD reject, we do so if There is no srp
200              * login name
201              */
202             ret = SSL3_AL_FATAL;
203             *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
204         } else {
205             ret = SSL_srp_server_param_with_username(s, al);
206         }
207     }
208     return ret;
209 }
210 #endif
211
212 int ssl3_accept(SSL *s)
213 {
214     BUF_MEM *buf;
215     unsigned long alg_k, Time = (unsigned long)time(NULL);
216     void (*cb) (const SSL *ssl, int type, int val) = NULL;
217     int ret = -1;
218     int new_state, state, skip = 0;
219
220     RAND_add(&Time, sizeof(Time), 0);
221     ERR_clear_error();
222     clear_sys_error();
223
224     if (s->info_callback != NULL)
225         cb = s->info_callback;
226     else if (s->ctx->info_callback != NULL)
227         cb = s->ctx->info_callback;
228
229     /* init things to blank */
230     s->in_handshake++;
231     if (!SSL_in_init(s) || SSL_in_before(s))
232         SSL_clear(s);
233
234     if (s->cert == NULL) {
235         SSLerr(SSL_F_SSL3_ACCEPT, SSL_R_NO_CERTIFICATE_SET);
236         return (-1);
237     }
238 #ifndef OPENSSL_NO_HEARTBEATS
239     /*
240      * If we're awaiting a HeartbeatResponse, pretend we already got and
241      * don't await it anymore, because Heartbeats don't make sense during
242      * handshakes anyway.
243      */
244     if (s->tlsext_hb_pending) {
245         s->tlsext_hb_pending = 0;
246         s->tlsext_hb_seq++;
247     }
248 #endif
249
250     for (;;) {
251         state = s->state;
252
253         switch (s->state) {
254         case SSL_ST_RENEGOTIATE:
255             s->renegotiate = 1;
256             /* s->state=SSL_ST_ACCEPT; */
257
258         case SSL_ST_BEFORE:
259         case SSL_ST_ACCEPT:
260         case SSL_ST_BEFORE | SSL_ST_ACCEPT:
261         case SSL_ST_OK | SSL_ST_ACCEPT:
262
263             s->server = 1;
264             if (cb != NULL)
265                 cb(s, SSL_CB_HANDSHAKE_START, 1);
266
267             if ((s->version >> 8) != 3) {
268                 SSLerr(SSL_F_SSL3_ACCEPT, ERR_R_INTERNAL_ERROR);
269                 return -1;
270             }
271             s->type = SSL_ST_ACCEPT;
272
273             if (s->init_buf == NULL) {
274                 if ((buf = BUF_MEM_new()) == NULL) {
275                     ret = -1;
276                     goto end;
277                 }
278                 if (!BUF_MEM_grow(buf, SSL3_RT_MAX_PLAIN_LENGTH)) {
279                     BUF_MEM_free(buf);
280                     ret = -1;
281                     goto end;
282                 }
283                 s->init_buf = buf;
284             }
285
286             if (!ssl3_setup_buffers(s)) {
287                 ret = -1;
288                 goto end;
289             }
290
291             s->init_num = 0;
292             s->s3->flags &= ~SSL3_FLAGS_SGC_RESTART_DONE;
293             s->s3->flags &= ~SSL3_FLAGS_CCS_OK;
294             /*
295              * Should have been reset by ssl3_get_finished, too.
296              */
297             s->s3->change_cipher_spec = 0;
298
299             if (s->state != SSL_ST_RENEGOTIATE) {
300                 /*
301                  * Ok, we now need to push on a buffering BIO so that the
302                  * output is sent in a way that TCP likes :-)
303                  */
304                 if (!ssl_init_wbio_buffer(s, 1)) {
305                     ret = -1;
306                     goto end;
307                 }
308
309                 ssl3_init_finished_mac(s);
310                 s->state = SSL3_ST_SR_CLNT_HELLO_A;
311                 s->ctx->stats.sess_accept++;
312             } else if (!s->s3->send_connection_binding &&
313                        !(s->options &
314                          SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
315                 /*
316                  * Server attempting to renegotiate with client that doesn't
317                  * support secure renegotiation.
318                  */
319                 SSLerr(SSL_F_SSL3_ACCEPT,
320                        SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
321                 ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
322                 ret = -1;
323                 goto end;
324             } else {
325                 /*
326                  * s->state == SSL_ST_RENEGOTIATE, we will just send a
327                  * HelloRequest
328                  */
329                 s->ctx->stats.sess_accept_renegotiate++;
330                 s->state = SSL3_ST_SW_HELLO_REQ_A;
331             }
332             break;
333
334         case SSL3_ST_SW_HELLO_REQ_A:
335         case SSL3_ST_SW_HELLO_REQ_B:
336
337             s->shutdown = 0;
338             ret = ssl3_send_hello_request(s);
339             if (ret <= 0)
340                 goto end;
341             s->s3->tmp.next_state = SSL3_ST_SW_HELLO_REQ_C;
342             s->state = SSL3_ST_SW_FLUSH;
343             s->init_num = 0;
344
345             ssl3_init_finished_mac(s);
346             break;
347
348         case SSL3_ST_SW_HELLO_REQ_C:
349             s->state = SSL_ST_OK;
350             break;
351
352         case SSL3_ST_SR_CLNT_HELLO_A:
353         case SSL3_ST_SR_CLNT_HELLO_B:
354         case SSL3_ST_SR_CLNT_HELLO_C:
355
356             s->shutdown = 0;
357             if (s->rwstate != SSL_X509_LOOKUP) {
358                 ret = ssl3_get_client_hello(s);
359                 if (ret <= 0)
360                     goto end;
361             }
362 #ifndef OPENSSL_NO_SRP
363             {
364                 int al;
365                 if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
366                     /*
367                      * callback indicates firther work to be done
368                      */
369                     s->rwstate = SSL_X509_LOOKUP;
370                     goto end;
371                 }
372                 if (ret != SSL_ERROR_NONE) {
373                     ssl3_send_alert(s, SSL3_AL_FATAL, al);
374                     /*
375                      * This is not really an error but the only means to for
376                      * a client to detect whether srp is supported.
377                      */
378                     if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
379                         SSLerr(SSL_F_SSL3_ACCEPT, SSL_R_CLIENTHELLO_TLSEXT);
380                     ret = SSL_TLSEXT_ERR_ALERT_FATAL;
381                     ret = -1;
382                     goto end;
383                 }
384             }
385 #endif
386
387             s->renegotiate = 2;
388             s->state = SSL3_ST_SW_SRVR_HELLO_A;
389             s->init_num = 0;
390             break;
391
392         case SSL3_ST_SW_SRVR_HELLO_A:
393         case SSL3_ST_SW_SRVR_HELLO_B:
394             ret = ssl3_send_server_hello(s);
395             if (ret <= 0)
396                 goto end;
397 #ifndef OPENSSL_NO_TLSEXT
398             if (s->hit) {
399                 if (s->tlsext_ticket_expected)
400                     s->state = SSL3_ST_SW_SESSION_TICKET_A;
401                 else
402                     s->state = SSL3_ST_SW_CHANGE_A;
403             }
404 #else
405             if (s->hit)
406                 s->state = SSL3_ST_SW_CHANGE_A;
407 #endif
408             else
409                 s->state = SSL3_ST_SW_CERT_A;
410             s->init_num = 0;
411             break;
412
413         case SSL3_ST_SW_CERT_A:
414         case SSL3_ST_SW_CERT_B:
415             /* Check if it is anon DH or anon ECDH, */
416             /* normal PSK or KRB5 or SRP */
417             if (!
418                 (s->s3->tmp.
419                  new_cipher->algorithm_auth & (SSL_aNULL | SSL_aKRB5 |
420                                                SSL_aSRP))
421 && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
422                 ret = ssl3_send_server_certificate(s);
423                 if (ret <= 0)
424                     goto end;
425 #ifndef OPENSSL_NO_TLSEXT
426                 if (s->tlsext_status_expected)
427                     s->state = SSL3_ST_SW_CERT_STATUS_A;
428                 else
429                     s->state = SSL3_ST_SW_KEY_EXCH_A;
430             } else {
431                 skip = 1;
432                 s->state = SSL3_ST_SW_KEY_EXCH_A;
433             }
434 #else
435             } else
436                 skip = 1;
437
438             s->state = SSL3_ST_SW_KEY_EXCH_A;
439 #endif
440             s->init_num = 0;
441             break;
442
443         case SSL3_ST_SW_KEY_EXCH_A:
444         case SSL3_ST_SW_KEY_EXCH_B:
445             alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
446
447             /*
448              * clear this, it may get reset by
449              * send_server_key_exchange
450              */
451             s->s3->tmp.use_rsa_tmp = 0;
452
453             /*
454              * only send if a DH key exchange, fortezza or RSA but we have a
455              * sign only certificate PSK: may send PSK identity hints For
456              * ECC ciphersuites, we send a serverKeyExchange message only if
457              * the cipher suite is either ECDH-anon or ECDHE. In other cases,
458              * the server certificate contains the server's public key for
459              * key exchange.
460              */
461             if (0
462                 /*
463                  * PSK: send ServerKeyExchange if PSK identity hint if
464                  * provided
465                  */
466 #ifndef OPENSSL_NO_PSK
467                 || ((alg_k & SSL_kPSK) && s->ctx->psk_identity_hint)
468 #endif
469 #ifndef OPENSSL_NO_SRP
470                 /* SRP: send ServerKeyExchange */
471                 || (alg_k & SSL_kSRP)
472 #endif
473                 || (alg_k & (SSL_kDHr | SSL_kDHd | SSL_kEDH))
474                 || (alg_k & SSL_kEECDH)
475                 || ((alg_k & SSL_kRSA)
476                     && (s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey == NULL
477                         || (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher)
478                             && EVP_PKEY_size(s->cert->pkeys
479                                              [SSL_PKEY_RSA_ENC].privatekey) *
480                             8 > SSL_C_EXPORT_PKEYLENGTH(s->s3->tmp.new_cipher)
481                         )
482                     )
483                 )
484                 ) {
485                 ret = ssl3_send_server_key_exchange(s);
486                 if (ret <= 0)
487                     goto end;
488             } else
489                 skip = 1;
490
491             s->state = SSL3_ST_SW_CERT_REQ_A;
492             s->init_num = 0;
493             break;
494
495         case SSL3_ST_SW_CERT_REQ_A:
496         case SSL3_ST_SW_CERT_REQ_B:
497             if (                /* don't request cert unless asked for it: */
498                    !(s->verify_mode & SSL_VERIFY_PEER) ||
499                    /*
500                     * if SSL_VERIFY_CLIENT_ONCE is set, don't request cert
501                     * during re-negotiation:
502                     */
503                    ((s->session->peer != NULL) &&
504                     (s->verify_mode & SSL_VERIFY_CLIENT_ONCE)) ||
505                    /*
506                     * never request cert in anonymous ciphersuites (see
507                     * section "Certificate request" in SSL 3 drafts and in
508                     * RFC 2246):
509                     */
510                    ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL) &&
511                     /*
512                      * ... except when the application insists on
513                      * verification (against the specs, but s3_clnt.c accepts
514                      * this for SSL 3)
515                      */
516                     !(s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) ||
517                    /*
518                     * never request cert in Kerberos ciphersuites
519                     */
520                    (s->s3->tmp.new_cipher->algorithm_auth & SSL_aKRB5) ||
521                    /* don't request certificate for SRP auth */
522                    (s->s3->tmp.new_cipher->algorithm_auth & SSL_aSRP)
523                    /*
524                     * With normal PSK Certificates and Certificate Requests
525                     * are omitted
526                     */
527                    || (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
528                 /* no cert request */
529                 skip = 1;
530                 s->s3->tmp.cert_request = 0;
531                 s->state = SSL3_ST_SW_SRVR_DONE_A;
532                 if (s->s3->handshake_buffer)
533                     if (!ssl3_digest_cached_records(s))
534                         return -1;
535             } else {
536                 s->s3->tmp.cert_request = 1;
537                 ret = ssl3_send_certificate_request(s);
538                 if (ret <= 0)
539                     goto end;
540 #ifndef NETSCAPE_HANG_BUG
541                 s->state = SSL3_ST_SW_SRVR_DONE_A;
542 #else
543                 s->state = SSL3_ST_SW_FLUSH;
544                 s->s3->tmp.next_state = SSL3_ST_SR_CERT_A;
545 #endif
546                 s->init_num = 0;
547             }
548             break;
549
550         case SSL3_ST_SW_SRVR_DONE_A:
551         case SSL3_ST_SW_SRVR_DONE_B:
552             ret = ssl3_send_server_done(s);
553             if (ret <= 0)
554                 goto end;
555             s->s3->tmp.next_state = SSL3_ST_SR_CERT_A;
556             s->state = SSL3_ST_SW_FLUSH;
557             s->init_num = 0;
558             break;
559
560         case SSL3_ST_SW_FLUSH:
561
562             /*
563              * This code originally checked to see if any data was pending
564              * using BIO_CTRL_INFO and then flushed. This caused problems as
565              * documented in PR#1939. The proposed fix doesn't completely
566              * resolve this issue as buggy implementations of
567              * BIO_CTRL_PENDING still exist. So instead we just flush
568              * unconditionally.
569              */
570
571             s->rwstate = SSL_WRITING;
572             if (BIO_flush(s->wbio) <= 0) {
573                 ret = -1;
574                 goto end;
575             }
576             s->rwstate = SSL_NOTHING;
577
578             s->state = s->s3->tmp.next_state;
579             break;
580
581         case SSL3_ST_SR_CERT_A:
582         case SSL3_ST_SR_CERT_B:
583             /* Check for second client hello (MS SGC) */
584             ret = ssl3_check_client_hello(s);
585             if (ret <= 0)
586                 goto end;
587             if (ret == 2)
588                 s->state = SSL3_ST_SR_CLNT_HELLO_C;
589             else {
590                 if (s->s3->tmp.cert_request) {
591                     ret = ssl3_get_client_certificate(s);
592                     if (ret <= 0)
593                         goto end;
594                 }
595                 s->init_num = 0;
596                 s->state = SSL3_ST_SR_KEY_EXCH_A;
597             }
598             break;
599
600         case SSL3_ST_SR_KEY_EXCH_A:
601         case SSL3_ST_SR_KEY_EXCH_B:
602             ret = ssl3_get_client_key_exchange(s);
603             if (ret <= 0)
604                 goto end;
605             if (ret == 2) {
606                 /*
607                  * For the ECDH ciphersuites when the client sends its ECDH
608                  * pub key in a certificate, the CertificateVerify message is
609                  * not sent. Also for GOST ciphersuites when the client uses
610                  * its key from the certificate for key exchange.
611                  */
612 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
613                 s->state = SSL3_ST_SR_FINISHED_A;
614 #else
615                 if (s->s3->next_proto_neg_seen)
616                     s->state = SSL3_ST_SR_NEXT_PROTO_A;
617                 else
618                     s->state = SSL3_ST_SR_FINISHED_A;
619 #endif
620                 s->init_num = 0;
621             } else if (TLS1_get_version(s) >= TLS1_2_VERSION) {
622                 s->state = SSL3_ST_SR_CERT_VRFY_A;
623                 s->init_num = 0;
624                 if (!s->session->peer)
625                     break;
626                 /*
627                  * For TLS v1.2 freeze the handshake buffer at this point and
628                  * digest cached records.
629                  */
630                 if (!s->s3->handshake_buffer) {
631                     SSLerr(SSL_F_SSL3_ACCEPT, ERR_R_INTERNAL_ERROR);
632                     return -1;
633                 }
634                 s->s3->flags |= TLS1_FLAGS_KEEP_HANDSHAKE;
635                 if (!ssl3_digest_cached_records(s))
636                     return -1;
637             } else {
638                 int offset = 0;
639                 int dgst_num;
640
641                 s->state = SSL3_ST_SR_CERT_VRFY_A;
642                 s->init_num = 0;
643
644                 /*
645                  * We need to get hashes here so if there is a client cert,
646                  * it can be verified FIXME - digest processing for
647                  * CertificateVerify should be generalized. But it is next
648                  * step
649                  */
650                 if (s->s3->handshake_buffer)
651                     if (!ssl3_digest_cached_records(s))
652                         return -1;
653                 for (dgst_num = 0; dgst_num < SSL_MAX_DIGEST; dgst_num++)
654                     if (s->s3->handshake_dgst[dgst_num]) {
655                         int dgst_size;
656
657                         s->method->ssl3_enc->cert_verify_mac(s,
658                                                              EVP_MD_CTX_type
659                                                              (s->
660                                                               s3->handshake_dgst
661                                                               [dgst_num]),
662                                                              &(s->s3->
663                                                                tmp.cert_verify_md
664                                                                [offset]));
665                         dgst_size =
666                             EVP_MD_CTX_size(s->s3->handshake_dgst[dgst_num]);
667                         if (dgst_size < 0) {
668                             ret = -1;
669                             goto end;
670                         }
671                         offset += dgst_size;
672                     }
673             }
674             break;
675
676         case SSL3_ST_SR_CERT_VRFY_A:
677         case SSL3_ST_SR_CERT_VRFY_B:
678             /*
679              * This *should* be the first time we enable CCS, but be
680              * extra careful about surrounding code changes. We need
681              * to set this here because we don't know if we're
682              * expecting a CertificateVerify or not.
683              */
684             if (!s->s3->change_cipher_spec)
685                 s->s3->flags |= SSL3_FLAGS_CCS_OK;
686             /* we should decide if we expected this one */
687             ret = ssl3_get_cert_verify(s);
688             if (ret <= 0)
689                 goto end;
690
691 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
692             s->state = SSL3_ST_SR_FINISHED_A;
693 #else
694             if (s->s3->next_proto_neg_seen)
695                 s->state = SSL3_ST_SR_NEXT_PROTO_A;
696             else
697                 s->state = SSL3_ST_SR_FINISHED_A;
698 #endif
699             s->init_num = 0;
700             break;
701
702 #if !defined(OPENSSL_NO_TLSEXT) && !defined(OPENSSL_NO_NEXTPROTONEG)
703         case SSL3_ST_SR_NEXT_PROTO_A:
704         case SSL3_ST_SR_NEXT_PROTO_B:
705             /*
706              * Enable CCS for resumed handshakes with NPN.
707              * In a full handshake with NPN, we end up here through
708              * SSL3_ST_SR_CERT_VRFY_B, where SSL3_FLAGS_CCS_OK was
709              * already set. Receiving a CCS clears the flag, so make
710              * sure not to re-enable it to ban duplicates.
711              * s->s3->change_cipher_spec is set when a CCS is
712              * processed in s3_pkt.c, and remains set until
713              * the client's Finished message is read.
714              */
715             if (!s->s3->change_cipher_spec)
716                 s->s3->flags |= SSL3_FLAGS_CCS_OK;
717
718             ret = ssl3_get_next_proto(s);
719             if (ret <= 0)
720                 goto end;
721             s->init_num = 0;
722             s->state = SSL3_ST_SR_FINISHED_A;
723             break;
724 #endif
725
726         case SSL3_ST_SR_FINISHED_A:
727         case SSL3_ST_SR_FINISHED_B:
728             /*
729              * Enable CCS for resumed handshakes without NPN.
730              * In a full handshake, we end up here through
731              * SSL3_ST_SR_CERT_VRFY_B, where SSL3_FLAGS_CCS_OK was
732              * already set. Receiving a CCS clears the flag, so make
733              * sure not to re-enable it to ban duplicates.
734              * s->s3->change_cipher_spec is set when a CCS is
735              * processed in s3_pkt.c, and remains set until
736              * the client's Finished message is read.
737              */
738             if (!s->s3->change_cipher_spec)
739                 s->s3->flags |= SSL3_FLAGS_CCS_OK;
740             ret = ssl3_get_finished(s, SSL3_ST_SR_FINISHED_A,
741                                     SSL3_ST_SR_FINISHED_B);
742             if (ret <= 0)
743                 goto end;
744             if (s->hit)
745                 s->state = SSL_ST_OK;
746 #ifndef OPENSSL_NO_TLSEXT
747             else if (s->tlsext_ticket_expected)
748                 s->state = SSL3_ST_SW_SESSION_TICKET_A;
749 #endif
750             else
751                 s->state = SSL3_ST_SW_CHANGE_A;
752             s->init_num = 0;
753             break;
754
755 #ifndef OPENSSL_NO_TLSEXT
756         case SSL3_ST_SW_SESSION_TICKET_A:
757         case SSL3_ST_SW_SESSION_TICKET_B:
758             ret = ssl3_send_newsession_ticket(s);
759             if (ret <= 0)
760                 goto end;
761             s->state = SSL3_ST_SW_CHANGE_A;
762             s->init_num = 0;
763             break;
764
765         case SSL3_ST_SW_CERT_STATUS_A:
766         case SSL3_ST_SW_CERT_STATUS_B:
767             ret = ssl3_send_cert_status(s);
768             if (ret <= 0)
769                 goto end;
770             s->state = SSL3_ST_SW_KEY_EXCH_A;
771             s->init_num = 0;
772             break;
773
774 #endif
775
776         case SSL3_ST_SW_CHANGE_A:
777         case SSL3_ST_SW_CHANGE_B:
778
779             s->session->cipher = s->s3->tmp.new_cipher;
780             if (!s->method->ssl3_enc->setup_key_block(s)) {
781                 ret = -1;
782                 goto end;
783             }
784
785             ret = ssl3_send_change_cipher_spec(s,
786                                                SSL3_ST_SW_CHANGE_A,
787                                                SSL3_ST_SW_CHANGE_B);
788
789             if (ret <= 0)
790                 goto end;
791             s->state = SSL3_ST_SW_FINISHED_A;
792             s->init_num = 0;
793
794             if (!s->method->ssl3_enc->change_cipher_state(s,
795                                                           SSL3_CHANGE_CIPHER_SERVER_WRITE))
796             {
797                 ret = -1;
798                 goto end;
799             }
800
801             break;
802
803         case SSL3_ST_SW_FINISHED_A:
804         case SSL3_ST_SW_FINISHED_B:
805             ret = ssl3_send_finished(s,
806                                      SSL3_ST_SW_FINISHED_A,
807                                      SSL3_ST_SW_FINISHED_B,
808                                      s->method->
809                                      ssl3_enc->server_finished_label,
810                                      s->method->
811                                      ssl3_enc->server_finished_label_len);
812             if (ret <= 0)
813                 goto end;
814             s->state = SSL3_ST_SW_FLUSH;
815             if (s->hit) {
816 #if defined(OPENSSL_NO_TLSEXT) || defined(OPENSSL_NO_NEXTPROTONEG)
817                 s->s3->tmp.next_state = SSL3_ST_SR_FINISHED_A;
818 #else
819                 if (s->s3->next_proto_neg_seen) {
820                     s->s3->tmp.next_state = SSL3_ST_SR_NEXT_PROTO_A;
821                 } else
822                     s->s3->tmp.next_state = SSL3_ST_SR_FINISHED_A;
823 #endif
824             } else
825                 s->s3->tmp.next_state = SSL_ST_OK;
826             s->init_num = 0;
827             break;
828
829         case SSL_ST_OK:
830             /* clean a few things up */
831             ssl3_cleanup_key_block(s);
832
833             BUF_MEM_free(s->init_buf);
834             s->init_buf = NULL;
835
836             /* remove buffering on output */
837             ssl_free_wbio_buffer(s);
838
839             s->init_num = 0;
840
841             if (s->renegotiate == 2) { /* skipped if we just sent a
842                                         * HelloRequest */
843                 s->renegotiate = 0;
844                 s->new_session = 0;
845
846                 ssl_update_cache(s, SSL_SESS_CACHE_SERVER);
847
848                 s->ctx->stats.sess_accept_good++;
849                 /* s->server=1; */
850                 s->handshake_func = ssl3_accept;
851
852                 if (cb != NULL)
853                     cb(s, SSL_CB_HANDSHAKE_DONE, 1);
854             }
855
856             ret = 1;
857             goto end;
858             /* break; */
859
860         case SSL_ST_ERR:
861         default:
862             SSLerr(SSL_F_SSL3_ACCEPT, SSL_R_UNKNOWN_STATE);
863             ret = -1;
864             goto end;
865             /* break; */
866         }
867
868         if (!s->s3->tmp.reuse_message && !skip) {
869             if (s->debug) {
870                 if ((ret = BIO_flush(s->wbio)) <= 0)
871                     goto end;
872             }
873
874             if ((cb != NULL) && (s->state != state)) {
875                 new_state = s->state;
876                 s->state = state;
877                 cb(s, SSL_CB_ACCEPT_LOOP, 1);
878                 s->state = new_state;
879             }
880         }
881         skip = 0;
882     }
883  end:
884     /* BIO_flush(s->wbio); */
885
886     s->in_handshake--;
887     if (cb != NULL)
888         cb(s, SSL_CB_ACCEPT_EXIT, ret);
889     return (ret);
890 }
891
892 int ssl3_send_hello_request(SSL *s)
893 {
894     unsigned char *p;
895
896     if (s->state == SSL3_ST_SW_HELLO_REQ_A) {
897         p = (unsigned char *)s->init_buf->data;
898         *(p++) = SSL3_MT_HELLO_REQUEST;
899         *(p++) = 0;
900         *(p++) = 0;
901         *(p++) = 0;
902
903         s->state = SSL3_ST_SW_HELLO_REQ_B;
904         /* number of bytes to write */
905         s->init_num = 4;
906         s->init_off = 0;
907     }
908
909     /* SSL3_ST_SW_HELLO_REQ_B */
910     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
911 }
912
913 int ssl3_check_client_hello(SSL *s)
914 {
915     int ok;
916     long n;
917
918     /*
919      * this function is called when we really expect a Certificate message,
920      * so permit appropriate message length
921      */
922     n = s->method->ssl_get_message(s,
923                                    SSL3_ST_SR_CERT_A,
924                                    SSL3_ST_SR_CERT_B,
925                                    -1, s->max_cert_list, &ok);
926     if (!ok)
927         return ((int)n);
928     s->s3->tmp.reuse_message = 1;
929     if (s->s3->tmp.message_type == SSL3_MT_CLIENT_HELLO) {
930         /*
931          * We only allow the client to restart the handshake once per
932          * negotiation.
933          */
934         if (s->s3->flags & SSL3_FLAGS_SGC_RESTART_DONE) {
935             SSLerr(SSL_F_SSL3_CHECK_CLIENT_HELLO,
936                    SSL_R_MULTIPLE_SGC_RESTARTS);
937             return -1;
938         }
939         /*
940          * Throw away what we have done so far in the current handshake,
941          * which will now be aborted. (A full SSL_clear would be too much.)
942          */
943 #ifndef OPENSSL_NO_DH
944         if (s->s3->tmp.dh != NULL) {
945             DH_free(s->s3->tmp.dh);
946             s->s3->tmp.dh = NULL;
947         }
948 #endif
949 #ifndef OPENSSL_NO_ECDH
950         if (s->s3->tmp.ecdh != NULL) {
951             EC_KEY_free(s->s3->tmp.ecdh);
952             s->s3->tmp.ecdh = NULL;
953         }
954 #endif
955         s->s3->flags |= SSL3_FLAGS_SGC_RESTART_DONE;
956         return 2;
957     }
958     return 1;
959 }
960
961 int ssl3_get_client_hello(SSL *s)
962 {
963     int i, j, ok, al, ret = -1;
964     unsigned int cookie_len;
965     long n;
966     unsigned long id;
967     unsigned char *p, *d, *q;
968     SSL_CIPHER *c;
969 #ifndef OPENSSL_NO_COMP
970     SSL_COMP *comp = NULL;
971 #endif
972     STACK_OF(SSL_CIPHER) *ciphers = NULL;
973
974     /*
975      * We do this so that we will respond with our native type. If we are
976      * TLSv1 and we get SSLv3, we will respond with TLSv1, This down
977      * switching should be handled by a different method. If we are SSLv3, we
978      * will respond with SSLv3, even if prompted with TLSv1.
979      */
980     if (s->state == SSL3_ST_SR_CLNT_HELLO_A) {
981         s->state = SSL3_ST_SR_CLNT_HELLO_B;
982     }
983     s->first_packet = 1;
984     n = s->method->ssl_get_message(s,
985                                    SSL3_ST_SR_CLNT_HELLO_B,
986                                    SSL3_ST_SR_CLNT_HELLO_C,
987                                    SSL3_MT_CLIENT_HELLO,
988                                    SSL3_RT_MAX_PLAIN_LENGTH, &ok);
989
990     if (!ok)
991         return ((int)n);
992     s->first_packet = 0;
993     d = p = (unsigned char *)s->init_msg;
994
995     /*
996      * 2 bytes for client version, SSL3_RANDOM_SIZE bytes for random, 1 byte
997      * for session id length
998      */
999     if (n < 2 + SSL3_RANDOM_SIZE + 1) {
1000         al = SSL_AD_DECODE_ERROR;
1001         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1002         goto f_err;
1003     }
1004
1005     /*
1006      * use version from inside client hello, not from record header (may
1007      * differ: see RFC 2246, Appendix E, second paragraph)
1008      */
1009     s->client_version = (((int)p[0]) << 8) | (int)p[1];
1010     p += 2;
1011
1012     if ((s->version == DTLS1_VERSION && s->client_version > s->version) ||
1013         (s->version != DTLS1_VERSION && s->client_version < s->version)) {
1014         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_WRONG_VERSION_NUMBER);
1015         if ((s->client_version >> 8) == SSL3_VERSION_MAJOR &&
1016             !s->enc_write_ctx && !s->write_hash) {
1017             /*
1018              * similar to ssl3_get_record, send alert using remote version
1019              * number
1020              */
1021             s->version = s->client_version;
1022         }
1023         al = SSL_AD_PROTOCOL_VERSION;
1024         goto f_err;
1025     }
1026
1027     /*
1028      * If we require cookies and this ClientHello doesn't contain one, just
1029      * return since we do not want to allocate any memory yet. So check
1030      * cookie length...
1031      */
1032     if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
1033         unsigned int session_length, cookie_length;
1034
1035         session_length = *(p + SSL3_RANDOM_SIZE);
1036
1037         if (p + SSL3_RANDOM_SIZE + session_length + 1 >= d + n) {
1038             al = SSL_AD_DECODE_ERROR;
1039             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1040             goto f_err;
1041         }
1042         cookie_length = *(p + SSL3_RANDOM_SIZE + session_length + 1);
1043
1044         if (cookie_length == 0)
1045             return 1;
1046     }
1047
1048     /* load the client random */
1049     memcpy(s->s3->client_random, p, SSL3_RANDOM_SIZE);
1050     p += SSL3_RANDOM_SIZE;
1051
1052     /* get the session-id */
1053     j = *(p++);
1054
1055     if (p + j > d + n) {
1056         al = SSL_AD_DECODE_ERROR;
1057         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1058         goto f_err;
1059     }
1060
1061     s->hit = 0;
1062     /*
1063      * Versions before 0.9.7 always allow clients to resume sessions in
1064      * renegotiation. 0.9.7 and later allow this by default, but optionally
1065      * ignore resumption requests with flag
1066      * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
1067      * than a change to default behavior so that applications relying on this
1068      * for security won't even compile against older library versions).
1069      * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
1070      * request renegotiation but not a new session (s->new_session remains
1071      * unset): for servers, this essentially just means that the
1072      * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be ignored.
1073      */
1074     if ((s->new_session
1075          && (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
1076         if (!ssl_get_new_session(s, 1))
1077             goto err;
1078     } else {
1079         i = ssl_get_prev_session(s, p, j, d + n);
1080         /*
1081          * Only resume if the session's version matches the negotiated
1082          * version.
1083          * RFC 5246 does not provide much useful advice on resumption
1084          * with a different protocol version. It doesn't forbid it but
1085          * the sanity of such behaviour would be questionable.
1086          * In practice, clients do not accept a version mismatch and
1087          * will abort the handshake with an error.
1088          */
1089         if (i == 1 && s->version == s->session->ssl_version) { /* previous
1090                                                                 * session */
1091             s->hit = 1;
1092         } else if (i == -1)
1093             goto err;
1094         else {                  /* i == 0 */
1095
1096             if (!ssl_get_new_session(s, 1))
1097                 goto err;
1098         }
1099     }
1100
1101     p += j;
1102
1103     if (s->version == DTLS1_VERSION || s->version == DTLS1_BAD_VER) {
1104         /* cookie stuff */
1105         if (p + 1 > d + n) {
1106             al = SSL_AD_DECODE_ERROR;
1107             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1108             goto f_err;
1109         }
1110         cookie_len = *(p++);
1111
1112         if (p + cookie_len > d + n) {
1113             al = SSL_AD_DECODE_ERROR;
1114             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1115             goto f_err;
1116         }
1117
1118         /*
1119          * The ClientHello may contain a cookie even if the
1120          * HelloVerify message has not been sent--make sure that it
1121          * does not cause an overflow.
1122          */
1123         if (cookie_len > sizeof(s->d1->rcvd_cookie)) {
1124             /* too much data */
1125             al = SSL_AD_DECODE_ERROR;
1126             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1127             goto f_err;
1128         }
1129
1130         /* verify the cookie if appropriate option is set. */
1131         if ((SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) && cookie_len > 0) {
1132             memcpy(s->d1->rcvd_cookie, p, cookie_len);
1133
1134             if (s->ctx->app_verify_cookie_cb != NULL) {
1135                 if (s->ctx->app_verify_cookie_cb(s, s->d1->rcvd_cookie,
1136                                                  cookie_len) == 0) {
1137                     al = SSL_AD_HANDSHAKE_FAILURE;
1138                     SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1139                            SSL_R_COOKIE_MISMATCH);
1140                     goto f_err;
1141                 }
1142                 /* else cookie verification succeeded */
1143             }
1144             /* default verification */
1145             else if (memcmp(s->d1->rcvd_cookie, s->d1->cookie,
1146                             s->d1->cookie_len) != 0) {
1147                 al = SSL_AD_HANDSHAKE_FAILURE;
1148                 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
1149                 goto f_err;
1150             }
1151
1152             ret = 2;
1153         }
1154
1155         p += cookie_len;
1156     }
1157
1158     if (p + 2 > d + n) {
1159         al = SSL_AD_DECODE_ERROR;
1160         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
1161         goto f_err;
1162     }
1163     n2s(p, i);
1164
1165     if (i == 0) {
1166         al = SSL_AD_ILLEGAL_PARAMETER;
1167         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_NO_CIPHERS_SPECIFIED);
1168         goto f_err;
1169     }
1170
1171     /* i bytes of cipher data + 1 byte for compression length later */
1172     if ((p + i + 1) > (d + n)) {
1173         /* not enough data */
1174         al = SSL_AD_DECODE_ERROR;
1175         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1176         goto f_err;
1177     }
1178     if (ssl_bytes_to_cipher_list(s, p, i, &(ciphers)) == NULL) {
1179         goto err;
1180     }
1181     p += i;
1182
1183     /* If it is a hit, check that the cipher is in the list */
1184     if (s->hit) {
1185         j = 0;
1186         id = s->session->cipher->id;
1187
1188 #ifdef CIPHER_DEBUG
1189         fprintf(stderr, "client sent %d ciphers\n",
1190                 sk_SSL_CIPHER_num(ciphers));
1191 #endif
1192         for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
1193             c = sk_SSL_CIPHER_value(ciphers, i);
1194 #ifdef CIPHER_DEBUG
1195             fprintf(stderr, "client [%2d of %2d]:%s\n",
1196                     i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
1197 #endif
1198             if (c->id == id) {
1199                 j = 1;
1200                 break;
1201             }
1202         }
1203         /*
1204          * Disabled because it can be used in a ciphersuite downgrade attack:
1205          * CVE-2010-4180.
1206          */
1207 #if 0
1208         if (j == 0 && (s->options & SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG)
1209             && (sk_SSL_CIPHER_num(ciphers) == 1)) {
1210             /*
1211              * Special case as client bug workaround: the previously used
1212              * cipher may not be in the current list, the client instead
1213              * might be trying to continue using a cipher that before wasn't
1214              * chosen due to server preferences.  We'll have to reject the
1215              * connection if the cipher is not enabled, though.
1216              */
1217             c = sk_SSL_CIPHER_value(ciphers, 0);
1218             if (sk_SSL_CIPHER_find(SSL_get_ciphers(s), c) >= 0) {
1219                 s->session->cipher = c;
1220                 j = 1;
1221             }
1222         }
1223 #endif
1224         if (j == 0) {
1225             /*
1226              * we need to have the cipher in the cipher list if we are asked
1227              * to reuse it
1228              */
1229             al = SSL_AD_ILLEGAL_PARAMETER;
1230             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1231                    SSL_R_REQUIRED_CIPHER_MISSING);
1232             goto f_err;
1233         }
1234     }
1235
1236     /* compression */
1237     i = *(p++);
1238     if ((p + i) > (d + n)) {
1239         /* not enough data */
1240         al = SSL_AD_DECODE_ERROR;
1241         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
1242         goto f_err;
1243     }
1244     q = p;
1245     for (j = 0; j < i; j++) {
1246         if (p[j] == 0)
1247             break;
1248     }
1249
1250     p += i;
1251     if (j >= i) {
1252         /* no compress */
1253         al = SSL_AD_DECODE_ERROR;
1254         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
1255         goto f_err;
1256     }
1257 #ifndef OPENSSL_NO_TLSEXT
1258     /* TLS extensions */
1259     if (s->version >= SSL3_VERSION) {
1260         if (!ssl_parse_clienthello_tlsext(s, &p, d, n, &al)) {
1261             /* 'al' set by ssl_parse_clienthello_tlsext */
1262             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
1263             goto f_err;
1264         }
1265     }
1266     if (ssl_check_clienthello_tlsext_early(s) <= 0) {
1267         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1268         goto err;
1269     }
1270
1271     /*
1272      * Check if we want to use external pre-shared secret for this handshake
1273      * for not reused session only. We need to generate server_random before
1274      * calling tls_session_secret_cb in order to allow SessionTicket
1275      * processing to use it in key derivation.
1276      */
1277     {
1278         unsigned char *pos;
1279         pos = s->s3->server_random;
1280         if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
1281             al = SSL_AD_INTERNAL_ERROR;
1282             goto f_err;
1283         }
1284     }
1285
1286     if (!s->hit && s->version >= TLS1_VERSION && s->tls_session_secret_cb) {
1287         SSL_CIPHER *pref_cipher = NULL;
1288
1289         s->session->master_key_length = sizeof(s->session->master_key);
1290         if (s->tls_session_secret_cb(s, s->session->master_key,
1291                                      &s->session->master_key_length, ciphers,
1292                                      &pref_cipher,
1293                                      s->tls_session_secret_cb_arg)) {
1294             s->hit = 1;
1295             s->session->ciphers = ciphers;
1296             s->session->verify_result = X509_V_OK;
1297
1298             ciphers = NULL;
1299
1300             /* check if some cipher was preferred by call back */
1301             pref_cipher =
1302                 pref_cipher ? pref_cipher : ssl3_choose_cipher(s,
1303                                                                s->
1304                                                                session->ciphers,
1305                                                                SSL_get_ciphers
1306                                                                (s));
1307             if (pref_cipher == NULL) {
1308                 al = SSL_AD_HANDSHAKE_FAILURE;
1309                 SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1310                 goto f_err;
1311             }
1312
1313             s->session->cipher = pref_cipher;
1314
1315             if (s->cipher_list)
1316                 sk_SSL_CIPHER_free(s->cipher_list);
1317
1318             if (s->cipher_list_by_id)
1319                 sk_SSL_CIPHER_free(s->cipher_list_by_id);
1320
1321             s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
1322             s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
1323         }
1324     }
1325 #endif
1326
1327     /*
1328      * Worst case, we will use the NULL compression, but if we have other
1329      * options, we will now look for them.  We have i-1 compression
1330      * algorithms from the client, starting at q.
1331      */
1332     s->s3->tmp.new_compression = NULL;
1333 #ifndef OPENSSL_NO_COMP
1334     /* This only happens if we have a cache hit */
1335     if (s->session->compress_meth != 0) {
1336         int m, comp_id = s->session->compress_meth;
1337         /* Perform sanity checks on resumed compression algorithm */
1338         /* Can't disable compression */
1339         if (s->options & SSL_OP_NO_COMPRESSION) {
1340             al = SSL_AD_INTERNAL_ERROR;
1341             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1342                    SSL_R_INCONSISTENT_COMPRESSION);
1343             goto f_err;
1344         }
1345         /* Look for resumed compression method */
1346         for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
1347             comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1348             if (comp_id == comp->id) {
1349                 s->s3->tmp.new_compression = comp;
1350                 break;
1351             }
1352         }
1353         if (s->s3->tmp.new_compression == NULL) {
1354             al = SSL_AD_INTERNAL_ERROR;
1355             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1356                    SSL_R_INVALID_COMPRESSION_ALGORITHM);
1357             goto f_err;
1358         }
1359         /* Look for resumed method in compression list */
1360         for (m = 0; m < i; m++) {
1361             if (q[m] == comp_id)
1362                 break;
1363         }
1364         if (m >= i) {
1365             al = SSL_AD_ILLEGAL_PARAMETER;
1366             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
1367                    SSL_R_REQUIRED_COMPRESSSION_ALGORITHM_MISSING);
1368             goto f_err;
1369         }
1370     } else if (s->hit)
1371         comp = NULL;
1372     else if (!(s->options & SSL_OP_NO_COMPRESSION) && s->ctx->comp_methods) {
1373         /* See if we have a match */
1374         int m, nn, o, v, done = 0;
1375
1376         nn = sk_SSL_COMP_num(s->ctx->comp_methods);
1377         for (m = 0; m < nn; m++) {
1378             comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
1379             v = comp->id;
1380             for (o = 0; o < i; o++) {
1381                 if (v == q[o]) {
1382                     done = 1;
1383                     break;
1384                 }
1385             }
1386             if (done)
1387                 break;
1388         }
1389         if (done)
1390             s->s3->tmp.new_compression = comp;
1391         else
1392             comp = NULL;
1393     }
1394 #else
1395     /*
1396      * If compression is disabled we'd better not try to resume a session
1397      * using compression.
1398      */
1399     if (s->session->compress_meth != 0) {
1400         al = SSL_AD_INTERNAL_ERROR;
1401         SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
1402         goto f_err;
1403     }
1404 #endif
1405
1406     /*
1407      * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
1408      */
1409
1410     if (!s->hit) {
1411 #ifdef OPENSSL_NO_COMP
1412         s->session->compress_meth = 0;
1413 #else
1414         s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
1415 #endif
1416         if (s->session->ciphers != NULL)
1417             sk_SSL_CIPHER_free(s->session->ciphers);
1418         s->session->ciphers = ciphers;
1419         if (ciphers == NULL) {
1420             al = SSL_AD_INTERNAL_ERROR;
1421             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
1422             goto f_err;
1423         }
1424         ciphers = NULL;
1425         c = ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));
1426
1427         if (c == NULL) {
1428             al = SSL_AD_HANDSHAKE_FAILURE;
1429             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
1430             goto f_err;
1431         }
1432         s->s3->tmp.new_cipher = c;
1433     } else {
1434         /* Session-id reuse */
1435 #ifdef REUSE_CIPHER_BUG
1436         STACK_OF(SSL_CIPHER) *sk;
1437         SSL_CIPHER *nc = NULL;
1438         SSL_CIPHER *ec = NULL;
1439
1440         if (s->options & SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG) {
1441             sk = s->session->ciphers;
1442             for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
1443                 c = sk_SSL_CIPHER_value(sk, i);
1444                 if (c->algorithm_enc & SSL_eNULL)
1445                     nc = c;
1446                 if (SSL_C_IS_EXPORT(c))
1447                     ec = c;
1448             }
1449             if (nc != NULL)
1450                 s->s3->tmp.new_cipher = nc;
1451             else if (ec != NULL)
1452                 s->s3->tmp.new_cipher = ec;
1453             else
1454                 s->s3->tmp.new_cipher = s->session->cipher;
1455         } else
1456 #endif
1457             s->s3->tmp.new_cipher = s->session->cipher;
1458     }
1459
1460     if (TLS1_get_version(s) < TLS1_2_VERSION
1461         || !(s->verify_mode & SSL_VERIFY_PEER)) {
1462         if (!ssl3_digest_cached_records(s)) {
1463             al = SSL_AD_INTERNAL_ERROR;
1464             goto f_err;
1465         }
1466     }
1467
1468     /*-
1469      * we now have the following setup.
1470      * client_random
1471      * cipher_list          - our prefered list of ciphers
1472      * ciphers              - the clients prefered list of ciphers
1473      * compression          - basically ignored right now
1474      * ssl version is set   - sslv3
1475      * s->session           - The ssl session has been setup.
1476      * s->hit               - session reuse flag
1477      * s->tmp.new_cipher    - the new cipher to use.
1478      */
1479
1480     /* Handles TLS extensions that we couldn't check earlier */
1481     if (s->version >= SSL3_VERSION) {
1482         if (ssl_check_clienthello_tlsext_late(s) <= 0) {
1483             SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
1484             goto err;
1485         }
1486     }
1487
1488     if (ret < 0)
1489         ret = 1;
1490     if (0) {
1491  f_err:
1492         ssl3_send_alert(s, SSL3_AL_FATAL, al);
1493  err:
1494         s->state = SSL_ST_ERR;
1495     }
1496
1497     if (ciphers != NULL)
1498         sk_SSL_CIPHER_free(ciphers);
1499     return (ret);
1500 }
1501
1502 int ssl3_send_server_hello(SSL *s)
1503 {
1504     unsigned char *buf;
1505     unsigned char *p, *d;
1506     int i, sl;
1507     unsigned long l;
1508
1509     if (s->state == SSL3_ST_SW_SRVR_HELLO_A) {
1510         buf = (unsigned char *)s->init_buf->data;
1511 #ifdef OPENSSL_NO_TLSEXT
1512         p = s->s3->server_random;
1513         if (ssl_fill_hello_random(s, 1, p, SSL3_RANDOM_SIZE) <= 0)
1514             return -1;
1515 #endif
1516         /* Do the message type and length last */
1517         d = p = &(buf[4]);
1518
1519         *(p++) = s->version >> 8;
1520         *(p++) = s->version & 0xff;
1521
1522         /* Random stuff */
1523         memcpy(p, s->s3->server_random, SSL3_RANDOM_SIZE);
1524         p += SSL3_RANDOM_SIZE;
1525
1526         /*-
1527          * There are several cases for the session ID to send
1528          * back in the server hello:
1529          * - For session reuse from the session cache,
1530          *   we send back the old session ID.
1531          * - If stateless session reuse (using a session ticket)
1532          *   is successful, we send back the client's "session ID"
1533          *   (which doesn't actually identify the session).
1534          * - If it is a new session, we send back the new
1535          *   session ID.
1536          * - However, if we want the new session to be single-use,
1537          *   we send back a 0-length session ID.
1538          * s->hit is non-zero in either case of session reuse,
1539          * so the following won't overwrite an ID that we're supposed
1540          * to send back.
1541          */
1542         if (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
1543             && !s->hit)
1544             s->session->session_id_length = 0;
1545
1546         sl = s->session->session_id_length;
1547         if (sl > (int)sizeof(s->session->session_id)) {
1548             SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1549             return -1;
1550         }
1551         *(p++) = sl;
1552         memcpy(p, s->session->session_id, sl);
1553         p += sl;
1554
1555         /* put the cipher */
1556         i = ssl3_put_cipher_by_char(s->s3->tmp.new_cipher, p);
1557         p += i;
1558
1559         /* put the compression method */
1560 #ifdef OPENSSL_NO_COMP
1561         *(p++) = 0;
1562 #else
1563         if (s->s3->tmp.new_compression == NULL)
1564             *(p++) = 0;
1565         else
1566             *(p++) = s->s3->tmp.new_compression->id;
1567 #endif
1568 #ifndef OPENSSL_NO_TLSEXT
1569         if (ssl_prepare_serverhello_tlsext(s) <= 0) {
1570             SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, SSL_R_SERVERHELLO_TLSEXT);
1571             return -1;
1572         }
1573         if ((p =
1574              ssl_add_serverhello_tlsext(s, p,
1575                                         buf + SSL3_RT_MAX_PLAIN_LENGTH)) ==
1576             NULL) {
1577             SSLerr(SSL_F_SSL3_SEND_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
1578             return -1;
1579         }
1580 #endif
1581         /* do the header */
1582         l = (p - d);
1583         d = buf;
1584         *(d++) = SSL3_MT_SERVER_HELLO;
1585         l2n3(l, d);
1586
1587         s->state = SSL3_ST_SW_SRVR_HELLO_B;
1588         /* number of bytes to write */
1589         s->init_num = p - buf;
1590         s->init_off = 0;
1591     }
1592
1593     /* SSL3_ST_SW_SRVR_HELLO_B */
1594     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
1595 }
1596
1597 int ssl3_send_server_done(SSL *s)
1598 {
1599     unsigned char *p;
1600
1601     if (s->state == SSL3_ST_SW_SRVR_DONE_A) {
1602         p = (unsigned char *)s->init_buf->data;
1603
1604         /* do the header */
1605         *(p++) = SSL3_MT_SERVER_DONE;
1606         *(p++) = 0;
1607         *(p++) = 0;
1608         *(p++) = 0;
1609
1610         s->state = SSL3_ST_SW_SRVR_DONE_B;
1611         /* number of bytes to write */
1612         s->init_num = 4;
1613         s->init_off = 0;
1614     }
1615
1616     /* SSL3_ST_SW_SRVR_DONE_B */
1617     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
1618 }
1619
1620 int ssl3_send_server_key_exchange(SSL *s)
1621 {
1622 #ifndef OPENSSL_NO_RSA
1623     unsigned char *q;
1624     int j, num;
1625     RSA *rsa;
1626     unsigned char md_buf[MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH];
1627     unsigned int u;
1628 #endif
1629 #ifndef OPENSSL_NO_DH
1630     DH *dh = NULL, *dhp;
1631 #endif
1632 #ifndef OPENSSL_NO_ECDH
1633     EC_KEY *ecdh = NULL, *ecdhp;
1634     unsigned char *encodedPoint = NULL;
1635     int encodedlen = 0;
1636     int curve_id = 0;
1637     BN_CTX *bn_ctx = NULL;
1638 #endif
1639     EVP_PKEY *pkey;
1640     const EVP_MD *md = NULL;
1641     unsigned char *p, *d;
1642     int al, i;
1643     unsigned long type;
1644     int n;
1645     CERT *cert;
1646     BIGNUM *r[4];
1647     int nr[4], kn;
1648     BUF_MEM *buf;
1649     EVP_MD_CTX md_ctx;
1650
1651     EVP_MD_CTX_init(&md_ctx);
1652     if (s->state == SSL3_ST_SW_KEY_EXCH_A) {
1653         type = s->s3->tmp.new_cipher->algorithm_mkey;
1654         cert = s->cert;
1655
1656         buf = s->init_buf;
1657
1658         r[0] = r[1] = r[2] = r[3] = NULL;
1659         n = 0;
1660 #ifndef OPENSSL_NO_RSA
1661         if (type & SSL_kRSA) {
1662             rsa = cert->rsa_tmp;
1663             if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL)) {
1664                 rsa = s->cert->rsa_tmp_cb(s,
1665                                           SSL_C_IS_EXPORT(s->s3->
1666                                                           tmp.new_cipher),
1667                                           SSL_C_EXPORT_PKEYLENGTH(s->s3->
1668                                                                   tmp.new_cipher));
1669                 if (rsa == NULL) {
1670                     al = SSL_AD_HANDSHAKE_FAILURE;
1671                     SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1672                            SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
1673                     goto f_err;
1674                 }
1675                 RSA_up_ref(rsa);
1676                 cert->rsa_tmp = rsa;
1677             }
1678             if (rsa == NULL) {
1679                 al = SSL_AD_HANDSHAKE_FAILURE;
1680                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1681                        SSL_R_MISSING_TMP_RSA_KEY);
1682                 goto f_err;
1683             }
1684             r[0] = rsa->n;
1685             r[1] = rsa->e;
1686             s->s3->tmp.use_rsa_tmp = 1;
1687         } else
1688 #endif
1689 #ifndef OPENSSL_NO_DH
1690         if (type & SSL_kEDH) {
1691             dhp = cert->dh_tmp;
1692             if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
1693                 dhp = s->cert->dh_tmp_cb(s,
1694                                          SSL_C_IS_EXPORT(s->s3->
1695                                                          tmp.new_cipher),
1696                                          SSL_C_EXPORT_PKEYLENGTH(s->s3->
1697                                                                  tmp.new_cipher));
1698             if (dhp == NULL) {
1699                 al = SSL_AD_HANDSHAKE_FAILURE;
1700                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1701                        SSL_R_MISSING_TMP_DH_KEY);
1702                 goto f_err;
1703             }
1704
1705             if (s->s3->tmp.dh != NULL) {
1706                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1707                        ERR_R_INTERNAL_ERROR);
1708                 goto err;
1709             }
1710
1711             if ((dh = DHparams_dup(dhp)) == NULL) {
1712                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
1713                 goto err;
1714             }
1715
1716             s->s3->tmp.dh = dh;
1717             if ((dhp->pub_key == NULL ||
1718                  dhp->priv_key == NULL ||
1719                  (s->options & SSL_OP_SINGLE_DH_USE))) {
1720                 if (!DH_generate_key(dh)) {
1721                     SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
1722                     goto err;
1723                 }
1724             } else {
1725                 dh->pub_key = BN_dup(dhp->pub_key);
1726                 dh->priv_key = BN_dup(dhp->priv_key);
1727                 if ((dh->pub_key == NULL) || (dh->priv_key == NULL)) {
1728                     SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
1729                     goto err;
1730                 }
1731             }
1732             r[0] = dh->p;
1733             r[1] = dh->g;
1734             r[2] = dh->pub_key;
1735         } else
1736 #endif
1737 #ifndef OPENSSL_NO_ECDH
1738         if (type & SSL_kEECDH) {
1739             const EC_GROUP *group;
1740
1741             ecdhp = cert->ecdh_tmp;
1742             if ((ecdhp == NULL) && (s->cert->ecdh_tmp_cb != NULL)) {
1743                 ecdhp = s->cert->ecdh_tmp_cb(s,
1744                                              SSL_C_IS_EXPORT(s->s3->
1745                                                              tmp.new_cipher),
1746                                              SSL_C_EXPORT_PKEYLENGTH(s->
1747                                                                      s3->tmp.new_cipher));
1748             }
1749             if (ecdhp == NULL) {
1750                 al = SSL_AD_HANDSHAKE_FAILURE;
1751                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1752                        SSL_R_MISSING_TMP_ECDH_KEY);
1753                 goto f_err;
1754             }
1755
1756             if (s->s3->tmp.ecdh != NULL) {
1757                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1758                        ERR_R_INTERNAL_ERROR);
1759                 goto err;
1760             }
1761
1762             /* Duplicate the ECDH structure. */
1763             if (ecdhp == NULL) {
1764                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1765                 goto err;
1766             }
1767             if ((ecdh = EC_KEY_dup(ecdhp)) == NULL) {
1768                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1769                 goto err;
1770             }
1771
1772             s->s3->tmp.ecdh = ecdh;
1773             if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1774                 (EC_KEY_get0_private_key(ecdh) == NULL) ||
1775                 (s->options & SSL_OP_SINGLE_ECDH_USE)) {
1776                 if (!EC_KEY_generate_key(ecdh)) {
1777                     SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1778                            ERR_R_ECDH_LIB);
1779                     goto err;
1780                 }
1781             }
1782
1783             if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
1784                 (EC_KEY_get0_public_key(ecdh) == NULL) ||
1785                 (EC_KEY_get0_private_key(ecdh) == NULL)) {
1786                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1787                 goto err;
1788             }
1789
1790             if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
1791                 (EC_GROUP_get_degree(group) > 163)) {
1792                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1793                        SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
1794                 goto err;
1795             }
1796
1797             /*
1798              * XXX: For now, we only support ephemeral ECDH keys over named
1799              * (not generic) curves. For supported named curves, curve_id is
1800              * non-zero.
1801              */
1802             if ((curve_id =
1803                  tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
1804                 == 0) {
1805                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1806                        SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
1807                 goto err;
1808             }
1809
1810             /*
1811              * Encode the public key. First check the size of encoding and
1812              * allocate memory accordingly.
1813              */
1814             encodedlen = EC_POINT_point2oct(group,
1815                                             EC_KEY_get0_public_key(ecdh),
1816                                             POINT_CONVERSION_UNCOMPRESSED,
1817                                             NULL, 0, NULL);
1818
1819             encodedPoint = (unsigned char *)
1820                 OPENSSL_malloc(encodedlen * sizeof(unsigned char));
1821             bn_ctx = BN_CTX_new();
1822             if ((encodedPoint == NULL) || (bn_ctx == NULL)) {
1823                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1824                        ERR_R_MALLOC_FAILURE);
1825                 goto err;
1826             }
1827
1828             encodedlen = EC_POINT_point2oct(group,
1829                                             EC_KEY_get0_public_key(ecdh),
1830                                             POINT_CONVERSION_UNCOMPRESSED,
1831                                             encodedPoint, encodedlen, bn_ctx);
1832
1833             if (encodedlen == 0) {
1834                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
1835                 goto err;
1836             }
1837
1838             BN_CTX_free(bn_ctx);
1839             bn_ctx = NULL;
1840
1841             /*
1842              * XXX: For now, we only support named (not generic) curves in
1843              * ECDH ephemeral key exchanges. In this situation, we need four
1844              * additional bytes to encode the entire ServerECDHParams
1845              * structure.
1846              */
1847             n = 4 + encodedlen;
1848
1849             /*
1850              * We'll generate the serverKeyExchange message explicitly so we
1851              * can set these to NULLs
1852              */
1853             r[0] = NULL;
1854             r[1] = NULL;
1855             r[2] = NULL;
1856             r[3] = NULL;
1857         } else
1858 #endif                          /* !OPENSSL_NO_ECDH */
1859 #ifndef OPENSSL_NO_PSK
1860         if (type & SSL_kPSK) {
1861             /*
1862              * reserve size for record length and PSK identity hint
1863              */
1864             n += 2 + strlen(s->ctx->psk_identity_hint);
1865         } else
1866 #endif                          /* !OPENSSL_NO_PSK */
1867 #ifndef OPENSSL_NO_SRP
1868         if (type & SSL_kSRP) {
1869             if ((s->srp_ctx.N == NULL) ||
1870                 (s->srp_ctx.g == NULL) ||
1871                 (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
1872                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1873                        SSL_R_MISSING_SRP_PARAM);
1874                 goto err;
1875             }
1876             r[0] = s->srp_ctx.N;
1877             r[1] = s->srp_ctx.g;
1878             r[2] = s->srp_ctx.s;
1879             r[3] = s->srp_ctx.B;
1880         } else
1881 #endif
1882         {
1883             al = SSL_AD_HANDSHAKE_FAILURE;
1884             SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
1885                    SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
1886             goto f_err;
1887         }
1888         for (i = 0; i < 4 && r[i] != NULL; i++) {
1889             nr[i] = BN_num_bytes(r[i]);
1890 #ifndef OPENSSL_NO_SRP
1891             if ((i == 2) && (type & SSL_kSRP))
1892                 n += 1 + nr[i];
1893             else
1894 #endif
1895                 n += 2 + nr[i];
1896         }
1897
1898         if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP))
1899             && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) {
1900             if ((pkey = ssl_get_sign_pkey(s, s->s3->tmp.new_cipher, &md))
1901                 == NULL) {
1902                 al = SSL_AD_DECODE_ERROR;
1903                 goto f_err;
1904             }
1905             kn = EVP_PKEY_size(pkey);
1906         } else {
1907             pkey = NULL;
1908             kn = 0;
1909         }
1910
1911         if (!BUF_MEM_grow_clean(buf, n + 4 + kn)) {
1912             SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_LIB_BUF);
1913             goto err;
1914         }
1915         d = (unsigned char *)s->init_buf->data;
1916         p = &(d[4]);
1917
1918         for (i = 0; i < 4 && r[i] != NULL; i++) {
1919 #ifndef OPENSSL_NO_SRP
1920             if ((i == 2) && (type & SSL_kSRP)) {
1921                 *p = nr[i];
1922                 p++;
1923             } else
1924 #endif
1925                 s2n(nr[i], p);
1926             BN_bn2bin(r[i], p);
1927             p += nr[i];
1928         }
1929
1930 #ifndef OPENSSL_NO_ECDH
1931         if (type & SSL_kEECDH) {
1932             /*
1933              * XXX: For now, we only support named (not generic) curves. In
1934              * this situation, the serverKeyExchange message has: [1 byte
1935              * CurveType], [2 byte CurveName] [1 byte length of encoded
1936              * point], followed by the actual encoded point itself
1937              */
1938             *p = NAMED_CURVE_TYPE;
1939             p += 1;
1940             *p = 0;
1941             p += 1;
1942             *p = curve_id;
1943             p += 1;
1944             *p = encodedlen;
1945             p += 1;
1946             memcpy((unsigned char *)p,
1947                    (unsigned char *)encodedPoint, encodedlen);
1948             OPENSSL_free(encodedPoint);
1949             encodedPoint = NULL;
1950             p += encodedlen;
1951         }
1952 #endif
1953
1954 #ifndef OPENSSL_NO_PSK
1955         if (type & SSL_kPSK) {
1956             /* copy PSK identity hint */
1957             s2n(strlen(s->ctx->psk_identity_hint), p);
1958             strncpy((char *)p, s->ctx->psk_identity_hint,
1959                     strlen(s->ctx->psk_identity_hint));
1960             p += strlen(s->ctx->psk_identity_hint);
1961         }
1962 #endif
1963
1964         /* not anonymous */
1965         if (pkey != NULL) {
1966             /*
1967              * n is the length of the params, they start at &(d[4]) and p
1968              * points to the space at the end.
1969              */
1970 #ifndef OPENSSL_NO_RSA
1971             if (pkey->type == EVP_PKEY_RSA
1972                 && TLS1_get_version(s) < TLS1_2_VERSION) {
1973                 q = md_buf;
1974                 j = 0;
1975                 for (num = 2; num > 0; num--) {
1976                     EVP_MD_CTX_set_flags(&md_ctx,
1977                                          EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
1978                     EVP_DigestInit_ex(&md_ctx, (num == 2)
1979                                       ? s->ctx->md5 : s->ctx->sha1, NULL);
1980                     EVP_DigestUpdate(&md_ctx, &(s->s3->client_random[0]),
1981                                      SSL3_RANDOM_SIZE);
1982                     EVP_DigestUpdate(&md_ctx, &(s->s3->server_random[0]),
1983                                      SSL3_RANDOM_SIZE);
1984                     EVP_DigestUpdate(&md_ctx, &(d[4]), n);
1985                     EVP_DigestFinal_ex(&md_ctx, q, (unsigned int *)&i);
1986                     q += i;
1987                     j += i;
1988                 }
1989                 if (RSA_sign(NID_md5_sha1, md_buf, j,
1990                              &(p[2]), &u, pkey->pkey.rsa) <= 0) {
1991                     SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_LIB_RSA);
1992                     goto err;
1993                 }
1994                 s2n(u, p);
1995                 n += u + 2;
1996             } else
1997 #endif
1998             if (md) {
1999                 /*
2000                  * For TLS1.2 and later send signature algorithm
2001                  */
2002                 if (TLS1_get_version(s) >= TLS1_2_VERSION) {
2003                     if (!tls12_get_sigandhash(p, pkey, md)) {
2004                         /* Should never happen */
2005                         al = SSL_AD_INTERNAL_ERROR;
2006                         SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
2007                                ERR_R_INTERNAL_ERROR);
2008                         goto f_err;
2009                     }
2010                     p += 2;
2011                 }
2012 #ifdef SSL_DEBUG
2013                 fprintf(stderr, "Using hash %s\n", EVP_MD_name(md));
2014 #endif
2015                 EVP_SignInit_ex(&md_ctx, md, NULL);
2016                 EVP_SignUpdate(&md_ctx, &(s->s3->client_random[0]),
2017                                SSL3_RANDOM_SIZE);
2018                 EVP_SignUpdate(&md_ctx, &(s->s3->server_random[0]),
2019                                SSL3_RANDOM_SIZE);
2020                 EVP_SignUpdate(&md_ctx, &(d[4]), n);
2021                 if (!EVP_SignFinal(&md_ctx, &(p[2]),
2022                                    (unsigned int *)&i, pkey)) {
2023                     SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE, ERR_LIB_EVP);
2024                     goto err;
2025                 }
2026                 s2n(i, p);
2027                 n += i + 2;
2028                 if (TLS1_get_version(s) >= TLS1_2_VERSION)
2029                     n += 2;
2030             } else {
2031                 /* Is this error check actually needed? */
2032                 al = SSL_AD_HANDSHAKE_FAILURE;
2033                 SSLerr(SSL_F_SSL3_SEND_SERVER_KEY_EXCHANGE,
2034                        SSL_R_UNKNOWN_PKEY_TYPE);
2035                 goto f_err;
2036             }
2037         }
2038
2039         *(d++) = SSL3_MT_SERVER_KEY_EXCHANGE;
2040         l2n3(n, d);
2041
2042         /*
2043          * we should now have things packed up, so lets send it off
2044          */
2045         s->init_num = n + 4;
2046         s->init_off = 0;
2047     }
2048
2049     s->state = SSL3_ST_SW_KEY_EXCH_B;
2050     EVP_MD_CTX_cleanup(&md_ctx);
2051     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
2052  f_err:
2053     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2054  err:
2055 #ifndef OPENSSL_NO_ECDH
2056     if (encodedPoint != NULL)
2057         OPENSSL_free(encodedPoint);
2058     BN_CTX_free(bn_ctx);
2059 #endif
2060     EVP_MD_CTX_cleanup(&md_ctx);
2061     return (-1);
2062 }
2063
2064 int ssl3_send_certificate_request(SSL *s)
2065 {
2066     unsigned char *p, *d;
2067     int i, j, nl, off, n;
2068     STACK_OF(X509_NAME) *sk = NULL;
2069     X509_NAME *name;
2070     BUF_MEM *buf;
2071
2072     if (s->state == SSL3_ST_SW_CERT_REQ_A) {
2073         buf = s->init_buf;
2074
2075         d = p = (unsigned char *)&(buf->data[4]);
2076
2077         /* get the list of acceptable cert types */
2078         p++;
2079         n = ssl3_get_req_cert_type(s, p);
2080         d[0] = n;
2081         p += n;
2082         n++;
2083
2084         if (TLS1_get_version(s) >= TLS1_2_VERSION) {
2085             nl = tls12_get_req_sig_algs(s, p + 2);
2086             s2n(nl, p);
2087             p += nl + 2;
2088             n += nl + 2;
2089         }
2090
2091         off = n;
2092         p += 2;
2093         n += 2;
2094
2095         sk = SSL_get_client_CA_list(s);
2096         nl = 0;
2097         if (sk != NULL) {
2098             for (i = 0; i < sk_X509_NAME_num(sk); i++) {
2099                 name = sk_X509_NAME_value(sk, i);
2100                 j = i2d_X509_NAME(name, NULL);
2101                 if (!BUF_MEM_grow_clean(buf, 4 + n + j + 2)) {
2102                     SSLerr(SSL_F_SSL3_SEND_CERTIFICATE_REQUEST,
2103                            ERR_R_BUF_LIB);
2104                     goto err;
2105                 }
2106                 p = (unsigned char *)&(buf->data[4 + n]);
2107                 if (!(s->options & SSL_OP_NETSCAPE_CA_DN_BUG)) {
2108                     s2n(j, p);
2109                     i2d_X509_NAME(name, &p);
2110                     n += 2 + j;
2111                     nl += 2 + j;
2112                 } else {
2113                     d = p;
2114                     i2d_X509_NAME(name, &p);
2115                     j -= 2;
2116                     s2n(j, d);
2117                     j += 2;
2118                     n += j;
2119                     nl += j;
2120                 }
2121             }
2122         }
2123         /* else no CA names */
2124         p = (unsigned char *)&(buf->data[4 + off]);
2125         s2n(nl, p);
2126
2127         d = (unsigned char *)buf->data;
2128         *(d++) = SSL3_MT_CERTIFICATE_REQUEST;
2129         l2n3(n, d);
2130
2131         /*
2132          * we should now have things packed up, so lets send it off
2133          */
2134
2135         s->init_num = n + 4;
2136         s->init_off = 0;
2137 #ifdef NETSCAPE_HANG_BUG
2138         if (!BUF_MEM_grow_clean(buf, s->init_num + 4)) {
2139             SSLerr(SSL_F_SSL3_SEND_CERTIFICATE_REQUEST, ERR_R_BUF_LIB);
2140             goto err;
2141         }
2142         p = (unsigned char *)s->init_buf->data + s->init_num;
2143
2144         /* do the header */
2145         *(p++) = SSL3_MT_SERVER_DONE;
2146         *(p++) = 0;
2147         *(p++) = 0;
2148         *(p++) = 0;
2149         s->init_num += 4;
2150 #endif
2151
2152         s->state = SSL3_ST_SW_CERT_REQ_B;
2153     }
2154
2155     /* SSL3_ST_SW_CERT_REQ_B */
2156     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
2157  err:
2158     return (-1);
2159 }
2160
2161 int ssl3_get_client_key_exchange(SSL *s)
2162 {
2163     int i, al, ok;
2164     long n;
2165     unsigned long alg_k;
2166     unsigned char *p;
2167 #ifndef OPENSSL_NO_RSA
2168     RSA *rsa = NULL;
2169     EVP_PKEY *pkey = NULL;
2170 #endif
2171 #ifndef OPENSSL_NO_DH
2172     BIGNUM *pub = NULL;
2173     DH *dh_srvr;
2174 #endif
2175 #ifndef OPENSSL_NO_KRB5
2176     KSSL_ERR kssl_err;
2177 #endif                          /* OPENSSL_NO_KRB5 */
2178
2179 #ifndef OPENSSL_NO_ECDH
2180     EC_KEY *srvr_ecdh = NULL;
2181     EVP_PKEY *clnt_pub_pkey = NULL;
2182     EC_POINT *clnt_ecpoint = NULL;
2183     BN_CTX *bn_ctx = NULL;
2184 #endif
2185
2186     n = s->method->ssl_get_message(s,
2187                                    SSL3_ST_SR_KEY_EXCH_A,
2188                                    SSL3_ST_SR_KEY_EXCH_B,
2189                                    SSL3_MT_CLIENT_KEY_EXCHANGE, 2048, &ok);
2190
2191     if (!ok)
2192         return ((int)n);
2193     p = (unsigned char *)s->init_msg;
2194
2195     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
2196
2197 #ifndef OPENSSL_NO_RSA
2198     if (alg_k & SSL_kRSA) {
2199         unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
2200         int decrypt_len;
2201         unsigned char decrypt_good, version_good;
2202         size_t j;
2203
2204         /* FIX THIS UP EAY EAY EAY EAY */
2205         if (s->s3->tmp.use_rsa_tmp) {
2206             if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
2207                 rsa = s->cert->rsa_tmp;
2208             /*
2209              * Don't do a callback because rsa_tmp should be sent already
2210              */
2211             if (rsa == NULL) {
2212                 al = SSL_AD_HANDSHAKE_FAILURE;
2213                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2214                        SSL_R_MISSING_TMP_RSA_PKEY);
2215                 goto f_err;
2216
2217             }
2218         } else {
2219             pkey = s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
2220             if ((pkey == NULL) ||
2221                 (pkey->type != EVP_PKEY_RSA) || (pkey->pkey.rsa == NULL)) {
2222                 al = SSL_AD_HANDSHAKE_FAILURE;
2223                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2224                        SSL_R_MISSING_RSA_CERTIFICATE);
2225                 goto f_err;
2226             }
2227             rsa = pkey->pkey.rsa;
2228         }
2229
2230         /* TLS and [incidentally] DTLS{0xFEFF} */
2231         if (s->version > SSL3_VERSION && s->version != DTLS1_BAD_VER) {
2232             n2s(p, i);
2233             if (n != i + 2) {
2234                 if (!(s->options & SSL_OP_TLS_D5_BUG)) {
2235                     al = SSL_AD_DECODE_ERROR;
2236                     SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2237                            SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG);
2238                     goto f_err;
2239                 } else
2240                     p -= 2;
2241             } else
2242                 n = i;
2243         }
2244
2245         /*
2246          * Reject overly short RSA ciphertext because we want to be sure
2247          * that the buffer size makes it safe to iterate over the entire
2248          * size of a premaster secret (SSL_MAX_MASTER_KEY_LENGTH). The
2249          * actual expected size is larger due to RSA padding, but the
2250          * bound is sufficient to be safe.
2251          */
2252         if (n < SSL_MAX_MASTER_KEY_LENGTH) {
2253             al = SSL_AD_DECRYPT_ERROR;
2254             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2255                    SSL_R_TLS_RSA_ENCRYPTED_VALUE_LENGTH_IS_WRONG);
2256             goto f_err;
2257         }
2258
2259         /*
2260          * We must not leak whether a decryption failure occurs because of
2261          * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
2262          * section 7.4.7.1). The code follows that advice of the TLS RFC and
2263          * generates a random premaster secret for the case that the decrypt
2264          * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
2265          */
2266
2267         /*
2268          * should be RAND_bytes, but we cannot work around a failure.
2269          */
2270         if (RAND_pseudo_bytes(rand_premaster_secret,
2271                               sizeof(rand_premaster_secret)) <= 0)
2272             goto err;
2273         decrypt_len =
2274             RSA_private_decrypt((int)n, p, p, rsa, RSA_PKCS1_PADDING);
2275         ERR_clear_error();
2276
2277         /*
2278          * decrypt_len should be SSL_MAX_MASTER_KEY_LENGTH. decrypt_good will
2279          * be 0xff if so and zero otherwise.
2280          */
2281         decrypt_good =
2282             constant_time_eq_int_8(decrypt_len, SSL_MAX_MASTER_KEY_LENGTH);
2283
2284         /*
2285          * If the version in the decrypted pre-master secret is correct then
2286          * version_good will be 0xff, otherwise it'll be zero. The
2287          * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
2288          * (http://eprint.iacr.org/2003/052/) exploits the version number
2289          * check as a "bad version oracle". Thus version checks are done in
2290          * constant time and are treated like any other decryption error.
2291          */
2292         version_good =
2293             constant_time_eq_8(p[0], (unsigned)(s->client_version >> 8));
2294         version_good &=
2295             constant_time_eq_8(p[1], (unsigned)(s->client_version & 0xff));
2296
2297         /*
2298          * The premaster secret must contain the same version number as the
2299          * ClientHello to detect version rollback attacks (strangely, the
2300          * protocol does not offer such protection for DH ciphersuites).
2301          * However, buggy clients exist that send the negotiated protocol
2302          * version instead if the server does not support the requested
2303          * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
2304          * clients.
2305          */
2306         if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
2307             unsigned char workaround_good;
2308             workaround_good =
2309                 constant_time_eq_8(p[0], (unsigned)(s->version >> 8));
2310             workaround_good &=
2311                 constant_time_eq_8(p[1], (unsigned)(s->version & 0xff));
2312             version_good |= workaround_good;
2313         }
2314
2315         /*
2316          * Both decryption and version must be good for decrypt_good to
2317          * remain non-zero (0xff).
2318          */
2319         decrypt_good &= version_good;
2320
2321         /*
2322          * Now copy rand_premaster_secret over from p using
2323          * decrypt_good_mask. If decryption failed, then p does not
2324          * contain valid plaintext, however, a check above guarantees
2325          * it is still sufficiently large to read from.
2326          */
2327         for (j = 0; j < sizeof(rand_premaster_secret); j++) {
2328             p[j] = constant_time_select_8(decrypt_good, p[j],
2329                                           rand_premaster_secret[j]);
2330         }
2331
2332         s->session->master_key_length =
2333             s->method->ssl3_enc->generate_master_secret(s,
2334                                                         s->
2335                                                         session->master_key,
2336                                                         p,
2337                                                         sizeof
2338                                                         (rand_premaster_secret));
2339         OPENSSL_cleanse(p, sizeof(rand_premaster_secret));
2340     } else
2341 #endif
2342 #ifndef OPENSSL_NO_DH
2343     if (alg_k & (SSL_kEDH | SSL_kDHr | SSL_kDHd)) {
2344         n2s(p, i);
2345         if (n != i + 2) {
2346             if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG)) {
2347                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2348                        SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
2349                 goto err;
2350             } else {
2351                 p -= 2;
2352                 i = (int)n;
2353             }
2354         }
2355
2356         if (n == 0L) {          /* the parameters are in the cert */
2357             al = SSL_AD_HANDSHAKE_FAILURE;
2358             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2359                    SSL_R_UNABLE_TO_DECODE_DH_CERTS);
2360             goto f_err;
2361         } else {
2362             if (s->s3->tmp.dh == NULL) {
2363                 al = SSL_AD_HANDSHAKE_FAILURE;
2364                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2365                        SSL_R_MISSING_TMP_DH_KEY);
2366                 goto f_err;
2367             } else
2368                 dh_srvr = s->s3->tmp.dh;
2369         }
2370
2371         pub = BN_bin2bn(p, i, NULL);
2372         if (pub == NULL) {
2373             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, SSL_R_BN_LIB);
2374             goto err;
2375         }
2376
2377         i = DH_compute_key(p, pub, dh_srvr);
2378
2379         if (i <= 0) {
2380             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_DH_LIB);
2381             BN_clear_free(pub);
2382             goto err;
2383         }
2384
2385         DH_free(s->s3->tmp.dh);
2386         s->s3->tmp.dh = NULL;
2387
2388         BN_clear_free(pub);
2389         pub = NULL;
2390         s->session->master_key_length =
2391             s->method->ssl3_enc->generate_master_secret(s,
2392                                                         s->
2393                                                         session->master_key,
2394                                                         p, i);
2395         OPENSSL_cleanse(p, i);
2396     } else
2397 #endif
2398 #ifndef OPENSSL_NO_KRB5
2399     if (alg_k & SSL_kKRB5) {
2400         krb5_error_code krb5rc;
2401         krb5_data enc_ticket;
2402         krb5_data authenticator;
2403         krb5_data enc_pms;
2404         KSSL_CTX *kssl_ctx = s->kssl_ctx;
2405         EVP_CIPHER_CTX ciph_ctx;
2406         const EVP_CIPHER *enc = NULL;
2407         unsigned char iv[EVP_MAX_IV_LENGTH];
2408         unsigned char pms[SSL_MAX_MASTER_KEY_LENGTH + EVP_MAX_BLOCK_LENGTH];
2409         int padl, outl;
2410         krb5_timestamp authtime = 0;
2411         krb5_ticket_times ttimes;
2412
2413         EVP_CIPHER_CTX_init(&ciph_ctx);
2414
2415         if (!kssl_ctx)
2416             kssl_ctx = kssl_ctx_new();
2417
2418         n2s(p, i);
2419         enc_ticket.length = i;
2420
2421         if (n < (long)(enc_ticket.length + 6)) {
2422             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2423                    SSL_R_DATA_LENGTH_TOO_LONG);
2424             goto err;
2425         }
2426
2427         enc_ticket.data = (char *)p;
2428         p += enc_ticket.length;
2429
2430         n2s(p, i);
2431         authenticator.length = i;
2432
2433         if (n < (long)(enc_ticket.length + authenticator.length + 6)) {
2434             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2435                    SSL_R_DATA_LENGTH_TOO_LONG);
2436             goto err;
2437         }
2438
2439         authenticator.data = (char *)p;
2440         p += authenticator.length;
2441
2442         n2s(p, i);
2443         enc_pms.length = i;
2444         enc_pms.data = (char *)p;
2445         p += enc_pms.length;
2446
2447         /*
2448          * Note that the length is checked again below, ** after decryption
2449          */
2450         if (enc_pms.length > sizeof pms) {
2451             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2452                    SSL_R_DATA_LENGTH_TOO_LONG);
2453             goto err;
2454         }
2455
2456         if (n != (long)(enc_ticket.length + authenticator.length +
2457                         enc_pms.length + 6)) {
2458             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2459                    SSL_R_DATA_LENGTH_TOO_LONG);
2460             goto err;
2461         }
2462
2463         if ((krb5rc = kssl_sget_tkt(kssl_ctx, &enc_ticket, &ttimes,
2464                                     &kssl_err)) != 0) {
2465 # ifdef KSSL_DEBUG
2466             fprintf(stderr, "kssl_sget_tkt rtn %d [%d]\n",
2467                     krb5rc, kssl_err.reason);
2468             if (kssl_err.text)
2469                 fprintf(stderr, "kssl_err text= %s\n", kssl_err.text);
2470 # endif                         /* KSSL_DEBUG */
2471             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, kssl_err.reason);
2472             goto err;
2473         }
2474
2475         /*
2476          * Note: no authenticator is not considered an error, ** but will
2477          * return authtime == 0.
2478          */
2479         if ((krb5rc = kssl_check_authent(kssl_ctx, &authenticator,
2480                                          &authtime, &kssl_err)) != 0) {
2481 # ifdef KSSL_DEBUG
2482             fprintf(stderr, "kssl_check_authent rtn %d [%d]\n",
2483                     krb5rc, kssl_err.reason);
2484             if (kssl_err.text)
2485                 fprintf(stderr, "kssl_err text= %s\n", kssl_err.text);
2486 # endif                         /* KSSL_DEBUG */
2487             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, kssl_err.reason);
2488             goto err;
2489         }
2490
2491         if ((krb5rc = kssl_validate_times(authtime, &ttimes)) != 0) {
2492             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, krb5rc);
2493             goto err;
2494         }
2495 # ifdef KSSL_DEBUG
2496         kssl_ctx_show(kssl_ctx);
2497 # endif                         /* KSSL_DEBUG */
2498
2499         enc = kssl_map_enc(kssl_ctx->enctype);
2500         if (enc == NULL)
2501             goto err;
2502
2503         memset(iv, 0, sizeof iv); /* per RFC 1510 */
2504
2505         if (!EVP_DecryptInit_ex(&ciph_ctx, enc, NULL, kssl_ctx->key, iv)) {
2506             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2507                    SSL_R_DECRYPTION_FAILED);
2508             goto err;
2509         }
2510         if (!EVP_DecryptUpdate(&ciph_ctx, pms, &outl,
2511                                (unsigned char *)enc_pms.data, enc_pms.length))
2512         {
2513             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2514                    SSL_R_DECRYPTION_FAILED);
2515             goto err;
2516         }
2517         if (outl > SSL_MAX_MASTER_KEY_LENGTH) {
2518             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2519                    SSL_R_DATA_LENGTH_TOO_LONG);
2520             goto err;
2521         }
2522         if (!EVP_DecryptFinal_ex(&ciph_ctx, &(pms[outl]), &padl)) {
2523             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2524                    SSL_R_DECRYPTION_FAILED);
2525             goto err;
2526         }
2527         outl += padl;
2528         if (outl > SSL_MAX_MASTER_KEY_LENGTH) {
2529             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2530                    SSL_R_DATA_LENGTH_TOO_LONG);
2531             goto err;
2532         }
2533         if (!((pms[0] == (s->client_version >> 8))
2534               && (pms[1] == (s->client_version & 0xff)))) {
2535             /*
2536              * The premaster secret must contain the same version number as
2537              * the ClientHello to detect version rollback attacks (strangely,
2538              * the protocol does not offer such protection for DH
2539              * ciphersuites). However, buggy clients exist that send random
2540              * bytes instead of the protocol version. If
2541              * SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such clients.
2542              * (Perhaps we should have a separate BUG value for the Kerberos
2543              * cipher)
2544              */
2545             if (!(s->options & SSL_OP_TLS_ROLLBACK_BUG)) {
2546                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2547                        SSL_AD_DECODE_ERROR);
2548                 goto err;
2549             }
2550         }
2551
2552         EVP_CIPHER_CTX_cleanup(&ciph_ctx);
2553
2554         s->session->master_key_length =
2555             s->method->ssl3_enc->generate_master_secret(s,
2556                                                         s->
2557                                                         session->master_key,
2558                                                         pms, outl);
2559
2560         if (kssl_ctx->client_princ) {
2561             size_t len = strlen(kssl_ctx->client_princ);
2562             if (len < SSL_MAX_KRB5_PRINCIPAL_LENGTH) {
2563                 s->session->krb5_client_princ_len = len;
2564                 memcpy(s->session->krb5_client_princ, kssl_ctx->client_princ,
2565                        len);
2566             }
2567         }
2568
2569         /*- Was doing kssl_ctx_free() here,
2570          *  but it caused problems for apache.
2571          *  kssl_ctx = kssl_ctx_free(kssl_ctx);
2572          *  if (s->kssl_ctx)  s->kssl_ctx = NULL;
2573          */
2574     } else
2575 #endif                          /* OPENSSL_NO_KRB5 */
2576
2577 #ifndef OPENSSL_NO_ECDH
2578     if (alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe)) {
2579         int ret = 1;
2580         int field_size = 0;
2581         const EC_KEY *tkey;
2582         const EC_GROUP *group;
2583         const BIGNUM *priv_key;
2584
2585         /* initialize structures for server's ECDH key pair */
2586         if ((srvr_ecdh = EC_KEY_new()) == NULL) {
2587             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2588             goto err;
2589         }
2590
2591         /* Let's get server private key and group information */
2592         if (alg_k & (SSL_kECDHr | SSL_kECDHe)) {
2593             /* use the certificate */
2594             tkey = s->cert->pkeys[SSL_PKEY_ECC].privatekey->pkey.ec;
2595         } else {
2596             /*
2597              * use the ephermeral values we saved when generating the
2598              * ServerKeyExchange msg.
2599              */
2600             tkey = s->s3->tmp.ecdh;
2601         }
2602
2603         group = EC_KEY_get0_group(tkey);
2604         priv_key = EC_KEY_get0_private_key(tkey);
2605
2606         if (!EC_KEY_set_group(srvr_ecdh, group) ||
2607             !EC_KEY_set_private_key(srvr_ecdh, priv_key)) {
2608             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2609             goto err;
2610         }
2611
2612         /* Let's get client's public key */
2613         if ((clnt_ecpoint = EC_POINT_new(group)) == NULL) {
2614             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2615             goto err;
2616         }
2617
2618         if (n == 0L) {
2619             /* Client Publickey was in Client Certificate */
2620
2621             if (alg_k & SSL_kEECDH) {
2622                 al = SSL_AD_HANDSHAKE_FAILURE;
2623                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2624                        SSL_R_MISSING_TMP_ECDH_KEY);
2625                 goto f_err;
2626             }
2627             if (((clnt_pub_pkey = X509_get_pubkey(s->session->peer))
2628                  == NULL) || (clnt_pub_pkey->type != EVP_PKEY_EC)) {
2629                 /*
2630                  * XXX: For now, we do not support client authentication
2631                  * using ECDH certificates so this branch (n == 0L) of the
2632                  * code is never executed. When that support is added, we
2633                  * ought to ensure the key received in the certificate is
2634                  * authorized for key agreement. ECDH_compute_key implicitly
2635                  * checks that the two ECDH shares are for the same group.
2636                  */
2637                 al = SSL_AD_HANDSHAKE_FAILURE;
2638                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2639                        SSL_R_UNABLE_TO_DECODE_ECDH_CERTS);
2640                 goto f_err;
2641             }
2642
2643             if (EC_POINT_copy(clnt_ecpoint,
2644                               EC_KEY_get0_public_key(clnt_pub_pkey->
2645                                                      pkey.ec)) == 0) {
2646                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2647                 goto err;
2648             }
2649             ret = 2;            /* Skip certificate verify processing */
2650         } else {
2651             /*
2652              * Get client's public key from encoded point in the
2653              * ClientKeyExchange message.
2654              */
2655             if ((bn_ctx = BN_CTX_new()) == NULL) {
2656                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2657                        ERR_R_MALLOC_FAILURE);
2658                 goto err;
2659             }
2660
2661             /* Get encoded point length */
2662             i = *p;
2663             p += 1;
2664             if (n != 1 + i) {
2665                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2666                 goto err;
2667             }
2668             if (EC_POINT_oct2point(group, clnt_ecpoint, p, i, bn_ctx) == 0) {
2669                 SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2670                 goto err;
2671             }
2672             /*
2673              * p is pointing to somewhere in the buffer currently, so set it
2674              * to the start
2675              */
2676             p = (unsigned char *)s->init_buf->data;
2677         }
2678
2679         /* Compute the shared pre-master secret */
2680         field_size = EC_GROUP_get_degree(group);
2681         if (field_size <= 0) {
2682             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2683             goto err;
2684         }
2685         i = ECDH_compute_key(p, (field_size + 7) / 8, clnt_ecpoint, srvr_ecdh,
2686                              NULL);
2687         if (i <= 0) {
2688             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2689             goto err;
2690         }
2691
2692         EVP_PKEY_free(clnt_pub_pkey);
2693         EC_POINT_free(clnt_ecpoint);
2694         EC_KEY_free(srvr_ecdh);
2695         BN_CTX_free(bn_ctx);
2696         EC_KEY_free(s->s3->tmp.ecdh);
2697         s->s3->tmp.ecdh = NULL;
2698
2699         /* Compute the master secret */
2700         s->session->master_key_length =
2701             s->method->ssl3_enc->generate_master_secret(s,
2702                                                         s->
2703                                                         session->master_key,
2704                                                         p, i);
2705
2706         OPENSSL_cleanse(p, i);
2707         return (ret);
2708     } else
2709 #endif
2710 #ifndef OPENSSL_NO_PSK
2711     if (alg_k & SSL_kPSK) {
2712         unsigned char *t = NULL;
2713         unsigned char psk_or_pre_ms[PSK_MAX_PSK_LEN * 2 + 4];
2714         unsigned int pre_ms_len = 0, psk_len = 0;
2715         int psk_err = 1;
2716         char tmp_id[PSK_MAX_IDENTITY_LEN + 1];
2717
2718         al = SSL_AD_HANDSHAKE_FAILURE;
2719
2720         n2s(p, i);
2721         if (n != i + 2) {
2722             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
2723             goto psk_err;
2724         }
2725         if (i > PSK_MAX_IDENTITY_LEN) {
2726             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2727                    SSL_R_DATA_LENGTH_TOO_LONG);
2728             goto psk_err;
2729         }
2730         if (s->psk_server_callback == NULL) {
2731             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2732                    SSL_R_PSK_NO_SERVER_CB);
2733             goto psk_err;
2734         }
2735
2736         /*
2737          * Create guaranteed NULL-terminated identity string for the callback
2738          */
2739         memcpy(tmp_id, p, i);
2740         memset(tmp_id + i, 0, PSK_MAX_IDENTITY_LEN + 1 - i);
2741         psk_len = s->psk_server_callback(s, tmp_id,
2742                                          psk_or_pre_ms,
2743                                          sizeof(psk_or_pre_ms));
2744         OPENSSL_cleanse(tmp_id, PSK_MAX_IDENTITY_LEN + 1);
2745
2746         if (psk_len > PSK_MAX_PSK_LEN) {
2747             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2748             goto psk_err;
2749         } else if (psk_len == 0) {
2750             /*
2751              * PSK related to the given identity not found
2752              */
2753             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2754                    SSL_R_PSK_IDENTITY_NOT_FOUND);
2755             al = SSL_AD_UNKNOWN_PSK_IDENTITY;
2756             goto psk_err;
2757         }
2758
2759         /* create PSK pre_master_secret */
2760         pre_ms_len = 2 + psk_len + 2 + psk_len;
2761         t = psk_or_pre_ms;
2762         memmove(psk_or_pre_ms + psk_len + 4, psk_or_pre_ms, psk_len);
2763         s2n(psk_len, t);
2764         memset(t, 0, psk_len);
2765         t += psk_len;
2766         s2n(psk_len, t);
2767
2768         if (s->session->psk_identity != NULL)
2769             OPENSSL_free(s->session->psk_identity);
2770         s->session->psk_identity = BUF_strdup((char *)p);
2771         if (s->session->psk_identity == NULL) {
2772             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2773             goto psk_err;
2774         }
2775
2776         if (s->session->psk_identity_hint != NULL)
2777             OPENSSL_free(s->session->psk_identity_hint);
2778         s->session->psk_identity_hint = BUF_strdup(s->ctx->psk_identity_hint);
2779         if (s->ctx->psk_identity_hint != NULL &&
2780             s->session->psk_identity_hint == NULL) {
2781             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2782             goto psk_err;
2783         }
2784
2785         s->session->master_key_length =
2786             s->method->ssl3_enc->generate_master_secret(s,
2787                                                         s->
2788                                                         session->master_key,
2789                                                         psk_or_pre_ms,
2790                                                         pre_ms_len);
2791         psk_err = 0;
2792  psk_err:
2793         OPENSSL_cleanse(psk_or_pre_ms, sizeof(psk_or_pre_ms));
2794         if (psk_err != 0)
2795             goto f_err;
2796     } else
2797 #endif
2798 #ifndef OPENSSL_NO_SRP
2799     if (alg_k & SSL_kSRP) {
2800         int param_len;
2801
2802         n2s(p, i);
2803         param_len = i + 2;
2804         if (param_len > n) {
2805             al = SSL_AD_DECODE_ERROR;
2806             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2807                    SSL_R_BAD_SRP_A_LENGTH);
2808             goto f_err;
2809         }
2810         if (!(s->srp_ctx.A = BN_bin2bn(p, i, NULL))) {
2811             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_BN_LIB);
2812             goto err;
2813         }
2814         if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0
2815             || BN_is_zero(s->srp_ctx.A)) {
2816             al = SSL_AD_ILLEGAL_PARAMETER;
2817             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2818                    SSL_R_BAD_SRP_PARAMETERS);
2819             goto f_err;
2820         }
2821         if (s->session->srp_username != NULL)
2822             OPENSSL_free(s->session->srp_username);
2823         s->session->srp_username = BUF_strdup(s->srp_ctx.login);
2824         if (s->session->srp_username == NULL) {
2825             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2826             goto err;
2827         }
2828
2829         if ((s->session->master_key_length =
2830              SRP_generate_server_master_secret(s,
2831                                                s->session->master_key)) < 0) {
2832             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2833             goto err;
2834         }
2835
2836         p += i;
2837     } else
2838 #endif                          /* OPENSSL_NO_SRP */
2839     if (alg_k & SSL_kGOST) {
2840         int ret = 0;
2841         EVP_PKEY_CTX *pkey_ctx;
2842         EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
2843         unsigned char premaster_secret[32], *start;
2844         size_t outlen = 32, inlen;
2845         unsigned long alg_a;
2846         int Ttag, Tclass;
2847         long Tlen;
2848
2849         /* Get our certificate private key */
2850         alg_a = s->s3->tmp.new_cipher->algorithm_auth;
2851         if (alg_a & SSL_aGOST94)
2852             pk = s->cert->pkeys[SSL_PKEY_GOST94].privatekey;
2853         else if (alg_a & SSL_aGOST01)
2854             pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;
2855
2856         pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
2857         EVP_PKEY_decrypt_init(pkey_ctx);
2858         /*
2859          * If client certificate is present and is of the same type, maybe
2860          * use it for key exchange.  Don't mind errors from
2861          * EVP_PKEY_derive_set_peer, because it is completely valid to use a
2862          * client certificate for authorization only.
2863          */
2864         client_pub_pkey = X509_get_pubkey(s->session->peer);
2865         if (client_pub_pkey) {
2866             if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
2867                 ERR_clear_error();
2868         }
2869         /* Decrypt session key */
2870         if (ASN1_get_object
2871             ((const unsigned char **)&p, &Tlen, &Ttag, &Tclass,
2872              n) != V_ASN1_CONSTRUCTED || Ttag != V_ASN1_SEQUENCE
2873             || Tclass != V_ASN1_UNIVERSAL) {
2874             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2875                    SSL_R_DECRYPTION_FAILED);
2876             goto gerr;
2877         }
2878         start = p;
2879         inlen = Tlen;
2880         if (EVP_PKEY_decrypt
2881             (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
2882             SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
2883                    SSL_R_DECRYPTION_FAILED);
2884             goto gerr;
2885         }
2886         /* Generate master secret */
2887         s->session->master_key_length =
2888             s->method->ssl3_enc->generate_master_secret(s,
2889                                                         s->
2890                                                         session->master_key,
2891                                                         premaster_secret, 32);
2892         /* Check if pubkey from client certificate was used */
2893         if (EVP_PKEY_CTX_ctrl
2894             (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
2895             ret = 2;
2896         else
2897             ret = 1;
2898  gerr:
2899         EVP_PKEY_free(client_pub_pkey);
2900         EVP_PKEY_CTX_free(pkey_ctx);
2901         if (ret)
2902             return ret;
2903         else
2904             goto err;
2905     } else {
2906         al = SSL_AD_HANDSHAKE_FAILURE;
2907         SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, SSL_R_UNKNOWN_CIPHER_TYPE);
2908         goto f_err;
2909     }
2910
2911     return (1);
2912  f_err:
2913     ssl3_send_alert(s, SSL3_AL_FATAL, al);
2914 #if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_ECDH) || defined(OPENSSL_NO_SRP)
2915  err:
2916 #endif
2917 #ifndef OPENSSL_NO_ECDH
2918     EVP_PKEY_free(clnt_pub_pkey);
2919     EC_POINT_free(clnt_ecpoint);
2920     if (srvr_ecdh != NULL)
2921         EC_KEY_free(srvr_ecdh);
2922     BN_CTX_free(bn_ctx);
2923 #endif
2924     return (-1);
2925 }
2926
2927 int ssl3_get_cert_verify(SSL *s)
2928 {
2929     EVP_PKEY *pkey = NULL;
2930     unsigned char *p;
2931     int al, ok, ret = 0;
2932     long n;
2933     int type = 0, i, j;
2934     X509 *peer;
2935     const EVP_MD *md = NULL;
2936     EVP_MD_CTX mctx;
2937     EVP_MD_CTX_init(&mctx);
2938
2939     n = s->method->ssl_get_message(s,
2940                                    SSL3_ST_SR_CERT_VRFY_A,
2941                                    SSL3_ST_SR_CERT_VRFY_B,
2942                                    -1, SSL3_RT_MAX_PLAIN_LENGTH, &ok);
2943
2944     if (!ok)
2945         return ((int)n);
2946
2947     if (s->session->peer != NULL) {
2948         peer = s->session->peer;
2949         pkey = X509_get_pubkey(peer);
2950         type = X509_certificate_type(peer, pkey);
2951     } else {
2952         peer = NULL;
2953         pkey = NULL;
2954     }
2955
2956     if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_VERIFY) {
2957         s->s3->tmp.reuse_message = 1;
2958         if (peer != NULL) {
2959             al = SSL_AD_UNEXPECTED_MESSAGE;
2960             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_MISSING_VERIFY_MESSAGE);
2961             goto f_err;
2962         }
2963         ret = 1;
2964         goto end;
2965     }
2966
2967     if (peer == NULL) {
2968         SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_NO_CLIENT_CERT_RECEIVED);
2969         al = SSL_AD_UNEXPECTED_MESSAGE;
2970         goto f_err;
2971     }
2972
2973     if (!(type & EVP_PKT_SIGN)) {
2974         SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
2975                SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
2976         al = SSL_AD_ILLEGAL_PARAMETER;
2977         goto f_err;
2978     }
2979
2980     if (s->s3->change_cipher_spec) {
2981         SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_CCS_RECEIVED_EARLY);
2982         al = SSL_AD_UNEXPECTED_MESSAGE;
2983         goto f_err;
2984     }
2985
2986     /* we now have a signature that we need to verify */
2987     p = (unsigned char *)s->init_msg;
2988     /* Check for broken implementations of GOST ciphersuites */
2989     /*
2990      * If key is GOST and n is exactly 64, it is bare signature without
2991      * length field
2992      */
2993     if (n == 64 && (pkey->type == NID_id_GostR3410_94 ||
2994                     pkey->type == NID_id_GostR3410_2001)) {
2995         i = 64;
2996     } else {
2997         if (TLS1_get_version(s) >= TLS1_2_VERSION) {
2998             int sigalg = tls12_get_sigid(pkey);
2999             /* Should never happen */
3000             if (sigalg == -1) {
3001                 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
3002                 al = SSL_AD_INTERNAL_ERROR;
3003                 goto f_err;
3004             }
3005             /* Check key type is consistent with signature */
3006             if (sigalg != (int)p[1]) {
3007                 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY,
3008                        SSL_R_WRONG_SIGNATURE_TYPE);
3009                 al = SSL_AD_DECODE_ERROR;
3010                 goto f_err;
3011             }
3012             md = tls12_get_hash(p[0]);
3013             if (md == NULL) {
3014                 SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_UNKNOWN_DIGEST);
3015                 al = SSL_AD_DECODE_ERROR;
3016                 goto f_err;
3017             }
3018 #ifdef SSL_DEBUG
3019             fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
3020 #endif
3021             p += 2;
3022             n -= 2;
3023         }
3024         n2s(p, i);
3025         n -= 2;
3026         if (i > n) {
3027             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
3028             al = SSL_AD_DECODE_ERROR;
3029             goto f_err;
3030         }
3031     }
3032     j = EVP_PKEY_size(pkey);
3033     if ((i > j) || (n > j) || (n <= 0)) {
3034         SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_WRONG_SIGNATURE_SIZE);
3035         al = SSL_AD_DECODE_ERROR;
3036         goto f_err;
3037     }
3038
3039     if (TLS1_get_version(s) >= TLS1_2_VERSION) {
3040         long hdatalen = 0;
3041         void *hdata;
3042         hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
3043         if (hdatalen <= 0) {
3044             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
3045             al = SSL_AD_INTERNAL_ERROR;
3046             goto f_err;
3047         }
3048 #ifdef SSL_DEBUG
3049         fprintf(stderr, "Using TLS 1.2 with client verify alg %s\n",
3050                 EVP_MD_name(md));
3051 #endif
3052         if (!EVP_VerifyInit_ex(&mctx, md, NULL)
3053             || !EVP_VerifyUpdate(&mctx, hdata, hdatalen)) {
3054             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_EVP_LIB);
3055             al = SSL_AD_INTERNAL_ERROR;
3056             goto f_err;
3057         }
3058
3059         if (EVP_VerifyFinal(&mctx, p, i, pkey) <= 0) {
3060             al = SSL_AD_DECRYPT_ERROR;
3061             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_BAD_SIGNATURE);
3062             goto f_err;
3063         }
3064     } else
3065 #ifndef OPENSSL_NO_RSA
3066     if (pkey->type == EVP_PKEY_RSA) {
3067         i = RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
3068                        MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH, p, i,
3069                        pkey->pkey.rsa);
3070         if (i < 0) {
3071             al = SSL_AD_DECRYPT_ERROR;
3072             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_BAD_RSA_DECRYPT);
3073             goto f_err;
3074         }
3075         if (i == 0) {
3076             al = SSL_AD_DECRYPT_ERROR;
3077             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_BAD_RSA_SIGNATURE);
3078             goto f_err;
3079         }
3080     } else
3081 #endif
3082 #ifndef OPENSSL_NO_DSA
3083     if (pkey->type == EVP_PKEY_DSA) {
3084         j = DSA_verify(pkey->save_type,
3085                        &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3086                        SHA_DIGEST_LENGTH, p, i, pkey->pkey.dsa);
3087         if (j <= 0) {
3088             /* bad signature */
3089             al = SSL_AD_DECRYPT_ERROR;
3090             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_BAD_DSA_SIGNATURE);
3091             goto f_err;
3092         }
3093     } else
3094 #endif
3095 #ifndef OPENSSL_NO_ECDSA
3096     if (pkey->type == EVP_PKEY_EC) {
3097         j = ECDSA_verify(pkey->save_type,
3098                          &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
3099                          SHA_DIGEST_LENGTH, p, i, pkey->pkey.ec);
3100         if (j <= 0) {
3101             /* bad signature */
3102             al = SSL_AD_DECRYPT_ERROR;
3103             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_BAD_ECDSA_SIGNATURE);
3104             goto f_err;
3105         }
3106     } else
3107 #endif
3108     if (pkey->type == NID_id_GostR3410_94
3109             || pkey->type == NID_id_GostR3410_2001) {
3110         unsigned char signature[64];
3111         int idx;
3112         EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new(pkey, NULL);
3113         EVP_PKEY_verify_init(pctx);
3114         if (i != 64) {
3115             fprintf(stderr, "GOST signature length is %d", i);
3116         }
3117         for (idx = 0; idx < 64; idx++) {
3118             signature[63 - idx] = p[idx];
3119         }
3120         j = EVP_PKEY_verify(pctx, signature, 64, s->s3->tmp.cert_verify_md,
3121                             32);
3122         EVP_PKEY_CTX_free(pctx);
3123         if (j <= 0) {
3124             al = SSL_AD_DECRYPT_ERROR;
3125             SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, SSL_R_BAD_ECDSA_SIGNATURE);
3126             goto f_err;
3127         }
3128     } else {
3129         SSLerr(SSL_F_SSL3_GET_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
3130         al = SSL_AD_UNSUPPORTED_CERTIFICATE;
3131         goto f_err;
3132     }
3133
3134     ret = 1;
3135     if (0) {
3136  f_err:
3137         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3138     }
3139  end:
3140     if (s->s3->handshake_buffer) {
3141         BIO_free(s->s3->handshake_buffer);
3142         s->s3->handshake_buffer = NULL;
3143         s->s3->flags &= ~TLS1_FLAGS_KEEP_HANDSHAKE;
3144     }
3145     EVP_MD_CTX_cleanup(&mctx);
3146     EVP_PKEY_free(pkey);
3147     return (ret);
3148 }
3149
3150 int ssl3_get_client_certificate(SSL *s)
3151 {
3152     int i, ok, al, ret = -1;
3153     X509 *x = NULL;
3154     unsigned long l, nc, llen, n;
3155     const unsigned char *p, *q;
3156     unsigned char *d;
3157     STACK_OF(X509) *sk = NULL;
3158
3159     n = s->method->ssl_get_message(s,
3160                                    SSL3_ST_SR_CERT_A,
3161                                    SSL3_ST_SR_CERT_B,
3162                                    -1, s->max_cert_list, &ok);
3163
3164     if (!ok)
3165         return ((int)n);
3166
3167     if (s->s3->tmp.message_type == SSL3_MT_CLIENT_KEY_EXCHANGE) {
3168         if ((s->verify_mode & SSL_VERIFY_PEER) &&
3169             (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3170             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,
3171                    SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3172             al = SSL_AD_HANDSHAKE_FAILURE;
3173             goto f_err;
3174         }
3175         /*
3176          * If tls asked for a client cert, the client must return a 0 list
3177          */
3178         if ((s->version > SSL3_VERSION) && s->s3->tmp.cert_request) {
3179             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,
3180                    SSL_R_TLS_PEER_DID_NOT_RESPOND_WITH_CERTIFICATE_LIST);
3181             al = SSL_AD_UNEXPECTED_MESSAGE;
3182             goto f_err;
3183         }
3184         s->s3->tmp.reuse_message = 1;
3185         return (1);
3186     }
3187
3188     if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE) {
3189         al = SSL_AD_UNEXPECTED_MESSAGE;
3190         SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, SSL_R_WRONG_MESSAGE_TYPE);
3191         goto f_err;
3192     }
3193     p = d = (unsigned char *)s->init_msg;
3194
3195     if ((sk = sk_X509_new_null()) == NULL) {
3196         SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3197         goto err;
3198     }
3199
3200     n2l3(p, llen);
3201     if (llen + 3 != n) {
3202         al = SSL_AD_DECODE_ERROR;
3203         SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
3204         goto f_err;
3205     }
3206     for (nc = 0; nc < llen;) {
3207         n2l3(p, l);
3208         if ((l + nc + 3) > llen) {
3209             al = SSL_AD_DECODE_ERROR;
3210             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,
3211                    SSL_R_CERT_LENGTH_MISMATCH);
3212             goto f_err;
3213         }
3214
3215         q = p;
3216         x = d2i_X509(NULL, &p, l);
3217         if (x == NULL) {
3218             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
3219             goto err;
3220         }
3221         if (p != (q + l)) {
3222             al = SSL_AD_DECODE_ERROR;
3223             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,
3224                    SSL_R_CERT_LENGTH_MISMATCH);
3225             goto f_err;
3226         }
3227         if (!sk_X509_push(sk, x)) {
3228             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3229             goto err;
3230         }
3231         x = NULL;
3232         nc += l + 3;
3233     }
3234
3235     if (sk_X509_num(sk) <= 0) {
3236         /* TLS does not mind 0 certs returned */
3237         if (s->version == SSL3_VERSION) {
3238             al = SSL_AD_HANDSHAKE_FAILURE;
3239             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,
3240                    SSL_R_NO_CERTIFICATES_RETURNED);
3241             goto f_err;
3242         }
3243         /* Fail for TLS only if we required a certificate */
3244         else if ((s->verify_mode & SSL_VERIFY_PEER) &&
3245                  (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
3246             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,
3247                    SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
3248             al = SSL_AD_HANDSHAKE_FAILURE;
3249             goto f_err;
3250         }
3251         /* No client certificate so digest cached records */
3252         if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s)) {
3253             al = SSL_AD_INTERNAL_ERROR;
3254             goto f_err;
3255         }
3256     } else {
3257         i = ssl_verify_cert_chain(s, sk);
3258         if (i <= 0) {
3259             al = ssl_verify_alarm_type(s->verify_result);
3260             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE,
3261                    SSL_R_NO_CERTIFICATE_RETURNED);
3262             goto f_err;
3263         }
3264     }
3265
3266     if (s->session->peer != NULL) /* This should not be needed */
3267         X509_free(s->session->peer);
3268     s->session->peer = sk_X509_shift(sk);
3269     s->session->verify_result = s->verify_result;
3270
3271     /*
3272      * With the current implementation, sess_cert will always be NULL when we
3273      * arrive here.
3274      */
3275     if (s->session->sess_cert == NULL) {
3276         s->session->sess_cert = ssl_sess_cert_new();
3277         if (s->session->sess_cert == NULL) {
3278             SSLerr(SSL_F_SSL3_GET_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
3279             goto err;
3280         }
3281     }
3282     if (s->session->sess_cert->cert_chain != NULL)
3283         sk_X509_pop_free(s->session->sess_cert->cert_chain, X509_free);
3284     s->session->sess_cert->cert_chain = sk;
3285     /*
3286      * Inconsistency alert: cert_chain does *not* include the peer's own
3287      * certificate, while we do include it in s3_clnt.c
3288      */
3289
3290     sk = NULL;
3291
3292     ret = 1;
3293     if (0) {
3294  f_err:
3295         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3296     }
3297  err:
3298     if (x != NULL)
3299         X509_free(x);
3300     if (sk != NULL)
3301         sk_X509_pop_free(sk, X509_free);
3302     return (ret);
3303 }
3304
3305 int ssl3_send_server_certificate(SSL *s)
3306 {
3307     unsigned long l;
3308     X509 *x;
3309
3310     if (s->state == SSL3_ST_SW_CERT_A) {
3311         x = ssl_get_server_send_cert(s);
3312         if (x == NULL) {
3313             /* VRS: allow null cert if auth == KRB5 */
3314             if ((s->s3->tmp.new_cipher->algorithm_auth != SSL_aKRB5) ||
3315                 (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kKRB5)) {
3316                 SSLerr(SSL_F_SSL3_SEND_SERVER_CERTIFICATE,
3317                        ERR_R_INTERNAL_ERROR);
3318                 return (0);
3319             }
3320         }
3321
3322         l = ssl3_output_cert_chain(s, x);
3323         if (!l) {
3324             SSLerr(SSL_F_SSL3_SEND_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
3325             return (0);
3326         }
3327         s->state = SSL3_ST_SW_CERT_B;
3328         s->init_num = (int)l;
3329         s->init_off = 0;
3330     }
3331
3332     /* SSL3_ST_SW_CERT_B */
3333     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
3334 }
3335
3336 #ifndef OPENSSL_NO_TLSEXT
3337 /* send a new session ticket (not necessarily for a new session) */
3338 int ssl3_send_newsession_ticket(SSL *s)
3339 {
3340     unsigned char *senc = NULL;
3341     EVP_CIPHER_CTX ctx;
3342     HMAC_CTX hctx;
3343
3344     if (s->state == SSL3_ST_SW_SESSION_TICKET_A) {
3345         unsigned char *p, *macstart;
3346         const unsigned char *const_p;
3347         int len, slen_full, slen;
3348         SSL_SESSION *sess;
3349         unsigned int hlen;
3350         SSL_CTX *tctx = s->initial_ctx;
3351         unsigned char iv[EVP_MAX_IV_LENGTH];
3352         unsigned char key_name[16];
3353
3354         /* get session encoding length */
3355         slen_full = i2d_SSL_SESSION(s->session, NULL);
3356         /*
3357          * Some length values are 16 bits, so forget it if session is too
3358          * long
3359          */
3360         if (slen_full == 0 || slen_full > 0xFF00)
3361             return -1;
3362         senc = OPENSSL_malloc(slen_full);
3363         if (!senc)
3364             return -1;
3365
3366         EVP_CIPHER_CTX_init(&ctx);
3367         HMAC_CTX_init(&hctx);
3368
3369         p = senc;
3370         if (!i2d_SSL_SESSION(s->session, &p))
3371             goto err;
3372
3373         /*
3374          * create a fresh copy (not shared with other threads) to clean up
3375          */
3376         const_p = senc;
3377         sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
3378         if (sess == NULL)
3379             goto err;
3380         sess->session_id_length = 0; /* ID is irrelevant for the ticket */
3381
3382         slen = i2d_SSL_SESSION(sess, NULL);
3383         if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
3384             SSL_SESSION_free(sess);
3385             goto err;
3386         }
3387         p = senc;
3388         if (!i2d_SSL_SESSION(sess, &p)) {
3389             SSL_SESSION_free(sess);
3390             goto err;
3391         }
3392         SSL_SESSION_free(sess);
3393
3394         /*-
3395          * Grow buffer if need be: the length calculation is as
3396          * follows 1 (size of message name) + 3 (message length
3397          * bytes) + 4 (ticket lifetime hint) + 2 (ticket length) +
3398          * 16 (key name) + max_iv_len (iv length) +
3399          * session_length + max_enc_block_size (max encrypted session
3400          * length) + max_md_size (HMAC).
3401          */
3402         if (!BUF_MEM_grow(s->init_buf,
3403                           26 + EVP_MAX_IV_LENGTH + EVP_MAX_BLOCK_LENGTH +
3404                           EVP_MAX_MD_SIZE + slen))
3405             goto err;
3406
3407         p = (unsigned char *)s->init_buf->data;
3408         /* do the header */
3409         *(p++) = SSL3_MT_NEWSESSION_TICKET;
3410         /* Skip message length for now */
3411         p += 3;
3412         /*
3413          * Initialize HMAC and cipher contexts. If callback present it does
3414          * all the work otherwise use generated values from parent ctx.
3415          */
3416         if (tctx->tlsext_ticket_key_cb) {
3417             if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
3418                                            &hctx, 1) < 0)
3419                 goto err;
3420         } else {
3421             if (RAND_bytes(iv, 16) <= 0)
3422                 goto err;
3423             if (!EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
3424                                     tctx->tlsext_tick_aes_key, iv))
3425                 goto err;
3426             if (!HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
3427                               tlsext_tick_md(), NULL))
3428                 goto err;
3429             memcpy(key_name, tctx->tlsext_tick_key_name, 16);
3430         }
3431
3432         /*
3433          * Ticket lifetime hint (advisory only): We leave this unspecified
3434          * for resumed session (for simplicity), and guess that tickets for
3435          * new sessions will live as long as their sessions.
3436          */
3437         l2n(s->hit ? 0 : s->session->timeout, p);
3438
3439         /* Skip ticket length for now */
3440         p += 2;
3441         /* Output key name */
3442         macstart = p;
3443         memcpy(p, key_name, 16);
3444         p += 16;
3445         /* output IV */
3446         memcpy(p, iv, EVP_CIPHER_CTX_iv_length(&ctx));
3447         p += EVP_CIPHER_CTX_iv_length(&ctx);
3448         /* Encrypt session data */
3449         if (!EVP_EncryptUpdate(&ctx, p, &len, senc, slen))
3450             goto err;
3451         p += len;
3452         if (!EVP_EncryptFinal(&ctx, p, &len))
3453             goto err;
3454         p += len;
3455
3456         if (!HMAC_Update(&hctx, macstart, p - macstart))
3457             goto err;
3458         if (!HMAC_Final(&hctx, p, &hlen))
3459             goto err;
3460
3461         EVP_CIPHER_CTX_cleanup(&ctx);
3462         HMAC_CTX_cleanup(&hctx);
3463
3464         p += hlen;
3465         /* Now write out lengths: p points to end of data written */
3466         /* Total length */
3467         len = p - (unsigned char *)s->init_buf->data;
3468         p = (unsigned char *)s->init_buf->data + 1;
3469         l2n3(len - 4, p);       /* Message length */
3470         p += 4;
3471         s2n(len - 10, p);       /* Ticket length */
3472
3473         /* number of bytes to write */
3474         s->init_num = len;
3475         s->state = SSL3_ST_SW_SESSION_TICKET_B;
3476         s->init_off = 0;
3477         OPENSSL_free(senc);
3478     }
3479
3480     /* SSL3_ST_SW_SESSION_TICKET_B */
3481     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
3482  err:
3483     if (senc)
3484         OPENSSL_free(senc);
3485     EVP_CIPHER_CTX_cleanup(&ctx);
3486     HMAC_CTX_cleanup(&hctx);
3487     return -1;
3488 }
3489
3490 int ssl3_send_cert_status(SSL *s)
3491 {
3492     if (s->state == SSL3_ST_SW_CERT_STATUS_A) {
3493         unsigned char *p;
3494         /*-
3495          * Grow buffer if need be: the length calculation is as
3496          * follows 1 (message type) + 3 (message length) +
3497          * 1 (ocsp response type) + 3 (ocsp response length)
3498          * + (ocsp response)
3499          */
3500         if (!BUF_MEM_grow(s->init_buf, 8 + s->tlsext_ocsp_resplen))
3501             return -1;
3502
3503         p = (unsigned char *)s->init_buf->data;
3504
3505         /* do the header */
3506         *(p++) = SSL3_MT_CERTIFICATE_STATUS;
3507         /* message length */
3508         l2n3(s->tlsext_ocsp_resplen + 4, p);
3509         /* status type */
3510         *(p++) = s->tlsext_status_type;
3511         /* length of OCSP response */
3512         l2n3(s->tlsext_ocsp_resplen, p);
3513         /* actual response */
3514         memcpy(p, s->tlsext_ocsp_resp, s->tlsext_ocsp_resplen);
3515         /* number of bytes to write */
3516         s->init_num = 8 + s->tlsext_ocsp_resplen;
3517         s->state = SSL3_ST_SW_CERT_STATUS_B;
3518         s->init_off = 0;
3519     }
3520
3521     /* SSL3_ST_SW_CERT_STATUS_B */
3522     return (ssl3_do_write(s, SSL3_RT_HANDSHAKE));
3523 }
3524
3525 # ifndef OPENSSL_NO_NEXTPROTONEG
3526 /*
3527  * ssl3_get_next_proto reads a Next Protocol Negotiation handshake message.
3528  * It sets the next_proto member in s if found
3529  */
3530 int ssl3_get_next_proto(SSL *s)
3531 {
3532     int ok;
3533     int proto_len, padding_len;
3534     long n;
3535     const unsigned char *p;
3536
3537     /*
3538      * Clients cannot send a NextProtocol message if we didn't see the
3539      * extension in their ClientHello
3540      */
3541     if (!s->s3->next_proto_neg_seen) {
3542         SSLerr(SSL_F_SSL3_GET_NEXT_PROTO,
3543                SSL_R_GOT_NEXT_PROTO_WITHOUT_EXTENSION);
3544         return -1;
3545     }
3546
3547     /* See the payload format below */
3548     n = s->method->ssl_get_message(s,
3549                                    SSL3_ST_SR_NEXT_PROTO_A,
3550                                    SSL3_ST_SR_NEXT_PROTO_B,
3551                                    SSL3_MT_NEXT_PROTO, 514, &ok);
3552
3553     if (!ok)
3554         return ((int)n);
3555
3556     /*
3557      * s->state doesn't reflect whether ChangeCipherSpec has been received in
3558      * this handshake, but s->s3->change_cipher_spec does (will be reset by
3559      * ssl3_get_finished).
3560      */
3561     if (!s->s3->change_cipher_spec) {
3562         SSLerr(SSL_F_SSL3_GET_NEXT_PROTO, SSL_R_GOT_NEXT_PROTO_BEFORE_A_CCS);
3563         return -1;
3564     }
3565
3566     if (n < 2)
3567         return 0;               /* The body must be > 1 bytes long */
3568
3569     p = (unsigned char *)s->init_msg;
3570
3571     /*-
3572      * The payload looks like:
3573      *   uint8 proto_len;
3574      *   uint8 proto[proto_len];
3575      *   uint8 padding_len;
3576      *   uint8 padding[padding_len];
3577      */
3578     proto_len = p[0];
3579     if (proto_len + 2 > s->init_num)
3580         return 0;
3581     padding_len = p[proto_len + 1];
3582     if (proto_len + padding_len + 2 != s->init_num)
3583         return 0;
3584
3585     s->next_proto_negotiated = OPENSSL_malloc(proto_len);
3586     if (!s->next_proto_negotiated) {
3587         SSLerr(SSL_F_SSL3_GET_NEXT_PROTO, ERR_R_MALLOC_FAILURE);
3588         return 0;
3589     }
3590     memcpy(s->next_proto_negotiated, p + 1, proto_len);
3591     s->next_proto_negotiated_len = proto_len;
3592
3593     return 1;
3594 }
3595 # endif
3596 #endif