477 lines
17 KiB
Python
477 lines
17 KiB
Python
###############################################################################
|
|
#
|
|
# The MIT License (MIT)
|
|
#
|
|
# Copyright (c) Crossbar.io Technologies GmbH
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
#
|
|
###############################################################################
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import txaio
|
|
|
|
from twisted.internet.protocol import Factory
|
|
from twisted.protocols.basic import Int32StringReceiver
|
|
from twisted.internet.error import ConnectionDone
|
|
|
|
from autobahn.twisted.util import peer2str, transport_channel_id
|
|
from autobahn.util import _LazyHexFormatter
|
|
from autobahn.wamp.exception import ProtocolError, SerializationError, TransportLost
|
|
|
|
__all__ = (
|
|
'WampRawSocketServerProtocol',
|
|
'WampRawSocketClientProtocol',
|
|
'WampRawSocketServerFactory',
|
|
'WampRawSocketClientFactory'
|
|
)
|
|
|
|
|
|
class WampRawSocketProtocol(Int32StringReceiver):
|
|
"""
|
|
Base class for Twisted-based WAMP-over-RawSocket protocols.
|
|
"""
|
|
log = txaio.make_logger()
|
|
|
|
def connectionMade(self):
|
|
self.log.debug("WampRawSocketProtocol: connection made")
|
|
|
|
# the peer we are connected to
|
|
#
|
|
try:
|
|
peer = self.transport.getPeer()
|
|
except AttributeError:
|
|
# ProcessProtocols lack getPeer()
|
|
self.peer = "?"
|
|
else:
|
|
self.peer = peer2str(peer)
|
|
|
|
# a Future/Deferred that fires when we hit STATE_CLOSED
|
|
self.is_closed = txaio.create_future()
|
|
|
|
# this will hold an ApplicationSession object
|
|
# once the RawSocket opening handshake has been
|
|
# completed
|
|
#
|
|
self._session = None
|
|
|
|
# Will hold the negotiated serializer once the opening handshake is complete
|
|
#
|
|
self._serializer = None
|
|
|
|
# Will be set to True once the opening handshake is complete
|
|
#
|
|
self._handshake_complete = False
|
|
|
|
# Buffer for opening handshake received bytes.
|
|
#
|
|
self._handshake_bytes = b''
|
|
|
|
# Clinet requested maximum length of serialized messages.
|
|
#
|
|
self._max_len_send = None
|
|
|
|
def _on_handshake_complete(self):
|
|
try:
|
|
self._session = self.factory._factory()
|
|
self._session.onOpen(self)
|
|
except Exception as e:
|
|
# Exceptions raised in onOpen are fatal ..
|
|
self.log.warn("WampRawSocketProtocol: ApplicationSession constructor / onOpen raised ({err})", err=e)
|
|
self.abort()
|
|
else:
|
|
self.log.debug("ApplicationSession started.")
|
|
|
|
def connectionLost(self, reason):
|
|
self.log.debug("WampRawSocketProtocol: connection lost: reason = '{reason}'", reason=reason)
|
|
txaio.resolve(self.is_closed, self)
|
|
try:
|
|
wasClean = isinstance(reason.value, ConnectionDone)
|
|
self._session.onClose(wasClean)
|
|
except Exception as e:
|
|
# silently ignore exceptions raised here ..
|
|
self.log.warn("WampRawSocketProtocol: ApplicationSession.onClose raised ({err})", err=e)
|
|
self._session = None
|
|
|
|
def stringReceived(self, payload):
|
|
self.log.trace("WampRawSocketProtocol: RX octets: {octets}", octets=_LazyHexFormatter(payload))
|
|
try:
|
|
for msg in self._serializer.unserialize(payload):
|
|
self.log.trace("WampRawSocketProtocol: RX WAMP message: {msg}", msg=msg)
|
|
self._session.onMessage(msg)
|
|
|
|
except ProtocolError as e:
|
|
self.log.warn("WampRawSocketProtocol: WAMP Protocol Error ({err}) - aborting connection", err=e)
|
|
self.abort()
|
|
|
|
except Exception as e:
|
|
self.log.warn("WampRawSocketProtocol: WAMP Internal Error ({err}) - aborting connection", err=e)
|
|
self.abort()
|
|
|
|
def send(self, msg):
|
|
"""
|
|
Implements :func:`autobahn.wamp.interfaces.ITransport.send`
|
|
"""
|
|
if self.isOpen():
|
|
self.log.trace("WampRawSocketProtocol: TX WAMP message: {msg}", msg=msg)
|
|
try:
|
|
payload, _ = self._serializer.serialize(msg)
|
|
except Exception as e:
|
|
# all exceptions raised from above should be serialization errors ..
|
|
raise SerializationError("WampRawSocketProtocol: unable to serialize WAMP application payload ({0})".format(e))
|
|
else:
|
|
self.sendString(payload)
|
|
self.log.trace("WampRawSocketProtocol: TX octets: {octets}", octets=_LazyHexFormatter(payload))
|
|
else:
|
|
raise TransportLost()
|
|
|
|
def isOpen(self):
|
|
"""
|
|
Implements :func:`autobahn.wamp.interfaces.ITransport.isOpen`
|
|
"""
|
|
return self._session is not None
|
|
|
|
def close(self):
|
|
"""
|
|
Implements :func:`autobahn.wamp.interfaces.ITransport.close`
|
|
"""
|
|
if self.isOpen():
|
|
self.transport.loseConnection()
|
|
else:
|
|
raise TransportLost()
|
|
|
|
def abort(self):
|
|
"""
|
|
Implements :func:`autobahn.wamp.interfaces.ITransport.abort`
|
|
"""
|
|
if self.isOpen():
|
|
if hasattr(self.transport, 'abortConnection'):
|
|
# ProcessProtocol lacks abortConnection()
|
|
self.transport.abortConnection()
|
|
else:
|
|
self.transport.loseConnection()
|
|
else:
|
|
raise TransportLost()
|
|
|
|
|
|
class WampRawSocketServerProtocol(WampRawSocketProtocol):
|
|
"""
|
|
Base class for Twisted-based WAMP-over-RawSocket server protocols.
|
|
"""
|
|
|
|
def dataReceived(self, data):
|
|
|
|
if self._handshake_complete:
|
|
WampRawSocketProtocol.dataReceived(self, data)
|
|
else:
|
|
remaining = 4 - len(self._handshake_bytes)
|
|
self._handshake_bytes += data[:remaining]
|
|
|
|
if len(self._handshake_bytes) == 4:
|
|
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: opening handshake received - {octets}",
|
|
octets=_LazyHexFormatter(self._handshake_bytes),
|
|
)
|
|
|
|
if ord(self._handshake_bytes[0:1]) != 0x7f:
|
|
self.log.error(
|
|
"WampRawSocketProtocol: invalid magic byte (octet 1) in"
|
|
" opening handshake: was 0x{magic}, but expected 0x7f",
|
|
magic=_LazyHexFormatter(self._handshake_bytes[0]),
|
|
)
|
|
self.abort()
|
|
|
|
# peer requests us to send messages of maximum length 2**max_len_exp
|
|
#
|
|
self._max_len_send = 2 ** (9 + (ord(self._handshake_bytes[1:2]) >> 4))
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: client requests us to send out most {max_bytes} bytes per message",
|
|
max_bytes=self._max_len_send,
|
|
)
|
|
|
|
# client wants to speak this serialization format
|
|
#
|
|
ser_id = ord(self._handshake_bytes[1:2]) & 0x0F
|
|
if ser_id in self.factory._serializers:
|
|
self._serializer = self.factory._serializers[ser_id]
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: client wants to use serializer '{serializer}'",
|
|
serializer=ser_id,
|
|
)
|
|
else:
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: opening handshake - no suitable serializer found (client requested {serializer}, and we have {serializers}",
|
|
serializer=ser_id,
|
|
serializers=self.factory._serializers.keys(),
|
|
)
|
|
self.abort()
|
|
|
|
# we request the peer to send message of maximum length 2**reply_max_len_exp
|
|
#
|
|
reply_max_len_exp = 24
|
|
|
|
# send out handshake reply
|
|
#
|
|
reply_octet2 = bytes(bytearray([
|
|
((reply_max_len_exp - 9) << 4) | self._serializer.RAWSOCKET_SERIALIZER_ID]))
|
|
self.transport.write(b'\x7F') # magic byte
|
|
self.transport.write(reply_octet2) # max length / serializer
|
|
self.transport.write(b'\x00\x00') # reserved octets
|
|
|
|
self._handshake_complete = True
|
|
|
|
self._on_handshake_complete()
|
|
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: opening handshake completed: {serializer}",
|
|
serializer=self._serializer,
|
|
)
|
|
|
|
# consume any remaining data received already ..
|
|
#
|
|
data = data[remaining:]
|
|
if data:
|
|
self.dataReceived(data)
|
|
|
|
def get_channel_id(self, channel_id_type=u'tls-unique'):
|
|
"""
|
|
Implements :func:`autobahn.wamp.interfaces.ITransport.get_channel_id`
|
|
"""
|
|
return transport_channel_id(self.transport, is_server=True, channel_id_type=channel_id_type)
|
|
|
|
|
|
class WampRawSocketClientProtocol(WampRawSocketProtocol):
|
|
"""
|
|
Base class for Twisted-based WAMP-over-RawSocket client protocols.
|
|
"""
|
|
|
|
def connectionMade(self):
|
|
WampRawSocketProtocol.connectionMade(self)
|
|
self._serializer = self.factory._serializer
|
|
|
|
# we request the peer to send message of maximum length 2**reply_max_len_exp
|
|
#
|
|
request_max_len_exp = 24
|
|
|
|
# send out handshake reply
|
|
#
|
|
request_octet2 = bytes(bytearray([
|
|
((request_max_len_exp - 9) << 4) | self._serializer.RAWSOCKET_SERIALIZER_ID]))
|
|
self.transport.write(b'\x7F') # magic byte
|
|
self.transport.write(request_octet2) # max length / serializer
|
|
self.transport.write(b'\x00\x00') # reserved octets
|
|
|
|
def dataReceived(self, data):
|
|
|
|
if self._handshake_complete:
|
|
WampRawSocketProtocol.dataReceived(self, data)
|
|
else:
|
|
remaining = 4 - len(self._handshake_bytes)
|
|
self._handshake_bytes += data[:remaining]
|
|
|
|
if len(self._handshake_bytes) == 4:
|
|
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: opening handshake received - {handshake}",
|
|
handshake=_LazyHexFormatter(self._handshake_bytes),
|
|
)
|
|
|
|
if ord(self._handshake_bytes[0:1]) != 0x7f:
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: invalid magic byte (octet 1) in opening handshake: was 0x{magic}, but expected 0x7f",
|
|
magic=_LazyHexFormatter(self._handshake_bytes[0]),
|
|
)
|
|
self.abort()
|
|
|
|
# peer requests us to send messages of maximum length 2**max_len_exp
|
|
#
|
|
self._max_len_send = 2 ** (9 + (ord(self._handshake_bytes[1:2]) >> 4))
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: server requests us to send out most {max} bytes per message",
|
|
max=self._max_len_send,
|
|
)
|
|
|
|
# client wants to speak this serialization format
|
|
#
|
|
ser_id = ord(self._handshake_bytes[1:2]) & 0x0F
|
|
if ser_id != self._serializer.RAWSOCKET_SERIALIZER_ID:
|
|
self.log.error(
|
|
"WampRawSocketProtocol: opening handshake - no suitable serializer found (server replied {serializer}, and we requested {serializers})",
|
|
serializer=ser_id,
|
|
serializers=self._serializer.RAWSOCKET_SERIALIZER_ID,
|
|
)
|
|
self.abort()
|
|
|
|
self._handshake_complete = True
|
|
|
|
self._on_handshake_complete()
|
|
|
|
self.log.debug(
|
|
"WampRawSocketProtocol: opening handshake completed (using serializer {serializer})",
|
|
serializer=self._serializer,
|
|
)
|
|
|
|
# consume any remaining data received already ..
|
|
#
|
|
data = data[remaining:]
|
|
if data:
|
|
self.dataReceived(data)
|
|
|
|
def get_channel_id(self, channel_id_type=u'tls-unique'):
|
|
"""
|
|
Implements :func:`autobahn.wamp.interfaces.ITransport.get_channel_id`
|
|
"""
|
|
return transport_channel_id(self.transport, is_server=False, channel_id_type=channel_id_type)
|
|
|
|
|
|
class WampRawSocketFactory(Factory):
|
|
"""
|
|
Base class for Twisted-based WAMP-over-RawSocket factories.
|
|
"""
|
|
|
|
|
|
class WampRawSocketServerFactory(WampRawSocketFactory):
|
|
"""
|
|
Base class for Twisted-based WAMP-over-RawSocket server factories.
|
|
"""
|
|
protocol = WampRawSocketServerProtocol
|
|
|
|
def __init__(self, factory, serializers=None):
|
|
"""
|
|
|
|
:param factory: A callable that produces instances that implement
|
|
:class:`autobahn.wamp.interfaces.ITransportHandler`
|
|
:type factory: callable
|
|
:param serializers: A list of WAMP serializers to use (or None for default
|
|
serializers). Serializers must implement
|
|
:class:`autobahn.wamp.interfaces.ISerializer`.
|
|
:type serializers: list
|
|
"""
|
|
if callable(factory):
|
|
self._factory = factory
|
|
else:
|
|
self._factory = lambda: factory
|
|
|
|
if serializers is None:
|
|
serializers = []
|
|
|
|
# try CBOR WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import CBORSerializer
|
|
serializers.append(CBORSerializer(batched=True))
|
|
serializers.append(CBORSerializer())
|
|
except ImportError:
|
|
pass
|
|
|
|
# try MsgPack WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import MsgPackSerializer
|
|
serializers.append(MsgPackSerializer(batched=True))
|
|
serializers.append(MsgPackSerializer())
|
|
except ImportError:
|
|
pass
|
|
|
|
# try UBJSON WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import UBJSONSerializer
|
|
serializers.append(UBJSONSerializer(batched=True))
|
|
serializers.append(UBJSONSerializer())
|
|
except ImportError:
|
|
pass
|
|
|
|
# try JSON WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import JsonSerializer
|
|
serializers.append(JsonSerializer(batched=True))
|
|
serializers.append(JsonSerializer())
|
|
except ImportError:
|
|
pass
|
|
|
|
if not serializers:
|
|
raise Exception("could not import any WAMP serializers")
|
|
|
|
self._serializers = {}
|
|
for ser in serializers:
|
|
self._serializers[ser.RAWSOCKET_SERIALIZER_ID] = ser
|
|
|
|
|
|
class WampRawSocketClientFactory(WampRawSocketFactory):
|
|
"""
|
|
Base class for Twisted-based WAMP-over-RawSocket client factories.
|
|
"""
|
|
protocol = WampRawSocketClientProtocol
|
|
|
|
def __init__(self, factory, serializer=None):
|
|
"""
|
|
|
|
:param factory: A callable that produces instances that implement
|
|
:class:`autobahn.wamp.interfaces.ITransportHandler`
|
|
:type factory: callable
|
|
:param serializer: The WAMP serializer to use (or None for default
|
|
serializer). Serializers must implement
|
|
:class:`autobahn.wamp.interfaces.ISerializer`.
|
|
:type serializer: obj
|
|
"""
|
|
if callable(factory):
|
|
self._factory = factory
|
|
else:
|
|
self._factory = lambda: factory
|
|
|
|
if serializer is None:
|
|
|
|
# try CBOR WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import CBORSerializer
|
|
serializer = CBORSerializer()
|
|
except ImportError:
|
|
pass
|
|
|
|
if serializer is None:
|
|
|
|
# try MsgPack WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import MsgPackSerializer
|
|
serializer = MsgPackSerializer()
|
|
except ImportError:
|
|
pass
|
|
|
|
if serializer is None:
|
|
|
|
# try UBJSON WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import UBJSONSerializer
|
|
serializer = UBJSONSerializer()
|
|
except ImportError:
|
|
pass
|
|
|
|
if serializer is None:
|
|
# try JSON WAMP serializer
|
|
try:
|
|
from autobahn.wamp.serializer import JsonSerializer
|
|
serializer = JsonSerializer()
|
|
except ImportError:
|
|
pass
|
|
|
|
if serializer is None:
|
|
raise Exception("could not import any WAMP serializer")
|
|
|
|
self._serializer = serializer
|