2015-04-10 02:35:40 +00:00
|
|
|
from __future__ import absolute_import
|
|
|
|
import os
|
|
|
|
import struct
|
|
|
|
import io
|
2015-09-17 13:16:12 +00:00
|
|
|
import six
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-07-08 07:34:10 +00:00
|
|
|
from .protocol import Masker
|
2015-08-10 18:36:47 +00:00
|
|
|
from netlib import tcp
|
|
|
|
from netlib import utils
|
2015-04-17 01:57:39 +00:00
|
|
|
|
2015-07-08 07:34:10 +00:00
|
|
|
DEFAULT = object()
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-04-21 11:13:42 +00:00
|
|
|
MAX_16_BIT_INT = (1 << 16)
|
|
|
|
MAX_64_BIT_INT = (1 << 64)
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-04-29 21:04:22 +00:00
|
|
|
OPCODE = utils.BiDi(
|
2015-05-27 09:18:54 +00:00
|
|
|
CONTINUE=0x00,
|
|
|
|
TEXT=0x01,
|
|
|
|
BINARY=0x02,
|
|
|
|
CLOSE=0x08,
|
|
|
|
PING=0x09,
|
|
|
|
PONG=0x0a
|
2015-04-29 21:04:22 +00:00
|
|
|
)
|
2015-04-20 05:18:30 +00:00
|
|
|
|
2015-08-10 18:44:36 +00:00
|
|
|
|
2015-06-17 11:10:27 +00:00
|
|
|
class FrameHeader(object):
|
2015-05-27 09:18:54 +00:00
|
|
|
|
2015-04-24 03:09:21 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
2015-05-27 09:18:54 +00:00
|
|
|
opcode=OPCODE.TEXT,
|
|
|
|
payload_length=0,
|
|
|
|
fin=False,
|
|
|
|
rsv1=False,
|
|
|
|
rsv2=False,
|
|
|
|
rsv3=False,
|
|
|
|
masking_key=DEFAULT,
|
|
|
|
mask=DEFAULT,
|
|
|
|
length_code=DEFAULT
|
2015-04-24 03:09:21 +00:00
|
|
|
):
|
2015-04-24 03:23:00 +00:00
|
|
|
if not 0 <= opcode < 2 ** 4:
|
|
|
|
raise ValueError("opcode must be 0-16")
|
2015-04-24 03:09:21 +00:00
|
|
|
self.opcode = opcode
|
|
|
|
self.payload_length = payload_length
|
|
|
|
self.fin = fin
|
|
|
|
self.rsv1 = rsv1
|
|
|
|
self.rsv2 = rsv2
|
|
|
|
self.rsv3 = rsv3
|
2015-04-24 03:42:31 +00:00
|
|
|
|
|
|
|
if length_code is DEFAULT:
|
2015-07-08 07:34:10 +00:00
|
|
|
self.length_code = self._make_length_code(self.payload_length)
|
2015-04-24 03:42:31 +00:00
|
|
|
else:
|
|
|
|
self.length_code = length_code
|
|
|
|
|
|
|
|
if mask is DEFAULT and masking_key is DEFAULT:
|
|
|
|
self.mask = False
|
|
|
|
self.masking_key = ""
|
|
|
|
elif mask is DEFAULT:
|
|
|
|
self.mask = 1
|
|
|
|
self.masking_key = masking_key
|
|
|
|
elif masking_key is DEFAULT:
|
|
|
|
self.mask = mask
|
|
|
|
self.masking_key = os.urandom(4)
|
|
|
|
else:
|
|
|
|
self.mask = mask
|
|
|
|
self.masking_key = masking_key
|
|
|
|
|
|
|
|
if self.masking_key and len(self.masking_key) != 4:
|
|
|
|
raise ValueError("Masking key must be 4 bytes.")
|
2015-04-24 03:09:21 +00:00
|
|
|
|
2015-07-08 07:34:10 +00:00
|
|
|
@classmethod
|
|
|
|
def _make_length_code(self, length):
|
|
|
|
"""
|
|
|
|
A websockets frame contains an initial length_code, and an optional
|
|
|
|
extended length code to represent the actual length if length code is
|
|
|
|
larger than 125
|
|
|
|
"""
|
|
|
|
if length <= 125:
|
|
|
|
return length
|
|
|
|
elif length >= 126 and length <= 65535:
|
|
|
|
return 126
|
|
|
|
else:
|
|
|
|
return 127
|
|
|
|
|
2015-04-29 21:04:22 +00:00
|
|
|
def human_readable(self):
|
2015-04-30 00:10:08 +00:00
|
|
|
vals = [
|
2015-05-31 05:24:44 +00:00
|
|
|
"ws frame:",
|
2015-04-30 00:10:08 +00:00
|
|
|
OPCODE.get_name(self.opcode, hex(self.opcode)).lower()
|
|
|
|
]
|
|
|
|
flags = []
|
|
|
|
for i in ["fin", "rsv1", "rsv2", "rsv3", "mask"]:
|
|
|
|
if getattr(self, i):
|
|
|
|
flags.append(i)
|
|
|
|
if flags:
|
|
|
|
vals.extend([":", "|".join(flags)])
|
|
|
|
if self.masking_key:
|
2015-05-27 09:18:54 +00:00
|
|
|
vals.append(":key=%s" % repr(self.masking_key))
|
2015-04-30 00:10:08 +00:00
|
|
|
if self.payload_length:
|
2015-05-27 09:18:54 +00:00
|
|
|
vals.append(" %s" % utils.pretty_size(self.payload_length))
|
2015-04-30 00:10:08 +00:00
|
|
|
return "".join(vals)
|
2015-04-29 21:04:22 +00:00
|
|
|
|
2015-04-24 03:09:21 +00:00
|
|
|
def to_bytes(self):
|
|
|
|
first_byte = utils.setbit(0, 7, self.fin)
|
|
|
|
first_byte = utils.setbit(first_byte, 6, self.rsv1)
|
|
|
|
first_byte = utils.setbit(first_byte, 5, self.rsv2)
|
|
|
|
first_byte = utils.setbit(first_byte, 4, self.rsv3)
|
|
|
|
first_byte = first_byte | self.opcode
|
|
|
|
|
2015-04-24 03:42:31 +00:00
|
|
|
second_byte = utils.setbit(self.length_code, 7, self.mask)
|
2015-04-24 03:09:21 +00:00
|
|
|
|
|
|
|
b = chr(first_byte) + chr(second_byte)
|
|
|
|
|
|
|
|
if self.payload_length < 126:
|
|
|
|
pass
|
|
|
|
elif self.payload_length < MAX_16_BIT_INT:
|
|
|
|
# '!H' pack as 16 bit unsigned short
|
|
|
|
# add 2 byte extended payload length
|
|
|
|
b += struct.pack('!H', self.payload_length)
|
|
|
|
elif self.payload_length < MAX_64_BIT_INT:
|
|
|
|
# '!Q' = pack as 64 bit unsigned long long
|
|
|
|
# add 8 bytes extended payload length
|
|
|
|
b += struct.pack('!Q', self.payload_length)
|
|
|
|
if self.masking_key is not None:
|
|
|
|
b += self.masking_key
|
|
|
|
return b
|
|
|
|
|
|
|
|
@classmethod
|
2015-06-17 11:10:27 +00:00
|
|
|
def from_file(cls, fp):
|
2015-04-24 03:09:21 +00:00
|
|
|
"""
|
|
|
|
read a websockets frame header
|
|
|
|
"""
|
2015-09-17 13:16:12 +00:00
|
|
|
first_byte = six.byte2int(fp.safe_read(1))
|
|
|
|
second_byte = six.byte2int(fp.safe_read(1))
|
2015-04-24 03:09:21 +00:00
|
|
|
|
|
|
|
fin = utils.getbit(first_byte, 7)
|
|
|
|
rsv1 = utils.getbit(first_byte, 6)
|
|
|
|
rsv2 = utils.getbit(first_byte, 5)
|
|
|
|
rsv3 = utils.getbit(first_byte, 4)
|
2015-04-24 03:31:14 +00:00
|
|
|
# grab right-most 4 bits
|
2015-04-24 03:09:21 +00:00
|
|
|
opcode = first_byte & 15
|
2015-04-24 03:31:14 +00:00
|
|
|
mask_bit = utils.getbit(second_byte, 7)
|
2015-04-24 03:09:21 +00:00
|
|
|
# grab the next 7 bits
|
|
|
|
length_code = second_byte & 127
|
|
|
|
|
|
|
|
# payload_lengthy > 125 indicates you need to read more bytes
|
|
|
|
# to get the actual payload length
|
|
|
|
if length_code <= 125:
|
|
|
|
payload_length = length_code
|
|
|
|
elif length_code == 126:
|
2015-09-17 13:16:12 +00:00
|
|
|
payload_length, = struct.unpack("!H", fp.safe_read(2))
|
2015-04-24 03:09:21 +00:00
|
|
|
elif length_code == 127:
|
2015-09-17 13:16:12 +00:00
|
|
|
payload_length, = struct.unpack("!Q", fp.safe_read(8))
|
2015-04-24 03:09:21 +00:00
|
|
|
|
|
|
|
# masking key only present if mask bit set
|
|
|
|
if mask_bit == 1:
|
2015-05-04 22:47:02 +00:00
|
|
|
masking_key = fp.safe_read(4)
|
2015-04-24 03:09:21 +00:00
|
|
|
else:
|
|
|
|
masking_key = None
|
|
|
|
|
2015-06-17 11:10:27 +00:00
|
|
|
return cls(
|
2015-05-27 09:18:54 +00:00
|
|
|
fin=fin,
|
|
|
|
rsv1=rsv1,
|
|
|
|
rsv2=rsv2,
|
|
|
|
rsv3=rsv3,
|
|
|
|
opcode=opcode,
|
|
|
|
mask=mask_bit,
|
|
|
|
length_code=length_code,
|
|
|
|
payload_length=payload_length,
|
|
|
|
masking_key=masking_key,
|
2015-04-24 03:09:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return self.to_bytes() == other.to_bytes()
|
2015-04-23 20:47:09 +00:00
|
|
|
|
|
|
|
|
2015-04-17 02:29:20 +00:00
|
|
|
class Frame(object):
|
2015-05-27 09:18:54 +00:00
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
"""
|
|
|
|
Represents one websockets frame.
|
|
|
|
Constructor takes human readable forms of the frame components
|
|
|
|
from_bytes() is also avaliable.
|
|
|
|
|
|
|
|
WebSockets Frame as defined in RFC6455
|
2015-04-17 01:57:39 +00:00
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
+-+-+-+-+-------+-+-------------+-------------------------------+
|
|
|
|
|F|R|R|R| opcode|M| Payload len | Extended payload length |
|
|
|
|
|I|S|S|S| (4) |A| (7) | (16/64) |
|
|
|
|
|N|V|V|V| |S| | (if payload len==126/127) |
|
|
|
|
| |1|2|3| |K| | |
|
|
|
|
+-+-+-+-+-------+-+-------------+ - - - - - - - - - - - - - - - +
|
|
|
|
| Extended payload length continued, if payload len == 127 |
|
|
|
|
+ - - - - - - - - - - - - - - - +-------------------------------+
|
|
|
|
| |Masking-key, if MASK set to 1 |
|
|
|
|
+-------------------------------+-------------------------------+
|
|
|
|
| Masking-key (continued) | Payload Data |
|
|
|
|
+-------------------------------- - - - - - - - - - - - - - - - +
|
|
|
|
: Payload Data continued ... :
|
|
|
|
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
|
|
|
|
| Payload Data continued ... |
|
|
|
|
+---------------------------------------------------------------+
|
|
|
|
"""
|
2015-05-27 09:18:54 +00:00
|
|
|
|
|
|
|
def __init__(self, payload="", **kwargs):
|
2015-04-21 01:39:00 +00:00
|
|
|
self.payload = payload
|
2015-04-24 03:09:21 +00:00
|
|
|
kwargs["payload_length"] = kwargs.get("payload_length", len(payload))
|
|
|
|
self.header = FrameHeader(**kwargs)
|
2015-04-10 02:35:40 +00:00
|
|
|
|
|
|
|
@classmethod
|
2015-05-27 09:18:54 +00:00
|
|
|
def default(cls, message, from_client=False):
|
2015-04-10 02:35:40 +00:00
|
|
|
"""
|
2015-04-17 01:57:39 +00:00
|
|
|
Construct a basic websocket frame from some default values.
|
2015-04-10 02:35:40 +00:00
|
|
|
Creates a non-fragmented text frame.
|
2015-04-17 01:57:39 +00:00
|
|
|
"""
|
2015-04-10 02:35:40 +00:00
|
|
|
if from_client:
|
2015-04-17 02:29:20 +00:00
|
|
|
mask_bit = 1
|
2015-04-21 10:51:01 +00:00
|
|
|
masking_key = os.urandom(4)
|
2015-04-10 02:35:40 +00:00
|
|
|
else:
|
2015-04-17 02:29:20 +00:00
|
|
|
mask_bit = 0
|
2015-04-10 02:35:40 +00:00
|
|
|
masking_key = None
|
2015-04-17 01:57:39 +00:00
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
return cls(
|
2015-04-24 03:09:21 +00:00
|
|
|
message,
|
2015-05-27 09:18:54 +00:00
|
|
|
fin=1, # final frame
|
|
|
|
opcode=OPCODE.TEXT, # text
|
|
|
|
mask=mask_bit,
|
|
|
|
masking_key=masking_key,
|
2015-04-10 02:35:40 +00:00
|
|
|
)
|
|
|
|
|
2015-04-24 03:31:14 +00:00
|
|
|
@classmethod
|
|
|
|
def from_bytes(cls, bytestring):
|
|
|
|
"""
|
|
|
|
Construct a websocket frame from an in-memory bytestring
|
|
|
|
to construct a frame from a stream of bytes, use from_file() directly
|
|
|
|
"""
|
2015-05-04 22:47:02 +00:00
|
|
|
return cls.from_file(tcp.Reader(io.BytesIO(bytestring)))
|
2015-04-24 03:31:14 +00:00
|
|
|
|
2015-04-24 03:09:21 +00:00
|
|
|
def human_readable(self):
|
2015-05-31 05:24:44 +00:00
|
|
|
ret = self.header.human_readable()
|
|
|
|
if self.payload:
|
2015-09-12 15:03:09 +00:00
|
|
|
ret = ret + "\nPayload:\n" + utils.clean_bin(self.payload)
|
2015-05-31 05:24:44 +00:00
|
|
|
return ret
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-06-05 05:08:22 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return self.header.human_readable()
|
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
def to_bytes(self):
|
|
|
|
"""
|
2015-05-15 23:32:18 +00:00
|
|
|
Serialize the frame to wire format. Returns a string.
|
2015-04-17 01:57:39 +00:00
|
|
|
"""
|
2015-04-24 03:09:21 +00:00
|
|
|
b = self.header.to_bytes()
|
|
|
|
if self.header.masking_key:
|
2015-04-30 22:09:35 +00:00
|
|
|
b += Masker(self.header.masking_key)(self.payload)
|
2015-04-23 21:21:04 +00:00
|
|
|
else:
|
|
|
|
b += self.payload
|
2015-04-21 10:39:45 +00:00
|
|
|
return b
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-04-20 05:18:30 +00:00
|
|
|
def to_file(self, writer):
|
|
|
|
writer.write(self.to_bytes())
|
|
|
|
writer.flush()
|
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
@classmethod
|
2015-04-21 11:13:42 +00:00
|
|
|
def from_file(cls, fp):
|
2015-04-10 02:35:40 +00:00
|
|
|
"""
|
|
|
|
read a websockets frame sent by a server or client
|
2015-04-21 01:39:00 +00:00
|
|
|
|
2015-04-21 11:13:42 +00:00
|
|
|
fp is a "file like" object that could be backed by a network
|
2015-04-21 01:39:00 +00:00
|
|
|
stream or a disk or an in memory stream reader
|
|
|
|
"""
|
2015-04-24 03:09:21 +00:00
|
|
|
header = FrameHeader.from_file(fp)
|
2015-05-04 22:47:02 +00:00
|
|
|
payload = fp.safe_read(header.payload_length)
|
2015-04-17 01:57:39 +00:00
|
|
|
|
2015-04-24 03:09:21 +00:00
|
|
|
if header.mask == 1 and header.masking_key:
|
2015-04-30 22:09:35 +00:00
|
|
|
payload = Masker(header.masking_key)(payload)
|
2015-04-10 02:35:40 +00:00
|
|
|
|
|
|
|
return cls(
|
2015-04-24 03:09:21 +00:00
|
|
|
payload,
|
2015-05-27 09:18:54 +00:00
|
|
|
fin=header.fin,
|
|
|
|
opcode=header.opcode,
|
|
|
|
mask=header.mask,
|
|
|
|
payload_length=header.payload_length,
|
|
|
|
masking_key=header.masking_key,
|
|
|
|
rsv1=header.rsv1,
|
|
|
|
rsv2=header.rsv2,
|
|
|
|
rsv3=header.rsv3,
|
|
|
|
length_code=header.length_code
|
2015-04-10 02:35:40 +00:00
|
|
|
)
|
|
|
|
|
2015-04-11 22:40:18 +00:00
|
|
|
def __eq__(self, other):
|
2015-04-24 03:09:21 +00:00
|
|
|
return self.to_bytes() == other.to_bytes()
|