File: pool.cpp

package info (click to toggle)
entropybroker 2.8-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,644 kB
  • ctags: 1,591
  • sloc: cpp: 14,384; sh: 934; makefile: 191; java: 148; perl: 12
file content (374 lines) | stat: -rw-r--r-- 9,198 bytes parent folder | download | duplicates (5)
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
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <math.h>
#include <unistd.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string>
#include <vector>
#include <sys/mman.h>
#include <arpa/inet.h>

#include "math.h"
#include "hasher.h"
#include "hasher_type.h"
#include "stirrer.h"
#include "stirrer_type.h"
#include "random_source.h"
#include "pool_crypto.h"
#include "pool.h"
#include "error.h"
#include "kernel_prng_rw.h"
#include "log.h"
#include "utils.h"

pool::pool(int new_pool_size_bytes, bit_count_estimator *bce_in, pool_crypto *pc) : bce(bce_in)
{
	pool_size_bytes = new_pool_size_bytes;

	entropy_pool = reinterpret_cast<unsigned char *>(malloc_locked(pool_size_bytes));
	bits_in_pool = 0;

	pool_init(pc);
}

pool::pool(int pool_nr, FILE *fh, bit_count_estimator *bce_in, pool_crypto *pc) : bce(bce_in)
{
	if (!get_int(fh, &bits_in_pool))
		error_exit("loading pool: short read (bit count)");

	if (bits_in_pool < 0 || bits_in_pool >= 4194304) // more than 4MB is ridiculous
		error_exit("Corrupt dump? bits in pool is strange! %d", bits_in_pool);

	if (!get_int(fh, &pool_size_bytes))
		error_exit("loading pool: short read (size)");

	if (pool_size_bytes < 0 || pool_size_bytes >= 4194304) // more than 4MB is ridiculous
		error_exit("Corrupt dump? pool size is strange! %d", pool_size_bytes);

	entropy_pool = reinterpret_cast<unsigned char *>(malloc_locked(pool_size_bytes));

	int rc = -1;
	if ((rc = fread(entropy_pool, 1, pool_size_bytes, fh)) != pool_size_bytes)
		error_exit("Dump is corrupt: are you using disk-pools from an entropybroker version older than v1.1? (expected %d, got %d)", pool_size_bytes, rc);

	dolog(LOG_DEBUG, "Pool %d: loaded %d bits from cache", pool_nr, bits_in_pool);

	pool_init(pc);
}

int pool::get_file_bit_count(std::string file_name)
{
	FILE *fh = fopen(file_name.c_str(), "rb");
	if (!fh)
		error_exit("Failed to open %s", file_name.c_str());

	int bit_sum = 0;
	while(!feof(fh))
	{
		int bits, bytes;

		if (!get_int(fh, &bits))
			break;

		if (!get_int(fh, &bytes))
			error_exit("Short read in %s", file_name.c_str());

		bit_sum += bits;

		if (fseek(fh, bytes, SEEK_CUR) == -1)
			error_exit("Error seeking in %s", file_name.c_str());
	}

	fclose(fh);

	return bit_sum;
}

void pool::pool_init(pool_crypto *pc)
{
	pthread_check(pthread_mutex_init(&lck, &global_mutex_attr), "pthread_mutex_init");
	pthread_check(pthread_cond_init(&cond, NULL), "pthread_cond_init");

	entropy_pool_temp = reinterpret_cast<unsigned char *>(malloc_locked(pool_size_bytes));

	ivec_size = pc -> get_stirrer() -> get_ivec_size();
	ivec = reinterpret_cast<unsigned char *>(malloc_locked(ivec_size));
	pc -> get_random_source() -> get(ivec, ivec_size);

	hash_len = pc -> get_hasher() -> get_hash_size();
	hash = reinterpret_cast<unsigned char *>(malloc_locked(hash_len));

	memset(&state, 0x00, sizeof state);
}

