File: hc_protocol.cpp

package info (click to toggle)
entropybroker 2.9-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,600 kB
  • sloc: cpp: 14,386; sh: 934; makefile: 188; java: 148; perl: 12
file content (507 lines) | stat: -rw-r--r-- 15,301 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
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
504
505
506
507
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <vector>
#include <string>
#include <map>
#include <stdio.h>

#include "error.h"
#include "random_source.h"
#include "log.h"
#include "math.h"
#include "hasher.h"
#include "stirrer.h"
#include "fips140.h"
#include "hasher_type.h"
#include "stirrer_type.h"
#include "pool_crypto.h"
#include "pool.h"
#include "statistics.h"
#include "statistics_global.h"
#include "statistics_user.h"
#include "users.h"
#include "encrypt_stream.h"
#include "config.h"
#include "scc.h"
#include "pools.h"
#include "utils.h"
#include "signals.h"
#include "protocol.h"
#include "auth.h"
#include "handle_client.h"
#include "hc_protocol.h"

int send_denied_empty(int fd, config_t *config)
{
	int seconds = config -> default_sleep_when_pools_empty; // & default_max_sleep_when_pools_empty
	unsigned char buffer[4 + 4];

	make_msg(buffer, 9000, seconds);

	return WRITE_TO(fd, buffer, 8, config -> communication_timeout) == 8 ? 0 : -1;
}

int send_denied_quota(int fd, config_t *config)
{
	unsigned char buffer[4 + 4];

	// FIXME use a time which is calculated with the incoming data rate
	make_msg(buffer, 9002, config -> reset_counters_interval);

	return WRITE_TO(fd, buffer, 8, config -> communication_timeout) == 8 ? 0 : -1;
}

int send_denied_full(int fd, config_t *config, std::string host)
{
	unsigned char buffer[4 + 4];
	int seconds = config -> default_sleep_time_when_pools_full;

	make_msg(buffer, 9001, seconds);

	dolog(LOG_INFO, "denied|%s all pools full, sleep of %d seconds", host.c_str(), seconds);

	if (WRITE_TO(fd, buffer, 8, config -> communication_timeout) != 8)
		return -1;

	return 0;
}

int send_accepted_while_full(int fd, statistics *stats, config_t *config)
{
	unsigned char buffer[4 + 4];

	make_msg(buffer, 9003, config -> default_sleep_time_when_pools_full);

	if (WRITE_TO(fd, buffer, 8, config -> communication_timeout) != 8)
		return -1;

	return 0;
}

int send_got_data(int fd, pools *ppools, config_t *config)
{
	unsigned char buffer[4 + 4];

	// data is an estimate; it can be different anyway as other clients may come first
	make_msg(buffer, 9, std::min(9999, ppools -> get_bit_sum(config -> communication_timeout))); // 0009

	return WRITE_TO(fd, buffer, 8, config -> communication_timeout) == 8 ? 0 : -1;
}

int send_need_data(int fd, config_t *config)
{
	unsigned char buffer[4 + 4];

	make_msg(buffer, 10, 0); // 0010 0000

	return WRITE_TO(fd, buffer, 8, config -> communication_timeout) == 8 ? 0 : -1;
}

void update_client_fips140_scc(client_t *p, unsigned char *data, int n)
{
	for(int index=0; index<n; index++)
	{
		p -> pfips140 -> add(data[index]);
		p -> pscc -> add(data[index]);
	}
}

