aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/websockets.py
blob: 5b9d8fbd3be9d133a10e3ae7c846ac1a92db38aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
from __future__ import absolute_import

import base64
import hashlib
import mimetools
import StringIO
import os
import struct
import io

from . import utils

# Colleciton of utility functions that implement small portions of the RFC6455
# WebSockets Protocol Useful for building WebSocket clients and servers.
#
# Emphassis is on readabilty, simplicity and modularity, not performance or
# completeness
#
# This is a work in progress and does not yet contain all the utilites need to
# create fully complient client/servers #
# Spec: https://tools.ietf.org/html/rfc6455

# The magic sha that websocket servers must know to prove they understand
# RFC6455
websockets_magic = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'


class CONST(object):
    MAX_16_BIT_INT = (1 << 16)
    MAX_64_BIT_INT = (1 << 64)


class WebSocketFrameValidationException(Exception):
    pass


class Frame(object):
    """
        Represents one websockets frame.
        Constructor takes human readable forms of the frame components
        from_bytes() is also avaliable.

        WebSockets Frame as defined in RFC6455

          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
        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
        actual_payload_length = None, # any decimal integer
    ):
        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
        self.actual_payload_length = actual_payload_length

    @classmethod
    def default(cls, message, from_client = False):
        """
          Construct a basic websocket frame from some default values.
          Creates a non-fragmented text frame.
        """
        length_code, actual_length = get_payload_length_pair(message)

        if from_client:
            mask_bit = 1
            masking_key = random_masking_key()
            payload = apply_mask(message, masking_key)
        else:
            mask_bit = 0
            masking_key = None
            payload = message

        return cls(
            fin = 1, # final frame
            opcode = 1, # text
            mask_bit = mask_bit,
            payload_length_code = length_code,
            payload = payload,
            masking_key = masking_key,
            decoded_payload = message,
            actual_payload_length = actual_length
        )

    def is_valid(self):
        """
            Validate websocket frame invariants, call at anytime to ensure the
            Frame has not been corrupted.
        """
        try:
            assert 0 <= self.fin <= 1
            assert 0 <= self.rsv1 <= 1
            assert 0 <= self.rsv2 <= 1
            assert 0 <= self.rsv3 <= 1
            assert 1 <= self.opcode <= 4
            assert 0 <= self.mask_bit <= 1
            assert 1 <= self.payload_length_code <= 127

            if self.mask_bit == 1:
                assert 1 <= len(self.masking_key) <= 4
            else:
                assert self.masking_key is None

            assert self.actual_payload_length == len(self.payload)

            if self.payload is not None and self.masking_key is not None:
                assert apply_mask(self.payload, self.masking_key) == self.decoded_payload

            return True
        except AssertionError:
            return False

    def human_readable(self): # pragma: nocover
        return "\n".join([
            ("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)),
            ("masking_key           - " + str(self.masking_key)),
            ("payload               - " + str(self.payload)),
            ("decoded_payload       - " + str(self.decoded_payload)),
            ("actual_payload_length - " + str(self.actual_payload_length))
        ])

    @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
        """ 
        return cls.from_file(io.BytesIO(bytestring))

    def safe_to_bytes(self):
        if self.is_valid():
            return self.to_bytes()
        else:
            raise WebSocketFrameValidationException()

    def to_bytes(self):
        """
            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()
        """

        # break down of the bit-math used to construct the first byte from the
        # frame's integer values first shift the significant bit into the
        # correct position
        # 00000001 << 7 = 10000000
        # ...
        # then combine:
        #
        # 10000000 fin
        # 01000000 res1
        # 00100000 res2
        # 00010000 res3
        # 00000001 opcode
        # -------- OR
        # 11110001   = first_byte

        first_byte = (self.fin << 7) | (self.rsv1 << 6) |\
                     (self.rsv2 << 4) | (self.rsv3 << 4) | self.opcode

        second_byte = (self.mask_bit << 7) | self.payload_length_code

        bytes = chr(first_byte) + chr(second_byte)

        if self.actual_payload_length < 126:
            pass
        elif self.actual_payload_length < CONST.MAX_16_BIT_INT:
            # '!H' pack as 16 bit unsigned short
            # add 2 byte extended payload length
            bytes += struct.pack('!H', self.actual_payload_length)
        elif self.actual_payload_length <  CONST.MAX_64_BIT_INT:
            # '!Q' = pack as 64 bit unsigned long long
            # add 8 bytes extended payload length
            bytes += struct.pack('!Q', self.actual_payload_length)

        if self.masking_key is not None:
            bytes += self.masking_key

        bytes += self.payload # already will be encoded if neccessary
        return bytes

    def to_file(self, writer):
        writer.write(self.to_bytes())
        writer.flush()

    @classmethod
    def from_file(cls, reader):
        """
          read a websockets frame sent by a server or client
      
          reader is a "file like" object that could be backed by a network stream or a disk 
          or an in memory stream reader
        """ 
        first_byte = utils.bytes_to_int(reader.read(1))
        second_byte = utils.bytes_to_int(reader.read(1))

        # 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

        # payload_lengthy > 125 indicates you need to read more bytes
        # to get the actual payload length
        if payload_length <= 125:
            actual_payload_length = payload_length

        elif payload_length == 126:
            actual_payload_length = utils.bytes_to_int(reader.read(2))

        elif payload_length == 127:
            actual_payload_length = utils.bytes_to_int(reader.read(8))

        # masking key only present if mask bit set
        if mask_bit == 1:
            masking_key = reader.read(4)
        else:
            masking_key = None

        payload = reader.read(actual_payload_length)

        if mask_bit == 1:
            decoded_payload = apply_mask(payload, masking_key)
        else:
            decoded_payload = payload

        return cls(
            fin = fin,
            opcode = opcode,
            mask_bit = mask_bit,
            payload_length_code = payload_length,
            payload = payload,
            masking_key = masking_key,
            decoded_payload = decoded_payload,
            actual_payload_length = actual_payload_length
        )

    def __eq__(self, other):
        return (
            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
        )


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 random_masking_key():
    return os.urandom(4)


