2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* SSLv3/TLSv1 server-side functions
|
|
|
|
*
|
2013-01-07 18:20:04 +01:00
|
|
|
* Copyright (C) 2006-2013, Brainspark B.V.
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
2010-07-18 12:13:04 +02:00
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2009-07-28 19:23:11 +02:00
|
|
|
* All rights reserved.
|
2009-01-04 17:27:10 +01:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/config.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#if defined(POLARSSL_SSL_SRV_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/debug.h"
|
|
|
|
#include "polarssl/ssl.h"
|
2013-03-20 14:39:14 +01:00
|
|
|
#if defined(POLARSSL_ECP_C)
|
|
|
|
#include "polarssl/ecp.h"
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-01 14:33:49 +02:00
|
|
|
#if defined(POLARSSL_MEMORY_C)
|
|
|
|
#include "polarssl/memory.h"
|
|
|
|
#else
|
|
|
|
#define polarssl_malloc malloc
|
|
|
|
#define polarssl_free free
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2013-07-03 15:31:03 +02:00
|
|
|
|
|
|
|
#if defined(POLARSSL_HAVE_TIME)
|
2009-01-03 22:22:43 +01:00
|
|
|
#include <time.h>
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-08-01 14:33:49 +02:00
|
|
|
/*
|
|
|
|
* Serialize a session in the following format:
|
|
|
|
* 0 . n-1 session structure, n = sizeof(ssl_session)
|
|
|
|
* n . n+2 peer_cert length = m (0 if no certificate)
|
|
|
|
* n+3 . n+2+m peer cert ASN.1
|
|
|
|
*
|
|
|
|
* Assumes ticket is NULL (always true on server side).
|
|
|
|
*/
|
2013-08-23 11:10:28 +02:00
|
|
|
static int ssl_save_session( const ssl_session *session,
|
|
|
|
unsigned char *buf, size_t buf_len,
|
|
|
|
size_t *olen )
|
2013-08-01 14:33:49 +02:00
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
2013-08-23 11:10:28 +02:00
|
|
|
size_t left = buf_len;
|
2013-09-16 13:49:26 +02:00
|
|
|
#if defined(POLARSSL_X509_CRT_PARSE_C)
|
2013-08-01 14:33:49 +02:00
|
|
|
size_t cert_len;
|
2013-09-16 13:49:26 +02:00
|
|
|
#endif /* POLARSSL_X509_CRT_PARSE_C */
|
2013-08-01 14:33:49 +02:00
|
|
|
|
2013-08-23 11:10:28 +02:00
|
|
|
if( left < sizeof( ssl_session ) )
|
|
|
|
return( -1 );
|
|
|
|
|
2013-08-01 14:33:49 +02:00
|
|
|
memcpy( p, session, sizeof( ssl_session ) );
|
|
|
|
p += sizeof( ssl_session );
|
2013-08-23 11:10:28 +02:00
|
|
|
left -= sizeof( ssl_session );
|
2013-08-01 14:33:49 +02:00
|
|
|
|
2013-09-16 13:49:26 +02:00
|
|
|
#if defined(POLARSSL_X509_CRT_PARSE_C)
|
2013-08-01 14:33:49 +02:00
|
|
|
if( session->peer_cert == NULL )
|
|
|
|
cert_len = 0;
|
|
|
|
else
|
|
|
|
cert_len = session->peer_cert->raw.len;
|
|
|
|
|
2013-08-23 11:10:28 +02:00
|
|
|
if( left < 3 + cert_len )
|
|
|
|
return( -1 );
|
|
|
|
|
2013-08-01 14:33:49 +02:00
|
|
|
*p++ = (unsigned char)( cert_len >> 16 & 0xFF );
|
|
|
|
*p++ = (unsigned char)( cert_len >> 8 & 0xFF );
|
|
|
|
*p++ = (unsigned char)( cert_len & 0xFF );
|
|
|
|
|
|
|
|
if( session->peer_cert != NULL )
|
|
|
|
memcpy( p, session->peer_cert->raw.p, cert_len );
|
|
|
|
|
|
|
|
p += cert_len;
|
2013-09-16 13:49:26 +02:00
|
|
|
#endif /* POLARSSL_X509_CRT_PARSE_C */
|
2013-08-01 14:33:49 +02:00
|
|
|
|
|
|
|
*olen = p - buf;
|
2013-08-23 11:10:28 +02:00
|
|
|
|
|
|
|
return( 0 );
|
2013-08-01 14:33:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unserialise session, see ssl_save_session()
|
|
|
|
*/
|
|
|
|
static int ssl_load_session( ssl_session *session,
|
|
|
|
const unsigned char *buf, size_t len )
|
|
|
|
{
|
|
|
|
const unsigned char *p = buf;
|
|
|
|
const unsigned char * const end = buf + len;
|
2013-09-16 13:49:26 +02:00
|
|
|
#if defined(POLARSSL_X509_CRT_PARSE_C)
|
2013-08-01 14:33:49 +02:00
|
|
|
size_t cert_len;
|
2013-09-16 13:49:26 +02:00
|
|
|
#endif /* POLARSSL_X509_CRT_PARSE_C */
|
2013-08-01 14:33:49 +02:00
|
|
|
|
|
|
|
if( p + sizeof( ssl_session ) > end )
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
memcpy( session, p, sizeof( ssl_session ) );
|
|
|
|
p += sizeof( ssl_session );
|
|
|
|
|
2013-09-16 13:49:26 +02:00
|
|
|
#if defined(POLARSSL_X509_CRT_PARSE_C)
|
2013-08-01 14:33:49 +02:00
|
|
|
if( p + 3 > end )
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
cert_len = ( p[0] << 16 ) | ( p[1] << 8 ) | p[2];
|
|
|
|
p += 3;
|
|
|
|
|
|
|
|
if( cert_len == 0 )
|
|
|
|
{
|
|
|
|
session->peer_cert = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-15 17:06:49 +02:00
|
|
|
int ret;
|
|
|
|
|
2013-08-01 14:33:49 +02:00
|
|
|
if( p + cert_len > end )
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
|
2013-09-18 14:13:26 +02:00
|
|
|
session->peer_cert = polarssl_malloc( sizeof( x509_crt ) );
|
2013-08-01 14:33:49 +02:00
|
|
|
|
|
|
|
if( session->peer_cert == NULL )
|
|
|
|
return( POLARSSL_ERR_SSL_MALLOC_FAILED );
|
|
|
|
|
2013-09-18 14:17:41 +02:00
|
|
|
x509_crt_init( session->peer_cert );
|
2013-08-01 14:33:49 +02:00
|
|
|
|
2013-09-18 13:46:23 +02:00
|
|
|
if( ( ret = x509_crt_parse( session->peer_cert, p, cert_len ) ) != 0 )
|
2013-08-01 14:33:49 +02:00
|
|
|
{
|
2013-09-16 13:49:26 +02:00
|
|
|
x509_crt_free( session->peer_cert );
|
2013-08-01 14:33:49 +02:00
|
|
|
polarssl_free( session->peer_cert );
|
|
|
|
session->peer_cert = NULL;
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
p += cert_len;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
#endif /* POLARSSL_X509_CRT_PARSE_C */
|
2013-08-01 14:33:49 +02:00
|
|
|
|
|
|
|
if( p != end )
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-08-02 18:05:14 +02:00
|
|
|
/*
|
|
|
|
* Create session ticket, secured as recommended in RFC 5077 section 4:
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* opaque key_name[16];
|
|
|
|
* opaque iv[16];
|
|
|
|
* opaque encrypted_state<0..2^16-1>;
|
|
|
|
* opaque mac[32];
|
|
|
|
* } ticket;
|
|
|
|
*
|
|
|
|
* (the internal state structure differs, however).
|
|
|
|
*/
|
|
|
|
static int ssl_write_ticket( ssl_context *ssl, size_t *tlen )
|
|
|
|
{
|
2013-08-03 15:37:58 +02:00
|
|
|
int ret;
|
2013-08-02 18:05:14 +02:00
|
|
|
unsigned char * const start = ssl->out_msg + 10;
|
|
|
|
unsigned char *p = start;
|
2013-08-03 15:37:58 +02:00
|
|
|
unsigned char *state;
|
|
|
|
unsigned char iv[16];
|
|
|
|
size_t clear_len, enc_len, pad_len, i;
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-23 16:25:16 +02:00
|
|
|
*tlen = 0;
|
|
|
|
|
2013-08-03 13:50:48 +02:00
|
|
|
if( ssl->ticket_keys == NULL )
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
/* Write key name */
|
2013-08-03 13:50:48 +02:00
|
|
|
memcpy( p, ssl->ticket_keys->key_name, 16 );
|
2013-08-02 18:05:14 +02:00
|
|
|
p += 16;
|
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
/* Generate and write IV (with a copy for aes_crypt) */
|
|
|
|
if( ( ret = ssl->f_rng( ssl->p_rng, p, 16 ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
memcpy( iv, p, 16 );
|
2013-08-02 18:05:14 +02:00
|
|
|
p += 16;
|
|
|
|
|
2013-08-23 11:10:28 +02:00
|
|
|
/*
|
|
|
|
* Dump session state
|
|
|
|
*
|
|
|
|
* After the session state itself, we still need room for 16 bytes of
|
|
|
|
* padding and 32 bytes of MAC, so there's only so much room left
|
|
|
|
*/
|
2013-08-03 15:37:58 +02:00
|
|
|
state = p + 2;
|
2013-08-23 11:10:28 +02:00
|
|
|
if( ssl_save_session( ssl->session_negotiate, state,
|
|
|
|
SSL_MAX_CONTENT_LEN - (state - ssl->out_ctr) - 48,
|
|
|
|
&clear_len ) != 0 )
|
|
|
|
{
|
|
|
|
return( POLARSSL_ERR_SSL_CERTIFICATE_TOO_LARGE );
|
|
|
|
}
|
2013-08-03 15:37:58 +02:00
|
|
|
SSL_DEBUG_BUF( 3, "session ticket cleartext", state, clear_len );
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
/* Apply PKCS padding */
|
|
|
|
pad_len = 16 - clear_len % 16;
|
|
|
|
enc_len = clear_len + pad_len;
|
|
|
|
for( i = clear_len; i < enc_len; i++ )
|
|
|
|
state[i] = (unsigned char) pad_len;
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
/* Encrypt */
|
|
|
|
if( ( ret = aes_crypt_cbc( &ssl->ticket_keys->enc, AES_ENCRYPT,
|
|
|
|
enc_len, iv, state, state ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write length */
|
|
|
|
*p++ = (unsigned char)( ( enc_len >> 8 ) & 0xFF );
|
|
|
|
*p++ = (unsigned char)( ( enc_len ) & 0xFF );
|
|
|
|
p = state + enc_len;
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-03 17:16:31 +02:00
|
|
|
/* Compute and write MAC( key_name + iv + enc_state_len + enc_state ) */
|
|
|
|
sha256_hmac( ssl->ticket_keys->mac_key, 16, start, p - start, p, 0 );
|
2013-08-02 18:05:14 +02:00
|
|
|
p += 32;
|
|
|
|
|
|
|
|
*tlen = p - start;
|
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
SSL_DEBUG_BUF( 3, "session ticket structure", start, *tlen );
|
2013-08-02 18:05:14 +02:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load session ticket (see ssl_write_ticket for structure)
|
|
|
|
*/
|
|
|
|
static int ssl_parse_ticket( ssl_context *ssl,
|
2013-08-03 15:37:58 +02:00
|
|
|
unsigned char *buf,
|
2013-08-02 18:05:14 +02:00
|
|
|
size_t len )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ssl_session session;
|
2013-08-03 15:37:58 +02:00
|
|
|
unsigned char *key_name = buf;
|
|
|
|
unsigned char *iv = buf + 16;
|
|
|
|
unsigned char *enc_len_p = iv + 16;
|
|
|
|
unsigned char *ticket = enc_len_p + 2;
|
|
|
|
unsigned char *mac;
|
2013-09-20 11:37:39 +02:00
|
|
|
unsigned char computed_mac[32];
|
2013-08-03 15:37:58 +02:00
|
|
|
size_t enc_len, clear_len, i;
|
2013-10-28 13:46:11 +01:00
|
|
|
unsigned char pad_len, diff;
|
2013-08-03 15:37:58 +02:00
|
|
|
|
|
|
|
SSL_DEBUG_BUF( 3, "session ticket structure", buf, len );
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-03 13:50:48 +02:00
|
|
|
if( len < 34 || ssl->ticket_keys == NULL )
|
2013-08-02 18:05:14 +02:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
|
|
|
|
enc_len = ( enc_len_p[0] << 8 ) | enc_len_p[1];
|
|
|
|
mac = ticket + enc_len;
|
|
|
|
|
|
|
|
if( len != enc_len + 66 )
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
|
2013-10-28 13:46:11 +01:00
|
|
|
/* Check name, in constant time though it's not a big secret */
|
|
|
|
diff = 0;
|
|
|
|
for( i = 0; i < 16; i++ )
|
|
|
|
diff |= key_name[i] ^ ssl->ticket_keys->key_name[i];
|
|
|
|
/* don't return yet, check the MAC anyway */
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-10-28 13:46:11 +01:00
|
|
|
/* Check mac, with constant-time buffer comparison */
|
2013-08-03 17:16:31 +02:00
|
|
|
sha256_hmac( ssl->ticket_keys->mac_key, 16, buf, len - 32,
|
|
|
|
computed_mac, 0 );
|
2013-10-28 13:46:11 +01:00
|
|
|
|
2013-08-03 17:16:31 +02:00
|
|
|
for( i = 0; i < 32; i++ )
|
2013-10-28 13:46:11 +01:00
|
|
|
diff |= mac[i] ^ computed_mac[i];
|
|
|
|
|
|
|
|
/* Now return if ticket is not authentic, since we want to avoid
|
|
|
|
* decrypting arbitrary attacker-chosen data */
|
|
|
|
if( diff != 0 )
|
|
|
|
return( POLARSSL_ERR_SSL_INVALID_MAC );
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
/* Decrypt */
|
|
|
|
if( ( ret = aes_crypt_cbc( &ssl->ticket_keys->dec, AES_DECRYPT,
|
|
|
|
enc_len, iv, ticket, ticket ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
/* Check PKCS padding */
|
|
|
|
pad_len = ticket[enc_len - 1];
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
for( i = 2; i < pad_len; i++ )
|
|
|
|
if( ticket[enc_len - i] != pad_len )
|
|
|
|
ret = POLARSSL_ERR_SSL_BAD_INPUT_DATA;
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
clear_len = enc_len - pad_len;
|
|
|
|
|
|
|
|
SSL_DEBUG_BUF( 3, "session ticket cleartext", ticket, clear_len );
|
|
|
|
|
|
|
|
/* Actually load session */
|
2013-08-02 18:05:14 +02:00
|
|
|
if( ( ret = ssl_load_session( &session, ticket, clear_len ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "failed to parse ticket content" ) );
|
|
|
|
memset( &session, 0, sizeof( ssl_session ) );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-08-14 16:52:14 +02:00
|
|
|
#if defined(POLARSSL_HAVE_TIME)
|
|
|
|
/* Check if still valid */
|
|
|
|
if( (int) ( time( NULL) - session.start ) > ssl->ticket_lifetime )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "session ticket expired" ) );
|
|
|
|
memset( &session, 0, sizeof( ssl_session ) );
|
|
|
|
return( POLARSSL_ERR_SSL_SESSION_TICKET_EXPIRED );
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-08-02 18:05:14 +02:00
|
|
|
/*
|
|
|
|
* Keep the session ID sent by the client, since we MUST send it back to
|
|
|
|
* inform him we're accepting the ticket (RFC 5077 section 3.4)
|
|
|
|
*/
|
|
|
|
session.length = ssl->session_negotiate->length;
|
|
|
|
memcpy( &session.id, ssl->session_negotiate->id, session.length );
|
|
|
|
|
|
|
|
ssl_session_free( ssl->session_negotiate );
|
|
|
|
memcpy( ssl->session_negotiate, &session, sizeof( ssl_session ) );
|
|
|
|
memset( &session, 0, sizeof( ssl_session ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-14 13:48:06 +02:00
|
|
|
#endif /* POLARSSL_SSL_SESSION_TICKETS */
|
2013-08-02 18:05:14 +02:00
|
|
|
|
2013-08-27 21:55:01 +02:00
|
|
|
#if defined(POLARSSL_SSL_SERVER_NAME_INDICATION)
|
2013-09-23 20:04:20 +02:00
|
|
|
/*
|
2013-09-24 22:30:56 +02:00
|
|
|
* Wrapper around f_sni, allowing use of ssl_set_own_cert() but
|
|
|
|
* making it act on ssl->hanshake->sni_key_cert instead.
|
2013-09-23 20:04:20 +02:00
|
|
|
*/
|
|
|
|
static int ssl_sni_wrapper( ssl_context *ssl,
|
|
|
|
const unsigned char* name, size_t len )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ssl_key_cert *key_cert_ori = ssl->key_cert;
|
|
|
|
|
|
|
|
ssl->key_cert = NULL;
|
|
|
|
ret = ssl->f_sni( ssl->p_sni, ssl, name, len );
|
2013-09-24 22:30:56 +02:00
|
|
|
ssl->handshake->sni_key_cert = ssl->key_cert;
|
2013-09-23 20:04:20 +02:00
|
|
|
|
|
|
|
ssl->key_cert = key_cert_ori;
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2012-09-27 23:49:42 +02:00
|
|
|
static int ssl_parse_servername_ext( ssl_context *ssl,
|
2012-09-28 16:15:14 +02:00
|
|
|
const unsigned char *buf,
|
2012-09-27 23:49:42 +02:00
|
|
|
size_t len )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t servername_list_size, hostname_len;
|
2012-09-28 16:15:14 +02:00
|
|
|
const unsigned char *p;
|
2012-09-27 23:49:42 +02:00
|
|
|
|
|
|
|
servername_list_size = ( ( buf[0] << 8 ) | ( buf[1] ) );
|
|
|
|
if( servername_list_size + 2 != len )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
p = buf + 2;
|
|
|
|
while( servername_list_size > 0 )
|
|
|
|
{
|
|
|
|
hostname_len = ( ( p[1] << 8 ) | p[2] );
|
|
|
|
if( hostname_len + 3 > servername_list_size )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( p[0] == TLS_EXT_SERVERNAME_HOSTNAME )
|
|
|
|
{
|
2013-09-23 20:04:20 +02:00
|
|
|
ret = ssl_sni_wrapper( ssl, p + 3, hostname_len );
|
2012-09-27 23:49:42 +02:00
|
|
|
if( ret != 0 )
|
|
|
|
{
|
|
|
|
ssl_send_alert_message( ssl, SSL_ALERT_LEVEL_FATAL,
|
|
|
|
SSL_ALERT_MSG_UNRECOGNIZED_NAME );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2012-10-23 12:31:15 +02:00
|
|
|
return( 0 );
|
2012-09-27 23:49:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
servername_list_size -= hostname_len + 3;
|
2012-09-28 16:15:14 +02:00
|
|
|
p += hostname_len + 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( servername_list_size != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
2012-09-27 23:49:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-27 21:55:01 +02:00
|
|
|
#endif /* POLARSSL_SSL_SERVER_NAME_INDICATION */
|
2012-09-27 23:49:42 +02:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
static int ssl_parse_renegotiation_info( ssl_context *ssl,
|
2012-09-28 16:15:14 +02:00
|
|
|
const unsigned char *buf,
|
2012-09-16 21:57:18 +02:00
|
|
|
size_t len )
|
|
|
|
{
|
2012-09-17 11:18:12 +02:00
|
|
|
int ret;
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
if( ssl->renegotiation == SSL_INITIAL_HANDSHAKE )
|
|
|
|
{
|
|
|
|
if( len != 1 || buf[0] != 0x0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "non-zero length renegotiated connection field" ) );
|
2012-09-17 11:18:12 +02:00
|
|
|
|
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->secure_renegotiation = SSL_SECURE_RENEGOTIATION;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-28 13:46:11 +01:00
|
|
|
/* Check verify-data in constant-time. The length OTOH is no secret */
|
2012-09-16 21:57:18 +02:00
|
|
|
if( len != 1 + ssl->verify_data_len ||
|
|
|
|
buf[0] != ssl->verify_data_len ||
|
2013-10-28 13:46:11 +01:00
|
|
|
safer_memcmp( buf + 1, ssl->peer_verify_data,
|
|
|
|
ssl->verify_data_len ) != 0 )
|
2012-09-16 21:57:18 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "non-matching renegotiated connection field" ) );
|
2012-09-17 11:18:12 +02:00
|
|
|
|
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-08-27 21:19:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2012-09-28 16:15:14 +02:00
|
|
|
static int ssl_parse_signature_algorithms_ext( ssl_context *ssl,
|
|
|
|
const unsigned char *buf,
|
|
|
|
size_t len )
|
|
|
|
{
|
|
|
|
size_t sig_alg_list_size;
|
|
|
|
const unsigned char *p;
|
|
|
|
|
|
|
|
sig_alg_list_size = ( ( buf[0] << 8 ) | ( buf[1] ) );
|
|
|
|
if( sig_alg_list_size + 2 != len ||
|
|
|
|
sig_alg_list_size %2 != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
p = buf + 2;
|
|
|
|
while( sig_alg_list_size > 0 )
|
|
|
|
{
|
2013-08-22 15:57:15 +02:00
|
|
|
/*
|
|
|
|
* For now, just ignore signature algorithm and rely on offered
|
|
|
|
* ciphersuites only. To be fixed later.
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA512_C)
|
2012-09-28 16:15:14 +02:00
|
|
|
if( p[0] == SSL_HASH_SHA512 )
|
|
|
|
{
|
|
|
|
ssl->handshake->sig_alg = SSL_HASH_SHA512;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( p[0] == SSL_HASH_SHA384 )
|
|
|
|
{
|
|
|
|
ssl->handshake->sig_alg = SSL_HASH_SHA384;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2013-06-30 14:34:05 +02:00
|
|
|
#if defined(POLARSSL_SHA256_C)
|
2012-09-28 16:15:14 +02:00
|
|
|
if( p[0] == SSL_HASH_SHA256 )
|
|
|
|
{
|
|
|
|
ssl->handshake->sig_alg = SSL_HASH_SHA256;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( p[0] == SSL_HASH_SHA224 )
|
|
|
|
{
|
|
|
|
ssl->handshake->sig_alg = SSL_HASH_SHA224;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if( p[0] == SSL_HASH_SHA1 )
|
|
|
|
{
|
|
|
|
ssl->handshake->sig_alg = SSL_HASH_SHA1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( p[0] == SSL_HASH_MD5 )
|
|
|
|
{
|
|
|
|
ssl->handshake->sig_alg = SSL_HASH_MD5;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
sig_alg_list_size -= 2;
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v3, signature_algorithm ext: %d",
|
|
|
|
ssl->handshake->sig_alg ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-27 21:19:20 +02:00
|
|
|
#endif /* POLARSSL_SSL_PROTO_TLS1_2 */
|
2012-09-28 16:15:14 +02:00
|
|
|
|
2013-08-15 19:38:07 +02:00
|
|
|
#if defined(POLARSSL_ECDH_C) || defined(POLARSSL_ECDSA_C)
|
2013-06-25 16:25:17 +02:00
|
|
|
static int ssl_parse_supported_elliptic_curves( ssl_context *ssl,
|
|
|
|
const unsigned char *buf,
|
|
|
|
size_t len )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
2013-09-23 19:11:32 +02:00
|
|
|
size_t list_size, our_size;
|
2013-03-20 14:39:14 +01:00
|
|
|
const unsigned char *p;
|
2013-09-23 19:11:32 +02:00
|
|
|
const ecp_curve_info *curve_info, **curves;
|
2013-03-20 14:39:14 +01:00
|
|
|
|
|
|
|
list_size = ( ( buf[0] << 8 ) | ( buf[1] ) );
|
|
|
|
if( list_size + 2 != len ||
|
|
|
|
list_size % 2 != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
2013-09-23 19:11:32 +02:00
|
|
|
/* Don't allow our peer to make use allocated too much memory,
|
|
|
|
* and leave room for a final 0 */
|
|
|
|
our_size = list_size / 2 + 1;
|
|
|
|
if( our_size > POLARSSL_ECP_DP_MAX )
|
|
|
|
our_size = POLARSSL_ECP_DP_MAX;
|
|
|
|
|
|
|
|
if( ( curves = polarssl_malloc( our_size * sizeof( *curves ) ) ) == NULL )
|
|
|
|
return( POLARSSL_ERR_SSL_MALLOC_FAILED );
|
|
|
|
|
2013-10-11 15:20:27 +02:00
|
|
|
/* explicit void pointer cast for buggy MS compiler */
|
|
|
|
memset( (void *) curves, 0, our_size * sizeof( *curves ) );
|
2013-09-23 19:11:32 +02:00
|
|
|
ssl->handshake->curves = curves;
|
|
|
|
|
2013-03-20 14:39:14 +01:00
|
|
|
p = buf + 2;
|
2013-09-23 19:11:32 +02:00
|
|
|
while( list_size > 0 && our_size > 1 )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
2013-09-23 18:14:50 +02:00
|
|
|
curve_info = ecp_curve_info_from_tls_id( ( p[0] << 8 ) | p[1] );
|
2013-09-16 17:30:04 +02:00
|
|
|
|
2013-09-23 18:14:50 +02:00
|
|
|
if( curve_info != NULL )
|
2013-06-29 23:26:34 +02:00
|
|
|
{
|
2013-09-23 19:11:32 +02:00
|
|
|
*curves++ = curve_info;
|
|
|
|
our_size--;
|
2013-06-29 23:26:34 +02:00
|
|
|
}
|
2013-03-20 14:39:14 +01:00
|
|
|
|
|
|
|
list_size -= 2;
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-06-25 16:25:17 +02:00
|
|
|
static int ssl_parse_supported_point_formats( ssl_context *ssl,
|
|
|
|
const unsigned char *buf,
|
|
|
|
size_t len )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
|
|
|
size_t list_size;
|
|
|
|
const unsigned char *p;
|
|
|
|
|
|
|
|
list_size = buf[0];
|
|
|
|
if( list_size + 1 != len )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
p = buf + 2;
|
|
|
|
while( list_size > 0 )
|
|
|
|
{
|
|
|
|
if( p[0] == POLARSSL_ECP_PF_UNCOMPRESSED ||
|
|
|
|
p[0] == POLARSSL_ECP_PF_COMPRESSED )
|
|
|
|
{
|
2013-08-15 19:04:02 +02:00
|
|
|
ssl->handshake->ecdh_ctx.point_format = p[0];
|
2013-08-15 18:01:11 +02:00
|
|
|
SSL_DEBUG_MSG( 4, ( "point format selected: %d", p[0] ) );
|
2013-03-20 14:39:14 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
list_size--;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-15 19:38:07 +02:00
|
|
|
#endif /* POLARSSL_ECDH_C || POLARSSL_ECDSA_C */
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2013-08-15 13:33:48 +02:00
|
|
|
#if defined(POLARSSL_SSL_MAX_FRAGMENT_LENGTH)
|
2013-07-17 10:25:37 +02:00
|
|
|
static int ssl_parse_max_fragment_length_ext( ssl_context *ssl,
|
|
|
|
const unsigned char *buf,
|
|
|
|
size_t len )
|
|
|
|
{
|
2013-07-18 14:07:09 +02:00
|
|
|
if( len != 1 || buf[0] >= SSL_MAX_FRAG_LEN_INVALID )
|
2013-07-17 10:25:37 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
2013-07-18 14:07:09 +02:00
|
|
|
ssl->session_negotiate->mfl_code = buf[0];
|
|
|
|
|
2013-07-17 10:25:37 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-15 13:33:48 +02:00
|
|
|
#endif /* POLARSSL_SSL_MAX_FRAGMENT_LENGTH */
|
2013-07-17 10:25:37 +02:00
|
|
|
|
2013-08-15 13:45:55 +02:00
|
|
|
#if defined(POLARSSL_SSL_TRUNCATED_HMAC)
|
2013-07-19 11:41:43 +02:00
|
|
|
static int ssl_parse_truncated_hmac_ext( ssl_context *ssl,
|
|
|
|
const unsigned char *buf,
|
|
|
|
size_t len )
|
|
|
|
{
|
|
|
|
if( len != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
((void) buf);
|
|
|
|
|
|
|
|
ssl->session_negotiate->trunc_hmac = SSL_TRUNC_HMAC_ENABLED;
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-15 13:45:55 +02:00
|
|
|
#endif /* POLARSSL_SSL_TRUNCATED_HMAC */
|
2013-07-19 11:41:43 +02:00
|
|
|
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-08-01 11:47:56 +02:00
|
|
|
static int ssl_parse_session_ticket_ext( ssl_context *ssl,
|
2013-08-03 15:37:58 +02:00
|
|
|
unsigned char *buf,
|
2013-08-01 11:47:56 +02:00
|
|
|
size_t len )
|
|
|
|
{
|
2013-08-03 15:37:58 +02:00
|
|
|
int ret;
|
|
|
|
|
2013-08-03 13:02:31 +02:00
|
|
|
if( ssl->session_tickets == SSL_SESSION_TICKETS_DISABLED )
|
|
|
|
return( 0 );
|
|
|
|
|
2013-08-02 18:05:14 +02:00
|
|
|
/* Remember the client asked us to send a new ticket */
|
2013-08-01 11:47:56 +02:00
|
|
|
ssl->handshake->new_session_ticket = 1;
|
|
|
|
|
2013-08-02 11:59:05 +02:00
|
|
|
SSL_DEBUG_MSG( 3, ( "ticket length: %d", len ) );
|
|
|
|
|
2013-08-01 11:47:56 +02:00
|
|
|
if( len == 0 )
|
|
|
|
return( 0 );
|
|
|
|
|
2013-08-02 11:59:05 +02:00
|
|
|
if( ssl->renegotiation != SSL_INITIAL_HANDSHAKE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 3, ( "ticket rejected: renegotiating" ) );
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-01 15:08:40 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Failures are ok: just ignore the ticket and proceed.
|
|
|
|
*/
|
2013-08-03 15:37:58 +02:00
|
|
|
if( ( ret = ssl_parse_ticket( ssl, buf, len ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_parse_ticket", ret );
|
2013-08-01 15:08:40 +02:00
|
|
|
return( 0 );
|
2013-08-03 15:37:58 +02:00
|
|
|
}
|
2013-08-01 15:08:40 +02:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "session successfully restored from ticket" ) );
|
|
|
|
|
|
|
|
ssl->handshake->resume = 1;
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2013-08-02 18:05:14 +02:00
|
|
|
/* Don't send a new ticket after all, this one is OK */
|
|
|
|
ssl->handshake->new_session_ticket = 0;
|
|
|
|
|
2013-08-01 11:47:56 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-14 13:48:06 +02:00
|
|
|
#endif /* POLARSSL_SSL_SESSION_TICKETS */
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2013-11-30 17:50:32 +01:00
|
|
|
/*
|
|
|
|
* Auxiliary functions for ServerHello parsing and related actions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(POLARSSL_X509_CRT_PARSE_C)
|
|
|
|
/*
|
|
|
|
* Return 1 if the given EC key uses the given curve, 0 otherwise
|
|
|
|
*/
|
|
|
|
#if defined(POLARSSL_ECDSA_C)
|
|
|
|
static int ssl_key_matches_curves( pk_context *pk,
|
|
|
|
const ecp_curve_info **curves )
|
|
|
|
{
|
|
|
|
const ecp_curve_info **crv = curves;
|
|
|
|
ecp_group_id grp_id = pk_ec( *pk )->grp.id;
|
|
|
|
|
|
|
|
while( *crv != NULL )
|
|
|
|
{
|
|
|
|
if( (*crv)->grp_id == grp_id )
|
|
|
|
return( 1 );
|
|
|
|
crv++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#endif /* POLARSSL_ECDSA_C */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try picking a certificate for this ciphersuite,
|
|
|
|
* return 0 on success and -1 on failure.
|
|
|
|
*/
|
|
|
|
static int ssl_pick_cert( ssl_context *ssl,
|
|
|
|
const ssl_ciphersuite_t * ciphersuite_info )
|
|
|
|
{
|
|
|
|
ssl_key_cert *cur, *list;
|
|
|
|
pk_type_t pk_alg = ssl_get_ciphersuite_sig_pk_alg( ciphersuite_info );
|
|
|
|
|
|
|
|
#if defined(POLARSSL_SSL_SERVER_NAME_INDICATION)
|
|
|
|
if( ssl->handshake->sni_key_cert != NULL )
|
|
|
|
list = ssl->handshake->sni_key_cert;
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
list = ssl->handshake->key_cert;
|
|
|
|
|
|
|
|
if( pk_alg == POLARSSL_PK_NONE )
|
|
|
|
return( 0 );
|
|
|
|
|
|
|
|
for( cur = list; cur != NULL; cur = cur->next )
|
|
|
|
{
|
|
|
|
if( ! pk_can_do( cur->key, pk_alg ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
#if defined(POLARSSL_ECDSA_C)
|
|
|
|
if( pk_alg == POLARSSL_PK_ECDSA )
|
|
|
|
{
|
|
|
|
if( ssl_key_matches_curves( cur->key, ssl->handshake->curves ) )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( cur == NULL )
|
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
ssl->handshake->key_cert = cur;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#endif /* POLARSSL_X509_CRT_PARSE_C */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if a given ciphersuite is suitable for use with our config/keys/etc
|
|
|
|
* Sets ciphersuite_info only if the suite matches.
|
|
|
|
*/
|
|
|
|
static int ssl_ciphersuite_match( ssl_context *ssl, int suite_id,
|
|
|
|
const ssl_ciphersuite_t **ciphersuite_info )
|
|
|
|
{
|
|
|
|
const ssl_ciphersuite_t *suite_info;
|
|
|
|
|
|
|
|
suite_info = ssl_ciphersuite_from_id( suite_id );
|
|
|
|
if( suite_info == NULL )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "ciphersuite info for %04x not found", suite_id ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( suite_info->min_minor_ver > ssl->minor_ver ||
|
|
|
|
suite_info->max_minor_ver < ssl->minor_ver )
|
|
|
|
return( 0 );
|
|
|
|
|
|
|
|
#if defined(POLARSSL_ECDH_C) || defined(POLARSSL_ECDSA_C)
|
|
|
|
if( ssl_ciphersuite_uses_ec( suite_info ) &&
|
|
|
|
( ssl->handshake->curves == NULL ||
|
|
|
|
ssl->handshake->curves[0] == NULL ) )
|
|
|
|
return( 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE__SOME__PSK_ENABLED)
|
|
|
|
/* If the ciphersuite requires a pre-shared key and we don't
|
|
|
|
* have one, skip it now rather than failing later */
|
|
|
|
if( ssl_ciphersuite_uses_psk( suite_info ) &&
|
|
|
|
ssl->f_psk == NULL &&
|
|
|
|
( ssl->psk == NULL || ssl->psk_identity == NULL ||
|
|
|
|
ssl->psk_identity_len == 0 || ssl->psk_len == 0 ) )
|
|
|
|
return( 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(POLARSSL_X509_CRT_PARSE_C)
|
|
|
|
/*
|
|
|
|
* Final check: if ciphersuite requires us to have a
|
|
|
|
* certificate/key of a particular type:
|
|
|
|
* - select the appropriate certificate if we have one, or
|
|
|
|
* - try the next ciphersuite if we don't
|
|
|
|
* This must be done last since we modify the key_cert list.
|
|
|
|
*/
|
|
|
|
if( ssl_pick_cert( ssl, suite_info ) != 0 )
|
|
|
|
return( 0 );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*ciphersuite_info = suite_info;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-03-06 17:01:52 +01:00
|
|
|
#if defined(POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO)
|
|
|
|
static int ssl_parse_client_hello_v2( ssl_context *ssl )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
unsigned int i, j;
|
|
|
|
size_t n;
|
|
|
|
unsigned int ciph_len, sess_len, chal_len;
|
|
|
|
unsigned char *buf, *p;
|
2013-04-15 15:09:54 +02:00
|
|
|
const int *ciphersuites;
|
2013-06-29 15:33:42 +02:00
|
|
|
const ssl_ciphersuite_t *ciphersuite_info;
|
2013-03-06 17:01:52 +01:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> parse client hello v2" ) );
|
|
|
|
|
|
|
|
if( ssl->renegotiation != SSL_INITIAL_HANDSHAKE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "client hello v2 illegal for renegotiation" ) );
|
|
|
|
|
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = ssl->in_hdr;
|
|
|
|
|
|
|
|
SSL_DEBUG_BUF( 4, "record header", buf, 5 );
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v2, message type: %d",
|
|
|
|
buf[2] ) );
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v2, message len.: %d",
|
|
|
|
( ( buf[0] & 0x7F ) << 8 ) | buf[1] ) );
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v2, max. version: [%d:%d]",
|
|
|
|
buf[3], buf[4] ) );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SSLv2 Client Hello
|
|
|
|
*
|
|
|
|
* Record layer:
|
|
|
|
* 0 . 1 message length
|
|
|
|
*
|
|
|
|
* SSL layer:
|
|
|
|
* 2 . 2 message type
|
|
|
|
* 3 . 4 protocol version
|
|
|
|
*/
|
|
|
|
if( buf[2] != SSL_HS_CLIENT_HELLO ||
|
|
|
|
buf[3] != SSL_MAJOR_VERSION_3 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
n = ( ( buf[0] << 8 ) | buf[1] ) & 0x7FFF;
|
|
|
|
|
|
|
|
if( n < 17 || n > 512 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->major_ver = SSL_MAJOR_VERSION_3;
|
2013-06-29 16:01:15 +02:00
|
|
|
ssl->minor_ver = ( buf[4] <= ssl->max_minor_ver )
|
|
|
|
? buf[4] : ssl->max_minor_ver;
|
2013-03-06 17:01:52 +01:00
|
|
|
|
|
|
|
if( ssl->minor_ver < ssl->min_minor_ver )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "client only supports ssl smaller than minimum"
|
|
|
|
" [%d:%d] < [%d:%d]", ssl->major_ver, ssl->minor_ver,
|
|
|
|
ssl->min_major_ver, ssl->min_minor_ver ) );
|
|
|
|
|
|
|
|
ssl_send_alert_message( ssl, SSL_ALERT_LEVEL_FATAL,
|
|
|
|
SSL_ALERT_MSG_PROTOCOL_VERSION );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_PROTOCOL_VERSION );
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:01:15 +02:00
|
|
|
ssl->handshake->max_major_ver = buf[3];
|
|
|
|
ssl->handshake->max_minor_ver = buf[4];
|
2013-03-06 17:01:52 +01:00
|
|
|
|
|
|
|
if( ( ret = ssl_fetch_input( ssl, 2 + n ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_fetch_input", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->handshake->update_checksum( ssl, buf + 2, n );
|
|
|
|
|
|
|
|
buf = ssl->in_msg;
|
|
|
|
n = ssl->in_left - 5;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 0 . 1 ciphersuitelist length
|
|
|
|
* 2 . 3 session id length
|
|
|
|
* 4 . 5 challenge length
|
|
|
|
* 6 . .. ciphersuitelist
|
|
|
|
* .. . .. session id
|
|
|
|
* .. . .. challenge
|
|
|
|
*/
|
|
|
|
SSL_DEBUG_BUF( 4, "record contents", buf, n );
|
|
|
|
|
|
|
|
ciph_len = ( buf[0] << 8 ) | buf[1];
|
|
|
|
sess_len = ( buf[2] << 8 ) | buf[3];
|
|
|
|
chal_len = ( buf[4] << 8 ) | buf[5];
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "ciph_len: %d, sess_len: %d, chal_len: %d",
|
|
|
|
ciph_len, sess_len, chal_len ) );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure each parameter length is valid
|
|
|
|
*/
|
|
|
|
if( ciph_len < 3 || ( ciph_len % 3 ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( sess_len > 32 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( chal_len < 8 || chal_len > 32 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( n != 6 + ciph_len + sess_len + chal_len )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_BUF( 3, "client hello, ciphersuitelist",
|
|
|
|
buf + 6, ciph_len );
|
|
|
|
SSL_DEBUG_BUF( 3, "client hello, session id",
|
|
|
|
buf + 6 + ciph_len, sess_len );
|
|
|
|
SSL_DEBUG_BUF( 3, "client hello, challenge",
|
|
|
|
buf + 6 + ciph_len + sess_len, chal_len );
|
|
|
|
|
|
|
|
p = buf + 6 + ciph_len;
|
|
|
|
ssl->session_negotiate->length = sess_len;
|
|
|
|
memset( ssl->session_negotiate->id, 0, sizeof( ssl->session_negotiate->id ) );
|
|
|
|
memcpy( ssl->session_negotiate->id, p, ssl->session_negotiate->length );
|
|
|
|
|
|
|
|
p += sess_len;
|
|
|
|
memset( ssl->handshake->randbytes, 0, 64 );
|
|
|
|
memcpy( ssl->handshake->randbytes + 32 - chal_len, p, chal_len );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV
|
|
|
|
*/
|
|
|
|
for( i = 0, p = buf + 6; i < ciph_len; i += 3, p += 3 )
|
|
|
|
{
|
|
|
|
if( p[0] == 0 && p[1] == 0 && p[2] == SSL_EMPTY_RENEGOTIATION_INFO )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 3, ( "received TLS_EMPTY_RENEGOTIATION_INFO " ) );
|
|
|
|
if( ssl->renegotiation == SSL_RENEGOTIATION )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "received RENEGOTIATION SCSV during renegotiation" ) );
|
|
|
|
|
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
ssl->secure_renegotiation = SSL_SECURE_RENEGOTIATION;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-15 15:09:54 +02:00
|
|
|
ciphersuites = ssl->ciphersuite_list[ssl->minor_ver];
|
2013-11-30 18:11:07 +01:00
|
|
|
ciphersuite_info = NULL;
|
2013-11-30 18:30:06 +01:00
|
|
|
#if defined(POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE)
|
|
|
|
for( j = 0, p = buf + 6; j < ciph_len; j += 3, p += 3 )
|
|
|
|
{
|
|
|
|
for( i = 0; ciphersuites[i] != 0; i++ )
|
|
|
|
#else
|
2013-04-15 15:09:54 +02:00
|
|
|
for( i = 0; ciphersuites[i] != 0; i++ )
|
2013-03-06 17:01:52 +01:00
|
|
|
{
|
|
|
|
for( j = 0, p = buf + 6; j < ciph_len; j += 3, p += 3 )
|
2013-11-30 18:30:06 +01:00
|
|
|
#endif
|
2013-03-06 17:01:52 +01:00
|
|
|
{
|
2013-11-30 18:11:07 +01:00
|
|
|
if( p[0] != 0 ||
|
|
|
|
p[1] != ( ( ciphersuites[i] >> 8 ) & 0xFF ) ||
|
|
|
|
p[2] != ( ( ciphersuites[i] ) & 0xFF ) )
|
|
|
|
continue;
|
2013-06-29 15:33:42 +02:00
|
|
|
|
2013-11-30 18:11:07 +01:00
|
|
|
if( ( ret = ssl_ciphersuite_match( ssl, ciphersuites[i],
|
|
|
|
&ciphersuite_info ) ) != 0 )
|
|
|
|
return( ret );
|
2013-06-29 15:33:42 +02:00
|
|
|
|
2013-11-30 18:11:07 +01:00
|
|
|
if( ciphersuite_info != NULL )
|
2013-03-06 17:01:52 +01:00
|
|
|
goto have_ciphersuite_v2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 1, ( "got no ciphersuites in common" ) );
|
|
|
|
|
|
|
|
return( POLARSSL_ERR_SSL_NO_CIPHER_CHOSEN );
|
|
|
|
|
|
|
|
have_ciphersuite_v2:
|
2013-04-15 15:09:54 +02:00
|
|
|
ssl->session_negotiate->ciphersuite = ciphersuites[i];
|
2013-06-29 15:33:42 +02:00
|
|
|
ssl->transform_negotiate->ciphersuite_info = ciphersuite_info;
|
2013-03-20 14:39:14 +01:00
|
|
|
ssl_optimize_checksum( ssl, ssl->transform_negotiate->ciphersuite_info );
|
2013-03-06 17:01:52 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SSLv2 Client Hello relevant renegotiation security checks
|
|
|
|
*/
|
|
|
|
if( ssl->secure_renegotiation == SSL_LEGACY_RENEGOTIATION &&
|
|
|
|
ssl->allow_legacy_renegotiation == SSL_LEGACY_BREAK_HANDSHAKE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "legacy renegotiation, breaking off handshake" ) );
|
|
|
|
|
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->in_left = 0;
|
|
|
|
ssl->state++;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= parse client hello v2" ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#endif /* POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO */
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
static int ssl_parse_client_hello( ssl_context *ssl )
|
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
int ret;
|
|
|
|
unsigned int i, j;
|
|
|
|
size_t n;
|
|
|
|
unsigned int ciph_len, sess_len;
|
2012-09-09 21:17:02 +02:00
|
|
|
unsigned int comp_len;
|
2012-09-16 21:57:18 +02:00
|
|
|
unsigned int ext_len = 0;
|
|
|
|
unsigned char *buf, *p, *ext;
|
2012-09-17 11:18:12 +02:00
|
|
|
int renegotiation_info_seen = 0;
|
|
|
|
int handshake_failure = 0;
|
2013-04-15 15:09:54 +02:00
|
|
|
const int *ciphersuites;
|
2013-03-20 14:39:14 +01:00
|
|
|
const ssl_ciphersuite_t *ciphersuite_info;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> parse client hello" ) );
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
if( ssl->renegotiation == SSL_INITIAL_HANDSHAKE &&
|
|
|
|
( ret = ssl_fetch_input( ssl, 5 ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_fetch_input", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = ssl->in_hdr;
|
|
|
|
|
2013-03-06 17:01:52 +01:00
|
|
|
#if defined(POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO)
|
|
|
|
if( ( buf[0] & 0x80 ) != 0 )
|
|
|
|
return ssl_parse_client_hello_v2( ssl );
|
|
|
|
#endif
|
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
SSL_DEBUG_BUF( 4, "record header", buf, 5 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v3, message type: %d",
|
|
|
|
buf[0] ) );
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v3, message len.: %d",
|
|
|
|
( buf[3] << 8 ) | buf[4] ) );
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v3, protocol ver: [%d:%d]",
|
|
|
|
buf[1], buf[2] ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
/*
|
|
|
|
* SSLv3 Client Hello
|
|
|
|
*
|
|
|
|
* Record layer:
|
|
|
|
* 0 . 0 message type
|
|
|
|
* 1 . 2 protocol version
|
|
|
|
* 3 . 4 message length
|
|
|
|
*/
|
|
|
|
if( buf[0] != SSL_MSG_HANDSHAKE ||
|
|
|
|
buf[1] != SSL_MAJOR_VERSION_3 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
n = ( buf[3] << 8 ) | buf[4];
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-02 13:36:00 +02:00
|
|
|
if( n < 45 || n > 2048 )
|
2012-09-09 21:17:02 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2012-09-09 21:17:02 +02:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
if( ssl->renegotiation == SSL_INITIAL_HANDSHAKE &&
|
|
|
|
( ret = ssl_fetch_input( ssl, 5 + n ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2012-09-09 21:17:02 +02:00
|
|
|
SSL_DEBUG_RET( 1, "ssl_fetch_input", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
buf = ssl->in_msg;
|
2012-09-16 21:57:18 +02:00
|
|
|
if( !ssl->renegotiation )
|
|
|
|
n = ssl->in_left - 5;
|
|
|
|
else
|
|
|
|
n = ssl->in_msglen;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
ssl->handshake->update_checksum( ssl, buf, n );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
/*
|
|
|
|
* SSL layer:
|
|
|
|
* 0 . 0 handshake type
|
|
|
|
* 1 . 3 handshake length
|
|
|
|
* 4 . 5 protocol version
|
|
|
|
* 6 . 9 UNIX time()
|
|
|
|
* 10 . 37 random bytes
|
|
|
|
* 38 . 38 session id length
|
|
|
|
* 39 . 38+x session id
|
|
|
|
* 39+x . 40+x ciphersuitelist length
|
|
|
|
* 41+x . .. ciphersuitelist
|
|
|
|
* .. . .. compression alg.
|
|
|
|
* .. . .. extensions
|
|
|
|
*/
|
|
|
|
SSL_DEBUG_BUF( 4, "record contents", buf, n );
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v3, handshake type: %d",
|
|
|
|
buf[0] ) );
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v3, handshake len.: %d",
|
|
|
|
( buf[1] << 16 ) | ( buf[2] << 8 ) | buf[3] ) );
|
|
|
|
SSL_DEBUG_MSG( 3, ( "client hello v3, max. version: [%d:%d]",
|
|
|
|
buf[4], buf[5] ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
/*
|
|
|
|
* Check the handshake type and protocol version
|
|
|
|
*/
|
|
|
|
if( buf[0] != SSL_HS_CLIENT_HELLO ||
|
|
|
|
buf[4] != SSL_MAJOR_VERSION_3 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
ssl->major_ver = SSL_MAJOR_VERSION_3;
|
2013-06-29 16:01:15 +02:00
|
|
|
ssl->minor_ver = ( buf[5] <= ssl->max_minor_ver )
|
|
|
|
? buf[5] : ssl->max_minor_ver;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-28 15:28:45 +02:00
|
|
|
if( ssl->minor_ver < ssl->min_minor_ver )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "client only supports ssl smaller than minimum"
|
|
|
|
" [%d:%d] < [%d:%d]", ssl->major_ver, ssl->minor_ver,
|
2012-10-23 12:31:15 +02:00
|
|
|
ssl->min_major_ver, ssl->min_minor_ver ) );
|
2012-09-28 15:28:45 +02:00
|
|
|
|
|
|
|
ssl_send_alert_message( ssl, SSL_ALERT_LEVEL_FATAL,
|
|
|
|
SSL_ALERT_MSG_PROTOCOL_VERSION );
|
|
|
|
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_PROTOCOL_VERSION );
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:01:15 +02:00
|
|
|
ssl->handshake->max_major_ver = buf[4];
|
|
|
|
ssl->handshake->max_minor_ver = buf[5];
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
memcpy( ssl->handshake->randbytes, buf + 6, 32 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
/*
|
|
|
|
* Check the handshake message length
|
|
|
|
*/
|
|
|
|
if( buf[1] != 0 || n != (unsigned int) 4 + ( ( buf[2] << 8 ) | buf[3] ) )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
/*
|
|
|
|
* Check the session length
|
|
|
|
*/
|
|
|
|
sess_len = buf[38];
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
if( sess_len > 32 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
ssl->session_negotiate->length = sess_len;
|
|
|
|
memset( ssl->session_negotiate->id, 0,
|
|
|
|
sizeof( ssl->session_negotiate->id ) );
|
|
|
|
memcpy( ssl->session_negotiate->id, buf + 39,
|
|
|
|
ssl->session_negotiate->length );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
/*
|
|
|
|
* Check the ciphersuitelist length
|
|
|
|
*/
|
|
|
|
ciph_len = ( buf[39 + sess_len] << 8 )
|
|
|
|
| ( buf[40 + sess_len] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
if( ciph_len < 2 || ciph_len > 256 || ( ciph_len % 2 ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
/*
|
|
|
|
* Check the compression algorithms length
|
|
|
|
*/
|
|
|
|
comp_len = buf[41 + sess_len + ciph_len];
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
if( comp_len < 1 || comp_len > 16 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
/*
|
|
|
|
* Check the extension length
|
|
|
|
*/
|
|
|
|
if( n > 42 + sess_len + ciph_len + comp_len )
|
|
|
|
{
|
|
|
|
ext_len = ( buf[42 + sess_len + ciph_len + comp_len] << 8 )
|
|
|
|
| ( buf[43 + sess_len + ciph_len + comp_len] );
|
|
|
|
|
|
|
|
if( ( ext_len > 0 && ext_len < 4 ) ||
|
|
|
|
n != 44 + sess_len + ciph_len + comp_len + ext_len )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
SSL_DEBUG_BUF( 3, "Ext", buf + 44 + sess_len + ciph_len + comp_len, ext_len);
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->session_negotiate->compression = SSL_COMPRESS_NULL;
|
2012-07-03 15:30:23 +02:00
|
|
|
#if defined(POLARSSL_ZLIB_SUPPORT)
|
2012-09-09 21:17:02 +02:00
|
|
|
for( i = 0; i < comp_len; ++i )
|
|
|
|
{
|
2012-09-16 21:57:18 +02:00
|
|
|
if( buf[42 + sess_len + ciph_len + i] == SSL_COMPRESS_DEFLATE )
|
2012-07-03 15:30:23 +02:00
|
|
|
{
|
2012-09-16 21:57:18 +02:00
|
|
|
ssl->session_negotiate->compression = SSL_COMPRESS_DEFLATE;
|
2012-09-09 21:17:02 +02:00
|
|
|
break;
|
2012-07-03 15:30:23 +02:00
|
|
|
}
|
2012-09-09 21:17:02 +02:00
|
|
|
}
|
2012-07-03 15:30:23 +02:00
|
|
|
#endif
|
|
|
|
|
2012-09-09 21:17:02 +02:00
|
|
|
SSL_DEBUG_BUF( 3, "client hello, random bytes",
|
|
|
|
buf + 6, 32 );
|
|
|
|
SSL_DEBUG_BUF( 3, "client hello, session id",
|
|
|
|
buf + 38, sess_len );
|
|
|
|
SSL_DEBUG_BUF( 3, "client hello, ciphersuitelist",
|
|
|
|
buf + 41 + sess_len, ciph_len );
|
|
|
|
SSL_DEBUG_BUF( 3, "client hello, compression",
|
|
|
|
buf + 42 + sess_len + ciph_len, comp_len );
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
/*
|
|
|
|
* Check for TLS_EMPTY_RENEGOTIATION_INFO_SCSV
|
|
|
|
*/
|
|
|
|
for( i = 0, p = buf + 41 + sess_len; i < ciph_len; i += 2, p += 2 )
|
|
|
|
{
|
|
|
|
if( p[0] == 0 && p[1] == SSL_EMPTY_RENEGOTIATION_INFO )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 3, ( "received TLS_EMPTY_RENEGOTIATION_INFO " ) );
|
|
|
|
if( ssl->renegotiation == SSL_RENEGOTIATION )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "received RENEGOTIATION SCSV during renegotiation" ) );
|
2012-09-17 11:18:12 +02:00
|
|
|
|
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
ssl->secure_renegotiation = SSL_SECURE_RENEGOTIATION;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ext = buf + 44 + sess_len + ciph_len + comp_len;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
while( ext_len )
|
|
|
|
{
|
|
|
|
unsigned int ext_id = ( ( ext[0] << 8 )
|
|
|
|
| ( ext[1] ) );
|
|
|
|
unsigned int ext_size = ( ( ext[2] << 8 )
|
|
|
|
| ( ext[3] ) );
|
|
|
|
|
|
|
|
if( ext_size + 4 > ext_len )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
switch( ext_id )
|
|
|
|
{
|
2013-08-27 21:55:01 +02:00
|
|
|
#if defined(POLARSSL_SSL_SERVER_NAME_INDICATION)
|
2012-09-27 23:49:42 +02:00
|
|
|
case TLS_EXT_SERVERNAME:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found ServerName extension" ) );
|
|
|
|
if( ssl->f_sni == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
ret = ssl_parse_servername_ext( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
break;
|
2013-08-27 21:55:01 +02:00
|
|
|
#endif /* POLARSSL_SSL_SERVER_NAME_INDICATION */
|
2012-09-27 23:49:42 +02:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
case TLS_EXT_RENEGOTIATION_INFO:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found renegotiation extension" ) );
|
|
|
|
renegotiation_info_seen = 1;
|
|
|
|
|
2012-09-28 16:15:14 +02:00
|
|
|
ret = ssl_parse_renegotiation_info( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
2012-09-16 21:57:18 +02:00
|
|
|
return( ret );
|
2012-09-28 16:15:14 +02:00
|
|
|
break;
|
|
|
|
|
2013-08-27 21:19:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2012-09-28 16:15:14 +02:00
|
|
|
case TLS_EXT_SIG_ALG:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found signature_algorithms extension" ) );
|
|
|
|
if( ssl->renegotiation == SSL_RENEGOTIATION )
|
|
|
|
break;
|
2012-09-16 21:57:18 +02:00
|
|
|
|
2012-09-28 16:15:14 +02:00
|
|
|
ret = ssl_parse_signature_algorithms_ext( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
2012-09-16 21:57:18 +02:00
|
|
|
break;
|
2013-08-27 21:19:20 +02:00
|
|
|
#endif /* POLARSSL_SSL_PROTO_TLS1_2 */
|
2012-09-16 21:57:18 +02:00
|
|
|
|
2013-08-15 19:38:07 +02:00
|
|
|
#if defined(POLARSSL_ECDH_C) || defined(POLARSSL_ECDSA_C)
|
2013-03-20 14:39:14 +01:00
|
|
|
case TLS_EXT_SUPPORTED_ELLIPTIC_CURVES:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found supported elliptic curves extension" ) );
|
|
|
|
|
|
|
|
ret = ssl_parse_supported_elliptic_curves( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TLS_EXT_SUPPORTED_POINT_FORMATS:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found supported point formats extension" ) );
|
2013-10-28 12:54:26 +01:00
|
|
|
ssl->handshake->cli_exts |= TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT;
|
2013-03-20 14:39:14 +01:00
|
|
|
|
|
|
|
ret = ssl_parse_supported_point_formats( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
break;
|
2013-08-15 19:38:07 +02:00
|
|
|
#endif /* POLARSSL_ECDH_C || POLARSSL_ECDSA_C */
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2013-08-15 13:33:48 +02:00
|
|
|
#if defined(POLARSSL_SSL_MAX_FRAGMENT_LENGTH)
|
2013-07-17 10:25:37 +02:00
|
|
|
case TLS_EXT_MAX_FRAGMENT_LENGTH:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found max fragment length extension" ) );
|
|
|
|
|
|
|
|
ret = ssl_parse_max_fragment_length_ext( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
break;
|
2013-08-15 13:33:48 +02:00
|
|
|
#endif /* POLARSSL_SSL_MAX_FRAGMENT_LENGTH */
|
2013-07-17 10:25:37 +02:00
|
|
|
|
2013-08-15 13:45:55 +02:00
|
|
|
#if defined(POLARSSL_SSL_TRUNCATED_HMAC)
|
2013-07-19 11:41:43 +02:00
|
|
|
case TLS_EXT_TRUNCATED_HMAC:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found truncated hmac extension" ) );
|
|
|
|
|
|
|
|
ret = ssl_parse_truncated_hmac_ext( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
break;
|
2013-08-15 13:45:55 +02:00
|
|
|
#endif /* POLARSSL_SSL_TRUNCATED_HMAC */
|
2013-07-19 11:41:43 +02:00
|
|
|
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-08-01 11:47:56 +02:00
|
|
|
case TLS_EXT_SESSION_TICKET:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "found session ticket extension" ) );
|
|
|
|
|
|
|
|
ret = ssl_parse_session_ticket_ext( ssl, ext + 4, ext_size );
|
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
break;
|
2013-08-14 13:48:06 +02:00
|
|
|
#endif /* POLARSSL_SSL_SESSION_TICKETS */
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
default:
|
|
|
|
SSL_DEBUG_MSG( 3, ( "unknown extension found: %d (ignoring)",
|
|
|
|
ext_id ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
ext_len -= 4 + ext_size;
|
|
|
|
ext += 4 + ext_size;
|
|
|
|
|
|
|
|
if( ext_len > 0 && ext_len < 4 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client hello message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Renegotiation security checks
|
|
|
|
*/
|
2012-09-17 11:18:12 +02:00
|
|
|
if( ssl->secure_renegotiation == SSL_LEGACY_RENEGOTIATION &&
|
|
|
|
ssl->allow_legacy_renegotiation == SSL_LEGACY_BREAK_HANDSHAKE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "legacy renegotiation, breaking off handshake" ) );
|
|
|
|
handshake_failure = 1;
|
|
|
|
}
|
|
|
|
else if( ssl->renegotiation == SSL_RENEGOTIATION &&
|
|
|
|
ssl->secure_renegotiation == SSL_SECURE_RENEGOTIATION &&
|
|
|
|
renegotiation_info_seen == 0 )
|
2012-09-16 21:57:18 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "renegotiation_info extension missing (secure)" ) );
|
2012-09-17 11:18:12 +02:00
|
|
|
handshake_failure = 1;
|
2012-09-16 21:57:18 +02:00
|
|
|
}
|
2012-09-17 11:18:12 +02:00
|
|
|
else if( ssl->renegotiation == SSL_RENEGOTIATION &&
|
|
|
|
ssl->secure_renegotiation == SSL_LEGACY_RENEGOTIATION &&
|
|
|
|
ssl->allow_legacy_renegotiation == SSL_LEGACY_NO_RENEGOTIATION )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "legacy renegotiation not allowed" ) );
|
|
|
|
handshake_failure = 1;
|
|
|
|
}
|
|
|
|
else if( ssl->renegotiation == SSL_RENEGOTIATION &&
|
|
|
|
ssl->secure_renegotiation == SSL_LEGACY_RENEGOTIATION &&
|
|
|
|
renegotiation_info_seen == 1 )
|
2012-09-16 21:57:18 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "renegotiation_info extension present (legacy)" ) );
|
2012-09-17 11:18:12 +02:00
|
|
|
handshake_failure = 1;
|
2012-09-16 21:57:18 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 11:18:12 +02:00
|
|
|
if( handshake_failure == 1 )
|
2012-09-16 21:57:18 +02:00
|
|
|
{
|
2012-09-17 11:18:12 +02:00
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO );
|
|
|
|
}
|
2012-04-18 18:10:25 +02:00
|
|
|
|
2013-03-20 14:39:14 +01:00
|
|
|
/*
|
|
|
|
* Search for a matching ciphersuite
|
2013-09-23 17:00:18 +02:00
|
|
|
* (At the end because we need information from the EC-based extensions
|
|
|
|
* and certificate from the SNI callback triggered by the SNI extension.)
|
2013-03-20 14:39:14 +01:00
|
|
|
*/
|
2013-04-15 15:09:54 +02:00
|
|
|
ciphersuites = ssl->ciphersuite_list[ssl->minor_ver];
|
2013-11-30 17:46:04 +01:00
|
|
|
ciphersuite_info = NULL;
|
2013-11-30 18:30:06 +01:00
|
|
|
#if defined(POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE)
|
|
|
|
for( j = 0, p = buf + 41 + sess_len; j < ciph_len; j += 2, p += 2 )
|
|
|
|
{
|
|
|
|
for( i = 0; ciphersuites[i] != 0; i++ )
|
|
|
|
#else
|
2013-04-15 15:09:54 +02:00
|
|
|
for( i = 0; ciphersuites[i] != 0; i++ )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
2013-11-30 18:11:07 +01:00
|
|
|
for( j = 0, p = buf + 41 + sess_len; j < ciph_len; j += 2, p += 2 )
|
2013-11-30 18:30:06 +01:00
|
|
|
#endif
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
2013-11-30 18:11:07 +01:00
|
|
|
if( p[0] != ( ( ciphersuites[i] >> 8 ) & 0xFF ) ||
|
|
|
|
p[1] != ( ( ciphersuites[i] ) & 0xFF ) )
|
|
|
|
continue;
|
2013-08-17 17:39:04 +02:00
|
|
|
|
2013-11-30 18:11:07 +01:00
|
|
|
if( ( ret = ssl_ciphersuite_match( ssl, ciphersuites[i],
|
|
|
|
&ciphersuite_info ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
if( ciphersuite_info != NULL )
|
|
|
|
goto have_ciphersuite;
|
2013-03-20 14:39:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 1, ( "got no ciphersuites in common" ) );
|
|
|
|
|
|
|
|
if( ( ret = ssl_send_fatal_handshake_failure( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
return( POLARSSL_ERR_SSL_NO_CIPHER_CHOSEN );
|
|
|
|
|
|
|
|
have_ciphersuite:
|
2013-04-15 15:09:54 +02:00
|
|
|
ssl->session_negotiate->ciphersuite = ciphersuites[i];
|
2013-03-20 14:39:14 +01:00
|
|
|
ssl->transform_negotiate->ciphersuite_info = ciphersuite_info;
|
|
|
|
ssl_optimize_checksum( ssl, ssl->transform_negotiate->ciphersuite_info );
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl->in_left = 0;
|
|
|
|
ssl->state++;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= parse client hello" ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-08-15 13:45:55 +02:00
|
|
|
#if defined(POLARSSL_SSL_TRUNCATED_HMAC)
|
2013-07-19 11:41:43 +02:00
|
|
|
static void ssl_write_truncated_hmac_ext( ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
size_t *olen )
|
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
|
|
|
|
if( ssl->session_negotiate->trunc_hmac == SSL_TRUNC_HMAC_DISABLED )
|
|
|
|
{
|
|
|
|
*olen = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, adding truncated hmac extension" ) );
|
|
|
|
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_TRUNCATED_HMAC >> 8 ) & 0xFF );
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_TRUNCATED_HMAC ) & 0xFF );
|
|
|
|
|
|
|
|
*p++ = 0x00;
|
|
|
|
*p++ = 0x00;
|
|
|
|
|
|
|
|
*olen = 4;
|
|
|
|
}
|
2013-08-15 13:45:55 +02:00
|
|
|
#endif /* POLARSSL_SSL_TRUNCATED_HMAC */
|
2013-07-19 11:41:43 +02:00
|
|
|
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-08-01 11:47:56 +02:00
|
|
|
static void ssl_write_session_ticket_ext( ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
size_t *olen )
|
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
|
|
|
|
if( ssl->handshake->new_session_ticket == 0 )
|
|
|
|
{
|
|
|
|
*olen = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, adding session ticket extension" ) );
|
|
|
|
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_SESSION_TICKET >> 8 ) & 0xFF );
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_SESSION_TICKET ) & 0xFF );
|
|
|
|
|
|
|
|
*p++ = 0x00;
|
|
|
|
*p++ = 0x00;
|
|
|
|
|
|
|
|
*olen = 4;
|
|
|
|
}
|
2013-08-14 13:48:06 +02:00
|
|
|
#endif /* POLARSSL_SSL_SESSION_TICKETS */
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2013-07-17 11:17:14 +02:00
|
|
|
static void ssl_write_renegotiation_ext( ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
size_t *olen )
|
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
|
|
|
|
if( ssl->secure_renegotiation != SSL_SECURE_RENEGOTIATION )
|
|
|
|
{
|
|
|
|
*olen = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, secure renegotiation extension" ) );
|
|
|
|
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_RENEGOTIATION_INFO >> 8 ) & 0xFF );
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_RENEGOTIATION_INFO ) & 0xFF );
|
|
|
|
|
|
|
|
*p++ = 0x00;
|
|
|
|
*p++ = ( ssl->verify_data_len * 2 + 1 ) & 0xFF;
|
|
|
|
*p++ = ssl->verify_data_len * 2 & 0xFF;
|
|
|
|
|
|
|
|
memcpy( p, ssl->peer_verify_data, ssl->verify_data_len );
|
|
|
|
p += ssl->verify_data_len;
|
|
|
|
memcpy( p, ssl->own_verify_data, ssl->verify_data_len );
|
|
|
|
p += ssl->verify_data_len;
|
|
|
|
|
|
|
|
*olen = 5 + ssl->verify_data_len * 2;
|
|
|
|
}
|
|
|
|
|
2013-08-15 13:33:48 +02:00
|
|
|
#if defined(POLARSSL_SSL_MAX_FRAGMENT_LENGTH)
|
2013-07-17 13:50:08 +02:00
|
|
|
static void ssl_write_max_fragment_length_ext( ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
size_t *olen )
|
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
|
2013-07-19 12:47:00 +02:00
|
|
|
if( ssl->session_negotiate->mfl_code == SSL_MAX_FRAG_LEN_NONE )
|
|
|
|
{
|
2013-07-17 13:50:08 +02:00
|
|
|
*olen = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, max_fragment_length extension" ) );
|
|
|
|
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_MAX_FRAGMENT_LENGTH >> 8 ) & 0xFF );
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_MAX_FRAGMENT_LENGTH ) & 0xFF );
|
|
|
|
|
|
|
|
*p++ = 0x00;
|
|
|
|
*p++ = 1;
|
|
|
|
|
2013-07-18 14:07:09 +02:00
|
|
|
*p++ = ssl->session_negotiate->mfl_code;
|
2013-07-17 13:50:08 +02:00
|
|
|
|
|
|
|
*olen = 5;
|
|
|
|
}
|
2013-08-15 13:33:48 +02:00
|
|
|
#endif /* POLARSSL_SSL_MAX_FRAGMENT_LENGTH */
|
2013-07-17 13:50:08 +02:00
|
|
|
|
2013-08-15 19:38:07 +02:00
|
|
|
#if defined(POLARSSL_ECDH_C) || defined(POLARSSL_ECDSA_C)
|
2013-08-15 18:01:11 +02:00
|
|
|
static void ssl_write_supported_point_formats_ext( ssl_context *ssl,
|
|
|
|
unsigned char *buf,
|
|
|
|
size_t *olen )
|
|
|
|
{
|
|
|
|
unsigned char *p = buf;
|
|
|
|
((void) ssl);
|
|
|
|
|
2013-10-28 12:54:26 +01:00
|
|
|
if( ( ssl->handshake->cli_exts &
|
|
|
|
TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT ) == 0 )
|
|
|
|
{
|
|
|
|
*olen = 0;
|
|
|
|
return;
|
|
|
|
}
|
2013-08-15 18:01:11 +02:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, supported_point_formats extension" ) );
|
|
|
|
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_SUPPORTED_POINT_FORMATS >> 8 ) & 0xFF );
|
|
|
|
*p++ = (unsigned char)( ( TLS_EXT_SUPPORTED_POINT_FORMATS ) & 0xFF );
|
|
|
|
|
|
|
|
*p++ = 0x00;
|
|
|
|
*p++ = 2;
|
|
|
|
|
|
|
|
*p++ = 1;
|
|
|
|
*p++ = POLARSSL_ECP_PF_UNCOMPRESSED;
|
|
|
|
|
|
|
|
*olen = 6;
|
|
|
|
}
|
2013-08-15 19:38:07 +02:00
|
|
|
#endif /* POLARSSL_ECDH_C || POLARSSL_ECDSA_C */
|
2013-08-15 18:01:11 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
static int ssl_write_server_hello( ssl_context *ssl )
|
|
|
|
{
|
2013-07-03 15:31:03 +02:00
|
|
|
#if defined(POLARSSL_HAVE_TIME)
|
2009-01-03 22:22:43 +01:00
|
|
|
time_t t;
|
2013-07-03 15:31:03 +02:00
|
|
|
#endif
|
2013-10-11 18:58:55 +02:00
|
|
|
int ret;
|
|
|
|
size_t olen, ext_len = 0, n;
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *buf, *p;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> write server hello" ) );
|
|
|
|
|
2013-11-21 17:31:06 +01:00
|
|
|
if( ssl->f_rng == NULL )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "no RNG provided") );
|
|
|
|
return( POLARSSL_ERR_SSL_NO_RNG );
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* 0 . 0 handshake type
|
|
|
|
* 1 . 3 handshake length
|
|
|
|
* 4 . 5 protocol version
|
|
|
|
* 6 . 9 UNIX time()
|
|
|
|
* 10 . 37 random bytes
|
|
|
|
*/
|
|
|
|
buf = ssl->out_msg;
|
|
|
|
p = buf + 4;
|
|
|
|
|
|
|
|
*p++ = (unsigned char) ssl->major_ver;
|
|
|
|
*p++ = (unsigned char) ssl->minor_ver;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, chosen version: [%d:%d]",
|
|
|
|
buf[4], buf[5] ) );
|
|
|
|
|
2013-07-03 15:31:03 +02:00
|
|
|
#if defined(POLARSSL_HAVE_TIME)
|
2009-01-03 22:22:43 +01:00
|
|
|
t = time( NULL );
|
|
|
|
*p++ = (unsigned char)( t >> 24 );
|
|
|
|
*p++ = (unsigned char)( t >> 16 );
|
|
|
|
*p++ = (unsigned char)( t >> 8 );
|
|
|
|
*p++ = (unsigned char)( t );
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, current time: %lu", t ) );
|
2013-07-03 15:31:03 +02:00
|
|
|
#else
|
|
|
|
if( ( ret = ssl->f_rng( ssl->p_rng, p, 4 ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
p += 4;
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2011-11-27 22:07:34 +01:00
|
|
|
if( ( ret = ssl->f_rng( ssl->p_rng, p, 28 ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
p += 28;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
memcpy( ssl->handshake->randbytes + 32, buf + 6, 32 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
SSL_DEBUG_BUF( 3, "server hello, random bytes", buf + 6, 32 );
|
|
|
|
|
|
|
|
/*
|
2013-08-02 11:59:05 +02:00
|
|
|
* Resume is 0 by default, see ssl_handshake_init().
|
|
|
|
* It may be already set to 1 by ssl_parse_session_ticket_ext().
|
|
|
|
* If not, try looking up session ID in our cache.
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2013-08-02 11:59:05 +02:00
|
|
|
if( ssl->handshake->resume == 0 &&
|
|
|
|
ssl->renegotiation == SSL_INITIAL_HANDSHAKE &&
|
2013-08-02 14:13:02 +02:00
|
|
|
ssl->session_negotiate->length != 0 &&
|
2013-08-02 11:59:05 +02:00
|
|
|
ssl->f_get_cache != NULL &&
|
|
|
|
ssl->f_get_cache( ssl->p_get_cache, ssl->session_negotiate ) == 0 )
|
|
|
|
{
|
|
|
|
ssl->handshake->resume = 1;
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-02 11:59:05 +02:00
|
|
|
if( ssl->handshake->resume == 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
/*
|
2013-08-02 11:59:05 +02:00
|
|
|
* New session, create a new session id,
|
|
|
|
* unless we're about to issue a session ticket
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
|
|
|
ssl->state++;
|
|
|
|
|
2013-09-23 22:01:39 +02:00
|
|
|
#if defined(POLARSSL_HAVE_TIME)
|
|
|
|
ssl->session_negotiate->start = time( NULL );
|
|
|
|
#endif
|
|
|
|
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-09-23 22:01:39 +02:00
|
|
|
if( ssl->handshake->new_session_ticket != 0 )
|
|
|
|
{
|
|
|
|
ssl->session_negotiate->length = n = 0;
|
|
|
|
memset( ssl->session_negotiate->id, 0, 32 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* POLARSSL_SSL_SESSION_TICKETS */
|
2013-08-02 11:59:05 +02:00
|
|
|
{
|
|
|
|
ssl->session_negotiate->length = n = 32;
|
|
|
|
if( ( ret = ssl->f_rng( ssl->p_rng, ssl->session_negotiate->id,
|
2013-08-14 13:48:06 +02:00
|
|
|
n ) ) != 0 )
|
2013-08-02 11:59:05 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
2013-08-02 11:59:05 +02:00
|
|
|
* Resuming a session
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2013-08-15 11:40:48 +02:00
|
|
|
n = ssl->session_negotiate->length;
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl->state = SSL_SERVER_CHANGE_CIPHER_SPEC;
|
2010-03-16 22:09:09 +01:00
|
|
|
|
|
|
|
if( ( ret = ssl_derive_keys( ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_derive_keys", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2013-08-02 11:59:05 +02:00
|
|
|
/*
|
|
|
|
* 38 . 38 session id length
|
|
|
|
* 39 . 38+n session id
|
|
|
|
* 39+n . 40+n chosen ciphersuite
|
|
|
|
* 41+n . 41+n chosen compression alg.
|
|
|
|
* 42+n . 43+n extensions length
|
|
|
|
* 44+n . 43+n+m extensions
|
|
|
|
*/
|
|
|
|
*p++ = (unsigned char) ssl->session_negotiate->length;
|
2012-09-16 21:57:18 +02:00
|
|
|
memcpy( p, ssl->session_negotiate->id, ssl->session_negotiate->length );
|
|
|
|
p += ssl->session_negotiate->length;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, session id len.: %d", n ) );
|
|
|
|
SSL_DEBUG_BUF( 3, "server hello, session id", buf + 39, n );
|
|
|
|
SSL_DEBUG_MSG( 3, ( "%s session has been resumed",
|
2012-09-25 23:55:46 +02:00
|
|
|
ssl->handshake->resume ? "a" : "no" ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
*p++ = (unsigned char)( ssl->session_negotiate->ciphersuite >> 8 );
|
|
|
|
*p++ = (unsigned char)( ssl->session_negotiate->ciphersuite );
|
|
|
|
*p++ = (unsigned char)( ssl->session_negotiate->compression );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-09-17 12:06:25 +02:00
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, chosen ciphersuite: %s",
|
|
|
|
ssl_get_ciphersuite_name( ssl->session_negotiate->ciphersuite ) ) );
|
2013-08-17 17:39:04 +02:00
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, compress alg.: 0x%02X",
|
2012-09-16 21:57:18 +02:00
|
|
|
ssl->session_negotiate->compression ) );
|
|
|
|
|
2013-07-17 11:17:14 +02:00
|
|
|
/*
|
|
|
|
* First write extensions, then the total length
|
|
|
|
*/
|
|
|
|
ssl_write_renegotiation_ext( ssl, p + 2 + ext_len, &olen );
|
|
|
|
ext_len += olen;
|
2012-09-16 21:57:18 +02:00
|
|
|
|
2013-08-15 13:33:48 +02:00
|
|
|
#if defined(POLARSSL_SSL_MAX_FRAGMENT_LENGTH)
|
2013-07-17 13:50:08 +02:00
|
|
|
ssl_write_max_fragment_length_ext( ssl, p + 2 + ext_len, &olen );
|
|
|
|
ext_len += olen;
|
2013-08-15 13:33:48 +02:00
|
|
|
#endif
|
2013-07-17 13:50:08 +02:00
|
|
|
|
2013-08-15 13:45:55 +02:00
|
|
|
#if defined(POLARSSL_SSL_TRUNCATED_HMAC)
|
2013-07-19 11:41:43 +02:00
|
|
|
ssl_write_truncated_hmac_ext( ssl, p + 2 + ext_len, &olen );
|
|
|
|
ext_len += olen;
|
2013-08-15 13:45:55 +02:00
|
|
|
#endif
|
2013-07-19 11:41:43 +02:00
|
|
|
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-08-01 11:47:56 +02:00
|
|
|
ssl_write_session_ticket_ext( ssl, p + 2 + ext_len, &olen );
|
|
|
|
ext_len += olen;
|
2013-08-14 13:48:06 +02:00
|
|
|
#endif
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2013-08-15 19:38:07 +02:00
|
|
|
#if defined(POLARSSL_ECDH_C) || defined(POLARSSL_ECDSA_C)
|
2013-08-15 18:01:11 +02:00
|
|
|
ssl_write_supported_point_formats_ext( ssl, p + 2 + ext_len, &olen );
|
|
|
|
ext_len += olen;
|
|
|
|
#endif
|
|
|
|
|
2013-07-17 11:17:14 +02:00
|
|
|
SSL_DEBUG_MSG( 3, ( "server hello, total extension length: %d", ext_len ) );
|
2012-09-16 21:57:18 +02:00
|
|
|
|
2013-07-17 11:17:14 +02:00
|
|
|
*p++ = (unsigned char)( ( ext_len >> 8 ) & 0xFF );
|
|
|
|
*p++ = (unsigned char)( ( ext_len ) & 0xFF );
|
|
|
|
p += ext_len;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
ssl->out_msglen = p - buf;
|
|
|
|
ssl->out_msgtype = SSL_MSG_HANDSHAKE;
|
|
|
|
ssl->out_msg[0] = SSL_HS_SERVER_HELLO;
|
|
|
|
|
|
|
|
ret = ssl_write_record( ssl );
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= write server hello" ) );
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
#if !defined(POLARSSL_KEY_EXCHANGE_RSA_ENABLED) && \
|
|
|
|
!defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) && \
|
2013-09-17 21:17:44 +02:00
|
|
|
!defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) && \
|
|
|
|
!defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
|
2013-04-19 14:30:58 +02:00
|
|
|
static int ssl_write_certificate_request( ssl_context *ssl )
|
|
|
|
{
|
|
|
|
int ret = POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE;
|
|
|
|
const ssl_ciphersuite_t *ciphersuite_info = ssl->transform_negotiate->ciphersuite_info;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> write certificate request" ) );
|
|
|
|
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_PSK ||
|
2013-11-25 17:27:39 +01:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA_PSK ||
|
2013-10-11 16:53:50 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_PSK ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_PSK )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= skip write certificate request" ) );
|
|
|
|
ssl->state++;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-09-17 21:17:44 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "should not happen" ) );
|
2013-04-19 14:30:58 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
#else
|
2009-01-03 22:22:43 +01:00
|
|
|
static int ssl_write_certificate_request( ssl_context *ssl )
|
|
|
|
{
|
2013-04-18 22:46:23 +02:00
|
|
|
int ret = POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE;
|
|
|
|
const ssl_ciphersuite_t *ciphersuite_info = ssl->transform_negotiate->ciphersuite_info;
|
2013-08-17 13:01:41 +02:00
|
|
|
size_t dn_size, total_dn_size; /* excluding length bytes */
|
|
|
|
size_t ct_len, sa_len; /* including length bytes */
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char *buf, *p;
|
2013-09-18 14:13:26 +02:00
|
|
|
const x509_crt *crt;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> write certificate request" ) );
|
|
|
|
|
|
|
|
ssl->state++;
|
|
|
|
|
2013-04-17 19:10:21 +02:00
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_PSK ||
|
2013-11-25 17:27:39 +01:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA_PSK ||
|
2013-04-19 14:30:58 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_PSK ||
|
2013-10-11 16:53:50 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_PSK ||
|
2013-04-17 19:10:21 +02:00
|
|
|
ssl->authmode == SSL_VERIFY_NONE )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2013-04-19 14:30:58 +02:00
|
|
|
SSL_DEBUG_MSG( 2, ( "<= skip write certificate request" ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 0 . 0 handshake type
|
|
|
|
* 1 . 3 handshake length
|
|
|
|
* 4 . 4 cert type count
|
2012-11-23 13:38:07 +01:00
|
|
|
* 5 .. m-1 cert types
|
|
|
|
* m .. m+1 sig alg length (TLS 1.2 only)
|
|
|
|
* m+1 .. n-1 SignatureAndHashAlgorithms (TLS 1.2 only)
|
2009-01-03 22:22:43 +01:00
|
|
|
* n .. n+1 length of all DNs
|
|
|
|
* n+2 .. n+3 length of DN 1
|
|
|
|
* n+4 .. ... Distinguished Name #1
|
|
|
|
* ... .. ... length of DN 2, etc.
|
|
|
|
*/
|
|
|
|
buf = ssl->out_msg;
|
|
|
|
p = buf + 4;
|
|
|
|
|
|
|
|
/*
|
2013-08-17 13:01:41 +02:00
|
|
|
* Supported certificate types
|
|
|
|
*
|
|
|
|
* ClientCertificateType certificate_types<1..2^8-1>;
|
|
|
|
* enum { (255) } ClientCertificateType;
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2013-08-17 13:01:41 +02:00
|
|
|
ct_len = 0;
|
2012-11-23 13:38:07 +01:00
|
|
|
|
2013-08-17 13:01:41 +02:00
|
|
|
#if defined(POLARSSL_RSA_C)
|
|
|
|
p[1 + ct_len++] = SSL_CERT_TYPE_RSA_SIGN;
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_ECDSA_C)
|
|
|
|
p[1 + ct_len++] = SSL_CERT_TYPE_ECDSA_SIGN;
|
|
|
|
#endif
|
|
|
|
|
2013-10-11 18:58:55 +02:00
|
|
|
p[0] = (unsigned char) ct_len++;
|
2013-08-17 13:01:41 +02:00
|
|
|
p += ct_len;
|
2012-11-23 13:38:07 +01:00
|
|
|
|
2013-08-28 11:57:20 +02:00
|
|
|
sa_len = 0;
|
2013-08-27 21:19:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2012-11-23 13:38:07 +01:00
|
|
|
/*
|
|
|
|
* Add signature_algorithms for verify (TLS 1.2)
|
|
|
|
*
|
2013-08-17 13:01:41 +02:00
|
|
|
* SignatureAndHashAlgorithm supported_signature_algorithms<2..2^16-2>;
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* HashAlgorithm hash;
|
|
|
|
* SignatureAlgorithm signature;
|
|
|
|
* } SignatureAndHashAlgorithm;
|
|
|
|
*
|
|
|
|
* enum { (255) } HashAlgorithm;
|
|
|
|
* enum { (255) } SignatureAlgorithm;
|
2012-11-23 13:38:07 +01:00
|
|
|
*/
|
2013-01-03 11:41:08 +01:00
|
|
|
if( ssl->minor_ver == SSL_MINOR_VERSION_3 )
|
2012-11-23 13:38:07 +01:00
|
|
|
{
|
2013-08-17 13:01:41 +02:00
|
|
|
/*
|
|
|
|
* Only use current running hash algorithm that is already required
|
|
|
|
* for requested ciphersuite.
|
|
|
|
*/
|
2012-11-23 13:38:07 +01:00
|
|
|
ssl->handshake->verify_sig_alg = SSL_HASH_SHA256;
|
|
|
|
|
2013-03-20 15:30:09 +01:00
|
|
|
if( ssl->transform_negotiate->ciphersuite_info->mac ==
|
|
|
|
POLARSSL_MD_SHA384 )
|
2012-11-23 13:38:07 +01:00
|
|
|
{
|
|
|
|
ssl->handshake->verify_sig_alg = SSL_HASH_SHA384;
|
|
|
|
}
|
2013-04-16 13:15:56 +02:00
|
|
|
|
2013-08-17 13:01:41 +02:00
|
|
|
/*
|
|
|
|
* Supported signature algorithms
|
|
|
|
*/
|
|
|
|
#if defined(POLARSSL_RSA_C)
|
|
|
|
p[2 + sa_len++] = ssl->handshake->verify_sig_alg;
|
|
|
|
p[2 + sa_len++] = SSL_SIG_RSA;
|
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_ECDSA_C)
|
|
|
|
p[2 + sa_len++] = ssl->handshake->verify_sig_alg;
|
|
|
|
p[2 + sa_len++] = SSL_SIG_ECDSA;
|
|
|
|
#endif
|
2012-11-23 13:38:07 +01:00
|
|
|
|
2013-08-17 13:01:41 +02:00
|
|
|
p[0] = (unsigned char)( sa_len >> 8 );
|
|
|
|
p[1] = (unsigned char)( sa_len );
|
|
|
|
sa_len += 2;
|
|
|
|
p += sa_len;
|
2012-11-23 13:38:07 +01:00
|
|
|
}
|
2013-08-27 21:19:20 +02:00
|
|
|
#endif /* POLARSSL_SSL_PROTO_TLS1_2 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-17 13:01:41 +02:00
|
|
|
/*
|
|
|
|
* DistinguishedName certificate_authorities<0..2^16-1>;
|
|
|
|
* opaque DistinguishedName<1..2^16-1>;
|
|
|
|
*/
|
2009-01-03 22:22:43 +01:00
|
|
|
p += 2;
|
|
|
|
crt = ssl->ca_chain;
|
|
|
|
|
2012-11-26 16:12:02 +01:00
|
|
|
total_dn_size = 0;
|
2010-03-21 22:03:34 +01:00
|
|
|
while( crt != NULL )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
if( p - buf > 4096 )
|
|
|
|
break;
|
|
|
|
|
2012-11-23 13:38:07 +01:00
|
|
|
dn_size = crt->subject_raw.len;
|
|
|
|
*p++ = (unsigned char)( dn_size >> 8 );
|
|
|
|
*p++ = (unsigned char)( dn_size );
|
|
|
|
memcpy( p, crt->subject_raw.p, dn_size );
|
|
|
|
p += dn_size;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-11-23 13:38:07 +01:00
|
|
|
SSL_DEBUG_BUF( 3, "requested DN", p, dn_size );
|
|
|
|
|
2012-11-26 16:12:02 +01:00
|
|
|
total_dn_size += 2 + dn_size;
|
2012-11-23 13:38:07 +01:00
|
|
|
crt = crt->next;
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2012-11-23 13:38:07 +01:00
|
|
|
ssl->out_msglen = p - buf;
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl->out_msgtype = SSL_MSG_HANDSHAKE;
|
|
|
|
ssl->out_msg[0] = SSL_HS_CERTIFICATE_REQUEST;
|
2013-08-17 13:01:41 +02:00
|
|
|
ssl->out_msg[4 + ct_len + sa_len] = (unsigned char)( total_dn_size >> 8 );
|
|
|
|
ssl->out_msg[5 + ct_len + sa_len] = (unsigned char)( total_dn_size );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
ret = ssl_write_record( ssl );
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= write certificate request" ) );
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
#endif /* !POLARSSL_KEY_EXCHANGE_RSA_ENABLED &&
|
|
|
|
!POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED &&
|
2013-11-25 17:38:36 +01:00
|
|
|
!POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED &&
|
|
|
|
!POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
static int ssl_write_server_key_exchange( ssl_context *ssl )
|
|
|
|
{
|
2011-04-24 10:57:21 +02:00
|
|
|
int ret;
|
2013-09-20 11:29:59 +02:00
|
|
|
size_t n = 0;
|
2013-10-15 10:43:36 +02:00
|
|
|
const ssl_ciphersuite_t *ciphersuite_info =
|
|
|
|
ssl->transform_negotiate->ciphersuite_info;
|
2013-09-15 17:06:49 +02:00
|
|
|
|
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
|
2013-10-14 14:02:19 +02:00
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED) || \
|
2013-09-15 17:06:49 +02:00
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
|
2013-09-20 11:29:59 +02:00
|
|
|
unsigned char *p = ssl->out_msg + 4;
|
2013-08-20 13:53:44 +02:00
|
|
|
unsigned char *dig_signed = p;
|
2013-09-20 11:29:59 +02:00
|
|
|
size_t dig_signed_len = 0, len;
|
2013-09-15 17:06:49 +02:00
|
|
|
((void) dig_signed);
|
|
|
|
((void) dig_signed_len);
|
|
|
|
#endif
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
SSL_DEBUG_MSG( 2, ( "=> write server key exchange" ) );
|
|
|
|
|
2013-10-15 10:43:36 +02:00
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_PSK ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA_PSK )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= skip write server key exchange" ) );
|
|
|
|
ssl->state++;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-10-11 16:53:50 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_PSK ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_PSK )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
|
|
|
/* TODO: Support identity hints */
|
|
|
|
*(p++) = 0x00;
|
|
|
|
*(p++) = 0x00;
|
|
|
|
|
|
|
|
n += 2;
|
|
|
|
}
|
2013-10-11 16:53:50 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED ||
|
|
|
|
POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED */
|
2013-04-19 14:30:58 +02:00
|
|
|
|
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_RSA ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_PSK )
|
2012-09-16 21:57:18 +02:00
|
|
|
{
|
2013-03-20 14:39:14 +01:00
|
|
|
/*
|
|
|
|
* Ephemeral DH parameters:
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* opaque dh_p<1..2^16-1>;
|
|
|
|
* opaque dh_g<1..2^16-1>;
|
|
|
|
* opaque dh_Ys<1..2^16-1>;
|
|
|
|
* } ServerDHParams;
|
|
|
|
*/
|
|
|
|
if( ( ret = mpi_copy( &ssl->handshake->dhm_ctx.P, &ssl->dhm_P ) ) != 0 ||
|
|
|
|
( ret = mpi_copy( &ssl->handshake->dhm_ctx.G, &ssl->dhm_G ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "mpi_copy", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( ret = dhm_make_params( &ssl->handshake->dhm_ctx,
|
2013-10-11 18:58:55 +02:00
|
|
|
(int) mpi_size( &ssl->handshake->dhm_ctx.P ),
|
2013-04-19 14:30:58 +02:00
|
|
|
p,
|
|
|
|
&len, ssl->f_rng, ssl->p_rng ) ) != 0 )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "dhm_make_params", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
dig_signed = p;
|
|
|
|
dig_signed_len = len;
|
2013-04-19 14:30:58 +02:00
|
|
|
|
|
|
|
p += len;
|
|
|
|
n += len;
|
|
|
|
|
2013-03-20 14:39:14 +01:00
|
|
|
SSL_DEBUG_MPI( 3, "DHM: X ", &ssl->handshake->dhm_ctx.X );
|
|
|
|
SSL_DEBUG_MPI( 3, "DHM: P ", &ssl->handshake->dhm_ctx.P );
|
|
|
|
SSL_DEBUG_MPI( 3, "DHM: G ", &ssl->handshake->dhm_ctx.G );
|
|
|
|
SSL_DEBUG_MPI( 3, "DHM: GX", &ssl->handshake->dhm_ctx.GX );
|
2012-09-16 21:57:18 +02:00
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED ||
|
|
|
|
POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED */
|
2012-09-16 21:57:18 +02:00
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
|
2013-10-11 16:53:50 +02:00
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
|
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_RSA ||
|
2013-10-11 16:53:50 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_PSK )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2013-03-20 14:39:14 +01:00
|
|
|
/*
|
|
|
|
* Ephemeral ECDH parameters:
|
|
|
|
*
|
|
|
|
* struct {
|
|
|
|
* ECParameters curve_params;
|
|
|
|
* ECPoint public;
|
|
|
|
* } ServerECDHParams;
|
|
|
|
*/
|
|
|
|
if( ( ret = ecp_use_known_dp( &ssl->handshake->ecdh_ctx.grp,
|
2013-09-23 19:11:32 +02:00
|
|
|
ssl->handshake->curves[0]->grp_id ) ) != 0 )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ecp_use_known_dp", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-09-16 17:30:04 +02:00
|
|
|
SSL_DEBUG_MSG( 2, ( "ECDH curve size: %d",
|
|
|
|
(int) ssl->handshake->ecdh_ctx.grp.nbits ) );
|
|
|
|
|
2013-10-14 13:09:25 +02:00
|
|
|
if( ( ret = ecdh_make_params( &ssl->handshake->ecdh_ctx, &len,
|
|
|
|
p, SSL_MAX_CONTENT_LEN - n,
|
|
|
|
ssl->f_rng, ssl->p_rng ) ) != 0 )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ecdh_make_params", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
dig_signed = p;
|
|
|
|
dig_signed_len = len;
|
2012-09-28 16:15:14 +02:00
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
p += len;
|
|
|
|
n += len;
|
2012-04-11 14:09:53 +02:00
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
SSL_DEBUG_ECP( 3, "ECDH: Q ", &ssl->handshake->ecdh_ctx.Q );
|
2012-04-11 14:09:53 +02:00
|
|
|
}
|
2013-08-20 13:53:44 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED ||
|
2013-10-11 16:53:50 +02:00
|
|
|
POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED ||
|
|
|
|
POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED */
|
2013-04-19 14:30:58 +02:00
|
|
|
|
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
|
2013-08-20 13:53:44 +02:00
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
|
2013-04-19 14:30:58 +02:00
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_RSA ||
|
2013-08-20 13:53:44 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_RSA ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA )
|
2012-04-11 14:09:53 +02:00
|
|
|
{
|
2013-08-20 13:53:44 +02:00
|
|
|
size_t signature_len = 0;
|
2013-09-15 17:06:49 +02:00
|
|
|
unsigned int hashlen = 0;
|
|
|
|
unsigned char hash[64];
|
|
|
|
md_type_t md_alg = POLARSSL_MD_NONE;
|
2013-04-07 22:00:46 +02:00
|
|
|
|
2013-08-27 13:31:28 +02:00
|
|
|
/*
|
|
|
|
* Choose hash algorithm. NONE means MD5 + SHA1 here.
|
|
|
|
*/
|
2013-08-28 11:57:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2013-08-27 13:31:28 +02:00
|
|
|
if( ssl->minor_ver == SSL_MINOR_VERSION_3 )
|
|
|
|
{
|
|
|
|
md_alg = ssl_md_alg_from_hash( ssl->handshake->sig_alg );
|
|
|
|
|
|
|
|
if( md_alg == POLARSSL_MD_NONE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "should never happen" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE );
|
|
|
|
}
|
|
|
|
}
|
2013-08-28 11:57:20 +02:00
|
|
|
else
|
|
|
|
#endif
|
2013-08-27 21:19:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_SSL3) || defined(POLARSSL_SSL_PROTO_TLS1) || \
|
|
|
|
defined(POLARSSL_SSL_PROTO_TLS1_1)
|
2013-08-28 11:57:20 +02:00
|
|
|
if ( ciphersuite_info->key_exchange ==
|
2013-08-27 13:31:28 +02:00
|
|
|
POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA )
|
|
|
|
{
|
|
|
|
md_alg = POLARSSL_MD_SHA1;
|
|
|
|
}
|
|
|
|
else
|
2013-08-28 11:57:20 +02:00
|
|
|
#endif
|
2013-08-27 13:31:28 +02:00
|
|
|
{
|
|
|
|
md_alg = POLARSSL_MD_NONE;
|
|
|
|
}
|
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
/*
|
|
|
|
* Compute the hash to be signed
|
|
|
|
*/
|
2013-08-28 11:57:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_SSL3) || defined(POLARSSL_SSL_PROTO_TLS1) || \
|
|
|
|
defined(POLARSSL_SSL_PROTO_TLS1_1)
|
2013-08-27 13:31:28 +02:00
|
|
|
if( md_alg == POLARSSL_MD_NONE )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
|
|
|
md5_context md5;
|
|
|
|
sha1_context sha1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* digitally-signed struct {
|
|
|
|
* opaque md5_hash[16];
|
|
|
|
* opaque sha_hash[20];
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* md5_hash
|
|
|
|
* MD5(ClientHello.random + ServerHello.random
|
|
|
|
* + ServerParams);
|
|
|
|
* sha_hash
|
|
|
|
* SHA(ClientHello.random + ServerHello.random
|
|
|
|
* + ServerParams);
|
|
|
|
*/
|
|
|
|
md5_starts( &md5 );
|
|
|
|
md5_update( &md5, ssl->handshake->randbytes, 64 );
|
2013-08-20 13:53:44 +02:00
|
|
|
md5_update( &md5, dig_signed, dig_signed_len );
|
2013-04-19 14:30:58 +02:00
|
|
|
md5_finish( &md5, hash );
|
|
|
|
|
|
|
|
sha1_starts( &sha1 );
|
|
|
|
sha1_update( &sha1, ssl->handshake->randbytes, 64 );
|
2013-08-20 13:53:44 +02:00
|
|
|
sha1_update( &sha1, dig_signed, dig_signed_len );
|
2013-04-19 14:30:58 +02:00
|
|
|
sha1_finish( &sha1, hash + 16 );
|
|
|
|
|
|
|
|
hashlen = 36;
|
|
|
|
}
|
|
|
|
else
|
2013-08-27 21:19:20 +02:00
|
|
|
#endif /* POLARSSL_SSL_PROTO_SSL3 || POLARSSL_SSL_PROTO_TLS1 || \
|
|
|
|
POLARSSL_SSL_PROTO_TLS1_1 */
|
2013-08-28 16:21:34 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1) || defined(POLARSSL_SSL_PROTO_TLS1_1) || \
|
|
|
|
defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2013-08-28 11:57:20 +02:00
|
|
|
if( md_alg != POLARSSL_MD_NONE )
|
2012-09-28 16:15:14 +02:00
|
|
|
{
|
2013-04-19 14:30:58 +02:00
|
|
|
md_context_t ctx;
|
|
|
|
|
2013-08-22 14:55:30 +02:00
|
|
|
/* Info from md_alg will be used instead */
|
|
|
|
hashlen = 0;
|
2013-04-19 14:30:58 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* digitally-signed struct {
|
|
|
|
* opaque client_random[32];
|
|
|
|
* opaque server_random[32];
|
|
|
|
* ServerDHParams params;
|
|
|
|
* };
|
|
|
|
*/
|
2013-08-22 14:55:30 +02:00
|
|
|
if( ( ret = md_init_ctx( &ctx, md_info_from_type(md_alg) ) ) != 0 )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "md_init_ctx", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
md_starts( &ctx );
|
|
|
|
md_update( &ctx, ssl->handshake->randbytes, 64 );
|
2013-08-20 13:53:44 +02:00
|
|
|
md_update( &ctx, dig_signed, dig_signed_len );
|
2013-04-19 14:30:58 +02:00
|
|
|
md_finish( &ctx, hash );
|
2013-07-04 11:51:43 +02:00
|
|
|
|
|
|
|
if( ( ret = md_free_ctx( &ctx ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "md_free_ctx", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2012-09-28 16:15:14 +02:00
|
|
|
}
|
2013-08-27 21:19:20 +02:00
|
|
|
else
|
2013-08-28 16:21:34 +02:00
|
|
|
#endif /* POLARSSL_SSL_PROTO_TLS1 || POLARSSL_SSL_PROTO_TLS1_1 || \
|
|
|
|
POLARSSL_SSL_PROTO_TLS1_2 */
|
2013-08-28 11:57:20 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "should never happen" ) );
|
2013-08-27 21:19:20 +02:00
|
|
|
return( POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE );
|
2013-08-28 11:57:20 +02:00
|
|
|
}
|
2012-09-28 16:15:14 +02:00
|
|
|
|
2013-08-27 14:29:44 +02:00
|
|
|
SSL_DEBUG_BUF( 3, "parameters hash", hash, hashlen != 0 ? hashlen :
|
|
|
|
(unsigned int) ( md_info_from_type( md_alg ) )->size );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
/*
|
|
|
|
* Make the signature
|
|
|
|
*/
|
2013-09-23 14:46:13 +02:00
|
|
|
if( ssl_own_key( ssl ) == NULL )
|
2013-08-20 13:53:44 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "got no private key" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_PRIVATE_KEY_REQUIRED );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-27 21:19:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2013-04-19 14:30:58 +02:00
|
|
|
if( ssl->minor_ver == SSL_MINOR_VERSION_3 )
|
|
|
|
{
|
|
|
|
*(p++) = ssl->handshake->sig_alg;
|
2013-09-23 14:46:13 +02:00
|
|
|
*(p++) = ssl_sig_from_pk( ssl_own_key( ssl ) );
|
2011-01-18 16:27:19 +01:00
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
n += 2;
|
|
|
|
}
|
2013-08-27 21:19:20 +02:00
|
|
|
#endif /* POLARSSL_SSL_PROTO_TLS1_2 */
|
2012-04-11 14:09:53 +02:00
|
|
|
|
2013-09-23 14:46:13 +02:00
|
|
|
if( ( ret = pk_sign( ssl_own_key( ssl ), md_alg, hash, hashlen,
|
2013-08-21 16:14:26 +02:00
|
|
|
p + 2 , &signature_len,
|
|
|
|
ssl->f_rng, ssl->p_rng ) ) != 0 )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
2013-08-21 16:14:26 +02:00
|
|
|
SSL_DEBUG_RET( 1, "pk_sign", ret );
|
2013-04-19 14:30:58 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
*(p++) = (unsigned char)( signature_len >> 8 );
|
|
|
|
*(p++) = (unsigned char)( signature_len );
|
|
|
|
n += 2;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
SSL_DEBUG_BUF( 3, "my signature", p, signature_len );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-20 13:53:44 +02:00
|
|
|
p += signature_len;
|
|
|
|
n += signature_len;
|
2013-04-19 14:30:58 +02:00
|
|
|
}
|
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) ||
|
2013-08-20 13:53:44 +02:00
|
|
|
POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED ||
|
|
|
|
POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
ssl->out_msglen = 4 + n;
|
2009-01-03 22:22:43 +01:00
|
|
|
ssl->out_msgtype = SSL_MSG_HANDSHAKE;
|
|
|
|
ssl->out_msg[0] = SSL_HS_SERVER_KEY_EXCHANGE;
|
|
|
|
|
|
|
|
ssl->state++;
|
|
|
|
|
|
|
|
if( ( ret = ssl_write_record( ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_write_record", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= write server key exchange" ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ssl_write_server_hello_done( ssl_context *ssl )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> write server hello done" ) );
|
|
|
|
|
|
|
|
ssl->out_msglen = 4;
|
|
|
|
ssl->out_msgtype = SSL_MSG_HANDSHAKE;
|
|
|
|
ssl->out_msg[0] = SSL_HS_SERVER_HELLO_DONE;
|
|
|
|
|
|
|
|
ssl->state++;
|
|
|
|
|
|
|
|
if( ( ret = ssl_write_record( ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_write_record", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= write server hello done" ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED)
|
|
|
|
static int ssl_parse_client_dh_public( ssl_context *ssl, unsigned char **p,
|
|
|
|
const unsigned char *end )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2013-04-17 17:19:09 +02:00
|
|
|
int ret = POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE;
|
|
|
|
size_t n;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
/*
|
|
|
|
* Receive G^Y mod P, premaster = (G^Y)^X mod P
|
|
|
|
*/
|
2013-04-19 14:30:58 +02:00
|
|
|
if( *p + 2 > end )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
|
|
|
|
|
|
|
n = ( (*p)[0] << 8 ) | (*p)[1];
|
|
|
|
*p += 2;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
if( n < 1 || n > ssl->handshake->dhm_ctx.len || *p + n > end )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
2009-01-03 22:51:57 +01:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
if( ( ret = dhm_read_public( &ssl->handshake->dhm_ctx,
|
2013-04-19 14:30:58 +02:00
|
|
|
*p, n ) ) != 0 )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "dhm_read_public", ret );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP );
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MPI( 3, "DHM: GY", &ssl->handshake->dhm_ctx.GY );
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED ||
|
|
|
|
POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED */
|
2013-04-17 17:19:09 +02:00
|
|
|
|
2013-10-15 11:54:47 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_RSA_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED)
|
2013-10-14 17:39:48 +02:00
|
|
|
static int ssl_parse_encrypted_pms( ssl_context *ssl,
|
|
|
|
const unsigned char *p,
|
|
|
|
const unsigned char *end,
|
|
|
|
size_t pms_offset )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
2013-10-14 17:39:48 +02:00
|
|
|
int ret;
|
|
|
|
size_t len = pk_get_len( ssl_own_key( ssl ) );
|
|
|
|
unsigned char *pms = ssl->handshake->premaster + pms_offset;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-09-23 14:46:13 +02:00
|
|
|
if( ! pk_can_do( ssl_own_key( ssl ), POLARSSL_PK_RSA ) )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
2013-08-21 11:51:08 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "got no RSA private key" ) );
|
2013-04-17 17:19:09 +02:00
|
|
|
return( POLARSSL_ERR_SSL_PRIVATE_KEY_REQUIRED );
|
|
|
|
}
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
/*
|
|
|
|
* Decrypt the premaster using own private RSA key
|
|
|
|
*/
|
2013-08-27 21:19:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1) || defined(POLARSSL_SSL_PROTO_TLS1_1) || \
|
|
|
|
defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2013-04-17 17:19:09 +02:00
|
|
|
if( ssl->minor_ver != SSL_MINOR_VERSION_0 )
|
|
|
|
{
|
2013-10-14 17:39:48 +02:00
|
|
|
if( *p++ != ( ( len >> 8 ) & 0xFF ) ||
|
|
|
|
*p++ != ( ( len ) & 0xFF ) )
|
2013-03-20 14:39:14 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
2013-04-17 17:19:09 +02:00
|
|
|
}
|
2013-08-27 21:19:20 +02:00
|
|
|
#endif
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2013-10-14 17:39:48 +02:00
|
|
|
if( p + len != end )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2013-10-14 17:39:48 +02:00
|
|
|
ret = pk_decrypt( ssl_own_key( ssl ), p, len,
|
|
|
|
pms, &ssl->handshake->pmslen,
|
2013-08-21 15:09:31 +02:00
|
|
|
sizeof(ssl->handshake->premaster),
|
|
|
|
ssl->f_rng, ssl->p_rng );
|
2013-04-17 17:19:09 +02:00
|
|
|
|
|
|
|
if( ret != 0 || ssl->handshake->pmslen != 48 ||
|
2013-10-14 17:39:48 +02:00
|
|
|
pms[0] != ssl->handshake->max_major_ver ||
|
|
|
|
pms[1] != ssl->handshake->max_minor_ver )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2013-04-17 17:19:09 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
2011-01-18 16:27:19 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
2013-04-17 17:19:09 +02:00
|
|
|
* Protection against Bleichenbacher's attack:
|
|
|
|
* invalid PKCS#1 v1.5 padding must not cause
|
|
|
|
* the connection to end immediately; instead,
|
|
|
|
* send a bad_record_mac later in the handshake.
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2012-09-16 21:57:18 +02:00
|
|
|
ssl->handshake->pmslen = 48;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-10-14 17:39:48 +02:00
|
|
|
ret = ssl->f_rng( ssl->p_rng, pms, ssl->handshake->pmslen );
|
2013-04-17 17:19:09 +02:00
|
|
|
if( ret != 0 )
|
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
2013-10-15 11:54:47 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_RSA_ENABLED ||
|
|
|
|
POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-10-14 19:54:10 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE__SOME__PSK_ENABLED)
|
2013-04-19 14:30:58 +02:00
|
|
|
static int ssl_parse_client_psk_identity( ssl_context *ssl, unsigned char **p,
|
|
|
|
const unsigned char *end )
|
2013-04-17 19:10:21 +02:00
|
|
|
{
|
2013-09-18 17:29:31 +02:00
|
|
|
int ret = 0;
|
2013-04-17 19:10:21 +02:00
|
|
|
size_t n;
|
|
|
|
|
2013-09-18 17:29:31 +02:00
|
|
|
if( ssl->f_psk == NULL &&
|
|
|
|
( ssl->psk == NULL || ssl->psk_identity == NULL ||
|
|
|
|
ssl->psk_identity_len == 0 || ssl->psk_len == 0 ) )
|
2013-04-17 19:10:21 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "got no pre-shared key" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_PRIVATE_KEY_REQUIRED );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-04-19 14:30:58 +02:00
|
|
|
* Receive client pre-shared key identity name
|
2013-04-17 19:10:21 +02:00
|
|
|
*/
|
2013-04-19 14:30:58 +02:00
|
|
|
if( *p + 2 > end )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
|
|
|
|
|
|
|
n = ( (*p)[0] << 8 ) | (*p)[1];
|
|
|
|
*p += 2;
|
2013-04-17 19:10:21 +02:00
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
if( n < 1 || n > 65535 || *p + n > end )
|
2013-04-17 19:10:21 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
|
|
|
|
2013-09-18 17:29:31 +02:00
|
|
|
if( ssl->f_psk != NULL )
|
|
|
|
{
|
|
|
|
if( ( ret != ssl->f_psk( ssl->p_psk, ssl, *p, n ) ) != 0 )
|
|
|
|
ret = POLARSSL_ERR_SSL_UNKNOWN_IDENTITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ret == 0 )
|
|
|
|
{
|
2013-10-28 13:46:11 +01:00
|
|
|
/* Identity is not a big secret since clients send it in the clear,
|
|
|
|
* but treat it carefully anyway, just in case */
|
2013-09-18 17:29:31 +02:00
|
|
|
if( n != ssl->psk_identity_len ||
|
2013-10-28 13:46:11 +01:00
|
|
|
safer_memcmp( ssl->psk_identity, *p, n ) != 0 )
|
2013-09-18 17:29:31 +02:00
|
|
|
{
|
|
|
|
ret = POLARSSL_ERR_SSL_UNKNOWN_IDENTITY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ret == POLARSSL_ERR_SSL_UNKNOWN_IDENTITY )
|
2013-04-17 19:10:21 +02:00
|
|
|
{
|
2013-04-19 14:30:58 +02:00
|
|
|
SSL_DEBUG_BUF( 3, "Unknown PSK identity", *p, n );
|
2013-09-18 17:29:31 +02:00
|
|
|
if( ( ret = ssl_send_alert_message( ssl,
|
|
|
|
SSL_ALERT_LEVEL_FATAL,
|
|
|
|
SSL_ALERT_MSG_UNKNOWN_PSK_IDENTITY ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( POLARSSL_ERR_SSL_UNKNOWN_IDENTITY );
|
2013-04-17 19:10:21 +02:00
|
|
|
}
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
*p += n;
|
2013-04-17 19:10:21 +02:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-10-14 19:54:10 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE__SOME__PSK_ENABLED */
|
2013-04-17 19:10:21 +02:00
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
static int ssl_parse_client_key_exchange( ssl_context *ssl )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
const ssl_ciphersuite_t *ciphersuite_info;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
ciphersuite_info = ssl->transform_negotiate->ciphersuite_info;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
SSL_DEBUG_MSG( 2, ( "=> parse client key exchange" ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-04-17 17:19:09 +02:00
|
|
|
if( ( ret = ssl_read_record( ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_read_record", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ssl->in_msgtype != SSL_MSG_HANDSHAKE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ssl->in_msg[0] != SSL_HS_CLIENT_KEY_EXCHANGE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED)
|
2013-04-17 17:19:09 +02:00
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_RSA )
|
|
|
|
{
|
2013-09-20 11:29:59 +02:00
|
|
|
unsigned char *p = ssl->in_msg + 4;
|
|
|
|
unsigned char *end = ssl->in_msg + ssl->in_msglen;
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
if( ( ret = ssl_parse_client_dh_public( ssl, &p, end ) ) != 0 )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_client_dh_public" ), ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
|
|
|
|
ssl->handshake->pmslen = ssl->handshake->dhm_ctx.len;
|
|
|
|
|
|
|
|
if( ( ret = dhm_calc_secret( &ssl->handshake->dhm_ctx,
|
|
|
|
ssl->handshake->premaster,
|
2013-09-04 14:22:07 +02:00
|
|
|
&ssl->handshake->pmslen,
|
2013-09-17 11:34:11 +02:00
|
|
|
ssl->f_rng, ssl->p_rng ) ) != 0 )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "dhm_calc_secret", ret );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS );
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MPI( 3, "DHM: K ", &ssl->handshake->dhm_ctx.K );
|
2013-04-17 17:19:09 +02:00
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
else
|
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED */
|
2013-08-20 13:53:44 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
|
|
|
|
defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_RSA ||
|
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
2013-10-14 12:00:45 +02:00
|
|
|
size_t n = ssl->in_msg[3];
|
|
|
|
|
|
|
|
if( n < 1 || n > mpi_size( &ssl->handshake->ecdh_ctx.grp.P ) * 2 + 2 ||
|
|
|
|
n + 4 != ssl->in_hslen )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
2013-10-14 12:00:45 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "bad client key exchange message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( ret = ecdh_read_public( &ssl->handshake->ecdh_ctx,
|
|
|
|
ssl->in_msg + 4, n ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ecdh_read_public", ret );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP );
|
2013-04-17 17:19:09 +02:00
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
|
2013-10-14 12:00:45 +02:00
|
|
|
SSL_DEBUG_ECP( 3, "ECDH: Qp ", &ssl->handshake->ecdh_ctx.Qp );
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
if( ( ret = ecdh_calc_secret( &ssl->handshake->ecdh_ctx,
|
|
|
|
&ssl->handshake->pmslen,
|
|
|
|
ssl->handshake->premaster,
|
2013-09-02 14:29:09 +02:00
|
|
|
POLARSSL_MPI_MAX_SIZE,
|
|
|
|
ssl->f_rng, ssl->p_rng ) ) != 0 )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ecdh_calc_secret", ret );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS );
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MPI( 3, "ECDH: z ", &ssl->handshake->ecdh_ctx.z );
|
2013-04-17 17:19:09 +02:00
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
else
|
2013-08-20 13:53:44 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED ||
|
|
|
|
POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED */
|
2013-04-19 14:30:58 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_PSK_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_PSK )
|
2013-04-17 19:10:21 +02:00
|
|
|
{
|
2013-09-20 11:29:59 +02:00
|
|
|
unsigned char *p = ssl->in_msg + 4;
|
|
|
|
unsigned char *end = ssl->in_msg + ssl->in_msglen;
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
if( ( ret = ssl_parse_client_psk_identity( ssl, &p, end ) ) != 0 )
|
2013-04-17 19:10:21 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_client_psk_identity" ), ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
|
2013-10-14 13:09:25 +02:00
|
|
|
if( ( ret = ssl_psk_derive_premaster( ssl,
|
|
|
|
ciphersuite_info->key_exchange ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_psk_derive_premaster", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-04-17 19:10:21 +02:00
|
|
|
}
|
2013-04-17 17:19:09 +02:00
|
|
|
else
|
2013-04-19 14:30:58 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_PSK_ENABLED */
|
2013-10-14 17:39:48 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA_PSK )
|
|
|
|
{
|
|
|
|
unsigned char *p = ssl->in_msg + 4;
|
|
|
|
unsigned char *end = ssl->in_msg + ssl->in_msglen;
|
|
|
|
|
|
|
|
if( ( ret = ssl_parse_client_psk_identity( ssl, &p, end ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_client_psk_identity" ), ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( ret = ssl_parse_encrypted_pms( ssl, p, end, 2 ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_encrypted_pms" ), ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( ret = ssl_psk_derive_premaster( ssl,
|
|
|
|
ciphersuite_info->key_exchange ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_psk_derive_premaster", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED */
|
2013-04-19 14:30:58 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_PSK )
|
|
|
|
{
|
2013-09-20 11:29:59 +02:00
|
|
|
unsigned char *p = ssl->in_msg + 4;
|
|
|
|
unsigned char *end = ssl->in_msg + ssl->in_msglen;
|
2013-04-19 14:30:58 +02:00
|
|
|
|
|
|
|
if( ( ret = ssl_parse_client_psk_identity( ssl, &p, end ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_client_psk_identity" ), ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
if( ( ret = ssl_parse_client_dh_public( ssl, &p, end ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_client_dh_public" ), ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-10-14 13:09:25 +02:00
|
|
|
if( ( ret = ssl_psk_derive_premaster( ssl,
|
|
|
|
ciphersuite_info->key_exchange ) ) != 0 )
|
2013-04-19 14:30:58 +02:00
|
|
|
{
|
2013-10-14 13:09:25 +02:00
|
|
|
SSL_DEBUG_RET( 1, "ssl_psk_derive_premaster", ret );
|
|
|
|
return( ret );
|
2013-04-19 14:30:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED */
|
2013-10-11 16:53:50 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_PSK )
|
|
|
|
{
|
|
|
|
unsigned char *p = ssl->in_msg + 4;
|
|
|
|
unsigned char *end = ssl->in_msg + ssl->in_msglen;
|
2013-04-19 14:30:58 +02:00
|
|
|
|
2013-10-11 16:53:50 +02:00
|
|
|
if( ( ret = ssl_parse_client_psk_identity( ssl, &p, end ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_client_psk_identity" ), ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
|
2013-10-14 12:00:45 +02:00
|
|
|
if( ( ret = ecdh_read_public( &ssl->handshake->ecdh_ctx,
|
|
|
|
p, end - p ) ) != 0 )
|
2013-10-11 16:53:50 +02:00
|
|
|
{
|
2013-10-14 12:00:45 +02:00
|
|
|
SSL_DEBUG_RET( 1, "ecdh_read_public", ret );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP );
|
2013-10-11 16:53:50 +02:00
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
|
2013-10-14 12:00:45 +02:00
|
|
|
SSL_DEBUG_ECP( 3, "ECDH: Qp ", &ssl->handshake->ecdh_ctx.Qp );
|
2013-04-19 14:30:58 +02:00
|
|
|
|
2013-10-14 13:09:25 +02:00
|
|
|
if( ( ret = ssl_psk_derive_premaster( ssl,
|
|
|
|
ciphersuite_info->key_exchange ) ) != 0 )
|
2013-10-11 16:53:50 +02:00
|
|
|
{
|
2013-10-14 13:09:25 +02:00
|
|
|
SSL_DEBUG_RET( 1, "ssl_psk_derive_premaster", ret );
|
2013-10-11 16:53:50 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
}
|
|
|
|
else
|
2013-10-11 16:53:50 +02:00
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED */
|
2013-04-19 14:30:58 +02:00
|
|
|
#if defined(POLARSSL_KEY_EXCHANGE_RSA_ENABLED)
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
2013-10-14 17:39:48 +02:00
|
|
|
if( ( ret = ssl_parse_encrypted_pms( ssl,
|
|
|
|
ssl->in_msg + 4,
|
|
|
|
ssl->in_msg + ssl->in_msglen,
|
|
|
|
0 ) ) != 0 )
|
2013-04-17 17:19:09 +02:00
|
|
|
{
|
2013-10-14 12:00:45 +02:00
|
|
|
SSL_DEBUG_RET( 1, ( "ssl_parse_parse_ecrypted_pms_secret" ), ret );
|
2013-04-17 17:19:09 +02:00
|
|
|
return( ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
else
|
|
|
|
#endif /* POLARSSL_KEY_EXCHANGE_RSA_ENABLED */
|
|
|
|
{
|
2013-08-20 13:53:44 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "should never happen" ) );
|
2013-04-19 14:30:58 +02:00
|
|
|
return( POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2010-03-16 22:09:09 +01:00
|
|
|
if( ( ret = ssl_derive_keys( ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_derive_keys", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
ssl->state++;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= parse client key exchange" ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
#if !defined(POLARSSL_KEY_EXCHANGE_RSA_ENABLED) && \
|
|
|
|
!defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) && \
|
2013-09-17 21:17:44 +02:00
|
|
|
!defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) && \
|
|
|
|
!defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED)
|
2013-04-19 14:30:58 +02:00
|
|
|
static int ssl_parse_certificate_verify( ssl_context *ssl )
|
|
|
|
{
|
|
|
|
int ret = POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE;
|
|
|
|
const ssl_ciphersuite_t *ciphersuite_info = ssl->transform_negotiate->ciphersuite_info;
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> parse certificate verify" ) );
|
|
|
|
|
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_PSK ||
|
2013-11-25 17:27:39 +01:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA_PSK ||
|
2013-10-14 14:02:19 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_PSK ||
|
2013-04-19 14:30:58 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_PSK )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= skip parse certificate verify" ) );
|
|
|
|
ssl->state++;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-09-17 21:17:44 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "should not happen" ) );
|
2013-04-19 14:30:58 +02:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
#else
|
2009-01-03 22:22:43 +01:00
|
|
|
static int ssl_parse_certificate_verify( ssl_context *ssl )
|
|
|
|
{
|
2013-04-18 22:46:23 +02:00
|
|
|
int ret = POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE;
|
2013-08-17 13:01:41 +02:00
|
|
|
size_t sa_len, sig_len;
|
2012-04-18 18:10:25 +02:00
|
|
|
unsigned char hash[48];
|
2013-08-27 13:31:28 +02:00
|
|
|
unsigned char *hash_start = hash;
|
2013-08-17 13:01:41 +02:00
|
|
|
size_t hashlen;
|
2013-08-28 11:57:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2013-08-17 13:01:41 +02:00
|
|
|
pk_type_t pk_alg;
|
2013-08-28 11:57:20 +02:00
|
|
|
#endif
|
2013-08-17 13:01:41 +02:00
|
|
|
md_type_t md_alg;
|
2013-04-17 19:10:21 +02:00
|
|
|
const ssl_ciphersuite_t *ciphersuite_info = ssl->transform_negotiate->ciphersuite_info;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> parse certificate verify" ) );
|
|
|
|
|
2013-04-19 14:30:58 +02:00
|
|
|
if( ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_PSK ||
|
2013-11-25 17:27:39 +01:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_RSA_PSK ||
|
2013-10-14 14:02:19 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_ECDHE_PSK ||
|
2013-04-19 14:30:58 +02:00
|
|
|
ciphersuite_info->key_exchange == POLARSSL_KEY_EXCHANGE_DHE_PSK )
|
2013-04-18 22:46:23 +02:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= skip parse certificate verify" ) );
|
|
|
|
ssl->state++;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ssl->session_negotiate->peer_cert == NULL )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= skip parse certificate verify" ) );
|
|
|
|
ssl->state++;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2012-09-16 21:57:18 +02:00
|
|
|
ssl->handshake->calc_verify( ssl, hash );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ( ret = ssl_read_record( ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_read_record", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
ssl->state++;
|
|
|
|
|
|
|
|
if( ssl->in_msgtype != SSL_MSG_HANDSHAKE )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad certificate verify message" ) );
|
2009-01-03 22:51:57 +01:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if( ssl->in_msg[0] != SSL_HS_CERTIFICATE_VERIFY )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad certificate verify message" ) );
|
2009-01-03 22:51:57 +01:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2013-08-17 13:01:41 +02:00
|
|
|
/*
|
|
|
|
* 0 . 0 handshake type
|
|
|
|
* 1 . 3 handshake length
|
|
|
|
* 4 . 5 sig alg (TLS 1.2 only)
|
|
|
|
* 4+n . 5+n signature length (n = sa_len)
|
|
|
|
* 6+n . 6+n+m signature (m = sig_len)
|
|
|
|
*/
|
|
|
|
|
2013-08-28 11:57:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_SSL3) || defined(POLARSSL_SSL_PROTO_TLS1) || \
|
|
|
|
defined(POLARSSL_SSL_PROTO_TLS1_1)
|
2013-08-17 13:01:41 +02:00
|
|
|
if( ssl->minor_ver != SSL_MINOR_VERSION_3 )
|
|
|
|
{
|
|
|
|
sa_len = 0;
|
|
|
|
|
|
|
|
md_alg = POLARSSL_MD_NONE;
|
|
|
|
hashlen = 36;
|
2013-08-27 13:31:28 +02:00
|
|
|
|
|
|
|
/* For ECDSA, use SHA-1, not MD-5 + SHA-1 */
|
|
|
|
if( pk_can_do( &ssl->session_negotiate->peer_cert->pk,
|
|
|
|
POLARSSL_PK_ECDSA ) )
|
|
|
|
{
|
|
|
|
hash_start += 16;
|
|
|
|
hashlen -= 16;
|
|
|
|
md_alg = POLARSSL_MD_SHA1;
|
|
|
|
}
|
2013-08-17 13:01:41 +02:00
|
|
|
}
|
|
|
|
else
|
2013-08-28 11:57:20 +02:00
|
|
|
#endif
|
2013-08-27 21:19:20 +02:00
|
|
|
#if defined(POLARSSL_SSL_PROTO_TLS1_2)
|
2012-11-23 13:38:07 +01:00
|
|
|
if( ssl->minor_ver == SSL_MINOR_VERSION_3 )
|
|
|
|
{
|
2013-08-17 13:01:41 +02:00
|
|
|
sa_len = 2;
|
|
|
|
|
2012-11-23 13:38:07 +01:00
|
|
|
/*
|
2013-08-22 13:52:48 +02:00
|
|
|
* Hash
|
2012-11-23 13:38:07 +01:00
|
|
|
*/
|
2013-08-17 13:01:41 +02:00
|
|
|
if( ssl->in_msg[4] != ssl->handshake->verify_sig_alg )
|
2012-11-23 13:38:07 +01:00
|
|
|
{
|
2013-08-17 13:01:41 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "peer not adhering to requested sig_alg"
|
|
|
|
" for verify message" ) );
|
2012-11-23 13:38:07 +01:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY );
|
|
|
|
}
|
|
|
|
|
2013-08-22 13:52:48 +02:00
|
|
|
md_alg = ssl_md_alg_from_hash( ssl->handshake->verify_sig_alg );
|
2012-11-23 13:38:07 +01:00
|
|
|
|
2013-08-22 14:55:30 +02:00
|
|
|
/* Info from md_alg will be used instead */
|
|
|
|
hashlen = 0;
|
2013-08-17 13:01:41 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Signature
|
|
|
|
*/
|
2013-08-22 13:52:48 +02:00
|
|
|
if( ( pk_alg = ssl_pk_alg_from_sig( ssl->in_msg[5] ) )
|
|
|
|
== POLARSSL_PK_NONE )
|
2013-08-17 13:01:41 +02:00
|
|
|
{
|
2013-08-22 13:52:48 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "peer not adhering to requested sig_alg"
|
|
|
|
" for verify message" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY );
|
2013-08-17 13:01:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check the certificate's key type matches the signature alg
|
|
|
|
*/
|
|
|
|
if( ! pk_can_do( &ssl->session_negotiate->peer_cert->pk, pk_alg ) )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "sig_alg doesn't match cert key" ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY );
|
|
|
|
}
|
2012-11-23 13:38:07 +01:00
|
|
|
}
|
|
|
|
else
|
2013-08-27 21:19:20 +02:00
|
|
|
#endif /* POLARSSL_SSL_PROTO_TLS1_2 */
|
2013-08-14 15:56:19 +02:00
|
|
|
{
|
2013-08-28 11:57:20 +02:00
|
|
|
SSL_DEBUG_MSG( 1, ( "should never happen" ) );
|
2013-07-11 10:46:21 +02:00
|
|
|
return( POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE );
|
2013-08-14 15:56:19 +02:00
|
|
|
}
|
2013-07-11 10:46:21 +02:00
|
|
|
|
2013-08-17 13:01:41 +02:00
|
|
|
sig_len = ( ssl->in_msg[4 + sa_len] << 8 ) | ssl->in_msg[5 + sa_len];
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-17 13:01:41 +02:00
|
|
|
if( sa_len + sig_len + 6 != ssl->in_hslen )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
SSL_DEBUG_MSG( 1, ( "bad certificate verify message" ) );
|
2009-01-03 22:51:57 +01:00
|
|
|
return( POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2013-08-22 13:52:48 +02:00
|
|
|
if( ( ret = pk_verify( &ssl->session_negotiate->peer_cert->pk,
|
2013-08-27 13:31:28 +02:00
|
|
|
md_alg, hash_start, hashlen,
|
2013-08-22 13:52:48 +02:00
|
|
|
ssl->in_msg + 6 + sa_len, sig_len ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2013-08-17 13:01:41 +02:00
|
|
|
SSL_DEBUG_RET( 1, "pk_verify", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= parse certificate verify" ) );
|
|
|
|
|
2013-04-18 22:46:23 +02:00
|
|
|
return( ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2013-04-19 14:30:58 +02:00
|
|
|
#endif /* !POLARSSL_KEY_EXCHANGE_RSA_ENABLED &&
|
|
|
|
!POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED &&
|
|
|
|
!POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-08-01 11:47:56 +02:00
|
|
|
static int ssl_write_new_session_ticket( ssl_context *ssl )
|
|
|
|
{
|
|
|
|
int ret;
|
2013-08-01 15:08:40 +02:00
|
|
|
size_t tlen;
|
2013-09-23 22:01:39 +02:00
|
|
|
uint32_t lifetime = (uint32_t) ssl->ticket_lifetime;
|
2013-08-01 11:47:56 +02:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "=> write new session ticket" ) );
|
|
|
|
|
|
|
|
ssl->out_msgtype = SSL_MSG_HANDSHAKE;
|
|
|
|
ssl->out_msg[0] = SSL_HS_NEW_SESSION_TICKET;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* struct {
|
|
|
|
* uint32 ticket_lifetime_hint;
|
|
|
|
* opaque ticket<0..2^16-1>;
|
|
|
|
* } NewSessionTicket;
|
|
|
|
*
|
|
|
|
* 4 . 7 ticket_lifetime_hint (0 = unspecified)
|
|
|
|
* 8 . 9 ticket_len (n)
|
|
|
|
* 10 . 9+n ticket content
|
|
|
|
*/
|
2013-09-23 22:01:39 +02:00
|
|
|
|
|
|
|
ssl->out_msg[4] = ( lifetime >> 24 ) & 0xFF;
|
|
|
|
ssl->out_msg[5] = ( lifetime >> 16 ) & 0xFF;
|
|
|
|
ssl->out_msg[6] = ( lifetime >> 8 ) & 0xFF;
|
|
|
|
ssl->out_msg[7] = ( lifetime ) & 0xFF;
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2013-08-03 15:37:58 +02:00
|
|
|
if( ( ret = ssl_write_ticket( ssl, &tlen ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_write_ticket", ret );
|
|
|
|
tlen = 0;
|
|
|
|
}
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2013-08-01 15:08:40 +02:00
|
|
|
ssl->out_msg[8] = (unsigned char)( ( tlen >> 8 ) & 0xFF );
|
|
|
|
ssl->out_msg[9] = (unsigned char)( ( tlen ) & 0xFF );
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2013-08-01 15:08:40 +02:00
|
|
|
ssl->out_msglen = 10 + tlen;
|
2013-08-01 11:47:56 +02:00
|
|
|
|
|
|
|
if( ( ret = ssl_write_record( ssl ) ) != 0 )
|
|
|
|
{
|
|
|
|
SSL_DEBUG_RET( 1, "ssl_write_record", ret );
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2013-08-02 13:24:41 +02:00
|
|
|
/* No need to remember writing a NewSessionTicket any more */
|
|
|
|
ssl->handshake->new_session_ticket = 0;
|
2013-08-01 11:47:56 +02:00
|
|
|
|
|
|
|
SSL_DEBUG_MSG( 2, ( "<= write new session ticket" ) );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2013-08-14 13:48:06 +02:00
|
|
|
#endif /* POLARSSL_SSL_SESSION_TICKETS */
|
2013-08-01 11:47:56 +02:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
/*
|
2013-01-25 14:49:24 +01:00
|
|
|
* SSL handshake -- server side -- single step
|
2009-01-03 22:22:43 +01:00
|
|
|
*/
|
2013-01-25 14:49:24 +01:00
|
|
|
int ssl_handshake_server_step( ssl_context *ssl )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
if( ssl->state == SSL_HANDSHAKE_OVER )
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
SSL_DEBUG_MSG( 2, ( "server state: %d", ssl->state ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
if( ( ret = ssl_flush_output( ssl ) ) != 0 )
|
|
|
|
return( ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
switch( ssl->state )
|
|
|
|
{
|
|
|
|
case SSL_HELLO_REQUEST:
|
|
|
|
ssl->state = SSL_CLIENT_HELLO;
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
/*
|
|
|
|
* <== ClientHello
|
|
|
|
*/
|
|
|
|
case SSL_CLIENT_HELLO:
|
|
|
|
ret = ssl_parse_client_hello( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
/*
|
|
|
|
* ==> ServerHello
|
|
|
|
* Certificate
|
|
|
|
* ( ServerKeyExchange )
|
|
|
|
* ( CertificateRequest )
|
|
|
|
* ServerHelloDone
|
|
|
|
*/
|
|
|
|
case SSL_SERVER_HELLO:
|
|
|
|
ret = ssl_write_server_hello( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_SERVER_CERTIFICATE:
|
|
|
|
ret = ssl_write_certificate( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_SERVER_KEY_EXCHANGE:
|
|
|
|
ret = ssl_write_server_key_exchange( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_CERTIFICATE_REQUEST:
|
|
|
|
ret = ssl_write_certificate_request( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_SERVER_HELLO_DONE:
|
|
|
|
ret = ssl_write_server_hello_done( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
/*
|
|
|
|
* <== ( Certificate/Alert )
|
|
|
|
* ClientKeyExchange
|
|
|
|
* ( CertificateVerify )
|
|
|
|
* ChangeCipherSpec
|
|
|
|
* Finished
|
|
|
|
*/
|
|
|
|
case SSL_CLIENT_CERTIFICATE:
|
|
|
|
ret = ssl_parse_certificate( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_CLIENT_KEY_EXCHANGE:
|
|
|
|
ret = ssl_parse_client_key_exchange( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_CERTIFICATE_VERIFY:
|
|
|
|
ret = ssl_parse_certificate_verify( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_CLIENT_CHANGE_CIPHER_SPEC:
|
|
|
|
ret = ssl_parse_change_cipher_spec( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_CLIENT_FINISHED:
|
|
|
|
ret = ssl_parse_finished( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
/*
|
2013-08-01 11:47:56 +02:00
|
|
|
* ==> ( NewSessionTicket )
|
|
|
|
* ChangeCipherSpec
|
2013-01-25 14:49:24 +01:00
|
|
|
* Finished
|
|
|
|
*/
|
|
|
|
case SSL_SERVER_CHANGE_CIPHER_SPEC:
|
2013-08-14 13:48:06 +02:00
|
|
|
#if defined(POLARSSL_SSL_SESSION_TICKETS)
|
2013-08-02 13:24:41 +02:00
|
|
|
if( ssl->handshake->new_session_ticket != 0 )
|
|
|
|
ret = ssl_write_new_session_ticket( ssl );
|
|
|
|
else
|
2013-08-14 13:48:06 +02:00
|
|
|
#endif
|
2013-08-02 13:24:41 +02:00
|
|
|
ret = ssl_write_change_cipher_spec( ssl );
|
2013-01-25 14:49:24 +01:00
|
|
|
break;
|
2012-09-16 21:57:18 +02:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_SERVER_FINISHED:
|
|
|
|
ret = ssl_write_finished( ssl );
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_FLUSH_BUFFERS:
|
|
|
|
SSL_DEBUG_MSG( 2, ( "handshake: done" ) );
|
|
|
|
ssl->state = SSL_HANDSHAKE_WRAPUP;
|
|
|
|
break;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
case SSL_HANDSHAKE_WRAPUP:
|
|
|
|
ssl_handshake_wrapup( ssl );
|
2009-01-03 22:22:43 +01:00
|
|
|
break;
|
|
|
|
|
2013-01-25 14:49:24 +01:00
|
|
|
default:
|
|
|
|
SSL_DEBUG_MSG( 1, ( "invalid state %d", ssl->state ) );
|
|
|
|
return( POLARSSL_ERR_SSL_BAD_INPUT_DATA );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
#endif
|