-
Notifications
You must be signed in to change notification settings - Fork 247
/
simDHT.py
executable file
·184 lines (155 loc) · 4.86 KB
/
simDHT.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
#encoding: utf-8
import socket
from hashlib import sha1
from random import randint
from struct import unpack, pack
from socket import inet_aton, inet_ntoa
from threading import Timer, Thread, RLock
from time import sleep
from bencode import bencode, bdecode
BOOTSTRAP_NODES = [
("router.bittorrent.com", 6881),
("dht.transmissionbt.com", 6881),
("router.utorrent.com", 6881)
]
TID_LENGTH = 4
KRPC_TIMEOUT = 10
def entropy(bytes):
s = ""
for i in range(bytes):
s += chr(randint(0, 255))
return s
def random_id():
hash = sha1()
hash.update( entropy(20) )
return hash.digest()
def decode_nodes(nodes):
n = []
length = len(nodes)
if (length % 26) != 0:
return n
for i in range(0, length, 26):
nid = nodes[i:i+20]
ip = inet_ntoa(nodes[i+20:i+24])
port = unpack("!H", nodes[i+24:i+26])[0]
n.append( (nid, ip, port) )
return n
def timer(t, f):
Timer(t, f).start()
class KRPC(Thread):
def __init__(self):
Thread.__init__(self)
self.setDaemon(True)
self.join_successed = False
self.types = {
"r": self.response_received,
"q": self.query_received
}
self.actions = {
"get_peers": self.get_peers_received,
}
self.ufd = socket.socket(socket.AF_INET,
socket.SOCK_DGRAM, socket.IPPROTO_UDP)
self.ufd.bind((self.ip, self.port))
def response_received(self, msg, address):
try:
self.join_successed = True
nodes = decode_nodes(msg["r"]["nodes"])
for node in nodes:
(nid, ip, port) = node
if len(nid) != 20: continue
if ip == self.ip: continue
self.table.put( KNode(nid, ip, port) )
except KeyError:
pass
def query_received(self, msg, address):
try:
self.actions[msg["q"]](msg, address)
except KeyError:
pass
def send_krpc(self, msg, address):
try:
self.ufd.sendto(bencode(msg), address)
except:
pass
def get_neighbor(self, target):
return target[:10]+random_id()[10:]
class Client(KRPC):
def __init__(self, table):
self.table = table
self.lock = RLock()
timer(KRPC_TIMEOUT, self.timeout)
KRPC.__init__(self)
def find_node(self, address, nid=None):
nid = self.get_neighbor(nid) if nid else self.table.nid
tid = entropy(TID_LENGTH)
msg = {
"t": tid,
"y": "q",
"q": "find_node",
"a": {"id": nid, "target": random_id()}
}
self.send_krpc(msg, address)
def joinDHT(self):
for address in BOOTSTRAP_NODES:
self.find_node(address)
def timeout(self):
if not self.join_successed:
self.joinDHT()
timer(KRPC_TIMEOUT, self.timeout)
def run(self):
self.joinDHT()
while True:
try:
(data, address) = self.ufd.recvfrom(65536)
msg = bdecode(data)
self.types[msg["y"]](msg, address)
except Exception:
pass
def roam(self):
while True:
if not self.table.nodes:
self.join_successed = False
sleep(1)
continue
for node in self.table.nodes:
self.find_node(( node.ip, node.port ), node.nid)
self.lock.acquire()
self.table.nodes = []
self.lock.release()
class Server(Client):
def __init__(self, master, ip, port, max_node_qsize):
self.max_node_qsize = max_node_qsize
self.table = KTable(max_node_qsize)
self.master = master
self.ip = ip
self.port = port
Client.__init__(self, self.table)
def get_peers_received(self, msg, address):
try:
infohash = msg["a"]["info_hash"]
self.master.log(infohash)
except Exception, e:
pass
class KTable():
def __init__(self, max_node_qsize):
self.max_node_qsize = max_node_qsize
self.nid = random_id()
self.nodes = []
def put(self, node):
if len(self.nodes) > self.max_node_qsize: return
self.nodes.append( node )
class KNode(object):
def __init__(self, nid, ip=None, port=None):
self.nid = nid
self.ip = ip
self.port = port
#using example
class Master(object):
def log(self, infohash):
print infohash.encode("hex")
if __name__ == "__main__":
#when max_node_qsize = 10000, out bandwidth=1.5M/s
s = Server(Master(), "0.0.0.0", 6881, max_node_qsize=10000)
s.start()
s.roam()