def create_client_handshake(host, port, key, version, resource):
    """
      WebSockets connections are intiated by the client with a valid HTTP
      upgrade request
    """
    headers = [
        ('Host', '%s:%s' % (host, port)),
        ('Connection', 'Upgrade'),
        ('Upgrade', 'websocket'),
        ('Sec-WebSocket-Key', key),
        ('Sec-WebSocket-Version', version)
    ]
    request = "GET %s HTTP/1.1" % resource
    return build_handshake(headers, request)


def create_server_handshake(key):
    """
      The server response is a valid HTTP 101 response.
    """
    headers = [
        ('Connection', 'Upgrade'),
        ('Upgrade', 'websocket'),
        ('Sec-WebSocket-Accept', create_server_nounce(key))
    ]
    request = "HTTP/1.1 101 Switching Protocols"
    return build_handshake(headers, request)


def build_handshake(headers, request):
    handshake = [request.encode('utf-8')]
    for header, value in headers:
        handshake.append(("%s: %s" % (header, value)).encode('utf-8'))
    handshake.append(b'\r\n')
    return b'\r\n'.join(handshake)


def read_handshake(reader, num_bytes_per_read):
    """
      From provided function that reads bytes, read in a
      complete HTTP request, which terminates with a CLRF
    """
    response = b''
    doubleCLRF = b'\r\n\r\n'
    while True:
        bytes = reader.read(num_bytes_per_read)
        if not bytes:
            break
        response += bytes
        if doubleCLRF in response:
            break
    return response


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 process_handshake_from_client(handshake):
    headers = headers_from_http_message(handshake)
    if headers.get("Upgrade", None) != "websocket":
        return
    key = headers['Sec-WebSocket-Key']
    return key


def process_handshake_from_server(handshake):
    headers = headers_from_http_message(handshake)
    if headers.get("Upgrade", None) != "websocket":
        return
    key = headers['Sec-WebSocket-Accept']
    return key


def headers_from_http_message(http_message):
    return mimetools.Message(
        StringIO.StringIO(http_message.split('\r\n', 1)[1])
    )


def create_server_nounce(client_nounce):
    return base64.b64encode(
        hashlib.sha1(client_nounce + websockets_magic).hexdigest().decode('hex')
    )


def create_client_nounce():
    return base64.b64encode(os.urandom(16)).decode('utf-8')