statem_srvr.c 99.3 KB
Newer Older
M
Matt Caswell 已提交
1
/* ssl/statem/statem_srvr.c -*- mode:C; c-file-style: "eay" -*- */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 4 5 6 7
 * All rights reserved.
 *
 * This package is an SSL implementation written
 * by Eric Young (eay@cryptsoft.com).
 * The implementation was written so as to conform with Netscapes SSL.
8
 *
9 10 11 12 13 14
 * This library is free for commercial and non-commercial use as long as
 * the following conditions are aheared to.  The following conditions
 * apply to all code found in this distribution, be it the RC4, RSA,
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 * included with this distribution is covered by the same copyright terms
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15
 *
16 17 18 19 20 21
 * Copyright remains Eric Young's, and as such any Copyright notices in
 * the code are not to be removed.
 * If this package is used in a product, Eric Young should be given attribution
 * as the author of the parts of the library used.
 * This can be in the form of a textual message at program startup or
 * in documentation (online or textual) provided with the package.
22
 *
23 24 25 26 27 28 29 30 31 32 33 34 35 36
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *    "This product includes cryptographic software written by
 *     Eric Young (eay@cryptsoft.com)"
 *    The word 'cryptographic' can be left out if the rouines from the library
 *    being used are not cryptographic related :-).
37
 * 4. If you include any Windows specific code (or a derivative thereof) from
38 39
 *    the apps directory (application code) you must include an acknowledgement:
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40
 *
41 42 43 44 45 46 47 48 49 50 51
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
52
 *
53 54 55 56 57
 * The licence and distribution terms for any publically available version or
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
 * copied and put under another distribution licence
 * [including the GNU Public Licence.]
 */
58
/* ====================================================================
59
 * Copyright (c) 1998-2007 The OpenSSL Project.  All rights reserved.
60 61 62 63 64 65
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
66
 *    notice, this list of conditions and the following disclaimer.
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    openssl-core@openssl.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */
B
Bodo Möller 已提交
111 112 113
/* ====================================================================
 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
 *
114
 * Portions of the attached software ("Contribution") are developed by
B
Bodo Möller 已提交
115 116 117 118 119 120 121 122 123
 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
 *
 * The Contribution is licensed pursuant to the OpenSSL open source
 * license provided above.
 *
 * ECC cipher suite support in OpenSSL originally written by
 * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories.
 *
 */
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
/* ====================================================================
 * Copyright 2005 Nokia. All rights reserved.
 *
 * The portions of the attached software ("Contribution") is developed by
 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
 * license.
 *
 * The Contribution, originally written by Mika Kousa and Pasi Eronen of
 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
 * support (see RFC 4279) to OpenSSL.
 *
 * No patent licenses or other rights except those expressly stated in
 * the OpenSSL open source license shall be deemed granted or received
 * expressly, by implication, estoppel, or otherwise.
 *
 * No assurances are provided by Nokia that the Contribution does not
 * infringe the patent or other intellectual property rights of any third
 * party or that the license provides you with all the necessary rights
 * to make use of the Contribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
 * OTHERWISE.
 */
150

151

152
#include <stdio.h>
M
Matt Caswell 已提交
153
#include "../ssl_locl.h"
154
#include "internal/constant_time_locl.h"
155 156 157 158
#include <openssl/buffer.h>
#include <openssl/rand.h>
#include <openssl/objects.h>
#include <openssl/evp.h>
159
#include <openssl/hmac.h>
160
#include <openssl/x509.h>
N
make  
Nils Larsch 已提交
161
#ifndef OPENSSL_NO_DH
162
# include <openssl/dh.h>
N
make  
Nils Larsch 已提交
163
#endif
164
#include <openssl/bn.h>
165
#include <openssl/md5.h>
166

167 168 169 170
static STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,
                                                      PACKET *cipher_suites,
                                                      STACK_OF(SSL_CIPHER) **skp,
                                                      int sslv2format, int *al);
M
Matt Caswell 已提交
171

B
Ben Laurie 已提交
172
#ifndef OPENSSL_NO_SRP
173
static int ssl_check_srp_ext_ClientHello(SSL *s, int *al)
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
{
    int ret = SSL_ERROR_NONE;

    *al = SSL_AD_UNRECOGNIZED_NAME;

    if ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) &&
        (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) {
        if (s->srp_ctx.login == NULL) {
            /*
             * RFC 5054 says SHOULD reject, we do so if There is no srp
             * login name
             */
            ret = SSL3_AL_FATAL;
            *al = SSL_AD_UNKNOWN_PSK_IDENTITY;
        } else {
            ret = SSL_srp_server_param_with_username(s, al);
        }
    }
    return ret;
}
B
Ben Laurie 已提交
194 195
#endif

M
Matt Caswell 已提交
196 197 198 199 200 201 202 203 204 205 206
int tls_construct_hello_request(SSL *s)
{
    if (!ssl_set_handshake_header(s, SSL3_MT_HELLO_REQUEST, 0)) {
        SSLerr(SSL_F_TLS_CONSTRUCT_HELLO_REQUEST, ERR_R_INTERNAL_ERROR);
        statem_set_error(s);
        return 0;
    }

    return 1;
}

M
Matt Caswell 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
unsigned int dtls_raw_hello_verify_request(unsigned char *buf,
                                            unsigned char *cookie,
                                            unsigned char cookie_len)
{
    unsigned int msg_len;
    unsigned char *p;

    p = buf;
    /* Always use DTLS 1.0 version: see RFC 6347 */
    *(p++) = DTLS1_VERSION >> 8;
    *(p++) = DTLS1_VERSION & 0xFF;

    *(p++) = (unsigned char)cookie_len;
    memcpy(p, cookie, cookie_len);
    p += cookie_len;
    msg_len = p - buf;

    return msg_len;
}

int dtls_construct_hello_verify_request(SSL *s)
{
    unsigned int len;
    unsigned char *buf;

    buf = (unsigned char *)s->init_buf->data;

    if (s->ctx->app_gen_cookie_cb == NULL ||
        s->ctx->app_gen_cookie_cb(s, s->d1->cookie,
                                  &(s->d1->cookie_len)) == 0 ||
        s->d1->cookie_len > 255) {
        SSLerr(SSL_F_DTLS1_SEND_HELLO_VERIFY_REQUEST,
               SSL_R_COOKIE_GEN_CALLBACK_FAILURE);
        statem_set_error(s);
        return 0;
    }

    len = dtls_raw_hello_verify_request(&buf[DTLS1_HM_HEADER_LENGTH],
                                         s->d1->cookie, s->d1->cookie_len);

    dtls1_set_message_header(s, buf, DTLS1_MT_HELLO_VERIFY_REQUEST, len, 0,
                             len);
    len += DTLS1_HM_HEADER_LENGTH;

    /* number of bytes to write */
    s->init_num = len;
    s->init_off = 0;

    return 1;
}

258
enum MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
M
Matt Caswell 已提交
259 260 261 262 263 264 265 266 267 268 269
{
    int i, al = SSL_AD_INTERNAL_ERROR;
    unsigned int j, complen = 0;
    unsigned long id;
    SSL_CIPHER *c;
#ifndef OPENSSL_NO_COMP
    SSL_COMP *comp = NULL;
#endif
    STACK_OF(SSL_CIPHER) *ciphers = NULL;
    int protverr = 1;
    /* |cookie| will only be initialized for DTLS. */
270
    PACKET session_id, cipher_suites, compression, extensions, cookie;
M
Matt Caswell 已提交
271 272
    int is_v2_record;

273 274
    is_v2_record = RECORD_LAYER_is_sslv2_record(&s->rlayer);

E
Emilia Kasper 已提交
275
    PACKET_null_init(&cookie);
276
    /* First lets get s->client_version set correctly */
277
    if (is_v2_record) {
M
Matt Caswell 已提交
278 279
        unsigned int version;
        unsigned int mt;
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
        /*-
         * An SSLv3/TLSv1 backwards-compatible CLIENT-HELLO in an SSLv2
         * header is sent directly on the wire, not wrapped as a TLS
         * record. Our record layer just processes the message length and passes
         * the rest right through. Its format is:
         * Byte  Content
         * 0-1   msg_length - decoded by the record layer
         * 2     msg_type - s->init_msg points here
         * 3-4   version
         * 5-6   cipher_spec_length
         * 7-8   session_id_length
         * 9-10  challenge_length
         * ...   ...
         */

295
        if (!PACKET_get_1(pkt, &mt)
M
Matt Caswell 已提交
296
                || mt != SSL2_MT_CLIENT_HELLO) {
297 298 299 300 301
            /*
             * Should never happen. We should have tested this in the record
             * layer in order to have determined that this is a SSLv2 record
             * in the first place
             */
M
Matt Caswell 已提交
302
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
M
Matt Caswell 已提交
303
            goto err;
304 305
        }

306
        if (!PACKET_get_net_2(pkt, &version)) {
M
Matt Caswell 已提交
307
            /* No protocol version supplied! */
M
Matt Caswell 已提交
308
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
M
Matt Caswell 已提交
309 310 311
            goto err;
        }
        if (version == 0x0002) {
312
            /* This is real SSLv2. We don't support it. */
M
Matt Caswell 已提交
313
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
314
            goto err;
M
Matt Caswell 已提交
315
        } else if ((version & 0xff00) == (SSL3_VERSION_MAJOR << 8)) {
316
            /* SSLv3/TLS */
M
Matt Caswell 已提交
317
            s->client_version = version;
318 319
        } else {
            /* No idea what protocol this is */
M
Matt Caswell 已提交
320
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
321 322 323 324
            goto err;
        }
    } else {
        /*
M
Matt Caswell 已提交
325 326
         * use version from inside client hello, not from record header (may
         * differ: see RFC 2246, Appendix E, second paragraph)
327
         */
328
        if(!PACKET_get_net_2(pkt, (unsigned int *)&s->client_version)) {
329
            al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
330
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_LENGTH_TOO_SHORT);
331 332
            goto f_err;
        }
333 334
    }

335 336 337
    /* Do SSL/TLS version negotiation if applicable */
    if (!SSL_IS_DTLS(s)) {
        if (s->version != TLS_ANY_VERSION) {
338
            if (s->client_version >= s->version) {
339 340
                protverr = 0;
            }
341
        } else if (s->client_version >= SSL3_VERSION) {
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
            switch(s->client_version) {
            default:
            case TLS1_2_VERSION:
                if(!(s->options & SSL_OP_NO_TLSv1_2)) {
                    s->version = TLS1_2_VERSION;
                    s->method = TLSv1_2_server_method();
                    protverr = 0;
                    break;
                }
                /* Deliberately fall through */
            case TLS1_1_VERSION:
                if(!(s->options & SSL_OP_NO_TLSv1_1)) {
                    s->version = TLS1_1_VERSION;
                    s->method = TLSv1_1_server_method();
                    protverr = 0;
                    break;
                }
                /* Deliberately fall through */
            case TLS1_VERSION:
                if(!(s->options & SSL_OP_NO_TLSv1)) {
                    s->version = TLS1_VERSION;
                    s->method = TLSv1_server_method();
                    protverr = 0;
                    break;
                }
                /* Deliberately fall through */
            case SSL3_VERSION:
369
#ifndef OPENSSL_NO_SSL3
370 371 372 373 374 375
                if(!(s->options & SSL_OP_NO_SSLv3)) {
                    s->version = SSL3_VERSION;
                    s->method = SSLv3_server_method();
                    protverr = 0;
                    break;
                }
376 377 378
#else
                break;
#endif
379 380
            }
        }
381 382
    } else if (s->client_version <= s->version
                || s->method->version == DTLS_ANY_VERSION) {
383 384 385 386 387 388 389 390
        /*
         * For DTLS we just check versions are potentially compatible. Version
         * negotiation comes later.
         */
        protverr = 0;
    }

    if (protverr) {
M
Matt Caswell 已提交
391
        SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_UNKNOWN_PROTOCOL);
392
        if ((!s->enc_write_ctx && !s->write_hash)) {
393 394 395 396 397 398 399 400 401 402
            /*
             * similar to ssl3_get_record, send alert using remote version
             * number
             */
            s->version = s->client_version;
        }
        al = SSL_AD_PROTOCOL_VERSION;
        goto f_err;
    }

403 404
    /* Parse the message and load client random. */
    if (is_v2_record) {
405 406 407 408 409
        /*
         * Handle an SSLv2 backwards compatible ClientHello
         * Note, this is only for SSLv3+ using the backward compatible format.
         * Real SSLv2 is not supported, and is rejected above.
         */
410
        unsigned int cipher_len, session_id_len, challenge_len;
411
        PACKET challenge;
412

413 414 415
        if (!PACKET_get_net_2(pkt, &cipher_len)
                || !PACKET_get_net_2(pkt, &session_id_len)
                || !PACKET_get_net_2(pkt, &challenge_len)) {
M
Matt Caswell 已提交
416 417
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
                   SSL_R_RECORD_LENGTH_MISMATCH);
418 419
            al = SSL_AD_DECODE_ERROR;
            goto f_err;
420
        }
421

422 423 424
        if (!PACKET_get_sub_packet(pkt, &cipher_suites, cipher_len)
            || !PACKET_get_sub_packet(pkt, &session_id, session_id_len)
            || !PACKET_get_sub_packet(pkt, &challenge, challenge_len)
425
            /* No extensions. */
426
            || PACKET_remaining(pkt) != 0) {
M
Matt Caswell 已提交
427 428 429 430 431
            SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_RECORD_LENGTH_MISMATCH);
            al = SSL_AD_DECODE_ERROR;
            goto f_err;
        }

432
        /* Load the client random */
433 434
        challenge_len = challenge_len > SSL3_RANDOM_SIZE ? SSL3_RANDOM_SIZE :
            challenge_len;
435
        memset(s->s3->client_random, 0, SSL3_RANDOM_SIZE);
436 437 438 439 440
        if (!PACKET_copy_bytes(&challenge,
                               s->s3->client_random + SSL3_RANDOM_SIZE -
                               challenge_len, challenge_len)) {
            SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
441 442
            goto f_err;
        }
443 444 445

        PACKET_null_init(&compression);
        PACKET_null_init(&extensions);
