/usr/lib/python2.7/dist-packages/ooni/geoip.py is in ooniprobe 1.3.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | import re
import os
import random
from hashlib import sha256
from twisted.web import client, http_headers
from ooni.utils.net import hasRawSocketPermission
client._HTTP11ClientFactory.noisy = False
from twisted.internet import reactor, defer
from ooni.utils import log
from ooni import errors
try:
from pygeoip import GeoIP
except ImportError:
try:
import GeoIP as CGeoIP
def GeoIP(database_path, *args, **kwargs):
return CGeoIP.open(database_path, CGeoIP.GEOIP_STANDARD)
except ImportError:
log.err("Unable to import pygeoip. We will not be able to run geo IP related measurements")
class GeoIPDataFilesNotFound(Exception):
pass
def IPToLocation(ipaddr):
from ooni.settings import config
city_file = config.get_data_file_path('GeoIP/GeoLiteCity.dat')
country_file = config.get_data_file_path('GeoIP/GeoIP.dat')
asn_file = config.get_data_file_path('GeoIP/GeoIPASNum.dat')
location = {'city': None, 'countrycode': 'ZZ', 'asn': 'AS0'}
def error():
log.err("Could not find GeoIP data file in %s."
"Try running ooniresources --update-geoip or"
" edit your ooniprobe.conf" % config.advanced.geoip_data_dir)
try:
country_dat = GeoIP(country_file)
location['countrycode'] = country_dat.country_code_by_addr(ipaddr)
if not location['countrycode']:
location['countrycode'] = 'ZZ'
except IOError:
error()
try:
city_dat = GeoIP(city_file)
location['city'] = city_dat.record_by_addr(ipaddr)['city']
except:
error()
try:
asn_dat = GeoIP(asn_file)
location['asn'] = asn_dat.org_by_addr(ipaddr).split(' ')[0]
except:
error()
return location
def database_version():
from ooni.settings import config
version = {
'GeoIP': {
'sha256': None,
'timestamp': None,
},
'GeoIPASNum': {
'sha256': None,
'timestamp': None
},
'GeoLiteCity': {
'sha256': None,
'timestamp': None
}
}
for key in version.keys():
geoip_file = config.get_data_file_path("GeoIP/" + key + ".dat")
if not geoip_file or not os.path.isfile(geoip_file):
continue
timestamp = os.stat(geoip_file).st_mtime
sha256hash = sha256()
with open(geoip_file) as f:
while True:
chunk = f.read(8192)
if not chunk:
break
sha256hash.update(chunk)
version[key]['timestamp'] = timestamp
version[key]['sha256'] = sha256hash.hexdigest()
return version
class HTTPGeoIPLookupper(object):
url = None
_agent = client.Agent
def __init__(self):
self.agent = self._agent(reactor)
def _response(self, response):
from ooni.utils.net import BodyReceiver
content_length = response.headers.getRawHeaders('content-length')
finished = defer.Deferred()
response.deliverBody(BodyReceiver(finished, content_length))
finished.addCallback(self.parseResponse)
return finished
def parseResponse(self, response_body):
"""
Override this with the logic for parsing the response.
Should return the IP address of the probe.
"""
pass
def failed(self, failure):
log.err("Failed to lookup via %s" % self.url)
log.exception(failure)
return failure
def lookup(self):
from ooni.utils.net import userAgents
headers = {}
headers['User-Agent'] = [random.choice(userAgents)]
d = self.agent.request("GET", self.url, http_headers.Headers(headers))
d.addCallback(self._response)
d.addErrback(self.failed)
return d
class UbuntuGeoIP(HTTPGeoIPLookupper):
url = "http://geoip.ubuntu.com/lookup"
def parseResponse(self, response_body):
m = re.match(".*<Ip>(.*)</Ip>.*", response_body)
probe_ip = m.group(1)
return probe_ip
class TorProjectGeoIP(HTTPGeoIPLookupper):
url = "https://check.torproject.org/"
def parseResponse(self, response_body):
regexp = "Your IP address appears to be: <strong>((\d+\.)+(\d+))"
probe_ip = re.search(regexp, response_body).group(1)
return probe_ip
class ProbeIP(object):
strategy = None
address = None
def __init__(self):
self.geoIPServices = {
'ubuntu': UbuntuGeoIP,
'torproject': TorProjectGeoIP
}
self.geodata = {
'asn': 'AS0',
'city': None,
'countrycode': 'ZZ',
'ip': '127.0.0.1'
}
def resolveGeodata(self):
from ooni.settings import config
self.geodata = IPToLocation(self.address)
self.geodata['ip'] = self.address
if not config.privacy.includeasn:
self.geodata['asn'] = 'AS0'
if not config.privacy.includecity:
self.geodata['city'] = None
if not config.privacy.includecountry:
self.geodata['countrycode'] = 'ZZ'
if not config.privacy.includeip:
self.geodata['ip'] = '127.0.0.1'
@defer.inlineCallbacks
def lookup(self):
try:
yield self.askTor()
log.msg("Found your IP via Tor %s" % self.address)
self.resolveGeodata()
defer.returnValue(self.address)
except errors.TorStateNotFound:
log.debug("Tor is not running. Skipping IP lookup via Tor.")
except Exception:
log.msg("Unable to lookup the probe IP via Tor.")
try:
yield self.askTraceroute()
log.msg("Found your IP via Traceroute %s" % self.address)
self.resolveGeodata()
defer.returnValue(self.address)
except errors.InsufficientPrivileges:
log.debug("Cannot determine the probe IP address with a traceroute, becase of insufficient privileges")
except:
log.msg("Unable to lookup the probe IP via traceroute")
try:
yield self.askGeoIPService()
log.msg("Found your IP via a GeoIP service: %s" % self.address)
self.resolveGeodata()
defer.returnValue(self.address)
except Exception:
log.msg("Unable to lookup the probe IP via GeoIPService")
raise
@defer.inlineCallbacks
def askGeoIPService(self):
# Shuffle the order in which we test the geoip services.
services = self.geoIPServices.items()
random.shuffle(services)
for service_name, service in services:
s = service()
log.msg("Looking up your IP address via %s" % service_name)
try:
self.address = yield s.lookup()
self.strategy = 'geo_ip_service-' + service_name
break
except Exception:
log.msg("Failed to lookup your IP via %s" % service_name)
if not self.address:
raise errors.ProbeIPUnknown
def askTraceroute(self):
"""
Perform a UDP traceroute to determine the probes IP address.
"""
if not hasRawSocketPermission():
raise errors.InsufficientPrivileges
raise NotImplemented
def askTor(self):
"""
Obtain the probes IP address by asking the Tor Control port via GET INFO
address.
XXX this lookup method is currently broken when there are cached descriptors or consensus documents
see: https://trac.torproject.org/projects/tor/ticket/8214
"""
from ooni.settings import config
if config.tor_state:
d = config.tor_state.protocol.get_info("address")
@d.addCallback
def cb(result):
self.strategy = 'tor_get_info_address'
self.address = result.values()[0]
return d
else:
raise errors.TorStateNotFound
|