XIRC Whitepaper

XIRC: An Extended, Secure, Server-Side Chat Protocol

Abstract

XIRC (eXtended Internet Relay Chat) is a modern server-side protocol designed to succeed the venerable Internet Relay Chat (IRC) system. Built in Rust for performance, memory safety, and concurrency, XIRC introduces advanced features such as end-to-end encryption for peer-to-peer (P2P) and room-based communication, a federated user account system, support for Markdown and inline image rendering (via S3-compatible storage), bot integration, and a sophisticated permissions framework inspired by Discord. This whitepaper details the server-side architecture, emphasizing its design principles, technical specifications, and operational mechanics.

1. Introduction

Since its inception in 1988, IRC has been a cornerstone of real-time text communication. However, its lack of native encryption, rudimentary user management, and absence of modern formatting or media capabilities have made it ripe for replacement. XIRC extends IRC’s lightweight, scalable foundation with contemporary enhancements, leveraging Rust’s strengths to deliver a secure, efficient, and extensible server-side solution.

This document focuses solely on the server-side protocol, leaving client implementation unspecified for flexibility. Key features include:

2. Design Principles

XIRC is guided by the following principles:

3. Server Architecture

3.1 Federated User Model

XIRC adopts a federated user system inspired by Matrix. Each user is tied to a "home server," identified by a domain, with usernames formatted as @[email protected]. The home server authenticates the user and serves as the primary hub for identity verification and message routing.

3.2 Room Management

An XIRC server can host multiple rooms, each identified by a unique ID (e.g., [email protected]). Rooms support:

3.3 Encryption

XIRC enforces end-to-end encryption for all communications:

3.4 Message Formatting

XIRC supports:

3.5 Bot Integration

Bots are first-class citizens in XIRC:

3.6 Permissions System

Inspired by Discord, XIRC implements a role-based access control (RBAC) system with fine-grained permissions:

4. Technical Specifications

4.1 Protocol Overview

XIRC servers communicate internally and with other servers using:

4.2 Message Structure

A sample message payload:

{
  "id": "msg_123456789",
  "sender": "@[email protected]",
  "room": "[email protected]",
  "timestamp": "2025-03-29T12:00:00Z",
  "content": {
    "type": "text/markdown",
    "body": "Hello **world**! Here's an image: ![cat](https://s3.example.com/cat.jpg)",
    "encrypted": true,
    "ciphertext": "base64_encoded_encrypted_data"
  },
  "signature": "base64_encoded_signature"
}

4.3 Server Implementation

4.4 Federation Workflow

  1. User @[email protected] sends a message to [email protected].
  2. Her home server (example.com) encrypts the message and forwards it to the room’s host server (chat.com).
  3. The host server decrypts the room key, verifies permissions, and broadcasts the message to all members’ home servers.

5. Security Considerations

6. Future Work

7. Conclusion

XIRC reimagines IRC for the modern era, extending its legacy with a secure, federated, and feature-rich server-side protocol. Built in Rust, it combines performance with cutting-edge capabilities like encryption, Markdown, inline images, bots, and fine-grained permissions, offering a scalable foundation for decentralized communication.