Azim Khan | ec02448 | 2017-05-09 17:20:21 +0100 | [diff] [blame] | 1 | #line 2 "suites/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> |
Azim Khan | 0fa3504 | 2018-06-22 11:34:33 +0100 | [diff] [blame] | 28 | typedef UINT8 uint8_t; |
| 29 | typedef INT32 int32_t; |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 30 | typedef UINT32 uint32_t; |
Nicholas Wilson | 733676b | 2015-11-14 13:09:01 +0000 | [diff] [blame] | 31 | #define strncasecmp _strnicmp |
| 32 | #define strcasecmp _stricmp |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 33 | #else |
Manuel Pégourié-Gonnard | 9386664 | 2015-06-22 19:21:23 +0200 | [diff] [blame] | 34 | #include <stdint.h> |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 35 | #endif |
| 36 | |
Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 37 | #include <string.h> |
| 38 | |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 39 | #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) |
| 40 | #include <unistd.h> |
Nicholas Wilson | 2682edf | 2017-12-05 12:08:15 +0000 | [diff] [blame] | 41 | #include <strings.h> |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 42 | #endif |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 43 | |
Azim Khan | d30ca13 | 2017-06-09 04:32:58 +0100 | [diff] [blame] | 44 | /* Type for Hex parameters */ |
Azim Khan | 5fcca46 | 2018-06-29 11:05:32 +0100 | [diff] [blame] | 45 | typedef struct data_tag |
Azim Khan | d30ca13 | 2017-06-09 04:32:58 +0100 | [diff] [blame] | 46 | { |
| 47 | uint8_t * x; |
| 48 | uint32_t len; |
Azim Khan | 5fcca46 | 2018-06-29 11:05:32 +0100 | [diff] [blame] | 49 | } data_t; |
Azim Khan | d30ca13 | 2017-06-09 04:32:58 +0100 | [diff] [blame] | 50 | |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 51 | /*----------------------------------------------------------------------------*/ |
Azim Khan | 62a5d7d | 2018-06-29 10:02:54 +0100 | [diff] [blame] | 52 | /* Status and error constants */ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 53 | |
Azim Khan | 62a5d7d | 2018-06-29 10:02:54 +0100 | [diff] [blame] | 54 | #define DEPENDENCY_SUPPORTED 0 /* Dependency supported by build */ |
| 55 | #define KEY_VALUE_MAPPING_FOUND 0 /* Integer expression found */ |
| 56 | #define DISPATCH_TEST_SUCCESS 0 /* Test dispatch successful */ |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 57 | |
Azim Khan | 62a5d7d | 2018-06-29 10:02:54 +0100 | [diff] [blame] | 58 | #define KEY_VALUE_MAPPING_NOT_FOUND -1 /* Integer expression not found */ |
| 59 | #define DEPENDENCY_NOT_SUPPORTED -2 /* Dependency not supported */ |
| 60 | #define DISPATCH_TEST_FN_NOT_FOUND -3 /* Test function not found */ |
| 61 | #define DISPATCH_INVALID_TEST_DATA -4 /* Invalid test parameter type. |
| 62 | Only int, string, binary data |
| 63 | and integer expressions are |
| 64 | allowed */ |
| 65 | #define DISPATCH_UNSUPPORTED_SUITE -5 /* Test suite not supported by the |
| 66 | build */ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 67 | |
| 68 | |
| 69 | /*----------------------------------------------------------------------------*/ |
| 70 | /* Macros */ |
| 71 | |
Gilles Peskine | 8954d0c | 2018-09-27 13:51:25 +0200 | [diff] [blame] | 72 | /** Evaluate an expression and fail the test case if it is false. |
| 73 | * |
| 74 | * Failing the test means: |
| 75 | * - Mark this test case as failed. |
| 76 | * - Print a message identifying the failure. |
| 77 | * - Jump to the \c exit label. |
| 78 | * |
| 79 | * This macro expands to an instruction, not an expression. |
| 80 | * It may jump to the \c exit label. |
| 81 | * |
| 82 | * \param TEST The expression to evaluate. |
| 83 | */ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 84 | #define TEST_ASSERT( TEST ) \ |
| 85 | do { \ |
| 86 | if( ! (TEST) ) \ |
| 87 | { \ |
SimonB | 31a6c49 | 2016-05-02 21:32:44 +0100 | [diff] [blame] | 88 | test_fail( #TEST, __LINE__, __FILE__ ); \ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 89 | goto exit; \ |
| 90 | } \ |
| 91 | } while( 0 ) |
| 92 | |
Gilles Peskine | b75125c | 2018-09-27 13:52:16 +0200 | [diff] [blame^] | 93 | /** Allocate memory dynamically and fail the test case if this fails. |
| 94 | * |
| 95 | * You must set \p pointer to \c NULL before calling this macro and |
| 96 | * put `mbedtls_free( pointer )` in the test's cleanup code. |
| 97 | * |
| 98 | * If \p size is zero, the resulting \p pointer will be \c NULL. |
| 99 | * This is usually what we want in tests since API functions are |
| 100 | * supposed to accept null pointers when a buffer size is zero. |
| 101 | * |
| 102 | * This macro expands to an instruction, not an expression. |
| 103 | * It may jump to the \c exit label. |
| 104 | * |
| 105 | * \param pointer An lvalue where the address of the allocated buffer |
| 106 | * will be stored. |
| 107 | * This expression may be evaluated multiple times. |
| 108 | * \param size Buffer size to allocate in bytes. |
| 109 | * This expression may be evaluated multiple times. |
| 110 | * |
| 111 | */ |
| 112 | #define ASSERT_ALLOC( pointer, size ) \ |
| 113 | do \ |
| 114 | { \ |
| 115 | TEST_ASSERT( ( pointer ) == NULL ); \ |
| 116 | if( ( size ) != 0 ) \ |
| 117 | { \ |
| 118 | ( pointer ) = mbedtls_calloc( 1, ( size ) ); \ |
| 119 | TEST_ASSERT( ( pointer ) != NULL ); \ |
| 120 | } \ |
| 121 | } \ |
| 122 | while( 0 ) |
| 123 | |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 124 | #define assert(a) if( !( a ) ) \ |
| 125 | { \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 126 | mbedtls_fprintf( stderr, "Assertion Failed at %s:%d - %s\n", \ |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 127 | __FILE__, __LINE__, #a ); \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 128 | mbedtls_exit( 1 ); \ |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 129 | } |
| 130 | |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 131 | /* |
| 132 | * 32-bit integer manipulation macros (big endian) |
| 133 | */ |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 134 | #ifndef GET_UINT32_BE |
| 135 | #define GET_UINT32_BE(n,b,i) \ |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 136 | { \ |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 137 | (n) = ( (uint32_t) (b)[(i) ] << 24 ) \ |
| 138 | | ( (uint32_t) (b)[(i) + 1] << 16 ) \ |
| 139 | | ( (uint32_t) (b)[(i) + 2] << 8 ) \ |
| 140 | | ( (uint32_t) (b)[(i) + 3] ); \ |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 141 | } |
| 142 | #endif |
| 143 | |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 144 | #ifndef PUT_UINT32_BE |
| 145 | #define PUT_UINT32_BE(n,b,i) \ |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 146 | { \ |
| 147 | (b)[(i) ] = (unsigned char) ( (n) >> 24 ); \ |
| 148 | (b)[(i) + 1] = (unsigned char) ( (n) >> 16 ); \ |
| 149 | (b)[(i) + 2] = (unsigned char) ( (n) >> 8 ); \ |
| 150 | (b)[(i) + 3] = (unsigned char) ( (n) ); \ |
| 151 | } |
| 152 | #endif |
| 153 | |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 154 | |
| 155 | /*----------------------------------------------------------------------------*/ |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 156 | /* Global variables */ |
| 157 | |
Andres Amaya Garcia | 3f50f51 | 2017-10-01 16:42:29 +0100 | [diff] [blame] | 158 | |
| 159 | static struct |
| 160 | { |
| 161 | int failed; |
| 162 | const char *test; |
| 163 | const char *filename; |
| 164 | int line_no; |
| 165 | } |
| 166 | test_info; |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 167 | |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 168 | #if defined(MBEDTLS_PLATFORM_C) |
Andrzej Kurek | 1152fa8 | 2018-04-13 05:15:17 -0400 | [diff] [blame] | 169 | mbedtls_platform_context platform_ctx; |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 170 | #endif |
SimonB | 8ca7bc4 | 2016-04-17 23:24:50 +0100 | [diff] [blame] | 171 | |
| 172 | /*----------------------------------------------------------------------------*/ |
Hanno Becker | 47deec4 | 2017-07-24 12:27:09 +0100 | [diff] [blame] | 173 | /* Helper flags for complex dependencies */ |
| 174 | |
| 175 | /* Indicates whether we expect mbedtls_entropy_init |
| 176 | * to initialize some strong entropy source. */ |
| 177 | #if defined(MBEDTLS_TEST_NULL_ENTROPY) || \ |
| 178 | ( !defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES) && \ |
| 179 | ( !defined(MBEDTLS_NO_PLATFORM_ENTROPY) || \ |
| 180 | defined(MBEDTLS_HAVEGE_C) || \ |
| 181 | defined(MBEDTLS_ENTROPY_HARDWARE_ALT) || \ |
| 182 | defined(ENTROPY_NV_SEED) ) ) |
Hanno Becker | d4a872e | 2017-09-07 08:09:33 +0100 | [diff] [blame] | 183 | #define ENTROPY_HAVE_STRONG |
Hanno Becker | 47deec4 | 2017-07-24 12:27:09 +0100 | [diff] [blame] | 184 | #endif |
| 185 | |
| 186 | |
| 187 | /*----------------------------------------------------------------------------*/ |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 188 | /* Helper Functions */ |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 189 | static int platform_setup() |
| 190 | { |
Andrzej Kurek | f13ca95 | 2018-04-18 04:14:31 -0400 | [diff] [blame] | 191 | int ret = 0; |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 192 | #if defined(MBEDTLS_PLATFORM_C) |
Andrzej Kurek | f13ca95 | 2018-04-18 04:14:31 -0400 | [diff] [blame] | 193 | ret = mbedtls_platform_setup( &platform_ctx ); |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 194 | #endif /* MBEDTLS_PLATFORM_C */ |
Andrzej Kurek | f13ca95 | 2018-04-18 04:14:31 -0400 | [diff] [blame] | 195 | return( ret ); |
Andrzej Kurek | 32a675f | 2018-04-13 06:16:04 -0400 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | static void platform_teardown() |
| 199 | { |
| 200 | #if defined(MBEDTLS_PLATFORM_C) |
| 201 | mbedtls_platform_teardown( &platform_ctx ); |
| 202 | #endif /* MBEDTLS_PLATFORM_C */ |
| 203 | } |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 204 | |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 205 | #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) |
| 206 | static int redirect_output( FILE** out_stream, const char* path ) |
| 207 | { |
| 208 | int stdout_fd = dup( fileno( *out_stream ) ); |
| 209 | |
| 210 | if( stdout_fd == -1 ) |
| 211 | { |
| 212 | return -1; |
| 213 | } |
| 214 | |
| 215 | fflush( *out_stream ); |
| 216 | fclose( *out_stream ); |
| 217 | *out_stream = fopen( path, "w" ); |
| 218 | |
| 219 | if( *out_stream == NULL ) |
| 220 | { |
| 221 | return -1; |
| 222 | } |
| 223 | |
| 224 | return stdout_fd; |
| 225 | } |
| 226 | |
| 227 | static int restore_output( FILE** out_stream, int old_fd ) |
| 228 | { |
| 229 | fflush( *out_stream ); |
| 230 | fclose( *out_stream ); |
| 231 | |
| 232 | *out_stream = fdopen( old_fd, "w" ); |
| 233 | if( *out_stream == NULL ) |
| 234 | { |
| 235 | return -1; |
| 236 | } |
| 237 | |
| 238 | return 0; |
| 239 | } |
Simon Butcher | e019296 | 2016-10-12 23:07:30 +0100 | [diff] [blame] | 240 | |
Janos Follath | e709f7c | 2016-10-13 11:26:29 +0100 | [diff] [blame] | 241 | static void close_output( FILE* out_stream ) |
Simon Butcher | e019296 | 2016-10-12 23:07:30 +0100 | [diff] [blame] | 242 | { |
Janos Follath | e709f7c | 2016-10-13 11:26:29 +0100 | [diff] [blame] | 243 | fclose( out_stream ); |
Simon Butcher | e019296 | 2016-10-12 23:07:30 +0100 | [diff] [blame] | 244 | } |
Janos Follath | 8ca53b5 | 2016-10-05 10:57:49 +0100 | [diff] [blame] | 245 | #endif /* __unix__ || __APPLE__ __MACH__ */ |
| 246 | |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 247 | static int unhexify( unsigned char *obuf, const char *ibuf ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 248 | { |
| 249 | unsigned char c, c2; |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 250 | int len = strlen( ibuf ) / 2; |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 251 | assert( strlen( ibuf ) % 2 == 0 ); /* must be even number of bytes */ |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 252 | |
Rich Evans | 4c09114 | 2015-02-02 12:04:10 +0000 | [diff] [blame] | 253 | while( *ibuf != 0 ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 254 | { |
| 255 | c = *ibuf++; |
| 256 | if( c >= '0' && c <= '9' ) |
| 257 | c -= '0'; |
| 258 | else if( c >= 'a' && c <= 'f' ) |
| 259 | c -= 'a' - 10; |
| 260 | else if( c >= 'A' && c <= 'F' ) |
| 261 | c -= 'A' - 10; |
| 262 | else |
| 263 | assert( 0 ); |
| 264 | |
| 265 | c2 = *ibuf++; |
| 266 | if( c2 >= '0' && c2 <= '9' ) |
| 267 | c2 -= '0'; |
| 268 | else if( c2 >= 'a' && c2 <= 'f' ) |
| 269 | c2 -= 'a' - 10; |
| 270 | else if( c2 >= 'A' && c2 <= 'F' ) |
| 271 | c2 -= 'A' - 10; |
| 272 | else |
| 273 | assert( 0 ); |
| 274 | |
| 275 | *obuf++ = ( c << 4 ) | c2; |
| 276 | } |
| 277 | |
| 278 | return len; |
| 279 | } |
| 280 | |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 281 | static void hexify( unsigned char *obuf, const unsigned char *ibuf, int len ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 282 | { |
| 283 | unsigned char l, h; |
| 284 | |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 285 | while( len != 0 ) |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 286 | { |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 287 | h = *ibuf / 16; |
| 288 | l = *ibuf % 16; |
Paul Bakker | 367dae4 | 2009-06-28 21:50:27 +0000 | [diff] [blame] | 289 | |
| 290 | if( h < 10 ) |
| 291 | *obuf++ = '0' + h; |
| 292 | else |
| 293 | *obuf++ = 'a' + h - 10; |
| 294 | |
| 295 | if( l < 10 ) |
| 296 | *obuf++ = '0' + l; |
| 297 | else |
| 298 | *obuf++ = 'a' + l - 10; |
| 299 | |
| 300 | ++ibuf; |
| 301 | len--; |
| 302 | } |
| 303 | } |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 304 | |
| 305 | /** |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 306 | * Allocate and zeroize a buffer. |
| 307 | * |
| 308 | * If the size if zero, a pointer to a zeroized 1-byte buffer is returned. |
| 309 | * |
| 310 | * For convenience, dies if allocation fails. |
| 311 | */ |
| 312 | static unsigned char *zero_alloc( size_t len ) |
| 313 | { |
| 314 | void *p; |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 315 | size_t actual_len = ( len != 0 ) ? len : 1; |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 316 | |
Manuel Pégourié-Gonnard | 7551cb9 | 2015-05-26 16:04:06 +0200 | [diff] [blame] | 317 | p = mbedtls_calloc( 1, actual_len ); |
Paul Bakker | 4d0cfe8 | 2014-07-10 14:37:36 +0200 | [diff] [blame] | 318 | assert( p != NULL ); |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 319 | |
| 320 | memset( p, 0x00, actual_len ); |
| 321 | |
| 322 | return( p ); |
| 323 | } |
| 324 | |
| 325 | /** |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 326 | * Allocate and fill a buffer from hex data. |
| 327 | * |
| 328 | * The buffer is sized exactly as needed. This allows to detect buffer |
| 329 | * overruns (including overreads) when running the test suite under valgrind. |
| 330 | * |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 331 | * If the size if zero, a pointer to a zeroized 1-byte buffer is returned. |
| 332 | * |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 333 | * For convenience, dies if allocation fails. |
| 334 | */ |
| 335 | static unsigned char *unhexify_alloc( const char *ibuf, size_t *olen ) |
| 336 | { |
| 337 | unsigned char *obuf; |
| 338 | |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 339 | *olen = strlen( ibuf ) / 2; |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 340 | |
Manuel Pégourié-Gonnard | 0dc5e0d | 2014-06-13 21:09:26 +0200 | [diff] [blame] | 341 | if( *olen == 0 ) |
| 342 | return( zero_alloc( *olen ) ); |
| 343 | |
Manuel Pégourié-Gonnard | 7551cb9 | 2015-05-26 16:04:06 +0200 | [diff] [blame] | 344 | obuf = mbedtls_calloc( 1, *olen ); |
Paul Bakker | 4d0cfe8 | 2014-07-10 14:37:36 +0200 | [diff] [blame] | 345 | assert( obuf != NULL ); |
Manuel Pégourié-Gonnard | 3d49b9d | 2014-06-06 14:48:09 +0200 | [diff] [blame] | 346 | |
| 347 | (void) unhexify( obuf, ibuf ); |
| 348 | |
| 349 | return( obuf ); |
| 350 | } |
| 351 | |
| 352 | /** |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 353 | * This function just returns data from rand(). |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 354 | * Although predictable and often similar on multiple |
| 355 | * runs, this does not result in identical random on |
| 356 | * each run. So do not use this if the results of a |
| 357 | * test depend on the random data that is generated. |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 358 | * |
| 359 | * rng_state shall be NULL. |
| 360 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 361 | 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] | 362 | { |
Paul Bakker | f96f7b6 | 2014-04-30 16:02:38 +0200 | [diff] [blame] | 363 | #if !defined(__OpenBSD__) |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 364 | size_t i; |
| 365 | |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 366 | if( rng_state != NULL ) |
| 367 | rng_state = NULL; |
| 368 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 369 | for( i = 0; i < len; ++i ) |
| 370 | output[i] = rand(); |
Paul Bakker | f96f7b6 | 2014-04-30 16:02:38 +0200 | [diff] [blame] | 371 | #else |
| 372 | if( rng_state != NULL ) |
| 373 | rng_state = NULL; |
| 374 | |
| 375 | arc4random_buf( output, len ); |
| 376 | #endif /* !OpenBSD */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 377 | |
| 378 | return( 0 ); |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | /** |
| 382 | * This function only returns zeros |
| 383 | * |
| 384 | * rng_state shall be NULL. |
| 385 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 386 | 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] | 387 | { |
| 388 | if( rng_state != NULL ) |
| 389 | rng_state = NULL; |
| 390 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 391 | memset( output, 0, len ); |
| 392 | |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 393 | return( 0 ); |
| 394 | } |
| 395 | |
| 396 | typedef struct |
| 397 | { |
| 398 | unsigned char *buf; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 399 | size_t length; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 400 | } rnd_buf_info; |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 401 | |
| 402 | /** |
| 403 | * This function returns random based on a buffer it receives. |
| 404 | * |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 405 | * 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] | 406 | * |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 407 | * The number of bytes released from the buffer on each call to |
| 408 | * the random function is specified by per_call. (Can be between |
| 409 | * 1 and 4) |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 410 | * |
| 411 | * After the buffer is empty it will return rand(); |
| 412 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 413 | 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] | 414 | { |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 415 | rnd_buf_info *info = (rnd_buf_info *) rng_state; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 416 | size_t use_len; |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 417 | |
| 418 | if( rng_state == NULL ) |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 419 | return( rnd_std_rand( NULL, output, len ) ); |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 420 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 421 | use_len = len; |
| 422 | if( len > info->length ) |
| 423 | use_len = info->length; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 424 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 425 | if( use_len ) |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 426 | { |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 427 | memcpy( output, info->buf, use_len ); |
| 428 | info->buf += use_len; |
| 429 | info->length -= use_len; |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 432 | if( len - use_len > 0 ) |
| 433 | return( rnd_std_rand( NULL, output + use_len, len - use_len ) ); |
| 434 | |
| 435 | return( 0 ); |
Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 436 | } |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 437 | |
| 438 | /** |
| 439 | * Info structure for the pseudo random function |
| 440 | * |
| 441 | * Key should be set at the start to a test-unique value. |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 442 | * Do not forget endianness! |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 443 | * State( v0, v1 ) should be set to zero. |
| 444 | */ |
| 445 | typedef struct |
| 446 | { |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 447 | uint32_t key[16]; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 448 | uint32_t v0, v1; |
| 449 | } rnd_pseudo_info; |
| 450 | |
| 451 | /** |
| 452 | * This function returns random based on a pseudo random function. |
| 453 | * This means the results should be identical on all systems. |
| 454 | * Pseudo random is based on the XTEA encryption algorithm to |
| 455 | * generate pseudorandom. |
| 456 | * |
| 457 | * rng_state shall be a pointer to a rnd_pseudo_info structure. |
| 458 | */ |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 459 | 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] | 460 | { |
| 461 | rnd_pseudo_info *info = (rnd_pseudo_info *) rng_state; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 462 | uint32_t i, *k, sum, delta=0x9E3779B9; |
Manuel Pégourié-Gonnard | 217a29c | 2014-01-03 11:59:09 +0100 | [diff] [blame] | 463 | unsigned char result[4], *out = output; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 464 | |
| 465 | if( rng_state == NULL ) |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 466 | return( rnd_std_rand( NULL, output, len ) ); |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 467 | |
Paul Bakker | b3dcbc1 | 2011-03-13 16:57:25 +0000 | [diff] [blame] | 468 | k = info->key; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 469 | |
| 470 | while( len > 0 ) |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 471 | { |
Paul Bakker | 40dd530 | 2012-05-15 15:02:38 +0000 | [diff] [blame] | 472 | size_t use_len = ( len > 4 ) ? 4 : len; |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 473 | sum = 0; |
| 474 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 475 | for( i = 0; i < 32; i++ ) |
| 476 | { |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 477 | info->v0 += ( ( ( info->v1 << 4 ) ^ ( info->v1 >> 5 ) ) |
| 478 | + info->v1 ) ^ ( sum + k[sum & 3] ); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 479 | sum += delta; |
Rich Evans | 4291445 | 2015-02-02 12:09:25 +0000 | [diff] [blame] | 480 | info->v1 += ( ( ( info->v0 << 4 ) ^ ( info->v0 >> 5 ) ) |
| 481 | + info->v0 ) ^ ( sum + k[( sum>>11 ) & 3] ); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 484 | PUT_UINT32_BE( info->v0, result, 0 ); |
Manuel Pégourié-Gonnard | 217a29c | 2014-01-03 11:59:09 +0100 | [diff] [blame] | 485 | memcpy( out, result, use_len ); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 486 | len -= use_len; |
Manuel Pégourié-Gonnard | 217a29c | 2014-01-03 11:59:09 +0100 | [diff] [blame] | 487 | out += 4; |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 488 | } |
| 489 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 490 | return( 0 ); |
Paul Bakker | 997bbd1 | 2011-03-13 15:45:42 +0000 | [diff] [blame] | 491 | } |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 492 | |
Simon Butcher | d96924d | 2016-05-06 00:22:18 +0100 | [diff] [blame] | 493 | static void test_fail( const char *test, int line_no, const char* filename ) |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 494 | { |
Andres Amaya Garcia | 3f50f51 | 2017-10-01 16:42:29 +0100 | [diff] [blame] | 495 | test_info.failed = 1; |
| 496 | test_info.test = test; |
| 497 | test_info.line_no = line_no; |
| 498 | test_info.filename = filename; |
SimonB | 0269dad | 2016-02-17 23:34:30 +0000 | [diff] [blame] | 499 | } |
Azim Khan | 3499a9e | 2017-05-30 00:06:49 +0100 | [diff] [blame] | 500 | |
Mohammad Azim Khan | d2d0112 | 2018-07-18 17:48:37 +0100 | [diff] [blame] | 501 | int hexcmp( uint8_t * a, uint8_t * b, uint32_t a_len, uint32_t b_len ) |
Azim Khan | 3499a9e | 2017-05-30 00:06:49 +0100 | [diff] [blame] | 502 | { |
| 503 | int ret = 0; |
| 504 | uint32_t i = 0; |
| 505 | |
| 506 | if ( a_len != b_len ) |
Mohammad Azim Khan | d2d0112 | 2018-07-18 17:48:37 +0100 | [diff] [blame] | 507 | return( -1 ); |
Azim Khan | 3499a9e | 2017-05-30 00:06:49 +0100 | [diff] [blame] | 508 | |
| 509 | for( i = 0; i < a_len; i++ ) |
| 510 | { |
| 511 | if ( a[i] != b[i] ) |
| 512 | { |
| 513 | ret = -1; |
| 514 | break; |
| 515 | } |
| 516 | } |
| 517 | return ret; |
| 518 | } |
| 519 | |