blob: 5e91f40d8426127f436bc59685f1d364440cfbdb [file] [log] [blame]
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001/**
2 * \brief HAVEGE: HArdware Volatile Entropy Gathering and Expansion
Paul Bakker5121ce52009-01-03 21:22:43 +00003 *
Bence Szépkútia2947ac2020-08-19 16:37:36 +02004 * Copyright The Mbed TLS Contributors
Bence Szépkútif744bd72020-06-05 13:02:18 +02005 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
6 *
7 * This file is provided under the Apache License 2.0, or the
8 * GNU General Public License v2.0 or later.
9 *
10 * **********
11 * Apache License 2.0:
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020012 *
13 * Licensed under the Apache License, Version 2.0 (the "License"); you may
14 * not use this file except in compliance with the License.
15 * You may obtain a copy of the License at
16 *
17 * http://www.apache.org/licenses/LICENSE-2.0
18 *
19 * Unless required by applicable law or agreed to in writing, software
20 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
21 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * See the License for the specific language governing permissions and
23 * limitations under the License.
Paul Bakkerb96f1542010-07-18 20:36:00 +000024 *
Bence Szépkútif744bd72020-06-05 13:02:18 +020025 * **********
26 *
27 * **********
28 * GNU General Public License v2.0 or later:
29 *
30 * This program is free software; you can redistribute it and/or modify
31 * it under the terms of the GNU General Public License as published by
32 * the Free Software Foundation; either version 2 of the License, or
33 * (at your option) any later version.
34 *
35 * This program is distributed in the hope that it will be useful,
36 * but WITHOUT ANY WARRANTY; without even the implied warranty of
37 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 * GNU General Public License for more details.
39 *
40 * You should have received a copy of the GNU General Public License along
41 * with this program; if not, write to the Free Software Foundation, Inc.,
42 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
43 *
44 * **********
Paul Bakker5121ce52009-01-03 21:22:43 +000045 */
46/*
47 * The HAVEGE RNG was designed by Andre Seznec in 2002.
48 *
49 * http://www.irisa.fr/caps/projects/hipsor/publi.php
50 *
51 * Contact: seznec(at)irisa_dot_fr - orocheco(at)irisa_dot_fr
52 */
53
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020054#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000055#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020056#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020057#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020058#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000059
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020060#if defined(MBEDTLS_HAVEGE_C)
Paul Bakker5121ce52009-01-03 21:22:43 +000061
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000062#include "mbedtls/havege.h"
63#include "mbedtls/timing.h"
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -050064#include "mbedtls/platform_util.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000065
Gilles Peskine04659a02019-06-17 15:12:51 +020066#include <limits.h>
Paul Bakker23986e52011-04-24 08:57:21 +000067#include <string.h>
Paul Bakker23986e52011-04-24 08:57:21 +000068
Gilles Peskine04659a02019-06-17 15:12:51 +020069/* If int isn't capable of storing 2^32 distinct values, the code of this
70 * module may cause a processor trap or a miscalculation. If int is more
71 * than 32 bits, the code may not calculate the intended values. */
72#if INT_MIN + 1 != -0x7fffffff
73#error "The HAVEGE module requires int to be exactly 32 bits, with INT_MIN = -2^31."
74#endif
75#if UINT_MAX != 0xffffffff
76#error "The HAVEGE module requires unsigned to be exactly 32 bits."
77#endif
78
Paul Bakker5121ce52009-01-03 21:22:43 +000079/* ------------------------------------------------------------------------
80 * On average, one iteration accesses two 8-word blocks in the havege WALK
81 * table, and generates 16 words in the RES array.
82 *
83 * The data read in the WALK table is updated and permuted after each use.
84 * The result of the hardware clock counter read is used for this update.
85 *
86 * 25 conditional tests are present. The conditional tests are grouped in
87 * two nested groups of 12 conditional tests and 1 test that controls the
88 * permutation; on average, there should be 6 tests executed and 3 of them
89 * should be mispredicted.
90 * ------------------------------------------------------------------------
91 */
92
Gilles Peskine31a4ba72019-06-17 15:01:08 +020093#define SWAP(X,Y) { unsigned *T = (X); (X) = (Y); (Y) = T; }
Paul Bakker5121ce52009-01-03 21:22:43 +000094
95#define TST1_ENTER if( PTEST & 1 ) { PTEST ^= 3; PTEST >>= 1;
96#define TST2_ENTER if( PTEST & 1 ) { PTEST ^= 3; PTEST >>= 1;
97
98#define TST1_LEAVE U1++; }
99#define TST2_LEAVE U2++; }
100
101#define ONE_ITERATION \
102 \
103 PTEST = PT1 >> 20; \
104 \
105 TST1_ENTER TST1_ENTER TST1_ENTER TST1_ENTER \
106 TST1_ENTER TST1_ENTER TST1_ENTER TST1_ENTER \
107 TST1_ENTER TST1_ENTER TST1_ENTER TST1_ENTER \
108 \
109 TST1_LEAVE TST1_LEAVE TST1_LEAVE TST1_LEAVE \
110 TST1_LEAVE TST1_LEAVE TST1_LEAVE TST1_LEAVE \
111 TST1_LEAVE TST1_LEAVE TST1_LEAVE TST1_LEAVE \
112 \
113 PTX = (PT1 >> 18) & 7; \
114 PT1 &= 0x1FFF; \
115 PT2 &= 0x1FFF; \
Gilles Peskine31a4ba72019-06-17 15:01:08 +0200116 CLK = (unsigned) mbedtls_timing_hardclock(); \
Paul Bakker5121ce52009-01-03 21:22:43 +0000117 \
118 i = 0; \
119 A = &WALK[PT1 ]; RES[i++] ^= *A; \
120 B = &WALK[PT2 ]; RES[i++] ^= *B; \
121 C = &WALK[PT1 ^ 1]; RES[i++] ^= *C; \
122 D = &WALK[PT2 ^ 4]; RES[i++] ^= *D; \
123 \
124 IN = (*A >> (1)) ^ (*A << (31)) ^ CLK; \
125 *A = (*B >> (2)) ^ (*B << (30)) ^ CLK; \
126 *B = IN ^ U1; \
127 *C = (*C >> (3)) ^ (*C << (29)) ^ CLK; \
128 *D = (*D >> (4)) ^ (*D << (28)) ^ CLK; \
129 \
130 A = &WALK[PT1 ^ 2]; RES[i++] ^= *A; \
131 B = &WALK[PT2 ^ 2]; RES[i++] ^= *B; \
132 C = &WALK[PT1 ^ 3]; RES[i++] ^= *C; \
133 D = &WALK[PT2 ^ 6]; RES[i++] ^= *D; \
134 \
135 if( PTEST & 1 ) SWAP( A, C ); \
136 \
137 IN = (*A >> (5)) ^ (*A << (27)) ^ CLK; \
138 *A = (*B >> (6)) ^ (*B << (26)) ^ CLK; \
Gilles Peskine31a4ba72019-06-17 15:01:08 +0200139 *B = IN; CLK = (unsigned) mbedtls_timing_hardclock(); \
Paul Bakker5121ce52009-01-03 21:22:43 +0000140 *C = (*C >> (7)) ^ (*C << (25)) ^ CLK; \
141 *D = (*D >> (8)) ^ (*D << (24)) ^ CLK; \
142 \
143 A = &WALK[PT1 ^ 4]; \
144 B = &WALK[PT2 ^ 1]; \
145 \
146 PTEST = PT2 >> 1; \
147 \
148 PT2 = (RES[(i - 8) ^ PTY] ^ WALK[PT2 ^ PTY ^ 7]); \
149 PT2 = ((PT2 & 0x1FFF) & (~8)) ^ ((PT1 ^ 8) & 0x8); \
150 PTY = (PT2 >> 10) & 7; \
151 \
152 TST2_ENTER TST2_ENTER TST2_ENTER TST2_ENTER \
153 TST2_ENTER TST2_ENTER TST2_ENTER TST2_ENTER \
154 TST2_ENTER TST2_ENTER TST2_ENTER TST2_ENTER \
155 \
156 TST2_LEAVE TST2_LEAVE TST2_LEAVE TST2_LEAVE \
157 TST2_LEAVE TST2_LEAVE TST2_LEAVE TST2_LEAVE \
158 TST2_LEAVE TST2_LEAVE TST2_LEAVE TST2_LEAVE \
159 \
160 C = &WALK[PT1 ^ 5]; \
161 D = &WALK[PT2 ^ 5]; \
162 \
163 RES[i++] ^= *A; \
164 RES[i++] ^= *B; \
165 RES[i++] ^= *C; \
166 RES[i++] ^= *D; \
167 \
168 IN = (*A >> ( 9)) ^ (*A << (23)) ^ CLK; \
169 *A = (*B >> (10)) ^ (*B << (22)) ^ CLK; \
170 *B = IN ^ U2; \
171 *C = (*C >> (11)) ^ (*C << (21)) ^ CLK; \
172 *D = (*D >> (12)) ^ (*D << (20)) ^ CLK; \
173 \
174 A = &WALK[PT1 ^ 6]; RES[i++] ^= *A; \
175 B = &WALK[PT2 ^ 3]; RES[i++] ^= *B; \
176 C = &WALK[PT1 ^ 7]; RES[i++] ^= *C; \
177 D = &WALK[PT2 ^ 7]; RES[i++] ^= *D; \
178 \
179 IN = (*A >> (13)) ^ (*A << (19)) ^ CLK; \
180 *A = (*B >> (14)) ^ (*B << (18)) ^ CLK; \
181 *B = IN; \
182 *C = (*C >> (15)) ^ (*C << (17)) ^ CLK; \
183 *D = (*D >> (16)) ^ (*D << (16)) ^ CLK; \
184 \
Paul Bakker66d5d072014-06-17 16:39:18 +0200185 PT1 = ( RES[( i - 8 ) ^ PTX] ^ \
Paul Bakker5121ce52009-01-03 21:22:43 +0000186 WALK[PT1 ^ PTX ^ 7] ) & (~1); \
187 PT1 ^= (PT2 ^ 0x10) & 0x10; \
188 \
189 for( n++, i = 0; i < 16; i++ ) \
Gilles Peskine31a4ba72019-06-17 15:01:08 +0200190 POOL[n % MBEDTLS_HAVEGE_COLLECT_SIZE] ^= RES[i];
Paul Bakker5121ce52009-01-03 21:22:43 +0000191
192/*
193 * Entropy gathering function
194 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200195static void havege_fill( mbedtls_havege_state *hs )
Paul Bakker5121ce52009-01-03 21:22:43 +0000196{
Gilles Peskine31a4ba72019-06-17 15:01:08 +0200197 unsigned i, n = 0;
198 unsigned U1, U2, *A, *B, *C, *D;
199 unsigned PT1, PT2, *WALK, *POOL, RES[16];
200 unsigned PTX, PTY, CLK, PTEST, IN;
Paul Bakker5121ce52009-01-03 21:22:43 +0000201
Gilles Peskine31a4ba72019-06-17 15:01:08 +0200202 WALK = (unsigned *) hs->WALK;
203 POOL = (unsigned *) hs->pool;
Paul Bakker5121ce52009-01-03 21:22:43 +0000204 PT1 = hs->PT1;
205 PT2 = hs->PT2;
206
207 PTX = U1 = 0;
208 PTY = U2 = 0;
209
Simon Butcher65b1fa62016-05-23 23:18:26 +0100210 (void)PTX;
211
Paul Bakker5121ce52009-01-03 21:22:43 +0000212 memset( RES, 0, sizeof( RES ) );
213
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200214 while( n < MBEDTLS_HAVEGE_COLLECT_SIZE * 4 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000215 {
216 ONE_ITERATION
217 ONE_ITERATION
218 ONE_ITERATION
219 ONE_ITERATION
220 }
221
222 hs->PT1 = PT1;
223 hs->PT2 = PT2;
224
225 hs->offset[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200226 hs->offset[1] = MBEDTLS_HAVEGE_COLLECT_SIZE / 2;
Paul Bakker5121ce52009-01-03 21:22:43 +0000227}
228
229/*
230 * HAVEGE initialization
231 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200232void mbedtls_havege_init( mbedtls_havege_state *hs )
Paul Bakker5121ce52009-01-03 21:22:43 +0000233{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200234 memset( hs, 0, sizeof( mbedtls_havege_state ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000235
236 havege_fill( hs );
237}
238
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200239void mbedtls_havege_free( mbedtls_havege_state *hs )
Paul Bakkera317a982014-06-18 16:44:11 +0200240{
241 if( hs == NULL )
242 return;
243
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -0500244 mbedtls_platform_zeroize( hs, sizeof( mbedtls_havege_state ) );
Paul Bakkera317a982014-06-18 16:44:11 +0200245}
246
Paul Bakker5121ce52009-01-03 21:22:43 +0000247/*
248 * HAVEGE rand function
249 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200250int mbedtls_havege_random( void *p_rng, unsigned char *buf, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000251{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000252 int val;
253 size_t use_len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200254 mbedtls_havege_state *hs = (mbedtls_havege_state *) p_rng;
Paul Bakkera3d195c2011-11-27 21:07:34 +0000255 unsigned char *p = buf;
Paul Bakker5121ce52009-01-03 21:22:43 +0000256
Paul Bakkera3d195c2011-11-27 21:07:34 +0000257 while( len > 0 )
258 {
259 use_len = len;
260 if( use_len > sizeof(int) )
261 use_len = sizeof(int);
Paul Bakker5121ce52009-01-03 21:22:43 +0000262
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200263 if( hs->offset[1] >= MBEDTLS_HAVEGE_COLLECT_SIZE )
Paul Bakkera3d195c2011-11-27 21:07:34 +0000264 havege_fill( hs );
Paul Bakker5121ce52009-01-03 21:22:43 +0000265
Paul Bakkera3d195c2011-11-27 21:07:34 +0000266 val = hs->pool[hs->offset[0]++];
267 val ^= hs->pool[hs->offset[1]++];
268
269 memcpy( p, &val, use_len );
Paul Bakker9af723c2014-05-01 13:03:14 +0200270
Paul Bakkera3d195c2011-11-27 21:07:34 +0000271 len -= use_len;
272 p += use_len;
273 }
274
275 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000276}
277
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200278#endif /* MBEDTLS_HAVEGE_C */