2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Portable interface to the CPU cycle counter
|
|
|
|
*
|
2015-01-23 10:45:19 +01:00
|
|
|
* Copyright (C) 2006-2014, 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-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST) && defined(MBEDTLS_PLATFORM_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/platform.h"
|
2014-03-27 20:07:08 +01:00
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
2015-04-08 12:49:31 +02:00
|
|
|
#define mbedtls_printf printf
|
2014-03-27 20:07:08 +01:00
|
|
|
#endif
|
|
|
|
|
2015-05-12 19:30:45 +02:00
|
|
|
#if defined(MBEDTLS_TIMING_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/timing.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-05-12 19:30:45 +02:00
|
|
|
#if !defined(MBEDTLS_TIMING_ALT)
|
|
|
|
|
2015-05-29 09:47:57 +02:00
|
|
|
#ifndef asm
|
|
|
|
#define asm __asm
|
|
|
|
#endif
|
|
|
|
|
2013-10-28 18:48:30 +01:00
|
|
|
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
|
|
|
|
struct _hr_time
|
|
|
|
{
|
|
|
|
LARGE_INTEGER start;
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
struct _hr_time
|
|
|
|
{
|
|
|
|
struct timeval start;
|
|
|
|
};
|
|
|
|
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* _WIN32 && !EFIX64 && !EFI32 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2014-06-17 16:39:18 +02:00
|
|
|
( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long tsc;
|
|
|
|
__asm rdtsc
|
|
|
|
__asm mov [tsc], eax
|
|
|
|
return( tsc );
|
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-02-11 12:35:58 +01:00
|
|
|
/* some versions of mingw-64 have 32-bit longs even on x84_64 */
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2015-02-11 12:35:58 +01:00
|
|
|
defined(__GNUC__) && ( defined(__i386__) || ( \
|
|
|
|
( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) )
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2011-10-19 16:27:36 +02:00
|
|
|
unsigned long lo, hi;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
|
2011-10-19 16:27:36 +02:00
|
|
|
return( lo );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
__GNUC__ && __i386__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2014-06-17 16:39:18 +02:00
|
|
|
defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long lo, hi;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
|
2014-06-17 16:39:18 +02:00
|
|
|
return( lo | ( hi << 32 ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
__GNUC__ && ( __amd64__ || __x86_64__ ) */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2014-06-17 16:39:18 +02:00
|
|
|
defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long tbl, tbu0, tbu1;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "mftbu %0" : "=r" (tbu0) );
|
|
|
|
asm volatile( "mftb %0" : "=r" (tbl ) );
|
|
|
|
asm volatile( "mftbu %0" : "=r" (tbu1) );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
while( tbu0 != tbu1 );
|
|
|
|
|
|
|
|
return( tbl );
|
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
__GNUC__ && ( __powerpc__ || __ppc__ ) */
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2012-10-31 10:53:08 +01:00
|
|
|
defined(__GNUC__) && defined(__sparc64__)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2012-10-31 10:53:08 +01:00
|
|
|
#if defined(__OpenBSD__)
|
|
|
|
#warning OpenBSD does not allow access to tick register using software version instead
|
2009-01-03 22:22:43 +01:00
|
|
|
#else
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2012-10-31 10:53:08 +01:00
|
|
|
{
|
|
|
|
unsigned long tick;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
|
2012-10-31 10:53:08 +01:00
|
|
|
return( tick );
|
|
|
|
}
|
2014-05-01 13:03:14 +02:00
|
|
|
#endif /* __OpenBSD__ */
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
__GNUC__ && __sparc64__ */
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2012-10-31 10:53:08 +01:00
|
|
|
defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
|
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long tick;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
|
|
|
|
asm volatile( "mov %%g1, %0" : "=r" (tick) );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( tick );
|
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
__GNUC__ && __sparc__ && !__sparc64__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2012-10-31 10:53:08 +01:00
|
|
|
defined(__GNUC__) && defined(__alpha__)
|
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long cc;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "rpcc %0" : "=r" (cc) );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( cc & 0xFFFFFFFF );
|
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
__GNUC__ && __alpha__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
|
2012-10-31 10:53:08 +01:00
|
|
|
defined(__GNUC__) && defined(__ia64__)
|
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long itc;
|
2014-03-27 21:15:40 +01:00
|
|
|
asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
|
2009-01-03 22:22:43 +01:00
|
|
|
return( itc );
|
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
|
2014-05-01 13:03:14 +02:00
|
|
|
__GNUC__ && __ia64__ */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \
|
2013-10-28 18:48:30 +01:00
|
|
|
!defined(EFIX64) && !defined(EFI32)
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2011-04-24 17:28:55 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2011-04-24 17:28:55 +02:00
|
|
|
{
|
|
|
|
LARGE_INTEGER offset;
|
2013-10-28 18:48:30 +01:00
|
|
|
|
2014-03-27 19:02:07 +01:00
|
|
|
QueryPerformanceCounter( &offset );
|
2011-04-24 17:28:55 +02:00
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( (unsigned long)( offset.QuadPart ) );
|
2011-04-24 17:28:55 +02:00
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
|
2011-04-24 17:28:55 +02:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#if !defined(HAVE_HARDCLOCK)
|
2012-10-31 10:53:08 +01:00
|
|
|
|
2015-04-09 12:14:31 +02:00
|
|
|
#define HAVE_HARDCLOCK
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
static int hardclock_init = 0;
|
|
|
|
static struct timeval tv_init;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_hardclock( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
struct timeval tv_cur;
|
|
|
|
|
|
|
|
if( hardclock_init == 0 )
|
|
|
|
{
|
|
|
|
gettimeofday( &tv_init, NULL );
|
|
|
|
hardclock_init = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gettimeofday( &tv_cur, NULL );
|
|
|
|
return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
|
|
|
|
+ ( tv_cur.tv_usec - tv_init.tv_usec ) );
|
|
|
|
}
|
2015-04-09 12:14:31 +02:00
|
|
|
#endif /* !HAVE_HARDCLOCK */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
volatile int mbedtls_timing_alarmed = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2013-10-28 18:48:30 +01:00
|
|
|
#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_get_timer( struct mbedtls_timing_hr_time *val, int reset )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long delta;
|
|
|
|
LARGE_INTEGER offset, hfreq;
|
|
|
|
struct _hr_time *t = (struct _hr_time *) val;
|
|
|
|
|
|
|
|
QueryPerformanceCounter( &offset );
|
|
|
|
QueryPerformanceFrequency( &hfreq );
|
|
|
|
|
|
|
|
delta = (unsigned long)( ( 1000 *
|
|
|
|
( offset.QuadPart - t->start.QuadPart ) ) /
|
|
|
|
hfreq.QuadPart );
|
|
|
|
|
|
|
|
if( reset )
|
|
|
|
QueryPerformanceCounter( &t->start );
|
|
|
|
|
|
|
|
return( delta );
|
|
|
|
}
|
|
|
|
|
2015-02-11 12:36:31 +01:00
|
|
|
/* It's OK to use a global because alarm() is supposed to be global anyway */
|
|
|
|
static DWORD alarmMs;
|
|
|
|
|
2015-02-11 13:54:35 +01:00
|
|
|
static DWORD WINAPI TimerProc( LPVOID TimerContext )
|
2014-03-27 19:02:07 +01:00
|
|
|
{
|
2015-02-11 12:36:31 +01:00
|
|
|
((void) TimerContext);
|
|
|
|
Sleep( alarmMs );
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_timing_alarmed = 1;
|
2009-01-03 22:22:43 +01:00
|
|
|
return( TRUE );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_set_alarm( int seconds )
|
2014-03-27 19:02:07 +01:00
|
|
|
{
|
2009-01-03 22:22:43 +01:00
|
|
|
DWORD ThreadId;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_timing_alarmed = 0;
|
2015-02-11 12:36:31 +01:00
|
|
|
alarmMs = seconds * 1000;
|
|
|
|
CloseHandle( CreateThread( NULL, 0, TimerProc, NULL, 0, &ThreadId ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
#else /* _WIN32 && !EFIX64 && !EFI32 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned long mbedtls_timing_get_timer( struct mbedtls_timing_hr_time *val, int reset )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
unsigned long delta;
|
|
|
|
struct timeval offset;
|
|
|
|
struct _hr_time *t = (struct _hr_time *) val;
|
|
|
|
|
|
|
|
gettimeofday( &offset, NULL );
|
|
|
|
|
|
|
|
if( reset )
|
|
|
|
{
|
|
|
|
t->start.tv_sec = offset.tv_sec;
|
|
|
|
t->start.tv_usec = offset.tv_usec;
|
2014-07-14 22:32:21 +02:00
|
|
|
return( 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
}
|
|
|
|
|
2014-07-14 22:32:21 +02:00
|
|
|
delta = ( offset.tv_sec - t->start.tv_sec ) * 1000
|
|
|
|
+ ( offset.tv_usec - t->start.tv_usec ) / 1000;
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
return( delta );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sighandler( int signum )
|
2014-03-27 19:02:07 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_timing_alarmed = 1;
|
2009-01-03 22:22:43 +01:00
|
|
|
signal( signum, sighandler );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_set_alarm( int seconds )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_timing_alarmed = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
signal( SIGALRM, sighandler );
|
|
|
|
alarm( seconds );
|
|
|
|
}
|
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
#endif /* _WIN32 && !EFIX64 && !EFI32 */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-05-12 20:17:06 +02:00
|
|
|
/*
|
|
|
|
* Set delays to watch
|
|
|
|
*/
|
|
|
|
void mbedtls_timing_set_delay( void *data, uint32_t int_ms, uint32_t fin_ms )
|
|
|
|
{
|
|
|
|
mbedtls_timing_delay_context *ctx = (mbedtls_timing_delay_context *) data;
|
|
|
|
|
|
|
|
ctx->int_ms = int_ms;
|
|
|
|
ctx->fin_ms = fin_ms;
|
|
|
|
|
|
|
|
if( fin_ms != 0 )
|
|
|
|
(void) mbedtls_timing_get_timer( &ctx->timer, 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get number of delays expired
|
|
|
|
*/
|
|
|
|
int mbedtls_timing_get_delay( void *data )
|
|
|
|
{
|
|
|
|
mbedtls_timing_delay_context *ctx = (mbedtls_timing_delay_context *) data;
|
|
|
|
unsigned long elapsed_ms;
|
|
|
|
|
|
|
|
if( ctx->fin_ms == 0 )
|
|
|
|
return( -1 );
|
|
|
|
|
|
|
|
elapsed_ms = mbedtls_timing_get_timer( &ctx->timer, 0 );
|
|
|
|
|
|
|
|
if( elapsed_ms >= ctx->fin_ms )
|
|
|
|
return( 2 );
|
|
|
|
|
|
|
|
if( elapsed_ms >= ctx->int_ms )
|
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2015-05-12 19:30:45 +02:00
|
|
|
#endif /* !MBEDTLS_TIMING_ALT */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_SELF_TEST)
|
2014-03-27 20:07:08 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
/* To test mbedtls_net_usleep against our functions */
|
2015-05-14 18:58:17 +02:00
|
|
|
#if defined(MBEDTLS_NET_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/net.h"
|
2014-04-02 18:42:01 +02:00
|
|
|
#endif
|
|
|
|
|
2014-05-28 11:44:20 +02:00
|
|
|
/*
|
|
|
|
* Busy-waits for the given number of milliseconds.
|
2015-04-08 12:49:31 +02:00
|
|
|
* Used for testing mbedtls_timing_hardclock.
|
2014-05-28 11:44:20 +02:00
|
|
|
*/
|
|
|
|
static void busy_msleep( unsigned long msec )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
struct mbedtls_timing_hr_time hires;
|
2014-05-28 11:44:20 +02:00
|
|
|
unsigned long i = 0; /* for busy-waiting */
|
|
|
|
volatile unsigned long j; /* to prevent optimisation */
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
(void) mbedtls_timing_get_timer( &hires, 1 );
|
2014-05-28 11:44:20 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
while( mbedtls_timing_get_timer( &hires, 0 ) < msec )
|
2014-05-28 11:44:20 +02:00
|
|
|
i++;
|
|
|
|
|
|
|
|
j = i;
|
|
|
|
(void) j;
|
|
|
|
}
|
|
|
|
|
2015-05-12 20:17:06 +02:00
|
|
|
#define FAIL do \
|
|
|
|
{ \
|
|
|
|
if( verbose != 0 ) \
|
|
|
|
mbedtls_printf( "failed\n" ); \
|
|
|
|
\
|
|
|
|
return( 1 ); \
|
|
|
|
} while( 0 )
|
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
/*
|
|
|
|
* Checkup routine
|
2014-04-09 09:56:16 +02:00
|
|
|
*
|
|
|
|
* Warning: this is work in progress, some tests may not be reliable enough
|
|
|
|
* yet! False positives may happen.
|
2014-03-27 20:07:08 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_timing_self_test( int verbose )
|
2014-03-27 20:07:08 +01:00
|
|
|
{
|
|
|
|
unsigned long cycles, ratio;
|
|
|
|
unsigned long millisecs, secs;
|
|
|
|
int hardfail;
|
2015-04-08 12:49:31 +02:00
|
|
|
struct mbedtls_timing_hr_time hires;
|
2015-05-12 20:17:06 +02:00
|
|
|
uint32_t a, b;
|
|
|
|
mbedtls_timing_delay_context ctx;
|
2014-03-27 20:07:08 +01:00
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( " TIMING tests note: will take some time!\n" );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-05-14 18:22:47 +02:00
|
|
|
mbedtls_printf( " TIMING test #1 (set_alarm / get_timer): " );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
for( secs = 1; secs <= 3; secs++ )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
(void) mbedtls_timing_get_timer( &hires, 1 );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_set_alarm( (int) secs );
|
|
|
|
while( !mbedtls_timing_alarmed )
|
2014-03-27 20:07:08 +01:00
|
|
|
;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
millisecs = mbedtls_timing_get_timer( &hires, 0 );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
if( millisecs < 900 * secs || millisecs > 1100 * secs )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n" );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-05-14 18:22:47 +02:00
|
|
|
mbedtls_printf( " TIMING test #2 (hardclock / get_timer): " );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow one failure for possible counter wrapping.
|
|
|
|
* On a 4Ghz 32-bit machine the cycle counter wraps about once per second;
|
|
|
|
* since the whole test is about 10ms, it shouldn't happen twice in a row.
|
|
|
|
*/
|
|
|
|
hardfail = 0;
|
|
|
|
|
|
|
|
hard_test:
|
|
|
|
if( hardfail > 1 )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a reference ratio cycles/ms */
|
2014-05-28 11:44:20 +02:00
|
|
|
millisecs = 1;
|
2015-04-08 12:49:31 +02:00
|
|
|
cycles = mbedtls_timing_hardclock();
|
2014-05-28 11:44:20 +02:00
|
|
|
busy_msleep( millisecs );
|
2015-04-08 12:49:31 +02:00
|
|
|
cycles = mbedtls_timing_hardclock() - cycles;
|
2014-05-28 11:44:20 +02:00
|
|
|
ratio = cycles / millisecs;
|
2014-03-27 20:07:08 +01:00
|
|
|
|
2014-05-28 11:44:20 +02:00
|
|
|
/* Check that the ratio is mostly constant */
|
2014-03-27 20:07:08 +01:00
|
|
|
for( millisecs = 2; millisecs <= 4; millisecs++ )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
cycles = mbedtls_timing_hardclock();
|
2014-05-28 11:44:20 +02:00
|
|
|
busy_msleep( millisecs );
|
2015-04-08 12:49:31 +02:00
|
|
|
cycles = mbedtls_timing_hardclock() - cycles;
|
2014-03-27 20:07:08 +01:00
|
|
|
|
|
|
|
/* Allow variation up to 20% */
|
|
|
|
if( cycles / millisecs < ratio - ratio / 5 ||
|
|
|
|
cycles / millisecs > ratio + ratio / 5 )
|
|
|
|
{
|
|
|
|
hardfail++;
|
|
|
|
goto hard_test;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n" );
|
2014-03-27 20:07:08 +01:00
|
|
|
|
2015-05-12 20:17:06 +02:00
|
|
|
if( verbose != 0 )
|
2015-05-14 18:22:47 +02:00
|
|
|
mbedtls_printf( " TIMING test #3 (set/get_delay ): " );
|
2015-05-12 20:17:06 +02:00
|
|
|
|
|
|
|
for( a = 100; a <= 200; a += 100 )
|
|
|
|
{
|
|
|
|
for( b = 100; b <= 200; b += 100 )
|
|
|
|
{
|
|
|
|
mbedtls_timing_set_delay( &ctx, a, a + b );
|
|
|
|
|
2015-05-14 18:22:47 +02:00
|
|
|
busy_msleep( a - a / 10 );
|
2015-05-12 20:17:06 +02:00
|
|
|
if( mbedtls_timing_get_delay( &ctx ) != 0 )
|
|
|
|
FAIL;
|
|
|
|
|
2015-05-14 18:22:47 +02:00
|
|
|
busy_msleep( a / 5 );
|
2015-05-12 20:17:06 +02:00
|
|
|
if( mbedtls_timing_get_delay( &ctx ) != 1 )
|
|
|
|
FAIL;
|
|
|
|
|
2015-05-14 18:22:47 +02:00
|
|
|
busy_msleep( b - a / 5 );
|
2015-05-12 20:17:06 +02:00
|
|
|
if( mbedtls_timing_get_delay( &ctx ) != 1 )
|
|
|
|
FAIL;
|
|
|
|
|
2015-05-14 18:22:47 +02:00
|
|
|
busy_msleep( b / 5 );
|
2015-05-12 20:17:06 +02:00
|
|
|
if( mbedtls_timing_get_delay( &ctx ) != 2 )
|
|
|
|
FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mbedtls_timing_set_delay( &ctx, 0, 0 );
|
2015-05-14 18:22:47 +02:00
|
|
|
busy_msleep( 200 );
|
2015-05-12 20:17:06 +02:00
|
|
|
if( mbedtls_timing_get_delay( &ctx ) != -1 )
|
|
|
|
FAIL;
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
|
|
|
mbedtls_printf( "passed\n" );
|
|
|
|
|
2015-05-14 18:58:17 +02:00
|
|
|
#if defined(MBEDTLS_NET_C)
|
2014-04-02 18:42:01 +02:00
|
|
|
if( verbose != 0 )
|
2015-05-14 18:22:47 +02:00
|
|
|
mbedtls_printf( " TIMING test #4 (net_usleep/ get_timer): " );
|
2014-04-02 18:42:01 +02:00
|
|
|
|
|
|
|
for( secs = 1; secs <= 3; secs++ )
|
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
(void) mbedtls_timing_get_timer( &hires, 1 );
|
2014-04-02 18:42:01 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_net_usleep( 500000 * secs );
|
2014-04-02 18:42:01 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
millisecs = mbedtls_timing_get_timer( &hires, 0 );
|
2014-04-02 18:42:01 +02:00
|
|
|
|
|
|
|
if( millisecs < 450 * secs || millisecs > 550 * secs )
|
|
|
|
{
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "failed\n" );
|
2014-04-02 18:42:01 +02:00
|
|
|
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "passed\n" );
|
|
|
|
#endif /* MBEDTLS_NET_C */
|
2014-04-02 18:42:01 +02:00
|
|
|
|
2014-05-28 11:44:20 +02:00
|
|
|
if( verbose != 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_printf( "\n" );
|
2014-05-28 11:44:20 +02:00
|
|
|
|
2014-03-27 20:07:08 +01:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_SELF_TEST */
|
2014-03-27 20:07:08 +01:00
|
|
|
|
2015-05-12 19:30:45 +02:00
|
|
|
#endif /* MBEDTLS_TIMING_C */
|