Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 64 additions & 43 deletions src/websockets/frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import enum
import io
import os
import re
import secrets
import struct
from collections.abc import Generator, Sequence
Expand All @@ -26,6 +27,8 @@
"Close",
]

is_space_or_printable_ascii = re.compile(rb"[\x09-\x0D\x20-\x7E]*").fullmatch


class Opcode(enum.IntEnum):
"""Opcode values for WebSocket frames."""
Expand Down Expand Up @@ -177,58 +180,76 @@ def _data_repr(self) -> tuple[str, bool | None]:
This is a helper for the __str__ method.

"""
data_repr: str = ""
is_text: bool | None = None

if not self.data:
return "''", self.DEFAULT_IS_TEXT.get(self.opcode)

# Special case for close frames: parse close code and reason.
# Fall back to the standard case if the payload is malformed.
# Close frames: parse close code and reason and display them as text.
# Fall back to binary when the payload is malformed.

if self.opcode is CLOSE:
try:
return str(Close.parse(self.data)), True
data_repr = str(Close.parse(self.data))
is_text = True
except (ProtocolError, UnicodeDecodeError):
pass

# Guess whether the payload is UTF-8 or binary, regardless of opcode, to
# display UTF-8 text in binary frames nicely and generally to be helpful
# and robust. Also support frames fragmented within UTF-8 sequences.

if len(self.data) > 4 * self.MAX_LOG_SIZE:
# Process only the start and the end, as the middle will be elided.
# Cast to bytes because self.data could be a memoryview.
data_start = bytes(self.data[: 8 * self.MAX_LOG_SIZE // 3])
data_end = bytes(self.data[-4 * self.MAX_LOG_SIZE // 3 :])
is_text = is_utf8_fragment(
data_start,
must_start_clean=self.opcode != CONT,
) and is_utf8_fragment(
data_end,
must_end_clean=self.fin,
)
if is_text:
data_repr = repr((data_start + data_end).decode(errors="replace"))
data_repr = " ".join(f"{byte:02x}" for byte in self.data)
is_text = False

# Control frames: display printable ASCII payloads as text, else binary.
# We could decode UTF-8 payloads, but this causes confusion when random
# 4-bytes binary payloads are accidentally valid UTF-8 sequences.
Comment on lines +200 to +202

elif self.opcode in CTRL_OPCODES:
if is_space_or_printable_ascii(self.data):
data_repr = repr(bytes(self.data).decode("ascii"))
is_text = True
else:
data_repr = " ".join(f"{byte:02x}" for byte in self.data)
is_text = False

# Data frames: check whether the payload is UTF-8, regardless of opcode,
# in order to display nicely UTF-8 text in binary frames, and be robust.
# Also support frames fragmented within UTF-8 sequences.

else:
# Cast to bytes because self.data could be a memoryview.
data = bytes(self.data)
is_text = is_utf8_fragment(
data,
must_start_clean=self.opcode != CONT,
must_end_clean=self.fin,
)
if is_text:
data_repr = repr(data.decode(errors="replace"))

# When the payload is text (except perhaps for boundaries), we decoded
# enough in ``data_repr``. Now, do the same when the payload is binary.

if not is_text:
binary = self.data
if len(binary) > self.MAX_LOG_SIZE // 3:
cut = (self.MAX_LOG_SIZE // 3 - 1) // 3 # by default cut = 8
# Encode two dummy bytes to force eliding and adding an ellipsis.
binary = b"".join([binary[: 2 * cut], b"\x00\x00", binary[-cut:]])
data_repr = " ".join(f"{byte:02x}" for byte in binary)
if len(self.data) > 4 * self.MAX_LOG_SIZE:
# Process only the start and end, as the middle will be elided.
# Cast to bytes because self.data could be a memoryview.
data_start = bytes(self.data[: 8 * self.MAX_LOG_SIZE // 3])
data_end = bytes(self.data[-4 * self.MAX_LOG_SIZE // 3 :])
is_text = is_utf8_fragment(
data_start,
must_start_clean=self.opcode != CONT,
) and is_utf8_fragment(
data_end,
must_end_clean=self.fin,
)
if is_text:
data_repr = repr((data_start + data_end).decode(errors="replace"))

else:
# Cast to bytes because self.data could be a memoryview.
data = bytes(self.data)
is_text = is_utf8_fragment(
data,
must_start_clean=self.opcode != CONT,
must_end_clean=self.fin,
)
if is_text:
data_repr = repr(data.decode(errors="replace"))

# When the payload is text (except perhaps for boundaries), we have
# enough in ``data_repr``. Do the same when the payload is binary.

if not is_text:
binary = self.data
if len(binary) > self.MAX_LOG_SIZE // 3:
cut = (self.MAX_LOG_SIZE // 3 - 1) // 3 # by default cut = 8
# Encode two dummy bytes to force eliding and adding an ellipsis.
binary = b"".join([binary[: 2 * cut], b"\x00\x00", binary[-cut:]])
data_repr = " ".join(f"{byte:02x}" for byte in binary)

# Elide the middle of the representation to fit the maximum log size.

Expand Down
20 changes: 16 additions & 4 deletions tests/test_frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,18 +358,24 @@ def test_ping(self):
"PING '' [0 bytes]",
)

def test_ping_text(self):
def test_ping_ascii_text(self):
self.assertEqual(
str(Frame(PING, b"ping")),
"PING 'ping' [text, 4 bytes]",
)

def test_ping_text_with_newline(self):
def test_ping_ascii_text_with_newline(self):
self.assertEqual(
str(Frame(PING, b"ping\n")),
"PING 'ping\\n' [text, 5 bytes]",
)

def test_ping_utf8_text(self):
self.assertEqual(
str(Frame(PING, b"dG\x04I")),
"PING 64 47 04 49 [binary, 4 bytes]",
Comment on lines +375 to +376
)

def test_ping_binary(self):
self.assertEqual(
str(Frame(PING, b"\xff\x00\xff\x00")),
Expand All @@ -382,18 +388,24 @@ def test_pong(self):
"PONG '' [0 bytes]",
)

def test_pong_text(self):
def test_pong_ascii_text(self):
self.assertEqual(
str(Frame(PONG, b"pong")),
"PONG 'pong' [text, 4 bytes]",
)

def test_pong_text_with_newline(self):
def test_pong_ascii_text_with_newline(self):
self.assertEqual(
str(Frame(PONG, b"pong\n")),
"PONG 'pong\\n' [text, 5 bytes]",
)

def test_pong_utf8_text(self):
self.assertEqual(
str(Frame(PONG, b"dG\x04I")),
"PONG 64 47 04 49 [binary, 4 bytes]",
)

def test_pong_binary(self):
self.assertEqual(
str(Frame(PONG, b"\xff\x00\xff\x00")),
Expand Down
Loading