2015-08-22 10:48:49 +02:00
|
|
|
|
# A simple upnp module to forward port for BitMessage
|
|
|
|
|
# Reference: http://mattscodecave.com/posts/using-python-and-upnp-to-forward-a-port
|
2016-05-02 17:33:18 +02:00
|
|
|
|
import httplib
|
|
|
|
|
from random import randint
|
2015-08-22 10:48:49 +02:00
|
|
|
|
import socket
|
2015-11-21 11:59:44 +01:00
|
|
|
|
from struct import unpack, pack
|
|
|
|
|
import threading
|
|
|
|
|
import time
|
2017-02-22 09:34:54 +01:00
|
|
|
|
from bmconfigparser import BMConfigParser
|
2015-11-22 16:18:59 +01:00
|
|
|
|
from helper_threading import *
|
2017-02-08 13:41:56 +01:00
|
|
|
|
import queues
|
2015-11-21 11:59:44 +01:00
|
|
|
|
import shared
|
2017-01-14 23:20:15 +01:00
|
|
|
|
import state
|
2015-11-22 23:41:03 +01:00
|
|
|
|
import tr
|
2015-08-22 10:48:49 +02:00
|
|
|
|
|
2017-01-11 18:13:00 +01:00
|
|
|
|
def createRequestXML(service, action, arguments=None):
|
2015-08-22 10:48:49 +02:00
|
|
|
|
from xml.dom.minidom import Document
|
|
|
|
|
|
|
|
|
|
doc = Document()
|
|
|
|
|
|
|
|
|
|
# create the envelope element and set its attributes
|
|
|
|
|
envelope = doc.createElementNS('', 's:Envelope')
|
|
|
|
|
envelope.setAttribute('xmlns:s', 'http://schemas.xmlsoap.org/soap/envelope/')
|
|
|
|
|
envelope.setAttribute('s:encodingStyle', 'http://schemas.xmlsoap.org/soap/encoding/')
|
|
|
|
|
|
|
|
|
|
# create the body element
|
|
|
|
|
body = doc.createElementNS('', 's:Body')
|
|
|
|
|
|
|
|
|
|
# create the function element and set its attribute
|
|
|
|
|
fn = doc.createElementNS('', 'u:%s' % action)
|
|
|
|
|
fn.setAttribute('xmlns:u', 'urn:schemas-upnp-org:service:%s' % service)
|
|
|
|
|
|
|
|
|
|
# setup the argument element names and values
|
|
|
|
|
# using a list of tuples to preserve order
|
|
|
|
|
|
|
|
|
|
# container for created nodes
|
|
|
|
|
argument_list = []
|
|
|
|
|
|
|
|
|
|
# iterate over arguments, create nodes, create text nodes,
|
|
|
|
|
# append text nodes to nodes, and finally add the ready product
|
|
|
|
|
# to argument_list
|
2017-01-11 18:13:00 +01:00
|
|
|
|
if arguments is not None:
|
|
|
|
|
for k, v in arguments:
|
|
|
|
|
tmp_node = doc.createElement(k)
|
|
|
|
|
tmp_text_node = doc.createTextNode(v)
|
|
|
|
|
tmp_node.appendChild(tmp_text_node)
|
|
|
|
|
argument_list.append(tmp_node)
|
2015-08-22 10:48:49 +02:00
|
|
|
|
|
|
|
|
|
# append the prepared argument nodes to the function element
|
|
|
|
|
for arg in argument_list:
|
|
|
|
|
fn.appendChild(arg)
|
|
|
|
|
|
|
|
|
|
# append function element to the body element
|
|
|
|
|
body.appendChild(fn)
|
|
|
|
|
|
|
|
|
|
# append body element to envelope element
|
|
|
|
|
envelope.appendChild(body)
|
|
|
|
|
|
|
|
|
|
# append envelope element to document, making it the root element
|
|
|
|
|
doc.appendChild(envelope)
|
|
|
|
|
|
|
|
|
|
# our tree is ready, conver it to a string
|
|
|
|
|
return doc.toxml()
|
|
|
|
|
|
|
|
|
|
class UPnPError(Exception):
|
|
|
|
|
def __init__(self, message):
|
|
|
|
|
self.message
|
|
|
|
|
|
|
|
|
|
class Router:
|
|
|
|
|
name = ""
|
|
|
|
|
path = ""
|
|
|
|
|
address = None
|
|
|
|
|
routerPath = None
|
2015-11-21 11:59:44 +01:00
|
|
|
|
extPort = None
|
|
|
|
|
|
2015-08-22 10:48:49 +02:00
|
|
|
|
def __init__(self, ssdpResponse, address):
|
|
|
|
|
import urllib2
|
|
|
|
|
from xml.dom.minidom import parseString
|
|
|
|
|
from urlparse import urlparse
|
2016-05-02 17:10:45 +02:00
|
|
|
|
from debug import logger
|
2015-08-22 10:48:49 +02:00
|
|
|
|
|
|
|
|
|
self.address = address
|
|
|
|
|
|
|
|
|
|
row = ssdpResponse.split('\r\n')
|
|
|
|
|
header = {}
|
|
|
|
|
for i in range(1, len(row)):
|
|
|
|
|
part = row[i].split(': ')
|
|
|
|
|
if len(part) == 2:
|
|
|
|
|
header[part[0].lower()] = part[1]
|
|
|
|
|
|
2016-05-02 17:10:45 +02:00
|
|
|
|
try:
|
|
|
|
|
self.routerPath = urlparse(header['location'])
|
|
|
|
|
if not self.routerPath or not hasattr(self.routerPath, "hostname"):
|
|
|
|
|
logger.error ("UPnP: no hostname: %s", header['location'])
|
|
|
|
|
except KeyError:
|
|
|
|
|
logger.error ("UPnP: missing location header")
|
2015-08-22 10:48:49 +02:00
|
|
|
|
|
|
|
|
|
# get the profile xml file and read it into a variable
|
|
|
|
|
directory = urllib2.urlopen(header['location']).read()
|
|
|
|
|
|
|
|
|
|
# create a DOM object that represents the `directory` document
|
|
|
|
|
dom = parseString(directory)
|
|
|
|
|
|
|
|
|
|
self.name = dom.getElementsByTagName('friendlyName')[0].childNodes[0].data
|
|
|
|
|
# find all 'serviceType' elements
|
|
|
|
|
service_types = dom.getElementsByTagName('serviceType')
|
|
|
|
|
|
|
|
|
|
for service in service_types:
|
2016-03-21 21:52:10 +01:00
|
|
|
|
if service.childNodes[0].data.find('WANIPConnection') > 0 or \
|
|
|
|
|
service.childNodes[0].data.find('WANPPPConnection') > 0:
|
2015-08-22 10:48:49 +02:00
|
|
|
|
self.path = service.parentNode.getElementsByTagName('controlURL')[0].childNodes[0].data
|
2016-06-21 10:11:15 +02:00
|
|
|
|
self.upnp_schema = service.childNodes[0].data.split(':')[-2]
|
2015-08-22 10:48:49 +02:00
|
|
|
|
|
|
|
|
|
def AddPortMapping(self, externalPort, internalPort, internalClient, protocol, description, leaseDuration = 0, enabled = 1):
|
2015-11-21 11:59:44 +01:00
|
|
|
|
from debug import logger
|
2016-06-21 10:11:15 +02:00
|
|
|
|
resp = self.soapRequest(self.upnp_schema + ':1', 'AddPortMapping', [
|
2016-06-22 22:54:06 +02:00
|
|
|
|
('NewRemoteHost', ''),
|
2015-08-22 10:48:49 +02:00
|
|
|
|
('NewExternalPort', str(externalPort)),
|
|
|
|
|
('NewProtocol', protocol),
|
|
|
|
|
('NewInternalPort', str(internalPort)),
|
|
|
|
|
('NewInternalClient', internalClient),
|
|
|
|
|
('NewEnabled', str(enabled)),
|
|
|
|
|
('NewPortMappingDescription', str(description)),
|
|
|
|
|
('NewLeaseDuration', str(leaseDuration))
|
|
|
|
|
])
|
2015-11-21 00:39:23 +01:00
|
|
|
|
self.extPort = externalPort
|
2015-11-21 11:59:44 +01:00
|
|
|
|
logger.info("Successfully established UPnP mapping for %s:%i on external port %i", internalClient, internalPort, externalPort)
|
2015-08-22 10:48:49 +02:00
|
|
|
|
return resp
|
|
|
|
|
|
|
|
|
|
def DeletePortMapping(self, externalPort, protocol):
|
2015-11-21 10:15:20 +01:00
|
|
|
|
from debug import logger
|
2016-06-21 10:11:15 +02:00
|
|
|
|
resp = self.soapRequest(self.upnp_schema + ':1', 'DeletePortMapping', [
|
2016-06-22 22:54:06 +02:00
|
|
|
|
('NewRemoteHost', ''),
|
2015-08-22 10:48:49 +02:00
|
|
|
|
('NewExternalPort', str(externalPort)),
|
|
|
|
|
('NewProtocol', protocol),
|
|
|
|
|
])
|
2015-11-21 10:17:27 +01:00
|
|
|
|
logger.info("Removed UPnP mapping on external port %i", externalPort)
|
2015-08-22 10:48:49 +02:00
|
|
|
|
return resp
|
|
|
|
|
|
|
|
|
|
def GetExternalIPAddress(self):
|
|
|
|
|
from xml.dom.minidom import parseString
|
2016-06-21 10:11:15 +02:00
|
|
|
|
resp = self.soapRequest(self.upnp_schema + ':1', 'GetExternalIPAddress')
|
2015-08-22 10:48:49 +02:00
|
|
|
|
dom = parseString(resp)
|
|
|
|
|
return dom.getElementsByTagName('NewExternalIPAddress')[0].childNodes[0].data
|
|
|
|
|
|
2017-01-11 18:13:00 +01:00
|
|
|
|
def soapRequest(self, service, action, arguments=None):
|
2015-08-22 10:48:49 +02:00
|
|
|
|
from xml.dom.minidom import parseString
|
2015-11-21 00:39:23 +01:00
|
|
|
|
from debug import logger
|
2015-08-22 10:48:49 +02:00
|
|
|
|
conn = httplib.HTTPConnection(self.routerPath.hostname, self.routerPath.port)
|
|
|
|
|
conn.request(
|
|
|
|
|
'POST',
|
|
|
|
|
self.path,
|
|
|
|
|
createRequestXML(service, action, arguments),
|
|
|
|
|
{
|
|
|
|
|
'SOAPAction': '"urn:schemas-upnp-org:service:%s#%s"' % (service, action),
|
|
|
|
|
'Content-Type': 'text/xml'
|
|
|
|
|
}
|
|
|
|
|
)
|
2016-03-21 21:52:10 +01:00
|
|
|
|
resp = conn.getresponse()
|
|
|
|
|
conn.close()
|
|
|
|
|
if resp.status == 500:
|
|
|
|
|
respData = resp.read()
|
|
|
|
|
try:
|
|
|
|
|
dom = parseString(respData)
|
|
|
|
|
errinfo = dom.getElementsByTagName('errorDescription')
|
|
|
|
|
if len(errinfo) > 0:
|
|
|
|
|
logger.error("UPnP error: %s", respData)
|
|
|
|
|
raise UPnPError(errinfo[0].childNodes[0].data)
|
|
|
|
|
except:
|
2016-03-21 22:22:36 +01:00
|
|
|
|
raise UPnPError("Unable to parse SOAP error: %s" %(respData))
|
2015-08-22 10:48:49 +02:00
|
|
|
|
return resp
|
|
|
|
|
|
2015-11-22 16:18:59 +01:00
|
|
|
|
class uPnPThread(threading.Thread, StoppableThread):
|
2016-03-21 21:52:10 +01:00
|
|
|
|
SSDP_ADDR = "239.255.255.250"
|
|
|
|
|
GOOGLE_DNS = "8.8.8.8"
|
|
|
|
|
SSDP_PORT = 1900
|
|
|
|
|
SSDP_MX = 2
|
|
|
|
|
SSDP_ST = "urn:schemas-upnp-org:device:InternetGatewayDevice:1"
|
|
|
|
|
|
2015-11-21 11:59:44 +01:00
|
|
|
|
def __init__ (self):
|
|
|
|
|
threading.Thread.__init__(self, name="uPnPThread")
|
2017-01-11 14:27:19 +01:00
|
|
|
|
self.localPort = BMConfigParser().getint('bitmessagesettings', 'port')
|
2015-12-23 13:42:48 +01:00
|
|
|
|
try:
|
2017-01-11 14:27:19 +01:00
|
|
|
|
self.extPort = BMConfigParser().getint('bitmessagesettings', 'extport')
|
2015-12-23 13:42:48 +01:00
|
|
|
|
except:
|
|
|
|
|
self.extPort = None
|
2016-03-21 21:52:10 +01:00
|
|
|
|
self.localIP = self.getLocalIP()
|
2015-11-21 11:59:44 +01:00
|
|
|
|
self.routers = []
|
|
|
|
|
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
2016-03-21 21:52:10 +01:00
|
|
|
|
self.sock.bind((self.localIP, 10000))
|
2015-11-21 11:59:44 +01:00
|
|
|
|
self.sock.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_TTL, 2)
|
2016-03-21 21:52:10 +01:00
|
|
|
|
self.sock.settimeout(5)
|
2015-11-21 11:59:44 +01:00
|
|
|
|
self.sendSleep = 60
|
2015-11-22 16:18:59 +01:00
|
|
|
|
self.initStop()
|
2015-11-21 11:59:44 +01:00
|
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
from debug import logger
|
|
|
|
|
|
|
|
|
|
logger.debug("Starting UPnP thread")
|
2016-03-21 21:52:10 +01:00
|
|
|
|
logger.debug("Local IP: %s", self.localIP)
|
2015-11-21 11:59:44 +01:00
|
|
|
|
lastSent = 0
|
2017-01-14 23:20:15 +01:00
|
|
|
|
while state.shutdown == 0 and BMConfigParser().safeGetBoolean('bitmessagesettings', 'upnp'):
|
2015-11-21 11:59:44 +01:00
|
|
|
|
if time.time() - lastSent > self.sendSleep and len(self.routers) == 0:
|
2016-03-21 22:22:36 +01:00
|
|
|
|
try:
|
|
|
|
|
self.sendSearchRouter()
|
|
|
|
|
except:
|
|
|
|
|
pass
|
2015-11-21 11:59:44 +01:00
|
|
|
|
lastSent = time.time()
|
|
|
|
|
try:
|
2017-01-14 23:20:15 +01:00
|
|
|
|
while state.shutdown == 0 and BMConfigParser().safeGetBoolean('bitmessagesettings', 'upnp'):
|
2015-11-21 11:59:44 +01:00
|
|
|
|
resp,(ip,port) = self.sock.recvfrom(1000)
|
|
|
|
|
if resp is None:
|
|
|
|
|
continue
|
|
|
|
|
newRouter = Router(resp, ip)
|
|
|
|
|
for router in self.routers:
|
|
|
|
|
if router.location == newRouter.location:
|
|
|
|
|
break
|
|
|
|
|
else:
|
|
|
|
|
logger.debug("Found UPnP router at %s", ip)
|
|
|
|
|
self.routers.append(newRouter)
|
|
|
|
|
self.createPortMapping(newRouter)
|
2017-02-08 13:41:56 +01:00
|
|
|
|
queues.UISignalQueue.put(('updateStatusBar', tr._translate("MainWindow",'UPnP port mapping established on port %1').arg(str(self.extPort))))
|
2017-02-28 01:15:49 +01:00
|
|
|
|
# retry connections so that the submitted port is refreshed
|
|
|
|
|
with shared.alreadyAttemptedConnectionsListLock:
|
|
|
|
|
shared.alreadyAttemptedConnectionsList.clear()
|
|
|
|
|
shared.alreadyAttemptedConnectionsListResetTime = int(
|
|
|
|
|
time.time())
|
2015-11-21 11:59:44 +01:00
|
|
|
|
break
|
|
|
|
|
except socket.timeout as e:
|
|
|
|
|
pass
|
|
|
|
|
except:
|
|
|
|
|
logger.error("Failure running UPnP router search.", exc_info=True)
|
|
|
|
|
for router in self.routers:
|
|
|
|
|
if router.extPort is None:
|
|
|
|
|
self.createPortMapping(router)
|
2015-11-23 01:35:11 +01:00
|
|
|
|
try:
|
|
|
|
|
self.sock.shutdown(socket.SHUT_RDWR)
|
|
|
|
|
except:
|
|
|
|
|
pass
|
|
|
|
|
try:
|
|
|
|
|
self.sock.close()
|
|
|
|
|
except:
|
|
|
|
|
pass
|
2015-11-22 23:41:03 +01:00
|
|
|
|
deleted = False
|
2015-11-21 11:59:44 +01:00
|
|
|
|
for router in self.routers:
|
|
|
|
|
if router.extPort is not None:
|
2015-11-22 23:41:03 +01:00
|
|
|
|
deleted = True
|
2015-11-21 11:59:44 +01:00
|
|
|
|
self.deletePortMapping(router)
|
2015-11-22 16:18:59 +01:00
|
|
|
|
shared.extPort = None
|
2015-11-22 23:41:03 +01:00
|
|
|
|
if deleted:
|
2017-02-08 13:41:56 +01:00
|
|
|
|
queues.UISignalQueue.put(('updateStatusBar', tr._translate("MainWindow",'UPnP port mapping removed')))
|
2015-11-21 11:59:44 +01:00
|
|
|
|
logger.debug("UPnP thread done")
|
|
|
|
|
|
2016-03-21 21:52:10 +01:00
|
|
|
|
def getLocalIP(self):
|
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
|
|
|
s.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
|
|
|
|
|
s.connect((uPnPThread.GOOGLE_DNS, 1))
|
|
|
|
|
return s.getsockname()[0]
|
|
|
|
|
|
2015-11-21 11:59:44 +01:00
|
|
|
|
def sendSearchRouter(self):
|
|
|
|
|
from debug import logger
|
|
|
|
|
ssdpRequest = "M-SEARCH * HTTP/1.1\r\n" + \
|
2016-03-21 21:52:10 +01:00
|
|
|
|
"HOST: %s:%d\r\n" % (uPnPThread.SSDP_ADDR, uPnPThread.SSDP_PORT) + \
|
2015-11-21 11:59:44 +01:00
|
|
|
|
"MAN: \"ssdp:discover\"\r\n" + \
|
2016-03-21 21:52:10 +01:00
|
|
|
|
"MX: %d\r\n" % (uPnPThread.SSDP_MX, ) + \
|
|
|
|
|
"ST: %s\r\n" % (uPnPThread.SSDP_ST, ) + "\r\n"
|
2015-11-21 00:39:23 +01:00
|
|
|
|
|
|
|
|
|
try:
|
2015-11-21 11:59:44 +01:00
|
|
|
|
logger.debug("Sending UPnP query")
|
2016-03-21 21:52:10 +01:00
|
|
|
|
self.sock.sendto(ssdpRequest, (uPnPThread.SSDP_ADDR, uPnPThread.SSDP_PORT))
|
2015-11-21 11:59:44 +01:00
|
|
|
|
except:
|
|
|
|
|
logger.exception("UPnP send query failed")
|
|
|
|
|
|
|
|
|
|
def createPortMapping(self, router):
|
|
|
|
|
from debug import logger
|
|
|
|
|
|
|
|
|
|
for i in range(50):
|
|
|
|
|
try:
|
|
|
|
|
routerIP, = unpack('>I', socket.inet_aton(router.address))
|
2016-03-21 21:52:10 +01:00
|
|
|
|
localIP = self.localIP
|
2015-11-21 11:59:44 +01:00
|
|
|
|
if i == 0:
|
|
|
|
|
extPort = self.localPort # try same port first
|
2015-12-23 13:42:48 +01:00
|
|
|
|
elif i == 1 and self.extPort:
|
|
|
|
|
extPort = self.extPort # try external port from last time next
|
2015-11-21 11:59:44 +01:00
|
|
|
|
else:
|
|
|
|
|
extPort = randint(32767, 65535)
|
2016-03-21 22:22:36 +01:00
|
|
|
|
logger.debug("Attempt %i, requesting UPnP mapping for %s:%i on external port %i", i, localIP, self.localPort, extPort)
|
2015-11-21 11:59:44 +01:00
|
|
|
|
router.AddPortMapping(extPort, self.localPort, localIP, 'TCP', 'BitMessage')
|
|
|
|
|
shared.extPort = extPort
|
2015-12-23 13:42:48 +01:00
|
|
|
|
self.extPort = extPort
|
2017-01-11 14:27:19 +01:00
|
|
|
|
BMConfigParser().set('bitmessagesettings', 'extport', str(extPort))
|
2017-02-27 15:55:59 +01:00
|
|
|
|
BMConfigParser().save()
|
2015-11-21 11:59:44 +01:00
|
|
|
|
break
|
|
|
|
|
except UPnPError:
|
|
|
|
|
logger.debug("UPnP error: ", exc_info=True)
|
|
|
|
|
|
|
|
|
|
def deletePortMapping(self, router):
|
|
|
|
|
router.DeletePortMapping(router.extPort, 'TCP')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|