]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/internal/constant_time.h
Make ossl_gen_deterministic_nonce_rfc6979() constant time
[thirdparty/openssl.git] / include / internal / constant_time.h
CommitLineData
21dcbebc 1/*
a28d06f3 2 * Copyright 2014-2021 The OpenSSL Project Authors. All Rights Reserved.
5a3d21c0 3 *
48f4ad77 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
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
5a3d21c0
EK
8 */
9
ae4186b0
DMSP
10#ifndef OSSL_INTERNAL_CONSTANT_TIME_H
11# define OSSL_INTERNAL_CONSTANT_TIME_H
3a111aad 12# pragma once
5a3d21c0 13
2688e7a0 14# include <stdlib.h>
e0fa6324 15# include <string.h>
80e0ecbf 16# include <openssl/e_os2.h> /* For 'ossl_inline' */
5a3d21c0 17
1d97c843 18/*-
294d1e36 19 * The boolean methods return a bitmask of all ones (0xff...f) for true
5a3d21c0
EK
20 * and 0 for false. This is useful for choosing a value based on the result
21 * of a conditional in constant time. For example,
9018f3ce
RS
22 * if (a < b) {
23 * c = a;
24 * } else {
25 * c = b;
26 * }
5a3d21c0 27 * can be written as
9018f3ce
RS
28 * unsigned int lt = constant_time_lt(a, b);
29 * c = constant_time_select(lt, a, b);
5a3d21c0
EK
30 */
31
b12169ee 32/* Returns the given value with the MSB copied to all the other bits. */
80e0ecbf 33static ossl_inline unsigned int constant_time_msb(unsigned int a);
e0fa6324
MC
34/* Convenience method for uint32_t. */
35static ossl_inline uint32_t constant_time_msb_32(uint32_t a);
9018f3ce
RS
36/* Convenience method for uint64_t. */
37static ossl_inline uint64_t constant_time_msb_64(uint64_t a);
5a3d21c0 38
9018f3ce 39/* Returns 0xff..f if a < b and 0 otherwise. */
80e0ecbf
DSH
40static ossl_inline unsigned int constant_time_lt(unsigned int a,
41 unsigned int b);
5a3d21c0 42/* Convenience method for getting an 8-bit mask. */
80e0ecbf
DSH
43static ossl_inline unsigned char constant_time_lt_8(unsigned int a,
44 unsigned int b);
9018f3ce
RS
45/* Convenience method for uint64_t. */
46static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b);
5a3d21c0 47
9018f3ce 48/* Returns 0xff..f if a >= b and 0 otherwise. */
80e0ecbf
DSH
49static ossl_inline unsigned int constant_time_ge(unsigned int a,
50 unsigned int b);
5a3d21c0 51/* Convenience method for getting an 8-bit mask. */
80e0ecbf
DSH
52static ossl_inline unsigned char constant_time_ge_8(unsigned int a,
53 unsigned int b);
5a3d21c0 54
9018f3ce 55/* Returns 0xff..f if a == 0 and 0 otherwise. */
80e0ecbf 56static ossl_inline unsigned int constant_time_is_zero(unsigned int a);
5a3d21c0 57/* Convenience method for getting an 8-bit mask. */
80e0ecbf 58static ossl_inline unsigned char constant_time_is_zero_8(unsigned int a);
e0fa6324
MC
59/* Convenience method for getting a 32-bit mask. */
60static ossl_inline uint32_t constant_time_is_zero_32(uint32_t a);
5a3d21c0 61
9018f3ce 62/* Returns 0xff..f if a == b and 0 otherwise. */
80e0ecbf
DSH
63static ossl_inline unsigned int constant_time_eq(unsigned int a,
64 unsigned int b);
5a3d21c0 65/* Convenience method for getting an 8-bit mask. */
80e0ecbf
DSH
66static ossl_inline unsigned char constant_time_eq_8(unsigned int a,
67 unsigned int b);
455b65df 68/* Signed integers. */
80e0ecbf 69static ossl_inline unsigned int constant_time_eq_int(int a, int b);
455b65df 70/* Convenience method for getting an 8-bit mask. */
80e0ecbf 71static ossl_inline unsigned char constant_time_eq_int_8(int a, int b);
455b65df 72
1d97c843 73/*-
294d1e36
EK
74 * Returns (mask & a) | (~mask & b).
75 *
76 * When |mask| is all 1s or all 0s (as returned by the methods above),
77 * the select methods return either |a| (if |mask| is nonzero) or |b|
78 * (if |mask| is zero).
79 */
80e0ecbf
DSH
80static ossl_inline unsigned int constant_time_select(unsigned int mask,
81 unsigned int a,
82 unsigned int b);
294d1e36 83/* Convenience method for unsigned chars. */
80e0ecbf
DSH
84static ossl_inline unsigned char constant_time_select_8(unsigned char mask,
85 unsigned char a,
86 unsigned char b);
e0fa6324
MC
87
88/* Convenience method for uint32_t. */
89static ossl_inline uint32_t constant_time_select_32(uint32_t mask, uint32_t a,
90 uint32_t b);
91
9018f3ce
RS
92/* Convenience method for uint64_t. */
93static ossl_inline uint64_t constant_time_select_64(uint64_t mask, uint64_t a,
94 uint64_t b);
294d1e36 95/* Convenience method for signed integers. */
80e0ecbf
DSH
96static ossl_inline int constant_time_select_int(unsigned int mask, int a,
97 int b);
294d1e36 98
9018f3ce 99
80e0ecbf 100static ossl_inline unsigned int constant_time_msb(unsigned int a)
0f113f3e
MC
101{
102 return 0 - (a >> (sizeof(a) * 8 - 1));
103}
5a3d21c0 104
e0fa6324
MC
105
106static ossl_inline uint32_t constant_time_msb_32(uint32_t a)
107{
108 return 0 - (a >> 31);
109}
110
9018f3ce
RS
111static ossl_inline uint64_t constant_time_msb_64(uint64_t a)
112{
113 return 0 - (a >> 63);
114}
115
2688e7a0
MC
116static ossl_inline size_t constant_time_msb_s(size_t a)
117{
118 return 0 - (a >> (sizeof(a) * 8 - 1));
119}
120
80e0ecbf
DSH
121static ossl_inline unsigned int constant_time_lt(unsigned int a,
122 unsigned int b)
0f113f3e
MC
123{
124 return constant_time_msb(a ^ ((a ^ b) | ((a - b) ^ b)));
125}
5a3d21c0 126
2688e7a0
MC
127static ossl_inline size_t constant_time_lt_s(size_t a, size_t b)
128{
129 return constant_time_msb_s(a ^ ((a ^ b) | ((a - b) ^ b)));
130}
131
80e0ecbf
DSH
132static ossl_inline unsigned char constant_time_lt_8(unsigned int a,
133 unsigned int b)
0f113f3e 134{
26a7d938 135 return (unsigned char)constant_time_lt(a, b);
0f113f3e 136}
5a3d21c0 137
9018f3ce
RS
138static ossl_inline uint64_t constant_time_lt_64(uint64_t a, uint64_t b)
139{
140 return constant_time_msb_64(a ^ ((a ^ b) | ((a - b) ^ b)));
141}
142
d7d1bdcb
TM
143#ifdef BN_ULONG
144static ossl_inline BN_ULONG constant_time_msb_bn(BN_ULONG a)
145{
146 return 0 - (a >> (sizeof(a) * 8 - 1));
147}
148
149static ossl_inline BN_ULONG constant_time_lt_bn(BN_ULONG a, BN_ULONG b)
150{
151 return constant_time_msb_bn(a ^ ((a ^ b) | ((a - b) ^ b)));
152}
2d285fa8
TM
153
154static ossl_inline BN_ULONG constant_time_is_zero_bn(BN_ULONG a)
155{
156 return constant_time_msb_bn(~a & (a - 1));
157}
158
159static ossl_inline BN_ULONG constant_time_eq_bn(BN_ULONG a,
160 BN_ULONG b)
161{
162 return constant_time_is_zero_bn(a ^ b);
163}
d7d1bdcb
TM
164#endif
165
80e0ecbf
DSH
166static ossl_inline unsigned int constant_time_ge(unsigned int a,
167 unsigned int b)
0f113f3e
MC
168{
169 return ~constant_time_lt(a, b);
170}
5a3d21c0 171
2688e7a0
MC
172static ossl_inline size_t constant_time_ge_s(size_t a, size_t b)
173{
174 return ~constant_time_lt_s(a, b);
175}
176
80e0ecbf
DSH
177static ossl_inline unsigned char constant_time_ge_8(unsigned int a,
178 unsigned int b)
0f113f3e 179{
26a7d938 180 return (unsigned char)constant_time_ge(a, b);
0f113f3e 181}
5a3d21c0 182
2688e7a0
MC
183static ossl_inline unsigned char constant_time_ge_8_s(size_t a, size_t b)
184{
26a7d938 185 return (unsigned char)constant_time_ge_s(a, b);
2688e7a0
MC
186}
187
80e0ecbf 188static ossl_inline unsigned int constant_time_is_zero(unsigned int a)
0f113f3e
MC
189{
190 return constant_time_msb(~a & (a - 1));
191}
5a3d21c0 192
2688e7a0
MC
193static ossl_inline size_t constant_time_is_zero_s(size_t a)
194{
195 return constant_time_msb_s(~a & (a - 1));
196}
197
80e0ecbf 198static ossl_inline unsigned char constant_time_is_zero_8(unsigned int a)
0f113f3e 199{
26a7d938 200 return (unsigned char)constant_time_is_zero(a);
0f113f3e 201}
5a3d21c0 202
e0fa6324
MC
203static ossl_inline uint32_t constant_time_is_zero_32(uint32_t a)
204{
205 return constant_time_msb_32(~a & (a - 1));
206}
207
ceaa6b31
AI
208static ossl_inline uint64_t constant_time_is_zero_64(uint64_t a)
209{
210 return constant_time_msb_64(~a & (a - 1));
211}
212
80e0ecbf
DSH
213static ossl_inline unsigned int constant_time_eq(unsigned int a,
214 unsigned int b)
0f113f3e
MC
215{
216 return constant_time_is_zero(a ^ b);
217}
5a3d21c0 218
2688e7a0
MC
219static ossl_inline size_t constant_time_eq_s(size_t a, size_t b)
220{
221 return constant_time_is_zero_s(a ^ b);
222}
223
80e0ecbf
DSH
224static ossl_inline unsigned char constant_time_eq_8(unsigned int a,
225 unsigned int b)
0f113f3e 226{
26a7d938 227 return (unsigned char)constant_time_eq(a, b);
0f113f3e 228}
5a3d21c0 229
2688e7a0
MC
230static ossl_inline unsigned char constant_time_eq_8_s(size_t a, size_t b)
231{
26a7d938 232 return (unsigned char)constant_time_eq_s(a, b);
2688e7a0
MC
233}
234
80e0ecbf 235static ossl_inline unsigned int constant_time_eq_int(int a, int b)
0f113f3e
MC
236{
237 return constant_time_eq((unsigned)(a), (unsigned)(b));
238}
455b65df 239
80e0ecbf 240static ossl_inline unsigned char constant_time_eq_int_8(int a, int b)
0f113f3e
MC
241{
242 return constant_time_eq_8((unsigned)(a), (unsigned)(b));
243}
455b65df 244
04edd688
BE
245/*
246 * Returns the value unmodified, but avoids optimizations.
247 * The barriers prevent the compiler from narrowing down the
248 * possible value range of the mask and ~mask in the select
249 * statements, which avoids the recognition of the select
250 * and turning it into a conditional load or branch.
251 */
252static ossl_inline unsigned int value_barrier(unsigned int a)
253{
254#if !defined(OPENSSL_NO_ASM) && defined(__GNUC__)
255 unsigned int r;
256 __asm__("" : "=r"(r) : "0"(a));
257#else
258 volatile unsigned int r = a;
259#endif
260 return r;
261}
262
263/* Convenience method for uint32_t. */
264static ossl_inline uint32_t value_barrier_32(uint32_t a)
265{
266#if !defined(OPENSSL_NO_ASM) && defined(__GNUC__)
267 uint32_t r;
268 __asm__("" : "=r"(r) : "0"(a));
269#else
270 volatile uint32_t r = a;
271#endif
272 return r;
273}
274
275/* Convenience method for uint64_t. */
276static ossl_inline uint64_t value_barrier_64(uint64_t a)
277{
278#if !defined(OPENSSL_NO_ASM) && defined(__GNUC__)
279 uint64_t r;
280 __asm__("" : "=r"(r) : "0"(a));
281#else
282 volatile uint64_t r = a;
283#endif
284 return r;
285}
286
287/* Convenience method for size_t. */
288static ossl_inline size_t value_barrier_s(size_t a)
289{
290#if !defined(OPENSSL_NO_ASM) && defined(__GNUC__)
291 size_t r;
292 __asm__("" : "=r"(r) : "0"(a));
293#else
294 volatile size_t r = a;
295#endif
296 return r;
297}
298
80e0ecbf
DSH
299static ossl_inline unsigned int constant_time_select(unsigned int mask,
300 unsigned int a,
301 unsigned int b)
0f113f3e 302{
04edd688 303 return (value_barrier(mask) & a) | (value_barrier(~mask) & b);
0f113f3e 304}
294d1e36 305
2688e7a0
MC
306static ossl_inline size_t constant_time_select_s(size_t mask,
307 size_t a,
308 size_t b)
309{
04edd688 310 return (value_barrier_s(mask) & a) | (value_barrier_s(~mask) & b);
2688e7a0
MC
311}
312
80e0ecbf
DSH
313static ossl_inline unsigned char constant_time_select_8(unsigned char mask,
314 unsigned char a,
315 unsigned char b)
0f113f3e 316{
26a7d938 317 return (unsigned char)constant_time_select(mask, a, b);
0f113f3e 318}
294d1e36 319
80e0ecbf
DSH
320static ossl_inline int constant_time_select_int(unsigned int mask, int a,
321 int b)
0f113f3e 322{
26a7d938 323 return (int)constant_time_select(mask, (unsigned)(a), (unsigned)(b));
0f113f3e 324}
294d1e36 325
2688e7a0
MC
326static ossl_inline int constant_time_select_int_s(size_t mask, int a, int b)
327{
26a7d938
K
328 return (int)constant_time_select((unsigned)mask, (unsigned)(a),
329 (unsigned)(b));
2688e7a0
MC
330}
331
e0fa6324
MC
332static ossl_inline uint32_t constant_time_select_32(uint32_t mask, uint32_t a,
333 uint32_t b)
334{
04edd688 335 return (value_barrier_32(mask) & a) | (value_barrier_32(~mask) & b);
e0fa6324
MC
336}
337
9018f3ce
RS
338static ossl_inline uint64_t constant_time_select_64(uint64_t mask, uint64_t a,
339 uint64_t b)
340{
04edd688 341 return (value_barrier_64(mask) & a) | (value_barrier_64(~mask) & b);
9018f3ce
RS
342}
343
e0fa6324
MC
344/*
345 * mask must be 0xFFFFFFFF or 0x00000000.
346 *
347 * if (mask) {
348 * uint32_t tmp = *a;
349 *
350 * *a = *b;
351 * *b = tmp;
352 * }
353 */
354static ossl_inline void constant_time_cond_swap_32(uint32_t mask, uint32_t *a,
355 uint32_t *b)
356{
357 uint32_t xor = *a ^ *b;
358
359 xor &= mask;
360 *a ^= xor;
361 *b ^= xor;
362}
363
364/*
365 * mask must be 0xFFFFFFFF or 0x00000000.
366 *
367 * if (mask) {
368 * uint64_t tmp = *a;
369 *
370 * *a = *b;
371 * *b = tmp;
372 * }
373 */
374static ossl_inline void constant_time_cond_swap_64(uint64_t mask, uint64_t *a,
375 uint64_t *b)
376{
377 uint64_t xor = *a ^ *b;
378
379 xor &= mask;
380 *a ^= xor;
381 *b ^= xor;
382}
383
677c4a01
PS
384/*
385 * mask must be 0xFF or 0x00.
386 * "constant time" is per len.
387 *
388 * if (mask) {
389 * unsigned char tmp[len];
390 *
391 * memcpy(tmp, a, len);
392 * memcpy(a, b);
393 * memcpy(b, tmp);
394 * }
395 */
396static ossl_inline void constant_time_cond_swap_buff(unsigned char mask,
397 unsigned char *a,
398 unsigned char *b,
399 size_t len)
400{
401 size_t i;
402 unsigned char tmp;
403
404 for (i = 0; i < len; i++) {
405 tmp = a[i] ^ b[i];
406 tmp &= mask;
407 a[i] ^= tmp;
408 b[i] ^= tmp;
409 }
410}
411
e0fa6324
MC
412/*
413 * table is a two dimensional array of bytes. Each row has rowsize elements.
414 * Copies row number idx into out. rowsize and numrows are not considered
415 * private.
416 */
417static ossl_inline void constant_time_lookup(void *out,
418 const void *table,
419 size_t rowsize,
420 size_t numrows,
421 size_t idx)
422{
423 size_t i, j;
424 const unsigned char *tablec = (const unsigned char *)table;
425 unsigned char *outc = (unsigned char *)out;
426 unsigned char mask;
427
428 memset(out, 0, rowsize);
429
430 /* Note idx may underflow - but that is well defined */
431 for (i = 0; i < numrows; i++, idx--) {
432 mask = (unsigned char)constant_time_is_zero_s(idx);
433 for (j = 0; j < rowsize; j++)
434 *(outc + j) |= constant_time_select_8(mask, *(tablec++), 0);
435 }
436}
437
f658a3b6
AP
438/*
439 * Expected usage pattern is to unconditionally set error and then
440 * wipe it if there was no actual error. |clear| is 1 or 0.
441 */
442void err_clear_last_constant_time(int clear);
443
ae4186b0 444#endif /* OSSL_INTERNAL_CONSTANT_TIME_H */