int do_client_get(client_t *client, bool *no_bits)
{
	client -> last_get_message = get_ts();

	*no_bits = false;

	unsigned char n_bits[4] = { 255 };
	if (READ_TO(client -> socket_fd, n_bits, 4, client -> config -> communication_timeout) != 4)
	{
		dolog(LOG_INFO, "get|%s short read while retrieving number of bits to send", client -> host.c_str());
		client -> pu -> inc_network_error(client -> username);
		client -> stats_glob -> inc_network_error();
		return -1;
	}

	int cur_n_bits = uchar_to_uint(n_bits);
	if (cur_n_bits == 0)
	{
		dolog(LOG_INFO, "get|%s 0 bits requested", client -> host.c_str());
		client -> pu -> inc_protocol_error(client -> username);
		client -> stats_glob -> inc_protocol_error();
		return -1;
	}
	if (cur_n_bits > client -> config -> max_get_put_size)
	{
		dolog(LOG_WARNING, "get|%s client requested more than %d bits: %d", client -> host.c_str(), client -> config -> max_get_put_size, cur_n_bits);
		client -> pu -> inc_protocol_error(client -> username);
		client -> stats_glob -> inc_protocol_error();
		return -1;
	}

	dolog(LOG_DEBUG, "get|%s requested %d bits", client -> host.c_str(), cur_n_bits);

	cur_n_bits = client -> pu -> calc_max_allowance(client -> username, get_ts(), cur_n_bits);

	dolog(LOG_DEBUG, "get|%s is allowed to now receive %d bits", client -> host.c_str(), cur_n_bits);
	if (cur_n_bits < 8)
	{
		client -> pu -> cancel_allowance(client -> username);

		client -> pu -> inc_n_times_quota(client -> username);
		client -> stats_glob -> inc_n_times_quota();

		int rc = send_denied_quota(client -> socket_fd, client -> config);
		if (rc == -1)
		{
			client -> pu -> inc_network_error(client -> username);
			client -> stats_glob -> inc_network_error();
		}
		return rc;
	}

	int cur_n_bytes = (cur_n_bits + 7) / 8;

	dolog(LOG_DEBUG, "get|%s memory allocated, retrieving bits", client -> host.c_str());

	unsigned char *temp_buffer = NULL;
	cur_n_bits = client -> ppools -> get_bits_from_pools(cur_n_bits, &temp_buffer, client -> allow_prng, client -> ignore_rngtest_fips140, client -> output_fips140, client -> ignore_rngtest_scc, client -> output_scc, double(client -> config -> communication_timeout) * 0.9, client -> pc);
	if (cur_n_bits == 0)
	{
		free_locked(temp_buffer, cur_n_bytes + 1);

		client -> pu -> cancel_allowance(client -> username);

		dolog(LOG_WARNING, "get|%s no bits in pools, sending deny", client -> host.c_str());
		*no_bits = true;

		client -> pu -> inc_n_times_empty(client -> username);
		client -> stats_glob -> inc_n_times_empty();

		int rc = send_denied_empty(client -> socket_fd, client -> config);
		if (rc == -1)
		{
			client -> pu -> inc_network_error(client -> username);
			client -> stats_glob -> inc_network_error();
		}
		return rc;
	}

	if (cur_n_bits < 0)
		error_exit("internal error: %d < 0", cur_n_bits);
	cur_n_bytes = (cur_n_bits + 7) / 8;
	dolog(LOG_DEBUG, "get|%s got %d bits from pool", client -> host.c_str(), cur_n_bits);

	client -> pu -> use_allowance(client -> username, cur_n_bits);

	int hash_len = client -> mac_hasher -> get_hash_size();
	int out_len = cur_n_bytes + hash_len;
#ifdef CRYPTO_DEBUG
	printf("bytes: %d\n", out_len);
#endif
	unsigned char *ent_buffer_in = reinterpret_cast<unsigned char *>(malloc_locked(out_len));

	memcpy(&ent_buffer_in[hash_len], temp_buffer, cur_n_bytes);
	memset(ent_buffer_in, 0x00, hash_len);

	client -> mac_hasher -> do_hash(&ent_buffer_in[hash_len], cur_n_bytes, ent_buffer_in);

#ifdef CRYPTO_DEBUG
	printf("send: "); hexdump(ent_buffer_in, hash_len);
	printf("data: "); hexdump(&ent_buffer_in[hash_len], 8);
#endif

	unsigned char *ent_buffer = reinterpret_cast<unsigned char *>(malloc(out_len));
	if (!ent_buffer)
		error_exit("error allocating %d bytes of memory", out_len);

	// encrypt data
	client -> stream_cipher -> encrypt(ent_buffer_in, out_len, ent_buffer);
#ifdef CRYPTO_DEBUG
	printf("encr: "); hexdump(ent_buffer, 16);
#endif

	// update statistics for accounting
	my_mutex_lock(&client -> stats_lck);
	update_client_fips140_scc(client, temp_buffer, cur_n_bytes);
	client -> bits_sent += cur_n_bits;
	my_mutex_unlock(&client -> stats_lck);

	client -> pu -> track_sents(client -> username, cur_n_bits);
	client -> stats_glob -> track_sents(cur_n_bits);

	free_locked(temp_buffer, cur_n_bytes + 1);

	int transmit_size = 4 + 4 + out_len;
	unsigned char *output_buffer = reinterpret_cast<unsigned char *>(malloc(transmit_size));
	if (!output_buffer)
		error_exit("error allocating %d bytes of memory", cur_n_bytes);
	make_msg(output_buffer, 2, cur_n_bits); // 0002

	dolog(LOG_DEBUG, "get|%s transmit size: %d, msg: %s", client -> host.c_str(), transmit_size, output_buffer);

	memcpy(&output_buffer[8], ent_buffer, out_len);

	free(ent_buffer);

	free_locked(ent_buffer_in, cur_n_bytes);

	int rc = 0;
	if (WRITE_TO(client -> socket_fd, output_buffer, transmit_size, client -> config -> communication_timeout) != transmit_size)
	{
		dolog(LOG_INFO, "%s error while sending data to client", client -> host.c_str());

		client -> pu -> inc_network_error(client -> username);
		client -> stats_glob -> inc_network_error();

		rc = -1;
	}

	free(output_buffer);

	return rc;
}

