blob: e5e3e497c09945e08ba3f4c939e1af49986d1662 [file] [log] [blame]
Rich Salz440e5d82016-05-17 14:20:24 -04001/*
Matt Caswell0d664752018-02-27 13:37:28 +00002 * Copyright 2014-2018 The OpenSSL Project Authors. All Rights Reserved.
Emilia Kasper5a3d21c2014-08-28 15:33:34 +02003 *
Rich Salz440e5d82016-05-17 14:20:24 -04004 * 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 Kasper5a3d21c2014-08-28 15:33:34 +02008 */
9
Emilia Kasper5a3d21c2014-08-28 15:33:34 +020010#include <stdio.h>
11#include <stdlib.h>
12
Rich Salz176db6d2017-08-22 08:35:43 -040013#include "internal/nelem.h"
Rich Salz3304d572017-04-18 14:50:00 -040014#include "internal/constant_time_locl.h"
15#include "testutil.h"
Richard Levittec76da132016-11-05 11:38:29 +010016#include "internal/numbers.h"
17
Emilia Kasper294d1e32014-08-28 19:43:49 +020018static const unsigned int CONSTTIME_TRUE = (unsigned)(~0);
Emilia Kasper5a3d21c2014-08-28 15:33:34 +020019static const unsigned int CONSTTIME_FALSE = 0;
Emilia Kasper294d1e32014-08-28 19:43:49 +020020static const unsigned char CONSTTIME_TRUE_8 = 0xff;
Emilia Kasper5a3d21c2014-08-28 15:33:34 +020021static const unsigned char CONSTTIME_FALSE_8 = 0;
Matt Caswellbe2ef0e2016-10-25 15:29:35 +010022static const size_t CONSTTIME_TRUE_S = ~((size_t)0);
23static const size_t CONSTTIME_FALSE_S = 0;
Matt Caswell59bf4672018-02-19 14:53:01 +000024static uint32_t CONSTTIME_TRUE_32 = (uint32_t)(~(uint32_t)0);
25static uint32_t CONSTTIME_FALSE_32 = 0;
Rich Salz9018f3c2017-06-20 15:21:21 -040026static uint64_t CONSTTIME_TRUE_64 = (uint64_t)(~(uint64_t)0);
27static uint64_t CONSTTIME_FALSE_64 = 0;
Emilia Kasper5a3d21c2014-08-28 15:33:34 +020028
Matt Caswell59bf4672018-02-19 14:53:01 +000029static 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
35static unsigned char test_values_8[] = {
36 0, 1, 2, 20, 32, 127, 128, 129, 255
37};
38
39static 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
45static 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
51static 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
56static 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 Caswell0f113f32015-01-22 03:40:55 +000061static 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 Salz3304d572017-04-18 14:50:00 -040065 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 Caswell0f113f32015-01-22 03:40:55 +000070}
Emilia Kasper5a3d21c2014-08-28 15:33:34 +020071
Matt Caswell0f113f32015-01-22 03:40:55 +000072static 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 Salz3304d572017-04-18 14:50:00 -040077 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 Caswell0f113f32015-01-22 03:40:55 +000082}
Emilia Kasper5a3d21c2014-08-28 15:33:34 +020083
Matt Caswellbe2ef0e2016-10-25 15:29:35 +010084static 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 Salz3304d572017-04-18 14:50:00 -040088 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 Caswellbe2ef0e2016-10-25 15:29:35 +010093}
94
Rich Salz9018f3c2017-06-20 15:21:21 -040095static 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 Salz12997aa2017-08-15 09:42:38 -0400103 BIO_printf(bio_err, "a=%jx b=%jx\n", a, b);
Rich Salz9018f3c2017-06-20 15:21:21 -0400104 return 0;
105 } else if (!is_true && c != CONSTTIME_FALSE_64) {
106 TEST_error("FALSE %s op failed", op_name);
Rich Salz12997aa2017-08-15 09:42:38 -0400107 BIO_printf(bio_err, "a=%jx b=%jx\n", a, b);
Rich Salz9018f3c2017-06-20 15:21:21 -0400108 return 0;
109 }
110 return 1;
111}
112
Matt Caswell59bf4672018-02-19 14:53:01 +0000113static int test_is_zero(int i)
Matt Caswell0f113f32015-01-22 03:40:55 +0000114{
Matt Caswell59bf4672018-02-19 14:53:01 +0000115 unsigned int a = test_values[i];
116
Rich Salz3304d572017-04-18 14:50:00 -0400117 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 Caswell0f113f32015-01-22 03:40:55 +0000122}
Emilia Kasper5a3d21c2014-08-28 15:33:34 +0200123
Matt Caswell59bf4672018-02-19 14:53:01 +0000124static int test_is_zero_8(int i)
Matt Caswell0f113f32015-01-22 03:40:55 +0000125{
Matt Caswell59bf4672018-02-19 14:53:01 +0000126 unsigned int a = test_values_8[i];
127
Rich Salz3304d572017-04-18 14:50:00 -0400128 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 Caswell0f113f32015-01-22 03:40:55 +0000133}
Emilia Kasper5a3d21c2014-08-28 15:33:34 +0200134
Matt Caswell59bf4672018-02-19 14:53:01 +0000135static int test_is_zero_32(int i)
Matt Caswellbe2ef0e2016-10-25 15:29:35 +0100136{
Matt Caswell59bf4672018-02-19 14:53:01 +0000137 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
146static int test_is_zero_s(int i)
147{
148 size_t a = test_values_s[i];
149
Rich Salz3304d572017-04-18 14:50:00 -0400150 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 Caswellbe2ef0e2016-10-25 15:29:35 +0100155}
Rich Salz3304d572017-04-18 14:50:00 -0400156
Emilia Kasper294d1e32014-08-28 19:43:49 +0200157static int test_select(unsigned int a, unsigned int b)
Matt Caswell0f113f32015-01-22 03:40:55 +0000158{
Rich Salz3304d572017-04-18 14:50:00 -0400159 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 Caswell0f113f32015-01-22 03:40:55 +0000164}
Emilia Kasper294d1e32014-08-28 19:43:49 +0200165
166static int test_select_8(unsigned char a, unsigned char b)
Matt Caswell0f113f32015-01-22 03:40:55 +0000167{
Rich Salz3304d572017-04-18 14:50:00 -0400168 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 Caswell59bf4672018-02-19 14:53:01 +0000175static 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
184static int test_select_s(size_t a, size_t b)
Rich Salz3304d572017-04-18 14:50:00 -0400185{
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 Caswell0f113f32015-01-22 03:40:55 +0000191}
Emilia Kasper294d1e32014-08-28 19:43:49 +0200192
Rich Salz9018f3c2017-06-20 15:21:21 -0400193static 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 Salz12997aa2017-08-15 09:42:38 -0400199 BIO_printf(bio_err, "a=%jx b=%jx got %jx wanted a\n", a, b, selected);
Rich Salz9018f3c2017-06-20 15:21:21 -0400200 return 0;
201 }
202 selected = constant_time_select_64(CONSTTIME_FALSE_64, a, b);
203 if (selected != b) {
Rich Salz12997aa2017-08-15 09:42:38 -0400204 BIO_printf(bio_err, "a=%jx b=%jx got %jx wanted b\n", a, b, selected);
Rich Salz9018f3c2017-06-20 15:21:21 -0400205 return 0;
206 }
207 return 1;
208}
209
Emilia Kasper294d1e32014-08-28 19:43:49 +0200210static int test_select_int(int a, int b)
Matt Caswell0f113f32015-01-22 03:40:55 +0000211{
Rich Salz3304d572017-04-18 14:50:00 -0400212 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 Caswell0f113f32015-01-22 03:40:55 +0000217}
Emilia Kasper455b65d2014-09-04 13:04:42 +0200218
219static int test_eq_int_8(int a, int b)
Matt Caswell0f113f32015-01-22 03:40:55 +0000220{
Rich Salz3304d572017-04-18 14:50:00 -0400221 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 Caswell0f113f32015-01-22 03:40:55 +0000226}
Emilia Kasper294d1e32014-08-28 19:43:49 +0200227
Matt Caswellbe2ef0e2016-10-25 15:29:35 +0100228static int test_eq_s(size_t a, size_t b)
229{
Rich Salz3304d572017-04-18 14:50:00 -0400230 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
237static 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 Caswellbe2ef0e2016-10-25 15:29:35 +0100244}
245
Rich Salz3304d572017-04-18 14:50:00 -0400246static int test_sizeofs(void)
Matt Caswell0f113f32015-01-22 03:40:55 +0000247{
Rich Salz3304d572017-04-18 14:50:00 -0400248 if (!TEST_uint_eq(OSSL_NELEM(test_values), OSSL_NELEM(test_values_s)))
249 return 0;
250 return 1;
251}
Emilia Kasper5a3d21c2014-08-28 15:33:34 +0200252
Rich Salz3304d572017-04-18 14:50:00 -0400253static int test_binops(int i)
254{
255 unsigned int a = test_values[i];
Rich Salz3304d572017-04-18 14:50:00 -0400256 int j;
257 int ret = 1;
Matt Caswellbe2ef0e2016-10-25 15:29:35 +0100258
Rich Salz3304d572017-04-18 14:50:00 -0400259 for (j = 0; j < (int)OSSL_NELEM(test_values); ++j) {
260 unsigned int b = test_values[j];
Rich Salz3304d572017-04-18 14:50:00 -0400261
262 if (!test_select(a, b)
Rich Salz3304d572017-04-18 14:50:00 -0400263 || !test_binary_op(&constant_time_lt, "ct_lt",
264 a, b, a < b)
Rich Salz3304d572017-04-18 14:50:00 -0400265 || !test_binary_op(&constant_time_lt, "constant_time_lt",
266 b, a, b < a)
Rich Salz3304d572017-04-18 14:50:00 -0400267 || !test_binary_op(&constant_time_ge, "constant_time_ge",
268 a, b, a >= b)
Rich Salz3304d572017-04-18 14:50:00 -0400269 || !test_binary_op(&constant_time_ge, "constant_time_ge",
270 b, a, b >= a)
Rich Salz3304d572017-04-18 14:50:00 -0400271 || !test_binary_op(&constant_time_eq, "constant_time_eq",
272 a, b, a == b)
Matt Caswell59bf4672018-02-19 14:53:01 +0000273 || !test_binary_op(&constant_time_eq, "constant_time_eq",
274 b, a, b == a))
275 ret = 0;
276 }
277 return ret;
278}
279
280static 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 Salz3304d572017-04-18 14:50:00 -0400297 || !test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8",
298 a, b, a == b)
Rich Salz3304d572017-04-18 14:50:00 -0400299 || !test_binary_op_8(&constant_time_eq_8, "constant_time_eq_8",
Matt Caswell59bf4672018-02-19 14:53:01 +0000300 b, a, b == a))
Rich Salz3304d572017-04-18 14:50:00 -0400301 ret = 0;
Matt Caswell59bf4672018-02-19 14:53:01 +0000302 }
303 return ret;
304}
305
306static 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 Caswell0f113f32015-01-22 03:40:55 +0000330 }
Rich Salz3304d572017-04-18 14:50:00 -0400331 return ret;
332}
Emilia Kasper294d1e32014-08-28 19:43:49 +0200333
Rich Salz3304d572017-04-18 14:50:00 -0400334static int test_signed(int i)
335{
336 int c = signed_test_values[i];
337 unsigned int j;
338 int ret = 1;
Emilia Kasper294d1e32014-08-28 19:43:49 +0200339
Rich Salz3304d572017-04-18 14:50:00 -0400340 for (j = 0; j < OSSL_NELEM(signed_test_values); ++j) {
341 int d = signed_test_values[j];
Emilia Kasper5a3d21c2014-08-28 15:33:34 +0200342
Rich Salz3304d572017-04-18 14:50:00 -0400343 if (!test_select_int(c, d)
344 || !test_eq_int(c, d)
345 || !test_eq_int_8(c, d))
346 ret = 0;
Matt Caswell0f113f32015-01-22 03:40:55 +0000347 }
Rich Salz3304d572017-04-18 14:50:00 -0400348 return ret;
349}
350
351static 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 Caswell59bf4672018-02-19 14:53:01 +0000366static 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 Salz9018f3c2017-06-20 15:21:21 -0400381static 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 Salz3304d572017-04-18 14:50:00 -0400398
Pauliad887412017-07-18 11:48:27 +1000399int setup_tests(void)
Rich Salz3304d572017-04-18 14:50:00 -0400400{
401 ADD_TEST(test_sizeofs);
Matt Caswell59bf4672018-02-19 14:53:01 +0000402 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 Salz3304d572017-04-18 14:50:00 -0400406 ADD_ALL_TESTS(test_binops, OSSL_NELEM(test_values));
Matt Caswell59bf4672018-02-19 14:53:01 +0000407 ADD_ALL_TESTS(test_binops_8, OSSL_NELEM(test_values_8));
408 ADD_ALL_TESTS(test_binops_s, OSSL_NELEM(test_values_s));
Rich Salz3304d572017-04-18 14:50:00 -0400409 ADD_ALL_TESTS(test_signed, OSSL_NELEM(signed_test_values));
Matt Caswelle3908502017-06-23 10:10:51 +0100410 ADD_ALL_TESTS(test_8values, OSSL_NELEM(test_values_8));
Matt Caswell59bf4672018-02-19 14:53:01 +0000411 ADD_ALL_TESTS(test_32values, OSSL_NELEM(test_values_32));
Matt Caswelle3908502017-06-23 10:10:51 +0100412 ADD_ALL_TESTS(test_64values, OSSL_NELEM(test_values_64));
Pauliad887412017-07-18 11:48:27 +1000413 return 1;
Matt Caswell0f113f32015-01-22 03:40:55 +0000414}