446
    } else {
447
        /* Regular ClientHello. */
448 449
        if (!PACKET_copy_bytes(pkt, s->s3->client_random, SSL3_RANDOM_SIZE)
            || !PACKET_get_length_prefixed_1(pkt, &session_id)) {
M
Matt Caswell 已提交
450
            al = SSL_AD_DECODE_ERROR;
451
            SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
M
Matt Caswell 已提交
452 453
            goto f_err;
        }
454

455
        if (SSL_IS_DTLS(s)) {
456
            if (!PACKET_get_length_prefixed_1(pkt, &cookie)) {
457
                al = SSL_AD_DECODE_ERROR;
458
                SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
459 460
                goto f_err;
            }
461 462 463 464 465 466 467
            /*
             * If we require cookies and this ClientHello doesn't contain one,
             * just return since we do not want to allocate any memory yet.
             * So check cookie length...
             */
            if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
                if (PACKET_remaining(&cookie) == 0)
468
                return 1;
469
            }
470
        }
471

472 473
        if (!PACKET_get_length_prefixed_2(pkt, &cipher_suites)
            || !PACKET_get_length_prefixed_1(pkt, &compression)) {
474 475 476 477 478
                al = SSL_AD_DECODE_ERROR;
                SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_LENGTH_MISMATCH);
                goto f_err;
        }
        /* Could be empty. */
479
        extensions = *pkt;
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
    }

    s->hit = 0;

    /*
     * We don't allow resumption in a backwards compatible ClientHello.
     * TODO(openssl-team): in TLS1.1+, session_id MUST be empty.
     *
     * Versions before 0.9.7 always allow clients to resume sessions in
     * renegotiation. 0.9.7 and later allow this by default, but optionally
     * ignore resumption requests with flag
     * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION (it's a new flag rather
     * than a change to default behavior so that applications relying on
     * this for security won't even compile against older library versions).
     * 1.0.1 and later also have a function SSL_renegotiate_abbreviated() to
     * request renegotiation but not a new session (s->new_session remains
     * unset): for servers, this essentially just means that the
     * SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION setting will be
     * ignored.
     */
    if (is_v2_record ||
        (s->new_session &&
         (s->options & SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION))) {
        if (!ssl_get_new_session(s, 1))
            goto err;
    } else {
        i = ssl_get_prev_session(s, &extensions, &session_id);
507
        /*
508 509 510 511 512 513 514
         * Only resume if the session's version matches the negotiated
         * version.
         * RFC 5246 does not provide much useful advice on resumption
         * with a different protocol version. It doesn't forbid it but
         * the sanity of such behaviour would be questionable.
         * In practice, clients do not accept a version mismatch and
         * will abort the handshake with an error.
515
         */
516 517 518 519 520
        if (i == 1 && s->version == s->session->ssl_version) {
            /* previous session */
            s->hit = 1;
        } else if (i == -1) {
            goto err;
521
        } else {
522 523
            /* i == 0 */
            if (!ssl_get_new_session(s, 1))
524
                goto err;
525
        }
526
    }
527

528
    if (SSL_IS_DTLS(s)) {
M
Matt Caswell 已提交
529
        /* Empty cookie was already handled above by returning early. */
E
Emilia Kasper 已提交
530
        if (SSL_get_options(s) & SSL_OP_COOKIE_EXCHANGE) {
531
            if (s->ctx->app_verify_cookie_cb != NULL) {
E
Emilia Kasper 已提交
532 533
                if (s->ctx->app_verify_cookie_cb(s, PACKET_data(&cookie),
                                                 PACKET_remaining(&cookie)) == 0) {
534 535
                    al = SSL_AD_HANDSHAKE_FAILURE;
                    SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
536
                           SSL_R_COOKIE_MISMATCH);
537
                    goto f_err;
E
Emilia Kasper 已提交
538
                    /* else cookie verification succeeded */
539
                }
540
            /* default verification */
E
Emilia Kasper 已提交
541 542
            } else if (!PACKET_equal(&cookie, s->d1->cookie,
                                     s->d1->cookie_len)) {
543 544 545
                al = SSL_AD_HANDSHAKE_FAILURE;
                SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_COOKIE_MISMATCH);
                goto f_err;
546
            }
M
Matt Caswell 已提交
547
            s->d1->cookie_verified = 1;
548
        }
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
        if (s->method->version == DTLS_ANY_VERSION) {
            /* Select version to use */
            if (s->client_version <= DTLS1_2_VERSION &&
                !(s->options & SSL_OP_NO_DTLSv1_2)) {
                s->version = DTLS1_2_VERSION;
                s->method = DTLSv1_2_server_method();
            } else if (tls1_suiteb(s)) {
                SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
                       SSL_R_ONLY_DTLS_1_2_ALLOWED_IN_SUITEB_MODE);
                s->version = s->client_version;
                al = SSL_AD_PROTOCOL_VERSION;
                goto f_err;
            } else if (s->client_version <= DTLS1_VERSION &&
                       !(s->options & SSL_OP_NO_DTLSv1)) {
                s->version = DTLS1_VERSION;
                s->method = DTLSv1_server_method();
            } else {
                SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
                       SSL_R_WRONG_VERSION_NUMBER);
                s->version = s->client_version;
                al = SSL_AD_PROTOCOL_VERSION;
                goto f_err;
            }
            s->session->ssl_version = s->version;
573
        }
574
    }
575

576 577
    if (ssl_bytes_to_cipher_list(s, &cipher_suites, &(ciphers),
                                 is_v2_record, &al) == NULL) {
578 579
        goto f_err;
    }
580

581 582 583 584
    /* If it is a hit, check that the cipher is in the list */
    if (s->hit) {
        j = 0;
        id = s->session->cipher->id;
585

586
#ifdef CIPHER_DEBUG
587 588
        fprintf(stderr, "client sent %d ciphers\n",
                sk_SSL_CIPHER_num(ciphers));
589
#endif
590 591
        for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
            c = sk_SSL_CIPHER_value(ciphers, i);
592
#ifdef CIPHER_DEBUG
593 594
            fprintf(stderr, "client [%2d of %2d]:%s\n",
                    i, sk_SSL_CIPHER_num(ciphers), SSL_CIPHER_get_name(c));
595
#endif
596 597 598
            if (c->id == id) {
                j = 1;
                break;
599
            }
600
        }
601
        if (j == 0) {
602
            /*
603 604
             * we need to have the cipher in the cipher list if we are asked
             * to reuse it
605
             */
606 607 608
            al = SSL_AD_ILLEGAL_PARAMETER;
            SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO,
                   SSL_R_REQUIRED_CIPHER_MISSING);
609 610
            goto f_err;
        }
611
    }
M
Matt Caswell 已提交
612

613 614 615 616
    complen = PACKET_remaining(&compression);
    for (j = 0; j < complen; j++) {
        if (PACKET_data(&compression)[j] == 0)
            break;
617
    }
618

619 620 621 622 623 624 625
    if (j >= complen) {
        /* no compress */
        al = SSL_AD_DECODE_ERROR;
        SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_NO_COMPRESSION_SPECIFIED);
        goto f_err;
    }
    
626 627
    /* TLS extensions */
    if (s->version >= SSL3_VERSION) {
628
        if (!ssl_parse_clienthello_tlsext(s, &extensions)) {
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
            SSLerr(SSL_F_SSL3_GET_CLIENT_HELLO, SSL_R_PARSE_TLSEXT);
            goto err;
        }
    }

    /*
     * Check if we want to use external pre-shared secret for this handshake
     * for not reused session only. We need to generate server_random before
     * calling tls_session_secret_cb in order to allow SessionTicket
     * processing to use it in key derivation.
     */
    {
        unsigned char *pos;
        pos = s->s3->server_random;
        if (ssl_fill_hello_random(s, 1, pos, SSL3_RANDOM_SIZE) <= 0) {
            goto f_err;
        }
    }

    if (!s->hit && s->version >= TLS1_VERSION && s->tls_session_secret_cb) {
        SSL_CIPHER *pref_cipher = NULL;

        s->session->master_key_length = sizeof(s->session->master_key);
        if (s->tls_session_secret_cb(s, s->session->master_key,
                                     &s->session->master_key_length, ciphers,
                                     &pref_cipher,
                                     s->tls_session_secret_cb_arg)) {
            s->hit = 1;
            s->session->ciphers = ciphers;
            s->session->verify_result = X509_V_OK;

            ciphers = NULL;

            /* check if some cipher was preferred by call back */
            pref_cipher =
                pref_cipher ? pref_cipher : ssl3_choose_cipher(s,
                                                               s->
                                                               session->ciphers,
                                                               SSL_get_ciphers
                                                               (s));
            if (pref_cipher == NULL) {
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
671
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
672 673 674 675
                goto f_err;
            }

            s->session->cipher = pref_cipher;
R
Rich Salz 已提交
676
            sk_SSL_CIPHER_free(s->cipher_list);
677
            s->cipher_list = sk_SSL_CIPHER_dup(s->session->ciphers);
R
Rich Salz 已提交
678
            sk_SSL_CIPHER_free(s->cipher_list_by_id);
679 680 681
            s->cipher_list_by_id = sk_SSL_CIPHER_dup(s->session->ciphers);
        }
    }
682

683 684
    /*
     * Worst case, we will use the NULL compression, but if we have other
685
     * options, we will now look for them.  We have complen-1 compression
686 687 688
     * algorithms from the client, starting at q.
     */
    s->s3->tmp.new_compression = NULL;
689
#ifndef OPENSSL_NO_COMP
690 691 692
    /* This only happens if we have a cache hit */
    if (s->session->compress_meth != 0) {
        int m, comp_id = s->session->compress_meth;
M
Matt Caswell 已提交
693
        unsigned int k;
694 695 696
        /* Perform sanity checks on resumed compression algorithm */
        /* Can't disable compression */
        if (!ssl_allow_compression(s)) {
M
Matt Caswell 已提交
697
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
698 699 700 701 702 703 704 705 706 707 708 709
                   SSL_R_INCONSISTENT_COMPRESSION);
            goto f_err;
        }
        /* Look for resumed compression method */
        for (m = 0; m < sk_SSL_COMP_num(s->ctx->comp_methods); m++) {
            comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
            if (comp_id == comp->id) {
                s->s3->tmp.new_compression = comp;
                break;
            }
        }
        if (s->s3->tmp.new_compression == NULL) {
M
Matt Caswell 已提交
710
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
711 712 713 714
                   SSL_R_INVALID_COMPRESSION_ALGORITHM);
            goto f_err;
        }
        /* Look for resumed method in compression list */
M
Matt Caswell 已提交
715
        for (k = 0; k < complen; k++) {
716
            if (PACKET_data(&compression)[k] == comp_id)
717 718
                break;
        }
M
Matt Caswell 已提交
719
        if (k >= complen) {
720
            al = SSL_AD_ILLEGAL_PARAMETER;
M
Matt Caswell 已提交
721
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO,
722 723 724 725 726 727
                   SSL_R_REQUIRED_COMPRESSSION_ALGORITHM_MISSING);
            goto f_err;
        }
    } else if (s->hit)
        comp = NULL;
    else if (ssl_allow_compression(s) && s->ctx->comp_methods) {
728
        /* See if we have a match */
M
Matt Caswell 已提交
729 730
        int m, nn, v, done = 0;
        unsigned int o;
731 732 733 734 735

        nn = sk_SSL_COMP_num(s->ctx->comp_methods);
        for (m = 0; m < nn; m++) {
            comp = sk_SSL_COMP_value(s->ctx->comp_methods, m);
            v = comp->id;
736
            for (o = 0; o < complen; o++) {
737
                if (v == PACKET_data(&compression)[o]) {
738 739 740 741 742 743 744 745 746 747 748 749
                    done = 1;
                    break;
                }
            }
            if (done)
                break;
        }
        if (done)
            s->s3->tmp.new_compression = comp;
        else
            comp = NULL;
    }
750
#else
751 752 753 754 755
    /*
     * If compression is disabled we'd better not try to resume a session
     * using compression.
     */
    if (s->session->compress_meth != 0) {
M
Matt Caswell 已提交
756
        SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_INCONSISTENT_COMPRESSION);
757 758
        goto f_err;
    }
759
#endif
760

761 762 763
    /*
     * Given s->session->ciphers and SSL_get_ciphers, we must pick a cipher
     */
764

765
    if (!s->hit) {
766
#ifdef OPENSSL_NO_COMP
767
        s->session->compress_meth = 0;
768
#else
769
        s->session->compress_meth = (comp == NULL) ? 0 : comp->id;
770
#endif
R
Rich Salz 已提交
771
        sk_SSL_CIPHER_free(s->session->ciphers);
772 773
        s->session->ciphers = ciphers;
        if (ciphers == NULL) {
774
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
775
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, ERR_R_INTERNAL_ERROR);
776 777 778 779
            goto f_err;
        }
        ciphers = NULL;
        if (!tls1_set_server_sigalgs(s)) {
M
Matt Caswell 已提交
780
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
781 782
            goto err;
        }
M
Matt Caswell 已提交
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
    }

    sk_SSL_CIPHER_free(ciphers);
    return MSG_PROCESS_CONTINUE_PROCESSING;
 f_err:
    ssl3_send_alert(s, SSL3_AL_FATAL, al);
 err:
    statem_set_error(s);

    sk_SSL_CIPHER_free(ciphers);
    return MSG_PROCESS_ERROR;

}

enum WORK_STATE tls_post_process_client_hello(SSL *s, enum WORK_STATE wst)
{
    int al;
    SSL_CIPHER *cipher;

    if (wst == WORK_MORE_A) {
        if (!s->hit) {
            /* Let cert callback update server certificates if required */
            if (s->cert->cert_cb) {
                int rv = s->cert->cert_cb(s, s->cert->cert_cb_arg);
                if (rv == 0) {
                    al = SSL_AD_INTERNAL_ERROR;
                    SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO, SSL_R_CERT_CB_ERROR);
                    goto f_err;
                }
                if (rv < 0) {
                    s->rwstate = SSL_X509_LOOKUP;
                    return WORK_MORE_A;
                }
                s->rwstate = SSL_NOTHING;
817
            }
M
Matt Caswell 已提交
818 819 820 821 822 823
            cipher = ssl3_choose_cipher(s, s->session->ciphers, SSL_get_ciphers(s));

            if (cipher == NULL) {
                al = SSL_AD_HANDSHAKE_FAILURE;
                SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO, SSL_R_NO_SHARED_CIPHER);
                goto f_err;
824
            }
M
Matt Caswell 已提交
825 826 827 828 829 830 831 832 833 834 835
            s->s3->tmp.new_cipher = cipher;
            /* check whether we should disable session resumption */
            if (s->not_resumable_session_cb != NULL)
                s->session->not_resumable = s->not_resumable_session_cb(s,
                    ((cipher->algorithm_mkey & (SSL_kDHE | SSL_kECDHE)) != 0));
            if (s->session->not_resumable)
                /* do not send a session ticket */
                s->tlsext_ticket_expected = 0;
        } else {
            /* Session-id reuse */
            s->s3->tmp.new_cipher = s->session->cipher;
836 837
        }

