-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUDPChannel.py
485 lines (325 loc) · 14.4 KB
/
UDPChannel.py
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
from random import randint
from selectors import DefaultSelector, EVENT_READ
from socket import socket, AF_INET, SOCK_DGRAM as UDP
from time import time
from Counter import Counter
from MixMessage import DATA_FRAG_SIZE, MixMessageStore, DATA_PACKET_SIZE, FragmentGenerator, \
make_dummy_init_fragment, make_dummy_data_fragment
from MsgV3 import gen_init_msg, process, cut_init_message
from ReplayDetection import ReplayDetector
from constants import CHAN_ID_SIZE, MIN_PORT, MAX_PORT, CTR_PREFIX_LEN, \
IPV4_LEN, PORT_LEN, CHAN_INIT_MSG_FLAG, DATA_MSG_FLAG, \
CHAN_CONFIRM_MSG_FLAG, MSG_TYPE_FLAG_LEN, CHANNEL_CTR_START, CHANNEL_TIMEOUT_SEC
from util import i2b, b2i, random_channel_id, cut, b2ip, gen_sym_key, ctr_cipher, \
get_random_bytes, ip2b
def check_for_timed_out_channels(channel_table, timeout=CHANNEL_TIMEOUT_SEC, log_prefix="UDPChannel"):
now = time()
timed_out = []
for channel_id in channel_table.keys():
channel = channel_table[channel_id]
channel_timed_out = (now - channel.last_interaction) > timeout
if channel_timed_out:
print(log_prefix, "Timeout for channel", channel_id)
timed_out.append(channel_id)
return timed_out
def create_packet(channel_id, message_type, message_counter, payload):
if isinstance(message_counter, Counter):
message_counter = bytes(message_counter)
return i2b(channel_id, CHAN_ID_SIZE) + message_type + message_counter + payload
class ChannelEntry:
out_chan_list = []
to_mix = []
to_client = []
table = dict()
def __init__(self, src_addr, dest_addr, pub_comps):
self.src_addr = src_addr
self.dest_addr = dest_addr
self.chan_id = ChannelEntry.random_channel()
self.pub_comps = pub_comps
print(self, "New Channel", self.dest_addr)
ChannelEntry.table[self.chan_id] = self
self.req_sym_keys = []
self.res_sym_keys = []
self.request_counter = Counter(CHANNEL_CTR_START)
self.replay_detector = ReplayDetector(start=CHANNEL_CTR_START)
for _ in self.pub_comps:
self.req_sym_keys.append(gen_sym_key())
self.res_sym_keys.append(gen_sym_key())
self.packets = []
self.mix_msg_store = MixMessageStore()
self.last_interaction = time()
self.allowed_to_send = False
def can_send(self):
return self.packets
def request(self, request):
self.last_interaction = time()
self._make_request_fragments(request)
def response(self, response):
self.last_interaction = time()
msg_type, response = cut(response, MSG_TYPE_FLAG_LEN)
if msg_type == CHAN_CONFIRM_MSG_FLAG:
self._chan_confirm_msg()
elif msg_type == DATA_MSG_FLAG:
self._receive_response_fragment(response)
def get_message(self):
if self.allowed_to_send:
ret = self._get_data_message()
else:
ret = self._get_init_message()
self._clean_generator_list()
return ret
def get_completed_responses(self):
packets = self.mix_msg_store.completed()
self.mix_msg_store.remove_completed()
for packet in packets:
print(self, "Data", "<-", len(packet.payload))
return packets
def _get_init_message(self):
self.request_counter.count()
ip, port = self.dest_addr
destination = ip2b(ip) + i2b(port, PORT_LEN)
fragment = self._get_init_fragment()
channel_init = gen_init_msg(self.pub_comps, self.request_counter.current_value, self.req_sym_keys, self.res_sym_keys,
destination + fragment)
print(self, "Init", "->", len(channel_init))
# we send a counter value with init messages for channel replay detection only
return create_packet(self.chan_id, CHAN_INIT_MSG_FLAG, self.request_counter, channel_init)
def _get_data_message(self):
# todo make into generator
fragment = self._get_data_fragment()
message_counter, payload = cut(fragment, CTR_PREFIX_LEN)
print(self, "Data", "->", len(payload))
return create_packet(self.chan_id, DATA_MSG_FLAG, message_counter, payload)
def _get_init_fragment(self):
# todo make into generator
if self.packets:
init_fragment = self.packets[0].get_init_fragment()
else:
init_fragment = make_dummy_init_fragment()
return init_fragment
def _get_data_fragment(self):
# todo make into generator
if self.packets:
fragment = self.packets[0].get_data_fragment()
else:
fragment = make_dummy_data_fragment()
return self._encrypt_fragment(fragment)
def _clean_generator_list(self):
delete = []
for i in range(len(self.packets)):
if not self.packets[i]:
delete.append(i)
for generator in reversed(delete):
del self.packets[generator]
def _chan_confirm_msg(self):
if not self.allowed_to_send:
print(self, "Received channel confirmation")
self.allowed_to_send = True
def _make_request_fragments(self, request):
generator = FragmentGenerator(request)
self.packets.append(generator)
timed_out = check_for_timed_out_channels(ChannelEntry.table, timeout=CHANNEL_TIMEOUT_SEC - 5)
for channel_id in timed_out:
del ChannelEntry.table[channel_id]
def _receive_response_fragment(self, response):
fragment = self._decrypt_fragment(response)
try:
self.mix_msg_store.parse_fragment(fragment)
except ValueError:
print(self, "Dummy Response received")
return
def _encrypt_fragment(self, fragment):
self.request_counter.count()
counter = self.request_counter
for key in reversed(self.req_sym_keys):
cipher = ctr_cipher(key, int(counter))
fragment = cipher.encrypt(fragment)
return bytes(counter) + fragment
def _decrypt_fragment(self, fragment):
ctr, cipher_text = cut(fragment, CTR_PREFIX_LEN)
ctr = b2i(ctr)
for key in self.res_sym_keys:
cipher = ctr_cipher(key, ctr)
cipher_text = cipher.decrypt(cipher_text)
self.replay_detector.check_replay_window(ctr)
return cipher_text
def __str__(self):
return "ChannelEntry {}:{} - {}:".format(*self.src_addr, self.chan_id)
@staticmethod
def random_channel():
rand_id = random_channel_id()
while rand_id in ChannelEntry.out_chan_list:
rand_id = random_channel_id()
ChannelEntry.out_chan_list.append(rand_id)
return rand_id
class ChannelMid:
out_chan_list = []
requests = []
responses = []
table_out = dict()
table_in = dict()
def __init__(self, in_chan_id, check_responses=True):
self.in_chan_id = in_chan_id
self.out_chan_id = ChannelMid.random_channel()
print(self, "New Channel")
ChannelMid.table_out[self.out_chan_id] = self
ChannelMid.table_in[self.in_chan_id] = self
self.req_key = None
self.res_key = None
self.request_replay_detector = ReplayDetector(start=CHANNEL_CTR_START)
if check_responses:
self.response_replay_detector = ReplayDetector(start=CHANNEL_CTR_START)
else:
self.response_replay_detector = None
self.last_interaction = time()
self.initialized = False
def forward_request(self, request):
"""Takes a mix fragment, already stripped of the channel id."""
self.last_interaction = time()
ctr, cipher_text = cut(request, CTR_PREFIX_LEN)
self.request_replay_detector.check_replay_window(b2i(ctr))
cipher = ctr_cipher(self.req_key, b2i(ctr))
payload = cipher.decrypt(cipher_text)
print(self, "Data", "->", len(payload))
packet = create_packet(self.out_chan_id, DATA_MSG_FLAG, ctr, payload)
ChannelMid.requests.append(packet)
timed_out = check_for_timed_out_channels(ChannelMid.table_in)
for in_id in timed_out:
out_id = ChannelMid.table_in[in_id].out_chan_id
del ChannelMid.table_in[in_id]
del ChannelMid.table_out[out_id]
def forward_response(self, response):
self.last_interaction = time()
msg_type, response = cut(response, MSG_TYPE_FLAG_LEN)
msg_ctr, response = cut(response, CTR_PREFIX_LEN)
if self.response_replay_detector is not None:
self.response_replay_detector.check_replay_window(b2i(msg_ctr))
cipher = ctr_cipher(self.res_key, b2i(msg_ctr))
forward_msg = cipher.encrypt(response)
print(self, "Data", "<-", len(forward_msg))
response = create_packet(self.in_chan_id, msg_type, msg_ctr, forward_msg)
ChannelMid.responses.append(response)
def parse_channel_init(self, channel_init, priv_comp):
"""Takes an already decrypted channel init message and reads the key.
"""
self.last_interaction = time()
msg_ctr, channel_init = cut(channel_init, CTR_PREFIX_LEN)
self.request_replay_detector.check_replay_window(b2i(msg_ctr))
key_req, key_res, _, channel_init = process(priv_comp, b2i(msg_ctr), channel_init)
if self.req_key is not None and self.res_key is not None:
assert self.req_key == key_req
assert self.res_key == key_res
else:
self.req_key = key_req
self.res_key = key_res
self.initialized = True
print(self, "Init", "->", len(channel_init))
# todo look at this one again
packet = create_packet(self.out_chan_id, CHAN_INIT_MSG_FLAG, msg_ctr, channel_init)
ChannelMid.requests.append(packet)
def __str__(self):
return "ChannelMid {} - {}:".format(self.in_chan_id, self.out_chan_id)
@staticmethod
def random_channel():
rand_id = random_channel_id()
while rand_id in ChannelMid.table_out.keys():
rand_id = random_channel_id()
ChannelMid.out_chan_list.append(rand_id)
return rand_id
class ChannelExit:
out_ports = []
sock_sel = DefaultSelector()
to_mix = []
table = dict()
def __init__(self, in_chan_id):
self.in_chan_id = in_chan_id
self.out_sock = ChannelExit.random_socket()
self.dest_addr = ("0.0.0.0", 0)
self.last_interaction = time()
self.response_counter = Counter(CHANNEL_CTR_START)
self.response_counter.count()
print(self, "New Channel")
self.mix_msg_store = MixMessageStore()
ChannelExit.table[in_chan_id] = self
def recv_request(self, request):
"""The mix fragment gets added to the fragment store. If the channel id
is not already known a socket will be created for the destination of the
mix fragment and added to the socket table.
If the fragment completes the mix message, all completed mix messages
will be sent out over their sockets.
"""
self.last_interaction = time()
fragment, _ = cut(request, DATA_FRAG_SIZE)
try:
self.mix_msg_store.parse_fragment(fragment)
except ValueError:
print(self, "Dummy Request received")
return
# send completed mix messages to the destination immediately
for mix_message in self.mix_msg_store.completed():
print(self, "Data", "->", len(mix_message.payload))
try:
self.out_sock.send(mix_message.payload)
except ConnectionRefusedError:
print("Channel", self.in_chan_id, "with address", self.out_sock, "connection refused.")
self.mix_msg_store.remove_completed()
timed_out = check_for_timed_out_channels(ChannelExit.table)
for channel_id in timed_out:
del ChannelExit.table[channel_id]
def recv_response(self, response):
"""Turns the response into a MixMessage and saves its fragments for
later sending.
"""
self.last_interaction = time()
frag_gen = FragmentGenerator(response)
while frag_gen:
print(self, "Data", "<-", len(frag_gen.udp_payload))
self.response_counter.count()
fragment = frag_gen.get_data_fragment()
packet = create_packet(self.in_chan_id, DATA_MSG_FLAG, bytes(self.response_counter),
fragment)
ChannelExit.to_mix.append(packet)
def parse_channel_init(self, channel_init):
self.last_interaction = time()
_, _, payload = cut_init_message(channel_init)
ip, port, fragment = cut(payload, IPV4_LEN, PORT_LEN)
ip = b2ip(ip)
port = b2i(port)
self.dest_addr = (ip, port)
try:
self.out_sock.connect(self.dest_addr)
except OSError:
# couldn't connect, maybe not a channel init message?
print("Couldn't connect to destination. Dropped message.")
self.out_sock.close()
del ChannelExit.table[self.in_chan_id]
return
ChannelExit.sock_sel.register(self.out_sock, EVENT_READ, data=self)
print(self, "Init", "->", len(channel_init))
self.recv_request(fragment)
def send_chan_confirm(self):
self.response_counter.count()
packet = create_packet(self.in_chan_id, CHAN_CONFIRM_MSG_FLAG, bytes(self.response_counter),
get_random_bytes(DATA_PACKET_SIZE))
print(self, "Init", "<-", "len:", len(packet))
ChannelExit.to_mix.append(packet)
def __str__(self):
return "ChannelExit {} - {}:{}:".format(self.in_chan_id, *self.dest_addr)
@staticmethod
def random_socket():
"""Returns a socket bound to a random port, that is not in use already.
"""
while True:
rand_port = randint(MIN_PORT, MAX_PORT)
if rand_port in ChannelExit.out_ports:
# Port already in use by us
continue
try:
new_sock = socket(AF_INET, UDP)
new_sock.bind(("127.0.0.1", rand_port))
new_sock.setblocking(False)
ChannelExit.out_ports.append(rand_port)
return new_sock
except OSError:
# Port already in use by another application, try a new one
pass