-
Notifications
You must be signed in to change notification settings - Fork 0
/
fortuna.c
242 lines (189 loc) · 6.36 KB
/
fortuna.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/*
Copyright (c) 2009 Thomas Dixon
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Big thanks to GNU Crypto, LibTomCrypt and Jean-Luc Cooke's kernel
patch for clearing up some implementation questions, and of course
Ferguson and Schneier for designing Fortuna.
*/
#include "fortuna.h"
#include <stdlib.h>
#include <string.h>
void _fortuna_increment_iv(fortuna_state *fs)
{
int i;
for (i = 0; i < AES_BLOCK_SIZE; i++)
if (++fs->iv[i])
break;
}
int _fortuna_is_seeded(fortuna_state *fs)
{
int i;
for (i = 0; i < AES_BLOCK_SIZE; i++)
if (fs->iv[i] > 0)
return FORTUNA_OK;
return FORTUNA_NOT_SEEDED;
}
inline time_t _get_time_in_ms()
{
struct timeval tv;
gettimeofday(&tv, NULL);
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
}
int _fortuna_reseed(fortuna_state *fs)
{
int i;
volatile unsigned char temp[SHA256_DIGEST_LENGTH];
SHA256_CTX ctx;
fs->reseed_count++;
SHA256_Init(&ctx);
/* include P_k every 2^k reseeds */
for (i = 0; i < FORTUNA_POOL_COUNT; i++)
{
if (i == 0 || ((fs->reseed_count >> i) & 1) == 0)
{
SHA256_Final(temp, &fs->pools[i]);
SHA256_Update(&ctx, temp, SHA256_DIGEST_LENGTH);
SHA256_Init(&fs->pools[i]);
}
else
break;
}
memset(temp, 0, SHA256_DIGEST_LENGTH);
for (i = 0; i < SHA256_DIGEST_LENGTH; i++)
if (temp[i] != 0)
return FORTUNA_ERROR;
SHA256_Update(&ctx, fs->key, FORTUNA_AES_KEY_SIZE);
SHA256_Final(fs->key, &ctx);
if (AES_set_encrypt_key(fs->key, FORTUNA_AES_KEY_SIZE << 3,
&fs->working_key) != FORTUNA_OK)
return FORTUNA_OPENSSL_ERROR;
_fortuna_increment_iv(fs);
fs->pool0_len = 0;
fs->reseed_time = _get_time_in_ms();
return FORTUNA_OK;
}
int fortuna_init(fortuna_state *fs)
{
int i;
#ifdef FORTUNA_USE_THREADS
pthread_mutexattr_t attr;
#endif
for (i = 0; i < FORTUNA_POOL_COUNT; i++)
SHA256_Init(&fs->pools[i]);
fs->pool_index = fs->pool0_len = fs->reseed_count = fs->reseed_time = 0;
memset(fs->iv, 0, AES_BLOCK_SIZE);
for (i = 0; i < AES_BLOCK_SIZE; i++)
if (fs->iv[i] != 0)
return FORTUNA_ERROR;
memset(fs->key, 0, FORTUNA_AES_KEY_SIZE);
for (i = 0; i < FORTUNA_AES_KEY_SIZE; i++)
if (fs->key[i] != 0)
return FORTUNA_ERROR;
#ifdef FORTUNA_USE_THREADS
pthread_mutexattr_init(&attr);
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
pthread_mutex_init(&fs->mutex, &attr);
pthread_mutexattr_destroy(&attr);
#endif
return FORTUNA_OK;
}
int fortuna_end(fortuna_state *fs)
{
volatile unsigned char temp[SHA256_DIGEST_LENGTH];
int i;
FORTUNA_MUTEX_LOCK(&fs->mutex);
for (i = 0; i < FORTUNA_POOL_COUNT; i++)
SHA256_Final(temp, &fs->pools[i]);
FORTUNA_MUTEX_UNLOCK(&fs->mutex);
memset(temp, 0, SHA256_DIGEST_LENGTH);
for (i = 0; i < SHA256_DIGEST_LENGTH; i++)
if (temp[i] != 0)
return FORTUNA_ERROR;
return FORTUNA_OK;
}
int fortuna_add_event(fortuna_state *fs, const void *in, unsigned long len)
{
int use;
FORTUNA_MUTEX_LOCK(&fs->mutex);
while(len) {
SHA256_Update(&fs->pools[fs->pool_index], &len, sizeof(len));
use = len > 32 ? 32 : len;
SHA256_Update(&fs->pools[fs->pool_index], in, len);
in += use;
len -= use;
if(fs->pool_index == 0)
fs->pool0_len += use;
fortuna_read(fs, &fs->pool_index, sizeof(fs->pool_index));
fs->pool_index = (fs->pool_index + 1) % FORTUNA_POOL_COUNT;
}
FORTUNA_MUTEX_UNLOCK(&fs->mutex);
return FORTUNA_OK;
}
int fortuna_read(fortuna_state *fs, void *out_, unsigned long len)
{
unsigned char *out,
temp[16];
unsigned long temp_len;
int error;
FORTUNA_MUTEX_LOCK(&fs->mutex);
out = (unsigned char *)out_;
/* Or should we generate a FORTUNA_LIMIT_EXCEEDED error here? */
len = (len > FORTUNA_OUTPUT_LIMIT) ? FORTUNA_OUTPUT_LIMIT : len;
if (fs->pool0_len >= FORTUNA_MIN_POOL_SIZE
&& (_get_time_in_ms() - fs->reseed_time) >= FORTUNA_RESEED_INTERVAL)
{
if ((error = _fortuna_reseed(fs)) != FORTUNA_OK)
{
FORTUNA_MUTEX_UNLOCK(&fs->mutex);
return error;
}
}
if ((error = _fortuna_is_seeded(fs)) != FORTUNA_OK)
{
FORTUNA_MUTEX_UNLOCK(&fs->mutex);
return error;
}
temp_len = len;
while (temp_len >= AES_BLOCK_SIZE)
{
AES_encrypt(fs->iv, out, &fs->working_key);
out += AES_BLOCK_SIZE;
temp_len -= AES_BLOCK_SIZE;
_fortuna_increment_iv(fs);
}
if (temp_len > 0)
{
AES_encrypt(fs->iv, temp, &fs->working_key);
memcpy(out, temp, temp_len);
_fortuna_increment_iv(fs);
}
AES_encrypt(fs->iv, fs->key, &fs->working_key);
_fortuna_increment_iv(fs);
AES_encrypt(fs->iv, fs->key + 16, &fs->working_key);
_fortuna_increment_iv(fs);
if (AES_set_encrypt_key(fs->key, FORTUNA_AES_KEY_SIZE << 3, &
fs->working_key) != FORTUNA_OK)
{
FORTUNA_MUTEX_UNLOCK(&fs->mutex);
return FORTUNA_OPENSSL_ERROR;
}
FORTUNA_MUTEX_UNLOCK(&fs->mutex);
return len;
}