2015-04-10 02:35:40 +00:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2015-04-17 01:57:39 +00:00
|
|
|
import base64
|
|
|
|
import hashlib
|
2015-04-10 02:35:40 +00:00
|
|
|
import os
|
|
|
|
import struct
|
|
|
|
import io
|
|
|
|
|
2015-04-21 10:39:45 +00:00
|
|
|
from . import utils, odict
|
2015-04-17 01:57:39 +00:00
|
|
|
|
|
|
|
# Colleciton of utility functions that implement small portions of the RFC6455
|
|
|
|
# WebSockets Protocol Useful for building WebSocket clients and servers.
|
2015-04-10 02:35:40 +00:00
|
|
|
#
|
2015-04-17 01:57:39 +00:00
|
|
|
# Emphassis is on readabilty, simplicity and modularity, not performance or
|
|
|
|
# completeness
|
2015-04-10 02:35:40 +00:00
|
|
|
#
|
2015-04-17 01:57:39 +00:00
|
|
|
# This is a work in progress and does not yet contain all the utilites need to
|
|
|
|
# create fully complient client/servers #
|
2015-04-10 02:35:40 +00:00
|
|
|
# Spec: https://tools.ietf.org/html/rfc6455
|
|
|
|
|
2015-04-17 01:57:39 +00:00
|
|
|
# The magic sha that websocket servers must know to prove they understand
|
|
|
|
# RFC6455
|
2015-04-10 02:35:40 +00:00
|
|
|
websockets_magic = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'
|
2015-04-21 10:39:45 +00:00
|
|
|
VERSION = "13"
|
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-17 01:57:39 +00:00
|
|
|
|
2015-04-21 11:13:42 +00:00
|
|
|
class OPCODE:
|
|
|
|
CONTINUE = 0x00
|
|
|
|
TEXT = 0x01
|
|
|
|
BINARY = 0x02
|
|
|
|
CLOSE = 0x08
|
|
|
|
PING = 0x09
|
|
|
|
PONG = 0x0a
|
2015-04-20 05:18:30 +00:00
|
|
|
|
|
|
|
|
2015-04-23 20:47:09 +00:00
|
|
|
def apply_mask(message, masking_key):
|
|
|
|
"""
|
|
|
|
Data sent from the server must be masked to prevent malicious clients
|
|
|
|
from sending data over the wire in predictable patterns
|
|
|
|
|
|
|
|
This method both encodes and decodes strings with the provided mask
|
|
|
|
|
|
|
|
Servers do not have to mask data they send to the client.
|
|
|
|
https://tools.ietf.org/html/rfc6455#section-5.3
|
|
|
|
"""
|
|
|
|
masks = [utils.bytes_to_int(byte) for byte in masking_key]
|
|
|
|
result = ""
|
|
|
|
for char in message:
|
|
|
|
result += chr(ord(char) ^ masks[len(result) % 4])
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def client_handshake_headers(key=None, version=VERSION):
|
|
|
|
"""
|
|
|
|
Create the headers for a valid HTTP upgrade request. If Key is not
|
|
|
|
specified, it is generated, and can be found in sec-websocket-key in
|
|
|
|
the returned header set.
|
|
|
|
|
|
|
|
Returns an instance of ODictCaseless
|
|
|
|
"""
|
|
|
|
if not key:
|
|
|
|
key = base64.b64encode(os.urandom(16)).decode('utf-8')
|
|
|
|
return odict.ODictCaseless([
|
|
|
|
('Connection', 'Upgrade'),
|
|
|
|
('Upgrade', 'websocket'),
|
|
|
|
('Sec-WebSocket-Key', key),
|
|
|
|
('Sec-WebSocket-Version', version)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
def server_handshake_headers(key):
|
|
|
|
"""
|
|
|
|
The server response is a valid HTTP 101 response.
|
|
|
|
"""
|
|
|
|
return odict.ODictCaseless(
|
|
|
|
[
|
|
|
|
('Connection', 'Upgrade'),
|
|
|
|
('Upgrade', 'websocket'),
|
|
|
|
('Sec-WebSocket-Accept', create_server_nonce(key))
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def get_payload_length_pair(payload_bytestring):
|
|
|
|
"""
|
|
|
|
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
|
|
|
|
"""
|
|
|
|
actual_length = len(payload_bytestring)
|
|
|
|
|
|
|
|
if actual_length <= 125:
|
|
|
|
length_code = actual_length
|
|
|
|
elif actual_length >= 126 and actual_length <= 65535:
|
|
|
|
length_code = 126
|
|
|
|
else:
|
|
|
|
length_code = 127
|
|
|
|
return (length_code, actual_length)
|
|
|
|
|
|
|
|
|
|
|
|
def make_length_code(len):
|
|
|
|
"""
|
|
|
|
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 len <= 125:
|
|
|
|
return len
|
|
|
|
elif len >= 126 and len <= 65535:
|
|
|
|
return 126
|
|
|
|
else:
|
|
|
|
return 127
|
|
|
|
|
|
|
|
|
|
|
|
def check_client_handshake(headers):
|
|
|
|
if headers.get_first("upgrade", None) != "websocket":
|
|
|
|
return
|
|
|
|
return headers.get_first('sec-websocket-key')
|
|
|
|
|
|
|
|
|
|
|
|
def check_server_handshake(headers):
|
|
|
|
if headers.get_first("upgrade", None) != "websocket":
|
|
|
|
return
|
|
|
|
return headers.get_first('sec-websocket-accept')
|
|
|
|
|
|
|
|
|
|
|
|
def create_server_nonce(client_nonce):
|
|
|
|
return base64.b64encode(
|
|
|
|
hashlib.sha1(client_nonce + websockets_magic).hexdigest().decode('hex')
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def frame_header_bytes(
|
|
|
|
opcode = 0,
|
|
|
|
payload_length = 0,
|
|
|
|
fin = 0,
|
|
|
|
rsv1 = 0,
|
|
|
|
rsv2 = 0,
|
|
|
|
rsv3 = 0,
|
|
|
|
mask = 0,
|
|
|
|
masking_key = None,
|
|
|
|
length_code = None
|
|
|
|
):
|
|
|
|
first_byte = (fin << 7) | (rsv1 << 6) |\
|
|
|
|
(rsv2 << 4) | (rsv3 << 4) | opcode
|
|
|
|
|
|
|
|
if length_code is None:
|
|
|
|
length_code = make_length_code(payload_length)
|
|
|
|
|
|
|
|
second_byte = (mask << 7) | length_code
|
|
|
|
|
|
|
|
b = chr(first_byte) + chr(second_byte)
|
|
|
|
|
|
|
|
if payload_length < 126:
|
|
|
|
pass
|
|
|
|
elif payload_length < MAX_16_BIT_INT:
|
|
|
|
# '!H' pack as 16 bit unsigned short
|
|
|
|
# add 2 byte extended payload length
|
|
|
|
b += struct.pack('!H', payload_length)
|
|
|
|
elif payload_length < MAX_64_BIT_INT:
|
|
|
|
# '!Q' = pack as 64 bit unsigned long long
|
|
|
|
# add 8 bytes extended payload length
|
|
|
|
b += struct.pack('!Q', payload_length)
|
|
|
|
if masking_key is not None:
|
|
|
|
b += masking_key
|
|
|
|
return b
|
|
|
|
|
|
|
|
|
2015-04-17 02:29:20 +00:00
|
|
|
class Frame(object):
|
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 ... |
|
|
|
|
+---------------------------------------------------------------+
|
|
|
|
"""
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
fin, # decmial integer 1 or 0
|
|
|
|
opcode, # decmial integer 1 - 4
|
|
|
|
mask_bit, # decimal integer 1 or 0
|
|
|
|
payload_length_code, # decimal integer 1 - 127
|
|
|
|
decoded_payload, # bytestring
|
2015-04-21 01:39:00 +00:00
|
|
|
rsv1 = 0, # decimal integer 1 or 0
|
|
|
|
rsv2 = 0, # decimal integer 1 or 0
|
|
|
|
rsv3 = 0, # decimal integer 1 or 0
|
|
|
|
payload = None, # bytestring
|
|
|
|
masking_key = None, # 32 bit byte string
|
2015-04-10 02:35:40 +00:00
|
|
|
actual_payload_length = None, # any decimal integer
|
|
|
|
):
|
2015-04-21 01:39:00 +00:00
|
|
|
self.fin = fin
|
|
|
|
self.rsv1 = rsv1
|
|
|
|
self.rsv2 = rsv2
|
|
|
|
self.rsv3 = rsv3
|
|
|
|
self.opcode = opcode
|
|
|
|
self.mask_bit = mask_bit
|
|
|
|
self.payload_length_code = payload_length_code
|
|
|
|
self.masking_key = masking_key
|
|
|
|
self.payload = payload
|
|
|
|
self.decoded_payload = decoded_payload
|
2015-04-10 02:35:40 +00:00
|
|
|
self.actual_payload_length = actual_payload_length
|
|
|
|
|
|
|
|
@classmethod
|
2015-04-11 18:35:15 +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
|
|
|
length_code, actual_length = get_payload_length_pair(message)
|
|
|
|
|
|
|
|
if from_client:
|
2015-04-17 02:29:20 +00:00
|
|
|
mask_bit = 1
|
2015-04-21 10:51:01 +00:00
|
|
|
# Random masking key
|
|
|
|
masking_key = os.urandom(4)
|
2015-04-17 02:29:20 +00:00
|
|
|
payload = apply_mask(message, masking_key)
|
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 02:29:20 +00:00
|
|
|
payload = message
|
2015-04-17 01:57:39 +00:00
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
return cls(
|
2015-04-17 02:29:20 +00:00
|
|
|
fin = 1, # final frame
|
2015-04-21 11:13:42 +00:00
|
|
|
opcode = OPCODE.TEXT, # text
|
2015-04-17 02:29:20 +00:00
|
|
|
mask_bit = mask_bit,
|
|
|
|
payload_length_code = length_code,
|
|
|
|
payload = payload,
|
|
|
|
masking_key = masking_key,
|
|
|
|
decoded_payload = message,
|
2015-04-10 02:35:40 +00:00
|
|
|
actual_payload_length = actual_length
|
|
|
|
)
|
|
|
|
|
2015-04-11 22:40:18 +00:00
|
|
|
def is_valid(self):
|
2015-04-10 02:35:40 +00:00
|
|
|
"""
|
2015-04-17 02:29:20 +00:00
|
|
|
Validate websocket frame invariants, call at anytime to ensure the
|
|
|
|
Frame has not been corrupted.
|
2015-04-17 01:57:39 +00:00
|
|
|
"""
|
2015-04-21 11:13:42 +00:00
|
|
|
constraints = [
|
|
|
|
0 <= self.fin <= 1,
|
|
|
|
0 <= self.rsv1 <= 1,
|
|
|
|
0 <= self.rsv2 <= 1,
|
|
|
|
0 <= self.rsv3 <= 1,
|
|
|
|
1 <= self.opcode <= 4,
|
|
|
|
0 <= self.mask_bit <= 1,
|
|
|
|
1 <= self.payload_length_code <= 127,
|
2015-04-21 11:49:27 +00:00
|
|
|
self.actual_payload_length == len(self.payload),
|
|
|
|
1 <= len(self.masking_key) <= 4 if self.mask_bit else True,
|
|
|
|
self.masking_key is not None if self.mask_bit else True
|
2015-04-21 11:13:42 +00:00
|
|
|
]
|
|
|
|
if not all(constraints):
|
2015-04-11 18:35:15 +00:00
|
|
|
return False
|
2015-04-21 11:13:42 +00:00
|
|
|
elif self.payload and self.masking_key:
|
|
|
|
decoded = apply_mask(self.payload, self.masking_key)
|
|
|
|
if decoded != self.decoded_payload:
|
|
|
|
return False
|
|
|
|
return True
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-04-20 05:18:30 +00:00
|
|
|
def human_readable(self): # pragma: nocover
|
2015-04-10 02:35:40 +00:00
|
|
|
return "\n".join([
|
2015-04-17 02:29:20 +00:00
|
|
|
("fin - " + str(self.fin)),
|
|
|
|
("rsv1 - " + str(self.rsv1)),
|
|
|
|
("rsv2 - " + str(self.rsv2)),
|
|
|
|
("rsv3 - " + str(self.rsv3)),
|
|
|
|
("opcode - " + str(self.opcode)),
|
|
|
|
("mask_bit - " + str(self.mask_bit)),
|
|
|
|
("payload_length_code - " + str(self.payload_length_code)),
|
2015-04-21 10:39:45 +00:00
|
|
|
("masking_key - " + repr(str(self.masking_key))),
|
|
|
|
("payload - " + repr(str(self.payload))),
|
|
|
|
("decoded_payload - " + repr(str(self.decoded_payload))),
|
2015-04-17 02:29:20 +00:00
|
|
|
("actual_payload_length - " + str(self.actual_payload_length))
|
|
|
|
])
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-04-20 05:18:30 +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-04-21 01:39:00 +00:00
|
|
|
"""
|
2015-04-20 05:18:30 +00:00
|
|
|
return cls.from_file(io.BytesIO(bytestring))
|
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
def to_bytes(self):
|
|
|
|
"""
|
2015-04-17 02:29:20 +00:00
|
|
|
Serialize the frame back into the wire format, returns a bytestring
|
|
|
|
If you haven't checked is_valid_frame() then there's no guarentees
|
|
|
|
that the serialized bytes will be correct. see safe_to_bytes()
|
2015-04-17 01:57:39 +00:00
|
|
|
"""
|
2015-04-23 20:47:09 +00:00
|
|
|
b = frame_header_bytes(
|
|
|
|
opcode = self.opcode,
|
|
|
|
fin = self.fin,
|
|
|
|
rsv1 = self.rsv1,
|
|
|
|
rsv2 = self.rsv2,
|
|
|
|
rsv3 = self.rsv3,
|
|
|
|
mask = self.mask_bit,
|
|
|
|
masking_key = self.masking_key,
|
|
|
|
payload_length = self.actual_payload_length
|
|
|
|
)
|
2015-04-21 10:39:45 +00:00
|
|
|
b += self.payload # already will be encoded if neccessary
|
|
|
|
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-21 11:13:42 +00:00
|
|
|
first_byte = utils.bytes_to_int(fp.read(1))
|
|
|
|
second_byte = utils.bytes_to_int(fp.read(1))
|
2015-04-17 01:57:39 +00:00
|
|
|
|
|
|
|
# grab the left most bit
|
|
|
|
fin = first_byte >> 7
|
|
|
|
# grab right most 4 bits by and-ing with 00001111
|
|
|
|
opcode = first_byte & 15
|
|
|
|
# grab left most bit
|
|
|
|
mask_bit = second_byte >> 7
|
|
|
|
# grab the next 7 bits
|
|
|
|
payload_length = second_byte & 127
|
2015-04-10 02:35:40 +00:00
|
|
|
|
|
|
|
# payload_lengthy > 125 indicates you need to read more bytes
|
|
|
|
# to get the actual payload length
|
|
|
|
if payload_length <= 125:
|
2015-04-17 01:57:39 +00:00
|
|
|
actual_payload_length = payload_length
|
2015-04-10 02:35:40 +00:00
|
|
|
|
|
|
|
elif payload_length == 126:
|
2015-04-21 11:13:42 +00:00
|
|
|
actual_payload_length = utils.bytes_to_int(fp.read(2))
|
2015-04-10 02:35:40 +00:00
|
|
|
|
2015-04-17 01:57:39 +00:00
|
|
|
elif payload_length == 127:
|
2015-04-21 11:13:42 +00:00
|
|
|
actual_payload_length = utils.bytes_to_int(fp.read(8))
|
2015-04-10 02:35:40 +00:00
|
|
|
|
|
|
|
# masking key only present if mask bit set
|
|
|
|
if mask_bit == 1:
|
2015-04-21 11:13:42 +00:00
|
|
|
masking_key = fp.read(4)
|
2015-04-10 02:35:40 +00:00
|
|
|
else:
|
|
|
|
masking_key = None
|
2015-04-17 01:57:39 +00:00
|
|
|
|
2015-04-21 11:13:42 +00:00
|
|
|
payload = fp.read(actual_payload_length)
|
2015-04-17 01:57:39 +00:00
|
|
|
|
2015-04-10 02:35:40 +00:00
|
|
|
if mask_bit == 1:
|
|
|
|
decoded_payload = apply_mask(payload, masking_key)
|
|
|
|
else:
|
|
|
|
decoded_payload = payload
|
|
|
|
|
|
|
|
return cls(
|
2015-04-17 02:29:20 +00:00
|
|
|
fin = fin,
|
|
|
|
opcode = opcode,
|
|
|
|
mask_bit = mask_bit,
|
|
|
|
payload_length_code = payload_length,
|
|
|
|
payload = payload,
|
|
|
|
masking_key = masking_key,
|
|
|
|
decoded_payload = decoded_payload,
|
2015-04-10 02:35:40 +00:00
|
|
|
actual_payload_length = actual_payload_length
|
|
|
|
)
|
|
|
|
|
2015-04-11 22:40:18 +00:00
|
|
|
def __eq__(self, other):
|
|
|
|
return (
|
2015-04-17 02:29:20 +00:00
|
|
|
self.fin == other.fin and
|
|
|
|
self.rsv1 == other.rsv1 and
|
|
|
|
self.rsv2 == other.rsv2 and
|
|
|
|
self.rsv3 == other.rsv3 and
|
|
|
|
self.opcode == other.opcode and
|
|
|
|
self.mask_bit == other.mask_bit and
|
|
|
|
self.payload_length_code == other.payload_length_code and
|
|
|
|
self.masking_key == other.masking_key and
|
|
|
|
self.payload == other.payload and
|
|
|
|
self.decoded_payload == other.decoded_payload and
|
|
|
|
self.actual_payload_length == other.actual_payload_length
|
|
|
|
)
|