int do_client_put(client_t *client, bool *new_bits, bool *is_full)
{
	client -> last_put_message = get_ts();

	bool warn_all_full = false;

	*new_bits = false;

	if (client -> ppools -> all_pools_full(double(client -> config -> communication_timeout) * 0.9))
	{
		*is_full = true;

		double last_submit_ago = get_ts() - client -> stats_glob -> get_last_put_msg_ts();
		bool full_allow_interval_submit = last_submit_ago >= client -> config -> when_pools_full_allow_submit_interval;

		if (!(client -> config -> add_entropy_even_if_all_full || full_allow_interval_submit))
		{
			char dummy_buffer[4];

			client -> pu -> inc_n_times_full(client -> username);
			client -> stats_glob -> inc_n_times_full();

			// flush number of bits
			if (READ_TO(client -> socket_fd, dummy_buffer, 4, client -> config -> communication_timeout) != 4)
			{
				client -> pu -> inc_network_error(client -> username);
				client -> stats_glob -> inc_network_error();
				return -1;
			}

			int rc = send_denied_full(client -> socket_fd, client -> config, client -> host);
			if (rc == -1)
			{
				client -> pu -> inc_network_error(client -> username);
				client -> stats_glob -> inc_network_error();
			}

			return rc;
		}

		if (full_allow_interval_submit)
			dolog(LOG_DEBUG, "put|%s(%s) allow submit when full, after %f seconds", client -> host.c_str(), client -> type.c_str(), last_submit_ago);

		client -> pu -> inc_submit_while_full(client -> username);
		client -> stats_glob -> inc_submit_while_full();

		warn_all_full = true;
	}

	unsigned char n_bits[4];
	if (READ_TO(client -> socket_fd, n_bits, 4, client -> config -> communication_timeout) != 4)
	{
		dolog(LOG_INFO, "put|%s(%s) short read while retrieving number of bits to recv", client -> host.c_str(), client -> type.c_str());
		client -> pu -> inc_network_error(client -> username);
		client -> stats_glob -> inc_network_error();
		return -1;
	}

	int cur_n_bits = uchar_to_uint(n_bits);
	if (cur_n_bits <= 0)
	{
		dolog(LOG_INFO, "put|%s(%s) 0 bits offered", client -> host.c_str(), client -> type.c_str());
		client -> pu -> inc_protocol_error(client -> username);
		client -> stats_glob -> inc_protocol_error();
		return -1;
	}
	if (cur_n_bits > client -> config -> max_get_put_size)
	{
		dolog(LOG_WARNING, "put|%s(%s) client wants to put more than %d bits: %d", client -> host.c_str(), client -> type.c_str(), client -> config -> max_get_put_size, cur_n_bits);
		cur_n_bits = client -> config -> max_get_put_size;
	}

	unsigned char msg[4 + 4];
	if (warn_all_full)
		make_msg(msg, 9003, cur_n_bits);
	else
		make_msg(msg, 1, cur_n_bits); // 0001
	if (WRITE_TO(client -> socket_fd, msg, 8, client -> config -> communication_timeout) != 8)
	{
		dolog(LOG_INFO, "put|%s short write while sending ack", client -> host.c_str());
		client -> pu -> inc_network_error(client -> username);
		client -> stats_glob -> inc_network_error();
		return -1;
	}

	int cur_n_bytes = (cur_n_bits + 7) / 8;

	int hash_len = client -> mac_hasher -> get_hash_size();
	int in_len = cur_n_bytes + hash_len;
	unsigned char *buffer_in = reinterpret_cast<unsigned char *>(malloc(in_len));
	if (!buffer_in)
		error_exit("%s error allocating %d bytes of memory", client -> host.c_str(), in_len);

	if (READ_TO(client -> socket_fd, buffer_in, in_len, client -> config -> communication_timeout) != in_len)
	{
		dolog(LOG_INFO, "put|%s short read while retrieving entropy data", client -> host.c_str());
		client -> pu -> inc_network_error(client -> username);
		client -> stats_glob -> inc_network_error();

		free(buffer_in);

		return -1;
	}

	unsigned char *buffer_out = reinterpret_cast<unsigned char *>(malloc_locked(in_len));
	if (!buffer_out)
		error_exit("%s error allocating %d bytes of memory", client -> host.c_str(), cur_n_bytes);

	// decrypt data
	client -> stream_cipher -> decrypt(buffer_in, in_len, buffer_out);

	unsigned char *entropy_data = &buffer_out[hash_len];
	int entropy_data_len = cur_n_bytes;
	unsigned char *hash = reinterpret_cast<unsigned char *>(malloc(hash_len));

	client -> mac_hasher -> do_hash(entropy_data, entropy_data_len, hash);

	if (memcmp(hash, buffer_out, hash_len) != 0)
	{
		dolog(LOG_WARNING, "Hash mismatch in retrieved entropy data!");
		client -> pu -> inc_protocol_error(client -> username);
		client -> stats_glob -> inc_protocol_error();
	}
	else
	{
		int n_bits_added = client -> ppools -> add_bits_to_pools(entropy_data, entropy_data_len, client -> ignore_rngtest_fips140, client -> pfips140, client -> ignore_rngtest_scc, client -> pscc, double(client -> config -> communication_timeout) * 0.9, client -> pc);
		if (n_bits_added == -1)
		{
			dolog(LOG_CRIT, "put|%s error while adding data to pools", client -> host.c_str());
			client -> pu -> inc_misc_errors(client -> username);
			client -> stats_glob -> inc_misc_errors();
		}
		else
		{
			dolog(LOG_DEBUG, "put|%s %d bits mixed into pools", client -> host.c_str(), n_bits_added);

			my_mutex_lock(&client -> stats_lck);
			update_client_fips140_scc(client, entropy_data, entropy_data_len);

			client -> bits_recv += n_bits_added;
			my_mutex_unlock(&client -> stats_lck);

			client -> pu -> track_recvs(client -> username, n_bits_added, entropy_data_len * 8);
			client -> stats_glob -> track_recvs(n_bits_added, entropy_data_len * 8);

			*new_bits = true;
		}
	}

	free(hash);

	free_locked(buffer_out, cur_n_bytes);

	free(buffer_in);

	return 0;
}