M
Matt Caswell 已提交
838 839 840
        if (!SSL_USE_SIGALGS(s) || !(s->verify_mode & SSL_VERIFY_PEER)) {
            if (!ssl3_digest_cached_records(s, 0))
                goto f_err;
841 842
        }

M
Matt Caswell 已提交
843 844 845 846 847 848 849 850 851 852 853
        /*-
         * we now have the following setup.
         * client_random
         * cipher_list          - our prefered list of ciphers
         * ciphers              - the clients prefered list of ciphers
         * compression          - basically ignored right now
         * ssl version is set   - sslv3
         * s->session           - The ssl session has been setup.
         * s->hit               - session reuse flag
         * s->s3->tmp.new_cipher- the new cipher to use.
         */
854

M
Matt Caswell 已提交
855 856 857 858 859 860 861
        /* Handles TLS extensions that we couldn't check earlier */
        if (s->version >= SSL3_VERSION) {
            if (ssl_check_clienthello_tlsext_late(s) <= 0) {
                SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO, SSL_R_CLIENTHELLO_TLSEXT);
                goto f_err;
            }
        }
862

M
Matt Caswell 已提交
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883
        wst = WORK_MORE_B;
    }
#ifndef OPENSSL_NO_SRP
    if (wst == WORK_MORE_B) {
        int ret;
        if ((ret = ssl_check_srp_ext_ClientHello(s, &al)) < 0) {
            /*
             * callback indicates further work to be done
             */
            s->rwstate = SSL_X509_LOOKUP;
            return WORK_MORE_B;
        }
        if (ret != SSL_ERROR_NONE) {
            /*
             * This is not really an error but the only means to for
             * a client to detect whether srp is supported.
             */
            if (al != TLS1_AD_UNKNOWN_PSK_IDENTITY)
                SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_HELLO,
                           SSL_R_CLIENTHELLO_TLSEXT);
            goto f_err;
884 885
        }
    }
M
Matt Caswell 已提交
886 887
#endif
    s->renegotiate = 2;
888

M
Matt Caswell 已提交
889
    return WORK_FINISHED_STOP;
890
 f_err:
M
Matt Caswell 已提交
891 892 893 894 895 896
    ssl3_send_alert(s, SSL3_AL_FATAL, al);
    statem_set_error(s);
    return WORK_ERROR;
}

int tls_construct_server_hello(SSL *s)
897 898 899 900 901 902 903
{
    unsigned char *buf;
    unsigned char *p, *d;
    int i, sl;
    int al = 0;
    unsigned long l;

M
Matt Caswell 已提交
904
    buf = (unsigned char *)s->init_buf->data;
905

M
Matt Caswell 已提交
906 907
    /* Do the message type and length last */
    d = p = ssl_handshake_start(s);
908

M
Matt Caswell 已提交
909 910
    *(p++) = s->version >> 8;
    *(p++) = s->version & 0xff;
911

M
Matt Caswell 已提交
912 913 914 915 916 917
    /*
     * Random stuff. Filling of the server_random takes place in
     * tls_process_client_hello()
     */
    memcpy(p, s->s3->server_random, SSL3_RANDOM_SIZE);
    p += SSL3_RANDOM_SIZE;
918

M
Matt Caswell 已提交
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
    /*-
     * There are several cases for the session ID to send
     * back in the server hello:
     * - For session reuse from the session cache,
     *   we send back the old session ID.
     * - If stateless session reuse (using a session ticket)
     *   is successful, we send back the client's "session ID"
     *   (which doesn't actually identify the session).
     * - If it is a new session, we send back the new
     *   session ID.
     * - However, if we want the new session to be single-use,
     *   we send back a 0-length session ID.
     * s->hit is non-zero in either case of session reuse,
     * so the following won't overwrite an ID that we're supposed
     * to send back.
     */
    if (s->session->not_resumable ||
        (!(s->ctx->session_cache_mode & SSL_SESS_CACHE_SERVER)
         && !s->hit))
        s->session->session_id_length = 0;

    sl = s->session->session_id_length;
    if (sl > (int)sizeof(s->session->session_id)) {
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
        statem_set_error(s);
        return 0;
    }
    *(p++) = sl;
    memcpy(p, s->session->session_id, sl);
    p += sl;
949

M
Matt Caswell 已提交
950 951 952
    /* put the cipher */
    i = ssl3_put_cipher_by_char(s->s3->tmp.new_cipher, p);
    p += i;
953

M
Matt Caswell 已提交
954
    /* put the compression method */
955
#ifdef OPENSSL_NO_COMP
M
Matt Caswell 已提交
956
    *(p++) = 0;
957
#else
M
Matt Caswell 已提交
958 959 960 961
    if (s->s3->tmp.new_compression == NULL)
        *(p++) = 0;
    else
        *(p++) = s->s3->tmp.new_compression->id;
962
#endif
963

M
Matt Caswell 已提交
964 965 966 967 968 969 970 971 972 973 974 975 976
    if (ssl_prepare_serverhello_tlsext(s) <= 0) {
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, SSL_R_SERVERHELLO_TLSEXT);
        statem_set_error(s);
        return 0;
    }
    if ((p =
         ssl_add_serverhello_tlsext(s, p, buf + SSL3_RT_MAX_PLAIN_LENGTH,
                                    &al)) == NULL) {
        ssl3_send_alert(s, SSL3_AL_FATAL, al);
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
        statem_set_error(s);
        return 0;
    }
977

M
Matt Caswell 已提交
978 979 980 981 982 983
    /* do the header */
    l = (p - d);
    if (!ssl_set_handshake_header(s, SSL3_MT_SERVER_HELLO, l)) {
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_HELLO, ERR_R_INTERNAL_ERROR);
        statem_set_error(s);
        return 0;
984
    }
985

M
Matt Caswell 已提交
986
    return 1;
987
}
988

M
Matt Caswell 已提交
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
int tls_construct_server_done(SSL *s)
{
    if (!ssl_set_handshake_header(s, SSL3_MT_SERVER_DONE, 0)) {
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_DONE, ERR_R_INTERNAL_ERROR);
        statem_set_error(s);
        return 0;
    }

    if (!s->s3->tmp.cert_request) {
        if (!ssl3_digest_cached_records(s, 0)) {
            statem_set_error(s);
        }
    }

    return 1;
}

int tls_construct_server_key_exchange(SSL *s)
1007
{
1008
#ifndef OPENSSL_NO_RSA
1009 1010 1011 1012 1013
    unsigned char *q;
    int j, num;
    RSA *rsa;
    unsigned char md_buf[MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH];
    unsigned int u;
1014
#endif
1015
#ifndef OPENSSL_NO_DH
1016
    DH *dh = NULL, *dhp;
B
Bodo Möller 已提交
1017
#endif
1018
#ifndef OPENSSL_NO_EC
1019 1020 1021 1022 1023
    EC_KEY *ecdh = NULL, *ecdhp;
    unsigned char *encodedPoint = NULL;
    int encodedlen = 0;
    int curve_id = 0;
    BN_CTX *bn_ctx = NULL;
1024
#endif
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
    EVP_PKEY *pkey;
    const EVP_MD *md = NULL;
    unsigned char *p, *d;
    int al, i;
    unsigned long type;
    int n;
    CERT *cert;
    BIGNUM *r[4];
    int nr[4], kn;
    BUF_MEM *buf;
    EVP_MD_CTX md_ctx;

    EVP_MD_CTX_init(&md_ctx);

M
Matt Caswell 已提交
1039 1040 1041 1042
    type = s->s3->tmp.new_cipher->algorithm_mkey;
    cert = s->cert;

    buf = s->init_buf;
1043

M
Matt Caswell 已提交
1044 1045
    r[0] = r[1] = r[2] = r[3] = NULL;
    n = 0;
1046
#ifndef OPENSSL_NO_PSK
M
Matt Caswell 已提交
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
    if (type & SSL_PSK) {
        /*
         * reserve size for record length and PSK identity hint
         */
        n += 2;
        if (s->cert->psk_identity_hint)
            n += strlen(s->cert->psk_identity_hint);
    }
    /* Plain PSK or RSAPSK nothing to do */
    if (type & (SSL_kPSK | SSL_kRSAPSK)) {
    } else
1058
#endif                          /* !OPENSSL_NO_PSK */
1059
#ifndef OPENSSL_NO_RSA
M
Matt Caswell 已提交
1060 1061 1062 1063 1064 1065 1066 1067
    if (type & SSL_kRSA) {
        rsa = cert->rsa_tmp;
        if ((rsa == NULL) && (s->cert->rsa_tmp_cb != NULL)) {
            rsa = s->cert->rsa_tmp_cb(s,
                                      SSL_C_IS_EXPORT(s->s3->
                                                      tmp.new_cipher),
                                      SSL_C_EXPORT_PKEYLENGTH(s->s3->
                                                              tmp.new_cipher));
1068 1069
            if (rsa == NULL) {
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1070 1071
                SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                       SSL_R_ERROR_GENERATING_TMP_RSA_KEY);
1072 1073
                goto f_err;
            }
M
Matt Caswell 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
            RSA_up_ref(rsa);
            cert->rsa_tmp = rsa;
        }
        if (rsa == NULL) {
            al = SSL_AD_HANDSHAKE_FAILURE;
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_MISSING_TMP_RSA_KEY);
            goto f_err;
        }
        r[0] = rsa->n;
        r[1] = rsa->e;
        s->s3->tmp.use_rsa_tmp = 1;
    } else
1087
#endif
1088
#ifndef OPENSSL_NO_DH
M
Matt Caswell 已提交
1089 1090 1091
    if (type & (SSL_kDHE | SSL_kDHEPSK)) {
        if (s->cert->dh_tmp_auto) {
            dhp = ssl_get_auto_dh(s);
1092
            if (dhp == NULL) {
M
Matt Caswell 已提交
1093 1094
                al = SSL_AD_INTERNAL_ERROR;
                SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
1095
                       ERR_R_INTERNAL_ERROR);
M
Matt Caswell 已提交
1096
                goto f_err;
1097
            }
M
Matt Caswell 已提交
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
        } else
            dhp = cert->dh_tmp;
        if ((dhp == NULL) && (s->cert->dh_tmp_cb != NULL))
            dhp = s->cert->dh_tmp_cb(s,
                                     SSL_C_IS_EXPORT(s->s3->
                                                     tmp.new_cipher),
                                     SSL_C_EXPORT_PKEYLENGTH(s->s3->
                                                             tmp.new_cipher));
        if (dhp == NULL) {
            al = SSL_AD_HANDSHAKE_FAILURE;
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_MISSING_TMP_DH_KEY);
            goto f_err;
        }
        if (!ssl_security(s, SSL_SECOP_TMP_DH,
                          DH_security_bits(dhp), 0, dhp)) {
            al = SSL_AD_HANDSHAKE_FAILURE;
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_DH_KEY_TOO_SMALL);
            goto f_err;
        }
        if (s->s3->tmp.dh != NULL) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   ERR_R_INTERNAL_ERROR);
            goto err;
        }
1124

M
Matt Caswell 已提交
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
        if (s->cert->dh_tmp_auto)
            dh = dhp;
        else if ((dh = DHparams_dup(dhp)) == NULL) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
            goto err;
        }

        s->s3->tmp.dh = dh;
        if ((dhp->pub_key == NULL ||
             dhp->priv_key == NULL ||
             (s->options & SSL_OP_SINGLE_DH_USE))) {
            if (!DH_generate_key(dh)) {
                SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
1138 1139
                goto err;
            }
M
Matt Caswell 已提交
1140 1141 1142 1143 1144 1145
        } else {
            dh->pub_key = BN_dup(dhp->pub_key);
            dh->priv_key = BN_dup(dhp->priv_key);
            if ((dh->pub_key == NULL) || (dh->priv_key == NULL)) {
                SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_DH_LIB);
                goto err;
1146
            }
M
Matt Caswell 已提交
1147 1148 1149 1150 1151
        }
        r[0] = dh->p;
        r[1] = dh->g;
        r[2] = dh->pub_key;
    } else
1152
#endif
1153
#ifndef OPENSSL_NO_EC
M
Matt Caswell 已提交
1154 1155
    if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
        const EC_GROUP *group;
1156

M
Matt Caswell 已提交
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
        ecdhp = cert->ecdh_tmp;
        if (s->cert->ecdh_tmp_auto) {
            /* Get NID of appropriate shared curve */
            int nid = tls1_shared_curve(s, -2);
            if (nid != NID_undef)
                ecdhp = EC_KEY_new_by_curve_name(nid);
        } else if ((ecdhp == NULL) && s->cert->ecdh_tmp_cb) {
            ecdhp = s->cert->ecdh_tmp_cb(s,
                                         SSL_C_IS_EXPORT(s->s3->
                                                         tmp.new_cipher),
                                         SSL_C_EXPORT_PKEYLENGTH(s->
                                                                 s3->tmp.new_cipher));
        }
        if (ecdhp == NULL) {
            al = SSL_AD_HANDSHAKE_FAILURE;
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_MISSING_TMP_ECDH_KEY);
            goto f_err;
        }

        if (s->s3->tmp.ecdh != NULL) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   ERR_R_INTERNAL_ERROR);
            goto err;
        }

        /* Duplicate the ECDH structure. */
        if (ecdhp == NULL) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
            goto err;
        }
        if (s->cert->ecdh_tmp_auto)
            ecdh = ecdhp;
        else if ((ecdh = EC_KEY_dup(ecdhp)) == NULL) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
            goto err;
        }
1194

M
Matt Caswell 已提交
1195 1196 1197 1198 1199 1200 1201
        s->s3->tmp.ecdh = ecdh;
        if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
            (EC_KEY_get0_private_key(ecdh) == NULL) ||
            (s->options & SSL_OP_SINGLE_ECDH_USE)) {
            if (!EC_KEY_generate_key(ecdh)) {
                SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                       ERR_R_ECDH_LIB);
1202 1203
                goto err;
            }
M
Matt Caswell 已提交
1204
        }
