2017-05-27 19:09:21 +02:00
|
|
|
import time
|
2017-06-10 10:13:49 +02:00
|
|
|
import Queue
|
2017-05-27 19:09:21 +02:00
|
|
|
import socket
|
|
|
|
|
|
|
|
from debug import logger
|
|
|
|
from network.advanceddispatcher import AdvancedDispatcher
|
2017-06-24 12:13:35 +02:00
|
|
|
from network.bmproto import BMProtoError, BMProtoInsufficientDataError, BMProto
|
|
|
|
from network.bmobject import BMObject, BMObjectInsufficientPOWError, BMObjectInvalidDataError, BMObjectExpiredError, BMObjectInvalidError, BMObjectAlreadyHaveError
|
2017-05-27 19:09:21 +02:00
|
|
|
import network.asyncore_pollchoose as asyncore
|
|
|
|
from network.objectracker import ObjectTracker
|
|
|
|
|
2017-07-06 19:45:36 +02:00
|
|
|
from queues import objectProcessorQueue, peerDiscoveryQueue, UISignalQueue, receiveDataQueue
|
2017-05-27 19:09:21 +02:00
|
|
|
import state
|
|
|
|
import protocol
|
|
|
|
|
|
|
|
class UDPSocket(BMProto):
|
|
|
|
port = 8444
|
|
|
|
announceInterval = 60
|
|
|
|
|
|
|
|
def __init__(self, host=None, sock=None):
|
2017-06-24 12:13:35 +02:00
|
|
|
super(BMProto, self).__init__(sock=sock)
|
2017-05-27 19:09:21 +02:00
|
|
|
self.verackReceived = True
|
|
|
|
self.verackSent = True
|
|
|
|
# TODO sort out streams
|
|
|
|
self.streams = [1]
|
|
|
|
self.fullyEstablished = True
|
|
|
|
self.connectedAt = 0
|
|
|
|
self.skipUntil = 0
|
|
|
|
if sock is None:
|
|
|
|
if host is None:
|
|
|
|
host = ''
|
|
|
|
if ":" in host:
|
|
|
|
self.create_socket(socket.AF_INET6, socket.SOCK_DGRAM)
|
|
|
|
else:
|
|
|
|
self.create_socket(socket.AF_INET, socket.SOCK_DGRAM)
|
2017-05-29 00:24:07 +02:00
|
|
|
logger.info("Binding UDP socket to %s:%i", host, UDPSocket.port)
|
2017-05-27 19:09:21 +02:00
|
|
|
self.socket.bind((host, UDPSocket.port))
|
|
|
|
#BINDTODEVICE is only available on linux and requires root
|
|
|
|
#try:
|
|
|
|
#print "binding to %s" % (host)
|
|
|
|
#self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_BINDTODEVICE, host)
|
|
|
|
#except AttributeError:
|
|
|
|
else:
|
|
|
|
self.socket = sock
|
|
|
|
self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
|
|
|
|
self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
2017-05-29 11:30:56 +02:00
|
|
|
try:
|
|
|
|
self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEPORT, 1)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
2017-06-11 14:11:39 +02:00
|
|
|
self.listening = state.Peer(self.socket.getsockname()[0], self.socket.getsockname()[1])
|
2017-05-27 19:09:21 +02:00
|
|
|
self.destination = state.Peer(self.socket.getsockname()[0], self.socket.getsockname()[1])
|
|
|
|
ObjectTracker.__init__(self)
|
|
|
|
self.connecting = False
|
|
|
|
self.connected = True
|
2017-05-31 10:17:36 +02:00
|
|
|
self.set_state("bm_header", expectBytes=protocol.Header.size)
|
2017-05-27 19:09:21 +02:00
|
|
|
|
2017-05-29 00:24:07 +02:00
|
|
|
def state_bm_command(self):
|
|
|
|
BMProto.state_bm_command(self)
|
|
|
|
|
2017-05-27 19:09:21 +02:00
|
|
|
# disable most commands before doing research / testing
|
|
|
|
# only addr (peer discovery), error and object are implemented
|
|
|
|
|
|
|
|
def bm_command_error(self):
|
|
|
|
return BMProto.bm_command_error(self)
|
|
|
|
|
|
|
|
def bm_command_getdata(self):
|
|
|
|
return True
|
|
|
|
# return BMProto.bm_command_getdata(self)
|
|
|
|
|
|
|
|
def bm_command_inv(self):
|
|
|
|
return True
|
|
|
|
# return BMProto.bm_command_inv(self)
|
|
|
|
|
|
|
|
def bm_command_object(self):
|
|
|
|
return BMProto.bm_command_object(self)
|
|
|
|
|
|
|
|
def bm_command_addr(self):
|
|
|
|
# BMProto.bm_command_object(self)
|
|
|
|
addresses = self._decode_addr()
|
|
|
|
# only allow peer discovery from private IPs in order to avoid attacks from random IPs on the internet
|
|
|
|
if not self.local:
|
2017-07-06 19:45:36 +02:00
|
|
|
return True
|
2017-05-27 19:09:21 +02:00
|
|
|
remoteport = False
|
|
|
|
for i in addresses:
|
|
|
|
seenTime, stream, services, ip, port = i
|
|
|
|
decodedIP = protocol.checkIPAddress(ip)
|
|
|
|
if stream not in state.streamsInWhichIAmParticipating:
|
|
|
|
continue
|
2017-05-27 20:43:27 +02:00
|
|
|
if seenTime < time.time() - BMProto.maxTimeOffset or seenTime > time.time() + BMProto.maxTimeOffset:
|
2017-05-27 19:09:21 +02:00
|
|
|
continue
|
|
|
|
if decodedIP is False:
|
|
|
|
# if the address isn't local, interpret it as the hosts' own announcement
|
|
|
|
remoteport = port
|
|
|
|
if remoteport is False:
|
2017-07-06 19:45:36 +02:00
|
|
|
return True
|
2017-05-29 00:47:41 +02:00
|
|
|
logger.debug("received peer discovery from %s:%i (port %i):", self.destination.host, self.destination.port, remoteport)
|
2017-05-27 19:09:21 +02:00
|
|
|
if self.local:
|
2017-05-27 20:43:27 +02:00
|
|
|
peerDiscoveryQueue.put(state.Peer(self.destination.host, remoteport))
|
2017-05-27 19:09:21 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
def bm_command_portcheck(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def bm_command_ping(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def bm_command_pong(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def bm_command_verack(self):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def bm_command_version(self):
|
|
|
|
return True
|
|
|
|
|
2017-05-27 21:52:56 +02:00
|
|
|
def handle_connect(self):
|
2017-05-27 19:09:21 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
def writable(self):
|
2017-07-06 19:45:36 +02:00
|
|
|
return self.write_buf
|
2017-05-27 19:09:21 +02:00
|
|
|
|
|
|
|
def readable(self):
|
|
|
|
return len(self.read_buf) < AdvancedDispatcher._buf_len
|
|
|
|
|
|
|
|
def handle_read(self):
|
|
|
|
try:
|
2017-05-27 20:43:27 +02:00
|
|
|
(recdata, addr) = self.socket.recvfrom(AdvancedDispatcher._buf_len)
|
2017-05-27 19:09:21 +02:00
|
|
|
except socket.error as e:
|
2017-05-29 00:47:41 +02:00
|
|
|
logger.error("socket error: %s", str(e))
|
2017-05-27 19:09:21 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
self.destination = state.Peer(addr[0], addr[1])
|
2017-05-27 20:43:27 +02:00
|
|
|
encodedAddr = protocol.encodeHost(addr[0])
|
2017-05-27 19:09:21 +02:00
|
|
|
if protocol.checkIPAddress(encodedAddr, True):
|
|
|
|
self.local = True
|
|
|
|
else:
|
|
|
|
self.local = False
|
|
|
|
# overwrite the old buffer to avoid mixing data and so that self.local works correctly
|
2017-05-27 20:43:27 +02:00
|
|
|
self.read_buf = recdata
|
|
|
|
self.bm_proto_reset()
|
2017-07-08 06:54:25 +02:00
|
|
|
receiveDataQueue.put(self.destination)
|
2017-05-27 19:09:21 +02:00
|
|
|
|
|
|
|
def handle_write(self):
|
|
|
|
try:
|
2017-07-06 19:45:36 +02:00
|
|
|
retval = self.socket.sendto(self.write_buf, ('<broadcast>', UDPSocket.port))
|
2017-05-27 19:09:21 +02:00
|
|
|
except socket.error as e:
|
2017-05-29 00:47:41 +02:00
|
|
|
logger.error("socket error on sendato: %s", str(e))
|
2017-07-06 19:45:36 +02:00
|
|
|
self.slice_write_buf(retval)
|
2017-05-27 19:09:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
# initial fill
|
|
|
|
|
|
|
|
for host in (("127.0.0.1", 8448),):
|
|
|
|
direct = BMConnection(host)
|
|
|
|
while len(asyncore.socket_map) > 0:
|
|
|
|
print "loop, state = %s" % (direct.state)
|
|
|
|
asyncore.loop(timeout=10, count=1)
|
|
|
|
continue
|
|
|
|
|
|
|
|
proxy = Socks5BMConnection(host)
|
|
|
|
while len(asyncore.socket_map) > 0:
|
|
|
|
# print "loop, state = %s" % (proxy.state)
|
|
|
|
asyncore.loop(timeout=10, count=1)
|
|
|
|
|
|
|
|
proxy = Socks4aBMConnection(host)
|
|
|
|
while len(asyncore.socket_map) > 0:
|
|
|
|
# print "loop, state = %s" % (proxy.state)
|
|
|
|
asyncore.loop(timeout=10, count=1)
|