pool::~pool()
{
	free_locked(entropy_pool, pool_size_bytes);
	free_locked(entropy_pool_temp, pool_size_bytes);
	free_locked(ivec, ivec_size);
	free_locked(hash, hash_len);

	pthread_check(pthread_cond_destroy(&cond), "pthread_cond_destroy");
	pthread_check(pthread_mutex_destroy(&lck), "pthread_mutex_destroy");
}

pthread_cond_t * pool::lock_object()
{
	int rc = -1;
	if ((rc = pthread_mutex_trylock(&lck)))
	{
		if (rc == EBUSY)
			return &cond;

		errno = rc;
		error_exit("pthread_mutex_trylock failed");
	}

	return NULL;
}

pthread_cond_t * pool::timed_lock_object(double max_time)
{
	my_assert(max_time > 0.0);
	struct timespec abs_time;

	while(max_time > 0.0)
	{
		pthread_testcancel();

		clock_gettime(CLOCK_REALTIME, &abs_time);

		double cur_time = std::min(max_time, 1.0);
		abs_time.tv_sec += cur_time;
		abs_time.tv_nsec += (cur_time - floor(cur_time)) * 1000000000L;

		if (abs_time.tv_nsec >= 1000000000L)
		{
			abs_time.tv_sec++;
			abs_time.tv_nsec -= 1000000000L;
		}

		int rc = -1;
		rc = pthread_mutex_timedlock(&lck, &abs_time);
		if (rc == 0)
			return NULL;

		if (rc != ETIMEDOUT)
		{
			errno = rc;
			error_exit("pthread_mutex_timedlock failed");
		}

		max_time -= cur_time;
	}

	return &cond;
}

void pool::unlock_object()
{
	my_mutex_unlock(&lck);

	pthread_check(pthread_cond_signal(&cond), "pthread_cond_signal");
}

void pool::dump(FILE *fh)
{
	if (bits_in_pool > 0)
	{
		unsigned char val_buffer[8];

		val_buffer[0] = (bits_in_pool >> 24) & 255;
		val_buffer[1] = (bits_in_pool >> 16) & 255;
		val_buffer[2] = (bits_in_pool >>  8) & 255;
		val_buffer[3] = (bits_in_pool      ) & 255;
		val_buffer[4] = (pool_size_bytes >> 24) & 255;
		val_buffer[5] = (pool_size_bytes >> 16) & 255;
		val_buffer[6] = (pool_size_bytes >>  8) & 255;
		val_buffer[7] = (pool_size_bytes      ) & 255;

		if (fwrite(val_buffer, 1, 8, fh) != 8)
			error_exit("Cannot write to dump (1)");

		if (fwrite(entropy_pool, 1, pool_size_bytes, fh) != (size_t)pool_size_bytes)
			error_exit("Cannot write to dump (2)");
	}
}

int pool::add_entropy_data(unsigned char *entropy_data, int n_bytes_in, pool_crypto *pc, int is_n_bits)
{
	my_assert(n_bytes_in > 0);

	// this implementation is described in RFC 4086 (June 2005) chapter 6.2.1, second paragraph

	pc -> get_random_source() -> get(ivec, ivec_size);

	int n_added = is_n_bits;
	if (n_added == -1)
		n_added = bce -> get_bit_count(entropy_data, n_bytes_in);

	while(n_bytes_in > 0)
	{
		// when adding data to the pool, we encrypt the pool using blowfish with
		// the entropy-data as the encryption-key. blowfish allows keysizes with
		// a maximum of 448 bits which is 56 bytes
		int cur_to_add = std::min(n_bytes_in, pc -> get_stirrer() -> get_stir_size());

		pc -> get_stirrer() -> do_stir(ivec, entropy_pool, pool_size_bytes, entropy_data, cur_to_add, entropy_pool_temp, true);

		entropy_data += cur_to_add;
		n_bytes_in -= cur_to_add;
	}

	bits_in_pool += n_added;
	if (bits_in_pool > pool_size_bytes * 8)
		bits_in_pool = pool_size_bytes * 8;

	return n_added;
}

int pool::get_n_bits_in_pool() const
{
	return bits_in_pool;
}