1205

M
Matt Caswell 已提交
1206 1207 1208 1209 1210 1211
        if (((group = EC_KEY_get0_group(ecdh)) == NULL) ||
            (EC_KEY_get0_public_key(ecdh) == NULL) ||
            (EC_KEY_get0_private_key(ecdh) == NULL)) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
            goto err;
        }
1212

M
Matt Caswell 已提交
1213 1214 1215 1216 1217 1218
        if (SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) &&
            (EC_GROUP_get_degree(group) > 163)) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_ECGROUP_TOO_LARGE_FOR_CIPHER);
            goto err;
        }
1219

M
Matt Caswell 已提交
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
        /*
         * XXX: For now, we only support ephemeral ECDH keys over named
         * (not generic) curves. For supported named curves, curve_id is
         * non-zero.
         */
        if ((curve_id =
             tls1_ec_nid2curve_id(EC_GROUP_get_curve_name(group)))
            == 0) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_UNSUPPORTED_ELLIPTIC_CURVE);
            goto err;
        }
1232

M
Matt Caswell 已提交
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
        /*
         * Encode the public key. First check the size of encoding and
         * allocate memory accordingly.
         */
        encodedlen = EC_POINT_point2oct(group,
                                        EC_KEY_get0_public_key(ecdh),
                                        POINT_CONVERSION_UNCOMPRESSED,
                                        NULL, 0, NULL);

        encodedPoint = (unsigned char *)
            OPENSSL_malloc(encodedlen * sizeof(unsigned char));
        bn_ctx = BN_CTX_new();
        if ((encodedPoint == NULL) || (bn_ctx == NULL)) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   ERR_R_MALLOC_FAILURE);
            goto err;
        }
1250

M
Matt Caswell 已提交
1251 1252 1253 1254
        encodedlen = EC_POINT_point2oct(group,
                                        EC_KEY_get0_public_key(ecdh),
                                        POINT_CONVERSION_UNCOMPRESSED,
                                        encodedPoint, encodedlen, bn_ctx);
1255

M
Matt Caswell 已提交
1256 1257 1258 1259
        if (encodedlen == 0) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_ECDH_LIB);
            goto err;
        }
1260

M
Matt Caswell 已提交
1261 1262
        BN_CTX_free(bn_ctx);
        bn_ctx = NULL;
1263

M
Matt Caswell 已提交
1264 1265 1266 1267 1268 1269 1270
        /*
         * XXX: For now, we only support named (not generic) curves in
         * ECDH ephemeral key exchanges. In this situation, we need four
         * additional bytes to encode the entire ServerECDHParams
         * structure.
         */
        n += 4 + encodedlen;
1271

M
Matt Caswell 已提交
1272 1273 1274 1275 1276 1277 1278 1279 1280
        /*
         * We'll generate the serverKeyExchange message explicitly so we
         * can set these to NULLs
         */
        r[0] = NULL;
        r[1] = NULL;
        r[2] = NULL;
        r[3] = NULL;
    } else
1281
#endif                          /* !OPENSSL_NO_EC */
B
Ben Laurie 已提交
1282
#ifndef OPENSSL_NO_SRP
M
Matt Caswell 已提交
1283 1284 1285 1286 1287 1288 1289
    if (type & SSL_kSRP) {
        if ((s->srp_ctx.N == NULL) ||
            (s->srp_ctx.g == NULL) ||
            (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) {
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_MISSING_SRP_PARAM);
            goto err;
1290
        }
M
Matt Caswell 已提交
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
        r[0] = s->srp_ctx.N;
        r[1] = s->srp_ctx.g;
        r[2] = s->srp_ctx.s;
        r[3] = s->srp_ctx.B;
    } else
#endif
    {
        al = SSL_AD_HANDSHAKE_FAILURE;
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
               SSL_R_UNKNOWN_KEY_EXCHANGE_TYPE);
        goto f_err;
    }
    for (i = 0; i < 4 && r[i] != NULL; i++) {
        nr[i] = BN_num_bytes(r[i]);
B
Ben Laurie 已提交
1305
#ifndef OPENSSL_NO_SRP
M
Matt Caswell 已提交
1306 1307 1308
        if ((i == 2) && (type & SSL_kSRP))
            n += 1 + nr[i];
        else
B
Ben Laurie 已提交
1309
#endif
M
Matt Caswell 已提交
1310 1311
            n += 2 + nr[i];
    }
1312

M
Matt Caswell 已提交
1313 1314 1315 1316 1317 1318
    if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL|SSL_aSRP))
        && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK)) {
        if ((pkey = ssl_get_sign_pkey(s, s->s3->tmp.new_cipher, &md))
            == NULL) {
            al = SSL_AD_DECODE_ERROR;
            goto f_err;
1319
        }
M
Matt Caswell 已提交
1320 1321 1322 1323 1324
        kn = EVP_PKEY_size(pkey);
    } else {
        pkey = NULL;
        kn = 0;
    }
1325

M
Matt Caswell 已提交
1326 1327 1328 1329 1330
    if (!BUF_MEM_grow_clean(buf, n + SSL_HM_HEADER_LENGTH(s) + kn)) {
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_LIB_BUF);
        goto err;
    }
    d = p = ssl_handshake_start(s);
1331

1332
#ifndef OPENSSL_NO_PSK
M
Matt Caswell 已提交
1333 1334 1335 1336 1337 1338 1339 1340 1341
    if (type & SSL_PSK) {
        /* copy PSK identity hint */
        if (s->cert->psk_identity_hint) {
            s2n(strlen(s->cert->psk_identity_hint), p);
            strncpy((char *)p, s->cert->psk_identity_hint,
                    strlen(s->cert->psk_identity_hint));
            p += strlen(s->cert->psk_identity_hint);
        } else {
            s2n(0, p);
1342
        }
M
Matt Caswell 已提交
1343
    }
1344 1345
#endif

M
Matt Caswell 已提交
1346
    for (i = 0; i < 4 && r[i] != NULL; i++) {
B
Ben Laurie 已提交
1347
#ifndef OPENSSL_NO_SRP
M
Matt Caswell 已提交
1348 1349 1350 1351
        if ((i == 2) && (type & SSL_kSRP)) {
            *p = nr[i];
            p++;
        } else
B
Ben Laurie 已提交
1352
#endif
M
Matt Caswell 已提交
1353 1354 1355 1356
            s2n(nr[i], p);
        BN_bn2bin(r[i], p);
        p += nr[i];
    }
1357

1358
#ifndef OPENSSL_NO_EC
M
Matt Caswell 已提交
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
    if (type & (SSL_kECDHE | SSL_kECDHEPSK)) {
        /*
         * XXX: For now, we only support named (not generic) curves. In
         * this situation, the serverKeyExchange message has: [1 byte
         * CurveType], [2 byte CurveName] [1 byte length of encoded
         * point], followed by the actual encoded point itself
         */
        *p = NAMED_CURVE_TYPE;
        p += 1;
        *p = 0;
        p += 1;
        *p = curve_id;
        p += 1;
        *p = encodedlen;
        p += 1;
        memcpy(p, encodedPoint, encodedlen);
        OPENSSL_free(encodedPoint);
        encodedPoint = NULL;
        p += encodedlen;
    }
B
Bodo Möller 已提交
1379 1380
#endif

M
Matt Caswell 已提交
1381 1382 1383 1384 1385 1386
    /* not anonymous */
    if (pkey != NULL) {
        /*
         * n is the length of the params, they start at &(d[4]) and p
         * points to the space at the end.
         */
1387
#ifndef OPENSSL_NO_RSA
M
Matt Caswell 已提交
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
        if (pkey->type == EVP_PKEY_RSA && !SSL_USE_SIGALGS(s)) {
            q = md_buf;
            j = 0;
            for (num = 2; num > 0; num--) {
                EVP_MD_CTX_set_flags(&md_ctx,
                                     EVP_MD_CTX_FLAG_NON_FIPS_ALLOW);
                EVP_DigestInit_ex(&md_ctx, (num == 2)
                                  ? s->ctx->md5 : s->ctx->sha1, NULL);
                EVP_DigestUpdate(&md_ctx, &(s->s3->client_random[0]),
                                 SSL3_RANDOM_SIZE);
                EVP_DigestUpdate(&md_ctx, &(s->s3->server_random[0]),
                                 SSL3_RANDOM_SIZE);
                EVP_DigestUpdate(&md_ctx, d, n);
                EVP_DigestFinal_ex(&md_ctx, q, (unsigned int *)&i);
                q += i;
                j += i;
            }
            if (RSA_sign(NID_md5_sha1, md_buf, j,
                         &(p[2]), &u, pkey->pkey.rsa) <= 0) {
                SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_LIB_RSA);
                goto err;
            }
            s2n(u, p);
            n += u + 2;
        } else
1413
#endif
M
Matt Caswell 已提交
1414 1415 1416 1417 1418 1419 1420 1421 1422
        if (md) {
            /* send signature algorithm */
            if (SSL_USE_SIGALGS(s)) {
                if (!tls12_get_sigandhash(p, pkey, md)) {
                    /* Should never happen */
                    al = SSL_AD_INTERNAL_ERROR;
                    SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                           ERR_R_INTERNAL_ERROR);
                    goto f_err;
1423
                }
M
Matt Caswell 已提交
1424 1425
                p += 2;
            }
1426
#ifdef SSL_DEBUG
M
Matt Caswell 已提交
1427
            fprintf(stderr, "Using hash %s\n", EVP_MD_name(md));
1428
#endif
M
Matt Caswell 已提交
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
            EVP_SignInit_ex(&md_ctx, md, NULL);
            EVP_SignUpdate(&md_ctx, &(s->s3->client_random[0]),
                           SSL3_RANDOM_SIZE);
            EVP_SignUpdate(&md_ctx, &(s->s3->server_random[0]),
                           SSL3_RANDOM_SIZE);
            EVP_SignUpdate(&md_ctx, d, n);
            if (!EVP_SignFinal(&md_ctx, &(p[2]),
                               (unsigned int *)&i, pkey)) {
                SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_LIB_EVP);
                goto err;
1439
            }
M
Matt Caswell 已提交
1440 1441 1442 1443 1444 1445
            s2n(i, p);
            n += i + 2;
            if (SSL_USE_SIGALGS(s))
                n += 2;
        } else {
            /* Is this error check actually needed? */
M
Matt Caswell 已提交
1446
            al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1447 1448
            SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE,
                   SSL_R_UNKNOWN_PKEY_TYPE);
M
Matt Caswell 已提交
1449 1450
            goto f_err;
        }
1451 1452
    }

M
Matt Caswell 已提交
1453 1454 1455 1456 1457 1458
    if (!ssl_set_handshake_header(s, SSL3_MT_SERVER_KEY_EXCHANGE, n)) {
        al = SSL_AD_HANDSHAKE_FAILURE;
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
        goto f_err;
    }

1459
    EVP_MD_CTX_cleanup(&md_ctx);
M
Matt Caswell 已提交
1460
    return 1;
1461 1462 1463
 f_err:
    ssl3_send_alert(s, SSL3_AL_FATAL, al);
 err:
1464
#ifndef OPENSSL_NO_EC
R
Rich Salz 已提交
1465
    OPENSSL_free(encodedPoint);
1466
    BN_CTX_free(bn_ctx);
B
Bodo Möller 已提交
1467
#endif
1468
    EVP_MD_CTX_cleanup(&md_ctx);
M
Matt Caswell 已提交
1469 1470
    statem_set_error(s);
    return 0;
1471
}
1472

M
Matt Caswell 已提交
1473
int tls_construct_certificate_request(SSL *s)
1474 1475 1476 1477 1478 1479 1480
{
    unsigned char *p, *d;
    int i, j, nl, off, n;
    STACK_OF(X509_NAME) *sk = NULL;
    X509_NAME *name;
    BUF_MEM *buf;

M
Matt Caswell 已提交
1481
    buf = s->init_buf;
1482

M
Matt Caswell 已提交
1483
    d = p = ssl_handshake_start(s);
1484

M
Matt Caswell 已提交
1485 1486 1487 1488 1489 1490
    /* get the list of acceptable cert types */
    p++;
    n = ssl3_get_req_cert_type(s, p);
    d[0] = n;
    p += n;
    n++;
1491

M
Matt Caswell 已提交
1492 1493 1494 1495 1496
    if (SSL_USE_SIGALGS(s)) {
        const unsigned char *psigs;
        unsigned char *etmp = p;
        nl = tls12_get_psigalgs(s, &psigs);
        /* Skip over length for now */
1497
        p += 2;
M
Matt Caswell 已提交
1498 1499 1500 1501 1502 1503
        nl = tls12_copy_sigalgs(s, p, psigs, nl);
        /* Now fill in length */
        s2n(nl, etmp);
        p += nl;
        n += nl + 2;
    }
1504

M
Matt Caswell 已提交
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
    off = n;
    p += 2;
    n += 2;

    sk = SSL_get_client_CA_list(s);
    nl = 0;
    if (sk != NULL) {
        for (i = 0; i < sk_X509_NAME_num(sk); i++) {
            name = sk_X509_NAME_value(sk, i);
            j = i2d_X509_NAME(name, NULL);
            if (!BUF_MEM_grow_clean
                (buf, SSL_HM_HEADER_LENGTH(s) + n + j + 2)) {
                SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST,
                       ERR_R_BUF_LIB);
                goto err;
1520
            }
M
Matt Caswell 已提交
1521 1522 1523 1524 1525
            p = ssl_handshake_start(s) + n;
            s2n(j, p);
            i2d_X509_NAME(name, &p);
            n += 2 + j;
            nl += 2 + j;
1526
        }
M
Matt Caswell 已提交
1527 1528 1529 1530
    }
    /* else no CA names */
    p = ssl_handshake_start(s) + off;
    s2n(nl, p);
1531

M
Matt Caswell 已提交
1532 1533 1534
    if (!ssl_set_handshake_header(s, SSL3_MT_CERTIFICATE_REQUEST, n)) {
        SSLerr(SSL_F_TLS_CONSTRUCT_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR);
        goto err;
1535
    }
1536

M
Matt Caswell 已提交
1537 1538 1539
    s->s3->tmp.cert_request = 1;

    return 1;
1540
 err:
M
Matt Caswell 已提交
1541 1542
    statem_set_error(s);
    return 0;
1543
}
1544

