Skip to main content

moq_net/lite/
setup.rs

1//! The lite-05 SETUP message: each endpoint advertises its capabilities once, as
2//! the sole message on a unidirectional Setup Stream, then closes it.
3
4use crate::coding::*;
5
6use super::{Message, Parameters, Version};
7
8/// Setup Parameter id for the Probe capability level.
9const PARAM_PROBE: u64 = 0x1;
10/// Setup Parameter id for the request Path (client-only, URI-less transports).
11const PARAM_PATH: u64 = 0x2;
12/// Setup Parameter id for the client's intended [`Role`] (client-only).
13const PARAM_ROLE: u64 = 0x3;
14/// Setup Parameter id for the link cost the dialer assigns to this connection.
15const PARAM_COST: u64 = 0x4;
16/// Setup Parameter id for the endpoint's origin (hop) id.
17const PARAM_ORIGIN: u64 = 0x5;
18
19/// The cost of crossing a link that neither end priced.
20///
21/// One, so a mesh that configures no costs accumulates a route cost equal to the
22/// hop count and ranks routes exactly as pre-lite-06 shortest-path routing did. Pricing
23/// a link at 0 makes it free (a sibling in the same datacenter); pricing it higher
24/// makes it a last resort (a metered backbone).
25pub const DEFAULT_COST: u64 = 1;
26
27/// The probe capability an endpoint advertises in SETUP.
28///
29/// Monotonic: a higher level implies every lower one. An unknown (future) value
30/// decodes as the highest level we understand, so a peer that gains a new level is
31/// treated as at least [`Increase`](Self::Increase).
32#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Default)]
33pub enum ProbeLevel {
34	/// No probing. Equivalent to omitting the parameter.
35	#[default]
36	None,
37	/// The publisher can measure and periodically report at least one of the PROBE
38	/// metrics: its estimated bitrate, its round-trip time, or both. Either may be
39	/// unknown in any given report, since the two are independent on the wire.
40	Report,
41	/// The publisher can additionally pad the connection (or send redundant data).
42	Increase,
43}
44
45impl ProbeLevel {
46	/// The level to advertise for `session`, from what its transport actually exposes.
47	///
48	/// [`Report`](Self::Report) claims the publisher can measure and periodically
49	/// report. A transport that exposes neither a send-rate estimate nor an RTT can
50	/// honour neither, and the draft requires such a publisher to reset any Probe
51	/// Stream a subscriber opens. Advertising [`None`](Self::None) instead stops the
52	/// subscriber opening one at all.
53	///
54	/// Both metrics are sampled rather than declared, so this only works for a
55	/// transport whose figures exist by the time the session starts. QUIC and TCP
56	/// both qualify: their RTT comes from the handshake, which has already happened.
57	pub fn detect<S: web_transport_trait::Session>(session: &S) -> Self {
58		use web_transport_trait::Stats as _;
59		let stats = session.stats();
60		match stats.estimated_send_rate().is_some() || stats.rtt().is_some() {
61			true => Self::Report,
62			false => Self::None,
63		}
64	}
65
66	/// Map the wire value to a level, saturating unknown values to [`Increase`](Self::Increase).
67	fn from_code(code: u64) -> Self {
68		match code {
69			0 => Self::None,
70			1 => Self::Report,
71			_ => Self::Increase,
72		}
73	}
74
75	/// The wire value for this level.
76	fn to_code(self) -> u64 {
77		match self {
78			Self::None => 0,
79			Self::Report => 1,
80			Self::Increase => 2,
81		}
82	}
83}
84
85/// The single direction a client intends to use the session for.
86///
87/// A client advertises this in its SETUP so the server can reject a token that lacks
88/// the matching scope during the handshake, instead of accepting a connection that
89/// then silently carries no media (a subscribe-only token used to publish, or vice
90/// versa). It only ever narrows what the server grants, so it is not a security
91/// boundary: the server still enforces the token's scope regardless.
92///
93/// A session is bidirectional by default, which the wire says by omitting the
94/// parameter. `Option<Role>` mirrors that: `None` is the default, and it's also what
95/// a client that predates the parameter decodes to.
96#[derive(Debug, Clone, Copy, PartialEq, Eq)]
97#[non_exhaustive]
98pub enum Role {
99	/// The client will publish tracks (ingest); the server must consume.
100	Publisher,
101	/// The client will subscribe to tracks (egress); the server must publish.
102	Subscriber,
103}
104
105impl Role {
106	/// Map the wire value to a role. `0` and any unrecognized future value are `None`
107	/// (bidirectional): the draft requires a receiver that does not recognize the value
108	/// to treat it as both directions, so a newer client can't break an older server (it
109	/// just loses the early reject and defers fully to the token's scope).
110	fn from_code(code: u64) -> Option<Self> {
111		match code {
112			1 => Some(Role::Publisher),
113			2 => Some(Role::Subscriber),
114			_ => None,
115		}
116	}
117
118	/// The wire value for this role.
119	fn to_code(self) -> u64 {
120		match self {
121			Role::Publisher => 1,
122			Role::Subscriber => 2,
123		}
124	}
125
126	/// Derive the advertised role from which origins a client wired up: publish-only is
127	/// a [`Publisher`](Role::Publisher), consume-only a [`Subscriber`](Role::Subscriber),
128	/// and both (or neither) advertises nothing. This keeps the advertised role from
129	/// drifting away from what the session actually does.
130	pub(crate) fn from_origins(publishes: bool, consumes: bool) -> Option<Self> {
131		match (publishes, consumes) {
132			(true, false) => Some(Role::Publisher),
133			(false, true) => Some(Role::Subscriber),
134			_ => None,
135		}
136	}
137
138	/// Lowercase label for this role (`"publisher"` / `"subscriber"`).
139	pub fn as_str(self) -> &'static str {
140		match self {
141			Role::Publisher => "publisher",
142			Role::Subscriber => "subscriber",
143		}
144	}
145}
146
147impl std::fmt::Display for Role {
148	fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
149		f.write_str(self.as_str())
150	}
151}
152
153/// The SETUP message, sent once per endpoint on the unidirectional Setup Stream.
154///
155/// lite-05+ only. The two endpoints' SETUP messages are independent: neither side
156/// blocks on the peer's before opening other streams, but a stream whose encoding
157/// depends on a negotiated capability (e.g. PROBE) must wait for it.
158#[derive(Debug, Clone, Default, PartialEq, Eq)]
159pub struct Setup {
160	/// The probe capability this endpoint supports. [`ProbeLevel::None`] when absent.
161	pub probe: ProbeLevel,
162	/// The request path, for transports that carry no request URI (native QUIC,
163	/// qmux over TCP/TLS, unix sockets), with `?` and the URI query appended when
164	/// there is one. Sent only by the client; a server never sends one and a relay
165	/// never forwards it. `None` on URI-carrying bindings, where it would be a
166	/// protocol violation. An empty path means the same thing as `None`; both are
167	/// on the wire so a client need not special-case the root.
168	pub path: Option<String>,
169	/// The single direction the client intends to use, or `None` for a bidirectional
170	/// session. `None` is sent as the absence of the parameter, which is also how a
171	/// client that predates the parameter decodes.
172	pub role: Option<Role>,
173	/// What subscribing from this endpoint costs (lite-06+), added by the peer to the
174	/// route cost of every announcement we forward it.
175	///
176	/// Directional: it prices the sender's own egress, so both ends declare their own
177	/// and the two need not match. `None` means the default cost of 1.
178	pub cost: Option<u64>,
179	/// This endpoint's origin (hop) id, the identity it stamps onto forwarded
180	/// announcements. The peer uses it to serve this endpoint's subscriptions from
181	/// a route that does not flow through it (the same split horizon the announce
182	/// filter applies). `None` when the endpoint has no meaningful identity (a
183	/// leaf that never forwards); a wire value of 0 decodes as `None`.
184	pub origin: Option<crate::Origin>,
185}
186
187impl Message for Setup {
188	fn decode_msg<R: bytes::Buf>(r: &mut R, version: Version) -> Result<Self, DecodeError> {
189		if !version.has_setup_stream() {
190			return Err(DecodeError::Version);
191		}
192
193		let params = Parameters::decode(r, version)?;
194		let probe = params
195			.get_varint(PARAM_PROBE)?
196			.map(ProbeLevel::from_code)
197			.unwrap_or_default();
198		let path = match params.get_bytes(PARAM_PATH) {
199			Some(bytes) => Some(
200				std::str::from_utf8(bytes)
201					.map_err(|_| DecodeError::InvalidValue)?
202					.to_string(),
203			),
204			None => None,
205		};
206		let role = params.get_varint(PARAM_ROLE)?.and_then(Role::from_code);
207		let cost = params.get_varint(PARAM_COST)?;
208		// 0 is legal on the wire but carries no identity (it can't be excluded),
209		// so it decodes as "not declared" rather than an error.
210		let origin = params
211			.get_varint(PARAM_ORIGIN)?
212			.and_then(|id| crate::Origin::new(id).ok());
213
214		Ok(Self {
215			probe,
216			path,
217			role,
218			cost,
219			origin,
220		})
221	}
222
223	fn encode_msg<W: bytes::BufMut>(&self, w: &mut W, version: Version) -> Result<(), EncodeError> {
224		if !version.has_setup_stream() {
225			return Err(EncodeError::Version);
226		}
227
228		let mut params = Parameters::default();
229		// None is the wire default, so omit it to keep the message empty when nothing is set.
230		if self.probe != ProbeLevel::None {
231			params.set_varint(PARAM_PROBE, self.probe.to_code());
232		}
233		if let Some(path) = &self.path {
234			params.set_bytes(PARAM_PATH, path.as_bytes().to_vec());
235		}
236		// Bidirectional is the wire default (absence of the parameter), so only a
237		// directional role is encoded.
238		if let Some(role) = self.role {
239			params.set_varint(PARAM_ROLE, role.to_code());
240		}
241		if let Some(cost) = self.cost {
242			params.set_varint(PARAM_COST, cost);
243		}
244		if let Some(origin) = self.origin {
245			params.set_varint(PARAM_ORIGIN, origin.id());
246		}
247
248		params.encode(w, version)
249	}
250}
251
252/// Shared slot for the peer's SETUP, written once when its Setup stream is read.
253///
254/// Streams whose encoding depends on a negotiated capability (e.g. the PROBE
255/// stream) wait on this before deciding what to do. Cheap to clone: every handle
256/// shares the same slot.
257#[derive(Clone, Default)]
258pub(crate) struct PeerSetup(kio::Shared<Option<Setup>>);
259
260impl PeerSetup {
261	/// Record the peer's SETUP.
262	pub fn set(&self, setup: Setup) {
263		*self.0.lock() = Some(setup);
264	}
265
266	/// Await the peer's advertised probe level, blocking until its SETUP arrives.
267	pub async fn probe_level(&self) -> ProbeLevel {
268		self.wait(|setup| setup.probe).await
269	}
270
271	/// Await the link cost the peer (the dialing side) declared in its SETUP.
272	/// `None` when it declared none, meaning the default cost of 1.
273	pub async fn cost(&self) -> Option<u64> {
274		self.wait(|setup| setup.cost).await
275	}
276
277	/// Await the origin (hop) id the peer declared in its SETUP. `None` when it
278	/// declared none: a leaf with no identity worth excluding.
279	pub async fn origin(&self) -> Option<crate::Origin> {
280		self.wait(|setup| setup.origin).await
281	}
282
283	/// Await the peer's SETUP and read a field out of it.
284	///
285	/// The peer MUST send exactly one SETUP, so this resolves once that stream is read.
286	/// Waits forever if it never does; the caller is a session task, cancelled when the
287	/// driver drops.
288	async fn wait<T>(&self, f: impl FnOnce(&Setup) -> T) -> T {
289		let slot = self
290			.0
291			.wait(|setup| {
292				if setup.is_some() {
293					std::task::Poll::Ready(())
294				} else {
295					std::task::Poll::Pending
296				}
297			})
298			.await;
299		f(slot.as_ref().expect("waited for Some"))
300	}
301}
302
303#[cfg(test)]
304mod tests {
305	use super::*;
306
307	fn round_trip(msg: &Setup) -> Setup {
308		let mut buf = bytes::BytesMut::new();
309		msg.encode(&mut buf, Version::Lite05).unwrap();
310		let mut slice = &buf[..];
311		let got = Setup::decode(&mut slice, Version::Lite05).unwrap();
312		assert!(bytes::Buf::remaining(&slice) == 0, "trailing bytes after decode");
313		got
314	}
315
316	#[test]
317	fn empty_round_trip() {
318		let msg = Setup::default();
319		assert_eq!(round_trip(&msg), msg);
320	}
321
322	/// A transport exposing neither metric can't honour a `Report` claim, and the
323	/// draft makes such a publisher reset any Probe Stream a subscriber opens. It
324	/// must advertise `None` so the subscriber never opens one.
325	#[test]
326	fn detect_reports_nothing_without_stats() {
327		use crate::lite::test_transport::{SinkSession, SinkStats};
328		let session = SinkSession::new(Default::default()).with_stats(SinkStats::default());
329		assert_eq!(ProbeLevel::detect(&session), ProbeLevel::None);
330	}
331
332	/// Either metric alone is enough to report, since the two PROBE fields are
333	/// independent on the wire.
334	#[test]
335	fn detect_reports_with_either_metric() {
336		use crate::lite::test_transport::{SinkSession, SinkStats};
337
338		let rtt_only = SinkStats::default().with_rtt(std::time::Duration::from_millis(40));
339		let session = SinkSession::new(Default::default()).with_stats(rtt_only);
340		assert_eq!(ProbeLevel::detect(&session), ProbeLevel::Report);
341
342		let rate_only = SinkStats::default().with_send_rate(1_000_000);
343		let session = SinkSession::new(Default::default()).with_stats(rate_only);
344		assert_eq!(ProbeLevel::detect(&session), ProbeLevel::Report);
345	}
346
347	#[test]
348	fn probe_levels_round_trip() {
349		for probe in [ProbeLevel::None, ProbeLevel::Report, ProbeLevel::Increase] {
350			let msg = Setup {
351				probe,
352				..Default::default()
353			};
354			assert_eq!(round_trip(&msg), msg);
355		}
356	}
357
358	#[test]
359	fn cost_round_trip() {
360		// Zero is a meaningful price (a free same-datacenter link), so it must survive
361		// the round trip as `Some(0)` rather than collapsing into "unpriced".
362		for cost in [None, Some(0), Some(1), Some(7)] {
363			let msg = Setup {
364				cost,
365				..Default::default()
366			};
367			assert_eq!(round_trip(&msg), msg);
368		}
369	}
370
371	#[test]
372	fn path_round_trip() {
373		let msg = Setup {
374			probe: ProbeLevel::Report,
375			path: Some("/room/123".to_string()),
376			..Default::default()
377		};
378		assert_eq!(round_trip(&msg), msg);
379	}
380
381	#[test]
382	fn origin_round_trip() {
383		let msg = Setup {
384			origin: Some(crate::Origin::new(42).unwrap()),
385			..Default::default()
386		};
387		assert_eq!(round_trip(&msg), msg);
388	}
389
390	// A declared id of 0 carries no identity (it cannot be excluded), so it
391	// decodes as absent rather than erroring.
392	#[test]
393	fn origin_zero_decodes_as_none() {
394		use crate::coding::Encode;
395
396		let version = Version::Lite05;
397		let mut params = Parameters::default();
398		params.set_varint(super::PARAM_ORIGIN, 0);
399		let mut body = bytes::BytesMut::new();
400		params.encode(&mut body, version).unwrap();
401		// Frame the body with the Message Length prefix `Setup::decode` expects.
402		let mut buf = bytes::BytesMut::new();
403		(body.len() as u64).encode(&mut buf, version).unwrap();
404		buf.extend_from_slice(&body);
405		let mut slice = &buf[..];
406		let got = Setup::decode(&mut slice, version).unwrap();
407		assert_eq!(got.origin, None);
408	}
409
410	#[test]
411	fn empty_path_round_trips() {
412		// An empty path is valid and distinct from absent only on the wire; both mean
413		// the root, so a client doesn't have to special-case it.
414		let msg = Setup {
415			path: Some(String::new()),
416			..Default::default()
417		};
418		assert_eq!(round_trip(&msg), msg);
419	}
420
421	#[test]
422	fn roles_round_trip() {
423		for role in [Some(Role::Publisher), Some(Role::Subscriber), None] {
424			let msg = Setup {
425				path: Some("/room/123".to_string()),
426				role,
427				..Default::default()
428			};
429			assert_eq!(round_trip(&msg), msg);
430		}
431	}
432
433	#[test]
434	fn unknown_probe_level_saturates_to_increase() {
435		// Frame a SETUP message carrying an unknown probe level (99) by hand: the
436		// parameters body, prefixed with its length (the lite Message size prefix).
437		let mut params = Parameters::default();
438		params.set_varint(PARAM_PROBE, 99);
439		let mut body = Vec::new();
440		params.encode(&mut body, Version::Lite05).unwrap();
441
442		let mut buf = bytes::BytesMut::new();
443		body.len().encode(&mut buf, Version::Lite05).unwrap();
444		buf.extend_from_slice(&body);
445
446		let mut slice = &buf[..];
447		let got = Setup::decode(&mut slice, Version::Lite05).unwrap();
448		assert_eq!(got.probe, ProbeLevel::Increase);
449	}
450
451	#[test]
452	fn role_wire_codes() {
453		// The draft pins Publisher=1 / Subscriber=2. A swap here would still round-trip
454		// against our own decoder, but break every other implementation.
455		for (role, code) in [(Role::Publisher, 1u64), (Role::Subscriber, 2)] {
456			assert_eq!(role.to_code(), code);
457			assert_eq!(Role::from_code(code), Some(role));
458		}
459	}
460
461	#[test]
462	fn unknown_role_decodes_as_bidirectional() {
463		// A role value the receiver doesn't recognize (a future extension, or an explicit
464		// 0) decodes to `None` rather than failing, so a newer client can't break an older
465		// server. The draft mandates this fallback.
466		for code in [0u64, 9, 250] {
467			let mut params = Parameters::default();
468			params.set_varint(PARAM_ROLE, code);
469			let mut body = Vec::new();
470			params.encode(&mut body, Version::Lite05).unwrap();
471
472			let mut buf = bytes::BytesMut::new();
473			body.len().encode(&mut buf, Version::Lite05).unwrap();
474			buf.extend_from_slice(&body);
475
476			let mut slice = &buf[..];
477			let got = Setup::decode(&mut slice, Version::Lite05).unwrap();
478			assert_eq!(got.role, None, "role code {code} should decode as bidirectional");
479		}
480	}
481
482	#[test]
483	fn rejects_before_lite05() {
484		let msg = Setup::default();
485		let mut buf = bytes::BytesMut::new();
486		assert!(matches!(
487			msg.encode(&mut buf, Version::Lite04),
488			Err(EncodeError::Version)
489		));
490	}
491
492	#[test]
493	fn ignores_unknown_parameters() {
494		// Frame a SETUP carrying an unknown parameter ID alongside the path.
495		let mut params = Parameters::default();
496		params.set_bytes(PARAM_PATH, b"/foo".to_vec());
497		params.set_bytes(0xbeef, b"whatever".to_vec());
498
499		let mut body = Vec::new();
500		params.encode(&mut body, Version::Lite05).unwrap();
501
502		// Wrap with the message size prefix the Message impl expects.
503		let mut buf = bytes::BytesMut::new();
504		body.len().encode(&mut buf, Version::Lite05).unwrap();
505		buf.extend_from_slice(&body);
506
507		let mut slice = &buf[..];
508		let got = Setup::decode(&mut slice, Version::Lite05).unwrap();
509		assert_eq!(got.path.as_deref(), Some("/foo"));
510	}
511}