Rich Salz | 440e5d8 | 2016-05-17 14:20:24 -0400 | [diff] [blame] | 1 | /* |
Matt Caswell | 0d66475 | 2018-02-27 13:37:28 +0000 | [diff] [blame] | 2 | * Copyright 2014-2018 The OpenSSL Project Authors. All Rights Reserved. |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 3 | * |
Rich Salz | 440e5d8 | 2016-05-17 14:20:24 -0400 | [diff] [blame] | 4 | * Licensed under the OpenSSL license (the "License"). You may not use |
| 5 | * this file except in compliance with the License. You can obtain a copy |
| 6 | * in the file LICENSE in the source distribution or at |
| 7 | * https://www.openssl.org/source/license.html |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 10 | #include <stdio.h> |
| 11 | #include <stdlib.h> |
| 12 | |
Rich Salz | 176db6d | 2017-08-22 08:35:43 -0400 | [diff] [blame] | 13 | #include "internal/nelem.h" |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 14 | #include "internal/constant_time_locl.h" |
| 15 | #include "testutil.h" |
Richard Levitte | c76da13 | 2016-11-05 11:38:29 +0100 | [diff] [blame] | 16 | #include "internal/numbers.h" |
| 17 | |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 18 | static const unsigned int CONSTTIME_TRUE = (unsigned)(~0); |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 19 | static const unsigned int CONSTTIME_FALSE = 0; |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 20 | static const unsigned char CONSTTIME_TRUE_8 = 0xff; |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 21 | static const unsigned char CONSTTIME_FALSE_8 = 0; |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 22 | static const size_t CONSTTIME_TRUE_S = ~((size_t)0); |
| 23 | static const size_t CONSTTIME_FALSE_S = 0; |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 24 | static uint32_t CONSTTIME_TRUE_32 = (uint32_t)(~(uint32_t)0); |
| 25 | static uint32_t CONSTTIME_FALSE_32 = 0; |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 26 | static uint64_t CONSTTIME_TRUE_64 = (uint64_t)(~(uint64_t)0); |
| 27 | static uint64_t CONSTTIME_FALSE_64 = 0; |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 28 | |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 29 | static unsigned int test_values[] = { |
| 30 | 0, 1, 1024, 12345, 32000, UINT_MAX / 2 - 1, |
| 31 | UINT_MAX / 2, UINT_MAX / 2 + 1, UINT_MAX - 1, |
| 32 | UINT_MAX |
| 33 | }; |
| 34 | |
| 35 | static unsigned char test_values_8[] = { |
| 36 | 0, 1, 2, 20, 32, 127, 128, 129, 255 |
| 37 | }; |
| 38 | |
| 39 | static int signed_test_values[] = { |
| 40 | 0, 1, -1, 1024, -1024, 12345, -12345, |
| 41 | 32000, -32000, INT_MAX, INT_MIN, INT_MAX - 1, |
| 42 | INT_MIN + 1 |
| 43 | }; |
| 44 | |
| 45 | static size_t test_values_s[] = { |
| 46 | 0, 1, 1024, 12345, 32000, SIZE_MAX / 2 - 1, |
| 47 | SIZE_MAX / 2, SIZE_MAX / 2 + 1, SIZE_MAX - 1, |
| 48 | SIZE_MAX |
| 49 | }; |
| 50 | |
| 51 | static uint32_t test_values_32[] = { |
| 52 | 0, 1, 1024, 12345, 32000, UINT32_MAX / 2, UINT32_MAX / 2 + 1, |
| 53 | UINT32_MAX - 1, UINT32_MAX |
| 54 | }; |
| 55 | |
| 56 | static uint64_t test_values_64[] = { |
| 57 | 0, 1, 1024, 12345, 32000, 32000000, 32000000001, UINT64_MAX / 2, |
| 58 | UINT64_MAX / 2 + 1, UINT64_MAX - 1, UINT64_MAX |
| 59 | }; |
| 60 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 61 | static int test_binary_op(unsigned int (*op) (unsigned int a, unsigned int b), |
| 62 | const char *op_name, unsigned int a, unsigned int b, |
| 63 | int is_true) |
| 64 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 65 | if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE)) |
| 66 | return 0; |
| 67 | if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE)) |
| 68 | return 0; |
| 69 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 70 | } |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 71 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 72 | static int test_binary_op_8(unsigned |
| 73 | char (*op) (unsigned int a, unsigned int b), |
| 74 | const char *op_name, unsigned int a, |
| 75 | unsigned int b, int is_true) |
| 76 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 77 | if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE_8)) |
| 78 | return 0; |
| 79 | if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE_8)) |
| 80 | return 0; |
| 81 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 82 | } |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 83 | |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 84 | static int test_binary_op_s(size_t (*op) (size_t a, size_t b), |
| 85 | const char *op_name, size_t a, size_t b, |
| 86 | int is_true) |
| 87 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 88 | if (is_true && !TEST_size_t_eq(op(a,b), CONSTTIME_TRUE_S)) |
| 89 | return 0; |
| 90 | if (!is_true && !TEST_uint_eq(op(a,b), CONSTTIME_FALSE_S)) |
| 91 | return 0; |
| 92 | return 1; |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 93 | } |
| 94 | |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 95 | static int test_binary_op_64(uint64_t (*op)(uint64_t a, uint64_t b), |
| 96 | const char *op_name, uint64_t a, uint64_t b, |
| 97 | int is_true) |
| 98 | { |
| 99 | uint64_t c = op(a, b); |
| 100 | |
| 101 | if (is_true && c != CONSTTIME_TRUE_64) { |
| 102 | TEST_error("TRUE %s op failed", op_name); |
Rich Salz | 12997aa | 2017-08-15 09:42:38 -0400 | [diff] [blame] | 103 | BIO_printf(bio_err, "a=%jx b=%jx\n", a, b); |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 104 | return 0; |
| 105 | } else if (!is_true && c != CONSTTIME_FALSE_64) { |
| 106 | TEST_error("FALSE %s op failed", op_name); |
Rich Salz | 12997aa | 2017-08-15 09:42:38 -0400 | [diff] [blame] | 107 | BIO_printf(bio_err, "a=%jx b=%jx\n", a, b); |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | return 1; |
| 111 | } |
| 112 | |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 113 | static int test_is_zero(int i) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 114 | { |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 115 | unsigned int a = test_values[i]; |
| 116 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 117 | if (a == 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_TRUE)) |
| 118 | return 0; |
| 119 | if (a != 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_FALSE)) |
| 120 | return 0; |
| 121 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 122 | } |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 123 | |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 124 | static int test_is_zero_8(int i) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 125 | { |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 126 | unsigned int a = test_values_8[i]; |
| 127 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 128 | if (a == 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_TRUE_8)) |
| 129 | return 0; |
| 130 | if (a != 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_FALSE_8)) |
| 131 | return 0; |
| 132 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 133 | } |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 134 | |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 135 | static int test_is_zero_32(int i) |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 136 | { |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 137 | uint32_t a = test_values_32[i]; |
| 138 | |
| 139 | if (a == 0 && !TEST_true(constant_time_is_zero_32(a) == CONSTTIME_TRUE_32)) |
| 140 | return 0; |
| 141 | if (a != 0 && !TEST_true(constant_time_is_zero_32(a) == CONSTTIME_FALSE_32)) |
| 142 | return 0; |
| 143 | return 1; |
| 144 | } |
| 145 | |
| 146 | static int test_is_zero_s(int i) |
| 147 | { |
| 148 | size_t a = test_values_s[i]; |
| 149 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 150 | if (a == 0 && !TEST_size_t_eq(constant_time_is_zero_s(a), CONSTTIME_TRUE_S)) |
| 151 | return 0; |
| 152 | if (a != 0 && !TEST_uint_eq(constant_time_is_zero_s(a), CONSTTIME_FALSE_S)) |
| 153 | return 0; |
| 154 | return 1; |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 155 | } |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 156 | |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 157 | static int test_select(unsigned int a, unsigned int b) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 158 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 159 | if (!TEST_uint_eq(constant_time_select(CONSTTIME_TRUE, a, b), a)) |
| 160 | return 0; |
| 161 | if (!TEST_uint_eq(constant_time_select(CONSTTIME_FALSE, a, b), b)) |
| 162 | return 0; |
| 163 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 164 | } |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 165 | |
| 166 | static int test_select_8(unsigned char a, unsigned char b) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 167 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 168 | if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_TRUE_8, a, b), a)) |
| 169 | return 0; |
| 170 | if (!TEST_uint_eq(constant_time_select_8(CONSTTIME_FALSE_8, a, b), b)) |
| 171 | return 0; |
| 172 | return 1; |
| 173 | } |
| 174 | |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 175 | static int test_select_32(uint32_t a, uint32_t b) |
| 176 | { |
| 177 | if (!TEST_true(constant_time_select_32(CONSTTIME_TRUE_32, a, b) == a)) |
| 178 | return 0; |
| 179 | if (!TEST_true(constant_time_select_32(CONSTTIME_FALSE_32, a, b) == b)) |
| 180 | return 0; |
| 181 | return 1; |
| 182 | } |
| 183 | |
| 184 | static int test_select_s(size_t a, size_t b) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 185 | { |
| 186 | if (!TEST_uint_eq(constant_time_select_s(CONSTTIME_TRUE_S, a, b), a)) |
| 187 | return 0; |
| 188 | if (!TEST_uint_eq(constant_time_select_s(CONSTTIME_FALSE_S, a, b), b)) |
| 189 | return 0; |
| 190 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 191 | } |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 192 | |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 193 | static int test_select_64(uint64_t a, uint64_t b) |
| 194 | { |
| 195 | uint64_t selected = constant_time_select_64(CONSTTIME_TRUE_64, a, b); |
| 196 | |
| 197 | if (selected != a) { |
| 198 | TEST_error("test_select_64 TRUE failed"); |
Rich Salz | 12997aa | 2017-08-15 09:42:38 -0400 | [diff] [blame] | 199 | BIO_printf(bio_err, "a=%jx b=%jx got %jx wanted a\n", a, b, selected); |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 200 | return 0; |
| 201 | } |
| 202 | selected = constant_time_select_64(CONSTTIME_FALSE_64, a, b); |
| 203 | if (selected != b) { |
Rich Salz | 12997aa | 2017-08-15 09:42:38 -0400 | [diff] [blame] | 204 | BIO_printf(bio_err, "a=%jx b=%jx got %jx wanted b\n", a, b, selected); |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 205 | return 0; |
| 206 | } |
| 207 | return 1; |
| 208 | } |
| 209 | |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 210 | static int test_select_int(int a, int b) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 211 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 212 | if (!TEST_int_eq(constant_time_select_int(CONSTTIME_TRUE, a, b), a)) |
| 213 | return 0; |
| 214 | if (!TEST_int_eq(constant_time_select_int(CONSTTIME_FALSE, a, b), b)) |
| 215 | return 0; |
| 216 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 217 | } |
Emilia Kasper | 455b65d | 2014-09-04 13:04:42 +0200 | [diff] [blame] | 218 | |
| 219 | static int test_eq_int_8(int a, int b) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 220 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 221 | if (a == b && !TEST_int_eq(constant_time_eq_int_8(a, b), CONSTTIME_TRUE_8)) |
| 222 | return 0; |
| 223 | if (a != b && !TEST_int_eq(constant_time_eq_int_8(a, b), CONSTTIME_FALSE_8)) |
| 224 | return 0; |
| 225 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 226 | } |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 227 | |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 228 | static int test_eq_s(size_t a, size_t b) |
| 229 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 230 | if (a == b && !TEST_size_t_eq(constant_time_eq_s(a, b), CONSTTIME_TRUE_S)) |
| 231 | return 0; |
| 232 | if (a != b && !TEST_int_eq(constant_time_eq_s(a, b), CONSTTIME_FALSE_S)) |
| 233 | return 0; |
| 234 | return 1; |
| 235 | } |
| 236 | |
| 237 | static int test_eq_int(int a, int b) |
| 238 | { |
| 239 | if (a == b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_TRUE)) |
| 240 | return 0; |
| 241 | if (a != b && !TEST_uint_eq(constant_time_eq_int(a, b), CONSTTIME_FALSE)) |
| 242 | return 0; |
| 243 | return 1; |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 244 | } |
| 245 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 246 | static int test_sizeofs(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 247 | { |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 248 | if (!TEST_uint_eq(OSSL_NELEM(test_values), OSSL_NELEM(test_values_s))) |
| 249 | return 0; |
| 250 | return 1; |
| 251 | } |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 252 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 253 | static int test_binops(int i) |
| 254 | { |
| 255 | unsigned int a = test_values[i]; |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 256 | int j; |
| 257 | int ret = 1; |
Matt Caswell | be2ef0e | 2016-10-25 15:29:35 +0100 | [diff] [blame] | 258 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 259 | for (j = 0; j < (int)OSSL_NELEM(test_values); ++j) { |
| 260 | unsigned int b = test_values[j]; |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 261 | |
| 262 | if (!test_select(a, b) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 263 | || !test_binary_op(&constant_time_lt, "ct_lt", |
| 264 | a, b, a < b) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 265 | || !test_binary_op(&constant_time_lt, "constant_time_lt", |
| 266 | b, a, b < a) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 267 | || !test_binary_op(&constant_time_ge, "constant_time_ge", |
| 268 | a, b, a >= b) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 269 | || !test_binary_op(&constant_time_ge, "constant_time_ge", |
| 270 | b, a, b >= a) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 271 | || !test_binary_op(&constant_time_eq, "constant_time_eq", |
| 272 | a, b, a == b) |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 273 | || !test_binary_op(&constant_time_eq, "constant_time_eq", |
| 274 | b, a, b == a)) |
| 275 | ret = 0; |
| 276 | } |
| 277 | return ret; |
| 278 | } |
| 279 | |
| 280 | static int test_binops_8(int i) |
| 281 | { |
| 282 | unsigned int a = test_values_8[i]; |
| 283 | int j; |
| 284 | int ret = 1; |
| 285 | |
| 286 | for (j = 0; j < (int)OSSL_NELEM(test_values_8); ++j) { |
| 287 | unsigned int b = test_values_8[j]; |
| 288 | |
| 289 | if (!test_binary_op_8(&constant_time_lt_8, "constant_time_lt_8", |
| 290 | a, b, a < b) |
| 291 | || !test_binary_op_8(&constant_time_lt_8, "constant_time_lt_8", |
| 292 | b, a, b < a) |
| 293 | || !test_binary_op_8(&constant_time_ge_8, "constant_time_ge_8", |
| 294 | a, b, a >= b) |
| 295 | || !test_binary_op_8(&constant_time_ge_8, "constant_time_ge_8", |
| 296 | b, a, b >= a) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 297 | || !test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8", |
| 298 | a, b, a == b) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 299 | || !test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8", |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 300 | b, a, b == a)) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 301 | ret = 0; |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 302 | } |
| 303 | return ret; |
| 304 | } |
| 305 | |
| 306 | static int test_binops_s(int i) |
| 307 | { |
| 308 | size_t a = test_values_s[i]; |
| 309 | int j; |
| 310 | int ret = 1; |
| 311 | |
| 312 | for (j = 0; j < (int)OSSL_NELEM(test_values_s); ++j) { |
| 313 | size_t b = test_values_s[j]; |
| 314 | |
| 315 | if (!test_select_s(a, b) |
| 316 | || !test_eq_s(a, b) |
| 317 | || !test_binary_op_s(&constant_time_lt_s, "constant_time_lt_s", |
| 318 | a, b, a < b) |
| 319 | || !test_binary_op_s(&constant_time_lt_s, "constant_time_lt_s", |
| 320 | b, a, b < a) |
| 321 | || !test_binary_op_s(&constant_time_ge_s, "constant_time_ge_s", |
| 322 | a, b, a >= b) |
| 323 | || !test_binary_op_s(&constant_time_ge_s, "constant_time_ge_s", |
| 324 | b, a, b >= a) |
| 325 | || !test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s", |
| 326 | a, b, a == b) |
| 327 | || !test_binary_op_s(&constant_time_eq_s, "constant_time_eq_s", |
| 328 | b, a, b == a)) |
| 329 | ret = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 330 | } |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 331 | return ret; |
| 332 | } |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 333 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 334 | static int test_signed(int i) |
| 335 | { |
| 336 | int c = signed_test_values[i]; |
| 337 | unsigned int j; |
| 338 | int ret = 1; |
Emilia Kasper | 294d1e3 | 2014-08-28 19:43:49 +0200 | [diff] [blame] | 339 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 340 | for (j = 0; j < OSSL_NELEM(signed_test_values); ++j) { |
| 341 | int d = signed_test_values[j]; |
Emilia Kasper | 5a3d21c | 2014-08-28 15:33:34 +0200 | [diff] [blame] | 342 | |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 343 | if (!test_select_int(c, d) |
| 344 | || !test_eq_int(c, d) |
| 345 | || !test_eq_int_8(c, d)) |
| 346 | ret = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 347 | } |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 348 | return ret; |
| 349 | } |
| 350 | |
| 351 | static int test_8values(int i) |
| 352 | { |
| 353 | unsigned char e = test_values_8[i]; |
| 354 | unsigned int j; |
| 355 | int ret = 1; |
| 356 | |
| 357 | for (j = 0; j < sizeof(test_values_8); ++j) { |
| 358 | unsigned char f = test_values_8[j]; |
| 359 | |
| 360 | if (!test_select_8(e, f)) |
| 361 | ret = 0; |
| 362 | } |
| 363 | return ret; |
| 364 | } |
| 365 | |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 366 | static int test_32values(int i) |
| 367 | { |
| 368 | uint32_t e = test_values_32[i]; |
| 369 | size_t j; |
| 370 | int ret = 1; |
| 371 | |
| 372 | for (j = 0; j < OSSL_NELEM(test_values_32); j++) { |
| 373 | uint32_t f = test_values_32[j]; |
| 374 | |
| 375 | if (!test_select_32(e, f)) |
| 376 | ret = 0; |
| 377 | } |
| 378 | return ret; |
| 379 | } |
| 380 | |
Rich Salz | 9018f3c | 2017-06-20 15:21:21 -0400 | [diff] [blame] | 381 | static int test_64values(int i) |
| 382 | { |
| 383 | uint64_t g = test_values_64[i]; |
| 384 | int j, ret = 1; |
| 385 | |
| 386 | for (j = i + 1; j < (int)OSSL_NELEM(test_values_64); j++) { |
| 387 | uint64_t h = test_values_64[j]; |
| 388 | |
| 389 | if (!test_binary_op_64(&constant_time_lt_64, "constant_time_lt_64", |
| 390 | g, h, g < h) |
| 391 | || !test_select_64(g, h)) { |
| 392 | TEST_info("test_64values failed i=%d j=%d", i, j); |
| 393 | ret = 0; |
| 394 | } |
| 395 | } |
| 396 | return ret; |
| 397 | } |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 398 | |
Pauli | ad88741 | 2017-07-18 11:48:27 +1000 | [diff] [blame] | 399 | int setup_tests(void) |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 400 | { |
| 401 | ADD_TEST(test_sizeofs); |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 402 | ADD_ALL_TESTS(test_is_zero, OSSL_NELEM(test_values)); |
| 403 | ADD_ALL_TESTS(test_is_zero_8, OSSL_NELEM(test_values_8)); |
| 404 | ADD_ALL_TESTS(test_is_zero_32, OSSL_NELEM(test_values_32)); |
| 405 | ADD_ALL_TESTS(test_is_zero_s, OSSL_NELEM(test_values_s)); |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 406 | ADD_ALL_TESTS(test_binops, OSSL_NELEM(test_values)); |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 407 | ADD_ALL_TESTS(test_binops_8, OSSL_NELEM(test_values_8)); |
| 408 | ADD_ALL_TESTS(test_binops_s, OSSL_NELEM(test_values_s)); |
Rich Salz | 3304d57 | 2017-04-18 14:50:00 -0400 | [diff] [blame] | 409 | ADD_ALL_TESTS(test_signed, OSSL_NELEM(signed_test_values)); |
Matt Caswell | e390850 | 2017-06-23 10:10:51 +0100 | [diff] [blame] | 410 | ADD_ALL_TESTS(test_8values, OSSL_NELEM(test_values_8)); |
Matt Caswell | 59bf467 | 2018-02-19 14:53:01 +0000 | [diff] [blame] | 411 | ADD_ALL_TESTS(test_32values, OSSL_NELEM(test_values_32)); |
Matt Caswell | e390850 | 2017-06-23 10:10:51 +0100 | [diff] [blame] | 412 | ADD_ALL_TESTS(test_64values, OSSL_NELEM(test_values_64)); |
Pauli | ad88741 | 2017-07-18 11:48:27 +1000 | [diff] [blame] | 413 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 414 | } |