1545
enum MSG_PROCESS_RETURN tls_process_client_key_exchange(SSL *s, PACKET *pkt)
M
Matt Caswell 已提交
1546 1547 1548
{
    int al;
    unsigned int i;
1549
    unsigned long alg_k;
1550
#ifndef OPENSSL_NO_RSA
1551 1552
    RSA *rsa = NULL;
    EVP_PKEY *pkey = NULL;
1553
#endif
1554
#ifndef OPENSSL_NO_DH
1555 1556
    BIGNUM *pub = NULL;
    DH *dh_srvr, *dh_clnt = NULL;
1557
#endif
1558
#ifndef OPENSSL_NO_EC
1559 1560 1561 1562
    EC_KEY *srvr_ecdh = NULL;
    EVP_PKEY *clnt_pub_pkey = NULL;
    EC_POINT *clnt_ecpoint = NULL;
    BN_CTX *bn_ctx = NULL;
B
Bodo Möller 已提交
1563
#endif
1564
    PACKET enc_premaster;
1565
    unsigned char *data, *rsa_decrypt = NULL;
B
Bodo Möller 已提交
1566

1567
    alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
1568

1569 1570 1571 1572 1573
#ifndef OPENSSL_NO_PSK
    /* For PSK parse and retrieve identity, obtain PSK key */
    if (alg_k & SSL_PSK) {
        unsigned char psk[PSK_MAX_PSK_LEN];
        size_t psklen;
1574
        PACKET psk_identity;
1575

1576
        if (!PACKET_get_length_prefixed_2(pkt, &psk_identity)) {
1577
            al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
1578
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
1579 1580
            goto f_err;
        }
1581
        if (PACKET_remaining(&psk_identity) > PSK_MAX_IDENTITY_LEN) {
1582
            al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
1583
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1584 1585 1586 1587 1588
                   SSL_R_DATA_LENGTH_TOO_LONG);
            goto f_err;
        }
        if (s->psk_server_callback == NULL) {
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
1589
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1590 1591 1592 1593
                   SSL_R_PSK_NO_SERVER_CB);
            goto f_err;
        }

1594
        if (!PACKET_strndup(&psk_identity, &s->session->psk_identity)) {
1595
            SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1596
            al = SSL_AD_INTERNAL_ERROR;
1597 1598
            goto f_err;
        }
1599 1600 1601 1602 1603 1604

        psklen = s->psk_server_callback(s, s->session->psk_identity,
                                         psk, sizeof(psk));

        if (psklen > PSK_MAX_PSK_LEN) {
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
1605
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1606 1607 1608 1609 1610
            goto f_err;
        } else if (psklen == 0) {
            /*
             * PSK related to the given identity not found
             */
M
Matt Caswell 已提交
1611
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622
                   SSL_R_PSK_IDENTITY_NOT_FOUND);
            al = SSL_AD_UNKNOWN_PSK_IDENTITY;
            goto f_err;
        }

        OPENSSL_free(s->s3->tmp.psk);
        s->s3->tmp.psk = BUF_memdup(psk, psklen);
        OPENSSL_cleanse(psk, psklen);

        if (s->s3->tmp.psk == NULL) {
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
1623
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1624 1625 1626 1627 1628 1629 1630
            goto f_err;
        }

        s->s3->tmp.psklen = psklen;
    }
    if (alg_k & SSL_kPSK) {
        /* Identity extracted earlier: should be nothing left */
1631
        if (PACKET_remaining(pkt) != 0) {
1632
            al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1633
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
1634 1635 1636 1637 1638
            goto f_err;
        }
        /* PSK handled by ssl_generate_master_secret */
        if (!ssl_generate_master_secret(s, NULL, 0, 0)) {
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
1639
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
1640 1641 1642 1643
            goto f_err;
        }
    } else
#endif
1644
#ifndef OPENSSL_NO_RSA
1645
    if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) {
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
        unsigned char rand_premaster_secret[SSL_MAX_MASTER_KEY_LENGTH];
        int decrypt_len;
        unsigned char decrypt_good, version_good;
        size_t j;

        /* FIX THIS UP EAY EAY EAY EAY */
        if (s->s3->tmp.use_rsa_tmp) {
            if ((s->cert != NULL) && (s->cert->rsa_tmp != NULL))
                rsa = s->cert->rsa_tmp;
            /*
             * Don't do a callback because rsa_tmp should be sent already
             */
            if (rsa == NULL) {
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1660
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1661 1662 1663 1664 1665 1666 1667 1668 1669
                       SSL_R_MISSING_TMP_RSA_PKEY);
                goto f_err;

            }
        } else {
            pkey = s->cert->pkeys[SSL_PKEY_RSA_ENC].privatekey;
            if ((pkey == NULL) ||
                (pkey->type != EVP_PKEY_RSA) || (pkey->pkey.rsa == NULL)) {
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1670
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1671 1672 1673 1674 1675 1676
                       SSL_R_MISSING_RSA_CERTIFICATE);
                goto f_err;
            }
            rsa = pkey->pkey.rsa;
        }

1677 1678
        /* SSLv3 and pre-standard DTLS omit the length bytes. */
        if (s->version == SSL3_VERSION || s->version == DTLS1_BAD_VER) {
1679
            enc_premaster = *pkt;
1680
        } else {
1681 1682 1683
            PACKET orig = *pkt;
            if (!PACKET_get_length_prefixed_2(pkt, &enc_premaster)
                || PACKET_remaining(pkt) != 0) {
1684 1685 1686 1687
                /* Try SSLv3 behaviour for TLS. */
                if (s->options & SSL_OP_TLS_D5_BUG) {
                    enc_premaster = orig;
                } else {
1688
                    al = SSL_AD_DECODE_ERROR;
1689
                    SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH);
1690
                    goto f_err;
1691 1692
                }
            }
1693 1694 1695
        }

        /*
1696 1697 1698 1699
         * We want to be sure that the plaintext buffer size makes it safe to
         * iterate over the entire size of a premaster secret
         * (SSL_MAX_MASTER_KEY_LENGTH). Reject overly short RSA keys because
         * their ciphertext cannot accommodate a premaster secret anyway.
1700
         */
1701 1702
        if (RSA_size(rsa) < SSL_MAX_MASTER_KEY_LENGTH) {
            al = SSL_AD_INTERNAL_ERROR;
1703
            SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE,
1704
                   RSA_R_KEY_SIZE_TOO_SMALL);
1705 1706 1707
            goto f_err;
        }

1708 1709
        rsa_decrypt = OPENSSL_malloc(RSA_size(rsa));
        if (rsa_decrypt == NULL) {
1710
            al = SSL_AD_INTERNAL_ERROR;
1711
            SSLerr(SSL_F_SSL3_GET_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1712 1713
            goto f_err;
        }
1714

1715 1716 1717 1718 1719 1720 1721 1722
        /*
         * We must not leak whether a decryption failure occurs because of
         * Bleichenbacher's attack on PKCS #1 v1.5 RSA padding (see RFC 2246,
         * section 7.4.7.1). The code follows that advice of the TLS RFC and
         * generates a random premaster secret for the case that the decrypt
         * fails. See https://tools.ietf.org/html/rfc5246#section-7.4.7.1
         */

M
Matt Caswell 已提交
1723
        if (RAND_bytes(rand_premaster_secret,
1724
                       sizeof(rand_premaster_secret)) <= 0) {
1725
            goto err;
1726 1727 1728 1729 1730
        }

        decrypt_len = RSA_private_decrypt(PACKET_remaining(&enc_premaster),
                                          PACKET_data(&enc_premaster),
                                          rsa_decrypt, rsa, RSA_PKCS1_PADDING);
1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
        ERR_clear_error();

        /*
         * decrypt_len should be SSL_MAX_MASTER_KEY_LENGTH. decrypt_good will
         * be 0xff if so and zero otherwise.
         */
        decrypt_good =
            constant_time_eq_int_8(decrypt_len, SSL_MAX_MASTER_KEY_LENGTH);

        /*
         * If the version in the decrypted pre-master secret is correct then
         * version_good will be 0xff, otherwise it'll be zero. The
         * Klima-Pokorny-Rosa extension of Bleichenbacher's attack
         * (http://eprint.iacr.org/2003/052/) exploits the version number
         * check as a "bad version oracle". Thus version checks are done in
         * constant time and are treated like any other decryption error.
         */
        version_good =
1749 1750
            constant_time_eq_8(rsa_decrypt[0],
                               (unsigned)(s->client_version >> 8));
1751
        version_good &=
1752 1753
            constant_time_eq_8(rsa_decrypt[1],
                               (unsigned)(s->client_version & 0xff));
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766

        /*
         * The premaster secret must contain the same version number as the
         * ClientHello to detect version rollback attacks (strangely, the
         * protocol does not offer such protection for DH ciphersuites).
         * However, buggy clients exist that send the negotiated protocol
         * version instead if the server does not support the requested
         * protocol version. If SSL_OP_TLS_ROLLBACK_BUG is set, tolerate such
         * clients.
         */
        if (s->options & SSL_OP_TLS_ROLLBACK_BUG) {
            unsigned char workaround_good;
            workaround_good =
1767
                constant_time_eq_8(rsa_decrypt[0], (unsigned)(s->version >> 8));
1768
            workaround_good &=
1769 1770
                constant_time_eq_8(rsa_decrypt[1],
                                   (unsigned)(s->version & 0xff));
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786
            version_good |= workaround_good;
        }

        /*
         * Both decryption and version must be good for decrypt_good to
         * remain non-zero (0xff).
         */
        decrypt_good &= version_good;

        /*
         * Now copy rand_premaster_secret over from p using
         * decrypt_good_mask. If decryption failed, then p does not
         * contain valid plaintext, however, a check above guarantees
         * it is still sufficiently large to read from.
         */
        for (j = 0; j < sizeof(rand_premaster_secret); j++) {
1787 1788 1789
            rsa_decrypt[j] =
                constant_time_select_8(decrypt_good, rsa_decrypt[j],
                                       rand_premaster_secret[j]);
1790 1791
        }

1792 1793
        if (!ssl_generate_master_secret(s, rsa_decrypt,
                                        sizeof(rand_premaster_secret), 0)) {
M
Matt Caswell 已提交
1794
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
1795
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
M
Matt Caswell 已提交
1796 1797
            goto f_err;
        }
1798 1799
        OPENSSL_free(rsa_decrypt);
        rsa_decrypt = NULL;
1800
    } else
U
Ulf Möller 已提交
1801
#endif
1802
#ifndef OPENSSL_NO_DH
1803
    if (alg_k & (SSL_kDHE | SSL_kDHr | SSL_kDHd | SSL_kDHEPSK)) {
1804 1805
        int idx = -1;
        EVP_PKEY *skey = NULL;
1806
        PACKET bookmark = *pkt;
1807 1808
        unsigned char shared[(OPENSSL_DH_MAX_MODULUS_BITS + 7) / 8];

1809
        if (!PACKET_get_net_2(pkt, &i)) {
1810
            if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) {
M
Matt Caswell 已提交
1811
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1812
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
M
Matt Caswell 已提交
1813 1814 1815
                       SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
                goto f_err;
            }
1816
            i = 0;
M
Matt Caswell 已提交
1817
        }
1818
        if (PACKET_remaining(pkt) != i) {
1819
            if (!(s->options & SSL_OP_SSLEAY_080_CLIENT_DH_BUG)) {
M
Matt Caswell 已提交
1820
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1821 1822 1823
                       SSL_R_DH_PUBLIC_VALUE_LENGTH_IS_WRONG);
                goto err;
            } else {
1824 1825
                *pkt = bookmark;
                i = PACKET_remaining(pkt);
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
            }
        }
        if (alg_k & SSL_kDHr)
            idx = SSL_PKEY_DH_RSA;
        else if (alg_k & SSL_kDHd)
            idx = SSL_PKEY_DH_DSA;
        if (idx >= 0) {
            skey = s->cert->pkeys[idx].privatekey;
            if ((skey == NULL) ||
                (skey->type != EVP_PKEY_DH) || (skey->pkey.dh == NULL)) {
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1837
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1838 1839 1840 1841 1842 1843
                       SSL_R_MISSING_RSA_CERTIFICATE);
                goto f_err;
            }
            dh_srvr = skey->pkey.dh;
        } else if (s->s3->tmp.dh == NULL) {
            al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1844
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1845 1846 1847 1848 1849
                   SSL_R_MISSING_TMP_DH_KEY);
            goto f_err;
        } else
            dh_srvr = s->s3->tmp.dh;

1850
        if (PACKET_remaining(pkt) == 0L) {
1851 1852 1853 1854 1855 1856 1857 1858
            /* Get pubkey from cert */
            EVP_PKEY *clkey = X509_get_pubkey(s->session->peer);
            if (clkey) {
                if (EVP_PKEY_cmp_parameters(clkey, skey) == 1)
                    dh_clnt = EVP_PKEY_get1_DH(clkey);
            }
            if (dh_clnt == NULL) {
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1859
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1860 1861 1862 1863 1864
                       SSL_R_MISSING_TMP_DH_KEY);
                goto f_err;
            }
            EVP_PKEY_free(clkey);
            pub = dh_clnt->pub_key;
1865
        } else {
1866
            if (!PACKET_get_bytes(pkt, &data, i)) {
1867 1868
                /* We already checked we have enough data */
                al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
1869
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1870 1871 1872 1873 1874
                       ERR_R_INTERNAL_ERROR);
                goto f_err;
            }
            pub = BN_bin2bn(data, i, NULL);
        }
1875
        if (pub == NULL) {
M
Matt Caswell 已提交
1876
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_BN_LIB);
1877 1878 1879
            goto err;
        }

1880
        i = DH_compute_key(shared, pub, dh_srvr);
1881 1882

        if (i <= 0) {
M
Matt Caswell 已提交
1883
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_DH_LIB);
1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
            BN_clear_free(pub);
            goto err;
        }

        DH_free(s->s3->tmp.dh);
        s->s3->tmp.dh = NULL;
        if (dh_clnt)
            DH_free(dh_clnt);
        else
            BN_clear_free(pub);
        pub = NULL;
1895
        if (!ssl_generate_master_secret(s, shared, i, 0)) {
M
Matt Caswell 已提交
1896
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
1897
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
M
Matt Caswell 已提交
1898 1899
            goto f_err;
        }
M
Matt Caswell 已提交
1900 1901 1902 1903
        if (dh_clnt) {
            s->no_cert_verify = 1;
            return MSG_PROCESS_CONTINUE_PROCESSING;
        }
1904
    } else
