SimonB | 1594210 | 2016-04-25 21:34:49 +0100 | [diff] [blame] | 1 | #line 1 "helpers.function" |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 2 | /*----------------------------------------------------------------------------*/ |
| 3 | /* Headers */ |
| 4 | |
Simon Butcher | edb7fd9 | 2016-05-17 13:35:51 +0100 | [diff] [blame] | 5 | #include <stdlib.h> |
| 6 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 7 | #if defined(MBEDTLS_PLATFORM_C) |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 8 | #include "mbedtls/platform.h" |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 9 | #else |
Rich Evans | 00ab470 | 2015-02-06 13:43:58 +0000 | [diff] [blame] | 10 | #include <stdio.h> |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 11 | #define mbedtls_fprintf fprintf |
Simon Butcher | 2573136 | 2016-09-30 13:11:29 +0100 | [diff] [blame] | 12 | #define mbedtls_snprintf snprintf |
| 13 | #define mbedtls_calloc calloc |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 14 | #define mbedtls_free free |
| 15 | #define mbedtls_exit exit |
Simon Butcher | b2d5dd1 | 2016-04-27 13:35:37 +0100 | [diff] [blame] | 16 | #define mbedtls_time time |
| 17 | #define mbedtls_time_t time_t |
Janos Follath | 55abc21 | 2016-04-18 18:18:48 +0100 | [diff] [blame] | 18 | #define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS |
| 19 | #define MBEDTLS_EXIT_FAILURE EXIT_FAILURE |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 20 | #endif |
| 21 | |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 22 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
| 23 | #include "mbedtls/memory_buffer_alloc.h" |
| 24 | #endif |
| 25 | |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 26 | #ifdef _MSC_VER |
| 27 | #include <basetsd.h> |
| 28 | typedef UINT32 uint32_t; |
Nicholas Wilson | 733676b | 2015-11-14 13:09:01 +0000 | [diff] [blame] | 29 | #define strncasecmp _strnicmp |
| 30 | #define strcasecmp _stricmp |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 31 | #else |
Manuel Pégourié-Gonnard | 9386664 | 2015-06-22 19:21:23 +0200 | [diff] [blame] | 32 | #include <stdint.h> |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 33 | #endif |
| 34 | |
Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 35 | #include <string.h> |
| 36 | |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 37 | #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) |
| 38 | #include <unistd.h> |
Nicholas Wilson | 2682edf | 2017-12-05 12:08:15 +0000 | [diff] [blame^] | 39 | #include <strings.h> |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 40 | #endif |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 41 | |
| 42 | /*----------------------------------------------------------------------------*/ |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 43 | /* Constants */ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 44 | |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 45 | #define DEPENDENCY_SUPPORTED 0 |
| 46 | #define DEPENDENCY_NOT_SUPPORTED 1 |
| 47 | |
| 48 | #define KEY_VALUE_MAPPING_FOUND 0 |
| 49 | #define KEY_VALUE_MAPPING_NOT_FOUND -1 |
| 50 | |
| 51 | #define DISPATCH_TEST_SUCCESS 0 |
| 52 | #define DISPATCH_TEST_FN_NOT_FOUND 1 |
| 53 | #define DISPATCH_INVALID_TEST_DATA 2 |
| 54 | #define DISPATCH_UNSUPPORTED_SUITE 3 |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 55 | |
| 56 | |
| 57 | /*----------------------------------------------------------------------------*/ |
| 58 | /* Macros */ |
| 59 | |
| 60 | #define TEST_ASSERT( TEST ) \ |
| 61 | do { \ |
| 62 | if( ! (TEST) ) \ |
| 63 | { \ |
SimonB | 31a6c49 | 2016-05-02 21:32:44 +0100 | [diff] [blame] | 64 | test_fail( #TEST, __LINE__, __FILE__ ); \ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 65 | goto exit; \ |
| 66 | } \ |
| 67 | } while( 0 ) |
| 68 | |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 69 | #define assert(a) if( !( a ) ) \ |
| 70 | { \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 71 | mbedtls_fprintf( stderr, "Assertion Failed at %s:%d - %s\n", \ |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 72 | __FILE__, __LINE__, #a ); \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 73 | mbedtls_exit( 1 ); \ |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 76 | /* |
| 77 | * 32-bit integer manipulation macros (big endian) |
| 78 | */ |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 79 | #ifndef GET_UINT32_BE |
| 80 | #define GET_UINT32_BE(n,b,i) \ |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 81 | { \ |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 82 | (n) = ( (uint32_t) (b)[(i) ] << 24 ) \ |
| 83 | | ( (uint32_t) (b)[(i) + 1] << 16 ) \ |
| 84 | | ( (uint32_t) (b)[(i) + 2] << 8 ) \ |
| 85 | | ( (uint32_t) (b)[(i) + 3] ); \ |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 86 | } |
| 87 | #endif |
| 88 | |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 89 | #ifndef PUT_UINT32_BE |
| 90 | #define PUT_UINT32_BE(n,b,i) \ |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 91 | { \ |
| 92 | (b)[(i) ] = (unsigned char) ( (n) >> 24 ); \ |
| 93 | (b)[(i) + 1] = (unsigned char) ( (n) >> 16 ); \ |
| 94 | (b)[(i) + 2] = (unsigned char) ( (n) >> 8 ); \ |
| 95 | (b)[(i) + 3] = (unsigned char) ( (n) ); \ |
| 96 | } |
| 97 | #endif |
| 98 | |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 99 | |
| 100 | /*----------------------------------------------------------------------------*/ |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 101 | /* Global variables */ |
| 102 | |
Andres Amaya Garcia | 3f50f51 | 2017-10-01 16:42:29 +0100 | [diff] [blame] | 103 | |
| 104 | static struct |
| 105 | { |
| 106 | int failed; |
| 107 | const char *test; |
| 108 | const char *filename; |
| 109 | int line_no; |
| 110 | } |
| 111 | test_info; |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 112 | |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 113 | #if defined(MBEDTLS_PLATFORM_C) |
Andrzej Kurek | 1152fa8 | 2018-04-13 05:15:17 -0400 | [diff] [blame] | 114 | mbedtls_platform_context platform_ctx; |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 115 | #endif |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 116 | |
| 117 | /*----------------------------------------------------------------------------*/ |
Hanno Becker | 47deec4 | 2017-07-24 12:27:09 +0100 | [diff] [blame] | 118 | /* Helper flags for complex dependencies */ |
| 119 | |
| 120 | /* Indicates whether we expect mbedtls_entropy_init |
| 121 | * to initialize some strong entropy source. */ |
| 122 | #if defined(MBEDTLS_TEST_NULL_ENTROPY) || \ |
| 123 | ( !defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES) && \ |
| 124 | ( !defined(MBEDTLS_NO_PLATFORM_ENTROPY) || \ |
| 125 | defined(MBEDTLS_HAVEGE_C) || \ |
| 126 | defined(MBEDTLS_ENTROPY_HARDWARE_ALT) || \ |
| 127 | defined(ENTROPY_NV_SEED) ) ) |
Hanno Becker | d4a872e | 2017-09-07 08:09:33 +0100 | [diff] [blame] | 128 | #define ENTROPY_HAVE_STRONG |
Hanno Becker | 47deec4 | 2017-07-24 12:27:09 +0100 | [diff] [blame] | 129 | #endif |
| 130 | |
| 131 | |
| 132 | /*----------------------------------------------------------------------------*/ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 133 | /* Helper Functions */ |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 134 | static int platform_setup() |
| 135 | { |
Andrzej Kurek | f13ca95 | 2018-04-18 04:14:31 -0400 | [diff] [blame] | 136 | int ret = 0; |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 137 | #if defined(MBEDTLS_PLATFORM_C) |
Andrzej Kurek | f13ca95 | 2018-04-18 04:14:31 -0400 | [diff] [blame] | 138 | ret = mbedtls_platform_setup( &platform_ctx ); |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 139 | #endif /* MBEDTLS_PLATFORM_C */ |
Andrzej Kurek | f13ca95 | 2018-04-18 04:14:31 -0400 | [diff] [blame] | 140 | return( ret ); |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | static void platform_teardown() |
| 144 | { |
| 145 | #if defined(MBEDTLS_PLATFORM_C) |
| 146 | mbedtls_platform_teardown( &platform_ctx ); |
| 147 | #endif /* MBEDTLS_PLATFORM_C */ |
| 148 | } |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 149 | |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 150 | #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) |
| 151 | static int redirect_output( FILE** out_stream, const char* path ) |
| 152 | { |
| 153 | int stdout_fd = dup( fileno( *out_stream ) ); |
| 154 | |
| 155 | if( stdout_fd == -1 ) |
| 156 | { |
| 157 | return -1; |
| 158 | } |
| 159 | |
| 160 | fflush( *out_stream ); |
| 161 | fclose( *out_stream ); |
| 162 | *out_stream = fopen( path, "w" ); |
| 163 | |
| 164 | if( *out_stream == NULL ) |
| 165 | { |
| 166 | return -1; |
| 167 | } |
| 168 | |
| 169 | return stdout_fd; |
| 170 | } |
| 171 | |
| 172 | static int restore_output( FILE** out_stream, int old_fd ) |
| 173 | { |
| 174 | fflush( *out_stream ); |
| 175 | fclose( *out_stream ); |
| 176 | |
| 177 | *out_stream = fdopen( old_fd, "w" ); |
| 178 | if( *out_stream == NULL ) |
| 179 | { |
| 180 | return -1; |
| 181 | } |
| 182 | |
| 183 | return 0; |
| 184 | } |
Simon Butcher | e019296 | 2016-10-12 23:07:30 +0100 | [diff] [blame] | 185 | |
Janos Follath | e709f7c | 2016-10-13 11:26:29 +0100 | [diff] [blame] | 186 | static void close_output( FILE* out_stream ) |
Simon Butcher | e019296 | 2016-10-12 23:07:30 +0100 | [diff] [blame] | 187 | { |
Janos Follath | e709f7c | 2016-10-13 11:26:29 +0100 | [diff] [blame] | 188 | fclose( out_stream ); |
Simon Butcher | e019296 | 2016-10-12 23:07:30 +0100 | [diff] [blame] | 189 | } |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 190 | #endif /* __unix__ || __APPLE__ __MACH__ */ |
| 191 | |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 192 | static int unhexify( unsigned char *obuf, const char *ibuf ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 193 | { |
| 194 | unsigned char c, c2; |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 195 | int len = strlen( ibuf ) / 2; |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 196 | assert( strlen( ibuf ) % 2 == 0 ); /* must be even number of bytes */ |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 197 | |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 198 | while( *ibuf != 0 ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 199 | { |
| 200 | c = *ibuf++; |
| 201 | if( c >= '0' && c <= '9' ) |
| 202 | c -= '0'; |
| 203 | else if( c >= 'a' && c <= 'f' ) |
| 204 | c -= 'a' - 10; |
| 205 | else if( c >= 'A' && c <= 'F' ) |
| 206 | c -= 'A' - 10; |
| 207 | else |
| 208 | assert( 0 ); |
| 209 | |
| 210 | c2 = *ibuf++; |
| 211 | if( c2 >= '0' && c2 <= '9' ) |
| 212 | c2 -= '0'; |
| 213 | else if( c2 >= 'a' && c2 <= 'f' ) |
| 214 | c2 -= 'a' - 10; |
| 215 | else if( c2 >= 'A' && c2 <= 'F' ) |
| 216 | c2 -= 'A' - 10; |
| 217 | else |
| 218 | assert( 0 ); |
| 219 | |
| 220 | *obuf++ = ( c << 4 ) | c2; |
| 221 | } |
| 222 | |
| 223 | return len; |
| 224 | } |
| 225 | |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 226 | static void hexify( unsigned char *obuf, const unsigned char *ibuf, int len ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 227 | { |
| 228 | unsigned char l, h; |
| 229 | |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 230 | while( len != 0 ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 231 | { |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 232 | h = *ibuf / 16; |
| 233 | l = *ibuf % 16; |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 234 | |
| 235 | if( h < 10 ) |
| 236 | *obuf++ = '0' + h; |
| 237 | else |
| 238 | *obuf++ = 'a' + h - 10; |
| 239 | |
| 240 | if( l < 10 ) |
| 241 | *obuf++ = '0' + l; |
| 242 | else |
| 243 | *obuf++ = 'a' + l - 10; |
| 244 | |
| 245 | ++ibuf; |
| 246 | len--; |
| 247 | } |
| 248 | } |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 249 | |
| 250 | /** |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 251 | * Allocate and zeroize a buffer. |
| 252 | * |
| 253 | * If the size if zero, a pointer to a zeroized 1-byte buffer is returned. |
| 254 | * |
| 255 | * For convenience, dies if allocation fails. |
| 256 | */ |
| 257 | static unsigned char *zero_alloc( size_t len ) |
| 258 | { |
| 259 | void *p; |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 260 | size_t actual_len = ( len != 0 ) ? len : 1; |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 261 | |
Manuel Pégourié-Gonnard | 7551cb9 | 2015-05-26 16:04:06 +0200 | [diff] [blame] | 262 | p = mbedtls_calloc( 1, actual_len ); |
Paul Bakker | 4d0cfe8 | 2014-07-10 14:37:36 +0200 | [diff] [blame] | 263 | assert( p != NULL ); |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 264 | |
| 265 | memset( p, 0x00, actual_len ); |
| 266 | |
| 267 | return( p ); |
| 268 | } |
| 269 | |
| 270 | /** |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 271 | * Allocate and fill a buffer from hex data. |
| 272 | * |
| 273 | * The buffer is sized exactly as needed. This allows to detect buffer |
| 274 | * overruns (including overreads) when running the test suite under valgrind. |
| 275 | * |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 276 | * If the size if zero, a pointer to a zeroized 1-byte buffer is returned. |
| 277 | * |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 278 | * For convenience, dies if allocation fails. |
| 279 | */ |
| 280 | static unsigned char *unhexify_alloc( const char *ibuf, size_t *olen ) |
| 281 | { |
| 282 | unsigned char *obuf; |
| 283 | |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 284 | *olen = strlen( ibuf ) / 2; |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 285 | |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 286 | if( *olen == 0 ) |
| 287 | return( zero_alloc( *olen ) ); |
| 288 | |
Manuel Pégourié-Gonnard | 7551cb9 | 2015-05-26 16:04:06 +0200 | [diff] [blame] | 289 | obuf = mbedtls_calloc( 1, *olen ); |
Paul Bakker | 4d0cfe8 | 2014-07-10 14:37:36 +0200 | [diff] [blame] | 290 | assert( obuf != NULL ); |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 291 | |
| 292 | (void) unhexify( obuf, ibuf ); |
| 293 | |
| 294 | return( obuf ); |
| 295 | } |
| 296 | |
| 297 | /** |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 298 | * This function just returns data from rand(). |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 299 | * Although predictable and often similar on multiple |
| 300 | * runs, this does not result in identical random on |
| 301 | * each run. So do not use this if the results of a |
| 302 | * test depend on the random data that is generated. |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 303 | * |
| 304 | * rng_state shall be NULL. |
| 305 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 306 | static int rnd_std_rand( void *rng_state, unsigned char *output, size_t len ) |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 307 | { |
Paul Bakker | f96f7b6 | 2014-04-30 16:02:38 +0200 | [diff] [blame] | 308 | #if !defined(__OpenBSD__) |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 309 | size_t i; |
| 310 | |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 311 | if( rng_state != NULL ) |
| 312 | rng_state = NULL; |
| 313 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 314 | for( i = 0; i < len; ++i ) |
| 315 | output[i] = rand(); |
Paul Bakker | f96f7b6 | 2014-04-30 16:02:38 +0200 | [diff] [blame] | 316 | #else |
| 317 | if( rng_state != NULL ) |
| 318 | rng_state = NULL; |
| 319 | |
| 320 | arc4random_buf( output, len ); |
| 321 | #endif /* !OpenBSD */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 322 | |
| 323 | return( 0 ); |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | /** |
| 327 | * This function only returns zeros |
| 328 | * |
| 329 | * rng_state shall be NULL. |
| 330 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 331 | static int rnd_zero_rand( void *rng_state, unsigned char *output, size_t len ) |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 332 | { |
| 333 | if( rng_state != NULL ) |
| 334 | rng_state = NULL; |
| 335 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 336 | memset( output, 0, len ); |
| 337 | |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 338 | return( 0 ); |
| 339 | } |
| 340 | |
| 341 | typedef struct |
| 342 | { |
| 343 | unsigned char *buf; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 344 | size_t length; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 345 | } rnd_buf_info; |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 346 | |
| 347 | /** |
| 348 | * This function returns random based on a buffer it receives. |
| 349 | * |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 350 | * rng_state shall be a pointer to a rnd_buf_info structure. |
Manuel Pégourié-Gonnard | e670f90 | 2015-10-30 09:23:19 +0100 | [diff] [blame] | 351 | * |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 352 | * The number of bytes released from the buffer on each call to |
| 353 | * the random function is specified by per_call. (Can be between |
| 354 | * 1 and 4) |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 355 | * |
| 356 | * After the buffer is empty it will return rand(); |
| 357 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 358 | static int rnd_buffer_rand( void *rng_state, unsigned char *output, size_t len ) |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 359 | { |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 360 | rnd_buf_info *info = (rnd_buf_info *) rng_state; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 361 | size_t use_len; |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 362 | |
| 363 | if( rng_state == NULL ) |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 364 | return( rnd_std_rand( NULL, output, len ) ); |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 365 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 366 | use_len = len; |
| 367 | if( len > info->length ) |
| 368 | use_len = info->length; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 369 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 370 | if( use_len ) |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 371 | { |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 372 | memcpy( output, info->buf, use_len ); |
| 373 | info->buf += use_len; |
| 374 | info->length -= use_len; |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 377 | if( len - use_len > 0 ) |
| 378 | return( rnd_std_rand( NULL, output + use_len, len - use_len ) ); |
| 379 | |
| 380 | return( 0 ); |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 381 | } |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 382 | |
| 383 | /** |
| 384 | * Info structure for the pseudo random function |
| 385 | * |
| 386 | * Key should be set at the start to a test-unique value. |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 387 | * Do not forget endianness! |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 388 | * State( v0, v1 ) should be set to zero. |
| 389 | */ |
| 390 | typedef struct |
| 391 | { |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 392 | uint32_t key[16]; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 393 | uint32_t v0, v1; |
| 394 | } rnd_pseudo_info; |
| 395 | |
| 396 | /** |
| 397 | * This function returns random based on a pseudo random function. |
| 398 | * This means the results should be identical on all systems. |
| 399 | * Pseudo random is based on the XTEA encryption algorithm to |
| 400 | * generate pseudorandom. |
| 401 | * |
| 402 | * rng_state shall be a pointer to a rnd_pseudo_info structure. |
| 403 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 404 | static int rnd_pseudo_rand( void *rng_state, unsigned char *output, size_t len ) |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 405 | { |
| 406 | rnd_pseudo_info *info = (rnd_pseudo_info *) rng_state; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 407 | uint32_t i, *k, sum, delta=0x9E3779B9; |
Manuel Pégourié-Gonnard | 217a29c | 2014-01-03 11:59:09 +0100 | [diff] [blame] | 408 | unsigned char result[4], *out = output; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 409 | |
| 410 | if( rng_state == NULL ) |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 411 | return( rnd_std_rand( NULL, output, len ) ); |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 412 | |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 413 | k = info->key; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 414 | |
| 415 | while( len > 0 ) |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 416 | { |
Paul Bakker | 40dd530 | 2012-05-15 15:02:38 +0000 | [diff] [blame] | 417 | size_t use_len = ( len > 4 ) ? 4 : len; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 418 | sum = 0; |
| 419 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 420 | for( i = 0; i < 32; i++ ) |
| 421 | { |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 422 | info->v0 += ( ( ( info->v1 << 4 ) ^ ( info->v1 >> 5 ) ) |
| 423 | + info->v1 ) ^ ( sum + k[sum & 3] ); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 424 | sum += delta; |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 425 | info->v1 += ( ( ( info->v0 << 4 ) ^ ( info->v0 >> 5 ) ) |
| 426 | + info->v0 ) ^ ( sum + k[( sum>>11 ) & 3] ); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 429 | PUT_UINT32_BE( info->v0, result, 0 ); |
Manuel Pégourié-Gonnard | 217a29c | 2014-01-03 11:59:09 +0100 | [diff] [blame] | 430 | memcpy( out, result, use_len ); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 431 | len -= use_len; |
Manuel Pégourié-Gonnard | 217a29c | 2014-01-03 11:59:09 +0100 | [diff] [blame] | 432 | out += 4; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 435 | return( 0 ); |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 436 | } |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 437 | |
Simon Butcher | d96924d | 2016-05-06 00:22:18 +0100 | [diff] [blame] | 438 | static void test_fail( const char *test, int line_no, const char* filename ) |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 439 | { |
Andres Amaya Garcia | 3f50f51 | 2017-10-01 16:42:29 +0100 | [diff] [blame] | 440 | test_info.failed = 1; |
| 441 | test_info.test = test; |
| 442 | test_info.line_no = line_no; |
| 443 | test_info.filename = filename; |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 444 | } |