2011-12-03 22:45:14 +01:00
|
|
|
/*
|
|
|
|
* Entropy accumulator implementation
|
|
|
|
*
|
2013-06-25 16:25:17 +02:00
|
|
|
* Copyright (C) 2006-2013, Brainspark B.V.
|
2011-12-03 22:45:14 +01:00
|
|
|
*
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "polarssl/config.h"
|
|
|
|
|
|
|
|
#if defined(POLARSSL_ENTROPY_C)
|
|
|
|
|
|
|
|
#include "polarssl/entropy.h"
|
|
|
|
#include "polarssl/entropy_poll.h"
|
|
|
|
|
2011-12-15 20:49:30 +01:00
|
|
|
#if defined(POLARSSL_HAVEGE_C)
|
|
|
|
#include "polarssl/havege.h"
|
|
|
|
#endif
|
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
#define ENTROPY_MAX_LOOP 256 /**< Maximum amount to loop before error */
|
|
|
|
|
|
|
|
void entropy_init( entropy_context *ctx )
|
|
|
|
{
|
|
|
|
memset( ctx, 0, sizeof(entropy_context) );
|
|
|
|
|
2013-09-28 15:23:57 +02:00
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
polarssl_mutex_init( &ctx->mutex );
|
|
|
|
#endif
|
|
|
|
|
2013-08-27 15:06:26 +02:00
|
|
|
#if defined(POLARSSL_ENTROPY_SHA512_ACCUMULATOR)
|
2013-06-30 14:34:05 +02:00
|
|
|
sha512_starts( &ctx->accumulator, 0 );
|
2013-08-27 15:06:26 +02:00
|
|
|
#else
|
|
|
|
sha256_starts( &ctx->accumulator, 0 );
|
|
|
|
#endif
|
2011-12-15 21:11:16 +01:00
|
|
|
#if defined(POLARSSL_HAVEGE_C)
|
|
|
|
havege_init( &ctx->havege_data );
|
|
|
|
#endif
|
2011-12-03 22:45:14 +01:00
|
|
|
|
2011-12-15 21:11:16 +01:00
|
|
|
#if !defined(POLARSSL_NO_DEFAULT_ENTROPY_SOURCES)
|
2011-12-03 22:45:14 +01:00
|
|
|
#if !defined(POLARSSL_NO_PLATFORM_ENTROPY)
|
2011-12-10 18:02:19 +01:00
|
|
|
entropy_add_source( ctx, platform_entropy_poll, NULL,
|
|
|
|
ENTROPY_MIN_PLATFORM );
|
2011-12-03 22:45:14 +01:00
|
|
|
#endif
|
|
|
|
#if defined(POLARSSL_TIMING_C)
|
2011-12-10 18:02:19 +01:00
|
|
|
entropy_add_source( ctx, hardclock_poll, NULL, ENTROPY_MIN_HARDCLOCK );
|
2011-12-03 22:45:14 +01:00
|
|
|
#endif
|
2011-12-15 20:49:30 +01:00
|
|
|
#if defined(POLARSSL_HAVEGE_C)
|
|
|
|
entropy_add_source( ctx, havege_poll, &ctx->havege_data,
|
|
|
|
ENTROPY_MIN_HAVEGE );
|
|
|
|
#endif
|
2011-12-15 21:11:16 +01:00
|
|
|
#endif /* POLARSSL_NO_DEFAULT_ENTROPY_SOURCES */
|
2011-12-03 22:45:14 +01:00
|
|
|
}
|
|
|
|
|
2013-09-28 15:23:03 +02:00
|
|
|
void entropy_free( entropy_context *ctx )
|
|
|
|
{
|
|
|
|
((void) ctx);
|
2013-09-28 15:23:57 +02:00
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
polarssl_mutex_free( &ctx->mutex );
|
|
|
|
#endif
|
2013-09-28 15:23:03 +02:00
|
|
|
}
|
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
int entropy_add_source( entropy_context *ctx,
|
2011-12-10 18:02:19 +01:00
|
|
|
f_source_ptr f_source, void *p_source,
|
|
|
|
size_t threshold )
|
2011-12-03 22:45:14 +01:00
|
|
|
{
|
2014-02-06 15:01:20 +01:00
|
|
|
int index, ret = 0;
|
2011-12-10 18:02:19 +01:00
|
|
|
|
2014-02-06 15:01:20 +01:00
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( ( ret = polarssl_mutex_lock( &ctx->mutex ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
index = ctx->source_count;
|
2011-12-10 18:02:19 +01:00
|
|
|
if( index >= ENTROPY_MAX_SOURCES )
|
2014-02-06 15:01:20 +01:00
|
|
|
{
|
|
|
|
ret = POLARSSL_ERR_ENTROPY_MAX_SOURCES;
|
|
|
|
goto exit;
|
|
|
|
}
|
2011-12-03 22:45:14 +01:00
|
|
|
|
2011-12-10 18:02:19 +01:00
|
|
|
ctx->source[index].f_source = f_source;
|
|
|
|
ctx->source[index].p_source = p_source;
|
|
|
|
ctx->source[index].threshold = threshold;
|
2011-12-03 22:45:14 +01:00
|
|
|
|
|
|
|
ctx->source_count++;
|
|
|
|
|
2014-02-06 15:01:20 +01:00
|
|
|
exit:
|
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( polarssl_mutex_unlock( &ctx->mutex ) != 0 )
|
|
|
|
return( POLARSSL_ERR_THREADING_MUTEX_ERROR );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
2011-12-03 22:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Entropy accumulator update
|
|
|
|
*/
|
2013-06-25 16:25:17 +02:00
|
|
|
static int entropy_update( entropy_context *ctx, unsigned char source_id,
|
|
|
|
const unsigned char *data, size_t len )
|
2011-12-03 22:45:14 +01:00
|
|
|
{
|
|
|
|
unsigned char header[2];
|
|
|
|
unsigned char tmp[ENTROPY_BLOCK_SIZE];
|
|
|
|
size_t use_len = len;
|
|
|
|
const unsigned char *p = data;
|
2013-06-25 16:25:17 +02:00
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
if( use_len > ENTROPY_BLOCK_SIZE )
|
|
|
|
{
|
2013-08-27 15:06:26 +02:00
|
|
|
#if defined(POLARSSL_ENTROPY_SHA512_ACCUMULATOR)
|
2013-06-30 14:34:05 +02:00
|
|
|
sha512( data, len, tmp, 0 );
|
2013-08-27 15:06:26 +02:00
|
|
|
#else
|
|
|
|
sha256( data, len, tmp, 0 );
|
|
|
|
#endif
|
2011-12-03 22:45:14 +01:00
|
|
|
p = tmp;
|
|
|
|
use_len = ENTROPY_BLOCK_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
header[0] = source_id;
|
|
|
|
header[1] = use_len & 0xFF;
|
|
|
|
|
2013-08-27 15:06:26 +02:00
|
|
|
#if defined(POLARSSL_ENTROPY_SHA512_ACCUMULATOR)
|
2013-06-30 14:34:05 +02:00
|
|
|
sha512_update( &ctx->accumulator, header, 2 );
|
|
|
|
sha512_update( &ctx->accumulator, p, use_len );
|
2013-08-27 15:06:26 +02:00
|
|
|
#else
|
|
|
|
sha256_update( &ctx->accumulator, header, 2 );
|
|
|
|
sha256_update( &ctx->accumulator, p, use_len );
|
|
|
|
#endif
|
2013-06-25 16:25:17 +02:00
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int entropy_update_manual( entropy_context *ctx,
|
|
|
|
const unsigned char *data, size_t len )
|
|
|
|
{
|
2014-02-06 15:01:20 +01:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( ( ret = polarssl_mutex_lock( &ctx->mutex ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ret = entropy_update( ctx, ENTROPY_SOURCE_MANUAL, data, len );
|
|
|
|
|
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( polarssl_mutex_unlock( &ctx->mutex ) != 0 )
|
|
|
|
return( POLARSSL_ERR_THREADING_MUTEX_ERROR );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ( ret );
|
2011-12-03 22:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Run through the different sources to add entropy to our accumulator
|
|
|
|
*/
|
2014-02-06 15:01:20 +01:00
|
|
|
static int entropy_gather_internal( entropy_context *ctx )
|
2011-12-03 22:45:14 +01:00
|
|
|
{
|
|
|
|
int ret, i;
|
|
|
|
unsigned char buf[ENTROPY_MAX_GATHER];
|
|
|
|
size_t olen;
|
2014-02-06 15:01:20 +01:00
|
|
|
|
2011-12-15 21:11:16 +01:00
|
|
|
if( ctx->source_count == 0 )
|
|
|
|
return( POLARSSL_ERR_ENTROPY_NO_SOURCES_DEFINED );
|
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
/*
|
|
|
|
* Run through our entropy sources
|
|
|
|
*/
|
|
|
|
for( i = 0; i < ctx->source_count; i++ )
|
|
|
|
{
|
|
|
|
olen = 0;
|
2011-12-10 18:02:19 +01:00
|
|
|
if ( ( ret = ctx->source[i].f_source( ctx->source[i].p_source,
|
2011-12-03 22:45:14 +01:00
|
|
|
buf, ENTROPY_MAX_GATHER, &olen ) ) != 0 )
|
|
|
|
{
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add if we actually gathered something
|
|
|
|
*/
|
|
|
|
if( olen > 0 )
|
2011-12-10 18:02:19 +01:00
|
|
|
{
|
2011-12-03 22:45:14 +01:00
|
|
|
entropy_update( ctx, (unsigned char) i, buf, olen );
|
2011-12-10 18:02:19 +01:00
|
|
|
ctx->source[i].size += olen;
|
|
|
|
}
|
2011-12-03 22:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2014-02-06 15:01:20 +01:00
|
|
|
/*
|
|
|
|
* Thread-safe wrapper for entropy_gather_internal()
|
|
|
|
*/
|
|
|
|
int entropy_gather( entropy_context *ctx )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( ( ret = polarssl_mutex_lock( &ctx->mutex ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ret = entropy_gather_internal( ctx );
|
|
|
|
|
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( polarssl_mutex_unlock( &ctx->mutex ) != 0 )
|
|
|
|
return( POLARSSL_ERR_THREADING_MUTEX_ERROR );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ( ret );
|
|
|
|
}
|
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
int entropy_func( void *data, unsigned char *output, size_t len )
|
|
|
|
{
|
2011-12-10 18:02:19 +01:00
|
|
|
int ret, count = 0, i, reached;
|
2011-12-03 22:45:14 +01:00
|
|
|
entropy_context *ctx = (entropy_context *) data;
|
|
|
|
unsigned char buf[ENTROPY_BLOCK_SIZE];
|
|
|
|
|
|
|
|
if( len > ENTROPY_BLOCK_SIZE )
|
|
|
|
return( POLARSSL_ERR_ENTROPY_SOURCE_FAILED );
|
|
|
|
|
2013-09-28 15:23:57 +02:00
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( ( ret = polarssl_mutex_lock( &ctx->mutex ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
/*
|
|
|
|
* Always gather extra entropy before a call
|
|
|
|
*/
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if( count++ > ENTROPY_MAX_LOOP )
|
2013-09-28 15:23:57 +02:00
|
|
|
{
|
|
|
|
ret = POLARSSL_ERR_ENTROPY_SOURCE_FAILED;
|
|
|
|
goto exit;
|
|
|
|
}
|
2011-12-03 22:45:14 +01:00
|
|
|
|
2014-02-06 15:01:20 +01:00
|
|
|
if( ( ret = entropy_gather_internal( ctx ) ) != 0 )
|
2013-09-28 15:23:57 +02:00
|
|
|
goto exit;
|
2011-12-10 18:02:19 +01:00
|
|
|
|
|
|
|
reached = 0;
|
|
|
|
|
|
|
|
for( i = 0; i < ctx->source_count; i++ )
|
|
|
|
if( ctx->source[i].size >= ctx->source[i].threshold )
|
|
|
|
reached++;
|
2011-12-03 22:45:14 +01:00
|
|
|
}
|
2011-12-10 18:02:19 +01:00
|
|
|
while( reached != ctx->source_count );
|
2011-12-03 22:45:14 +01:00
|
|
|
|
|
|
|
memset( buf, 0, ENTROPY_BLOCK_SIZE );
|
|
|
|
|
2013-08-27 15:06:26 +02:00
|
|
|
#if defined(POLARSSL_ENTROPY_SHA512_ACCUMULATOR)
|
2013-06-30 14:34:05 +02:00
|
|
|
sha512_finish( &ctx->accumulator, buf );
|
|
|
|
|
2011-12-03 22:45:14 +01:00
|
|
|
/*
|
|
|
|
* Perform second SHA-512 on entropy
|
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
sha512( buf, ENTROPY_BLOCK_SIZE, buf, 0 );
|
2011-12-03 22:45:14 +01:00
|
|
|
|
|
|
|
/*
|
2011-12-10 18:02:19 +01:00
|
|
|
* Reset accumulator and counters and recycle existing entropy
|
2011-12-03 22:45:14 +01:00
|
|
|
*/
|
2013-06-30 14:34:05 +02:00
|
|
|
memset( &ctx->accumulator, 0, sizeof( sha512_context ) );
|
|
|
|
sha512_starts( &ctx->accumulator, 0 );
|
|
|
|
sha512_update( &ctx->accumulator, buf, ENTROPY_BLOCK_SIZE );
|
2013-08-27 15:06:26 +02:00
|
|
|
#else /* POLARSSL_ENTROPY_SHA512_ACCUMULATOR */
|
|
|
|
sha256_finish( &ctx->accumulator, buf );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform second SHA-256 on entropy
|
|
|
|
*/
|
|
|
|
sha256( buf, ENTROPY_BLOCK_SIZE, buf, 0 );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reset accumulator and counters and recycle existing entropy
|
|
|
|
*/
|
|
|
|
memset( &ctx->accumulator, 0, sizeof( sha256_context ) );
|
|
|
|
sha256_starts( &ctx->accumulator, 0 );
|
|
|
|
sha256_update( &ctx->accumulator, buf, ENTROPY_BLOCK_SIZE );
|
|
|
|
#endif /* POLARSSL_ENTROPY_SHA512_ACCUMULATOR */
|
2011-12-10 18:02:19 +01:00
|
|
|
|
|
|
|
for( i = 0; i < ctx->source_count; i++ )
|
|
|
|
ctx->source[i].size = 0;
|
2011-12-03 22:45:14 +01:00
|
|
|
|
|
|
|
memcpy( output, buf, len );
|
|
|
|
|
2013-09-28 15:23:57 +02:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
#if defined(POLARSSL_THREADING_C)
|
|
|
|
if( polarssl_mutex_unlock( &ctx->mutex ) != 0 )
|
|
|
|
return( POLARSSL_ERR_THREADING_MUTEX_ERROR );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
2011-12-03 22:45:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|