1905
#endif
B
Bodo Möller 已提交
1906

1907
#ifndef OPENSSL_NO_EC
1908
    if (alg_k & (SSL_kECDHE | SSL_kECDHr | SSL_kECDHe | SSL_kECDHEPSK)) {
1909 1910 1911 1912
        int field_size = 0;
        const EC_KEY *tkey;
        const EC_GROUP *group;
        const BIGNUM *priv_key;
1913
        unsigned char *shared;
1914 1915 1916

        /* initialize structures for server's ECDH key pair */
        if ((srvr_ecdh = EC_KEY_new()) == NULL) {
M
Matt Caswell 已提交
1917
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937
            goto err;
        }

        /* Let's get server private key and group information */
        if (alg_k & (SSL_kECDHr | SSL_kECDHe)) {
            /* use the certificate */
            tkey = s->cert->pkeys[SSL_PKEY_ECC].privatekey->pkey.ec;
        } else {
            /*
             * use the ephermeral values we saved when generating the
             * ServerKeyExchange msg.
             */
            tkey = s->s3->tmp.ecdh;
        }

        group = EC_KEY_get0_group(tkey);
        priv_key = EC_KEY_get0_private_key(tkey);

        if (!EC_KEY_set_group(srvr_ecdh, group) ||
            !EC_KEY_set_private_key(srvr_ecdh, priv_key)) {
M
Matt Caswell 已提交
1938
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
1939 1940 1941 1942 1943
            goto err;
        }

        /* Let's get client's public key */
        if ((clnt_ecpoint = EC_POINT_new(group)) == NULL) {
M
Matt Caswell 已提交
1944
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
1945 1946 1947
            goto err;
        }

1948
        if (PACKET_remaining(pkt) == 0L) {
1949 1950
            /* Client Publickey was in Client Certificate */

1951
            if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) {
1952
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1953
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
                       SSL_R_MISSING_TMP_ECDH_KEY);
                goto f_err;
            }
            if (((clnt_pub_pkey = X509_get_pubkey(s->session->peer))
                 == NULL) || (clnt_pub_pkey->type != EVP_PKEY_EC)) {
                /*
                 * XXX: For now, we do not support client authentication
                 * using ECDH certificates so this branch (n == 0L) of the
                 * code is never executed. When that support is added, we
                 * ought to ensure the key received in the certificate is
                 * authorized for key agreement. ECDH_compute_key implicitly
                 * checks that the two ECDH shares are for the same group.
                 */
                al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
1968
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1969 1970 1971 1972 1973 1974 1975
                       SSL_R_UNABLE_TO_DECODE_ECDH_CERTS);
                goto f_err;
            }

            if (EC_POINT_copy(clnt_ecpoint,
                              EC_KEY_get0_public_key(clnt_pub_pkey->
                                                     pkey.ec)) == 0) {
M
Matt Caswell 已提交
1976
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
1977 1978
                goto err;
            }
M
Matt Caswell 已提交
1979
            s->no_cert_verify = 1;
1980 1981 1982 1983 1984 1985
        } else {
            /*
             * Get client's public key from encoded point in the
             * ClientKeyExchange message.
             */
            if ((bn_ctx = BN_CTX_new()) == NULL) {
M
Matt Caswell 已提交
1986
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1987 1988 1989 1990 1991
                       ERR_R_MALLOC_FAILURE);
                goto err;
            }

            /* Get encoded point length */
1992
            if (!PACKET_get_1(pkt, &i)) {
1993
                al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
1994
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
1995 1996 1997
                       SSL_R_LENGTH_MISMATCH);
                goto f_err;
            }
1998 1999
            if (!PACKET_get_bytes(pkt, &data, i)
                    || PACKET_remaining(pkt) != 0) {
M
Matt Caswell 已提交
2000
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2001 2002
                goto err;
            }
2003
            if (EC_POINT_oct2point(group, clnt_ecpoint, data, i, bn_ctx) == 0) {
M
Matt Caswell 已提交
2004
                SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_EC_LIB);
2005 2006 2007 2008 2009 2010 2011
                goto err;
            }
        }

        /* Compute the shared pre-master secret */
        field_size = EC_GROUP_get_degree(group);
        if (field_size <= 0) {
M
Matt Caswell 已提交
2012
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2013 2014
            goto err;
        }
2015 2016
        shared = OPENSSL_malloc((field_size + 7) / 8);
        if (shared == NULL) {
M
Matt Caswell 已提交
2017
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2018 2019 2020 2021
            goto err;
        }
        i = ECDH_compute_key(shared, (field_size + 7) / 8, clnt_ecpoint,
                             srvr_ecdh, NULL);
2022
        if (i <= 0) {
M
Matt Caswell 已提交
2023
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_ECDH_LIB);
2024
            OPENSSL_free(shared);
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034
            goto err;
        }

        EVP_PKEY_free(clnt_pub_pkey);
        EC_POINT_free(clnt_ecpoint);
        EC_KEY_free(srvr_ecdh);
        BN_CTX_free(bn_ctx);
        EC_KEY_free(s->s3->tmp.ecdh);
        s->s3->tmp.ecdh = NULL;

2035
        if (!ssl_generate_master_secret(s, shared, i, 1)) {
M
Matt Caswell 已提交
2036
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
2037
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
M
Matt Caswell 已提交
2038 2039
            goto f_err;
        }
M
Matt Caswell 已提交
2040
        return MSG_PROCESS_CONTINUE_PROCESSING;
2041
    } else
2042
#endif
B
Ben Laurie 已提交
2043
#ifndef OPENSSL_NO_SRP
2044
    if (alg_k & SSL_kSRP) {
2045 2046
        if (!PACKET_get_net_2(pkt, &i)
                || !PACKET_get_bytes(pkt, &data, i)) {
2047
            al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
2048
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_BAD_SRP_A_LENGTH);
2049 2050
            goto f_err;
        }
2051
        if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) {
M
Matt Caswell 已提交
2052
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_BN_LIB);
2053 2054 2055 2056 2057
            goto err;
        }
        if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0
            || BN_is_zero(s->srp_ctx.A)) {
            al = SSL_AD_ILLEGAL_PARAMETER;
M
Matt Caswell 已提交
2058
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2059 2060 2061
                   SSL_R_BAD_SRP_PARAMETERS);
            goto f_err;
        }
R
Rich Salz 已提交
2062
        OPENSSL_free(s->session->srp_username);
2063 2064
        s->session->srp_username = BUF_strdup(s->srp_ctx.login);
        if (s->session->srp_username == NULL) {
M
Matt Caswell 已提交
2065
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE);
2066 2067 2068
            goto err;
        }

2069
        if (!srp_generate_server_master_secret(s)) {
M
Matt Caswell 已提交
2070
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082
            goto err;
        }
    } else
#endif                          /* OPENSSL_NO_SRP */
    if (alg_k & SSL_kGOST) {
        EVP_PKEY_CTX *pkey_ctx;
        EVP_PKEY *client_pub_pkey = NULL, *pk = NULL;
        unsigned char premaster_secret[32], *start;
        size_t outlen = 32, inlen;
        unsigned long alg_a;
        int Ttag, Tclass;
        long Tlen;
2083
        long sess_key_len;
2084 2085 2086

        /* Get our certificate private key */
        alg_a = s->s3->tmp.new_cipher->algorithm_auth;
R
Rich Salz 已提交
2087
        if (alg_a & SSL_aGOST01)
2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103
            pk = s->cert->pkeys[SSL_PKEY_GOST01].privatekey;

        pkey_ctx = EVP_PKEY_CTX_new(pk, NULL);
        EVP_PKEY_decrypt_init(pkey_ctx);
        /*
         * If client certificate is present and is of the same type, maybe
         * use it for key exchange.  Don't mind errors from
         * EVP_PKEY_derive_set_peer, because it is completely valid to use a
         * client certificate for authorization only.
         */
        client_pub_pkey = X509_get_pubkey(s->session->peer);
        if (client_pub_pkey) {
            if (EVP_PKEY_derive_set_peer(pkey_ctx, client_pub_pkey) <= 0)
                ERR_clear_error();
        }
        /* Decrypt session key */
2104 2105
        sess_key_len = PACKET_remaining(pkt);
        if (!PACKET_get_bytes(pkt, &data, sess_key_len)) {
2106
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
2107
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
2108 2109
            goto f_err;
        }
2110 2111 2112
        if (ASN1_get_object ((const unsigned char **)&data, &Tlen, &Ttag,
                             &Tclass, sess_key_len) != V_ASN1_CONSTRUCTED
            || Ttag != V_ASN1_SEQUENCE
2113
            || Tclass != V_ASN1_UNIVERSAL) {
M
Matt Caswell 已提交
2114
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2115 2116 2117
                   SSL_R_DECRYPTION_FAILED);
            goto gerr;
        }
2118
        start = data;
2119 2120 2121
        inlen = Tlen;
        if (EVP_PKEY_decrypt
            (pkey_ctx, premaster_secret, &outlen, start, inlen) <= 0) {
M
Matt Caswell 已提交
2122
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE,
2123 2124 2125 2126
                   SSL_R_DECRYPTION_FAILED);
            goto gerr;
        }
        /* Generate master secret */
2127 2128
        if (!ssl_generate_master_secret(s, premaster_secret,
                                        sizeof(premaster_secret), 0)) {
M
Matt Caswell 已提交
2129
            al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
2130
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR);
M
Matt Caswell 已提交
2131 2132
            goto f_err;
        }
2133 2134 2135
        /* Check if pubkey from client certificate was used */
        if (EVP_PKEY_CTX_ctrl
            (pkey_ctx, -1, -1, EVP_PKEY_CTRL_PEER_KEY, 2, NULL) > 0)
M
Matt Caswell 已提交
2136 2137 2138 2139 2140
            s->no_cert_verify = 1;

        EVP_PKEY_free(client_pub_pkey);
        EVP_PKEY_CTX_free(pkey_ctx);
        return MSG_PROCESS_CONTINUE_PROCESSING;
2141 2142 2143
 gerr:
        EVP_PKEY_free(client_pub_pkey);
        EVP_PKEY_CTX_free(pkey_ctx);
R
Rich Salz 已提交
2144
        goto err;
2145 2146
    } else {
        al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
2147
        SSLerr(SSL_F_TLS_PROCESS_CLIENT_KEY_EXCHANGE, SSL_R_UNKNOWN_CIPHER_TYPE);
2148 2149 2150
        goto f_err;
    }

M
Matt Caswell 已提交
2151
    return MSG_PROCESS_CONTINUE_PROCESSING;
2152 2153
 f_err:
    ssl3_send_alert(s, SSL3_AL_FATAL, al);
2154
#if !defined(OPENSSL_NO_DH) || !defined(OPENSSL_NO_RSA) || !defined(OPENSSL_NO_EC) || defined(OPENSSL_NO_SRP)
2155
 err:
B
Bodo Möller 已提交
2156
#endif
2157
#ifndef OPENSSL_NO_EC
2158 2159
    EVP_PKEY_free(clnt_pub_pkey);
    EC_POINT_free(clnt_ecpoint);
R
Rich Salz 已提交
2160
    EC_KEY_free(srvr_ecdh);
2161
    BN_CTX_free(bn_ctx);
2162
    OPENSSL_free(rsa_decrypt);
2163 2164 2165 2166
#endif
#ifndef OPENSSL_NO_PSK
    OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen);
    s->s3->tmp.psk = NULL;
2167
#endif
M
Matt Caswell 已提交
2168 2169
    statem_set_error(s);
    return MSG_PROCESS_ERROR;
2170
}
2171

2172 2173 2174 2175
enum WORK_STATE tls_post_process_client_key_exchange(SSL *s,
                                                      enum WORK_STATE wst)
{
#ifndef OPENSSL_NO_SCTP
2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192
    if (wst == WORK_MORE_A) {
        if (SSL_IS_DTLS(s)) {
            unsigned char sctpauthkey[64];
            char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)];
            /*
             * Add new shared key for SCTP-Auth, will be ignored if no SCTP
             * used.
             */
            snprintf((char *)labelbuffer, sizeof(DTLS1_SCTP_AUTH_LABEL),
                     DTLS1_SCTP_AUTH_LABEL);

            if (SSL_export_keying_material(s, sctpauthkey,
                                       sizeof(sctpauthkey), labelbuffer,
                                       sizeof(labelbuffer), NULL, 0, 0) <= 0) {
                statem_set_error(s);
                return WORK_ERROR;;
            }
2193

2194 2195
            BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
                     sizeof(sctpauthkey), sctpauthkey);
2196
        }
2197 2198
        wst = WORK_MORE_B;
    }
2199

2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215
    if ((wst == WORK_MORE_B)
            /* Is this SCTP? */
            && BIO_dgram_is_sctp(SSL_get_wbio(s))
            /* Are we renegotiating? */
            && s->renegotiate
            /* Are we going to skip the CertificateVerify? */
            && (s->session->peer == NULL || s->no_cert_verify)
            && BIO_dgram_sctp_msg_waiting(SSL_get_rbio(s))) {
        s->s3->in_read_app_data = 2;
        s->rwstate = SSL_READING;
        BIO_clear_retry_flags(SSL_get_rbio(s));
        BIO_set_retry_read(SSL_get_rbio(s));
        statem_set_sctp_read_sock(s, 1);
        return WORK_MORE_B;
    } else {
        statem_set_sctp_read_sock(s, 0);
2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
    }
