Skip to main content

A teeworlds network protocol library, designed according to sans I/O (http://sans-io.readthedocs.io/) principles

Project description

A teeworlds network protocol library, designed according to sans I/O (http://sans-io.readthedocs.io/) principles

THIS LIBRARY IS IN EARLY DEVELOPMENT

Do not get bamboozled by the mature looking readme!

This project is not in a very usable state yet. It is in very early development!

APIs might change and many essential features are missing!


install

pip install twnet_parser

sample usage

import twnet_parser.packet
packet = twnet_parser.packet.parse7(b'\x04\x0a\x00\xcf\x2e\xde\x1d\04') # 0.7 close

print(packet) # => <class: 'TwPacket'>: {'version': '0.7', 'header': <class: 'Header'>, 'messages': [<class: 'CtrlMessage'>]}
print(packet.header) # => <class: 'Header'>: {'flags': <class: 'PacketFlags7, 'size': 0, 'ack': 10, 'token': b'\xcf.\xde\x1d', 'num_chunks': 0}
print(packet.header.flags) # => <class: 'PacketFlags7'>: {'control': True, 'resend': False, 'compression': False, 'connless': False}
for msg in packet.messages:
    print(msg.message_name) # => close

Features

Feature 0.7 0.6
Deserialize packet headers :heavy_check_mark:
Deserialize chunk headers :heavy_check_mark:
Deserialize messages 85%
Deserialize snapshots
Deserialize connless packets :heavy_check_mark:
Serialize packet headers :heavy_check_mark:
Serialize chunk headers :heavy_check_mark:
Serialize messages 85%
Serialize snapshots
Serialize connless packets :heavy_check_mark:

Non-Features (also not planned for this library)

Feature Status Where to find it
Networking :x: TODO: link if someone implemented it on top
Protocol version detection :x: TODO: link if someone implemented it on top
Track sequence number state :x: TODO: link if someone implemented it on top
Track connection state :x: TODO: link if someone implemented it on top

Look elsewhere for these features. Or use this library to implement them on top.

This project is intentionally only covering parsing the protocol. Not fully implemeting a state machine of the protocol. Or a fully working client / server software.

If you want to build something with this library you do have to understand how the protocol works and when the client and server have to send what.

This protocol documentation should get you started to understand the basics.

Convenient defaults and fully customizable

from twnet_parser.packet import TwPacket
from twnet_parser.messages7.game.cl_call_vote import MsgClCallVote

"""
The call to packet.pack() generates
a valid byte array that can be sent as an udp payload

It uses default values for things like:
 security token, acknowledge number, packet flags,
 chunk header (flags, size, seq),
 vote type, vote value, vote reason, vote force

It computes a valid chunk header size field based
on the payload length.

It sets the correct num chunks field in the packet header
based on the amount of messages you added (1 in this case)

While this has all fields set that packet would be dropped by a vanilla
implementation because the security token and sequence number is wrong.
So you have to take care of those your self.
"""
packet = TwPacket()
msg = MsgClCallVote()
packet.messages.append(msg)
packet.pack() # => b'\x00\x00\x01\xff\xff\xff\xff\x00\x00\x80\x01default\x00default\x00default\x00\x00'



"""
Here we also send a Call vote message.
But this time we set a security token and a few other fields.

Note that we set num_chunks to 6 which is wrong because
we only send one message (MsgClCallVote).
But this library allows you to do so.
And it will not compute the correct amount.
But use your explicitly set wrong one instead.

This allows you to have full control and craft any kind of packet.
May it be correct or not.
"""
packet = TwPacket()
packet.header.token = b'\x48\x1f\x93\xd7'
packet.header.num_chunks = 6
packet.header.ack = 638
packet.header.flags.control = False
packet.header.flags.compression = False
msg = MsgClCallVote()
msg.header.seq = 10
msg.type = 'option'
msg.value = 'test'
msg.reason = ''
msg.force = False
packet.messages.append(msg)
packet.pack() # => b'\x02~\x06H\x1f\x93\xd7\x00\x00\x80\x01option\x00test\x00\x00\x00'

development setup

git clone https://gitlab.com/teeworlds-network/twnet_parser
cd twnet_parser
python -m venv venv
source venv/bin/activate
pip install -r requirements/dev.txt

tests and linting

# dev dependencies
pip install -r requirements/dev.txt

# run unit tests
pytest .

# run style linter
pylint src/

# run type checker
mypy src/

# or use the bundle script that runs all tests
./scripts/run_tests.sh

package and release

# manual
pip install -r requirements/dev.txt
version=0.0.2
sed -i "s/^version =.*/version = $version/" setup.cfg
python -m build
git tag -a "v$version" -m "# version $version"
python -m twine upload dist/*

# or use the interactive convience script
./scripts/release.sh

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

twnet_parser-0.7.0.tar.gz (51.0 kB view details)

Uploaded Source

Built Distribution

twnet_parser-0.7.0-py3-none-any.whl (76.1 kB view details)

Uploaded Python 3

File details

Details for the file twnet_parser-0.7.0.tar.gz.

File metadata

  • Download URL: twnet_parser-0.7.0.tar.gz
  • Upload date:
  • Size: 51.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for twnet_parser-0.7.0.tar.gz
Algorithm Hash digest
SHA256 dea11616d96078673b8de264f59b4d4664eb945b71b15d432ae2b47406a2ea85
MD5 a9b4968b93740bdc5037541d1fc03f59
BLAKE2b-256 8cf78e78101dd8d791cae0263fac9f7787c9710da7243d97361e4d037b9c90fb

See more details on using hashes here.

File details

Details for the file twnet_parser-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: twnet_parser-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 76.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for twnet_parser-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fe81c430b2e52029eedee655a1811a6aafd7b9d6f414ab77d7ae751087a6f25d
MD5 2133c25e46bab54ad7d8a831ecc98a3f
BLAKE2b-256 fc5e8f80dfe0b79c3c0d343829f381b245e1ebf7a5784f230ae9ec7180961bba

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page