Files
OwnCord/docs/architecture/voice-e2ee.md
T

3.8 KiB

Voice and End-to-End Encryption

Verified against: commit 5630aa1, 2026-08-04

Voice/video runs on LiveKit. The Go server issues short-lived scoped tokens and relays E2EE key-exchange messages; media flows client↔LiveKit directly. On the client, everything funnels through src/lib/livekitSession.ts, and — because self-hosted servers commonly use self-signed certificates — the LiveKit connection is tunneled through a local Rust TLS proxy pinned to the same TOFU fingerprint as the main WebSocket.

D6 — Voice join + E2EE key exchange

sequenceDiagram
    autonumber
    participant UI as Client UI
    participant LKS as livekitSession.ts
    participant RP as Rust livekit_proxy<br/>(loopback TCP→TLS, TOFU-pinned)
    participant WS as App WebSocket (Hub)
    participant SRV as Go server
    participant LK as LiveKit server

    UI->>WS: voice_join {channel_id}
    WS->>SRV: permission check (channel-scoped)
    SRV-->>WS: voice_token (5-min JWT,<br/>CanPublishSources scoped by permission)
    WS-->>LKS: voice_token payload
    LKS->>RP: connect ws://127.0.0.1:{port}
    RP->>LK: TLS (fingerprint-pinned)
    LKS->>LK: LiveKit signaling + media (via tunnel)

    rect rgba(120,160,220,0.15)
        Note over LKS,WS: E2EE key exchange (relayed via app WS)
        LKS->>WS: voice_e2ee_announce {ECDH pubkey}
        WS-->>LKS: voice_e2ee_announce broadcast to channel
        Note over SRV: Hub tracks per-channel key holder<br/>(lowest user ID)
        LKS->>WS: voice_e2ee_offer {wrapped room key, target user}
        WS-->>LKS: voice_e2ee_offer relayed to target
        Note over LKS: unwrap room key → LiveKit<br/>ExternalE2EEKeyProvider
        Note over LKS: on participant leave,<br/>key holder rotates room key
    end

What this shows. The server never holds the room key — it only relays announce/offer messages and tracks who the key holder is (deterministically the lowest user ID in the channel). Keys are wrapped per-recipient via ECDH, and the key holder rotates the room key when a participant leaves so departed members cannot decrypt future media. Voice permission enforcement happens twice: at voice_join (channel permission) and inside the LiveKit JWT itself (CanPublishSources restricts camera/screenshare per role permission).

Supporting pieces:

  • Server: Server/ws/voice_e2ee.go (relay + key-holder map), Server/ws/livekit.go (token minting), Server/ws/livekit_process.go (optional managed livekit-server subprocess), Server/ws/livekit_webhook.go (webhook validated by LiveKit JWT and admin-IP-restricted), Server/api/livekit_proxy.go (HTTP reverse proxy).
  • Client: src/lib/livekitSession.ts (state machine: idle/connecting/ connected/reconnecting with a monotonic joinGeneration to discard superseded joins), src/lib/livekitE2EE.ts (key-holder election, room-key wrap/unwrap, peer verification state), src/lib/e2eeCrypto.ts (ECDH primitives, safety-number fingerprints, long-term identity keys), src/lib/identity.ts (OS-keyring identity key + peer identity pins), src/lib/audioPipeline.ts + src/lib/noise-suppression.ts (RNNoise WASM), src/lib/screenShare.ts, src-tauri/src/livekit_proxy.rs (tunnel), src-tauri/src/ptt.rs (push-to-talk key polling).

The wire flow (voice_e2ee_announce / voice_e2ee_offer / voice_speakers) is specified in protocol.md (Voice End-to-End Encryption section). Long-term identity: each user publishes an ECDSA identity public key (users.identity_public_key, migration 017); peers pin it on first contact and surface a blocking mismatch modal if it later changes (see ux/voice-and-e2ee.md).

Source of truth: Server/ws/voice_e2ee.go, Server/ws/livekit.go, Client/src/lib/livekitSession.ts, Client/src/lib/e2eeCrypto.ts, Client/src-tauri/src/livekit_proxy.rs.