int do_client(client_t *client, bool *no_bits, bool *new_bits, bool *is_full)
{
	char cmd[4];

	client -> pu -> inc_msg_cnt(client -> username);

	client -> stats_glob -> inc_msg_cnt();

	int rc = READ_TO(client -> socket_fd, cmd, 4, client -> config -> communication_timeout);
	if (rc != 4)
	{
		dolog(LOG_INFO, "client|%s short read while retrieving command (%d)", client -> host.c_str(), rc);
		return -1;
	}

	if (memcmp(cmd, "0001", 4) == 0)		// GET bits
	{
		client -> pu -> register_msg(client -> username, false);
		client -> stats_glob -> register_msg(false);

		return do_client_get(client, no_bits);
	}
	else if (memcmp(cmd, "0002", 4) == 0)	// PUT bits
	{
		if (client -> pu -> get_is_rw(client -> username))
		{
			client -> pu -> register_msg(client -> username, true);
			client -> stats_glob -> register_msg(true);

			return do_client_put(client, new_bits, is_full);
		}

		dolog(LOG_DEBUG, "client|%s PUT denied (fd: %d)", client -> host.c_str(), client -> socket_fd);

		return -1;
	}
	else if (memcmp(cmd, "9999", 4) == 0)	// logout
	{
		dolog(LOG_DEBUG, "client|%s LOGOUT (fd: %d)", client -> host.c_str(), client -> socket_fd);

		client -> pu -> inc_disconnects(client -> username);

		client -> stats_glob -> inc_disconnects();

		return -1;
	}

	client -> pu -> inc_protocol_error(client -> username);

	client -> last_message = get_ts();

	client -> stats_glob -> inc_protocol_error();

	dolog(LOG_INFO, "client|%s command '%s' unknown", client -> host.c_str(), cmd);

	return -1;
}

int notify_server_full(int socket_fd, config_t *config)
{
	unsigned char buffer[8];

	make_msg(buffer, 9004, 0); // 9004

	if (WRITE_TO(socket_fd, buffer, 8, config -> communication_timeout) != 8)
		return -1;

	return 0;
}

int notify_client_data_available(int socket_fd, pools *ppools, config_t *config)
{
	if (send_got_data(socket_fd, ppools, config) == -1)
		return -1;

	return 0;
}

int notify_server_data_needed(int socket_fd, config_t *config)
{
	if (send_need_data(socket_fd, config) == -1)
		return -1;

	return 0;
}