Skip to main content

A non-standard internet relay chat program.

Project description

dum-dum-irc

A handcrafted implementation of an internet relay chat without following any conventions or RFC standards.

Changelog | Contributing Guide

Usage

With Python 3.11+ installed, you can get the current stable version on PyPI:

pip install dum-dum-irc

Or if you have Git, you can install the latest in-development version:

pip install git+https://github.com/thegamecracks/dum-dum-irc

Once installed, you can use the dumdum and dumdum-server commands. Running dumdum starts a graphical client which you can use to join Dumdum servers, while dumdum-server is used to host servers of your own. Both support the -h/--help option if you want to see more details:

usage: dumdum [-h] [-v] {appdirs} ...

Start the client interface for connecting to dumdum servers.

positional arguments:
  {appdirs}

options:
  -h, --help     show this help message and exit
  -v, --verbose  Increase logging verbosity
usage: dumdum-server [-h] [-v] [-c CHANNELS [CHANNELS ...]] [--host HOST] [--port PORT] [--cert CERT] [--max-messages MAX_MESSAGES]

Host a dumdum server.

To use TLS encryption, you must provide a certificate and private key.
This can be specified as either:
1. A single file containing both the private key and certificate:
     --cert hello.pem
2. A pair of certificate and private key files, separated with a colon:
     --cert hello.crt:hello.key

options:
  -h, --help            show this help message and exit
  -v, --verbose         Increase logging verbosity
  -c CHANNELS [CHANNELS ...], --channels CHANNELS [CHANNELS ...]
                        A list of channels
  --host HOST           The address to host on, or all interfaces when not supplied
  --port PORT           The port number to host on (default: 6667)
  --cert CERT           The SSL certificate and private key to use
  --max-messages MAX_MESSAGES
                        The maximum number of messages cached per channel (default: 1000)

Implementation

Dumdum consists of two parts:

  1. The Sans-IO protocol, defined in dumdum.protocol
  2. The asyncio wrapper, defined in dumdum.client and dumdum.server

The Sans-IO protocol is responsible for handling the generation and consumption of byte streams, along with producing events from received messages, while the asyncio wrapper is responsible for the actual network communication between the server and its clients.

Protocol

Clients are able to send the following messages:

  1. HELLO: 0x00 | 1-byte version
  2. AUTHENTICATE: 0x02 | varchar nickname (32)
  3. SEND_MESSAGE: 0x03 | varchar channel name (32) | varchar content (1024)
  4. LIST_CHANNELS: 0x04
  5. LIST_MESSAGES: 0x05 | 8-byte before snowflake or 0 | 8-byte after snowflake or 0

Servers are able to send the following messages:

  1. HELLO: 0x00 | 0 or 1 using SSL
  2. INCOMPATIBLE_VERSION: 0x01 | 1-byte version
  3. ACKNOWLEDGE_AUTHENTICATION: 0x02 | 0 or 1 success
  4. SEND_MESSAGE: 0x03 | 8-byte snowflake | varchar channel name (32) | varchar nickname (32) | varchar content (1024)
  5. LIST_CHANNELS: 0x04 | 2-byte length | varchar channel name (32) | ...
  6. LIST_MESSAGES: 0x05 | 3-byte length | same fields after SEND_MESSAGE | ...

Clients must send a HELLO command and wait for the server to respond with HELLO. Afterwards the client must send an AUTHENTICATE command and wait for a successful ACKNOWLEDGE_AUTHENTICATION before they can begin chat communications.

When the client disconnects and reconnects, they MUST re-send hello and re-authenticate with the server.

If the server supports SSL, they can set using SSL in HELLO to indicate that the client should upgrade the connection to SSL. At this point, the protocol should not receive any data until after the SSL handshake is complete.

As this protocol has been intentionally designed to be simple (no timeouts or keep alives), I/O wrappers do not need a significant amount of work to implement it.

TLS Encryption

dumdum-server can use SSL certificates to encrypt connections. For example, if you want to use a self-signed certificate and private key, you can install OpenSSL and run the following command:

openssl req -new -x509 -days 365 -noenc -out dumdum.crt -keyout dumdum.key

After filling out (or skipping) the certificate signing request prompts, you can then run the server with the resulting dumdum.crt and dumdum.key files:

dumdum-server --cert dumdum.crt:dumdum.key

As for the dumdum client, SSL can be enabled by the user before connecting to a server. If the server uses a self-signed certificate, the user will need to download the server's certificate (.crt) and select it.

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

dum_dum_irc-0.5.0.tar.gz (89.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dum_dum_irc-0.5.0-py3-none-any.whl (41.0 kB view details)

Uploaded Python 3

File details

Details for the file dum_dum_irc-0.5.0.tar.gz.

File metadata

  • Download URL: dum_dum_irc-0.5.0.tar.gz
  • Upload date:
  • Size: 89.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for dum_dum_irc-0.5.0.tar.gz
Algorithm Hash digest
SHA256 01b09a3a04cb12727bb83defd4587baacf9ec1387b4178941642c265b0bff0be
MD5 2a4ad09c19d95be9baa4974779d7eb12
BLAKE2b-256 7ac030f2f4a778943d56ab67258694b12ffb4ca9e3d4abd5d8a142d4226897ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for dum_dum_irc-0.5.0.tar.gz:

Publisher: python-publish.yml on thegamecracks/dum-dum-irc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dum_dum_irc-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: dum_dum_irc-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for dum_dum_irc-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 80714c34d207fa9280bab097a29d5412c06ae18ace136d3c05017edc280f3c4a
MD5 58d1721e54efa94fe7cf40cdd03ceebe
BLAKE2b-256 e3cd9f5aa63ff98e87af969dada063b1ef2912f76fdb082e0669e688cef30f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dum_dum_irc-0.5.0-py3-none-any.whl:

Publisher: python-publish.yml on thegamecracks/dum-dum-irc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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