This repository has been archived by the owner on Sep 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 378
/
lixian_hash_bt.py
249 lines (225 loc) · 6.78 KB
/
lixian_hash_bt.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
import os.path
import sys
import hashlib
from cStringIO import StringIO
import re
from lixian_encoding import default_encoding
def magnet_to_infohash(magnet):
import re
import base64
m = re.match(r'magnet:\?xt=urn:btih:(\w+)', magnet)
assert m, magnet
code = m.group(1)
if re.match(r'^[a-zA-Z0-9]{40}$', code):
return code.decode('hex')
else:
return base64.b32decode(code)
class decoder:
def __init__(self, bytes):
self.bytes = bytes
self.i = 0
def decode_value(self):
x = self.bytes[self.i]
if x.isdigit():
return self.decode_string()
self.i += 1
if x == 'd':
v = {}
while self.peek() != 'e':
k = self.decode_string()
v[k] = self.decode_value()
self.i += 1
return v
elif x == 'l':
v = []
while self.peek() != 'e':
v.append(self.decode_value())
self.i += 1
return v
elif x == 'i':
return self.decode_int()
else:
raise NotImplementedError(x)
def decode_string(self):
i = self.bytes.index(':', self.i)
n = int(self.bytes[self.i:i])
s = self.bytes[i+1:i+1+n]
self.i = i + 1 + n
return s
def decode_int(self):
e = self.bytes.index('e', self.i)
n = int(self.bytes[self.i:e])
self.i = e + 1
return n
def peek(self):
return self.bytes[self.i]
class encoder:
def __init__(self, stream):
self.stream = stream
def encode(self, v):
if type(v) == str:
self.stream.write(str(len(v)))
self.stream.write(':')
self.stream.write(v)
elif type(v) == dict:
self.stream.write('d')
for k in sorted(v):
self.encode(k)
self.encode(v[k])
self.stream.write('e')
elif type(v) == list:
self.stream.write('l')
for x in v:
self.encode(x)
self.stream.write('e')
elif type(v) in (int, long):
self.stream.write('i')
self.stream.write(str(v))
self.stream.write('e')
else:
raise NotImplementedError(type(v))
def bdecode(bytes):
return decoder(bytes).decode_value()
def bencode(v):
from cStringIO import StringIO
stream = StringIO()
encoder(stream).encode(v)
return stream.getvalue()
def assert_content(content):
assert re.match(r'd\d+:', content), 'Probably not a valid content file [%s...]' % repr(content[:17])
def info_hash_from_content(content):
assert_content(content)
return hashlib.sha1(bencode(bdecode(content)['info'])).hexdigest()
def info_hash(path):
if not path.lower().endswith('.torrent'):
print '[WARN] Is it really a .torrent file? '+path
if os.path.getsize(path) > 3*1000*1000:
raise NotImplementedError('Torrent file too big')
with open(path, 'rb') as stream:
return info_hash_from_content(stream.read())
def encode_path(path):
return path.decode('utf-8').encode(default_encoding)
class sha1_reader:
def __init__(self, pieces, progress_callback=None):
assert pieces
assert len(pieces) % 20 == 0
self.total = len(pieces)/20
self.processed = 0
self.stream = StringIO(pieces)
self.progress_callback = progress_callback
def next_sha1(self):
self.processed += 1
if self.progress_callback:
self.progress_callback(float(self.processed)/self.total)
return self.stream.read(20)
def sha1_update_stream(sha1, stream, n):
while n > 0:
readn = min(n, 1024*1024)
bytes = stream.read(readn)
assert len(bytes) == readn
n -= readn
sha1.update(bytes)
assert n == 0
def verify_bt_single_file(path, info, progress_callback=None):
# TODO: check md5sum if available
if os.path.getsize(path) != info['length']:
return False
piece_length = info['piece length']
assert piece_length > 0
sha1_stream = sha1_reader(info['pieces'], progress_callback=progress_callback)
size = info['length']
with open(path, 'rb') as stream:
while size > 0:
n = min(size, piece_length)
size -= n
sha1sum = hashlib.sha1()
sha1_update_stream(sha1sum, stream, n)
if sha1sum.digest() != sha1_stream.next_sha1():
return False
assert size == 0
assert stream.read(1) == ''
assert sha1_stream.next_sha1() == ''
return True
def verify_bt_multiple(folder, info, file_set=None, progress_callback=None):
# TODO: check md5sum if available
piece_length = info['piece length']
assert piece_length > 0
path_encoding = info.get('encoding', 'utf-8')
files = []
for x in info['files']:
if 'path.utf-8' in x:
unicode_path = [p.decode('utf-8') for p in x['path.utf-8']]
else:
unicode_path = [p.decode(path_encoding) for p in x['path']]
native_path = [p.encode(default_encoding) for p in unicode_path]
utf8_path = [p.encode('utf-8') for p in unicode_path]
files.append({'path':os.path.join(folder, apply(os.path.join, native_path)), 'length':x['length'], 'file':utf8_path})
sha1_stream = sha1_reader(info['pieces'], progress_callback=progress_callback)
sha1sum = hashlib.sha1()
piece_left = piece_length
complete_piece = True
while files:
f = files.pop(0)
path = f['path']
size = f['length']
if os.path.exists(path) and ((not file_set) or (f['file'] in file_set)):
if os.path.getsize(path) != size:
return False
if size <= piece_left:
with open(path, 'rb') as stream:
sha1_update_stream(sha1sum, stream, size)
assert stream.read(1) == ''
piece_left -= size
if not piece_left:
if sha1sum.digest() != sha1_stream.next_sha1() and complete_piece:
return False
complete_piece = True
sha1sum = hashlib.sha1()
piece_left = piece_length
else:
with open(path, 'rb') as stream:
while size >= piece_left:
size -= piece_left
sha1_update_stream(sha1sum, stream, piece_left)
if sha1sum.digest() != sha1_stream.next_sha1() and complete_piece:
return False
complete_piece = True
sha1sum = hashlib.sha1()
piece_left = piece_length
if size:
sha1_update_stream(sha1sum, stream, size)
piece_left -= size
else:
if size:
while size >= piece_left:
size -= piece_left
sha1_stream.next_sha1()
sha1sum = hashlib.sha1()
piece_left = piece_length
if size:
complete_piece = False
piece_left -= size
else:
complete_piece = True
if piece_left < piece_length:
if complete_piece:
if sha1sum.digest() != sha1_stream.next_sha1():
return False
else:
sha1_stream.next_sha1()
assert sha1_stream.next_sha1() == ''
return True
def verify_bt(path, info, file_set=None, progress_callback=None):
if not os.path.exists(path):
raise Exception("File doesn't exist: %s" % path)
if 'files' not in info:
if os.path.isfile(path):
return verify_bt_single_file(path, info, progress_callback=progress_callback)
else:
path = os.path.join(path, encode_path(info['name']))
return verify_bt_single_file(path, info, progress_callback=progress_callback)
else:
return verify_bt_multiple(path, info, file_set=file_set, progress_callback=progress_callback)
def verify_bt_file(path, torrent_path, file_set=None, progress_callback=None):
with open(torrent_path, 'rb') as x:
return verify_bt(path, bdecode(x.read())['info'], file_set, progress_callback)