2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Self-test demonstration program
|
|
|
|
*
|
2015-01-23 10:45:19 +01:00
|
|
|
* Copyright (C) 2006-2013, ARM Limited, All Rights Reserved
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-03-06 14:17:10 +01:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2010-07-18 22:36:00 +02: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.
|
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/entropy.h"
|
|
|
|
#include "mbedtls/hmac_drbg.h"
|
|
|
|
#include "mbedtls/ctr_drbg.h"
|
|
|
|
#include "mbedtls/dhm.h"
|
|
|
|
#include "mbedtls/gcm.h"
|
|
|
|
#include "mbedtls/ccm.h"
|
|
|
|
#include "mbedtls/md2.h"
|
|
|
|
#include "mbedtls/md4.h"
|
|
|
|
#include "mbedtls/md5.h"
|
|
|
|
#include "mbedtls/ripemd160.h"
|
|
|
|
#include "mbedtls/sha1.h"
|
|
|
|
#include "mbedtls/sha256.h"
|
|
|
|
#include "mbedtls/sha512.h"
|
|
|
|
#include "mbedtls/arc4.h"
|
|
|
|
#include "mbedtls/des.h"
|
|
|
|
#include "mbedtls/aes.h"
|
|
|
|
#include "mbedtls/camellia.h"
|
|
|
|
#include "mbedtls/base64.h"
|
|
|
|
#include "mbedtls/bignum.h"
|
|
|
|
#include "mbedtls/rsa.h"
|
|
|
|
#include "mbedtls/x509.h"
|
|
|
|
#include "mbedtls/xtea.h"
|
|
|
|
#include "mbedtls/pkcs5.h"
|
|
|
|
#include "mbedtls/ecp.h"
|
|
|
|
#include "mbedtls/timing.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2015-02-11 15:06:19 +01:00
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_printf printf
|
2015-06-22 10:48:01 +02:00
|
|
|
#define mbedtls_snprintf snprintf
|
2015-02-11 15:06:19 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/memory_buffer_alloc.h"
|
2013-07-03 13:37:05 +02:00
|
|
|
#endif
|
|
|
|
|
2015-06-22 10:48:01 +02:00
|
|
|
static int test_snprintf( size_t n, const char ref_buf[10], int ref_ret )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
char buf[10] = "xxxxxxxxx";
|
2015-06-26 11:24:32 +02:00
|
|
|
const char ref[10] = "xxxxxxxxx";
|
2015-06-22 10:48:01 +02:00
|
|
|
|
|
|
|
ret = mbedtls_snprintf( buf, n, "%s", "123" );
|
|
|
|
if( ret < 0 || (size_t) ret >= n )
|
|
|
|
ret = -1;
|
|
|
|
|
2015-06-26 11:24:32 +02:00
|
|
|
if( strncmp( ref_buf, buf, sizeof( buf ) ) != 0 ||
|
|
|
|
ref_ret != ret ||
|
|
|
|
memcmp( buf + n, ref + n, sizeof( buf ) - n ) != 0 )
|
2015-06-22 10:48:01 +02:00
|
|
|
{
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int run_test_snprintf( void )
|
|
|
|
{
|
|
|
|
return( test_snprintf( 0, "xxxxxxxxx", -1 ) != 0 ||
|
2015-06-26 11:24:32 +02:00
|
|
|
test_snprintf( 1, "", -1 ) != 0 ||
|
|
|
|
test_snprintf( 2, "1", -1 ) != 0 ||
|
|
|
|
test_snprintf( 3, "12", -1 ) != 0 ||
|
|
|
|
test_snprintf( 4, "123", 3 ) != 0 ||
|
|
|
|
test_snprintf( 5, "123", 3 ) != 0 );
|
2015-06-22 10:48:01 +02:00
|
|
|
}
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
{
|
2011-05-25 13:13:47 +02:00
|
|
|
int ret = 0, v;
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
|
2013-07-03 13:37:05 +02:00
|
|
|
unsigned char buf[1000000];
|
|
|
|
#endif
|
2015-05-29 11:26:37 +02:00
|
|
|
void *pointer;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The C standard doesn't guarantee that all-bits-0 is the representation
|
|
|
|
* of a NULL pointer. We do however use that in our code for initializing
|
|
|
|
* structures, which should work on every modern platform. Let's be sure.
|
|
|
|
*/
|
|
|
|
memset( &pointer, 0, sizeof( void * ) );
|
|
|
|
if( pointer != NULL )
|
|
|
|
{
|
|
|
|
mbedtls_printf( "all-bits-zero is not a NULL pointer\n" );
|
|
|
|
return( 1 );
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-06-22 10:48:01 +02:00
|
|
|
/*
|
|
|
|
* Make sure we have a snprintf that correctly zero-terminates
|
|
|
|
*/
|
|
|
|
if( run_test_snprintf() != 0 )
|
|
|
|
{
|
|
|
|
mbedtls_printf( "the snprintf implementation is broken\n" );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
if( argc == 2 && strcmp( argv[1], "-quiet" ) == 0 )
|
|
|
|
v = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
v = 1;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2011-05-25 13:13:47 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
|
|
|
|
mbedtls_memory_buffer_alloc_init( buf, sizeof(buf) );
|
2013-07-03 13:37:05 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MD2_C)
|
|
|
|
if( ( ret = mbedtls_md2_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MD4_C)
|
|
|
|
if( ( ret = mbedtls_md4_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MD5_C)
|
|
|
|
if( ( ret = mbedtls_md5_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RIPEMD160_C)
|
|
|
|
if( ( ret = mbedtls_ripemd160_self_test( v ) ) != 0 )
|
2014-01-17 14:44:38 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SHA1_C)
|
|
|
|
if( ( ret = mbedtls_sha1_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SHA256_C)
|
|
|
|
if( ( ret = mbedtls_sha256_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SHA512_C)
|
|
|
|
if( ( ret = mbedtls_sha512_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ARC4_C)
|
|
|
|
if( ( ret = mbedtls_arc4_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_DES_C)
|
|
|
|
if( ( ret = mbedtls_des_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_AES_C)
|
|
|
|
if( ( ret = mbedtls_aes_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_GCM_C) && defined(MBEDTLS_AES_C)
|
|
|
|
if( ( ret = mbedtls_gcm_self_test( v ) ) != 0 )
|
2012-03-20 14:50:09 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_CCM_C) && defined(MBEDTLS_AES_C)
|
|
|
|
if( ( ret = mbedtls_ccm_self_test( v ) ) != 0 )
|
2014-05-02 15:17:29 +02:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BASE64_C)
|
|
|
|
if( ( ret = mbedtls_base64_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C)
|
|
|
|
if( ( ret = mbedtls_mpi_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_RSA_C)
|
|
|
|
if( ( ret = mbedtls_rsa_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_X509_USE_C)
|
|
|
|
if( ( ret = mbedtls_x509_self_test( v ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_XTEA_C)
|
|
|
|
if( ( ret = mbedtls_xtea_self_test( v ) ) != 0 )
|
2009-01-04 19:15:48 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_CAMELLIA_C)
|
|
|
|
if( ( ret = mbedtls_camellia_self_test( v ) ) != 0 )
|
2009-01-11 00:31:23 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_CTR_DRBG_C)
|
|
|
|
if( ( ret = mbedtls_ctr_drbg_self_test( v ) ) != 0 )
|
2011-11-27 15:46:59 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_HMAC_DRBG_C)
|
|
|
|
if( ( ret = mbedtls_hmac_drbg_self_test( v ) ) != 0 )
|
2014-01-31 11:12:09 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECP_C)
|
|
|
|
if( ( ret = mbedtls_ecp_self_test( v ) ) != 0 )
|
2012-11-13 20:57:00 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_DHM_C)
|
|
|
|
if( ( ret = mbedtls_dhm_self_test( v ) ) != 0 )
|
2013-09-15 17:43:54 +02:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ENTROPY_C)
|
|
|
|
if( ( ret = mbedtls_entropy_self_test( v ) ) != 0 )
|
2014-05-30 10:34:15 +02:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PKCS5_C)
|
|
|
|
if( ( ret = mbedtls_pkcs5_self_test( v ) ) != 0 )
|
2014-03-27 20:12:44 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
2015-03-11 12:20:43 +01:00
|
|
|
|
|
|
|
/* Slow tests last */
|
2014-03-27 20:12:44 +01:00
|
|
|
|
2014-06-13 18:04:42 +02:00
|
|
|
/* Not stable enough on Windows and FreeBSD yet */
|
2015-04-08 12:49:31 +02:00
|
|
|
#if __linux__ && defined(MBEDTLS_TIMING_C)
|
|
|
|
if( ( ret = mbedtls_timing_self_test( v ) ) != 0 )
|
2014-03-27 20:07:08 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
|
|
|
|
2011-05-25 13:13:47 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " MBEDTLS_SELF_TEST not defined.\n" );
|
2011-05-25 13:13:47 +02:00
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
if( v != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
|
|
|
|
mbedtls_memory_buffer_alloc_status();
|
2013-07-03 13:37:05 +02:00
|
|
|
#endif
|
2014-11-27 11:33:55 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
|
|
|
|
mbedtls_memory_buffer_alloc_free();
|
2014-11-27 11:33:55 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_memory_buffer_alloc_self_test( v ) ) != 0 )
|
2014-11-27 11:33:55 +01:00
|
|
|
return( ret );
|
|
|
|
#endif
|
2013-07-03 13:37:05 +02:00
|
|
|
|
2014-11-27 11:33:55 +01:00
|
|
|
if( v != 0 )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " [ All tests passed ]\n\n" );
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " Press Enter to exit this program.\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|