-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdht.py
182 lines (161 loc) · 5.39 KB
/
dht.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
#!/usr/bin/env python3
# encoding: utf-8
import socket
from threading import Thread
from concurrent.futures import ThreadPoolExecutor
from time import sleep
from collections import deque
from lib.bencode import bencode, bdecode
from lib.utils import *
from config import Config
from lib.metadata import download_metadata
class KNode(object):
def __init__(self, nid, ip, port):
self.nid = nid
self.ip = ip
self.port = port
class DHT(Thread):
def __init__(self):
Thread.__init__(self)
self.ufd = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
self.ufd.bind((Config.BIND_IP, Config.BIND_PORT))
def send_krpc(self, msg, address):
# noinspection PyBroadException
try:
self.ufd.sendto(bencode(msg), address)
except Exception:
pass
class DHTClient(DHT):
def __init__(self):
DHT.__init__(self)
self.setDaemon(True)
self.nid = random_id()
self.nodes = deque(maxlen=Config.MAX_NODE_SIZE)
def send_find_node(self, address, nid=None):
nid = get_neighbor(nid, self.nid) if nid else self.nid
tid = entropy(2) # TransactionID长度为2
msg = {
't': tid,
'y': 'q',
'q': 'find_node',
'a': {
'id': nid,
'target': random_id()
}
}
self.send_krpc(msg, address)
def join_dht(self):
for address in Config.BOOTSTRAP_NODES:
self.send_find_node(address)
def rejoin_dht(self):
if len(self.nodes) == 0:
self.join_dht()
timer(Config.REJOIN_DHT_INTERVAL, self.rejoin_dht)
def auto_send_find_node(self):
while True:
try:
node = self.nodes.popleft()
self.send_find_node((node.ip, node.port), node.nid)
except IndexError:
pass
sleep(1.0 / Config.MAX_NODE_SIZE)
def process_find_node_response(self, msg):
nodes = decode_nodes(msg['r']['nodes'])
for node in nodes:
(nid, ip, port) = node
if len(nid) != 20:
continue
if ip == Config.BIND_IP:
continue
n = KNode(nid, ip, port)
self.nodes.append(n)
class DHTServer(DHTClient):
def __init__(self):
DHTClient.__init__(self)
self.pool = ThreadPoolExecutor(Config.DOWNLOAD_THREAD)
self.process_request_actions = {
'get_peers': self.on_get_peers_request,
'announce_peer': self.on_announce_peer_request,
}
self.ufd = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
self.ufd.bind((Config.BIND_IP, Config.BIND_PORT))
timer(Config.REJOIN_DHT_INTERVAL, self.rejoin_dht)
def run(self):
self.rejoin_dht()
while True:
# noinspection PyBroadException
try:
(data, address) = self.ufd.recvfrom(65536)
msg = bdecode(data)
self.on_message(msg, address)
except Exception:
pass
def on_message(self, msg, address):
try:
if msg['y'] == 'r':
if 'nodes' in msg['r']:
self.process_find_node_response(msg)
elif msg['y'] == 'q':
try:
self.process_request_actions[msg['q']](msg, address)
except KeyError:
self.play_dead(msg, address)
except KeyError:
pass
def on_get_peers_request(self, msg, address):
try:
h = msg['a']['info_hash']
tid = msg['t']
token = h[:2]
msg = {
't': tid,
'y': 'r',
'r': {
'id': get_neighbor(h, self.nid),
'nodes': '',
'token': token
}
}
self.send_krpc(msg, address)
except KeyError:
pass
def on_announce_peer_request(self, msg, address):
# noinspection PyBroadException
try:
h = msg['a']['info_hash']
token = msg['a']['token']
if h[:2] == token:
if 'implied_port ' in msg['a'] and msg['a']['implied_port '] != 0:
port = address[1]
else:
port = msg['a']['port']
self.pool.submit(download_metadata, (address[0], port), h)
except Exception:
return
finally:
self.ok(msg, address)
def play_dead(self, msg, address):
try:
tid = msg['t']
msg = {
't': tid,
'y': 'e',
'e': [202, 'Server Error']
}
self.send_krpc(msg, address)
except KeyError:
pass
def ok(self, msg, address):
try:
tid = msg['t']
nid = msg['a']['id']
msg = {
't': tid,
'y': 'r',
'r': {
'id': get_neighbor(nid, self.nid)
}
}
self.send_krpc(msg, address)
except KeyError:
pass