Port the call + channels architecture documentation from the alknet mono-repo into docs/architecture/, renumbered as alkcall ADR-001..045. Renumbering map (alknet -> alkcall): Core: 001,002,004,006,007,011,065,070,092,014,050,091 -> 001-012 Call: 005,064,012,023,015,022,024,016,049,017,028,029,030,032,066,069,067,068 -> 013-030 Shared: 003,009,013 -> 031-033 Channels: 071,093,072,073,074,075,076,094,079,080,081,089 -> 034-045 3 superseded/reversed ADRs kept for historical trail: - ADR-013 (irpc foundation, superseded by ADR-014) - ADR-023 (peer-scoped filtering, superseded by ADR-024) - ADR-077 (TTY inside channels, reversed by ADR-035 — not ported, TTY-only) Ported docs (11 spec files + README + open-questions): - call-README.md, call-protocol.md, operation-registry.md, client-and-adapters.md - channels-README.md, channels-overview.md, channels-wire.md, channels-connection.md, channels-adapter.md, channel-operations.md, channel-client.md - README.md (index with doc table, ADR table grouped by category, key principles) - open-questions.md (lean — 30 OQs, renumbered OQ-01..030; includes new OQ-22 for the pub/sub gap) Cross-reference rewriting: - All ADR-NNN references rewritten single-pass (no chaining bug) - Markdown link paths fixed - Title lines aligned with filenames - Non-ported ADR refs (052, 082, 086, etc.) left as-is with README note The open-questions.md includes OQ-22 (new): the call protocol pub/sub gap — subscribe exists but pub does not, needed for channels channel/resources/subscribe fan-out. This is the next ADR to write (alkcall ADR-046).
153 lines
12 KiB
Markdown
153 lines
12 KiB
Markdown
---
|
|
status: draft
|
|
last_updated: 2026-07-18
|
|
---
|
|
|
|
# alknet-channels
|
|
|
|
A multiplexing proxy: a `ProtocolHandler` on `alknet/channels` that
|
|
decomposes a single bidirectional transport stream into N logical channels,
|
|
each carrying a different ALPN. Channel 0 is pre-negotiated as `alknet/call`
|
|
(ADR-036); every other channel is opened dynamically via call operations on
|
|
channel 0 and routed through the same `HandlerRegistry` as top-level
|
|
connections. The channels layer is a re-framing proxy — it converts between
|
|
"one transport stream carrying N channels" (the wire) and "N independent
|
|
`BiStream` handles" (what handlers see) — and it does no protocol work
|
|
itself. The channels layer has no `stream_type` concept (ADR-035); the
|
|
handler owns its sub-stream multiplexing on the `BiStream` it receives.
|
|
|
|
## Documents
|
|
|
|
| Document | Status | Description |
|
|
|----------|--------|-------------|
|
|
| [overview.md](overview.md) | draft | Crate purpose, the multiplexing collapse, dependencies, ALPN, transport agnosticism, WASM, relationship to existing crates |
|
|
| [channels-wire.md](channels-wire.md) | draft | The 8-byte chunk format (`[channel_id:u32 be][length:u32 be][payload]`), the add/strip composition, sentinels, framing disambiguation, wire-level invariants (REQ-CH-01..05) |
|
|
| [channels-connection.md](channels-connection.md) | draft | `ChannelBidiStreamSource` (implements `BidiStreamSource` — ADR-008/074, as amended by ADR-035), `accept_bi` yields one `BiStream` per channel, recursive composition |
|
|
| [channels-adapter.md](channels-adapter.md) | draft | `ChannelsAdapter` (`ProtocolHandler` on `alknet/channels`), `ChannelManager`, demux/mux contracts (REQ-CH-01..04), the two-pump pattern (ADR-078) |
|
|
| [channel-operations.md](channel-operations.md) | draft | `channel/open`, `channel/close`, `channel/control`, `channel/resources/subscribe` — call-protocol operations on channel 0, ACL flow, `direction` semantics, the hub relay contract (ADR-042) |
|
|
| [channel-client.md](channel-client.md) | draft | `ChannelClient` — the client side of a channels connection; transport-agnostic `from_connection` primary; dial lives in `AlknetClient` (ADR-045); bidirectionality preserved |
|
|
|
|
## Applicable ADRs
|
|
|
|
| ADR | Title | Relevance |
|
|
|-----|-------|-----------|
|
|
| [071](decisions/071-channels-wire-format.md) | channels Wire Format — 8-Byte Chunk Header | The chunk format; channels layer has no `stream_type` concept (amended by ADR-035); substrate-agnostic; one-way door |
|
|
| [093](decisions/093-channels-pure-channel-multiplexing.md) | channels Pure Channel Multiplexing | The umbrella decision: 8-byte header, no `stream_type`, `into_sub_streams` removed, `BiStream`-only, TTY always 5-byte |
|
|
| [072](decisions/072-channel-0-pre-negotiated-call.md) | Channel 0 Is Pre-Negotiated `alknet/call` | Channel 0 = call protocol; no special control plane |
|
|
| [073](decisions/073-channel-lifecycle-operations.md) | Channel Lifecycle Operations on the Call Protocol | `channel/open`/`close`/`control`/`resources/subscribe`; `direction` semantics; subscribe not poll |
|
|
| [074](decisions/074-channelconnection-bidistreamsource.md) | ChannelConnection — BidiStreamSource over Chunk Reassembly | Per-channel `BidiStreamSource` impl; `accept_bi` yields `BiStream` (amended by ADR-035 — `into_sub_streams` removed) |
|
|
| [075](decisions/075-channelsadapter-and-channelmanager.md) | ChannelsAdapter and ChannelManager | Substrate-agnostic demux loop; REQ-CH-01..04 contracts |
|
|
| [076](decisions/076-backpressure-channel-limits-id-reuse.md) | Backpressure, Channel Limits, and ID Reuse | Bounded-buffer (1 MiB default), 256-channel per-connection memory bound, monotonic IDs with wrap (DoS defense reframed by ADR-041) |
|
|
| [094](decisions/094-per-identity-channel-cap.md) | Per-Identity Channel Cap | 256 per `PeerId`, enforced via `ChannelLifecyclePolicy` in `channels-call`; per-connection `max_channels` reframed as a memory bound; symmetric (both sides enforce); spoke caps hub (direct caller), not browser (forwarded_for is metadata) |
|
|
| [077](decisions/077-tty-inside-channels.md) | TTY Inside Channels — Sub-Streams, Not Wire Format | TTY's two modes (direct vs channels); TTY always uses its 5-byte format, carried transparently in the channels payload |
|
|
| [078](decisions/078-two-pump-shutdown-on-completion.md) | Two-Pump Shutdown-on-Completion Pattern | The two-pump deadlock contract; handler-level, not channels-layer |
|
|
| [079](decisions/079-hub-relay-translate-not-forward.md) | Hub Relay — Translate, Not Transparently Forward | The hub translates channel 0, byte-forwards data channels with ID rewrite |
|
|
| [080](decisions/080-channelclient.md) | ChannelClient — the Client Side of a Channels Connection | `ChannelClient`, transport-agnostic `from_connection` primary; dial lives in `AlknetClient` (ADR-045, resolves OQ-55) |
|
|
| [081](decisions/081-channels-subcrate-decomposition.md) | channels Sub-Crate Decomposition | `channels-core` (pure multiplexer) / `channels-call` (call coupling + ChannelClient); hub and worker are consumers, not sub-crates |
|
|
| [070](decisions/070-bidistreamsource-trait.md) | BidiStreamSource Trait | The `Connection` extension point `ChannelBidiStreamSource` implements |
|
|
| [092](decisions/092-bistream-as-the-handler-leaf.md) | `BiStream` as the Handler Leaf | `accept_bi` returns `BiStream`; the transport-leaf decision ADR-035 builds on |
|
|
| [065](decisions/065-connection-from-stream-generic-single-stream.md) | `Connection::from_stream` | The transport-agnostic `Connection` the channels layer rides on |
|
|
| [052](decisions/052-alknet-tty-wire-format-and-two-carriage.md) | alknet-tty Wire Format | The 5-byte format carried transparently in the channels payload (control bidirectional via `STREAM_CTRL_IN`/`OUT` — Phase 7 amendment) |
|
|
| [049](decisions/049-streaming-handler-for-subscriptions.md) | StreamingHandler for Subscriptions | The machinery `channel/resources/subscribe` uses |
|
|
| [032](decisions/032-forwarded-for-identity.md) | Forwarded-For Identity | The auth chain for hub-relayed channel opens |
|
|
| [003](decisions/003-crate-decomposition.md) | Crate Decomposition | alknet-channels depends on alknet-core only; no handler-depends-on-handler |
|
|
|
|
## Relevant Open Questions
|
|
|
|
| OQ | Title | Status | Relevance |
|
|
|----|-------|--------|-----------|
|
|
| OQ-55 | AlknetClient / Client Establishment Extraction | resolved (ADR-045) | `ChannelClient`'s API is decided (ADR-043): transport-agnostic `from_connection` primary; dial lives in `AlknetClient` (`alknet-client`, ADR-045) |
|
|
| OQ-56 | Full channel-level flow-control windowing | deferred(scope) | Bounded-buffer is decided (ADR-040); full windowing is an extension blocked on "a real deployment observes HOL blocking on a saturated channel where bounded buffer is insufficient" |
|
|
| OQ-57 | Two-pump helper extraction to alknet-core | deferred(scope) | The shutdown-on-completion *contract* is decided (ADR-078); the *helper* extraction is blocked on a second two-pump handler existing (shape convergence) |
|
|
| OQ-68 | Add/strip API shape (built-in vs utility) | open | Whether the 8-byte header add/strip is built into the channels read/write path or exposed as a standalone utility. The *contract* is decided (ADR-035); the *function surface* is not |
|
|
|
|
## Key Design Principles
|
|
|
|
1. **Streams are streams.** A TTY session, an SSH channel, a forwarded TCP
|
|
connection, a QUIC bidi stream — they're all `BiStream` (a concrete
|
|
`AsyncRead + AsyncWrite` newtype, per ADR-009). The differences are only
|
|
in how they're *opened* (negotiation via `channel/open` on channel 0)
|
|
and what *multiplexing layer* carries them (the 8-byte chunk format).
|
|
Once normalized, every channel is an ALPN routed through the same
|
|
`HandlerRegistry`. See [overview.md](overview.md) and ADR-034 (as
|
|
amended by ADR-035).
|
|
|
|
2. **Channel 0 is `alknet/call` pre-negotiated, not a special control
|
|
plane.** The call protocol runs on channel 0 exactly as on a top-level
|
|
`alknet/call` connection. Channel lifecycle operations
|
|
(`channel/open`, `channel/close`, `channel/control`,
|
|
`channel/resources/subscribe`) are call operations on channel 0's
|
|
`OperationRegistry`, gated by the existing `AccessControl::check`. No
|
|
new auth machinery, no new framing. See ADR-036, ADR-037.
|
|
|
|
3. **The channels layer is a re-framing proxy, not a protocol engine.** It
|
|
converts between "one transport stream carrying N channels" (the wire)
|
|
and "N independent `BiStream` handles" (what handlers see). It does no
|
|
ALPN-specific parsing, no auth, no transport coupling, and carries no
|
|
`stream_type` concept (ADR-035). This makes it WASM-compatible and
|
|
transport-agnostic by construction. See [channels-adapter.md](channels-adapter.md)
|
|
and ADR-039.
|
|
|
|
4. **The handler owns its sub-stream multiplexing.** The channels layer
|
|
yields one `BiStream` per channel; the handler sub-multiplexes it
|
|
however it wants (TTY's 5-byte format, call's length-prefixed JSON,
|
|
tunnel's raw bytes, SSH's channel protocol). The channels layer carries
|
|
the bytes transparently. See [channels-connection.md](channels-connection.md)
|
|
and ADR-035.
|
|
|
|
5. **`channel/resources/subscribe` is a `Subscription`, not a polled
|
|
`Query`.** The call protocol has `StreamingHandler` / `invoke_streaming`
|
|
(ADR-021, implemented and tested). The first consumer (the hub
|
|
aggregating worker resources) needs live updates. Polling would be built
|
|
and immediately reworked. See ADR-037.
|
|
|
|
6. **Bidirectional open.** Either side can open a channel to the other,
|
|
just like the call protocol's operation overlay. The `direction` field
|
|
on `channel/open` pins who is the ALPN-server vs ALPN-client. See
|
|
ADR-037 §Direction semantics.
|
|
|
|
7. **Wire-level invariants are contracts, not implementation details.**
|
|
The POC surfaced five invariants (REQ-CH-01..04, plus REQ-CH-06 for
|
|
close ordering) that hang channels silently if underspecified: shutdown
|
|
emits a zero-length sentinel; transport close drops all senders; the mux
|
|
supports dynamic registration; unknown `channel_id` is lenient-dropped;
|
|
bounded-buffer backpressure doesn't deadlock; data chunks flush before
|
|
`channel/close`. See [channels-wire.md](channels-wire.md) and
|
|
[channels-adapter.md](channels-adapter.md).
|
|
|
|
8. **The hub translates, not transparently forwards.** The hub terminates
|
|
channel 0 on both legs, runs `AccessControl::check`, and re-issues
|
|
`channel/open` on the spoke leg with `forwarded_for` (ADR-026). Data
|
|
channels are byte-forwarded with `channel_id` rewrite (a 4-byte rewrite
|
|
within the 8-byte header). This preserves the auth model. See ADR-042.
|
|
|
|
9. **The channel cap is per-identity, not per-connection.** A channel
|
|
slot is a resource; the cap on how many an identity may hold open is
|
|
a quota check, parallel to `OwnershipProvider::owns` (ADR-011) for
|
|
spawned resources. The cap lives in `channels-call` (the channels
|
|
layer is auth-blind by ADR-039 — no identity, no scopes), consulted
|
|
by the `channel/open` and `channel/close` handlers after
|
|
`AccessControl::check`. The default is `PerIdentityChannelPolicy::
|
|
new(256)` — 256 per `PeerId` across all the peer's connections. The
|
|
per-connection `max_channels` (ADR-040) is a memory bound, not a
|
|
DoS defense. The cap is symmetric (both sides enforce); the spoke
|
|
caps the hub as direct caller, not the browser as `forwarded_for`
|
|
(metadata, not authority — ADR-026). See ADR-041.
|
|
|
|
## References
|
|
|
|
- `docs/research/alknet-channels/phase-0-findings.md` — Phase 0 research
|
|
(vision, hub motivation, wire format, negotiation, internals, DPs, OQs)
|
|
- `docs/research/alknet-channels/poc-summary.md` — the de-risk POC (28
|
|
tests, three validated targets, REQ-CH-01..06 wire-level invariants
|
|
surfaced; REQ-CH-07 is a cosmetic clippy item, not a wire invariant)
|
|
- `docs/research/alknet-channels/poc-plan.md` — the POC plan
|
|
- `docs/research/stream-unification/findings.md` — the research that
|
|
surfaced the pure-channel-multiplexing resolution (ADR-035)
|
|
- `/workspace/alknet-channels-poc/` — the POC codebase
|
|
- `docs/research/alknet-tty/phase-0-findings.md` — the TTY crate's chunk
|
|
format (the seed of the channels generalization)
|
|
- `docs/research/alknet-ssh/phase-0-findings.md` — SSH's channel
|
|
multiplexer (the prior art for N-channel multiplexing)
|
|
- `docs/architecture/crates/hub/README.md` — the hub crate (the primary
|
|
consumer; the relay implementation's home) |