2013-06-20 23:23:03 +02:00
|
|
|
import threading
|
|
|
|
import shared
|
|
|
|
import socket
|
2013-06-22 00:29:04 +02:00
|
|
|
from class_sendDataThread import *
|
|
|
|
from class_receiveDataThread import *
|
2013-07-24 18:43:51 +02:00
|
|
|
import helper_bootstrap
|
2014-02-16 17:21:20 +01:00
|
|
|
import errno
|
|
|
|
import re
|
2013-06-22 00:29:04 +02:00
|
|
|
|
2013-06-20 23:23:03 +02:00
|
|
|
# Only one singleListener thread will ever exist. It creates the
|
|
|
|
# receiveDataThread and sendDataThread for each incoming connection. Note
|
|
|
|
# that it cannot set the stream number because it is not known yet- the
|
|
|
|
# other node will have to tell us its stream number in a version message.
|
|
|
|
# If we don't care about their stream, we will close the connection
|
|
|
|
# (within the recversion function of the recieveData thread)
|
|
|
|
|
|
|
|
|
|
|
|
class singleListener(threading.Thread):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
|
2013-06-22 01:49:50 +02:00
|
|
|
def setup(self, selfInitiatedConnections):
|
|
|
|
self.selfInitiatedConnections = selfInitiatedConnections
|
|
|
|
|
2014-02-16 17:21:20 +01:00
|
|
|
def _createListenSocket(self, family):
|
|
|
|
HOST = '' # Symbolic name meaning all available interfaces
|
|
|
|
PORT = shared.config.getint('bitmessagesettings', 'port')
|
|
|
|
sock = socket.socket(family, socket.SOCK_STREAM)
|
|
|
|
if family == socket.AF_INET6:
|
|
|
|
# Make sure we can accept both IPv4 and IPv6 connections.
|
|
|
|
# This is the default on everything apart from Windows
|
|
|
|
sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, 0)
|
|
|
|
# This option apparently avoids the TIME_WAIT state so that we can
|
|
|
|
# rebind faster
|
|
|
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
|
|
sock.bind((HOST, PORT))
|
|
|
|
sock.listen(2)
|
|
|
|
return sock
|
|
|
|
|
2013-06-20 23:23:03 +02:00
|
|
|
def run(self):
|
2014-02-06 14:16:07 +01:00
|
|
|
# If there is a trusted peer then we don't want to accept
|
|
|
|
# incoming connections so we'll just abandon the thread
|
|
|
|
if shared.trustedPeer:
|
|
|
|
return
|
|
|
|
|
2013-07-24 18:43:51 +02:00
|
|
|
while shared.safeConfigGetBoolean('bitmessagesettings', 'dontconnect'):
|
|
|
|
time.sleep(1)
|
|
|
|
helper_bootstrap.dns()
|
2013-07-12 20:40:06 +02:00
|
|
|
# We typically don't want to accept incoming connections if the user is using a
|
|
|
|
# SOCKS proxy, unless they have configured otherwise. If they eventually select
|
|
|
|
# proxy 'none' or configure SOCKS listening then this will start listening for
|
|
|
|
# connections.
|
2013-07-12 20:03:09 +02:00
|
|
|
while shared.config.get('bitmessagesettings', 'socksproxytype')[0:5] == 'SOCKS' and not shared.config.getboolean('bitmessagesettings', 'sockslisten'):
|
2013-07-24 18:43:51 +02:00
|
|
|
time.sleep(5)
|
2013-06-20 23:23:03 +02:00
|
|
|
|
2013-06-29 19:29:35 +02:00
|
|
|
with shared.printLock:
|
|
|
|
print 'Listening for incoming connections.'
|
|
|
|
|
2014-02-16 17:21:20 +01:00
|
|
|
# First try listening on an IPv6 socket. This should also be
|
|
|
|
# able to accept connections on IPv4. If that's not available
|
|
|
|
# we'll fall back to IPv4-only.
|
|
|
|
try:
|
|
|
|
sock = self._createListenSocket(socket.AF_INET6)
|
|
|
|
except socket.error, e:
|
|
|
|
if (isinstance(e.args, tuple) and
|
|
|
|
e.args[0] in (errno.EAFNOSUPPORT,
|
|
|
|
errno.EPFNOSUPPORT,
|
|
|
|
errno.ENOPROTOOPT)):
|
|
|
|
sock = self._createListenSocket(socket.AF_INET)
|
|
|
|
else:
|
|
|
|
raise
|
|
|
|
|
|
|
|
# regexp to match an IPv4-mapped IPv6 address
|
|
|
|
mappedAddressRegexp = re.compile(r'^::ffff:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)$')
|
2013-06-20 23:23:03 +02:00
|
|
|
|
|
|
|
while True:
|
2013-07-12 20:40:06 +02:00
|
|
|
# We typically don't want to accept incoming connections if the user is using a
|
|
|
|
# SOCKS proxy, unless they have configured otherwise. If they eventually select
|
|
|
|
# proxy 'none' or configure SOCKS listening then this will start listening for
|
|
|
|
# connections.
|
2013-07-12 20:03:09 +02:00
|
|
|
while shared.config.get('bitmessagesettings', 'socksproxytype')[0:5] == 'SOCKS' and not shared.config.getboolean('bitmessagesettings', 'sockslisten'):
|
2013-06-20 23:23:03 +02:00
|
|
|
time.sleep(10)
|
|
|
|
while len(shared.connectedHostsList) > 220:
|
2013-06-29 19:29:35 +02:00
|
|
|
with shared.printLock:
|
|
|
|
print 'We are connected to too many people. Not accepting further incoming connections for ten seconds.'
|
|
|
|
|
2013-06-20 23:23:03 +02:00
|
|
|
time.sleep(10)
|
|
|
|
|
2014-02-16 17:21:20 +01:00
|
|
|
while True:
|
2014-08-27 09:14:32 +02:00
|
|
|
socketObject, sockaddr = sock.accept()
|
2014-02-16 17:21:20 +01:00
|
|
|
(HOST, PORT) = sockaddr[0:2]
|
|
|
|
|
|
|
|
# If the address is an IPv4-mapped IPv6 address then
|
|
|
|
# convert it to just the IPv4 representation
|
|
|
|
md = mappedAddressRegexp.match(HOST)
|
|
|
|
if md != None:
|
|
|
|
HOST = md.group(1)
|
|
|
|
|
|
|
|
# The following code will, unfortunately, block an
|
|
|
|
# incoming connection if someone else on the same LAN
|
|
|
|
# is already connected because the two computers will
|
|
|
|
# share the same external IP. This is here to prevent
|
|
|
|
# connection flooding.
|
|
|
|
if HOST in shared.connectedHostsList:
|
2014-08-27 09:14:32 +02:00
|
|
|
socketObject.close()
|
2014-02-16 17:21:20 +01:00
|
|
|
with shared.printLock:
|
|
|
|
print 'We are already connected to', HOST + '. Ignoring connection.'
|
|
|
|
else:
|
|
|
|
break
|
2013-06-29 19:29:35 +02:00
|
|
|
|
2013-06-24 21:51:01 +02:00
|
|
|
someObjectsOfWhichThisRemoteNodeIsAlreadyAware = {} # This is not necessairly a complete list; we clear it from time to time to save memory.
|
2013-12-30 04:36:23 +01:00
|
|
|
sendDataThreadQueue = Queue.Queue() # Used to submit information to the send data thread for this connection.
|
2014-08-27 09:14:32 +02:00
|
|
|
socketObject.settimeout(20)
|
2013-06-20 23:23:03 +02:00
|
|
|
|
2013-12-30 04:36:23 +01:00
|
|
|
sd = sendDataThread(sendDataThreadQueue)
|
2013-06-20 23:23:03 +02:00
|
|
|
sd.setup(
|
2014-08-27 09:14:32 +02:00
|
|
|
socketObject, HOST, PORT, -1, someObjectsOfWhichThisRemoteNodeIsAlreadyAware)
|
2013-06-20 23:23:03 +02:00
|
|
|
sd.start()
|
|
|
|
|
|
|
|
rd = receiveDataThread()
|
|
|
|
rd.daemon = True # close the main program even if there are threads left
|
|
|
|
rd.setup(
|
2014-08-27 09:14:32 +02:00
|
|
|
socketObject, HOST, PORT, -1, someObjectsOfWhichThisRemoteNodeIsAlreadyAware, self.selfInitiatedConnections, sendDataThreadQueue)
|
2013-06-20 23:23:03 +02:00
|
|
|
rd.start()
|
|
|
|
|
2013-06-29 19:29:35 +02:00
|
|
|
with shared.printLock:
|
|
|
|
print self, 'connected to', HOST, 'during INCOMING request.'
|
|
|
|
|