forked from nhorman/rng-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrngd_jitter.c
504 lines (428 loc) · 14.5 KB
/
rngd_jitter.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
/*
* Copyright (c) 2017, Neil Horman
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#define _GNU_SOURCE
#ifndef HAVE_CONFIG_H
#error Invalid or missing autoconf build environment
#endif
#include <pthread.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <setjmp.h>
#include <openssl/conf.h>
#include <openssl/evp.h>
#include <openssl/err.h>
#include "rng-tools-config.h"
#include <jitterentropy.h>
#include "rngd.h"
#include "fips.h"
#include "exits.h"
#include "rngd_entsource.h"
/* Read data from the drng in chunks of 128 bytes for AES scrambling */
#define AES_BLOCK 16
#define CHUNK_SIZE (AES_BLOCK*8) /* 8 parallel streams */
#define RDRAND_ROUNDS 512 /* 512:1 data reduction */
static int num_threads = 0;
struct thread_data {
struct rng *ent_src;
int core_id;
int pipe_fd;
struct rand_data *ec;
size_t buf_sz;
int slpmode;
/* mutex/condition to guard done variable */
pthread_cond_t statecond;
pthread_mutex_t statemtx;
/* done states -1 : init, 0 : ready, 1 : complete */
int done;
struct timespec slptm;
sigjmp_buf jmpbuf;
};
static struct thread_data *tdata;
static pthread_t *threads;
int pipefds[2];
unsigned char *aes_buf;
static char key[AES_BLOCK];
static unsigned char iv_buf[CHUNK_SIZE] __attribute__((aligned(128)));
static int osslencrypt(unsigned char *plaintext, int plaintext_len, unsigned char *key,
unsigned char *iv, unsigned char *ciphertext)
{
EVP_CIPHER_CTX *ctx;
int len;
int ciphertext_len;
/* Create and initialise the context */
if(!(ctx = EVP_CIPHER_CTX_new()))
return 0;
if(1 != EVP_EncryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv))
return 0;
/*
* Provide the message to be encrypted, and obtain the encrypted output.
* EVP_EncryptUpdate can be called multiple times if necessary
*/
if(1 != EVP_EncryptUpdate(ctx, ciphertext, &len, plaintext, plaintext_len))
return 0;
ciphertext_len = len;
/*
* Finalise the encryption. Further ciphertext bytes may be written at
* this stage.
*/
if(1 != EVP_EncryptFinal_ex(ctx, ciphertext + len, &len))
return 0;
ciphertext_len += len;
/* Clean up */
EVP_CIPHER_CTX_free(ctx);
return ciphertext_len;
}
static inline int openssl_mangle(unsigned char *tmp, struct rng *ent_src)
{
int ciphertext_len;
/*
* Buffer for ciphertext. Ensure the buffer is long enough for the
* ciphertext which may be longer than the plaintext, depending on the
* algorithm and mode.
*/
unsigned char ciphertext[CHUNK_SIZE * RDRAND_ROUNDS];
/* Encrypt the plaintext */
ciphertext_len = osslencrypt (tmp, strlen(tmp), key, iv_buf,
ciphertext);
if (!ciphertext_len)
return -1;
memcpy(tmp, ciphertext, strlen(tmp));
return 0;
}
int xread_jitter(void *buf, size_t size, struct rng *ent_src)
{
static int data = 0;
struct thread_data *current = &tdata[data];
ssize_t request;
int rc = 1;
int retry_count = 0;
ssize_t need=size;
char *bptr = buf;
size_t total;
try_again:
while (need) {
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "xread_jitter requests %d bytes from pipe\n", need);
request = read(pipefds[0], &bptr[size-need], need);
if ((request < need) && ent_src->rng_options[JITTER_OPT_USE_AES].int_val) {
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "xread_jitter falls back to AES\n");
/* empty pipe, use AES */
total = 0;
while(need) {
request = (need >= current->buf_sz) ? current->buf_sz : need;
memcpy(buf, &aes_buf[total], request);
openssl_mangle(aes_buf, ent_src);
need -= request;
total += request;
}
rc = 0;
goto out;
} else if (request < need) {
if (request == -1)
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "failed read: %s\n", strerror(errno));
else
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "request of random data returns %ld less than need %ld\n",
request, need);
if (retry_count < ent_src->rng_options[JITTER_OPT_RETRY_COUNT].int_val) {
retry_count++;
nanosleep(¤t->slptm, NULL);
goto try_again;
}
/* Retry count exceeded, fail */
rc = 1;
goto out;
}
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "xread_jitter gets %ld bytes\n", request);
need -= request;
}
rc = 0;
out:
return rc;
}
static inline double elapsed_time(struct timespec *start, struct timespec *end)
{
double delta;
delta = (end->tv_sec - start->tv_sec);
if (start->tv_nsec >= end->tv_nsec)
delta = (delta * 1.0e9) + (start->tv_nsec - end->tv_nsec);
else
delta = ((delta + 1) * 1.0e9) + (end->tv_nsec - start->tv_nsec);
delta = delta / 1.0e9;
return delta;
}
static inline void update_sleep_time(struct thread_data *me,
struct timespec *start,
struct timespec *end)
{
/*
* if slpmode is anything other than -1
* it will be a positive integer representing
* the fixed time to sleep on retry
* so if its not negative one, we just stick
* with whatever the init routine set up
*/
if (me->slpmode != -1)
return;
me->slptm.tv_sec = (end->tv_sec - start->tv_sec)/2;
if (start->tv_nsec >= end->tv_nsec)
me->slptm.tv_nsec = start->tv_nsec - end->tv_nsec;
else
me->slptm.tv_nsec = end->tv_nsec - start->tv_nsec;
me->slptm.tv_nsec /= 2;
}
void jitter_thread_exit_signal(int signum)
{
pthread_t self = pthread_self();
int i;
for(i=0;i<num_threads;i++) {
if (threads[i] == self)
siglongjmp(tdata[i].jmpbuf, 1);
}
}
static void *thread_entropy_task(void *data)
{
cpu_set_t cpuset;
ssize_t ret;
struct thread_data *me = data;
char *tmpbuf;
struct timespec start, end;
int written;
/* STARTUP */
/*
* Set our timeout value
* -1 means adaptive, i.e. sleep for the last
* recorded execution time of a jitter read
* otherwise sleep for slpmode seconds
*/
if (me->slpmode != -1) {
me->slptm.tv_sec = me->slpmode;
me->slptm.tv_nsec = 0;
}
/* fill initial entropy */
CPU_ZERO(&cpuset);
CPU_SET(me->core_id, &cpuset);
pthread_setaffinity_np(pthread_self(), CPU_ALLOC_SIZE(me->core_id+1), &cpuset);
tmpbuf = malloc(me->buf_sz);
if (!tmpbuf) {
message_entsrc(me->ent_src,LOG_DAEMON|LOG_DEBUG, "Unable to allocate temp buffer on cpu %d\n", me->core_id);
goto out;
}
/*
* A signal will call siglongjmp and return us here when we exit
*/
if (sigsetjmp(me->jmpbuf, 1))
goto out_interrupt;
/* Indicate we are ready */
pthread_mutex_lock(&me->statemtx);
me->done = 0;
pthread_cond_signal(&me->statecond);
pthread_mutex_unlock(&me->statemtx);
/* Now go to sleep until there is more work to do */
for(;;) {
message_entsrc(me->ent_src,LOG_DAEMON|LOG_DEBUG, "JITTER thread on cpu %d wakes up for refill\n", me->core_id);
/* We are awake because we need to refil the buffer */
clock_gettime(CLOCK_REALTIME, &start);
ret = jent_read_entropy(me->ec, tmpbuf, me->buf_sz);
clock_gettime(CLOCK_REALTIME, &end);
message_entsrc(me->ent_src,LOG_DEBUG|LOG_ERR, "jent_read_entropy time on cpu %d is %.12e sec\n",
me->core_id, elapsed_time(&start, &end));
if (ret < 0)
message_entsrc(me->ent_src,LOG_DAEMON|LOG_DEBUG, "JITTER THREAD_FAILS TO GATHER ENTROPY\n");
/* Need to hold the mutex to update the sleep time */
update_sleep_time(me, &start, &end);
/* Write to pipe */
written = 0;
while(written != me->buf_sz) {
message_entsrc(me->ent_src,LOG_DAEMON|LOG_DEBUG, "Writing to pipe\n");
ret = write(me->pipe_fd, &tmpbuf[written], me->buf_sz - written);
if ((ret < 0) && (errno != EBADF))
message_entsrc(me->ent_src,LOG_DAEMON|LOG_WARNING, "Error on pipe write: %s\n", strerror(errno));
message_entsrc(me->ent_src,LOG_DAEMON|LOG_DEBUG, "DONE Writing to pipe with return %ld\n", ret);
written += ret;
}
}
out_interrupt:
free(tmpbuf);
out:
pthread_mutex_lock(&me->statemtx);
me->done = 1;
pthread_cond_signal(&me->statecond);
pthread_mutex_unlock(&me->statemtx);
pthread_exit(NULL);
}
int validate_jitter_options(struct rng *ent_src)
{
int threads = ent_src->rng_options[JITTER_OPT_THREADS].int_val;
int buf_sz = ent_src->rng_options[JITTER_OPT_BUF_SZ].int_val;
int refill = ent_src->rng_options[JITTER_OPT_REFILL].int_val;
int delay = ent_src->rng_options[JITTER_OPT_RETRY_DELAY].int_val;
int rcount = ent_src->rng_options[JITTER_OPT_RETRY_COUNT].int_val;
/* Need at least one thread to do this work */
if (!threads) {
message_entsrc(ent_src,LOG_DAEMON|LOG_ERR, "JITTER Requires a minimum of 1 thread, setting threads to 1\n");
ent_src->rng_options[JITTER_OPT_THREADS].int_val = 1;
}
/* buf_sz should be the same size or larger than the refill threshold */
if (buf_sz < refill) {
message_entsrc(ent_src,LOG_DAEMON|LOG_ERR, "JITTER buffer size must be larger than refill threshold\n");
return 1;
}
if (rcount < 0) {
message_entsrc(ent_src,LOG_DAEMON|LOG_ERR, "JITTER retry delay and count must be equal to or greater than 0\n");
return 1;
}
if ((delay < -1) || (delay == 0)) {
message_entsrc(ent_src,LOG_DAEMON|LOG_ERR, "JITTER retry delay must be -1 or larger than 0\n");
return 1;
}
return 0;
}
/*
* Init JITTER
*/
int init_jitter_entropy_source(struct rng *ent_src)
{
cpu_set_t *cpus;
size_t cpusize;
int i;
int size;
int flags;
int core_id = 0;
signal(SIGUSR1, jitter_thread_exit_signal);
int ret = jent_entropy_init();
if(ret) {
message_entsrc(ent_src,LOG_DAEMON|LOG_WARNING, "JITTER rng fails with code %d\n", ret);
return 1;
}
if (validate_jitter_options(ent_src))
return 1;
if (pipe(pipefds)) {
message_entsrc(ent_src,LOG_DAEMON|LOG_WARNING, "JITTER rng can't open pipe: %s\n", strerror(errno));
return 1;
}
/*
* Determine the number of threads we want to run
* 2 threads for two or more cpus
* 4 threads for four or more cpus
*/
i = sysconf(_SC_NPROCESSORS_CONF);
cpus = CPU_ALLOC(i);
cpusize = CPU_ALLOC_SIZE(i);
CPU_ZERO_S(cpusize, cpus);
if (sched_getaffinity(0, cpusize, cpus) < 0) {
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "Can not determine affinity of process, defaulting to 1 thread\n");
CPU_SET(0,cpus);
}
num_threads = CPU_COUNT_S(cpusize, cpus);
if (num_threads >= ent_src->rng_options[JITTER_OPT_THREADS].int_val)
num_threads = ent_src->rng_options[JITTER_OPT_THREADS].int_val;
else
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "Limiting thread count to %d active cpus\n", num_threads);
size = num_threads * ent_src->rng_options[JITTER_OPT_BUF_SZ].int_val * 1.5;
if (fcntl(pipefds[1], F_SETPIPE_SZ, size) == -1) {
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "Failed to set pipe size to %d bytes: %s\n",
size, strerror(errno));
close(pipefds[1]);
close(pipefds[0]);
CPU_FREE(cpus);
return 1;
}
tdata = calloc(num_threads, sizeof(struct thread_data));
threads = calloc(num_threads, sizeof(pthread_t));
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "JITTER starts %d threads\n", num_threads);
/*
* Allocate and init the thread data that we need
*/
for (i=0; i < num_threads; i++) {
tdata[i].ent_src = ent_src;
while (!CPU_ISSET_S(core_id, cpusize, cpus))
core_id++;
tdata[i].core_id = core_id;
tdata[i].pipe_fd = pipefds[1];
pthread_cond_init(&tdata[i].statecond, NULL);
pthread_mutex_init(&tdata[i].statemtx, NULL);
tdata[i].done = -1;
core_id++;
tdata[i].buf_sz = ent_src->rng_options[JITTER_OPT_BUF_SZ].int_val;
tdata[i].ec = jent_entropy_collector_alloc(1, 0);
tdata[i].slpmode = ent_src->rng_options[JITTER_OPT_RETRY_DELAY].int_val;
pthread_create(&threads[i], NULL, thread_entropy_task, &tdata[i]);
}
CPU_FREE(cpus);
cpus = NULL;
/* Make sure all our threads are doing their jobs */
for (i=0; i < num_threads; i++) {
/* wait until the done state transitions from negative to zero or more */
pthread_mutex_lock(&tdata[i].statemtx);
if (tdata[i].done < 0)
pthread_cond_wait(&tdata[i].statecond, &tdata[i].statemtx);
if (tdata[i].done == 1)
/* we failed during startup */
message_entsrc(ent_src, LOG_DAEMON|LOG_DEBUG, "CPU thread %d failed\n", i);
else
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "CPU Thread %d is ready\n", i);
pthread_mutex_unlock(&tdata[i].statemtx);
}
flags = fcntl(pipefds[0], F_GETFL, 0);
flags |= O_NONBLOCK;
fcntl(pipefds[0], F_SETFL, &flags);
if (ent_src->rng_options[JITTER_OPT_USE_AES].int_val) {
/*
* Temporarily disable aes so we don't try to use it during init
*/
message_entsrc(ent_src,LOG_CONS|LOG_INFO, "Initializing AES buffer\n");
aes_buf = malloc(tdata[0].buf_sz);
ent_src->rng_options[JITTER_OPT_USE_AES].int_val = 0;
if (xread_jitter(key, AES_BLOCK, ent_src)) {
message_entsrc(ent_src,LOG_CONS|LOG_INFO, "Unable to obtain AES key, disabling AES in JITTER source\n");
} else if (xread_jitter(iv_buf, CHUNK_SIZE, ent_src)) {
message_entsrc(ent_src,LOG_CONS|LOG_INFO, "Unable to obtain iv_buffer, disabling AES in JITTER source\n");
} else {
/* re-enable AES */
ent_src->rng_options[JITTER_OPT_USE_AES].int_val = 1;
}
xread_jitter(aes_buf, tdata[0].buf_sz, ent_src);
}
message_entsrc(ent_src,LOG_DAEMON|LOG_INFO, "Enabling JITTER rng support\n");
return 0;
}
void close_jitter_entropy_source(struct rng *ent_src)
{
int i;
/* Close the pipes to prevent further writing */
close(pipefds[1]);
/* And wait for completion of each thread */
for (i=0; i < num_threads; i++) {
/* Signal the threads to exit */
pthread_kill(threads[i], SIGUSR1);
/* and wait for them to shutdown */
pthread_mutex_lock(&tdata[i].statemtx);
if (!tdata[i].done) {
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "Checking on done for thread %d\n", i);
pthread_cond_wait(&tdata[i].statecond, &tdata[i].statemtx);
}
pthread_mutex_unlock(&tdata[i].statemtx);
message_entsrc(ent_src,LOG_DAEMON|LOG_DEBUG, "Closing thread %d\n", tdata[i].core_id);
pthread_join(threads[i], NULL);
jent_entropy_collector_free(tdata[i].ec);
}
close(pipefds[0]);
free(tdata);
free(threads);
return;
}