forked from pythonhacker/rotating-proxy-daemon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrotate_proxies.py
653 lines (516 loc) · 23.7 KB
/
rotate_proxies.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
"""
Script to auto-rotate and configure Linodes as squid proxies.
"""
import argparse
import os
import sys
import time
import random
import collections
import operator
import uuid
import threading
import signal
import json
import email_report
from utils import daemonize, randpass, enum, LinodeCommand
# Rotation Policies
Policy = enum('ROTATION_RANDOM',
# Least recently used
'ROTATION_LRU',
# Switch to another region
'ROTATION_NEW_REGION',
# LRU + New region
'ROTATION_LRU_NEW_REGION')
region_dict = {2: 'Dallas',
3: 'Fremont',
4: 'Atlanta',
6: 'Newark',
7: 'London',
8: 'Tokyo',
9: 'Singapore',
10: 'Frankfurt'}
email_template = """
I just switched a proxy node in the proxy infrastructure. Details are below.
In: %(label)s, %(proxy_in)s
Out: %(label)s, %(proxy_out)s
Region: %(region)s
-- Linode proxy daemon
"""
# Post process command
post_process_cmd_template = """ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null %s@%s "%s" """
iptables_restore_cmd = "sudo iptables-restore < /etc/iptables.rules"
squid_restart_cmd = "sudo squid3 -f /etc/squid3/squid.conf"
class ProxyConfig(object):
""" Class representing configuration of crawler proxy infrastructure """
def __init__(self, cfg='proxy.conf'):
""" Initialize proxy config from the config file """
self.parse_config(cfg)
# This is a file with each line of the form
# IPV4 address, datacenter code, linode-id, switch_in timestamp, switch_out timestamp
# E.g: 45.79.91.191, 3, 1446731065, 144673390
try:
proxies = map(lambda x: x.strip().split(','), open(self.proxylist).readlines())
# Proxy IP to (switch_in, switch_out) timestamp mappings
self.proxy_dict = {}
# Proxy IP to enabled mapping
self.proxy_state = {}
self.process_proxies(proxies)
except (OSError, IOError), e:
print e
sys.exit("Fatal error, proxy list input file " + self.proxylist + " not found!")
try:
self.proxy_template = open(self.lb_template).read()
except (OSError, IOError), e:
print e
sys.exit("Fatal error, template config input file " + template_file + " not found!")
def parse_config(self, cfg):
""" Parse the configuration file and load config """
self.config = json.load(open(cfg))
for key,value in self.config.items():
# Set attribute locally
setattr(self, key, value)
# Do some further processing
self.frequency = float(self.frequency)*3600.0
self.policy = eval('Policy.' + self.policy)
def get_proxy_ips(self):
""" Return all proxy IP addresses as a list """
return self.proxy_state.keys()
def get_active_proxies(self):
""" Return a list of all active proxies as a list """
return map(self.proxy_dict.get, filter(self.proxy_state.get, self.proxy_state.keys()))
def process_proxies(self, proxies):
""" Process the proxy information to create internal dictionaries """
# Prepare the proxy region dict
for proxy_ip, region, proxy_id, switch_in, switch_out in proxies:
# If switch_in ==0: put current time
if int(float(switch_in))==0:
switch_in = int(time.time())
if int(float(switch_out))==0:
switch_out = int(time.time())
self.proxy_dict[proxy_ip] = [proxy_ip, int(region), int(proxy_id), int(float(switch_in)), int(float(switch_out))]
self.proxy_state[proxy_ip] = True
print 'Processed',len(self.proxy_state),'proxies.'
def get_proxy_for_rotation(self,
use_random=False,
least_used=False,
region_switch=False,
input_region=3):
""" Return a proxy IP address for rotation using the given settings. The
returned proxy will be replaced with a new proxy.
@use_random - Means returns a random proxy from the current active list
@least_used - Returns a proxy IP which is the oldest switched out one
so we keep the switching more or less democratic.
@region_switch - Returns a proxy which belongs to a different region
from the new proxy.
@input_region - The region of the new proxy node - defaults to Fremont, CA.
Note that if use_random is set to true, the other parameters are ignored.
"""
active_proxies = self.get_active_proxies()
print 'Active proxies =>',active_proxies
if use_random:
# Pick a random proxy IP
proxy = random.choice(active_proxies)
print 'Returning proxy =>',proxy
proxy_ip = proxy[0]
# Remove it from every data structure
self.switch_out_proxy(proxy_ip)
return proxy
if least_used:
# Pick the oldest switched out proxy i.e one
# with smallest switched out value
proxies_used = sorted(active_proxies,
key=operator.itemgetter(-1))
print 'Proxies used =>',proxies_used
if region_switch:
# Find the one with a different region from input
for proxy, reg, pi, si, so in proxies_used:
if reg != input_region:
print 'Returning proxy',proxy,'from region',reg
self.switch_out_proxy(proxy)
return proxy
# If all regions are already in use, pick the last used
# proxy anyway
return proxies_used[0][0]
if region_switch:
# Pick a random proxy not in the input region
proxies = active_proxies
random.shuffle(proxies)
for proxy, reg, pi, si, so in proxies:
if reg != input_region:
print 'Returning proxy',proxy,'from region',reg
self.switch_out_proxy(proxy)
return proxy
def __getattr__(self, name):
""" Return from local, else written from config """
try:
return self.__dict__[name]
except KeyError:
return self.config.get(name)
def switch_out_proxy(self, proxy):
""" Switch out a given proxy IP """
# Disable it
self.proxy_state[proxy] = False
# Mark its switched out timestamp
self.proxy_dict[proxy][-1] = int(time.time())
def switch_in_proxy(self, proxy, proxy_id, region):
""" Switch in a given proxy IP """
# Mark its switched out timestamp
self.proxy_dict[proxy] = [proxy, int(region), int(proxy_id), int(time.time()), int(time.time())]
# Enable it
self.proxy_state[proxy] = True
def get_active_regions(self):
""" Return unique regions for which proxies are active """
regions = set()
for proxy,region,pi,si,so in self.proxy_dict.values():
if self.proxy_state[proxy]:
regions.add(region)
return list(regions)
def write(self, disabled=False):
""" Write current state to an output file """
lines = []
for proxy, reg, pi, si, so in self.proxy_dict.values():
if disabled or self.proxy_state[proxy]:
lines.append('%s,%s,%s,%s,%s\n' % (proxy, str(reg), str(pi), str(int(si)), str(int(so))))
open(self.proxylist,'w').writelines(lines)
def write_lb_config(self, disabled=False, test=False):
""" Write current proxy configuration into the load balancer config """
lines, idx = [], 1
# Shuffle
items = self.proxy_dict.values()
for i in range(10):
random.shuffle(items)
for proxy, reg, pi, si, so in items:
if self.proxy_state[proxy]:
lines.append('\tserver squid%d %s:8321 check inter 10000 rise 2 fall 5' % (idx, proxy))
idx += 1
squid_config = "\n".join(lines)
content = self.proxy_template % locals()
# Write to temp file
tmpfile = '/tmp/.haproxy.cfg'
open(tmpfile,'w').write(content)
# If running in test mode, don't do this!
if not test:
# Run as sudo
cmd = 'sudo cp %s %s; rm -f %s' % (tmpfile, self.lb_config, tmpfile)
os.system(cmd)
self.reload_lb()
return True
def reload_lb(self):
""" Reload the HAProxy load balancer """
return (os.system(self.lb_restart) == 0)
def get_proxy_id(self, proxy):
""" Given proxy return its id """
return self.proxy_dict[proxy][2]
def get_email_config(self):
""" Return email configuration """
return self.config['email']
class ProxyRotator(object):
""" Proxy rotation, provisioning & re-configuration with linode nodes """
def __init__(self, cfg='proxy.conf', test_mode=False, rotate=False, region=None):
self.config = ProxyConfig(cfg=cfg)
print 'Frequency set to',self.config.frequency,'seconds.'
# Test mode ?
self.test_mode = test_mode
# Event object
self.alarm = threading.Event()
# Clear the event
self.alarm.clear()
# Heartbeat file
self.hbf = '.heartbeat'
# Linode creation class
self.linode_cmd = LinodeCommand(verbose=True, config=self.config)
# If rotate is set, rotate before going to sleep
if rotate:
print 'Rotating a node'
self.rotate(region=region)
signal.signal(signal.SIGTERM, self.sighandler)
signal.signal(signal.SIGUSR1, self.sighandler)
def pick_region(self):
""" Pick the region for the new node """
# Try and pick a region not present in the
# current list of nodes
regions = self.config.get_active_regions()
# Shuffle current regions
random.shuffle(self.config.region_ids)
for reg in self.config.region_ids:
if reg not in regions:
return reg
# All regions already present ? Pick a random one.
return random.choice(self.config.region_ids)
def make_new_linode(self, region, test=False, verbose=False):
""" Make a new linode in the given region """
# If calling as test, make up an ip
if test:
return '.'.join(map(lambda x: str(random.randrange(20, 100)), range(4))), random.randrange(10000,
50000)
tup = (region,
self.config.plan_id,
self.config.os_id,
self.config.image_id,
'proxy_disk',
randpass())
print 'Making new linode in region',region,'...'
data = self.linode_cmd.linode_create(*tup)
# data = os.popen(cmd).read()
if verbose:
print data
# The IP is the last line of the command
ip = data.strip().split('\n')[-1].strip().split()[-1].strip()
# Proxy ID
pid = data.strip().split('\n')[-3].strip().split()[-1].strip()
print 'I.P address of new linode is',ip
print 'ID of new linode is',pid
# Post process the host
print 'Post-processing',ip,'...'
self.post_process(ip)
return ip, pid
def rotate(self, region=None):
""" Rotate the configuration to a new node """
proxy_out_label = None
# Pick the data-center
if region == None:
print 'Picking a region ...'
region = self.pick_region()
else:
print 'Using supplied region',region,'...'
# Switch in the new linode from this region
new_proxy, proxy_id = self.make_new_linode(region)
# Rotate another node
if self.config.policy == Policy.ROTATION_RANDOM:
proxy_out = self.config.get_proxy_for_rotation(use_random=True, input_region=region)
elif self.config.policy == Policy.ROTATION_NEW_REGION:
proxy_out = self.config.get_proxy_for_rotation(region_switch=True, input_region=region)
elif self.config.policy == Policy.ROTATION_LRU:
proxy_out = self.config.get_proxy_for_rotation(least_used=True, input_region=region)
elif self.config.policy == Policy.ROTATION_LRU_NEW_REGION:
proxy_out = self.config.get_proxy_for_rotation(least_used=True, region_switch=True,
input_region=region)
# Switch in the new proxy
self.config.switch_in_proxy(new_proxy, proxy_id, region)
print 'Switched in new proxy',new_proxy
# Write configuration
self.config.write()
print 'Wrote new configuration.'
# Write new HAProxy LB template and reload ha proxy
ret1 = self.config.write_lb_config()
ret2 = self.config.reload_lb()
if ret1 and ret2:
if proxy_out != None:
print 'Switched out proxy',proxy_out
proxy_out_id = int(self.config.get_proxy_id(proxy_out))
if proxy_out_id != 0:
proxy_out_label = self.linode_cmd.get_label(proxy_out_id)
print 'Removing switched out linode',proxy_out_id
self.linode_cmd.linode_delete(proxy_out_id)
else:
'Proxy id is 0, not removing linode',proxy_out
else:
print 'Error - Did not switch out proxy as there was a problem in writing/restarting LB'
if proxy_out_label != None:
# Get its label and assign it to the new linode
print 'Assigning label',proxy_out_label,'to new linode',proxy_id
time.sleep(5)
self.linode_cmd.linode_update(int(proxy_id),
proxy_out_label,
self.config.group)
# Post process the host
print 'Post-processing',new_proxy,'...'
self.post_process(new_proxy)
self.send_email(proxy_out, proxy_out_label, new_proxy, region)
def send_email(self, proxy_out, label, proxy_in, region):
""" Send email upon switching of a proxy """
print 'Sending email...'
region = region_dict[region]
content = email_template % locals()
email_config = self.config.get_email_config()
email_report.email_report(email_config, "%s", content)
def post_process(self, ip):
""" Post-process a switched-in host """
# Sleep a bit before sshing
time.sleep(5)
cmd = post_process_cmd_template % (self.config.user, ip, iptables_restore_cmd)
print 'SSH command 1=>',cmd
os.system(cmd)
cmd = post_process_cmd_template % (self.config.user, ip, squid_restart_cmd)
print 'SSH command 2=>',cmd
os.system(cmd)
def alive(self):
""" Return whether I should be alive """
return os.path.isfile(self.hbf)
def create(self, region=3):
""" Create a new linode for testing """
print 'Creating new linode in region',region,'...'
new_proxy = self.make_new_linode(region, verbose=True)
def drop(self):
""" Drop all the proxies in current configuration (except the LB) """
print 'Dropping all proxies ...'
proxies = rotator.linode_cmd.linode_list_proxies()
for item in proxies.split('\n'):
if item.strip() == "": continue
ip,dc,lid,si,so = item.split(',')
print '\tDropping linode',lid,'with IP',ip,'from dc',dc,'...'
self.linode_cmd.linode_delete(int(lid))
print 'done.'
def provision(self, count=8, add=False):
""" Provision an entirely fresh set of linodes after dropping current set """
if not add:
self.drop()
num, idx = 0, 0
# If we are adding Linodes without dropping, start from current count
if add:
start = len(self.config.get_active_proxies())
else:
start = 0
for i in range(start, start + count):
# region = self.pick_region()
# Do a round-robin on regions
region = self.config.region_ids[idx % len(self.config.region_ids) ]
try:
ip, lid = self.make_new_linode(region)
self.linode_cmd.linode_update(int(lid),
self.config.proxy_prefix + str(i+1),
self.config.group)
num += 1
except Exception, e:
print 'Error creating linode',e
idx += 1
print 'Provisioned',num,'linodes.'
linodes_list = rotator.linode_cmd.linode_list_proxies().strip().split('\n')
# Randomize it
for i in range(5):
random.shuffle(linodes_list)
print >> open('proxies.list', 'w'), '\n'.join(linodes_list)
print 'Saved current proxy configuration to proxies.list'
def test(self):
""" Function to be called in loop for testing """
proxy_out_label = ''
region = self.pick_region()
print 'Rotating proxy to new region',region,'...'
# Make a test IP
new_proxy, proxy_id = self.make_new_linode(region, test=True)
proxy_out = self.config.get_proxy_for_rotation(least_used=True, region_switch=True,
input_region=region)
if proxy_out != None:
print 'Switched out proxy',proxy_out
proxy_out_id = int(self.config.get_proxy_id(proxy_out))
proxy_out_label = self.linode_cmd.get_label(proxy_out_id)
# Switch in the new proxy
self.config.switch_in_proxy(new_proxy, proxy_id, region)
print 'Switched in new proxy',new_proxy
# Write new HAProxy LB template and reload ha proxy
self.config.write_lb_config(test=True)
self.send_email(proxy_out, proxy_out_label, new_proxy, region)
def stop(self):
""" Stop the rotator process """
try:
os.remove(self.hbf)
# Signal the event
self.alarm.set()
return True
except (IOError, OSError), e:
pass
return False
def sighandler(self, signum, stack):
""" Signal handler """
# This will be called when you want to stop the daemon
self.stop()
def run(self, daemon=True):
""" Run as a background process, rotating proxies """
# Touch heartbeat file
open(self.hbf,'w').write('')
# Fork
if daemon:
print 'Daemonizing...'
daemonize('rotator.pid',logfile='rotator.log', drop=True)
else:
# Write PID anyway
open('rotator.pid','w').write(str(os.getpid()))
print 'Proxy rotate daemon started.'
count = 1
while True:
# Wait on event object till woken up
self.alarm.wait(self.config.frequency)
status = self.alive()
if not status:
print 'Daemon signalled to exit. Quitting ...'
break
print 'Rotating proxy node, round #%d ...' % count
if self.test_mode:
self.test()
else:
self.rotate()
count += 1
sys.exit(0)
if __name__ == "__main__":
parser = argparse.ArgumentParser(prog='rotate_proxies')
parser.add_argument('-C','--conf',help='Use the given configuration file', default='proxy.conf')
parser.add_argument('-s','--stop',help='Stop the currently running daemon', action='store_true')
parser.add_argument('-t','--test',help='Run the test function to test the daemon', action='store_true')
parser.add_argument('-n','--nodaemon',help='Run in foreground', action='store_true',default=False)
parser.add_argument('-c','--create',help='Create a proxy linode', action='store_true',default=False)
parser.add_argument('-r','--region',help='Specify a region when creating a linode', default=3, type=int)
parser.add_argument('-R','--rotate',help='Rotate a node immediately and go to sleep', default=False,
action='store_true')
parser.add_argument('-D','--drop',help='Drop the current configuration of proxies (except LB)',
default=False,action='store_true')
parser.add_argument('-P','--provision',help='Provision a fresh set of proxy linodes',default=False,
action='store_true')
parser.add_argument('-A','--add',help='Add a new set of linodes to existing set',default=False,
action='store_true')
parser.add_argument('-N','--num',help='Number of new linodes to provision or add (use with -P or -A)',type=int,
default=8)
parser.add_argument('-w','--writeconfig',help='Load current Linode proxies configuration and write a fresh proxies.list config file', action='store_true')
parser.add_argument('-W','--writelbconfig',help='Load current Linode proxies configuration and write a fresh HAProxy config to /etc/haproxy/haproxy.cfg', action='store_true')
parser.add_argument('--restart',help='Restart the daemon',action='store_true')
args = parser.parse_args()
# print args
rotator = ProxyRotator(cfg=args.conf,
test_mode = args.test,
rotate=args.rotate)
if args.test:
print 'Testing the daemon'
rotator.test()
sys.exit(0)
if args.add != 0:
print 'Adding new set of',args.num,'linode proxies ...'
rotator.provision(count = int(args.num), add=True)
sys.exit(0)
if args.provision != 0:
print 'Provisioning fresh set of',args.num,'linode proxies ...'
rotator.provision(count = int(args.num))
sys.exit(0)
if args.create:
print 'Creating new linode...'
rotator.create(int(args.region))
sys.exit(0)
if args.drop:
print 'Dropping current proxies ...'
rotator.drop()
sys.exit(0)
if args.writeconfig:
# Load current proxies config and write proxies.list file
print >> open('proxies.list', 'w'), rotator.linode_cmd.linode_list_proxies().strip()
print 'Saved current proxy configuration to proxies.list'
sys.exit(0)
if args.writelbconfig:
# Load current proxies config and write proxies.list file
rotator.config.write_lb_config()
print 'Wrote HAProxy configuration'
sys.exit(0)
if args.stop or args.restart:
pidfile = 'rotator.pid'
if os.path.isfile(pidfile):
print 'Stopping proxy rotator daemon ...',
# Signal the running daemon with SIGTERM
try:
os.kill(int(open(pidfile).read().strip()), signal.SIGTERM)
print 'stopped.'
except OSError, e:
print e
print 'Unable to stop, possibly daemon not running.'
if args.restart:
print 'Starting...'
os.system('python rotate_proxies.py')
sys.exit(1)
rotator.run(daemon=(not args.nodaemon))