2013-09-07 00:58:56 +02:00
|
|
|
# objectHashHolder is a timer-driven thread. One objectHashHolder thread is used
|
2013-09-08 00:23:20 +02:00
|
|
|
# by each sendDataThread. The sendDataThread uses it whenever it needs to
|
2013-09-10 01:26:32 +02:00
|
|
|
# advertise an object to peers in an inv message, or advertise a peer to other
|
|
|
|
# peers in an addr message. Instead of sending them out immediately, it must
|
2013-09-07 00:58:56 +02:00
|
|
|
# wait a random number of seconds for each connection so that different peers
|
|
|
|
# get different objects at different times. Thus an attacker who is
|
|
|
|
# connecting to many network nodes who receives a message first from Alice
|
|
|
|
# cannot be sure if Alice is the node who originated the message.
|
|
|
|
|
|
|
|
import random
|
|
|
|
import time
|
|
|
|
import threading
|
|
|
|
|
|
|
|
class objectHashHolder(threading.Thread):
|
|
|
|
def __init__(self, sendDataThreadMailbox):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
self.shutdown = False
|
|
|
|
self.sendDataThreadMailbox = sendDataThreadMailbox # This queue is used to submit data back to our associated sendDataThread.
|
2013-09-10 01:26:32 +02:00
|
|
|
self.collectionOfHashLists = {}
|
|
|
|
self.collectionOfPeerLists = {}
|
2013-09-07 00:58:56 +02:00
|
|
|
for i in range(10):
|
2013-09-10 01:26:32 +02:00
|
|
|
self.collectionOfHashLists[i] = []
|
|
|
|
self.collectionOfPeerLists[i] = []
|
2013-09-07 00:58:56 +02:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
iterator = 0
|
|
|
|
while not self.shutdown:
|
2013-09-10 01:26:32 +02:00
|
|
|
if len(self.collectionOfHashLists[iterator]) > 0:
|
|
|
|
self.sendDataThreadMailbox.put((0, 'sendinv', self.collectionOfHashLists[iterator]))
|
|
|
|
self.collectionOfHashLists[iterator] = []
|
|
|
|
if len(self.collectionOfPeerLists[iterator]) > 0:
|
|
|
|
self.sendDataThreadMailbox.put((0, 'sendaddr', self.collectionOfPeerLists[iterator]))
|
|
|
|
self.collectionOfPeerLists[iterator] = []
|
2013-09-07 00:58:56 +02:00
|
|
|
iterator += 1
|
|
|
|
iterator %= 10
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
def holdHash(self,hash):
|
2013-09-10 01:26:32 +02:00
|
|
|
self.collectionOfHashLists[random.randrange(0, 10)].append(hash)
|
|
|
|
|
|
|
|
def holdPeer(self,peerDetails):
|
|
|
|
self.collectionOfPeerLists[random.randrange(0, 10)].append(peerDetails)
|
2013-09-07 00:58:56 +02:00
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.shutdown = True
|