3 # Search logs for high-bandwith users and create a list of suspicious IPs.
4 # There are three states: bulk, block, ban. The first are bulk requesters
5 # that need throtteling, the second bulk requesters that have overdone it
6 # and the last manually banned IPs.
8 # The list can then be used in apache using rewrite rules to
9 # direct bulk users to smaller thread pools or block them. A
10 # typical apache config that uses php-fpm pools would look
13 # Alias /nominatim-www/ "/var/www/nominatim/"
14 # Alias /nominatim-bulk/ "/var/www/nominatim/"
15 # <Directory "/var/www/nominatim/">
16 # Options MultiViews FollowSymLinks
17 # AddType text/html .php
20 # <Location /nominatim-www>
21 # AddHandler fcgi:/var/run/php5-fpm-www.sock .php
23 # <Location /nominatim-bulk>
24 # AddHandler fcgi:/var/run/php5-fpm-bulk.sock .php
27 # Redirect 509 /nominatim-block/
28 # ErrorDocument 509 "Bandwidth limit exceeded."
29 # Redirect 403 /nominatim-ban/
30 # ErrorDocument 403 "Access blocked."
33 # RewriteMap bulklist txt:/home/wherever/ip-block.map
34 # RewriteRule ^/(.*) /nominatim-${bulklist:%{REMOTE_ADDR}|www}/$1 [PT]
41 BASEDIR = os.path.normpath(os.path.join(os.path.realpath(__file__), '../..'))
46 # Copy into settings/ip_blcoks.conf and adapt as required.
48 BLOCKEDFILE= BASEDIR + '/settings/ip_blocks.map'
49 LOGFILE= BASEDIR + '/log/restricted_ip.log'
51 # space-separated list of IPs that are never banned
53 # space-separated list of IPs manually blocked
56 # time before a automatically blocked IP is allowed back
57 BLOCKCOOLOFF_PERIOD='1 hour'
58 # quiet time before an IP is released from the bulk pool
59 BULKCOOLOFF_PERIOD='15 min'
70 # END OF DEFAULT SETTINGS
74 execfile(os.path.expanduser(BASEDIR + "/settings/ip_blocks.conf"))
78 # read the previous blocklist
79 WHITELIST = set(WHITELIST.split()) if WHITELIST else set()
82 BLACKLIST = set(BLACKLIST.split()) if BLACKLIST else set()
87 fd = open(BLOCKEDFILE)
89 ip, typ = line.strip().split(' ')
90 if ip not in BLACKLIST:
97 pass #ignore non-existing file
99 # determine current load
100 fd = open("/proc/loadavg")
101 avgload = int(float(fd.readline().split()[2]))
104 conn = psycopg2.connect('dbname=nominatim')
106 cur.execute("select count(*)/60 from new_query_log where starttime > now() - interval '1min'")
107 dbload = int(cur.fetchone()[0])
109 BLOCK_LIMIT = max(BLOCK_LOWER, BLOCK_UPPER - BLOCK_LOADFAC * (dbload - 75))
110 BULKLONG_LIMIT = max(BULK_LOWER, BULKLONG_LIMIT - BULK_LOADFAC * (avgload - 14))
111 if len(prevbulks) > 85:
112 BLOCK_LIMIT = max(3600, BLOCK_LOWER - (len(prevbulks) - 85)*10)
114 # get the new block candidates
116 SELECT ipaddress, max(count) FROM
118 (SELECT ipaddress, sum(case when endtime is null then 1 else 1+date_part('epoch',endtime-starttime) end) as count FROM new_query_log
119 WHERE starttime > now() - interval '1 hour' GROUP BY ipaddress) as i
122 (SELECT ipaddress, count * 3 FROM
123 (SELECT ipaddress, sum(case when endtime is null then 1 else 1+date_part('epoch',endtime-starttime) end) as count FROM new_query_log
124 WHERE starttime > now() - interval '10 min' GROUP BY ipaddress) as i
125 WHERE count > %s)) as o
127 """, (BULKLONG_LIMIT, BULKSHORT_LIMIT))
133 if c[0] not in WHITELIST and c[0] not in BLACKLIST:
134 if c[1] > BLOCK_UPPER and c[0] not in prevbulks:
136 if c[0] not in prevblocks:
137 emergencyblocks.append(c[0])
141 # IPs from the block list that are no longer in the bulk list
142 deblockcandidates = set()
143 # IPs from the bulk list that are no longer in the bulk list
144 debulkcandidates = set()
145 # new IPs to go into the block list
149 for ip in prevblocks:
154 deblockcandidates.add(ip)
158 if bulkips[ip] > BLOCK_LIMIT:
160 newlyblocked.append(ip)
165 debulkcandidates.add(ip)
167 # cross-check deblock candidates
168 if deblockcandidates:
170 SELECT DISTINCT ipaddress FROM new_query_log
171 WHERE ipaddress IN ('%s') AND starttime > now() - interval '%s'
172 """ % ("','".join(deblockcandidates), BLOCKCOOLOFF_PERIOD))
176 deblockcandidates.remove(c[0])
177 # deblocked IPs go back to the bulk pool to catch the ones that simply
178 # ignored the HTTP error and just continue to hammer the API.
179 # Those that behave and stopped will be debulked a minute later.
180 for ip in deblockcandidates:
183 # cross-check debulk candidates
186 SELECT DISTINCT ipaddress FROM new_query_log
187 WHERE ipaddress IN ('%s') AND starttime > now() - interval '%s'
188 AND starttime > date_trunc('day', now())
189 """ % ("','".join(debulkcandidates), BULKCOOLOFF_PERIOD))
193 debulkcandidates.remove(c[0])
195 for ip in bulkips.iterkeys():
198 # write out the new list
199 fd = open(BLOCKEDFILE, 'w')
201 fd.write(ip + " block\n")
203 fd.write(ip + " bulk\n")
205 fd.write(ip + " ban\n")
209 logstr = datetime.datetime.now().strftime('%Y-%m-%d %H:%M') + ' %s %s\n'
210 fd = open(LOGFILE, 'a')
211 if deblockcandidates:
212 fd.write(logstr % ('unblocked:', ', '.join(deblockcandidates)))
214 fd.write(logstr % (' debulked:', ', '.join(debulkcandidates)))
216 fd.write(logstr % ('new bulks:', ', '.join(bulkips.keys())))
218 fd.write(logstr % ('dir.block:', ', '.join(emergencyblocks)))
220 fd.write(logstr % ('new block:', ', '.join(newlyblocked)))