提交 3304d578 编写于 作者: R Rich Salz

Convert more tests to framework

randtest, cipher_overhead_test, bioprintest, constant_time_test
Move test_bioprint to 04 group
Reviewed-by: NRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3228)
上级 b66411f6
...@@ -11,8 +11,11 @@ ...@@ -11,8 +11,11 @@
#include <string.h> #include <string.h>
#include <openssl/bio.h> #include <openssl/bio.h>
#include "internal/numbers.h" #include "internal/numbers.h"
#include "testutil.h"
#include "test_main.h"
#include "test_main_custom.h"
#define nelem(x) (sizeof(x)/sizeof((x)[0])) #define nelem(x) (int)(sizeof(x) / sizeof((x)[0]))
static int justprint = 0; static int justprint = 0;
...@@ -89,64 +92,13 @@ static char *fpexpected[][5] = { ...@@ -89,64 +92,13 @@ static char *fpexpected[][5] = {
/* 69 */ { "6.6667e+04", "66666.6667", "6.667e+04", "6.6667E+04", "6.667E+04" }, /* 69 */ { "6.6667e+04", "66666.6667", "6.667e+04", "6.6667E+04", "6.667E+04" },
}; };
static void dofptest(int test, double val, char *width, int prec, int *fail) typedef struct z_data_st {
{
char format[80], result[80];
int i;
for (i = 0; i < 5; i++) {
char *fspec = NULL;
switch (i) {
case 0:
fspec = "e";
break;
case 1:
fspec = "f";
break;
case 2:
fspec = "g";
break;
case 3:
fspec = "E";
break;
case 4:
fspec = "G";
break;
}
if (prec >= 0)
BIO_snprintf(format, sizeof(format), "%%%s.%d%s", width, prec,
fspec);
else
BIO_snprintf(format, sizeof(format), "%%%s%s", width, fspec);
BIO_snprintf(result, sizeof(result), format, val);
if (justprint) {
if (i == 0) {
printf(" /* %3d */ { \"%s\"", test, result);
} else {
printf(", \"%s\"", result);
}
} else {
if (strcmp(fpexpected[test][i], result) != 0) {
printf("Test %d(%d) failed. Expected \"%s\". Got \"%s\". "
"Format \"%s\"\n", test, i, fpexpected[test][i], result,
format);
*fail = 1;
}
}
}
if (justprint) {
printf(" },\n");
}
}
struct z_data_st {
size_t value; size_t value;
const char *format; const char *format;
const char *expected; const char *expected;
}; } z_data;
static struct z_data_st zu_data[] = {
static z_data zu_data[] = {
{ SIZE_MAX, "%zu", (sizeof(size_t) == 4 ? "4294967295" { SIZE_MAX, "%zu", (sizeof(size_t) == 4 ? "4294967295"
: sizeof(size_t) == 8 ? "18446744073709551615" : sizeof(size_t) == 8 ? "18446744073709551615"
: "") }, : "") },
...@@ -161,24 +113,24 @@ static struct z_data_st zu_data[] = { ...@@ -161,24 +113,24 @@ static struct z_data_st zu_data[] = {
{ 0, "%zi", "0" }, { 0, "%zi", "0" },
}; };
static void dozutest(int test, const struct z_data_st *data, int *fail) static int test_zu(int i)
{ {
char bio_buf[80]; char bio_buf[80];
const z_data *data = &zu_data[i];
BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value); BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value);
if (strcmp(bio_buf, data->expected) != 0) { if (!TEST_str_eq(bio_buf, data->expected))
printf("Test %d failed. Expected \"%s\". Got \"%s\". " return 0;
"Format \"%s\"\n", test, data->expected, bio_buf, data->format); return 1;
*fail = 1;
}
} }
struct j_data_st { typedef struct j_data_st {
uint64_t value; uint64_t value;
const char *format; const char *format;
const char *expected; const char *expected;
}; } j_data;
static struct j_data_st j_data[] = {
static j_data jf_data[] = {
{ 0xffffffffffffffffU, "%ju", "18446744073709551615" }, { 0xffffffffffffffffU, "%ju", "18446744073709551615" },
{ 0xffffffffffffffffU, "%jx", "ffffffffffffffff" }, { 0xffffffffffffffffU, "%jx", "ffffffffffffffff" },
{ 0x8000000000000000U, "%ju", "9223372036854775808" }, { 0x8000000000000000U, "%ju", "9223372036854775808" },
...@@ -189,108 +141,109 @@ static struct j_data_st j_data[] = { ...@@ -189,108 +141,109 @@ static struct j_data_st j_data[] = {
{ 0x8000000000000000U, "%ji", "-9223372036854775808" }, { 0x8000000000000000U, "%ji", "-9223372036854775808" },
}; };
static void dojtest(int test, const struct j_data_st *data, int *fail) static int test_j(int i)
{ {
const j_data *data = &jf_data[i];
char bio_buf[80]; char bio_buf[80];
BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value); BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value);
if (strcmp(bio_buf, data->expected) != 0) { if (!TEST_str_eq(bio_buf, data->expected))
printf("Test %d failed. Expected \"%s\". Got \"%s\". " return 0;
"Format \"%s\"\n", test, data->expected, bio_buf, data->format); return 1;
*fail = 1;
}
} }
int main(int argc, char **argv)
/* Precision and width. */
typedef struct pw_st {
int p;
const char *w;
} pw;
static pw pw_params[] = {
{ 4, "" },
{ 5, "" },
{ 4, "12" },
{ 5, "12" },
{ 0, "" },
{ -1, "" },
{ 4, "08" }
};
static int dofptest(int test, double val, const char *width, int prec)
{ {
int test = 0; static const char *fspecs[] = {
size_t i; "e", "f", "g", "E", "G"
int fail = 0; };
int prec = -1; char format[80], result[80];
char *width = ""; int ret = 1, i;
const double frac = 2.0/3.0;
char buf[80];
if (argc == 2 && strcmp(argv[1], "-expected") == 0) { for (i = 0; i < nelem(fspecs); i++) {
justprint = 1; const char *fspec = fspecs[i];
}
CRYPTO_set_mem_debug(1); if (prec >= 0)
CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON); BIO_snprintf(format, sizeof(format), "%%%s.%d%s", width, prec,
fspec);
else
BIO_snprintf(format, sizeof(format), "%%%s%s", width, fspec);
BIO_snprintf(result, sizeof(result), format, val);
/* Tests for floating point format specifiers */ if (justprint) {
for (i = 0; i < 7; i++) { if (i == 0)
switch (i) { printf(" /* %d */ { \"%s\"", test, result);
case 0: else
prec = 4; printf(", \"%s\"", result);
width = ""; } else if (!TEST_str_eq(fpexpected[test][i], result)) {
break; TEST_info("test %d format=|%s| exp=|%s|, ret=|%s|",
case 1: test, format, fpexpected[test][i], result);
prec = 5; ret = 0;
width = "";
break;
case 2:
prec = 4;
width = "12";
break;
case 3:
prec = 5;
width = "12";
break;
case 4:
prec = 0;
width = "";
break;
case 5:
prec = -1;
width = "";
break;
case 6:
prec = 4;
width = "08";
break;
} }
dofptest(test++, 0.0, width, prec, &fail);
dofptest(test++, 0.67, width, prec, &fail);
dofptest(test++, frac, width, prec, &fail);
dofptest(test++, frac / 1000, width, prec, &fail);
dofptest(test++, frac / 10000, width, prec, &fail);
dofptest(test++, 6.0 + frac, width, prec, &fail);
dofptest(test++, 66.0 + frac, width, prec, &fail);
dofptest(test++, 666.0 + frac, width, prec, &fail);
dofptest(test++, 6666.0 + frac, width, prec, &fail);
dofptest(test++, 66666.0 + frac, width, prec, &fail);
} }
if (justprint)
printf(" },\n");
return ret;
}
/* Test excessively big number. Should fail */ static int test_fp(int i)
if (BIO_snprintf(buf, sizeof(buf), "%f\n", 2 * (double)ULONG_MAX) != -1) { {
printf("Test %d failed. Unexpected success return from " static int t = 0;
"BIO_snprintf()\n", test); const double frac = 2.0 / 3.0;
fail = 1; const pw *pwp = &pw_params[i];
}
if (!TEST_true(dofptest(t++, 0.0, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, 0.67, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, frac, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, frac / 1000, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, frac / 10000, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, 6.0 + frac, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, 66.0 + frac, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, 666.0 + frac, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, 6666.0 + frac, pwp->w, pwp->p))
|| !TEST_true(dofptest(t++, 66666.0 + frac, pwp->w, pwp->p)))
return 0;
return 1;
}
for (i = 0; i < nelem(zu_data); i++) { static int test_big(void)
dozutest(test++, &zu_data[i], &fail); {
} char buf[80];
for (i = 0; i < nelem(j_data); i++) { /* Test excessively big number. Should fail */
dojtest(test++, &j_data[i], &fail); if (!TEST_int_eq(BIO_snprintf(buf, sizeof(buf),
} "%f\n", 2 * (double)ULONG_MAX), -1))
return 0;
return 1;
}
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
if (CRYPTO_mem_leaks_fp(stderr) <= 0)
return 1;
# endif
if (!justprint) { int test_main(int argc, char **argv)
if (fail) { {
printf("FAIL\n"); if (argc == 2 && strcmp(argv[1], "-expected") == 0)
return 1; justprint = 1;
}
printf ("PASS\n");
}
return 0;
}
ADD_TEST(test_big);
ADD_ALL_TESTS(test_fp, nelem(pw_params));
ADD_ALL_TESTS(test_zu, nelem(zu_data));
ADD_ALL_TESTS(test_j, nelem(jf_data));
return run_tests(argv[0]);
}
...@@ -111,7 +111,7 @@ IF[{- !$disabled{tests} -}] ...@@ -111,7 +111,7 @@ IF[{- !$disabled{tests} -}]
INCLUDE[mdc2test]=../include INCLUDE[mdc2test]=../include
DEPEND[mdc2test]=../libcrypto DEPEND[mdc2test]=../libcrypto
SOURCE[randtest]=randtest.c SOURCE[randtest]=randtest.c testutil.c test_main.c
INCLUDE[randtest]=../include INCLUDE[randtest]=../include
DEPEND[randtest]=../libcrypto DEPEND[randtest]=../libcrypto
...@@ -175,7 +175,7 @@ IF[{- !$disabled{tests} -}] ...@@ -175,7 +175,7 @@ IF[{- !$disabled{tests} -}]
INCLUDE[danetest]=../include INCLUDE[danetest]=../include
DEPEND[danetest]=../libcrypto ../libssl DEPEND[danetest]=../libcrypto ../libssl
SOURCE[constant_time_test]=constant_time_test.c SOURCE[constant_time_test]=constant_time_test.c testutil.c test_main.c
INCLUDE[constant_time_test]=.. ../include INCLUDE[constant_time_test]=.. ../include
DEPEND[constant_time_test]=../libcrypto DEPEND[constant_time_test]=../libcrypto
...@@ -264,8 +264,8 @@ IF[{- !$disabled{tests} -}] ...@@ -264,8 +264,8 @@ IF[{- !$disabled{tests} -}]
INCLUDE[asynciotest]=../include INCLUDE[asynciotest]=../include
DEPEND[asynciotest]=../libcrypto ../libssl DEPEND[asynciotest]=../libcrypto ../libssl
SOURCE[bioprinttest]=bioprinttest.c SOURCE[bioprinttest]=bioprinttest.c testutil.c test_main_custom.c
INCLUDE[bioprinttest]=../include INCLUDE[bioprinttest]=../ ../include
DEPEND[bioprinttest]=../libcrypto DEPEND[bioprinttest]=../libcrypto
SOURCE[sslapitest]=sslapitest.c ssltestlib.c testutil.c test_main_custom.c SOURCE[sslapitest]=sslapitest.c ssltestlib.c testutil.c test_main_custom.c
...@@ -311,7 +311,7 @@ IF[{- !$disabled{tests} -}] ...@@ -311,7 +311,7 @@ IF[{- !$disabled{tests} -}]
IF[{- $disabled{shared} -}] IF[{- $disabled{shared} -}]
PROGRAMS_NO_INST=cipher_overhead_test PROGRAMS_NO_INST=cipher_overhead_test
SOURCE[cipher_overhead_test]=cipher_overhead_test.c SOURCE[cipher_overhead_test]=cipher_overhead_test.c testutil.c test_main.c
INCLUDE[cipher_overhead_test]=.. ../include INCLUDE[cipher_overhead_test]=.. ../include
DEPEND[cipher_overhead_test]=../libcrypto ../libssl DEPEND[cipher_overhead_test]=../libcrypto ../libssl
ENDIF ENDIF
......
...@@ -7,13 +7,15 @@ ...@@ -7,13 +7,15 @@
* https://www.openssl.org/source/license.html * https://www.openssl.org/source/license.html
*/ */
#include <stdio.h> #include "e_os.h"
#include "testutil.h"
#include "test_main.h"
#include "../ssl/ssl_locl.h" #include "../ssl/ssl_locl.h"
int main(void) static int cipher_overhead(void)
{ {
int i, n = ssl3_num_ciphers(); int ret = 1, i, n = ssl3_num_ciphers();
const SSL_CIPHER *ciph; const SSL_CIPHER *ciph;
size_t mac, in, blk, ex; size_t mac, in, blk, ex;
...@@ -21,13 +23,18 @@ int main(void) ...@@ -21,13 +23,18 @@ int main(void)
ciph = ssl3_get_cipher(i); ciph = ssl3_get_cipher(i);
if (!ciph->min_dtls) if (!ciph->min_dtls)
continue; continue;
if (!ssl_cipher_get_overhead(ciph, &mac, &in, &blk, &ex)) { if (!TEST_true(ssl_cipher_get_overhead(ciph, &mac, &in, &blk, &ex))) {
printf("Error getting overhead for %s\n", ciph->name); TEST_info("Failed getting %s", ciph->name);
exit(1); ret = 0;
} else { } else {
printf("Cipher %s: %"OSSLzu" %"OSSLzu" %"OSSLzu" %"OSSLzu"\n", TEST_info("Cipher %s: %"OSSLzu" %"OSSLzu" %"OSSLzu" %"OSSLzu,
ciph->name, mac, in, blk, ex); ciph->name, mac, in, blk, ex);
} }
} }
exit(0); return ret;
}
void register_tests(void)
{
ADD_TEST(cipher_overhead);
} }
...@@ -7,12 +7,13 @@ ...@@ -7,12 +7,13 @@
* https://www.openssl.org/source/license.html * https://www.openssl.org/source/license.html
*/ */
#include "internal/constant_time_locl.h"
#include "e_os.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include "e_os.h"
#include "internal/constant_time_locl.h"
#include "testutil.h"
#include "test_main.h"
#include "internal/numbers.h" #include "internal/numbers.h"
static const unsigned int CONSTTIME_TRUE = (unsigned)(~0); static const unsigned int CONSTTIME_TRUE = (unsigned)(~0);
...@@ -26,17 +27,11 @@ static int test_binary_op(unsigned int (*op) (unsigned int a, unsigned int b), ...@@ -26,17 +27,11 @@ static int test_binary_op(unsigned int (*op) (unsigned int a, unsigned int b),
const char *op_name, unsigned int a, unsigned int b, const char *op_name, unsigned int a, unsigned int b,
int is_true) int is_true)
{ {
unsigned c = op(a, b); if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE))
if (is_true && c != CONSTTIME_TRUE) { return 0;
fprintf(stderr, "Test failed for %s(%du, %du): expected %du " if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE))
"(TRUE), got %du\n", op_name, a, b, CONSTTIME_TRUE, c); return 0;
return 1; return 1;
} else if (!is_true && c != CONSTTIME_FALSE) {
fprintf(stderr, "Test failed for %s(%du, %du): expected %du "
"(FALSE), got %du\n", op_name, a, b, CONSTTIME_FALSE, c);
return 1;
}
return 0;
} }
static int test_binary_op_8(unsigned static int test_binary_op_8(unsigned
...@@ -44,210 +39,112 @@ static int test_binary_op_8(unsigned ...@@ -44,210 +39,112 @@ static int test_binary_op_8(unsigned
const char *op_name, unsigned int a, const char *op_name, unsigned int a,
unsigned int b, int is_true) unsigned int b, int is_true)
{ {
unsigned char c = op(a, b); if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE_8))
if (is_true && c != CONSTTIME_TRUE_8) { return 0;
fprintf(stderr, "Test failed for %s(%du, %du): expected %u " if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE_8))
"(TRUE), got %u\n", op_name, a, b, CONSTTIME_TRUE_8, c); return 0;
return 1; return 1;
} else if (!is_true && c != CONSTTIME_FALSE_8) {
fprintf(stderr, "Test failed for %s(%du, %du): expected %u "
"(FALSE), got %u\n", op_name, a, b, CONSTTIME_FALSE_8, c);
return 1;
}
return 0;
} }
static int test_binary_op_s(size_t (*op) (size_t a, size_t b), static int test_binary_op_s(size_t (*op) (size_t a, size_t b),
const char *op_name, size_t a, size_t b, const char *op_name, size_t a, size_t b,
int is_true) int is_true)
{ {
size_t c = op(a, b); if (is_true && !TEST_size_t_eq(op(a,b), CONSTTIME_TRUE_S))
if (is_true && c != CONSTTIME_TRUE_S) { return 0;
fprintf(stderr, "Test failed for %s(%"OSSLzu", %"OSSLzu if (!is_true && !TEST_uint_eq(op(a,b), CONSTTIME_FALSE_S))
"): expected %"OSSLzu" (TRUE), got %"OSSLzu"\n", return 0;
op_name, a, b, CONSTTIME_TRUE_S, c); return 1;
return 1;
} else if (!is_true && c != CONSTTIME_FALSE_S) {
fprintf(stderr, "Test failed for %s(%"OSSLzu", %"OSSLzu
"): expected %" OSSLzu " (FALSE), got %"OSSLzu"\n",
op_name, a, b, CONSTTIME_FALSE_S, c);
return 1;
}
return 0;
} }
static int test_is_zero(unsigned int a) static int test_is_zero(unsigned int a)
{ {
unsigned int c = constant_time_is_zero(a); if (a == 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_TRUE))
if (a == 0 && c != CONSTTIME_TRUE) { return 0;
fprintf(stderr, "Test failed for constant_time_is_zero(%du): " if (a != 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_FALSE))
"expected %du (TRUE), got %du\n", a, CONSTTIME_TRUE, c); return 0;
return 1; return 1;
} else if (a != 0 && c != CONSTTIME_FALSE) {
fprintf(stderr, "Test failed for constant_time_is_zero(%du): "
"expected %du (FALSE), got %du\n", a, CONSTTIME_FALSE, c);
return 1;
}
return 0;
} }
static int test_is_zero_8(unsigned int a) static int test_is_zero_8(unsigned int a)
{ {
unsigned char c = constant_time_is_zero_8(a); if (a == 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_TRUE_8))
if (a == 0 && c != CONSTTIME_TRUE_8) { return 0;
fprintf(stderr, "Test failed for constant_time_is_zero(%du): " if (a != 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_FALSE_8))
"expected %u (TRUE), got %u\n", a, CONSTTIME_TRUE_8, c); return 0;
return 1; return 1;
} else if (a != 0 && c != CONSTTIME_FALSE) {
fprintf(stderr, "Test failed for constant_time_is_zero(%du): "
"expected %u (FALSE), got %u\n", a, CONSTTIME_FALSE_8, c);
return 1;
}
return 0;
} }
static int test_is_zero_s(size_t a) static int test_is_zero_s(unsigned int a)
{ {
size_t c = constant_time_is_zero_s(a); if (a == 0 && !TEST_size_t_eq(constant_time_is_zero_s(a), CONSTTIME_TRUE_S))
if (a == 0 && c != CONSTTIME_TRUE_S) { return 0;
fprintf(stderr, "Test failed for constant_time_is_zero_s(%"OSSLzu"): " if (a != 0 && !TEST_uint_eq(constant_time_is_zero_s(a), CONSTTIME_FALSE_S))
"expected %"OSSLzu" (TRUE), got %"OSSLzu"\n", return 0;
a, CONSTTIME_TRUE_S, c); return 1;
return 1;
} else if (a != 0 && c != CONSTTIME_FALSE) {
fprintf(stderr, "Test failed for constant_time_is_zero_s(%"OSSLzu"): "
"expected %"OSSLzu" (FALSE), got %"OSSLzu"\n",
a, CONSTTIME_FALSE_S, c);
return 1;
}
return 0;
} }
static int test_select(unsigned int a, unsigned int b) static int test_select(unsigned int a, unsigned int b)
{ {
unsigned int selected = constant_time_select(CONSTTIME_TRUE, a, b); if (!TEST_uint_eq(constant_time_select(CONSTTIME_TRUE, a, b), a))
if (selected != a) { return 0;
fprintf(stderr, "Test failed for constant_time_select(%du, %du," if (!TEST_uint_eq(constant_time_select(CONSTTIME_FALSE, a, b), b))
"%du): expected %du(first value), got %du\n", return 0;
CONSTTIME_TRUE, a, b, a, selected); return 1;
return 1;
}
selected = constant_time_select(CONSTTIME_FALSE, a, b);
if (selected != b) {
fprintf(stderr, "Test failed for constant_time_select(%du, %du,"
"%du): expected %du(second value), got %du\n",
CONSTTIME_FALSE, a, b, b, selected);
return 1;
}
return 0;
} }
static int test_select_8(unsigned char a, unsigned char b) static int test_select_8(unsigned char a, unsigned char b)
{ {
unsigned char selected = constant_time_select_8(CONSTTIME_TRUE_8, a, b); if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_TRUE_8, a, b), a))
if (selected != a) { return 0;
fprintf(stderr, "Test failed for constant_time_select(%u, %u," if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_FALSE_8, a, b), b))
"%u): expected %u(first value), got %u\n", return 0;
CONSTTIME_TRUE, a, b, a, selected); return 1;
return 1;
}
selected = constant_time_select_8(CONSTTIME_FALSE_8, a, b);
if (selected != b) {
fprintf(stderr, "Test failed for constant_time_select(%u, %u,"
"%u): expected %u(second value), got %u\n",
CONSTTIME_FALSE, a, b, b, selected);
return 1;
}
return 0;
} }
static int test_select_int(int a, int b) static int test_select_s(unsigned char a, unsigned char b)
{ {
int selected = constant_time_select_int(CONSTTIME_TRUE, a, b); if (!TEST_uint_eq(constant_time_select_s(CONSTTIME_TRUE_S, a, b), a))
if (selected != a) { return 0;
fprintf(stderr, "Test failed for constant_time_select(%du, %d," if (!TEST_uint_eq(constant_time_select_s(CONSTTIME_FALSE_S, a, b), b))
"%d): expected %d(first value), got %d\n", return 0;
CONSTTIME_TRUE, a, b, a, selected); return 1;
return 1;
}
selected = constant_time_select_int(CONSTTIME_FALSE, a, b);
if (selected != b) {
fprintf(stderr, "Test failed for constant_time_select(%du, %d,"
"%d): expected %d(second value), got %d\n",
CONSTTIME_FALSE, a, b, b, selected);
return 1;
}
return 0;
} }
static int test_select_int(int a, int b)
static int test_select_s(size_t a, size_t b)
{ {
size_t selected = constant_time_select_s(CONSTTIME_TRUE_S, a, b); if (!TEST_int_eq(constant_time_select_int(CONSTTIME_TRUE, a, b), a))
if (selected != a) { return 0;
fprintf(stderr, "Test failed for constant_time_select_s(%"OSSLzu if (!TEST_int_eq(constant_time_select_int(CONSTTIME_FALSE, a, b), b))
", %"OSSLzu",%"OSSLzu"): expected %"OSSLzu return 0;
"(first value), got %"OSSLzu"\n", return 1;
CONSTTIME_TRUE_S, a, b, a, selected);
return 1;
}
selected = constant_time_select_s(CONSTTIME_FALSE_S, a, b);
if (selected != b) {
fprintf(stderr, "Test failed for constant_time_select_s(%"OSSLzu
", %"OSSLzu",%"OSSLzu"): expected %"OSSLzu
"(second value), got %"OSSLzu"\n",
CONSTTIME_FALSE_S, a, b, b, selected);
return 1;
}
return 0;
} }
static int test_eq_int(int a, int b) static int test_eq_int_8(int a, int b)
{ {
unsigned int equal = constant_time_eq_int(a, b); if (a == b && !TEST_int_eq(constant_time_eq_int_8(a, b), CONSTTIME_TRUE_8))
if (a == b && equal != CONSTTIME_TRUE) { return 0;
fprintf(stderr, "Test failed for constant_time_eq_int(%d, %d): " if (a != b && !TEST_int_eq(constant_time_eq_int_8(a, b), CONSTTIME_FALSE_8))
"expected %du(TRUE), got %du\n", a, b, CONSTTIME_TRUE, equal); return 0;
return 1; return 1;
} else if (a != b && equal != CONSTTIME_FALSE) {
fprintf(stderr, "Test failed for constant_time_eq_int(%d, %d): "
"expected %du(FALSE), got %du\n",
a, b, CONSTTIME_FALSE, equal);
return 1;
}
return 0;
} }
static int test_eq_int_8(int a, int b) static int test_eq_s(size_t a, size_t b)
{ {
unsigned char equal = constant_time_eq_int_8(a, b); if (a == b && !TEST_size_t_eq(constant_time_eq_s(a, b), CONSTTIME_TRUE_S))
if (a == b && equal != CONSTTIME_TRUE_8) { return 0;
fprintf(stderr, "Test failed for constant_time_eq_int_8(%d, %d): " if (a != b && !TEST_int_eq(constant_time_eq_s(a, b), CONSTTIME_FALSE_S))
"expected %u(TRUE), got %u\n", a, b, CONSTTIME_TRUE_8, equal); return 0;
return 1; return 1;
} else if (a != b && equal != CONSTTIME_FALSE_8) {
fprintf(stderr, "Test failed for constant_time_eq_int_8(%d, %d): "
"expected %u(FALSE), got %u\n",
a, b, CONSTTIME_FALSE_8, equal);
return 1;
}
return 0;
} }
static int test_eq_s(size_t a, size_t b) static int test_eq_int(int a, int b)
{ {
size_t equal = constant_time_eq_s(a, b); if (a == b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_TRUE))
if (a == b && equal != CONSTTIME_TRUE_S) { return 0;
fprintf(stderr, "Test failed for constant_time_eq_int(%"OSSLzu if (a != b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_FALSE))
", %"OSSLzu"): expected %"OSSLzu"(TRUE), got %"OSSLzu"\n", return 0;
a, b, CONSTTIME_TRUE_S, equal); return 1;
return 1;
} else if (a != b && equal != CONSTTIME_FALSE_S) {
fprintf(stderr, "Test failed for constant_time_eq_int(%"OSSLzu", %"
OSSLzu"): expected %"OSSLzu"(FALSE), got %"OSSLzu"\n",
a, b, CONSTTIME_FALSE_S, equal);
return 1;
}
return 0;
} }
static unsigned int test_values[] = static unsigned int test_values[] =
...@@ -270,108 +167,109 @@ static size_t test_values_s[] = ...@@ -270,108 +167,109 @@ static size_t test_values_s[] =
SIZE_MAX SIZE_MAX
}; };
int main(int argc, char *argv[]) static int test_sizeofs(void)
{ {
unsigned int a, b, i, j; if (!TEST_uint_eq(OSSL_NELEM(test_values), OSSL_NELEM(test_values_s)))
int c, d; return 0;
unsigned char e, f; return 1;
size_t g, h; }
int num_failed = 0, num_all = 0;
fprintf(stdout, "Testing constant time operations...\n");
if (OSSL_NELEM(test_values) != OSSL_NELEM(test_values_s)) {
fprintf(stdout, "Unexpected number of tests\n");
return EXIT_FAILURE;
}
for (i = 0; i < OSSL_NELEM(test_values); ++i) { static int test_binops(int i)
a = test_values[i]; {
g = test_values_s[i]; unsigned int a = test_values[i];
num_failed += test_is_zero(a); unsigned int g = test_values_s[i];
num_failed += test_is_zero_8(a); int j;
num_failed += test_is_zero_s(g); int ret = 1;
num_all += 3;
for (j = 0; j < OSSL_NELEM(test_values); ++j) { if (!test_is_zero(a) || !test_is_zero_8(a) || !test_is_zero_s(g))
b = test_values[j]; ret = 0;
h = test_values[j];
num_failed += test_binary_op(&constant_time_lt, for (j = 0; j < (int)OSSL_NELEM(test_values); ++j) {
"constant_time_lt", a, b, a < b); unsigned int b = test_values[j];
num_failed += test_binary_op_8(&constant_time_lt_8, unsigned int h = test_values[j];
"constant_time_lt_8", a, b, a < b);
num_failed += test_binary_op_s(&constant_time_lt_s,
"constant_time_lt_s", g, h, g < h);
num_failed += test_binary_op(&constant_time_lt,
"constant_time_lt", b, a, b < a);
num_failed += test_binary_op_8(&constant_time_lt_8,
"constant_time_lt_8", b, a, b < a);
num_failed += test_binary_op_s(&constant_time_lt_s,
"constant_time_lt_s", h, g, h < g);
num_failed += test_binary_op(&constant_time_ge,
"constant_time_ge", a, b, a >= b);
num_failed += test_binary_op_8(&constant_time_ge_8,
"constant_time_ge_8", a, b,
a >= b);
num_failed += test_binary_op_s(&constant_time_ge_s,
"constant_time_ge_s", g, h, g >= h);
num_failed +=
test_binary_op(&constant_time_ge, "constant_time_ge", b, a,
b >= a);
num_failed +=
test_binary_op_8(&constant_time_ge_8, "constant_time_ge_8", b,
a, b >= a);
num_failed +=
test_binary_op_s(&constant_time_ge_s, "constant_time_ge_s", h, g,
h >= g);
num_failed +=
test_binary_op(&constant_time_eq, "constant_time_eq", a, b,
a == b);
num_failed +=
test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8", a,
b, a == b);
num_failed +=
test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s", g, h,
g == h);
num_failed +=
test_binary_op(&constant_time_eq, "constant_time_eq", b, a,
b == a);
num_failed +=
test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8", b,
a, b == a);
num_failed +=
test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s", h, g,
h == g);
num_failed += test_select(a, b);
num_failed += test_select_s(g, h);
num_failed += test_eq_s(g, h);
num_all += 21;
}
}
for (i = 0; i < OSSL_NELEM(signed_test_values); ++i) { if (!test_select(a, b)
c = signed_test_values[i]; || !test_select_s(g, h)
for (j = 0; j < OSSL_NELEM(signed_test_values); ++j) { || !test_eq_s(g, h)
d = signed_test_values[j]; || !test_binary_op(&constant_time_lt, "ct_lt",
num_failed += test_select_int(c, d); a, b, a < b)
num_failed += test_eq_int(c, d); || !test_binary_op_8(&constant_time_lt_8, "constant_time_lt_8",
num_failed += test_eq_int_8(c, d); a, b, a < b)
num_all += 3; || !test_binary_op_s(&constant_time_lt_s, "constant_time_lt_s",
g, h, g < h)
|| !test_binary_op(&constant_time_lt, "constant_time_lt",
b, a, b < a)
|| !test_binary_op_8(&constant_time_lt_8, "constant_time_lt_8",
b, a, b < a)
|| !test_binary_op_s(&constant_time_lt_s, "constant_time_lt_s",
h, g, h < g)
|| !test_binary_op(&constant_time_ge, "constant_time_ge",
a, b, a >= b)
|| !test_binary_op_8(&constant_time_ge_8, "constant_time_ge_8",
a, b, a >= b)
|| !test_binary_op_s(&constant_time_ge_s, "constant_time_ge_s",
g, h, g >= h)
|| !test_binary_op(&constant_time_ge, "constant_time_ge",
b, a, b >= a)
|| !test_binary_op_8(&constant_time_ge_8, "constant_time_ge_8",
b, a, b >= a)
|| !test_binary_op_s(&constant_time_ge_s, "constant_time_ge_s",
h, g, h >= g)
|| !test_binary_op(&constant_time_eq, "constant_time_eq",
a, b, a == b)
|| !test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8",
a, b, a == b)
|| !test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s",
g, h, g == h)
|| !test_binary_op(&constant_time_eq, "constant_time_eq",
b, a, b == a)
|| !test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8",
b, a, b == a)
|| !test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s",
h, g, h == g)) {
ret = 0;
} }
} }
return ret;
}
for (i = 0; i < sizeof(test_values_8); ++i) { static int test_signed(int i)
e = test_values_8[i]; {
for (j = 0; j < sizeof(test_values_8); ++j) { int c = signed_test_values[i];
f = test_values_8[j]; unsigned int j;
num_failed += test_select_8(e, f); int ret = 1;
num_all += 1;
} for (j = 0; j < OSSL_NELEM(signed_test_values); ++j) {
int d = signed_test_values[j];
if (!test_select_int(c, d)
|| !test_eq_int(c, d)
|| !test_eq_int_8(c, d))
ret = 0;
} }
return ret;
}
if (!num_failed) { static int test_8values(int i)
fprintf(stdout, "success (ran %d tests)\n", num_all); {
return EXIT_SUCCESS; unsigned char e = test_values_8[i];
} else { unsigned int j;
fprintf(stdout, "%d of %d tests failed!\n", num_failed, num_all); int ret = 1;
return EXIT_FAILURE;
for (j = 0; j < sizeof(test_values_8); ++j) {
unsigned char f = test_values_8[j];
if (!test_select_8(e, f))
ret = 0;
} }
return ret;
}
void register_tests(void)
{
ADD_TEST(test_sizeofs);
ADD_ALL_TESTS(test_binops, OSSL_NELEM(test_values));
ADD_ALL_TESTS(test_signed, OSSL_NELEM(signed_test_values));
ADD_ALL_TESTS(test_8values, sizeof(test_values_8));
} }
...@@ -7,33 +7,24 @@ ...@@ -7,33 +7,24 @@
* https://www.openssl.org/source/license.html * https://www.openssl.org/source/license.html
*/ */
#include <stdio.h>
#include <stdlib.h>
#include <openssl/rand.h> #include <openssl/rand.h>
#include "testutil.h"
#include "../e_os.h" #include "test_main.h"
/* some FIPS 140-1 random number test */ /* some FIPS 140-1 random number test */
/* some simple tests */ /* some simple tests */
int main(int argc, char **argv) static int fips_random_tests(void)
{ {
unsigned char buf[2500]; unsigned char buf[2500];
int i, j, k, s, sign, nsign, err = 0; int i, j, k, s, sign, nsign, ret = 1;
unsigned long n1; unsigned long n1;
unsigned long n2[16]; unsigned long n2[16];
unsigned long runs[2][34]; unsigned long runs[2][34];
/*
* double d;
*/
long d; long d;
i = RAND_bytes(buf, 2500); if (!TEST_int_ge(RAND_bytes(buf, sizeof(buf)), 0))
if (i <= 0) { return 0;
printf("init failed, the rand method is not properly installed\n");
err++;
goto err;
}
n1 = 0; n1 = 0;
for (i = 0; i < 16; i++) for (i = 0; i < 16; i++)
...@@ -77,69 +68,43 @@ int main(int argc, char **argv) ...@@ -77,69 +68,43 @@ int main(int argc, char **argv)
runs[sign][nsign - 1]++; runs[sign][nsign - 1]++;
/* test 1 */ /* test 1 */
if (!((9654 < n1) && (n1 < 10346))) { if (!TEST_true(9654 < n1 && n1 < 10346)) {
printf("test 1 failed, X=%lu\n", n1); TEST_info("test 1 failed, X=%lu", n1);
err++; ret = 0;
} }
printf("test 1 done\n");
/* test 2 */ /* test 2 */
d = 0; d = 0;
for (i = 0; i < 16; i++) for (i = 0; i < 16; i++)
d += n2[i] * n2[i]; d += n2[i] * n2[i];
d = (d * 8) / 25 - 500000; d = (d * 8) / 25 - 500000;
if (!((103 < d) && (d < 5740))) { if (!TEST_true(103 < d && d < 5740)) {
printf("test 2 failed, X=%ld.%02ld\n", d / 100L, d % 100L); TEST_info("test 2 failed, X=%ld.%02ld", d / 100L, d % 100L);
err++; ret = 0;
} }
printf("test 2 done\n");
/* test 3 */ /* test 3 */
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
if (!((2267 < runs[i][0]) && (runs[i][0] < 2733))) { if (!TEST_true(2267 < runs[i][0] && runs[i][0] < 2733)
printf("test 3 failed, bit=%d run=%d num=%lu\n", || !TEST_true(1079 < runs[i][1] && runs[i][1] < 1421)
i, 1, runs[i][0]); || !TEST_true(502 < runs[i][2] && runs[i][2] < 748)
err++; || !TEST_true(223 < runs[i][3] && runs[i][3] < 402)
} || !TEST_true(90 < runs[i][4] && runs[i][4] < 223)
if (!((1079 < runs[i][1]) && (runs[i][1] < 1421))) { || !TEST_true(90 < runs[i][5] && runs[i][5] < 223)) {
printf("test 3 failed, bit=%d run=%d num=%lu\n", TEST_info("During run %d", i);
i, 2, runs[i][1]); ret = 0;
err++;
}
if (!((502 < runs[i][2]) && (runs[i][2] < 748))) {
printf("test 3 failed, bit=%d run=%d num=%lu\n",
i, 3, runs[i][2]);
err++;
}
if (!((223 < runs[i][3]) && (runs[i][3] < 402))) {
printf("test 3 failed, bit=%d run=%d num=%lu\n",
i, 4, runs[i][3]);
err++;
}
if (!((90 < runs[i][4]) && (runs[i][4] < 223))) {
printf("test 3 failed, bit=%d run=%d num=%lu\n",
i, 5, runs[i][4]);
err++;
}
if (!((90 < runs[i][5]) && (runs[i][5] < 223))) {
printf("test 3 failed, bit=%d run=%d num=%lu\n",
i, 6, runs[i][5]);
err++;
} }
} }
printf("test 3 done\n");
/* test 4 */ /* test 4 */
if (runs[0][33] != 0) { if (!TEST_int_eq(runs[0][33], 0)
printf("test 4 failed, bit=%d run=%d num=%lu\n", 0, 34, runs[0][33]); || !TEST_int_eq(runs[1][33], 0))
err++; ret = 0;
}
if (runs[1][33] != 0) { return ret;
printf("test 4 failed, bit=%d run=%d num=%lu\n", 1, 34, runs[1][33]); }
err++;
} void register_tests(void)
printf("test 4 done\n"); {
err: ADD_TEST(fips_random_tests);
err = ((err) ? 1 : 0);
EXIT(err);
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册