#endif

    if (s->no_cert_verify) {
        /* No certificate verify so we no longer need the handshake_buffer */
        BIO_free(s->s3->handshake_buffer);
        return WORK_FINISHED_CONTINUE;
    } else if (SSL_USE_SIGALGS(s)) {
        if (!s->session->peer) {
            /* No peer certificate so we no longer need the handshake_buffer */
            BIO_free(s->s3->handshake_buffer);
            return WORK_FINISHED_CONTINUE;
        }
        if (!s->s3->handshake_buffer) {
            SSLerr(SSL_F_TLS_POST_PROCESS_CLIENT_KEY_EXCHANGE,
                   ERR_R_INTERNAL_ERROR);
            statem_set_error(s);
            return WORK_ERROR;
        }
        /*
         * For sigalgs freeze the handshake buffer. If we support
         * extms we've done this already so this is a no-op
         */
        if (!ssl3_digest_cached_records(s, 1)) {
            statem_set_error(s);
            return WORK_ERROR;
        }
    } else {
        int offset = 0;
        int dgst_num;

        /*
         * We need to get hashes here so if there is a client cert,
         * it can be verified FIXME - digest processing for
         * CertificateVerify should be generalized. But it is next
         * step
         */
        if (!ssl3_digest_cached_records(s, 0)) {
            statem_set_error(s);
            return WORK_ERROR;
        }
        for (dgst_num = 0; dgst_num < SSL_MAX_DIGEST; dgst_num++) {
            if (s->s3->handshake_dgst[dgst_num]) {
                int dgst_size;

                s->method->ssl3_enc->cert_verify_mac(s,
                                                     EVP_MD_CTX_type
                                                     (s->
                                                      s3->handshake_dgst
                                                      [dgst_num]),
                                                     &(s->s3->
                                                       tmp.cert_verify_md
                                                       [offset]));
                dgst_size =
                    EVP_MD_CTX_size(s->s3->handshake_dgst[dgst_num]);
                if (dgst_size < 0) {
                    statem_set_error(s);
                return WORK_ERROR;
                }
                offset += dgst_size;
            }
        }
    }

    return WORK_FINISHED_CONTINUE;
}

2283
enum MSG_PROCESS_RETURN tls_process_cert_verify(SSL *s, PACKET *pkt)
M
Matt Caswell 已提交
2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294
{
    EVP_PKEY *pkey = NULL;
    unsigned char *sig, *data;
    int al, ret = MSG_PROCESS_ERROR;
    int type = 0, i, j;
    unsigned int len;
    X509 *peer;
    const EVP_MD *md = NULL;
    EVP_MD_CTX mctx;
    EVP_MD_CTX_init(&mctx);

2295 2296 2297
    peer = s->session->peer;
    pkey = X509_get_pubkey(peer);
    type = X509_certificate_type(peer, pkey);
2298 2299

    if (!(type & EVP_PKT_SIGN)) {
M
Matt Caswell 已提交
2300
        SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY,
2301 2302 2303 2304 2305 2306 2307 2308 2309 2310
               SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
        al = SSL_AD_ILLEGAL_PARAMETER;
        goto f_err;
    }

    /* Check for broken implementations of GOST ciphersuites */
    /*
     * If key is GOST and n is exactly 64, it is bare signature without
     * length field
     */
2311
    if (PACKET_remaining(pkt) == 64 && pkey->type == NID_id_GostR3410_2001) {
2312
        len = 64;
2313 2314
    } else {
        if (SSL_USE_SIGALGS(s)) {
2315 2316
            int rv;

2317
            if (!PACKET_get_bytes(pkt, &sig, 2)) {
2318 2319 2320 2321
                al = SSL_AD_DECODE_ERROR;
                goto f_err;
            }
            rv = tls12_check_peer_sigalg(&md, s, sig, pkey);
2322 2323 2324 2325 2326 2327 2328
            if (rv == -1) {
                al = SSL_AD_INTERNAL_ERROR;
                goto f_err;
            } else if (rv == 0) {
                al = SSL_AD_DECODE_ERROR;
                goto f_err;
            }
D
Dr. Stephen Henson 已提交
2329
#ifdef SSL_DEBUG
2330
            fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
D
Dr. Stephen Henson 已提交
2331
#endif
2332
        }
2333
        if (!PACKET_get_net_2(pkt, &len)) {
M
Matt Caswell 已提交
2334
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
2335 2336 2337 2338 2339
            al = SSL_AD_DECODE_ERROR;
            goto f_err;
        }
    }
    j = EVP_PKEY_size(pkey);
2340 2341
    if (((int)len > j) || ((int)PACKET_remaining(pkt) > j)
            || (PACKET_remaining(pkt) == 0)) {
M
Matt Caswell 已提交
2342
        SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_WRONG_SIGNATURE_SIZE);
2343 2344 2345
        al = SSL_AD_DECODE_ERROR;
        goto f_err;
    }
2346
    if (!PACKET_get_bytes(pkt, &data, len)) {
M
Matt Caswell 已提交
2347
        SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
2348 2349 2350
        al = SSL_AD_DECODE_ERROR;
        goto f_err;
    }
2351 2352 2353 2354 2355 2356

    if (SSL_USE_SIGALGS(s)) {
        long hdatalen = 0;
        void *hdata;
        hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
        if (hdatalen <= 0) {
M
Matt Caswell 已提交
2357
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
2358 2359 2360
            al = SSL_AD_INTERNAL_ERROR;
            goto f_err;
        }
D
Dr. Stephen Henson 已提交
2361
#ifdef SSL_DEBUG
2362 2363
        fprintf(stderr, "Using TLS 1.2 with client verify alg %s\n",
                EVP_MD_name(md));
D
Dr. Stephen Henson 已提交
2364
#endif
2365 2366
        if (!EVP_VerifyInit_ex(&mctx, md, NULL)
            || !EVP_VerifyUpdate(&mctx, hdata, hdatalen)) {
M
Matt Caswell 已提交
2367
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
2368 2369 2370 2371
            al = SSL_AD_INTERNAL_ERROR;
            goto f_err;
        }

2372
        if (EVP_VerifyFinal(&mctx, data, len, pkey) <= 0) {
2373
            al = SSL_AD_DECRYPT_ERROR;
M
Matt Caswell 已提交
2374
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_SIGNATURE);
2375 2376 2377 2378 2379 2380
            goto f_err;
        }
    } else
#ifndef OPENSSL_NO_RSA
    if (pkey->type == EVP_PKEY_RSA) {
        i = RSA_verify(NID_md5_sha1, s->s3->tmp.cert_verify_md,
2381
                       MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH, data, len,
2382 2383 2384
                       pkey->pkey.rsa);
        if (i < 0) {
            al = SSL_AD_DECRYPT_ERROR;
M
Matt Caswell 已提交
2385
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_RSA_DECRYPT);
2386 2387 2388 2389
            goto f_err;
        }
        if (i == 0) {
            al = SSL_AD_DECRYPT_ERROR;
M
Matt Caswell 已提交
2390
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_RSA_SIGNATURE);
2391 2392 2393
            goto f_err;
        }
    } else
2394
#endif
2395
#ifndef OPENSSL_NO_DSA
2396 2397 2398
    if (pkey->type == EVP_PKEY_DSA) {
        j = DSA_verify(pkey->save_type,
                       &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
2399
                       SHA_DIGEST_LENGTH, data, len, pkey->pkey.dsa);
2400 2401 2402
        if (j <= 0) {
            /* bad signature */
            al = SSL_AD_DECRYPT_ERROR;
M
Matt Caswell 已提交
2403
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_DSA_SIGNATURE);
2404 2405 2406
            goto f_err;
        }
    } else
B
Bodo Möller 已提交
2407
#endif
2408
#ifndef OPENSSL_NO_EC
2409 2410 2411
    if (pkey->type == EVP_PKEY_EC) {
        j = ECDSA_verify(pkey->save_type,
                         &(s->s3->tmp.cert_verify_md[MD5_DIGEST_LENGTH]),
2412
                         SHA_DIGEST_LENGTH, data, len, pkey->pkey.ec);
2413 2414 2415
        if (j <= 0) {
            /* bad signature */
            al = SSL_AD_DECRYPT_ERROR;
M
Matt Caswell 已提交
2416
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_ECDSA_SIGNATURE);
2417 2418 2419
            goto f_err;
        }
    } else
2420
#endif
R
Rich Salz 已提交
2421
    if (pkey->type == NID_id_GostR3410_2001) {
2422 2423 2424 2425
        unsigned char signature[64];
        int idx;
        EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new(pkey, NULL);
        EVP_PKEY_verify_init(pctx);
2426 2427
        if (len != 64) {
            fprintf(stderr, "GOST signature length is %d", len);
2428 2429
        }
        for (idx = 0; idx < 64; idx++) {
2430
            signature[63 - idx] = data[idx];
2431 2432 2433 2434 2435 2436
        }
        j = EVP_PKEY_verify(pctx, signature, 64, s->s3->tmp.cert_verify_md,
                            32);
        EVP_PKEY_CTX_free(pctx);
        if (j <= 0) {
            al = SSL_AD_DECRYPT_ERROR;
M
Matt Caswell 已提交
2437
            SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_ECDSA_SIGNATURE);
2438 2439 2440
            goto f_err;
        }
    } else {
M
Matt Caswell 已提交
2441
        SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
2442 2443 2444 2445
        al = SSL_AD_UNSUPPORTED_CERTIFICATE;
        goto f_err;
    }

2446
    ret = MSG_PROCESS_CONTINUE_PROCESSING;
2447 2448 2449
    if (0) {
 f_err:
        ssl3_send_alert(s, SSL3_AL_FATAL, al);
M
Matt Caswell 已提交
2450
        statem_set_error(s);
2451
    }
R
Rich Salz 已提交
2452 2453
    BIO_free(s->s3->handshake_buffer);
    s->s3->handshake_buffer = NULL;
2454 2455
    EVP_MD_CTX_cleanup(&mctx);
    EVP_PKEY_free(pkey);
M
Matt Caswell 已提交
2456
    return ret;
2457
}
2458

2459
enum MSG_PROCESS_RETURN tls_process_client_certificate(SSL *s, PACKET *pkt)
M
Matt Caswell 已提交
2460 2461 2462 2463 2464 2465 2466
{
    int i, al, ret = MSG_PROCESS_ERROR;
    X509 *x = NULL;
    unsigned long l, llen;
    const unsigned char *certstart;
    unsigned char *certbytes;
    STACK_OF(X509) *sk = NULL;
2467
    PACKET spkt;
2468 2469

    if ((sk = sk_X509_new_null()) == NULL) {
M
Matt Caswell 已提交
2470 2471
        SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
        goto f_err;
2472 2473
    }

2474 2475 2476
    if (!PACKET_get_net_3(pkt, &llen)
            || !PACKET_get_sub_packet(pkt, &spkt, llen)
            || PACKET_remaining(pkt) != 0) {
2477
        al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
2478
        SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, SSL_R_LENGTH_MISMATCH);
2479 2480
        goto f_err;
    }
2481 2482 2483 2484

    while (PACKET_remaining(&spkt) > 0) {
        if (!PACKET_get_net_3(&spkt, &l)
                || !PACKET_get_bytes(&spkt, &certbytes, l)) {
2485
            al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
2486
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2487 2488 2489 2490
                   SSL_R_CERT_LENGTH_MISMATCH);
            goto f_err;
        }

2491 2492
        certstart = certbytes;
        x = d2i_X509(NULL, (const unsigned char **)&certbytes, l);
2493
        if (x == NULL) {
M
Matt Caswell 已提交
2494 2495
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_ASN1_LIB);
            goto f_err;
2496
        }
2497
        if (certbytes != (certstart + l)) {
2498
            al = SSL_AD_DECODE_ERROR;
M
Matt Caswell 已提交
2499
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2500 2501 2502 2503
                   SSL_R_CERT_LENGTH_MISMATCH);
            goto f_err;
        }
        if (!sk_X509_push(sk, x)) {
M
Matt Caswell 已提交
2504 2505
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, ERR_R_MALLOC_FAILURE);
            goto f_err;
2506 2507 2508 2509 2510 2511 2512 2513
        }
        x = NULL;
    }

    if (sk_X509_num(sk) <= 0) {
        /* TLS does not mind 0 certs returned */
        if (s->version == SSL3_VERSION) {
            al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
2514
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2515 2516 2517 2518 2519 2520
                   SSL_R_NO_CERTIFICATES_RETURNED);
            goto f_err;
        }
        /* Fail for TLS only if we required a certificate */
        else if ((s->verify_mode & SSL_VERIFY_PEER) &&
                 (s->verify_mode & SSL_VERIFY_FAIL_IF_NO_PEER_CERT)) {
M
Matt Caswell 已提交
2521
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2522 2523 2524 2525 2526
                   SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE);
            al = SSL_AD_HANDSHAKE_FAILURE;
            goto f_err;
        }
        /* No client certificate so digest cached records */
2527
        if (s->s3->handshake_buffer && !ssl3_digest_cached_records(s, 0)) {
2528 2529 2530 2531 2532 2533 2534 2535
            al = SSL_AD_INTERNAL_ERROR;
            goto f_err;
        }
    } else {
        EVP_PKEY *pkey;
        i = ssl_verify_cert_chain(s, sk);
        if (i <= 0) {
            al = ssl_verify_alarm_type(s->verify_result);
M
Matt Caswell 已提交
2536
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2537 2538 2539 2540
                   SSL_R_CERTIFICATE_VERIFY_FAILED);
            goto f_err;
        }
        if (i > 1) {
M
Matt Caswell 已提交
2541
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE, i);
2542 2543 2544 2545 2546 2547
            al = SSL_AD_HANDSHAKE_FAILURE;
            goto f_err;
        }
        pkey = X509_get_pubkey(sk_X509_value(sk, 0));
        if (pkey == NULL) {
            al = SSL3_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
2548
            SSLerr(SSL_F_TLS_PROCESS_CLIENT_CERTIFICATE,
2549 2550 2551 2552 2553 2554
                   SSL_R_UNKNOWN_CERTIFICATE_TYPE);
            goto f_err;
        }
        EVP_PKEY_free(pkey);
    }

R
Rich Salz 已提交
2555
    X509_free(s->session->peer);
2556 2557 2558
    s->session->peer = sk_X509_shift(sk);
    s->session->verify_result = s->verify_result;

2559 2560
    sk_X509_pop_free(s->session->peer_chain, X509_free);
    s->session->peer_chain = sk;
2561 2562 2563 2564 2565
    /*
     * Inconsistency alert: cert_chain does *not* include the peer's own
     * certificate, while we do include it in s3_clnt.c
     */
    sk = NULL;
M
Matt Caswell 已提交
2566
    ret = MSG_PROCESS_CONTINUE_READING;
R
Rich Salz 已提交
2567 2568
    goto done;

2569
 f_err:
R
Rich Salz 已提交
2570
    ssl3_send_alert(s, SSL3_AL_FATAL, al);
M
Matt Caswell 已提交
2571
    statem_set_error(s);
R
Rich Salz 已提交
2572
 done:
R
Rich Salz 已提交
2573 2574
    X509_free(x);
    sk_X509_pop_free(sk, X509_free);
M
Matt Caswell 已提交
2575
    return ret;
2576
}
2577

