Fix the xep_0065 plugin, by rewriting its socks5 implementation.
This commit is contained in:
committed by
Emmanuel Gil Peyrot
parent
041bd63864
commit
9c5dd024b1
@@ -1,5 +1,6 @@
|
||||
from slixmpp.plugins.base import register_plugin
|
||||
|
||||
from slixmpp.plugins.xep_0065.socks5 import Socks5Protocol
|
||||
from slixmpp.plugins.xep_0065.stanza import Socks5
|
||||
from slixmpp.plugins.xep_0065.proxy import XEP_0065
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import asyncio
|
||||
import logging
|
||||
import threading
|
||||
import socket
|
||||
@@ -5,8 +6,6 @@ import socket
|
||||
from hashlib import sha1
|
||||
from uuid import uuid4
|
||||
|
||||
from slixmpp.thirdparty.socks import socksocket, PROXY_TYPE_SOCKS5
|
||||
|
||||
from slixmpp.stanza import Iq
|
||||
from slixmpp.exceptions import XMPPError
|
||||
from slixmpp.xmlstream import register_stanza_plugin
|
||||
@@ -14,7 +13,7 @@ from slixmpp.xmlstream.handler import Callback
|
||||
from slixmpp.xmlstream.matcher import StanzaPath
|
||||
from slixmpp.plugins.base import BasePlugin
|
||||
|
||||
from slixmpp.plugins.xep_0065 import stanza, Socks5
|
||||
from slixmpp.plugins.xep_0065 import stanza, Socks5, Socks5Protocol
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
@@ -23,7 +22,7 @@ log = logging.getLogger(__name__)
|
||||
class XEP_0065(BasePlugin):
|
||||
|
||||
name = 'xep_0065'
|
||||
description = "Socks5 Bytestreams"
|
||||
description = "XEP-0065: SOCKS5 Bytestreams"
|
||||
dependencies = set(['xep_0030'])
|
||||
default_config = {
|
||||
'auto_accept': False
|
||||
@@ -65,12 +64,12 @@ class XEP_0065(BasePlugin):
|
||||
connection.
|
||||
"""
|
||||
if not self._proxies:
|
||||
self._proxies = self.discover_proxies()
|
||||
self._proxies = yield from self.discover_proxies()
|
||||
|
||||
if sid is None:
|
||||
sid = uuid4().hex
|
||||
|
||||
used = self.request_stream(to, sid=sid, ifrom=ifrom, timeout=timeout)
|
||||
used = yield from self.request_stream(to, sid=sid, ifrom=ifrom, timeout=timeout)
|
||||
proxy = used['socks']['streamhost_used']['jid']
|
||||
|
||||
if proxy not in self._proxies:
|
||||
@@ -78,19 +77,20 @@ class XEP_0065(BasePlugin):
|
||||
return
|
||||
|
||||
with self._sessions_lock:
|
||||
self._sessions[sid] = self._connect_proxy(
|
||||
sid,
|
||||
self.xmpp.boundjid,
|
||||
to,
|
||||
self._proxies[proxy][0],
|
||||
self._proxies[proxy][1],
|
||||
peer=to)
|
||||
try:
|
||||
self._sessions[sid] = (yield from self._connect_proxy(
|
||||
self._get_dest_sha1(sid, self.xmpp.boundjid, to),
|
||||
self._proxies[proxy][0],
|
||||
self._proxies[proxy][1]))[1]
|
||||
except socket.error:
|
||||
return None
|
||||
addr, port = yield from self._sessions[sid].connected
|
||||
|
||||
# Request that the proxy activate the session with the target.
|
||||
self.activate(proxy, sid, to, timeout=timeout)
|
||||
socket = self.get_socket(sid)
|
||||
self.xmpp.event('stream:%s:%s' % (sid, to), socket)
|
||||
return socket
|
||||
yield from self.activate(proxy, sid, to, timeout=timeout)
|
||||
sock = self.get_socket(sid)
|
||||
self.xmpp.event('stream:%s:%s' % (sid, to), sock)
|
||||
return sock
|
||||
|
||||
def request_stream(self, to, sid=None, ifrom=None, timeout=None, callback=None):
|
||||
if sid is None:
|
||||
@@ -119,11 +119,16 @@ class XEP_0065(BasePlugin):
|
||||
|
||||
discovered = set()
|
||||
|
||||
disco_items = self.xmpp['xep_0030'].get_items(jid, timeout=timeout)
|
||||
disco_items = yield from self.xmpp['xep_0030'].get_items(jid, timeout=timeout)
|
||||
disco_items = {item[0] for item in disco_items['disco_items']['items']}
|
||||
|
||||
for item in disco_items['disco_items']['items']:
|
||||
disco_info_futures = {}
|
||||
for item in disco_items:
|
||||
disco_info_futures[item] = self.xmpp['xep_0030'].get_info(item, timeout=timeout)
|
||||
|
||||
for item in disco_items:
|
||||
try:
|
||||
disco_info = self.xmpp['xep_0030'].get_info(item[0], timeout=timeout)
|
||||
disco_info = yield from disco_info_futures[item]
|
||||
except XMPPError:
|
||||
continue
|
||||
else:
|
||||
@@ -135,7 +140,7 @@ class XEP_0065(BasePlugin):
|
||||
|
||||
for jid in discovered:
|
||||
try:
|
||||
addr = self.get_network_address(jid, ifrom=ifrom, timeout=timeout)
|
||||
addr = yield from self.get_network_address(jid, ifrom=ifrom, timeout=timeout)
|
||||
self._proxies[jid] = (addr['socks']['streamhost']['host'],
|
||||
addr['socks']['streamhost']['port'])
|
||||
except XMPPError:
|
||||
@@ -149,6 +154,15 @@ class XEP_0065(BasePlugin):
|
||||
iq.enable('socks')
|
||||
return iq.send(timeout=timeout, callback=callback)
|
||||
|
||||
def _get_dest_sha1(self, sid, requester, target):
|
||||
# The hostname MUST be SHA1(SID + Requester JID + Target JID)
|
||||
# where the output is hexadecimal-encoded (not binary).
|
||||
digest = sha1()
|
||||
digest.update(sid.encode('utf8'))
|
||||
digest.update(str(requester).encode('utf8'))
|
||||
digest.update(str(target).encode('utf8'))
|
||||
return digest.hexdigest()
|
||||
|
||||
def _handle_streamhost(self, iq):
|
||||
"""Handle incoming SOCKS5 session request."""
|
||||
sid = iq['socks']['sid']
|
||||
@@ -160,39 +174,60 @@ class XEP_0065(BasePlugin):
|
||||
|
||||
streamhosts = iq['socks']['streamhosts']
|
||||
conn = None
|
||||
used_streamhost = None
|
||||
requester = iq['from']
|
||||
target = iq['to']
|
||||
|
||||
sender = iq['from']
|
||||
dest = self._get_dest_sha1(sid, requester, target)
|
||||
|
||||
proxy_futures = []
|
||||
for streamhost in streamhosts:
|
||||
try:
|
||||
conn = self._connect_proxy(sid,
|
||||
sender,
|
||||
self.xmpp.boundjid,
|
||||
proxy_futures.append(self._connect_proxy(
|
||||
dest,
|
||||
streamhost['host'],
|
||||
streamhost['port'],
|
||||
peer=sender)
|
||||
used_streamhost = streamhost['jid']
|
||||
break
|
||||
except socket.error:
|
||||
continue
|
||||
else:
|
||||
raise XMPPError(etype='cancel', condition='item-not-found')
|
||||
streamhost['port']))
|
||||
|
||||
iq = iq.reply()
|
||||
with self._sessions_lock:
|
||||
self._sessions[sid] = conn
|
||||
iq['socks']['sid'] = sid
|
||||
iq['socks']['streamhost_used']['jid'] = used_streamhost
|
||||
iq.send()
|
||||
self.xmpp.event('socks5_stream', conn)
|
||||
self.xmpp.event('stream:%s:%s' % (sid, conn.peer_jid), conn)
|
||||
@asyncio.coroutine
|
||||
def gather(futures, iq, streamhosts):
|
||||
proxies = yield from asyncio.gather(*futures, return_exceptions=True)
|
||||
for streamhost, proxy in zip(streamhosts, proxies):
|
||||
if isinstance(proxy, ValueError):
|
||||
continue
|
||||
elif isinstance(proxy, socket.error):
|
||||
log.error('Socket error while connecting to the proxy.')
|
||||
continue
|
||||
proxy = proxy[1]
|
||||
# TODO: what if the future never happens?
|
||||
try:
|
||||
addr, port = yield from proxy.connected
|
||||
except socket.error:
|
||||
log.exception('Socket error while connecting to the proxy.')
|
||||
continue
|
||||
# TODO: make a better choice than just the first working one.
|
||||
used_streamhost = streamhost['jid']
|
||||
conn = proxy
|
||||
break
|
||||
else:
|
||||
raise XMPPError(etype='cancel', condition='item-not-found')
|
||||
|
||||
# TODO: close properly the connection to the other proxies.
|
||||
|
||||
iq = iq.reply()
|
||||
with self._sessions_lock:
|
||||
self._sessions[sid] = conn
|
||||
iq['socks']['sid'] = sid
|
||||
iq['socks']['streamhost_used']['jid'] = used_streamhost
|
||||
iq.send()
|
||||
self.xmpp.event('socks5_stream', conn)
|
||||
self.xmpp.event('stream:%s:%s' % (sid, requester), conn)
|
||||
|
||||
asyncio.async(gather(proxy_futures, iq, streamhosts))
|
||||
|
||||
def activate(self, proxy, sid, target, ifrom=None, timeout=None, callback=None):
|
||||
"""Activate the socks5 session that has been negotiated."""
|
||||
iq = self.xmpp.Iq(sto=proxy, stype='set', sfrom=ifrom)
|
||||
iq['socks']['sid'] = sid
|
||||
iq['socks']['activate'] = target
|
||||
iq.send(timeout=timeout, callback=callback)
|
||||
return iq.send(timeout=timeout, callback=callback)
|
||||
|
||||
def deactivate(self, sid):
|
||||
"""Closes the proxy socket associated with this SID."""
|
||||
@@ -217,53 +252,17 @@ class XEP_0065(BasePlugin):
|
||||
with self._sessions_lock:
|
||||
self._sessions = {}
|
||||
|
||||
def _connect_proxy(self, sid, requester, target, proxy, proxy_port, peer=None):
|
||||
""" Establishes a connection between the client and the server-side
|
||||
def _connect_proxy(self, dest, proxy, proxy_port):
|
||||
""" Returns a future to a connection between the client and the server-side
|
||||
Socks5 proxy.
|
||||
|
||||
sid : The StreamID. <str>
|
||||
requester : The JID of the requester. <str>
|
||||
target : The JID of the target. <str>
|
||||
proxy_host : The hostname or the IP of the proxy. <str>
|
||||
proxy_port : The port of the proxy. <str> or <int>
|
||||
peer : The JID for the other side of the stream, regardless
|
||||
of target or requester status.
|
||||
dest : The SHA-1 of (SID + Requester JID + Target JID), in hex. <str>
|
||||
host : The hostname or the IP of the proxy. <str>
|
||||
port : The port of the proxy. <str> or <int>
|
||||
"""
|
||||
# Because the xep_0065 plugin uses the proxy_port as string,
|
||||
# the Proxy class accepts the proxy_port argument as a string
|
||||
# or an integer. Here, we force to use the port as an integer.
|
||||
proxy_port = int(proxy_port)
|
||||
|
||||
sock = socksocket()
|
||||
sock.setproxy(PROXY_TYPE_SOCKS5, proxy, port=proxy_port)
|
||||
|
||||
# The hostname MUST be SHA1(SID + Requester JID + Target JID)
|
||||
# where the output is hexadecimal-encoded (not binary).
|
||||
digest = sha1()
|
||||
digest.update(sid)
|
||||
digest.update(str(requester))
|
||||
digest.update(str(target))
|
||||
|
||||
dest = digest.hexdigest()
|
||||
|
||||
# The port MUST be 0.
|
||||
sock.connect((dest, 0))
|
||||
log.info('Socket connected.')
|
||||
|
||||
_close = sock.close
|
||||
def close(*args, **kwargs):
|
||||
with self._sessions_lock:
|
||||
if sid in self._sessions:
|
||||
del self._sessions[sid]
|
||||
_close()
|
||||
log.info('Socket closed.')
|
||||
sock.close = close
|
||||
|
||||
sock.peer_jid = peer
|
||||
sock.self_jid = target if requester == peer else requester
|
||||
|
||||
self.xmpp.event('socks_connected', sid)
|
||||
return sock
|
||||
factory = lambda: Socks5Protocol(dest, 0, self.xmpp.event)
|
||||
return self.xmpp.loop.create_connection(factory, proxy, proxy_port)
|
||||
|
||||
def _accept_stream(self, iq):
|
||||
receiver = iq['to']
|
||||
|
||||
265
slixmpp/plugins/xep_0065/socks5.py
Normal file
265
slixmpp/plugins/xep_0065/socks5.py
Normal file
@@ -0,0 +1,265 @@
|
||||
'''Pure asyncio implementation of RFC 1928 - SOCKS Protocol Version 5.'''
|
||||
|
||||
import asyncio
|
||||
import enum
|
||||
import logging
|
||||
import socket
|
||||
import struct
|
||||
|
||||
from slixmpp.stringprep import punycode, StringprepError
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class ProtocolMismatch(Exception):
|
||||
'''We only implement SOCKS5, no other version or protocol.'''
|
||||
|
||||
|
||||
class ProtocolError(Exception):
|
||||
'''Some protocol error.'''
|
||||
|
||||
|
||||
class MethodMismatch(Exception):
|
||||
'''The server answered with a method we didn’t ask for.'''
|
||||
|
||||
|
||||
class MethodUnacceptable(Exception):
|
||||
'''None of our methods is supported by the server.'''
|
||||
|
||||
|
||||
class AddressTypeUnacceptable(Exception):
|
||||
'''The address type (ATYP) field isn’t one of IPv4, IPv6 or domain name.'''
|
||||
|
||||
|
||||
class ReplyError(Exception):
|
||||
'''The server answered with an error.'''
|
||||
|
||||
possible_values = (
|
||||
"succeeded",
|
||||
"general SOCKS server failure",
|
||||
"connection not allowed by ruleset",
|
||||
"Network unreachable",
|
||||
"Host unreachable",
|
||||
"Connection refused",
|
||||
"TTL expired",
|
||||
"Command not supported",
|
||||
"Address type not supported",
|
||||
"Unknown error")
|
||||
|
||||
def __init__(self, result):
|
||||
if result < 9:
|
||||
Exception.__init__(self, self.possible_values[result])
|
||||
else:
|
||||
Exception.__init__(self, self.possible_values[9])
|
||||
|
||||
|
||||
class Method(enum.IntEnum):
|
||||
'''Known methods for a SOCKS5 session.'''
|
||||
none = 0
|
||||
gssapi = 1
|
||||
password = 2
|
||||
# Methods 3 to 127 are reserved by IANA.
|
||||
# Methods 128 to 254 are reserved for private use.
|
||||
unacceptable = 255
|
||||
not_yet_selected = -1
|
||||
|
||||
|
||||
class Command(enum.IntEnum):
|
||||
'''Existing commands for requests.'''
|
||||
connect = 1
|
||||
bind = 2
|
||||
udp_associate = 3
|
||||
|
||||
|
||||
class AddressType(enum.IntEnum):
|
||||
'''Existing address types.'''
|
||||
ipv4 = 1
|
||||
domain = 3
|
||||
ipv6 = 4
|
||||
|
||||
|
||||
class Socks5Protocol(asyncio.Protocol):
|
||||
'''This implements SOCKS5 as an asyncio protocol.'''
|
||||
|
||||
def __init__(self, dest_addr, dest_port, event):
|
||||
self.methods = {Method.none}
|
||||
self.selected_method = Method.not_yet_selected
|
||||
self.transport = None
|
||||
self.dest = (dest_addr, dest_port)
|
||||
self.connected = asyncio.Future()
|
||||
self.event = event
|
||||
self.paused = asyncio.Future()
|
||||
self.paused.set_result(None)
|
||||
|
||||
def register_method(self, method):
|
||||
'''Register a SOCKS5 method.'''
|
||||
self.methods.add(method)
|
||||
|
||||
def unregister_method(self, method):
|
||||
'''Unregister a SOCKS5 method.'''
|
||||
self.methods.remove(method)
|
||||
|
||||
def connection_made(self, transport):
|
||||
'''Called when the connection to the SOCKS5 server is established.'''
|
||||
|
||||
log.debug('SOCKS5 connection established.')
|
||||
|
||||
self.transport = transport
|
||||
self._send_methods()
|
||||
|
||||
def data_received(self, data):
|
||||
'''Called when we received some data from the SOCKS5 server.'''
|
||||
|
||||
log.debug('SOCKS5 message received.')
|
||||
|
||||
# If we are already connected, this is a data packet.
|
||||
if self.connected.done():
|
||||
return self.event('socks5_data', data)
|
||||
|
||||
# Every SOCKS5 message starts with the protocol version.
|
||||
if data[0] != 5:
|
||||
raise ProtocolMismatch()
|
||||
|
||||
# Then select the correct handler for the data we just received.
|
||||
if self.selected_method == Method.not_yet_selected:
|
||||
self._handle_method(data)
|
||||
else:
|
||||
self._handle_connect(data)
|
||||
|
||||
def connection_lost(self, exc):
|
||||
log.debug('SOCKS5 connection closed.')
|
||||
self.event('socks5_closed', exc)
|
||||
|
||||
def pause_writing(self):
|
||||
self.paused = asyncio.Future()
|
||||
|
||||
def resume_writing(self):
|
||||
self.paused.set_result(None)
|
||||
|
||||
def write(self, data):
|
||||
yield from self.paused
|
||||
self.transport.write(data)
|
||||
|
||||
def _send_methods(self):
|
||||
'''Send the methods request, first thing a client should do.'''
|
||||
|
||||
# Create the buffer for our request.
|
||||
request = bytearray(len(self.methods) + 2)
|
||||
|
||||
# Protocol version.
|
||||
request[0] = 5
|
||||
|
||||
# Number of methods to send.
|
||||
request[1] = len(self.methods)
|
||||
|
||||
# List every method we support.
|
||||
for i, method in enumerate(self.methods):
|
||||
request[i + 2] = method
|
||||
|
||||
# Send the request.
|
||||
self.transport.write(request)
|
||||
|
||||
def _send_request(self, command):
|
||||
'''Send a request, should be done after having negociated a method.'''
|
||||
|
||||
# Encode the destination address to embed it in our request.
|
||||
# We need to do that first because its length is variable.
|
||||
address, port = self.dest
|
||||
addr = self._encode_addr(address)
|
||||
|
||||
# Create the buffer for our request.
|
||||
request = bytearray(5 + len(addr))
|
||||
|
||||
# Protocol version.
|
||||
request[0] = 5
|
||||
|
||||
# Specify the command we want to use.
|
||||
request[1] = command
|
||||
|
||||
# request[2] is reserved, keeping it at 0.
|
||||
|
||||
# Add our destination address and port.
|
||||
request[3:3+len(addr)] = addr
|
||||
request[-2:] = struct.pack('>H', port)
|
||||
|
||||
# Send the request.
|
||||
log.debug('SOCKS5 message sent.')
|
||||
self.transport.write(request)
|
||||
|
||||
def _handle_method(self, data):
|
||||
'''Handle a method reply from the server.'''
|
||||
|
||||
if len(data) != 2:
|
||||
raise ProtocolError()
|
||||
selected_method = data[1]
|
||||
if selected_method not in self.methods:
|
||||
raise MethodMismatch()
|
||||
if selected_method == Method.unacceptable:
|
||||
raise MethodUnacceptable()
|
||||
self.selected_method = selected_method
|
||||
self._send_request(Command.connect)
|
||||
|
||||
def _handle_connect(self, data):
|
||||
'''Handle a connect reply from the server.'''
|
||||
|
||||
try:
|
||||
addr, port = self._parse_result(data)
|
||||
except ReplyError as exception:
|
||||
self.connected.set_exception(exception)
|
||||
self.connected.set_result((addr, port))
|
||||
self.event('socks5_connected', (addr, port))
|
||||
|
||||
def _parse_result(self, data):
|
||||
'''Parse a reply from the server.'''
|
||||
|
||||
result = data[1]
|
||||
if result != 0:
|
||||
raise ReplyError(result)
|
||||
addr = self._parse_addr(data[3:-2])
|
||||
port = struct.unpack('>H', data[-2:])[0]
|
||||
return (addr, port)
|
||||
|
||||
@staticmethod
|
||||
def _parse_addr(addr):
|
||||
'''Parse an address (IP or domain) from a bytestream.'''
|
||||
|
||||
addr_type = addr[0]
|
||||
if addr_type == AddressType.ipv6:
|
||||
try:
|
||||
return socket.inet_ntop(socket.AF_INET6, addr[1:])
|
||||
except ValueError as e:
|
||||
raise AddressTypeUnacceptable(e)
|
||||
if addr_type == AddressType.ipv4:
|
||||
try:
|
||||
return socket.inet_ntop(socket.AF_INET, addr[1:])
|
||||
except ValueError as e:
|
||||
raise AddressTypeUnacceptable(e)
|
||||
if addr_type == AddressType.domain:
|
||||
length = addr[1]
|
||||
address = addr[2:]
|
||||
if length != len(address):
|
||||
raise Exception('Size mismatch')
|
||||
return address.decode()
|
||||
raise AddressTypeUnacceptable(addr_type)
|
||||
|
||||
@staticmethod
|
||||
def _encode_addr(addr):
|
||||
'''Encode an address (IP or domain) into a bytestream.'''
|
||||
|
||||
try:
|
||||
ipv6 = socket.inet_pton(socket.AF_INET6, addr)
|
||||
return b'\x04' + ipv6
|
||||
except OSError:
|
||||
pass
|
||||
try:
|
||||
ipv4 = socket.inet_aton(addr)
|
||||
return b'\x01' + ipv4
|
||||
except OSError:
|
||||
pass
|
||||
try:
|
||||
domain = punycode(addr)
|
||||
return b'\x03' + bytes([len(domain)]) + domain
|
||||
except StringprepError:
|
||||
pass
|
||||
raise Exception('Err…')
|
||||
Reference in New Issue
Block a user