forked from ayeowch/bitnodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crawl.py
654 lines (545 loc) · 21.9 KB
/
crawl.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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# crawl.py - Greenlets-based Bitcoin network crawler.
#
# Copyright (c) Addy Yeow Chin Heng <ayeowch@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
"""
Greenlets-based Bitcoin network crawler.
"""
from gevent import monkey
monkey.patch_all()
import geoip2.database
import gevent
import json
import logging
import os
import random
import redis
import redis.connection
import socket
import sys
import time
from binascii import hexlify, unhexlify
from collections import Counter
from ConfigParser import ConfigParser
from geoip2.errors import AddressNotFoundError
from ipaddress import ip_address, ip_network
from protocol import (
ONION_V3_LEN,
TO_SERVICES,
Connection,
ConnectionError,
ProtocolError,
)
from utils import (
get_keys,
http_get,
ip_to_network,
new_redis_conn,
)
redis.connection.socket = gevent.socket
REDIS_CONN = None
CONF = {}
# MaxMind databases
ASN = geoip2.database.Reader("geoip/GeoLite2-ASN.mmdb")
def enumerate_node(redis_pipe, addr_msgs, now):
"""
Adds all peering nodes with age <= max. age into the crawl set.
"""
peers = 0
excluded = 0
for addr_msg in addr_msgs:
if 'addr_list' in addr_msg:
for peer in addr_msg['addr_list']:
if peer['onion'] and len(peer['onion']) == ONION_V3_LEN:
logging.debug("onion v3 node: %s", peer)
age = now - peer['timestamp'] # seconds
if age >= 0 and age <= CONF['max_age']:
address = peer['ipv4'] or peer['ipv6'] or peer['onion']
port = peer['port'] if peer['port'] > 0 else CONF['port']
services = peer['services']
if not address:
continue
if is_excluded(address):
logging.debug("Exclude: (%s, %d)", address, port)
excluded += 1
continue
redis_pipe.sadd('pending', (address, port, services))
peers += 1
if peers >= CONF['peers_per_node']:
return (peers, excluded)
return (peers, excluded)
def connect(redis_conn, key):
"""
Establishes connection with a node to:
1) Send version message
2) Receive version and verack message
3) Send getaddr message
4) Receive addr message containing list of peering nodes
Stores state and height for node in Redis.
"""
version_msg = {}
addr_msgs = []
redis_conn.set(key, "") # Set Redis key for a new node
(address, port, services) = key[5:].split("-", 2)
services = int(services)
height = redis_conn.get('height')
if height:
height = int(height)
proxy = None
if address.endswith(".onion") and CONF['onion']:
proxy = random.choice(CONF['tor_proxies'])
conn = Connection((address, int(port)),
(CONF['source_address'], 0),
magic_number=CONF['magic_number'],
socket_timeout=CONF['socket_timeout'],
proxy=proxy,
protocol_version=CONF['protocol_version'],
to_services=services,
from_services=CONF['services'],
user_agent=CONF['user_agent'],
height=height,
relay=CONF['relay'])
try:
logging.debug("Connecting to %s", conn.to_addr)
conn.open()
version_msg = conn.handshake()
except (ProtocolError, ConnectionError, socket.error) as err:
logging.debug("%s: %s", conn.to_addr, err)
redis_pipe = redis_conn.pipeline()
if version_msg:
try:
conn.getaddr(block=False)
except (ProtocolError, ConnectionError, socket.error) as err:
logging.debug("%s: %s", conn.to_addr, err)
else:
addr_wait = 0
while addr_wait < CONF['socket_timeout']:
addr_wait += 1
gevent.sleep(0.3)
try:
msgs = conn.get_messages(commands=['addr', 'addrv2'])
except (ProtocolError, ConnectionError, socket.error) as err:
logging.debug("%s: %s", conn.to_addr, err)
break
if msgs and any([msg['count'] > 1 for msg in msgs]):
addr_msgs = msgs
break
version = version_msg.get('version', "")
user_agent = version_msg.get('user_agent', "")
from_services = version_msg.get('services', 0)
height = version_msg.get('height', 0)
if from_services != services:
logging.debug("%s Expected %d, got %d for services", conn.to_addr,
services, from_services)
key = "node:{}-{}-{}".format(address, port, from_services)
height_key = "height:{}-{}-{}".format(address, port, from_services)
redis_pipe.setex(height_key, CONF['max_age'], height)
version_key = "version:{}-{}".format(address, port)
redis_pipe.setex(version_key,
CONF['max_age'],
(version, user_agent, from_services))
now = int(time.time())
(peers, excluded) = enumerate_node(redis_pipe, addr_msgs, now)
logging.debug("%s Peers: %d (Excluded: %d)",
conn.to_addr, peers, excluded)
redis_pipe.set(key, "")
redis_pipe.sadd('up', key)
conn.close()
redis_pipe.execute()
def dump(timestamp, nodes):
"""
Dumps data for reachable nodes into timestamp-prefixed JSON file and
returns most common height from the nodes.
"""
json_data = []
logging.info('Building JSON data')
for node in nodes:
(address, port, services) = node[5:].split("-", 2)
height_key = "height:{}-{}-{}".format(address, port, services)
try:
height = int(REDIS_CONN.get(height_key))
except TypeError:
logging.warning("%s missing", height_key)
height = 0
json_data.append([address, int(port), int(services), height])
logging.info('Built JSON data: %d', len(json_data))
if len(json_data) == 0:
logging.warning("len(json_data): %d", len(json_data))
return 0
json_output = os.path.join(CONF['crawl_dir'], "{}.json".format(timestamp))
open(json_output, 'w').write(json.dumps(json_data))
logging.info("Wrote %s", json_output)
return Counter([node[-1] for node in json_data]).most_common(1)[0][0]
def restart(timestamp):
"""
Dumps data for the reachable nodes into a JSON file.
Loads all reachable nodes from Redis into the crawl set.
Removes keys for all nodes from current crawl.
Updates included ASNs with current list from external URL.
Updates excluded networks with current list of bogons.
Updates number of reachable nodes in Redis.
"""
redis_pipe = REDIS_CONN.pipeline()
nodes = REDIS_CONN.smembers('up') # Reachable nodes
redis_pipe.delete('up')
for node in nodes:
(address, port, services) = node[5:].split("-", 2)
redis_pipe.sadd('pending', (address, int(port), int(services)))
for key in get_keys(REDIS_CONN, 'node:*'):
redis_pipe.delete(key)
for key in get_keys(REDIS_CONN, 'crawl:cidr:*'):
redis_pipe.delete(key)
if CONF['include_checked']:
checked_nodes = REDIS_CONN.zrangebyscore(
'check', timestamp - CONF['max_age'], timestamp)
for node in checked_nodes:
(address, port, services) = eval(node)
if is_excluded(address):
logging.debug("Exclude: %s", address)
continue
redis_pipe.sadd('pending', (address, port, services))
redis_pipe.execute()
update_included_asns()
update_excluded_networks()
reachable_nodes = len(nodes)
logging.info("Reachable nodes: %d", reachable_nodes)
REDIS_CONN.lpush('nodes', (timestamp, reachable_nodes))
height = dump(timestamp, nodes)
logging.info("Height: %d", height)
def cron():
"""
Assigned to a worker to perform the following tasks periodically to
maintain a continuous crawl:
1) Reports the current number of nodes in crawl set
2) Initiates a new crawl once the crawl set is empty
"""
start = int(time.time())
while True:
pending_nodes = REDIS_CONN.scard('pending')
logging.info("Pending: %d", pending_nodes)
if pending_nodes == 0:
REDIS_CONN.set('crawl:master:state', "starting")
now = int(time.time())
elapsed = now - start
REDIS_CONN.set('elapsed', elapsed)
logging.info("Elapsed: %d", elapsed)
logging.info("Restarting")
restart(now)
while int(time.time()) - start < CONF['snapshot_delay']:
gevent.sleep(1)
start = int(time.time())
REDIS_CONN.set('crawl:master:state', "running")
gevent.sleep(CONF['cron_delay'])
def task():
"""
Assigned to a worker to retrieve (pop) a node from the crawl set and
attempt to establish connection with a new node.
"""
redis_conn = new_redis_conn(db=CONF['db'])
while True:
if not CONF['master']:
while REDIS_CONN.get('crawl:master:state') != "running":
gevent.sleep(CONF['socket_timeout'])
node = redis_conn.spop('pending') # Pop random node from set
if node is None:
gevent.sleep(1)
continue
node = eval(node) # Convert string from Redis to tuple
# Skip IPv6 node
if ":" in node[0] and not CONF['ipv6']:
continue
key = "node:{}-{}-{}".format(node[0], node[1], node[2])
if redis_conn.exists(key):
continue
# Check if prefix has hit its limit
if ":" in node[0] and CONF['ipv6_prefix'] < 128:
cidr = ip_to_network(node[0], CONF['ipv6_prefix'])
nodes = redis_conn.incr('crawl:cidr:{}'.format(cidr))
if nodes > CONF['nodes_per_ipv6_prefix']:
logging.debug("CIDR %s: %d", cidr, nodes)
continue
connect(redis_conn, key)
def set_pending():
"""
Initializes pending set in Redis with a list of reachable nodes from DNS
seeders and hardcoded list of .onion nodes to bootstrap the crawler.
"""
for seeder in CONF['seeders']:
nodes = []
try:
ipv4_nodes = socket.getaddrinfo(seeder, None, socket.AF_INET)
except socket.gaierror as err:
logging.warning("%s", err)
else:
nodes.extend(ipv4_nodes)
if CONF['ipv6']:
try:
ipv6_nodes = socket.getaddrinfo(seeder, None, socket.AF_INET6)
except socket.gaierror as err:
logging.warning("%s", err)
else:
nodes.extend(ipv6_nodes)
for node in nodes:
address = node[-1][0]
if is_excluded(address):
logging.debug("Exclude: %s", address)
continue
logging.debug("%s: %s", seeder, address)
REDIS_CONN.sadd('pending', (address, CONF['port'], TO_SERVICES))
if CONF['onion']:
for address in CONF['onion_nodes']:
REDIS_CONN.sadd('pending', (address, CONF['port'], TO_SERVICES))
def is_excluded(address):
"""
Returns True if address is found in exclusion rules, False if otherwise.
In priority order, the rules are:
- Include onion address
- Exclude private address
- Exclude address without ASN when include_asns/exclude_asns is set
- Exclude if address is in exclude_asns
- Exclude bad address
- Exclude if address is in exclude_ipv4_networks/exclude_ipv6_networks
- Exclude if address is not in include_asns
- Include address
"""
if address.endswith('.onion'):
return False
if ip_address(unicode(address)).is_private:
return True
asn = None
if CONF['include_asns'] or CONF['exclude_asns']:
try:
asn_record = ASN.asn(address)
except AddressNotFoundError:
asn = None
else:
asn = 'AS{}'.format(asn_record.autonomous_system_number)
if asn is None:
return True
if CONF['exclude_asns'] and asn in CONF['exclude_asns']:
return True
if ':' in address:
address_family = socket.AF_INET6
key = 'exclude_ipv6_networks'
else:
address_family = socket.AF_INET
key = 'exclude_ipv4_networks'
try:
addr = int(hexlify(socket.inet_pton(address_family, address)), 16)
except socket.error:
logging.warning('Bad address: %s', address)
return True
if any([(addr & net[1] == net[0]) for net in CONF[key]]):
return True
if CONF['include_asns'] and asn not in CONF['include_asns']:
return True
return False
def update_included_asns():
"""
Updates included ASNs with current list from external URL.
"""
if not CONF['include_asns_from_url']:
return
response = http_get(CONF['include_asns_from_url'])
if response is not None:
CONF['include_asns'] = list_included_asns(response.content)
logging.info("ASNs: %d", len(CONF['include_asns']))
def list_included_asns(txt, asns=None):
"""
Converts list of ASNs from configuration file into a set.
"""
if asns is None:
asns = set()
lines = txt.strip().split("\n")
for line in lines:
line = line.strip()
if line.startswith('AS'):
asns.add(line)
return asns
def update_excluded_networks():
"""
Updates excluded networks with current bogons and current list from
external URL.
"""
CONF['exclude_ipv4_networks'] = CONF['default_exclude_ipv4_networks']
CONF['exclude_ipv6_networks'] = CONF['default_exclude_ipv6_networks']
if CONF['exclude_ipv4_bogons']:
urls = [
'http://www.team-cymru.org/Services/Bogons/fullbogons-ipv4.txt',
'http://www.spamhaus.org/drop/drop.txt',
'https://www.spamhaus.org/drop/edrop.txt',
]
for url in urls:
response = http_get(url)
if response is not None:
CONF['exclude_ipv4_networks'] = list_excluded_networks(
response.content, networks=CONF['exclude_ipv4_networks'])
if CONF['exclude_ipv6_bogons']:
urls = [
'http://www.team-cymru.org/Services/Bogons/fullbogons-ipv6.txt',
]
for url in urls:
response = http_get(url)
if response is not None:
CONF['exclude_ipv6_networks'] = list_excluded_networks(
response.content, networks=CONF['exclude_ipv6_networks'])
if CONF['exclude_ipv4_networks_from_url']:
response = http_get(CONF['exclude_ipv4_networks_from_url'])
if response is not None:
CONF['exclude_ipv4_networks'] = list_excluded_networks(
response.content, networks=CONF['exclude_ipv4_networks'])
if CONF['exclude_ipv6_networks_from_url']:
response = http_get(CONF['exclude_ipv6_networks_from_url'])
if response is not None:
CONF['exclude_ipv6_networks'] = list_excluded_networks(
response.content, networks=CONF['exclude_ipv6_networks'])
logging.info(
'IPv4: %d, IPv6: %d',
len(CONF['exclude_ipv4_networks']),
len(CONF['exclude_ipv6_networks']))
def list_excluded_networks(txt, networks=None):
"""
Converts list of networks from configuration file into a list of tuples of
network address and netmask to be excluded from the crawl.
"""
if networks is None:
networks = set()
lines = txt.strip().split("\n")
for line in lines:
line = line.split('#')[0].split(';')[0].strip()
try:
network = ip_network(unicode(line))
except ValueError:
continue
else:
networks.add((int(network.network_address), int(network.netmask)))
return networks
def init_conf(argv):
"""
Populates CONF with key-value pairs from configuration file.
"""
conf = ConfigParser()
conf.read(argv[1])
CONF['logfile'] = conf.get('crawl', 'logfile')
CONF['magic_number'] = unhexlify(conf.get('crawl', 'magic_number'))
CONF['port'] = conf.getint('crawl', 'port')
CONF['db'] = conf.getint('crawl', 'db')
CONF['seeders'] = conf.get('crawl', 'seeders').strip().split("\n")
CONF['workers'] = conf.getint('crawl', 'workers')
CONF['debug'] = conf.getboolean('crawl', 'debug')
CONF['source_address'] = conf.get('crawl', 'source_address')
CONF['protocol_version'] = conf.getint('crawl', 'protocol_version')
CONF['user_agent'] = conf.get('crawl', 'user_agent')
CONF['services'] = conf.getint('crawl', 'services')
CONF['relay'] = conf.getint('crawl', 'relay')
CONF['socket_timeout'] = conf.getint('crawl', 'socket_timeout')
CONF['cron_delay'] = conf.getint('crawl', 'cron_delay')
CONF['snapshot_delay'] = conf.getint('crawl', 'snapshot_delay')
CONF['max_age'] = conf.getint('crawl', 'max_age')
CONF['peers_per_node'] = conf.getint('crawl', 'peers_per_node')
CONF['ipv6'] = conf.getboolean('crawl', 'ipv6')
CONF['ipv6_prefix'] = conf.getint('crawl', 'ipv6_prefix')
CONF['nodes_per_ipv6_prefix'] = conf.getint('crawl',
'nodes_per_ipv6_prefix')
CONF['include_asns'] = None
include_asns = conf.get('crawl', 'include_asns').strip()
if include_asns:
CONF['include_asns'] = set(include_asns.split("\n"))
CONF['include_asns_from_url'] = conf.get('crawl', 'include_asns_from_url')
CONF['exclude_asns'] = None
exclude_asns = conf.get('crawl', 'exclude_asns').strip()
if exclude_asns:
CONF['exclude_asns'] = set(exclude_asns.split("\n"))
CONF['default_exclude_ipv4_networks'] = list_excluded_networks(
conf.get('crawl', 'exclude_ipv4_networks'))
CONF['default_exclude_ipv6_networks'] = list_excluded_networks(
conf.get('crawl', 'exclude_ipv6_networks'))
CONF['exclude_ipv4_networks'] = CONF['default_exclude_ipv4_networks']
CONF['exclude_ipv6_networks'] = CONF['default_exclude_ipv6_networks']
CONF['exclude_ipv4_bogons'] = conf.getboolean('crawl',
'exclude_ipv4_bogons')
CONF['exclude_ipv6_bogons'] = conf.getboolean('crawl',
'exclude_ipv6_bogons')
CONF['exclude_ipv4_networks_from_url'] = conf.get(
'crawl', 'exclude_ipv4_networks_from_url')
CONF['exclude_ipv6_networks_from_url'] = conf.get(
'crawl', 'exclude_ipv6_networks_from_url')
CONF['onion'] = conf.getboolean('crawl', 'onion')
CONF['tor_proxies'] = []
if CONF['onion']:
tor_proxies = conf.get('crawl', 'tor_proxies').strip().split("\n")
CONF['tor_proxies'] = [
(p.split(":")[0], int(p.split(":")[1])) for p in tor_proxies]
CONF['onion_nodes'] = conf.get('crawl', 'onion_nodes').strip().split("\n")
CONF['include_checked'] = conf.getboolean('crawl', 'include_checked')
CONF['crawl_dir'] = conf.get('crawl', 'crawl_dir')
if not os.path.exists(CONF['crawl_dir']):
os.makedirs(CONF['crawl_dir'])
# Set to True for master process
CONF['master'] = argv[2] == "master"
def main(argv):
if len(argv) < 3 or not os.path.exists(argv[1]):
print("Usage: crawl.py [config] [master|slave]")
return 1
# Initialize global conf
init_conf(argv)
# Initialize logger
loglevel = logging.INFO
if CONF['debug']:
loglevel = logging.DEBUG
logformat = ("[%(process)d] %(asctime)s,%(msecs)05.1f %(levelname)s "
"(%(funcName)s) %(message)s")
logging.basicConfig(level=loglevel,
format=logformat,
filename=CONF['logfile'],
filemode='a')
print("Log: {}, press CTRL+C to terminate..".format(CONF['logfile']))
global REDIS_CONN
REDIS_CONN = new_redis_conn(db=CONF['db'])
if CONF['master']:
REDIS_CONN.set('crawl:master:state', "starting")
logging.info("Removing all keys")
redis_pipe = REDIS_CONN.pipeline()
redis_pipe.delete('up')
for key in get_keys(REDIS_CONN, 'node:*'):
redis_pipe.delete(key)
for key in get_keys(REDIS_CONN, 'crawl:cidr:*'):
redis_pipe.delete(key)
redis_pipe.delete('pending')
redis_pipe.execute()
update_included_asns()
update_excluded_networks()
set_pending()
REDIS_CONN.set('crawl:master:state', "running")
# Spawn workers (greenlets) including one worker reserved for cron tasks
workers = []
if CONF['master']:
workers.append(gevent.spawn(cron))
for _ in xrange(CONF['workers'] - len(workers)):
workers.append(gevent.spawn(task))
logging.info("Workers: %d", len(workers))
gevent.joinall(workers)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))