M
Matt Caswell 已提交
2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626
int tls_construct_server_certificate(SSL *s)
{
    CERT_PKEY *cpk;

    cpk = ssl_get_server_send_pkey(s);
    if (cpk == NULL) {
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
        statem_set_error(s);
        return 0;
    }

    if (!ssl3_output_cert_chain(s, cpk)) {
        SSLerr(SSL_F_TLS_CONSTRUCT_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR);
        statem_set_error(s);
        return 0;
    }

    return 1;
}

int tls_construct_new_session_ticket(SSL *s)
{
    unsigned char *senc = NULL;
    EVP_CIPHER_CTX ctx;
    HMAC_CTX hctx;
    unsigned char *p, *macstart;
    const unsigned char *const_p;
    int len, slen_full, slen;
    SSL_SESSION *sess;
    unsigned int hlen;
    SSL_CTX *tctx = s->initial_ctx;
    unsigned char iv[EVP_MAX_IV_LENGTH];
    unsigned char key_name[16];

    /* get session encoding length */
    slen_full = i2d_SSL_SESSION(s->session, NULL);
    /*
     * Some length values are 16 bits, so forget it if session is too
     * long
     */
    if (slen_full == 0 || slen_full > 0xFF00) {
        statem_set_error(s);
        return 0;
    }
    senc = OPENSSL_malloc(slen_full);
    if (!senc) {
        statem_set_error(s);
        return 0;
    }
2627

M
Matt Caswell 已提交
2628 2629
    EVP_CIPHER_CTX_init(&ctx);
    HMAC_CTX_init(&hctx);
2630

M
Matt Caswell 已提交
2631 2632 2633
    p = senc;
    if (!i2d_SSL_SESSION(s->session, &p))
        goto err;
M
Matt Caswell 已提交
2634

M
Matt Caswell 已提交
2635 2636 2637 2638 2639 2640 2641 2642
    /*
     * create a fresh copy (not shared with other threads) to clean up
     */
    const_p = senc;
    sess = d2i_SSL_SESSION(NULL, &const_p, slen_full);
    if (sess == NULL)
        goto err;
    sess->session_id_length = 0; /* ID is irrelevant for the ticket */
2643

M
Matt Caswell 已提交
2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654
    slen = i2d_SSL_SESSION(sess, NULL);
    if (slen == 0 || slen > slen_full) { /* shouldn't ever happen */
        SSL_SESSION_free(sess);
        goto err;
    }
    p = senc;
    if (!i2d_SSL_SESSION(sess, &p)) {
        SSL_SESSION_free(sess);
        goto err;
    }
    SSL_SESSION_free(sess);
2655

M
Matt Caswell 已提交
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667
    /*-
     * Grow buffer if need be: the length calculation is as
     * follows handshake_header_length +
     * 4 (ticket lifetime hint) + 2 (ticket length) +
     * 16 (key name) + max_iv_len (iv length) +
     * session_length + max_enc_block_size (max encrypted session
     * length) + max_md_size (HMAC).
     */
    if (!BUF_MEM_grow(s->init_buf,
                      SSL_HM_HEADER_LENGTH(s) + 22 + EVP_MAX_IV_LENGTH +
                      EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE + slen))
        goto err;
2668

M
Matt Caswell 已提交
2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679
    p = ssl_handshake_start(s);
    /*
     * Initialize HMAC and cipher contexts. If callback present it does
     * all the work otherwise use generated values from parent ctx.
     */
    if (tctx->tlsext_ticket_key_cb) {
        if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
                                       &hctx, 1) < 0)
            goto err;
    } else {
        if (RAND_bytes(iv, 16) <= 0)
M
Matt Caswell 已提交
2680
            goto err;
M
Matt Caswell 已提交
2681 2682
        if (!EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
                                tctx->tlsext_tick_aes_key, iv))
M
Matt Caswell 已提交
2683
            goto err;
M
Matt Caswell 已提交
2684 2685
        if (!HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
                          EVP_sha256(), NULL))
2686
            goto err;
M
Matt Caswell 已提交
2687
        memcpy(key_name, tctx->tlsext_tick_key_name, 16);
2688 2689
    }

M
Matt Caswell 已提交
2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733
    /*
     * Ticket lifetime hint (advisory only): We leave this unspecified
     * for resumed session (for simplicity), and guess that tickets for
     * new sessions will live as long as their sessions.
     */
    l2n(s->hit ? 0 : s->session->timeout, p);

    /* Skip ticket length for now */
    p += 2;
    /* Output key name */
    macstart = p;
    memcpy(p, key_name, 16);
    p += 16;
    /* output IV */
    memcpy(p, iv, EVP_CIPHER_CTX_iv_length(&ctx));
    p += EVP_CIPHER_CTX_iv_length(&ctx);
    /* Encrypt session data */
    if (!EVP_EncryptUpdate(&ctx, p, &len, senc, slen))
        goto err;
    p += len;
    if (!EVP_EncryptFinal(&ctx, p, &len))
        goto err;
    p += len;

    if (!HMAC_Update(&hctx, macstart, p - macstart))
        goto err;
    if (!HMAC_Final(&hctx, p, &hlen))
        goto err;

    EVP_CIPHER_CTX_cleanup(&ctx);
    HMAC_CTX_cleanup(&hctx);

    p += hlen;
    /* Now write out lengths: p points to end of data written */
    /* Total length */
    len = p - ssl_handshake_start(s);
    /* Skip ticket lifetime hint */
    p = ssl_handshake_start(s) + 4;
    s2n(len - 6, p);
    if (!ssl_set_handshake_header(s, SSL3_MT_NEWSESSION_TICKET, len))
        goto err;
    OPENSSL_free(senc);

    return 1;
M
Matt Caswell 已提交
2734
 err:
R
Rich Salz 已提交
2735
    OPENSSL_free(senc);
M
Matt Caswell 已提交
2736 2737
    EVP_CIPHER_CTX_cleanup(&ctx);
    HMAC_CTX_cleanup(&hctx);
M
Matt Caswell 已提交
2738 2739
    statem_set_error(s);
    return 0;
2740
}
2741

M
Matt Caswell 已提交
2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774
int tls_construct_cert_status(SSL *s)
{
    unsigned char *p;
    /*-
     * Grow buffer if need be: the length calculation is as
     * follows 1 (message type) + 3 (message length) +
     * 1 (ocsp response type) + 3 (ocsp response length)
     * + (ocsp response)
     */
    if (!BUF_MEM_grow(s->init_buf, 8 + s->tlsext_ocsp_resplen)) {
        statem_set_error(s);
        return 0;
    }

    p = (unsigned char *)s->init_buf->data;

    /* do the header */
    *(p++) = SSL3_MT_CERTIFICATE_STATUS;
    /* message length */
    l2n3(s->tlsext_ocsp_resplen + 4, p);
    /* status type */
    *(p++) = s->tlsext_status_type;
    /* length of OCSP response */
    l2n3(s->tlsext_ocsp_resplen, p);
    /* actual response */
    memcpy(p, s->tlsext_ocsp_resp, s->tlsext_ocsp_resplen);
    /* number of bytes to write */
    s->init_num = 8 + s->tlsext_ocsp_resplen;
    s->init_off = 0;

    return 1;
}

2775
#ifndef OPENSSL_NO_NEXTPROTONEG
M
Matt Caswell 已提交
2776 2777 2778 2779
/*
 * tls_process_next_proto reads a Next Protocol Negotiation handshake message.
 * It sets the next_proto member in s if found
 */
2780
enum MSG_PROCESS_RETURN tls_process_next_proto(SSL *s, PACKET *pkt)
M
Matt Caswell 已提交
2781
{
2782
    PACKET next_proto, padding;
M
Matt Caswell 已提交
2783 2784
    size_t next_proto_len;

2785 2786 2787 2788 2789 2790 2791
    /*-
     * The payload looks like:
     *   uint8 proto_len;
     *   uint8 proto[proto_len];
     *   uint8 padding_len;
     *   uint8 padding[padding_len];
     */
2792 2793 2794
    if (!PACKET_get_length_prefixed_1(pkt, &next_proto)
        || !PACKET_get_length_prefixed_1(pkt, &padding)
        || PACKET_remaining(pkt) > 0) {
M
Matt Caswell 已提交
2795
        SSLerr(SSL_F_TLS_PROCESS_NEXT_PROTO, SSL_R_LENGTH_MISMATCH);
M
Matt Caswell 已提交
2796
        goto err;
M
Matt Caswell 已提交
2797
    }
2798

2799 2800 2801
    if (!PACKET_memdup(&next_proto, &s->next_proto_negotiated,
                       &next_proto_len)) {
        s->next_proto_negotiated_len = 0;
M
Matt Caswell 已提交
2802 2803 2804
        goto err;
    }

2805
    s->next_proto_negotiated_len = (unsigned char)next_proto_len;
2806

M
Matt Caswell 已提交
2807
    return MSG_PROCESS_CONTINUE_READING;
M
Matt Caswell 已提交
2808
err:
M
Matt Caswell 已提交
2809 2810
    statem_set_error(s);
    return MSG_PROCESS_ERROR;
2811
}
2812
#endif
M
Matt Caswell 已提交
2813 2814 2815

#define SSLV2_CIPHER_LEN    3

2816 2817
STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,
                                               PACKET *cipher_suites,
M
Matt Caswell 已提交
2818
                                               STACK_OF(SSL_CIPHER) **skp,
2819 2820
                                               int sslv2format, int *al
                                               )
M
Matt Caswell 已提交
2821 2822 2823
{
    const SSL_CIPHER *c;
    STACK_OF(SSL_CIPHER) *sk;
2824 2825 2826
    int n;
    /* 3 = SSLV2_CIPHER_LEN > TLS_CIPHER_LEN = 2. */
    unsigned char cipher[SSLV2_CIPHER_LEN];
M
Matt Caswell 已提交
2827

2828 2829 2830 2831 2832 2833 2834 2835
    s->s3->send_connection_binding = 0;

    n = sslv2format ? SSLV2_CIPHER_LEN : TLS_CIPHER_LEN;

    if (PACKET_remaining(cipher_suites) == 0) {
        SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, SSL_R_NO_CIPHERS_SPECIFIED);
        *al = SSL_AD_ILLEGAL_PARAMETER;
        return NULL;
M
Matt Caswell 已提交
2836
    }
2837 2838

    if (PACKET_remaining(cipher_suites) % n != 0) {
M
Matt Caswell 已提交
2839 2840
        SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
               SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST);
2841 2842
        *al = SSL_AD_DECODE_ERROR;
        return NULL;
M
Matt Caswell 已提交
2843
    }
2844

M
Matt Caswell 已提交
2845 2846 2847 2848
    if ((skp == NULL) || (*skp == NULL)) {
        sk = sk_SSL_CIPHER_new_null(); /* change perhaps later */
        if(sk == NULL) {
            SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
2849
            *al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
2850 2851 2852 2853 2854 2855 2856
            return NULL;
        }
    } else {
        sk = *skp;
        sk_SSL_CIPHER_zero(sk);
    }

2857 2858 2859
    if (!PACKET_memdup(cipher_suites, &s->s3->tmp.ciphers_raw,
                       &s->s3->tmp.ciphers_rawlen)) {
        *al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
2860 2861 2862
        goto err;
    }

2863 2864
    while (PACKET_copy_bytes(cipher_suites, cipher, n)) {
        /*
2865 2866 2867
         * SSLv3 ciphers wrapped in an SSLv2-compatible ClientHello have the
         * first byte set to zero, while true SSLv2 ciphers have a non-zero
         * first byte. We don't support any true SSLv2 ciphers, so skip them.
2868 2869 2870 2871
         */
        if (sslv2format && cipher[0] != '\0')
                continue;

M
Matt Caswell 已提交
2872
        /* Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV */
2873 2874
        if ((cipher[n - 2] == ((SSL3_CK_SCSV >> 8) & 0xff)) &&
            (cipher[n - 1] == (SSL3_CK_SCSV & 0xff))) {
M
Matt Caswell 已提交
2875 2876 2877 2878
            /* SCSV fatal if renegotiating */
            if (s->renegotiate) {
                SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
                       SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING);
2879
                *al = SSL_AD_HANDSHAKE_FAILURE;
M
Matt Caswell 已提交
2880 2881 2882 2883 2884 2885 2886 2887 2888 2889
                goto err;
            }
            s->s3->send_connection_binding = 1;
#ifdef OPENSSL_RI_DEBUG
            fprintf(stderr, "SCSV received by server\n");
#endif
            continue;
        }

        /* Check for TLS_FALLBACK_SCSV */
2890 2891
        if ((cipher[n - 2] == ((SSL3_CK_FALLBACK_SCSV >> 8) & 0xff)) &&
            (cipher[n - 1] == (SSL3_CK_FALLBACK_SCSV & 0xff))) {
M
Matt Caswell 已提交
2892 2893 2894 2895 2896 2897 2898 2899
            /*
             * The SCSV indicates that the client previously tried a higher
             * version. Fail if the current version is an unexpected
             * downgrade.
             */
            if (!SSL_ctrl(s, SSL_CTRL_CHECK_PROTO_VERSION, 0, NULL)) {
                SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST,
                       SSL_R_INAPPROPRIATE_FALLBACK);
2900
                *al = SSL_AD_INAPPROPRIATE_FALLBACK;
M
Matt Caswell 已提交
2901 2902 2903 2904 2905
                goto err;
            }
            continue;
        }

2906 2907
        /* For SSLv2-compat, ignore leading 0-byte. */
        c = ssl_get_cipher_by_char(s, sslv2format ? &cipher[1] : cipher);
M
Matt Caswell 已提交
2908 2909 2910
        if (c != NULL) {
            if (!sk_SSL_CIPHER_push(sk, c)) {
                SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_MALLOC_FAILURE);
2911
                *al = SSL_AD_INTERNAL_ERROR;
M
Matt Caswell 已提交
2912 2913 2914 2915
                goto err;
            }
        }
    }
2916 2917 2918 2919 2920
    if (PACKET_remaining(cipher_suites) > 0) {
        *al = SSL_AD_INTERNAL_ERROR;
        SSLerr(SSL_F_SSL_BYTES_TO_CIPHER_LIST, ERR_R_INTERNAL_ERROR);
        goto err;
    }
M
Matt Caswell 已提交
2921 2922 2923 2924 2925 2926 2927

    if (skp != NULL)
        *skp = sk;
    return (sk);
 err:
    if ((skp == NULL) || (*skp == NULL))
        sk_SSL_CIPHER_free(sk);
2928
    return NULL;
M
Matt Caswell 已提交
2929
}