int pool::get_entropy_data(unsigned char *entropy_data, int n_bytes_requested, bool prng_ok, pool_crypto *pc)
{
	my_assert(n_bytes_requested > 0);

	// make sure the hash length is equal or less than 448 bits which is the maximum
	// blowfish key size
	int n_given, half_hash_len = hash_len / 2;;

	pc -> get_random_source() -> get(ivec, ivec_size);

	n_given = n_bytes_requested;
	if (!prng_ok)
		n_given = std::min(n_given, bits_in_pool / 8);
	n_given = std::min(n_given, half_hash_len);

	if (n_given > 0)
	{
		int loop;

		pc -> get_hasher() -> do_hash(entropy_pool, pool_size_bytes, hash);

		bits_in_pool -= (n_given * 8);
		if (bits_in_pool < 0)
			bits_in_pool = 0;

		// if the hash is bigger than what we can stir in: fold it
		unsigned char *dummy_hash_p = hash;
		int stir_size = pc -> get_stirrer() -> get_stir_size(), index = 0;
		while(index < hash_len)
		{
			int cur_hash_n = std::min(hash_len - index, stir_size);

			pc -> get_stirrer() -> do_stir(ivec, entropy_pool, pool_size_bytes, dummy_hash_p, cur_hash_n, entropy_pool_temp, false);

			dummy_hash_p += cur_hash_n;
			index += cur_hash_n;
		}

		// fold into half
		for(loop=0; loop<half_hash_len; loop++)
			hash[loop] ^= hash[loop + half_hash_len];
		memcpy(entropy_data, hash, n_given);
	}

	return n_given;
}

int pool::get_get_size() const
{
	return hash_len / 2;
}

int pool::get_get_size_in_bits() const
{
	return get_get_size() * 8;
}

int pool::get_pool_size() const
{
	return pool_size_bytes * 8;
}

int pool::get_pool_size_bytes() const
{
	return pool_size_bytes;
}

bool pool::is_full() const
{
	return bits_in_pool == pool_size_bytes * 8;
}

bool pool::is_almost_full() const
{
	return (pool_size_bytes * 8 - bits_in_pool) < get_get_size_in_bits();
}

/* taken from random driver from linux-kernel */
int pool::add_event(double ts, unsigned char *event_data, int n_event_data, pool_crypto *pc)
{
	int n_bits_added;
	double delta, delta2, delta3;

	delta = ts - state.last_time;
	state.last_time = ts;

	delta2 = delta - state.last_delta;
	state.last_delta = delta;

	delta3 = delta2 - state.last_delta2;
	state.last_delta2 = delta2;

	if (delta < 0)
		delta = -delta;
	if (delta2 < 0)
		delta2 = -delta2;
	if (delta3 < 0)
		delta3 = -delta3;
	if (delta > delta2)
		delta = delta2;
	if (delta > delta3)
		delta = delta3;

	if (delta == 0)
		n_bits_added = 0;
	else
		n_bits_added = std::max(0, std::min(MAX_EVENT_BITS, int(log(delta) / log(2.0))));

	bits_in_pool += n_bits_added;
	if (bits_in_pool > (pool_size_bytes * 8))
		bits_in_pool = (pool_size_bytes * 8);

	pc -> get_random_source() -> get(ivec, ivec_size);

	pc -> get_stirrer() -> do_stir(ivec, entropy_pool, pool_size_bytes, (unsigned char *)&ts, sizeof ts, entropy_pool_temp, true);

	while(n_event_data > 0)
	{
		int cur_n_event_data = std::min(n_event_data, pc -> get_stirrer() -> get_stir_size());

		pc -> get_stirrer() -> do_stir(ivec, entropy_pool, pool_size_bytes, event_data, cur_n_event_data, entropy_pool_temp, true);

		event_data += cur_n_event_data;
		n_event_data -= cur_n_event_data;
	}

	return n_bits_added;
}

unsigned char * pool::expose_contents()
{
	bits_in_pool = 0;

	return entropy_pool;
}